@jsonforms/material-renderers 3.2.0 → 3.2.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsonforms/material-renderers",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.1",
|
|
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",
|
|
@@ -73,8 +73,8 @@
|
|
|
73
73
|
"peerDependencies": {
|
|
74
74
|
"@emotion/react": "^11.4.1",
|
|
75
75
|
"@emotion/styled": "^11.3.0",
|
|
76
|
-
"@jsonforms/core": "3.2.
|
|
77
|
-
"@jsonforms/react": "3.2.
|
|
76
|
+
"@jsonforms/core": "3.2.1",
|
|
77
|
+
"@jsonforms/react": "3.2.1",
|
|
78
78
|
"@mui/icons-material": "^5.11.16",
|
|
79
79
|
"@mui/material": "^5.13.0",
|
|
80
80
|
"@mui/x-date-pickers": "^6.0.0",
|
|
@@ -119,20 +119,20 @@
|
|
|
119
119
|
"rollup-plugin-visualizer": "^5.4.1",
|
|
120
120
|
"source-map-loader": "^0.2.4",
|
|
121
121
|
"ts-jest": "^27.1.4",
|
|
122
|
-
"ts-loader": "^
|
|
122
|
+
"ts-loader": "^9.5.1",
|
|
123
123
|
"tslib": "^2.5.0",
|
|
124
124
|
"typedoc": "~0.25.3",
|
|
125
125
|
"typescript": "~4.9.5",
|
|
126
|
-
"webpack": "^
|
|
127
|
-
"webpack-cli": "^
|
|
128
|
-
"webpack-dev-server": "^
|
|
129
|
-
"@jsonforms/react": "3.2.
|
|
130
|
-
"@jsonforms/core": "3.2.
|
|
126
|
+
"webpack": "^5.78.0",
|
|
127
|
+
"webpack-cli": "^5.1.4",
|
|
128
|
+
"webpack-dev-server": "^4.15.1",
|
|
129
|
+
"@jsonforms/react": "3.2.1",
|
|
130
|
+
"@jsonforms/core": "3.2.1"
|
|
131
131
|
},
|
|
132
132
|
"scripts": {
|
|
133
133
|
"build": "rollup -c rollup.config.js",
|
|
134
134
|
"build:examples-app": "rollup -c rollup.example.config.js",
|
|
135
|
-
"dev": "webpack
|
|
135
|
+
"dev": "webpack-dev-server --config webpack/webpack.dev.js --env=dev",
|
|
136
136
|
"clean": "rimraf lib coverage dist .nyc_output example/dist 2> /dev/null",
|
|
137
137
|
"lint": "eslint .",
|
|
138
138
|
"lint:fix": "eslint --fix .",
|
package/src/util/theme.ts
CHANGED
|
@@ -52,7 +52,7 @@ const variantToInput = {
|
|
|
52
52
|
outlined: OutlinedInput,
|
|
53
53
|
};
|
|
54
54
|
|
|
55
|
-
export const defaultInputVariant: TextFieldProps['variant'] = '
|
|
55
|
+
export const defaultInputVariant: TextFieldProps['variant'] = 'outlined';
|
|
56
56
|
|
|
57
57
|
export function useInputVariant(): TextFieldProps['variant'] {
|
|
58
58
|
const { variant = defaultInputVariant } = useThemeProps({
|