@clickview/curator 1.0.14-rc.0 → 1.0.15-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/curator-app.css +10 -2
- package/dist/curator-app.css.map +1 -0
- package/dist/curator-app.js +1 -1
- package/dist/curator-app.js.map +1 -0
- package/dist/en.json +1 -1
- package/dist/libs/analytics/src/enums/RegionName.d.ts +5 -0
- package/dist/libs/analytics/src/interfaces/AnalyticsTypes.d.ts +236 -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/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/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/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/HttpStatus.d.ts +10 -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/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/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/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/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/UrlHelper.d.ts +13 -0
- package/dist/libs/common/src/react/core/ReactApplication.d.ts +9 -0
- package/dist/libs/common/src/react/core/ReactLayoutView.d.ts +13 -0
- package/dist/libs/common/src/react/flight/FlightHelpers.d.ts +13 -0
- package/dist/libs/common/src/react/flight/FlightMiddleware.d.ts +11 -0
- package/dist/libs/common/src/react/flight/FlightReducer.d.ts +2 -0
- package/dist/libs/common/src/react/flight/FlightSimulator.d.ts +24 -0
- package/dist/libs/common/src/react/flight/constants/Actions.d.ts +7 -0
- package/dist/libs/common/src/react/flight/constants/index.d.ts +1 -0
- package/dist/libs/common/src/react/flight/data-layers/AjaxRequest.d.ts +2 -0
- package/dist/libs/common/src/react/flight/data-layers/index.d.ts +1 -0
- package/dist/libs/common/src/react/flight/enums/RequestStatus.d.ts +6 -0
- package/dist/libs/common/src/react/flight/enums/index.d.ts +1 -0
- package/dist/libs/common/src/react/flight/index.d.ts +9 -0
- package/dist/libs/common/src/react/flight/interfaces/Action.d.ts +28 -0
- package/dist/libs/common/src/react/flight/interfaces/Dispatch.d.ts +3 -0
- package/dist/libs/common/src/react/flight/interfaces/FlightState.d.ts +22 -0
- package/dist/libs/common/src/react/flight/interfaces/HttpRequest.d.ts +24 -0
- package/dist/libs/common/src/react/flight/interfaces/NormalizeOptions.d.ts +4 -0
- package/dist/libs/common/src/react/flight/interfaces/NormalizedData.d.ts +7 -0
- package/dist/libs/common/src/react/flight/interfaces/Request.d.ts +29 -0
- package/dist/libs/common/src/react/flight/interfaces/Response.d.ts +9 -0
- package/dist/libs/common/src/react/flight/interfaces/UpdateStateOptions.d.ts +15 -0
- package/dist/libs/common/src/react/flight/interfaces/index.d.ts +9 -0
- package/dist/libs/common/src/react/flight/normalizer/Denormalizer.d.ts +3 -0
- package/dist/libs/common/src/react/flight/normalizer/Normalizer.d.ts +8 -0
- package/dist/libs/common/src/react/flight/normalizer/index.d.ts +2 -0
- package/dist/libs/common/src/react/flight/utils/SimulatorHelper.d.ts +5 -0
- package/dist/libs/common/src/react/flight/utils/StateHelper.d.ts +11 -0
- package/dist/libs/common/src/react/flight/utils/index.d.ts +2 -0
- package/dist/libs/common/src/react/hooks/UseBulkFetch.d.ts +10 -0
- package/dist/libs/common/src/react/hooks/UseFetch.d.ts +10 -0
- package/dist/libs/common/src/react/hooks/UseInstance.d.ts +6 -0
- package/dist/libs/common/src/react/hooks/UseService.d.ts +2 -0
- package/dist/libs/common/src/react/index.d.ts +2 -0
- package/dist/libs/common/src/react/interfaces/ApplicationData.d.ts +3 -0
- package/dist/libs/common/src/react/interfaces/ApplicationState.d.ts +8 -0
- package/dist/libs/common/src/react/interfaces/BaseReducerActions.d.ts +4 -0
- package/dist/libs/common/src/react/interfaces/HashObject.d.ts +3 -0
- package/dist/libs/common/src/react/interfaces/index.d.ts +4 -0
- package/dist/libs/common/src/react/utils/ArrayHelper.d.ts +39 -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/common/src/react/utils/RandomHelper.d.ts +3 -0
- package/dist/libs/common/src/react/utils/TimeHelper.d.ts +7 -0
- package/dist/libs/common/src/react/utils/TypeHelper.d.ts +5 -0
- package/dist/libs/shared/src/apps/notifications/enums/NotificationType.d.ts +16 -0
- package/dist/libs/shared/src/apps/playlists/enums/PlaylistSortType.d.ts +5 -0
- package/dist/libs/shared/src/apps/playlists/interfaces/data-requests/CreateOrUpdatePlaylistRequest.d.ts +7 -0
- package/dist/libs/shared/src/apps/playlists/interfaces/data-requests/index.d.ts +1 -0
- package/dist/libs/shared/src/apps/playlists/interfaces/identifiers/PlaylistCollectionIdentifier.d.ts +5 -0
- package/dist/libs/shared/src/apps/playlists/interfaces/identifiers/PlaylistVideoCollectionIdentifier.d.ts +4 -0
- package/dist/libs/shared/src/apps/playlists/interfaces/identifiers/index.d.ts +2 -0
- package/dist/libs/shared/src/apps/playlists/interfaces/index.d.ts +2 -0
- package/dist/libs/shared/src/components/actions/ActionButton.d.ts +7 -0
- package/dist/libs/shared/src/components/actions/Actions.d.ts +21 -0
- package/dist/libs/shared/src/components/actions/ActionsDropdown.d.ts +14 -0
- package/dist/libs/shared/src/components/alert/Alert.d.ts +7 -0
- package/dist/libs/shared/src/components/alert/AlertContent.d.ts +8 -0
- package/dist/libs/shared/src/components/alert/AlertList.d.ts +8 -0
- package/dist/libs/shared/src/components/app-link/AppLink.d.ts +9 -0
- package/dist/libs/shared/src/components/confirmation-popup/ConfirmationPopup.d.ts +17 -0
- package/dist/libs/shared/src/components/div-button/DivButton.d.ts +10 -0
- package/dist/libs/shared/src/components/forms/form-buttons/FormButtons.d.ts +7 -0
- package/dist/libs/shared/src/components/forms/form-checkbox/FormCheckbox.d.ts +7 -0
- package/dist/libs/shared/src/components/forms/form-field/CharacterCounter.d.ts +7 -0
- package/dist/libs/shared/src/components/forms/form-field/FormField.d.ts +16 -0
- package/dist/libs/shared/src/components/forms/form-wrapper/FormWrapper.d.ts +20 -0
- package/dist/libs/shared/src/components/icon-button/IconButton.d.ts +15 -0
- package/dist/libs/shared/src/components/pagination/Pagination.d.ts +28 -0
- package/dist/libs/shared/src/components/popup/Popup.d.ts +10 -0
- package/dist/libs/shared/src/components/popup/PopupButtons.d.ts +14 -0
- package/dist/libs/shared/src/components/popup/PopupLoadingSpinner.d.ts +2 -0
- package/dist/libs/shared/src/components/search-bar/SearchBar.d.ts +134 -0
- package/dist/libs/shared/src/components/search-bar/SearchInput.d.ts +8 -0
- package/dist/libs/shared/src/components/search-bar/SearchUtils.d.ts +44 -0
- package/dist/libs/shared/src/components/spinner-button/SpinnerButton.d.ts +7 -0
- package/dist/libs/shared/src/components/svg-container/SvgContainer.d.ts +20 -0
- package/dist/libs/shared/src/components/text/Text.d.ts +13 -0
- package/dist/libs/shared/src/components/tooltip/Tooltip.d.ts +16 -0
- package/dist/libs/shared/src/constants/AppVariables.d.ts +4 -0
- package/dist/libs/shared/src/constants/CacheDurations.d.ts +4 -0
- package/dist/libs/shared/src/constants/DataPrefixes.d.ts +12 -0
- package/dist/libs/shared/src/constants/ImageSizes.d.ts +8 -0
- package/dist/libs/shared/src/constants/LayoutRegions.d.ts +7 -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/CountryCode.d.ts +5 -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/MasterType.d.ts +59 -0
- package/dist/libs/shared/src/enums/MediaQueries.d.ts +18 -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/WidgetContents.d.ts +7 -0
- package/dist/libs/shared/src/hooks/UseAlerts.d.ts +6 -0
- package/dist/libs/shared/src/hooks/UseCanSubmitForm.d.ts +10 -0
- package/dist/libs/shared/src/hooks/UseMediaQuery.d.ts +1 -0
- package/dist/libs/shared/src/hooks/UseReorderedItems.d.ts +9 -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 +21 -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 +11 -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 +10 -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/UserChannel.d.ts +7 -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 +43 -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/services/UserDataService.d.ts +22 -0
- package/dist/libs/shared/src/utils/CollectionHelper.d.ts +9 -0
- package/dist/libs/shared/src/utils/FormHelper.d.ts +4 -0
- package/dist/libs/shared/src/utils/ImageHelper.d.ts +30 -0
- package/dist/libs/shared/src/utils/ReorderHelper.d.ts +15 -0
- package/dist/libs/shared/src/utils/StateHelper.d.ts +13 -0
- package/dist/libs/shared/src/utils/SvgHelper.d.ts +19 -0
- package/dist/projects/curator/src/apps/companies/CompaniesApplication.d.ts +13 -0
- package/dist/projects/curator/src/apps/companies/components/edit-company/EditCompany.d.ts +9 -0
- package/dist/projects/curator/src/apps/companies/components/edit-company/EditCompanyForm.d.ts +6 -0
- package/dist/projects/curator/src/apps/companies/components/edit-company/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/companies/components/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/companies/flight-requests/CompanyRequests.d.ts +8 -0
- package/dist/projects/curator/src/apps/companies/flight-requests/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/companies/interfaces/CreateOrUpdateCompanyRequest.d.ts +3 -0
- package/dist/projects/curator/src/apps/companies/interfaces/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/companies/utils/CompanyValidation.d.ts +3 -0
- package/dist/projects/curator/src/apps/companies/utils/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/companies/views/companies/CompaniesView.d.ts +6 -0
- package/dist/projects/curator/src/apps/companies/views/companies/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/companies/views/edit-company/EditCompanyView.d.ts +6 -0
- package/dist/projects/curator/src/apps/companies/views/edit-company/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/companies/views/index.d.ts +3 -0
- package/dist/projects/curator/src/apps/companies/views/new-company/NewCompanyView.d.ts +2 -0
- package/dist/projects/curator/src/apps/companies/views/new-company/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/domain-options/DomainOptionsApplication.d.ts +16 -0
- package/dist/projects/curator/src/apps/domain-options/components/edit-domain-option-details/DefaultValueField.d.ts +8 -0
- package/dist/projects/curator/src/apps/domain-options/components/edit-domain-option-details/EditDomainOptionDetails.d.ts +8 -0
- package/dist/projects/curator/src/apps/domain-options/components/edit-domain-option-details/EditDomainOptionDetailsForm.d.ts +6 -0
- package/dist/projects/curator/src/apps/domain-options/components/edit-domain-option-details/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/domain-options/components/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/domain-options/data-requests/DomainOptionRequests.d.ts +9 -0
- package/dist/projects/curator/src/apps/domain-options/data-requests/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/domain-options/interfaces/data-requests/CreateOrUpdateDomainOptionRequest.d.ts +2 -0
- package/dist/projects/curator/src/apps/domain-options/interfaces/data-requests/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/domain-options/interfaces/index.d.ts +2 -0
- package/dist/projects/curator/src/apps/domain-options/interfaces/models/DomainOption.d.ts +24 -0
- package/dist/projects/curator/src/apps/domain-options/interfaces/models/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/domain-options/utils/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/domain-options/utils/validation/DomainOptionValidation.d.ts +3 -0
- package/dist/projects/curator/src/apps/domain-options/utils/validation/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/domain-options/views/delete-domain-option/DeleteDomainOptionView.d.ts +7 -0
- package/dist/projects/curator/src/apps/domain-options/views/delete-domain-option/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/domain-options/views/domain-options/DomainOptionsView.d.ts +2 -0
- package/dist/projects/curator/src/apps/domain-options/views/domain-options/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/domain-options/views/edit-domain-option/EditDomainOptionView.d.ts +6 -0
- package/dist/projects/curator/src/apps/domain-options/views/edit-domain-option/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/domain-options/views/index.d.ts +4 -0
- package/dist/projects/curator/src/apps/domain-options/views/new-domain-option/NewDomainOptionView.d.ts +2 -0
- package/dist/projects/curator/src/apps/domain-options/views/new-domain-option/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/people/PeopleApplication.d.ts +13 -0
- package/dist/projects/curator/src/apps/people/components/edit-person/EditPerson.d.ts +9 -0
- package/dist/projects/curator/src/apps/people/components/edit-person/EditPersonForm.d.ts +6 -0
- package/dist/projects/curator/src/apps/people/components/edit-person/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/people/components/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/people/flight-requests/PersonRequests.d.ts +8 -0
- package/dist/projects/curator/src/apps/people/flight-requests/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/people/interfaces/CreateOrUpdatePersonRequest.d.ts +3 -0
- package/dist/projects/curator/src/apps/people/interfaces/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/people/utils/PersonValidation.d.ts +3 -0
- package/dist/projects/curator/src/apps/people/utils/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/people/views/edit-person/EditPersonView.d.ts +6 -0
- package/dist/projects/curator/src/apps/people/views/edit-person/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/people/views/index.d.ts +3 -0
- package/dist/projects/curator/src/apps/people/views/new-person/NewPersonView.d.ts +2 -0
- package/dist/projects/curator/src/apps/people/views/new-person/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/people/views/people/PeopleView.d.ts +6 -0
- package/dist/projects/curator/src/apps/people/views/people/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/PlaylistsApplication.d.ts +27 -0
- package/dist/projects/curator/src/apps/playlists/components/edit-playlist/EditPlaylistDetails.d.ts +9 -0
- package/dist/projects/curator/src/apps/playlists/components/edit-playlist/EditPlaylistDetailsForm.d.ts +8 -0
- package/dist/projects/curator/src/apps/playlists/components/edit-playlist/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/components/edit-playlist-nav/EditPlaylistNav.d.ts +7 -0
- package/dist/projects/curator/src/apps/playlists/components/edit-playlist-nav/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/components/index.d.ts +2 -0
- package/dist/projects/curator/src/apps/playlists/components/playlist-search/PlaylistSearch.d.ts +6 -0
- package/dist/projects/curator/src/apps/playlists/components/playlist-search/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/context/PlaylistsAppContext.d.ts +4 -0
- package/dist/projects/curator/src/apps/playlists/context/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/flight-requests/CuratorPlaylistRequests.d.ts +17 -0
- package/dist/projects/curator/src/apps/playlists/interfaces/data-requests/Playlist.d.ts +7 -0
- package/dist/projects/curator/src/apps/playlists/interfaces/data-requests/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/interfaces/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/utils/PlaylistNavHelper.d.ts +4 -0
- package/dist/projects/curator/src/apps/playlists/utils/index.d.ts +2 -0
- package/dist/projects/curator/src/apps/playlists/utils/validation/PlaylistValidation.d.ts +3 -0
- package/dist/projects/curator/src/apps/playlists/utils/validation/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/views/delete-playlist/DeletePlaylistView.d.ts +7 -0
- package/dist/projects/curator/src/apps/playlists/views/delete-playlist/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/views/edit-playlist/EditPlaylistView.d.ts +6 -0
- package/dist/projects/curator/src/apps/playlists/views/edit-playlist/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/views/edit-playlist-audiences/EditPlaylistAudiencesView.d.ts +6 -0
- package/dist/projects/curator/src/apps/playlists/views/edit-playlist-audiences/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/views/edit-playlist-subjects/EditPlaylistSubjectsView.d.ts +6 -0
- package/dist/projects/curator/src/apps/playlists/views/edit-playlist-subjects/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/views/edit-playlist-videos/EditPlaylistVideosView.d.ts +6 -0
- package/dist/projects/curator/src/apps/playlists/views/edit-playlist-videos/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/views/index.d.ts +7 -0
- package/dist/projects/curator/src/apps/playlists/views/new-playlist/NewPlaylistView.d.ts +2 -0
- package/dist/projects/curator/src/apps/playlists/views/new-playlist/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/views/playlist-search-results/PlaylistSearchResultsView.d.ts +7 -0
- package/dist/projects/curator/src/apps/playlists/views/playlist-search-results/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/views/playlists/PlaylistsView.d.ts +6 -0
- package/dist/projects/curator/src/apps/playlists/views/playlists/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/views/remove-video/RemoveVideoView.d.ts +8 -0
- package/dist/projects/curator/src/apps/playlists/views/remove-video/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/series/SeriesApplication.d.ts +21 -0
- package/dist/projects/curator/src/apps/series/components/edit-series-details/EditSeriesDetails.d.ts +10 -0
- package/dist/projects/curator/src/apps/series/components/edit-series-details/EditSeriesDetailsForm.d.ts +10 -0
- package/dist/projects/curator/src/apps/series/components/edit-series-details/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/series/components/edit-series-nav/EditSeriesNav.d.ts +7 -0
- package/dist/projects/curator/src/apps/series/components/edit-series-nav/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/series/components/index.d.ts +2 -0
- package/dist/projects/curator/src/apps/series/context/SeriesAppContext.d.ts +4 -0
- package/dist/projects/curator/src/apps/series/context/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/series/flight-requests/CuratorSeriesRequests.d.ts +11 -0
- package/dist/projects/curator/src/apps/series/interfaces/data-requests/Series.d.ts +9 -0
- package/dist/projects/curator/src/apps/series/interfaces/data-requests/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/series/interfaces/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/series/utils/SeriesNavHelper.d.ts +4 -0
- package/dist/projects/curator/src/apps/series/utils/index.d.ts +2 -0
- package/dist/projects/curator/src/apps/series/utils/validation/SeriesValidation.d.ts +4 -0
- package/dist/projects/curator/src/apps/series/utils/validation/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/series/views/edit-series/EditSeriesView.d.ts +6 -0
- package/dist/projects/curator/src/apps/series/views/edit-series/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/series/views/edit-series-audiences/EditSeriesAudiencesView.d.ts +6 -0
- package/dist/projects/curator/src/apps/series/views/edit-series-audiences/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/series/views/edit-series-subjects/EditSeriesSubjectsView.d.ts +6 -0
- package/dist/projects/curator/src/apps/series/views/edit-series-subjects/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/series/views/index.d.ts +4 -0
- package/dist/projects/curator/src/apps/series/views/new-series/NewSeriesView.d.ts +2 -0
- package/dist/projects/curator/src/apps/series/views/new-series/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/SubjectsApplication.d.ts +53 -0
- package/dist/projects/curator/src/apps/subjects/components/audiences/audience-levels/AudienceLevels.d.ts +9 -0
- package/dist/projects/curator/src/apps/subjects/components/audiences/audience-levels/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/audiences/edit-audience-details/EditAudienceDetails.d.ts +11 -0
- package/dist/projects/curator/src/apps/subjects/components/audiences/edit-audience-details/EditAudienceDetailsForm.d.ts +9 -0
- package/dist/projects/curator/src/apps/subjects/components/audiences/edit-audience-details/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/audiences/edit-object-audiences/EditObjectAudiences.d.ts +18 -0
- package/dist/projects/curator/src/apps/subjects/components/audiences/edit-object-audiences/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/audiences/index.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/components/audiences/select-audiences/SelectAudiences.d.ts +12 -0
- package/dist/projects/curator/src/apps/subjects/components/audiences/select-audiences/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/classifications/classification-member-list/ClassificationMemberItem.d.ts +13 -0
- package/dist/projects/curator/src/apps/subjects/components/classifications/classification-member-list/ClassificationMemberList.d.ts +15 -0
- package/dist/projects/curator/src/apps/subjects/components/classifications/classification-member-list/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/classifications/classification-member-list/usePinnedVideo.d.ts +9 -0
- package/dist/projects/curator/src/apps/subjects/components/classifications/edit-classification-details/EditClassificationDetails.d.ts +13 -0
- package/dist/projects/curator/src/apps/subjects/components/classifications/edit-classification-details/EditClassificationDetailsForm.d.ts +10 -0
- package/dist/projects/curator/src/apps/subjects/components/classifications/edit-classification-details/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/classifications/edit-classification-nav/EditClassificationNav.d.ts +10 -0
- package/dist/projects/curator/src/apps/subjects/components/classifications/edit-classification-nav/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/classifications/index.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/components/classifications/select-classifications/SelectClassifications.d.ts +14 -0
- package/dist/projects/curator/src/apps/subjects/components/classifications/select-classifications/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/index.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/edit-level-details/EditLevelDetails.d.ts +12 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/edit-level-details/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/edit-level-nav/EditLevelNav.d.ts +7 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/index.d.ts +2 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/level-audiences/LevelAudiences.d.ts +11 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/level-member-list/LevelMemberItem.d.ts +12 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/level-member-list/LevelMemberList.d.ts +25 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/level-member-list/LevelMemberListHeader.d.ts +14 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/level-member-list/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/select-levels/SelectLevels.d.ts +15 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/select-levels/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/presentations/edit-presentation-details/EditPresentationDetails.d.ts +9 -0
- package/dist/projects/curator/src/apps/subjects/components/presentations/edit-presentation-details/EditPresentationDetailsForm.d.ts +8 -0
- package/dist/projects/curator/src/apps/subjects/components/presentations/edit-presentation-details/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/presentations/index.d.ts +2 -0
- package/dist/projects/curator/src/apps/subjects/components/presentations/presentation-select/PresentationSelect.d.ts +15 -0
- package/dist/projects/curator/src/apps/subjects/components/presentations/presentation-select/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/add-subject-members/AddSubjectMembers.d.ts +12 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/add-subject-members/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/edit-object-subjects/EditObjectSubjects.d.ts +20 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/edit-object-subjects/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/edit-subject-details/EditSubjectDetails.d.ts +11 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/edit-subject-details/EditSubjectDetailsForm.d.ts +8 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/edit-subject-details/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/edit-subject-nav/EditSubjectNav.d.ts +7 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/edit-subject-nav/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/index.d.ts +7 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/select-subjects/SelectSubjects.d.ts +18 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/select-subjects/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/subject-classifications/SubjectClassifications.d.ts +11 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/subject-classifications/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/subject-member-list/SubjectMemberItem.d.ts +12 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/subject-member-list/SubjectMemberList.d.ts +25 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/subject-member-list/SubjectMemberListHeader.d.ts +14 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/subject-member-list/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/top-nav/TopNav.d.ts +8 -0
- package/dist/projects/curator/src/apps/subjects/components/top-nav/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/context/PresentationContext.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/context/SubjectsAppContext.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/context/index.d.ts +2 -0
- package/dist/projects/curator/src/apps/subjects/enums/ObjectMemberType.d.ts +10 -0
- package/dist/projects/curator/src/apps/subjects/enums/OwnerType.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/enums/SubjectMemberType.d.ts +5 -0
- package/dist/projects/curator/src/apps/subjects/enums/SubjectNodeType.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/enums/index.d.ts +3 -0
- package/dist/projects/curator/src/apps/subjects/hooks/UseSetDefaultPresentation.d.ts +8 -0
- package/dist/projects/curator/src/apps/subjects/hooks/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/interfaces/data-requests/Audience.d.ts +5 -0
- package/dist/projects/curator/src/apps/subjects/interfaces/data-requests/Classification.d.ts +17 -0
- package/dist/projects/curator/src/apps/subjects/interfaces/data-requests/Level.d.ts +3 -0
- package/dist/projects/curator/src/apps/subjects/interfaces/data-requests/Presentation.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/interfaces/data-requests/Subject.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/interfaces/data-requests/index.d.ts +5 -0
- package/dist/projects/curator/src/apps/subjects/interfaces/index.d.ts +2 -0
- package/dist/projects/curator/src/apps/subjects/interfaces/models/ClassificationTree.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/interfaces/models/Level.d.ts +3 -0
- package/dist/projects/curator/src/apps/subjects/interfaces/models/Presentation.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/interfaces/models/SubjectTree.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/interfaces/models/index.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/services/SubjectDataService.d.ts +68 -0
- package/dist/projects/curator/src/apps/subjects/services/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/utils/LevelMemberHelper.d.ts +8 -0
- package/dist/projects/curator/src/apps/subjects/utils/LevelsNavHelper.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/utils/SubjectMemberHelper.d.ts +8 -0
- package/dist/projects/curator/src/apps/subjects/utils/SubjectsNavHelper.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/utils/index.d.ts +3 -0
- package/dist/projects/curator/src/apps/subjects/utils/validation/AudienceValidation.d.ts +3 -0
- package/dist/projects/curator/src/apps/subjects/utils/validation/ClassificationValidation.d.ts +3 -0
- package/dist/projects/curator/src/apps/subjects/utils/validation/LevelValidation.d.ts +3 -0
- package/dist/projects/curator/src/apps/subjects/utils/validation/PresentationValidation.d.ts +5 -0
- package/dist/projects/curator/src/apps/subjects/utils/validation/SubjectValidation.d.ts +3 -0
- package/dist/projects/curator/src/apps/subjects/utils/validation/index.d.ts +5 -0
- package/dist/projects/curator/src/apps/subjects/views/audiences/delete-audience/DeleteAudienceView.d.ts +9 -0
- package/dist/projects/curator/src/apps/subjects/views/audiences/delete-audience/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/audiences/edit-audience/EditAudienceView.d.ts +7 -0
- package/dist/projects/curator/src/apps/subjects/views/audiences/edit-audience/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/audiences/edit-audiences-list/EditAudiencesListView.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/audiences/edit-audiences-list/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/audiences/index.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/views/audiences/new-audience/NewAudienceView.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/audiences/new-audience/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/classification-nav/ClassificationNavUtils.d.ts +7 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/classification-nav/ClassificationNavView.d.ts +7 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/classification-nav/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/delete-classification/DeleteClassificationView.d.ts +9 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/delete-classification/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/edit-classification/EditClassificationView.d.ts +7 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/edit-classification/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/edit-classification-members/EditClassificationMembersView.d.ts +9 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/edit-classification-members/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/index.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/new-classification/NewClassificationView.d.ts +7 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/new-classification/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/remove-classification-member/RemoveClassificationMemberView.d.ts +11 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/remove-classification-member/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/index.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/edit-level/EditLevelView.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/edit-level/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/edit-level-members/EditLevelMembersUtils.d.ts +16 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/edit-level-members/EditLevelMembersView.d.ts +16 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/edit-levels-list/EditLevelsListView.d.ts +2 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/edit-levels-list/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/index.d.ts +3 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/level-audiences/LevelAudiencesView.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/level-nav/LevelNavView.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/levels-redirect/LevelsRedirectView.d.ts +2 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/levels-redirect/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/new-level/NewLevelView.d.ts +2 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/new-level/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/presentations/edit-presentation/EditPresentationView.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/presentations/edit-presentation/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/presentations/edit-presentations-list/EditPresentationsListView.d.ts +2 -0
- package/dist/projects/curator/src/apps/subjects/views/presentations/edit-presentations-list/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/presentations/index.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/views/presentations/new-presentation/NewPresentationView.d.ts +2 -0
- package/dist/projects/curator/src/apps/subjects/views/presentations/new-presentation/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/presentations/select-presentation/SelectPresentationView.d.ts +9 -0
- package/dist/projects/curator/src/apps/subjects/views/presentations/select-presentation/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/add-subject-members/AddSubjectMembersUtils.d.ts +14 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/add-subject-members/AddSubjectMembersView.d.ts +15 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/add-subject-members/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/delete-subject/DeleteSubjectView.d.ts +9 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/delete-subject/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/edit-subject/EditSubjectView.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/edit-subject/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/edit-subject-members/EditSubjectMembersUtils.d.ts +16 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/edit-subject-members/EditSubjectMembersView.d.ts +16 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/edit-subject-members/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/index.d.ts +8 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/new-subject/NewSubjectView.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/new-subject/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/remove-subject-member/RemoveSubjectMemberView.d.ts +11 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/remove-subject-member/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/subject-classifications/SubjectClassificationsView.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/subject-classifications/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/subject-nav/SubjectNavView.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/subject-nav/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/top-nav/TopNavView.d.ts +7 -0
- package/dist/projects/curator/src/apps/subjects/views/top-nav/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/themes/ThemesApplication.d.ts +16 -0
- package/dist/projects/curator/src/apps/themes/components/edit-theme/EditTheme.d.ts +11 -0
- package/dist/projects/curator/src/apps/themes/components/edit-theme/ThemeValidation.d.ts +3 -0
- package/dist/projects/curator/src/apps/themes/components/edit-theme/edit-data/EditGlanceData.d.ts +2 -0
- package/dist/projects/curator/src/apps/themes/components/edit-theme/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/themes/context/ThemesAppContext.d.ts +4 -0
- package/dist/projects/curator/src/apps/themes/flight-requests/ThemeRequests.d.ts +11 -0
- package/dist/projects/curator/src/apps/themes/interfaces/CreateOrUpdateThemeRequest.d.ts +7 -0
- package/dist/projects/curator/src/apps/themes/interfaces/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/themes/views/delete-theme/DeleteThemeView.d.ts +7 -0
- package/dist/projects/curator/src/apps/themes/views/delete-theme/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/themes/views/edit-theme/EditThemeView.d.ts +6 -0
- package/dist/projects/curator/src/apps/themes/views/edit-theme/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/themes/views/new-theme/NewThemeView.d.ts +2 -0
- package/dist/projects/curator/src/apps/themes/views/new-theme/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/themes/views/themes/ThemesView.d.ts +2 -0
- package/dist/projects/curator/src/apps/themes/views/themes/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/videos/VideosApplication.d.ts +18 -0
- package/dist/projects/curator/src/apps/videos/components/edit-video-details/EditGlance.d.ts +7 -0
- package/dist/projects/curator/src/apps/videos/components/edit-video-details/EditVideoDetails.d.ts +13 -0
- package/dist/projects/curator/src/apps/videos/components/edit-video-details/VideoDetailsForm.d.ts +12 -0
- package/dist/projects/curator/src/apps/videos/components/edit-video-details/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/videos/components/edit-video-nav/EditVideoNav.d.ts +7 -0
- package/dist/projects/curator/src/apps/videos/components/edit-video-nav/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/videos/context/VideosAppContext.d.ts +4 -0
- package/dist/projects/curator/src/apps/videos/context/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/videos/flight-requests/CuratorVideoRequests.d.ts +10 -0
- package/dist/projects/curator/src/apps/videos/interfaces/RightslineVideo.d.ts +4 -0
- package/dist/projects/curator/src/apps/videos/interfaces/data-requests/UpdateVideoRequest.d.ts +13 -0
- package/dist/projects/curator/src/apps/videos/interfaces/data-requests/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/videos/interfaces/index.d.ts +2 -0
- package/dist/projects/curator/src/apps/videos/utils/VideoNavHelper.d.ts +4 -0
- package/dist/projects/curator/src/apps/videos/utils/VideoValidation.d.ts +3 -0
- package/dist/projects/curator/src/apps/videos/views/edit-video/EditVideoView.d.ts +6 -0
- package/dist/projects/curator/src/apps/videos/views/edit-video/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/videos/views/edit-video-aliases/EditVideoAliasesView.d.ts +6 -0
- package/dist/projects/curator/src/apps/videos/views/edit-video-aliases/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/videos/views/edit-video-audiences/EditVideoAudiencesView.d.ts +6 -0
- package/dist/projects/curator/src/apps/videos/views/edit-video-audiences/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/videos/views/edit-video-subjects/EditVideoSubjectsView.d.ts +6 -0
- package/dist/projects/curator/src/apps/videos/views/edit-video-subjects/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/videos/views/index.d.ts +4 -0
- package/dist/projects/curator/src/index.d.ts +55 -0
- package/dist/projects/curator/src/shared/components/aliases/AddAlias.d.ts +7 -0
- package/dist/projects/curator/src/shared/components/aliases/AliasList.d.ts +13 -0
- package/dist/projects/curator/src/shared/components/aliases/Aliases.d.ts +9 -0
- package/dist/projects/curator/src/shared/components/aliases/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/back-button/BackButton.d.ts +8 -0
- package/dist/projects/curator/src/shared/components/back-button/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/checkbox/Checkbox.d.ts +8 -0
- package/dist/projects/curator/src/shared/components/checkbox/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/forms/file-select/FileSelect.d.ts +11 -0
- package/dist/projects/curator/src/shared/components/forms/file-select/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/forms/image-select/ImageSelect.d.ts +14 -0
- package/dist/projects/curator/src/shared/components/forms/image-select/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/forms/index.d.ts +2 -0
- package/dist/projects/curator/src/shared/components/image-cropper/ImageCropper.d.ts +10 -0
- package/dist/projects/curator/src/shared/components/image-cropper/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/index.d.ts +14 -0
- package/dist/projects/curator/src/shared/components/object-collection/ObjectCollection.d.ts +12 -0
- package/dist/projects/curator/src/shared/components/object-collection/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/object-header/ObjectHeader.d.ts +9 -0
- package/dist/projects/curator/src/shared/components/object-header/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/object-list/ObjectList.d.ts +11 -0
- package/dist/projects/curator/src/shared/components/object-list/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/object-list-nav/ObjectListNav.d.ts +15 -0
- package/dist/projects/curator/src/shared/components/object-list-nav/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/rating-select/RatingSelect.d.ts +12 -0
- package/dist/projects/curator/src/shared/components/rating-select/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/tabs/Tabs.d.ts +13 -0
- package/dist/projects/curator/src/shared/components/tabs/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/tree/Tree.d.ts +14 -0
- package/dist/projects/curator/src/shared/components/tree/TreeNode.d.ts +19 -0
- package/dist/projects/curator/src/shared/components/tree/TreeNodeLink.d.ts +13 -0
- package/dist/projects/curator/src/shared/components/tree/index.d.ts +2 -0
- package/dist/projects/curator/src/shared/components/tree-select/TreeSelect.d.ts +15 -0
- package/dist/projects/curator/src/shared/components/tree-select/TreeSelectHelper.d.ts +17 -0
- package/dist/projects/curator/src/shared/components/tree-select/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/video-list/SortableVideoList.d.ts +12 -0
- package/dist/projects/curator/src/shared/components/video-list/VideoItem.d.ts +15 -0
- package/dist/projects/curator/src/shared/components/video-list/VideoList.d.ts +19 -0
- package/dist/projects/curator/src/shared/components/video-list/index.d.ts +2 -0
- package/dist/projects/curator/src/shared/constants/CuratorActions.d.ts +87 -0
- package/dist/projects/curator/src/shared/constants/DataPrefixes.d.ts +45 -0
- package/dist/projects/curator/src/shared/constants/FileExtensions.d.ts +3 -0
- package/dist/projects/curator/src/shared/constants/Layouts.d.ts +3 -0
- package/dist/projects/curator/src/shared/constants/RadioChannels.d.ts +16 -0
- package/dist/projects/curator/src/shared/constants/Services.d.ts +6 -0
- package/dist/projects/curator/src/shared/constants/index.d.ts +6 -0
- package/dist/projects/curator/src/shared/context/ImageStorageContext.d.ts +45 -0
- package/dist/projects/curator/src/shared/context/UserContext.d.ts +4 -0
- package/dist/projects/curator/src/shared/context/index.d.ts +2 -0
- package/dist/projects/curator/src/shared/enums/CurationStatus.d.ts +8 -0
- package/dist/projects/curator/src/shared/enums/CuratorGroup.d.ts +11 -0
- package/dist/projects/curator/src/shared/enums/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/flight-requests/AliasRequests.d.ts +7 -0
- package/dist/projects/curator/src/shared/flight-requests/RatingRequests.d.ts +4 -0
- package/dist/projects/curator/src/shared/flight-requests/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/interfaces/collections/AliasCollection.d.ts +4 -0
- package/dist/projects/curator/src/shared/interfaces/collections/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/interfaces/data-requests/CreateAliasRequest.d.ts +3 -0
- package/dist/projects/curator/src/shared/interfaces/data-requests/UpdateObjectPermissionsRequest.d.ts +4 -0
- package/dist/projects/curator/src/shared/interfaces/data-requests/UpdateObjectRating.d.ts +3 -0
- package/dist/projects/curator/src/shared/interfaces/data-requests/index.d.ts +3 -0
- package/dist/projects/curator/src/shared/interfaces/index.d.ts +4 -0
- package/dist/projects/curator/src/shared/interfaces/models/Alias.d.ts +3 -0
- package/dist/projects/curator/src/shared/interfaces/models/CuratorUser.d.ts +5 -0
- package/dist/projects/curator/src/shared/interfaces/models/Group.d.ts +3 -0
- package/dist/projects/curator/src/shared/interfaces/models/Permission.d.ts +4 -0
- package/dist/projects/curator/src/shared/interfaces/models/index.d.ts +5 -0
- package/dist/projects/curator/src/shared/interfaces/models/primitives/BaseTree.d.ts +8 -0
- package/dist/projects/curator/src/shared/interfaces/models/primitives/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/interfaces/view-models/NavItem.d.ts +6 -0
- package/dist/projects/curator/src/shared/interfaces/view-models/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/layouts/curator-layout/CuratorLayoutView.d.ts +28 -0
- package/dist/projects/curator/src/shared/layouts/curator-layout/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/layouts/index.d.ts +2 -0
- package/dist/projects/curator/src/shared/layouts/primitives/LayoutComponent.d.ts +17 -0
- package/dist/projects/curator/src/shared/layouts/primitives/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/services/CuratorAppNavService.d.ts +17 -0
- package/dist/projects/curator/src/shared/services/ImageUploadDataService.d.ts +8 -0
- package/dist/projects/curator/src/shared/services/LanguageDataService.d.ts +11 -0
- package/dist/projects/curator/src/shared/services/UserDataService.d.ts +11 -0
- package/dist/projects/curator/src/shared/services/index.d.ts +4 -0
- package/dist/projects/curator/src/shared/utils/CuratorCollectionHelper.d.ts +10 -0
- package/dist/projects/curator/src/shared/utils/ImageSelectHelper.d.ts +6 -0
- package/dist/projects/curator/src/shared/utils/NavHelper.d.ts +5 -0
- package/dist/projects/curator/src/shared/utils/PermissionsHelper.d.ts +5 -0
- package/dist/projects/curator/src/shared/utils/PropHelper.d.ts +3 -0
- package/dist/projects/curator/src/shared/utils/StringHelper.d.ts +5 -0
- package/dist/projects/curator/src/shared/utils/TreeHelper.d.ts +7 -0
- package/dist/projects/curator/src/shared/utils/UserHelper.d.ts +4 -0
- package/dist/projects/curator/src/shared/utils/index.d.ts +7 -0
- package/dist/projects/curator/src/shared/views/image-upload/ImageUploadView.d.ts +8 -0
- package/dist/projects/curator/src/shared/views/image-upload/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/views/index.d.ts +1 -0
- package/package.json +45 -46
- package/tooling/externals.js +0 -2
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { BaseView, BaseViewOptions } from './BaseView';
|
|
2
|
+
import { Store } from 'redux';
|
|
3
|
+
export interface BaseLayoutViewOptions extends BaseViewOptions {
|
|
4
|
+
store?: Store;
|
|
5
|
+
}
|
|
6
|
+
export declare class BaseLayoutView extends BaseView {
|
|
7
|
+
protected options: BaseLayoutViewOptions;
|
|
8
|
+
constructor(options: BaseLayoutViewOptions);
|
|
9
|
+
static getCacheKey(options: BaseLayoutViewOptions): string;
|
|
10
|
+
unmountRegion(regionName: string): void;
|
|
11
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as Backbone from 'backbone';
|
|
2
|
+
import { BaseCollection } from './BaseCollection';
|
|
3
|
+
export declare class BaseModel extends Backbone.Model {
|
|
4
|
+
parent?: BaseModel | BaseCollection;
|
|
5
|
+
collection: BaseCollection;
|
|
6
|
+
/**
|
|
7
|
+
* Mechanism to allow properties/functions to be attached to
|
|
8
|
+
* the instance of a model at runtime.
|
|
9
|
+
* @param propertyHash
|
|
10
|
+
*
|
|
11
|
+
* I feel like this implementation is a bit naive,
|
|
12
|
+
* but it will suffice for the time being - Mike
|
|
13
|
+
*/
|
|
14
|
+
private mixin;
|
|
15
|
+
/**
|
|
16
|
+
* Helper to facilitate model validation at runtime
|
|
17
|
+
* @param validation
|
|
18
|
+
*/
|
|
19
|
+
addValidation(validation: any): void;
|
|
20
|
+
/**
|
|
21
|
+
* Backbone Validation mixin functions
|
|
22
|
+
*/
|
|
23
|
+
preValidate: (attr: any, value: any) => any;
|
|
24
|
+
validate(attributes?: any, options?: any): any;
|
|
25
|
+
listenTo(object: any, eventMap: Backbone.EventMap): this;
|
|
26
|
+
listenTo(obj: string | Backbone.Events, events: string, callback: Function): this;
|
|
27
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ModelSetOptions, ObjectHash } from 'backbone';
|
|
2
|
+
import { BaseModel } from './BaseModel';
|
|
3
|
+
import { BaseCollection } from './BaseCollection';
|
|
4
|
+
interface Association {
|
|
5
|
+
new (...args: any[]): (BaseCollection | BaseModel);
|
|
6
|
+
}
|
|
7
|
+
export interface BaseNestedModelOptions extends ModelSetOptions {
|
|
8
|
+
unset?: boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare class BaseNestedModel extends BaseModel {
|
|
11
|
+
[name: string]: any;
|
|
12
|
+
protected associations: {
|
|
13
|
+
[name: string]: Association;
|
|
14
|
+
};
|
|
15
|
+
set(key: string | object, value?: any | ModelSetOptions, options?: BaseNestedModelOptions): BaseNestedModel;
|
|
16
|
+
get(attributeName: string): any;
|
|
17
|
+
setAssociation(key: string, value: any, options: BaseNestedModelOptions): BaseModel | BaseCollection<BaseModel>;
|
|
18
|
+
toJSON(...args: any[]): ObjectHash;
|
|
19
|
+
toFlatJSON(...args: any[]): ObjectHash;
|
|
20
|
+
}
|
|
21
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/// <reference types="backbone" />
|
|
2
|
+
import * as Marionette from 'backbone.marionette';
|
|
3
|
+
export interface BaseServiceOptions extends Marionette.ObjectOptions {
|
|
4
|
+
}
|
|
5
|
+
export declare class BaseService extends Marionette.Object {
|
|
6
|
+
name: string;
|
|
7
|
+
constructor(options?: BaseServiceOptions);
|
|
8
|
+
listenTo(object: any, eventMap: Backbone.EventMap): this;
|
|
9
|
+
listenTo(obj: string | Backbone.Events, events: string, callback: Function): this;
|
|
10
|
+
}
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
import * as Backbone from 'backbone';
|
|
2
|
+
import * as Marionette from 'backbone.marionette';
|
|
3
|
+
import { StickitBinding } from "../interfaces/StickitBinding";
|
|
4
|
+
import { BaseModel } from './BaseModel';
|
|
5
|
+
import { AppLinkHash } from './AppLink';
|
|
6
|
+
interface UIHash {
|
|
7
|
+
[selector: string]: any;
|
|
8
|
+
}
|
|
9
|
+
export interface RequiredResourceHash {
|
|
10
|
+
[propName: string]: RequiredResourceDefinition;
|
|
11
|
+
}
|
|
12
|
+
export interface RequiredResourceDefinition<T = any> {
|
|
13
|
+
dataServiceName: string;
|
|
14
|
+
eventName: string;
|
|
15
|
+
getData: (instance: any) => T;
|
|
16
|
+
getInstance: (context: Backbone.Events) => any;
|
|
17
|
+
beforeOnBeforeRender: boolean;
|
|
18
|
+
}
|
|
19
|
+
export interface BaseViewOptions<TModel extends BaseModel = BaseModel> extends Marionette.ViewOptions<TModel> {
|
|
20
|
+
channelName?: string;
|
|
21
|
+
}
|
|
22
|
+
export declare class CoreView<TModel extends BaseModel = BaseModel> extends Marionette.View<TModel> {
|
|
23
|
+
/**
|
|
24
|
+
* This is of the name class. It should be used on
|
|
25
|
+
* all warnings and errors to make debugging easier.
|
|
26
|
+
*/
|
|
27
|
+
name: string;
|
|
28
|
+
/**
|
|
29
|
+
* Takes a Handlebars template function.
|
|
30
|
+
*/
|
|
31
|
+
template: any;
|
|
32
|
+
/**
|
|
33
|
+
* Specify the properties you want to be
|
|
34
|
+
* taken from `options` and added to the context.
|
|
35
|
+
*/
|
|
36
|
+
props: string[];
|
|
37
|
+
/**
|
|
38
|
+
* This is what the page title will be set to
|
|
39
|
+
* when this view is rendered.
|
|
40
|
+
*/
|
|
41
|
+
title: string | boolean;
|
|
42
|
+
/**
|
|
43
|
+
* The default properties that will be taken
|
|
44
|
+
* from `options` and added to the context.
|
|
45
|
+
*/
|
|
46
|
+
private get defaultProps();
|
|
47
|
+
viewModel: BaseModel;
|
|
48
|
+
private static ViewDataExtensions;
|
|
49
|
+
/**
|
|
50
|
+
* Update instance options to include defaults. Passing options
|
|
51
|
+
* to the view via the ctor will always override defaults.
|
|
52
|
+
* @param options
|
|
53
|
+
*/
|
|
54
|
+
private _setOptions;
|
|
55
|
+
/**
|
|
56
|
+
* Mix in the class name into the dom attributes to
|
|
57
|
+
* help us out with debugging
|
|
58
|
+
*/
|
|
59
|
+
private _setAttributes;
|
|
60
|
+
private uiStorage;
|
|
61
|
+
get ui(): Backbone.ObjectHash;
|
|
62
|
+
set ui(value: Backbone.ObjectHash);
|
|
63
|
+
get elements(): Backbone.ObjectHash;
|
|
64
|
+
protected defaults: Backbone.ObjectHash;
|
|
65
|
+
protected options: BaseViewOptions<TModel>;
|
|
66
|
+
/**
|
|
67
|
+
* Base class for all views to inherit from.
|
|
68
|
+
* @constructor
|
|
69
|
+
*/
|
|
70
|
+
constructor(options?: BaseViewOptions<TModel>);
|
|
71
|
+
appLinks: AppLinkHash;
|
|
72
|
+
normalizeUIKeys: (hash: UIHash) => UIHash;
|
|
73
|
+
static AddViewDataExtension(ext: Function | Backbone.ObjectHash): void;
|
|
74
|
+
serializeModel(): any;
|
|
75
|
+
serializeCollection(): any[];
|
|
76
|
+
/**
|
|
77
|
+
* This is a utility that can be used if your
|
|
78
|
+
* className is dynamic between renders.
|
|
79
|
+
* Simply call this.resetClassName() in
|
|
80
|
+
* onRender()
|
|
81
|
+
*/
|
|
82
|
+
protected resetClassName(): void;
|
|
83
|
+
serializeData(): any;
|
|
84
|
+
protected viewOptions(): Backbone.ObjectHash;
|
|
85
|
+
/**
|
|
86
|
+
* Ensures that multiple click events arent bound
|
|
87
|
+
* if the view is getting re-rendered.
|
|
88
|
+
*/
|
|
89
|
+
private undelegateAppLinks;
|
|
90
|
+
/**
|
|
91
|
+
* This will take the appLinks hash defined on a view and used it to add
|
|
92
|
+
* hrefs to the anchor tags and provide the application linking.
|
|
93
|
+
*/
|
|
94
|
+
protected renderAppLinks(): void;
|
|
95
|
+
private hasPartialLoadingRegions;
|
|
96
|
+
protected renderPartialLoading(region?: string): void;
|
|
97
|
+
listenTo(object: any, eventMap: Backbone.EventMap): this;
|
|
98
|
+
listenTo(obj: string | Backbone.Events, events: string, callback: Function): this;
|
|
99
|
+
render(): CoreView<TModel>;
|
|
100
|
+
/** backbone.stickit stuff that is mixed in at run time.
|
|
101
|
+
*
|
|
102
|
+
* TODO: This should ideally be handled higher up that BaseView,
|
|
103
|
+
* (yet another one of those TODOs that is likely
|
|
104
|
+
* to sit here till the end of time. - Sha)
|
|
105
|
+
*/
|
|
106
|
+
bindings: {
|
|
107
|
+
[selector: string]: StickitBinding;
|
|
108
|
+
};
|
|
109
|
+
stickit: (model?: BaseModel, options?: any) => void;
|
|
110
|
+
addbinding: (model: BaseModel, selector: string, configuration: any) => void;
|
|
111
|
+
unstickit: (model?: BaseModel, options?: any) => void;
|
|
112
|
+
protected processRequriedResources(beforeOnBeforeRender: boolean): boolean;
|
|
113
|
+
protected setTitle(): void;
|
|
114
|
+
}
|
|
115
|
+
export declare class BaseView<TModel extends BaseModel = BaseModel> extends CoreView<TModel> {
|
|
116
|
+
private boundListeners;
|
|
117
|
+
private resourceInstances;
|
|
118
|
+
requiredResources: {
|
|
119
|
+
[propName: string]: RequiredResourceDefinition;
|
|
120
|
+
};
|
|
121
|
+
constructor(options?: BaseViewOptions<TModel>);
|
|
122
|
+
protected processRequriedResources(beforeOnBeforeRender: boolean): boolean;
|
|
123
|
+
setTitle(): void;
|
|
124
|
+
}
|
|
125
|
+
export declare class BaseComponent<TModel extends BaseModel = BaseModel> extends CoreView<TModel> {
|
|
126
|
+
}
|
|
127
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare const EventNames: {
|
|
2
|
+
SHOW_POPUP: string;
|
|
3
|
+
ROUTE: string;
|
|
4
|
+
LOCK_NAV: string;
|
|
5
|
+
UNLOCK_NAV: string;
|
|
6
|
+
NAV_IS_LOCKED: string;
|
|
7
|
+
NAV_UNLOCKED_BY_USER: string;
|
|
8
|
+
ROUTING_START: string;
|
|
9
|
+
ROUTING_END: string;
|
|
10
|
+
HAS_ACTIVE_ROUTE: string;
|
|
11
|
+
ROUTE_LOOKUP: string;
|
|
12
|
+
URL_CHANGE: string;
|
|
13
|
+
ERROR: string;
|
|
14
|
+
CURRENT_ROUTE: string;
|
|
15
|
+
};
|
|
16
|
+
export { EventNames };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/// <reference types="backbone" />
|
|
2
|
+
import * as Marionette from 'backbone.marionette';
|
|
3
|
+
import { BaseLayoutView, BaseLayoutViewOptions } from './BaseLayoutView';
|
|
4
|
+
export interface LayoutOptions<T extends BaseLayoutViewOptions> {
|
|
5
|
+
name: string;
|
|
6
|
+
options?: T;
|
|
7
|
+
}
|
|
8
|
+
export interface LayoutServiceOptions extends Marionette.ObjectOptions {
|
|
9
|
+
requiredRegions?: string[];
|
|
10
|
+
}
|
|
11
|
+
export declare class LayoutService extends Marionette.Object {
|
|
12
|
+
private layouts;
|
|
13
|
+
private currentLayout;
|
|
14
|
+
private currentLayoutCacheKey;
|
|
15
|
+
private requiredRegions;
|
|
16
|
+
options: LayoutServiceOptions;
|
|
17
|
+
constructor(options: LayoutServiceOptions);
|
|
18
|
+
private clearLayout;
|
|
19
|
+
registerLayout(name: string, layout: typeof BaseLayoutView): this;
|
|
20
|
+
/**
|
|
21
|
+
* Either return the existing instance of a layout
|
|
22
|
+
* or create the layout and cache it before returning.
|
|
23
|
+
*/
|
|
24
|
+
getLayout<T extends BaseLayoutViewOptions>(layoutOptions: LayoutOptions<T>): BaseLayoutView;
|
|
25
|
+
/**
|
|
26
|
+
* Every layout that is registered must have all required/mandatory regions
|
|
27
|
+
*/
|
|
28
|
+
private checkRequiredRegions;
|
|
29
|
+
listenTo(object: any, eventMap: Backbone.EventMap): this;
|
|
30
|
+
listenTo(obj: string | Backbone.Events, events: string, callback: Function): this;
|
|
31
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as Backbone from 'backbone';
|
|
2
|
+
import { AppLink } from './AppLink';
|
|
3
|
+
/**
|
|
4
|
+
* This is the only file in the entire project
|
|
5
|
+
* that should ever reference window.location.
|
|
6
|
+
*/
|
|
7
|
+
declare const LocationUtils: {
|
|
8
|
+
GetQuery(): Backbone.ObjectHash;
|
|
9
|
+
UpdateQuery(params: Backbone.ObjectHash): void;
|
|
10
|
+
UpdateUrl(route: string, appLink: AppLink, options?: Backbone.ObjectHash): void;
|
|
11
|
+
SerializeQueryParams(params: string | Backbone.ObjectHash): string;
|
|
12
|
+
DeserializeQueryParams(params: string): Backbone.ObjectHash;
|
|
13
|
+
StartHistory(): void;
|
|
14
|
+
PageLoad(href: string, newTab?: boolean): void;
|
|
15
|
+
Redirect(href: string, replace?: boolean): void;
|
|
16
|
+
Reload(force?: boolean): void;
|
|
17
|
+
GetCurrentPath(): string;
|
|
18
|
+
GetCurrentQueryString(): string;
|
|
19
|
+
GetCurrentUrl(): string;
|
|
20
|
+
GetCurrentReferrer(): string;
|
|
21
|
+
SetPageTitle(title: string): void;
|
|
22
|
+
};
|
|
23
|
+
export { LocationUtils };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export interface MiddlewareNext<T> {
|
|
2
|
+
(options: T): void;
|
|
3
|
+
}
|
|
4
|
+
export interface MiddlewareFunction<T> {
|
|
5
|
+
(options: T, next: MiddlewareNext<T>): void;
|
|
6
|
+
}
|
|
7
|
+
export declare class Middleware<T> {
|
|
8
|
+
use(fn: MiddlewareFunction<T>): void;
|
|
9
|
+
go(options: T, next: MiddlewareNext<T>): void;
|
|
10
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { ObjectHash } from 'backbone';
|
|
2
|
+
import * as Marionette from 'backbone.marionette';
|
|
3
|
+
import { BaseApplication } from './BaseApplication';
|
|
4
|
+
import { BaseError } from './BaseError';
|
|
5
|
+
import { BaseLayoutView } from './BaseLayoutView';
|
|
6
|
+
import { Store } from 'redux';
|
|
7
|
+
interface InitializationStep {
|
|
8
|
+
(shell: Shell, next: InitializationStep): void;
|
|
9
|
+
}
|
|
10
|
+
interface StartUpSet {
|
|
11
|
+
(shell: Shell, options: any, next: StartUpSet): void;
|
|
12
|
+
}
|
|
13
|
+
export interface ShellOptions extends Marionette.ApplicationOptions {
|
|
14
|
+
}
|
|
15
|
+
export declare class Shell extends Marionette.Application {
|
|
16
|
+
/**
|
|
17
|
+
* Used to retreive and cache layout views.
|
|
18
|
+
*/
|
|
19
|
+
private layoutService;
|
|
20
|
+
private applications;
|
|
21
|
+
private routeLookup;
|
|
22
|
+
private shellState;
|
|
23
|
+
initialize(options?: ShellOptions): void;
|
|
24
|
+
private bindListeners;
|
|
25
|
+
private bindNavLockListeners;
|
|
26
|
+
private bindAppLinkListeners;
|
|
27
|
+
private bindErrorHandlers;
|
|
28
|
+
private bindErrorListener;
|
|
29
|
+
/**
|
|
30
|
+
* Using all the routeLookups passed in during AppRouter initialization
|
|
31
|
+
* we create a bunch of channel replies on the shell channel.
|
|
32
|
+
*
|
|
33
|
+
* Both Core.AppRouter and Core.View use this to reverse engineer
|
|
34
|
+
* the application routes and regenerate urls with a list of arguments.
|
|
35
|
+
*
|
|
36
|
+
* These need to exist on the shell rather than on the Core.AppRouter
|
|
37
|
+
* because consumers of this reply wont know which instance of Core.AppRoute
|
|
38
|
+
* to call.
|
|
39
|
+
*/
|
|
40
|
+
private bindRouteLookup;
|
|
41
|
+
addRouteLookup(name: string, func: () => string): void;
|
|
42
|
+
registerApplication(application: typeof BaseApplication, options?: ObjectHash): this;
|
|
43
|
+
getGlobalRadioChannels(): ObjectHash;
|
|
44
|
+
isNavLocked(): boolean;
|
|
45
|
+
start(options?: any): void;
|
|
46
|
+
hasActiveRoute(): boolean;
|
|
47
|
+
/**
|
|
48
|
+
* On Shell start up an instance of each Applications router is instantiated
|
|
49
|
+
* so that it can listen to application events or route in the current page
|
|
50
|
+
*/
|
|
51
|
+
onStart(): void;
|
|
52
|
+
/**
|
|
53
|
+
* these are based on node/express middleware:
|
|
54
|
+
* https://gist.github.com/darrenscerri/5c3b3dcbe4d370435cfa
|
|
55
|
+
*
|
|
56
|
+
* Initialization steps should be used to do stuff like register
|
|
57
|
+
* services with the instance manager, register analytics clients
|
|
58
|
+
* and enrichers, add any data provider middle ware and register layouts
|
|
59
|
+
*/
|
|
60
|
+
addInitializationStep(fn: InitializationStep): Shell;
|
|
61
|
+
private runInitializationSteps;
|
|
62
|
+
addStartUpStep(fn: StartUpSet): Shell;
|
|
63
|
+
/**
|
|
64
|
+
* Start up steps should be used to inject options into the shell
|
|
65
|
+
* or run any other code that we want to run just before the application starts
|
|
66
|
+
*/
|
|
67
|
+
private runStartUpSteps;
|
|
68
|
+
registerLayout(name: string, layout: typeof BaseLayoutView): Shell;
|
|
69
|
+
private errorHandlers;
|
|
70
|
+
registerErrorHandler<T extends BaseError>(errorType: Function & {
|
|
71
|
+
prototype: T;
|
|
72
|
+
}, handler: (error: T) => void): Shell;
|
|
73
|
+
handleError(error: BaseError): void;
|
|
74
|
+
store: Store;
|
|
75
|
+
registerStore(store: Store): void;
|
|
76
|
+
listenTo(object: any, eventMap: Backbone.EventMap): this;
|
|
77
|
+
listenTo(obj: string | Backbone.Events, events: string, callback: Function): this;
|
|
78
|
+
}
|
|
79
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare type ModelCtor<T> = {
|
|
2
|
+
new (vals: any, options?: any): T;
|
|
3
|
+
};
|
|
4
|
+
export declare type CollectionCtor<T> = {
|
|
5
|
+
new (models?: any[], options?: any): T;
|
|
6
|
+
};
|
|
7
|
+
export declare type ViewCtor<T> = {
|
|
8
|
+
new (options: any): T;
|
|
9
|
+
};
|
|
10
|
+
export declare type ErrorCtor<T> = {
|
|
11
|
+
new (...args: any[]): T;
|
|
12
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export { AppLink, AppLinkOptions, AppLinkHash, AppLinkHelper, AppLinkUtility } from './AppLink';
|
|
2
|
+
export { BaseApplication as Application } from './BaseApplication';
|
|
3
|
+
export { BaseAppRouter as AppRouter, ExecuteRouteOptions } from './BaseAppRouter';
|
|
4
|
+
export { BaseBehavior as Behavior } from './BaseBehavior';
|
|
5
|
+
export { BaseCollection as Collection } from './BaseCollection';
|
|
6
|
+
export { BaseCollectionView as CollectionView, BaseCollectionViewOptions as CollectionViewOptions, BaseCollectionView as ComponentCollection, BaseCollectionViewOptions as ComponentCollectionOptions, } from './BaseCollectionView';
|
|
7
|
+
export { BaseError as Error, ErrorHelper, SilentError } from './BaseError';
|
|
8
|
+
export { BaseLayoutView as LayoutView, BaseLayoutViewOptions as LayoutViewOptions } from './BaseLayoutView';
|
|
9
|
+
export { BaseNestedModel as NestedModel, BaseNestedModelOptions as NestedModelOptions } from './BaseNestedModel';
|
|
10
|
+
export { BaseService as Service, BaseServiceOptions as ServiceOptions } from './BaseService';
|
|
11
|
+
export { BaseModel as Model } from './BaseModel';
|
|
12
|
+
export { BaseView as View, BaseViewOptions as ViewOptions, BaseComponent as Component, BaseViewOptions as ComponentOptions, RequiredResourceDefinition, RequiredResourceHash } from './BaseView';
|
|
13
|
+
export { EventNames } from './EventNames';
|
|
14
|
+
export { LayoutService, LayoutOptions } from './LayoutService';
|
|
15
|
+
export { Middleware, MiddlewareFunction, MiddlewareNext } from './Middleware';
|
|
16
|
+
export { LocationUtils } from './LocationUtils';
|
|
17
|
+
export { Shell } from './Shell';
|
|
18
|
+
export * from './Types';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ObjectHash } from 'backbone';
|
|
2
|
+
export interface BaseCollectionIdentifierOptions<T> {
|
|
3
|
+
collectionPrefix?: string;
|
|
4
|
+
id?: string;
|
|
5
|
+
sort?: T;
|
|
6
|
+
cursor?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare class BaseCollectionIdentifier<T = {}> {
|
|
9
|
+
id: string;
|
|
10
|
+
sort: T;
|
|
11
|
+
cursor: string;
|
|
12
|
+
collectionPrefix: string;
|
|
13
|
+
constructor(options: BaseCollectionIdentifierOptions<T>);
|
|
14
|
+
protected setData(options: BaseCollectionIdentifierOptions<T>): void;
|
|
15
|
+
toString(): string;
|
|
16
|
+
toParams(): ObjectHash;
|
|
17
|
+
protected getSortTypeParam(): string;
|
|
18
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { DataServiceGetRequest, DataServiceCreateRequest, DataServiceUpdateRequest, DataServiceDeleteRequest } from "./DataServiceRequests";
|
|
2
|
+
export interface ChainableDataService {
|
|
3
|
+
func(callback: (callback: () => any) => void): ChainableDataService;
|
|
4
|
+
get<T>(options: DataServiceGetRequest<T>): ChainableDataService;
|
|
5
|
+
create<T>(options: DataServiceCreateRequest<T>): ChainableDataService;
|
|
6
|
+
update<T>(options: DataServiceUpdateRequest<T>): ChainableDataService;
|
|
7
|
+
delete(options: DataServiceDeleteRequest): ChainableDataService;
|
|
8
|
+
run(): void;
|
|
9
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export interface DataCache extends Marionette.Object {
|
|
2
|
+
has(cacheKey: string): boolean;
|
|
3
|
+
get(cacheKey: string): any;
|
|
4
|
+
set(cacheKey: string, value: any): void;
|
|
5
|
+
getOrSet(cacheKey: string, getter: () => any): any;
|
|
6
|
+
remove(cacheKey: string): boolean;
|
|
7
|
+
invalidate(cacheKey: string[], callback?: (cacheKey: string) => void): void;
|
|
8
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/// <reference types="backbone.radio" />
|
|
2
|
+
import { Radio } from 'backbone';
|
|
3
|
+
import { DataServiceError } from "./DataServiceError";
|
|
4
|
+
export interface DataProviderResponseOptions {
|
|
5
|
+
channel: Radio.Channel;
|
|
6
|
+
successEvent: string;
|
|
7
|
+
errorEvent: string;
|
|
8
|
+
}
|
|
9
|
+
export interface DataProvider extends Marionette.Object {
|
|
10
|
+
parseError(...args: any[]): DataServiceError;
|
|
11
|
+
create<T>(resource: string, obj: T, options: DataProviderResponseOptions): void;
|
|
12
|
+
read<T>(resource: string, options: DataProviderResponseOptions): void;
|
|
13
|
+
update<T>(resource: string, obj: T, options: DataProviderResponseOptions): void;
|
|
14
|
+
delete(resource: string, options: DataProviderResponseOptions): void;
|
|
15
|
+
}
|