@clickview/library-editor 1.1.13-rc.1 → 1.1.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.js.map +1 -0
- package/dist/library-editor-app.css.map +1 -0
- package/dist/src/apps/library-editor/components/folder-link-list/FolderLinkComponent.d.ts +14 -0
- package/dist/src/apps/library-editor/components/folder-link-list/FolderLinkComponentCollection.d.ts +13 -0
- package/dist/src/apps/notifications/collections/NotificationCollection.d.ts +6 -0
- package/dist/src/apps/notifications/components/index.d.ts +3 -0
- package/dist/src/apps/notifications/components/notification-items/notification-item/NotificationItemComponent.d.ts +23 -0
- package/dist/src/apps/notifications/components/notification-list/NotificationListComponent.d.ts +26 -0
- package/dist/src/apps/notifications/components/notification-status/NotificationStatusComponent.d.ts +9 -0
- package/dist/src/apps/notifications/models/Notification.d.ts +3 -0
- package/dist/src/apps/notifications/models/index.d.ts +1 -0
- package/dist/src/apps/notifications/services/NotificationDataService.d.ts +14 -0
- package/dist/src/apps/notifications/services/NotificationService.d.ts +33 -0
- package/dist/src/apps/notifications/services/NotificationSocketService.d.ts +8 -0
- package/dist/src/apps/notifications/services/data-providers/NotificationsSocketDataProvider.d.ts +4 -0
- package/dist/src/apps/notifications/services/index.d.ts +4 -0
- package/dist/src/apps/notifications/utils/NotificationAppLinkHelper.d.ts +10 -0
- package/dist/src/apps/notifications/utils/NotificationsHelper.d.ts +1 -1
- package/dist/src/apps/notifications/views/header/NotificationHeaderView.d.ts +14 -0
- package/dist/src/apps/notifications/views/index.d.ts +3 -0
- package/dist/src/apps/notifications/views/notifications/NotificationsView.d.ts +26 -0
- package/dist/src/apps/notifications/views/popover/NotificationsPopoverView.d.ts +33 -0
- package/dist/src/apps/search/components/index.d.ts +2 -0
- package/dist/src/apps/search/components/instant-search/index.d.ts +4 -0
- package/dist/src/apps/search/components/instant-search/recent-search/RecentSearchResultComponent.d.ts +15 -0
- package/dist/src/apps/search/components/instant-search/series/SeriesSearchResultComponent.d.ts +9 -0
- package/dist/src/apps/search/components/instant-search/tag/TagSearchResultComponent.d.ts +9 -0
- package/dist/src/apps/search/components/instant-search/video-result/VideoSearchResultComponent.d.ts +15 -0
- package/dist/src/apps/search/components/search-context/SearchContextComponent.d.ts +18 -0
- package/dist/src/apps/search/components/search-tips/SearchTipsComponent.d.ts +11 -0
- package/dist/src/apps/search/services/ContextualSearchService.d.ts +37 -0
- package/dist/src/apps/search/views/search-bar/SearchBarView.d.ts +102 -0
- package/dist/src/apps/search/views/search-bar/templates/index.d.ts +9 -0
- package/dist/src/apps/upload/enums/FileLifestyle.d.ts +4 -0
- package/dist/src/apps/upload/enums/PendingItemStatus.d.ts +5 -0
- package/dist/src/apps/upload/errors/internet-connectivity/InternetConnectivityError.d.ts +7 -0
- package/dist/src/apps/upload/services/DropzoneWrapper.d.ts +30 -0
- package/dist/src/apps/upload/services/UploadService.d.ts +64 -0
- package/dist/src/apps/upload/utils/PendingItemsHelper.d.ts +9 -0
- package/dist/src/apps/upload/utils/index.d.ts +1 -0
- package/dist/src/shared/behaviors/empty-state/EmptyStateBehavior.d.ts +22 -0
- package/dist/src/shared/behaviors/popover/PopoverBehavior.d.ts +40 -0
- package/dist/src/shared/behaviors/tooltip/TooltipBehavior.d.ts +12 -0
- package/dist/src/shared/collections/PendingItemsCollection.d.ts +8 -0
- package/dist/src/shared/components/empty-state/EmptyStateComponent.d.ts +24 -0
- package/dist/src/shared/components/pagination/PaginationComponent.d.ts +28 -0
- package/dist/src/shared/components/thumbnail/ThumbnailComponent.d.ts +32 -0
- package/dist/src/shared/enums/AppLinkReferrer.d.ts +3 -0
- package/dist/src/shared/enums/CurationStatus.d.ts +12 -0
- package/dist/src/shared/errors/file-type/FileTypeError.d.ts +15 -0
- package/dist/src/shared/errors/primitives/AlertError.d.ts +4 -0
- package/dist/src/shared/errors/primitives/DialogError.d.ts +9 -0
- package/dist/src/shared/errors/primitives/ErrorPageError.d.ts +7 -0
- package/dist/src/shared/errors/primitives/index.d.ts +3 -0
- package/dist/src/shared/interfaces/CollectionIdentifier.d.ts +7 -0
- package/dist/src/shared/interfaces/Tooltip.d.ts +6 -0
- package/dist/src/shared/services/ContextService.d.ts +38 -0
- package/dist/src/shared/services/LanguageDataService.d.ts +12 -0
- package/dist/src/shared/services/LanguageService.d.ts +16 -0
- package/dist/src/shared/utils/EmptyStateHelper.d.ts +4 -0
- package/dist/src/shared/utils/FileExtensionsHelper.d.ts +9 -0
- package/dist/src/shared/utils/MaskHelper.d.ts +15 -0
- package/dist/src/shared/utils/handlebars/LangHelper.d.ts +5 -0
- package/dist/src/shared/utils/handlebars/index.d.ts +1 -0
- package/dist/src/shared/utils/search/InstantSearchHelper.d.ts +21 -0
- package/dist/src/shared/utils/search/RecentSearchHelper.d.ts +12 -0
- package/dist/src/shared/utils/search/SearchTypes.d.ts +28 -0
- package/dist/src/shared/utils/search/TypeaheadHelper.d.ts +76 -0
- package/dist/src/shared/utils/search/raw-search-components/confirm-selection/ConfirmSelectionComponent.d.ts +12 -0
- package/package.json +5 -5
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.