@jsonforms/material-renderers 3.2.0-alpha.4 → 3.2.0-beta.0
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/package.json +20 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsonforms/material-renderers",
|
|
3
|
-
"version": "3.2.0-
|
|
3
|
+
"version": "3.2.0-beta.0",
|
|
4
4
|
"description": "Material Renderer Set for JSON Forms",
|
|
5
5
|
"repository": "https://github.com/eclipsesource/jsonforms",
|
|
6
6
|
"bugs": "https://github.com/eclipsesource/jsonforms/issues",
|
|
@@ -35,19 +35,6 @@
|
|
|
35
35
|
"main": "lib/jsonforms-react-material.cjs.js",
|
|
36
36
|
"module": "lib/jsonforms-react-material.esm.js",
|
|
37
37
|
"typings": "lib/index.d.ts",
|
|
38
|
-
"scripts": {
|
|
39
|
-
"build": "rollup -c rollup.config.js",
|
|
40
|
-
"build:examples-app": "rollup -c rollup.example.config.js",
|
|
41
|
-
"dev": "webpack --config webpack/webpack.dev.js && webpack-dev-server --config webpack/webpack.dev.js --env=dev --inline",
|
|
42
|
-
"clean": "rimraf lib coverage dist .nyc_output example/dist 2> /dev/null",
|
|
43
|
-
"lint": "eslint .",
|
|
44
|
-
"lint:fix": "eslint --fix .",
|
|
45
|
-
"test": "jest --no-cache",
|
|
46
|
-
"test-cov": "jest --no-cache --coverage",
|
|
47
|
-
"report": "nyc report --reporter=html",
|
|
48
|
-
"doc": "typedoc --name 'JSON Forms React Material Renderers' --excludeExternals --theme ../../typedoc-jsonforms --out docs src",
|
|
49
|
-
"tsc": "tsc --build tsconfig.json"
|
|
50
|
-
},
|
|
51
38
|
"jest": {
|
|
52
39
|
"moduleFileExtensions": [
|
|
53
40
|
"ts",
|
|
@@ -85,8 +72,8 @@
|
|
|
85
72
|
"peerDependencies": {
|
|
86
73
|
"@emotion/react": "^11.4.1",
|
|
87
74
|
"@emotion/styled": "^11.3.0",
|
|
88
|
-
"@jsonforms/core": "
|
|
89
|
-
"@jsonforms/react": "
|
|
75
|
+
"@jsonforms/core": "v3.2.0-beta.0",
|
|
76
|
+
"@jsonforms/react": "v3.2.0-beta.0",
|
|
90
77
|
"@mui/icons-material": "^5.11.16",
|
|
91
78
|
"@mui/material": "^5.13.0",
|
|
92
79
|
"@mui/x-date-pickers": "^6.0.0",
|
|
@@ -95,8 +82,6 @@
|
|
|
95
82
|
"devDependencies": {
|
|
96
83
|
"@emotion/react": "^11.5.0",
|
|
97
84
|
"@emotion/styled": "^11.3.0",
|
|
98
|
-
"@jsonforms/core": "3.2.0-alpha.4",
|
|
99
|
-
"@jsonforms/react": "3.2.0-alpha.4",
|
|
100
85
|
"@mui/icons-material": "^5.11.16",
|
|
101
86
|
"@mui/material": "~5.13.0",
|
|
102
87
|
"@mui/x-date-pickers": "^6.5.0",
|
|
@@ -139,7 +124,21 @@
|
|
|
139
124
|
"typescript": "4.2.3",
|
|
140
125
|
"webpack": "^4.41.2",
|
|
141
126
|
"webpack-cli": "^3.2.1",
|
|
142
|
-
"webpack-dev-server": "^3.9.0"
|
|
127
|
+
"webpack-dev-server": "^3.9.0",
|
|
128
|
+
"@jsonforms/core": "3.2.0-beta.0",
|
|
129
|
+
"@jsonforms/react": "3.2.0-beta.0"
|
|
143
130
|
},
|
|
144
|
-
"
|
|
145
|
-
|
|
131
|
+
"scripts": {
|
|
132
|
+
"build": "rollup -c rollup.config.js",
|
|
133
|
+
"build:examples-app": "rollup -c rollup.example.config.js",
|
|
134
|
+
"dev": "webpack --config webpack/webpack.dev.js && webpack-dev-server --config webpack/webpack.dev.js --env=dev --inline",
|
|
135
|
+
"clean": "rimraf lib coverage dist .nyc_output example/dist 2> /dev/null",
|
|
136
|
+
"lint": "eslint .",
|
|
137
|
+
"lint:fix": "eslint --fix .",
|
|
138
|
+
"test": "jest --no-cache",
|
|
139
|
+
"test-cov": "jest --no-cache --coverage",
|
|
140
|
+
"report": "nyc report --reporter=html",
|
|
141
|
+
"doc": "typedoc --name 'JSON Forms React Material Renderers' --excludeExternals --theme ../../typedoc-jsonforms --out docs src",
|
|
142
|
+
"tsc": "tsc --build tsconfig.json"
|
|
143
|
+
}
|
|
144
|
+
}
|