@reinosoft-ui/core 0.1.69 → 0.1.71

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.
@@ -0,0 +1,22 @@
1
+ type __VLS_Props = {
2
+ variant?: string;
3
+ };
4
+ declare var __VLS_9: {}, __VLS_28: {};
5
+ type __VLS_Slots = {} & {
6
+ default?: (props: typeof __VLS_9) => any;
7
+ } & {
8
+ menu?: (props: typeof __VLS_28) => any;
9
+ };
10
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
11
+ click: () => any;
12
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
13
+ onClick?: (() => any) | undefined;
14
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
16
+ declare const _default: typeof __VLS_export;
17
+ export default _default;
18
+ type __VLS_WithSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1,3 @@
1
+ import ButtonMenu from './ButtonMenu.vue';
2
+ export { ButtonMenu };
3
+ export default ButtonMenu;
@@ -1,5 +1,6 @@
1
1
  type __VLS_Props = {
2
2
  variant?: 'button' | 'text';
3
+ classes?: string;
3
4
  };
4
5
  declare var __VLS_12: {};
5
6
  type __VLS_Slots = {} & {
@@ -24,7 +24,7 @@ export declare const Tabs: import("vue").DefineComponent<import("vue").ExtractPr
24
24
  }>> & Readonly<{
25
25
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
26
26
  }>, {
27
- orientation: "horizontal" | "vertical";
27
+ orientation: "vertical" | "horizontal";
28
28
  activationMode: "auto" | "manual";
29
29
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
30
30
  export declare const TabsList: import("vue").DefineComponent<{}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
package/dist/index.d.ts CHANGED
@@ -9,6 +9,7 @@ export { default as Tooltip } from './components/Tooltip';
9
9
  export { default as Tag } from './components/Tag/Tag.vue';
10
10
  export { default as Link } from './components/Link/Link.vue';
11
11
  export { default as Icon } from './components/Icon/Icon.vue';
12
+ export { default as ButtonMenu } from './components/ButtonMenu';
12
13
  export { default as Input } from './components/Input/Input.vue';
13
14
  export { default as Avatar } from './components/Avatar/Avatar.vue';
14
15
  export { default as Select } from './components/Select/Select.vue';