@clickview/library-editor 0.0.0-rc.0 → 0.0.1-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.js +2 -674
- package/dist/src/apps/content-updates/ContentUpdatesApplication.d.ts +18 -0
- package/dist/src/apps/content-updates/collections/SubjectCollection.d.ts +5 -0
- package/dist/src/apps/content-updates/collections/VideoGroupCollection.d.ts +5 -0
- package/dist/src/apps/content-updates/collections/index.d.ts +2 -0
- package/dist/src/apps/content-updates/components/awaiting-review-header/AwaitingReviewHeaderComponent.d.ts +14 -0
- package/dist/src/apps/content-updates/components/content-updates-header/ContentUpdatesHeaderComponent.d.ts +19 -0
- package/dist/src/apps/content-updates/components/content-updates-left-nav/ContentUpdatesLeftNavComponent.d.ts +18 -0
- package/dist/src/apps/content-updates/components/index.d.ts +6 -0
- package/dist/src/apps/content-updates/components/past-releases-filters/PastReleasesFiltersComponent.d.ts +20 -0
- package/dist/src/apps/content-updates/components/past-releases-header/PastReleasesHeaderComponent.d.ts +24 -0
- package/dist/src/apps/content-updates/components/video-group-list/VideoGroupListComponent.d.ts +35 -0
- package/dist/src/apps/content-updates/enums/PastReleaseFilterType.d.ts +5 -0
- package/dist/src/apps/content-updates/enums/ReleaseDateType.d.ts +6 -0
- package/dist/src/apps/content-updates/enums/index.d.ts +2 -0
- package/dist/src/apps/content-updates/models/Subject.d.ts +3 -0
- package/dist/src/apps/content-updates/models/VideoGroup.d.ts +7 -0
- package/dist/src/apps/content-updates/models/index.d.ts +2 -0
- package/dist/src/apps/content-updates/services/ContentUpdatesDataService.d.ts +17 -0
- package/dist/src/apps/content-updates/services/index.d.ts +1 -0
- package/dist/src/apps/content-updates/utils/Constants.d.ts +33 -0
- package/dist/src/apps/content-updates/utils/ContentUpdatesHelper.d.ts +7 -0
- package/dist/src/apps/content-updates/utils/PastReleasesHelper.d.ts +3 -0
- package/dist/src/apps/content-updates/utils/index.d.ts +3 -0
- package/dist/src/apps/content-updates/views/add-to-library/AddToLibraryView.d.ts +47 -0
- package/dist/src/apps/content-updates/views/awaiting-review/AwaitingReviewView.d.ts +36 -0
- package/dist/src/apps/content-updates/views/disable-review/DisableReviewView.d.ts +26 -0
- package/dist/src/apps/content-updates/views/generate-past-releases-pdf/GeneratePastReleasesPdfView.d.ts +41 -0
- package/dist/src/apps/content-updates/views/index.d.ts +5 -0
- package/dist/src/apps/content-updates/views/past-releases/PastReleasesView.d.ts +54 -0
- package/dist/src/apps/dashboard/DashboardApplication.d.ts +9 -0
- package/dist/src/apps/dashboard/components/dashboard-action-tile/DashboardActionTileComponent.d.ts +20 -0
- package/dist/src/apps/dashboard/components/dashboard-info-tile/DashboardInfoTileComponent.d.ts +7 -0
- package/dist/src/apps/dashboard/components/dashboard-notifications/DashboardNotificationsComponents.d.ts +15 -0
- package/dist/src/apps/dashboard/components/dashboard-tile-container/DashboardTileContainerComponent.d.ts +11 -0
- package/dist/src/apps/dashboard/components/dashboard-tile-list/DashboardTileListComponent.d.ts +14 -0
- package/dist/src/apps/dashboard/components/index.d.ts +9 -0
- package/dist/src/apps/dashboard/views/DashboardView.d.ts +38 -0
- package/dist/src/apps/default/DefaultApplication.d.ts +21 -0
- package/dist/src/apps/default/views/dev-error/DevErrorView.d.ts +11 -0
- package/dist/src/apps/default/views/error-view/ErrorView.d.ts +12 -0
- package/dist/src/apps/default/views/not-found/NotFoundView.d.ts +11 -0
- package/dist/src/apps/index.d.ts +17 -0
- package/dist/src/apps/library-editor/LibraryEditorApplication.d.ts +46 -0
- package/dist/src/apps/library-editor/behaviors/draggable-folder/DraggableFolderBehavior.d.ts +9 -0
- package/dist/src/apps/library-editor/behaviors/draggable-video/DraggableVideoBehavior.d.ts +24 -0
- package/dist/src/apps/library-editor/behaviors/droppable/DroppableBehavior.d.ts +19 -0
- package/dist/src/apps/library-editor/behaviors/index.d.ts +3 -0
- package/dist/src/apps/library-editor/behaviors/shared/DragOptions.d.ts +3 -0
- package/dist/src/apps/library-editor/behaviors/shared/DraggableItemComponent.d.ts +15 -0
- package/dist/src/apps/library-editor/behaviors/shared/index.d.ts +5 -0
- package/dist/src/apps/library-editor/components/add-links/AddLinksComponent.d.ts +31 -0
- package/dist/src/apps/library-editor/components/banner/BannerComponent.d.ts +19 -0
- package/dist/src/apps/library-editor/components/chapter-form/ChapterFormComponent.d.ts +66 -0
- package/dist/src/apps/library-editor/components/chapter-list/ChapterComponentCollection.d.ts +25 -0
- package/dist/src/apps/library-editor/components/chapter-list/ChapterItemComponent.d.ts +37 -0
- package/dist/src/apps/library-editor/components/chapters/ChaptersComponent.d.ts +21 -0
- package/dist/src/apps/library-editor/components/concatenate-request/ConcatenateRequestComponent.d.ts +24 -0
- package/dist/src/apps/library-editor/components/customer-logo/CustomerLogoComponent.d.ts +19 -0
- package/dist/src/apps/library-editor/components/edit-image/EditImageComponent.d.ts +27 -0
- package/dist/src/apps/library-editor/components/edit-images-wrapper/EditImagesWrapperComponent.d.ts +23 -0
- package/dist/src/apps/library-editor/components/edit-links/LinkItemComponent.d.ts +16 -0
- package/dist/src/apps/library-editor/components/edit-links/VideoLinksComponent.d.ts +23 -0
- package/dist/src/apps/library-editor/components/edit-thumbnail/EditThumbnailComponent.d.ts +22 -0
- package/dist/src/apps/library-editor/components/edit-video/EditVideoDetailsComponent.d.ts +45 -0
- package/dist/src/apps/library-editor/components/edit-video-tabs/EditVideoTabsComponent.d.ts +24 -0
- package/dist/src/apps/library-editor/components/expandable-tag-list/ExpandableTagListComponent.d.ts +26 -0
- package/dist/src/apps/library-editor/components/file-select/FileSelectComponent.d.ts +30 -0
- package/dist/src/apps/library-editor/components/file-uploads/FileUploadComponent.d.ts +15 -0
- package/dist/src/apps/library-editor/components/file-uploads/FileUploadsComponentCollection.d.ts +13 -0
- package/dist/src/apps/library-editor/components/folder-actions/FolderActionsDropdownComponent.d.ts +18 -0
- package/dist/src/apps/library-editor/components/folder-details/FolderDetailsComponent.d.ts +32 -0
- package/dist/src/apps/library-editor/components/folder-link-list/FolderLinkComponent.d.ts +14 -0
- package/dist/src/apps/library-editor/components/folder-link-list/FolderLinkComponentCollection.d.ts +13 -0
- package/dist/src/apps/library-editor/components/folder-select/FolderSelectComponent.d.ts +41 -0
- package/dist/src/apps/library-editor/components/index.d.ts +39 -0
- package/dist/src/apps/library-editor/components/language-select/LanguageSelectComponent.d.ts +28 -0
- package/dist/src/apps/library-editor/components/language-select/LanguageSelectTypeaheadHelper.d.ts +7 -0
- package/dist/src/apps/library-editor/components/left-nav-libraries/LeftNavLibrariesComponent.d.ts +42 -0
- package/dist/src/apps/library-editor/components/library-actions/LibraryActionsComponent.d.ts +26 -0
- package/dist/src/apps/library-editor/components/library-folders/LibraryFolderListComponent.d.ts +31 -0
- package/dist/src/apps/library-editor/components/library-select/LibrarySelectComponent.d.ts +27 -0
- package/dist/src/apps/library-editor/components/save/SaveComponent.d.ts +32 -0
- package/dist/src/apps/library-editor/components/sort-select/SortSelectComponent.d.ts +29 -0
- package/dist/src/apps/library-editor/components/sub-folders/SubFolderComponent.d.ts +15 -0
- package/dist/src/apps/library-editor/components/sub-folders/SubFoldersComponent.d.ts +9 -0
- package/dist/src/apps/library-editor/components/suggest-edit/SuggestEditComponent.d.ts +31 -0
- package/dist/src/apps/library-editor/components/tag-list/TagComponentCollection.d.ts +21 -0
- package/dist/src/apps/library-editor/components/tag-list/TagItemComponent.d.ts +28 -0
- package/dist/src/apps/library-editor/components/tags/TagsComponent.d.ts +30 -0
- package/dist/src/apps/library-editor/components/video-collection-actions/VideoCollectionActionsComponent.d.ts +24 -0
- package/dist/src/apps/library-editor/components/video-header/VideoHeaderComponent.d.ts +22 -0
- package/dist/src/apps/library-editor/components/video-list-header/VideoListHeaderComponent.d.ts +34 -0
- package/dist/src/apps/library-editor/components/video-resources/ResourceItemComponent.d.ts +22 -0
- package/dist/src/apps/library-editor/components/video-resources/VideoResourcesComponent.d.ts +44 -0
- package/dist/src/apps/library-editor/components/video-sidebar-info/VideoSidebarInfoComponent.d.ts +25 -0
- package/dist/src/apps/library-editor/components/video-subtitles/SubtitleItemComponent.d.ts +18 -0
- package/dist/src/apps/library-editor/components/video-subtitles/VideoSubtitlesComponent.d.ts +26 -0
- package/dist/src/apps/library-editor/constants/CheckboxTypes.d.ts +5 -0
- package/dist/src/apps/library-editor/constants/EditVideoBackButtonBlacklist.d.ts +1 -0
- package/dist/src/apps/library-editor/constants/EditVideoBackButtonKey.d.ts +1 -0
- package/dist/src/apps/library-editor/constants/LibraryEditorActions.d.ts +18 -0
- package/dist/src/apps/library-editor/constants/LibraryEditorRadioChannels.d.ts +3 -0
- package/dist/src/apps/library-editor/constants/MetadataTypes.d.ts +32 -0
- package/dist/src/apps/library-editor/constants/VideoCollectionTypes.d.ts +2 -0
- package/dist/src/apps/library-editor/constants/index.d.ts +7 -0
- package/dist/src/apps/library-editor/enums/MediaConcatenateStatus.d.ts +8 -0
- package/dist/src/apps/library-editor/enums/ObjectOwnerType.d.ts +4 -0
- package/dist/src/apps/library-editor/enums/TagBehavior.d.ts +6 -0
- package/dist/src/apps/library-editor/enums/TagOrientation.d.ts +4 -0
- package/dist/src/apps/library-editor/enums/index.d.ts +4 -0
- package/dist/src/apps/library-editor/errors/folder-empty/FolderEmptyError.d.ts +8 -0
- package/dist/src/apps/library-editor/errors/folder-max-depth/FolderMaxDepthError.d.ts +7 -0
- package/dist/src/apps/library-editor/errors/folder-not-empty/FolderNotEmptyError.d.ts +7 -0
- package/dist/src/apps/library-editor/errors/folder-not-found/FolderNotFound.d.ts +6 -0
- package/dist/src/apps/library-editor/errors/forbidden-folder/ForbiddenFolderError.d.ts +6 -0
- package/dist/src/apps/library-editor/errors/forbidden-video/ForbiddenVideoError.d.ts +6 -0
- package/dist/src/apps/library-editor/errors/image-dimensions-too-small/ImageDimensionsTooSmallError.d.ts +9 -0
- package/dist/src/apps/library-editor/errors/index.d.ts +15 -0
- package/dist/src/apps/library-editor/errors/library-has-subscribers/LibraryHasSubscribersError.d.ts +7 -0
- package/dist/src/apps/library-editor/errors/library-not-empty/LibraryNotEmptyError.d.ts +7 -0
- package/dist/src/apps/library-editor/errors/max-custom-libraries/MaxCustomLibrariesError.d.ts +9 -0
- package/dist/src/apps/library-editor/errors/series-not-found/SeriesNotFoundError.d.ts +6 -0
- package/dist/src/apps/library-editor/errors/too-many-resources/TooManyResourcesError.d.ts +8 -0
- package/dist/src/apps/library-editor/errors/too-many-subtitles/TooManySubtitlesError.d.ts +8 -0
- package/dist/src/apps/library-editor/errors/video-not-found/VideoNotFoundError.d.ts +6 -0
- package/dist/src/apps/library-editor/errors/video-write-permission/VideoWritePermissionError.d.ts +6 -0
- package/dist/src/apps/library-editor/models/ChapterConcatenateRequest.d.ts +3 -0
- package/dist/src/apps/library-editor/models/index.d.ts +1 -0
- package/dist/src/apps/library-editor/services/ChapterDataService.d.ts +15 -0
- package/dist/src/apps/library-editor/services/CompanyDataService.d.ts +7 -0
- package/dist/src/apps/library-editor/services/ExportDataService.d.ts +11 -0
- package/dist/src/apps/library-editor/services/FieldsDataService.d.ts +11 -0
- package/dist/src/apps/library-editor/services/FolderDragDropService.d.ts +27 -0
- package/dist/src/apps/library-editor/services/LibraryDataService.d.ts +62 -0
- package/dist/src/apps/library-editor/services/LinkDataService.d.ts +14 -0
- package/dist/src/apps/library-editor/services/PersonDataService.d.ts +7 -0
- package/dist/src/apps/library-editor/services/RatingsDataService.d.ts +7 -0
- package/dist/src/apps/library-editor/services/ResourceDataService.d.ts +13 -0
- package/dist/src/apps/library-editor/services/SeriesDataService.d.ts +14 -0
- package/dist/src/apps/library-editor/services/SubtitleDataService.d.ts +11 -0
- package/dist/src/apps/library-editor/services/TagDataService.d.ts +9 -0
- package/dist/src/apps/library-editor/services/VideoDataService.d.ts +39 -0
- package/dist/src/apps/library-editor/services/VideoDragDropService.d.ts +21 -0
- package/dist/src/apps/library-editor/services/index.d.ts +15 -0
- package/dist/src/apps/library-editor/utils/AddToLibraryCacheHelper.d.ts +4 -0
- package/dist/src/apps/library-editor/utils/ChapterHelper.d.ts +18 -0
- package/dist/src/apps/library-editor/utils/DownloadHelper.d.ts +3 -0
- package/dist/src/apps/library-editor/utils/EditVideoHelpers.d.ts +93 -0
- package/dist/src/apps/library-editor/utils/FolderValidation.d.ts +2 -0
- package/dist/src/apps/library-editor/utils/LanguageValidation.d.ts +2 -0
- package/dist/src/apps/library-editor/utils/LibraryValidation.d.ts +2 -0
- package/dist/src/apps/library-editor/utils/UploadVideoValidation.d.ts +2 -0
- package/dist/src/apps/library-editor/utils/VideoDetailsHelper.d.ts +16 -0
- package/dist/src/apps/library-editor/utils/index.d.ts +8 -0
- package/dist/src/apps/library-editor/views/add-to-exchange/AddToExchangeView.d.ts +33 -0
- package/dist/src/apps/library-editor/views/banner-upload/BannerUploadView.d.ts +32 -0
- package/dist/src/apps/library-editor/views/delete-folder/DeleteFolderView.d.ts +28 -0
- package/dist/src/apps/library-editor/views/delete-library/DeleteLibraryView.d.ts +23 -0
- package/dist/src/apps/library-editor/views/delete-videos/DeleteVideosView.d.ts +29 -0
- package/dist/src/apps/library-editor/views/edit-chapters/EditChaptersView.d.ts +71 -0
- package/dist/src/apps/library-editor/views/edit-folder-images/EditFolderImagesView.d.ts +50 -0
- package/dist/src/apps/library-editor/views/edit-library/RenameLibraryView.d.ts +29 -0
- package/dist/src/apps/library-editor/views/edit-link/EditLinkView.d.ts +30 -0
- package/dist/src/apps/library-editor/views/edit-resource/EditResourceView.d.ts +34 -0
- package/dist/src/apps/library-editor/views/edit-resources/EditResourcesView.d.ts +92 -0
- package/dist/src/apps/library-editor/views/edit-video/EditVideoView.d.ts +125 -0
- package/dist/src/apps/library-editor/views/generate-pdf/GeneratePdfView.d.ts +35 -0
- package/dist/src/apps/library-editor/views/left-navigation/LeftNavigationView.d.ts +33 -0
- package/dist/src/apps/library-editor/views/library/LibraryView.d.ts +31 -0
- package/dist/src/apps/library-editor/views/move-folder/MoveFolderView.d.ts +44 -0
- package/dist/src/apps/library-editor/views/move-video/MoveVideoView.d.ts +38 -0
- package/dist/src/apps/library-editor/views/new-folder/NewFolderView.d.ts +43 -0
- package/dist/src/apps/library-editor/views/new-library/NewLibraryView.d.ts +26 -0
- package/dist/src/apps/library-editor/views/no-library/NoLibraryView.d.ts +10 -0
- package/dist/src/apps/library-editor/views/publish-library/PublishLibraryView.d.ts +19 -0
- package/dist/src/apps/library-editor/views/rename-folder/RenameFolderView.d.ts +39 -0
- package/dist/src/apps/library-editor/views/suggest-an-edit/SuggestAnEditView.d.ts +58 -0
- package/dist/src/apps/library-editor/views/thumbnail-upload/ThumbnailUploadView.d.ts +33 -0
- package/dist/src/apps/library-editor/views/video-collection/VideoCollectionView.d.ts +93 -0
- package/dist/src/apps/library-editor/views/video-details/VideoDetailsView.d.ts +44 -0
- package/dist/src/apps/migration-wizard/MigrationWizardApplication.d.ts +45 -0
- package/dist/src/apps/migration-wizard/collections/HomeFolderCollection.d.ts +6 -0
- package/dist/src/apps/migration-wizard/collections/SmartSelectVideoCollection.d.ts +5 -0
- package/dist/src/apps/migration-wizard/collections/index.d.ts +1 -0
- package/dist/src/apps/migration-wizard/components/banner/BannerComponent.d.ts +18 -0
- package/dist/src/apps/migration-wizard/components/empty-video-list/EmptyVideoListComponent.d.ts +14 -0
- package/dist/src/apps/migration-wizard/components/errored-video-actions/ErroredVideoActionsComponent.d.ts +22 -0
- package/dist/src/apps/migration-wizard/components/errored-video-footer/ErroredVideoFooterComponent.d.ts +21 -0
- package/dist/src/apps/migration-wizard/components/errored-video-item/ErroredVideoItemComponent.d.ts +30 -0
- package/dist/src/apps/migration-wizard/components/errored-video-list/ErroredVideoListComponent.d.ts +12 -0
- package/dist/src/apps/migration-wizard/components/errored-video-metadata/ErroredVideoMetadataComponent.d.ts +8 -0
- package/dist/src/apps/migration-wizard/components/errored-video-preview/ErroredVideoPreviewComponent.d.ts +17 -0
- package/dist/src/apps/migration-wizard/components/generate-report/GenerateReportComponent.d.ts +25 -0
- package/dist/src/apps/migration-wizard/components/generate-report-button/GenerateReportButtonComponent.d.ts +10 -0
- package/dist/src/apps/migration-wizard/components/index.d.ts +13 -0
- package/dist/src/apps/migration-wizard/components/migration-video-item/MigrationVideoItemComponent.d.ts +30 -0
- package/dist/src/apps/migration-wizard/components/progress-bar/ProgressBarComponent.d.ts +19 -0
- package/dist/src/apps/migration-wizard/components/progress-circle/ProgressCircleComponent.d.ts +20 -0
- package/dist/src/apps/migration-wizard/components/search-bar/SearchBarComponent.d.ts +19 -0
- package/dist/src/apps/migration-wizard/components/selected-video-item/SelectedVideoItemComponent.d.ts +9 -0
- package/dist/src/apps/migration-wizard/components/sorting-row/SortingRowComponent.d.ts +35 -0
- package/dist/src/apps/migration-wizard/components/status-bar/StatusBarComponent.d.ts +28 -0
- package/dist/src/apps/migration-wizard/components/video-list/VideoListCollection.d.ts +36 -0
- package/dist/src/apps/migration-wizard/components/video-list-collection/VideoListCollectionComponent.d.ts +16 -0
- package/dist/src/apps/migration-wizard/contants/MigrationErrorActions.d.ts +4 -0
- package/dist/src/apps/migration-wizard/contants/MigrationViewModels.d.ts +4 -0
- package/dist/src/apps/migration-wizard/enums/CloudSyncStatus.d.ts +12 -0
- package/dist/src/apps/migration-wizard/enums/FinalisationTaskStatus.d.ts +5 -0
- package/dist/src/apps/migration-wizard/enums/FinalisationType.d.ts +6 -0
- package/dist/src/apps/migration-wizard/enums/LocalOption.d.ts +4 -0
- package/dist/src/apps/migration-wizard/enums/MigrationOption.d.ts +7 -0
- package/dist/src/apps/migration-wizard/enums/MigrationReportType.d.ts +6 -0
- package/dist/src/apps/migration-wizard/enums/SortField.d.ts +5 -0
- package/dist/src/apps/migration-wizard/enums/ValidationResult.d.ts +32 -0
- package/dist/src/apps/migration-wizard/enums/ValidationResultErrorType.d.ts +5 -0
- package/dist/src/apps/migration-wizard/enums/VideoMigrationStatus.d.ts +5 -0
- package/dist/src/apps/migration-wizard/enums/index.d.ts +7 -0
- package/dist/src/apps/migration-wizard/errors/already-migrated/AlreadyMigratedError.d.ts +6 -0
- package/dist/src/apps/migration-wizard/errors/backup-progress/BackupProgressError.d.ts +8 -0
- package/dist/src/apps/migration-wizard/errors/index.d.ts +6 -0
- package/dist/src/apps/migration-wizard/errors/migration-finalisation/MigrationFinalisationError.d.ts +8 -0
- package/dist/src/apps/migration-wizard/errors/migration-progress/MigrationProgressError.d.ts +8 -0
- package/dist/src/apps/migration-wizard/errors/smart-migration-api-call/SmartMigrationApiCallError.d.ts +9 -0
- package/dist/src/apps/migration-wizard/filters/MigrationFilters.d.ts +8 -0
- package/dist/src/apps/migration-wizard/filters/index.d.ts +1 -0
- package/dist/src/apps/migration-wizard/interfaces/SelectedVideos.d.ts +7 -0
- package/dist/src/apps/migration-wizard/models/BackupToolBuild.d.ts +3 -0
- package/dist/src/apps/migration-wizard/models/CustomerMetadata.d.ts +9 -0
- package/dist/src/apps/migration-wizard/models/FinalisationTask.d.ts +3 -0
- package/dist/src/apps/migration-wizard/models/HomeFolder.d.ts +8 -0
- package/dist/src/apps/migration-wizard/models/MigrationOptions.d.ts +3 -0
- package/dist/src/apps/migration-wizard/models/SelectedVideo.d.ts +3 -0
- package/dist/src/apps/migration-wizard/models/SmartSelectVideo.d.ts +4 -0
- package/dist/src/apps/migration-wizard/models/VideoCount.d.ts +3 -0
- package/dist/src/apps/migration-wizard/models/index.d.ts +8 -0
- package/dist/src/apps/migration-wizard/services/FolderCacheService.d.ts +22 -0
- package/dist/src/apps/migration-wizard/services/LocalOptionsService.d.ts +10 -0
- package/dist/src/apps/migration-wizard/services/MigrationVideoDataService.d.ts +56 -0
- package/dist/src/apps/migration-wizard/services/SelectedVideoService.d.ts +19 -0
- package/dist/src/apps/migration-wizard/services/index.d.ts +4 -0
- package/dist/src/apps/migration-wizard/utils/FolderHelper.d.ts +8 -0
- package/dist/src/apps/migration-wizard/utils/KeyContactHelper.d.ts +6 -0
- package/dist/src/apps/migration-wizard/utils/MigrationErrorHelper.d.ts +3 -0
- package/dist/src/apps/migration-wizard/utils/MigrationHelper.d.ts +41 -0
- package/dist/src/apps/migration-wizard/utils/MigrationRadioChannels.d.ts +4 -0
- package/dist/src/apps/migration-wizard/utils/MigrationWarningsSvgs.d.ts +3 -0
- package/dist/src/apps/migration-wizard/utils/ReportHelper.d.ts +9 -0
- package/dist/src/apps/migration-wizard/utils/VideoHelper.d.ts +29 -0
- package/dist/src/apps/migration-wizard/views/current-section-header/CurrentSectionHeaderView.d.ts +28 -0
- package/dist/src/apps/migration-wizard/views/generate-csv-report/GenerateCsvReportView.d.ts +27 -0
- package/dist/src/apps/migration-wizard/views/index.d.ts +13 -0
- package/dist/src/apps/migration-wizard/views/migration-error/MigrationErrorView.d.ts +39 -0
- package/dist/src/apps/migration-wizard/views/migration-progress/MigrationProgressView.d.ts +32 -0
- package/dist/src/apps/migration-wizard/views/publish-library-banner/PublishLibraryBannerView.d.ts +30 -0
- package/dist/src/apps/migration-wizard/views/publish-library-complete/PublishLibraryCompleteView.d.ts +15 -0
- package/dist/src/apps/migration-wizard/views/publish-library-progress/PublishLibraryProgressView.d.ts +18 -0
- package/dist/src/apps/migration-wizard/views/publisher-backup/PublisherBackupView.d.ts +19 -0
- package/dist/src/apps/migration-wizard/views/publisher-backup-complete/PublisherBackupCompleteView.d.ts +23 -0
- package/dist/src/apps/migration-wizard/views/publisher-backup-progress/PublisherBackupProgressView.d.ts +23 -0
- package/dist/src/apps/migration-wizard/views/publisher-backup-welcome/PublisherBackupWelcomeView.d.ts +19 -0
- package/dist/src/apps/migration-wizard/views/remigrate-video/RemigrateVideoView.d.ts +32 -0
- package/dist/src/apps/migration-wizard/views/selected-videos/SelectedVideosView.d.ts +32 -0
- package/dist/src/apps/migration-wizard/views/show-video-popup/ShowPublisherVideoPopupView.d.ts +26 -0
- package/dist/src/apps/migration-wizard/views/smart-migration/SmartMigrationView.d.ts +58 -0
- package/dist/src/apps/migration-wizard/views/start/StartView.d.ts +40 -0
- package/dist/src/apps/migration-wizard/views/videos-added/VideosAddedView.d.ts +24 -0
- package/dist/src/apps/notifications/NotificationsApplication.d.ts +11 -0
- package/dist/src/apps/notifications/collections/NotificationCollection.d.ts +6 -0
- package/dist/src/apps/notifications/components/index.d.ts +3 -0
- package/dist/src/apps/notifications/components/notification-items/notification-item/NotificationItemComponent.d.ts +23 -0
- package/dist/src/apps/notifications/components/notification-list/NotificationListComponent.d.ts +26 -0
- package/dist/src/apps/notifications/components/notification-status/NotificationStatusComponent.d.ts +9 -0
- package/dist/src/apps/notifications/models/Notification.d.ts +3 -0
- package/dist/src/apps/notifications/models/index.d.ts +1 -0
- package/dist/src/apps/notifications/services/NotificationDataService.d.ts +14 -0
- package/dist/src/apps/notifications/services/NotificationService.d.ts +33 -0
- package/dist/src/apps/notifications/services/NotificationSocketService.d.ts +8 -0
- package/dist/src/apps/notifications/services/data-providers/NotificationsSocketDataProvider.d.ts +4 -0
- package/dist/src/apps/notifications/services/index.d.ts +4 -0
- package/dist/src/apps/notifications/utils/Constants.d.ts +55 -0
- package/dist/src/apps/notifications/utils/NotificationAppLinkHelper.d.ts +10 -0
- package/dist/src/apps/notifications/utils/NotificationsHelper.d.ts +19 -0
- package/dist/src/apps/notifications/utils/index.d.ts +3 -0
- package/dist/src/apps/notifications/views/header/NotificationHeaderView.d.ts +14 -0
- package/dist/src/apps/notifications/views/index.d.ts +3 -0
- package/dist/src/apps/notifications/views/notifications/NotificationsView.d.ts +26 -0
- package/dist/src/apps/notifications/views/popover/NotificationsPopoverView.d.ts +33 -0
- package/dist/src/apps/search/SearchApplication.d.ts +16 -0
- package/dist/src/apps/search/collections/FilterCollection.d.ts +9 -0
- package/dist/src/apps/search/collections/OptionCollection.d.ts +5 -0
- package/dist/src/apps/search/collections/index.d.ts +2 -0
- package/dist/src/apps/search/components/filters/FiltersComponent.d.ts +27 -0
- package/dist/src/apps/search/components/filters/filter-button-list/FilterButtonItemComponent.d.ts +37 -0
- package/dist/src/apps/search/components/filters/filter-button-list/FilterButtonListComponent.d.ts +19 -0
- package/dist/src/apps/search/components/filters/filter-button-list/index.d.ts +2 -0
- package/dist/src/apps/search/components/filters/filter-list/FilterItemComponent.d.ts +17 -0
- package/dist/src/apps/search/components/filters/filter-list/FilterListComponent.d.ts +24 -0
- package/dist/src/apps/search/components/filters/filter-options/FilterOptionsComponent.d.ts +34 -0
- package/dist/src/apps/search/components/filters/filter-options/bool-filter-options/BoolFilterOptionsComponent.d.ts +15 -0
- package/dist/src/apps/search/components/filters/filter-options/duration-filter-options/DurationFilterOptionListComponent.d.ts +27 -0
- package/dist/src/apps/search/components/filters/filter-options/filter-option-list/FilterOptionItemComponent.d.ts +19 -0
- package/dist/src/apps/search/components/filters/filter-options/filter-option-list/FilterOptionsListComponent.d.ts +21 -0
- package/dist/src/apps/search/components/filters/filter-options/index.d.ts +7 -0
- package/dist/src/apps/search/components/filters/filter-options/range-filter-options/RangeFilterOptionListComponent.d.ts +23 -0
- package/dist/src/apps/search/components/filters/filter-options/tag-filter-options/TagFilterOptionsComponent.d.ts +27 -0
- package/dist/src/apps/search/components/filters/filter-options/tag-filter-options/TagFilterOptionsListComponent.d.ts +19 -0
- package/dist/src/apps/search/components/filters/index.d.ts +3 -0
- package/dist/src/apps/search/components/filters/more-filters-button/MoreFiltersButtonComponent.d.ts +42 -0
- package/dist/src/apps/search/components/index.d.ts +2 -0
- package/dist/src/apps/search/components/instant-search/index.d.ts +4 -0
- package/dist/src/apps/search/components/instant-search/recent-search/RecentSearchResultComponent.d.ts +15 -0
- package/dist/src/apps/search/components/instant-search/series/SeriesSearchResultComponent.d.ts +9 -0
- package/dist/src/apps/search/components/instant-search/tag/TagSearchResultComponent.d.ts +9 -0
- package/dist/src/apps/search/components/instant-search/video-result/VideoSearchResultComponent.d.ts +15 -0
- package/dist/src/apps/search/components/results/SearchResultsComponent.d.ts +22 -0
- package/dist/src/apps/search/components/search-context/SearchContextComponent.d.ts +18 -0
- package/dist/src/apps/search/components/search-header/SearchHeaderComponent.d.ts +11 -0
- package/dist/src/apps/search/components/search-tips/SearchTipsComponent.d.ts +11 -0
- package/dist/src/apps/search/constants/SearchRadioChannels.d.ts +3 -0
- package/dist/src/apps/search/constants/index.d.ts +1 -0
- package/dist/src/apps/search/models/Filter.d.ts +8 -0
- package/dist/src/apps/search/models/Option.d.ts +4 -0
- package/dist/src/apps/search/models/Query.d.ts +3 -0
- package/dist/src/apps/search/models/index.d.ts +3 -0
- package/dist/src/apps/search/services/ContextualSearchService.d.ts +37 -0
- package/dist/src/apps/search/services/SearchDataService.d.ts +12 -0
- package/dist/src/apps/search/services/index.d.ts +2 -0
- package/dist/src/apps/search/utils/Constants.d.ts +28 -0
- package/dist/src/apps/search/utils/Enums.d.ts +41 -0
- package/dist/src/apps/search/utils/FilterHelper.d.ts +2 -0
- package/dist/src/apps/search/utils/FilterLabelGenerators.d.ts +2 -0
- package/dist/src/apps/search/utils/FilterQueryGenerators.d.ts +2 -0
- package/dist/src/apps/search/utils/FilterRouteQueryParamGenerators.d.ts +2 -0
- package/dist/src/apps/search/utils/SearchHelper.d.ts +13 -0
- package/dist/src/apps/search/utils/index.d.ts +4 -0
- package/dist/src/apps/search/views/search/SearchView.d.ts +56 -0
- package/dist/src/apps/search/views/search-bar/SearchBarView.d.ts +102 -0
- package/dist/src/apps/search/views/search-bar/templates/index.d.ts +9 -0
- package/dist/src/apps/staff-requests/StaffRequestsApplication.d.ts +15 -0
- package/dist/src/apps/staff-requests/collections/StaffRequestCollection.d.ts +5 -0
- package/dist/src/apps/staff-requests/collections/StaffRequestMessageCollection.d.ts +5 -0
- package/dist/src/apps/staff-requests/collections/index.d.ts +2 -0
- package/dist/src/apps/staff-requests/components/staff-request-actions/StaffRequestActionsComponent.d.ts +40 -0
- package/dist/src/apps/staff-requests/components/staff-request-details/StaffRequestDetailsComponent.d.ts +29 -0
- package/dist/src/apps/staff-requests/components/staff-request-list/StaffRequestListComponent.d.ts +29 -0
- package/dist/src/apps/staff-requests/enums/StaffRequestStatus.d.ts +5 -0
- package/dist/src/apps/staff-requests/enums/index.d.ts +1 -0
- package/dist/src/apps/staff-requests/models/StaffRequest.d.ts +14 -0
- package/dist/src/apps/staff-requests/models/StaffRequestMessage.d.ts +7 -0
- package/dist/src/apps/staff-requests/models/index.d.ts +2 -0
- package/dist/src/apps/staff-requests/services/StaffRequestDataService.d.ts +14 -0
- package/dist/src/apps/staff-requests/services/index.d.ts +1 -0
- package/dist/src/apps/staff-requests/utils/StaffRequestApprovalValidation.d.ts +2 -0
- package/dist/src/apps/staff-requests/utils/StaffRequestRejectionValidation.d.ts +2 -0
- package/dist/src/apps/staff-requests/utils/index.d.ts +2 -0
- package/dist/src/apps/staff-requests/views/approve-staff-request/ApproveStaffRequestView.d.ts +34 -0
- package/dist/src/apps/staff-requests/views/reject-staff-request/RejectStaffRequestView.d.ts +34 -0
- package/dist/src/apps/staff-requests/views/staff-requests/StaffRequestsView.d.ts +41 -0
- package/dist/src/apps/upload/UploadApplication.d.ts +23 -0
- package/dist/src/apps/upload/components/index.d.ts +7 -0
- package/dist/src/apps/upload/components/processing-progress/ProcessProgressComponentCollection.d.ts +38 -0
- package/dist/src/apps/upload/components/progress-info/ProgressInfoComponent.d.ts +10 -0
- package/dist/src/apps/upload/components/upload-actions/UploadActionsComponent.d.ts +21 -0
- package/dist/src/apps/upload/components/upload-folder-select/UploadFolderSelectComponent.d.ts +33 -0
- package/dist/src/apps/upload/components/upload-progress/UploadProgressComponent.d.ts +10 -0
- package/dist/src/apps/upload/components/upload-video/UploadVideoComponent.d.ts +46 -0
- package/dist/src/apps/upload/components/upload-video/UploadVideoComponentCollection.d.ts +18 -0
- package/dist/src/apps/upload/enums/FileLifestyle.d.ts +4 -0
- package/dist/src/apps/upload/enums/PendingItemStatus.d.ts +5 -0
- package/dist/src/apps/upload/errors/index.d.ts +2 -0
- package/dist/src/apps/upload/errors/internet-connectivity/InternetConnectivityError.d.ts +7 -0
- package/dist/src/apps/upload/errors/no-libraries-upload/NoLibrariesUploadError.d.ts +7 -0
- package/dist/src/apps/upload/services/DropzoneWrapper.d.ts +30 -0
- package/dist/src/apps/upload/services/ImageUploadDataService.d.ts +8 -0
- package/dist/src/apps/upload/services/PendingItemsService.d.ts +23 -0
- package/dist/src/apps/upload/services/UploadService.d.ts +64 -0
- package/dist/src/apps/upload/services/VideoUploadDataService.d.ts +16 -0
- package/dist/src/apps/upload/services/index.d.ts +5 -0
- package/dist/src/apps/upload/utils/PendingItemsHelper.d.ts +9 -0
- package/dist/src/apps/upload/utils/index.d.ts +1 -0
- package/dist/src/apps/upload/views/file-select/FileSelectView.d.ts +25 -0
- package/dist/src/apps/upload/views/progress-summary/ProgressSummaryView.d.ts +18 -0
- package/dist/src/apps/upload/views/upload-button/UploadButtonView.d.ts +26 -0
- package/dist/src/apps/upload/views/upload-complete/UploadCompleteView.d.ts +14 -0
- package/dist/src/apps/upload/views/upload-videos/UploadVideosView.d.ts +61 -0
- package/dist/src/apps/video-access/VideoAccessApplication.d.ts +12 -0
- package/dist/src/apps/video-access/views/restricted-video-list/RestrictedVideoListView.d.ts +34 -0
- package/dist/src/index.d.ts +3 -0
- package/dist/src/shared/alerts/VideoAlerts.d.ts +8 -0
- package/dist/src/shared/alerts/index.d.ts +1 -0
- package/dist/src/shared/behaviors/backbone-validation/BackboneValidationBehavior.d.ts +14 -0
- package/dist/src/shared/behaviors/empty-state/EmptyStateBehavior.d.ts +22 -0
- package/dist/src/shared/behaviors/file-drop/FileDropBehavior.d.ts +19 -0
- package/dist/src/shared/behaviors/file-drop/FileDropHelper.d.ts +4 -0
- package/dist/src/shared/behaviors/file-drop/FileDropMaskBehavior.d.ts +19 -0
- package/dist/src/shared/behaviors/file-select/FileSelectBehavior.d.ts +16 -0
- package/dist/src/shared/behaviors/image-select-behavior/ImageSelectBehavior.d.ts +23 -0
- package/dist/src/shared/behaviors/index.d.ts +12 -0
- package/dist/src/shared/behaviors/lazy-load/LazyLoadBehavior.d.ts +31 -0
- package/dist/src/shared/behaviors/lock-layout-file-drop/LockLayoutFileDropBehavior.d.ts +7 -0
- package/dist/src/shared/behaviors/popover/PopoverBehavior.d.ts +40 -0
- package/dist/src/shared/behaviors/popup/PopupBehavior.d.ts +65 -0
- package/dist/src/shared/behaviors/stickit/StickitBehavior.d.ts +6 -0
- package/dist/src/shared/behaviors/tooltip/TooltipBehavior.d.ts +12 -0
- package/dist/src/shared/collections/ChannelCollection.d.ts +6 -0
- package/dist/src/shared/collections/ChapterCollection.d.ts +7 -0
- package/dist/src/shared/collections/DirectorCollection.d.ts +6 -0
- package/dist/src/shared/collections/DistributorCollection.d.ts +6 -0
- package/dist/src/shared/collections/FieldsCollection.d.ts +5 -0
- package/dist/src/shared/collections/FolderCollection.d.ts +7 -0
- package/dist/src/shared/collections/InteractivesCollection.d.ts +6 -0
- package/dist/src/shared/collections/LibraryCollection.d.ts +7 -0
- package/dist/src/shared/collections/LinkCollection.d.ts +6 -0
- package/dist/src/shared/collections/LocalCacheDeviceCollection.d.ts +5 -0
- package/dist/src/shared/collections/LocalCacheDownloadCollection.d.ts +5 -0
- package/dist/src/shared/collections/MetadataCollection.d.ts +4 -0
- package/dist/src/shared/collections/PendingItemsCollection.d.ts +8 -0
- package/dist/src/shared/collections/ProducerCollection.d.ts +6 -0
- package/dist/src/shared/collections/ProductionCompanyCollection.d.ts +6 -0
- package/dist/src/shared/collections/RatingCollection.d.ts +4 -0
- package/dist/src/shared/collections/ResourceCollection.d.ts +6 -0
- package/dist/src/shared/collections/RestrictedObjectCollection.d.ts +5 -0
- package/dist/src/shared/collections/RestrictionCollection.d.ts +5 -0
- package/dist/src/shared/collections/SeasonCollection.d.ts +6 -0
- package/dist/src/shared/collections/SettingsCollection.d.ts +5 -0
- package/dist/src/shared/collections/SubtitleCollection.d.ts +6 -0
- package/dist/src/shared/collections/TagCollection.d.ts +6 -0
- package/dist/src/shared/collections/VideoCollection.d.ts +6 -0
- package/dist/src/shared/collections/index.d.ts +24 -0
- package/dist/src/shared/components/alert/AlertComponentCollection.d.ts +11 -0
- package/dist/src/shared/components/alert/AlertItemComponent.d.ts +44 -0
- package/dist/src/shared/components/breadcrumbs/BreadcrumbComponentCollection.d.ts +18 -0
- package/dist/src/shared/components/breadcrumbs/BreadcrumbsComponent.d.ts +26 -0
- package/dist/src/shared/components/bulk-video-actions/BulkVideoActionsComponent.d.ts +26 -0
- package/dist/src/shared/components/checkbox/BulkCheckboxComponent.d.ts +27 -0
- package/dist/src/shared/components/checkbox/CheckboxComponent.d.ts +25 -0
- package/dist/src/shared/components/clear-button/ClearButtonComponent.d.ts +18 -0
- package/dist/src/shared/components/date-picker/DatePickerComponent.d.ts +47 -0
- package/dist/src/shared/components/dialog/DialogView.d.ts +34 -0
- package/dist/src/shared/components/dropdown/DropdownButtonComponent.d.ts +36 -0
- package/dist/src/shared/components/dropdown/DropdownComponentCollection.d.ts +38 -0
- package/dist/src/shared/components/dropdown/DropdownItemComponent.d.ts +57 -0
- package/dist/src/shared/components/edit-video/edit-additional-info/EditAdditionalInfoComponent.d.ts +37 -0
- package/dist/src/shared/components/edit-video/edit-basic-info/EditBasicInfoComponent.d.ts +32 -0
- package/dist/src/shared/components/edit-video/edit-broadcast/EditBroadcastComponent.d.ts +22 -0
- package/dist/src/shared/components/edit-video/edit-broadcast/ToggleBroadcastComponent.d.ts +24 -0
- package/dist/src/shared/components/edit-video/edit-production-info/EditProductionInfoComponent.d.ts +61 -0
- package/dist/src/shared/components/edit-video/edit-season-info/EditSeasonInfoComponent.d.ts +33 -0
- package/dist/src/shared/components/edit-video/extra-info/ExtraInfoComponent.d.ts +16 -0
- package/dist/src/shared/components/edit-video/extra-info/ExtraInfoItemComponent.d.ts +17 -0
- package/dist/src/shared/components/edit-video/select-rating/SelectRatingCollectionComponent.d.ts +17 -0
- package/dist/src/shared/components/edit-video/select-rating/SelectRatingComponent.d.ts +40 -0
- package/dist/src/shared/components/edit-video/select-rating/SelectRatingItemComponent.d.ts +20 -0
- package/dist/src/shared/components/empty-state/EmptyStateComponent.d.ts +24 -0
- package/dist/src/shared/components/fields/FieldsComponent.d.ts +9 -0
- package/dist/src/shared/components/image-cropper/ImageCropperComponent.d.ts +34 -0
- package/dist/src/shared/components/index.d.ts +46 -0
- package/dist/src/shared/components/left-nav/LeftNavComponent.d.ts +27 -0
- package/dist/src/shared/components/left-nav/LeftNavNodeComponent.d.ts +47 -0
- package/dist/src/shared/components/page-footer/PageFooterComponent.d.ts +15 -0
- package/dist/src/shared/components/page-header/PageHeaderComponent.d.ts +25 -0
- package/dist/src/shared/components/pagination/PaginationComponent.d.ts +28 -0
- package/dist/src/shared/components/partial-loading/PartialLoadingComponent.d.ts +16 -0
- package/dist/src/shared/components/partial-loading/PartialLoadingComponentCollection.d.ts +20 -0
- package/dist/src/shared/components/partial-loading/index.d.ts +2 -0
- package/dist/src/shared/components/resizing-text-area/ResizingTextAreaComponent.d.ts +23 -0
- package/dist/src/shared/components/select/SelectComponent.d.ts +54 -0
- package/dist/src/shared/components/spinner-button/SpinnerButtonComponent.d.ts +73 -0
- package/dist/src/shared/components/tabs/TabsComponent.d.ts +28 -0
- package/dist/src/shared/components/thumbnail/ThumbnailComponent.d.ts +32 -0
- package/dist/src/shared/components/top-navigation/TopNavigationComponentCollection.d.ts +29 -0
- package/dist/src/shared/components/typeahead-input/SearchTypeaheadComponent.d.ts +74 -0
- package/dist/src/shared/components/typeahead-input/templates/index.d.ts +4 -0
- package/dist/src/shared/components/typeahead-list/TypeaheadListComponent.d.ts +33 -0
- package/dist/src/shared/components/user-options-dropdown/UserOptionsDropdownComponent.d.ts +20 -0
- package/dist/src/shared/components/video-actions/VideoActionComponentCollection.d.ts +31 -0
- package/dist/src/shared/components/video-actions/VideoActionsComponent.d.ts +37 -0
- package/dist/src/shared/components/video-basic-info/VideoBasicInfoComponent.d.ts +32 -0
- package/dist/src/shared/components/video-description/VideoDescriptionComponent.d.ts +33 -0
- package/dist/src/shared/components/video-item/VideoItemComponent.d.ts +53 -0
- package/dist/src/shared/components/video-item/index.d.ts +4 -0
- package/dist/src/shared/components/video-item/utils/VideoItemBehaviors.d.ts +4 -0
- package/dist/src/shared/components/video-item/utils/VideoItemComponentHelper.d.ts +8 -0
- package/dist/src/shared/components/video-item/utils/VideoItemComponentTypes.d.ts +16 -0
- package/dist/src/shared/components/video-item/utils/VideoItemComponents.d.ts +7 -0
- package/dist/src/shared/components/video-item/utils/index.d.ts +3 -0
- package/dist/src/shared/components/video-item/video-item-actions/base/VideoItemActionsComponent.d.ts +23 -0
- package/dist/src/shared/components/video-item/video-item-actions/index.d.ts +4 -0
- package/dist/src/shared/components/video-item/video-item-actions/video-item-processing-actions/VideoItemProcessingActionsComponent.d.ts +25 -0
- package/dist/src/shared/components/video-item/video-item-actions/video-item-review-actions/VideoItemReviewActionsComponent.d.ts +26 -0
- package/dist/src/shared/components/video-item/video-item-actions/video-item-video-access-actions/VideoItemVideoAccessActionsComponent.d.ts +22 -0
- package/dist/src/shared/components/video-item/video-item-metadata/base/VideoItemMetadataComponent.d.ts +24 -0
- package/dist/src/shared/components/video-item/video-item-metadata/index.d.ts +9 -0
- package/dist/src/shared/components/video-item/video-item-metadata/video-item-awaiting-review-metadata/VideoItemAwaitingReviewMetadataComponent.d.ts +21 -0
- package/dist/src/shared/components/video-item/video-item-metadata/video-item-badges/VideoItemBadgesComponent.d.ts +20 -0
- package/dist/src/shared/components/video-item/video-item-metadata/video-item-past-releases-metadata/VideoItemPastReleasesMetadataComponent.d.ts +24 -0
- package/dist/src/shared/components/video-item/video-item-metadata/video-item-processing-metadata/VideoItemProcessingMetadataComponent.d.ts +19 -0
- package/dist/src/shared/components/video-item/video-item-metadata/video-item-search-metadata/VideoItemSearchMetadataComponent.d.ts +22 -0
- package/dist/src/shared/components/video-item/video-item-metadata/video-item-series/VideoItemSeriesComponent.d.ts +22 -0
- package/dist/src/shared/components/video-item/video-item-metadata/video-item-video-access-metadata/VideoItemVideoAccessMetadataComponent.d.ts +26 -0
- package/dist/src/shared/components/video-item/video-item-metadata/video-sources-metadata/VideoSourcesMetadataComponent.d.ts +21 -0
- package/dist/src/shared/components/video-item-preview/VideoItemPreviewComponent.d.ts +37 -0
- package/dist/src/shared/components/video-list/VideoListComponent.d.ts +40 -0
- package/dist/src/shared/components/video-preview/VideoPreviewComponent.d.ts +30 -0
- package/dist/src/shared/components/web-player/WebPlayerComponent.d.ts +53 -0
- package/dist/src/shared/constants/Actions.d.ts +99 -0
- package/dist/src/shared/constants/BootstrapKeys.d.ts +9 -0
- package/dist/src/shared/constants/CacheDurations.d.ts +4 -0
- package/dist/src/shared/constants/DataPrefixes.d.ts +91 -0
- package/dist/src/shared/constants/DataServiceErrors.d.ts +4 -0
- package/dist/src/shared/constants/EventNames.d.ts +33 -0
- package/dist/src/shared/constants/FolderTreeIds.d.ts +4 -0
- package/dist/src/shared/constants/FormattedCustomerSettingNames.d.ts +3 -0
- package/dist/src/shared/constants/ImageSizes.d.ts +11 -0
- package/dist/src/shared/constants/ImageUrls.d.ts +20 -0
- package/dist/src/shared/constants/LayoutRegions.d.ts +16 -0
- package/dist/src/shared/constants/Layouts.d.ts +3 -0
- package/dist/src/shared/constants/LazyLoadBrowserSupport.d.ts +7 -0
- package/dist/src/shared/constants/MarketingSiteArticles.d.ts +3 -0
- package/dist/src/shared/constants/Misc.d.ts +5 -0
- package/dist/src/shared/constants/OnlineUrls.d.ts +4 -0
- package/dist/src/shared/constants/PartialLoadingComponents.d.ts +10 -0
- package/dist/src/shared/constants/RadioChannels.d.ts +62 -0
- package/dist/src/shared/constants/Search.d.ts +40 -0
- package/dist/src/shared/constants/Services.d.ts +56 -0
- package/dist/src/shared/constants/SupportArticles.d.ts +3 -0
- package/dist/src/shared/constants/Webplayer.d.ts +4 -0
- package/dist/src/shared/constants/WithStatements.d.ts +9 -0
- package/dist/src/shared/constants/empty-state-components/EmptyStateComponents.d.ts +6 -0
- package/dist/src/shared/constants/index.d.ts +25 -0
- package/dist/src/shared/enums/AppLinkReferrer.d.ts +3 -0
- package/dist/src/shared/enums/CitationType.d.ts +6 -0
- package/dist/src/shared/enums/CurationStatus.d.ts +12 -0
- package/dist/src/shared/enums/CustomerRegions.d.ts +5 -0
- package/dist/src/shared/enums/EmptyStates.d.ts +16 -0
- package/dist/src/shared/enums/FileIdType.d.ts +5 -0
- package/dist/src/shared/enums/ImageType.d.ts +5 -0
- package/dist/src/shared/enums/MasterObjectTypes.d.ts +8 -0
- package/dist/src/shared/enums/MasterType.d.ts +4 -0
- package/dist/src/shared/enums/PartialLoading.d.ts +41 -0
- package/dist/src/shared/enums/RestrictedObjectType.d.ts +4 -0
- package/dist/src/shared/enums/SchoolTypes.d.ts +17 -0
- package/dist/src/shared/enums/Settings.d.ts +17 -0
- package/dist/src/shared/enums/SharedResourcePrivacy.d.ts +5 -0
- package/dist/src/shared/enums/SortTypes.d.ts +17 -0
- package/dist/src/shared/enums/StaffRequestOption.d.ts +9 -0
- package/dist/src/shared/enums/TimeType.d.ts +4 -0
- package/dist/src/shared/enums/UploadInteractionType.d.ts +4 -0
- package/dist/src/shared/enums/UserRole.d.ts +10 -0
- package/dist/src/shared/enums/YearGroups.d.ts +19 -0
- package/dist/src/shared/enums/index.d.ts +20 -0
- package/dist/src/shared/errors/authentication/AuthenticationError.d.ts +8 -0
- package/dist/src/shared/errors/customer-setting/CustomerSettingError.d.ts +8 -0
- package/dist/src/shared/errors/email-not-verified/EmailNotVerifiedError.d.ts +8 -0
- package/dist/src/shared/errors/file-type/FileTypeError.d.ts +15 -0
- package/dist/src/shared/errors/forbidden-access/ForbiddenAccessError.d.ts +11 -0
- package/dist/src/shared/errors/index.d.ts +11 -0
- package/dist/src/shared/errors/local-cache-device-not-found/LocalCacheDeviceNotFoundError.d.ts +7 -0
- package/dist/src/shared/errors/no-beta-access/NoBetaAccessError.d.ts +8 -0
- package/dist/src/shared/errors/not-found/NotFoundError.d.ts +5 -0
- package/dist/src/shared/errors/old-version/OldVersionError.d.ts +8 -0
- package/dist/src/shared/errors/primitives/AlertError.d.ts +4 -0
- package/dist/src/shared/errors/primitives/DialogError.d.ts +9 -0
- package/dist/src/shared/errors/primitives/ErrorPageError.d.ts +7 -0
- package/dist/src/shared/errors/primitives/index.d.ts +3 -0
- package/dist/src/shared/errors/too-many-files/TooManyFilesError.d.ts +7 -0
- package/dist/src/shared/filters/BetaAccessFilter.d.ts +3 -0
- package/dist/src/shared/filters/CustomerSettingsFilter.d.ts +8 -0
- package/dist/src/shared/filters/RoleFilter.d.ts +4 -0
- package/dist/src/shared/filters/VerifiedEmailFilter.d.ts +3 -0
- package/dist/src/shared/filters/index.d.ts +4 -0
- package/dist/src/shared/index.d.ts +14 -0
- package/dist/src/shared/interfaces/CollectionIdentifier.d.ts +7 -0
- package/dist/src/shared/interfaces/LibraryFoldersIdentifier.d.ts +5 -0
- package/dist/src/shared/interfaces/RecentVideoCollectionIdentifier.d.ts +20 -0
- package/dist/src/shared/interfaces/RecentVideoSubjectCollectionIdentifier.d.ts +16 -0
- package/dist/src/shared/interfaces/Tooltip.d.ts +6 -0
- package/dist/src/shared/interfaces/VideoCollectionIdentifier.d.ts +5 -0
- package/dist/src/shared/interfaces/index.d.ts +6 -0
- package/dist/src/shared/layouts/index.d.ts +1 -0
- package/dist/src/shared/layouts/manage-layout/ManageLayoutView.d.ts +41 -0
- package/dist/src/shared/models/Avatar.d.ts +3 -0
- package/dist/src/shared/models/Banner.d.ts +3 -0
- package/dist/src/shared/models/Channel.d.ts +3 -0
- package/dist/src/shared/models/Chapter.d.ts +3 -0
- package/dist/src/shared/models/Company.d.ts +3 -0
- package/dist/src/shared/models/Config.d.ts +3 -0
- package/dist/src/shared/models/Customer.d.ts +3 -0
- package/dist/src/shared/models/Director.d.ts +3 -0
- package/dist/src/shared/models/DisabledSpinnerModel.d.ts +5 -0
- package/dist/src/shared/models/Distributor.d.ts +3 -0
- package/dist/src/shared/models/Folder.d.ts +12 -0
- package/dist/src/shared/models/Image.d.ts +3 -0
- package/dist/src/shared/models/Interactives.d.ts +3 -0
- package/dist/src/shared/models/LanguageConfig.d.ts +7 -0
- package/dist/src/shared/models/Library.d.ts +10 -0
- package/dist/src/shared/models/Link.d.ts +3 -0
- package/dist/src/shared/models/LocalCacheDevice.d.ts +3 -0
- package/dist/src/shared/models/LocalCacheDownload.d.ts +3 -0
- package/dist/src/shared/models/Logo.d.ts +3 -0
- package/dist/src/shared/models/Metadata.d.ts +3 -0
- package/dist/src/shared/models/Owner.d.ts +3 -0
- package/dist/src/shared/models/Person.d.ts +3 -0
- package/dist/src/shared/models/Phrases.d.ts +3 -0
- package/dist/src/shared/models/Playlist.d.ts +3 -0
- package/dist/src/shared/models/Producer.d.ts +3 -0
- package/dist/src/shared/models/ProductionCompany.d.ts +3 -0
- package/dist/src/shared/models/Rating.d.ts +3 -0
- package/dist/src/shared/models/Resource.d.ts +3 -0
- package/dist/src/shared/models/RestrictedObject.d.ts +3 -0
- package/dist/src/shared/models/Restriction.d.ts +3 -0
- package/dist/src/shared/models/Season.d.ts +3 -0
- package/dist/src/shared/models/Series.d.ts +7 -0
- package/dist/src/shared/models/Setting.d.ts +3 -0
- package/dist/src/shared/models/SharedResource.d.ts +3 -0
- package/dist/src/shared/models/Subtitle.d.ts +3 -0
- package/dist/src/shared/models/Tag.d.ts +3 -0
- package/dist/src/shared/models/Thumbnail.d.ts +3 -0
- package/dist/src/shared/models/User.d.ts +10 -0
- package/dist/src/shared/models/Video.d.ts +29 -0
- package/dist/src/shared/models/index.d.ts +38 -0
- package/dist/src/shared/services/AlertService.d.ts +15 -0
- package/dist/src/shared/services/ConfigDataService.d.ts +23 -0
- package/dist/src/shared/services/ContextService.d.ts +38 -0
- package/dist/src/shared/services/CustomerDataService.d.ts +7 -0
- package/dist/src/shared/services/DownloadProxyDataServices.d.ts +7 -0
- package/dist/src/shared/services/IntercomService.d.ts +8 -0
- package/dist/src/shared/services/LanguageDataService.d.ts +7 -0
- package/dist/src/shared/services/LanguageService.d.ts +16 -0
- package/dist/src/shared/services/LocalCacheDataService.d.ts +11 -0
- package/dist/src/shared/services/NavigationLockService.d.ts +17 -0
- package/dist/src/shared/services/PageTitleService.d.ts +10 -0
- package/dist/src/shared/services/PageVisibilityService.d.ts +14 -0
- package/dist/src/shared/services/PartialLoadingService.d.ts +12 -0
- package/dist/src/shared/services/RestrictedVideoDataService.d.ts +14 -0
- package/dist/src/shared/services/SettingsDataService.d.ts +12 -0
- package/dist/src/shared/services/UserDataService.d.ts +21 -0
- package/dist/src/shared/services/VideoMixinService.d.ts +17 -0
- package/dist/src/shared/services/index.d.ts +18 -0
- package/dist/src/shared/utils/BulkCheckboxHelper.d.ts +18 -0
- package/dist/src/shared/utils/CancelProcessingHelper.d.ts +4 -0
- package/dist/src/shared/utils/CollectionHelper.d.ts +10 -0
- package/dist/src/shared/utils/DialogHelper.d.ts +9 -0
- package/dist/src/shared/utils/DurationHelper.d.ts +7 -0
- package/dist/src/shared/utils/EmptyStateHelper.d.ts +4 -0
- package/dist/src/shared/utils/FileExtensionsHelper.d.ts +9 -0
- package/dist/src/shared/utils/FolderTreeHelpers.d.ts +36 -0
- package/dist/src/shared/utils/ImageHelper.d.ts +31 -0
- package/dist/src/shared/utils/LazyLoadHelper.d.ts +4 -0
- package/dist/src/shared/utils/LocalCacheHelper.d.ts +7 -0
- package/dist/src/shared/utils/MaskHelper.d.ts +15 -0
- package/dist/src/shared/utils/PartialLoadingHelper.d.ts +6 -0
- package/dist/src/shared/utils/PermissionsHelper.d.ts +12 -0
- package/dist/src/shared/utils/RadioChannelHelper.d.ts +11 -0
- package/dist/src/shared/utils/RatingHelper.d.ts +6 -0
- package/dist/src/shared/utils/RestrictedAccessHelper.d.ts +13 -0
- package/dist/src/shared/utils/SettingsHelper.d.ts +9 -0
- package/dist/src/shared/utils/SortHelper.d.ts +15 -0
- package/dist/src/shared/utils/SpinnerHelper.d.ts +19 -0
- package/dist/src/shared/utils/SubtitleLanguageValidation.d.ts +6 -0
- package/dist/src/shared/utils/TabHelper.d.ts +9 -0
- package/dist/src/shared/utils/TextHelper.d.ts +9 -0
- package/dist/src/shared/utils/TimeHelper.d.ts +20 -0
- package/dist/src/shared/utils/VideoHelper.d.ts +11 -0
- package/dist/src/shared/utils/handlebars/LangHelper.d.ts +5 -0
- package/dist/src/shared/utils/handlebars/index.d.ts +1 -0
- package/dist/src/shared/utils/index.d.ts +27 -0
- package/dist/src/shared/utils/search/InstantSearchHelper.d.ts +21 -0
- package/dist/src/shared/utils/search/RawSearchHelper.d.ts +21 -0
- package/dist/src/shared/utils/search/RecentSearchHelper.d.ts +12 -0
- package/dist/src/shared/utils/search/SearchTypes.d.ts +28 -0
- package/dist/src/shared/utils/search/TypeaheadHelper.d.ts +76 -0
- package/dist/src/shared/utils/search/index.d.ts +5 -0
- package/dist/src/shared/utils/search/raw-search-components/add-new/AddNewSuggestion.d.ts +12 -0
- package/dist/src/shared/utils/search/raw-search-components/confirm-selection/ConfirmSelectionComponent.d.ts +12 -0
- package/dist/src/shared/utils/search/raw-search-components/index.d.ts +2 -0
- package/dist/src/shared/utils/search/raw-search-templates/index.d.ts +5 -0
- package/dist/src/shared/views/download-to-local-cache/DownloadToLocalCacheView.d.ts +28 -0
- package/dist/src/shared/views/download-video/DownloadVideoView.d.ts +19 -0
- package/dist/src/shared/views/index.d.ts +9 -0
- package/dist/src/shared/views/restrict-access/RestrictAccessComponent.d.ts +7 -0
- package/dist/src/shared/views/restrict-access/RestrictAccessGroupComponent.d.ts +23 -0
- package/dist/src/shared/views/restrict-access/RestrictAccessView.d.ts +67 -0
- package/dist/src/shared/views/share/ShareView.d.ts +48 -0
- package/dist/src/shared/views/top-navigation/TopNavigationView.d.ts +35 -0
- package/dist/src/shared/views/user-options/UserOptionsView.d.ts +18 -0
- package/dist/src/styles/index.d.ts +1 -0
- package/dist/typings/libs/LazyLoad.d.ts +26 -0
- package/package.json +104 -103
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { ObjectHash } from 'backbone';
|
|
2
|
+
import { Core } from '@clickview/common';
|
|
3
|
+
import { Image } from "../../models";
|
|
4
|
+
import { ImageType } from "../../enums";
|
|
5
|
+
export declare enum CropEventNames {
|
|
6
|
+
ClickCrop = "click:crop",
|
|
7
|
+
CropImage = "crop:image",
|
|
8
|
+
ImageCropped = "image:cropped"
|
|
9
|
+
}
|
|
10
|
+
export interface ImageCropperComponentOptions extends Core.ComponentOptions {
|
|
11
|
+
channelName: string;
|
|
12
|
+
imageType: ImageType;
|
|
13
|
+
minHeight: number;
|
|
14
|
+
minWidth: number;
|
|
15
|
+
getCropRegionWidth: Function;
|
|
16
|
+
}
|
|
17
|
+
export declare class ImageCropperComponent extends Core.Component<Image> {
|
|
18
|
+
options: ImageCropperComponentOptions;
|
|
19
|
+
private cropper;
|
|
20
|
+
constructor(options: ImageCropperComponentOptions);
|
|
21
|
+
initialize(): void;
|
|
22
|
+
get name(): string;
|
|
23
|
+
get template(): string;
|
|
24
|
+
get className(): string;
|
|
25
|
+
get elements(): ObjectHash;
|
|
26
|
+
private getMinCropBoxWidth;
|
|
27
|
+
private getMinCropBoxHeight;
|
|
28
|
+
private getViewportToImageRatio;
|
|
29
|
+
private crop;
|
|
30
|
+
private getImageMimeType;
|
|
31
|
+
private renderCropper;
|
|
32
|
+
onRender(): void;
|
|
33
|
+
onBeforeDestroy(): void;
|
|
34
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
export * from './alert/AlertComponentCollection';
|
|
2
|
+
export * from './top-navigation/TopNavigationComponentCollection';
|
|
3
|
+
export * from './edit-video/edit-basic-info/EditBasicInfoComponent';
|
|
4
|
+
export * from './edit-video/edit-production-info/EditProductionInfoComponent';
|
|
5
|
+
export * from './edit-video/select-rating/SelectRatingCollectionComponent';
|
|
6
|
+
export * from './edit-video/select-rating/SelectRatingComponent';
|
|
7
|
+
export * from './edit-video/edit-additional-info/EditAdditionalInfoComponent';
|
|
8
|
+
export * from './edit-video/edit-broadcast/EditBroadcastComponent';
|
|
9
|
+
export * from './edit-video/edit-broadcast/ToggleBroadcastComponent';
|
|
10
|
+
export * from './edit-video/extra-info/ExtraInfoComponent';
|
|
11
|
+
export * from './edit-video/extra-info/ExtraInfoItemComponent';
|
|
12
|
+
export * from './typeahead-input/SearchTypeaheadComponent';
|
|
13
|
+
export * from './bulk-video-actions/BulkVideoActionsComponent';
|
|
14
|
+
export * from './checkbox/CheckboxComponent';
|
|
15
|
+
export * from './checkbox/BulkCheckboxComponent';
|
|
16
|
+
export * from './left-nav/LeftNavComponent';
|
|
17
|
+
export * from './page-footer/PageFooterComponent';
|
|
18
|
+
export * from './pagination/PaginationComponent';
|
|
19
|
+
export * from './video-basic-info/VideoBasicInfoComponent';
|
|
20
|
+
export * from './video-item-preview/VideoItemPreviewComponent';
|
|
21
|
+
export * from './video-preview/VideoPreviewComponent';
|
|
22
|
+
export * from './page-header/PageHeaderComponent';
|
|
23
|
+
export * from './thumbnail/ThumbnailComponent';
|
|
24
|
+
export * from './video-item';
|
|
25
|
+
export * from './video-description/VideoDescriptionComponent';
|
|
26
|
+
export * from './video-list/VideoListComponent';
|
|
27
|
+
export * from './video-actions/VideoActionsComponent';
|
|
28
|
+
export * from './image-cropper/ImageCropperComponent';
|
|
29
|
+
export * from './clear-button/ClearButtonComponent';
|
|
30
|
+
export * from './breadcrumbs/BreadcrumbsComponent';
|
|
31
|
+
export * from './alert/AlertItemComponent';
|
|
32
|
+
export * from './alert/AlertComponentCollection';
|
|
33
|
+
export * from './web-player/WebPlayerComponent';
|
|
34
|
+
export * from './select/SelectComponent';
|
|
35
|
+
export * from './partial-loading';
|
|
36
|
+
export * from './typeahead-list/TypeaheadListComponent';
|
|
37
|
+
export * from './fields/FieldsComponent';
|
|
38
|
+
export * from './video-description/VideoDescriptionComponent';
|
|
39
|
+
export * from './edit-video/edit-season-info/EditSeasonInfoComponent';
|
|
40
|
+
export * from './resizing-text-area/ResizingTextAreaComponent';
|
|
41
|
+
export * from './dialog/DialogView';
|
|
42
|
+
export * from './dropdown/DropdownButtonComponent';
|
|
43
|
+
export * from './dropdown/DropdownComponentCollection';
|
|
44
|
+
export * from './dropdown/DropdownItemComponent';
|
|
45
|
+
export * from './empty-state/EmptyStateComponent';
|
|
46
|
+
export * from './spinner-button/SpinnerButtonComponent';
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ObjectHash } from 'backbone';
|
|
2
|
+
import { Core } from '@clickview/common';
|
|
3
|
+
import { AnalyticsOptions } from '@clickview/analytics';
|
|
4
|
+
export interface LeftNavComponentOptions extends Core.ComponentOptions {
|
|
5
|
+
styles?: any;
|
|
6
|
+
channelName: string;
|
|
7
|
+
childrenProperty?: string;
|
|
8
|
+
textProperty?: string;
|
|
9
|
+
appLink: Core.AppLink;
|
|
10
|
+
linkArgs?: (model: Core.Model) => any[];
|
|
11
|
+
linkParams?: (model: Core.Model) => string | ObjectHash;
|
|
12
|
+
actions?: new (...args: any[]) => Core.Component;
|
|
13
|
+
extraClasses?: string;
|
|
14
|
+
extraClass?: string;
|
|
15
|
+
folderTreeId: string;
|
|
16
|
+
analyticsOptions?: AnalyticsOptions;
|
|
17
|
+
}
|
|
18
|
+
export declare class LeftNavComponent extends Core.ComponentCollection {
|
|
19
|
+
protected options: LeftNavComponentOptions;
|
|
20
|
+
constructor(options?: LeftNavComponentOptions);
|
|
21
|
+
get name(): string;
|
|
22
|
+
get tagName(): string;
|
|
23
|
+
get childView(): any;
|
|
24
|
+
get className(): string;
|
|
25
|
+
get viewComparator(): string;
|
|
26
|
+
get childViewOptions(): LeftNavComponentOptions;
|
|
27
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
/// <reference types="jquery" />
|
|
2
|
+
import { ObjectHash } from 'backbone';
|
|
3
|
+
import { Core } from '@clickview/common';
|
|
4
|
+
import { LeftNavComponentOptions } from "..";
|
|
5
|
+
export declare class LeftNavNodeComponent extends Core.Component {
|
|
6
|
+
options: LeftNavComponentOptions;
|
|
7
|
+
/**
|
|
8
|
+
* This is used to not re-render the sub children during drag and drop
|
|
9
|
+
*/
|
|
10
|
+
private renderedSubChildren;
|
|
11
|
+
constructor(options?: LeftNavComponentOptions);
|
|
12
|
+
initialize(): void;
|
|
13
|
+
get name(): string;
|
|
14
|
+
get elements(): ObjectHash;
|
|
15
|
+
get tagName(): string;
|
|
16
|
+
get className(): string;
|
|
17
|
+
get behaviors(): any[];
|
|
18
|
+
get appLinks(): Core.AppLinkHash;
|
|
19
|
+
events(): ObjectHash;
|
|
20
|
+
regions(): ObjectHash;
|
|
21
|
+
get template(): any;
|
|
22
|
+
hasChildren(): boolean;
|
|
23
|
+
getChildren(): Core.Collection;
|
|
24
|
+
getText(): string;
|
|
25
|
+
private isSelected;
|
|
26
|
+
private isParent;
|
|
27
|
+
private getAnchorClass;
|
|
28
|
+
private getAppLink;
|
|
29
|
+
/**
|
|
30
|
+
* Clicking on a folder can result in one of three outcomes, depending on the
|
|
31
|
+
* current state of the folder and the user's intent;
|
|
32
|
+
*
|
|
33
|
+
* 1. Where the folder isn't selected, navigate to that folder, select it and open any children.
|
|
34
|
+
* 2. Where the folder is already selected and we *aren't* already on the target route,
|
|
35
|
+
* navigate to the target route.
|
|
36
|
+
* 3. Where the folder is already selected and we *are* on the same route as the target route,
|
|
37
|
+
* we will only toggle the open/closed state of any children (no route change will occur).
|
|
38
|
+
*/
|
|
39
|
+
onClick(event: JQuery.Event): void;
|
|
40
|
+
private isCurrentPath;
|
|
41
|
+
private closeChildren;
|
|
42
|
+
private openChildren;
|
|
43
|
+
private onOpenSubFolders;
|
|
44
|
+
private renderChildren;
|
|
45
|
+
viewOptions(): ObjectHash;
|
|
46
|
+
onRender(): void;
|
|
47
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Core } from '@clickview/common';
|
|
2
|
+
import { ObjectHash } from 'backbone';
|
|
3
|
+
interface PageFooterComponentOptions extends Core.ComponentOptions {
|
|
4
|
+
version: string;
|
|
5
|
+
}
|
|
6
|
+
export declare class PageFooterComponent extends Core.Component {
|
|
7
|
+
options: PageFooterComponentOptions;
|
|
8
|
+
constructor(options: PageFooterComponentOptions);
|
|
9
|
+
get name(): string;
|
|
10
|
+
get template(): any;
|
|
11
|
+
get lang(): string;
|
|
12
|
+
get className(): string;
|
|
13
|
+
viewOptions(): ObjectHash;
|
|
14
|
+
}
|
|
15
|
+
export {};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ObjectHash } from 'backbone';
|
|
2
|
+
import { Core } from '@clickview/common';
|
|
3
|
+
interface PageHeaderComponentOptions extends Core.ComponentOptions {
|
|
4
|
+
onlyShowProfile?: boolean;
|
|
5
|
+
}
|
|
6
|
+
export declare class PageHeaderComponent extends Core.Component {
|
|
7
|
+
protected options: PageHeaderComponentOptions;
|
|
8
|
+
constructor(options?: PageHeaderComponentOptions);
|
|
9
|
+
get name(): string;
|
|
10
|
+
get template(): any;
|
|
11
|
+
get tagName(): string;
|
|
12
|
+
get className(): string;
|
|
13
|
+
regions(): ObjectHash;
|
|
14
|
+
events(): ObjectHash;
|
|
15
|
+
private onClick;
|
|
16
|
+
private logAction;
|
|
17
|
+
private getSearchModel;
|
|
18
|
+
private renderSearchBar;
|
|
19
|
+
private renderUpload;
|
|
20
|
+
private renderNotificationsStatus;
|
|
21
|
+
private renderUserDropdown;
|
|
22
|
+
viewOptions(): ObjectHash;
|
|
23
|
+
onRender(): void;
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { ObjectHash } from 'backbone';
|
|
2
|
+
import { Core, Cursors } from '@clickview/common';
|
|
3
|
+
import { AnalyticsOptions } from '@clickview/analytics';
|
|
4
|
+
interface PaginationComponentOptions extends Core.ComponentOptions {
|
|
5
|
+
cursors: Cursors;
|
|
6
|
+
appLink: Core.AppLink;
|
|
7
|
+
collectionId?: string;
|
|
8
|
+
allowFirstPageCursor?: boolean;
|
|
9
|
+
analyticsOptions?: AnalyticsOptions;
|
|
10
|
+
cursorParamName?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare class PaginationComponent extends Core.Component {
|
|
13
|
+
options: PaginationComponentOptions;
|
|
14
|
+
constructor(options: PaginationComponentOptions);
|
|
15
|
+
get defaults(): ObjectHash;
|
|
16
|
+
get name(): string;
|
|
17
|
+
get template(): any;
|
|
18
|
+
get lang(): string;
|
|
19
|
+
get appLinks(): Core.AppLinkHash;
|
|
20
|
+
events(): ObjectHash;
|
|
21
|
+
private buildCursor;
|
|
22
|
+
private onClickPrevious;
|
|
23
|
+
private onClickNext;
|
|
24
|
+
private logAction;
|
|
25
|
+
viewOptions(): ObjectHash;
|
|
26
|
+
onBeforeRender(): boolean;
|
|
27
|
+
}
|
|
28
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ObjectHash } from 'backbone';
|
|
2
|
+
import { Core } from '@clickview/common';
|
|
3
|
+
export interface PartialLoadingComponentOptions extends Core.ComponentOptions {
|
|
4
|
+
template: string;
|
|
5
|
+
tagName?: keyof HTMLElementTagNameMap;
|
|
6
|
+
className?: string;
|
|
7
|
+
viewOptions?: ObjectHash;
|
|
8
|
+
}
|
|
9
|
+
export declare class PartialLoadingComponent extends Core.Component {
|
|
10
|
+
protected options: PartialLoadingComponentOptions;
|
|
11
|
+
constructor(options?: PartialLoadingComponentOptions);
|
|
12
|
+
get name(): string;
|
|
13
|
+
get tagName(): string;
|
|
14
|
+
get className(): string;
|
|
15
|
+
viewOptions(): ObjectHash;
|
|
16
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Core } from '@clickview/common';
|
|
2
|
+
import { PartialLoadingComponent, PartialLoadingComponentOptions } from "./PartialLoadingComponent";
|
|
3
|
+
interface PartialLoadingComponentCollectionOptions extends Core.ComponentCollectionOptions {
|
|
4
|
+
tagName?: keyof HTMLElementTagNameMap;
|
|
5
|
+
className?: string;
|
|
6
|
+
noExtraClass?: boolean;
|
|
7
|
+
collectionLength?: number;
|
|
8
|
+
childOptions: PartialLoadingComponentOptions;
|
|
9
|
+
}
|
|
10
|
+
export declare class PartialLoadingComponentCollection extends Core.ComponentCollection {
|
|
11
|
+
options: PartialLoadingComponentCollectionOptions;
|
|
12
|
+
constructor(options?: PartialLoadingComponentCollectionOptions);
|
|
13
|
+
initialize(): void;
|
|
14
|
+
get name(): string;
|
|
15
|
+
get tagName(): string;
|
|
16
|
+
get className(): string;
|
|
17
|
+
get childView(): typeof PartialLoadingComponent;
|
|
18
|
+
get childViewOptions(): PartialLoadingComponentOptions;
|
|
19
|
+
}
|
|
20
|
+
export {};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Core } from '@clickview/common';
|
|
2
|
+
interface ResizingTextAreaComponentOptions extends Core.ComponentOptions {
|
|
3
|
+
name?: string;
|
|
4
|
+
id?: string;
|
|
5
|
+
class?: string;
|
|
6
|
+
placeholder?: string;
|
|
7
|
+
required?: boolean;
|
|
8
|
+
readonly?: boolean;
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare class ResizingTextAreaComponent extends Core.Component {
|
|
12
|
+
options: ResizingTextAreaComponentOptions;
|
|
13
|
+
constructor(options: ResizingTextAreaComponentOptions);
|
|
14
|
+
get name(): string;
|
|
15
|
+
get template(): string;
|
|
16
|
+
events(): any;
|
|
17
|
+
/**
|
|
18
|
+
* https://gomakethings.com/automatically-expand-a-textarea-as-the-user-types-using-vanilla-javascript/
|
|
19
|
+
*/
|
|
20
|
+
private onInput;
|
|
21
|
+
viewOptions(): ResizingTextAreaComponentOptions;
|
|
22
|
+
}
|
|
23
|
+
export {};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { ObjectHash } from 'backbone';
|
|
2
|
+
import { Core } from '@clickview/common';
|
|
3
|
+
import { DropdownAnalyticsHelper } from "..";
|
|
4
|
+
export interface SelectChildOptions {
|
|
5
|
+
channelName?: string;
|
|
6
|
+
titleProperty?: string;
|
|
7
|
+
eventName: string;
|
|
8
|
+
extraClasses?: string;
|
|
9
|
+
prefixHandler?: () => string;
|
|
10
|
+
currentSelectedMessage?: string;
|
|
11
|
+
isDisabled?: (model: Core.Model) => boolean;
|
|
12
|
+
truncateOptionNames?: boolean;
|
|
13
|
+
}
|
|
14
|
+
export interface SelectComponentOptions extends Core.ComponentCollectionOptions {
|
|
15
|
+
channelName: string;
|
|
16
|
+
childOptions: SelectChildOptions;
|
|
17
|
+
placeholderText: string;
|
|
18
|
+
noOptionsText?: string;
|
|
19
|
+
inputName?: string;
|
|
20
|
+
disabled?: boolean;
|
|
21
|
+
displayProperty?: string;
|
|
22
|
+
analyticsHelper: DropdownAnalyticsHelper;
|
|
23
|
+
}
|
|
24
|
+
export declare class SelectComponent extends Core.Component {
|
|
25
|
+
collection: Core.Collection;
|
|
26
|
+
options: SelectComponentOptions;
|
|
27
|
+
private selectSearch;
|
|
28
|
+
private sameCharIndex;
|
|
29
|
+
private scopedTimerIndex;
|
|
30
|
+
private optionStep;
|
|
31
|
+
constructor(options: SelectComponentOptions);
|
|
32
|
+
initialize(): void;
|
|
33
|
+
get name(): string;
|
|
34
|
+
get template(): any;
|
|
35
|
+
regions(): ObjectHash;
|
|
36
|
+
events(): ObjectHash;
|
|
37
|
+
get defaults(): ObjectHash;
|
|
38
|
+
get elements(): ObjectHash;
|
|
39
|
+
private bindListeners;
|
|
40
|
+
private onShowDropdown;
|
|
41
|
+
private onKeydown;
|
|
42
|
+
private onArrowKeyDown;
|
|
43
|
+
private onType;
|
|
44
|
+
onSelect(model: Core.Model): void;
|
|
45
|
+
setModel(): void;
|
|
46
|
+
private getNextModel;
|
|
47
|
+
private getModelMatch;
|
|
48
|
+
private handleSameCharIndex;
|
|
49
|
+
private runTimer;
|
|
50
|
+
private isDisabled;
|
|
51
|
+
private getButtonText;
|
|
52
|
+
viewOptions(): ObjectHash;
|
|
53
|
+
onRender(): void;
|
|
54
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { ObjectHash } from 'backbone';
|
|
2
|
+
import { Core } from '@clickview/common';
|
|
3
|
+
import { TooltipOptions } from "../../interfaces";
|
|
4
|
+
import { SpinnerOptions } from "../../utils";
|
|
5
|
+
export declare const SpinnerButtonEvents: {
|
|
6
|
+
ShowSpinner: string;
|
|
7
|
+
HideSpinner: string;
|
|
8
|
+
ToggleSpinner: string;
|
|
9
|
+
Enable: string;
|
|
10
|
+
Disable: string;
|
|
11
|
+
ManageDimensions: string;
|
|
12
|
+
};
|
|
13
|
+
export declare const SpinnerButtonModelAttributes: {
|
|
14
|
+
ShowSpinner: string;
|
|
15
|
+
Disabled: string;
|
|
16
|
+
};
|
|
17
|
+
export interface SpinnerButtonComponentOptions extends Core.ViewOptions {
|
|
18
|
+
saveEvent: string;
|
|
19
|
+
channelName?: string;
|
|
20
|
+
showSpinner?: boolean;
|
|
21
|
+
extraButtonClass?: string;
|
|
22
|
+
buttonText?: string | Function;
|
|
23
|
+
buttonType?: 'submit' | 'reset' | 'button';
|
|
24
|
+
detectWidth?: boolean;
|
|
25
|
+
detectHeight?: true;
|
|
26
|
+
preventMultiClick?: boolean;
|
|
27
|
+
tooltip?: TooltipOptions | (() => TooltipOptions);
|
|
28
|
+
spinnerOptions?: SpinnerOptions;
|
|
29
|
+
disabled?: boolean;
|
|
30
|
+
}
|
|
31
|
+
export declare class SpinnerButtonComponent extends Core.Component {
|
|
32
|
+
protected options: SpinnerButtonComponentOptions;
|
|
33
|
+
constructor(options?: SpinnerButtonComponentOptions);
|
|
34
|
+
get name(): string;
|
|
35
|
+
get tagName(): string;
|
|
36
|
+
/**
|
|
37
|
+
* TODO: Use the Tooltip behaviour once we allow it to be toggleable within
|
|
38
|
+
* the behaviour itself.
|
|
39
|
+
*/
|
|
40
|
+
get attributes(): ObjectHash;
|
|
41
|
+
get template(): any;
|
|
42
|
+
get className(): string;
|
|
43
|
+
events(): ObjectHash;
|
|
44
|
+
get defaults(): ObjectHash;
|
|
45
|
+
initialize(): void;
|
|
46
|
+
private bindSpinnerListeners;
|
|
47
|
+
private bindDisableListeners;
|
|
48
|
+
private getButtonText;
|
|
49
|
+
private getTooltipOptions;
|
|
50
|
+
private onClick;
|
|
51
|
+
private toggleSpinner;
|
|
52
|
+
private showSpinner;
|
|
53
|
+
private hideSpinner;
|
|
54
|
+
private enableButton;
|
|
55
|
+
private disableButton;
|
|
56
|
+
private manageDimensions;
|
|
57
|
+
/**
|
|
58
|
+
* Store current dimensions of button
|
|
59
|
+
* This will only execute after an initial render event as it's triggered in the
|
|
60
|
+
* onBeforeRender handler.
|
|
61
|
+
*/
|
|
62
|
+
private storeDimensions;
|
|
63
|
+
/**
|
|
64
|
+
* Apply the stored dimention state
|
|
65
|
+
* Only applied if we already have stored some dimensions
|
|
66
|
+
*/
|
|
67
|
+
private applyDimensions;
|
|
68
|
+
private renderTooltip;
|
|
69
|
+
viewOptions(): ObjectHash;
|
|
70
|
+
onAttach(): void;
|
|
71
|
+
onRender(): void;
|
|
72
|
+
onBeforeDestroy(): void;
|
|
73
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { ObjectHash } from 'backbone';
|
|
2
|
+
import { Core } from '@clickview/common';
|
|
3
|
+
interface TabAppLink {
|
|
4
|
+
selector: string;
|
|
5
|
+
appLink: Object;
|
|
6
|
+
}
|
|
7
|
+
export interface Tab {
|
|
8
|
+
name: string | (() => string);
|
|
9
|
+
active?: boolean;
|
|
10
|
+
link: TabAppLink;
|
|
11
|
+
hide?: boolean;
|
|
12
|
+
}
|
|
13
|
+
interface TabsComponentOptions extends Core.ComponentOptions {
|
|
14
|
+
tabs: Array<Tab>;
|
|
15
|
+
activeTab: string;
|
|
16
|
+
}
|
|
17
|
+
export declare class TabsComponent extends Core.Component {
|
|
18
|
+
options: TabsComponentOptions;
|
|
19
|
+
constructor(options: TabsComponentOptions);
|
|
20
|
+
get name(): string;
|
|
21
|
+
get className(): string;
|
|
22
|
+
get template(): any;
|
|
23
|
+
get appLinks(): ObjectHash;
|
|
24
|
+
viewOptions(): ObjectHash;
|
|
25
|
+
private setActiveTab;
|
|
26
|
+
onBeforeRender(): void;
|
|
27
|
+
}
|
|
28
|
+
export {};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { ObjectHash } from 'backbone';
|
|
2
|
+
import { Core } from '@clickview/common';
|
|
3
|
+
import { Video } from "../../models";
|
|
4
|
+
import { ImageOptions } from "../../utils";
|
|
5
|
+
export interface ThumbnailComponentOptions extends Core.ComponentOptions {
|
|
6
|
+
model: Video;
|
|
7
|
+
onClickHandler?: Function;
|
|
8
|
+
thumbnailOptions?: ImageOptions;
|
|
9
|
+
playIcon?: boolean;
|
|
10
|
+
lazyload?: boolean;
|
|
11
|
+
appLink?: Core.AppLink;
|
|
12
|
+
href?: string;
|
|
13
|
+
channelName?: string;
|
|
14
|
+
}
|
|
15
|
+
export declare class ThumbnailComponent extends Core.Component<Video> {
|
|
16
|
+
protected options: ThumbnailComponentOptions;
|
|
17
|
+
constructor(options: ThumbnailComponentOptions);
|
|
18
|
+
initialize(): void;
|
|
19
|
+
get name(): string;
|
|
20
|
+
get template(): string;
|
|
21
|
+
get tagName(): string;
|
|
22
|
+
get className(): string;
|
|
23
|
+
get elements(): ObjectHash;
|
|
24
|
+
events(): ObjectHash;
|
|
25
|
+
get appLinks(): Core.AppLinkHash;
|
|
26
|
+
get attributes(): ObjectHash;
|
|
27
|
+
private showPlayIcon;
|
|
28
|
+
private onClick;
|
|
29
|
+
private onImageLoad;
|
|
30
|
+
viewOptions(): ObjectHash;
|
|
31
|
+
onRender(): void;
|
|
32
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ObjectHash } from 'backbone';
|
|
2
|
+
import { Core } from '@clickview/common';
|
|
3
|
+
interface TopNavigationItemComponentOptions extends Core.ComponentOptions {
|
|
4
|
+
selected: Core.AppLink;
|
|
5
|
+
}
|
|
6
|
+
declare class TopNavigationItemComponent extends Core.Component {
|
|
7
|
+
options: TopNavigationItemComponentOptions;
|
|
8
|
+
constructor(options: TopNavigationItemComponentOptions);
|
|
9
|
+
get name(): string;
|
|
10
|
+
get tagName(): string;
|
|
11
|
+
get className(): string;
|
|
12
|
+
private isSelected;
|
|
13
|
+
get appLinks(): Core.AppLinkHash;
|
|
14
|
+
get template(): any;
|
|
15
|
+
private getCount;
|
|
16
|
+
viewOptions(): ObjectHash;
|
|
17
|
+
}
|
|
18
|
+
interface TopNavigationComponentCollectionOptions extends Core.ComponentCollectionOptions {
|
|
19
|
+
selected?: Core.AppLink;
|
|
20
|
+
}
|
|
21
|
+
export declare class TopNavigationComponentCollection extends Core.ComponentCollection {
|
|
22
|
+
options: TopNavigationComponentCollectionOptions;
|
|
23
|
+
constructor(options?: TopNavigationComponentCollectionOptions);
|
|
24
|
+
get name(): string;
|
|
25
|
+
get className(): string;
|
|
26
|
+
get childView(): typeof TopNavigationItemComponent;
|
|
27
|
+
get childViewOptions(): TopNavigationItemComponentOptions;
|
|
28
|
+
}
|
|
29
|
+
export {};
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
/// <reference types="typeahead" />
|
|
2
|
+
import { Core } from '@clickview/common';
|
|
3
|
+
import { ObjectHash } from 'backbone';
|
|
4
|
+
import { TypeaheadConfigHandler, TypeaheadSourceItem } from "../../utils/search";
|
|
5
|
+
interface TypeaheadCallbacks {
|
|
6
|
+
onRender?: Function;
|
|
7
|
+
onInput?: Function;
|
|
8
|
+
onBlur?: Function;
|
|
9
|
+
}
|
|
10
|
+
interface TypeaheadActionOptions {
|
|
11
|
+
clearOnSelect?: boolean;
|
|
12
|
+
}
|
|
13
|
+
interface SearchTypeaheadComponentOptions<TSearchType> extends Core.ComponentOptions {
|
|
14
|
+
parentChannelName: string;
|
|
15
|
+
inputId: string;
|
|
16
|
+
selectEvent: string;
|
|
17
|
+
typeaheadConfigs: TypeaheadSourceItem<TSearchType> | TypeaheadSourceItem<TSearchType>[];
|
|
18
|
+
stickItProperty?: string;
|
|
19
|
+
inputName?: string;
|
|
20
|
+
placeholderText?: string;
|
|
21
|
+
callbacks?: TypeaheadCallbacks;
|
|
22
|
+
typeaheadOptions?: ObjectHash;
|
|
23
|
+
actionOptions?: TypeaheadActionOptions;
|
|
24
|
+
editable?: boolean;
|
|
25
|
+
additionalClasses?: string;
|
|
26
|
+
removeEvent?: string;
|
|
27
|
+
forceShowRemoveButton?: boolean;
|
|
28
|
+
}
|
|
29
|
+
export declare class SearchTypeaheadComponent<TSearchType> extends Core.Component {
|
|
30
|
+
options: SearchTypeaheadComponentOptions<TSearchType>;
|
|
31
|
+
private parentChannel;
|
|
32
|
+
constructor(options?: SearchTypeaheadComponentOptions<TSearchType>);
|
|
33
|
+
get name(): string;
|
|
34
|
+
get template(): any;
|
|
35
|
+
get className(): string;
|
|
36
|
+
get channelName(): string;
|
|
37
|
+
get elements(): ObjectHash;
|
|
38
|
+
get defaults(): ObjectHash;
|
|
39
|
+
events(): ObjectHash;
|
|
40
|
+
initialize(): void;
|
|
41
|
+
protected bindListeners(): void;
|
|
42
|
+
get bindings(): ObjectHash;
|
|
43
|
+
clearInput(): void;
|
|
44
|
+
setInput(newVal: string): void;
|
|
45
|
+
/**
|
|
46
|
+
* TODO: Add submit on enter support
|
|
47
|
+
*/
|
|
48
|
+
protected onTypeaheadSelect(event: any, suggestion: string | ObjectHash, source: any): void;
|
|
49
|
+
private onSubmit;
|
|
50
|
+
private onClickRemove;
|
|
51
|
+
protected getSources(): TypeaheadConfigHandler<TSearchType>[] | Twitter.Typeahead.Dataset<TSearchType>[];
|
|
52
|
+
private getTypeaheadOptions;
|
|
53
|
+
private getTypeaheadActionOptions;
|
|
54
|
+
private bindOptionalCallbacks;
|
|
55
|
+
protected initTypeahead(): void;
|
|
56
|
+
protected initTypeaheadListeners(): void;
|
|
57
|
+
private toggleRemove;
|
|
58
|
+
/**
|
|
59
|
+
* Show the remove button if:
|
|
60
|
+
*
|
|
61
|
+
* Content is editable
|
|
62
|
+
* We have a value
|
|
63
|
+
* We have a remove event to trigger
|
|
64
|
+
*
|
|
65
|
+
* OR
|
|
66
|
+
*
|
|
67
|
+
* We're being force to show the remove button (Used by PPDD)
|
|
68
|
+
*/
|
|
69
|
+
private shouldShowRemove;
|
|
70
|
+
viewOptions(): ObjectHash;
|
|
71
|
+
onRender(): void;
|
|
72
|
+
onClose(): void;
|
|
73
|
+
}
|
|
74
|
+
export {};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { ObjectHash } from 'backbone';
|
|
2
|
+
import { Core } from '@clickview/common';
|
|
3
|
+
interface TypeaheadListComponentOptions extends Core.ComponentCollectionOptions {
|
|
4
|
+
collection: Core.Collection;
|
|
5
|
+
channelName: string;
|
|
6
|
+
typeaheadConfig: any;
|
|
7
|
+
selectEvent: string;
|
|
8
|
+
inputId: string;
|
|
9
|
+
placeholderText: string;
|
|
10
|
+
modelType: string;
|
|
11
|
+
removeEvent?: string;
|
|
12
|
+
editable?: boolean;
|
|
13
|
+
}
|
|
14
|
+
export declare class TypeaheadListComponentCollection extends Core.ComponentCollection {
|
|
15
|
+
options: TypeaheadListComponentOptions;
|
|
16
|
+
constructor(options: TypeaheadListComponentOptions);
|
|
17
|
+
get name(): string;
|
|
18
|
+
get childViewOptions(): TypeaheadListComponentOptions;
|
|
19
|
+
get childView(): typeof TypeaheadListComponent;
|
|
20
|
+
}
|
|
21
|
+
declare class TypeaheadListComponent extends Core.Component {
|
|
22
|
+
options: TypeaheadListComponentOptions;
|
|
23
|
+
constructor(options: TypeaheadListComponentOptions);
|
|
24
|
+
get name(): string;
|
|
25
|
+
get template(): string;
|
|
26
|
+
get modelId(): string;
|
|
27
|
+
get bindings(): ObjectHash;
|
|
28
|
+
regions(): ObjectHash;
|
|
29
|
+
private renderTypeahead;
|
|
30
|
+
viewOptions(): ObjectHash;
|
|
31
|
+
onRender(): void;
|
|
32
|
+
}
|
|
33
|
+
export {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ObjectHash } from 'backbone';
|
|
2
|
+
import { Core } from '@clickview/common';
|
|
3
|
+
import { DropdownChildOptions, DropdownDisplayOptions } from "..";
|
|
4
|
+
import { User } from "../../models";
|
|
5
|
+
interface UserOptionsDropdownComponentOptions extends Core.ComponentOptions<User> {
|
|
6
|
+
childOptions?: DropdownChildOptions;
|
|
7
|
+
displayOptions?: DropdownDisplayOptions;
|
|
8
|
+
}
|
|
9
|
+
export declare class UserOptionsDropdownComponent extends Core.Component<User> {
|
|
10
|
+
protected options: UserOptionsDropdownComponentOptions;
|
|
11
|
+
constructor(options: UserOptionsDropdownComponentOptions);
|
|
12
|
+
get name(): string;
|
|
13
|
+
get className(): string;
|
|
14
|
+
get template(): string;
|
|
15
|
+
regions(): ObjectHash;
|
|
16
|
+
private getExtraClasses;
|
|
17
|
+
viewOptions(): ObjectHash;
|
|
18
|
+
onRender(): void;
|
|
19
|
+
}
|
|
20
|
+
export {};
|