@reeverdev/ui 0.2.158 → 0.2.160
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.cjs +7 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2401,6 +2401,11 @@ interface DateRangePickerProps extends Omit<React$1.InputHTMLAttributes<HTMLInpu
|
|
|
2401
2401
|
* @default true
|
|
2402
2402
|
*/
|
|
2403
2403
|
showPicker?: boolean;
|
|
2404
|
+
/**
|
|
2405
|
+
* Allow manual date input via keyboard
|
|
2406
|
+
* @default true
|
|
2407
|
+
*/
|
|
2408
|
+
manualInput?: boolean;
|
|
2404
2409
|
/**
|
|
2405
2410
|
* Whether the input should take full width
|
|
2406
2411
|
* @default false
|
|
@@ -3114,6 +3119,11 @@ interface DateInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputEleme
|
|
|
3114
3119
|
* @default true
|
|
3115
3120
|
*/
|
|
3116
3121
|
showPicker?: boolean;
|
|
3122
|
+
/**
|
|
3123
|
+
* Allow manual date input via keyboard
|
|
3124
|
+
* @default true
|
|
3125
|
+
*/
|
|
3126
|
+
manualInput?: boolean;
|
|
3117
3127
|
/**
|
|
3118
3128
|
* Whether the input should take full width
|
|
3119
3129
|
* @default false
|
package/dist/index.d.ts
CHANGED
|
@@ -2401,6 +2401,11 @@ interface DateRangePickerProps extends Omit<React$1.InputHTMLAttributes<HTMLInpu
|
|
|
2401
2401
|
* @default true
|
|
2402
2402
|
*/
|
|
2403
2403
|
showPicker?: boolean;
|
|
2404
|
+
/**
|
|
2405
|
+
* Allow manual date input via keyboard
|
|
2406
|
+
* @default true
|
|
2407
|
+
*/
|
|
2408
|
+
manualInput?: boolean;
|
|
2404
2409
|
/**
|
|
2405
2410
|
* Whether the input should take full width
|
|
2406
2411
|
* @default false
|
|
@@ -3114,6 +3119,11 @@ interface DateInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputEleme
|
|
|
3114
3119
|
* @default true
|
|
3115
3120
|
*/
|
|
3116
3121
|
showPicker?: boolean;
|
|
3122
|
+
/**
|
|
3123
|
+
* Allow manual date input via keyboard
|
|
3124
|
+
* @default true
|
|
3125
|
+
*/
|
|
3126
|
+
manualInput?: boolean;
|
|
3117
3127
|
/**
|
|
3118
3128
|
* Whether the input should take full width
|
|
3119
3129
|
* @default false
|