@namba_one/ui-kit-2 1.0.88 → 1.0.90
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 +3 -1
- package/dist/index.es.js +1023 -1010
- package/dist/index.umd.js +7 -7
- package/dist/namba-one-uikit.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2277,7 +2277,9 @@ export declare function useCopyToBuffer(options?: {
|
|
|
2277
2277
|
copy: (text: string) => void;
|
|
2278
2278
|
};
|
|
2279
2279
|
|
|
2280
|
-
export declare function useDropdown(
|
|
2280
|
+
export declare function useDropdown(params?: {
|
|
2281
|
+
ignoredElements?: HTMLElement[];
|
|
2282
|
+
}): {
|
|
2281
2283
|
isShowDropdown: Readonly<Ref<boolean, boolean>>;
|
|
2282
2284
|
setIsShowDropdown: (newState: boolean) => void;
|
|
2283
2285
|
toggleIsShowDropdown: () => void;
|