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/components/FileInput.js +1 -1
- package/components/GenericInput.js +1 -1
- package/components/Inputs.js +1 -1
- package/components/Interval.js +1 -1
- package/components/RequireableCheckbox.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/type.d.ts +2 -2
package/package.json
CHANGED
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;
|