@clickview/library-editor 1.1.3-rc.0 → 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.
Files changed (29) hide show
  1. package/dist/bundle.js +2 -2
  2. package/dist/en.json +1 -1
  3. package/dist/library-editor-app.css +1 -7
  4. package/dist/src/apps/dashboard/components/dashboard-notifications/DashboardNotificationsComponents.d.ts +1 -1
  5. package/dist/src/apps/index.d.ts +1 -1
  6. package/dist/src/apps/library-editor/components/sort-select/SortSelectComponent.d.ts +1 -1
  7. package/dist/src/apps/library-editor/services/ExportDataService.d.ts +1 -1
  8. package/dist/src/apps/notifications/utils/Constants.d.ts +0 -52
  9. package/dist/src/apps/notifications/utils/NotificationsHelper.d.ts +4 -13
  10. package/dist/src/apps/notifications/utils/index.d.ts +0 -1
  11. package/dist/src/apps/search/services/SearchDataService.d.ts +1 -1
  12. package/dist/src/apps/staff-requests/views/staff-requests/StaffRequestsView.d.ts +1 -1
  13. package/dist/src/index.d.ts +0 -6
  14. package/dist/src/shared/behaviors/index.d.ts +0 -1
  15. package/dist/src/shared/components/index.d.ts +0 -2
  16. package/dist/src/shared/constants/ImageUrls.d.ts +0 -1
  17. package/dist/src/shared/constants/Services.d.ts +0 -1
  18. package/dist/src/shared/constants/empty-state-components/EmptyStateComponents.d.ts +1 -1
  19. package/dist/src/shared/enums/SortTypes.d.ts +0 -7
  20. package/dist/src/shared/enums/index.d.ts +0 -1
  21. package/dist/src/shared/interfaces/LibraryFoldersIdentifier.d.ts +1 -2
  22. package/dist/src/shared/interfaces/RecentVideoCollectionIdentifier.d.ts +1 -1
  23. package/dist/src/shared/interfaces/RecentVideoSubjectCollectionIdentifier.d.ts +1 -1
  24. package/dist/src/shared/interfaces/VideoCollectionIdentifier.d.ts +1 -2
  25. package/dist/src/shared/interfaces/index.d.ts +0 -1
  26. package/dist/src/shared/services/UserDataService.d.ts +1 -1
  27. package/dist/src/shared/utils/SortHelper.d.ts +2 -1
  28. package/dist/src/shared/utils/index.d.ts +0 -2
  29. package/package.json +103 -103
@@ -1,10 +1,3 @@
1
- export declare enum SortType {
2
- MostRecent = 1,
3
- AtoZ = 2,
4
- ProductionYear = 3,
5
- Newest = 4,
6
- SeriesSort = 5
7
- }
8
1
  export declare enum ExportServiceSortType {
9
2
  MostRecent = 0,
10
3
  LeastRecent = 1,
@@ -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 "../enums";
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 "./CollectionIdentifier";
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 "./CollectionIdentifier";
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 "../enums";
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,4 +1,3 @@
1
- export * from './CollectionIdentifier';
2
1
  export * from './VideoCollectionIdentifier';
3
2
  export * from './RecentVideoCollectionIdentifier';
4
3
  export * from './RecentVideoSubjectCollectionIdentifier';
@@ -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, ExportServiceSortType } from "../enums";
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,103 +1,103 @@
1
- {
2
- "name": "@clickview/library-editor",
3
- "description": "Library Editor",
4
- "version": "1.1.3-rc.0",
5
- "main": "dist/bundle.js",
6
- "types": "dist/src/index.d.ts",
7
- "scripts": {
8
- "clean-deps": "rd /s /q \"node_modules\"",
9
- "dev": "run-s vendor-dev watch",
10
- "prod": "run-s vendor-prod webpack-prod validate",
11
- "validate": "node ./tooling/buildValidator.js",
12
- "watch": "npm run webpack-dev -- --watch",
13
- "dev-vendor": "set NODE_ENV=development&& node ./tooling/bundleHelper.js",
14
- "webpack-dev": "set NODE_ENV=development&& webpack --config ./tooling/webpack.config.js",
15
- "vendor-dev": "set NODE_ENV=development&& node ./tooling/bundleHelper.js",
16
- "dotnet-dev": "dotnet run --launch-profile Development",
17
- "webpack-prod": "set NODE_ENV=production&& node --max_old_space_size=6144 node_modules\\webpack\\bin\\webpack --config ./tooling/webpack.config.js",
18
- "vendor-prod": "set NODE_ENV=production&& node ./tooling/bundleHelper.js",
19
- "dotnet-prod": "dotnet run --launch-profile Production",
20
- "start-old": "run-p link dev dotnet-dev",
21
- "start-prod": "run-s prod dotnet-prod",
22
- "start": "set NODE_ENV=development&& webpack -w --config ./tooling/webpack.config.js",
23
- "build": "set NODE_ENV=production&& webpack --config ./tooling/webpack.config.js",
24
- "dev-build": "set NODE_ENV=development&& webpack --config ./tooling/webpack.config.js"
25
- },
26
- "repository": {
27
- "type": "git",
28
- "url": "http://gitlab.cvinternal.net/Online/Cloud"
29
- },
30
- "author": "Shale Kuzmanovski, Michael McDonnell",
31
- "license": "ISC",
32
- "devDependencies": {
33
- "@clickview/tooling": "0.0.12",
34
- "@fortawesome/fontawesome": "1.1.8",
35
- "@types/clipboard": "2.0.1",
36
- "@types/cropperjs": "1.1.5",
37
- "@types/dropzone": "5.0.6",
38
- "@types/jqueryui": "1.12.7",
39
- "@types/linkifyjs": "2.1.2",
40
- "@types/node-polyglot": "0.4.33",
41
- "@types/typeahead": "0.11.32",
42
- "@types/webpack-env": "1.13.9",
43
- "babel-minify-webpack-plugin": "0.3.1",
44
- "mkdirp": "0.5.1",
45
- "node-sass": "4.12.0",
46
- "npm-run-all": "4.1.5",
47
- "postcss-cli": "6.1.3",
48
- "postcss-sass": "0.4.1",
49
- "prettier": "1.18.2",
50
- "regenerator-runtime": "0.13.3",
51
- "rev-hash": "3.0.0",
52
- "stylelint-config-recommended": "2.2.0",
53
- "stylelint-scss": "3.9.0",
54
- "typedoc": "0.14.2",
55
- "webpack-bundle-analyzer": "3.3.2",
56
- "webpack-dev-middleware": "3.7.0",
57
- "webpack-env": "0.8.0",
58
- "webpack-hot-middleware": "2.25.0",
59
- "webpack-stats-plugin": "0.2.1",
60
- "write-json-file": "4.1.1"
61
- },
62
- "dependencies": {
63
- "@babel/polyfill": "7.4.4",
64
- "@clickview/analytics": "1.0.3-rc.0",
65
- "@clickview/common": "1.0.3-rc.0",
66
- "@clickview/shared": "1.0.3-rc.0",
67
- "@clickview/styles": "1.0.2",
68
- "autotrack": "2.4.1",
69
- "bootstrap": "4.3.1",
70
- "clipboard": "2.0.4",
71
- "corejs-typeahead": "1.2.1",
72
- "cropperjs": "1.5.3",
73
- "dropzone": "5.5.1",
74
- "jquery-ui": "1.12.1",
75
- "linkifyjs": "2.1.8",
76
- "moment": "2.24.0",
77
- "node-polyglot": "2.3.0",
78
- "signalr": "2.4.0",
79
- "tempusdominus-bootstrap-4": "5.1.2"
80
- },
81
- "browserslist": [
82
- "Firefox >= 22",
83
- "Chrome >= 28",
84
- "Safari >= 6",
85
- "IE >= 11",
86
- "Edge >= 20"
87
- ],
88
- "babel": {
89
- "presets": [
90
- [
91
- "@babel/preset-env",
92
- {
93
- "corejs": 2,
94
- "useBuiltIns": "entry"
95
- }
96
- ]
97
- ]
98
- },
99
- "vendorBundle": {
100
- "name": "cv-vendor",
101
- "hash": "50a185b299"
102
- }
103
- }
1
+ {
2
+ "name": "@clickview/library-editor",
3
+ "description": "Library Editor",
4
+ "version": "1.1.4-dev.0",
5
+ "main": "dist/bundle.js",
6
+ "types": "dist/src/index.d.ts",
7
+ "scripts": {
8
+ "clean-deps": "rd /s /q \"node_modules\"",
9
+ "dev": "run-s vendor-dev watch",
10
+ "prod": "run-s vendor-prod webpack-prod validate",
11
+ "validate": "node ./tooling/buildValidator.js",
12
+ "watch": "npm run webpack-dev -- --watch",
13
+ "dev-vendor": "set NODE_ENV=development&& node ./tooling/bundleHelper.js",
14
+ "webpack-dev": "set NODE_ENV=development&& webpack --config ./tooling/webpack.config.js",
15
+ "vendor-dev": "set NODE_ENV=development&& node ./tooling/bundleHelper.js",
16
+ "dotnet-dev": "dotnet run --launch-profile Development",
17
+ "webpack-prod": "set NODE_ENV=production&& node --max_old_space_size=6144 node_modules\\webpack\\bin\\webpack --config ./tooling/webpack.config.js",
18
+ "vendor-prod": "set NODE_ENV=production&& node ./tooling/bundleHelper.js",
19
+ "dotnet-prod": "dotnet run --launch-profile Production",
20
+ "start-old": "run-p link dev dotnet-dev",
21
+ "start-prod": "run-s prod dotnet-prod",
22
+ "start": "set NODE_ENV=development&& webpack -w --config ./tooling/webpack.config.js",
23
+ "build": "set NODE_ENV=production&& webpack --config ./tooling/webpack.config.js",
24
+ "dev-build": "set NODE_ENV=development&& webpack --config ./tooling/webpack.config.js"
25
+ },
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "http://gitlab.cvinternal.net/Online/Cloud"
29
+ },
30
+ "author": "Shale Kuzmanovski, Michael McDonnell",
31
+ "license": "ISC",
32
+ "devDependencies": {
33
+ "@clickview/tooling": "0.0.13-dev.1",
34
+ "@fortawesome/fontawesome": "1.1.8",
35
+ "@types/clipboard": "2.0.1",
36
+ "@types/cropperjs": "1.1.5",
37
+ "@types/dropzone": "5.0.6",
38
+ "@types/jqueryui": "1.12.7",
39
+ "@types/linkifyjs": "2.1.2",
40
+ "@types/node-polyglot": "0.4.33",
41
+ "@types/typeahead": "0.11.32",
42
+ "@types/webpack-env": "1.13.9",
43
+ "babel-minify-webpack-plugin": "0.3.1",
44
+ "mkdirp": "0.5.1",
45
+ "node-sass": "4.12.0",
46
+ "npm-run-all": "4.1.5",
47
+ "postcss-cli": "6.1.3",
48
+ "postcss-sass": "0.4.1",
49
+ "prettier": "1.18.2",
50
+ "regenerator-runtime": "0.13.3",
51
+ "rev-hash": "3.0.0",
52
+ "stylelint-config-recommended": "2.2.0",
53
+ "stylelint-scss": "3.9.0",
54
+ "typedoc": "0.14.2",
55
+ "webpack-bundle-analyzer": "3.3.2",
56
+ "webpack-dev-middleware": "3.7.0",
57
+ "webpack-env": "0.8.0",
58
+ "webpack-hot-middleware": "2.25.0",
59
+ "webpack-stats-plugin": "0.2.1",
60
+ "write-json-file": "4.1.1"
61
+ },
62
+ "dependencies": {
63
+ "@babel/polyfill": "7.4.4",
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
+ "@clickview/styles": "1.0.2",
68
+ "autotrack": "2.4.1",
69
+ "bootstrap": "4.3.1",
70
+ "clipboard": "2.0.4",
71
+ "corejs-typeahead": "1.2.1",
72
+ "cropperjs": "1.5.3",
73
+ "dropzone": "5.5.1",
74
+ "jquery-ui": "1.12.1",
75
+ "linkifyjs": "2.1.8",
76
+ "moment": "2.24.0",
77
+ "node-polyglot": "2.3.0",
78
+ "signalr": "2.4.0",
79
+ "tempusdominus-bootstrap-4": "5.1.2"
80
+ },
81
+ "browserslist": [
82
+ "Firefox >= 22",
83
+ "Chrome >= 28",
84
+ "Safari >= 6",
85
+ "IE >= 11",
86
+ "Edge >= 20"
87
+ ],
88
+ "babel": {
89
+ "presets": [
90
+ [
91
+ "@babel/preset-env",
92
+ {
93
+ "corejs": 2,
94
+ "useBuiltIns": "entry"
95
+ }
96
+ ]
97
+ ]
98
+ },
99
+ "vendorBundle": {
100
+ "name": "cv-vendor",
101
+ "hash": "50a185b299"
102
+ }
103
+ }