@clickview/library-editor 1.1.18 → 1.1.19-dev.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/css/0.chunk.css +6 -0
- package/dist/css/1.chunk.css +2 -0
- package/dist/css/10.chunk.css +2 -0
- package/dist/css/12.chunk.css +14 -0
- package/dist/css/13.chunk.css +14 -0
- package/dist/css/14.chunk.css +8 -0
- package/dist/css/16.chunk.css +2 -0
- package/dist/css/17.chunk.css +2 -0
- package/dist/css/18.chunk.css +2 -0
- package/dist/css/2.chunk.css +4 -0
- package/dist/css/20.chunk.css +18 -0
- package/dist/css/21.chunk.css +18 -0
- package/dist/css/22.chunk.css +10 -0
- package/dist/css/23.chunk.css +12 -0
- package/dist/css/24.chunk.css +14 -0
- package/dist/css/25.chunk.css +10 -0
- package/dist/css/26.chunk.css +10 -0
- package/dist/css/27.chunk.css +8 -0
- package/dist/css/28.chunk.css +8 -0
- package/dist/css/29.chunk.css +8 -0
- package/dist/css/30.chunk.css +6 -0
- package/dist/css/31.chunk.css +6 -0
- package/dist/css/32.chunk.css +4 -0
- package/dist/css/36.chunk.css +4 -0
- package/dist/css/37.chunk.css +4 -0
- package/dist/css/38.chunk.css +2 -0
- package/dist/css/39.chunk.css +2 -0
- package/dist/css/4.chunk.css +6 -0
- package/dist/css/40.chunk.css +4 -0
- package/dist/css/41.chunk.css +4 -0
- package/dist/css/42.chunk.css +2 -0
- package/dist/css/43.chunk.css +2 -0
- package/dist/css/44.chunk.css +2 -0
- package/dist/css/45.chunk.css +2 -0
- package/dist/css/46.chunk.css +2 -0
- package/dist/css/47.chunk.css +2 -0
- package/dist/css/48.chunk.css +2 -0
- package/dist/css/5.chunk.css +16 -0
- package/dist/css/50.chunk.css +2 -0
- package/dist/css/51.chunk.css +2 -0
- package/dist/css/54.chunk.css +2 -0
- package/dist/css/55.chunk.css +2 -0
- package/dist/css/56.chunk.css +2 -0
- package/dist/css/57.chunk.css +2 -0
- package/dist/css/58.chunk.css +2 -0
- package/dist/css/59.chunk.css +2 -0
- package/dist/css/6.chunk.css +14 -0
- package/dist/css/61.chunk.css +2 -0
- package/dist/css/62.chunk.css +2 -0
- package/dist/css/7.chunk.css +2 -0
- package/dist/css/8.chunk.css +2 -0
- package/dist/css/9.chunk.css +4 -0
- package/dist/css/library-editor-app.css +124 -0
- package/dist/en.json +1 -1
- package/dist/libs/analytics/src/Analytics.d.ts +10 -0
- package/dist/libs/analytics/src/AnalyticsHelper.d.ts +30 -0
- package/dist/libs/analytics/src/AnalyticsService.d.ts +52 -0
- package/dist/libs/analytics/src/clients/BaseAnalyticsClient.d.ts +24 -0
- package/dist/libs/analytics/src/clients/CollectionApiClient.d.ts +48 -0
- package/dist/libs/analytics/src/clients/DebuggerClient.d.ts +7 -0
- package/dist/libs/analytics/src/clients/GoogleAnalyticsClient.d.ts +22 -0
- package/dist/libs/analytics/src/constants/ApplicationOptionsKey.d.ts +1 -0
- package/dist/libs/analytics/src/constants/CountryRegionMapping.d.ts +7 -0
- package/dist/libs/analytics/src/constants/EventFirehose.d.ts +4 -0
- package/dist/libs/analytics/src/constants/GlobalChannels.d.ts +3 -0
- package/dist/libs/analytics/src/constants/Regions.d.ts +6 -0
- package/dist/libs/analytics/src/constants/Services.d.ts +4 -0
- package/dist/libs/analytics/src/enrichers/BaseAnalyticsEnricher.d.ts +19 -0
- package/dist/libs/analytics/src/enrichers/CoreContextEnricher.d.ts +22 -0
- package/dist/libs/analytics/src/enrichers/UserDataEnricher.d.ts +10 -0
- package/dist/libs/analytics/src/enums/CountryCode.d.ts +5 -0
- package/dist/libs/analytics/src/enums/RegionName.d.ts +5 -0
- package/dist/libs/analytics/src/interfaces/AnalyticsTypes.d.ts +214 -0
- package/dist/libs/analytics/src/interfaces/Config.d.ts +3 -0
- package/dist/libs/analytics/src/interfaces/Folder.d.ts +3 -0
- package/dist/libs/analytics/src/interfaces/HashObject.d.ts +3 -0
- package/dist/libs/analytics/src/interfaces/Owner.d.ts +3 -0
- package/dist/libs/analytics/src/interfaces/Playlist.d.ts +3 -0
- package/dist/libs/analytics/src/interfaces/Rating.d.ts +4 -0
- package/dist/libs/analytics/src/interfaces/Region.d.ts +5 -0
- package/dist/libs/analytics/src/interfaces/RegionalUrl.d.ts +5 -0
- package/dist/libs/analytics/src/interfaces/Resource.d.ts +5 -0
- package/dist/libs/analytics/src/interfaces/Series.d.ts +3 -0
- package/dist/libs/analytics/src/interfaces/Subtitle.d.ts +4 -0
- package/dist/libs/analytics/src/interfaces/User.d.ts +6 -0
- package/dist/libs/analytics/src/interfaces/VersionData.d.ts +4 -0
- package/dist/libs/analytics/src/interfaces/Video.d.ts +16 -0
- package/dist/libs/analytics/src/interfaces/index.d.ts +15 -0
- package/dist/libs/analytics/src/interfaces/primitives/BaseObject.d.ts +7 -0
- package/dist/libs/analytics/src/models/AnalyticsEvent.d.ts +49 -0
- package/dist/libs/analytics/src/models/CollectionEvent.d.ts +55 -0
- package/dist/libs/analytics/src/services/ContextService.d.ts +19 -0
- package/dist/libs/analytics/src/transport/EventTransport.d.ts +39 -0
- package/dist/libs/analytics/src/utils/CollectionApiClientHelper.d.ts +6 -0
- package/dist/libs/analytics/src/utils/DataFormatHelper.d.ts +14 -0
- package/dist/libs/analytics/src/utils/EventWhitelistHelper.d.ts +19 -0
- package/dist/libs/analytics/src/utils/ObjectFormatHelper.d.ts +5 -0
- package/dist/libs/analytics/src/utils/TypeHelper.d.ts +4 -0
- package/dist/libs/analytics/src/utils/UploadDataFormatHelper.d.ts +10 -0
- package/dist/libs/analytics/src/utils/UserAgentHelper.d.ts +10 -0
- package/dist/libs/analytics/src/utils/VideoAnalyticsTracker.d.ts +50 -0
- package/dist/libs/analytics/src/utils/VideoDataFormatHelper.d.ts +42 -0
- package/dist/libs/common/src/backbone/constants/BehaviorChannels.d.ts +5 -0
- package/dist/libs/common/src/backbone/constants/Caches.d.ts +3 -0
- package/dist/libs/common/src/backbone/constants/CommonChannels.d.ts +5 -0
- package/dist/libs/common/src/backbone/constants/CommonServices.d.ts +5 -0
- package/dist/libs/common/src/backbone/constants/DataProviders.d.ts +4 -0
- package/dist/libs/common/src/backbone/constants/Webplayer.d.ts +65 -0
- package/dist/libs/common/src/backbone/core/AppLink.d.ts +37 -0
- package/dist/libs/common/src/backbone/core/BaseAppRouter.d.ts +95 -0
- package/dist/libs/common/src/backbone/core/BaseApplication.d.ts +76 -0
- package/dist/libs/common/src/backbone/core/BaseBehavior.d.ts +6 -0
- package/dist/libs/common/src/backbone/core/BaseCollection.d.ts +7 -0
- package/dist/libs/common/src/backbone/core/BaseCollectionView.d.ts +16 -0
- package/dist/libs/common/src/backbone/core/BaseError.d.ts +18 -0
- package/dist/libs/common/src/backbone/core/BaseLayoutView.d.ts +11 -0
- package/dist/libs/common/src/backbone/core/BaseModel.d.ts +27 -0
- package/dist/libs/common/src/backbone/core/BaseNestedModel.d.ts +21 -0
- package/dist/libs/common/src/backbone/core/BaseService.d.ts +10 -0
- package/dist/libs/common/src/backbone/core/BaseView.d.ts +127 -0
- package/dist/libs/common/src/backbone/core/EventNames.d.ts +16 -0
- package/dist/libs/common/src/backbone/core/LayoutService.d.ts +31 -0
- package/dist/libs/common/src/backbone/core/ListenToRadio.d.ts +3 -0
- package/dist/libs/common/src/backbone/core/LocationUtils.d.ts +23 -0
- package/dist/libs/common/src/backbone/core/Middleware.d.ts +10 -0
- package/dist/libs/common/src/backbone/core/Shell.d.ts +79 -0
- package/dist/libs/common/src/backbone/core/Types.d.ts +12 -0
- package/dist/libs/common/src/backbone/core/index.d.ts +18 -0
- package/dist/libs/common/src/backbone/enums/DataServiceErrorType.d.ts +8 -0
- package/dist/libs/common/src/backbone/enums/HttpVerbs.d.ts +6 -0
- package/dist/libs/common/src/backbone/errors/DevError.d.ts +4 -0
- package/dist/libs/common/src/backbone/errors/NotImplementedError.d.ts +5 -0
- package/dist/libs/common/src/backbone/index.d.ts +2 -0
- package/dist/libs/common/src/backbone/interfaces/BaseCollectionIdentifier.d.ts +18 -0
- package/dist/libs/common/src/backbone/interfaces/ChainableDataService.d.ts +9 -0
- package/dist/libs/common/src/backbone/interfaces/DataCache.d.ts +8 -0
- package/dist/libs/common/src/backbone/interfaces/DataProvider.d.ts +15 -0
- package/dist/libs/common/src/backbone/interfaces/DataServiceError.d.ts +7 -0
- package/dist/libs/common/src/backbone/interfaces/DataServiceRequests.d.ts +218 -0
- package/dist/libs/common/src/backbone/interfaces/Pagination.d.ts +33 -0
- package/dist/libs/common/src/backbone/interfaces/StickitBinding.d.ts +38 -0
- package/dist/libs/common/src/backbone/interfaces/Xhr.d.ts +9 -0
- package/dist/libs/common/src/backbone/interfaces/index.d.ts +9 -0
- package/dist/libs/common/src/backbone/runtime/InputValidation.d.ts +2 -0
- package/dist/libs/common/src/backbone/services/BaseAlertService.d.ts +69 -0
- package/dist/libs/common/src/backbone/services/BaseDataService.d.ts +82 -0
- package/dist/libs/common/src/backbone/services/EnvironmentVariables.d.ts +13 -0
- package/dist/libs/common/src/backbone/services/InstanceManager.d.ts +33 -0
- package/dist/libs/common/src/backbone/services/LanguageService.d.ts +22 -0
- package/dist/libs/common/src/backbone/services/ScrollService.d.ts +19 -0
- package/dist/libs/common/src/backbone/services/ViewModelService.d.ts +68 -0
- package/dist/libs/common/src/backbone/services/caches/FifoMemoryCache.d.ts +20 -0
- package/dist/libs/common/src/backbone/services/data-providers/AjaxDataProvider.d.ts +31 -0
- package/dist/libs/common/src/backbone/services/data-providers/SignalRDataProvider.d.ts +46 -0
- package/dist/libs/common/src/backbone/utils/ConcurrencyHelper.d.ts +13 -0
- package/dist/libs/common/src/backbone/utils/DataServiceErrorHelper.d.ts +2 -0
- package/dist/libs/common/src/backbone/utils/FunctionHelper.d.ts +8 -0
- package/dist/libs/common/src/backbone/utils/LocalStorageHelper.d.ts +58 -0
- package/dist/libs/common/src/backbone/utils/UrlHelper.d.ts +13 -0
- package/dist/libs/common/src/backbone/utils/UserAgentHelper.d.ts +7 -0
- package/dist/libs/common/src/react/interfaces/HashObject.d.ts +3 -0
- package/dist/libs/common/src/react/utils/FetchHelper.d.ts +50 -0
- package/dist/libs/common/src/react/utils/ObjectHelper.d.ts +10 -0
- package/dist/libs/shared/src/apps/notifications/collections/NotificationCollection.d.ts +9 -0
- package/dist/libs/shared/src/apps/notifications/components/notification-items/notification-item/NotificationItemComponent.d.ts +23 -0
- package/dist/libs/shared/src/apps/notifications/components/notification-list/NotificationListComponent.d.ts +26 -0
- package/dist/libs/shared/src/apps/notifications/components/notification-status/NotificationStatusComponent.d.ts +15 -0
- package/dist/libs/shared/src/apps/notifications/enums/AppLinkReferrer.d.ts +3 -0
- package/dist/libs/shared/src/apps/notifications/enums/NotificationActions.d.ts +3 -0
- package/dist/libs/shared/src/apps/notifications/enums/NotificationAlertType.d.ts +7 -0
- package/dist/libs/shared/src/apps/notifications/enums/NotificationAppLinkModules.d.ts +7 -0
- package/dist/libs/shared/src/apps/notifications/enums/NotificationModules.d.ts +4 -0
- package/dist/libs/shared/src/apps/notifications/enums/NotificationStatus.d.ts +5 -0
- package/dist/libs/shared/src/apps/notifications/enums/NotificationType.d.ts +16 -0
- package/dist/libs/shared/src/apps/notifications/interfaces/NotificationCollectionRequest.d.ts +5 -0
- package/dist/libs/shared/src/apps/notifications/interfaces/index.d.ts +1 -0
- package/dist/libs/shared/src/apps/notifications/models/Notification.d.ts +6 -0
- package/dist/libs/shared/src/apps/notifications/services/NotificationDataService.d.ts +14 -0
- package/dist/libs/shared/src/apps/notifications/services/NotificationService.d.ts +33 -0
- package/dist/libs/shared/src/apps/notifications/services/NotificationSocketService.d.ts +8 -0
- package/dist/libs/shared/src/apps/notifications/services/data-providers/NotificationsSocketDataProvider.d.ts +4 -0
- package/dist/libs/shared/src/apps/notifications/utils/NotificationAppLinkHelper.d.ts +10 -0
- package/dist/libs/shared/src/apps/notifications/utils/NotificationsHelper.d.ts +18 -0
- package/dist/libs/shared/src/apps/notifications/views/header/NotificationHeaderView.d.ts +16 -0
- package/dist/libs/shared/src/apps/notifications/views/notifications/NotificationsView.d.ts +27 -0
- package/dist/libs/shared/src/apps/notifications/views/popover/NotificationsPopoverView.d.ts +34 -0
- package/dist/libs/shared/src/apps/search/components/confirm-selection/ConfirmSelectionComponent.d.ts +12 -0
- package/dist/libs/shared/src/apps/search/components/instant-search/index.d.ts +4 -0
- package/dist/libs/shared/src/apps/search/components/instant-search/recent-search/RecentSearchResultComponent.d.ts +15 -0
- package/dist/libs/shared/src/apps/search/components/instant-search/series/SeriesSearchResultComponent.d.ts +9 -0
- package/dist/libs/shared/src/apps/search/components/instant-search/tag/TagSearchResultComponent.d.ts +9 -0
- package/dist/libs/shared/src/apps/search/components/instant-search/video-result/VideoSearchResultComponent.d.ts +18 -0
- package/dist/libs/shared/src/apps/search/components/search-context/SearchContextComponent.d.ts +18 -0
- package/dist/libs/shared/src/apps/search/components/search-tips/SearchTipsComponent.d.ts +11 -0
- package/dist/libs/shared/src/apps/search/constants/TypeaheadConfiguration.d.ts +12 -0
- package/dist/libs/shared/src/apps/search/enums/FilterTypes.d.ts +14 -0
- package/dist/libs/shared/src/apps/search/enums/SearchQueryType.d.ts +18 -0
- package/dist/libs/shared/src/apps/search/enums/SearchTypes.d.ts +8 -0
- package/dist/libs/shared/src/apps/search/interfaces/SearchTypes.d.ts +26 -0
- package/dist/libs/shared/src/apps/search/interfaces/index.d.ts +1 -0
- package/dist/libs/shared/src/apps/search/services/ContextualSearchService.d.ts +34 -0
- package/dist/libs/shared/src/apps/search/utils/InstantSearchHelper.d.ts +21 -0
- package/dist/libs/shared/src/apps/search/utils/RecentSearchHelper.d.ts +12 -0
- package/dist/libs/shared/src/apps/search/utils/SearchHelper.d.ts +5 -0
- package/dist/libs/shared/src/apps/search/utils/TypeaheadHelper.d.ts +75 -0
- package/dist/libs/shared/src/apps/search/views/search-bar/SearchBarView.d.ts +105 -0
- package/dist/libs/shared/src/apps/search/views/search-bar/templates/index.d.ts +9 -0
- package/dist/libs/shared/src/apps/upload/collections/PendingItemsCollection.d.ts +8 -0
- package/dist/libs/shared/src/apps/upload/constants/UploadConstants.d.ts +39 -0
- package/dist/libs/shared/src/apps/upload/enums/FileLifestyle.d.ts +4 -0
- package/dist/libs/shared/src/apps/upload/enums/PendingItemStatus.d.ts +5 -0
- package/dist/libs/shared/src/apps/upload/errors/file-type/FileTypeError.d.ts +15 -0
- package/dist/libs/shared/src/apps/upload/errors/internet-connectivity/InternetConnectivityError.d.ts +7 -0
- package/dist/libs/shared/src/apps/upload/services/BasePendingItemsService.d.ts +26 -0
- package/dist/libs/shared/src/apps/upload/services/DropzoneWrapper.d.ts +30 -0
- package/dist/libs/shared/src/apps/upload/services/UploadService.d.ts +65 -0
- package/dist/libs/shared/src/apps/upload/utils/FileExtensionsHelper.d.ts +9 -0
- package/dist/libs/shared/src/apps/upload/utils/PendingItemsHelper.d.ts +9 -0
- package/dist/libs/shared/src/constants/AppVariables.d.ts +4 -0
- package/dist/libs/shared/src/constants/BootstrapKeys.d.ts +5 -0
- package/dist/libs/shared/src/constants/DataPrefixes.d.ts +12 -0
- package/dist/libs/shared/src/constants/RadioChannels.d.ts +20 -0
- package/dist/libs/shared/src/constants/SharedServices.d.ts +25 -0
- package/dist/libs/shared/src/enums/ClassificationType.d.ts +4 -0
- package/dist/libs/shared/src/enums/CurationStatus.d.ts +12 -0
- package/dist/libs/shared/src/enums/CustomerType.d.ts +11 -0
- package/dist/libs/shared/src/enums/GlanceFormat.d.ts +3 -0
- package/dist/libs/shared/src/enums/Images.d.ts +26 -0
- package/dist/libs/shared/src/enums/LibraryType.d.ts +5 -0
- package/dist/libs/shared/src/enums/MediaQueries.d.ts +18 -0
- package/dist/libs/shared/src/enums/PartialLoading.d.ts +4 -0
- package/dist/libs/shared/src/enums/ThemeType.d.ts +3 -0
- package/dist/libs/shared/src/enums/UserRole.d.ts +15 -0
- package/dist/libs/shared/src/enums/VideoOrigin.d.ts +14 -0
- package/dist/libs/shared/src/enums/WidgetContents.d.ts +6 -0
- package/dist/libs/shared/src/errors/primitives/AlertError.d.ts +4 -0
- package/dist/libs/shared/src/errors/primitives/DialogError.d.ts +9 -0
- package/dist/libs/shared/src/errors/primitives/ErrorPageError.d.ts +7 -0
- package/dist/libs/shared/src/images/svg/ImportedSvgs.d.ts +81 -0
- package/dist/libs/shared/src/images/svg/actions/index.d.ts +21 -0
- package/dist/libs/shared/src/images/svg/arrows/index.d.ts +9 -0
- package/dist/libs/shared/src/images/svg/index.d.ts +2 -0
- package/dist/libs/shared/src/images/svg/objects/index.d.ts +33 -0
- package/dist/libs/shared/src/images/svg/player/index.d.ts +14 -0
- package/dist/libs/shared/src/images/svg/settings.d.ts +1 -0
- package/dist/libs/shared/src/images/svg/status/index.d.ts +13 -0
- package/dist/libs/shared/src/interfaces/AppLinkWithLabel.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/DialogOptions.d.ts +13 -0
- package/dist/libs/shared/src/interfaces/ImageUrls.d.ts +16 -0
- package/dist/libs/shared/src/interfaces/QueryParams.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/RegionalUrl.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/WidgetContext.d.ts +9 -0
- package/dist/libs/shared/src/interfaces/app-variables/BaseNotificationsAppVariables.d.ts +16 -0
- package/dist/libs/shared/src/interfaces/app-variables/BaseSearchAppVariables.d.ts +14 -0
- package/dist/libs/shared/src/interfaces/app-variables/index.d.ts +2 -0
- package/dist/libs/shared/src/interfaces/collections/AudienceCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/CategoryCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/ClipCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/CompanyCollection.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/collections/CustomerCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/FolderCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/InteractiveCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/LibraryCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/LinkCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/PersonCollection.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/collections/PlaylistCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/PresentationAudienceCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/ResourceCollection.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/collections/SeriesCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/TagCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/UserCollection.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/collections/VideoCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/WidgetCollection.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/collections/index.d.ts +20 -0
- package/dist/libs/shared/src/interfaces/collections/primitives/BasePaginatedCollection.d.ts +7 -0
- package/dist/libs/shared/src/interfaces/collections/primitives/index.d.ts +1 -0
- package/dist/libs/shared/src/interfaces/index.d.ts +13 -0
- package/dist/libs/shared/src/interfaces/models/Audience.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Banner.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Category.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Channel.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Classification.d.ts +20 -0
- package/dist/libs/shared/src/interfaces/models/Clip.d.ts +6 -0
- package/dist/libs/shared/src/interfaces/models/Company.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Config.d.ts +9 -0
- package/dist/libs/shared/src/interfaces/models/Cover.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Customer.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/models/Folder.d.ts +7 -0
- package/dist/libs/shared/src/interfaces/models/Following.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/models/Glance.d.ts +7 -0
- package/dist/libs/shared/src/interfaces/models/HeroBanner.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Image.d.ts +7 -0
- package/dist/libs/shared/src/interfaces/models/Interactive.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/models/LanguageConfig.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/models/Library.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Link.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Organisation.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Person.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Playlist.d.ts +10 -0
- package/dist/libs/shared/src/interfaces/models/Poster.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Presentation.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/PresentationAudience.d.ts +6 -0
- package/dist/libs/shared/src/interfaces/models/Rating.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/models/Resource.d.ts +9 -0
- package/dist/libs/shared/src/interfaces/models/Restriction.d.ts +6 -0
- package/dist/libs/shared/src/interfaces/models/Season.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/models/Series.d.ts +10 -0
- package/dist/libs/shared/src/interfaces/models/Share.d.ts +9 -0
- package/dist/libs/shared/src/interfaces/models/Subject.d.ts +13 -0
- package/dist/libs/shared/src/interfaces/models/Tag.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/TallPoster.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Theme.d.ts +11 -0
- package/dist/libs/shared/src/interfaces/models/Thumbnail.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/User.d.ts +53 -0
- package/dist/libs/shared/src/interfaces/models/Video.d.ts +26 -0
- package/dist/libs/shared/src/interfaces/models/VideoWithRestrictions.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/models/Widget.d.ts +15 -0
- package/dist/libs/shared/src/interfaces/models/index.d.ts +42 -0
- package/dist/libs/shared/src/interfaces/models/primitives/BaseObject.d.ts +7 -0
- package/dist/libs/shared/src/interfaces/models/primitives/index.d.ts +1 -0
- package/dist/libs/shared/src/interfaces/props/ViewProps.d.ts +8 -0
- package/dist/libs/shared/src/interfaces/props/index.d.ts +1 -0
- package/dist/libs/shared/src/interfaces/requests/ReorderRequest.d.ts +12 -0
- package/dist/libs/shared/src/interfaces/requests/UpdateVideoRequest.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/requests/index.d.ts +2 -0
- package/dist/libs/shared/src/interfaces/services/BaseLibraryDataService.d.ts +10 -0
- package/dist/libs/shared/src/interfaces/services/BaseSeriesDataService.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/services/BaseVideoDataService.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/services/BaseVideoUploadDataService.d.ts +8 -0
- package/dist/libs/shared/src/interfaces/services/index.d.ts +4 -0
- package/dist/libs/shared/src/legacy/behaviors/empty-state/EmptyStateBehavior.d.ts +22 -0
- package/dist/libs/shared/src/legacy/behaviors/popover/PopoverBehavior.d.ts +40 -0
- package/dist/libs/shared/src/legacy/behaviors/tooltip/TooltipBehavior.d.ts +26 -0
- package/dist/libs/shared/src/legacy/components/empty-state/EmptyStateComponent.d.ts +24 -0
- package/dist/libs/shared/src/legacy/components/pagination/PaginationComponent.d.ts +29 -0
- package/dist/libs/shared/src/legacy/components/thumbnail/ThumbnailComponent.d.ts +34 -0
- package/dist/libs/shared/src/legacy/constants/empty-state-components/EmptyStateComponents.d.ts +6 -0
- package/dist/libs/shared/src/legacy/enums/EmptyState.d.ts +3 -0
- package/dist/libs/shared/src/legacy/enums/SortType.d.ts +7 -0
- package/dist/libs/shared/src/legacy/interfaces/CollectionIdentifier.d.ts +7 -0
- package/dist/libs/shared/src/legacy/interfaces/index.d.ts +1 -0
- package/dist/libs/shared/src/legacy/utils/EmptyStateHelper.d.ts +4 -0
- package/dist/libs/shared/src/legacy/utils/LangHelper.d.ts +5 -0
- package/dist/libs/shared/src/services/ContextService.d.ts +38 -0
- package/dist/libs/shared/src/services/LanguageDataService.d.ts +7 -0
- package/dist/libs/shared/src/services/UserDataService.d.ts +23 -0
- package/dist/libs/shared/src/utils/EmbedHelper.d.ts +8 -0
- package/dist/libs/shared/src/utils/ImageHelper.d.ts +30 -0
- package/dist/libs/shared/src/utils/LibraryDataServiceHelper.d.ts +13 -0
- package/dist/libs/shared/src/utils/MaskHelper.d.ts +15 -0
- package/dist/libs/shared/src/utils/SvgHelper.d.ts +19 -0
- package/dist/libs/shared/src/utils/TextHelper.d.ts +3 -0
- package/dist/projects/library-editor/src/app.d.ts +224 -0
- package/dist/projects/library-editor/src/apps/content-updates/ContentUpdatesApplication.d.ts +18 -0
- package/dist/projects/library-editor/src/apps/content-updates/collections/SubjectCollection.d.ts +5 -0
- package/dist/projects/library-editor/src/apps/content-updates/collections/VideoGroupCollection.d.ts +5 -0
- package/dist/projects/library-editor/src/apps/content-updates/components/awaiting-review-header/AwaitingReviewHeaderComponent.d.ts +14 -0
- package/dist/projects/library-editor/src/apps/content-updates/components/content-updates-header/ContentUpdatesHeaderComponent.d.ts +19 -0
- package/dist/projects/library-editor/src/apps/content-updates/components/content-updates-left-nav/ContentUpdatesLeftNavComponent.d.ts +18 -0
- package/dist/projects/library-editor/src/apps/content-updates/components/past-releases-filters/PastReleasesFiltersComponent.d.ts +20 -0
- package/dist/projects/library-editor/src/apps/content-updates/components/past-releases-header/PastReleasesHeaderComponent.d.ts +24 -0
- package/dist/projects/library-editor/src/apps/content-updates/components/video-group-list/VideoGroupListComponent.d.ts +37 -0
- package/dist/projects/library-editor/src/apps/content-updates/models/Subject.d.ts +3 -0
- package/dist/projects/library-editor/src/apps/content-updates/models/VideoGroup.d.ts +7 -0
- package/dist/projects/library-editor/src/apps/content-updates/services/ContentUpdatesDataService.d.ts +18 -0
- package/dist/projects/library-editor/src/apps/content-updates/utils/ContentUpdatesHelper.d.ts +7 -0
- package/dist/projects/library-editor/src/apps/content-updates/views/add-to-library/AddToLibraryView.d.ts +47 -0
- package/dist/projects/library-editor/src/apps/content-updates/views/awaiting-review/AwaitingReviewView.d.ts +36 -0
- package/dist/projects/library-editor/src/apps/content-updates/views/disable-review/DisableReviewView.d.ts +26 -0
- package/dist/projects/library-editor/src/apps/content-updates/views/generate-past-releases-pdf/GeneratePastReleasesPdfView.d.ts +41 -0
- package/dist/projects/library-editor/src/apps/content-updates/views/past-releases/PastReleasesView.d.ts +55 -0
- package/dist/projects/library-editor/src/apps/dashboard/DashboardApplication.d.ts +9 -0
- package/dist/projects/library-editor/src/apps/dashboard/components/dashboard-action-tile/DashboardActionTileComponent.d.ts +20 -0
- package/dist/projects/library-editor/src/apps/dashboard/components/dashboard-info-tile/DashboardInfoTileComponent.d.ts +7 -0
- package/dist/projects/library-editor/src/apps/dashboard/components/dashboard-notifications/DashboardNotificationsComponents.d.ts +15 -0
- package/dist/projects/library-editor/src/apps/dashboard/components/dashboard-tile-container/DashboardTileContainerComponent.d.ts +11 -0
- package/dist/projects/library-editor/src/apps/dashboard/components/dashboard-tile-list/DashboardTileListComponent.d.ts +14 -0
- package/dist/projects/library-editor/src/apps/dashboard/views/DashboardView.d.ts +38 -0
- package/dist/projects/library-editor/src/apps/default/DefaultApplication.d.ts +21 -0
- package/dist/projects/library-editor/src/apps/default/views/dev-error/DevErrorView.d.ts +11 -0
- package/dist/projects/library-editor/src/apps/default/views/error-view/ErrorView.d.ts +12 -0
- package/dist/projects/library-editor/src/apps/default/views/not-found/NotFoundView.d.ts +11 -0
- package/dist/projects/library-editor/src/apps/index.d.ts +16 -0
- package/dist/projects/library-editor/src/apps/library-editor/LibraryEditorApplication.d.ts +46 -0
- package/dist/projects/library-editor/src/apps/library-editor/behaviors/draggable-folder/DraggableFolderBehavior.d.ts +9 -0
- package/dist/projects/library-editor/src/apps/library-editor/behaviors/draggable-video/DraggableVideoBehavior.d.ts +24 -0
- package/dist/projects/library-editor/src/apps/library-editor/behaviors/droppable/DroppableBehavior.d.ts +19 -0
- package/dist/projects/library-editor/src/apps/library-editor/behaviors/shared/DraggableItemComponent.d.ts +15 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/add-links/AddLinksComponent.d.ts +31 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/banner/BannerComponent.d.ts +19 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/chapter-form/ChapterFormComponent.d.ts +66 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/chapter-list/ChapterComponentCollection.d.ts +25 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/chapter-list/ChapterItemComponent.d.ts +37 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/chapters/ChaptersComponent.d.ts +21 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/concatenate-request/ConcatenateRequestComponent.d.ts +24 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/customer-logo/CustomerLogoComponent.d.ts +19 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/edit-image/EditImageComponent.d.ts +28 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/edit-images-wrapper/EditImagesWrapperComponent.d.ts +24 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/edit-links/LinkItemComponent.d.ts +16 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/edit-links/VideoLinksComponent.d.ts +23 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/edit-thumbnail/EditThumbnailComponent.d.ts +22 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/edit-video/EditVideoDetailsComponent.d.ts +48 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/edit-video-tabs/EditVideoTabsComponent.d.ts +24 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/expandable-tag-list/ExpandableTagListComponent.d.ts +26 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/file-select/FileSelectComponent.d.ts +30 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/file-uploads/FileUploadComponent.d.ts +15 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/file-uploads/FileUploadsComponentCollection.d.ts +13 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/folder-actions/FolderActionsDropdownComponent.d.ts +18 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/folder-details/FolderDetailsComponent.d.ts +35 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/folder-select/FolderSelectComponent.d.ts +41 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/language-select/LanguageSelectComponent.d.ts +28 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/language-select/LanguageSelectTypeaheadHelper.d.ts +7 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/left-nav-libraries/LeftNavLibrariesComponent.d.ts +45 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/library-actions/LibraryActionsComponent.d.ts +26 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/library-folders/LibraryFolderListComponent.d.ts +31 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/library-select/LibrarySelectComponent.d.ts +27 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/save/SaveComponent.d.ts +33 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/sort-select/SortSelectComponent.d.ts +29 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/sub-folders/SubFolderComponent.d.ts +15 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/sub-folders/SubFoldersComponent.d.ts +9 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/suggest-edit/SuggestEditComponent.d.ts +31 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/tag-list/TagComponentCollection.d.ts +21 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/tag-list/TagItemComponent.d.ts +28 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/tags/TagsComponent.d.ts +30 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/video-collection-actions/VideoCollectionActionsComponent.d.ts +24 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/video-header/VideoHeaderComponent.d.ts +23 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/video-list-header/VideoListHeaderComponent.d.ts +34 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/video-resources/ResourceItemComponent.d.ts +22 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/video-resources/VideoResourcesComponent.d.ts +44 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/video-sidebar-info/VideoSidebarInfoComponent.d.ts +26 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/video-subtitles/SubtitleItemComponent.d.ts +18 -0
- package/dist/projects/library-editor/src/apps/library-editor/components/video-subtitles/VideoSubtitlesComponent.d.ts +26 -0
- package/dist/projects/library-editor/src/apps/library-editor/constants/VideoCollectionTypes.d.ts +3 -0
- package/dist/projects/library-editor/src/apps/library-editor/errors/folder-empty/FolderEmptyError.d.ts +8 -0
- package/dist/projects/library-editor/src/apps/library-editor/errors/folder-max-depth/FolderMaxDepthError.d.ts +7 -0
- package/dist/projects/library-editor/src/apps/library-editor/errors/folder-not-empty/FolderNotEmptyError.d.ts +7 -0
- package/dist/projects/library-editor/src/apps/library-editor/errors/folder-not-found/FolderNotFound.d.ts +6 -0
- package/dist/projects/library-editor/src/apps/library-editor/errors/forbidden-folder/ForbiddenFolderError.d.ts +6 -0
- package/dist/projects/library-editor/src/apps/library-editor/errors/forbidden-video/ForbiddenVideoError.d.ts +6 -0
- package/dist/projects/library-editor/src/apps/library-editor/errors/image-dimensions-too-small/ImageDimensionsTooSmallError.d.ts +9 -0
- package/dist/projects/library-editor/src/apps/library-editor/errors/library-has-subscribers/LibraryHasSubscribersError.d.ts +7 -0
- package/dist/projects/library-editor/src/apps/library-editor/errors/library-not-empty/LibraryNotEmptyError.d.ts +7 -0
- package/dist/projects/library-editor/src/apps/library-editor/errors/max-custom-libraries/MaxCustomLibrariesError.d.ts +9 -0
- package/dist/projects/library-editor/src/apps/library-editor/errors/series-not-found/SeriesNotFoundError.d.ts +6 -0
- package/dist/projects/library-editor/src/apps/library-editor/errors/too-many-resources/TooManyResourcesError.d.ts +8 -0
- package/dist/projects/library-editor/src/apps/library-editor/errors/too-many-subtitles/TooManySubtitlesError.d.ts +8 -0
- package/dist/projects/library-editor/src/apps/library-editor/errors/video-not-found/VideoNotFoundError.d.ts +6 -0
- package/dist/projects/library-editor/src/apps/library-editor/errors/video-write-permission/VideoWritePermissionError.d.ts +6 -0
- package/dist/projects/library-editor/src/apps/library-editor/models/ChapterConcatenateRequest.d.ts +3 -0
- package/dist/projects/library-editor/src/apps/library-editor/services/ChapterDataService.d.ts +15 -0
- package/dist/projects/library-editor/src/apps/library-editor/services/CompanyDataService.d.ts +7 -0
- package/dist/projects/library-editor/src/apps/library-editor/services/ExportDataService.d.ts +11 -0
- package/dist/projects/library-editor/src/apps/library-editor/services/FieldsDataService.d.ts +12 -0
- package/dist/projects/library-editor/src/apps/library-editor/services/FolderDragDropService.d.ts +27 -0
- package/dist/projects/library-editor/src/apps/library-editor/services/LibraryDataService.d.ts +65 -0
- package/dist/projects/library-editor/src/apps/library-editor/services/LinkDataService.d.ts +14 -0
- package/dist/projects/library-editor/src/apps/library-editor/services/PersonDataService.d.ts +7 -0
- package/dist/projects/library-editor/src/apps/library-editor/services/RatingsDataService.d.ts +7 -0
- package/dist/projects/library-editor/src/apps/library-editor/services/ResourceDataService.d.ts +13 -0
- package/dist/projects/library-editor/src/apps/library-editor/services/SeriesDataService.d.ts +16 -0
- package/dist/projects/library-editor/src/apps/library-editor/services/SubtitleDataService.d.ts +11 -0
- package/dist/projects/library-editor/src/apps/library-editor/services/TagDataService.d.ts +9 -0
- package/dist/projects/library-editor/src/apps/library-editor/services/VideoDataService.d.ts +45 -0
- package/dist/projects/library-editor/src/apps/library-editor/services/VideoDragDropService.d.ts +26 -0
- package/dist/projects/library-editor/src/apps/library-editor/utils/ChapterHelper.d.ts +18 -0
- package/dist/projects/library-editor/src/apps/library-editor/utils/EditVideoHelpers.d.ts +93 -0
- package/dist/projects/library-editor/src/apps/library-editor/utils/VideoDetailsHelper.d.ts +17 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/add-to-exchange/AddToExchangeView.d.ts +34 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/banner-upload/BannerUploadView.d.ts +32 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/delete-folder/DeleteFolderView.d.ts +28 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/delete-library/DeleteLibraryView.d.ts +23 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/delete-videos/DeleteVideosView.d.ts +29 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/edit-chapters/EditChaptersView.d.ts +71 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/edit-folder-images/EditFolderImagesView.d.ts +51 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/edit-library/RenameLibraryView.d.ts +29 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/edit-link/EditLinkView.d.ts +30 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/edit-resource/EditResourceView.d.ts +34 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/edit-resources/EditResourcesView.d.ts +92 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/edit-video/EditVideoView.d.ts +125 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/generate-pdf/GeneratePdfView.d.ts +35 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/left-navigation/LeftNavigationView.d.ts +33 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/library/LibraryView.d.ts +31 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/move-folder/MoveFolderView.d.ts +44 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/move-video/MoveVideoView.d.ts +50 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/new-folder/NewFolderView.d.ts +44 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/new-library/NewLibraryView.d.ts +26 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/no-library/NoLibraryView.d.ts +10 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/publish-library/PublishLibraryView.d.ts +19 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/rename-folder/RenameFolderView.d.ts +39 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/suggest-an-edit/SuggestAnEditView.d.ts +58 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/thumbnail-upload/ThumbnailUploadView.d.ts +34 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/video-collection/VideoCollectionView.d.ts +105 -0
- package/dist/projects/library-editor/src/apps/library-editor/views/video-details/VideoDetailsView.d.ts +44 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/MigrationWizardApplication.d.ts +45 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/collections/HomeFolderCollection.d.ts +6 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/collections/SmartSelectVideoCollection.d.ts +5 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/components/banner/BannerComponent.d.ts +18 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/components/empty-video-list/EmptyVideoListComponent.d.ts +14 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/components/errored-video-actions/ErroredVideoActionsComponent.d.ts +22 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/components/errored-video-footer/ErroredVideoFooterComponent.d.ts +21 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/components/errored-video-item/ErroredVideoItemComponent.d.ts +30 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/components/errored-video-list/ErroredVideoListComponent.d.ts +12 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/components/errored-video-metadata/ErroredVideoMetadataComponent.d.ts +8 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/components/errored-video-preview/ErroredVideoPreviewComponent.d.ts +17 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/components/generate-report/GenerateReportComponent.d.ts +25 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/components/generate-report-button/GenerateReportButtonComponent.d.ts +10 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/components/migration-video-item/MigrationVideoItemComponent.d.ts +30 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/components/progress-bar/ProgressBarComponent.d.ts +19 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/components/progress-circle/ProgressCircleComponent.d.ts +20 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/components/search-bar/SearchBarComponent.d.ts +19 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/components/selected-video-item/SelectedVideoItemComponent.d.ts +9 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/components/sorting-row/SortingRowComponent.d.ts +35 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/components/status-bar/StatusBarComponent.d.ts +28 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/components/video-list/VideoListCollection.d.ts +36 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/components/video-list-collection/VideoListCollectionComponent.d.ts +16 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/errors/already-migrated/AlreadyMigratedError.d.ts +6 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/errors/backup-progress/BackupProgressError.d.ts +8 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/errors/migration-finalisation/MigrationFinalisationError.d.ts +8 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/errors/migration-progress/MigrationProgressError.d.ts +8 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/errors/smart-migration-api-call/SmartMigrationApiCallError.d.ts +9 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/filters/MigrationFilters.d.ts +8 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/models/BackupToolBuild.d.ts +3 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/models/CustomerMetadata.d.ts +9 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/models/FinalisationTask.d.ts +3 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/models/HomeFolder.d.ts +8 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/models/MigrationOptions.d.ts +3 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/models/SelectedVideo.d.ts +3 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/models/SmartSelectVideo.d.ts +4 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/models/VideoCount.d.ts +3 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/services/FolderCacheService.d.ts +22 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/services/LocalOptionsService.d.ts +10 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/services/MigrationVideoDataService.d.ts +56 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/services/SelectedVideoService.d.ts +19 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/utils/FolderHelper.d.ts +8 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/utils/VideoHelper.d.ts +29 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/views/current-section-header/CurrentSectionHeaderView.d.ts +28 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/views/generate-csv-report/GenerateCsvReportView.d.ts +27 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/views/migration-error/MigrationErrorView.d.ts +40 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/views/migration-progress/MigrationProgressView.d.ts +32 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/views/publish-library-banner/PublishLibraryBannerView.d.ts +30 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/views/publish-library-complete/PublishLibraryCompleteView.d.ts +15 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/views/publish-library-progress/PublishLibraryProgressView.d.ts +18 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/views/publisher-backup/PublisherBackupView.d.ts +19 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/views/publisher-backup-complete/PublisherBackupCompleteView.d.ts +23 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/views/publisher-backup-progress/PublisherBackupProgressView.d.ts +23 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/views/publisher-backup-welcome/PublisherBackupWelcomeView.d.ts +19 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/views/remigrate-video/RemigrateVideoView.d.ts +32 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/views/selected-videos/SelectedVideosView.d.ts +32 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/views/show-video-popup/ShowPublisherVideoPopupView.d.ts +26 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/views/smart-migration/SmartMigrationView.d.ts +58 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/views/start/StartView.d.ts +40 -0
- package/dist/projects/library-editor/src/apps/migration-wizard/views/videos-added/VideosAddedView.d.ts +24 -0
- package/dist/projects/library-editor/src/apps/notifications/NotificationsApplication.d.ts +11 -0
- package/dist/projects/library-editor/src/apps/notifications/constants/NotificationsAppVariables.d.ts +8 -0
- package/dist/projects/library-editor/src/apps/notifications/utils/NotificationsHelper.d.ts +10 -0
- package/dist/projects/library-editor/src/apps/search/SearchApplication.d.ts +16 -0
- package/dist/projects/library-editor/src/apps/search/collections/FilterCollection.d.ts +9 -0
- package/dist/projects/library-editor/src/apps/search/collections/OptionCollection.d.ts +5 -0
- package/dist/projects/library-editor/src/apps/search/components/filters/FiltersComponent.d.ts +27 -0
- package/dist/projects/library-editor/src/apps/search/components/filters/filter-button-list/FilterButtonItemComponent.d.ts +37 -0
- package/dist/projects/library-editor/src/apps/search/components/filters/filter-button-list/FilterButtonListComponent.d.ts +19 -0
- package/dist/projects/library-editor/src/apps/search/components/filters/filter-list/FilterItemComponent.d.ts +17 -0
- package/dist/projects/library-editor/src/apps/search/components/filters/filter-list/FilterListComponent.d.ts +24 -0
- package/dist/projects/library-editor/src/apps/search/components/filters/filter-options/FilterOptionsComponent.d.ts +34 -0
- package/dist/projects/library-editor/src/apps/search/components/filters/filter-options/bool-filter-options/BoolFilterOptionsComponent.d.ts +15 -0
- package/dist/projects/library-editor/src/apps/search/components/filters/filter-options/duration-filter-options/DurationFilterOptionListComponent.d.ts +27 -0
- package/dist/projects/library-editor/src/apps/search/components/filters/filter-options/filter-option-list/FilterOptionItemComponent.d.ts +19 -0
- package/dist/projects/library-editor/src/apps/search/components/filters/filter-options/filter-option-list/FilterOptionsListComponent.d.ts +21 -0
- package/dist/projects/library-editor/src/apps/search/components/filters/filter-options/range-filter-options/RangeFilterOptionListComponent.d.ts +23 -0
- package/dist/projects/library-editor/src/apps/search/components/filters/filter-options/tag-filter-options/TagFilterOptionsComponent.d.ts +27 -0
- package/dist/projects/library-editor/src/apps/search/components/filters/filter-options/tag-filter-options/TagFilterOptionsListComponent.d.ts +19 -0
- package/dist/projects/library-editor/src/apps/search/components/filters/more-filters-button/MoreFiltersButtonComponent.d.ts +42 -0
- package/dist/projects/library-editor/src/apps/search/components/results/SearchResultsComponent.d.ts +22 -0
- package/dist/projects/library-editor/src/apps/search/components/search-header/SearchHeaderComponent.d.ts +11 -0
- package/dist/projects/library-editor/src/apps/search/models/Filter.d.ts +8 -0
- package/dist/projects/library-editor/src/apps/search/models/Option.d.ts +4 -0
- package/dist/projects/library-editor/src/apps/search/models/Query.d.ts +3 -0
- package/dist/projects/library-editor/src/apps/search/models/SearchAppVariables.d.ts +4 -0
- package/dist/projects/library-editor/src/apps/search/services/SearchDataService.d.ts +12 -0
- package/dist/projects/library-editor/src/apps/search/utils/SearchHelper.d.ts +11 -0
- package/dist/projects/library-editor/src/apps/search/views/search/SearchView.d.ts +57 -0
- package/dist/projects/library-editor/src/apps/staff-requests/StaffRequestsApplication.d.ts +15 -0
- package/dist/projects/library-editor/src/apps/staff-requests/collections/StaffRequestCollection.d.ts +5 -0
- package/dist/projects/library-editor/src/apps/staff-requests/collections/StaffRequestMessageCollection.d.ts +5 -0
- package/dist/projects/library-editor/src/apps/staff-requests/components/staff-request-actions/StaffRequestActionsComponent.d.ts +42 -0
- package/dist/projects/library-editor/src/apps/staff-requests/components/staff-request-details/StaffRequestDetailsComponent.d.ts +30 -0
- package/dist/projects/library-editor/src/apps/staff-requests/components/staff-request-list/StaffRequestListComponent.d.ts +29 -0
- package/dist/projects/library-editor/src/apps/staff-requests/models/StaffRequest.d.ts +18 -0
- package/dist/projects/library-editor/src/apps/staff-requests/models/StaffRequestMessage.d.ts +7 -0
- package/dist/projects/library-editor/src/apps/staff-requests/services/StaffRequestDataService.d.ts +14 -0
- package/dist/projects/library-editor/src/apps/staff-requests/views/approve-staff-request/ApproveStaffRequestView.d.ts +34 -0
- package/dist/projects/library-editor/src/apps/staff-requests/views/reject-staff-request/RejectStaffRequestView.d.ts +34 -0
- package/dist/projects/library-editor/src/apps/staff-requests/views/staff-requests/StaffRequestsView.d.ts +44 -0
- package/dist/projects/library-editor/src/apps/upload/UploadApplication.d.ts +23 -0
- package/dist/projects/library-editor/src/apps/upload/components/processing-progress/ProcessProgressComponentCollection.d.ts +38 -0
- package/dist/projects/library-editor/src/apps/upload/components/progress-info/ProgressInfoComponent.d.ts +10 -0
- package/dist/projects/library-editor/src/apps/upload/components/upload-actions/UploadActionsComponent.d.ts +21 -0
- package/dist/projects/library-editor/src/apps/upload/components/upload-folder-select/UploadFolderSelectComponent.d.ts +35 -0
- package/dist/projects/library-editor/src/apps/upload/components/upload-progress/UploadProgressComponent.d.ts +10 -0
- package/dist/projects/library-editor/src/apps/upload/components/upload-video/UploadVideoComponent.d.ts +47 -0
- package/dist/projects/library-editor/src/apps/upload/components/upload-video/UploadVideoComponentCollection.d.ts +19 -0
- package/dist/projects/library-editor/src/apps/upload/errors/no-libraries-upload/NoLibrariesUploadError.d.ts +7 -0
- package/dist/projects/library-editor/src/apps/upload/services/ImageUploadDataService.d.ts +8 -0
- package/dist/projects/library-editor/src/apps/upload/services/PendingItemsService.d.ts +7 -0
- package/dist/projects/library-editor/src/apps/upload/services/VideoUploadDataService.d.ts +17 -0
- package/dist/projects/library-editor/src/apps/upload/services/VideoUploadService.d.ts +8 -0
- package/dist/projects/library-editor/src/apps/upload/views/file-select/FileSelectView.d.ts +25 -0
- package/dist/projects/library-editor/src/apps/upload/views/progress-summary/ProgressSummaryView.d.ts +18 -0
- package/dist/projects/library-editor/src/apps/upload/views/upload-button/UploadButtonView.d.ts +26 -0
- package/dist/projects/library-editor/src/apps/upload/views/upload-complete/UploadCompleteView.d.ts +14 -0
- package/dist/projects/library-editor/src/apps/upload/views/upload-videos/UploadVideosView.d.ts +62 -0
- package/dist/projects/library-editor/src/apps/video-access/VideoAccessApplication.d.ts +12 -0
- package/dist/projects/library-editor/src/apps/video-access/views/restricted-video-list/RestrictedVideoListView.d.ts +34 -0
- package/dist/projects/library-editor/src/shared/alerts/VideoAlerts.d.ts +9 -0
- package/dist/projects/library-editor/src/shared/behaviors/backbone-validation/BackboneValidationBehavior.d.ts +14 -0
- package/dist/projects/library-editor/src/shared/behaviors/file-drop/FileDropBehavior.d.ts +19 -0
- package/dist/projects/library-editor/src/shared/behaviors/file-drop/FileDropMaskBehavior.d.ts +19 -0
- package/dist/projects/library-editor/src/shared/behaviors/file-select/FileSelectBehavior.d.ts +16 -0
- package/dist/projects/library-editor/src/shared/behaviors/image-select-behavior/ImageSelectBehavior.d.ts +23 -0
- package/dist/projects/library-editor/src/shared/behaviors/lazy-load/LazyLoadBehavior.d.ts +31 -0
- package/dist/projects/library-editor/src/shared/behaviors/lock-layout-file-drop/LockLayoutFileDropBehavior.d.ts +7 -0
- package/dist/projects/library-editor/src/shared/behaviors/popup/PopupBehavior.d.ts +65 -0
- package/dist/projects/library-editor/src/shared/behaviors/stickit/StickitBehavior.d.ts +6 -0
- package/dist/projects/library-editor/src/shared/collections/ChannelCollection.d.ts +6 -0
- package/dist/projects/library-editor/src/shared/collections/ChapterCollection.d.ts +7 -0
- package/dist/projects/library-editor/src/shared/collections/DirectorCollection.d.ts +6 -0
- package/dist/projects/library-editor/src/shared/collections/DistributorCollection.d.ts +6 -0
- package/dist/projects/library-editor/src/shared/collections/FieldsCollection.d.ts +5 -0
- package/dist/projects/library-editor/src/shared/collections/FolderCollection.d.ts +7 -0
- package/dist/projects/library-editor/src/shared/collections/InteractivesCollection.d.ts +6 -0
- package/dist/projects/library-editor/src/shared/collections/LibraryCollection.d.ts +7 -0
- package/dist/projects/library-editor/src/shared/collections/LinkCollection.d.ts +6 -0
- package/dist/projects/library-editor/src/shared/collections/LocalCacheDeviceCollection.d.ts +5 -0
- package/dist/projects/library-editor/src/shared/collections/LocalCacheDownloadCollection.d.ts +5 -0
- package/dist/projects/library-editor/src/shared/collections/MetadataCollection.d.ts +4 -0
- package/dist/projects/library-editor/src/shared/collections/ProducerCollection.d.ts +6 -0
- package/dist/projects/library-editor/src/shared/collections/ProductionCompanyCollection.d.ts +6 -0
- package/dist/projects/library-editor/src/shared/collections/RatingCollection.d.ts +4 -0
- package/dist/projects/library-editor/src/shared/collections/ResourceCollection.d.ts +6 -0
- package/dist/projects/library-editor/src/shared/collections/RestrictedObjectCollection.d.ts +5 -0
- package/dist/projects/library-editor/src/shared/collections/RestrictionCollection.d.ts +5 -0
- package/dist/projects/library-editor/src/shared/collections/SeasonCollection.d.ts +6 -0
- package/dist/projects/library-editor/src/shared/collections/SettingsCollection.d.ts +5 -0
- package/dist/projects/library-editor/src/shared/collections/SubtitleCollection.d.ts +6 -0
- package/dist/projects/library-editor/src/shared/collections/TagCollection.d.ts +6 -0
- package/dist/projects/library-editor/src/shared/collections/VideoCollection.d.ts +6 -0
- package/dist/projects/library-editor/src/shared/components/alert/AlertComponentCollection.d.ts +11 -0
- package/dist/projects/library-editor/src/shared/components/alert/AlertItemComponent.d.ts +44 -0
- package/dist/projects/library-editor/src/shared/components/breadcrumbs/BreadcrumbComponentCollection.d.ts +18 -0
- package/dist/projects/library-editor/src/shared/components/breadcrumbs/BreadcrumbsComponent.d.ts +27 -0
- package/dist/projects/library-editor/src/shared/components/bulk-video-actions/BulkVideoActionsComponent.d.ts +26 -0
- package/dist/projects/library-editor/src/shared/components/checkbox/BulkCheckboxComponent.d.ts +27 -0
- package/dist/projects/library-editor/src/shared/components/checkbox/CheckboxComponent.d.ts +25 -0
- package/dist/projects/library-editor/src/shared/components/clear-button/ClearButtonComponent.d.ts +18 -0
- package/dist/projects/library-editor/src/shared/components/date-picker/DatePickerComponent.d.ts +47 -0
- package/dist/projects/library-editor/src/shared/components/dialog/DialogView.d.ts +22 -0
- package/dist/projects/library-editor/src/shared/components/dropdown/DropdownButtonComponent.d.ts +36 -0
- package/dist/projects/library-editor/src/shared/components/dropdown/DropdownComponentCollection.d.ts +38 -0
- package/dist/projects/library-editor/src/shared/components/dropdown/DropdownItemComponent.d.ts +57 -0
- package/dist/projects/library-editor/src/shared/components/edit-video/edit-additional-info/EditAdditionalInfoComponent.d.ts +38 -0
- package/dist/projects/library-editor/src/shared/components/edit-video/edit-basic-info/EditBasicInfoComponent.d.ts +32 -0
- package/dist/projects/library-editor/src/shared/components/edit-video/edit-broadcast/EditBroadcastComponent.d.ts +22 -0
- package/dist/projects/library-editor/src/shared/components/edit-video/edit-broadcast/ToggleBroadcastComponent.d.ts +24 -0
- package/dist/projects/library-editor/src/shared/components/edit-video/edit-production-info/EditProductionInfoComponent.d.ts +61 -0
- package/dist/projects/library-editor/src/shared/components/edit-video/edit-season-info/EditSeasonInfoComponent.d.ts +33 -0
- package/dist/projects/library-editor/src/shared/components/edit-video/extra-info/ExtraInfoComponent.d.ts +16 -0
- package/dist/projects/library-editor/src/shared/components/edit-video/extra-info/ExtraInfoItemComponent.d.ts +17 -0
- package/dist/projects/library-editor/src/shared/components/edit-video/select-rating/SelectRatingCollectionComponent.d.ts +17 -0
- package/dist/projects/library-editor/src/shared/components/edit-video/select-rating/SelectRatingComponent.d.ts +40 -0
- package/dist/projects/library-editor/src/shared/components/edit-video/select-rating/SelectRatingItemComponent.d.ts +20 -0
- package/dist/projects/library-editor/src/shared/components/fields/FieldsComponent.d.ts +9 -0
- package/dist/projects/library-editor/src/shared/components/image-cropper/ImageCropperComponent.d.ts +34 -0
- package/dist/projects/library-editor/src/shared/components/left-nav/LeftNavComponent.d.ts +30 -0
- package/dist/projects/library-editor/src/shared/components/left-nav/LeftNavNodeComponent.d.ts +48 -0
- package/dist/projects/library-editor/src/shared/components/page-footer/PageFooterComponent.d.ts +15 -0
- package/dist/projects/library-editor/src/shared/components/page-header/PageHeaderComponent.d.ts +25 -0
- package/dist/projects/library-editor/src/shared/components/partial-loading/PartialLoadingComponent.d.ts +16 -0
- package/dist/projects/library-editor/src/shared/components/partial-loading/PartialLoadingComponentCollection.d.ts +20 -0
- package/dist/projects/library-editor/src/shared/components/resizing-text-area/ResizingTextAreaComponent.d.ts +23 -0
- package/dist/projects/library-editor/src/shared/components/select/SelectComponent.d.ts +54 -0
- package/dist/projects/library-editor/src/shared/components/spinner-button/SpinnerButtonComponent.d.ts +73 -0
- package/dist/projects/library-editor/src/shared/components/tabs/TabsComponent.d.ts +28 -0
- package/dist/projects/library-editor/src/shared/components/top-navigation/TopNavigationComponentCollection.d.ts +29 -0
- package/dist/projects/library-editor/src/shared/components/tree-dropdown/TreeDropdownComponent.d.ts +32 -0
- package/dist/projects/library-editor/src/shared/components/typeahead-input/SearchTypeaheadComponent.d.ts +74 -0
- package/dist/projects/library-editor/src/shared/components/typeahead-list/TypeaheadListComponent.d.ts +33 -0
- package/dist/projects/library-editor/src/shared/components/user-options-dropdown/UserOptionsDropdownComponent.d.ts +20 -0
- package/dist/projects/library-editor/src/shared/components/video-actions/VideoActionComponentCollection.d.ts +31 -0
- package/dist/projects/library-editor/src/shared/components/video-actions/VideoActionsComponent.d.ts +42 -0
- package/dist/projects/library-editor/src/shared/components/video-basic-info/VideoBasicInfoComponent.d.ts +33 -0
- package/dist/projects/library-editor/src/shared/components/video-description/VideoDescriptionComponent.d.ts +33 -0
- package/dist/projects/library-editor/src/shared/components/video-item/VideoItemComponent.d.ts +58 -0
- package/dist/projects/library-editor/src/shared/components/video-item/video-item-actions/base/VideoItemActionsComponent.d.ts +23 -0
- package/dist/projects/library-editor/src/shared/components/video-item/video-item-actions/video-item-processing-actions/VideoItemProcessingActionsComponent.d.ts +25 -0
- package/dist/projects/library-editor/src/shared/components/video-item/video-item-actions/video-item-review-actions/VideoItemReviewActionsComponent.d.ts +26 -0
- package/dist/projects/library-editor/src/shared/components/video-item/video-item-actions/video-item-video-access-actions/VideoItemVideoAccessActionsComponent.d.ts +22 -0
- package/dist/projects/library-editor/src/shared/components/video-item/video-item-metadata/base/VideoItemMetadataComponent.d.ts +24 -0
- package/dist/projects/library-editor/src/shared/components/video-item/video-item-metadata/video-item-awaiting-review-metadata/VideoItemAwaitingReviewMetadataComponent.d.ts +22 -0
- package/dist/projects/library-editor/src/shared/components/video-item/video-item-metadata/video-item-badges/VideoItemBadgesComponent.d.ts +20 -0
- package/dist/projects/library-editor/src/shared/components/video-item/video-item-metadata/video-item-past-releases-metadata/VideoItemPastReleasesMetadataComponent.d.ts +25 -0
- package/dist/projects/library-editor/src/shared/components/video-item/video-item-metadata/video-item-processing-metadata/VideoItemProcessingMetadataComponent.d.ts +19 -0
- package/dist/projects/library-editor/src/shared/components/video-item/video-item-metadata/video-item-search-metadata/VideoItemSearchMetadataComponent.d.ts +22 -0
- package/dist/projects/library-editor/src/shared/components/video-item/video-item-metadata/video-item-series/VideoItemSeriesComponent.d.ts +22 -0
- package/dist/projects/library-editor/src/shared/components/video-item/video-item-metadata/video-item-video-access-metadata/VideoItemVideoAccessMetadataComponent.d.ts +27 -0
- package/dist/projects/library-editor/src/shared/components/video-item/video-item-metadata/video-sources-metadata/VideoSourcesMetadataComponent.d.ts +22 -0
- package/dist/projects/library-editor/src/shared/components/video-item-preview/VideoItemPreviewComponent.d.ts +37 -0
- package/dist/projects/library-editor/src/shared/components/video-list/VideoListComponent.d.ts +44 -0
- package/dist/projects/library-editor/src/shared/components/video-preview/VideoPreviewComponent.d.ts +30 -0
- package/dist/projects/library-editor/src/shared/components/web-player/WebPlayerComponent.d.ts +53 -0
- package/dist/projects/library-editor/src/shared/constants/CacheDurations.d.ts +4 -0
- package/dist/projects/library-editor/src/shared/constants/Services.d.ts +62 -0
- package/dist/projects/library-editor/src/shared/constants/empty-state-components/EmptyStateComponents.d.ts +6 -0
- package/dist/projects/library-editor/src/shared/errors/authentication/AuthenticationError.d.ts +8 -0
- package/dist/projects/library-editor/src/shared/errors/customer-setting/CustomerSettingError.d.ts +8 -0
- package/dist/projects/library-editor/src/shared/errors/email-not-verified/EmailNotVerifiedError.d.ts +8 -0
- package/dist/projects/library-editor/src/shared/errors/forbidden-access/ForbiddenAccessError.d.ts +11 -0
- package/dist/projects/library-editor/src/shared/errors/local-cache-device-not-found/LocalCacheDeviceNotFoundError.d.ts +7 -0
- package/dist/projects/library-editor/src/shared/errors/no-beta-access/NoBetaAccessError.d.ts +8 -0
- package/dist/projects/library-editor/src/shared/errors/not-found/NotFoundError.d.ts +5 -0
- package/dist/projects/library-editor/src/shared/errors/old-version/OldVersionError.d.ts +8 -0
- package/dist/projects/library-editor/src/shared/errors/too-many-files/TooManyFilesError.d.ts +7 -0
- package/dist/projects/library-editor/src/shared/filters/BetaAccessFilter.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/filters/CustomerSettingsFilter.d.ts +8 -0
- package/dist/projects/library-editor/src/shared/filters/RoleFilter.d.ts +4 -0
- package/dist/projects/library-editor/src/shared/filters/VerifiedEmailFilter.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/index.d.ts +9 -0
- package/dist/projects/library-editor/src/shared/interfaces/LibraryFoldersIdentifier.d.ts +5 -0
- package/dist/projects/library-editor/src/shared/interfaces/RecentVideoCollectionIdentifier.d.ts +20 -0
- package/dist/projects/library-editor/src/shared/interfaces/RecentVideoSubjectCollectionIdentifier.d.ts +16 -0
- package/dist/projects/library-editor/src/shared/interfaces/VideoCollectionIdentifier.d.ts +5 -0
- package/dist/projects/library-editor/src/shared/layouts/manage-layout/ManageLayoutView.d.ts +47 -0
- package/dist/projects/library-editor/src/shared/models/Avatar.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/Banner.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/Channel.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/Chapter.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/Company.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/Config.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/Customer.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/Director.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/DisabledSpinnerModel.d.ts +5 -0
- package/dist/projects/library-editor/src/shared/models/Distributor.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/Folder.d.ts +14 -0
- package/dist/projects/library-editor/src/shared/models/Image.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/Interactives.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/LanguageConfig.d.ts +7 -0
- package/dist/projects/library-editor/src/shared/models/Library.d.ts +10 -0
- package/dist/projects/library-editor/src/shared/models/Link.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/LocalCacheDevice.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/LocalCacheDownload.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/Logo.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/Metadata.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/Owner.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/Person.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/Phrases.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/Playlist.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/Producer.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/ProductionCompany.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/Rating.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/Resource.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/RestrictedObject.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/Restriction.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/Season.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/Series.d.ts +7 -0
- package/dist/projects/library-editor/src/shared/models/Setting.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/SharedResource.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/Subtitle.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/Tag.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/Thumbnail.d.ts +3 -0
- package/dist/projects/library-editor/src/shared/models/User.d.ts +10 -0
- package/dist/projects/library-editor/src/shared/models/Video.d.ts +49 -0
- package/dist/projects/library-editor/src/shared/services/AlertService.d.ts +15 -0
- package/dist/projects/library-editor/src/shared/services/ConfigDataService.d.ts +23 -0
- package/dist/projects/library-editor/src/shared/services/CustomerDataService.d.ts +7 -0
- package/dist/projects/library-editor/src/shared/services/DownloadProxyDataServices.d.ts +8 -0
- package/dist/projects/library-editor/src/shared/services/IntercomService.d.ts +6 -0
- package/dist/projects/library-editor/src/shared/services/LocalCacheDataService.d.ts +12 -0
- package/dist/projects/library-editor/src/shared/services/NavigationLockService.d.ts +16 -0
- package/dist/projects/library-editor/src/shared/services/PageTitleService.d.ts +8 -0
- package/dist/projects/library-editor/src/shared/services/PageVisibilityService.d.ts +14 -0
- package/dist/projects/library-editor/src/shared/services/PartialLoadingService.d.ts +10 -0
- package/dist/projects/library-editor/src/shared/services/RestrictedVideoDataService.d.ts +15 -0
- package/dist/projects/library-editor/src/shared/services/SettingsDataService.d.ts +12 -0
- package/dist/projects/library-editor/src/shared/services/UserDataService.d.ts +20 -0
- package/dist/projects/library-editor/src/shared/services/VideoMixinService.d.ts +18 -0
- package/dist/projects/library-editor/src/shared/utils/BulkCheckboxHelper.d.ts +18 -0
- package/dist/projects/library-editor/src/shared/utils/CancelProcessingHelper.d.ts +4 -0
- package/dist/projects/library-editor/src/shared/utils/CollectionHelper.d.ts +10 -0
- package/dist/projects/library-editor/src/shared/utils/DialogHelper.d.ts +9 -0
- package/dist/projects/library-editor/src/shared/utils/DurationHelper.d.ts +7 -0
- package/dist/projects/library-editor/src/shared/utils/FolderTreeHelpers.d.ts +36 -0
- package/dist/projects/library-editor/src/shared/utils/ImageHelper.d.ts +32 -0
- package/dist/projects/library-editor/src/shared/utils/LocalCacheHelper.d.ts +7 -0
- package/dist/projects/library-editor/src/shared/utils/PartialLoadingHelper.d.ts +6 -0
- package/dist/projects/library-editor/src/shared/utils/PermissionsHelper.d.ts +13 -0
- package/dist/projects/library-editor/src/shared/utils/RatingHelper.d.ts +6 -0
- package/dist/projects/library-editor/src/shared/utils/RestrictedAccessHelper.d.ts +13 -0
- package/dist/projects/library-editor/src/shared/utils/SortHelper.d.ts +16 -0
- package/dist/projects/library-editor/src/shared/utils/TabHelper.d.ts +9 -0
- package/dist/projects/library-editor/src/shared/utils/VideoHelper.d.ts +11 -0
- package/dist/projects/library-editor/src/shared/utils/search/RawSearchHelper.d.ts +25 -0
- package/dist/projects/library-editor/src/shared/views/download-to-local-cache/DownloadToLocalCacheView.d.ts +28 -0
- package/dist/projects/library-editor/src/shared/views/download-video/DownloadVideoView.d.ts +19 -0
- package/dist/projects/library-editor/src/shared/views/restrict-access/RestrictAccessComponent.d.ts +7 -0
- package/dist/projects/library-editor/src/shared/views/restrict-access/RestrictAccessGroupComponent.d.ts +24 -0
- package/dist/projects/library-editor/src/shared/views/restrict-access/RestrictAccessView.d.ts +67 -0
- package/dist/projects/library-editor/src/shared/views/share/ShareView.d.ts +48 -0
- package/dist/projects/library-editor/src/shared/views/top-navigation/TopNavigationView.d.ts +35 -0
- package/dist/projects/library-editor/src/shared/views/user-options/UserOptionsView.d.ts +18 -0
- package/dist/projects/library-editor/src/startup/ConsoleOutput.d.ts +3 -0
- package/dist/projects/library-editor/src/startup/RegisterAjaxMiddleware.d.ts +3 -0
- package/dist/projects/library-editor/src/startup/RegisterAnalytics.d.ts +3 -0
- package/dist/projects/library-editor/src/startup/RegisterApplicationVariables.d.ts +3 -0
- package/dist/projects/library-editor/src/startup/RegisterApplications.d.ts +3 -0
- package/dist/projects/library-editor/src/startup/RegisterCaches.d.ts +3 -0
- package/dist/projects/library-editor/src/startup/RegisterDataProviders.d.ts +3 -0
- package/dist/projects/library-editor/src/startup/RegisterDataServices.d.ts +3 -0
- package/dist/projects/library-editor/src/startup/RegisterErrorHandlers.d.ts +3 -0
- package/dist/projects/library-editor/src/startup/RegisterHandlebarsHelpers.d.ts +3 -0
- package/dist/projects/library-editor/src/startup/RegisterLayouts.d.ts +3 -0
- package/dist/projects/library-editor/src/startup/RegisterRuntimeEnvironment.d.ts +3 -0
- package/dist/projects/library-editor/src/startup/RegisterServices.d.ts +3 -0
- package/dist/projects/library-editor/src/startup/RegisterViewDataExtensions.d.ts +15 -0
- package/dist/projects/library-editor/src/startup/index.d.ts +14 -0
- package/dist/scripts/0-48b01028ea.chunk.js +1 -0
- package/dist/scripts/1-098c567081.chunk.js +1 -0
- package/dist/scripts/10-b4b24c05f8.chunk.js +1 -0
- package/dist/scripts/11-e79fc84dc9.chunk.js +11 -0
- package/dist/scripts/12-58284faf21.chunk.js +1 -0
- package/dist/scripts/13-2c4cd203ec.chunk.js +1 -0
- package/dist/scripts/14-2eeb73cd11.chunk.js +1 -0
- package/dist/scripts/15-6fa6f47a8b.chunk.js +1 -0
- package/dist/scripts/16-68c900303f.chunk.js +1 -0
- package/dist/scripts/17-af7eca54ed.chunk.js +1 -0
- package/dist/scripts/18-087b42c483.chunk.js +1 -0
- package/dist/scripts/2-c70309751f.chunk.js +1 -0
- package/dist/scripts/20-caf95bbe64.chunk.js +1 -0
- package/dist/scripts/21-5d5cda7f47.chunk.js +1 -0
- package/dist/scripts/22-f2b4962990.chunk.js +1 -0
- package/dist/scripts/23-d575c690b9.chunk.js +1 -0
- package/dist/scripts/24-dc5b027075.chunk.js +1 -0
- package/dist/scripts/25-956d1e9caf.chunk.js +1 -0
- package/dist/scripts/26-7a3d12d816.chunk.js +1 -0
- package/dist/scripts/27-dc6045c275.chunk.js +1 -0
- package/dist/scripts/28-e7ce349a42.chunk.js +1 -0
- package/dist/scripts/29-e281d8346a.chunk.js +1 -0
- package/dist/scripts/3-afb156ea3e.chunk.js +1 -0
- package/dist/scripts/30-d4b6c1cd1d.chunk.js +1 -0
- package/dist/scripts/31-c1d42342dd.chunk.js +1 -0
- package/dist/scripts/32-1b1e4c86f5.chunk.js +1 -0
- package/dist/scripts/33-7ef65d086d.chunk.js +1 -0
- package/dist/scripts/34-6d7e7405af.chunk.js +1 -0
- package/dist/scripts/35-7d7e41a203.chunk.js +1 -0
- package/dist/scripts/36-37f9fd0ad1.chunk.js +1 -0
- package/dist/scripts/37-06db9481cd.chunk.js +1 -0
- package/dist/scripts/38-528abd1bba.chunk.js +1 -0
- package/dist/scripts/39-80001e779c.chunk.js +1 -0
- package/dist/scripts/4-f8a4d0b62a.chunk.js +1 -0
- package/dist/scripts/40-d59ee7c3e1.chunk.js +1 -0
- package/dist/scripts/41-8c75d122fc.chunk.js +1 -0
- package/dist/scripts/42-a68ee26f34.chunk.js +1 -0
- package/dist/scripts/43-bde1af67cb.chunk.js +1 -0
- package/dist/scripts/44-abdd275e46.chunk.js +1 -0
- package/dist/scripts/45-6b745e57af.chunk.js +1 -0
- package/dist/scripts/46-bee29b02a3.chunk.js +1 -0
- package/dist/scripts/47-c142425de4.chunk.js +1 -0
- package/dist/scripts/48-81efa76f40.chunk.js +1 -0
- package/dist/scripts/49-cbd218d6e4.chunk.js +1 -0
- package/dist/scripts/5-1b6768e719.chunk.js +1 -0
- package/dist/scripts/50-ec2f179d8c.chunk.js +1 -0
- package/dist/scripts/51-9b91910fc0.chunk.js +1 -0
- package/dist/scripts/52-d2e93491a5.chunk.js +1 -0
- package/dist/scripts/53-1c8ff136ad.chunk.js +1 -0
- package/dist/scripts/54-34116d34e6.chunk.js +1 -0
- package/dist/scripts/55-02803101de.chunk.js +1 -0
- package/dist/scripts/56-19ec4b6ccd.chunk.js +1 -0
- package/dist/scripts/57-17e93c944c.chunk.js +1 -0
- package/dist/scripts/58-dd77463e63.chunk.js +1 -0
- package/dist/scripts/59-08e8830b9c.chunk.js +1 -0
- package/dist/scripts/6-e87b3c0be1.chunk.js +1 -0
- package/dist/scripts/60-720797bb78.chunk.js +1 -0
- package/dist/scripts/61-66e55ae6e1.chunk.js +1 -0
- package/dist/scripts/62-beb29b208b.chunk.js +1 -0
- package/dist/scripts/63-bbc787afe7.chunk.js +1 -0
- package/dist/scripts/64-b10c083c61.chunk.js +1 -0
- package/dist/scripts/65-40c1cc2f53.chunk.js +1 -0
- package/dist/scripts/66-32ae3ca73f.chunk.js +1 -0
- package/dist/scripts/67-1f082de6fd.chunk.js +1 -0
- package/dist/scripts/68-f53fbad25f.chunk.js +1 -0
- package/dist/scripts/69-984061e3b8.chunk.js +1 -0
- package/dist/scripts/7-7d12e809a2.chunk.js +1 -0
- package/dist/scripts/70-8edf7afb7b.chunk.js +1 -0
- package/dist/scripts/71-6365b9e3d4.chunk.js +1 -0
- package/dist/scripts/72-85505b2300.chunk.js +1 -0
- package/dist/scripts/8-76e9f1bbc7.chunk.js +1 -0
- package/dist/scripts/9-a04919dbb2.chunk.js +1 -0
- package/dist/scripts/bundle-f3260e8016.min.js +1 -0
- package/dist/scripts/bundles.json +3 -0
- package/package.json +99 -102
- package/typings/utils/globals.d.ts +1 -0
- package/dist/bundle.js +0 -11
- package/dist/library-editor-app.css +0 -312
- package/dist/src/apps/content-updates/ContentUpdatesApplication.d.ts +0 -18
- package/dist/src/apps/content-updates/collections/SubjectCollection.d.ts +0 -5
- package/dist/src/apps/content-updates/collections/VideoGroupCollection.d.ts +0 -5
- package/dist/src/apps/content-updates/components/awaiting-review-header/AwaitingReviewHeaderComponent.d.ts +0 -14
- package/dist/src/apps/content-updates/components/content-updates-header/ContentUpdatesHeaderComponent.d.ts +0 -19
- package/dist/src/apps/content-updates/components/content-updates-left-nav/ContentUpdatesLeftNavComponent.d.ts +0 -18
- package/dist/src/apps/content-updates/components/past-releases-filters/PastReleasesFiltersComponent.d.ts +0 -20
- package/dist/src/apps/content-updates/components/past-releases-header/PastReleasesHeaderComponent.d.ts +0 -24
- package/dist/src/apps/content-updates/components/video-group-list/VideoGroupListComponent.d.ts +0 -36
- package/dist/src/apps/content-updates/models/Subject.d.ts +0 -3
- package/dist/src/apps/content-updates/models/VideoGroup.d.ts +0 -7
- package/dist/src/apps/content-updates/services/ContentUpdatesDataService.d.ts +0 -17
- package/dist/src/apps/content-updates/utils/ContentUpdatesHelper.d.ts +0 -7
- package/dist/src/apps/content-updates/views/add-to-library/AddToLibraryView.d.ts +0 -47
- package/dist/src/apps/content-updates/views/awaiting-review/AwaitingReviewView.d.ts +0 -36
- package/dist/src/apps/content-updates/views/disable-review/DisableReviewView.d.ts +0 -26
- package/dist/src/apps/content-updates/views/generate-past-releases-pdf/GeneratePastReleasesPdfView.d.ts +0 -41
- package/dist/src/apps/content-updates/views/index.d.ts +0 -5
- package/dist/src/apps/content-updates/views/past-releases/PastReleasesView.d.ts +0 -55
- package/dist/src/apps/dashboard/DashboardApplication.d.ts +0 -9
- package/dist/src/apps/dashboard/components/dashboard-action-tile/DashboardActionTileComponent.d.ts +0 -20
- package/dist/src/apps/dashboard/components/dashboard-info-tile/DashboardInfoTileComponent.d.ts +0 -7
- package/dist/src/apps/dashboard/components/dashboard-notifications/DashboardNotificationsComponents.d.ts +0 -15
- package/dist/src/apps/dashboard/components/dashboard-tile-container/DashboardTileContainerComponent.d.ts +0 -11
- package/dist/src/apps/dashboard/components/dashboard-tile-list/DashboardTileListComponent.d.ts +0 -14
- package/dist/src/apps/dashboard/views/DashboardView.d.ts +0 -38
- package/dist/src/apps/default/DefaultApplication.d.ts +0 -21
- package/dist/src/apps/default/views/dev-error/DevErrorView.d.ts +0 -11
- package/dist/src/apps/default/views/error-view/ErrorView.d.ts +0 -12
- package/dist/src/apps/default/views/not-found/NotFoundView.d.ts +0 -11
- package/dist/src/apps/index.d.ts +0 -18
- package/dist/src/apps/library-editor/LibraryEditorApplication.d.ts +0 -46
- package/dist/src/apps/library-editor/behaviors/draggable-folder/DraggableFolderBehavior.d.ts +0 -9
- package/dist/src/apps/library-editor/behaviors/draggable-video/DraggableVideoBehavior.d.ts +0 -24
- package/dist/src/apps/library-editor/behaviors/droppable/DroppableBehavior.d.ts +0 -19
- package/dist/src/apps/library-editor/behaviors/shared/DraggableItemComponent.d.ts +0 -15
- package/dist/src/apps/library-editor/components/add-links/AddLinksComponent.d.ts +0 -31
- package/dist/src/apps/library-editor/components/banner/BannerComponent.d.ts +0 -19
- package/dist/src/apps/library-editor/components/chapter-form/ChapterFormComponent.d.ts +0 -66
- package/dist/src/apps/library-editor/components/chapter-list/ChapterComponentCollection.d.ts +0 -25
- package/dist/src/apps/library-editor/components/chapter-list/ChapterItemComponent.d.ts +0 -37
- package/dist/src/apps/library-editor/components/chapters/ChaptersComponent.d.ts +0 -21
- package/dist/src/apps/library-editor/components/concatenate-request/ConcatenateRequestComponent.d.ts +0 -24
- package/dist/src/apps/library-editor/components/customer-logo/CustomerLogoComponent.d.ts +0 -19
- package/dist/src/apps/library-editor/components/edit-image/EditImageComponent.d.ts +0 -27
- package/dist/src/apps/library-editor/components/edit-images-wrapper/EditImagesWrapperComponent.d.ts +0 -23
- package/dist/src/apps/library-editor/components/edit-links/LinkItemComponent.d.ts +0 -16
- package/dist/src/apps/library-editor/components/edit-links/VideoLinksComponent.d.ts +0 -23
- package/dist/src/apps/library-editor/components/edit-thumbnail/EditThumbnailComponent.d.ts +0 -22
- package/dist/src/apps/library-editor/components/edit-video/EditVideoDetailsComponent.d.ts +0 -45
- package/dist/src/apps/library-editor/components/edit-video-tabs/EditVideoTabsComponent.d.ts +0 -24
- package/dist/src/apps/library-editor/components/expandable-tag-list/ExpandableTagListComponent.d.ts +0 -26
- package/dist/src/apps/library-editor/components/file-select/FileSelectComponent.d.ts +0 -30
- package/dist/src/apps/library-editor/components/file-uploads/FileUploadComponent.d.ts +0 -15
- package/dist/src/apps/library-editor/components/file-uploads/FileUploadsComponentCollection.d.ts +0 -13
- package/dist/src/apps/library-editor/components/folder-actions/FolderActionsDropdownComponent.d.ts +0 -18
- package/dist/src/apps/library-editor/components/folder-details/FolderDetailsComponent.d.ts +0 -34
- package/dist/src/apps/library-editor/components/folder-select/FolderSelectComponent.d.ts +0 -41
- package/dist/src/apps/library-editor/components/index.d.ts +0 -38
- package/dist/src/apps/library-editor/components/language-select/LanguageSelectComponent.d.ts +0 -28
- package/dist/src/apps/library-editor/components/language-select/LanguageSelectTypeaheadHelper.d.ts +0 -7
- package/dist/src/apps/library-editor/components/left-nav-libraries/LeftNavLibrariesComponent.d.ts +0 -45
- package/dist/src/apps/library-editor/components/library-actions/LibraryActionsComponent.d.ts +0 -26
- package/dist/src/apps/library-editor/components/library-folders/LibraryFolderListComponent.d.ts +0 -31
- package/dist/src/apps/library-editor/components/library-select/LibrarySelectComponent.d.ts +0 -27
- package/dist/src/apps/library-editor/components/save/SaveComponent.d.ts +0 -32
- package/dist/src/apps/library-editor/components/sort-select/SortSelectComponent.d.ts +0 -29
- package/dist/src/apps/library-editor/components/sub-folders/SubFolderComponent.d.ts +0 -15
- package/dist/src/apps/library-editor/components/sub-folders/SubFoldersComponent.d.ts +0 -9
- package/dist/src/apps/library-editor/components/suggest-edit/SuggestEditComponent.d.ts +0 -31
- package/dist/src/apps/library-editor/components/tag-list/TagComponentCollection.d.ts +0 -21
- package/dist/src/apps/library-editor/components/tag-list/TagItemComponent.d.ts +0 -28
- package/dist/src/apps/library-editor/components/tags/TagsComponent.d.ts +0 -30
- package/dist/src/apps/library-editor/components/video-collection-actions/VideoCollectionActionsComponent.d.ts +0 -24
- package/dist/src/apps/library-editor/components/video-header/VideoHeaderComponent.d.ts +0 -22
- package/dist/src/apps/library-editor/components/video-list-header/VideoListHeaderComponent.d.ts +0 -34
- package/dist/src/apps/library-editor/components/video-resources/ResourceItemComponent.d.ts +0 -22
- package/dist/src/apps/library-editor/components/video-resources/VideoResourcesComponent.d.ts +0 -44
- package/dist/src/apps/library-editor/components/video-sidebar-info/VideoSidebarInfoComponent.d.ts +0 -25
- package/dist/src/apps/library-editor/components/video-subtitles/SubtitleItemComponent.d.ts +0 -18
- package/dist/src/apps/library-editor/components/video-subtitles/VideoSubtitlesComponent.d.ts +0 -26
- package/dist/src/apps/library-editor/constants/VideoCollectionTypes.d.ts +0 -2
- package/dist/src/apps/library-editor/errors/folder-empty/FolderEmptyError.d.ts +0 -8
- package/dist/src/apps/library-editor/errors/folder-max-depth/FolderMaxDepthError.d.ts +0 -7
- package/dist/src/apps/library-editor/errors/folder-not-empty/FolderNotEmptyError.d.ts +0 -7
- package/dist/src/apps/library-editor/errors/folder-not-found/FolderNotFound.d.ts +0 -6
- package/dist/src/apps/library-editor/errors/forbidden-folder/ForbiddenFolderError.d.ts +0 -6
- package/dist/src/apps/library-editor/errors/forbidden-video/ForbiddenVideoError.d.ts +0 -6
- package/dist/src/apps/library-editor/errors/image-dimensions-too-small/ImageDimensionsTooSmallError.d.ts +0 -9
- package/dist/src/apps/library-editor/errors/library-has-subscribers/LibraryHasSubscribersError.d.ts +0 -7
- package/dist/src/apps/library-editor/errors/library-not-empty/LibraryNotEmptyError.d.ts +0 -7
- package/dist/src/apps/library-editor/errors/max-custom-libraries/MaxCustomLibrariesError.d.ts +0 -9
- package/dist/src/apps/library-editor/errors/series-not-found/SeriesNotFoundError.d.ts +0 -6
- package/dist/src/apps/library-editor/errors/too-many-resources/TooManyResourcesError.d.ts +0 -8
- package/dist/src/apps/library-editor/errors/too-many-subtitles/TooManySubtitlesError.d.ts +0 -8
- package/dist/src/apps/library-editor/errors/video-not-found/VideoNotFoundError.d.ts +0 -6
- package/dist/src/apps/library-editor/errors/video-write-permission/VideoWritePermissionError.d.ts +0 -6
- package/dist/src/apps/library-editor/models/ChapterConcatenateRequest.d.ts +0 -3
- package/dist/src/apps/library-editor/services/ChapterDataService.d.ts +0 -15
- package/dist/src/apps/library-editor/services/CompanyDataService.d.ts +0 -7
- package/dist/src/apps/library-editor/services/ExportDataService.d.ts +0 -11
- package/dist/src/apps/library-editor/services/FieldsDataService.d.ts +0 -11
- package/dist/src/apps/library-editor/services/FolderDragDropService.d.ts +0 -27
- package/dist/src/apps/library-editor/services/LibraryDataService.d.ts +0 -61
- package/dist/src/apps/library-editor/services/LinkDataService.d.ts +0 -14
- package/dist/src/apps/library-editor/services/PersonDataService.d.ts +0 -7
- package/dist/src/apps/library-editor/services/RatingsDataService.d.ts +0 -7
- package/dist/src/apps/library-editor/services/ResourceDataService.d.ts +0 -13
- package/dist/src/apps/library-editor/services/SeriesDataService.d.ts +0 -15
- package/dist/src/apps/library-editor/services/SubtitleDataService.d.ts +0 -11
- package/dist/src/apps/library-editor/services/TagDataService.d.ts +0 -9
- package/dist/src/apps/library-editor/services/VideoDataService.d.ts +0 -39
- package/dist/src/apps/library-editor/services/VideoDragDropService.d.ts +0 -26
- package/dist/src/apps/library-editor/services/index.d.ts +0 -15
- package/dist/src/apps/library-editor/utils/ChapterHelper.d.ts +0 -18
- package/dist/src/apps/library-editor/utils/EditVideoHelpers.d.ts +0 -93
- package/dist/src/apps/library-editor/utils/VideoDetailsHelper.d.ts +0 -16
- package/dist/src/apps/library-editor/views/add-to-exchange/AddToExchangeView.d.ts +0 -34
- package/dist/src/apps/library-editor/views/banner-upload/BannerUploadView.d.ts +0 -32
- package/dist/src/apps/library-editor/views/delete-folder/DeleteFolderView.d.ts +0 -28
- package/dist/src/apps/library-editor/views/delete-library/DeleteLibraryView.d.ts +0 -23
- package/dist/src/apps/library-editor/views/delete-videos/DeleteVideosView.d.ts +0 -29
- package/dist/src/apps/library-editor/views/edit-chapters/EditChaptersView.d.ts +0 -71
- package/dist/src/apps/library-editor/views/edit-folder-images/EditFolderImagesView.d.ts +0 -50
- package/dist/src/apps/library-editor/views/edit-library/RenameLibraryView.d.ts +0 -29
- package/dist/src/apps/library-editor/views/edit-link/EditLinkView.d.ts +0 -30
- package/dist/src/apps/library-editor/views/edit-resource/EditResourceView.d.ts +0 -34
- package/dist/src/apps/library-editor/views/edit-resources/EditResourcesView.d.ts +0 -92
- package/dist/src/apps/library-editor/views/edit-video/EditVideoView.d.ts +0 -125
- package/dist/src/apps/library-editor/views/generate-pdf/GeneratePdfView.d.ts +0 -35
- package/dist/src/apps/library-editor/views/left-navigation/LeftNavigationView.d.ts +0 -33
- package/dist/src/apps/library-editor/views/library/LibraryView.d.ts +0 -31
- package/dist/src/apps/library-editor/views/move-folder/MoveFolderView.d.ts +0 -44
- package/dist/src/apps/library-editor/views/move-video/MoveVideoView.d.ts +0 -49
- package/dist/src/apps/library-editor/views/new-folder/NewFolderView.d.ts +0 -44
- package/dist/src/apps/library-editor/views/new-library/NewLibraryView.d.ts +0 -26
- package/dist/src/apps/library-editor/views/no-library/NoLibraryView.d.ts +0 -10
- package/dist/src/apps/library-editor/views/publish-library/PublishLibraryView.d.ts +0 -19
- package/dist/src/apps/library-editor/views/rename-folder/RenameFolderView.d.ts +0 -39
- package/dist/src/apps/library-editor/views/suggest-an-edit/SuggestAnEditView.d.ts +0 -58
- package/dist/src/apps/library-editor/views/thumbnail-upload/ThumbnailUploadView.d.ts +0 -33
- package/dist/src/apps/library-editor/views/video-collection/VideoCollectionView.d.ts +0 -101
- package/dist/src/apps/library-editor/views/video-details/VideoDetailsView.d.ts +0 -44
- package/dist/src/apps/migration-wizard/MigrationWizardApplication.d.ts +0 -45
- package/dist/src/apps/migration-wizard/collections/HomeFolderCollection.d.ts +0 -6
- package/dist/src/apps/migration-wizard/collections/SmartSelectVideoCollection.d.ts +0 -5
- package/dist/src/apps/migration-wizard/components/banner/BannerComponent.d.ts +0 -18
- package/dist/src/apps/migration-wizard/components/empty-video-list/EmptyVideoListComponent.d.ts +0 -14
- package/dist/src/apps/migration-wizard/components/errored-video-actions/ErroredVideoActionsComponent.d.ts +0 -22
- package/dist/src/apps/migration-wizard/components/errored-video-footer/ErroredVideoFooterComponent.d.ts +0 -21
- package/dist/src/apps/migration-wizard/components/errored-video-item/ErroredVideoItemComponent.d.ts +0 -30
- package/dist/src/apps/migration-wizard/components/errored-video-list/ErroredVideoListComponent.d.ts +0 -12
- package/dist/src/apps/migration-wizard/components/errored-video-metadata/ErroredVideoMetadataComponent.d.ts +0 -8
- package/dist/src/apps/migration-wizard/components/errored-video-preview/ErroredVideoPreviewComponent.d.ts +0 -17
- package/dist/src/apps/migration-wizard/components/generate-report/GenerateReportComponent.d.ts +0 -25
- package/dist/src/apps/migration-wizard/components/generate-report-button/GenerateReportButtonComponent.d.ts +0 -10
- package/dist/src/apps/migration-wizard/components/migration-video-item/MigrationVideoItemComponent.d.ts +0 -30
- package/dist/src/apps/migration-wizard/components/progress-bar/ProgressBarComponent.d.ts +0 -19
- package/dist/src/apps/migration-wizard/components/progress-circle/ProgressCircleComponent.d.ts +0 -20
- package/dist/src/apps/migration-wizard/components/search-bar/SearchBarComponent.d.ts +0 -19
- package/dist/src/apps/migration-wizard/components/selected-video-item/SelectedVideoItemComponent.d.ts +0 -9
- package/dist/src/apps/migration-wizard/components/sorting-row/SortingRowComponent.d.ts +0 -35
- package/dist/src/apps/migration-wizard/components/status-bar/StatusBarComponent.d.ts +0 -28
- package/dist/src/apps/migration-wizard/components/video-list/VideoListCollection.d.ts +0 -36
- package/dist/src/apps/migration-wizard/components/video-list-collection/VideoListCollectionComponent.d.ts +0 -16
- package/dist/src/apps/migration-wizard/errors/already-migrated/AlreadyMigratedError.d.ts +0 -6
- package/dist/src/apps/migration-wizard/errors/backup-progress/BackupProgressError.d.ts +0 -8
- package/dist/src/apps/migration-wizard/errors/migration-finalisation/MigrationFinalisationError.d.ts +0 -8
- package/dist/src/apps/migration-wizard/errors/migration-progress/MigrationProgressError.d.ts +0 -8
- package/dist/src/apps/migration-wizard/errors/smart-migration-api-call/SmartMigrationApiCallError.d.ts +0 -9
- package/dist/src/apps/migration-wizard/filters/MigrationFilters.d.ts +0 -8
- package/dist/src/apps/migration-wizard/models/BackupToolBuild.d.ts +0 -3
- package/dist/src/apps/migration-wizard/models/CustomerMetadata.d.ts +0 -9
- package/dist/src/apps/migration-wizard/models/FinalisationTask.d.ts +0 -3
- package/dist/src/apps/migration-wizard/models/HomeFolder.d.ts +0 -8
- package/dist/src/apps/migration-wizard/models/MigrationOptions.d.ts +0 -3
- package/dist/src/apps/migration-wizard/models/SelectedVideo.d.ts +0 -3
- package/dist/src/apps/migration-wizard/models/SmartSelectVideo.d.ts +0 -4
- package/dist/src/apps/migration-wizard/models/VideoCount.d.ts +0 -3
- package/dist/src/apps/migration-wizard/services/FolderCacheService.d.ts +0 -22
- package/dist/src/apps/migration-wizard/services/LocalOptionsService.d.ts +0 -10
- package/dist/src/apps/migration-wizard/services/MigrationVideoDataService.d.ts +0 -56
- package/dist/src/apps/migration-wizard/services/SelectedVideoService.d.ts +0 -19
- package/dist/src/apps/migration-wizard/services/index.d.ts +0 -4
- package/dist/src/apps/migration-wizard/utils/FolderHelper.d.ts +0 -8
- package/dist/src/apps/migration-wizard/utils/VideoHelper.d.ts +0 -29
- package/dist/src/apps/migration-wizard/views/current-section-header/CurrentSectionHeaderView.d.ts +0 -28
- package/dist/src/apps/migration-wizard/views/generate-csv-report/GenerateCsvReportView.d.ts +0 -27
- package/dist/src/apps/migration-wizard/views/index.d.ts +0 -13
- package/dist/src/apps/migration-wizard/views/migration-error/MigrationErrorView.d.ts +0 -39
- package/dist/src/apps/migration-wizard/views/migration-progress/MigrationProgressView.d.ts +0 -32
- package/dist/src/apps/migration-wizard/views/publish-library-banner/PublishLibraryBannerView.d.ts +0 -30
- package/dist/src/apps/migration-wizard/views/publish-library-complete/PublishLibraryCompleteView.d.ts +0 -15
- package/dist/src/apps/migration-wizard/views/publish-library-progress/PublishLibraryProgressView.d.ts +0 -18
- package/dist/src/apps/migration-wizard/views/publisher-backup/PublisherBackupView.d.ts +0 -19
- package/dist/src/apps/migration-wizard/views/publisher-backup-complete/PublisherBackupCompleteView.d.ts +0 -23
- package/dist/src/apps/migration-wizard/views/publisher-backup-progress/PublisherBackupProgressView.d.ts +0 -23
- package/dist/src/apps/migration-wizard/views/publisher-backup-welcome/PublisherBackupWelcomeView.d.ts +0 -19
- package/dist/src/apps/migration-wizard/views/remigrate-video/RemigrateVideoView.d.ts +0 -32
- package/dist/src/apps/migration-wizard/views/selected-videos/SelectedVideosView.d.ts +0 -32
- package/dist/src/apps/migration-wizard/views/show-video-popup/ShowPublisherVideoPopupView.d.ts +0 -26
- package/dist/src/apps/migration-wizard/views/smart-migration/SmartMigrationView.d.ts +0 -58
- package/dist/src/apps/migration-wizard/views/start/StartView.d.ts +0 -40
- package/dist/src/apps/migration-wizard/views/videos-added/VideosAddedView.d.ts +0 -24
- package/dist/src/apps/notifications/NotificationsApplication.d.ts +0 -11
- package/dist/src/apps/notifications/constants/NotificationsAppVariables.d.ts +0 -7
- package/dist/src/apps/notifications/utils/NotificationsHelper.d.ts +0 -10
- package/dist/src/apps/search/SearchApplication.d.ts +0 -16
- package/dist/src/apps/search/collections/FilterCollection.d.ts +0 -9
- package/dist/src/apps/search/collections/OptionCollection.d.ts +0 -5
- package/dist/src/apps/search/components/filters/FiltersComponent.d.ts +0 -27
- package/dist/src/apps/search/components/filters/filter-button-list/FilterButtonItemComponent.d.ts +0 -37
- package/dist/src/apps/search/components/filters/filter-button-list/FilterButtonListComponent.d.ts +0 -19
- package/dist/src/apps/search/components/filters/filter-list/FilterItemComponent.d.ts +0 -17
- package/dist/src/apps/search/components/filters/filter-list/FilterListComponent.d.ts +0 -24
- package/dist/src/apps/search/components/filters/filter-options/FilterOptionsComponent.d.ts +0 -34
- package/dist/src/apps/search/components/filters/filter-options/bool-filter-options/BoolFilterOptionsComponent.d.ts +0 -15
- package/dist/src/apps/search/components/filters/filter-options/duration-filter-options/DurationFilterOptionListComponent.d.ts +0 -27
- package/dist/src/apps/search/components/filters/filter-options/filter-option-list/FilterOptionItemComponent.d.ts +0 -19
- package/dist/src/apps/search/components/filters/filter-options/filter-option-list/FilterOptionsListComponent.d.ts +0 -21
- package/dist/src/apps/search/components/filters/filter-options/range-filter-options/RangeFilterOptionListComponent.d.ts +0 -23
- package/dist/src/apps/search/components/filters/filter-options/tag-filter-options/TagFilterOptionsComponent.d.ts +0 -27
- package/dist/src/apps/search/components/filters/filter-options/tag-filter-options/TagFilterOptionsListComponent.d.ts +0 -19
- package/dist/src/apps/search/components/filters/more-filters-button/MoreFiltersButtonComponent.d.ts +0 -42
- package/dist/src/apps/search/components/results/SearchResultsComponent.d.ts +0 -22
- package/dist/src/apps/search/components/search-header/SearchHeaderComponent.d.ts +0 -11
- package/dist/src/apps/search/models/Filter.d.ts +0 -8
- package/dist/src/apps/search/models/Option.d.ts +0 -4
- package/dist/src/apps/search/models/Query.d.ts +0 -3
- package/dist/src/apps/search/models/SearchAppVariables.d.ts +0 -4
- package/dist/src/apps/search/services/SearchDataService.d.ts +0 -12
- package/dist/src/apps/search/utils/SearchHelper.d.ts +0 -11
- package/dist/src/apps/search/views/search/SearchView.d.ts +0 -57
- package/dist/src/apps/staff-requests/StaffRequestsApplication.d.ts +0 -15
- package/dist/src/apps/staff-requests/collections/StaffRequestCollection.d.ts +0 -5
- package/dist/src/apps/staff-requests/collections/StaffRequestMessageCollection.d.ts +0 -5
- package/dist/src/apps/staff-requests/components/staff-request-actions/StaffRequestActionsComponent.d.ts +0 -42
- package/dist/src/apps/staff-requests/components/staff-request-details/StaffRequestDetailsComponent.d.ts +0 -30
- package/dist/src/apps/staff-requests/components/staff-request-list/StaffRequestListComponent.d.ts +0 -29
- package/dist/src/apps/staff-requests/models/StaffRequest.d.ts +0 -14
- package/dist/src/apps/staff-requests/models/StaffRequestMessage.d.ts +0 -7
- package/dist/src/apps/staff-requests/services/StaffRequestDataService.d.ts +0 -14
- package/dist/src/apps/staff-requests/views/approve-staff-request/ApproveStaffRequestView.d.ts +0 -34
- package/dist/src/apps/staff-requests/views/reject-staff-request/RejectStaffRequestView.d.ts +0 -34
- package/dist/src/apps/staff-requests/views/staff-requests/StaffRequestsView.d.ts +0 -44
- package/dist/src/apps/upload/UploadApplication.d.ts +0 -23
- package/dist/src/apps/upload/components/processing-progress/ProcessProgressComponentCollection.d.ts +0 -38
- package/dist/src/apps/upload/components/progress-info/ProgressInfoComponent.d.ts +0 -10
- package/dist/src/apps/upload/components/upload-actions/UploadActionsComponent.d.ts +0 -21
- package/dist/src/apps/upload/components/upload-folder-select/UploadFolderSelectComponent.d.ts +0 -35
- package/dist/src/apps/upload/components/upload-progress/UploadProgressComponent.d.ts +0 -10
- package/dist/src/apps/upload/components/upload-video/UploadVideoComponent.d.ts +0 -46
- package/dist/src/apps/upload/components/upload-video/UploadVideoComponentCollection.d.ts +0 -18
- package/dist/src/apps/upload/errors/no-libraries-upload/NoLibrariesUploadError.d.ts +0 -7
- package/dist/src/apps/upload/services/ImageUploadDataService.d.ts +0 -8
- package/dist/src/apps/upload/services/PendingItemsService.d.ts +0 -7
- package/dist/src/apps/upload/services/VideoUploadDataService.d.ts +0 -17
- package/dist/src/apps/upload/services/VideoUploadService.d.ts +0 -8
- package/dist/src/apps/upload/views/file-select/FileSelectView.d.ts +0 -25
- package/dist/src/apps/upload/views/progress-summary/ProgressSummaryView.d.ts +0 -18
- package/dist/src/apps/upload/views/upload-button/UploadButtonView.d.ts +0 -26
- package/dist/src/apps/upload/views/upload-complete/UploadCompleteView.d.ts +0 -14
- package/dist/src/apps/upload/views/upload-videos/UploadVideosView.d.ts +0 -61
- package/dist/src/apps/video-access/VideoAccessApplication.d.ts +0 -12
- package/dist/src/apps/video-access/views/restricted-video-list/RestrictedVideoListView.d.ts +0 -34
- package/dist/src/index.d.ts +0 -194
- package/dist/src/shared/alerts/VideoAlerts.d.ts +0 -8
- package/dist/src/shared/behaviors/backbone-validation/BackboneValidationBehavior.d.ts +0 -14
- package/dist/src/shared/behaviors/file-drop/FileDropBehavior.d.ts +0 -19
- package/dist/src/shared/behaviors/file-drop/FileDropMaskBehavior.d.ts +0 -19
- package/dist/src/shared/behaviors/file-select/FileSelectBehavior.d.ts +0 -16
- package/dist/src/shared/behaviors/image-select-behavior/ImageSelectBehavior.d.ts +0 -23
- package/dist/src/shared/behaviors/lazy-load/LazyLoadBehavior.d.ts +0 -31
- package/dist/src/shared/behaviors/lock-layout-file-drop/LockLayoutFileDropBehavior.d.ts +0 -7
- package/dist/src/shared/behaviors/popup/PopupBehavior.d.ts +0 -65
- package/dist/src/shared/behaviors/stickit/StickitBehavior.d.ts +0 -6
- package/dist/src/shared/collections/ChannelCollection.d.ts +0 -6
- package/dist/src/shared/collections/ChapterCollection.d.ts +0 -7
- package/dist/src/shared/collections/DirectorCollection.d.ts +0 -6
- package/dist/src/shared/collections/DistributorCollection.d.ts +0 -6
- package/dist/src/shared/collections/FieldsCollection.d.ts +0 -5
- package/dist/src/shared/collections/FolderCollection.d.ts +0 -7
- package/dist/src/shared/collections/InteractivesCollection.d.ts +0 -6
- package/dist/src/shared/collections/LibraryCollection.d.ts +0 -7
- package/dist/src/shared/collections/LinkCollection.d.ts +0 -6
- package/dist/src/shared/collections/LocalCacheDeviceCollection.d.ts +0 -5
- package/dist/src/shared/collections/LocalCacheDownloadCollection.d.ts +0 -5
- package/dist/src/shared/collections/MetadataCollection.d.ts +0 -4
- package/dist/src/shared/collections/ProducerCollection.d.ts +0 -6
- package/dist/src/shared/collections/ProductionCompanyCollection.d.ts +0 -6
- package/dist/src/shared/collections/RatingCollection.d.ts +0 -4
- package/dist/src/shared/collections/ResourceCollection.d.ts +0 -6
- package/dist/src/shared/collections/RestrictedObjectCollection.d.ts +0 -5
- package/dist/src/shared/collections/RestrictionCollection.d.ts +0 -5
- package/dist/src/shared/collections/SeasonCollection.d.ts +0 -6
- package/dist/src/shared/collections/SettingsCollection.d.ts +0 -5
- package/dist/src/shared/collections/SubtitleCollection.d.ts +0 -6
- package/dist/src/shared/collections/TagCollection.d.ts +0 -6
- package/dist/src/shared/collections/VideoCollection.d.ts +0 -6
- package/dist/src/shared/collections/index.d.ts +0 -23
- package/dist/src/shared/components/alert/AlertComponentCollection.d.ts +0 -11
- package/dist/src/shared/components/alert/AlertItemComponent.d.ts +0 -44
- package/dist/src/shared/components/breadcrumbs/BreadcrumbComponentCollection.d.ts +0 -18
- package/dist/src/shared/components/breadcrumbs/BreadcrumbsComponent.d.ts +0 -26
- package/dist/src/shared/components/bulk-video-actions/BulkVideoActionsComponent.d.ts +0 -26
- package/dist/src/shared/components/checkbox/BulkCheckboxComponent.d.ts +0 -27
- package/dist/src/shared/components/checkbox/CheckboxComponent.d.ts +0 -25
- package/dist/src/shared/components/clear-button/ClearButtonComponent.d.ts +0 -18
- package/dist/src/shared/components/date-picker/DatePickerComponent.d.ts +0 -47
- package/dist/src/shared/components/dialog/DialogView.d.ts +0 -22
- package/dist/src/shared/components/dropdown/DropdownButtonComponent.d.ts +0 -36
- package/dist/src/shared/components/dropdown/DropdownComponentCollection.d.ts +0 -38
- package/dist/src/shared/components/dropdown/DropdownItemComponent.d.ts +0 -57
- package/dist/src/shared/components/edit-video/edit-additional-info/EditAdditionalInfoComponent.d.ts +0 -37
- package/dist/src/shared/components/edit-video/edit-basic-info/EditBasicInfoComponent.d.ts +0 -32
- package/dist/src/shared/components/edit-video/edit-broadcast/EditBroadcastComponent.d.ts +0 -22
- package/dist/src/shared/components/edit-video/edit-broadcast/ToggleBroadcastComponent.d.ts +0 -24
- package/dist/src/shared/components/edit-video/edit-production-info/EditProductionInfoComponent.d.ts +0 -61
- package/dist/src/shared/components/edit-video/edit-season-info/EditSeasonInfoComponent.d.ts +0 -33
- package/dist/src/shared/components/edit-video/extra-info/ExtraInfoComponent.d.ts +0 -16
- package/dist/src/shared/components/edit-video/extra-info/ExtraInfoItemComponent.d.ts +0 -17
- package/dist/src/shared/components/edit-video/select-rating/SelectRatingCollectionComponent.d.ts +0 -17
- package/dist/src/shared/components/edit-video/select-rating/SelectRatingComponent.d.ts +0 -40
- package/dist/src/shared/components/edit-video/select-rating/SelectRatingItemComponent.d.ts +0 -20
- package/dist/src/shared/components/fields/FieldsComponent.d.ts +0 -9
- package/dist/src/shared/components/image-cropper/ImageCropperComponent.d.ts +0 -34
- package/dist/src/shared/components/index.d.ts +0 -44
- package/dist/src/shared/components/left-nav/LeftNavComponent.d.ts +0 -30
- package/dist/src/shared/components/left-nav/LeftNavNodeComponent.d.ts +0 -48
- package/dist/src/shared/components/page-footer/PageFooterComponent.d.ts +0 -15
- package/dist/src/shared/components/page-header/PageHeaderComponent.d.ts +0 -25
- package/dist/src/shared/components/partial-loading/PartialLoadingComponent.d.ts +0 -16
- package/dist/src/shared/components/partial-loading/PartialLoadingComponentCollection.d.ts +0 -20
- package/dist/src/shared/components/resizing-text-area/ResizingTextAreaComponent.d.ts +0 -23
- package/dist/src/shared/components/select/SelectComponent.d.ts +0 -54
- package/dist/src/shared/components/spinner-button/SpinnerButtonComponent.d.ts +0 -73
- package/dist/src/shared/components/tabs/TabsComponent.d.ts +0 -28
- package/dist/src/shared/components/top-navigation/TopNavigationComponentCollection.d.ts +0 -29
- package/dist/src/shared/components/tree-dropdown/TreeDropdownComponent.d.ts +0 -32
- package/dist/src/shared/components/typeahead-input/SearchTypeaheadComponent.d.ts +0 -74
- package/dist/src/shared/components/typeahead-list/TypeaheadListComponent.d.ts +0 -33
- package/dist/src/shared/components/user-options-dropdown/UserOptionsDropdownComponent.d.ts +0 -20
- package/dist/src/shared/components/video-actions/VideoActionComponentCollection.d.ts +0 -31
- package/dist/src/shared/components/video-actions/VideoActionsComponent.d.ts +0 -41
- package/dist/src/shared/components/video-basic-info/VideoBasicInfoComponent.d.ts +0 -32
- package/dist/src/shared/components/video-description/VideoDescriptionComponent.d.ts +0 -33
- package/dist/src/shared/components/video-item/VideoItemComponent.d.ts +0 -56
- package/dist/src/shared/components/video-item/video-item-actions/base/VideoItemActionsComponent.d.ts +0 -23
- package/dist/src/shared/components/video-item/video-item-actions/video-item-processing-actions/VideoItemProcessingActionsComponent.d.ts +0 -25
- package/dist/src/shared/components/video-item/video-item-actions/video-item-review-actions/VideoItemReviewActionsComponent.d.ts +0 -26
- package/dist/src/shared/components/video-item/video-item-actions/video-item-video-access-actions/VideoItemVideoAccessActionsComponent.d.ts +0 -22
- package/dist/src/shared/components/video-item/video-item-metadata/base/VideoItemMetadataComponent.d.ts +0 -24
- package/dist/src/shared/components/video-item/video-item-metadata/video-item-awaiting-review-metadata/VideoItemAwaitingReviewMetadataComponent.d.ts +0 -21
- package/dist/src/shared/components/video-item/video-item-metadata/video-item-badges/VideoItemBadgesComponent.d.ts +0 -20
- package/dist/src/shared/components/video-item/video-item-metadata/video-item-past-releases-metadata/VideoItemPastReleasesMetadataComponent.d.ts +0 -24
- package/dist/src/shared/components/video-item/video-item-metadata/video-item-processing-metadata/VideoItemProcessingMetadataComponent.d.ts +0 -19
- package/dist/src/shared/components/video-item/video-item-metadata/video-item-search-metadata/VideoItemSearchMetadataComponent.d.ts +0 -22
- package/dist/src/shared/components/video-item/video-item-metadata/video-item-series/VideoItemSeriesComponent.d.ts +0 -22
- package/dist/src/shared/components/video-item/video-item-metadata/video-item-video-access-metadata/VideoItemVideoAccessMetadataComponent.d.ts +0 -26
- package/dist/src/shared/components/video-item/video-item-metadata/video-sources-metadata/VideoSourcesMetadataComponent.d.ts +0 -22
- package/dist/src/shared/components/video-item-preview/VideoItemPreviewComponent.d.ts +0 -37
- package/dist/src/shared/components/video-list/VideoListComponent.d.ts +0 -43
- package/dist/src/shared/components/video-preview/VideoPreviewComponent.d.ts +0 -30
- package/dist/src/shared/components/web-player/WebPlayerComponent.d.ts +0 -53
- package/dist/src/shared/constants/Services.d.ts +0 -61
- package/dist/src/shared/constants/empty-state-components/EmptyStateComponents.d.ts +0 -6
- package/dist/src/shared/errors/authentication/AuthenticationError.d.ts +0 -7
- package/dist/src/shared/errors/customer-setting/CustomerSettingError.d.ts +0 -8
- package/dist/src/shared/errors/email-not-verified/EmailNotVerifiedError.d.ts +0 -8
- package/dist/src/shared/errors/forbidden-access/ForbiddenAccessError.d.ts +0 -11
- package/dist/src/shared/errors/local-cache-device-not-found/LocalCacheDeviceNotFoundError.d.ts +0 -6
- package/dist/src/shared/errors/no-beta-access/NoBetaAccessError.d.ts +0 -8
- package/dist/src/shared/errors/not-found/NotFoundError.d.ts +0 -5
- package/dist/src/shared/errors/old-version/OldVersionError.d.ts +0 -7
- package/dist/src/shared/errors/too-many-files/TooManyFilesError.d.ts +0 -6
- package/dist/src/shared/filters/BetaAccessFilter.d.ts +0 -3
- package/dist/src/shared/filters/CustomerSettingsFilter.d.ts +0 -8
- package/dist/src/shared/filters/RoleFilter.d.ts +0 -4
- package/dist/src/shared/filters/VerifiedEmailFilter.d.ts +0 -3
- package/dist/src/shared/index.d.ts +0 -14
- package/dist/src/shared/interfaces/LibraryFoldersIdentifier.d.ts +0 -4
- package/dist/src/shared/interfaces/RecentVideoCollectionIdentifier.d.ts +0 -20
- package/dist/src/shared/interfaces/RecentVideoSubjectCollectionIdentifier.d.ts +0 -16
- package/dist/src/shared/interfaces/VideoCollectionIdentifier.d.ts +0 -4
- package/dist/src/shared/layouts/manage-layout/ManageLayoutView.d.ts +0 -47
- package/dist/src/shared/models/Avatar.d.ts +0 -3
- package/dist/src/shared/models/Banner.d.ts +0 -3
- package/dist/src/shared/models/Channel.d.ts +0 -3
- package/dist/src/shared/models/Chapter.d.ts +0 -3
- package/dist/src/shared/models/Company.d.ts +0 -3
- package/dist/src/shared/models/Config.d.ts +0 -3
- package/dist/src/shared/models/Customer.d.ts +0 -3
- package/dist/src/shared/models/Director.d.ts +0 -3
- package/dist/src/shared/models/DisabledSpinnerModel.d.ts +0 -5
- package/dist/src/shared/models/Distributor.d.ts +0 -3
- package/dist/src/shared/models/Folder.d.ts +0 -12
- package/dist/src/shared/models/Image.d.ts +0 -3
- package/dist/src/shared/models/Interactives.d.ts +0 -3
- package/dist/src/shared/models/LanguageConfig.d.ts +0 -7
- package/dist/src/shared/models/Library.d.ts +0 -10
- package/dist/src/shared/models/Link.d.ts +0 -3
- package/dist/src/shared/models/LocalCacheDevice.d.ts +0 -3
- package/dist/src/shared/models/LocalCacheDownload.d.ts +0 -3
- package/dist/src/shared/models/Logo.d.ts +0 -3
- package/dist/src/shared/models/Metadata.d.ts +0 -3
- package/dist/src/shared/models/Owner.d.ts +0 -3
- package/dist/src/shared/models/Person.d.ts +0 -3
- package/dist/src/shared/models/Phrases.d.ts +0 -3
- package/dist/src/shared/models/Playlist.d.ts +0 -3
- package/dist/src/shared/models/Producer.d.ts +0 -3
- package/dist/src/shared/models/ProductionCompany.d.ts +0 -3
- package/dist/src/shared/models/Rating.d.ts +0 -3
- package/dist/src/shared/models/Resource.d.ts +0 -3
- package/dist/src/shared/models/RestrictedObject.d.ts +0 -3
- package/dist/src/shared/models/Restriction.d.ts +0 -3
- package/dist/src/shared/models/Season.d.ts +0 -3
- package/dist/src/shared/models/Series.d.ts +0 -7
- package/dist/src/shared/models/Setting.d.ts +0 -3
- package/dist/src/shared/models/SharedResource.d.ts +0 -3
- package/dist/src/shared/models/Subtitle.d.ts +0 -3
- package/dist/src/shared/models/Tag.d.ts +0 -3
- package/dist/src/shared/models/Thumbnail.d.ts +0 -3
- package/dist/src/shared/models/User.d.ts +0 -10
- package/dist/src/shared/models/Video.d.ts +0 -29
- package/dist/src/shared/models/index.d.ts +0 -38
- package/dist/src/shared/services/AlertService.d.ts +0 -15
- package/dist/src/shared/services/ConfigDataService.d.ts +0 -23
- package/dist/src/shared/services/CustomerDataService.d.ts +0 -7
- package/dist/src/shared/services/DownloadProxyDataServices.d.ts +0 -7
- package/dist/src/shared/services/IntercomService.d.ts +0 -8
- package/dist/src/shared/services/LocalCacheDataService.d.ts +0 -11
- package/dist/src/shared/services/NavigationLockService.d.ts +0 -17
- package/dist/src/shared/services/PageTitleService.d.ts +0 -10
- package/dist/src/shared/services/PageVisibilityService.d.ts +0 -14
- package/dist/src/shared/services/PartialLoadingService.d.ts +0 -12
- package/dist/src/shared/services/RestrictedVideoDataService.d.ts +0 -13
- package/dist/src/shared/services/SettingsDataService.d.ts +0 -12
- package/dist/src/shared/services/UserDataService.d.ts +0 -20
- package/dist/src/shared/services/VideoMixinService.d.ts +0 -16
- package/dist/src/shared/services/index.d.ts +0 -14
- package/dist/src/shared/utils/BulkCheckboxHelper.d.ts +0 -18
- package/dist/src/shared/utils/CancelProcessingHelper.d.ts +0 -4
- package/dist/src/shared/utils/CollectionHelper.d.ts +0 -10
- package/dist/src/shared/utils/DialogHelper.d.ts +0 -9
- package/dist/src/shared/utils/FolderTreeHelpers.d.ts +0 -36
- package/dist/src/shared/utils/ImageHelper.d.ts +0 -31
- package/dist/src/shared/utils/LocalCacheHelper.d.ts +0 -7
- package/dist/src/shared/utils/PartialLoadingHelper.d.ts +0 -6
- package/dist/src/shared/utils/PermissionsHelper.d.ts +0 -13
- package/dist/src/shared/utils/RatingHelper.d.ts +0 -6
- package/dist/src/shared/utils/RestrictedAccessHelper.d.ts +0 -13
- package/dist/src/shared/utils/SortHelper.d.ts +0 -16
- package/dist/src/shared/utils/TabHelper.d.ts +0 -9
- package/dist/src/shared/utils/VideoHelper.d.ts +0 -11
- package/dist/src/shared/utils/search/RawSearchHelper.d.ts +0 -21
- package/dist/src/shared/views/download-to-local-cache/DownloadToLocalCacheView.d.ts +0 -28
- package/dist/src/shared/views/download-video/DownloadVideoView.d.ts +0 -19
- package/dist/src/shared/views/index.d.ts +0 -9
- package/dist/src/shared/views/restrict-access/RestrictAccessComponent.d.ts +0 -7
- package/dist/src/shared/views/restrict-access/RestrictAccessGroupComponent.d.ts +0 -24
- package/dist/src/shared/views/restrict-access/RestrictAccessView.d.ts +0 -67
- package/dist/src/shared/views/share/ShareView.d.ts +0 -48
- package/dist/src/shared/views/top-navigation/TopNavigationView.d.ts +0 -35
- package/dist/src/shared/views/user-options/UserOptionsView.d.ts +0 -18
- /package/dist/{src/shared → libs/shared/src}/constants/CacheDurations.d.ts +0 -0
- /package/dist/{src/shared → libs/shared/src}/utils/DurationHelper.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/content-updates/collections/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/content-updates/components/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/content-updates/enums/PastReleaseFilterType.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/content-updates/enums/ReleaseDateType.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/content-updates/enums/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/content-updates/models/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/content-updates/services/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/content-updates/utils/Constants.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/content-updates/utils/PastReleasesHelper.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/content-updates/utils/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/dashboard/components/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/behaviors/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/behaviors/shared/DragOptions.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/behaviors/shared/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/constants/CheckboxTypes.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/constants/EditVideoBackButtonBlacklist.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/constants/EditVideoBackButtonKey.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/constants/LibraryEditorActions.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/constants/LibraryEditorRadioChannels.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/constants/MetadataTypes.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/constants/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/enums/MediaConcatenateStatus.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/enums/ObjectOwnerType.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/enums/TagBehavior.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/enums/TagOrientation.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/enums/VideoCollectionSource.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/enums/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/errors/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/models/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/utils/AddToLibraryCacheHelper.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/utils/DownloadHelper.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/utils/FolderValidation.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/utils/LanguageValidation.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/utils/LibraryValidation.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/utils/UploadVideoValidation.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/library-editor/utils/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/collections/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/components/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/contants/MigrationErrorActions.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/contants/MigrationViewModels.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/enums/CloudSyncStatus.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/enums/FinalisationTaskStatus.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/enums/FinalisationType.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/enums/LocalOption.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/enums/MigrationOption.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/enums/MigrationReportType.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/enums/SortField.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/enums/ValidationResult.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/enums/ValidationResultErrorType.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/enums/VideoMigrationStatus.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/enums/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/errors/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/filters/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/interfaces/SelectedVideos.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/models/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/utils/KeyContactHelper.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/utils/MigrationErrorHelper.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/utils/MigrationHelper.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/utils/MigrationRadioChannels.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/utils/MigrationWarningsSvgs.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/utils/ReportHelper.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/notifications/constants/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/notifications/utils/Constants.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/notifications/utils/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/search/collections/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/search/components/filters/filter-button-list/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/search/components/filters/filter-options/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/search/components/filters/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/search/constants/SearchRadioChannels.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/search/constants/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/search/models/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/search/services/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/search/utils/Constants.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/search/utils/Enums.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/search/utils/FilterHelper.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/search/utils/FilterLabelGenerators.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/search/utils/FilterQueryGenerators.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/search/utils/FilterRouteQueryParamGenerators.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/search/utils/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/staff-requests/collections/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/staff-requests/enums/StaffRequestStatus.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/staff-requests/enums/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/staff-requests/models/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/staff-requests/services/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/staff-requests/utils/StaffRequestApprovalValidation.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/staff-requests/utils/StaffRequestRejectionValidation.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/staff-requests/utils/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/upload/components/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/upload/errors/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/apps/upload/services/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/alerts/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/behaviors/file-drop/FileDropHelper.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/behaviors/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/components/partial-loading/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/components/typeahead-input/templates/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/components/video-item/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/components/video-item/utils/VideoItemBehaviors.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/components/video-item/utils/VideoItemComponentHelper.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/components/video-item/utils/VideoItemComponentTypes.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/components/video-item/utils/VideoItemComponents.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/components/video-item/utils/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/components/video-item/video-item-actions/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/components/video-item/video-item-metadata/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/constants/Actions.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/constants/BootstrapKeys.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/constants/DataPrefixes.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/constants/DataServiceErrors.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/constants/EventNames.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/constants/FolderTreeIds.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/constants/FormattedCustomerSettingNames.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/constants/ImageSizes.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/constants/ImageUrls.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/constants/LayoutRegions.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/constants/Layouts.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/constants/LazyLoadBrowserSupport.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/constants/MarketingSiteArticles.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/constants/Misc.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/constants/OnlineUrls.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/constants/PartialLoadingComponents.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/constants/RadioChannels.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/constants/Search.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/constants/SupportArticles.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/constants/Webplayer.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/constants/WithStatements.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/constants/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/enums/CitationType.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/enums/CustomerRegions.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/enums/EmptyStates.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/enums/FileIdType.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/enums/ImageType.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/enums/MasterObjectTypes.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/enums/MasterType.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/enums/PartialLoading.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/enums/RestrictedObjectType.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/enums/SchoolTypes.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/enums/Settings.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/enums/SharedResourcePrivacy.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/enums/SortTypes.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/enums/StaffRequestOption.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/enums/TimeType.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/enums/UploadInteractionType.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/enums/UserRole.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/enums/YearGroups.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/enums/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/errors/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/filters/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/interfaces/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/layouts/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/utils/LazyLoadHelper.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/utils/RadioChannelHelper.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/utils/SettingsHelper.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/utils/SpinnerHelper.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/utils/SubtitleLanguageValidation.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/utils/TextHelper.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/utils/TimeHelper.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/utils/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/utils/search/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/utils/search/raw-search-components/add-new/AddNewSuggestion.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/utils/search/raw-search-components/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/shared/utils/search/raw-search-templates/index.d.ts +0 -0
- /package/dist/{src → projects/library-editor/src}/styles/index.d.ts +0 -0
- /package/dist/{typings → projects/library-editor/typings}/libs/LazyLoad.d.ts +0 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
._2TIZ7{background-color:#fff;font-weight:bold;z-index:60;width:18rem;display:inline-block;border-radius:.25rem;line-height:1.5rem;box-shadow:0.1875rem 0.125rem 10px rgba(51,51,51,0.3)}._3JzEU{vertical-align:middle;display:inline-block;width:1.5rem;height:1.5rem}._1Kdwj{vertical-align:middle;display:inline-block}
|
|
2
|
+
|
|
3
|
+
._2wBn3{background-color:#eaeaea}._1r3AS a,._1r3AS a:hover{color:#B5B5B5 !important}
|
|
4
|
+
|
|
5
|
+
._1inFA ._2ovSq{padding-left:1.25rem}._1inFA ._2pwp9{left:1rem;right:auto}._1inFA ._1inFA ._2ovSq{padding-left:2.5rem}._1inFA ._1inFA ._2pwp9{left:2.25rem;right:auto}._1inFA ._1inFA ._1inFA ._2ovSq{padding-left:3.75rem}._1inFA ._1inFA ._1inFA ._2pwp9{left:3.5rem;right:auto}._1inFA ._1inFA ._1inFA ._1inFA ._2ovSq{padding-left:5rem}._1inFA ._1inFA ._1inFA ._1inFA ._2pwp9{left:4.75rem;right:auto}._1inFA ._1inFA ._1inFA ._1inFA ._1inFA ._2ovSq{padding-left:6.25rem}._1inFA ._1inFA ._1inFA ._1inFA ._1inFA ._2pwp9{left:6rem;right:auto}._1inFA ._1inFA ._1inFA ._1inFA ._1inFA ._1inFA ._2ovSq{padding-left:7.5rem}._1inFA ._1inFA ._1inFA ._1inFA ._1inFA ._1inFA ._2pwp9{left:7.25rem;right:auto}._2WHiz{cursor:pointer}._2WHiz:hover{background-color:rgba(132,134,141,0.05)}._2pwp9{color:black;width:1.5rem;height:1.5rem;top:50%;margin-top:-.75rem;right:100%;-webkit-transform:rotate(270deg);transform:rotate(270deg);left:0}._2ovSq{display:block;padding:.25rem 0;overflow-wrap:break-word;padding-right:.625rem}._2WHiz ._2pwp9{left:.375rem}._200l0>._2pwp9,._205QS>._2pwp9,._25EPE>._2pwp9{-webkit-transform:rotate(0deg);transform:rotate(0deg)}._387cT a ._2ovSq,._387cT a ._2pwp9{color:#979797}._200l0>div>a>._2pwp9,._205QS>div>a>._2pwp9,._25EPE>div>a>._2pwp9{-webkit-transform:rotate(0deg);transform:rotate(0deg)}._200l0._1-_q7>div>a>._2pwp9,._25EPE._1-_q7>div>a>._2pwp9{-webkit-transform:rotate(270deg);transform:rotate(270deg)}._2WHiz>a{font-weight:500;padding:0.125rem .625rem;display:block}._2WHiz>a ._2ovSq{padding-left:1.25rem;position:relative}._3Il7t svg{display:none}._3Il7t:hover{background-color:rgba(0,0,0,0.4)}._3Il7t:hover svg{opacity:1;color:#fff}._2WHiz>._3Il7t svg{display:inline-block}._2WHiz ._3Il7t{right:0}._1inFA{list-style:none}._1inFA ._23bpP{max-width:100%;display:block;-moz-box-sizing:border-box;box-sizing:border-box;padding:0.125rem 1.25rem}._1inFA ._23bpP:hover{text-decoration:none}._1inFA div .show svg{display:block}._2WHiz:hover>._3Il7t svg{display:block}._1inFA div:hover ._3Il7t svg{display:block}.EuNKs ul{padding-left:0}.EuNKs li{padding-left:0}.EuNKs ul,.EuNKs li{list-style:none;margin:0}.ahYSz{background-color:rgba(132,134,141,0.15)}.ahYSz:hover{background-color:rgba(132,134,141,0.25)}._200l0>.ahYSz{background-color:rgba(132,134,141,0.55)}
|
|
6
|
+
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
._2SYyd{min-height:5rem}.ozkKz,._1monr{height:6.375rem}.ozkKz,._36Arj{box-shadow:none}._2UGxe{border:0.0625rem solid #D7D7D7}.gaJap{height:2.25rem;top:-2.25rem;position:relative;margin:0 0 0 auto}.gaJap .btn{border-top-right-radius:0;border-bottom-left-radius:0;border-top-left-radius:.25rem !important}._3ydjG{min-height:1rem}
|
|
2
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
.qKxbV{max-height:50vh}
|
|
2
|
+
|
|
3
|
+
._1iL3O{position:absolute;right:0.3125rem;top:50%;margin-top:-.75rem;color:#D7D7D7}._1iL3O:hover{cursor:pointer}._1SWXc{position:relative}._1SWXc .twitter-typeahead{width:100%}._1SWXc .form-control[readonly]{background-color:transparent}._1SWXc .tt-hint,._1SWXc .tt-menu{width:100%}._1SWXc .tt-cursor{background-color:#4E9ACE;color:#fff;cursor:pointer}._1SWXc .tt-menu{background-color:#fff;border:1px #D7D7D7 solid;border-radius:.25rem;margin-top:0.125rem}._1SWXc .ignore-highlighting strong{font-weight:normal}._1SWXc:hover ._1iL3O{color:#313543}._3C2O8{background-color:#f1f1f1 !important;color:#B5B5B5}
|
|
4
|
+
|
|
5
|
+
._2-D4Z{position:absolute;bottom:.375rem;right:1.875rem}._2-D4Z:hover{cursor:pointer}
|
|
6
|
+
|
|
7
|
+
._1sAku::before,._3zc5V::before{content:'';display:inline-block;border-style:solid;border-width:0.2rem 0.2rem 0 0;height:.625rem;width:.625rem}._1sAku::before{-webkit-transform:rotate(45deg);transform:rotate(45deg)}._3zc5V::before{-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}._1j_H7{position:relative}._1j_H7 .clear-button{color:#D7D7D7}._1j_H7:hover .clear-button{color:#313543}._3ViTN{position:absolute;bottom:.375rem;right:.375rem}.DzdxT{color:#B5B5B5}
|
|
8
|
+
|
|
9
|
+
._3TIct{color:#B5B5B5}
|
|
10
|
+
|
|
11
|
+
._39NvM{text-align:left;border:1px solid #D7D7D7;height:2.2rem}._2Tl0W{position:absolute;right:0.3125rem;top:50%;margin-top:-.75rem;color:#D7D7D7}._2Tl0W:hover{cursor:pointer}._2julA{background-color:#f1f1f1;color:#B5B5B5;cursor:default !important}._2julA:hover{color:#B5B5B5;text-decoration:none}._SpZq{position:relative}._SpZq:hover ._2Tl0W{color:#313543}
|
|
12
|
+
|
|
13
|
+
.tOHRz{color:#B5B5B5}
|
|
14
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
._3aP3V ._1uqg-:last-child{margin-bottom:-0.0625rem}._29kkj{background-color:#979797;color:#fff}
|
|
2
|
+
|
|
3
|
+
._1N_VT{font-weight:600}._4pk2s{margin-bottom:1rem}._3SoBV{height:1.5rem;position:relative;margin-top:-0.25rem}._3SoBV svg{width:1.5rem;height:1.5rem}._1nYZg span:after{content:','}._1nYZg span:last-child:after{content:''}
|
|
4
|
+
|
|
5
|
+
._2TTgs{text-align:left}._3wN7o{padding-left:0;margin-bottom:0}._3Xf1P{cursor:pointer;max-height:24.75rem;overflow-y:scroll;width:100%}._199PI{background-color:#fff}._199PI:hover{background-color:rgba(132,134,141,0.25)}
|
|
6
|
+
|
|
7
|
+
._2RaQu{max-width:100%;max-height:50vh;overflow-y:scroll}._2xGqi{padding-right:2rem;overflow-y:hidden;cursor:pointer}._2xGqi::after{position:absolute;right:.75rem;top:50%;margin-top:-.15em}._15kWr{color:#B5B5B5;cursor:default}._15kWr ._2xGqi::after{color:#B5B5B5}
|
|
8
|
+
|
|
9
|
+
._2xyI4{background-color:#f8f8f8}._153F1{color:#fff;border-radius:1rem}._3I7SQ{width:6rem}
|
|
10
|
+
|
|
11
|
+
._2c8zD{border-radius:50%;background-color:#51ADA3;display:inline-block;width:2.1875rem;height:2.1875rem;text-align:center;line-height:2.1875rem;background-size:cover;background-position:top center;vertical-align:top}.EQzqm{border-left:0.125rem solid #51ADA3}.mnE2L{background-color:#F8981D;color:#fff}
|
|
12
|
+
|
|
13
|
+
._3DFfh{width:20rem}._2ezub{width:-webkit-calc(100% - 20rem);width:calc(100% - 20rem);vertical-align:top;margin-left:-0.0625rem}
|
|
14
|
+
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
._2F3Cz{width:1.5rem;height:1.5rem;margin-top:-.75rem;top:50%;right:0}._2F3Cz.show{z-index:11}._2TdId{width:100%;height:100%;cursor:pointer}
|
|
2
|
+
|
|
3
|
+
._2wBn3{background-color:#eaeaea}._1r3AS a,._1r3AS a:hover{color:#B5B5B5 !important}
|
|
4
|
+
|
|
5
|
+
._3yOKC{width:1.5rem;height:1.5rem;left:.375rem;top:50%;margin-top:-.75rem}._1mL-8{padding-left:1.5rem}._3Z20g{border:1px solid #eaeaea}._1NQjU svg{opacity:0.5;text-shadow:1px 1px 1px rgba(0,0,0,0.5)}._1NQjU:hover{background-color:rgba(0,0,0,0.4)}._1NQjU:hover svg{opacity:1;color:#fff}
|
|
6
|
+
|
|
7
|
+
._3o-cY,._3O1cI{width:8.8rem;position:relative}._3o-cY .dropdown-toggle:after{position:absolute;right:.75rem;top:50%;margin-top:-.15em}
|
|
8
|
+
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
._1CUEt{vertical-align:middle;display:inline-block;width:1.5rem;height:1.5rem}.oZx-K{text-transform:uppercase;font-size:.92857em}
|
|
2
|
+
|
|
3
|
+
._1a1Re{font-weight:600}._2MZC5{position:relative}._3U9j9{white-space:pre-wrap}._1YjUg,._3SNtn,.xy3i9{position:absolute;padding-left:1.25rem;bottom:0;right:0;background:-webkit-gradient(linear, left top, right top, color-stop(0, rgba(255,255,255,0)), color-stop(#fff), color-stop(2rem), to(#fff));background:linear-gradient(to right, rgba(255,255,255,0) 0, #fff, 2rem, #fff);color:#979797}._3SNtn{padding-right:3rem;letter-spacing:0.1rem}.xy3i9{cursor:pointer}._1_L9t{display:inline}.TCdgP{display:none}._18ojI{padding-bottom:1.25rem}.nLuVF{max-height:3.9375rem;overflow:hidden}.sEELY{max-height:6.5625rem;overflow:hidden}
|
|
4
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
._5idZs:hover{text-decoration:none}._3Ty4M{font-weight:500}
|
|
2
|
+
|
|
3
|
+
._1SwZ2{width:20rem}._3f4T9{width:-webkit-calc(100% - 20rem);width:calc(100% - 20rem);vertical-align:top}
|
|
4
|
+
|
|
5
|
+
._15vRB{width:20rem}._15vRB a{color:#4E9ACE !important;cursor:pointer}._15vRB a:hover{text-decoration:underline !important}
|
|
6
|
+
|
|
7
|
+
._3iMZr{vertical-align:middle}._1xOts{font-weight:500}._1Yzts{max-width:100%;max-height:50vh;overflow-y:auto}
|
|
8
|
+
|
|
9
|
+
._3sym3 .filter-option-item{display:inline-block;width:50%}
|
|
10
|
+
|
|
11
|
+
._6o30E:hover ._3yReT{background-color:#4E9ACE;border-color:#4E9ACE;color:#fff}._3yReT:hover ~ ._3yReT{background-color:#f1f1f1;border-color:#f1f1f1;color:#333}
|
|
12
|
+
|
|
13
|
+
._3jzt0{width:33%;vertical-align:top}._3jzt0:first-child{padding-left:0 !important}._3jzt0:last-child{padding-right:0 !important}._78r7L{width:25%}.aFhSG{background-color:#4E9ACE;color:#fff}
|
|
14
|
+
|
|
15
|
+
._1SMXf{max-width:12rem}
|
|
16
|
+
|
|
17
|
+
._303Nb{min-height:40rem}._2ZCHY{width:-webkit-calc(100% - 20rem);width:calc(100% - 20rem);vertical-align:top}
|
|
18
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
.l2vGK{border:0.125rem dashed #B5B5B5;border-radius:.25rem;position:relative}.yNe5b{display:none}._3sZ1T{position:relative}._3sZ1T .l2vGK{border-color:#F8981D}._3sZ1T .yNe5b h3{position:absolute;top:50%;width:100%;text-align:center;margin-top:-1rem}._3sZ1T .yNe5b{display:block;position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(255,255,255,0.6)}
|
|
2
|
+
|
|
3
|
+
._uEVJ{width:1.5rem;height:1.5rem}._1oLg0{cursor:pointer}
|
|
4
|
+
|
|
5
|
+
._59zg9{min-width:8rem;min-height:-webkit-calc(2.5 * .875rem);min-height:calc(2.5 * .875rem)}
|
|
6
|
+
|
|
7
|
+
._3LHs_{width:1.5rem;height:1.5rem}._30D9s{height:0.1875rem}
|
|
8
|
+
|
|
9
|
+
._1iL3O{position:absolute;right:0.3125rem;top:50%;margin-top:-.75rem;color:#D7D7D7}._1iL3O:hover{cursor:pointer}._1SWXc{position:relative}._1SWXc .twitter-typeahead{width:100%}._1SWXc .form-control[readonly]{background-color:transparent}._1SWXc .tt-hint,._1SWXc .tt-menu{width:100%}._1SWXc .tt-cursor{background-color:#4E9ACE;color:#fff;cursor:pointer}._1SWXc .tt-menu{background-color:#fff;border:1px #D7D7D7 solid;border-radius:.25rem;margin-top:0.125rem}._1SWXc .ignore-highlighting strong{font-weight:normal}._1SWXc:hover ._1iL3O{color:#313543}._3C2O8{background-color:#f1f1f1 !important;color:#B5B5B5}
|
|
10
|
+
|
|
11
|
+
._27gR6{width:1rem;height:1rem}._27gR6 svg{vertical-align:top}
|
|
12
|
+
|
|
13
|
+
._5idZs:hover{text-decoration:none}._3Ty4M{font-weight:500}
|
|
14
|
+
|
|
15
|
+
._1VUhp{width:1.5rem;height:1.5rem}._3cODR{cursor:pointer}
|
|
16
|
+
|
|
17
|
+
._3T40U{width:1.5rem;height:1.5rem}._3FRzz{cursor:pointer}
|
|
18
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
._3iMZr{vertical-align:middle}._1xOts{font-weight:500}._1Yzts{max-width:100%;max-height:50vh;overflow-y:auto}
|
|
2
|
+
|
|
3
|
+
._3sym3 .filter-option-item{display:inline-block;width:50%}
|
|
4
|
+
|
|
5
|
+
._6o30E:hover ._3yReT{background-color:#4E9ACE;border-color:#4E9ACE;color:#fff}._3yReT:hover ~ ._3yReT{background-color:#f1f1f1;border-color:#f1f1f1;color:#333}
|
|
6
|
+
|
|
7
|
+
._3jzt0{width:33%;vertical-align:top}._3jzt0:first-child{padding-left:0 !important}._3jzt0:last-child{padding-right:0 !important}._78r7L{width:25%}.aFhSG{background-color:#4E9ACE;color:#fff}
|
|
8
|
+
|
|
9
|
+
._1SMXf{max-width:12rem}
|
|
10
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
._2fUyj{width:1.5rem;height:1.5rem}
|
|
2
|
+
|
|
3
|
+
._uEVJ{width:1.5rem;height:1.5rem}._1oLg0{cursor:pointer}
|
|
4
|
+
|
|
5
|
+
.cAujD{background-color:#F8981D;color:#fff}
|
|
6
|
+
|
|
7
|
+
._3T40U{width:1.5rem;height:1.5rem}._3FRzz{cursor:pointer}
|
|
8
|
+
|
|
9
|
+
._1N_VT{font-weight:600}._4pk2s{margin-bottom:1rem}._3SoBV{height:1.5rem;position:relative;margin-top:-0.25rem}._3SoBV svg{width:1.5rem;height:1.5rem}._1nYZg span:after{content:','}._1nYZg span:last-child:after{content:''}
|
|
10
|
+
|
|
11
|
+
._1ZuuN{font-weight:600}
|
|
12
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
._1MHyt{height:0;background-color:#f1f1f1;background-size:cover;padding-bottom:-webkit-calc(720 / 1280 * 100%);padding-bottom:calc(720 / 1280 * 100%)}._1MHyt h3{top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);text-shadow:1px 1px 1px rgba(0,0,0,0.5);overflow-wrap:break-word;max-width:-webkit-calc(100% - 2.5rem);max-width:calc(100% - 2.5rem);z-index:10;max-height:7.2rem;padding:0.18rem 0;overflow:hidden;-moz-box-sizing:content-box;box-sizing:content-box}@media (max-width: 1200px){._1MHyt h3{max-height:5.4rem}}._1MHyt:before{content:" ";top:.625rem;left:.625rem;right:.625rem;bottom:.625rem;position:absolute;background:rgba(51,51,51,0.5);z-index:5;-webkit-transition:background linear 500ms;transition:background linear 500ms}._1MHyt:hover:before{background:rgba(51,51,51,0.25)}._3-hwy{background:none;top:0;width:2rem;height:2rem;margin-top:.9375rem;margin-right:.9375rem;z-index:10}._3-hwy svg{opacity:0.5;text-shadow:1px 1px 1px rgba(0,0,0,0.5)}._3-hwy:hover{background-color:rgba(0,0,0,0.5)}._3-hwy:hover svg{opacity:1}
|
|
2
|
+
|
|
3
|
+
._2TIZ7{background-color:#fff;font-weight:bold;z-index:60;width:18rem;display:inline-block;border-radius:.25rem;line-height:1.5rem;box-shadow:0.1875rem 0.125rem 10px rgba(51,51,51,0.3)}._3JzEU{vertical-align:middle;display:inline-block;width:1.5rem;height:1.5rem}._1Kdwj{vertical-align:middle;display:inline-block}
|
|
4
|
+
|
|
5
|
+
._2wBn3{background-color:#eaeaea}._1r3AS a,._1r3AS a:hover{color:#B5B5B5 !important}
|
|
6
|
+
|
|
7
|
+
._3cCHx{background-color:#f1f1f1 !important;position:relative}._3cCHx:after{content:' ';position:absolute;top:0;left:0;right:0;bottom:0;display:inline-block;z-index:2;background-color:rgba(255,255,255,0.5)}
|
|
8
|
+
|
|
9
|
+
._2F3Cz{width:1.5rem;height:1.5rem;margin-top:-.75rem;top:50%;right:0}._2F3Cz.show{z-index:11}._2TdId{width:100%;height:100%;cursor:pointer}
|
|
10
|
+
|
|
11
|
+
._293SV{width:1.5rem;height:1.5rem;margin-top:-.75rem;top:50%;right:0}._23YxG{width:100%;height:100%;cursor:pointer}
|
|
12
|
+
|
|
13
|
+
._3vCmp{top:0;right:.625rem;width:2rem;height:2rem;margin-top:.9375rem}._3vCmp svg{opacity:0.5;text-shadow:1px 1px 1px rgba(0,0,0,0.5)}._3vCmp:hover{background-color:rgba(0,0,0,0.4)}._3vCmp:hover svg{opacity:1;color:#fff}
|
|
14
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
._3Vziu{background-color:#f1f1f1;color:#B5B5B5}._3Vziu:hover{background-color:#f1f1f1;color:#B5B5B5}
|
|
2
|
+
|
|
3
|
+
._2FsA6{width:5.625rem}.v6msX{cursor:pointer}.v6msX:hover{text-decoration:underline}
|
|
4
|
+
|
|
5
|
+
._1X4l5{border-radius:.25rem;font-weight:600}
|
|
6
|
+
|
|
7
|
+
._27gR6{width:1rem;height:1rem}._27gR6 svg{vertical-align:top}
|
|
8
|
+
|
|
9
|
+
._5idZs:hover{text-decoration:none}._3Ty4M{font-weight:500}
|
|
10
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
._1a1Re{font-weight:600}._2MZC5{position:relative}._3U9j9{white-space:pre-wrap}._1YjUg,._3SNtn,.xy3i9{position:absolute;padding-left:1.25rem;bottom:0;right:0;background:-webkit-gradient(linear, left top, right top, color-stop(0, rgba(255,255,255,0)), color-stop(#fff), color-stop(2rem), to(#fff));background:linear-gradient(to right, rgba(255,255,255,0) 0, #fff, 2rem, #fff);color:#979797}._3SNtn{padding-right:3rem;letter-spacing:0.1rem}.xy3i9{cursor:pointer}._1_L9t{display:inline}.TCdgP{display:none}._18ojI{padding-bottom:1.25rem}.nLuVF{max-height:3.9375rem;overflow:hidden}.sEELY{max-height:6.5625rem;overflow:hidden}
|
|
2
|
+
|
|
3
|
+
._3IJcl{color:#fff;cursor:default}
|
|
4
|
+
|
|
5
|
+
._-0ibU{width:1.5rem;height:1.5rem;display:inline-block;position:absolute;left:.375rem;margin-top:-.75rem;top:50%}._28zhr{position:relative;padding-left:1.875rem}._2r4VF{visibility:hidden;font-weight:600;margin-bottom:-0.75rem;margin-top:0.25rem}
|
|
6
|
+
|
|
7
|
+
._13khy{position:relative}._gEcp{width:8rem;height:4.5rem}.zuMb1{width:-webkit-calc(100% - 19.25rem);width:calc(100% - 19.25rem);vertical-align:top}._1ppp8{width:10rem}._2Ru6c{cursor:pointer}._2Ru6c:hover{background-color:#f8f8f8}._2Ru6c:hover .video-item-actions svg{color:#979797}._2Ru6c:hover .video-item-actions svg:hover{color:#313543}._2Ru6c:hover .video-item-show-preview{visibility:visible}._8l6WV{position:absolute;top:0;left:0;right:0;bottom:0;background-color:#f8f8f8;z-index:3}
|
|
8
|
+
|
|
9
|
+
._1Jo6e{border-radius:5px;overflow:hidden}._7tGnj{height:31rem;overflow-y:scroll}.csNIF{width:7.5rem;height:7.5rem}._30NNv{min-height:10.6875rem}._10__f{min-height:4.09375rem}
|
|
10
|
+
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
._15vRB{width:20rem}._15vRB a{color:#4E9ACE !important;cursor:pointer}._15vRB a:hover{text-decoration:underline !important}
|
|
2
|
+
|
|
3
|
+
._5idZs:hover{text-decoration:none}._3Ty4M{font-weight:500}
|
|
4
|
+
|
|
5
|
+
._1SwZ2{width:20rem}._3f4T9{width:-webkit-calc(100% - 20rem);width:calc(100% - 20rem);vertical-align:top}
|
|
6
|
+
|
|
7
|
+
._303Nb{min-height:40rem}._2ZCHY{width:-webkit-calc(100% - 20rem);width:calc(100% - 20rem);vertical-align:top}
|
|
8
|
+
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
._2TTgs{text-align:left}._3wN7o{padding-left:0;margin-bottom:0}._3Xf1P{cursor:pointer;max-height:24.75rem;overflow-y:scroll;width:100%}._199PI{background-color:#fff}._199PI:hover{background-color:rgba(132,134,141,0.25)}
|
|
2
|
+
|
|
3
|
+
._2RaQu{max-width:100%;max-height:50vh;overflow-y:scroll}._2xGqi{padding-right:2rem;overflow-y:hidden;cursor:pointer}._2xGqi::after{position:absolute;right:.75rem;top:50%;margin-top:-.15em}._15kWr{color:#B5B5B5;cursor:default}._15kWr ._2xGqi::after{color:#B5B5B5}
|
|
4
|
+
|
|
5
|
+
._3m_pH{color:red}
|
|
6
|
+
|
|
7
|
+
._2yTdm{overflow-wrap:break-word}
|
|
8
|
+
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
._2F3Cz{width:1.5rem;height:1.5rem;margin-top:-.75rem;top:50%;right:0}._2F3Cz.show{z-index:11}._2TdId{width:100%;height:100%;cursor:pointer}
|
|
2
|
+
|
|
3
|
+
._293SV{width:1.5rem;height:1.5rem;margin-top:-.75rem;top:50%;right:0}._23YxG{width:100%;height:100%;cursor:pointer}
|
|
4
|
+
|
|
5
|
+
._1O42p{width:100%;margin-top:1.25rem;border-style:dashed;border-width:0.125rem;font-weight:600;position:relative;text-align:left;padding-left:1.5rem;vertical-align:middle}._1HX0v{padding:0 .625rem}._3aHT2{width:1.5rem;height:1.5rem;left:0px;top:50%;margin-top:-.75rem}
|
|
6
|
+
|
|
7
|
+
.Cz1y1,._2PAV_{width:8rem;height:8rem}._2PAV_{font-weight:600;cursor:pointer;border:0.125rem dashed #D7D7D7;color:#979797}._2PAV_:hover{color:#979797}
|
|
8
|
+
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
._2TTgs{text-align:left}._3wN7o{padding-left:0;margin-bottom:0}._3Xf1P{cursor:pointer;max-height:24.75rem;overflow-y:scroll;width:100%}._199PI{background-color:#fff}._199PI:hover{background-color:rgba(132,134,141,0.25)}
|
|
2
|
+
|
|
3
|
+
._2RaQu{max-width:100%;max-height:50vh;overflow-y:scroll}._2xGqi{padding-right:2rem;overflow-y:hidden;cursor:pointer}._2xGqi::after{position:absolute;right:.75rem;top:50%;margin-top:-.15em}._15kWr{color:#B5B5B5;cursor:default}._15kWr ._2xGqi::after{color:#B5B5B5}
|
|
4
|
+
|
|
5
|
+
._1tdTv{font-weight:600}
|
|
6
|
+
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
._2TTgs{text-align:left}._3wN7o{padding-left:0;margin-bottom:0}._3Xf1P{cursor:pointer;max-height:24.75rem;overflow-y:scroll;width:100%}._199PI{background-color:#fff}._199PI:hover{background-color:rgba(132,134,141,0.25)}
|
|
2
|
+
|
|
3
|
+
._2RaQu{max-width:100%;max-height:50vh;overflow-y:scroll}._2xGqi{padding-right:2rem;overflow-y:hidden;cursor:pointer}._2xGqi::after{position:absolute;right:.75rem;top:50%;margin-top:-.15em}._15kWr{color:#B5B5B5;cursor:default}._15kWr ._2xGqi::after{color:#B5B5B5}
|
|
4
|
+
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
._3OmsX{color:#5B5E68;text-decoration:none;cursor:pointer;background-color:transparent;border:none}._3OmsX:hover{text-decoration:underline}._3kJ8m{background-size:cover;background-position:center}.uFWnL ._3kJ8m{padding-bottom:18.5%}._3_b6l ._1mYjS{width:40%}._3_b6l ._3kJ8m{padding-bottom:56.25%}
|
|
2
|
+
|
|
3
|
+
._5hYaK{display:none}
|
|
4
|
+
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
._2RaQu{max-width:100%;max-height:50vh;overflow-y:scroll}._2xGqi{padding-right:2rem;overflow-y:hidden;cursor:pointer}._2xGqi::after{position:absolute;right:.75rem;top:50%;margin-top:-.15em}._15kWr{color:#B5B5B5;cursor:default}._15kWr ._2xGqi::after{color:#B5B5B5}
|
|
2
|
+
|
|
3
|
+
._3nkrW{max-height:6.5625rem;overflow-y:auto}
|
|
4
|
+
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
._2HK7r{cursor:default}
|
|
2
|
+
|
|
3
|
+
._1U-Yf{white-space:nowrap}._3hYSf{width:1.5rem;height:1.5rem}._3hYSf svg{color:#979797}._2kY6B{font-weight:500}._3UjU0{cursor:default;color:#D7D7D7 !important}._3UjU0 ._3hYSf svg{color:#D7D7D7 !important}._3UjU0 ._3hYSf svg:hover{color:#D7D7D7 !important}._3UjU0 ._2kY6B{color:#D7D7D7}
|
|
4
|
+
|
|
5
|
+
._3Vziu{background-color:#f1f1f1;color:#B5B5B5}._3Vziu:hover{background-color:#f1f1f1;color:#B5B5B5}
|
|
6
|
+
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
._15jUh{height:625px}._1NjZL{font-weight:600;font-size:1rem}.fp9FZ circle{stroke:#60B789}.fp9FZ::after{background:white}._28z_5{width:850px}
|
|
2
|
+
|
|
3
|
+
._3iX0l{height:20rem;width:20rem;position:relative;margin:0 auto;border-radius:50%;background-color:#D7D7D7}._3iX0l::after{top:1.5rem;left:1.5rem;position:absolute;display:block;content:" ";border-radius:50%;background-color:#eaeaea;width:17rem;height:17rem}._3iX0l>span{position:absolute;left:0;top:5rem;z-index:1;width:20rem;font-size:5.75em;font-weight:600;display:block;text-align:center;white-space:nowrap}._3iX0l>span>._1nYnx{margin:-10px auto;max-width:70%;color:#5B5E68;font-weight:400;display:block;font-size:1rem}._2l1Al{height:20rem;width:20rem;position:relative;margin:0 auto;border-radius:50%;background-color:#D7D7D7}._1RbA5{-webkit-transition:5s stroke-dashoffset;transition:5s stroke-dashoffset}
|
|
4
|
+
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
._1dRs0{background:white;border-radius:5px;box-shadow:0 1px 4px 1px #D7D7D7;border:1px solid #D7D7D7;overflow:hidden}._3dpUO{border-right:1px solid #eaeaea;max-width:22rem;overflow-y:auto;max-height:40rem}
|
|
2
|
+
|
|
3
|
+
._13Gu_{background-color:transparent;padding:0.1rem 0}._2mbEb{padding-left:0}._2mbEb:hover{color:#F8981D}._2NhVk{list-style:none;padding-left:1.5rem}._2NhVk ._1dMK1{max-width:100%;display:block;-moz-box-sizing:border-box;box-sizing:border-box;padding:0.125rem 1.5rem}._2NhVk ._1dMK1:hover{text-decoration:none}._1AACi>._13Gu_ ._2mbEb{color:#F8981D}
|
|
4
|
+
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
.bJ21G{border-radius:5px;box-shadow:0 1px 4px 1px #D7D7D7;border:1px solid #D7D7D7}._1T3fH{color:#5B5E68}._3m6CX{font-size:1rem}.MVm9U{width:650px}.KH7rf{position:relative;margin:0 auto;text-align:center}.KH7rf img{display:inline-block}.KH7rf ._2-0ob{margin-right:25px;width:100px}.KH7rf ._2Rh0f{position:relative;width:65px;-webkit-animation:oXD93 1.7s infinite ease;animation:oXD93 1.7s infinite ease;-webkit-transform:rotate(-20deg) scale(0.8);transform:rotate(-20deg) scale(0.8);opacity:.7}.KH7rf ._3B9BP{margin-top:20px;margin-left:25px;width:170px}@-webkit-keyframes oXD93{0%{top:0px;left:-100px;-webkit-transform:rotate(-20deg) scale(0.8);transform:rotate(-20deg) scale(0.8);opacity:.7}50%{top:-50px;left:25px;-webkit-transform:rotate(0) scale(1.4);transform:rotate(0) scale(1.4);opacity:1}100%{top:10px;left:150px;-webkit-transform:rotate(20deg) scale(0.8);transform:rotate(20deg) scale(0.8);opacity:.7}}@keyframes oXD93{0%{top:0px;left:-100px;-webkit-transform:rotate(-20deg) scale(0.8);transform:rotate(-20deg) scale(0.8);opacity:.7}50%{top:-50px;left:25px;-webkit-transform:rotate(0) scale(1.4);transform:rotate(0) scale(1.4);opacity:1}100%{top:10px;left:150px;-webkit-transform:rotate(20deg) scale(0.8);transform:rotate(20deg) scale(0.8);opacity:.7}}
|
|
2
|
+
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
.GpK3N{border-radius:5px;box-shadow:0 1px 4px 1px #D7D7D7;border:1px solid #D7D7D7}._2tQJA{font-size:1rem;color:#5B5E68}.BxsJX{font-weight:600}._2OS3h{font-weight:600}._1sNAq{margin-left:1rem}.xsCzA{margin:0 auto}._3jOln{border-bottom-left-radius:5px;border-bottom-right-radius:5px}.n_A_A{background-color:#51ADA3}.plIse{background-color:#51ADA3;color:white}._33xeg{width:650px}
|
|
2
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
._37GpR{background-color:#F8981D;color:#fff;cursor:default}._2lAYT{color:#fff;cursor:default}._19ncQ{width:1.75rem;height:1.75rem;cursor:default;margin:0 -0.25rem}._19ncQ svg{vertical-align:text-bottom}._26lCi>span{vertical-align:middle}.UdQeS{background-color:rgba(255,205,82,0.3);cursor:default}.ExFLF{background-color:rgba(255,205,82,0.3);color:#d29500;cursor:default}._3dcfL{background-color:rgba(217,88,79,0.25);color:#D9584F;cursor:default}
|
|
2
|
+
|
|
3
|
+
._25RMJ{cursor:default}._1k8KB{width:1.25rem;height:1.25rem;cursor:default}._1k8KB svg{vertical-align:text-bottom}
|
|
4
|
+
|
|
5
|
+
.P3914{cursor:default}
|
|
6
|
+
|
|
7
|
+
._34Z19{color:#D7D7D7}.cZAmH{visibility:hidden;font-weight:600}
|
|
8
|
+
|
|
9
|
+
.QvhY0{font-weight:600}._2qax8{width:1.25rem;height:1.25rem}
|
|
10
|
+
|
|
11
|
+
._3BLCF{width:1.25rem}._16jlV{width:8rem;height:4.5rem}._2mMws{width:-webkit-calc(100% - 19.25rem);width:calc(100% - 19.25rem);vertical-align:top}.I31I0{width:10rem}._2VkOe ._2mMws{width:-webkit-calc(100% - 20.5rem);width:calc(100% - 20.5rem)}.PoHa- .video-item-actions svg{color:#D7D7D7}.PoHa- .video-item-actions .ui-more svg{color:#979797}.PoHa-:hover{background-color:#f8f8f8}.PoHa-:hover .video-item-actions svg{color:#979797}.PoHa-:hover .video-item-actions svg:hover{color:#313543}.PoHa-:hover .video-item-show-preview{visibility:visible}.qFjv2 .PoHa-{background-color:#f1f1f1}.qFjv2 .PoHa-:hover{background-color:#f1f1f1}.qFjv2 .PoHa- ._16jlV{position:relative}.qFjv2 .PoHa- ._16jlV:after{position:absolute;top:0;left:0;right:0;bottom:0;display:block;content:" ";background:rgba(255,255,255,0.5);z-index:1}.qFjv2._2VkOe ._3iAFa{width:2.25rem}._2UBZX{-webkit-transition:height 0.3s ease-in-out;transition:height 0.3s ease-in-out;height:0;overflow:hidden}
|
|
12
|
+
|
|
13
|
+
._2TIZ7{background-color:#fff;font-weight:bold;z-index:60;width:18rem;display:inline-block;border-radius:.25rem;line-height:1.5rem;box-shadow:0.1875rem 0.125rem 10px rgba(51,51,51,0.3)}._3JzEU{vertical-align:middle;display:inline-block;width:1.5rem;height:1.5rem}._1Kdwj{vertical-align:middle;display:inline-block}
|
|
14
|
+
|
|
15
|
+
._3cCHx{background-color:#f1f1f1 !important;position:relative}._3cCHx:after{content:' ';position:absolute;top:0;left:0;right:0;bottom:0;display:inline-block;z-index:2;background-color:rgba(255,255,255,0.5)}
|
|
16
|
+
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
._3Eqbe{display:block;position:relative;width:15.0625rem;height:14.3125rem;margin:0 auto}._3Eqbe div{display:block;position:absolute}._39GQb{position:absolute}.PVOtq{position:absolute;left:1.0625rem;top:0.625rem;z-index:2}._3z13a{position:absolute;z-index:3;top:4.876rem;left:8.5rem}@-webkit-keyframes _2FR1z{0%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}48%{-webkit-transform:rotate(-20deg);transform:rotate(-20deg)}55%{-webkit-transform:rotate(-20deg);transform:rotate(-20deg)}90%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}100%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}}@keyframes _2FR1z{0%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}48%{-webkit-transform:rotate(-20deg);transform:rotate(-20deg)}55%{-webkit-transform:rotate(-20deg);transform:rotate(-20deg)}90%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}100%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}}@-webkit-keyframes _12szO{0%{-webkit-transform:translateY(5px);transform:translateY(5px)}50%{-webkit-transform:translateY(-2px);transform:translateY(-2px)}100%{-webkit-transform:translateY(5px);transform:translateY(5px)}}@keyframes _12szO{0%{-webkit-transform:translateY(5px);transform:translateY(5px)}50%{-webkit-transform:translateY(-2px);transform:translateY(-2px)}100%{-webkit-transform:translateY(5px);transform:translateY(5px)}}._3Eqbe .PVOtq{-webkit-animation:_2FR1z 4s infinite ease-out;animation:_2FR1z 4s infinite ease-out}._3Eqbe ._3z13a{-webkit-animation:_12szO 1s infinite ease-out;animation:_12szO 1s infinite ease-out}._1memV{z-index:1;top:10.75rem;left:10.3125rem;-webkit-transform-origin:bottom right;transform-origin:bottom right}._2V4lb{z-index:1;top:8rem;left:1.375rem;-webkit-transform-origin:bottom right;transform-origin:bottom right}._3Eqbe ._2V4lb{-webkit-animation:_2atTc .7s infinite;animation:_2atTc .7s infinite}._3Eqbe ._1memV{-webkit-animation:_13j3E .5s infinite;animation:_13j3E .5s infinite}@-webkit-keyframes _13j3E{0%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}50%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}90%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}100%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}}@keyframes _13j3E{0%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}50%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}90%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}100%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}}@-webkit-keyframes _2atTc{0%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}50%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}90%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}100%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}}@keyframes _2atTc{0%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}50%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}90%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}100%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}}
|
|
2
|
+
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
._10r2k{width:50%;position:relative;top:-25px;margin:0 auto}._1O7-y,._1cN_3{font-size:0.95rem}.bxulh,._1cN_3{font-weight:600}._1cN_3:focus{box-shadow:none}._2OYs-{background-color:#5B5E68;border-radius:0.25rem}._1dD-L{background-color:white;position:relative;top:-14px;border-bottom-left-radius:0.25rem;border-bottom-right-radius:0.25rem;-webkit-transition:none !important;transition:none !important}._1dD-L ._2sqEn{padding-top:1rem}._1dD-L hr{height:2px;background-color:#eaeaea;margin:0;border:none}._2Hcov{width:850px}
|
|
2
|
+
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
._2mvcb{margin:0 auto;border-radius:5px;box-shadow:0 1px 4px 1px #D7D7D7;border:1px solid #D7D7D7}._kJhb{width:650px}.wszk6{margin:0 auto;font-size:1rem}._1HF1l{margin:0 auto;width:33%}._2SXoK{font-weight:600}._2wZJN{position:relative;right:-0.2rem}._2wZJN svg{width:1.5rem;height:1.5rem}
|
|
2
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
._3RFYO{height:34.375rem;overflow-y:auto}
|
|
2
|
+
|
|
3
|
+
.O5CMF{background-color:#51ADA3}.MjcUE{text-decoration:underline}
|
|
4
|
+
|
|
5
|
+
.BSPKV{font-weight:600}
|
|
6
|
+
|
|
7
|
+
._3TgUv{height:34.375rem}
|
|
8
|
+
|
|
9
|
+
._1aNlZ{margin-top:0.45rem}._325nt{height:0.5rem;border-radius:5px}
|
|
10
|
+
|
|
11
|
+
._3iX0l{height:20rem;width:20rem;position:relative;margin:0 auto;border-radius:50%;background-color:#D7D7D7}._3iX0l::after{top:1.5rem;left:1.5rem;position:absolute;display:block;content:" ";border-radius:50%;background-color:#eaeaea;width:17rem;height:17rem}._3iX0l>span{position:absolute;left:0;top:5rem;z-index:1;width:20rem;font-size:5.75em;font-weight:600;display:block;text-align:center;white-space:nowrap}._3iX0l>span>._1nYnx{margin:-10px auto;max-width:70%;color:#5B5E68;font-weight:400;display:block;font-size:1rem}._2l1Al{height:20rem;width:20rem;position:relative;margin:0 auto;border-radius:50%;background-color:#D7D7D7}._1RbA5{-webkit-transition:5s stroke-dashoffset;transition:5s stroke-dashoffset}
|
|
12
|
+
|
|
13
|
+
._2PRgW{position:absolute;right:0;bottom:0.2rem}
|
|
14
|
+
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
._1rbBR{position:relative}.htYy7::after{position:absolute;right:.75rem;top:50%;margin-top:-.15em}._1sQ7D{width:1rem;height:1rem}._2CM1D{background-color:#fff;border-color:#f1f1f1;color:#B5B5B5;-webkit-transition:none;transition:none;-moz-box-sizing:content-box;box-sizing:content-box}._2CM1D:focus{box-shadow:none}._3uv-z:hover ._2CM1D{border-color:#B5B5B5;color:#B5B5B5;z-index:2}._3uv-z:hover ._2CM1D.uC5RG{border-color:#5B5E68;color:#333;z-index:3}._2CM1D:hover ~ ._2CM1D{border-color:#f1f1f1;color:#B5B5B5;z-index:1}.uC5RG{border-color:#5B5E68;color:#333;z-index:2}._3-I1L{opacity:.5;cursor:default !important}._3-I1L:focus,._3-I1L:active{box-shadow:none !important}._10amI{font-weight:500}
|
|
2
|
+
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
._1I6jj ._1ze5G{cursor:pointer}._1I6jj ._1ze5G:hover{text-decoration:underline}._1I6jj .invalid-feedback{display:block}._1I6jj .is-invalid .btn-group{border:0.0625rem solid #D9584F;border-radius:.25rem}._1I6jj ._2hO8J{background-color:#f1f1f1;opacity:1;border:0.0625rem solid #D7D7D7;cursor:default !important;color:#B5B5B5}._1I6jj .mnQ5O{background-color:#D7D7D7}
|
|
2
|
+
|
|
3
|
+
._3S5iJ{color:red}._3iZQ5{color:#B5B5B5}.B4xS9 ._3n3sM,._3bWJB ._3n3sM,._3qayV ._3n3sM,._3ojjo ._3n3sM,._2hA-0 ._3n3sM,._1SMGG ._3n3sM,._3AkUv ._3n3sM,._1DYCl ._3n3sM,._2CbiR ._3n3sM,._3hB5o ._3n3sM,.ksEaA ._3n3sM,.h7P2B ._3n3sM,._3fMUg ._3n3sM,.GwqaB ._3n3sM{display:none}.B4xS9 ._3n3sM a,._3bWJB ._3n3sM a,._3qayV ._3n3sM a,._3ojjo ._3n3sM a,._2hA-0 ._3n3sM a,._1SMGG ._3n3sM a,._3AkUv ._3n3sM a,._1DYCl ._3n3sM a,._2CbiR ._3n3sM a,._3hB5o ._3n3sM a,.ksEaA ._3n3sM a,.h7P2B ._3n3sM a,._3fMUg ._3n3sM a,.GwqaB ._3n3sM a{cursor:pointer}.B4xS9 ._3n3sM a:hover,._3bWJB ._3n3sM a:hover,._3qayV ._3n3sM a:hover,._3ojjo ._3n3sM a:hover,._2hA-0 ._3n3sM a:hover,._1SMGG ._3n3sM a:hover,._3AkUv ._3n3sM a:hover,._1DYCl ._3n3sM a:hover,._2CbiR ._3n3sM a:hover,._3hB5o ._3n3sM a:hover,.ksEaA ._3n3sM a:hover,.h7P2B ._3n3sM a:hover,._3fMUg ._3n3sM a:hover,.GwqaB ._3n3sM a:hover{text-decoration:underline !important}.B4xS9:hover>._3n3sM,._3bWJB:hover>._3n3sM,._3qayV:hover>._3n3sM,._3ojjo:hover>._3n3sM,._2hA-0:hover>._3n3sM,._1SMGG:hover>._3n3sM,._3AkUv:hover>._3n3sM,._1DYCl:hover>._3n3sM,._2CbiR:hover>._3n3sM,._3hB5o:hover>._3n3sM,.ksEaA:hover>._3n3sM,.h7P2B:hover>._3n3sM,._3fMUg:hover>._3n3sM,.GwqaB:hover>._3n3sM{display:inline-block}.quxL2{height:1.5rem;position:relative;margin-top:-0.25rem}.quxL2 svg{width:1.5rem;height:1.5rem}._18UDY{width:1.25rem;height:1.25rem;display:inline-block;color:#B5B5B5}
|
|
4
|
+
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
svg{fill:currentColor;width:100%;height:100%}.svg-container{width:1.5rem;height:1.5rem}
|
|
2
|
+
|
|
3
|
+
._1OZCN{padding-left:-webkit-calc(3.75rem) !important;padding-left:calc(3.75rem) !important}._35XrM{width:8rem;height:4.5rem}._1-L5x{width:-webkit-calc(100% - 8rem);width:calc(100% - 8rem);height:4.5rem}._3nfiJ{width:25%;height:1.4rem}
|
|
4
|
+
|
|
5
|
+
._38Usa{padding-top:-webkit-calc(1.25rem + 1.5rem + .625rem) !important;padding-top:calc(1.25rem + 1.5rem + .625rem) !important}
|
|
6
|
+
|
|
7
|
+
._1ltue{width:20%;height:2.5rem}
|
|
8
|
+
|
|
9
|
+
._3KP84,._1MR01{height:-webkit-calc(1.3125rem - .3125rem);height:calc(1.3125rem - .3125rem)}._1GUmS{width:1.5rem;height:1.5rem;display:inline-block;vertical-align:top;margin-right:.3125rem;border-radius:100%}._34ETn{width:-webkit-calc(100% - 1.5rem - .625rem);width:calc(100% - 1.5rem - .625rem);display:inline-block;vertical-align:top}._3KP84{max-height:3rem;overflow:hidden}._1MR01{width:15%}
|
|
10
|
+
|
|
11
|
+
._35CAt ._1r5u9:last-child{border-bottom:none !important}._1ttnP{width:40%}._3Tq3M{width:75%}._33-LZ{width:25%}._1ttnP,._3Tq3M,._33-LZ{height:1rem}
|
|
12
|
+
|
|
13
|
+
._1cCHt{background-color:#f8f8f8}._2x-so{width:3.5rem;height:1.25rem;border-radius:1rem}._2y4ng{width:6rem}._1uCMl{width:20rem;height:2.1875rem}._1uCMl:after{position:absolute;right:.75rem;top:50%;margin-top:-.15em}
|
|
14
|
+
|
|
15
|
+
._3_8yg{height:-webkit-calc(2 * 2rem + 1.875rem + 1.3125rem);height:calc(2 * 2rem + 1.875rem + 1.3125rem)}
|
|
16
|
+
|
|
17
|
+
._16p9Y{background-color:#f1f1f1;background-size:cover;background-position:center;height:0;padding-bottom:-webkit-calc(185 / 1000 * 100%);padding-bottom:calc(185 / 1000 * 100%)}._16p9Y .KoZV-{background-color:rgba(0,0,0,0.5);top:0;width:2rem;height:2rem}._16p9Y .KoZV- svg{opacity:1;text-shadow:1px 1px 1px rgba(0,0,0,0.5)}._16p9Y h1{bottom:1.25rem;left:1.25rem;max-width:100%;text-shadow:1px 1px 1px rgba(0,0,0,0.5);overflow-wrap:break-word;max-height:5.2rem;overflow:hidden;padding:0.1rem 1.25rem 0.1rem 0}
|
|
18
|
+
|
|
19
|
+
._3owCz{width:8.8rem}
|
|
20
|
+
|
|
21
|
+
._10tNq:after{display:inline-block;vertical-align:middle;width:5.125rem;height:2.0625rem;content:""}
|
|
22
|
+
|
|
23
|
+
.oGPHd{width:100%;height:155px}._1tn1v,._1OlIS,._3xERx{width:100%;height:1.85rem}._1OlIS,._3xERx{width:75%;height:1.35rem}._3xERx{width:50%}
|
|
24
|
+
|
|
25
|
+
.rJRCI,._3O5I3{width:200px;height:1.55rem;margin-top:0.7rem}._3O5I3{width:70px}
|
|
26
|
+
|
|
27
|
+
.z4_PP,._1CvDv{width:10rem;height:1.85rem}._1CvDv{width:50%;height:1.35rem}
|
|
28
|
+
|
|
29
|
+
._1K9wl,._31qrm,._1VUMk,._35o6Z{width:8rem;height:1.75rem}._1VUMk{width:6rem}._35o6Z{width:12rem}._2SZ3v{width:8rem;height:2rem}
|
|
30
|
+
|
|
31
|
+
._1JGs8{width:8rem;height:1.3125rem}._11o1N{width:6rem;height:1.3125rem}.ebrIQ{height:12.5rem}._2xpxP,._3OIzb{height:2.1875rem;width:100%}._3OIzb{height:4rem}
|
|
32
|
+
|
|
33
|
+
._1Yt1j,.tJ4KG,._2BFZB{width:8rem;height:2rem}.tJ4KG,._2BFZB{width:100%}._2BFZB{height:1.5rem}
|
|
34
|
+
|
|
35
|
+
._2KAd_,._2ai1L{width:8rem;height:1.25rem}._2ai1L{height:2rem;width:100%}.crdSU{width:8rem;height:2.5rem}
|
|
36
|
+
|
|
37
|
+
.H6oUk{position:relative;width:100%;padding:0;overflow:hidden;padding-top:56.25%}
|
|
38
|
+
|
|
39
|
+
._15fBJ{width:8rem;height:2rem}._2OP4S{height:1.5rem;width:40%}._17wos{width:50%;height:4rem;border-radius:0.25rem}
|
|
40
|
+
|
|
41
|
+
._11___{height:5rem}._3RRYx{height:2.1875rem}
|
|
42
|
+
|
|
43
|
+
._3pMnf{border-bottom:0.125rem solid #eaeaea}._3DDqe{background-color:#f8f8f8;border-bottom:1px solid #eaeaea}._3DDqe a{text-align:center;cursor:pointer}._3DDqe a:hover{text-decoration:none}._3DDqe .WtJIT{max-width:22rem}._3DDqe ._2P6wN{max-width:17rem}._36_Ky ._3DDqe{background-color:#fff}._36_Ky ._3DDqe ._2P6wN{display:none}._36_Ky .WtJIT{text-align:left}.oHXCU ._3DDqe .WtJIT{background-color:#fff;border-bottom:1px solid #fff;margin-bottom:-1px;border-right:1px solid #eaeaea;font-weight:bold}.oHXCU ._3DDqe ._2P6wN{border-left:1px solid #eaeaea;margin-left:-1px;margin-bottom:-1px}._Ztdf ._3DDqe ._2P6wN{background-color:#fff;margin-bottom:-1px;border-left:1px solid #eaeaea;border-right:1px solid #eaeaea;border-bottom:1px solid #fff}.edUQE{color:#FFCD52;vertical-align:middle}
|
|
44
|
+
|
|
45
|
+
._2YEbA{max-height:34.375rem;overflow:hidden}._1-Tvp,._3BDvT{width:14rem;height:1.1rem;top:0.2rem;position:relative}._3BDvT{width:4rem}._2ew2h{top:0.1rem}
|
|
46
|
+
|
|
47
|
+
.O3FnZ{display:inline-block;top:-0.2rem}.O3FnZ svg{width:1.8rem;height:1.8rem}.Rbj8Y{border-bottom:1px solid #eaeaea}._2mKzS{top:0.1rem}._3ajGP{font-weight:600}
|
|
48
|
+
|
|
49
|
+
._2s0QU{display:none;color:#4E9ACE;font-weight:500}._2s0QU:hover{color:#4E9ACE;text-decoration:none}._1ncwl{color:#B5B5B5}._2G1C1{opacity:0.5}._2G1C1 .custom-control-input:checked ~ .custom-control-label::before{border:none !important}._225JZ{top:0.1rem}.fFRMW{border-bottom:1px solid #eaeaea}.fFRMW ._3YCJO{font-weight:400;color:#313543;text-decoration:none}.fFRMW:hover{background-color:#f8f8f8}.fFRMW:hover ._1ncwl{display:none}.fFRMW:hover ._2s0QU{display:inline-block}._37_lU{width:2rem}._3gjN2{font-style:italic;color:#B5B5B5;font-size:0.75rem;margin-top:0.1rem}
|
|
50
|
+
|
|
51
|
+
._1S3_p,._1pAWe{width:12rem;height:1.75rem;opacity:0.75}._1pAWe{height:1.25rem;width:10rem;margin:0 0 0 auto}
|
|
52
|
+
|
|
53
|
+
.rShIv{width:80%;height:1.25rem}
|
|
54
|
+
|
|
55
|
+
._3qlXe{border-top:1px solid #eaeaea}._1ul9Z{font-weight:500;color:#5B5E68}._3HS1V{min-width:90px;padding:0.25rem 1.25rem;color:white}
|
|
56
|
+
|
|
57
|
+
.b4Mqw{height:3.375rem}._2OV3l{display:inline-block;margin-top:0.35rem}._6H8te{margin-top:0.35rem;font-weight:500}._6H8te svg{width:1.5rem;margin:-0.2rem 0.2rem 0 0}._3RKrR{margin-left:1rem;display:inline-block}._1T015{width:1.05rem;height:1.05rem;position:relative;top:-0.15rem}._3Q3UJ{width:1.35rem;height:1.35rem;position:relative;top:-0.15rem;color:#D7D7D7}.ZsxkB{color:#60B789}.uKtsP{position:relative;top:1px;left:2px}
|
|
58
|
+
|
|
59
|
+
._1CETN{width:8.75rem}
|
|
60
|
+
|
|
61
|
+
._3QS4m{width:8rem;height:8rem;margin:0 auto}._1odt6{display:block;height:2.1875rem}.JJCF1{position:relative;top:0.4375rem;display:block;height:1.25rem;width:6.25rem;margin-left:1.25rem}
|
|
62
|
+
|
|
63
|
+
._3hPOj{width:8rem;height:2rem}._2zGvZ{display:block;height:8.125rem}
|
|
64
|
+
|
|
65
|
+
._3b-w5{width:9rem;height:1.35rem}.k49US{width:50%;height:1.35rem;margin-bottom:0.8rem}._1QGdP{width:90%;height:2.7rem}._2V8gJ{width:25rem;height:15rem}
|
|
66
|
+
|
|
67
|
+
._2x-al{width:8rem;height:2rem}.hFvEo{height:1.5rem;width:40%}
|
|
68
|
+
|
|
69
|
+
.cy-sv{width:3rem}._35_iB{width:4rem}._2sYuD{width:5rem}
|
|
70
|
+
|
|
71
|
+
.fXaTF{padding-left:-webkit-calc(1.875rem);padding-left:calc(1.875rem)}._3Ygal{width:1.5rem;height:1.5rem;left:0.375rem;top:50%;margin-top:-.75rem}._1uVUJ{padding:7.5rem}._2-GAI{height:7.5rem}._36Ljd{height:5rem}
|
|
72
|
+
|
|
73
|
+
.ZO89K,._1EbzE,._3ucfy{display:none}._2D_ox{position:relative}._2D_ox .ZO89K,._2D_ox ._1EbzE,._2D_ox ._3ucfy{display:block;position:fixed;top:0;left:0;right:0;bottom:0}._2D_ox .ZO89K{z-index:1040;background-color:#313543;opacity:.5}._2D_ox ._1EbzE{z-index:1041}._2D_ox ._1EbzE h1{position:absolute;top:50%;width:100%;text-align:center;color:#fff;margin-top:-1rem}._2D_ox ._3ucfy{z-index:1042}._2D_ox ._3sQtM{display:block;position:fixed;top:6rem;left:6rem;right:6rem;bottom:6rem;border:3px dashed #fff;border-radius:.25rem}
|
|
74
|
+
|
|
75
|
+
._1nWzn{width:1.3rem;height:1.3rem;display:inline-block;position:relative;top:-2px}
|
|
76
|
+
|
|
77
|
+
._6L-Rn{border-radius:.25rem;border:1px solid #D7D7D7;box-shadow:2px 3px 6px 1px rgba(0,0,0,0.1);-webkit-animation:_2ISjU 500ms;animation:_2ISjU 500ms}._6L-Rn .close{float:none;line-height:0.8;vertical-align:top}._3X3sP{vertical-align:top;text-align:center}._2_sUY{width:15.625rem}._2_sUY ._2nrzl{line-height:1.5;font-weight:500}._2_sUY ._2nrzl,._2_sUY ._1UIK0,._2_sUY ._2xwcl{font-size:.875rem}._2yj4z{vertical-align:middle;width:1.5rem;height:1.5rem}._1O_xv{z-index:1071}._3pw7F{-webkit-animation:eLPSS 500ms !important;animation:eLPSS 500ms !important}.OqzPi{opacity:0}@-webkit-keyframes _2ISjU{from{opacity:0}to{opacity:1}}@keyframes _2ISjU{from{opacity:0}to{opacity:1}}@-webkit-keyframes eLPSS{from{opacity:1}to{opacity:0}}@keyframes eLPSS{from{opacity:1}to{opacity:0}}
|
|
78
|
+
|
|
79
|
+
._2r3wp{top:0;bottom:0;position:absolute;width:15rem;background-color:#fff;min-height:-webkit-calc(100vh - 6.5625rem);min-height:calc(100vh - 6.5625rem);padding-bottom:1.25rem;box-shadow:0.3125rem 0 0.3125rem -0.3125rem #D7D7D7}._2tPrC{padding-left:15rem}.gzfZN{width:100%;padding-top:1.25rem}._1yUOQ{padding-left:15rem}._2Rol1{position:relative;min-height:-webkit-calc(100vh - 6.5625rem);min-height:calc(100vh - 6.5625rem)}._1TUsf{position:relative}._1TUsf ul{bottom:0;right:1.25rem;position:fixed;list-style-type:none}.QDngA ul{right:6.25rem}._1XHqq{height:100%;min-width:1200px}._1XHqq .container{min-width:-webkit-calc(1200px - 15rem);min-width:calc(1200px - 15rem)}._1XHqq .gzfZN .container{min-width:-webkit-calc(1200px - 15rem);min-width:calc(1200px - 15rem)}
|
|
80
|
+
|
|
81
|
+
._3SkbQ{width:2rem;height:2rem;color:#fff;position:relative;display:inline-block;vertical-align:middle}._3SkbQ:hover{cursor:pointer}._3SkbQ svg{fill:#fff}._3SkbQ._2TvQg{color:#fff}._3SkbQ._3taGb{color:#333}._1u6ig{position:absolute;left:1.1rem;bottom:-2px}
|
|
82
|
+
|
|
83
|
+
._1cCVc{padding:7.5rem}._3Wy1u{height:7.5rem}._3t8Qq{height:5rem}
|
|
84
|
+
|
|
85
|
+
._3CmnQ{display:block}.YYvWW{width:1.5rem;height:1.5rem;display:inline-block;vertical-align:top;margin-right:.3125rem}._1w1Jg{width:calc(100% - 1.5rem - .625rem);display:inline-block;vertical-align:top}._11n-Y{color:#979797}._3CmnQ.unread{background-color:#eef5fa}._3CmnQ.unread:hover{background-color:#daeaf5}._3CmnQ.read:hover{background-color:#f1f1f1}._3CmnQ:hover{text-decoration:none}._3JkbY{max-height:2.4rem;overflow:hidden}.YYvWW svg{vertical-align:top}._1w1Jg ._3D1fr{float:right}._1w1Jg ._3D1fr:hover{text-decoration:underline;cursor:pointer}
|
|
86
|
+
|
|
87
|
+
._1FlbK{width:1.5rem;height:1.5rem;display:inline-block;vertical-align:top;margin-right:.3125rem}._1RJPc{width:calc(100% - 1.5rem - .625rem);display:inline-block;vertical-align:top}._4fHKQ{max-height:3rem;overflow:hidden}._4fHKQ,._3hBwJ{height:calc(1.3125rem - .3125rem)}._1FlbK{border-radius:100%}._3hBwJ{width:15%}
|
|
88
|
+
|
|
89
|
+
._3BMCf{width:calc(25rem - (.75rem * 2) - (2px) - .3125rem)}
|
|
90
|
+
|
|
91
|
+
._3m62c{background-color:#f8f8f8;padding-top:0.3125rem;padding-bottom:0.3125rem}._1XxEl{width:1.2rem;height:1.2rem;display:inline-block}kbd{padding:0.2rem 0.4rem 0.2rem 0.2rem}
|
|
92
|
+
|
|
93
|
+
.ecsrN{color:#B5B5B5}.IwYkF{white-space:nowrap}._1BqAi{width:12rem}._1NEsr{padding:.15625rem}
|
|
94
|
+
|
|
95
|
+
._1ZcbC{display:inline-block;height:1.25rem;width:1.25rem;cursor:pointer}._1RLqh{color:#333;background-color:#f1f1f1;border-radius:.25rem;padding:0.25rem 0.5rem;box-sizing:border-box;margin-left:0.25rem;transition:background-color .1s, color .1s}._179a5{background-color:#F8981D;color:#fff}._3nPVB{vertical-align:middle}
|
|
96
|
+
|
|
97
|
+
.d1QVW{width:1.5rem;height:1.5rem;float:right;font-size:1.5rem;font-weight:400;opacity:.5;cursor:pointer}.d1QVW svg{vertical-align:top}.d1QVW:hover{color:#D9584F}
|
|
98
|
+
|
|
99
|
+
._1u9bn{background-color:#f1f1f1}._1CQyt{z-index:1}._2L1Hd svg,._17LPb svg{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:20%}._2L1Hd svg{color:#D7D7D7}._17LPb svg{z-index:9;color:#fff}._15X7K{position:absolute;bottom:0.25rem;right:0.25rem;color:#fff;background-color:rgba(51,51,51,0.8);z-index:2}
|
|
100
|
+
|
|
101
|
+
._1-crd{width:1.5rem;height:1.5rem;position:absolute;right:1.875rem;top:.375rem;color:#979797}._1-crd:hover{cursor:pointer;color:#5B5E68}._15HAy{position:absolute;right:.375rem;top:.375rem}._1qca6{width:100%;border:none;padding:0.75rem;height:100%;font-size:0.875rem;outline:none;border-radius:0.25rem}._3XQHi{z-index:50;border:none}._3XQHi .twitter-typeahead{height:100%;width:75%;vertical-align:middle}._3XQHi .tt-suggestion a:hover{text-decoration:none}._3XQHi .tt-hint,._3XQHi .tt-menu{width:100%}._3XQHi .tt-cursor{background-color:#f8f8f8;cursor:pointer}._3XQHi .tt-menu{background-color:#fff;right:0px;transform:translateY(0.125rem)}._3XQHi .tt-menu.hide-results{display:none !important}._3XQHi .ignore-highlighting strong{font-weight:normal}
|
|
102
|
+
|
|
103
|
+
._2oChq{width:53.4375rem;height:2.1875rem;border-radius:0.25rem;border:1px solid #D7D7D7}
|
|
104
|
+
|
|
105
|
+
._1SfF-{border-radius:50%;background-color:#51ADA3;display:inline-block;width:2.1875rem;height:2.1875rem;text-align:center;line-height:2.1875rem;background-size:cover;background-position:top center}._2C5x6{color:#fff}._3FIw8 .dropdown-menu-right::before,._3FIw8 .dropdown-menu-right::after{right:-webkit-calc(1.25rem - 7px);right:calc(1.25rem - 7px)}
|
|
106
|
+
|
|
107
|
+
._2xsqU:hover{background-color:transparent}._2xsqU:hover ._3tg2v{color:#333}
|
|
108
|
+
|
|
109
|
+
._1n37b{display:inline-block;position:absolute;right:0;top:0}._3Fpix,._2ZmdX{width:1.25rem;height:1.25rem;display:inline-block}._2ZmdX{font-size:2rem;line-height:1rem;cursor:pointer;color:#B5B5B5}._1PypJ{display:none}._3dASy{position:relative}._3dASy:hover ._3Fpix{display:none}._3dASy:hover ._2ZmdX{display:inline-block}._3GfnF{margin-right:4rem}
|
|
110
|
+
|
|
111
|
+
._3mx9H .progress-summary{width:-webkit-calc(25rem - (.75rem * 2) - (2px) - .3125rem);width:calc(25rem - (.75rem * 2) - (2px) - .3125rem)}.t6ngq{vertical-align:top;padding-left:36px;position:relative}._35apo{width:1.5rem;height:1.5rem;position:absolute;left:.375rem;top:50%;margin-top:-.75rem}
|
|
112
|
+
|
|
113
|
+
._1fkFK{text-align:center;cursor:pointer;position:relative}._2uMkl{width:2rem;height:2rem;display:inline-block;vertical-align:middle}._1oXJj{position:absolute;left:0.75rem;bottom:-6px}
|
|
114
|
+
|
|
115
|
+
._1T4m8{min-width:12rem;width:13.75rem;height:2.92062rem}._2CcDj{vertical-align:top;padding-left:36px;position:relative}._2N6Io{width:1.5rem;height:1.5rem;position:absolute;left:.375rem;top:50%;margin-top:-.75rem}.Ds2gb{padding-right:18.75rem}._3OcPu{top:0;bottom:0;right:0}
|
|
116
|
+
|
|
117
|
+
._3xqNh{min-height:-webkit-calc(1.3125rem + 1rem);min-height:calc(1.3125rem + 1rem)}._3xqNh .nav{display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex}
|
|
118
|
+
|
|
119
|
+
._3fIrz{text-shadow:0.05rem 0 0 currentColor}._3fIrz .badge{text-shadow:none}._1RDxv{height:1.5rem;position:relative;margin-top:-0.25rem}._1RDxv svg{width:1.5rem;height:1.5rem}
|
|
120
|
+
|
|
121
|
+
._1kvBB{background-color:#4E9ACE;color:#fff;text-align:center}
|
|
122
|
+
|
|
123
|
+
._1OOL3{border:1px solid transparent}.sCq0c{background-color:#fff2d2;border-color:#fff2d2 !important}
|
|
124
|
+
|