remove keepInvalid

pull/2012/head
Tuğçe Küçükoğlu 2022-01-18 10:29:27 +03:00 committed by Tuğçe Küçükoğlu
parent 69b8d8deea
commit c4b3d94ac9
4 changed files with 0 additions and 20 deletions

View File

@ -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."
}
];

View File

@ -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 {

View File

@ -298,10 +298,6 @@ export default {
type: String,
default: 'body'
},
keepInvalid: {
type: Boolean,
default: false
},
inputClass: null,
inputStyle: null,
class: null,

View File

@ -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>