From c4b3d94ac90dcfc42898280960387edf0ac7c468 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Tue, 18 Jan 2022 10:29:27 +0300 Subject: [PATCH] remove keepInvalid --- api-generator/components/calendar.js | 6 ------ src/components/calendar/Calendar.d.ts | 4 ---- src/components/calendar/Calendar.vue | 4 ---- src/views/calendar/CalendarDoc.vue | 6 ------ 4 files changed, 20 deletions(-) diff --git a/api-generator/components/calendar.js b/api-generator/components/calendar.js index b6257dcce..d95f4def3 100644 --- a/api-generator/components/calendar.js +++ b/api-generator/components/calendar.js @@ -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." } ]; diff --git a/src/components/calendar/Calendar.d.ts b/src/components/calendar/Calendar.d.ts index 1745598c1..0888f5375 100755 --- a/src/components/calendar/Calendar.d.ts +++ b/src/components/calendar/Calendar.d.ts @@ -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 { diff --git a/src/components/calendar/Calendar.vue b/src/components/calendar/Calendar.vue index 3209fa5c1..64b01a3b5 100755 --- a/src/components/calendar/Calendar.vue +++ b/src/components/calendar/Calendar.vue @@ -298,10 +298,6 @@ export default { type: String, default: 'body' }, - keepInvalid: { - type: Boolean, - default: false - }, inputClass: null, inputStyle: null, class: null, diff --git a/src/views/calendar/CalendarDoc.vue b/src/views/calendar/CalendarDoc.vue index f1cc03d15..310fca93f 100755 --- a/src/views/calendar/CalendarDoc.vue +++ b/src/views/calendar/CalendarDoc.vue @@ -441,12 +441,6 @@ export default { null Style class of the component. - - keepInvalid (Deprecated) - boolean - false - Keep invalid value when input blur. Deprecated: Invalid values are not kept anymore. -