Update Calendar.d.ts

pull/4101/head^2
Tuğçe Küçükoğlu 2023-07-06 16:54:38 +03:00
parent 6f6083169f
commit 34bb1c969c
1 changed files with 12 additions and 12 deletions

View File

@ -198,10 +198,6 @@ export interface CalendarPassThroughOptions {
* Uses to pass attributes to the day label's DOM element.
*/
dayLabel?: CalendarPassThroughOptionType;
/**
* Uses to pass attributes to the aria selected day's DOM element.
*/
hiddenSelectedDay?: CalendarPassThroughOptionType;
/**
* Uses to pass attributes to the month picker's DOM element.
*/
@ -210,10 +206,6 @@ export interface CalendarPassThroughOptions {
* Uses to pass attributes to the month's DOM element.
*/
month?: CalendarPassThroughOptionType;
/**
* Uses to pass attributes to the aria month's DOM element.
*/
hiddenMonth?: CalendarPassThroughOptionType;
/**
* Uses to pass attributes to the year picker's DOM element.
*/
@ -222,10 +214,6 @@ export interface CalendarPassThroughOptions {
* Uses to pass attributes to the year's DOM element.
*/
year?: CalendarPassThroughOptionType;
/**
* Uses to pass attributes to the aria year's DOM element.
*/
hiddenYear?: CalendarPassThroughOptionType;
/**
* Uses to pass attributes to the time picker's DOM element.
*/
@ -284,6 +272,18 @@ export interface CalendarPassThroughOptions {
* @see {@link ButtonPassThroughOptionType}
*/
clearButton?: ButtonPassThroughOptionType;
/**
* Uses to pass attributes to the aria selected day's DOM element.
*/
hiddenSelectedDay?: CalendarPassThroughOptionType;
/**
* Uses to pass attributes to the aria month's DOM element.
*/
hiddenMonth?: CalendarPassThroughOptionType;
/**
* Uses to pass attributes to the aria year's DOM element.
*/
hiddenYear?: CalendarPassThroughOptionType;
/**
* Uses to manage all lifecycle hooks
* @see {@link BaseComponent.ComponentHooks}