@clickview/library-editor 1.0.2-alpha.2 → 1.0.3-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.
@@ -1,7 +1,7 @@
1
1
  import { ObjectHash } from 'backbone';
2
2
  import { NotificationAlertType, NotificationType } from "./Constants";
3
3
  export declare const NotificationsHelper: {
4
- getIconColor: (type: NotificationAlertType) => "danger" | "warning" | "success" | "dark";
4
+ getIconColor: (type: NotificationAlertType) => "success" | "danger" | "warning" | "dark";
5
5
  getIcon: (type: NotificationAlertType) => import("../../../../../shared/dist/images/svg").localSvgs.CheckCircle | import("../../../../../shared/dist/images/svg").localSvgs.Info | import("../../../../../shared/dist/images/svg").localSvgs.Warning;
6
6
  /**
7
7
  * This is a manual override based on the notification type. This is only
@@ -0,0 +1,8 @@
1
+ import { VideoUploadService } from './UploadService';
2
+ export declare class LibraryEditorUploadService extends VideoUploadService {
3
+ /**
4
+ * We override addFiles here because we don't want to start the upload
5
+ * if the user does not yet have nay libraries
6
+ */
7
+ addFiles(files: File[]): void;
8
+ }
@@ -0,0 +1,8 @@
1
+ import { VideoUploadService } from './UploadService';
2
+ export declare class LibraryEditorVideoUploadService extends VideoUploadService {
3
+ /**
4
+ * We override addFiles here because we don't want to start the upload
5
+ * if the user does not yet have nay libraries
6
+ */
7
+ addFiles(files: File[]): void;
8
+ }
@@ -0,0 +1,8 @@
1
+ import { BaseVideoUploadService } from '@clickview/shared';
2
+ export declare class VideoUploadService extends BaseVideoUploadService {
3
+ /**
4
+ * We override addFiles here because we don't want to start the upload
5
+ * if the user does not yet have nay libraries
6
+ */
7
+ addFiles(files: File[]): void;
8
+ }
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.2",
4
+ "version": "1.0.3-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.11-alpha.2",
33
+ "@clickview/tooling": "0.0.12-rc.0",
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.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",
64
+ "@clickview/analytics": "1.0.2-rc.0",
65
+ "@clickview/common": "1.0.2-rc.0",
66
+ "@clickview/shared": "1.0.2-rc.0",
67
+ "@clickview/styles": "1.0.2-rc.0",
68
68
  "autotrack": "2.4.1",
69
69
  "backbone-validation": "0.11.5",
70
70
  "bootstrap": "4.3.1",