├── .babelrc ├── .eslintrc.cjs ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── enhancement_request.md │ └── feature_request.md ├── instructions │ └── general.instructions.md ├── pull_request_template.md └── release.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .prettierrc.json ├── .vscode └── launch.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── gen ├── codegen.yml ├── download-schema.js ├── getAuth.js ├── graphql.schema.json ├── openapi-config.ts └── process-api-types.js ├── index.html ├── package.json ├── playwright.config.js ├── public ├── AYON.svg ├── Discord-Symbol-White.svg ├── android-chrome-192x192-new.png ├── android-chrome-192x192.png ├── android-chrome-512x512-new.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── ayon-notification.mp3 ├── browserconfig.xml ├── favicon-16x16-new.png ├── favicon-16x16.png ├── favicon-32x32-new.png ├── favicon-32x32.png ├── favicon.ico ├── logos │ ├── after-effects.png │ ├── houdini.png │ ├── maya.png │ ├── nuke.png │ └── photoshop.png ├── manifest.json ├── mstile-144x144.png ├── mstile-150x150.png ├── mstile-310x150.png ├── mstile-310x310.png ├── mstile-70x70.png ├── robots.txt ├── safari-pinned-tab.svg ├── site-new.webmanifest ├── site.webmanifest ├── slack-icon.png ├── splash │ └── review-splash.png ├── ynput-cloud-logo.svg └── ynput-connect-logo.svg ├── shared ├── .babelrc ├── package.json ├── src │ ├── api │ │ ├── base │ │ │ ├── baseQueryTypes.ts │ │ │ ├── client.ts │ │ │ └── index.ts │ │ ├── generated │ │ │ ├── access.ts │ │ │ ├── actions.ts │ │ │ ├── activityFeed.ts │ │ │ ├── addons.ts │ │ │ ├── anatomy.ts │ │ │ ├── attributes.ts │ │ │ ├── authentication.ts │ │ │ ├── bundles.ts │ │ │ ├── configuration.ts │ │ │ ├── desktop.ts │ │ │ ├── entityLists.ts │ │ │ ├── enums.ts │ │ │ ├── events.ts │ │ │ ├── files.ts │ │ │ ├── folders.ts │ │ │ ├── graphql.ts │ │ │ ├── graphqlLinks.ts │ │ │ ├── grouping.ts │ │ │ ├── inbox.ts │ │ │ ├── index.ts │ │ │ ├── links.ts │ │ │ ├── market.ts │ │ │ ├── onboarding.ts │ │ │ ├── operations.ts │ │ │ ├── products.ts │ │ │ ├── projectDashboard.ts │ │ │ ├── projects.ts │ │ │ ├── representations.ts │ │ │ ├── reviewables.ts │ │ │ ├── services.ts │ │ │ ├── system.ts │ │ │ ├── tasks.ts │ │ │ ├── teams.ts │ │ │ ├── thumbnails.ts │ │ │ ├── uRIs.ts │ │ │ ├── users.ts │ │ │ ├── versions.ts │ │ │ ├── views.ts │ │ │ ├── workfiles.ts │ │ │ └── ynputCloud.ts │ │ ├── index.ts │ │ └── queries │ │ │ ├── actions │ │ │ ├── getActions.ts │ │ │ └── index.ts │ │ │ ├── activities │ │ │ ├── activityQueries.ts │ │ │ ├── getActivities.ts │ │ │ ├── getCategories.ts │ │ │ ├── getMentions.ts │ │ │ ├── gql │ │ │ │ ├── ActivityFragment.graphql │ │ │ │ ├── GetActivitiesById.graphql │ │ │ │ ├── GetActivityUsers.graphql │ │ │ │ ├── GetEntitiesActivities.graphql │ │ │ │ └── GetEntitiesChecklists.graphql │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ ├── updateActivities.ts │ │ │ ├── updateReaction.ts │ │ │ └── util │ │ │ │ ├── activitiesHelpers.ts │ │ │ │ └── activityRealtimeHandler.ts │ │ │ ├── addons │ │ │ ├── getAddons.ts │ │ │ ├── index.ts │ │ │ └── updateAddons.ts │ │ │ ├── attributes │ │ │ ├── getAttributes.ts │ │ │ ├── index.ts │ │ │ └── updateAttributes.ts │ │ │ ├── authentication │ │ │ ├── getAuthentication.ts │ │ │ └── index.ts │ │ │ ├── cloud │ │ │ ├── cloud.ts │ │ │ └── index.ts │ │ │ ├── config │ │ │ ├── getConfig.ts │ │ │ ├── index.ts │ │ │ └── updateConfig.ts │ │ │ ├── entities │ │ │ ├── entityQueries.ts │ │ │ ├── getEntity.ts │ │ │ ├── getEntityPanel.ts │ │ │ ├── gql │ │ │ │ ├── GetDetailsPanelFolder.graphql │ │ │ │ ├── GetDetailsPanelRepresentation.graphql │ │ │ │ ├── GetDetailsPanelTask.graphql │ │ │ │ ├── GetDetailsPanelVersion.graphql │ │ │ │ ├── GetProductVersions.graphql │ │ │ │ └── fragments │ │ │ │ │ ├── DetailsPanelFolderFragment.graphql │ │ │ │ │ ├── DetailsPanelProductFragment.graphql │ │ │ │ │ ├── DetailsPanelRepresentationFragment.graphql │ │ │ │ │ ├── DetailsPanelTaskFragment.graphql │ │ │ │ │ └── DetailsPanelVersionFragment.graphql │ │ │ ├── index.ts │ │ │ ├── transformDetailsPanelData.ts │ │ │ └── updateEntity.ts │ │ │ ├── entityLists │ │ │ ├── getLists.ts │ │ │ ├── getListsAttributes.ts │ │ │ ├── gql │ │ │ │ ├── GetListItems.graphql │ │ │ │ ├── GetLists.graphql │ │ │ │ ├── GetListsItemsForReviewSession.graphql │ │ │ │ └── ListItemFragment.graphql │ │ │ ├── index.ts │ │ │ ├── listFolders.ts │ │ │ ├── types.ts │ │ │ ├── updateLists.ts │ │ │ └── updateListsAttributes.ts │ │ │ ├── folders │ │ │ ├── getFolders.ts │ │ │ └── index.ts │ │ │ ├── grouping │ │ │ ├── getGrouping.ts │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── links │ │ │ ├── getEntityLinks.ts │ │ │ ├── getLinks.ts │ │ │ ├── gql │ │ │ │ ├── LinksGetEntityLinkData.graphql │ │ │ │ ├── LinksGetEntityLinks.graphql │ │ │ │ ├── LinksGetSearchedEntity.graphql │ │ │ │ └── fragments │ │ │ │ │ ├── OverviewEntityLinkFragment.graphql │ │ │ │ │ └── OverviewEntityLinkNodeFragment.graphql │ │ │ ├── index.ts │ │ │ ├── updateLinks.ts │ │ │ └── utils │ │ │ │ └── formatEntityLinks.ts │ │ │ ├── overview │ │ │ ├── filterRefetchUtils.ts │ │ │ ├── getOverview.ts │ │ │ ├── gql │ │ │ │ ├── GetTasksByParent.graphql │ │ │ │ ├── GetTasksList.graphql │ │ │ │ └── fragments │ │ │ │ │ └── TaskPropsFragment.graphql │ │ │ ├── index.ts │ │ │ ├── patchProducts.ts │ │ │ ├── patchVersions.ts │ │ │ ├── refetchFilteredEntities.ts │ │ │ └── updateOverview.ts │ │ │ ├── permissions │ │ │ ├── getPermissions.ts │ │ │ └── index.ts │ │ │ ├── products │ │ │ ├── createProduct.ts │ │ │ └── index.ts │ │ │ ├── project │ │ │ ├── ProjectTypes.ts │ │ │ ├── getProject.ts │ │ │ ├── gql │ │ │ │ └── GetProjectLatest.graphql │ │ │ ├── index.ts │ │ │ └── updateProject.ts │ │ │ ├── review │ │ │ ├── getReview.ts │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ └── updateReview.ts │ │ │ ├── share │ │ │ ├── index.ts │ │ │ └── share.ts │ │ │ ├── system │ │ │ ├── getSystem.ts │ │ │ └── index.ts │ │ │ ├── uris │ │ │ ├── getUris.ts │ │ │ └── index.ts │ │ │ ├── userDashboard │ │ │ ├── convertAccessGroupsData.ts │ │ │ ├── getUserDashboard.ts │ │ │ ├── getUserProjectsAccess.ts │ │ │ ├── gql │ │ │ │ ├── GetKanban.graphql │ │ │ │ ├── GetKanbanProjectUsers.graphql │ │ │ │ ├── GetKanbanTasks.graphql │ │ │ │ └── KanbanFragment.graphql │ │ │ └── index.ts │ │ │ ├── users │ │ │ ├── getUsers.ts │ │ │ ├── gql │ │ │ │ ├── GetActiveUsersCount.graphql │ │ │ │ ├── GetAllAssignees.graphql │ │ │ │ └── GetAllProjectUsers.graphql │ │ │ ├── guests.ts │ │ │ ├── index.ts │ │ │ └── updateUsers.ts │ │ │ ├── versions │ │ │ ├── getVersionsProducts.ts │ │ │ ├── getVersionsProductsUtils.ts │ │ │ ├── gql │ │ │ │ ├── FolderAttribFragment.graphql │ │ │ │ ├── GetLatestProductVersion.graphql │ │ │ │ ├── GetProducts.graphql │ │ │ │ ├── GetVersions.graphql │ │ │ │ ├── GetVersionsByProductId.graphql │ │ │ │ ├── PageInfoFragment.graphql │ │ │ │ ├── VersionBaseFragment.graphql │ │ │ │ └── VersionExtendedFragment.graphql │ │ │ ├── index.ts │ │ │ └── updateVersions.ts │ │ │ ├── views │ │ │ ├── getViews.ts │ │ │ ├── index.ts │ │ │ └── updateViews.ts │ │ │ └── watchers │ │ │ ├── getWatchers.ts │ │ │ └── index.ts │ ├── components │ │ ├── AccessSearchInput │ │ │ ├── AccessSearchInput.styled.ts │ │ │ ├── AccessSearchInput.tsx │ │ │ └── index.ts │ │ ├── AccessUser │ │ │ ├── AccessUser.styled.ts │ │ │ ├── AccessUser.tsx │ │ │ └── index.ts │ │ ├── AddonLoadingScreen │ │ │ ├── AddonLoadingScreen.tsx │ │ │ └── index.ts │ │ ├── AttributeEditor │ │ │ ├── AttributeEditor.tsx │ │ │ ├── components │ │ │ │ ├── MinMaxField.tsx │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── Badge │ │ │ ├── Badge.tsx │ │ │ └── index.ts │ │ ├── Chips │ │ │ ├── Chips.tsx │ │ │ └── index.ts │ │ ├── DetailsDialog │ │ │ ├── DetailsDialog.tsx │ │ │ └── index.ts │ │ ├── DetailsPanelAttributes │ │ │ ├── DetailsPanelAttributesEditor.tsx │ │ │ ├── components │ │ │ │ └── RenderFieldWidget.tsx │ │ │ ├── formatAttributesData.ts │ │ │ └── index.ts │ │ ├── DetailsPanelDetails │ │ │ ├── BorderedSection.tsx │ │ │ ├── DescriptionSection.styles.ts │ │ │ ├── DescriptionSection.tsx │ │ │ ├── DetailsPanelDetails.tsx │ │ │ ├── DetailsSection.tsx │ │ │ ├── FieldLabel.tsx │ │ │ ├── hooks │ │ │ │ ├── index.ts │ │ │ │ ├── useDescriptionEditor.ts │ │ │ │ ├── useEntityEditing.ts │ │ │ │ ├── useEntityFields.ts │ │ │ │ ├── useEntityFormData.ts │ │ │ │ ├── useMentionSystem.ts │ │ │ │ └── useQuillFormats.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── EarlyPreview │ │ │ ├── EarlyPreview.tsx │ │ │ └── index.ts │ │ ├── EmptyPlaceholder │ │ │ ├── EmptyPlaceholder.tsx │ │ │ ├── EmptyPlaceholderFlex.styled.ts │ │ │ └── index.ts │ │ ├── EntityPanelUploader │ │ │ ├── Dropzone.tsx │ │ │ ├── EntityPanelUploader.styled.tsx │ │ │ ├── EntityPanelUploader.tsx │ │ │ ├── EntityPanelUploaderDialog.tsx │ │ │ └── index.ts │ │ ├── EntityPath │ │ │ ├── EntityPath.styled.ts │ │ │ ├── EntityPath.tsx │ │ │ ├── SegmentProvider.tsx │ │ │ └── index.ts │ │ ├── EnumEditor │ │ │ ├── DraggableEnumEditorItem.tsx │ │ │ ├── EnumEditor.styled.ts │ │ │ ├── EnumEditor.tsx │ │ │ ├── EnumEditorItem.tsx │ │ │ ├── hooks │ │ │ │ └── useDraggable.ts │ │ │ ├── index.ts │ │ │ └── util │ │ │ │ └── index.ts │ │ ├── FeaturedVersionOrder │ │ │ ├── FeaturedVersionOrder.tsx │ │ │ └── index.ts │ │ ├── Feedback │ │ │ ├── FeedbackContext.tsx │ │ │ ├── SupportBubble.tsx │ │ │ └── index.ts │ │ ├── FileThumbnail │ │ │ ├── FileThumbnail.tsx │ │ │ └── index.ts │ │ ├── LegacyBadge │ │ │ ├── LegacyBadge.tsx │ │ │ └── index.ts │ │ ├── LinksManager │ │ │ ├── AddNewLinks.tsx │ │ │ ├── CellEditingDialog.tsx │ │ │ ├── LinkManagerItem.tsx │ │ │ ├── LinksManager.styled.ts │ │ │ ├── LinksManager.tsx │ │ │ ├── SearchingLoadingItems.tsx │ │ │ ├── hooks │ │ │ │ ├── useKeyboardNavigation.ts │ │ │ │ └── useUpdateLinks.ts │ │ │ ├── index.ts │ │ │ └── utils │ │ │ │ ├── formatEntityPath.ts │ │ │ │ └── linkUpdates.ts │ │ ├── ListAttributeForm │ │ │ ├── ListAttributeForm.tsx │ │ │ └── index.ts │ │ ├── ListMetaData │ │ │ ├── ListMetaData.tsx │ │ │ └── index.ts │ │ ├── Menu │ │ │ ├── Menu.styled.ts │ │ │ ├── Menu.tsx │ │ │ ├── MenuContainer.tsx │ │ │ ├── MenuItem.tsx │ │ │ ├── MenuList.tsx │ │ │ ├── index.ts │ │ │ └── useMenuPosition.ts │ │ ├── PlayableIcon │ │ │ └── PlayableIcon.tsx │ │ ├── Powerpack │ │ │ ├── CTAButton.tsx │ │ │ ├── PowerpackButton.tsx │ │ │ ├── PowerpackDialog.styled.ts │ │ │ ├── PowerpackDialog.tsx │ │ │ ├── PricingLink.tsx │ │ │ ├── RequiredAddonVersion.tsx │ │ │ └── index.ts │ │ ├── ProjectTableSettings │ │ │ ├── ColumnItem.tsx │ │ │ ├── ColumnsSettings.tsx │ │ │ ├── ProjectTableSettings.tsx │ │ │ ├── SortableColumnItem.tsx │ │ │ ├── TableSettings.styled.ts │ │ │ ├── TableSettingsFallback.tsx │ │ │ └── index.ts │ │ ├── QuillListStyles │ │ │ ├── QuillListStyles.ts │ │ │ └── index.ts │ │ ├── RefreshToast │ │ │ ├── RefreshToast.tsx │ │ │ └── index.ts │ │ ├── RenameForm │ │ │ ├── RenameForm.tsx │ │ │ └── index.ts │ │ ├── ReviewableCard │ │ │ ├── ReviewableCard.styled.ts │ │ │ ├── ReviewableCard.tsx │ │ │ └── index.ts │ │ ├── ReviewableProgressCard │ │ │ ├── ReviewableProgressCard.styled.ts │ │ │ ├── ReviewableProgressCard.tsx │ │ │ └── index.ts │ │ ├── ReviewablesList │ │ │ ├── EditReviewableDialog.tsx │ │ │ ├── ReviewablesList.styled.ts │ │ │ ├── ReviewablesList.tsx │ │ │ ├── ReviewablesUpload.styled.tsx │ │ │ ├── ReviewablesUpload.tsx │ │ │ ├── SortableReviewableCard.tsx │ │ │ ├── getGroupedReviewables.ts │ │ │ ├── index.ts │ │ │ └── useReviewablesUpload.ts │ │ ├── SearchFilter │ │ │ ├── filterDates.ts │ │ │ ├── index.ts │ │ │ └── useBuildFilterOptions.tsx │ │ ├── SettingsPanel │ │ │ ├── SettingsPanel.tsx │ │ │ ├── SettingsPanelItemTemplate.tsx │ │ │ └── index.ts │ │ ├── ShareOptionIcon │ │ │ ├── ShareOptionIcon.tsx │ │ │ └── index.ts │ │ ├── SimpleFormDialog │ │ │ ├── SimpleFormDialog.tsx │ │ │ └── index.ts │ │ ├── SizeSlider │ │ │ ├── SizeSlider.tsx │ │ │ └── index.ts │ │ ├── SortingSetting │ │ │ ├── SortingSetting.styled.ts │ │ │ ├── SortingSetting.tsx │ │ │ └── index.ts │ │ ├── StyledLink │ │ │ ├── StyledLink.tsx │ │ │ └── index.ts │ │ ├── TableGridSwitch │ │ │ ├── TableGridSwitch.styled.ts │ │ │ ├── TableGridSwitch.tsx │ │ │ └── index.ts │ │ ├── Thumbnail │ │ │ ├── StackedThumbnails.tsx │ │ │ ├── Thumbnail.styled.ts │ │ │ ├── Thumbnail.tsx │ │ │ └── index.ts │ │ ├── ThumbnailSimple │ │ │ ├── ThumbnailSimple.tsx │ │ │ └── index.ts │ │ ├── UserImage │ │ │ ├── UserImage.tsx │ │ │ └── index.ts │ │ ├── VersionUploader │ │ │ ├── components │ │ │ │ ├── UploadVersionDialog.tsx │ │ │ │ └── UploadVersionForm.tsx │ │ │ ├── context │ │ │ │ └── VersionUploadContext.tsx │ │ │ └── index.ts │ │ ├── Watchers │ │ │ ├── Watchers.tsx │ │ │ └── index.ts │ │ └── index.ts │ ├── containers │ │ ├── Actions │ │ │ ├── ActionConfigDialog.tsx │ │ │ ├── ActionIcon.tsx │ │ │ ├── Actions.styled.ts │ │ │ ├── Actions.tsx │ │ │ ├── ActionsDropdown │ │ │ │ ├── ActionsDropdown.styled.ts │ │ │ │ ├── ActionsDropdown.tsx │ │ │ │ └── index.ts │ │ │ ├── InteractiveActionDialog.tsx │ │ │ └── index.ts │ │ ├── ContextMenu │ │ │ ├── ContextMenu.scss │ │ │ ├── ContextMenuContext.tsx │ │ │ ├── ContextMenuItem.tsx │ │ │ ├── GlobalContextMenu.tsx │ │ │ ├── index.ts │ │ │ └── useCreateContextMenu.tsx │ │ ├── DetailsPanel │ │ │ ├── DetailsPanel.styled.ts │ │ │ ├── DetailsPanel.tsx │ │ │ ├── DetailsPanelFiles │ │ │ │ ├── DetailsPanelFiles.tsx │ │ │ │ └── index.ts │ │ │ ├── DetailsPanelFloating │ │ │ │ ├── DetailsPanelFloating.styled.ts │ │ │ │ ├── DetailsPanelFloating.tsx │ │ │ │ └── index.ts │ │ │ ├── DetailsPanelHeader │ │ │ │ ├── DetailsPanelHeader.styled.ts │ │ │ │ ├── DetailsPanelHeader.tsx │ │ │ │ └── index.ts │ │ │ ├── DetailsPanelSlideOut │ │ │ │ ├── DetailsPanelSlideOut.styled.ts │ │ │ │ ├── DetailsPanelSlideOut.tsx │ │ │ │ └── index.ts │ │ │ ├── FeedContextWrapper.tsx │ │ │ ├── FeedFilters │ │ │ │ ├── FeedFilters.styled.ts │ │ │ │ └── FeedFilters.tsx │ │ │ ├── FeedWrapper.tsx │ │ │ ├── helpers │ │ │ │ ├── buildDetailsPanelTitles.ts │ │ │ │ ├── getAllProjectsStatuses.ts │ │ │ │ ├── getEntityPathData.ts │ │ │ │ ├── getThumbnails.ts │ │ │ │ └── mergeProjectInfo.ts │ │ │ ├── hooks │ │ │ │ ├── useDetailsPanelURLSync.ts │ │ │ │ └── useGetEntityPath.ts │ │ │ └── index.ts │ │ ├── EntityPickerDialog │ │ │ ├── EntityPickerDialog.tsx │ │ │ ├── components │ │ │ │ ├── EntityTypeTable.tsx │ │ │ │ ├── EntityTypeTableHeader.tsx │ │ │ │ ├── EntityTypeTableSearch.tsx │ │ │ │ └── index.ts │ │ │ ├── hooks │ │ │ │ ├── useExpandedWithInitialFolders.tsx │ │ │ │ └── useGetEntityPickerData.tsx │ │ │ ├── index.ts │ │ │ └── util │ │ │ │ ├── buildEntityPickerTableData.ts │ │ │ │ ├── entityHierarchies.ts │ │ │ │ ├── getExpandedFoldersFromIds.ts │ │ │ │ └── index.ts │ │ ├── Feed │ │ │ ├── Feed.styled.ts │ │ │ ├── Feed.tsx │ │ │ ├── components │ │ │ │ ├── ActivityAssigneeChange │ │ │ │ │ ├── ActivityAssigneeChange.styled.ts │ │ │ │ │ ├── ActivityAssigneeChange.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ActivityCategorySelect │ │ │ │ │ ├── ActivityCategorySelect.tsx │ │ │ │ │ ├── CategoryDropdownItem.tsx │ │ │ │ │ ├── CategoryTag.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ActivityCheckbox │ │ │ │ │ ├── ActivityCheckbox.styled.ts │ │ │ │ │ ├── ActivityCheckbox.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ActivityComment │ │ │ │ │ ├── ActivityComment.styled.ts │ │ │ │ │ ├── ActivityComment.tsx │ │ │ │ │ ├── ActivityCommentMenu.tsx │ │ │ │ │ ├── ActivityMarkdownComponents.tsx │ │ │ │ │ ├── CommentWrapper.tsx │ │ │ │ │ └── mappers.ts │ │ │ │ ├── ActivityDate.tsx │ │ │ │ ├── ActivityGroup │ │ │ │ │ ├── ActivityGroup.styled.ts │ │ │ │ │ └── ActivityGroup.tsx │ │ │ │ ├── ActivityHeader │ │ │ │ │ ├── ActivityHeader.styled.ts │ │ │ │ │ └── ActivityHeader.tsx │ │ │ │ ├── ActivityItem.tsx │ │ │ │ ├── ActivityReference │ │ │ │ │ ├── ActivityReference.styled.ts │ │ │ │ │ └── ActivityReference.tsx │ │ │ │ ├── ActivityReferenceTooltip │ │ │ │ │ ├── ActivityReferenceTooltip.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ActivityStatus │ │ │ │ │ └── ActivityStatus.tsx │ │ │ │ ├── ActivityStatusChange │ │ │ │ │ ├── ActivityStatusChange.styled.ts │ │ │ │ │ ├── ActivityStatusChange.tsx │ │ │ │ │ └── hooks │ │ │ │ │ │ └── getContextParents.ts │ │ │ │ ├── ActivityVersions │ │ │ │ │ ├── ActivityVersions.styled.ts │ │ │ │ │ └── ActivityVersions.tsx │ │ │ │ ├── CommentInput │ │ │ │ │ ├── CommentInput.styled.ts │ │ │ │ │ ├── CommentInput.tsx │ │ │ │ │ ├── InputMarkdownConvert.tsx │ │ │ │ │ ├── helpers.tsx │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── useAnnotationsSync.ts │ │ │ │ │ │ ├── useAnnotationsUpload.ts │ │ │ │ │ │ ├── useBlendedCategoryColor.ts │ │ │ │ │ │ ├── useInitialValue.ts │ │ │ │ │ │ ├── useMentionLink.ts │ │ │ │ │ │ └── useSetCursorEnd.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── ImageUploader.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── quillToMarkdown.tsx │ │ │ │ ├── CommentMentionSelect │ │ │ │ │ ├── CommentMentionSelect.styled.ts │ │ │ │ │ └── CommentMentionSelect.tsx │ │ │ │ ├── FileUploadCard │ │ │ │ │ ├── FileUploadCard.styled.ts │ │ │ │ │ ├── FileUploadCard.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── FileUploadPreview │ │ │ │ │ ├── FileUploadPreview.styled.ts │ │ │ │ │ ├── FileUploadPreview.tsx │ │ │ │ │ ├── Mimes │ │ │ │ │ │ ├── ImageMime.tsx │ │ │ │ │ │ └── TextMime.tsx │ │ │ │ │ ├── fileUtils.ts │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── useAttachmentNavigation.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── FilesGrid │ │ │ │ │ ├── FilesGrid.styled.ts │ │ │ │ │ ├── FilesGrid.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ReactionContainer │ │ │ │ │ ├── ExistingReactions.tsx │ │ │ │ │ ├── Reaction.tsx │ │ │ │ │ ├── ReactionPanelOpener.tsx │ │ │ │ │ ├── Reactions.styled.ts │ │ │ │ │ ├── Reactions.tsx │ │ │ │ │ ├── helpers.ts │ │ │ │ │ └── types.ts │ │ │ │ └── Tooltips │ │ │ │ │ ├── EntityTooltip │ │ │ │ │ ├── EntityTooltip.styled.ts │ │ │ │ │ └── EntityTooltip.tsx │ │ │ │ │ └── UserTooltip │ │ │ │ │ ├── UserTooltip.styled.ts │ │ │ │ │ └── UserTooltip.tsx │ │ │ ├── context │ │ │ │ └── FeedContext.tsx │ │ │ ├── feedHelpers.tsx │ │ │ ├── helpers │ │ │ │ ├── groupActivityVersions.ts │ │ │ │ ├── groupMinorActivities.ts │ │ │ │ ├── mergeAnnotationAttachments.ts │ │ │ │ └── mergeSimilarActivities.ts │ │ │ ├── hooks │ │ │ │ ├── useCommentMutations.ts │ │ │ │ ├── useGetFeedActivitiesData.ts │ │ │ │ ├── useReferenceTooltip.ts │ │ │ │ ├── useSaveScrollPos.ts │ │ │ │ ├── useScrollOnInputOpen.ts │ │ │ │ ├── useScrollToHighlighted.ts │ │ │ │ ├── useTableKeyboardNavigation.ts │ │ │ │ └── useTransformActivities.ts │ │ │ ├── index.ts │ │ │ └── mentionHelpers │ │ │ │ ├── getMentionOptions.ts │ │ │ │ ├── getMentionTasks.ts │ │ │ │ ├── getMentionUsers.ts │ │ │ │ └── getMentionVersions.ts │ │ ├── ProjectTreeTable │ │ │ ├── ProjectTreeTable.styled.ts │ │ │ ├── ProjectTreeTable.tsx │ │ │ ├── buildTreeTableColumns.tsx │ │ │ ├── components │ │ │ │ ├── ColumnHeaderMenu.tsx │ │ │ │ ├── GroupSettingsFallback.tsx │ │ │ │ ├── HeaderActionButton.tsx │ │ │ │ ├── RowDragHandleCellContent.tsx │ │ │ │ ├── RowSelectionHeader.tsx │ │ │ │ ├── SelectionCell.tsx │ │ │ │ └── index.ts │ │ │ ├── context │ │ │ │ ├── CellEditingContext.ts │ │ │ │ ├── CellEditingProvider.tsx │ │ │ │ ├── ClipboardContext.tsx │ │ │ │ ├── ColumnSettingsContext.tsx │ │ │ │ ├── ColumnSettingsProvider.tsx │ │ │ │ ├── DetailsPanelEntityContext.tsx │ │ │ │ ├── ProjectDataContext.tsx │ │ │ │ ├── ProjectTableContext.ts │ │ │ │ ├── ProjectTableProvider.tsx │ │ │ │ ├── ProjectTableQueriesContext.tsx │ │ │ │ ├── SelectedRowsContext.ts │ │ │ │ ├── SelectedRowsProvider.tsx │ │ │ │ ├── SelectionCellsContext.ts │ │ │ │ ├── SelectionCellsProvider.tsx │ │ │ │ ├── clipboard │ │ │ │ │ ├── clipboardTypes.ts │ │ │ │ │ ├── clipboardUtils.ts │ │ │ │ │ ├── clipboardValidation.ts │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── hooks │ │ │ │ ├── index.ts │ │ │ │ ├── useAttributesList.ts │ │ │ │ ├── useBuildGroupByTableData.ts │ │ │ │ ├── useBuildProjectDataTable.ts │ │ │ │ ├── useCellContextMenu.ts │ │ │ │ ├── useCheckSelectedCellsVisible.ts │ │ │ │ ├── useColumnGroupBy.ts │ │ │ │ ├── useColumnVirtualization.tsx │ │ │ │ ├── useCustomColumnWidthVars.ts │ │ │ │ ├── useDeleteEntities.ts │ │ │ │ ├── useDynamicRowHeight.ts │ │ │ │ ├── useEntitiesMap.ts │ │ │ │ ├── useExpandedState.ts │ │ │ │ ├── useFetchOverviewData.ts │ │ │ │ ├── useFolderRelationships.ts │ │ │ │ ├── useGetEntityTypeData.ts │ │ │ │ ├── useGetGroupedFields.ts │ │ │ │ ├── useGroupBySettings.tsx │ │ │ │ ├── useHistory.ts │ │ │ │ ├── useKeyboardNavigation.ts │ │ │ │ ├── useMoveEntities.ts │ │ │ │ ├── usePasteLinks.ts │ │ │ │ ├── usePrefetchFolderTasks.ts │ │ │ │ ├── useQueryFilters.ts │ │ │ │ ├── useScopedAttributeFields.ts │ │ │ │ ├── useSelectedFolders.ts │ │ │ │ └── useUpdateTableData.ts │ │ │ ├── index.ts │ │ │ ├── types │ │ │ │ ├── columnConfig.ts │ │ │ │ ├── folders.ts │ │ │ │ ├── index.ts │ │ │ │ ├── operations.ts │ │ │ │ ├── overviewContext.ts │ │ │ │ ├── project.ts │ │ │ │ ├── table.ts │ │ │ │ └── widgetDisplayConfig.ts │ │ │ ├── utils │ │ │ │ ├── cellUtils.ts │ │ │ │ ├── clientFilterToQueryFilter.ts │ │ │ │ ├── errorExtraction.ts │ │ │ │ ├── getEntityViewerIds.ts │ │ │ │ ├── getReadOnlyLists.ts │ │ │ │ ├── getTableFieldOptions.ts │ │ │ │ ├── getTypeDefaultValue.ts │ │ │ │ ├── index.ts │ │ │ │ ├── linksToTableData.ts │ │ │ │ ├── loadingUtils.ts │ │ │ │ ├── localStorageKeys.ts │ │ │ │ ├── metaRows.ts │ │ │ │ ├── queryFilterToClientFilter.ts │ │ │ │ ├── restrictedEntity.ts │ │ │ │ └── validateUpdateEntities.ts │ │ │ └── widgets │ │ │ │ ├── BooleanWidget.tsx │ │ │ │ ├── CellWidget.tsx │ │ │ │ ├── CollapsedWidget.tsx │ │ │ │ ├── DateWidget.tsx │ │ │ │ ├── DateWidgetInput.tsx │ │ │ │ ├── EmptyWidget.tsx │ │ │ │ ├── EntityNameWidget.tsx │ │ │ │ ├── EnumCellValue.tsx │ │ │ │ ├── EnumWidget.tsx │ │ │ │ ├── ErrorWidget.tsx │ │ │ │ ├── GroupHeaderWidget.tsx │ │ │ │ ├── LinksWidget.tsx │ │ │ │ ├── LoadMoreWidget.tsx │ │ │ │ ├── MetaWidget.tsx │ │ │ │ ├── NameWidget.tsx │ │ │ │ ├── TextWidget.tsx │ │ │ │ ├── TextWidgetInput.tsx │ │ │ │ ├── ThumbnailWidget.tsx │ │ │ │ └── index.ts │ │ ├── RepresentationsList │ │ │ ├── RepresentationsList.tsx │ │ │ ├── index.ts │ │ │ └── versionsToRepresentations.ts │ │ ├── SimpleTable │ │ │ ├── SimpleTable.styled.ts │ │ │ ├── SimpleTable.tsx │ │ │ ├── SimpleTableRowTemplate.tsx │ │ │ ├── context │ │ │ │ └── SimpleTableContext.tsx │ │ │ ├── hooks │ │ │ │ └── useRowKeydown.ts │ │ │ └── index.ts │ │ ├── Slicer │ │ │ ├── createFilterFromSlicer.ts │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ └── useFiltersWithHierarchy.ts │ │ ├── Views │ │ │ ├── ViewItem │ │ │ │ ├── ViewItem.styled.ts │ │ │ │ └── ViewItem.tsx │ │ │ ├── Views.styled.ts │ │ │ ├── Views.tsx │ │ │ ├── ViewsButton │ │ │ │ └── ViewsButton.tsx │ │ │ ├── ViewsDialogContainer │ │ │ │ ├── ViewFormDialogFallback.tsx │ │ │ │ └── ViewsDialogContainer.tsx │ │ │ ├── ViewsMenu │ │ │ │ ├── SectionHeader.styled.ts │ │ │ │ ├── SectionHeader.tsx │ │ │ │ ├── ViewsMenu.styled.ts │ │ │ │ └── ViewsMenu.tsx │ │ │ ├── ViewsMenuContainer │ │ │ │ ├── BaseViewsTags.tsx │ │ │ │ └── ViewsMenuContainer.tsx │ │ │ ├── context │ │ │ │ └── ViewsContext.tsx │ │ │ ├── hooks │ │ │ │ ├── index.ts │ │ │ │ ├── pages │ │ │ │ │ ├── useListsViewSettings.ts │ │ │ │ │ ├── useOverviewViewSettings.ts │ │ │ │ │ ├── useTaskProgressViewSettings.ts │ │ │ │ │ └── viewUpdateHelper.ts │ │ │ │ ├── useBaseViewMutations.ts │ │ │ │ ├── useBuildViewMenuItems.tsx │ │ │ │ ├── useSaveViewFromCurrent.ts │ │ │ │ ├── useSelectedView.tsx │ │ │ │ ├── useViewSettingsChanged.ts │ │ │ │ ├── useViewsMutations.ts │ │ │ │ └── useViewsShortcuts.ts │ │ │ ├── index.ts │ │ │ └── utils │ │ │ │ ├── generateWorkingView.ts │ │ │ │ ├── getCustomViewsFallback.ts │ │ │ │ ├── portalUtils.ts │ │ │ │ └── viewUpdateHelper.ts │ │ └── index.ts │ ├── context │ │ ├── AddonContext.tsx │ │ ├── AddonProjectContext.tsx │ │ ├── DetailsPanelContext.tsx │ │ ├── GlobalContext.tsx │ │ ├── MenuContext.tsx │ │ ├── MoveEntityContext.tsx │ │ ├── PowerpackContext.tsx │ │ ├── ProjectContext.tsx │ │ ├── ProjectFoldersContext.tsx │ │ ├── RemoteModulesContext.tsx │ │ ├── SettingsPanelContext.tsx │ │ ├── ThumbnailUploaderContext.tsx │ │ ├── UriContext.tsx │ │ ├── WebsocketContext.tsx │ │ ├── index.ts │ │ └── pip │ │ │ ├── PiPProvider.tsx │ │ │ ├── PiPWindow.tsx │ │ │ ├── PiPWrapper.tsx │ │ │ ├── globals.d.ts │ │ │ └── index.ts │ ├── hooks │ │ ├── index.ts │ │ ├── useActionTriggers.ts │ │ ├── useEntityUpdate.ts │ │ ├── useGetEntityGroups.ts │ │ ├── useGroupByRemoteModules.ts │ │ ├── useGroupedPagination.ts │ │ ├── useHierarchyTable.ts │ │ ├── useLoadModule.ts │ │ ├── useLoadModules.ts │ │ ├── useLocalStorage.ts │ │ ├── useQueryArgumentChangeLoading.ts │ │ ├── useScopedStatuses.ts │ │ └── useUserProjectConfig.ts │ ├── index.ts │ └── util │ │ ├── checkName.ts │ │ ├── clipboardUtils.ts │ │ ├── colorUtils.ts │ │ ├── columnConfigConverter.ts │ │ ├── confirmDelete.ts │ │ ├── copyToClipboard.ts │ │ ├── extractEntityHierarchyFromParents.ts │ │ ├── extractVersionFromFilename.ts │ │ ├── getAttributeIcon.ts │ │ ├── getEntityId.ts │ │ ├── getEntityTypeIcon.ts │ │ ├── getGroupByDataType.ts │ │ ├── getMixedState.ts │ │ ├── getPriorityOptions.ts │ │ ├── groupResult.ts │ │ ├── humanizeFieldName.ts │ │ ├── index.ts │ │ ├── parseHtmlToPlainTextWithLinks.ts │ │ ├── platform.ts │ │ ├── pubsub.ts │ │ ├── uriUtils.ts │ │ └── versionUploadHelpers.ts ├── tsconfig.json ├── vite.config.ts └── yarn.lock ├── src ├── app.tsx ├── ayon.js ├── components │ ├── AddonCard │ │ ├── AddonCard.styled.ts │ │ ├── AddonCard.tsx │ │ └── AddonCardProgress.jsx │ ├── AddonDialog │ │ └── AddonDialog.jsx │ ├── AddonIcon │ │ ├── AddonIcon.styled.ts │ │ └── AddonIcon.tsx │ ├── AddonsSelectGrid │ │ └── AddonsSelectGrid.tsx │ ├── AnnotationsTools │ │ ├── AnnotationTools.styled.ts │ │ └── AnnotationTools.tsx │ ├── ApiKeyManager.jsx │ ├── AttribForm │ │ ├── AttribForm.styled.js │ │ ├── AttribForm.tsx │ │ └── AttribFormType.jsx │ ├── Avatar │ │ ├── Avatar.jsx │ │ └── Avatar.styled.js │ ├── Canvas.jsx │ ├── CategorySelect │ │ ├── CategorySelect.styled.js │ │ └── CategorySelect.tsx │ ├── CollapseButton.jsx │ ├── ColumnsSelect │ │ └── ColumnsSelect.jsx │ ├── CompleteProfilePrompt │ │ └── CompleteProfilePrompt.tsx │ ├── DetailHeader.jsx │ ├── DetailsPanelSplitter.ts │ ├── DocumentTitle │ │ └── DocumentTitle.tsx │ ├── EnableNotifications.jsx │ ├── ErrorFallback.jsx │ ├── Favicon │ │ └── Favicon.jsx │ ├── FolderSequence │ │ ├── FolderSequence.jsx │ │ └── FolderSequence.styled.js │ ├── GridLayout.tsx │ ├── GuestUserPageLocked.tsx │ ├── HelpButton │ │ └── HelpButton.tsx │ ├── InfoMessage │ │ ├── InfoMessage.styled.ts │ │ ├── InfoMessage.tsx │ │ └── index.ts │ ├── InstallerDownload │ │ ├── InstallerDownloadPrompt.jsx │ │ ├── InstallerDownloadPrompt.styled.js │ │ ├── InstallerProdCard │ │ │ ├── InstallerProdCard.jsx │ │ │ └── InstallerProdCard.styled.js │ │ └── useGetInstallerDownload.js │ ├── LicensesDialog │ │ └── LicensesDialog.tsx │ ├── ListItem │ │ ├── ListItem.jsx │ │ └── ListItem.styled.ts │ ├── MarketAddonCard │ │ ├── MarketAddonCard.styled.ts │ │ ├── MarketAddonCard.tsx │ │ ├── MarketAddonCardGroup.tsx │ │ └── index.ts │ ├── MeOrUserSwitch │ │ ├── MeOrUserSwitch.jsx │ │ └── MeOrUserSwitch.styled.js │ ├── Menu │ │ ├── MenuComponents │ │ │ └── useMenuPosition.ts │ │ ├── Menus │ │ │ ├── AppMenu.jsx │ │ │ ├── HelpMenu.jsx │ │ │ ├── UserMenu │ │ │ │ ├── UserMenu.jsx │ │ │ │ ├── UserMenu.styled.js │ │ │ │ └── UserMenuHeader.jsx │ │ │ └── index.js │ │ └── index.js │ ├── NewEntity │ │ ├── NewEntity.tsx │ │ ├── NewEntityForm.tsx │ │ └── TypeEditor.tsx │ ├── NoEntityFound.jsx │ ├── PerProjectBundleConfig │ │ ├── PerProjectBundleConfig.tsx │ │ └── PerProjectBundleDialog.tsx │ ├── PlatformSelect │ │ └── PlatformSelect.tsx │ ├── ProjectButton │ │ ├── ProjectButton.jsx │ │ └── ProjectButton.styled.js │ ├── Release │ │ ├── ReleasePreset.jsx │ │ └── ReleasePreset.styled.js │ ├── RestartBanner │ │ ├── RestartBanner.jsx │ │ └── RestartBanner.styled.js │ ├── ReviewVersionDropdown │ │ ├── ReviewVersionDropdown.styled.ts │ │ ├── ReviewVersionDropdown.tsx │ │ └── index.ts │ ├── ReviewablesSelector │ │ ├── ReviewablesSelector.styled.ts │ │ ├── ReviewablesSelector.tsx │ │ └── index.ts │ ├── SearchDropdown │ │ ├── SearchDropdown.styled.tsx │ │ └── SearchDropdown.tsx │ ├── SearchFilter │ │ ├── AdvancedFiltersPlaceholder.tsx │ │ ├── SearchFilterWrapper.tsx │ │ ├── featureFlags.ts │ │ ├── getFilterFromId.ts │ │ └── useFocusOptions.tsx │ ├── ServerRestartingPage.tsx │ ├── ShareDialog.jsx │ ├── ShortcutWidget.tsx │ ├── SubChip │ │ └── SubChip.tsx │ ├── TeamMembersStacked │ │ └── TeamMembersStacked.jsx │ ├── TrialBanner │ │ ├── TrialBanner.styled.ts │ │ ├── TrialBanner.tsx │ │ └── helpers │ │ │ ├── getSubscribeLink.ts │ │ │ └── getTrialDates.ts │ ├── User │ │ └── UserDetailsHeader.jsx │ ├── VersionSelectorTool │ │ ├── VersionSelectorTool.jsx │ │ ├── VersionSelectorTool.styled.js │ │ └── hooks │ │ │ └── useReviewShortcuts.ts │ ├── YnputCloud │ │ ├── YnputCloud.styled.js │ │ ├── YnputCloudButton.jsx │ │ └── YnputConnector.jsx │ ├── icons.jsx │ ├── oauthIcons.jsx │ └── status │ │ ├── statusField.jsx │ │ └── statusSelect.jsx ├── containers │ ├── AccessGroupsDropdown.tsx │ ├── AddonSettings │ │ ├── AddonSettings.jsx │ │ ├── AddonSettingsPanel.jsx │ │ ├── BundlesSelector.tsx │ │ ├── CopyBundleSettingsButton.jsx │ │ ├── SettingsAddonList.tsx │ │ ├── SettingsChangesTable.jsx │ │ ├── SettingsListHeader.tsx │ │ ├── VariantSelector.tsx │ │ ├── index.jsx │ │ ├── searchTools.ts │ │ └── utils.js │ ├── AnatomyEditor.jsx │ ├── AppRoutes.tsx │ ├── Breadcrumbs │ │ ├── Breadcrumbs.styled.ts │ │ └── Breadcrumbs.tsx │ ├── BundleDropdown.tsx │ ├── CopySettings │ │ ├── AddonDropdown.jsx │ │ ├── CopySettingsDialog.jsx │ │ ├── CopySettingsNode.jsx │ │ ├── CopySettingsNode.styled.jsx │ │ └── index.jsx │ ├── FileUploadPreviewContainer.tsx │ ├── FolderPicker.jsx │ ├── HierarchyBuilder │ │ └── index.jsx │ ├── HierarchyExpandFolders.tsx │ ├── ProjectDropdown.jsx │ ├── ProjectMenu │ │ ├── hooks │ │ │ └── useProjectSelectDispatcher.ts │ │ ├── projectMenu.jsx │ │ └── projectMenu.styled.js │ ├── ProjectsList │ │ ├── ProjectsList.tsx │ │ ├── ProjectsListRow.tsx │ │ ├── ProjectsListTableHeader.tsx │ │ ├── buildProjectsTableData.ts │ │ └── hooks │ │ │ ├── useProjectListUserPreferences.ts │ │ │ └── useProjectsListMenuItems.ts │ ├── ProtectedRoute.tsx │ ├── RawSettingsDialog │ │ ├── RawSettingsDialog.jsx │ │ └── index.jsx │ ├── ReleaseInstallerDialog │ │ ├── ReleaseInstaller.styled.ts │ │ ├── ReleaseInstaller.tsx │ │ ├── ReleaseInstallerDialog.tsx │ │ ├── ReleaseInstallerPrompt │ │ │ ├── ReleaseInstallerPrompt.styled.ts │ │ │ └── ReleaseInstallerPrompt.tsx │ │ ├── components │ │ │ ├── Card.tsx │ │ │ ├── Footer.tsx │ │ │ ├── ReleaseInstallerError.tsx │ │ │ └── index.ts │ │ ├── forms │ │ │ ├── ReleaseInstallerAddons.tsx │ │ │ ├── ReleaseInstallerOverview.tsx │ │ │ ├── ReleaseInstallerPlatforms.tsx │ │ │ ├── ReleaseInstallerProgress.tsx │ │ │ └── index.ts │ │ ├── helpers.ts │ │ └── hooks │ │ │ ├── index.ts │ │ │ ├── useInstallRelease.ts │ │ │ ├── useReleaseForm.ts │ │ │ └── useReleaseInfo.ts │ ├── SettingsEditor │ │ ├── FormTemplates │ │ │ ├── ArrayFieldItemTemplate.tsx │ │ │ ├── ArrayFieldTemplate.tsx │ │ │ ├── DraggableItem.tsx │ │ │ ├── FieldTemplate.tsx │ │ │ ├── ObjectFieldTemplate.tsx │ │ │ └── searchMatcher.ts │ │ ├── SettingsEditor.jsx │ │ ├── SettingsEditor.sass │ │ ├── SettingsEditor.styled.tsx │ │ ├── SettingsPanel.jsx │ │ ├── Widgets │ │ │ ├── AccessWidget │ │ │ │ ├── AccessEditorDialog.tsx │ │ │ │ ├── AccessLevelDropdown.tsx │ │ │ │ ├── AccessOptionItem.tsx │ │ │ │ ├── AccessPreviewButton.tsx │ │ │ │ ├── AccessWidget.tsx │ │ │ │ └── index.ts │ │ │ ├── CheckboxWidget.tsx │ │ │ ├── DateTimeWidget.tsx │ │ │ ├── SelectWidget.tsx │ │ │ └── TextWidget.tsx │ │ ├── helpers.ts │ │ └── index.jsx │ ├── Shortcuts.jsx │ ├── SiteDropdown.jsx │ ├── SiteList.jsx │ ├── Slicer │ │ ├── Slicer.tsx │ │ ├── SlicerDropdownFallback.tsx │ │ ├── SlicerSearch.tsx │ │ ├── hooks │ │ │ ├── useProjectAnatomySlices.ts │ │ │ ├── useSlicerAttributesData.ts │ │ │ ├── useSlicerReduxSync.ts │ │ │ ├── useTableDataBySlice.ts │ │ │ └── useUsersTable.tsx │ │ ├── index.ts │ │ └── types.ts │ ├── TasksProgress │ │ ├── TasksProgress.tsx │ │ ├── components │ │ │ ├── FolderBody │ │ │ │ ├── FolderBody.styled.ts │ │ │ │ └── FolderBody.tsx │ │ │ ├── ParentBody │ │ │ │ ├── ParentBody.styled.ts │ │ │ │ └── ParentBody.tsx │ │ │ ├── TaskColumnHeader │ │ │ │ └── TaskColumnHeader.tsx │ │ │ ├── TaskStatusBar │ │ │ │ ├── TaskStatusBar.styled.ts │ │ │ │ └── TaskStatusBar.tsx │ │ │ ├── TaskTypeCell │ │ │ │ ├── TaskTypeCell.styled.ts │ │ │ │ └── TaskTypeCell.tsx │ │ │ ├── TasksProgressLoadingTable │ │ │ │ ├── TasksProgressLoadingTable.styled.ts │ │ │ │ └── TasksProgressLoadingTable.tsx │ │ │ ├── TasksProgressTable │ │ │ │ ├── TaskProgressTable.scss │ │ │ │ └── TasksProgressTable.tsx │ │ │ └── index.ts │ │ ├── helpers │ │ │ ├── formatFilterAssigneesData.ts │ │ │ ├── formatFilterAttributesData.ts │ │ │ ├── formatFilterTagsData.ts │ │ │ ├── formatSearchQueryFilters.ts │ │ │ ├── formatTaskProgressForTable.ts │ │ │ ├── getPlaceholderMessage.ts │ │ │ ├── index.ts │ │ │ ├── operations.ts │ │ │ ├── resolveShiftSelect.ts │ │ │ └── taskStatusSortFunction.ts │ │ ├── hooks │ │ │ ├── index.ts │ │ │ ├── useFolderSort.ts │ │ │ └── useRootFolders.ts │ │ ├── index.ts │ │ └── styles.scss │ ├── TeamList.jsx │ ├── TrialEnded │ │ ├── TrialEnded.styled.ts │ │ └── TrialEnded.tsx │ ├── VideoPlayer │ │ ├── Timecode.jsx │ │ ├── Trackbar.jsx │ │ ├── VideoOverlay.jsx │ │ ├── VideoPlayer.jsx │ │ ├── VideoPlayerControls.jsx │ │ ├── hooks │ │ │ └── useGoToFrame.ts │ │ ├── index.jsx │ │ └── utils │ │ │ └── videoFrameCallbackPolyfill.ts │ ├── Viewer │ │ ├── Viewer.styled.ts │ │ ├── Viewer.tsx │ │ ├── ViewerComponent.tsx │ │ ├── ViewerDetailsPanel.tsx │ │ ├── ViewerDialog.tsx │ │ ├── ViewerImage.tsx │ │ ├── ViewerPlayer.tsx │ │ └── index.ts │ ├── attributeTable.jsx │ ├── fieldFormat.jsx │ ├── header │ │ ├── AppHeader.jsx │ │ ├── AppNavLinks.styled.js │ │ ├── AppNavLinks.tsx │ │ ├── ChatBubbleButton.tsx │ │ ├── HeaderButton.jsx │ │ ├── InboxNotification.jsx │ │ └── index.jsx │ ├── hierarchy.jsx │ └── taskList.jsx ├── context │ ├── NewEntityContext.tsx │ ├── NotificationsContext.jsx │ ├── PasteContext.jsx │ ├── RestartContext.jsx │ ├── ShortcutsContext.jsx │ ├── SlicerContext.tsx │ └── ViewerContext.tsx ├── features │ ├── addonsManager.js │ ├── context.js │ ├── dashboard.js │ ├── middleware │ │ ├── getInitialStateLocalStorage.js │ │ ├── getInitialStateQueryParam.ts │ │ ├── localStorageMiddleware.js │ │ └── searchParamsMiddleware.js │ ├── progress.ts │ ├── project.js │ ├── releaseInstaller.ts │ ├── store.ts │ ├── user.js │ └── viewer.ts ├── helpers │ ├── arrayEquals.js │ ├── callbackOnKeyDown.js │ ├── getFieldInObject.js │ ├── getPreviousTagElement.js │ ├── getSequence.ts │ ├── helpArticles.ts │ ├── isHTMLElement.ts │ ├── objectComparison.js │ ├── parseTasksList.js │ ├── pasteFromClipboard.js │ ├── routes.ts │ ├── sortByHelpers.ts │ ├── string.ts │ └── url.ts ├── hooks │ ├── Tooltip │ │ ├── Tooltip.styled.js │ │ └── useTooltip.jsx │ ├── useAddonContextResend.ts │ ├── useColumnResize.js │ ├── useColumnsConfig.tsx │ ├── useCreateEntityShortcuts.ts │ ├── useFocused.js │ ├── useGetBundleAddonVersions.ts │ ├── useGoToEntity.ts │ ├── usePatchProductsListWithVersions.ts │ ├── usePortalElements.ts │ ├── usePrevious.js │ ├── useProjectDefaultTab.ts │ ├── usePubSub.js │ ├── useScrollSync.jsx │ ├── useSearchFilter.js │ ├── useShortcuts.js │ ├── useTableLoadingData.ts │ ├── useTitle.ts │ └── useUserProjectPermissions.ts ├── index.tsx ├── pages │ ├── APIDocsPage.jsx │ ├── AccountPage │ │ ├── AccountPage.tsx │ │ ├── DownloadsPage │ │ │ ├── DownloadsPage.jsx │ │ │ └── DownloadsPage.styled.js │ │ ├── ProfilePage.jsx │ │ ├── SessionListPage.jsx │ │ └── index.jsx │ ├── BrowserPage │ │ ├── BrowserDetailsPanel.tsx │ │ ├── BrowserPage.tsx │ │ ├── Products │ │ │ ├── NoProducts.jsx │ │ │ ├── Products.jsx │ │ │ ├── Products.styled.js │ │ │ ├── ProductsGrid.jsx │ │ │ ├── ProductsList.jsx │ │ │ ├── VersionList.jsx │ │ │ └── ViewModeToggle.jsx │ │ └── index.jsx │ ├── ErrorPage.tsx │ ├── EventsPage │ │ ├── EntityTile.jsx │ │ ├── EventDetail.jsx │ │ ├── EventList.jsx │ │ ├── EventOverview.jsx │ │ ├── EventTile.jsx │ │ ├── EventsPage.jsx │ │ └── index.jsx │ ├── ExplorerPage.jsx │ ├── InboxPage │ │ ├── Inbox │ │ │ ├── Inbox.styled.ts │ │ │ └── Inbox.tsx │ │ ├── InboxDetailsPanel.tsx │ │ ├── InboxMessage │ │ │ ├── InboxMessage.styled.ts │ │ │ ├── InboxMessage.tsx │ │ │ └── InboxMessageStatus │ │ │ │ ├── InboxMessageStatus.styled.ts │ │ │ │ └── InboxMessageStatus.tsx │ │ ├── InboxPage.tsx │ │ ├── hooks │ │ │ ├── useGroupMessages.ts │ │ │ ├── useInboxRefresh.ts │ │ │ ├── useKeydown.ts │ │ │ └── useUpdateInboxMessage.ts │ │ ├── index.tsx │ │ └── types.ts │ ├── LauncherAuthPage │ │ ├── LauncherAuthPage.tsx │ │ └── index.ts │ ├── LoadingPage.tsx │ ├── LoginPage │ │ ├── AuthLink.jsx │ │ ├── AuthLink.tsx │ │ ├── LoginPage.jsx │ │ ├── LoginPage.styled.jsx │ │ ├── index.jsx │ │ └── markdown.js │ ├── MarketPage │ │ ├── ConnectDialog │ │ │ ├── ConnectDialog.jsx │ │ │ └── ConnectDialog.styled.js │ │ ├── MarketAddonsList.tsx │ │ ├── MarketDetails │ │ │ ├── AddonDetails.tsx │ │ │ ├── MarketDetails.styled.ts │ │ │ ├── MetaPanelRow.tsx │ │ │ ├── ReleaseDetails.tsx │ │ │ ├── useDownload.js │ │ │ └── useUninstall.js │ │ ├── MarketFilters.tsx │ │ ├── MarketPage.jsx │ │ ├── helpers │ │ │ ├── filterItems.ts │ │ │ ├── index.ts │ │ │ └── transformReleasesToTable.ts │ │ ├── hooks │ │ │ ├── index.ts │ │ │ └── useExpandedGroups.ts │ │ ├── index.jsx │ │ └── mergeAddonsData.js │ ├── OnBoarding │ │ ├── OnBoardingPage.jsx │ │ ├── Step │ │ │ ├── AddonSelectStep.tsx │ │ │ ├── BoostrapStart.jsx │ │ │ ├── ConnectionDetails.jsx │ │ │ ├── CreateUser.jsx │ │ │ ├── CreateUser.styled.js │ │ │ ├── Landing.jsx │ │ │ ├── PlatformSelectStep.tsx │ │ │ ├── ProgressInstall.jsx │ │ │ ├── ReleaseSelect.jsx │ │ │ └── index.js │ │ ├── index.jsx │ │ └── util │ │ │ ├── FooterButtons.jsx │ │ │ ├── OnBoardingContext.jsx │ │ │ ├── OnBoardingStep.styled.js │ │ │ └── StepWrapper.jsx │ ├── PasswordResetPage.jsx │ ├── ProjectAddon.jsx │ ├── ProjectDashboard │ │ ├── DashboardAddon.jsx │ │ ├── ProjectDashboard.jsx │ │ ├── index.jsx │ │ └── panels │ │ │ ├── DashboardPanelWrapper.jsx │ │ │ ├── DashboardPanelsContainer.jsx │ │ │ ├── HeartBeat.jsx │ │ │ ├── ListStatsTile.jsx │ │ │ ├── ProgressBar.jsx │ │ │ ├── ProgressTile.jsx │ │ │ ├── ProjectDetails │ │ │ ├── ProjectDetails.jsx │ │ │ └── ProjectDetails.styled.js │ │ │ ├── ProjectHealth.jsx │ │ │ ├── ProjectLatest.jsx │ │ │ ├── ProjectLatestRow.jsx │ │ │ ├── ProjectStats.jsx │ │ │ ├── ProjectTeams.jsx │ │ │ ├── ProjectUsers.jsx │ │ │ └── Timeline.jsx │ ├── ProjectListsPage │ │ ├── ProjectListsPage.tsx │ │ ├── ProjectReviewsPage.tsx │ │ ├── components │ │ │ ├── ListAccessForm │ │ │ │ ├── ListAccessFallback.tsx │ │ │ │ ├── ListAccessForm.tsx │ │ │ │ └── index.ts │ │ │ ├── ListDetailsPanel │ │ │ │ ├── ListDetailsPanel.styled.ts │ │ │ │ └── ListDetailsPanel.tsx │ │ │ ├── ListDetailsTabs │ │ │ │ └── ListDetailsTabs.tsx │ │ │ ├── ListFolderFormDialog │ │ │ │ ├── ListFolderForm.tsx │ │ │ │ ├── ListFolderFormDialog.tsx │ │ │ │ └── index.ts │ │ │ ├── ListItemsFilter │ │ │ │ └── ListItemsFilter.tsx │ │ │ ├── ListItemsTable │ │ │ │ └── ListItemsTable.tsx │ │ │ ├── ListRow │ │ │ │ ├── ListRow.styled.ts │ │ │ │ └── ListRow.tsx │ │ │ ├── ListsFiltersDialog │ │ │ │ └── ListsFiltersDialog.tsx │ │ │ ├── ListsShortcuts.tsx │ │ │ ├── ListsTable │ │ │ │ ├── ListsFiltersButton.tsx │ │ │ │ ├── ListsSearch.tsx │ │ │ │ ├── ListsTable.tsx │ │ │ │ └── ListsTableHeader.tsx │ │ │ ├── ListsTableSettings │ │ │ │ ├── ListsAttributesShortcutButton.tsx │ │ │ │ ├── ListsTableSettings.tsx │ │ │ │ └── index.ts │ │ │ ├── NewListDialog │ │ │ │ ├── NewListDialog.styled.ts │ │ │ │ ├── NewListDialog.tsx │ │ │ │ ├── NewListDialogContainer.tsx │ │ │ │ └── NewListFromContext.tsx │ │ │ └── NewReviewSessionDialog │ │ │ │ ├── NewReviewSessionDialog.tsx │ │ │ │ └── NewReviewSessionLoading.tsx │ │ ├── context │ │ │ ├── EntityListsContext.tsx │ │ │ ├── ListItemsDataContext.tsx │ │ │ ├── ListsAttributesContext.tsx │ │ │ ├── ListsAttributesSettings.tsx │ │ │ ├── ListsContext.ts │ │ │ ├── ListsDataContext.tsx │ │ │ ├── ListsModulesContext.tsx │ │ │ ├── ListsProvider.tsx │ │ │ └── index.ts │ │ ├── hooks │ │ │ ├── useBuildListItemsTableData.ts │ │ │ ├── useClearListItems.ts │ │ │ ├── useDeleteList.ts │ │ │ ├── useDeleteListItems.ts │ │ │ ├── useExtraColumns.tsx │ │ │ ├── useGetListItemsData.ts │ │ │ ├── useGetListsData.ts │ │ │ ├── useGetListsItemsForReviewSession.ts │ │ │ ├── useInitialListsExpanded.ts │ │ │ ├── useListContextMenu.ts │ │ │ ├── useListsShortcuts.ts │ │ │ ├── useNewList.ts │ │ │ ├── useReorderListItem.ts │ │ │ ├── useUpdateList.ts │ │ │ └── useUpdateListItems.ts │ │ ├── index.ts │ │ └── util │ │ │ ├── ListItemsShortcuts.tsx │ │ │ ├── buildListsTableData.ts │ │ │ ├── buildReviewListLabel.ts │ │ │ ├── getColumnConfigFromType.ts │ │ │ ├── index.ts │ │ │ └── listAccessControl.ts │ ├── ProjectManagerPage │ │ ├── NewProjectDialog │ │ │ ├── AnatomyPresetDropdown.jsx │ │ │ ├── NewProject.jsx │ │ │ └── index.jsx │ │ ├── ProjectAnatomy.jsx │ │ ├── ProjectManagerPage.jsx │ │ ├── ProjectManagerPageContainer.jsx │ │ ├── ProjectManagerPageLayout.jsx │ │ ├── ProjectPermissions.jsx │ │ ├── ProjectRoots.jsx │ │ ├── Users │ │ │ ├── AccessGroupsCell.tsx │ │ │ ├── ProjectUserAccess.styled.ts │ │ │ ├── ProjectUserAccess.tsx │ │ │ ├── ProjectUserAccessAccessGroupPanel.styled.ts │ │ │ ├── ProjectUserAccessAccessGroupPanel.tsx │ │ │ ├── ProjectUserAccessAssignDialog.styled.js │ │ │ ├── ProjectUserAccessAssignDialog.tsx │ │ │ ├── ProjectUserAccessProjectList.tsx │ │ │ ├── ProjectUserAccessSearchFilterWrapper.tsx │ │ │ ├── ProjectUserAccessUserList.tsx │ │ │ ├── SplitterThreePanes.tsx │ │ │ ├── SplitterTwoPanes.tsx │ │ │ ├── UserCell.tsx │ │ │ ├── hooks.ts │ │ │ ├── mappers.ts │ │ │ └── types.ts │ │ ├── index.jsx │ │ └── mappers.ts │ ├── ProjectOverviewPage │ │ ├── ProjectOverviewPage.tsx │ │ ├── components │ │ │ ├── OverviewActions.tsx │ │ │ └── ReloadButton.tsx │ │ ├── containers │ │ │ ├── ProjectOverviewDetailsPanel.tsx │ │ │ ├── ProjectOverviewSettings.tsx │ │ │ ├── ProjectOverviewTable.tsx │ │ │ └── SearchFilterWrapper.tsx │ │ ├── context │ │ │ └── ProjectOverviewContext.tsx │ │ ├── hooks │ │ │ ├── useExpandAndSelectNewFolders.ts │ │ │ ├── useOverviewContextMenu.ts │ │ │ ├── useTableOpenViewer.ts │ │ │ └── useTableQueriesHelper.ts │ │ ├── index.ts │ │ └── providers │ │ │ ├── ProjectOverviewDataProvider.tsx │ │ │ └── ProjectOverviewTableProvider.tsx │ ├── ProjectPage │ │ ├── ProjectPage.tsx │ │ ├── ProjectPubSub.tsx │ │ └── index.ts │ ├── ReportsPage │ │ ├── ReportsFallback.tsx │ │ └── ReportsPage.tsx │ ├── ReviewPage │ │ └── OpenReviewSessionButton.tsx │ ├── SchedulerPage │ │ ├── SchedulerFallback.tsx │ │ └── SchedulerPage.tsx │ ├── ServicesPage │ │ ├── NewServiceDialog.jsx │ │ ├── ServiceDetailsPanel.jsx │ │ ├── ServicesPage.jsx │ │ └── index.jsx │ ├── SettingsPage │ │ ├── AccessGroups │ │ │ ├── AccessGroupDetail.jsx │ │ │ ├── AccessGroupList.jsx │ │ │ ├── NewAccessGroup.jsx │ │ │ └── index.tsx │ │ ├── AddonInstall │ │ │ ├── AddonInstall.jsx │ │ │ ├── AddonManager.tsx │ │ │ ├── AddonUpload.jsx │ │ │ ├── FilesTable │ │ │ │ └── FilesTable.tsx │ │ │ ├── hooks │ │ │ │ ├── useFetchManagerData.ts │ │ │ │ └── useFileManagerMutations.ts │ │ │ └── index.jsx │ │ ├── AddonsManager │ │ │ ├── AddonsManager.tsx │ │ │ ├── AddonsManagerItems.jsx │ │ │ ├── AddonsManagerTable.jsx │ │ │ ├── BundleStatus │ │ │ │ ├── BundleStatus.styled.js │ │ │ │ └── BundleStatus.tsx │ │ │ ├── helpers.js │ │ │ ├── index.js │ │ │ └── useGetTableData.ts │ │ ├── AnatomyPresets │ │ │ ├── AnatomyPresets.jsx │ │ │ ├── PresetList.jsx │ │ │ └── PresetNameDialog.jsx │ │ ├── Attributes.jsx │ │ ├── Bundles │ │ │ ├── AddonSearchContext.tsx │ │ │ ├── AddonSearchInput.tsx │ │ │ ├── BundleChecks │ │ │ │ ├── BundleChecks.jsx │ │ │ │ └── BundleChecks.styled.js │ │ │ ├── BundleCompare.tsx │ │ │ ├── BundleDepPackage.jsx │ │ │ ├── BundleDeps.jsx │ │ │ ├── BundleDepsPicker.jsx │ │ │ ├── BundleDetail.tsx │ │ │ ├── BundleForm.styled.ts │ │ │ ├── BundleForm.tsx │ │ │ ├── BundleFormLoading.tsx │ │ │ ├── BundleList.jsx │ │ │ ├── Bundles.jsx │ │ │ ├── Bundles.styled.ts │ │ │ ├── BundlesAddonList.tsx │ │ │ ├── CopyBundleSettingsDialog │ │ │ │ ├── CopyBundleSettingsDialog.styled.ts │ │ │ │ ├── CopyBundleSettingsDialog.tsx │ │ │ │ └── CopyBundleSettingsDropdown.tsx │ │ │ ├── InstallerSelector.tsx │ │ │ ├── NewBundle.tsx │ │ │ ├── getLatestSemver.js │ │ │ ├── getNewBundleName.js │ │ │ ├── index.jsx │ │ │ ├── types.ts │ │ │ └── useAddonSelection.ts │ │ ├── Secrets.jsx │ │ ├── ServerConfig │ │ │ ├── ServerConfig.tsx │ │ │ └── ServerConfigUpload.tsx │ │ ├── SettingsAddon.jsx │ │ ├── SettingsPage.jsx │ │ ├── SiteSettings.jsx │ │ ├── StudioSettings.jsx │ │ ├── UsersSettings │ │ │ ├── DeleteUserDialog.tsx │ │ │ ├── RenameUserDialog.tsx │ │ │ ├── ServiceDetails.jsx │ │ │ ├── SetPasswordDialog.jsx │ │ │ ├── UserAccessForm.jsx │ │ │ ├── UserAccessGroupsForm │ │ │ │ └── UserAccessGroupsHelpers.js │ │ │ ├── UserAttribForm.jsx │ │ │ ├── UserLicenseForm.tsx │ │ │ ├── UserList.jsx │ │ │ ├── UserTile.jsx │ │ │ ├── UsersOverview.tsx │ │ │ ├── UsersSettings.jsx │ │ │ ├── index.jsx │ │ │ ├── newServiceUser.jsx │ │ │ ├── newUser.jsx │ │ │ ├── tableSorting.ts │ │ │ ├── useUserMutations.js │ │ │ ├── userDetail.jsx │ │ │ └── users.scss │ │ └── index.jsx │ ├── TasksProgressPage │ │ ├── TaskProgressDetailsPanel.tsx │ │ ├── TasksProgressPage.tsx │ │ └── index.ts │ ├── TeamsPage │ │ ├── CreateNewTeam │ │ │ ├── CreateNewTeam.jsx │ │ │ └── CreateNewTeam.styled.js │ │ ├── TeamDetails.jsx │ │ ├── TeamUsersDetails.jsx │ │ ├── TeamsPage.jsx │ │ ├── UserListTeams.jsx │ │ ├── UserSubtitle.jsx │ │ ├── UsersListTeamsSmall.jsx │ │ ├── addRemoveMembers.js │ │ └── index.jsx │ ├── UserDashboardPage │ │ ├── UserDashboardNoProjects │ │ │ ├── NoProducts.jsx │ │ │ ├── UserDashboardNoProjects.styled.js │ │ │ └── UserDashboardNoProjects.tsx │ │ ├── UserDashboardPage.jsx │ │ ├── UserDashboardTasks │ │ │ ├── ColumnsWrapper.jsx │ │ │ ├── DashboardTasksToolbar │ │ │ │ ├── DashboardTasksToolbar.jsx │ │ │ │ ├── DashboardTasksToolbar.styled.js │ │ │ │ ├── KanBanGroupByOptions.ts │ │ │ │ └── KanBanSortByOptions.ts │ │ │ ├── KanBanCard │ │ │ │ ├── KanBanCard.styled.ts │ │ │ │ ├── KanBanCard.tsx │ │ │ │ ├── KanBanCardDraggable.jsx │ │ │ │ └── KanBanCardOverlay.jsx │ │ │ ├── KanBanColumn │ │ │ │ ├── CollapsedColumn.jsx │ │ │ │ ├── KanBanColumn.jsx │ │ │ │ ├── KanBanColumn.styled.js │ │ │ │ └── KanBanColumnDropzone.jsx │ │ │ ├── ListGroup │ │ │ │ ├── ListGroup.jsx │ │ │ │ └── ListGroup.styled.js │ │ │ ├── RelatedTasks │ │ │ │ ├── RelatedTasksFallback.tsx │ │ │ │ ├── RelatedTasksModule.tsx │ │ │ │ └── index.ts │ │ │ ├── UserDashboardKanBan.jsx │ │ │ ├── UserDashboardList │ │ │ │ ├── UserDashboardList.jsx │ │ │ │ └── UserDashboardList.styled.js │ │ │ ├── UserTasksContainer.jsx │ │ │ └── transformKanbanTasks.ts │ │ ├── context │ │ │ └── UserDashboardContext.tsx │ │ ├── hooks │ │ │ ├── index.ts │ │ │ ├── useGetTaskContextMenu.js │ │ │ ├── useOpenTaskInViewer.ts │ │ │ ├── usePrefetchEntity.js │ │ │ ├── useTaskClick.js │ │ │ └── useTaskSpacebarViewer.tsx │ │ ├── index.js │ │ └── util │ │ │ ├── getFakeTasks.js │ │ │ ├── getFilteredTasks.js │ │ │ ├── getGroupedTasks.js │ │ │ ├── getIntersectionFields.js │ │ │ ├── getMergedFields.js │ │ │ ├── getSortedTasks.js │ │ │ ├── getTasksColumns.js │ │ │ └── index.js │ ├── VersionsProductsPage │ │ ├── VersionsProductsPage.tsx │ │ ├── components │ │ │ ├── VPDetailsPanel │ │ │ │ └── VPDetailsPanel.tsx │ │ │ ├── VPGrid │ │ │ │ ├── VPGrid.tsx │ │ │ │ ├── VPGridCard.tsx │ │ │ │ ├── VPGridGroupHeader.styled.ts │ │ │ │ └── VPGridGroupHeader.tsx │ │ │ ├── VPTable │ │ │ │ └── VPTable.tsx │ │ │ ├── VPTableSettings │ │ │ │ ├── VPTableSettings.tsx │ │ │ │ └── VPTableSortingSetting.tsx │ │ │ ├── VPToolbar │ │ │ │ ├── ShowProductsSwitch.tsx │ │ │ │ ├── VPSearchFilter.tsx │ │ │ │ └── VPToolbar.tsx │ │ │ └── VersionsListTable │ │ │ │ ├── VersionsListTable.styled.ts │ │ │ │ └── VersionsListTable.tsx │ │ ├── context │ │ │ ├── VPDataContext.tsx │ │ │ ├── VPFocusContext.tsx │ │ │ ├── VPSelectionContext.tsx │ │ │ └── VPViewsContext.tsx │ │ ├── hooks │ │ │ ├── index.ts │ │ │ ├── useBuildVersionsTableData.ts │ │ │ ├── useGridKeyboardNavigation.ts │ │ │ ├── useVPContextMenu.tsx │ │ │ ├── useVPGridContextMenu.ts │ │ │ └── useVersionsGroupBy.ts │ │ ├── index.ts │ │ ├── providers │ │ │ ├── VPColumnSettingsProvider.tsx │ │ │ ├── VPProjectTableProvider.tsx │ │ │ ├── VersionsProductsPageProviders.tsx │ │ │ └── index.ts │ │ └── util │ │ │ ├── buildVPGrid.ts │ │ │ ├── buildVPMaps.ts │ │ │ ├── buildVPRows.ts │ │ │ ├── buildVersionsTableRows.ts │ │ │ ├── getFeaturedVersionFilter.ts │ │ │ ├── guessImgRatio.ts │ │ │ ├── index.ts │ │ │ └── loadingVP.ts │ └── WorkfilesPage │ │ ├── WorkfileDetail.jsx │ │ ├── WorkfileList.jsx │ │ ├── WorkfilesPage.jsx │ │ └── index.jsx ├── remote │ ├── AppRemoteLoader.tsx │ └── useLoadRemotePages.tsx ├── services │ ├── accessGroups │ │ ├── getAccessGroups.ts │ │ └── updateAccessGroups.ts │ ├── addonSettings.js │ ├── anatomy │ │ ├── getAnatomy.js │ │ └── updateAnatomy.js │ ├── auth │ │ └── logout.ts │ ├── bundles │ │ ├── getBundles.ts │ │ └── updateBundles.ts │ ├── customRoots.js │ ├── dependencyPackages │ │ ├── getDependencyPackages.ts │ │ └── updateDependencyPackages.ts │ ├── events │ │ └── getEvents.js │ ├── getProjectDashboard.ts │ ├── getTasks.js │ ├── getWorkfiles.js │ ├── inbox │ │ ├── getInbox.ts │ │ ├── gql │ │ │ ├── GetInboxHasUnread.graphql │ │ │ ├── GetInboxMessages.graphql │ │ │ └── GetInboxUnreadCount.graphql │ │ ├── inboxQueries.js │ │ ├── inboxTransform.ts │ │ └── updateInbox.ts │ ├── installers │ │ ├── getInstallers.ts │ │ └── updateInstallers.ts │ ├── market │ │ ├── getMarket.ts │ │ └── gql │ │ │ └── GetMarketInstallEvents.graphql │ ├── onBoarding │ │ ├── gql │ │ │ └── GetInstallEvents.graphql │ │ └── onBoarding.js │ ├── product │ │ ├── getProduct.js │ │ └── updateProduct.ts │ ├── project │ │ └── enhancedProject.ts │ ├── queryUpload.js │ ├── releases │ │ └── getReleases.ts │ ├── restartServer.js │ ├── secrets.js │ ├── services │ │ ├── getServices.ts │ │ └── updateServices.ts │ ├── siteSettings.js │ ├── tasksProgress │ │ ├── getTasksProgress.ts │ │ └── gql │ │ │ ├── GetProgressTask.graphql │ │ │ ├── GetTasksProgress.graphql │ │ │ └── ProgressTaskFragment.graphql │ ├── team │ │ ├── getTeams.js │ │ └── updateTeams.js │ ├── updateProducts.js │ ├── workfiles │ │ └── deleteWorkfile.ts │ └── ynputConnect.js ├── styles │ ├── index.scss │ └── loadingShimmer.scss ├── svg │ ├── AppleLogo.jsx │ ├── CloudLogo.jsx │ ├── LinuxLogo.jsx │ └── WindowsLogo.jsx ├── theme │ └── typography.module.css └── types │ ├── global.ts │ ├── icons.ts │ └── index.ts ├── tests ├── auth.setup.js ├── authentication.spec.ts ├── bundles.spec.ts ├── fixtures │ ├── authenticationPage.ts │ ├── bundlePage.ts │ ├── folderPage.ts │ ├── installRelease.ts │ ├── permissionsPage.ts │ ├── projectPage.ts │ ├── projectUserAccessGroupsPage.ts │ ├── taskPage.ts │ └── userPage.ts ├── folders.spec.ts ├── installRelease.spec.ts ├── projectUserAccessGroups.spec.ts ├── projects.spec.ts ├── reactions.spec.ts ├── tasks.spec.ts └── users.spec.ts ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/.github/ISSUE_TEMPLATE/enhancement_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/instructions/general.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/.github/instructions/general.instructions.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore artifacts: 2 | build 3 | coverage 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/.prettierrc -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/README.md -------------------------------------------------------------------------------- /gen/codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/gen/codegen.yml -------------------------------------------------------------------------------- /gen/download-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/gen/download-schema.js -------------------------------------------------------------------------------- /gen/getAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/gen/getAuth.js -------------------------------------------------------------------------------- /gen/graphql.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/gen/graphql.schema.json -------------------------------------------------------------------------------- /gen/openapi-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/gen/openapi-config.ts -------------------------------------------------------------------------------- /gen/process-api-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/gen/process-api-types.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/playwright.config.js -------------------------------------------------------------------------------- /public/AYON.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/AYON.svg -------------------------------------------------------------------------------- /public/Discord-Symbol-White.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/Discord-Symbol-White.svg -------------------------------------------------------------------------------- /public/android-chrome-192x192-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/android-chrome-192x192-new.png -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/android-chrome-512x512-new.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/ayon-notification.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/ayon-notification.mp3 -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon-16x16-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/favicon-16x16-new.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/favicon-32x32-new.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logos/after-effects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/logos/after-effects.png -------------------------------------------------------------------------------- /public/logos/houdini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/logos/houdini.png -------------------------------------------------------------------------------- /public/logos/maya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/logos/maya.png -------------------------------------------------------------------------------- /public/logos/nuke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/logos/nuke.png -------------------------------------------------------------------------------- /public/logos/photoshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/logos/photoshop.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/mstile-144x144.png -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/mstile-310x150.png -------------------------------------------------------------------------------- /public/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/mstile-310x310.png -------------------------------------------------------------------------------- /public/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/mstile-70x70.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/site-new.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/site-new.webmanifest -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/slack-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/slack-icon.png -------------------------------------------------------------------------------- /public/splash/review-splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/splash/review-splash.png -------------------------------------------------------------------------------- /public/ynput-cloud-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/ynput-cloud-logo.svg -------------------------------------------------------------------------------- /public/ynput-connect-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/public/ynput-connect-logo.svg -------------------------------------------------------------------------------- /shared/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/.babelrc -------------------------------------------------------------------------------- /shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/package.json -------------------------------------------------------------------------------- /shared/src/api/base/baseQueryTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/base/baseQueryTypes.ts -------------------------------------------------------------------------------- /shared/src/api/base/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/base/client.ts -------------------------------------------------------------------------------- /shared/src/api/base/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/base/index.ts -------------------------------------------------------------------------------- /shared/src/api/generated/access.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/access.ts -------------------------------------------------------------------------------- /shared/src/api/generated/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/actions.ts -------------------------------------------------------------------------------- /shared/src/api/generated/activityFeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/activityFeed.ts -------------------------------------------------------------------------------- /shared/src/api/generated/addons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/addons.ts -------------------------------------------------------------------------------- /shared/src/api/generated/anatomy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/anatomy.ts -------------------------------------------------------------------------------- /shared/src/api/generated/attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/attributes.ts -------------------------------------------------------------------------------- /shared/src/api/generated/authentication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/authentication.ts -------------------------------------------------------------------------------- /shared/src/api/generated/bundles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/bundles.ts -------------------------------------------------------------------------------- /shared/src/api/generated/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/configuration.ts -------------------------------------------------------------------------------- /shared/src/api/generated/desktop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/desktop.ts -------------------------------------------------------------------------------- /shared/src/api/generated/entityLists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/entityLists.ts -------------------------------------------------------------------------------- /shared/src/api/generated/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/enums.ts -------------------------------------------------------------------------------- /shared/src/api/generated/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/events.ts -------------------------------------------------------------------------------- /shared/src/api/generated/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/files.ts -------------------------------------------------------------------------------- /shared/src/api/generated/folders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/folders.ts -------------------------------------------------------------------------------- /shared/src/api/generated/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/graphql.ts -------------------------------------------------------------------------------- /shared/src/api/generated/graphqlLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/graphqlLinks.ts -------------------------------------------------------------------------------- /shared/src/api/generated/grouping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/grouping.ts -------------------------------------------------------------------------------- /shared/src/api/generated/inbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/inbox.ts -------------------------------------------------------------------------------- /shared/src/api/generated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/index.ts -------------------------------------------------------------------------------- /shared/src/api/generated/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/links.ts -------------------------------------------------------------------------------- /shared/src/api/generated/market.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/market.ts -------------------------------------------------------------------------------- /shared/src/api/generated/onboarding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/onboarding.ts -------------------------------------------------------------------------------- /shared/src/api/generated/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/operations.ts -------------------------------------------------------------------------------- /shared/src/api/generated/products.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/products.ts -------------------------------------------------------------------------------- /shared/src/api/generated/projectDashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/projectDashboard.ts -------------------------------------------------------------------------------- /shared/src/api/generated/projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/projects.ts -------------------------------------------------------------------------------- /shared/src/api/generated/representations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/representations.ts -------------------------------------------------------------------------------- /shared/src/api/generated/reviewables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/reviewables.ts -------------------------------------------------------------------------------- /shared/src/api/generated/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/services.ts -------------------------------------------------------------------------------- /shared/src/api/generated/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/system.ts -------------------------------------------------------------------------------- /shared/src/api/generated/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/tasks.ts -------------------------------------------------------------------------------- /shared/src/api/generated/teams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/teams.ts -------------------------------------------------------------------------------- /shared/src/api/generated/thumbnails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/thumbnails.ts -------------------------------------------------------------------------------- /shared/src/api/generated/uRIs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/uRIs.ts -------------------------------------------------------------------------------- /shared/src/api/generated/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/users.ts -------------------------------------------------------------------------------- /shared/src/api/generated/versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/versions.ts -------------------------------------------------------------------------------- /shared/src/api/generated/views.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/views.ts -------------------------------------------------------------------------------- /shared/src/api/generated/workfiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/workfiles.ts -------------------------------------------------------------------------------- /shared/src/api/generated/ynputCloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/generated/ynputCloud.ts -------------------------------------------------------------------------------- /shared/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/index.ts -------------------------------------------------------------------------------- /shared/src/api/queries/actions/getActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/actions/getActions.ts -------------------------------------------------------------------------------- /shared/src/api/queries/actions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './getActions' 2 | -------------------------------------------------------------------------------- /shared/src/api/queries/activities/getActivities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/activities/getActivities.ts -------------------------------------------------------------------------------- /shared/src/api/queries/activities/getCategories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/activities/getCategories.ts -------------------------------------------------------------------------------- /shared/src/api/queries/activities/getMentions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/activities/getMentions.ts -------------------------------------------------------------------------------- /shared/src/api/queries/activities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/activities/index.ts -------------------------------------------------------------------------------- /shared/src/api/queries/activities/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/activities/types.ts -------------------------------------------------------------------------------- /shared/src/api/queries/activities/updateReaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/activities/updateReaction.ts -------------------------------------------------------------------------------- /shared/src/api/queries/addons/getAddons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/addons/getAddons.ts -------------------------------------------------------------------------------- /shared/src/api/queries/addons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/addons/index.ts -------------------------------------------------------------------------------- /shared/src/api/queries/addons/updateAddons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/addons/updateAddons.ts -------------------------------------------------------------------------------- /shared/src/api/queries/attributes/getAttributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/attributes/getAttributes.ts -------------------------------------------------------------------------------- /shared/src/api/queries/attributes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/attributes/index.ts -------------------------------------------------------------------------------- /shared/src/api/queries/authentication/index.ts: -------------------------------------------------------------------------------- 1 | export * from './getAuthentication' 2 | -------------------------------------------------------------------------------- /shared/src/api/queries/cloud/cloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/cloud/cloud.ts -------------------------------------------------------------------------------- /shared/src/api/queries/cloud/index.ts: -------------------------------------------------------------------------------- 1 | export * from './cloud' 2 | -------------------------------------------------------------------------------- /shared/src/api/queries/config/getConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/config/getConfig.ts -------------------------------------------------------------------------------- /shared/src/api/queries/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/config/index.ts -------------------------------------------------------------------------------- /shared/src/api/queries/config/updateConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/config/updateConfig.ts -------------------------------------------------------------------------------- /shared/src/api/queries/entities/entityQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/entities/entityQueries.ts -------------------------------------------------------------------------------- /shared/src/api/queries/entities/getEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/entities/getEntity.ts -------------------------------------------------------------------------------- /shared/src/api/queries/entities/getEntityPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/entities/getEntityPanel.ts -------------------------------------------------------------------------------- /shared/src/api/queries/entities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/entities/index.ts -------------------------------------------------------------------------------- /shared/src/api/queries/entities/updateEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/entities/updateEntity.ts -------------------------------------------------------------------------------- /shared/src/api/queries/entityLists/getLists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/entityLists/getLists.ts -------------------------------------------------------------------------------- /shared/src/api/queries/entityLists/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/entityLists/index.ts -------------------------------------------------------------------------------- /shared/src/api/queries/entityLists/listFolders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/entityLists/listFolders.ts -------------------------------------------------------------------------------- /shared/src/api/queries/entityLists/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/entityLists/types.ts -------------------------------------------------------------------------------- /shared/src/api/queries/entityLists/updateLists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/entityLists/updateLists.ts -------------------------------------------------------------------------------- /shared/src/api/queries/folders/getFolders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/folders/getFolders.ts -------------------------------------------------------------------------------- /shared/src/api/queries/folders/index.ts: -------------------------------------------------------------------------------- 1 | export * from './getFolders' 2 | -------------------------------------------------------------------------------- /shared/src/api/queries/grouping/getGrouping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/grouping/getGrouping.ts -------------------------------------------------------------------------------- /shared/src/api/queries/grouping/index.ts: -------------------------------------------------------------------------------- 1 | export * from './getGrouping' 2 | -------------------------------------------------------------------------------- /shared/src/api/queries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/index.ts -------------------------------------------------------------------------------- /shared/src/api/queries/links/getEntityLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/links/getEntityLinks.ts -------------------------------------------------------------------------------- /shared/src/api/queries/links/getLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/links/getLinks.ts -------------------------------------------------------------------------------- /shared/src/api/queries/links/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/links/index.ts -------------------------------------------------------------------------------- /shared/src/api/queries/links/updateLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/links/updateLinks.ts -------------------------------------------------------------------------------- /shared/src/api/queries/overview/getOverview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/overview/getOverview.ts -------------------------------------------------------------------------------- /shared/src/api/queries/overview/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/overview/index.ts -------------------------------------------------------------------------------- /shared/src/api/queries/overview/patchProducts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/overview/patchProducts.ts -------------------------------------------------------------------------------- /shared/src/api/queries/overview/patchVersions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/overview/patchVersions.ts -------------------------------------------------------------------------------- /shared/src/api/queries/overview/updateOverview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/overview/updateOverview.ts -------------------------------------------------------------------------------- /shared/src/api/queries/permissions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './getPermissions' 2 | -------------------------------------------------------------------------------- /shared/src/api/queries/products/createProduct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/products/createProduct.ts -------------------------------------------------------------------------------- /shared/src/api/queries/products/index.ts: -------------------------------------------------------------------------------- 1 | export * from './createProduct' 2 | -------------------------------------------------------------------------------- /shared/src/api/queries/project/ProjectTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/project/ProjectTypes.ts -------------------------------------------------------------------------------- /shared/src/api/queries/project/getProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/project/getProject.ts -------------------------------------------------------------------------------- /shared/src/api/queries/project/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/project/index.ts -------------------------------------------------------------------------------- /shared/src/api/queries/project/updateProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/project/updateProject.ts -------------------------------------------------------------------------------- /shared/src/api/queries/review/getReview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/review/getReview.ts -------------------------------------------------------------------------------- /shared/src/api/queries/review/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/review/index.ts -------------------------------------------------------------------------------- /shared/src/api/queries/review/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/review/types.ts -------------------------------------------------------------------------------- /shared/src/api/queries/review/updateReview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/review/updateReview.ts -------------------------------------------------------------------------------- /shared/src/api/queries/share/index.ts: -------------------------------------------------------------------------------- 1 | export * from './share' 2 | -------------------------------------------------------------------------------- /shared/src/api/queries/share/share.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/share/share.ts -------------------------------------------------------------------------------- /shared/src/api/queries/system/getSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/system/getSystem.ts -------------------------------------------------------------------------------- /shared/src/api/queries/system/index.ts: -------------------------------------------------------------------------------- 1 | export * from './getSystem' 2 | -------------------------------------------------------------------------------- /shared/src/api/queries/uris/getUris.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/uris/getUris.ts -------------------------------------------------------------------------------- /shared/src/api/queries/uris/index.ts: -------------------------------------------------------------------------------- 1 | export * from './getUris' 2 | -------------------------------------------------------------------------------- /shared/src/api/queries/userDashboard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './getUserDashboard' 2 | -------------------------------------------------------------------------------- /shared/src/api/queries/users/getUsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/users/getUsers.ts -------------------------------------------------------------------------------- /shared/src/api/queries/users/guests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/users/guests.ts -------------------------------------------------------------------------------- /shared/src/api/queries/users/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/users/index.ts -------------------------------------------------------------------------------- /shared/src/api/queries/users/updateUsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/users/updateUsers.ts -------------------------------------------------------------------------------- /shared/src/api/queries/versions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/versions/index.ts -------------------------------------------------------------------------------- /shared/src/api/queries/versions/updateVersions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/versions/updateVersions.ts -------------------------------------------------------------------------------- /shared/src/api/queries/views/getViews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/views/getViews.ts -------------------------------------------------------------------------------- /shared/src/api/queries/views/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/views/index.ts -------------------------------------------------------------------------------- /shared/src/api/queries/views/updateViews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/views/updateViews.ts -------------------------------------------------------------------------------- /shared/src/api/queries/watchers/getWatchers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/api/queries/watchers/getWatchers.ts -------------------------------------------------------------------------------- /shared/src/api/queries/watchers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './getWatchers' 2 | -------------------------------------------------------------------------------- /shared/src/components/AccessSearchInput/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/AccessSearchInput/index.ts -------------------------------------------------------------------------------- /shared/src/components/AccessUser/AccessUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/AccessUser/AccessUser.tsx -------------------------------------------------------------------------------- /shared/src/components/AccessUser/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AccessUser' 2 | -------------------------------------------------------------------------------- /shared/src/components/AddonLoadingScreen/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AddonLoadingScreen' 2 | -------------------------------------------------------------------------------- /shared/src/components/AttributeEditor/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MinMaxField' 2 | -------------------------------------------------------------------------------- /shared/src/components/AttributeEditor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AttributeEditor' 2 | -------------------------------------------------------------------------------- /shared/src/components/Badge/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/Badge/Badge.tsx -------------------------------------------------------------------------------- /shared/src/components/Badge/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Badge' 2 | -------------------------------------------------------------------------------- /shared/src/components/Chips/Chips.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/Chips/Chips.tsx -------------------------------------------------------------------------------- /shared/src/components/Chips/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Chips' 2 | -------------------------------------------------------------------------------- /shared/src/components/DetailsDialog/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DetailsDialog' 2 | -------------------------------------------------------------------------------- /shared/src/components/DetailsPanelAttributes/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DetailsPanelAttributesEditor' 2 | -------------------------------------------------------------------------------- /shared/src/components/DetailsPanelDetails/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/DetailsPanelDetails/index.ts -------------------------------------------------------------------------------- /shared/src/components/DetailsPanelDetails/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/DetailsPanelDetails/types.ts -------------------------------------------------------------------------------- /shared/src/components/EarlyPreview/EarlyPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/EarlyPreview/EarlyPreview.tsx -------------------------------------------------------------------------------- /shared/src/components/EarlyPreview/index.ts: -------------------------------------------------------------------------------- 1 | export * from './EarlyPreview' 2 | -------------------------------------------------------------------------------- /shared/src/components/EmptyPlaceholder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/EmptyPlaceholder/index.ts -------------------------------------------------------------------------------- /shared/src/components/EntityPanelUploader/index.ts: -------------------------------------------------------------------------------- 1 | export * from './EntityPanelUploader' 2 | -------------------------------------------------------------------------------- /shared/src/components/EntityPath/EntityPath.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/EntityPath/EntityPath.tsx -------------------------------------------------------------------------------- /shared/src/components/EntityPath/index.ts: -------------------------------------------------------------------------------- 1 | export * from './EntityPath' 2 | -------------------------------------------------------------------------------- /shared/src/components/EnumEditor/EnumEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/EnumEditor/EnumEditor.tsx -------------------------------------------------------------------------------- /shared/src/components/EnumEditor/EnumEditorItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/EnumEditor/EnumEditorItem.tsx -------------------------------------------------------------------------------- /shared/src/components/EnumEditor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/EnumEditor/index.ts -------------------------------------------------------------------------------- /shared/src/components/EnumEditor/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/EnumEditor/util/index.ts -------------------------------------------------------------------------------- /shared/src/components/FeaturedVersionOrder/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FeaturedVersionOrder' 2 | -------------------------------------------------------------------------------- /shared/src/components/Feedback/FeedbackContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/Feedback/FeedbackContext.tsx -------------------------------------------------------------------------------- /shared/src/components/Feedback/SupportBubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/Feedback/SupportBubble.tsx -------------------------------------------------------------------------------- /shared/src/components/Feedback/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/Feedback/index.ts -------------------------------------------------------------------------------- /shared/src/components/FileThumbnail/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FileThumbnail' 2 | -------------------------------------------------------------------------------- /shared/src/components/LegacyBadge/LegacyBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/LegacyBadge/LegacyBadge.tsx -------------------------------------------------------------------------------- /shared/src/components/LegacyBadge/index.ts: -------------------------------------------------------------------------------- 1 | export * from './LegacyBadge' 2 | -------------------------------------------------------------------------------- /shared/src/components/LinksManager/AddNewLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/LinksManager/AddNewLinks.tsx -------------------------------------------------------------------------------- /shared/src/components/LinksManager/LinksManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/LinksManager/LinksManager.tsx -------------------------------------------------------------------------------- /shared/src/components/LinksManager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/LinksManager/index.ts -------------------------------------------------------------------------------- /shared/src/components/ListAttributeForm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ListAttributeForm' 2 | -------------------------------------------------------------------------------- /shared/src/components/ListMetaData/ListMetaData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/ListMetaData/ListMetaData.tsx -------------------------------------------------------------------------------- /shared/src/components/ListMetaData/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ListMetaData' 2 | -------------------------------------------------------------------------------- /shared/src/components/Menu/Menu.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/Menu/Menu.styled.ts -------------------------------------------------------------------------------- /shared/src/components/Menu/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/Menu/Menu.tsx -------------------------------------------------------------------------------- /shared/src/components/Menu/MenuContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/Menu/MenuContainer.tsx -------------------------------------------------------------------------------- /shared/src/components/Menu/MenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/Menu/MenuItem.tsx -------------------------------------------------------------------------------- /shared/src/components/Menu/MenuList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/Menu/MenuList.tsx -------------------------------------------------------------------------------- /shared/src/components/Menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/Menu/index.ts -------------------------------------------------------------------------------- /shared/src/components/Menu/useMenuPosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/Menu/useMenuPosition.ts -------------------------------------------------------------------------------- /shared/src/components/PlayableIcon/PlayableIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/PlayableIcon/PlayableIcon.tsx -------------------------------------------------------------------------------- /shared/src/components/Powerpack/CTAButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/Powerpack/CTAButton.tsx -------------------------------------------------------------------------------- /shared/src/components/Powerpack/PowerpackButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/Powerpack/PowerpackButton.tsx -------------------------------------------------------------------------------- /shared/src/components/Powerpack/PowerpackDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/Powerpack/PowerpackDialog.tsx -------------------------------------------------------------------------------- /shared/src/components/Powerpack/PricingLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/Powerpack/PricingLink.tsx -------------------------------------------------------------------------------- /shared/src/components/Powerpack/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/Powerpack/index.ts -------------------------------------------------------------------------------- /shared/src/components/ProjectTableSettings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/ProjectTableSettings/index.ts -------------------------------------------------------------------------------- /shared/src/components/QuillListStyles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/QuillListStyles/index.ts -------------------------------------------------------------------------------- /shared/src/components/RefreshToast/RefreshToast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/RefreshToast/RefreshToast.tsx -------------------------------------------------------------------------------- /shared/src/components/RefreshToast/index.ts: -------------------------------------------------------------------------------- 1 | export * from './RefreshToast' 2 | -------------------------------------------------------------------------------- /shared/src/components/RenameForm/RenameForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/RenameForm/RenameForm.tsx -------------------------------------------------------------------------------- /shared/src/components/RenameForm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './RenameForm' 2 | -------------------------------------------------------------------------------- /shared/src/components/ReviewableCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ReviewableCard' 2 | -------------------------------------------------------------------------------- /shared/src/components/ReviewableProgressCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ReviewableProgressCard' 2 | -------------------------------------------------------------------------------- /shared/src/components/ReviewablesList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/ReviewablesList/index.ts -------------------------------------------------------------------------------- /shared/src/components/SearchFilter/filterDates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/SearchFilter/filterDates.ts -------------------------------------------------------------------------------- /shared/src/components/SearchFilter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/SearchFilter/index.ts -------------------------------------------------------------------------------- /shared/src/components/SettingsPanel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/SettingsPanel/index.ts -------------------------------------------------------------------------------- /shared/src/components/ShareOptionIcon/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ShareOptionIcon' 2 | -------------------------------------------------------------------------------- /shared/src/components/SimpleFormDialog/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SimpleFormDialog' 2 | -------------------------------------------------------------------------------- /shared/src/components/SizeSlider/SizeSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/SizeSlider/SizeSlider.tsx -------------------------------------------------------------------------------- /shared/src/components/SizeSlider/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SizeSlider' 2 | -------------------------------------------------------------------------------- /shared/src/components/SortingSetting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/SortingSetting/index.ts -------------------------------------------------------------------------------- /shared/src/components/StyledLink/StyledLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/StyledLink/StyledLink.tsx -------------------------------------------------------------------------------- /shared/src/components/StyledLink/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/StyledLink/index.ts -------------------------------------------------------------------------------- /shared/src/components/TableGridSwitch/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TableGridSwitch' 2 | -------------------------------------------------------------------------------- /shared/src/components/Thumbnail/Thumbnail.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/Thumbnail/Thumbnail.styled.ts -------------------------------------------------------------------------------- /shared/src/components/Thumbnail/Thumbnail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/Thumbnail/Thumbnail.tsx -------------------------------------------------------------------------------- /shared/src/components/Thumbnail/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/Thumbnail/index.ts -------------------------------------------------------------------------------- /shared/src/components/ThumbnailSimple/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/ThumbnailSimple/index.ts -------------------------------------------------------------------------------- /shared/src/components/UserImage/UserImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/UserImage/UserImage.tsx -------------------------------------------------------------------------------- /shared/src/components/UserImage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/UserImage/index.ts -------------------------------------------------------------------------------- /shared/src/components/VersionUploader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/VersionUploader/index.ts -------------------------------------------------------------------------------- /shared/src/components/Watchers/Watchers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/Watchers/Watchers.tsx -------------------------------------------------------------------------------- /shared/src/components/Watchers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Watchers' 2 | -------------------------------------------------------------------------------- /shared/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/components/index.ts -------------------------------------------------------------------------------- /shared/src/containers/Actions/ActionIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/Actions/ActionIcon.tsx -------------------------------------------------------------------------------- /shared/src/containers/Actions/Actions.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/Actions/Actions.styled.ts -------------------------------------------------------------------------------- /shared/src/containers/Actions/Actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/Actions/Actions.tsx -------------------------------------------------------------------------------- /shared/src/containers/Actions/ActionsDropdown/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ActionsDropdown' 2 | -------------------------------------------------------------------------------- /shared/src/containers/Actions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Actions' 2 | -------------------------------------------------------------------------------- /shared/src/containers/ContextMenu/ContextMenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/ContextMenu/ContextMenu.scss -------------------------------------------------------------------------------- /shared/src/containers/ContextMenu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/ContextMenu/index.ts -------------------------------------------------------------------------------- /shared/src/containers/DetailsPanel/DetailsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/DetailsPanel/DetailsPanel.tsx -------------------------------------------------------------------------------- /shared/src/containers/DetailsPanel/DetailsPanelFloating/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DetailsPanelFloating' 2 | -------------------------------------------------------------------------------- /shared/src/containers/DetailsPanel/DetailsPanelSlideOut/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DetailsPanelSlideOut' 2 | -------------------------------------------------------------------------------- /shared/src/containers/DetailsPanel/FeedWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/DetailsPanel/FeedWrapper.tsx -------------------------------------------------------------------------------- /shared/src/containers/DetailsPanel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/DetailsPanel/index.ts -------------------------------------------------------------------------------- /shared/src/containers/EntityPickerDialog/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from './EntityTypeTable' 2 | -------------------------------------------------------------------------------- /shared/src/containers/EntityPickerDialog/index.ts: -------------------------------------------------------------------------------- 1 | export * from './EntityPickerDialog' 2 | -------------------------------------------------------------------------------- /shared/src/containers/Feed/Feed.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/Feed/Feed.styled.ts -------------------------------------------------------------------------------- /shared/src/containers/Feed/Feed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/Feed/Feed.tsx -------------------------------------------------------------------------------- /shared/src/containers/Feed/components/CommentInput/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shared/src/containers/Feed/context/FeedContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/Feed/context/FeedContext.tsx -------------------------------------------------------------------------------- /shared/src/containers/Feed/feedHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/Feed/feedHelpers.tsx -------------------------------------------------------------------------------- /shared/src/containers/Feed/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/Feed/index.ts -------------------------------------------------------------------------------- /shared/src/containers/ProjectTreeTable/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/ProjectTreeTable/index.ts -------------------------------------------------------------------------------- /shared/src/containers/ProjectTreeTable/types/widgetDisplayConfig.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shared/src/containers/RepresentationsList/index.ts: -------------------------------------------------------------------------------- 1 | export * from './RepresentationsList' 2 | -------------------------------------------------------------------------------- /shared/src/containers/SimpleTable/SimpleTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/SimpleTable/SimpleTable.tsx -------------------------------------------------------------------------------- /shared/src/containers/SimpleTable/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/SimpleTable/index.ts -------------------------------------------------------------------------------- /shared/src/containers/Slicer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/Slicer/index.ts -------------------------------------------------------------------------------- /shared/src/containers/Slicer/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/Slicer/types.ts -------------------------------------------------------------------------------- /shared/src/containers/Views/ViewItem/ViewItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/Views/ViewItem/ViewItem.tsx -------------------------------------------------------------------------------- /shared/src/containers/Views/Views.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/Views/Views.styled.ts -------------------------------------------------------------------------------- /shared/src/containers/Views/Views.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/Views/Views.tsx -------------------------------------------------------------------------------- /shared/src/containers/Views/ViewsMenu/ViewsMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/Views/ViewsMenu/ViewsMenu.tsx -------------------------------------------------------------------------------- /shared/src/containers/Views/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/Views/hooks/index.ts -------------------------------------------------------------------------------- /shared/src/containers/Views/hooks/pages/viewUpdateHelper.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shared/src/containers/Views/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/Views/index.ts -------------------------------------------------------------------------------- /shared/src/containers/Views/utils/portalUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/Views/utils/portalUtils.ts -------------------------------------------------------------------------------- /shared/src/containers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/containers/index.ts -------------------------------------------------------------------------------- /shared/src/context/AddonContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/context/AddonContext.tsx -------------------------------------------------------------------------------- /shared/src/context/AddonProjectContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/context/AddonProjectContext.tsx -------------------------------------------------------------------------------- /shared/src/context/DetailsPanelContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/context/DetailsPanelContext.tsx -------------------------------------------------------------------------------- /shared/src/context/GlobalContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/context/GlobalContext.tsx -------------------------------------------------------------------------------- /shared/src/context/MenuContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/context/MenuContext.tsx -------------------------------------------------------------------------------- /shared/src/context/MoveEntityContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/context/MoveEntityContext.tsx -------------------------------------------------------------------------------- /shared/src/context/PowerpackContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/context/PowerpackContext.tsx -------------------------------------------------------------------------------- /shared/src/context/ProjectContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/context/ProjectContext.tsx -------------------------------------------------------------------------------- /shared/src/context/ProjectFoldersContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/context/ProjectFoldersContext.tsx -------------------------------------------------------------------------------- /shared/src/context/RemoteModulesContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/context/RemoteModulesContext.tsx -------------------------------------------------------------------------------- /shared/src/context/SettingsPanelContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/context/SettingsPanelContext.tsx -------------------------------------------------------------------------------- /shared/src/context/ThumbnailUploaderContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/context/ThumbnailUploaderContext.tsx -------------------------------------------------------------------------------- /shared/src/context/UriContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/context/UriContext.tsx -------------------------------------------------------------------------------- /shared/src/context/WebsocketContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/context/WebsocketContext.tsx -------------------------------------------------------------------------------- /shared/src/context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/context/index.ts -------------------------------------------------------------------------------- /shared/src/context/pip/PiPProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/context/pip/PiPProvider.tsx -------------------------------------------------------------------------------- /shared/src/context/pip/PiPWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/context/pip/PiPWindow.tsx -------------------------------------------------------------------------------- /shared/src/context/pip/PiPWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/context/pip/PiPWrapper.tsx -------------------------------------------------------------------------------- /shared/src/context/pip/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/context/pip/globals.d.ts -------------------------------------------------------------------------------- /shared/src/context/pip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/context/pip/index.ts -------------------------------------------------------------------------------- /shared/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/hooks/index.ts -------------------------------------------------------------------------------- /shared/src/hooks/useActionTriggers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/hooks/useActionTriggers.ts -------------------------------------------------------------------------------- /shared/src/hooks/useEntityUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/hooks/useEntityUpdate.ts -------------------------------------------------------------------------------- /shared/src/hooks/useGetEntityGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/hooks/useGetEntityGroups.ts -------------------------------------------------------------------------------- /shared/src/hooks/useGroupByRemoteModules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/hooks/useGroupByRemoteModules.ts -------------------------------------------------------------------------------- /shared/src/hooks/useGroupedPagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/hooks/useGroupedPagination.ts -------------------------------------------------------------------------------- /shared/src/hooks/useHierarchyTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/hooks/useHierarchyTable.ts -------------------------------------------------------------------------------- /shared/src/hooks/useLoadModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/hooks/useLoadModule.ts -------------------------------------------------------------------------------- /shared/src/hooks/useLoadModules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/hooks/useLoadModules.ts -------------------------------------------------------------------------------- /shared/src/hooks/useLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/hooks/useLocalStorage.ts -------------------------------------------------------------------------------- /shared/src/hooks/useQueryArgumentChangeLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/hooks/useQueryArgumentChangeLoading.ts -------------------------------------------------------------------------------- /shared/src/hooks/useScopedStatuses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/hooks/useScopedStatuses.ts -------------------------------------------------------------------------------- /shared/src/hooks/useUserProjectConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/hooks/useUserProjectConfig.ts -------------------------------------------------------------------------------- /shared/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/index.ts -------------------------------------------------------------------------------- /shared/src/util/checkName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/util/checkName.ts -------------------------------------------------------------------------------- /shared/src/util/clipboardUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/util/clipboardUtils.ts -------------------------------------------------------------------------------- /shared/src/util/colorUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/util/colorUtils.ts -------------------------------------------------------------------------------- /shared/src/util/columnConfigConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/util/columnConfigConverter.ts -------------------------------------------------------------------------------- /shared/src/util/confirmDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/util/confirmDelete.ts -------------------------------------------------------------------------------- /shared/src/util/copyToClipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/util/copyToClipboard.ts -------------------------------------------------------------------------------- /shared/src/util/extractVersionFromFilename.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/util/extractVersionFromFilename.ts -------------------------------------------------------------------------------- /shared/src/util/getAttributeIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/util/getAttributeIcon.ts -------------------------------------------------------------------------------- /shared/src/util/getEntityId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/util/getEntityId.ts -------------------------------------------------------------------------------- /shared/src/util/getEntityTypeIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/util/getEntityTypeIcon.ts -------------------------------------------------------------------------------- /shared/src/util/getGroupByDataType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/util/getGroupByDataType.ts -------------------------------------------------------------------------------- /shared/src/util/getMixedState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/util/getMixedState.ts -------------------------------------------------------------------------------- /shared/src/util/getPriorityOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/util/getPriorityOptions.ts -------------------------------------------------------------------------------- /shared/src/util/groupResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/util/groupResult.ts -------------------------------------------------------------------------------- /shared/src/util/humanizeFieldName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/util/humanizeFieldName.ts -------------------------------------------------------------------------------- /shared/src/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/util/index.ts -------------------------------------------------------------------------------- /shared/src/util/parseHtmlToPlainTextWithLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/util/parseHtmlToPlainTextWithLinks.ts -------------------------------------------------------------------------------- /shared/src/util/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/util/platform.ts -------------------------------------------------------------------------------- /shared/src/util/pubsub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/util/pubsub.ts -------------------------------------------------------------------------------- /shared/src/util/uriUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/util/uriUtils.ts -------------------------------------------------------------------------------- /shared/src/util/versionUploadHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/src/util/versionUploadHelpers.ts -------------------------------------------------------------------------------- /shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/tsconfig.json -------------------------------------------------------------------------------- /shared/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/vite.config.ts -------------------------------------------------------------------------------- /shared/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/shared/yarn.lock -------------------------------------------------------------------------------- /src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/app.tsx -------------------------------------------------------------------------------- /src/ayon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/ayon.js -------------------------------------------------------------------------------- /src/components/AddonCard/AddonCard.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/AddonCard/AddonCard.styled.ts -------------------------------------------------------------------------------- /src/components/AddonCard/AddonCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/AddonCard/AddonCard.tsx -------------------------------------------------------------------------------- /src/components/AddonCard/AddonCardProgress.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/AddonCard/AddonCardProgress.jsx -------------------------------------------------------------------------------- /src/components/AddonDialog/AddonDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/AddonDialog/AddonDialog.jsx -------------------------------------------------------------------------------- /src/components/AddonIcon/AddonIcon.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/AddonIcon/AddonIcon.styled.ts -------------------------------------------------------------------------------- /src/components/AddonIcon/AddonIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/AddonIcon/AddonIcon.tsx -------------------------------------------------------------------------------- /src/components/AnnotationsTools/AnnotationTools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/AnnotationsTools/AnnotationTools.tsx -------------------------------------------------------------------------------- /src/components/ApiKeyManager.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/ApiKeyManager.jsx -------------------------------------------------------------------------------- /src/components/AttribForm/AttribForm.styled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/AttribForm/AttribForm.styled.js -------------------------------------------------------------------------------- /src/components/AttribForm/AttribForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/AttribForm/AttribForm.tsx -------------------------------------------------------------------------------- /src/components/AttribForm/AttribFormType.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/AttribForm/AttribFormType.jsx -------------------------------------------------------------------------------- /src/components/Avatar/Avatar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/Avatar/Avatar.jsx -------------------------------------------------------------------------------- /src/components/Avatar/Avatar.styled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/Avatar/Avatar.styled.js -------------------------------------------------------------------------------- /src/components/Canvas.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/Canvas.jsx -------------------------------------------------------------------------------- /src/components/CategorySelect/CategorySelect.styled.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/CategorySelect/CategorySelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/CategorySelect/CategorySelect.tsx -------------------------------------------------------------------------------- /src/components/CollapseButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/CollapseButton.jsx -------------------------------------------------------------------------------- /src/components/ColumnsSelect/ColumnsSelect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/ColumnsSelect/ColumnsSelect.jsx -------------------------------------------------------------------------------- /src/components/DetailHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/DetailHeader.jsx -------------------------------------------------------------------------------- /src/components/DetailsPanelSplitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/DetailsPanelSplitter.ts -------------------------------------------------------------------------------- /src/components/DocumentTitle/DocumentTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/DocumentTitle/DocumentTitle.tsx -------------------------------------------------------------------------------- /src/components/EnableNotifications.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/EnableNotifications.jsx -------------------------------------------------------------------------------- /src/components/ErrorFallback.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/ErrorFallback.jsx -------------------------------------------------------------------------------- /src/components/Favicon/Favicon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/Favicon/Favicon.jsx -------------------------------------------------------------------------------- /src/components/FolderSequence/FolderSequence.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/FolderSequence/FolderSequence.jsx -------------------------------------------------------------------------------- /src/components/GridLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/GridLayout.tsx -------------------------------------------------------------------------------- /src/components/GuestUserPageLocked.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/GuestUserPageLocked.tsx -------------------------------------------------------------------------------- /src/components/HelpButton/HelpButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/HelpButton/HelpButton.tsx -------------------------------------------------------------------------------- /src/components/InfoMessage/InfoMessage.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/InfoMessage/InfoMessage.styled.ts -------------------------------------------------------------------------------- /src/components/InfoMessage/InfoMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/InfoMessage/InfoMessage.tsx -------------------------------------------------------------------------------- /src/components/InfoMessage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/InfoMessage/index.ts -------------------------------------------------------------------------------- /src/components/LicensesDialog/LicensesDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/LicensesDialog/LicensesDialog.tsx -------------------------------------------------------------------------------- /src/components/ListItem/ListItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/ListItem/ListItem.jsx -------------------------------------------------------------------------------- /src/components/ListItem/ListItem.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/ListItem/ListItem.styled.ts -------------------------------------------------------------------------------- /src/components/MarketAddonCard/MarketAddonCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/MarketAddonCard/MarketAddonCard.tsx -------------------------------------------------------------------------------- /src/components/MarketAddonCard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/MarketAddonCard/index.ts -------------------------------------------------------------------------------- /src/components/MeOrUserSwitch/MeOrUserSwitch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/MeOrUserSwitch/MeOrUserSwitch.jsx -------------------------------------------------------------------------------- /src/components/Menu/Menus/AppMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/Menu/Menus/AppMenu.jsx -------------------------------------------------------------------------------- /src/components/Menu/Menus/HelpMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/Menu/Menus/HelpMenu.jsx -------------------------------------------------------------------------------- /src/components/Menu/Menus/UserMenu/UserMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/Menu/Menus/UserMenu/UserMenu.jsx -------------------------------------------------------------------------------- /src/components/Menu/Menus/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/Menu/Menus/index.js -------------------------------------------------------------------------------- /src/components/Menu/index.js: -------------------------------------------------------------------------------- 1 | export * from './Menus' 2 | -------------------------------------------------------------------------------- /src/components/NewEntity/NewEntity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/NewEntity/NewEntity.tsx -------------------------------------------------------------------------------- /src/components/NewEntity/NewEntityForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/NewEntity/NewEntityForm.tsx -------------------------------------------------------------------------------- /src/components/NewEntity/TypeEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/NewEntity/TypeEditor.tsx -------------------------------------------------------------------------------- /src/components/NoEntityFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/NoEntityFound.jsx -------------------------------------------------------------------------------- /src/components/PlatformSelect/PlatformSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/PlatformSelect/PlatformSelect.tsx -------------------------------------------------------------------------------- /src/components/ProjectButton/ProjectButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/ProjectButton/ProjectButton.jsx -------------------------------------------------------------------------------- /src/components/Release/ReleasePreset.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/Release/ReleasePreset.jsx -------------------------------------------------------------------------------- /src/components/Release/ReleasePreset.styled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/Release/ReleasePreset.styled.js -------------------------------------------------------------------------------- /src/components/RestartBanner/RestartBanner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/RestartBanner/RestartBanner.jsx -------------------------------------------------------------------------------- /src/components/ReviewVersionDropdown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/ReviewVersionDropdown/index.ts -------------------------------------------------------------------------------- /src/components/ReviewablesSelector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/ReviewablesSelector/index.ts -------------------------------------------------------------------------------- /src/components/SearchDropdown/SearchDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/SearchDropdown/SearchDropdown.tsx -------------------------------------------------------------------------------- /src/components/SearchFilter/SearchFilterWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/SearchFilter/SearchFilterWrapper.tsx -------------------------------------------------------------------------------- /src/components/SearchFilter/featureFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/SearchFilter/featureFlags.ts -------------------------------------------------------------------------------- /src/components/SearchFilter/getFilterFromId.ts: -------------------------------------------------------------------------------- 1 | export default (id: string) => id?.split('_')[0] 2 | -------------------------------------------------------------------------------- /src/components/SearchFilter/useFocusOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/SearchFilter/useFocusOptions.tsx -------------------------------------------------------------------------------- /src/components/ServerRestartingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/ServerRestartingPage.tsx -------------------------------------------------------------------------------- /src/components/ShareDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/ShareDialog.jsx -------------------------------------------------------------------------------- /src/components/ShortcutWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/ShortcutWidget.tsx -------------------------------------------------------------------------------- /src/components/SubChip/SubChip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/SubChip/SubChip.tsx -------------------------------------------------------------------------------- /src/components/TrialBanner/TrialBanner.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/TrialBanner/TrialBanner.styled.ts -------------------------------------------------------------------------------- /src/components/TrialBanner/TrialBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/TrialBanner/TrialBanner.tsx -------------------------------------------------------------------------------- /src/components/TrialBanner/helpers/getTrialDates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/TrialBanner/helpers/getTrialDates.ts -------------------------------------------------------------------------------- /src/components/User/UserDetailsHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/User/UserDetailsHeader.jsx -------------------------------------------------------------------------------- /src/components/YnputCloud/YnputCloud.styled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/YnputCloud/YnputCloud.styled.js -------------------------------------------------------------------------------- /src/components/YnputCloud/YnputCloudButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/YnputCloud/YnputCloudButton.jsx -------------------------------------------------------------------------------- /src/components/YnputCloud/YnputConnector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/YnputCloud/YnputConnector.jsx -------------------------------------------------------------------------------- /src/components/icons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/icons.jsx -------------------------------------------------------------------------------- /src/components/oauthIcons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/oauthIcons.jsx -------------------------------------------------------------------------------- /src/components/status/statusField.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/status/statusField.jsx -------------------------------------------------------------------------------- /src/components/status/statusSelect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/components/status/statusSelect.jsx -------------------------------------------------------------------------------- /src/containers/AccessGroupsDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/AccessGroupsDropdown.tsx -------------------------------------------------------------------------------- /src/containers/AddonSettings/AddonSettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/AddonSettings/AddonSettings.jsx -------------------------------------------------------------------------------- /src/containers/AddonSettings/AddonSettingsPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/AddonSettings/AddonSettingsPanel.jsx -------------------------------------------------------------------------------- /src/containers/AddonSettings/BundlesSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/AddonSettings/BundlesSelector.tsx -------------------------------------------------------------------------------- /src/containers/AddonSettings/SettingsAddonList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/AddonSettings/SettingsAddonList.tsx -------------------------------------------------------------------------------- /src/containers/AddonSettings/SettingsListHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/AddonSettings/SettingsListHeader.tsx -------------------------------------------------------------------------------- /src/containers/AddonSettings/VariantSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/AddonSettings/VariantSelector.tsx -------------------------------------------------------------------------------- /src/containers/AddonSettings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/AddonSettings/index.jsx -------------------------------------------------------------------------------- /src/containers/AddonSettings/searchTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/AddonSettings/searchTools.ts -------------------------------------------------------------------------------- /src/containers/AddonSettings/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/AddonSettings/utils.js -------------------------------------------------------------------------------- /src/containers/AnatomyEditor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/AnatomyEditor.jsx -------------------------------------------------------------------------------- /src/containers/AppRoutes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/AppRoutes.tsx -------------------------------------------------------------------------------- /src/containers/Breadcrumbs/Breadcrumbs.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/Breadcrumbs/Breadcrumbs.styled.ts -------------------------------------------------------------------------------- /src/containers/Breadcrumbs/Breadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/Breadcrumbs/Breadcrumbs.tsx -------------------------------------------------------------------------------- /src/containers/BundleDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/BundleDropdown.tsx -------------------------------------------------------------------------------- /src/containers/CopySettings/AddonDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/CopySettings/AddonDropdown.jsx -------------------------------------------------------------------------------- /src/containers/CopySettings/CopySettingsDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/CopySettings/CopySettingsDialog.jsx -------------------------------------------------------------------------------- /src/containers/CopySettings/CopySettingsNode.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/CopySettings/CopySettingsNode.jsx -------------------------------------------------------------------------------- /src/containers/CopySettings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/CopySettings/index.jsx -------------------------------------------------------------------------------- /src/containers/FileUploadPreviewContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/FileUploadPreviewContainer.tsx -------------------------------------------------------------------------------- /src/containers/FolderPicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/FolderPicker.jsx -------------------------------------------------------------------------------- /src/containers/HierarchyBuilder/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/HierarchyBuilder/index.jsx -------------------------------------------------------------------------------- /src/containers/HierarchyExpandFolders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/HierarchyExpandFolders.tsx -------------------------------------------------------------------------------- /src/containers/ProjectDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/ProjectDropdown.jsx -------------------------------------------------------------------------------- /src/containers/ProjectMenu/projectMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/ProjectMenu/projectMenu.jsx -------------------------------------------------------------------------------- /src/containers/ProjectMenu/projectMenu.styled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/ProjectMenu/projectMenu.styled.js -------------------------------------------------------------------------------- /src/containers/ProjectsList/ProjectsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/ProjectsList/ProjectsList.tsx -------------------------------------------------------------------------------- /src/containers/ProjectsList/ProjectsListRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/ProjectsList/ProjectsListRow.tsx -------------------------------------------------------------------------------- /src/containers/ProtectedRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/ProtectedRoute.tsx -------------------------------------------------------------------------------- /src/containers/RawSettingsDialog/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/RawSettingsDialog/index.jsx -------------------------------------------------------------------------------- /src/containers/ReleaseInstallerDialog/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/ReleaseInstallerDialog/helpers.ts -------------------------------------------------------------------------------- /src/containers/SettingsEditor/SettingsEditor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/SettingsEditor/SettingsEditor.jsx -------------------------------------------------------------------------------- /src/containers/SettingsEditor/SettingsEditor.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/SettingsEditor/SettingsEditor.sass -------------------------------------------------------------------------------- /src/containers/SettingsEditor/SettingsPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/SettingsEditor/SettingsPanel.jsx -------------------------------------------------------------------------------- /src/containers/SettingsEditor/Widgets/AccessWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AccessWidget' 2 | -------------------------------------------------------------------------------- /src/containers/SettingsEditor/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/SettingsEditor/helpers.ts -------------------------------------------------------------------------------- /src/containers/SettingsEditor/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/SettingsEditor/index.jsx -------------------------------------------------------------------------------- /src/containers/Shortcuts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/Shortcuts.jsx -------------------------------------------------------------------------------- /src/containers/SiteDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/SiteDropdown.jsx -------------------------------------------------------------------------------- /src/containers/SiteList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/SiteList.jsx -------------------------------------------------------------------------------- /src/containers/Slicer/Slicer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/Slicer/Slicer.tsx -------------------------------------------------------------------------------- /src/containers/Slicer/SlicerDropdownFallback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/Slicer/SlicerDropdownFallback.tsx -------------------------------------------------------------------------------- /src/containers/Slicer/SlicerSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/Slicer/SlicerSearch.tsx -------------------------------------------------------------------------------- /src/containers/Slicer/hooks/useSlicerReduxSync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/Slicer/hooks/useSlicerReduxSync.ts -------------------------------------------------------------------------------- /src/containers/Slicer/hooks/useTableDataBySlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/Slicer/hooks/useTableDataBySlice.ts -------------------------------------------------------------------------------- /src/containers/Slicer/hooks/useUsersTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/Slicer/hooks/useUsersTable.tsx -------------------------------------------------------------------------------- /src/containers/Slicer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/Slicer/index.ts -------------------------------------------------------------------------------- /src/containers/Slicer/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/Slicer/types.ts -------------------------------------------------------------------------------- /src/containers/TasksProgress/TasksProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/TasksProgress/TasksProgress.tsx -------------------------------------------------------------------------------- /src/containers/TasksProgress/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/TasksProgress/components/index.ts -------------------------------------------------------------------------------- /src/containers/TasksProgress/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/TasksProgress/helpers/index.ts -------------------------------------------------------------------------------- /src/containers/TasksProgress/helpers/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/TasksProgress/helpers/operations.ts -------------------------------------------------------------------------------- /src/containers/TasksProgress/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/TasksProgress/hooks/index.ts -------------------------------------------------------------------------------- /src/containers/TasksProgress/hooks/useFolderSort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/TasksProgress/hooks/useFolderSort.ts -------------------------------------------------------------------------------- /src/containers/TasksProgress/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/TasksProgress/index.ts -------------------------------------------------------------------------------- /src/containers/TasksProgress/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/TasksProgress/styles.scss -------------------------------------------------------------------------------- /src/containers/TeamList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/TeamList.jsx -------------------------------------------------------------------------------- /src/containers/TrialEnded/TrialEnded.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/TrialEnded/TrialEnded.styled.ts -------------------------------------------------------------------------------- /src/containers/TrialEnded/TrialEnded.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/TrialEnded/TrialEnded.tsx -------------------------------------------------------------------------------- /src/containers/VideoPlayer/Timecode.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/VideoPlayer/Timecode.jsx -------------------------------------------------------------------------------- /src/containers/VideoPlayer/Trackbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/VideoPlayer/Trackbar.jsx -------------------------------------------------------------------------------- /src/containers/VideoPlayer/VideoOverlay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/VideoPlayer/VideoOverlay.jsx -------------------------------------------------------------------------------- /src/containers/VideoPlayer/VideoPlayer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/VideoPlayer/VideoPlayer.jsx -------------------------------------------------------------------------------- /src/containers/VideoPlayer/VideoPlayerControls.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/VideoPlayer/VideoPlayerControls.jsx -------------------------------------------------------------------------------- /src/containers/VideoPlayer/hooks/useGoToFrame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/VideoPlayer/hooks/useGoToFrame.ts -------------------------------------------------------------------------------- /src/containers/VideoPlayer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/VideoPlayer/index.jsx -------------------------------------------------------------------------------- /src/containers/Viewer/Viewer.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/Viewer/Viewer.styled.ts -------------------------------------------------------------------------------- /src/containers/Viewer/Viewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/Viewer/Viewer.tsx -------------------------------------------------------------------------------- /src/containers/Viewer/ViewerComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/Viewer/ViewerComponent.tsx -------------------------------------------------------------------------------- /src/containers/Viewer/ViewerDetailsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/Viewer/ViewerDetailsPanel.tsx -------------------------------------------------------------------------------- /src/containers/Viewer/ViewerDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/Viewer/ViewerDialog.tsx -------------------------------------------------------------------------------- /src/containers/Viewer/ViewerImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/Viewer/ViewerImage.tsx -------------------------------------------------------------------------------- /src/containers/Viewer/ViewerPlayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/Viewer/ViewerPlayer.tsx -------------------------------------------------------------------------------- /src/containers/Viewer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/Viewer/index.ts -------------------------------------------------------------------------------- /src/containers/attributeTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/attributeTable.jsx -------------------------------------------------------------------------------- /src/containers/fieldFormat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/fieldFormat.jsx -------------------------------------------------------------------------------- /src/containers/header/AppHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/header/AppHeader.jsx -------------------------------------------------------------------------------- /src/containers/header/AppNavLinks.styled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/header/AppNavLinks.styled.js -------------------------------------------------------------------------------- /src/containers/header/AppNavLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/header/AppNavLinks.tsx -------------------------------------------------------------------------------- /src/containers/header/ChatBubbleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/header/ChatBubbleButton.tsx -------------------------------------------------------------------------------- /src/containers/header/HeaderButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/header/HeaderButton.jsx -------------------------------------------------------------------------------- /src/containers/header/InboxNotification.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/header/InboxNotification.jsx -------------------------------------------------------------------------------- /src/containers/header/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/header/index.jsx -------------------------------------------------------------------------------- /src/containers/hierarchy.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/hierarchy.jsx -------------------------------------------------------------------------------- /src/containers/taskList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/containers/taskList.jsx -------------------------------------------------------------------------------- /src/context/NewEntityContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/context/NewEntityContext.tsx -------------------------------------------------------------------------------- /src/context/NotificationsContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/context/NotificationsContext.jsx -------------------------------------------------------------------------------- /src/context/PasteContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/context/PasteContext.jsx -------------------------------------------------------------------------------- /src/context/RestartContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/context/RestartContext.jsx -------------------------------------------------------------------------------- /src/context/ShortcutsContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/context/ShortcutsContext.jsx -------------------------------------------------------------------------------- /src/context/SlicerContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/context/SlicerContext.tsx -------------------------------------------------------------------------------- /src/context/ViewerContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/context/ViewerContext.tsx -------------------------------------------------------------------------------- /src/features/addonsManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/features/addonsManager.js -------------------------------------------------------------------------------- /src/features/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/features/context.js -------------------------------------------------------------------------------- /src/features/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/features/dashboard.js -------------------------------------------------------------------------------- /src/features/middleware/localStorageMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/features/middleware/localStorageMiddleware.js -------------------------------------------------------------------------------- /src/features/middleware/searchParamsMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/features/middleware/searchParamsMiddleware.js -------------------------------------------------------------------------------- /src/features/progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/features/progress.ts -------------------------------------------------------------------------------- /src/features/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/features/project.js -------------------------------------------------------------------------------- /src/features/releaseInstaller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/features/releaseInstaller.ts -------------------------------------------------------------------------------- /src/features/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/features/store.ts -------------------------------------------------------------------------------- /src/features/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/features/user.js -------------------------------------------------------------------------------- /src/features/viewer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/features/viewer.ts -------------------------------------------------------------------------------- /src/helpers/arrayEquals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/helpers/arrayEquals.js -------------------------------------------------------------------------------- /src/helpers/callbackOnKeyDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/helpers/callbackOnKeyDown.js -------------------------------------------------------------------------------- /src/helpers/getFieldInObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/helpers/getFieldInObject.js -------------------------------------------------------------------------------- /src/helpers/getPreviousTagElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/helpers/getPreviousTagElement.js -------------------------------------------------------------------------------- /src/helpers/getSequence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/helpers/getSequence.ts -------------------------------------------------------------------------------- /src/helpers/helpArticles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/helpers/helpArticles.ts -------------------------------------------------------------------------------- /src/helpers/isHTMLElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/helpers/isHTMLElement.ts -------------------------------------------------------------------------------- /src/helpers/objectComparison.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/helpers/objectComparison.js -------------------------------------------------------------------------------- /src/helpers/parseTasksList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/helpers/parseTasksList.js -------------------------------------------------------------------------------- /src/helpers/pasteFromClipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/helpers/pasteFromClipboard.js -------------------------------------------------------------------------------- /src/helpers/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/helpers/routes.ts -------------------------------------------------------------------------------- /src/helpers/sortByHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/helpers/sortByHelpers.ts -------------------------------------------------------------------------------- /src/helpers/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/helpers/string.ts -------------------------------------------------------------------------------- /src/helpers/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/helpers/url.ts -------------------------------------------------------------------------------- /src/hooks/Tooltip/Tooltip.styled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/hooks/Tooltip/Tooltip.styled.js -------------------------------------------------------------------------------- /src/hooks/Tooltip/useTooltip.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/hooks/Tooltip/useTooltip.jsx -------------------------------------------------------------------------------- /src/hooks/useAddonContextResend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/hooks/useAddonContextResend.ts -------------------------------------------------------------------------------- /src/hooks/useColumnResize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/hooks/useColumnResize.js -------------------------------------------------------------------------------- /src/hooks/useColumnsConfig.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/hooks/useCreateEntityShortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/hooks/useCreateEntityShortcuts.ts -------------------------------------------------------------------------------- /src/hooks/useFocused.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/hooks/useFocused.js -------------------------------------------------------------------------------- /src/hooks/useGetBundleAddonVersions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/hooks/useGetBundleAddonVersions.ts -------------------------------------------------------------------------------- /src/hooks/useGoToEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/hooks/useGoToEntity.ts -------------------------------------------------------------------------------- /src/hooks/usePatchProductsListWithVersions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/hooks/usePatchProductsListWithVersions.ts -------------------------------------------------------------------------------- /src/hooks/usePortalElements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/hooks/usePortalElements.ts -------------------------------------------------------------------------------- /src/hooks/usePrevious.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/hooks/usePrevious.js -------------------------------------------------------------------------------- /src/hooks/useProjectDefaultTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/hooks/useProjectDefaultTab.ts -------------------------------------------------------------------------------- /src/hooks/usePubSub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/hooks/usePubSub.js -------------------------------------------------------------------------------- /src/hooks/useScrollSync.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/hooks/useScrollSync.jsx -------------------------------------------------------------------------------- /src/hooks/useSearchFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/hooks/useSearchFilter.js -------------------------------------------------------------------------------- /src/hooks/useShortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/hooks/useShortcuts.js -------------------------------------------------------------------------------- /src/hooks/useTableLoadingData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/hooks/useTableLoadingData.ts -------------------------------------------------------------------------------- /src/hooks/useTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/hooks/useTitle.ts -------------------------------------------------------------------------------- /src/hooks/useUserProjectPermissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/hooks/useUserProjectPermissions.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/pages/APIDocsPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/APIDocsPage.jsx -------------------------------------------------------------------------------- /src/pages/AccountPage/AccountPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/AccountPage/AccountPage.tsx -------------------------------------------------------------------------------- /src/pages/AccountPage/ProfilePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/AccountPage/ProfilePage.jsx -------------------------------------------------------------------------------- /src/pages/AccountPage/SessionListPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/AccountPage/SessionListPage.jsx -------------------------------------------------------------------------------- /src/pages/AccountPage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/AccountPage/index.jsx -------------------------------------------------------------------------------- /src/pages/BrowserPage/BrowserDetailsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/BrowserPage/BrowserDetailsPanel.tsx -------------------------------------------------------------------------------- /src/pages/BrowserPage/BrowserPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/BrowserPage/BrowserPage.tsx -------------------------------------------------------------------------------- /src/pages/BrowserPage/Products/NoProducts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/BrowserPage/Products/NoProducts.jsx -------------------------------------------------------------------------------- /src/pages/BrowserPage/Products/Products.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/BrowserPage/Products/Products.jsx -------------------------------------------------------------------------------- /src/pages/BrowserPage/Products/Products.styled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/BrowserPage/Products/Products.styled.js -------------------------------------------------------------------------------- /src/pages/BrowserPage/Products/ProductsGrid.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/BrowserPage/Products/ProductsGrid.jsx -------------------------------------------------------------------------------- /src/pages/BrowserPage/Products/ProductsList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/BrowserPage/Products/ProductsList.jsx -------------------------------------------------------------------------------- /src/pages/BrowserPage/Products/VersionList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/BrowserPage/Products/VersionList.jsx -------------------------------------------------------------------------------- /src/pages/BrowserPage/Products/ViewModeToggle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/BrowserPage/Products/ViewModeToggle.jsx -------------------------------------------------------------------------------- /src/pages/BrowserPage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/BrowserPage/index.jsx -------------------------------------------------------------------------------- /src/pages/ErrorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ErrorPage.tsx -------------------------------------------------------------------------------- /src/pages/EventsPage/EntityTile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/EventsPage/EntityTile.jsx -------------------------------------------------------------------------------- /src/pages/EventsPage/EventDetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/EventsPage/EventDetail.jsx -------------------------------------------------------------------------------- /src/pages/EventsPage/EventList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/EventsPage/EventList.jsx -------------------------------------------------------------------------------- /src/pages/EventsPage/EventOverview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/EventsPage/EventOverview.jsx -------------------------------------------------------------------------------- /src/pages/EventsPage/EventTile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/EventsPage/EventTile.jsx -------------------------------------------------------------------------------- /src/pages/EventsPage/EventsPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/EventsPage/EventsPage.jsx -------------------------------------------------------------------------------- /src/pages/EventsPage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/EventsPage/index.jsx -------------------------------------------------------------------------------- /src/pages/ExplorerPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ExplorerPage.jsx -------------------------------------------------------------------------------- /src/pages/InboxPage/Inbox/Inbox.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/InboxPage/Inbox/Inbox.styled.ts -------------------------------------------------------------------------------- /src/pages/InboxPage/Inbox/Inbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/InboxPage/Inbox/Inbox.tsx -------------------------------------------------------------------------------- /src/pages/InboxPage/InboxDetailsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/InboxPage/InboxDetailsPanel.tsx -------------------------------------------------------------------------------- /src/pages/InboxPage/InboxMessage/InboxMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/InboxPage/InboxMessage/InboxMessage.tsx -------------------------------------------------------------------------------- /src/pages/InboxPage/InboxPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/InboxPage/InboxPage.tsx -------------------------------------------------------------------------------- /src/pages/InboxPage/hooks/useGroupMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/InboxPage/hooks/useGroupMessages.ts -------------------------------------------------------------------------------- /src/pages/InboxPage/hooks/useInboxRefresh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/InboxPage/hooks/useInboxRefresh.ts -------------------------------------------------------------------------------- /src/pages/InboxPage/hooks/useKeydown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/InboxPage/hooks/useKeydown.ts -------------------------------------------------------------------------------- /src/pages/InboxPage/hooks/useUpdateInboxMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/InboxPage/hooks/useUpdateInboxMessage.ts -------------------------------------------------------------------------------- /src/pages/InboxPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/InboxPage/index.tsx -------------------------------------------------------------------------------- /src/pages/InboxPage/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/InboxPage/types.ts -------------------------------------------------------------------------------- /src/pages/LauncherAuthPage/LauncherAuthPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/LauncherAuthPage/LauncherAuthPage.tsx -------------------------------------------------------------------------------- /src/pages/LauncherAuthPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/LauncherAuthPage/index.ts -------------------------------------------------------------------------------- /src/pages/LoadingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/LoadingPage.tsx -------------------------------------------------------------------------------- /src/pages/LoginPage/AuthLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/LoginPage/AuthLink.jsx -------------------------------------------------------------------------------- /src/pages/LoginPage/AuthLink.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/LoginPage/LoginPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/LoginPage/LoginPage.jsx -------------------------------------------------------------------------------- /src/pages/LoginPage/LoginPage.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/LoginPage/LoginPage.styled.jsx -------------------------------------------------------------------------------- /src/pages/LoginPage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/LoginPage/index.jsx -------------------------------------------------------------------------------- /src/pages/LoginPage/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/LoginPage/markdown.js -------------------------------------------------------------------------------- /src/pages/MarketPage/MarketAddonsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/MarketPage/MarketAddonsList.tsx -------------------------------------------------------------------------------- /src/pages/MarketPage/MarketDetails/AddonDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/MarketPage/MarketDetails/AddonDetails.tsx -------------------------------------------------------------------------------- /src/pages/MarketPage/MarketDetails/MetaPanelRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/MarketPage/MarketDetails/MetaPanelRow.tsx -------------------------------------------------------------------------------- /src/pages/MarketPage/MarketDetails/useDownload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/MarketPage/MarketDetails/useDownload.js -------------------------------------------------------------------------------- /src/pages/MarketPage/MarketDetails/useUninstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/MarketPage/MarketDetails/useUninstall.js -------------------------------------------------------------------------------- /src/pages/MarketPage/MarketFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/MarketPage/MarketFilters.tsx -------------------------------------------------------------------------------- /src/pages/MarketPage/MarketPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/MarketPage/MarketPage.jsx -------------------------------------------------------------------------------- /src/pages/MarketPage/helpers/filterItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/MarketPage/helpers/filterItems.ts -------------------------------------------------------------------------------- /src/pages/MarketPage/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/MarketPage/helpers/index.ts -------------------------------------------------------------------------------- /src/pages/MarketPage/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/MarketPage/hooks/index.ts -------------------------------------------------------------------------------- /src/pages/MarketPage/hooks/useExpandedGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/MarketPage/hooks/useExpandedGroups.ts -------------------------------------------------------------------------------- /src/pages/MarketPage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/MarketPage/index.jsx -------------------------------------------------------------------------------- /src/pages/MarketPage/mergeAddonsData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/MarketPage/mergeAddonsData.js -------------------------------------------------------------------------------- /src/pages/OnBoarding/OnBoardingPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/OnBoarding/OnBoardingPage.jsx -------------------------------------------------------------------------------- /src/pages/OnBoarding/Step/AddonSelectStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/OnBoarding/Step/AddonSelectStep.tsx -------------------------------------------------------------------------------- /src/pages/OnBoarding/Step/BoostrapStart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/OnBoarding/Step/BoostrapStart.jsx -------------------------------------------------------------------------------- /src/pages/OnBoarding/Step/ConnectionDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/OnBoarding/Step/ConnectionDetails.jsx -------------------------------------------------------------------------------- /src/pages/OnBoarding/Step/CreateUser.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/OnBoarding/Step/CreateUser.jsx -------------------------------------------------------------------------------- /src/pages/OnBoarding/Step/CreateUser.styled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/OnBoarding/Step/CreateUser.styled.js -------------------------------------------------------------------------------- /src/pages/OnBoarding/Step/Landing.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/OnBoarding/Step/Landing.jsx -------------------------------------------------------------------------------- /src/pages/OnBoarding/Step/PlatformSelectStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/OnBoarding/Step/PlatformSelectStep.tsx -------------------------------------------------------------------------------- /src/pages/OnBoarding/Step/ProgressInstall.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/OnBoarding/Step/ProgressInstall.jsx -------------------------------------------------------------------------------- /src/pages/OnBoarding/Step/ReleaseSelect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/OnBoarding/Step/ReleaseSelect.jsx -------------------------------------------------------------------------------- /src/pages/OnBoarding/Step/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/OnBoarding/Step/index.js -------------------------------------------------------------------------------- /src/pages/OnBoarding/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/OnBoarding/index.jsx -------------------------------------------------------------------------------- /src/pages/OnBoarding/util/FooterButtons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/OnBoarding/util/FooterButtons.jsx -------------------------------------------------------------------------------- /src/pages/OnBoarding/util/OnBoardingContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/OnBoarding/util/OnBoardingContext.jsx -------------------------------------------------------------------------------- /src/pages/OnBoarding/util/OnBoardingStep.styled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/OnBoarding/util/OnBoardingStep.styled.js -------------------------------------------------------------------------------- /src/pages/OnBoarding/util/StepWrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/OnBoarding/util/StepWrapper.jsx -------------------------------------------------------------------------------- /src/pages/PasswordResetPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/PasswordResetPage.jsx -------------------------------------------------------------------------------- /src/pages/ProjectAddon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectAddon.jsx -------------------------------------------------------------------------------- /src/pages/ProjectDashboard/DashboardAddon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectDashboard/DashboardAddon.jsx -------------------------------------------------------------------------------- /src/pages/ProjectDashboard/ProjectDashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectDashboard/ProjectDashboard.jsx -------------------------------------------------------------------------------- /src/pages/ProjectDashboard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectDashboard/index.jsx -------------------------------------------------------------------------------- /src/pages/ProjectDashboard/panels/HeartBeat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectDashboard/panels/HeartBeat.jsx -------------------------------------------------------------------------------- /src/pages/ProjectDashboard/panels/ListStatsTile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectDashboard/panels/ListStatsTile.jsx -------------------------------------------------------------------------------- /src/pages/ProjectDashboard/panels/ProgressBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectDashboard/panels/ProgressBar.jsx -------------------------------------------------------------------------------- /src/pages/ProjectDashboard/panels/ProgressTile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectDashboard/panels/ProgressTile.jsx -------------------------------------------------------------------------------- /src/pages/ProjectDashboard/panels/ProjectHealth.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectDashboard/panels/ProjectHealth.jsx -------------------------------------------------------------------------------- /src/pages/ProjectDashboard/panels/ProjectLatest.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectDashboard/panels/ProjectLatest.jsx -------------------------------------------------------------------------------- /src/pages/ProjectDashboard/panels/ProjectStats.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectDashboard/panels/ProjectStats.jsx -------------------------------------------------------------------------------- /src/pages/ProjectDashboard/panels/ProjectTeams.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectDashboard/panels/ProjectTeams.jsx -------------------------------------------------------------------------------- /src/pages/ProjectDashboard/panels/ProjectUsers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectDashboard/panels/ProjectUsers.jsx -------------------------------------------------------------------------------- /src/pages/ProjectDashboard/panels/Timeline.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectDashboard/panels/Timeline.jsx -------------------------------------------------------------------------------- /src/pages/ProjectListsPage/ProjectListsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectListsPage/ProjectListsPage.tsx -------------------------------------------------------------------------------- /src/pages/ProjectListsPage/ProjectReviewsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectListsPage/ProjectReviewsPage.tsx -------------------------------------------------------------------------------- /src/pages/ProjectListsPage/components/ListsTableSettings/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ListsTableSettings' 2 | -------------------------------------------------------------------------------- /src/pages/ProjectListsPage/context/ListsAttributesSettings.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/ProjectListsPage/context/ListsContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectListsPage/context/ListsContext.ts -------------------------------------------------------------------------------- /src/pages/ProjectListsPage/context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectListsPage/context/index.ts -------------------------------------------------------------------------------- /src/pages/ProjectListsPage/hooks/useDeleteList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectListsPage/hooks/useDeleteList.ts -------------------------------------------------------------------------------- /src/pages/ProjectListsPage/hooks/useGetListsData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectListsPage/hooks/useGetListsData.ts -------------------------------------------------------------------------------- /src/pages/ProjectListsPage/hooks/useNewList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectListsPage/hooks/useNewList.ts -------------------------------------------------------------------------------- /src/pages/ProjectListsPage/hooks/useUpdateList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectListsPage/hooks/useUpdateList.ts -------------------------------------------------------------------------------- /src/pages/ProjectListsPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectListsPage/index.ts -------------------------------------------------------------------------------- /src/pages/ProjectListsPage/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectListsPage/util/index.ts -------------------------------------------------------------------------------- /src/pages/ProjectManagerPage/ProjectAnatomy.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectManagerPage/ProjectAnatomy.jsx -------------------------------------------------------------------------------- /src/pages/ProjectManagerPage/ProjectManagerPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectManagerPage/ProjectManagerPage.jsx -------------------------------------------------------------------------------- /src/pages/ProjectManagerPage/ProjectPermissions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectManagerPage/ProjectPermissions.jsx -------------------------------------------------------------------------------- /src/pages/ProjectManagerPage/ProjectRoots.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectManagerPage/ProjectRoots.jsx -------------------------------------------------------------------------------- /src/pages/ProjectManagerPage/Users/UserCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectManagerPage/Users/UserCell.tsx -------------------------------------------------------------------------------- /src/pages/ProjectManagerPage/Users/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectManagerPage/Users/hooks.ts -------------------------------------------------------------------------------- /src/pages/ProjectManagerPage/Users/mappers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectManagerPage/Users/mappers.ts -------------------------------------------------------------------------------- /src/pages/ProjectManagerPage/Users/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectManagerPage/Users/types.ts -------------------------------------------------------------------------------- /src/pages/ProjectManagerPage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectManagerPage/index.jsx -------------------------------------------------------------------------------- /src/pages/ProjectManagerPage/mappers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectManagerPage/mappers.ts -------------------------------------------------------------------------------- /src/pages/ProjectOverviewPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectOverviewPage/index.ts -------------------------------------------------------------------------------- /src/pages/ProjectPage/ProjectPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectPage/ProjectPage.tsx -------------------------------------------------------------------------------- /src/pages/ProjectPage/ProjectPubSub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectPage/ProjectPubSub.tsx -------------------------------------------------------------------------------- /src/pages/ProjectPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ProjectPage/index.ts -------------------------------------------------------------------------------- /src/pages/ReportsPage/ReportsFallback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ReportsPage/ReportsFallback.tsx -------------------------------------------------------------------------------- /src/pages/ReportsPage/ReportsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ReportsPage/ReportsPage.tsx -------------------------------------------------------------------------------- /src/pages/ReviewPage/OpenReviewSessionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ReviewPage/OpenReviewSessionButton.tsx -------------------------------------------------------------------------------- /src/pages/SchedulerPage/SchedulerFallback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SchedulerPage/SchedulerFallback.tsx -------------------------------------------------------------------------------- /src/pages/SchedulerPage/SchedulerPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SchedulerPage/SchedulerPage.tsx -------------------------------------------------------------------------------- /src/pages/ServicesPage/NewServiceDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ServicesPage/NewServiceDialog.jsx -------------------------------------------------------------------------------- /src/pages/ServicesPage/ServiceDetailsPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ServicesPage/ServiceDetailsPanel.jsx -------------------------------------------------------------------------------- /src/pages/ServicesPage/ServicesPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ServicesPage/ServicesPage.jsx -------------------------------------------------------------------------------- /src/pages/ServicesPage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/ServicesPage/index.jsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/AccessGroups/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/AccessGroups/index.tsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/AddonInstall/AddonUpload.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/AddonInstall/AddonUpload.jsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/AddonInstall/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/AddonInstall/index.jsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/AddonsManager/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/AddonsManager/helpers.js -------------------------------------------------------------------------------- /src/pages/SettingsPage/AddonsManager/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/AddonsManager/index.js -------------------------------------------------------------------------------- /src/pages/SettingsPage/Attributes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/Attributes.jsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/Bundles/AddonSearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/Bundles/AddonSearchInput.tsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/Bundles/BundleCompare.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/Bundles/BundleCompare.tsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/Bundles/BundleDepPackage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/Bundles/BundleDepPackage.jsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/Bundles/BundleDeps.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/Bundles/BundleDeps.jsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/Bundles/BundleDepsPicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/Bundles/BundleDepsPicker.jsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/Bundles/BundleDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/Bundles/BundleDetail.tsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/Bundles/BundleForm.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/Bundles/BundleForm.styled.ts -------------------------------------------------------------------------------- /src/pages/SettingsPage/Bundles/BundleForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/Bundles/BundleForm.tsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/Bundles/BundleList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/Bundles/BundleList.jsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/Bundles/Bundles.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/Bundles/Bundles.jsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/Bundles/Bundles.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/Bundles/Bundles.styled.ts -------------------------------------------------------------------------------- /src/pages/SettingsPage/Bundles/BundlesAddonList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/Bundles/BundlesAddonList.tsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/Bundles/NewBundle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/Bundles/NewBundle.tsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/Bundles/getLatestSemver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/Bundles/getLatestSemver.js -------------------------------------------------------------------------------- /src/pages/SettingsPage/Bundles/getNewBundleName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/Bundles/getNewBundleName.js -------------------------------------------------------------------------------- /src/pages/SettingsPage/Bundles/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/Bundles/index.jsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/Bundles/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/Bundles/types.ts -------------------------------------------------------------------------------- /src/pages/SettingsPage/Bundles/useAddonSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/Bundles/useAddonSelection.ts -------------------------------------------------------------------------------- /src/pages/SettingsPage/Secrets.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/Secrets.jsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/SettingsAddon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/SettingsAddon.jsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/SettingsPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/SettingsPage.jsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/SiteSettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/SiteSettings.jsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/StudioSettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/StudioSettings.jsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/UsersSettings/UserList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/UsersSettings/UserList.jsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/UsersSettings/UserTile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/UsersSettings/UserTile.jsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/UsersSettings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/UsersSettings/index.jsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/UsersSettings/newUser.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/UsersSettings/newUser.jsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/UsersSettings/userDetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/UsersSettings/userDetail.jsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/UsersSettings/users.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/UsersSettings/users.scss -------------------------------------------------------------------------------- /src/pages/SettingsPage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/SettingsPage/index.jsx -------------------------------------------------------------------------------- /src/pages/TasksProgressPage/TasksProgressPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/TasksProgressPage/TasksProgressPage.tsx -------------------------------------------------------------------------------- /src/pages/TasksProgressPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/TasksProgressPage/index.ts -------------------------------------------------------------------------------- /src/pages/TeamsPage/CreateNewTeam/CreateNewTeam.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/TeamsPage/CreateNewTeam/CreateNewTeam.jsx -------------------------------------------------------------------------------- /src/pages/TeamsPage/TeamDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/TeamsPage/TeamDetails.jsx -------------------------------------------------------------------------------- /src/pages/TeamsPage/TeamUsersDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/TeamsPage/TeamUsersDetails.jsx -------------------------------------------------------------------------------- /src/pages/TeamsPage/TeamsPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/TeamsPage/TeamsPage.jsx -------------------------------------------------------------------------------- /src/pages/TeamsPage/UserListTeams.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/TeamsPage/UserListTeams.jsx -------------------------------------------------------------------------------- /src/pages/TeamsPage/UserSubtitle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/TeamsPage/UserSubtitle.jsx -------------------------------------------------------------------------------- /src/pages/TeamsPage/UsersListTeamsSmall.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/TeamsPage/UsersListTeamsSmall.jsx -------------------------------------------------------------------------------- /src/pages/TeamsPage/addRemoveMembers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/TeamsPage/addRemoveMembers.js -------------------------------------------------------------------------------- /src/pages/TeamsPage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/TeamsPage/index.jsx -------------------------------------------------------------------------------- /src/pages/UserDashboardPage/UserDashboardPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/UserDashboardPage/UserDashboardPage.jsx -------------------------------------------------------------------------------- /src/pages/UserDashboardPage/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/UserDashboardPage/hooks/index.ts -------------------------------------------------------------------------------- /src/pages/UserDashboardPage/hooks/useTaskClick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/UserDashboardPage/hooks/useTaskClick.js -------------------------------------------------------------------------------- /src/pages/UserDashboardPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/UserDashboardPage/index.js -------------------------------------------------------------------------------- /src/pages/UserDashboardPage/util/getFakeTasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/UserDashboardPage/util/getFakeTasks.js -------------------------------------------------------------------------------- /src/pages/UserDashboardPage/util/getGroupedTasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/UserDashboardPage/util/getGroupedTasks.js -------------------------------------------------------------------------------- /src/pages/UserDashboardPage/util/getMergedFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/UserDashboardPage/util/getMergedFields.js -------------------------------------------------------------------------------- /src/pages/UserDashboardPage/util/getSortedTasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/UserDashboardPage/util/getSortedTasks.js -------------------------------------------------------------------------------- /src/pages/UserDashboardPage/util/getTasksColumns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/UserDashboardPage/util/getTasksColumns.js -------------------------------------------------------------------------------- /src/pages/UserDashboardPage/util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/UserDashboardPage/util/index.js -------------------------------------------------------------------------------- /src/pages/VersionsProductsPage/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/VersionsProductsPage/hooks/index.ts -------------------------------------------------------------------------------- /src/pages/VersionsProductsPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './VersionsProductsPage' 2 | -------------------------------------------------------------------------------- /src/pages/VersionsProductsPage/providers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/VersionsProductsPage/providers/index.ts -------------------------------------------------------------------------------- /src/pages/VersionsProductsPage/util/buildVPGrid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/VersionsProductsPage/util/buildVPGrid.ts -------------------------------------------------------------------------------- /src/pages/VersionsProductsPage/util/buildVPMaps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/VersionsProductsPage/util/buildVPMaps.ts -------------------------------------------------------------------------------- /src/pages/VersionsProductsPage/util/buildVPRows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/VersionsProductsPage/util/buildVPRows.ts -------------------------------------------------------------------------------- /src/pages/VersionsProductsPage/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/VersionsProductsPage/util/index.ts -------------------------------------------------------------------------------- /src/pages/VersionsProductsPage/util/loadingVP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/VersionsProductsPage/util/loadingVP.ts -------------------------------------------------------------------------------- /src/pages/WorkfilesPage/WorkfileDetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/WorkfilesPage/WorkfileDetail.jsx -------------------------------------------------------------------------------- /src/pages/WorkfilesPage/WorkfileList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/WorkfilesPage/WorkfileList.jsx -------------------------------------------------------------------------------- /src/pages/WorkfilesPage/WorkfilesPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/WorkfilesPage/WorkfilesPage.jsx -------------------------------------------------------------------------------- /src/pages/WorkfilesPage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/pages/WorkfilesPage/index.jsx -------------------------------------------------------------------------------- /src/remote/AppRemoteLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/remote/AppRemoteLoader.tsx -------------------------------------------------------------------------------- /src/remote/useLoadRemotePages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/remote/useLoadRemotePages.tsx -------------------------------------------------------------------------------- /src/services/accessGroups/getAccessGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/accessGroups/getAccessGroups.ts -------------------------------------------------------------------------------- /src/services/accessGroups/updateAccessGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/accessGroups/updateAccessGroups.ts -------------------------------------------------------------------------------- /src/services/addonSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/addonSettings.js -------------------------------------------------------------------------------- /src/services/anatomy/getAnatomy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/anatomy/getAnatomy.js -------------------------------------------------------------------------------- /src/services/anatomy/updateAnatomy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/anatomy/updateAnatomy.js -------------------------------------------------------------------------------- /src/services/auth/logout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/auth/logout.ts -------------------------------------------------------------------------------- /src/services/bundles/getBundles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/bundles/getBundles.ts -------------------------------------------------------------------------------- /src/services/bundles/updateBundles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/bundles/updateBundles.ts -------------------------------------------------------------------------------- /src/services/customRoots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/customRoots.js -------------------------------------------------------------------------------- /src/services/events/getEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/events/getEvents.js -------------------------------------------------------------------------------- /src/services/getProjectDashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/getProjectDashboard.ts -------------------------------------------------------------------------------- /src/services/getTasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/getTasks.js -------------------------------------------------------------------------------- /src/services/getWorkfiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/getWorkfiles.js -------------------------------------------------------------------------------- /src/services/inbox/getInbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/inbox/getInbox.ts -------------------------------------------------------------------------------- /src/services/inbox/gql/GetInboxHasUnread.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/inbox/gql/GetInboxHasUnread.graphql -------------------------------------------------------------------------------- /src/services/inbox/gql/GetInboxMessages.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/inbox/gql/GetInboxMessages.graphql -------------------------------------------------------------------------------- /src/services/inbox/gql/GetInboxUnreadCount.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/inbox/gql/GetInboxUnreadCount.graphql -------------------------------------------------------------------------------- /src/services/inbox/inboxQueries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/inbox/inboxQueries.js -------------------------------------------------------------------------------- /src/services/inbox/inboxTransform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/inbox/inboxTransform.ts -------------------------------------------------------------------------------- /src/services/inbox/updateInbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/inbox/updateInbox.ts -------------------------------------------------------------------------------- /src/services/installers/getInstallers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/installers/getInstallers.ts -------------------------------------------------------------------------------- /src/services/installers/updateInstallers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/installers/updateInstallers.ts -------------------------------------------------------------------------------- /src/services/market/getMarket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/market/getMarket.ts -------------------------------------------------------------------------------- /src/services/onBoarding/onBoarding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/onBoarding/onBoarding.js -------------------------------------------------------------------------------- /src/services/product/getProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/product/getProduct.js -------------------------------------------------------------------------------- /src/services/product/updateProduct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/product/updateProduct.ts -------------------------------------------------------------------------------- /src/services/project/enhancedProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/project/enhancedProject.ts -------------------------------------------------------------------------------- /src/services/queryUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/queryUpload.js -------------------------------------------------------------------------------- /src/services/releases/getReleases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/releases/getReleases.ts -------------------------------------------------------------------------------- /src/services/restartServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/restartServer.js -------------------------------------------------------------------------------- /src/services/secrets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/secrets.js -------------------------------------------------------------------------------- /src/services/services/getServices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/services/getServices.ts -------------------------------------------------------------------------------- /src/services/services/updateServices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/services/updateServices.ts -------------------------------------------------------------------------------- /src/services/siteSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/siteSettings.js -------------------------------------------------------------------------------- /src/services/tasksProgress/getTasksProgress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/tasksProgress/getTasksProgress.ts -------------------------------------------------------------------------------- /src/services/team/getTeams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/team/getTeams.js -------------------------------------------------------------------------------- /src/services/team/updateTeams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/team/updateTeams.js -------------------------------------------------------------------------------- /src/services/updateProducts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/updateProducts.js -------------------------------------------------------------------------------- /src/services/workfiles/deleteWorkfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/workfiles/deleteWorkfile.ts -------------------------------------------------------------------------------- /src/services/ynputConnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/services/ynputConnect.js -------------------------------------------------------------------------------- /src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/styles/index.scss -------------------------------------------------------------------------------- /src/styles/loadingShimmer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/styles/loadingShimmer.scss -------------------------------------------------------------------------------- /src/svg/AppleLogo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/svg/AppleLogo.jsx -------------------------------------------------------------------------------- /src/svg/CloudLogo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/svg/CloudLogo.jsx -------------------------------------------------------------------------------- /src/svg/LinuxLogo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/svg/LinuxLogo.jsx -------------------------------------------------------------------------------- /src/svg/WindowsLogo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/svg/WindowsLogo.jsx -------------------------------------------------------------------------------- /src/theme/typography.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/theme/typography.module.css -------------------------------------------------------------------------------- /src/types/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/types/global.ts -------------------------------------------------------------------------------- /src/types/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/types/icons.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /tests/auth.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/tests/auth.setup.js -------------------------------------------------------------------------------- /tests/authentication.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/tests/authentication.spec.ts -------------------------------------------------------------------------------- /tests/bundles.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/tests/bundles.spec.ts -------------------------------------------------------------------------------- /tests/fixtures/authenticationPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/tests/fixtures/authenticationPage.ts -------------------------------------------------------------------------------- /tests/fixtures/bundlePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/tests/fixtures/bundlePage.ts -------------------------------------------------------------------------------- /tests/fixtures/folderPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/tests/fixtures/folderPage.ts -------------------------------------------------------------------------------- /tests/fixtures/installRelease.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/tests/fixtures/installRelease.ts -------------------------------------------------------------------------------- /tests/fixtures/permissionsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/tests/fixtures/permissionsPage.ts -------------------------------------------------------------------------------- /tests/fixtures/projectPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/tests/fixtures/projectPage.ts -------------------------------------------------------------------------------- /tests/fixtures/projectUserAccessGroupsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/tests/fixtures/projectUserAccessGroupsPage.ts -------------------------------------------------------------------------------- /tests/fixtures/taskPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/tests/fixtures/taskPage.ts -------------------------------------------------------------------------------- /tests/fixtures/userPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/tests/fixtures/userPage.ts -------------------------------------------------------------------------------- /tests/folders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/tests/folders.spec.ts -------------------------------------------------------------------------------- /tests/installRelease.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/tests/installRelease.spec.ts -------------------------------------------------------------------------------- /tests/projectUserAccessGroups.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/tests/projectUserAccessGroups.spec.ts -------------------------------------------------------------------------------- /tests/projects.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/tests/projects.spec.ts -------------------------------------------------------------------------------- /tests/reactions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/tests/reactions.spec.ts -------------------------------------------------------------------------------- /tests/tasks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/tests/tasks.spec.ts -------------------------------------------------------------------------------- /tests/users.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/tests/users.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ynput/ayon-frontend/HEAD/yarn.lock --------------------------------------------------------------------------------