Refactor #1477
parent
f83169dd60
commit
68e748bf92
|
@ -245,6 +245,12 @@ const CalendarProps = [
|
||||||
type: "any",
|
type: "any",
|
||||||
default: "null",
|
default: "null",
|
||||||
description: "Inline style of the component."
|
description: "Inline style of the component."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "keepInvalid",
|
||||||
|
type: "boolean",
|
||||||
|
default: "false",
|
||||||
|
description: "Keep invalid value when input blur."
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -42,6 +42,7 @@ interface CalendarProps {
|
||||||
inputClass?: string;
|
inputClass?: string;
|
||||||
style?: any;
|
style?: any;
|
||||||
class?: string;
|
class?: string;
|
||||||
|
keepInvalid?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare class Calendar {
|
declare class Calendar {
|
||||||
|
|
Loading…
Reference in New Issue