@clickview/library-editor 1.1.12-dev.0 → 1.1.13-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.
|
@@ -2,7 +2,7 @@ import { ObjectHash } from 'backbone';
|
|
|
2
2
|
import { NotificationType } from '@clickview/shared';
|
|
3
3
|
export declare const NotificationsHelper: {
|
|
4
4
|
createSuggestEditNotification: (data: ObjectHash) => ObjectHash;
|
|
5
|
-
getIconColor: (type: import("../../../../../shared/dist").NotificationAlertType) => "success" | "
|
|
5
|
+
getIconColor: (type: import("../../../../../shared/dist").NotificationAlertType) => "success" | "dark" | "danger" | "warning";
|
|
6
6
|
getIcon: (type: import("../../../../../shared/dist").NotificationAlertType) => import("../../../../../shared/dist/images/svg").localSvgs.CheckCircle | import("../../../../../shared/dist/images/svg").localSvgs.Info | import("../../../../../shared/dist/images/svg").localSvgs.Warning;
|
|
7
7
|
getIconColorByNotificationType: (type: NotificationType) => "danger" | "warning";
|
|
8
8
|
getIconByNotificationType: (type: NotificationType) => import("../../../../../shared/dist/images/svg").localSvgs;
|
|
@@ -14,6 +14,7 @@ export declare class RestrictAccessGroupComponent extends Core.Component {
|
|
|
14
14
|
*/
|
|
15
15
|
get bindings(): ObjectHash;
|
|
16
16
|
regions(): ObjectHash;
|
|
17
|
+
get requiredResources(): Core.RequiredResourceHash;
|
|
17
18
|
viewOptions(): ObjectHash;
|
|
18
19
|
onBeforeRender(): void;
|
|
19
20
|
onRender(): void;
|
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
import { ObjectHash } from 'backbone';
|
|
2
2
|
import { Core } from '@clickview/common';
|
|
3
|
+
import { EmbedResolution } from '@clickview/shared';
|
|
3
4
|
import { SharedResource } from "../../models";
|
|
4
|
-
interface VideoSizes {
|
|
5
|
-
width: string;
|
|
6
|
-
height: string;
|
|
7
|
-
name: string;
|
|
8
|
-
}
|
|
9
5
|
export interface ShareViewOptions extends Core.ViewOptions {
|
|
10
|
-
videoSizes?:
|
|
6
|
+
videoSizes?: EmbedResolution[];
|
|
11
7
|
videoId: string;
|
|
12
8
|
}
|
|
13
9
|
export declare class ShareView extends Core.View<SharedResource> {
|
|
@@ -50,4 +46,3 @@ export declare class ShareView extends Core.View<SharedResource> {
|
|
|
50
46
|
onBeforeRender(): void;
|
|
51
47
|
onRender(): void;
|
|
52
48
|
}
|
|
53
|
-
export {};
|
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.13-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.15-
|
|
33
|
+
"@clickview/tooling": "0.0.15-rc.0",
|
|
34
34
|
"@fortawesome/fontawesome": "1.1.8",
|
|
35
35
|
"@types/clipboard": "2.0.1",
|
|
36
36
|
"@types/cropperjs": "1.1.5",
|
|
@@ -60,9 +60,9 @@
|
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
62
|
"@babel/polyfill": "7.4.4",
|
|
63
|
-
"@clickview/analytics": "1.0.
|
|
64
|
-
"@clickview/common": "1.0.
|
|
65
|
-
"@clickview/shared": "1.0.
|
|
63
|
+
"@clickview/analytics": "1.0.8-rc.0",
|
|
64
|
+
"@clickview/common": "1.0.7-rc.0",
|
|
65
|
+
"@clickview/shared": "1.0.10-rc.0",
|
|
66
66
|
"@clickview/styles": "1.0.2",
|
|
67
67
|
"autotrack": "2.4.1",
|
|
68
68
|
"bootstrap": "4.3.1",
|