@namba_one/ui-kit-2 1.0.200 → 1.0.202
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 +2619 -2600
- package/dist/index.umd.js +17 -17
- package/dist/namba-one-uikit.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ import { ComponentPublicInstance } from 'vue';
|
|
|
10
10
|
import { DebuggerEvent } from 'vue';
|
|
11
11
|
import { DefineComponent } from 'vue';
|
|
12
12
|
import { ExtractPropTypes } from 'vue';
|
|
13
|
+
import { getCurrentInstance } from 'vue';
|
|
13
14
|
import { GlobalComponents } from 'vue';
|
|
14
15
|
import { GlobalDirectives } from 'vue';
|
|
15
16
|
import { InjectionKey } from 'vue';
|
|
@@ -2159,7 +2160,7 @@ export declare const Dropdown: __VLS_WithTemplateSlots_7<typeof __VLS_component_
|
|
|
2159
2160
|
|
|
2160
2161
|
export declare const DropdownElement: __VLS_WithTemplateSlots_19<typeof __VLS_component_19, __VLS_TemplateResult_19["slots"]>;
|
|
2161
2162
|
|
|
2162
|
-
export declare type DropdownElementProps = WrapperProps
|
|
2163
|
+
export declare type DropdownElementProps = Omit<WrapperProps, 'instance'>;
|
|
2163
2164
|
|
|
2164
2165
|
declare type DropdownElementProvider = () => void;
|
|
2165
2166
|
|
|
@@ -3604,6 +3605,7 @@ declare type WrapperProps = {
|
|
|
3604
3605
|
minWidth?: number | string;
|
|
3605
3606
|
isCenterByParent?: boolean;
|
|
3606
3607
|
isCloseOnScrollParent?: boolean;
|
|
3608
|
+
instance?: ReturnType<typeof getCurrentInstance>;
|
|
3607
3609
|
};
|
|
3608
3610
|
|
|
3609
3611
|
export { }
|