react-input-material 0.0.397 → 0.0.398

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.397",
3
+ "version": "0.0.398",
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",
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;