sep-yui 0.1.27 → 0.1.30
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.
- package/dist/components/Modal/Modal.vue.d.ts +2 -0
- package/dist/components/Modal/ModalAnimated.vue.d.ts +4 -0
- package/dist/sep-yui.es.ts +3788 -3734
- package/dist/sep-yui.umd.ts +15 -15
- package/dist/stores/modal.d.ts +43 -0
- package/dist/style.css +1 -1
- package/package.json +2 -2
@@ -7,8 +7,10 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRu
|
|
7
7
|
closeDialog: () => void;
|
8
8
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
9
9
|
close: (...args: any[]) => void;
|
10
|
+
unmounted: (...args: any[]) => void;
|
10
11
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<IDialogProps>>> & {
|
11
12
|
onClose?: ((...args: any[]) => any) | undefined;
|
13
|
+
onUnmounted?: ((...args: any[]) => any) | undefined;
|
12
14
|
}, {}, {}>;
|
13
15
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
14
16
|
export default _default;
|
@@ -9,11 +9,15 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<
|
|
9
9
|
animateType: ModalAnimateEnum;
|
10
10
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
11
11
|
close: () => void;
|
12
|
+
unmounted: () => void;
|
13
|
+
"end-animation": () => void;
|
12
14
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IModalProps>, {
|
13
15
|
dataTestid: string;
|
14
16
|
animateType: ModalAnimateEnum;
|
15
17
|
}>>> & {
|
16
18
|
onClose?: (() => any) | undefined;
|
19
|
+
onUnmounted?: (() => any) | undefined;
|
20
|
+
"onEnd-animation"?: (() => any) | undefined;
|
17
21
|
}, {
|
18
22
|
dataTestid: string;
|
19
23
|
animateType: ModalAnimateEnum;
|