remove keepInvalid
parent
69b8d8deea
commit
c4b3d94ac9
|
@ -245,12 +245,6 @@ const CalendarProps = [
|
|||
type: "any",
|
||||
default: "null",
|
||||
description: "Inline style of the component."
|
||||
},
|
||||
{
|
||||
name: "keepInvalid",
|
||||
type: "boolean",
|
||||
default: "false",
|
||||
description: "Keep invalid value when input blur."
|
||||
}
|
||||
];
|
||||
|
||||
|
|
|
@ -237,10 +237,6 @@ export interface CalendarProps {
|
|||
* Style class of the component.
|
||||
*/
|
||||
class?: any;
|
||||
/**
|
||||
* Keep invalid value when input blur.
|
||||
*/
|
||||
keepInvalid?: boolean | undefined;
|
||||
}
|
||||
|
||||
export interface CalendarSlots {
|
||||
|
|
|
@ -298,10 +298,6 @@ export default {
|
|||
type: String,
|
||||
default: 'body'
|
||||
},
|
||||
keepInvalid: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
inputClass: null,
|
||||
inputStyle: null,
|
||||
class: null,
|
||||
|
|
|
@ -441,12 +441,6 @@ export default {
|
|||
<td>null</td>
|
||||
<td>Style class of the component.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>keepInvalid (Deprecated)</td>
|
||||
<td>boolean</td>
|
||||
<td>false</td>
|
||||
<td>Keep invalid value when input blur. <b>Deprecated</b>: Invalid values are not kept anymore.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue