@clickview/player 0.0.5 → 0.0.6-dev.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/en.json +1 -1
- package/dist/libs/analytics/src/interfaces/AnalyticsTypes.d.ts +21 -2
- package/dist/libs/common/src/backbone/core/AppLink.d.ts +0 -4
- package/dist/libs/common/src/backbone/interfaces/Xhr.d.ts +2 -2
- package/dist/libs/shared/src/apps/notifications/enums/NotificationType.d.ts +2 -1
- package/dist/libs/shared/src/apps/search/interfaces/FilterProps.d.ts +8 -0
- package/dist/libs/shared/src/apps/search/interfaces/SearchFilter.d.ts +29 -0
- package/dist/libs/shared/src/apps/search/interfaces/SearchResults.d.ts +26 -0
- package/dist/libs/shared/src/apps/search/interfaces/SearchTypes.d.ts +26 -0
- package/dist/libs/shared/src/apps/search/interfaces/index.d.ts +4 -0
- package/dist/libs/shared/src/apps/search/reducers/FilterReducer.d.ts +36 -0
- package/dist/libs/shared/src/apps/search/reducers/index.d.ts +1 -0
- package/dist/libs/shared/src/enums/MasterType.d.ts +1 -0
- package/dist/libs/shared/src/hooks/useNavLock.d.ts +2 -0
- package/dist/libs/shared/src/images/svg/ImportedSvgs.d.ts +4 -1
- package/dist/libs/shared/src/images/svg/objects/index.d.ts +2 -1
- package/dist/libs/shared/src/images/svg/status/index.d.ts +2 -1
- package/dist/libs/shared/src/interfaces/app-variables/BaseNotificationsAppVariables.d.ts +2 -0
- package/dist/libs/shared/src/interfaces/index.d.ts +1 -0
- package/dist/libs/shared/src/interfaces/models/User.d.ts +14 -1
- package/dist/libs/shared/src/interfaces/models/interactive-results/InteractiveResultSet.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/models/interactive-results/StudentResult.d.ts +2 -1
- package/dist/libs/shared/src/interfaces/responses/ShareSearchResponse.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/responses/index.d.ts +1 -0
- package/dist/libs/shared/src/utils/ImageHelper.d.ts +2 -1
- package/dist/player-app.css +23 -21
- package/dist/player-app.js +13 -13
- package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-item.d.ts +3 -2
- package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-items.d.ts +3 -2
- package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-load-progress.d.ts +2 -2
- package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-play-progress.d.ts +2 -2
- package/dist/projects/player/src/components/chapters-button/chapter-menu-item.d.ts +2 -2
- package/dist/projects/player/src/components/cog-button/cog-button.d.ts +0 -1
- package/dist/projects/player/src/components/cog-button/collapsible-heading-menu-item.d.ts +15 -0
- package/dist/projects/player/src/components/collapserator/collapserator.d.ts +1 -1
- package/dist/projects/player/src/components/keyboard-shortcuts-button/keyboard-shortcuts-button.d.ts +1 -0
- package/dist/projects/player/src/components/landing-splash/landing-splash.d.ts +2 -2
- package/dist/projects/player/src/components/landing-splash/metadata/splash-metadata.d.ts +2 -2
- package/dist/projects/player/src/components/landing-splash/metadata/splash-title/splash-title.d.ts +2 -2
- package/dist/projects/player/src/components/landing-splash/metadata/splash-warning/splash-warning.d.ts +2 -2
- package/dist/projects/player/src/components/menu/menu.d.ts +7 -0
- package/dist/projects/player/src/components/play-pause-feedback/play-pause-feedback.d.ts +1 -0
- package/dist/projects/player/src/components/play-toggle/play-toggle.d.ts +1 -0
- package/dist/projects/player/src/components/player/player.d.ts +4 -0
- package/dist/projects/player/src/components/subs-caps-button/SubCapsMenuItem.d.ts +2 -2
- package/dist/projects/player/src/components/subs-caps-button/off-text-track-menu-item.d.ts +1 -0
- package/dist/projects/player/src/components/subs-caps-button/subs-caps-button.d.ts +1 -0
- package/dist/projects/player/src/components/subs-caps-button/subtitle-search-menu-item.d.ts +4 -3
- package/dist/projects/player/src/components/subs-caps-button/subtitle-size-menu-item.d.ts +2 -2
- package/dist/projects/player/src/components/subtitle-search-button/subtitle-search-button.d.ts +2 -0
- package/dist/projects/player/src/components/subtitle-search-button/subtitle-search-input.d.ts +1 -0
- package/dist/projects/player/src/components/text-track-settings/text-track-settings.d.ts +2 -2
- package/dist/projects/player/src/components/thumbnail-display/thumbnail-display.d.ts +2 -2
- package/dist/projects/player/src/players/base-player.d.ts +13 -2
- package/dist/projects/player/src/players/interactive-player.d.ts +4 -0
- package/dist/projects/player/src/players/player.d.ts +0 -5
- package/dist/projects/player/src/plugins/chromecast-plugin/session-manager.d.ts +2 -2
- package/dist/projects/player/src/plugins/chromecast-plugin/tech/chromecast-tech-ui/chromecast-tech-ui.d.ts +2 -2
- package/dist/projects/player/src/plugins/create-clip-plugin/components/clip-timepoint-selector/clip-timepoint-selector-handle.d.ts +2 -2
- package/dist/projects/player/src/plugins/create-clip-plugin/components/clip-timepoint-selector/clip-timepoint-selector.d.ts +2 -2
- package/dist/projects/player/src/plugins/fullscreen-on-rotate-plugin/fullscreen-on-rotate-plugin.d.ts +29 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/seek-bar/interactive-bar-items.d.ts +2 -2
- package/dist/projects/player/src/plugins/interactive-plugin/hooks/useStateManager.d.ts +2 -0
- package/dist/projects/player/src/plugins/interactive-plugin/interactive-plugin.d.ts +2 -0
- package/dist/projects/player/src/plugins/next-video-plugin/next-video-plugin.d.ts +1 -1
- package/dist/projects/player/src/plugins/open-externally-plugin/open-externally-plugin.d.ts +30 -0
- package/dist/projects/player/src/plugins/persist-subtitle-settings-plugin/persist-subtitle-settings-plugin.d.ts +0 -1
- package/dist/projects/player/src/plugins/persist-volume-plugin/persist-volume-plugin.d.ts +25 -0
- package/dist/projects/player/src/plugins/picture-in-picture-plugin/picture-in-picture-plugin.d.ts +0 -1
- package/dist/projects/player/src/plugins/progress-reporter-plugin/progress-reporter-plugin.d.ts +1 -0
- package/dist/projects/player/src/plugins/progressive-files-plugin/progressive-files-plugin.d.ts +3 -0
- package/dist/projects/player/src/plugins/touch-controls-plugin/components/touch-controls/touch-controls.d.ts +2 -2
- package/dist/projects/player/src/plugins/touch-controls-plugin/touch-controls-plugin.d.ts +40 -0
- package/dist/projects/player/src/plugins/whiteboard-mode-plugin/components/drag-handle/drag-handle.d.ts +2 -2
- package/dist/projects/player/src/plugins/whiteboard-mode-plugin/components/drag-targets/drag-targets.d.ts +2 -2
- package/dist/projects/player/src/services/analytics-service.d.ts +5 -1
- package/package.json +4 -4
- package/dist/projects/player/src/plugins/example-plugin/components/example-button/example-button.d.ts +0 -1
- package/dist/projects/player/src/plugins/example-plugin/example-plugin.d.ts +0 -2
- package/dist/projects/player/src/utils/scrollbar-helper.d.ts +0 -6
- /package/dist/projects/player/src/{plugins/example-plugin/components/example-react-button/example-react-button.d.ts → components/seek-bar/seek-bar.d.ts} +0 -0
|
@@ -4,6 +4,7 @@ import { CurrentUser, Interactive } from 'libs/shared/interfaces';
|
|
|
4
4
|
import { InteractiveMode, LatestSession } from 'projects/player/plugins/interactive-plugin/interfaces';
|
|
5
5
|
import { ResultsService } from 'projects/player/plugins/interactive-plugin/utils/ResultsService';
|
|
6
6
|
import { ProgressEvent } from 'projects/player/plugins/progress-reporter-plugin/progress-reporter-plugin';
|
|
7
|
+
import { AnalyticsService } from 'projects/player/services/analytics-service';
|
|
7
8
|
import 'projects/player/plugins/interactive-plugin/components/interactive/interactive-component';
|
|
8
9
|
import 'projects/player/plugins/interactive-plugin/components/continue-session/continue-session';
|
|
9
10
|
import './interactive-plugin-styles.scss';
|
|
@@ -32,6 +33,7 @@ interface InteractivePluginOptions {
|
|
|
32
33
|
progress?: ProgressEvent[];
|
|
33
34
|
latestSession?: LatestSession;
|
|
34
35
|
clipOffset?: number;
|
|
36
|
+
analyticsService: AnalyticsService;
|
|
35
37
|
}
|
|
36
38
|
declare class InteractivePlugin extends Plugin {
|
|
37
39
|
private options;
|
|
@@ -30,7 +30,7 @@ declare class NextVideoPlugin extends Plugin {
|
|
|
30
30
|
setShouldPlayNext(val: boolean): void;
|
|
31
31
|
private setChapterTrack;
|
|
32
32
|
private bindListeners;
|
|
33
|
-
|
|
33
|
+
dispose(): void;
|
|
34
34
|
private onTimeUpdate;
|
|
35
35
|
private showUpNext;
|
|
36
36
|
private hideUpNext;
|
|
@@ -1 +1,31 @@
|
|
|
1
|
+
import videojs, { VideoJsPlayer } from 'video.js';
|
|
2
|
+
import { ExternalLinkOptions } from 'projects/player/plugins/open-externally-plugin/interfaces/ExternalLinkOptions';
|
|
1
3
|
import 'projects/player/plugins/open-externally-plugin/components/open-externally-button';
|
|
4
|
+
declare const Plugin: {
|
|
5
|
+
new (player: VideoJsPlayer, options?: any): videojs.Plugin;
|
|
6
|
+
prototype: videojs.Plugin;
|
|
7
|
+
BASE_PLUGIN_NAME: string;
|
|
8
|
+
deregisterPlugin(name: string): void;
|
|
9
|
+
getPlugin(name: string): any;
|
|
10
|
+
getPluginVersion(name: string): string;
|
|
11
|
+
getPlugins(names?: string[]): {
|
|
12
|
+
[name: string]: videojs.Plugin;
|
|
13
|
+
};
|
|
14
|
+
isBasic(plugin: string | (() => any)): boolean;
|
|
15
|
+
registerPlugin<T, K>(name: string, plugin: (this: VideoJsPlayer, ...options: K[]) => T): (...options: K[]) => T;
|
|
16
|
+
registerPlugin<T_1 extends any>(name: string, plugin: T_1): () => T_1;
|
|
17
|
+
};
|
|
18
|
+
interface OpenExternallyPluginOptions {
|
|
19
|
+
getExternalLink: (options: ExternalLinkOptions) => string;
|
|
20
|
+
}
|
|
21
|
+
declare class OpenExternallyPlugin extends Plugin {
|
|
22
|
+
private options;
|
|
23
|
+
constructor(player: VideoJsPlayer, options: OpenExternallyPluginOptions);
|
|
24
|
+
private onReady;
|
|
25
|
+
}
|
|
26
|
+
declare module 'video.js' {
|
|
27
|
+
interface VideoJsPlayer {
|
|
28
|
+
openExternallyPlugin(oprions: OpenExternallyPluginOptions): OpenExternallyPlugin;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
export {};
|
|
@@ -20,7 +20,6 @@ interface PersistSubtitleSettingsPluginOptions {
|
|
|
20
20
|
}
|
|
21
21
|
declare class PersistSubtitleSettingsPlugin extends Plugin {
|
|
22
22
|
private options;
|
|
23
|
-
private trackGuess;
|
|
24
23
|
constructor(player: VideoJsPlayer, options: PersistSubtitleSettingsPluginOptions);
|
|
25
24
|
private initialize;
|
|
26
25
|
private safeGet;
|
|
@@ -1 +1,26 @@
|
|
|
1
|
+
import videojs, { VideoJsPlayer } from 'video.js';
|
|
2
|
+
declare const Plugin: {
|
|
3
|
+
new (player: VideoJsPlayer, options?: any): videojs.Plugin;
|
|
4
|
+
prototype: videojs.Plugin;
|
|
5
|
+
BASE_PLUGIN_NAME: string;
|
|
6
|
+
deregisterPlugin(name: string): void;
|
|
7
|
+
getPlugin(name: string): any;
|
|
8
|
+
getPluginVersion(name: string): string;
|
|
9
|
+
getPlugins(names?: string[]): {
|
|
10
|
+
[name: string]: videojs.Plugin;
|
|
11
|
+
};
|
|
12
|
+
isBasic(plugin: string | (() => any)): boolean;
|
|
13
|
+
registerPlugin<T, K>(name: string, plugin: (this: VideoJsPlayer, ...options: K[]) => T): (...options: K[]) => T;
|
|
14
|
+
registerPlugin<T_1 extends any>(name: string, plugin: T_1): () => T_1;
|
|
15
|
+
};
|
|
16
|
+
declare class PersistVolumePlugin extends Plugin {
|
|
17
|
+
constructor(player: VideoJsPlayer);
|
|
18
|
+
private initialize;
|
|
19
|
+
private saveVolumeState;
|
|
20
|
+
}
|
|
21
|
+
declare module 'video.js' {
|
|
22
|
+
interface VideoJsPlayer {
|
|
23
|
+
persistVolumePlugin(): PersistVolumePlugin;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
1
26
|
export {};
|
package/dist/projects/player/src/plugins/picture-in-picture-plugin/picture-in-picture-plugin.d.ts
CHANGED
|
@@ -15,7 +15,6 @@ declare const Plugin: {
|
|
|
15
15
|
registerPlugin<T_1 extends any>(name: string, plugin: T_1): () => T_1;
|
|
16
16
|
};
|
|
17
17
|
interface PictureInPicturePluginOptions {
|
|
18
|
-
initialIsInPictureInPicture: boolean;
|
|
19
18
|
onRequestPictureInPicture: (isPiP: boolean) => void;
|
|
20
19
|
}
|
|
21
20
|
declare class PictureInPicturePlugin extends Plugin {
|
package/dist/projects/player/src/plugins/progressive-files-plugin/progressive-files-plugin.d.ts
CHANGED
|
@@ -19,7 +19,9 @@ export declare class ProgressiveFilesPlugin extends Plugin {
|
|
|
19
19
|
private sources;
|
|
20
20
|
private _currentSource;
|
|
21
21
|
private qualityLevels;
|
|
22
|
+
private options_;
|
|
22
23
|
constructor(player: VideoJsPlayer, options: ProgressiveFilesPluginOptions);
|
|
24
|
+
private initialize;
|
|
23
25
|
get currentSource(): Source;
|
|
24
26
|
/**
|
|
25
27
|
* Sets the current player source. If the id cannot be found, the current source is returned
|
|
@@ -27,6 +29,7 @@ export declare class ProgressiveFilesPlugin extends Plugin {
|
|
|
27
29
|
*/
|
|
28
30
|
setSource(id: string): Source;
|
|
29
31
|
getSourceById(id: string): Source;
|
|
32
|
+
private sortSources;
|
|
30
33
|
private populateSources;
|
|
31
34
|
private sourceChangeUpdateQualityLevels;
|
|
32
35
|
}
|
|
@@ -15,7 +15,7 @@ declare const Component: {
|
|
|
15
15
|
new (player: VideoJsPlayer, options?: videojs.ModalDialogOptions): videojs.ModalDialog;
|
|
16
16
|
prototype: videojs.ModalDialog;
|
|
17
17
|
};
|
|
18
|
-
getComponent(name: "
|
|
18
|
+
getComponent(name: "Menu" | "menu"): {
|
|
19
19
|
new (player: VideoJsPlayer, options?: videojs.MenuOptions): videojs.Menu;
|
|
20
20
|
prototype: videojs.Menu;
|
|
21
21
|
};
|
|
@@ -23,7 +23,7 @@ declare const Component: {
|
|
|
23
23
|
new (player: VideoJsPlayer, options?: videojs.MenuButtonOptions): videojs.MenuButton;
|
|
24
24
|
prototype: videojs.MenuButton;
|
|
25
25
|
};
|
|
26
|
-
getComponent(name: "
|
|
26
|
+
getComponent(name: "MenuItem" | "menuitem"): {
|
|
27
27
|
new (player: VideoJsPlayer, options?: videojs.MenuItemOptions): videojs.MenuItem;
|
|
28
28
|
prototype: videojs.MenuItem;
|
|
29
29
|
};
|
|
@@ -1 +1,41 @@
|
|
|
1
|
+
import videojs, { VideoJsPlayer } from 'video.js';
|
|
1
2
|
import './components/touch-controls/touch-controls';
|
|
3
|
+
declare const Plugin: {
|
|
4
|
+
new (player: VideoJsPlayer, options?: any): videojs.Plugin;
|
|
5
|
+
prototype: videojs.Plugin;
|
|
6
|
+
BASE_PLUGIN_NAME: string;
|
|
7
|
+
deregisterPlugin(name: string): void;
|
|
8
|
+
getPlugin(name: string): any;
|
|
9
|
+
getPluginVersion(name: string): string;
|
|
10
|
+
getPlugins(names?: string[]): {
|
|
11
|
+
[name: string]: videojs.Plugin;
|
|
12
|
+
};
|
|
13
|
+
isBasic(plugin: string | (() => any)): boolean;
|
|
14
|
+
registerPlugin<T, K>(name: string, plugin: (this: VideoJsPlayer, ...options: K[]) => T): (...options: K[]) => T;
|
|
15
|
+
registerPlugin<T_1 extends any>(name: string, plugin: T_1): () => T_1;
|
|
16
|
+
};
|
|
17
|
+
declare class TouchControlsPlugin extends Plugin {
|
|
18
|
+
private tech;
|
|
19
|
+
private touchControls;
|
|
20
|
+
private touchStartTime;
|
|
21
|
+
private lastTouchTime;
|
|
22
|
+
private doubleTouchCount;
|
|
23
|
+
private seekStartTime;
|
|
24
|
+
private directionModifier;
|
|
25
|
+
constructor(player: VideoJsPlayer);
|
|
26
|
+
private bindFunctions;
|
|
27
|
+
private initialize;
|
|
28
|
+
private reBindEventListeners;
|
|
29
|
+
private unBindEventListeners;
|
|
30
|
+
dispose(): void;
|
|
31
|
+
private onTouchStart;
|
|
32
|
+
private onTouchEnd;
|
|
33
|
+
private resetProperties;
|
|
34
|
+
private onDoubleTouch;
|
|
35
|
+
}
|
|
36
|
+
declare module 'video.js' {
|
|
37
|
+
interface VideoJsPlayer {
|
|
38
|
+
touchControls(): TouchControlsPlugin;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
export {};
|
|
@@ -15,7 +15,7 @@ declare const Component: {
|
|
|
15
15
|
new (player: import("video.js").VideoJsPlayer, options?: videojs.ModalDialogOptions): videojs.ModalDialog;
|
|
16
16
|
prototype: videojs.ModalDialog;
|
|
17
17
|
};
|
|
18
|
-
getComponent(name: "
|
|
18
|
+
getComponent(name: "Menu" | "menu"): {
|
|
19
19
|
new (player: import("video.js").VideoJsPlayer, options?: videojs.MenuOptions): videojs.Menu;
|
|
20
20
|
prototype: videojs.Menu;
|
|
21
21
|
};
|
|
@@ -23,7 +23,7 @@ declare const Component: {
|
|
|
23
23
|
new (player: import("video.js").VideoJsPlayer, options?: videojs.MenuButtonOptions): videojs.MenuButton;
|
|
24
24
|
prototype: videojs.MenuButton;
|
|
25
25
|
};
|
|
26
|
-
getComponent(name: "
|
|
26
|
+
getComponent(name: "MenuItem" | "menuitem"): {
|
|
27
27
|
new (player: import("video.js").VideoJsPlayer, options?: videojs.MenuItemOptions): videojs.MenuItem;
|
|
28
28
|
prototype: videojs.MenuItem;
|
|
29
29
|
};
|
|
@@ -15,7 +15,7 @@ declare const Component: {
|
|
|
15
15
|
new (player: VideoJsPlayer, options?: videojs.ModalDialogOptions): videojs.ModalDialog;
|
|
16
16
|
prototype: videojs.ModalDialog;
|
|
17
17
|
};
|
|
18
|
-
getComponent(name: "
|
|
18
|
+
getComponent(name: "Menu" | "menu"): {
|
|
19
19
|
new (player: VideoJsPlayer, options?: videojs.MenuOptions): videojs.Menu;
|
|
20
20
|
prototype: videojs.Menu;
|
|
21
21
|
};
|
|
@@ -23,7 +23,7 @@ declare const Component: {
|
|
|
23
23
|
new (player: VideoJsPlayer, options?: videojs.MenuButtonOptions): videojs.MenuButton;
|
|
24
24
|
prototype: videojs.MenuButton;
|
|
25
25
|
};
|
|
26
|
-
getComponent(name: "
|
|
26
|
+
getComponent(name: "MenuItem" | "menuitem"): {
|
|
27
27
|
new (player: VideoJsPlayer, options?: videojs.MenuItemOptions): videojs.MenuItem;
|
|
28
28
|
prototype: videojs.MenuItem;
|
|
29
29
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { RegionName } from 'libs/analytics/enums/RegionName';
|
|
2
|
-
import { RegionalUrl } from 'libs/analytics/interfaces';
|
|
2
|
+
import { RegionalUrl, AnalyticsOptions, HashObject } from 'libs/analytics/interfaces';
|
|
3
3
|
import { ProgressEvent } from 'projects/player/plugins/progress-reporter-plugin/progress-reporter-plugin';
|
|
4
4
|
export declare type AnalyticsPlayerType = 'player' | 'interactive-player' | 'create-clip-player';
|
|
5
5
|
interface AnalyticsServiceOptions {
|
|
@@ -8,12 +8,14 @@ interface AnalyticsServiceOptions {
|
|
|
8
8
|
productVersion: string;
|
|
9
9
|
regionName: RegionName;
|
|
10
10
|
videoId: string;
|
|
11
|
+
mediaId: string;
|
|
11
12
|
userId: string;
|
|
12
13
|
customerId: string;
|
|
13
14
|
mediaType: 'MasterVideo' | 'MasterClip' | 'MasterInteractive';
|
|
14
15
|
playerType: AnalyticsPlayerType;
|
|
15
16
|
isEmbedded: boolean;
|
|
16
17
|
isUsingLocalCache: boolean;
|
|
18
|
+
additionalAnalyticsData?: HashObject;
|
|
17
19
|
}
|
|
18
20
|
export declare class AnalyticsService {
|
|
19
21
|
private options;
|
|
@@ -21,6 +23,8 @@ export declare class AnalyticsService {
|
|
|
21
23
|
constructor(options: AnalyticsServiceOptions);
|
|
22
24
|
logStream(): void;
|
|
23
25
|
logVideoProgress(events: ProgressEvent[]): void;
|
|
26
|
+
logUserAction(analyticsData: HashObject | HashObject[], analyticsOptions: AnalyticsOptions): void;
|
|
27
|
+
private getAnalyticsData;
|
|
24
28
|
private initialize;
|
|
25
29
|
private setupCollectionApiClient;
|
|
26
30
|
private getCurrentUser;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clickview/player",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6-dev.1",
|
|
4
4
|
"description": "ClickView Player",
|
|
5
5
|
"main": "dist/player-app.js",
|
|
6
6
|
"scripts": {
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@babel/core": "7.11.6",
|
|
29
29
|
"@clickview/eslint-config": "1.0.1",
|
|
30
|
-
"@clickview/player-font": "0.0.
|
|
31
|
-
"@clickview/tooling": "0.0.
|
|
30
|
+
"@clickview/player-font": "0.0.11",
|
|
31
|
+
"@clickview/tooling": "0.0.24-dev.3",
|
|
32
32
|
"@storybook/react": "6.0.26",
|
|
33
33
|
"@types/chromecast-caf-sender": "1.0.3",
|
|
34
34
|
"@types/cropperjs": "1.3.0",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"webpack-dev-server": "3.11.0"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@clickview/styles": "1.0.
|
|
45
|
+
"@clickview/styles": "1.0.17-dev.3",
|
|
46
46
|
"@microsoft/signalr": "5.0.2",
|
|
47
47
|
"cropperjs": "1.5.6",
|
|
48
48
|
"draft-convert": "2.1.10",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import './example-button.scss';
|