From 3262a5336f8c09e65729089addcf9fe21ee82605 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: Fri, 22 Jul 2022 22:08:18 +0300 Subject: [PATCH] Refactor #2801 - Calendar --- api-generator/components/calendar.js | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/api-generator/components/calendar.js b/api-generator/components/calendar.js index bccfcaedc..993b20726 100644 --- a/api-generator/components/calendar.js +++ b/api-generator/components/calendar.js @@ -229,10 +229,10 @@ const CalendarProps = [ description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached. Special keywords are "body" for document body and "self" for the element itself.' }, { - name: "inputStyle", - type: "any", + name: "inputId", + type: "string", default: "null", - description: "Inline style of the input field." + description: "Identifier of the underlying input element." }, { name: "inputClass", @@ -241,16 +241,10 @@ const CalendarProps = [ description: "Style class of the input field." }, { - name: "class", - type: "string", - default: "null", - description: "Style class of the component." - }, - { - name: "style", + name: "inputStyle", type: "any", default: "null", - description: "Inline style of the component." + description: "Inline style of the input field." } ];