@namba_one/ui-kit-2 1.0.12 → 1.0.13
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/index.d.ts +9 -0
- package/dist/index.es.js +1 -0
- package/dist/index.umd.js +5 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1113,6 +1113,15 @@ export declare const TransitionSlideDown: __VLS_WithTemplateSlots_9<typeof __VLS
|
|
|
1113
1113
|
|
|
1114
1114
|
export declare const TransitionSlideRight: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
|
|
1115
1115
|
|
|
1116
|
+
export declare const useDropdownAnimation: () => {
|
|
1117
|
+
beforeEnter: (el: HTMLElement) => void;
|
|
1118
|
+
enter: (el: HTMLElement, done: () => void) => void;
|
|
1119
|
+
afterEnter: (el: HTMLElement) => void;
|
|
1120
|
+
beforeLeave: (el: HTMLElement) => void;
|
|
1121
|
+
leave: (el: HTMLElement, done: () => void) => void;
|
|
1122
|
+
afterLeave: (el: HTMLElement) => void;
|
|
1123
|
+
};
|
|
1124
|
+
|
|
1116
1125
|
export declare function useDynamicVisibleArea(name: string): {
|
|
1117
1126
|
open: () => void;
|
|
1118
1127
|
close: () => void;
|