@connectif/ui-components 0.0.7 → 0.0.8
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/components/input/DatePicker.d.ts +1 -1
- package/dist/index.js +5555 -5545
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/utils/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -30,7 +30,7 @@ export type DatePickerProps = Omit<TextFieldProps, 'value' | 'onChange' | 'type'
|
|
|
30
30
|
* An input component which uses a vitamined TextField with a popover to allow user
|
|
31
31
|
* to pick a Date (without time component)
|
|
32
32
|
*/
|
|
33
|
-
declare const DatePicker: React.ForwardRefExoticComponent<Omit<TextFieldProps, "
|
|
33
|
+
declare const DatePicker: React.ForwardRefExoticComponent<Omit<TextFieldProps, "onChange" | "value" | "onBlur" | "onKeyDown" | "onScroll" | "type" | "maxLength"> & {
|
|
34
34
|
/**
|
|
35
35
|
* The value handled by this DatePicker
|
|
36
36
|
*/
|