@clickview/library-editor 1.0.2-alpha.0 → 1.0.2-alpha.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.
Files changed (25) hide show
  1. package/dist/bundle.js +2 -2
  2. package/dist/bundle.js.map +1 -1
  3. package/dist/cv-app-dev.js +104026 -0
  4. package/dist/cv-app-dev.js.map +1 -0
  5. package/dist/cv-svg-dev.js +1449 -0
  6. package/dist/cv-svg-dev.js.map +1 -0
  7. package/dist/library-editor-app.css.map +1 -1
  8. package/dist/src/apps/library-editor/components/language-select/LanguageSelectComponent.d.ts +0 -1
  9. package/dist/src/apps/library-editor/services/VideoDataService.d.ts +1 -3
  10. package/dist/src/apps/library-editor/views/add-to-exchange/AddToExchangeView.d.ts +0 -1
  11. package/dist/src/apps/library-editor/views/new-folder/NewFolderView.d.ts +0 -1
  12. package/dist/src/apps/migration-wizard/components/errored-video-actions/ErroredVideoActionsComponent.d.ts +0 -1
  13. package/dist/src/apps/upload/views/upload-videos/UploadVideosView.d.ts +1 -1
  14. package/dist/src/shared/components/dialog/DialogView.d.ts +0 -1
  15. package/dist/src/shared/components/left-nav/LeftNavNodeComponent.d.ts +0 -1
  16. package/dist/src/shared/services/LanguageDataService.d.ts +6 -1
  17. package/dist/src/shared/services/RestrictedVideoDataService.d.ts +1 -2
  18. package/dist/src/shared/services/index.d.ts +0 -1
  19. package/dist/src/shared/utils/DialogHelper.d.ts +0 -1
  20. package/dist/src/shared/utils/MaskHelper.d.ts +0 -5
  21. package/dist/src/shared/utils/SortHelper.d.ts +1 -1
  22. package/dist/src/shared/utils/search/InstantSearchHelper.d.ts +0 -1
  23. package/dist/src/shared/utils/search/RawSearchHelper.d.ts +0 -1
  24. package/dist/src/shared/utils/search/TypeaheadHelper.d.ts +0 -1
  25. package/package.json +6 -6
@@ -1,4 +1,3 @@
1
- /// <reference types="jquery" />
2
1
  import { ObjectHash } from 'backbone';
3
2
  import { Core } from '@clickview/common';
4
3
  interface ErroredVideoActionsComponentOptions extends Core.ComponentOptions {
@@ -1,5 +1,5 @@
1
- import { Core } from '@clickview/common';
2
1
  import { ObjectHash } from 'backbone';
2
+ import { Core } from '@clickview/common';
3
3
  import { AnalyticsOptions } from '@clickview/analytics';
4
4
  interface UploadVideosViewOptions extends Core.ViewOptions {
5
5
  folderId?: string;
@@ -1,4 +1,3 @@
1
- /// <reference types="jquery" />
2
1
  import { ObjectHash } from 'backbone';
3
2
  import { Core } from '@clickview/common';
4
3
  export interface PopupButton {
@@ -1,4 +1,3 @@
1
- /// <reference types="jquery" />
2
1
  import { ObjectHash } from 'backbone';
3
2
  import { Core } from '@clickview/common';
4
3
  import { LeftNavComponentOptions } from "..";
@@ -1,7 +1,12 @@
1
+ import { ObjectHash } from 'backbone';
1
2
  import { BaseDataService } from '@clickview/common';
2
- import { LanguageConfig } from "../models";
3
+ interface LanguageConfig {
4
+ locale: string;
5
+ phrases: ObjectHash;
6
+ }
3
7
  export declare class LanguageDataService extends BaseDataService {
4
8
  get name(): string;
5
9
  get channelName(): string;
6
10
  getLanguageConfig(callback?: (languageConfig: LanguageConfig) => void): void;
7
11
  }
12
+ export {};
@@ -1,7 +1,6 @@
1
- import { BaseDataService } from '@clickview/common';
1
+ import { Cursors, BaseDataService } from '@clickview/common';
2
2
  import { VideoCollection, RestrictedObjectCollection } from "../collections";
3
3
  import { VideoCollectionIdentifier } from "../interfaces/VideoCollectionIdentifier";
4
- import { Cursors } from '@clickview/common';
5
4
  export declare class RestrictedVideoDataService extends BaseDataService {
6
5
  get name(): string;
7
6
  get channelName(): string;
@@ -11,7 +11,6 @@ export * from './RestrictedVideoDataService';
11
11
  export * from './PageVisibilityService';
12
12
  export * from './PageTitleService';
13
13
  export * from './ContextService';
14
- export * from './LanguageService';
15
14
  export * from './LanguageDataService';
16
15
  export * from './ContextService';
17
16
  export * from './DownloadProxyDataServices';
@@ -1,4 +1,3 @@
1
- /// <reference types="jquery" />
2
1
  import { Core } from '@clickview/common';
3
2
  import { DialogViewOptions } from "../components";
4
3
  export declare class DialogHelper extends Core.Service {
@@ -1,8 +1,3 @@
1
- /// <reference types="jquery" />
2
- /// <reference types="jqueryui" />
3
- /// <reference types="typeahead" />
4
- /// <reference types="bootstrap" />
5
- /// <reference types="dropzone" />
6
1
  export interface MaskHelperOptions {
7
2
  targetSelector?: string;
8
3
  additionalClasses?: string;
@@ -1,6 +1,6 @@
1
+ import { ObjectHash } from 'backbone';
1
2
  import { Core } from '@clickview/common';
2
3
  import { SortType, ExportServiceSortType } from "../enums";
3
- import { ObjectHash } from 'backbone';
4
4
  declare const SortHelper: {
5
5
  GetCurrentSortType(): SortType;
6
6
  GetSortViewModel(): Core.Model;
@@ -1,4 +1,3 @@
1
- /// <reference types="jquery" />
2
1
  import { ObjectHash } from 'backbone';
3
2
  import { RemoteSearch } from "./";
4
3
  /**
@@ -1,4 +1,3 @@
1
- /// <reference types="jquery" />
2
1
  import { ObjectHash } from 'backbone';
3
2
  import * as Search from "./";
4
3
  import { Tag, Producer, Distributor, Series, Channel } from "../../models";
@@ -1,5 +1,4 @@
1
1
  /// <reference types="typeahead" />
2
- /// <reference types="jquery" />
3
2
  import { ObjectHash } from 'backbone';
4
3
  import * as Bloodhound from 'bloodhound';
5
4
  import { TypeaheadDataSource, LocalSearch, RemoteSearch, TypeaheadConfig } from "./";
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.0",
4
+ "version": "1.0.2-alpha.1",
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.0",
33
+ "@clickview/tooling": "0.0.11-alpha.1",
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.0",
65
- "@clickview/common": "1.0.1-alpha.0",
66
- "@clickview/shared": "1.0.1-alpha.0",
67
- "@clickview/styles": "1.0.1-alpha.0",
64
+ "@clickview/analytics": "1.0.1-alpha.1",
65
+ "@clickview/common": "1.0.1-alpha.1",
66
+ "@clickview/shared": "1.0.1-alpha.1",
67
+ "@clickview/styles": "1.0.1-alpha.1",
68
68
  "autotrack": "2.4.1",
69
69
  "backbone-validation": "0.11.5",
70
70
  "bootstrap": "4.3.1",