remove keepInvalid
parent
69b8d8deea
commit
c4b3d94ac9
|
@ -245,12 +245,6 @@ 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."
|
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -237,10 +237,6 @@ export interface CalendarProps {
|
||||||
* Style class of the component.
|
* Style class of the component.
|
||||||
*/
|
*/
|
||||||
class?: any;
|
class?: any;
|
||||||
/**
|
|
||||||
* Keep invalid value when input blur.
|
|
||||||
*/
|
|
||||||
keepInvalid?: boolean | undefined;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface CalendarSlots {
|
export interface CalendarSlots {
|
||||||
|
|
|
@ -298,10 +298,6 @@ export default {
|
||||||
type: String,
|
type: String,
|
||||||
default: 'body'
|
default: 'body'
|
||||||
},
|
},
|
||||||
keepInvalid: {
|
|
||||||
type: Boolean,
|
|
||||||
default: false
|
|
||||||
},
|
|
||||||
inputClass: null,
|
inputClass: null,
|
||||||
inputStyle: null,
|
inputStyle: null,
|
||||||
class: null,
|
class: null,
|
||||||
|
|
|
@ -441,12 +441,6 @@ export default {
|
||||||
<td>null</td>
|
<td>null</td>
|
||||||
<td>Style class of the component.</td>
|
<td>Style class of the component.</td>
|
||||||
</tr>
|
</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>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue