test-stpr-ui-kit 0.5.39 → 0.5.40
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.
|
@@ -252,7 +252,8 @@ export declare interface IDatePickerInputProps {
|
|
|
252
252
|
classNameRoot?: string;
|
|
253
253
|
}
|
|
254
254
|
|
|
255
|
-
declare interface IDatePickerProps extends Omit<IDatePickerInputProps, "classNameRoot" | "focused" | "onClick" | "value" | "onChange"> {
|
|
255
|
+
declare interface IDatePickerProps extends Omit<IDatePickerInputProps, "classNameRoot" | "focused" | "onClick" | "value" | "onChange" | "dateFormatMask"> {
|
|
256
|
+
dateFormatMask?: string | (string | RegExp)[];
|
|
256
257
|
dateFormat?: string;
|
|
257
258
|
value?: string;
|
|
258
259
|
onChange?: TOnChangeDatePicker;
|