diff --git a/api-generator/components/chips.js b/api-generator/components/chips.js index ec01f016c..1356ae366 100644 --- a/api-generator/components/chips.js +++ b/api-generator/components/chips.js @@ -52,18 +52,6 @@ const ChipsProps = [ type: "any", default: "null", description: "Inline style of the input field." - }, - { - name: "'aria-labelledby'", - type: "string", - default: "null", - description: "Establishes relationships between the component and label(s) where its value should be one or more element IDs." - }, - { - name: "'aria-label'", - type: "string", - default: "null", - description: "Establishes a string value that labels the component." } ]; diff --git a/src/components/calendar/Calendar.d.ts b/src/components/calendar/Calendar.d.ts index 46c4a5cf7..627f3324e 100755 --- a/src/components/calendar/Calendar.d.ts +++ b/src/components/calendar/Calendar.d.ts @@ -263,13 +263,18 @@ export interface CalendarProps { * */ inputProps?: object | undefined; - /** - * Unique identifier of the element. - */ /** * */ panelProps?: object | undefined; + /** + * Establishes relationships between the component and label(s) where its value should be one or more element IDs. + */ + 'aria-labelledby'?: string | undefined; + /** + * Establishes a string value that labels the component. + */ + 'aria-label'?: string | undefined; } export interface CalendarSlots { diff --git a/src/components/calendar/Calendar.vue b/src/components/calendar/Calendar.vue index 3558fa428..83db6d1d0 100755 --- a/src/components/calendar/Calendar.vue +++ b/src/components/calendar/Calendar.vue @@ -1,7 +1,7 @@