@clickview/library-editor 1.1.4-dev.0 → 1.1.4-rc.1
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 +10 -2
- 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 +14 -5
- 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/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 +103 -103
- package/dist/bundle.js.map +0 -1
- 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/library-editor-app.css.map +0 -1
- package/dist/src/apps/notifications/constants/NotificationsAppVariables.d.ts +0 -7
- package/dist/src/apps/notifications/constants/index.d.ts +0 -0
- 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
|
@@ -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();
|
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,103 +1,103 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@clickview/library-editor",
|
|
3
|
-
"description": "Library Editor",
|
|
4
|
-
"version": "1.1.4-
|
|
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.
|
|
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.
|
|
65
|
-
"@clickview/common": "1.0.
|
|
66
|
-
"@clickview/shared": "1.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-rc.1",
|
|
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",
|
|
65
|
+
"@clickview/common": "1.0.3",
|
|
66
|
+
"@clickview/shared": "1.0.3",
|
|
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
|
+
}
|