@namba_one/ui-kit-2 1.0.289 → 1.0.290
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 +20 -0
- package/dist/index.es.js +3270 -3197
- package/dist/index.umd.js +16 -16
- package/dist/namba-one-uikit.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4770,6 +4770,26 @@ export declare type TableSimpleProps<T> = {
|
|
|
4770
4770
|
responseButtonText?: string;
|
|
4771
4771
|
};
|
|
4772
4772
|
|
|
4773
|
+
export declare const TabMenu: DefineComponent<TabMenuProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
4774
|
+
click: () => any;
|
|
4775
|
+
}, string, PublicProps, Readonly<TabMenuProps> & Readonly<{
|
|
4776
|
+
onClick?: (() => any) | undefined;
|
|
4777
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
4778
|
+
|
|
4779
|
+
export declare type TabMenuEmits = {
|
|
4780
|
+
(event: 'click'): void;
|
|
4781
|
+
};
|
|
4782
|
+
|
|
4783
|
+
export declare type TabMenuProps = {
|
|
4784
|
+
icon: IconName;
|
|
4785
|
+
text: string;
|
|
4786
|
+
tag?: 'button' | 'a' | 'router-link';
|
|
4787
|
+
href?: string;
|
|
4788
|
+
isActive?: boolean;
|
|
4789
|
+
isCollapsed?: boolean;
|
|
4790
|
+
weight?: TheTextProps['weight'];
|
|
4791
|
+
};
|
|
4792
|
+
|
|
4773
4793
|
export declare const Tabs: DefineComponent<__VLS_PublicProps_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4774
4794
|
"update:value": (value: Maybe<string | number> | undefined) => any;
|
|
4775
4795
|
}, string, PublicProps, Readonly<__VLS_PublicProps_21> & Readonly<{
|