mask order change on .d.ts files

pull/3913/head
Tuğçe Küçükoğlu 2023-04-26 16:41:27 +03:00
parent c996a7b827
commit ba6afbffb2
2 changed files with 8 additions and 8 deletions

View File

@ -25,10 +25,6 @@ export interface DialogPassThroughMethodOptions {
* @see {@link DialogProps.pt} * @see {@link DialogProps.pt}
*/ */
export interface DialogPassThroughOptions { export interface DialogPassThroughOptions {
/**
* Uses to pass attributes to the mask's DOM element.
*/
mask?: DialogPassThroughOptionType;
/** /**
* Uses to pass attributes to the root's DOM element. * Uses to pass attributes to the root's DOM element.
*/ */
@ -69,6 +65,10 @@ export interface DialogPassThroughOptions {
* Uses to pass attributes to the footer's DOM element. * Uses to pass attributes to the footer's DOM element.
*/ */
footer?: DialogPassThroughOptionType; footer?: DialogPassThroughOptionType;
/**
* Uses to pass attributes to the mask's DOM element.
*/
mask?: DialogPassThroughOptionType;
} }
/** /**

View File

@ -25,10 +25,6 @@ export interface SidebarPassThroughMethodOptions {
* @see {@link SidebarProps.pt} * @see {@link SidebarProps.pt}
*/ */
export interface SidebarPassThroughOptions { export interface SidebarPassThroughOptions {
/**
* Uses to pass attributes to the mask's DOM element.
*/
mask?: SidebarPassThroughOptionType;
/** /**
* Uses to pass attributes to the root's DOM element. * Uses to pass attributes to the root's DOM element.
*/ */
@ -53,6 +49,10 @@ export interface SidebarPassThroughOptions {
* Uses to pass attributes to the content's DOM element. * Uses to pass attributes to the content's DOM element.
*/ */
content?: SidebarPassThroughOptionType; content?: SidebarPassThroughOptionType;
/**
* Uses to pass attributes to the mask's DOM element.
*/
mask?: SidebarPassThroughOptionType;
} }
/** /**