react-input-material 0.0.438 → 0.0.439

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.438",
3
+ "version": "0.0.439",
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
@@ -123,11 +123,9 @@ export interface BaseProperties extends CommonBaseModel, ModelState {
123
123
  enforceUncontrolled: boolean;
124
124
  id: string;
125
125
  initialValue: unknown;
126
- invertedPattern: Array<RegExp | string> | null | RegExp | string;
127
126
  label: string;
128
127
  model: BaseModel;
129
128
  name: string;
130
- pattern: Array<RegExp | string> | null | RegExp | string;
131
129
  required: boolean;
132
130
  requiredText: string;
133
131
  ripple: RipplePropT;
@@ -288,6 +286,7 @@ export interface InputProperties<T = unknown> extends InputModelState, Propertie
288
286
  tooltip?: string | TooltipProps;
289
287
  });
290
288
  inputProperties: Partial<CodeEditorProps | RichTextEditorProps | SelectProps | TextFieldProps>;
289
+ invertedPattern: Array<RegExp | string> | null | RegExp | string;
291
290
  invertedPatternText: string;
292
291
  labels: Array<[string, string]> | Array<string> | Mapping;
293
292
  maximumLengthText: string;
@@ -301,6 +300,7 @@ export interface InputProperties<T = unknown> extends InputModelState, Propertie
301
300
  onSelect: (event: GenericEvent, properties: this) => void;
302
301
  onSelectionChange: (event: GenericEvent, properties: this) => void;
303
302
  outlined: boolean;
303
+ pattern: Array<RegExp | string> | null | RegExp | string;
304
304
  patternText: string;
305
305
  placeholder: string;
306
306
  representation: ReactNode | string;