react-input-material 0.0.425 → 0.0.430

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.425",
3
+ "version": "0.0.430",
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
@@ -228,6 +228,7 @@ export declare type InputDataTransformation = {
228
228
  date: DataTransformSpecification<number, Date | number | string>;
229
229
  'datetime-local': DataTransformSpecification<number, Date | number | string>;
230
230
  time: DataTransformSpecification<number, Date | number | string>;
231
+ 'time-local': DataTransformSpecification<number, Date | number | string>;
231
232
  float: DataTransformSpecification<number, string>;
232
233
  integer: DataTransformSpecification<number, string>;
233
234
  number: DataTransformSpecification<number, number>;
@@ -257,7 +258,7 @@ export interface InputValueState<T = unknown, MS = ModelState> extends ValueStat
257
258
  representation?: ReactNode | string;
258
259
  }
259
260
  export declare type NativeInputType = ('date' | 'datetime-local' | 'month' | 'number' | 'range' | 'text' | 'time' | 'week');
260
- export declare type GenericInputType = ('boolean' | 'currency' | 'float' | 'integer' | 'string' | NativeInputType);
261
+ export declare type GenericInputType = ('boolean' | 'currency' | 'float' | 'integer' | 'string' | 'time-local' | NativeInputType);
261
262
  export interface InputChildrenOptions<P, T> {
262
263
  index: number;
263
264
  normalizedSelection: NormalizedSelection;