react-input-material 0.0.355 → 0.0.359
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/components/FileInput.js +1 -1
- package/components/FileInput.styles.css +3 -3
- package/components/FileInput.tsx +8 -4
- package/components/GenericInput.js +1 -1
- package/components/GenericInput.styles.css +1 -1
- package/components/Inputs.js +1 -1
- package/components/Inputs.styles.css +1 -1
- package/components/Interval.js +1 -1
- package/components/Interval.styles.css +2 -2
- package/components/RequireableCheckbox.styles.css +1 -1
- package/index.js +1 -1
- package/index.styles.css +8 -8
- package/package.json +9 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-input-material",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.359",
|
|
4
4
|
"description": "Reusable material design based input field with support for (richt-)text, code, selections, numbers, dates and so on.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"form-field",
|
|
@@ -59,11 +59,14 @@
|
|
|
59
59
|
"update:documentation": "documentationWebsite --log-level info",
|
|
60
60
|
"watch": "weboptimizer build --watch"
|
|
61
61
|
},
|
|
62
|
+
"dependencies": {
|
|
63
|
+
"@types/webpack": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.1.1.tgz"
|
|
64
|
+
},
|
|
62
65
|
"devDependencies": {
|
|
63
66
|
"@babel/eslint-parser": "*",
|
|
64
67
|
"@babel/plugin-transform-proto-to-assign": "*",
|
|
65
68
|
"@babel/preset-react": "*",
|
|
66
|
-
"@emotion/react": "
|
|
69
|
+
"@emotion/react": "^11.7.1",
|
|
67
70
|
"@rmwc/card": "*",
|
|
68
71
|
"@rmwc/checkbox": "*",
|
|
69
72
|
"@rmwc/circular-progress": "*",
|
|
@@ -106,6 +109,7 @@
|
|
|
106
109
|
"material-icons": "*",
|
|
107
110
|
"mini-css-extract-plugin": "*",
|
|
108
111
|
"object-visit": "^1.0.1",
|
|
112
|
+
"postcss": "*",
|
|
109
113
|
"postcss-import": "<=12",
|
|
110
114
|
"postcss-loader": "*",
|
|
111
115
|
"postcss-preset-env": "*",
|
|
@@ -225,12 +229,12 @@
|
|
|
225
229
|
}
|
|
226
230
|
},
|
|
227
231
|
"engines": {
|
|
228
|
-
"node": ">=
|
|
232
|
+
"node": ">=17",
|
|
229
233
|
"npm": ">=7"
|
|
230
234
|
},
|
|
231
235
|
"resolutions": {
|
|
232
|
-
"@
|
|
233
|
-
"
|
|
236
|
+
"@types/webpack": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.1.1.tgz",
|
|
237
|
+
"colors": "1.4.0"
|
|
234
238
|
},
|
|
235
239
|
"sideEffects": false,
|
|
236
240
|
"documentationWebsite": {
|
|
@@ -272,15 +276,6 @@
|
|
|
272
276
|
"cascadingStyleSheet": {
|
|
273
277
|
"exclude": false,
|
|
274
278
|
"options": {
|
|
275
|
-
"esModule": false,
|
|
276
|
-
"modules": {
|
|
277
|
-
"namedExport": false,
|
|
278
|
-
"localIdentName": "[local]",
|
|
279
|
-
"getLocalIdent": {
|
|
280
|
-
"__evaluate__": "(context, localIdentName, localName, options) => options.namedExport ? `${localName}ClassName` : localName"
|
|
281
|
-
},
|
|
282
|
-
"mode": "local"
|
|
283
|
-
},
|
|
284
279
|
"import": {
|
|
285
280
|
"filter": {
|
|
286
281
|
"__evaluate__": "(url) => console.log('AAA', url) || !url.includes('.css')"
|
|
@@ -344,8 +339,5 @@
|
|
|
344
339
|
}
|
|
345
340
|
}
|
|
346
341
|
}
|
|
347
|
-
},
|
|
348
|
-
"dependencies": {
|
|
349
|
-
"@types/webpack": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.1.1.tgz"
|
|
350
342
|
}
|
|
351
343
|
}
|