Update Calendar.d.ts
parent
6f6083169f
commit
34bb1c969c
|
@ -198,10 +198,6 @@ export interface CalendarPassThroughOptions {
|
||||||
* Uses to pass attributes to the day label's DOM element.
|
* Uses to pass attributes to the day label's DOM element.
|
||||||
*/
|
*/
|
||||||
dayLabel?: CalendarPassThroughOptionType;
|
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.
|
* 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.
|
* Uses to pass attributes to the month's DOM element.
|
||||||
*/
|
*/
|
||||||
month?: CalendarPassThroughOptionType;
|
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.
|
* 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.
|
* Uses to pass attributes to the year's DOM element.
|
||||||
*/
|
*/
|
||||||
year?: CalendarPassThroughOptionType;
|
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.
|
* Uses to pass attributes to the time picker's DOM element.
|
||||||
*/
|
*/
|
||||||
|
@ -284,6 +272,18 @@ export interface CalendarPassThroughOptions {
|
||||||
* @see {@link ButtonPassThroughOptionType}
|
* @see {@link ButtonPassThroughOptionType}
|
||||||
*/
|
*/
|
||||||
clearButton?: 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
|
* Uses to manage all lifecycle hooks
|
||||||
* @see {@link BaseComponent.ComponentHooks}
|
* @see {@link BaseComponent.ComponentHooks}
|
||||||
|
|
Loading…
Reference in New Issue