diff --git a/src/components/calendar/Calendar.d.ts b/src/components/calendar/Calendar.d.ts index 21a260c8e..f51c918bf 100755 --- a/src/components/calendar/Calendar.d.ts +++ b/src/components/calendar/Calendar.d.ts @@ -132,10 +132,6 @@ export interface CalendarProps { * @deprecated since version 3.9.0, Years are based on decades by default. */ yearRange?: string | undefined; - /** - * Style class of the datetimepicker panel. - */ - panelClass?: any; /** * The minimum selectable date. */ @@ -239,6 +235,19 @@ export interface CalendarProps { * Default value is 'body'. */ appendTo?: CalendarAppendToType; + id?: string | undefined; + /** + * Inline style of the component. + */ + style?: any; + /** + * Style class of the component. + */ + class?: any; + /** + * Identifier of the underlying input element. + */ + inputId?: string | undefined; /** * Inline style of the input field. */ @@ -248,13 +257,16 @@ export interface CalendarProps { */ inputClass?: any; /** - * Inline style of the component. + * */ - style?: any; + inputProps?: object | undefined; /** - * Style class of the component. + * Unique identifier of the element. */ - class?: any; + /** + * + */ + panelProps?: object | undefined; } export interface CalendarSlots { diff --git a/src/components/calendar/Calendar.vue b/src/components/calendar/Calendar.vue index 45826ead2..6aab787ae 100755 --- a/src/components/calendar/Calendar.vue +++ b/src/components/calendar/Calendar.vue @@ -316,8 +316,6 @@ export default { inputId: null, inputClass: null, inputStyle: null, - class: null, - style: null, inputProps: null, panelProps: null, disabled: { diff --git a/src/views/calendar/CalendarDoc.vue b/src/views/calendar/CalendarDoc.vue index da9ee5fdb..8b2f3578a 100755 --- a/src/views/calendar/CalendarDoc.vue +++ b/src/views/calendar/CalendarDoc.vue @@ -217,6 +217,12 @@ export default {