@clickview/library-editor 1.0.2-alpha.1 → 1.0.2-alpha.2
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 +1 -1
- package/dist/bundle.js.map +1 -1
- package/dist/en.json +1 -1
- package/dist/library-editor-app.css.map +1 -1
- package/dist/src/apps/library-editor/components/language-select/LanguageSelectComponent.d.ts +1 -0
- 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/migration-wizard/components/errored-video-actions/ErroredVideoActionsComponent.d.ts +1 -0
- package/dist/src/shared/components/dialog/DialogView.d.ts +1 -0
- package/dist/src/shared/components/left-nav/LeftNavNodeComponent.d.ts +1 -0
- package/dist/src/shared/utils/DialogHelper.d.ts +1 -0
- package/dist/src/shared/utils/MaskHelper.d.ts +5 -0
- package/dist/src/shared/utils/PermissionsHelper.d.ts +1 -0
- package/dist/src/shared/utils/search/InstantSearchHelper.d.ts +1 -0
- package/dist/src/shared/utils/search/RawSearchHelper.d.ts +1 -0
- package/dist/src/shared/utils/search/TypeaheadHelper.d.ts +1 -0
- package/dist/src/shared/views/share/ShareView.d.ts +5 -0
- package/package.json +6 -6
- 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
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
/// <reference types="jquery" />
|
|
2
|
+
/// <reference types="jqueryui" />
|
|
3
|
+
/// <reference types="typeahead" />
|
|
4
|
+
/// <reference types="bootstrap" />
|
|
5
|
+
/// <reference types="dropzone" />
|
|
1
6
|
export interface MaskHelperOptions {
|
|
2
7
|
targetSelector?: string;
|
|
3
8
|
additionalClasses?: string;
|
|
@@ -3,6 +3,7 @@ import { Video } from "../models";
|
|
|
3
3
|
import { ObjectOwnerType } from "../../apps/library-editor/enums";
|
|
4
4
|
export declare const PermissionsHelper: {
|
|
5
5
|
canEditVideo(video: Video): boolean;
|
|
6
|
+
canPublicShare(video: Video): boolean;
|
|
6
7
|
canDownloadVideo(video: Video): boolean;
|
|
7
8
|
canAddToExchange(video: Video): boolean;
|
|
8
9
|
canShareVideo(video: Video, application: string): boolean;
|
|
@@ -16,6 +16,7 @@ export declare class ShareView extends Core.View<SharedResource> {
|
|
|
16
16
|
private config;
|
|
17
17
|
private clipboards;
|
|
18
18
|
protected options: ShareViewOptions;
|
|
19
|
+
private video;
|
|
19
20
|
constructor(options?: ShareViewOptions);
|
|
20
21
|
initialize(): void;
|
|
21
22
|
get name(): string;
|
|
@@ -31,6 +32,9 @@ export declare class ShareView extends Core.View<SharedResource> {
|
|
|
31
32
|
private bindListeners;
|
|
32
33
|
get bindings(): ObjectHash;
|
|
33
34
|
private setUpViewModel;
|
|
35
|
+
private onTogglePublic;
|
|
36
|
+
private updateViewModel;
|
|
37
|
+
private onSharedResourceSync;
|
|
34
38
|
private fetchData;
|
|
35
39
|
private buildEmbedString;
|
|
36
40
|
private onClickEmbed;
|
|
@@ -39,6 +43,7 @@ export declare class ShareView extends Core.View<SharedResource> {
|
|
|
39
43
|
private initClipboards;
|
|
40
44
|
private destroyClipboards;
|
|
41
45
|
get requiredResources(): Core.RequiredResourceHash;
|
|
46
|
+
private getCannotPublicShareText;
|
|
42
47
|
onBeforeDestroy(): void;
|
|
43
48
|
private renderFooter;
|
|
44
49
|
viewOptions(): ObjectHash;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clickview/library-editor",
|
|
3
3
|
"description": "Library Editor",
|
|
4
|
-
"version": "1.0.2-alpha.
|
|
4
|
+
"version": "1.0.2-alpha.2",
|
|
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.11-alpha.
|
|
33
|
+
"@clickview/tooling": "0.0.11-alpha.2",
|
|
34
34
|
"@fortawesome/fontawesome": "1.1.8",
|
|
35
35
|
"@types/clipboard": "2.0.1",
|
|
36
36
|
"@types/cropperjs": "1.1.5",
|
|
@@ -61,10 +61,10 @@
|
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"@babel/polyfill": "7.4.4",
|
|
64
|
-
"@clickview/analytics": "1.0.1-alpha.
|
|
65
|
-
"@clickview/common": "1.0.1-alpha.
|
|
66
|
-
"@clickview/shared": "1.0.1-alpha.
|
|
67
|
-
"@clickview/styles": "1.0.1-alpha.
|
|
64
|
+
"@clickview/analytics": "1.0.1-alpha.2",
|
|
65
|
+
"@clickview/common": "1.0.1-alpha.2",
|
|
66
|
+
"@clickview/shared": "1.0.1-alpha.2",
|
|
67
|
+
"@clickview/styles": "1.0.1-alpha.2",
|
|
68
68
|
"autotrack": "2.4.1",
|
|
69
69
|
"backbone-validation": "0.11.5",
|
|
70
70
|
"bootstrap": "4.3.1",
|