react-input-material 0.0.399 → 0.0.402
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/GenericInput.js +1 -1
- package/components/GenericInput.styles.css +1 -1
- package/components/GenericInput.tsx +18 -12
- package/components/Inputs.js +1 -1
- package/components/Inputs.module.css +1 -1
- package/components/Inputs.styles.css +2 -2
- 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 +7 -16
- package/material-fixes.css +8 -4
- package/package.json +5 -1
package/material-fixes.css
CHANGED
|
@@ -39,12 +39,16 @@ endregion */
|
|
|
39
39
|
width: 30px;
|
|
40
40
|
}
|
|
41
41
|
|
|
42
|
-
& .mdc-
|
|
42
|
+
& .mdc-select {
|
|
43
43
|
width: 100%;
|
|
44
|
-
}
|
|
45
44
|
|
|
46
|
-
|
|
47
|
-
|
|
45
|
+
& .mdc-select__menu {
|
|
46
|
+
width: 100%;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
& .mdc-select-helper-text {
|
|
50
|
+
color: rgba(0, 0, 0, 0.6);
|
|
51
|
+
}
|
|
48
52
|
}
|
|
49
53
|
|
|
50
54
|
& .mdc-text-field {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-input-material",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.402",
|
|
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",
|
|
@@ -290,6 +290,10 @@
|
|
|
290
290
|
},
|
|
291
291
|
"#": "Avoids TypeError: Cannot read property 'removeBinding' of null.",
|
|
292
292
|
"module": null
|
|
293
|
+
},
|
|
294
|
+
"#": "We have to add disable \"mergeRules\" since it removes some needed css directives otherwise.",
|
|
295
|
+
"cssnano": {
|
|
296
|
+
"__evaluate__": "self.debug ? null : {preset: [optionalRequire('cssnano-preset-default'), {autoprefixer: false, discardUnused: !self.library, mergeRules: false}]}"
|
|
293
297
|
}
|
|
294
298
|
},
|
|
295
299
|
"preprocessor": {
|