@firstnoodle-ui/bui 0.0.64 → 0.0.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -23,6 +23,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
23
23
|
$props: {
|
|
24
24
|
readonly closeable?: boolean | undefined;
|
|
25
25
|
readonly expandVertically?: boolean | undefined;
|
|
26
|
+
readonly interceptClose?: (() => boolean | Promise<boolean>) | undefined;
|
|
26
27
|
readonly overlayType?: import('../types').TOverlayType | undefined;
|
|
27
28
|
readonly target?: string | undefined;
|
|
28
29
|
readonly title?: string | undefined;
|
|
@@ -97,6 +98,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
97
98
|
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
98
99
|
closeable?: boolean;
|
|
99
100
|
expandVertically?: boolean;
|
|
101
|
+
interceptClose?: () => boolean | Promise<boolean>;
|
|
100
102
|
overlayType?: import('../types').TOverlayType;
|
|
101
103
|
target?: string;
|
|
102
104
|
title?: string;
|
|
@@ -144,6 +146,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
144
146
|
}> & Omit<Readonly<{
|
|
145
147
|
closeable?: boolean;
|
|
146
148
|
expandVertically?: boolean;
|
|
149
|
+
interceptClose?: () => boolean | Promise<boolean>;
|
|
147
150
|
overlayType?: import('../types').TOverlayType;
|
|
148
151
|
target?: string;
|
|
149
152
|
title?: string;
|