fui-material 0.1.99 → 0.1.100

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.
@@ -10,6 +10,9 @@ export interface IFFullDateField {
10
10
  readOnly?: boolean;
11
11
  id?: string;
12
12
  className?: string;
13
+ onkeydown?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
14
+ min?: string | undefined;
15
+ max?: string | undefined;
13
16
  }
14
17
  declare const FFullDateField: FC<IFFullDateField>;
15
18
  export default FFullDateField;
package/dist/index.d.ts CHANGED
@@ -360,6 +360,9 @@ interface IFFullDateField {
360
360
  readOnly?: boolean;
361
361
  id?: string;
362
362
  className?: string;
363
+ onkeydown?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
364
+ min?: string | undefined;
365
+ max?: string | undefined;
363
366
  }
364
367
  declare const FFullDateField: FC<IFFullDateField>;
365
368
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fui-material",
3
- "version": "0.1.99",
3
+ "version": "0.1.100",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org/"