@vidispine/vdt-materialui 21.3.0 → 22.1.0-pre.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/index.es.js +32960 -41535
- package/dist/index.js +32565 -40958
- package/package.json +43 -36
- package/dist/index.css +0 -1857
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vidispine/vdt-materialui",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "22.1.0-pre.1",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -9,17 +9,18 @@
|
|
|
9
9
|
"dist"
|
|
10
10
|
],
|
|
11
11
|
"scripts": {
|
|
12
|
-
"build": "rollup -c",
|
|
13
|
-
"build:watch": "rollup -c -w --environment DEVELOPMENT",
|
|
14
|
-
"lint": "eslint
|
|
15
|
-
"lint:fix": "
|
|
12
|
+
"build": "rm -rf dist/* && rollup -c",
|
|
13
|
+
"build:watch": "rm -rf dist/* && rollup -c -w --environment DEVELOPMENT",
|
|
14
|
+
"lint": "eslint \"./{src/**/*,*}.{js,jsx,md,mdx}\"",
|
|
15
|
+
"lint:fix": "yarn lint --fix",
|
|
16
16
|
"new:component": "hygen new component"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@
|
|
20
|
-
"@vidispine/vdt-
|
|
21
|
-
"@vidispine/vdt-
|
|
22
|
-
"@vidispine/vdt-
|
|
19
|
+
"@babel/runtime": "^7.17.0",
|
|
20
|
+
"@vidispine/vdt-api": "^22.1.0-pre.1",
|
|
21
|
+
"@vidispine/vdt-js": "^22.1.0-pre.1",
|
|
22
|
+
"@vidispine/vdt-react": "^22.1.0-pre.1",
|
|
23
|
+
"@vidispine/vdt-videojs-react": "^22.1.0-pre.1",
|
|
23
24
|
"clsx": "^1.1.1",
|
|
24
25
|
"core-js": "^3.8.3",
|
|
25
26
|
"filesize": "^6.1.0",
|
|
@@ -30,6 +31,7 @@
|
|
|
30
31
|
"lodash.get": "^4.4.2",
|
|
31
32
|
"lodash.merge": "^4.6.2",
|
|
32
33
|
"lodash.truncate": "^4.4.2",
|
|
34
|
+
"lodash.update": "^4.10.2",
|
|
33
35
|
"lodash.updatewith": "^4.10.2",
|
|
34
36
|
"moment": "2.28.0",
|
|
35
37
|
"pdfjs-dist": "2.9.359",
|
|
@@ -41,6 +43,7 @@
|
|
|
41
43
|
"react-pdf": "^5.4.0",
|
|
42
44
|
"react-select": "^4.3.1",
|
|
43
45
|
"react-sizeme": "^3.0.2",
|
|
46
|
+
"typeface-exo-2": "^1.1.4",
|
|
44
47
|
"typeface-roboto": "^0.0.75"
|
|
45
48
|
},
|
|
46
49
|
"peerDependencies": {
|
|
@@ -48,43 +51,47 @@
|
|
|
48
51
|
"@material-ui/icons": "^4.9.1",
|
|
49
52
|
"@material-ui/lab": "^4.0.0-alpha.56",
|
|
50
53
|
"react": "^16.14.0",
|
|
51
|
-
"react-dom": "^16.14.0"
|
|
54
|
+
"react-dom": "^16.14.0",
|
|
55
|
+
"use-deep-compare-effect": "^1.3.1"
|
|
52
56
|
},
|
|
53
57
|
"devDependencies": {
|
|
54
|
-
"@babel/core": "^7.
|
|
55
|
-
"@babel/
|
|
56
|
-
"@babel/preset-
|
|
57
|
-
"@
|
|
58
|
-
"@
|
|
59
|
-
"@
|
|
60
|
-
"@
|
|
61
|
-
"@
|
|
62
|
-
"@vidispine/
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
58
|
+
"@babel/core": "^7.17.0",
|
|
59
|
+
"@babel/plugin-transform-runtime": "^7.17.0",
|
|
60
|
+
"@babel/preset-env": "^7.16.11",
|
|
61
|
+
"@babel/preset-react": "^7.16.7",
|
|
62
|
+
"@rollup/plugin-babel": "^5.3.0",
|
|
63
|
+
"@rollup/plugin-commonjs": "^21.0.1",
|
|
64
|
+
"@rollup/plugin-node-resolve": "^13.1.3",
|
|
65
|
+
"@svgr/rollup": "^6.2.1",
|
|
66
|
+
"@vidispine/eslint-config-react": "^22.1.0-pre.1",
|
|
67
|
+
"@vidispine/eslint-config-storybook": "*",
|
|
68
|
+
"@vidispine/prettier-config": "^22.1.0-pre.1",
|
|
69
|
+
"@vidispine/proptypes": "^22.1.0-pre.1",
|
|
70
|
+
"axios-mock-adapter": "^1.20.0",
|
|
71
|
+
"enzyme": "^3.11.0",
|
|
72
|
+
"enzyme-adapter-react-16": "^1.15.6",
|
|
73
|
+
"faker": "^5.5.3",
|
|
74
|
+
"hygen": "^6.1.0",
|
|
68
75
|
"lodash.sample": "^4.2.1",
|
|
69
76
|
"lodash.times": "^4.3.2",
|
|
70
|
-
"lodash.update": "^4.10.2",
|
|
71
77
|
"moment-duration-format": "^2.3.2",
|
|
72
|
-
"prop-types": "^15.
|
|
73
|
-
"react-test-renderer": "^16.
|
|
74
|
-
"rollup": "^
|
|
75
|
-
"rollup-plugin-
|
|
76
|
-
"rollup-plugin-commonjs": "^10.1.0",
|
|
77
|
-
"rollup-plugin-node-resolve": "^5.2.0",
|
|
78
|
-
"rollup-plugin-peer-deps-external": "^2.2.0",
|
|
79
|
-
"rollup-plugin-scss": "^2.1.0"
|
|
78
|
+
"prop-types": "^15.8.1",
|
|
79
|
+
"react-test-renderer": "^16.0.0",
|
|
80
|
+
"rollup": "^2.67.0",
|
|
81
|
+
"rollup-plugin-peer-deps-external": "^2.2.4"
|
|
80
82
|
},
|
|
81
83
|
"scarfSettings": {
|
|
82
84
|
"enabled": false
|
|
83
85
|
},
|
|
84
86
|
"eslintConfig": {
|
|
85
87
|
"extends": [
|
|
86
|
-
"@vidispine/eslint-config-react"
|
|
87
|
-
|
|
88
|
+
"@vidispine/eslint-config-react",
|
|
89
|
+
"@vidispine/eslint-config-storybook"
|
|
90
|
+
],
|
|
91
|
+
"rules": {
|
|
92
|
+
"import/no-named-as-default": "off"
|
|
93
|
+
}
|
|
88
94
|
},
|
|
89
|
-
"prettier": "@vidispine/prettier-config"
|
|
95
|
+
"prettier": "@vidispine/prettier-config",
|
|
96
|
+
"gitHead": "9e1d15560719544a68e6bc881e1a40901fe9f786"
|
|
90
97
|
}
|