@clickview/player 1.2.1-dev.2 → 1.2.1-dev.4
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/interactive-player.css +54 -127
- package/dist/interactive-player.js +1 -1
- package/dist/interactive-player.js.LICENSE.txt +56 -12
- package/dist/player.css +30 -68
- package/dist/player.js +1 -1
- package/dist/player.js.LICENSE.txt +3 -3
- package/package.json +71 -72
- package/typings/libs/cloneDeep.d.ts +5 -0
- package/typings/utils/globals.d.ts +1 -1
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
* Programatically add the following
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
-
/*! @name @videojs/http-streaming @version 2.
|
|
5
|
+
/*! @name @videojs/http-streaming @version 2.8.2 @license Apache-2.0 */
|
|
6
6
|
|
|
7
|
-
/*! @name
|
|
7
|
+
/*! @name aes-decrypter @version 3.1.2 @license Apache-2.0 */
|
|
8
8
|
|
|
9
|
-
/*! @name
|
|
9
|
+
/*! @name m3u8-parser @version 4.7.0 @license Apache-2.0 */
|
|
10
10
|
|
|
11
11
|
/*! @name pkcs7 @version 1.0.4 @license Apache-2.0 */
|
|
12
12
|
|
package/package.json
CHANGED
|
@@ -1,72 +1,71 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@clickview/player",
|
|
3
|
-
"version": "1.2.1-dev.
|
|
4
|
-
"description": "ClickView Player",
|
|
5
|
-
"main": "dist/player-app.js",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"start": "
|
|
8
|
-
"build": "
|
|
9
|
-
"build-font": "
|
|
10
|
-
"
|
|
11
|
-
"storybook": "
|
|
12
|
-
"
|
|
13
|
-
"test": "jest",
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
"@
|
|
29
|
-
"@clickview/
|
|
30
|
-
"@
|
|
31
|
-
"@storybook/
|
|
32
|
-
"@storybook/
|
|
33
|
-
"@
|
|
34
|
-
"@types/
|
|
35
|
-
"@types/
|
|
36
|
-
"@types/
|
|
37
|
-
"@types/
|
|
38
|
-
"@types/
|
|
39
|
-
"@types/
|
|
40
|
-
"
|
|
41
|
-
"jest": "26.1.
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
"@
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"draft-
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"react-
|
|
55
|
-
"
|
|
56
|
-
"simplebar": "
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
"
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@clickview/player",
|
|
3
|
+
"version": "1.2.1-dev.4",
|
|
4
|
+
"description": "ClickView Player",
|
|
5
|
+
"main": "dist/player-app.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"start": "cross-env NODE_ENV=development webpack -w --config ./tooling/webpack.config.js",
|
|
8
|
+
"build": "cross-env NODE_ENV=production webpack --config ./tooling/webpack.config.js",
|
|
9
|
+
"build-font": "cross-env NODE_ENV=development npm run start",
|
|
10
|
+
"storybook": "start-storybook -s ./.storybook/stories/assets -p 6006",
|
|
11
|
+
"build-storybook": "build-storybook",
|
|
12
|
+
"test": "jest",
|
|
13
|
+
"test-watch": "jest --watch",
|
|
14
|
+
"webpack-dev-server": "cross-env NODE_ENV=development webpack-dev-server --config ./tooling/webpack.config.js"
|
|
15
|
+
},
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://gitlab.cvinternal.net/front-end/clickview"
|
|
19
|
+
},
|
|
20
|
+
"cv": {
|
|
21
|
+
"publishable": true,
|
|
22
|
+
"rebuildable": true
|
|
23
|
+
},
|
|
24
|
+
"author": "Matt Trengrove, Cameron Hill, Shale Kuzmanovski",
|
|
25
|
+
"license": "ISC",
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@babel/core": "7.11.6",
|
|
28
|
+
"@clickview/eslint-config": "1.1.1",
|
|
29
|
+
"@clickview/player-font": "0.0.12",
|
|
30
|
+
"@storybook/builder-webpack5": "6.4.22",
|
|
31
|
+
"@storybook/manager-webpack5": "6.4.22",
|
|
32
|
+
"@storybook/react": "6.4.22",
|
|
33
|
+
"@types/chromecast-caf-sender": "1.0.3",
|
|
34
|
+
"@types/cropperjs": "1.3.0",
|
|
35
|
+
"@types/draft-js": "0.10.44",
|
|
36
|
+
"@types/node-polyglot": "0.4.34",
|
|
37
|
+
"@types/react-draft-wysiwyg": "1.13.1",
|
|
38
|
+
"@types/simplebar": "5.1.1",
|
|
39
|
+
"@types/video.js": "7.3.11",
|
|
40
|
+
"jest": "26.1.0",
|
|
41
|
+
"ts-jest": "26.1.4",
|
|
42
|
+
"webpack-dev-server": "4.8.1"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@clickview/styles": "1.10.1-dev.1",
|
|
46
|
+
"@microsoft/signalr": "5.0.2",
|
|
47
|
+
"cropperjs": "1.5.6",
|
|
48
|
+
"draft-convert": "2.1.10",
|
|
49
|
+
"draft-js": "0.11.7",
|
|
50
|
+
"highcharts": "9.1.0",
|
|
51
|
+
"keycode": "2.2.0",
|
|
52
|
+
"node-polyglot": "2.3.0",
|
|
53
|
+
"react-draft-wysiwyg": "1.14.5",
|
|
54
|
+
"react-textarea-autosize": "8.3.2",
|
|
55
|
+
"simplebar": "5.3.0",
|
|
56
|
+
"simplebar-react": "2.3.0",
|
|
57
|
+
"video.js": "7.12.4",
|
|
58
|
+
"videojs-contrib-quality-levels": "2.0.9"
|
|
59
|
+
},
|
|
60
|
+
"babel": {
|
|
61
|
+
"presets": [
|
|
62
|
+
[
|
|
63
|
+
"@babel/preset-env",
|
|
64
|
+
{
|
|
65
|
+
"corejs": 3,
|
|
66
|
+
"useBuiltIns": "entry"
|
|
67
|
+
}
|
|
68
|
+
]
|
|
69
|
+
]
|
|
70
|
+
}
|
|
71
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
declare
|
|
1
|
+
declare let __ENVIRONMENT__: 'development' | 'production';
|