nope/resources/ui/layout/interfaces/IModalSettings.ts

14 lines
388 B
TypeScript
Raw Normal View History

2021-04-20 18:49:15 +00:00
import { IDynamicRenderSettings } from "../../dynamic/interfaces/IDynamicRenderSettings";
2020-10-29 18:20:42 +00:00
export interface IModalSettings {
2021-04-20 18:49:15 +00:00
content: IDynamicRenderSettings;
backdrop?: "static" | boolean;
centered?: boolean;
header?: string;
size?: "sm" | "lg" | "xl";
closeButton?: boolean;
closeLabel?: boolean;
onHide?: (closeCallback: () => void) => void;
renderInBody?: boolean;
}