koval-ui 0.16.6 → 0.16.7

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/dist/index.d.ts CHANGED
@@ -1419,6 +1419,14 @@ min?: string | undefined;
1419
1419
  max?: string | undefined;
1420
1420
  } & RefAttributes<HTMLInputElement>>;
1421
1421
 
1422
+ export declare const InputDateTime: ForwardRefExoticComponent<DataAttributes & AriaAttributes & {
1423
+ id?: string | undefined;
1424
+ role?: AriaRole | undefined;
1425
+ className?: string | undefined;
1426
+ } & Omit<NativePropsTextual, "pattern" | "inputMode" | "autoComplete" | "maxLength" | "minLength"> & Omit<CallbackPropsTextual, "defaultValue"> & ValidationProps & {
1427
+ prefix?: FC | undefined;
1428
+ } & RefAttributes<HTMLInputElement>>;
1429
+
1422
1430
  export declare const InputFile: ForwardRefExoticComponent<DataAttributes & AriaAttributes & {
1423
1431
  id?: string | undefined;
1424
1432
  role?: AriaRole | undefined;
@@ -1460,6 +1468,23 @@ step?: string | number | undefined;
1460
1468
  size?: InputHTMLAttributes<HTMLInputElement>['size'];
1461
1469
  } & RefAttributes<HTMLInputElement>>;
1462
1470
 
1471
+ export declare const InputNumeric: ForwardRefExoticComponent<DataAttributes & AriaAttributes & {
1472
+ id?: string | undefined;
1473
+ role?: AriaRole | undefined;
1474
+ className?: string | undefined;
1475
+ } & Omit<NativePropsTextual, "pattern" | "inputMode" | "autoComplete"> & CallbackPropsTextual & ValidationProps & {
1476
+ /**
1477
+ * Specify the amount of increment/decrement applied to the value when the user presses arrow keys
1478
+ */
1479
+ step?: number | undefined;
1480
+ /**
1481
+ * Define the width of the input in characters
1482
+ */
1483
+ size?: InputHTMLAttributes<HTMLInputElement>['size'];
1484
+ /** Select a mode of numeric input. `scientific` mode disables arrow stepper */
1485
+ mode?: "natural" | "integer" | "floating" | "scientific" | undefined;
1486
+ } & RefAttributes<HTMLInputElement>>;
1487
+
1463
1488
  export declare const InputPassword: ForwardRefExoticComponent<DataAttributes & AriaAttributes & {
1464
1489
  id?: string | undefined;
1465
1490
  role?: AriaRole | undefined;
@@ -1942,6 +1967,10 @@ declare type NativeProps_2 = {
1942
1967
  };
1943
1968
 
1944
1969
  declare type NativePropsNumeric = Omit<NativePropsTextual, 'inputMode' | 'pattern' | 'maxLength' | 'minLength'> & {
1970
+ /**
1971
+ * Define the minimum value that is acceptable and valid for the input
1972
+ * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/min
1973
+ */
1945
1974
  min?: InputHTMLAttributes<HTMLInputElement>['min'];
1946
1975
  /**
1947
1976
  * Define the maximum value that is acceptable and valid for the input