agnostic-vue
Version:
AgnosticUI (Vue)
15 lines (14 loc) • 523 B
TypeScript
export declare type DialogRoles = "dialog" | "alertdialog";
export declare type DialogCloseButtonPositions = "first" | "last" | "none";
/**
* Only useful if this Dialog is being used as a Drawer. This is typically
* only done internally to AgnosticUI. Use Drawer directly instead ;-)
*/
export declare type DialogDrawerPlacement = "start" | "end" | "top" | "bottom";
export interface DialogClassNames {
container?: string;
overlay?: string;
document?: string;
title?: string;
closeButton?: string;
}