@clickview/library-editor 1.1.4-dev.0 → 1.1.4-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.js +2 -2
- package/dist/bundle.js.map +1 -1
- package/dist/en.json +1 -1
- package/dist/library-editor-app.css +10 -2
- package/dist/library-editor-app.css.map +1 -1
- package/dist/src/apps/content-updates/views/add-to-library/AddToLibraryView.d.ts +1 -3
- package/dist/src/apps/dashboard/components/dashboard-notifications/DashboardNotificationsComponents.d.ts +1 -1
- package/dist/src/apps/index.d.ts +1 -1
- package/dist/src/apps/library-editor/components/folder-details/FolderDetailsComponent.d.ts +3 -1
- package/dist/src/apps/library-editor/components/sort-select/SortSelectComponent.d.ts +1 -1
- package/dist/src/apps/library-editor/services/ExportDataService.d.ts +1 -1
- package/dist/src/apps/library-editor/views/add-to-exchange/AddToExchangeView.d.ts +1 -0
- package/dist/src/apps/library-editor/views/new-folder/NewFolderView.d.ts +1 -0
- package/dist/src/apps/notifications/utils/Constants.d.ts +52 -0
- package/dist/src/apps/notifications/utils/NotificationsHelper.d.ts +13 -4
- package/dist/src/apps/notifications/utils/index.d.ts +1 -0
- package/dist/src/apps/search/services/SearchDataService.d.ts +1 -1
- package/dist/src/apps/staff-requests/components/staff-request-actions/StaffRequestActionsComponent.d.ts +1 -0
- package/dist/src/apps/staff-requests/views/staff-requests/StaffRequestsView.d.ts +1 -1
- package/dist/src/apps/upload/components/upload-folder-select/UploadFolderSelectComponent.d.ts +1 -0
- package/dist/src/apps/upload/services/VideoUploadService.d.ts +8 -0
- package/dist/src/index.d.ts +7 -0
- package/dist/src/shared/behaviors/index.d.ts +1 -0
- package/dist/src/shared/components/index.d.ts +3 -0
- package/dist/src/shared/components/left-nav/LeftNavComponent.d.ts +4 -1
- package/dist/src/shared/components/left-nav/LeftNavNodeComponent.d.ts +1 -0
- package/dist/src/shared/components/tree-dropdown/TreeDropdownComponent.d.ts +31 -0
- package/dist/src/shared/constants/ImageUrls.d.ts +1 -0
- package/dist/src/shared/constants/Services.d.ts +1 -0
- package/dist/src/shared/constants/empty-state-components/EmptyStateComponents.d.ts +1 -1
- package/dist/src/shared/enums/SortTypes.d.ts +7 -0
- package/dist/src/shared/enums/index.d.ts +1 -0
- package/dist/src/shared/interfaces/LibraryFoldersIdentifier.d.ts +2 -1
- package/dist/src/shared/interfaces/RecentVideoCollectionIdentifier.d.ts +1 -1
- package/dist/src/shared/interfaces/RecentVideoSubjectCollectionIdentifier.d.ts +1 -1
- package/dist/src/shared/interfaces/VideoCollectionIdentifier.d.ts +2 -1
- package/dist/src/shared/interfaces/index.d.ts +1 -0
- package/dist/src/shared/services/UserDataService.d.ts +1 -1
- package/dist/src/shared/utils/FolderTreeHelpers.d.ts +1 -1
- package/dist/src/shared/utils/SortHelper.d.ts +1 -2
- package/dist/src/shared/utils/index.d.ts +2 -0
- package/package.json +5 -5
- package/dist/cv-app-dev.js +0 -104026
- package/dist/cv-app-dev.js.map +0 -1
- package/dist/cv-svg-dev.js +0 -1449
- package/dist/cv-svg-dev.js.map +0 -1
- package/dist/src/apps/search/components/index.d.ts +0 -2
- package/dist/src/apps/search/components/instant-search/index.d.ts +0 -4
- package/dist/src/apps/search/components/instant-search/recent-search/RecentSearchResultComponent.d.ts +0 -15
- package/dist/src/apps/search/components/instant-search/series/SeriesSearchResultComponent.d.ts +0 -9
- package/dist/src/apps/search/components/instant-search/tag/TagSearchResultComponent.d.ts +0 -9
- package/dist/src/apps/search/components/instant-search/video-result/VideoSearchResultComponent.d.ts +0 -15
- package/dist/src/apps/search/components/search-context/SearchContextComponent.d.ts +0 -18
- package/dist/src/apps/search/components/search-tips/SearchTipsComponent.d.ts +0 -11
- package/dist/src/apps/search/services/ContextualSearchService.d.ts +0 -37
- package/dist/src/apps/search/views/search-bar/SearchBarView.d.ts +0 -102
- package/dist/src/apps/search/views/search-bar/templates/index.d.ts +0 -9
- package/dist/src/shared/behaviors/popover/PopoverBehavior.d.ts +0 -40
- package/dist/src/shared/behaviors/tooltip/TooltipBehavior.d.ts +0 -12
- package/dist/src/shared/components/thumbnail/ThumbnailComponent.d.ts +0 -32
- package/dist/src/shared/interfaces/Tooltip.d.ts +0 -6
- package/dist/src/shared/services/ContextService.d.ts +0 -38
- package/dist/src/shared/services/LanguageService.d.ts +0 -16
- package/dist/src/shared/utils/MaskHelper.d.ts +0 -15
- package/dist/src/shared/utils/search/InstantSearchHelper.d.ts +0 -21
- package/dist/src/shared/utils/search/RecentSearchHelper.d.ts +0 -12
- package/dist/src/shared/utils/search/SearchTypes.d.ts +0 -28
- package/dist/src/shared/utils/search/TypeaheadHelper.d.ts +0 -76
- package/dist/src/shared/utils/search/raw-search-components/confirm-selection/ConfirmSelectionComponent.d.ts +0 -12
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ObjectHash } from 'backbone';
|
|
2
2
|
import { Core } from '@clickview/common';
|
|
3
3
|
import { AnalyticsOptions } from '@clickview/analytics';
|
|
4
|
-
import { CollectionIdentifier } from
|
|
4
|
+
import { CollectionIdentifier } from "../../../../shared/interfaces";
|
|
5
5
|
interface SortSelectComponentOptions extends Core.ComponentOptions {
|
|
6
6
|
appLink: Core.AppLink;
|
|
7
7
|
collectionIdentifier: CollectionIdentifier;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { SortType } from '@clickview/shared';
|
|
2
1
|
import { BaseDataService } from '@clickview/common';
|
|
3
2
|
import { User } from "../../../shared/models";
|
|
3
|
+
import { SortType } from "../../../shared/enums";
|
|
4
4
|
export declare class ExportDataService extends BaseDataService {
|
|
5
5
|
get name(): string;
|
|
6
6
|
get channelName(): string;
|
|
@@ -1,3 +1,55 @@
|
|
|
1
|
+
export declare enum NotificationAlertType {
|
|
2
|
+
Other = 0,
|
|
3
|
+
Alert = 1,
|
|
4
|
+
Warning = 2,
|
|
5
|
+
Info = 3,
|
|
6
|
+
Success = 4
|
|
7
|
+
}
|
|
8
|
+
export declare enum NotificationStatus {
|
|
9
|
+
Received = 1,
|
|
10
|
+
Seen = 2,
|
|
11
|
+
Read = 3
|
|
12
|
+
}
|
|
13
|
+
export interface NotificationCollectionRequest {
|
|
14
|
+
limit?: number;
|
|
15
|
+
cursor?: string;
|
|
16
|
+
before?: string;
|
|
17
|
+
}
|
|
18
|
+
export declare enum NotificationType {
|
|
19
|
+
ExchangeVideoAvailable = "exchange-video-available",
|
|
20
|
+
WorkspaceVideoAvailable = "workspace-video-available",
|
|
21
|
+
Marketing = "marketing",
|
|
22
|
+
EditedVideoAvailable = "edited-video-available",
|
|
23
|
+
VideoRequestAvailable = "pay-tv-video-available",
|
|
24
|
+
VideoRequestDenied = "pay-tv-video-denied",
|
|
25
|
+
VideoReviewReminder = "term-update-review-reminder",
|
|
26
|
+
VideoReviewAddedToLibrary = "term-update-review-videos-added-to-library",
|
|
27
|
+
CustomLibraryVideoAvailable = "custom-library-video-available",
|
|
28
|
+
VideoProcessingFailed = "video-processing-failed",
|
|
29
|
+
StaffRequest = "new-staff-request",
|
|
30
|
+
StaffRequestFulfilled = "staff-request-fulfilment",
|
|
31
|
+
ChapterMergeSuccess = "media-concatenate-success",
|
|
32
|
+
SuggestEdit = "suggest-an-edit"
|
|
33
|
+
}
|
|
34
|
+
export declare enum NotificationActions {
|
|
35
|
+
Read = "notification:read"
|
|
36
|
+
}
|
|
37
|
+
export declare enum NotificationAppLinkModules {
|
|
38
|
+
Video = "video",
|
|
39
|
+
Url = "url",
|
|
40
|
+
Module = "module",
|
|
41
|
+
App = "app",
|
|
42
|
+
StaffRequest = "staff_request"
|
|
43
|
+
}
|
|
44
|
+
export declare enum NotificationModules {
|
|
45
|
+
LibraryReview = "libraryreview",
|
|
46
|
+
ContentUpdates = "newcontent"
|
|
47
|
+
}
|
|
1
48
|
export declare enum NotificationChannels {
|
|
2
49
|
Email = 0
|
|
3
50
|
}
|
|
51
|
+
/**
|
|
52
|
+
* The following notifications types can be mapped to proper
|
|
53
|
+
* AppLinks within Library Editor.
|
|
54
|
+
*/
|
|
55
|
+
export declare const SupportedLibraryEditorNotifications: string[];
|
|
@@ -1,10 +1,19 @@
|
|
|
1
1
|
import { ObjectHash } from 'backbone';
|
|
2
|
-
import { NotificationType } from
|
|
2
|
+
import { NotificationAlertType, NotificationType } from "./Constants";
|
|
3
3
|
export declare const NotificationsHelper: {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
getIconColor: (type: NotificationAlertType) => "success" | "danger" | "warning" | "dark";
|
|
5
|
+
getIcon: (type: NotificationAlertType) => import("../../../../../shared/dist/images/svg").localSvgs.CheckCircle | import("../../../../../shared/dist/images/svg").localSvgs.Info | import("../../../../../shared/dist/images/svg").localSvgs.Warning;
|
|
6
|
+
/**
|
|
7
|
+
* This is a manual override based on the notification type. This is only
|
|
8
|
+
* temporary as some noitifications don't have the correct alert type.
|
|
9
|
+
*/
|
|
7
10
|
getIconColorByNotificationType: (type: NotificationType) => "danger" | "warning";
|
|
11
|
+
/**
|
|
12
|
+
* This is a manual override based on the notification type.
|
|
13
|
+
* Using this to detect marketing notifications as they don't have a fixed
|
|
14
|
+
* type atm.
|
|
15
|
+
*/
|
|
8
16
|
getIconByNotificationType: (type: NotificationType) => import("../../../../../shared/dist/images/svg").localSvgs;
|
|
9
17
|
getNotificationAction: (type: NotificationType) => string;
|
|
18
|
+
createSuggestEditNotification: (data: ObjectHash) => ObjectHash;
|
|
10
19
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { BaseDataService } from '@clickview/common';
|
|
2
|
-
import { CollectionIdentifier } from '@clickview/shared';
|
|
3
2
|
import { VideoCollection } from "../../../shared/collections";
|
|
3
|
+
import { CollectionIdentifier } from "../../../shared/interfaces";
|
|
4
4
|
import { FilterCollection } from "../collections";
|
|
5
5
|
export declare class SearchDataService extends BaseDataService {
|
|
6
6
|
private videoMixinService;
|
|
@@ -18,6 +18,7 @@ export declare class StaffRequestActionsComponent extends Core.Component {
|
|
|
18
18
|
get name(): string;
|
|
19
19
|
get template(): string;
|
|
20
20
|
get lang(): string;
|
|
21
|
+
get folderTreeKey(): string;
|
|
21
22
|
get className(): string;
|
|
22
23
|
get channelName(): string;
|
|
23
24
|
get viewModelName(): string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ObjectHash } from 'backbone';
|
|
2
2
|
import { Core } from '@clickview/common';
|
|
3
|
-
import { AppLinkReferrer } from
|
|
3
|
+
import { AppLinkReferrer } from "../../../../shared/enums";
|
|
4
4
|
import { StaffRequest } from "../../models";
|
|
5
5
|
interface StaffRequestsViewOptions extends Core.ViewOptions<StaffRequest> {
|
|
6
6
|
requestId?: string;
|
package/dist/src/apps/upload/components/upload-folder-select/UploadFolderSelectComponent.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ export declare class UploadFolderSelectComponent extends Core.Component {
|
|
|
18
18
|
get name(): string;
|
|
19
19
|
get template(): any;
|
|
20
20
|
get lang(): string;
|
|
21
|
+
get folderTreeKey(): string;
|
|
21
22
|
regions(): ObjectHash;
|
|
22
23
|
private hasMultipleLibraries;
|
|
23
24
|
private get libraryChannelName();
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BaseVideoUploadService } from '@clickview/shared';
|
|
2
|
+
export declare class VideoUploadService extends BaseVideoUploadService {
|
|
3
|
+
/**
|
|
4
|
+
* We override addFiles here because we don't want to start the upload
|
|
5
|
+
* if the user does not yet have any libraries
|
|
6
|
+
*/
|
|
7
|
+
addFiles(files: File[]): void;
|
|
8
|
+
}
|
package/dist/src/index.d.ts
CHANGED
|
@@ -117,6 +117,11 @@ import './apps/migration-wizard/views/selected-videos/selected-videos.lang.json'
|
|
|
117
117
|
import './apps/migration-wizard/views/smart-migration/smart-migration.lang.json';
|
|
118
118
|
import './apps/migration-wizard/views/start/start.lang.json';
|
|
119
119
|
import './apps/migration-wizard/views/videos-added/videos-added.lang.json';
|
|
120
|
+
import './apps/notifications/components/notification-list/notification-list.lang.json';
|
|
121
|
+
import './apps/notifications/services/notifications-services.lang.json';
|
|
122
|
+
import './apps/notifications/utils/notifications-utils.lang.json';
|
|
123
|
+
import './apps/notifications/views/notifications/notifications.lang.json';
|
|
124
|
+
import './apps/notifications/views/popover/notifications-popover.lang.json';
|
|
120
125
|
import './apps/search/components/filters/filter-list/filter-list.lang.json';
|
|
121
126
|
import './apps/search/components/filters/filter-options/tag-filter-options/tag-filter-options.lang.json';
|
|
122
127
|
import './apps/search/components/filters/filters.lang.json';
|
|
@@ -159,6 +164,8 @@ import './shared/components/edit-video/edit-production-info/edit-production-info
|
|
|
159
164
|
import './shared/components/edit-video/edit-season-info/edit-season-info.lang.json';
|
|
160
165
|
import './shared/components/edit-video/select-rating/select-rating.lang.json';
|
|
161
166
|
import './shared/components/page-footer/page-footer.lang.json';
|
|
167
|
+
import './shared/components/pagination/pagination.lang.json';
|
|
168
|
+
import './shared/components/tree-dropdown/tree-dropdown.lang.json';
|
|
162
169
|
import './shared/components/video-actions/video-actions.lang.json';
|
|
163
170
|
import './shared/components/video-basic-info/video-basic-info.lang.json';
|
|
164
171
|
import './shared/components/video-description/video-description.lang.json';
|
|
@@ -4,6 +4,7 @@ export * from './file-select/FileSelectBehavior';
|
|
|
4
4
|
export * from './image-select-behavior/ImageSelectBehavior';
|
|
5
5
|
export * from './lock-layout-file-drop/LockLayoutFileDropBehavior';
|
|
6
6
|
export * from './backbone-validation/BackboneValidationBehavior';
|
|
7
|
+
export * from './empty-state/EmptyStateBehavior';
|
|
7
8
|
export * from './lazy-load/LazyLoadBehavior';
|
|
8
9
|
export * from './popup/PopupBehavior';
|
|
9
10
|
export * from './stickit/StickitBehavior';
|
|
@@ -15,6 +15,7 @@ export * from './checkbox/CheckboxComponent';
|
|
|
15
15
|
export * from './checkbox/BulkCheckboxComponent';
|
|
16
16
|
export * from './left-nav/LeftNavComponent';
|
|
17
17
|
export * from './page-footer/PageFooterComponent';
|
|
18
|
+
export * from './pagination/PaginationComponent';
|
|
18
19
|
export * from './video-basic-info/VideoBasicInfoComponent';
|
|
19
20
|
export * from './video-item-preview/VideoItemPreviewComponent';
|
|
20
21
|
export * from './video-preview/VideoPreviewComponent';
|
|
@@ -40,4 +41,6 @@ export * from './dialog/DialogView';
|
|
|
40
41
|
export * from './dropdown/DropdownButtonComponent';
|
|
41
42
|
export * from './dropdown/DropdownComponentCollection';
|
|
42
43
|
export * from './dropdown/DropdownItemComponent';
|
|
44
|
+
export * from './empty-state/EmptyStateComponent';
|
|
43
45
|
export * from './spinner-button/SpinnerButtonComponent';
|
|
46
|
+
export * from './tree-dropdown/TreeDropdownComponent';
|
|
@@ -6,7 +6,7 @@ export interface LeftNavComponentOptions extends Core.ComponentOptions {
|
|
|
6
6
|
channelName: string;
|
|
7
7
|
childrenProperty?: string;
|
|
8
8
|
textProperty?: string;
|
|
9
|
-
appLink
|
|
9
|
+
appLink?: Core.AppLink;
|
|
10
10
|
linkArgs?: (model: Core.Model) => any[];
|
|
11
11
|
linkParams?: (model: Core.Model) => string | ObjectHash;
|
|
12
12
|
actions?: new (...args: any[]) => Core.Component;
|
|
@@ -14,9 +14,12 @@ export interface LeftNavComponentOptions extends Core.ComponentOptions {
|
|
|
14
14
|
extraClass?: string;
|
|
15
15
|
folderTreeId: string;
|
|
16
16
|
analyticsOptions?: AnalyticsOptions;
|
|
17
|
+
isSelector?: boolean;
|
|
18
|
+
disabledIds?: ObjectHash;
|
|
17
19
|
}
|
|
18
20
|
export declare class LeftNavComponent extends Core.ComponentCollection {
|
|
19
21
|
protected options: LeftNavComponentOptions;
|
|
22
|
+
private disabledIds;
|
|
20
23
|
constructor(options?: LeftNavComponentOptions);
|
|
21
24
|
get name(): string;
|
|
22
25
|
get tagName(): string;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/// <reference types="jquery" />
|
|
2
|
+
import { ObjectHash } from 'backbone';
|
|
3
|
+
import { Core } from '@clickview/common';
|
|
4
|
+
import { FolderCollection } from "../../collections";
|
|
5
|
+
interface TreeDropdownComponentOptions extends Core.ComponentOptions {
|
|
6
|
+
folderTreeKey: string;
|
|
7
|
+
canCreateNew?: boolean;
|
|
8
|
+
disabledIds?: string[];
|
|
9
|
+
}
|
|
10
|
+
export declare class TreeDropdownComponent extends Core.Component {
|
|
11
|
+
options: TreeDropdownComponentOptions;
|
|
12
|
+
collection: FolderCollection;
|
|
13
|
+
private buttonText;
|
|
14
|
+
private disabledIds;
|
|
15
|
+
constructor(options: TreeDropdownComponentOptions);
|
|
16
|
+
initialize(): void;
|
|
17
|
+
get name(): string;
|
|
18
|
+
get template(): string;
|
|
19
|
+
get className(): string;
|
|
20
|
+
get lang(): string;
|
|
21
|
+
regions(): ObjectHash;
|
|
22
|
+
events(): ObjectHash;
|
|
23
|
+
get defaults(): ObjectHash;
|
|
24
|
+
get elements(): ObjectHash;
|
|
25
|
+
onClickCreateNew(e: JQuery.Event): void;
|
|
26
|
+
private setButtonText;
|
|
27
|
+
private renderSelector;
|
|
28
|
+
viewOptions(): ObjectHash;
|
|
29
|
+
onRender(): void;
|
|
30
|
+
}
|
|
31
|
+
export {};
|
|
@@ -28,6 +28,7 @@ declare enum DataServices {
|
|
|
28
28
|
Library = "LibraryDataService",
|
|
29
29
|
Video = "VideoDataService",
|
|
30
30
|
Notifications = "NotificationDataService",
|
|
31
|
+
NotificationsSocket = "NotificationSocketService",
|
|
31
32
|
Settings = "SettingsDataService",
|
|
32
33
|
StaffRequests = "StaffRequestDataService",
|
|
33
34
|
MigrationVideo = "MigrationVideoDataService",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EmptyStateComponentOptions } from
|
|
1
|
+
import { EmptyStateComponentOptions } from "../../components";
|
|
2
2
|
export interface EmptyStateOptions extends Pick<EmptyStateComponentOptions, Exclude<keyof EmptyStateComponentOptions, 'imageUrl'>> {
|
|
3
3
|
}
|
|
4
4
|
export declare const EmptyStateComponents: {
|
|
@@ -13,6 +13,7 @@ export * from './ImageType';
|
|
|
13
13
|
export * from './FileIdType';
|
|
14
14
|
export * from './UserRole';
|
|
15
15
|
export * from './TimeType';
|
|
16
|
+
export * from './AppLinkReferrer';
|
|
16
17
|
export * from './CurationStatus';
|
|
17
18
|
export * from './UploadInteractionType';
|
|
18
19
|
export * from './RestrictedObjectType';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { SortType
|
|
1
|
+
import { SortType } from "../enums";
|
|
2
|
+
import { CollectionIdentifier } from './CollectionIdentifier';
|
|
2
3
|
export declare class LibraryFoldersIdentifier extends CollectionIdentifier {
|
|
3
4
|
constructor(id: string, sort: SortType, cursor?: string);
|
|
4
5
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ObjectHash } from 'backbone';
|
|
2
|
-
import { CollectionIdentifier, CollectionIdentifierOptions } from
|
|
2
|
+
import { CollectionIdentifier, CollectionIdentifierOptions } from "./CollectionIdentifier";
|
|
3
3
|
import { Option } from "../../apps/search/models";
|
|
4
4
|
interface RecentVideoCollectionIdentifierOptions extends CollectionIdentifierOptions {
|
|
5
5
|
libraryIds: string[];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ObjectHash } from 'backbone';
|
|
2
|
-
import { CollectionIdentifier, CollectionIdentifierOptions } from
|
|
2
|
+
import { CollectionIdentifier, CollectionIdentifierOptions } from "./CollectionIdentifier";
|
|
3
3
|
import { Option } from "../../apps/search/models";
|
|
4
4
|
interface RecentVideoSubjectCollectionIdentifierOptions extends CollectionIdentifierOptions {
|
|
5
5
|
libraryIds: string[];
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { SortType
|
|
1
|
+
import { SortType } from "../enums";
|
|
2
|
+
import { CollectionIdentifier } from "./CollectionIdentifier";
|
|
2
3
|
export declare class VideoCollectionIdentifier extends CollectionIdentifier {
|
|
3
4
|
constructor(id: string, sort: SortType, cursor?: string);
|
|
4
5
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/// <reference types="backbone" />
|
|
2
2
|
/// <reference types="backbone.radio" />
|
|
3
3
|
/// <reference types="backbone.validation" />
|
|
4
|
-
import { BaseDataService } from '@clickview/common';
|
|
5
4
|
import { User } from "../models";
|
|
5
|
+
import { BaseDataService } from '@clickview/common';
|
|
6
6
|
import { DataServices } from "../constants/Services";
|
|
7
7
|
export declare class UserDataService extends BaseDataService {
|
|
8
8
|
get name(): string;
|
|
@@ -11,7 +11,7 @@ declare const FolderTreeHelpers: {
|
|
|
11
11
|
* @param folder either the folder model or the id of the folder
|
|
12
12
|
* @param collection the folder collection
|
|
13
13
|
*/
|
|
14
|
-
setSelected(key: string, folder: string |
|
|
14
|
+
setSelected(key: string, folder: string | Core.Model, collection: FolderCollection, isDisabled?: boolean): void;
|
|
15
15
|
getSelected(key: string, collection: FolderCollection): Folder;
|
|
16
16
|
newFolder(): Folder;
|
|
17
17
|
getModelFromCollection(id: string, collection: FolderCollection): Folder;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { ObjectHash } from 'backbone';
|
|
2
2
|
import { Core } from '@clickview/common';
|
|
3
|
-
import { SortType } from
|
|
4
|
-
import { ExportServiceSortType } from "../enums";
|
|
3
|
+
import { SortType, ExportServiceSortType } from "../enums";
|
|
5
4
|
declare const SortHelper: {
|
|
6
5
|
GetCurrentSortType(): SortType;
|
|
7
6
|
GetSortViewModel(): Core.Model;
|
|
@@ -20,5 +20,7 @@ export * from './TabHelper';
|
|
|
20
20
|
export * from './VideoHelper';
|
|
21
21
|
export * from './CancelProcessingHelper';
|
|
22
22
|
export * from './CollectionHelper';
|
|
23
|
+
export * from './EmptyStateHelper';
|
|
23
24
|
export * from './LazyLoadHelper';
|
|
24
25
|
export * from './SpinnerHelper';
|
|
26
|
+
export * from './handlebars';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clickview/library-editor",
|
|
3
3
|
"description": "Library Editor",
|
|
4
|
-
"version": "1.1.4-
|
|
4
|
+
"version": "1.1.4-rc.0",
|
|
5
5
|
"main": "dist/bundle.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"author": "Shale Kuzmanovski, Michael McDonnell",
|
|
31
31
|
"license": "ISC",
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@clickview/tooling": "0.0.
|
|
33
|
+
"@clickview/tooling": "0.0.12",
|
|
34
34
|
"@fortawesome/fontawesome": "1.1.8",
|
|
35
35
|
"@types/clipboard": "2.0.1",
|
|
36
36
|
"@types/cropperjs": "1.1.5",
|
|
@@ -61,9 +61,9 @@
|
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"@babel/polyfill": "7.4.4",
|
|
64
|
-
"@clickview/analytics": "1.0.
|
|
65
|
-
"@clickview/common": "1.0.
|
|
66
|
-
"@clickview/shared": "1.0.
|
|
64
|
+
"@clickview/analytics": "1.0.3",
|
|
65
|
+
"@clickview/common": "1.0.3",
|
|
66
|
+
"@clickview/shared": "1.0.3",
|
|
67
67
|
"@clickview/styles": "1.0.2",
|
|
68
68
|
"autotrack": "2.4.1",
|
|
69
69
|
"bootstrap": "4.3.1",
|