react-input-material 0.0.396 → 0.0.399
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.d.ts +1 -1
- package/components/FileInput.js +1 -1
- package/components/FileInput.styles.css +5 -3
- package/components/GenericInput.js +1 -1
- package/components/GenericInput.styles.css +2 -1
- package/components/GenericInput.tsx +12 -6
- package/components/Inputs.js +1 -1
- package/components/Inputs.styles.css +3 -2
- package/components/Interval.d.ts +1 -1
- package/components/Interval.js +1 -1
- package/components/Interval.styles.css +2 -1
- package/components/RequireableCheckbox.js +1 -1
- package/components/RequireableCheckbox.styles.css +1 -1
- package/index.js +1 -1
- package/index.styles.css +12 -9
- package/package.json +11 -1
- package/type.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-input-material",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.399",
|
|
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",
|
|
@@ -108,6 +108,7 @@
|
|
|
108
108
|
"postcss": "*",
|
|
109
109
|
"postcss-import": "<=12",
|
|
110
110
|
"postcss-loader": "*",
|
|
111
|
+
"postcss-nested": "*",
|
|
111
112
|
"postcss-preset-env": "*",
|
|
112
113
|
"prop-types": "*",
|
|
113
114
|
"react": ">=17",
|
|
@@ -292,6 +293,15 @@
|
|
|
292
293
|
}
|
|
293
294
|
},
|
|
294
295
|
"preprocessor": {
|
|
296
|
+
"cascadingStyleSheet": {
|
|
297
|
+
"additional": {
|
|
298
|
+
"plugins": {
|
|
299
|
+
"pre": {
|
|
300
|
+
"__append__": "require('postcss-nested')"
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
},
|
|
295
305
|
"javaScript": {
|
|
296
306
|
"options": {
|
|
297
307
|
"presets": {
|
package/type.d.ts
CHANGED
|
@@ -235,7 +235,6 @@ export interface InputProperties<T = unknown> extends InputModelState, Propertie
|
|
|
235
235
|
cursor: CursorState;
|
|
236
236
|
editor: ('code' | 'code(css)' | 'code(script)' | 'plain' | 'text' | 'richtext(raw)' | 'richtext(simple)' | 'richtext(normal)' | 'richtext(advanced)');
|
|
237
237
|
editorIsActive: boolean;
|
|
238
|
-
fullWidth: boolean;
|
|
239
238
|
hidden: boolean;
|
|
240
239
|
icon: string | (IconOptions & {
|
|
241
240
|
tooltip?: string | TooltipProps;
|