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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-input-material",
3
- "version": "0.0.396",
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;