@clickview/library-editor 1.1.3 → 1.1.4-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/bundle.js +2 -2
- package/dist/en.json +1 -1
- package/dist/library-editor-app.css +1 -7
- 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/sort-select/SortSelectComponent.d.ts +1 -1
- package/dist/src/apps/library-editor/services/ExportDataService.d.ts +1 -1
- package/dist/src/apps/notifications/utils/Constants.d.ts +0 -52
- package/dist/src/apps/notifications/utils/NotificationsHelper.d.ts +4 -13
- package/dist/src/apps/notifications/utils/index.d.ts +0 -1
- package/dist/src/apps/search/services/SearchDataService.d.ts +1 -1
- package/dist/src/apps/staff-requests/views/staff-requests/StaffRequestsView.d.ts +1 -1
- package/dist/src/index.d.ts +0 -6
- package/dist/src/shared/behaviors/index.d.ts +0 -1
- package/dist/src/shared/components/index.d.ts +0 -2
- package/dist/src/shared/constants/ImageUrls.d.ts +0 -1
- package/dist/src/shared/constants/Services.d.ts +0 -1
- package/dist/src/shared/constants/empty-state-components/EmptyStateComponents.d.ts +1 -1
- package/dist/src/shared/enums/SortTypes.d.ts +0 -7
- package/dist/src/shared/enums/index.d.ts +0 -1
- package/dist/src/shared/interfaces/LibraryFoldersIdentifier.d.ts +1 -2
- 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 +1 -2
- package/dist/src/shared/interfaces/index.d.ts +0 -1
- package/dist/src/shared/services/UserDataService.d.ts +1 -1
- package/dist/src/shared/utils/SortHelper.d.ts +2 -1
- package/dist/src/shared/utils/index.d.ts +0 -2
- package/package.json +5 -5
|
@@ -13,7 +13,6 @@ export * from './ImageType';
|
|
|
13
13
|
export * from './FileIdType';
|
|
14
14
|
export * from './UserRole';
|
|
15
15
|
export * from './TimeType';
|
|
16
|
-
export * from './AppLinkReferrer';
|
|
17
16
|
export * from './CurationStatus';
|
|
18
17
|
export * from './UploadInteractionType';
|
|
19
18
|
export * from './RestrictedObjectType';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { SortType } from
|
|
2
|
-
import { CollectionIdentifier } from './CollectionIdentifier';
|
|
1
|
+
import { SortType, CollectionIdentifier } from '@clickview/shared';
|
|
3
2
|
export declare class LibraryFoldersIdentifier extends CollectionIdentifier {
|
|
4
3
|
constructor(id: string, sort: SortType, cursor?: string);
|
|
5
4
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ObjectHash } from 'backbone';
|
|
2
|
-
import { CollectionIdentifier, CollectionIdentifierOptions } from
|
|
2
|
+
import { CollectionIdentifier, CollectionIdentifierOptions } from '@clickview/shared';
|
|
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 '@clickview/shared';
|
|
3
3
|
import { Option } from "../../apps/search/models";
|
|
4
4
|
interface RecentVideoSubjectCollectionIdentifierOptions extends CollectionIdentifierOptions {
|
|
5
5
|
libraryIds: string[];
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { SortType } from
|
|
2
|
-
import { CollectionIdentifier } from "./CollectionIdentifier";
|
|
1
|
+
import { SortType, CollectionIdentifier } from '@clickview/shared';
|
|
3
2
|
export declare class VideoCollectionIdentifier extends CollectionIdentifier {
|
|
4
3
|
constructor(id: string, sort: SortType, cursor?: string);
|
|
5
4
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/// <reference types="backbone" />
|
|
2
2
|
/// <reference types="backbone.radio" />
|
|
3
3
|
/// <reference types="backbone.validation" />
|
|
4
|
-
import { User } from "../models";
|
|
5
4
|
import { BaseDataService } from '@clickview/common';
|
|
5
|
+
import { User } from "../models";
|
|
6
6
|
import { DataServices } from "../constants/Services";
|
|
7
7
|
export declare class UserDataService extends BaseDataService {
|
|
8
8
|
get name(): string;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ObjectHash } from 'backbone';
|
|
2
2
|
import { Core } from '@clickview/common';
|
|
3
|
-
import { SortType
|
|
3
|
+
import { SortType } from '@clickview/shared';
|
|
4
|
+
import { ExportServiceSortType } from "../enums";
|
|
4
5
|
declare const SortHelper: {
|
|
5
6
|
GetCurrentSortType(): SortType;
|
|
6
7
|
GetSortViewModel(): Core.Model;
|
|
@@ -20,7 +20,5 @@ export * from './TabHelper';
|
|
|
20
20
|
export * from './VideoHelper';
|
|
21
21
|
export * from './CancelProcessingHelper';
|
|
22
22
|
export * from './CollectionHelper';
|
|
23
|
-
export * from './EmptyStateHelper';
|
|
24
23
|
export * from './LazyLoadHelper';
|
|
25
24
|
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
|
+
"version": "1.1.4-dev.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.13-dev.1",
|
|
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.4-dev.0",
|
|
65
|
+
"@clickview/common": "1.0.4-dev.0",
|
|
66
|
+
"@clickview/shared": "1.0.4-dev.0",
|
|
67
67
|
"@clickview/styles": "1.0.2",
|
|
68
68
|
"autotrack": "2.4.1",
|
|
69
69
|
"bootstrap": "4.3.1",
|