@vidispine/vdt-materialui 22.3.0-pre.5 → 22.3.1-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 +1922 -4043
- package/dist/index.js +4610 -6729
- package/package.json +57 -55
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vidispine/vdt-materialui",
|
|
3
|
-
"version": "22.3.
|
|
3
|
+
"version": "22.3.1-pre.1",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
5
|
-
"private": false,
|
|
6
5
|
"publishConfig": {
|
|
7
6
|
"access": "public"
|
|
8
7
|
},
|
|
@@ -19,22 +18,21 @@
|
|
|
19
18
|
"dist"
|
|
20
19
|
],
|
|
21
20
|
"scripts": {
|
|
22
|
-
"build": "
|
|
23
|
-
"build:watch": "
|
|
24
|
-
"
|
|
25
|
-
"lint
|
|
26
|
-
"new:component": "hygen new component"
|
|
21
|
+
"build": "rimraf dist && rollup -c",
|
|
22
|
+
"build:watch": "yarn build -w --environment DEVELOPMENT",
|
|
23
|
+
"new:component": "hygen new component",
|
|
24
|
+
"lint": "eslint . --ext js,md,mdx"
|
|
27
25
|
},
|
|
28
26
|
"dependencies": {
|
|
29
|
-
"@babel/runtime": "^7.
|
|
30
|
-
"@vidispine/vdt-api": "22.3.
|
|
31
|
-
"@vidispine/vdt-js": "22.3.
|
|
32
|
-
"@vidispine/vdt-react": "22.3.
|
|
33
|
-
"@vidispine/vdt-videojs-react": "22.3.
|
|
34
|
-
"clsx": "^1.
|
|
35
|
-
"core-js": "^3.
|
|
36
|
-
"filesize": "^6.
|
|
37
|
-
"final-form": "^4.20.
|
|
27
|
+
"@babel/runtime": "^7.18.9",
|
|
28
|
+
"@vidispine/vdt-api": "22.3.1-pre.1",
|
|
29
|
+
"@vidispine/vdt-js": "22.3.1-pre.1",
|
|
30
|
+
"@vidispine/vdt-react": "22.3.1-pre.1",
|
|
31
|
+
"@vidispine/vdt-videojs-react": "22.3.1-pre.1",
|
|
32
|
+
"clsx": "^1.2.1",
|
|
33
|
+
"core-js": "^3.24.1",
|
|
34
|
+
"filesize": "^6.4.0",
|
|
35
|
+
"final-form": "^4.20.7",
|
|
38
36
|
"lodash.clonedeep": "^4.5.0",
|
|
39
37
|
"lodash.constant": "^3.0.0",
|
|
40
38
|
"lodash.debounce": "^4.0.8",
|
|
@@ -43,50 +41,54 @@
|
|
|
43
41
|
"lodash.truncate": "^4.4.2",
|
|
44
42
|
"lodash.update": "^4.10.2",
|
|
45
43
|
"lodash.updatewith": "^4.10.2",
|
|
46
|
-
"moment": "2.
|
|
47
|
-
"pdfjs-dist": "2.
|
|
44
|
+
"moment": "^2.29.4",
|
|
45
|
+
"pdfjs-dist": "^2.15.349",
|
|
46
|
+
"prop-types": "^15.8.1",
|
|
48
47
|
"react-beautiful-dnd": "^13.1.0",
|
|
49
48
|
"react-dnd": "^11.1.3",
|
|
50
49
|
"react-dnd-html5-backend": "^11.1.3",
|
|
51
|
-
"react-dropzone": "^11.
|
|
52
|
-
"react-final-form": "^6.5.
|
|
53
|
-
"react-pdf": "^5.
|
|
54
|
-
"react-select": "^4.
|
|
50
|
+
"react-dropzone": "^11.7.1",
|
|
51
|
+
"react-final-form": "^6.5.9",
|
|
52
|
+
"react-pdf": "^5.7.2",
|
|
53
|
+
"react-select": "^5.4.0",
|
|
55
54
|
"react-sizeme": "^3.0.2",
|
|
56
|
-
"typeface-exo-2": "^1.1.
|
|
57
|
-
"typeface-roboto": "^
|
|
55
|
+
"typeface-exo-2": "^1.1.13",
|
|
56
|
+
"typeface-roboto": "^1.1.13"
|
|
58
57
|
},
|
|
59
58
|
"peerDependencies": {
|
|
60
|
-
"@material-ui/core": "^4.
|
|
61
|
-
"@material-ui/icons": "^4.
|
|
62
|
-
"@material-ui/lab": "^4.0.0-alpha.
|
|
63
|
-
"react": "^17.0.
|
|
64
|
-
"react-dom": "^17.0.
|
|
59
|
+
"@material-ui/core": "^4.0.0",
|
|
60
|
+
"@material-ui/icons": "^4.0.0",
|
|
61
|
+
"@material-ui/lab": "^4.0.0-alpha.0",
|
|
62
|
+
"react": "^17.0.0",
|
|
63
|
+
"react-dom": "^17.0.0"
|
|
65
64
|
},
|
|
66
65
|
"devDependencies": {
|
|
67
|
-
"@babel/core": "
|
|
68
|
-
"@babel/plugin-transform-runtime": "
|
|
69
|
-
"@babel/preset-env": "
|
|
70
|
-
"@babel/preset-react": "
|
|
71
|
-
"@rollup/plugin-babel": "
|
|
72
|
-
"@rollup/plugin-commonjs": "
|
|
73
|
-
"@rollup/plugin-node-resolve": "
|
|
74
|
-
"@svgr/rollup": "
|
|
75
|
-
"@vidispine/eslint-config-
|
|
76
|
-
"@vidispine/eslint-config-
|
|
77
|
-
"@vidispine/
|
|
78
|
-
"@vidispine/
|
|
79
|
-
"@
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
66
|
+
"@babel/core": "7.19.1",
|
|
67
|
+
"@babel/plugin-transform-runtime": "7.19.1",
|
|
68
|
+
"@babel/preset-env": "7.19.1",
|
|
69
|
+
"@babel/preset-react": "7.18.6",
|
|
70
|
+
"@rollup/plugin-babel": "5.3.1",
|
|
71
|
+
"@rollup/plugin-commonjs": "21.1.0",
|
|
72
|
+
"@rollup/plugin-node-resolve": "13.3.0",
|
|
73
|
+
"@svgr/rollup": "6.3.1",
|
|
74
|
+
"@vidispine/eslint-config-mdx": "22.3.1-pre.1",
|
|
75
|
+
"@vidispine/eslint-config-react": "22.3.1-pre.1",
|
|
76
|
+
"@vidispine/eslint-config-storybook": "22.3.1-pre.1",
|
|
77
|
+
"@vidispine/prettier-config": "22.3.1-pre.1",
|
|
78
|
+
"@vidispine/proptypes": "22.3.1-pre.1",
|
|
79
|
+
"@wojtekmaj/enzyme-adapter-react-17": "0.6.7",
|
|
80
|
+
"axios": "0.21.4",
|
|
81
|
+
"axios-mock-adapter": "1.21.2",
|
|
82
|
+
"enzyme": "3.11.0",
|
|
83
|
+
"eslint": "8.23.1",
|
|
84
|
+
"faker": "5.5.3",
|
|
85
|
+
"hygen": "6.2.11",
|
|
86
|
+
"lodash.sample": "4.2.1",
|
|
87
|
+
"lodash.times": "4.3.2",
|
|
88
|
+
"moment-duration-format": "2.3.2",
|
|
89
|
+
"prettier": "2.7.1",
|
|
90
|
+
"rimraf": "3.0.2",
|
|
91
|
+
"rollup": "2.79.0"
|
|
90
92
|
},
|
|
91
93
|
"scarfSettings": {
|
|
92
94
|
"enabled": false
|
|
@@ -94,6 +96,7 @@
|
|
|
94
96
|
"eslintConfig": {
|
|
95
97
|
"extends": [
|
|
96
98
|
"@vidispine/eslint-config-react",
|
|
99
|
+
"@vidispine/eslint-config-mdx",
|
|
97
100
|
"@vidispine/eslint-config-storybook"
|
|
98
101
|
],
|
|
99
102
|
"rules": {
|
|
@@ -109,6 +112,5 @@
|
|
|
109
112
|
]
|
|
110
113
|
}
|
|
111
114
|
},
|
|
112
|
-
"prettier": "@vidispine/prettier-config"
|
|
113
|
-
|
|
114
|
-
}
|
|
115
|
+
"prettier": "@vidispine/prettier-config"
|
|
116
|
+
}
|