@namba_one/ui-kit-2 1.0.83 → 1.0.85
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 +4 -0
- package/dist/index.es.js +2383 -2375
- package/dist/index.umd.js +5 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1535,6 +1535,8 @@ export declare type DropdownElementProps = {
|
|
|
1535
1535
|
minWidth?: number | string;
|
|
1536
1536
|
};
|
|
1537
1537
|
|
|
1538
|
+
declare type DropdownElementProvider = () => void;
|
|
1539
|
+
|
|
1538
1540
|
export declare type DropdownProps = {
|
|
1539
1541
|
title: string;
|
|
1540
1542
|
isActive?: boolean;
|
|
@@ -2277,6 +2279,8 @@ export declare const useDropdownAnimation: () => {
|
|
|
2277
2279
|
afterLeave: (el: HTMLElement) => void;
|
|
2278
2280
|
};
|
|
2279
2281
|
|
|
2282
|
+
export declare const useDropdownElementInject: () => DropdownElementProvider;
|
|
2283
|
+
|
|
2280
2284
|
export declare function useDynamicVisibleArea(name: string): {
|
|
2281
2285
|
open: () => void;
|
|
2282
2286
|
close: () => void;
|