@db-ux/v-core-components 2.0.2 → 2.0.4

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.
Files changed (35) hide show
  1. package/dist/components/accordion/accordion.vue.d.ts +3 -25
  2. package/dist/components/accordion-item/accordion-item.vue.d.ts +3 -30
  3. package/dist/components/badge/badge.vue.d.ts +2 -21
  4. package/dist/components/brand/brand.vue.d.ts +2 -20
  5. package/dist/components/button/button.vue.d.ts +3 -37
  6. package/dist/components/card/card.vue.d.ts +3 -20
  7. package/dist/components/checkbox/checkbox.vue.d.ts +3 -65
  8. package/dist/components/custom-select/custom-select.vue.d.ts +3 -199
  9. package/dist/components/custom-select-dropdown/custom-select-dropdown.vue.d.ts +2 -14
  10. package/dist/components/custom-select-form-field/custom-select-form-field.vue.d.ts +2 -13
  11. package/dist/components/custom-select-list/custom-select-list.vue.d.ts +2 -15
  12. package/dist/components/custom-select-list-item/custom-select-list-item.vue.d.ts +3 -41
  13. package/dist/components/drawer/drawer.vue.d.ts +3 -33
  14. package/dist/components/header/header.vue.d.ts +3 -34
  15. package/dist/components/icon/icon.vue.d.ts +2 -17
  16. package/dist/components/infotext/infotext.vue.d.ts +2 -19
  17. package/dist/components/input/input.vue.d.ts +3 -98
  18. package/dist/components/link/link.vue.d.ts +3 -33
  19. package/dist/components/navigation/navigation.vue.d.ts +2 -16
  20. package/dist/components/navigation-item/navigation-item.vue.d.ts +3 -59
  21. package/dist/components/notification/notification.vue.d.ts +3 -39
  22. package/dist/components/page/page.vue.d.ts +2 -20
  23. package/dist/components/popover/popover.vue.d.ts +3 -26
  24. package/dist/components/radio/radio.vue.d.ts +3 -41
  25. package/dist/components/section/section.vue.d.ts +2 -17
  26. package/dist/components/select/select.vue.d.ts +3 -84
  27. package/dist/components/stack/stack.vue.d.ts +2 -20
  28. package/dist/components/switch/switch.vue.d.ts +3 -48
  29. package/dist/components/tab-item/tab-item.vue.d.ts +3 -38
  30. package/dist/components/tab-list/tab-list.vue.d.ts +2 -15
  31. package/dist/components/tab-panel/tab-panel.vue.d.ts +2 -15
  32. package/dist/components/tabs/tabs.vue.d.ts +3 -45
  33. package/dist/components/tag/tag.vue.d.ts +3 -33
  34. package/dist/components/tooltip/tooltip.vue.d.ts +3 -26
  35. package/package.json +5 -5
@@ -1,90 +1,9 @@
1
- import { DBSelectOptionType, DBSelectProps, DBSelectState } from "./model";
2
- import { cls, getBoolean, getHideProp, stringPropVisible } from "../../utils";
3
- import { DEFAULT_LABEL, DEFAULT_VALID_MESSAGE } from "../../shared/constants";
4
- import DBInfotext from "../infotext/infotext.vue";
1
+ import { DBSelectOptionType, DBSelectProps } from "./model";
5
2
  import { ChangeEvent, ClickEvent, InputEvent, InteractionEvent } from "../../shared/model";
6
- declare const _id: import("vue").Ref<string | undefined, string | undefined>;
7
- declare const _messageId: import("vue").Ref<string | undefined, string | undefined>;
8
- declare const _validMessageId: import("vue").Ref<string | undefined, string | undefined>;
9
- declare const _invalidMessageId: import("vue").Ref<string | undefined, string | undefined>;
10
- declare const _invalidMessage: import("vue").Ref<string | undefined, string | undefined>;
11
- declare const _placeholderId: import("vue").Ref<string, string>;
12
- declare const _descByIds: import("vue").Ref<string | undefined, string | undefined>;
13
- declare const _value: import("vue").Ref<string | undefined, string | undefined>;
14
- declare const _voiceOverFallback: import("vue").Ref<string | undefined, string | undefined>;
15
- declare const _ref: import("vue").Ref<any, any>;
16
- declare function hasValidState(): ReturnType<DBSelectState["hasValidState"]>;
17
- declare function handleClick(event: ClickEvent<HTMLSelectElement> | any): ReturnType<DBSelectState["handleClick"]>;
18
- declare function handleInput(event: InputEvent<HTMLSelectElement> | any): ReturnType<DBSelectState["handleInput"]>;
19
- declare function handleChange(event: ChangeEvent<HTMLSelectElement> | any): ReturnType<DBSelectState["handleChange"]>;
20
- declare function handleBlur(event: InteractionEvent<HTMLSelectElement> | any): ReturnType<DBSelectState["handleBlur"]>;
21
- declare function handleFocus(event: InteractionEvent<HTMLSelectElement> | any): ReturnType<DBSelectState["handleFocus"]>;
22
- declare function getOptionLabel(option: DBSelectOptionType): ReturnType<DBSelectState["getOptionLabel"]>;
23
- declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
24
3
  declare var __VLS_1: {};
25
- type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
4
+ type __VLS_Slots = {} & {
26
5
  default?: (props: typeof __VLS_1) => any;
27
- }>;
28
- declare const __VLS_self: import("vue").DefineComponent<DBSelectProps, {
29
- cls: typeof cls;
30
- getBoolean: typeof getBoolean;
31
- getHideProp: typeof getHideProp;
32
- stringPropVisible: typeof stringPropVisible;
33
- DEFAULT_LABEL: typeof DEFAULT_LABEL;
34
- DEFAULT_VALID_MESSAGE: typeof DEFAULT_VALID_MESSAGE;
35
- DBInfotext: typeof DBInfotext;
36
- _id: typeof _id;
37
- _messageId: typeof _messageId;
38
- _validMessageId: typeof _validMessageId;
39
- _invalidMessageId: typeof _invalidMessageId;
40
- _invalidMessage: typeof _invalidMessage;
41
- _placeholderId: typeof _placeholderId;
42
- _descByIds: typeof _descByIds;
43
- _value: typeof _value;
44
- _voiceOverFallback: typeof _voiceOverFallback;
45
- _ref: typeof _ref;
46
- hasValidState: typeof hasValidState;
47
- handleClick: typeof handleClick;
48
- handleInput: typeof handleInput;
49
- handleChange: typeof handleChange;
50
- handleBlur: typeof handleBlur;
51
- handleFocus: typeof handleFocus;
52
- getOptionLabel: typeof getOptionLabel;
53
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
54
- "update:value": (...args: any[]) => void;
55
- }, string, import("vue").PublicProps, Readonly<DBSelectProps> & Readonly<{
56
- "onUpdate:value"?: ((...args: any[]) => any) | undefined;
57
- }>, {
58
- name: string;
59
- input: (event: InputEvent<HTMLSelectElement>) => void;
60
- label: string;
61
- disabled: boolean | string;
62
- value: any;
63
- variant: import("../../shared/model").LabelVariantType;
64
- children: any;
65
- className: string;
66
- id: string;
67
- onClick: (event: ClickEvent<HTMLSelectElement>) => void;
68
- icon: import("@db-ux/core-foundations").IconTypes;
69
- size: number;
70
- showIcon: boolean | string;
71
- onFocus: (event: InteractionEvent<HTMLSelectElement>) => void;
72
- onBlur: (event: InteractionEvent<HTMLSelectElement>) => void;
73
- onChange: (event: ChangeEvent<HTMLSelectElement>) => void;
74
- onInput: (event: InputEvent<HTMLSelectElement>) => void;
75
- validation: import("../../shared/model").ValidationType;
76
- required: boolean | string;
77
- showLabel: boolean | string;
78
- placeholder: string;
79
- message: string;
80
- validMessage: string;
81
- invalidMessage: string;
82
- messageIcon: import("@db-ux/core-foundations").IconTypes;
83
- autocomplete: string | import("../../shared/model").AutoCompleteType;
84
- showMessage: boolean | string;
85
- multiple: boolean;
86
- options: DBSelectOptionType[];
87
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ };
88
7
  declare const __VLS_component: import("vue").DefineComponent<DBSelectProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
89
8
  "update:value": (...args: any[]) => void;
90
9
  }, string, import("vue").PublicProps, Readonly<DBSelectProps> & Readonly<{
@@ -1,26 +1,8 @@
1
1
  import { DBStackProps } from "./model";
2
- import { cls, getBooleanAsString } from "../../utils";
3
- declare const _ref: import("vue").Ref<any, any>;
4
- declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
5
2
  declare var __VLS_1: {};
6
- type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
3
+ type __VLS_Slots = {} & {
7
4
  default?: (props: typeof __VLS_1) => any;
8
- }>;
9
- declare const __VLS_self: import("vue").DefineComponent<DBStackProps, {
10
- cls: typeof cls;
11
- getBooleanAsString: typeof getBooleanAsString;
12
- _ref: typeof _ref;
13
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBStackProps> & Readonly<{}>, {
14
- variant: import("./model").StackVariantType;
15
- children: any;
16
- className: string;
17
- id: string;
18
- direction: import("./model").StackDirectionType;
19
- wrap: boolean | string;
20
- gap: import("../..").GapSpacingType;
21
- alignment: import("./model").StackAlignmentType;
22
- justifyContent: import("./model").StackJustifyContentType;
23
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
5
+ };
24
6
  declare const __VLS_component: import("vue").DefineComponent<DBStackProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBStackProps> & Readonly<{}>, {
25
7
  variant: import("./model").StackVariantType;
26
8
  children: any;
@@ -1,54 +1,9 @@
1
- import { DBSwitchProps, DBSwitchState } from "./model";
2
- import { cls, getBoolean, getBooleanAsString, getHideProp } from "../../utils";
1
+ import { DBSwitchProps } from "./model";
3
2
  import { ChangeEvent, InteractionEvent } from "../../shared/model";
4
- declare const _id: import("vue").Ref<string | undefined, string | undefined>;
5
- declare const _checked: import("vue").Ref<boolean | undefined, boolean | undefined>;
6
- declare const _ref: import("vue").Ref<any, any>;
7
- declare function handleChange(event: ChangeEvent<HTMLInputElement>): ReturnType<DBSwitchState["handleChange"]>;
8
- declare function handleBlur(event: InteractionEvent<HTMLInputElement>): ReturnType<DBSwitchState["handleBlur"]>;
9
- declare function handleFocus(event: InteractionEvent<HTMLInputElement>): ReturnType<DBSwitchState["handleFocus"]>;
10
- declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
11
3
  declare var __VLS_1: {};
12
- type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
4
+ type __VLS_Slots = {} & {
13
5
  default?: (props: typeof __VLS_1) => any;
14
- }>;
15
- declare const __VLS_self: import("vue").DefineComponent<DBSwitchProps, {
16
- cls: typeof cls;
17
- getBoolean: typeof getBoolean;
18
- getBooleanAsString: typeof getBooleanAsString;
19
- getHideProp: typeof getHideProp;
20
- _id: typeof _id;
21
- _checked: typeof _checked;
22
- _ref: typeof _ref;
23
- handleChange: typeof handleChange;
24
- handleBlur: typeof handleBlur;
25
- handleFocus: typeof handleFocus;
26
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
27
- "update:checked": (...args: any[]) => void;
28
- }, string, import("vue").PublicProps, Readonly<DBSwitchProps> & Readonly<{
29
- "onUpdate:checked"?: ((...args: any[]) => any) | undefined;
30
- }>, {
31
- name: string;
32
- label: string;
33
- disabled: boolean | string;
34
- value: any;
35
- children: any;
36
- className: string;
37
- describedbyid: string;
38
- id: string;
39
- icon: import("@db-ux/core-foundations").IconTypes;
40
- size: import("../../shared/model").SizeType;
41
- onFocus: (event: InteractionEvent<HTMLInputElement>) => void;
42
- onBlur: (event: InteractionEvent<HTMLInputElement>) => void;
43
- onChange: (event: ChangeEvent<HTMLInputElement>) => void;
44
- emphasis: import("../../shared/model").EmphasisType;
45
- validation: import("../../shared/model").ValidationType;
46
- required: boolean | string;
47
- showLabel: boolean | string;
48
- checked: boolean | string;
49
- iconAfter: import("@db-ux/core-foundations").IconTypes;
50
- visualAid: boolean | string;
51
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ };
52
7
  declare const __VLS_component: import("vue").DefineComponent<DBSwitchProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
53
8
  "update:checked": (...args: any[]) => void;
54
9
  }, string, import("vue").PublicProps, Readonly<DBSwitchProps> & Readonly<{
@@ -1,43 +1,8 @@
1
- import type { DBTabItemProps, DBTabItemState } from "./model";
2
- import { cls, getBoolean, getBooleanAsString, getHideProp } from "../../utils";
3
- declare const _selected: import("vue").Ref<boolean, boolean>;
4
- declare const _name: import("vue").Ref<string | undefined, string | undefined>;
5
- declare const _ref: import("vue").Ref<any, any>;
6
- declare function handleChange(event: any): ReturnType<DBTabItemState["handleChange"]>;
7
- declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
1
+ import type { DBTabItemProps } from "./model";
8
2
  declare var __VLS_1: {};
9
- type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
3
+ type __VLS_Slots = {} & {
10
4
  default?: (props: typeof __VLS_1) => any;
11
- }>;
12
- declare const __VLS_self: import("vue").DefineComponent<DBTabItemProps, {
13
- cls: typeof cls;
14
- getBoolean: typeof getBoolean;
15
- getBooleanAsString: typeof getBooleanAsString;
16
- getHideProp: typeof getHideProp;
17
- _selected: typeof _selected;
18
- _name: typeof _name;
19
- _ref: typeof _ref;
20
- handleChange: typeof handleChange;
21
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
22
- "update:checked": (...args: any[]) => void;
23
- }, string, import("vue").PublicProps, Readonly<DBTabItemProps> & Readonly<{
24
- "onUpdate:checked"?: ((...args: any[]) => any) | undefined;
25
- }>, {
26
- name: string;
27
- label: string;
28
- disabled: boolean | string;
29
- noText: boolean | string;
30
- children: any;
31
- className: string;
32
- id: string;
33
- icon: import("@db-ux/core-foundations").IconTypes;
34
- showIcon: boolean | string;
35
- onChange: (event: import("../..").ChangeEvent<HTMLInputElement>) => void;
36
- checked: boolean | string;
37
- iconAfter: import("@db-ux/core-foundations").IconTypes;
38
- active: boolean | string;
39
- controls: string;
40
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
5
+ };
41
6
  declare const __VLS_component: import("vue").DefineComponent<DBTabItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
42
7
  "update:checked": (...args: any[]) => void;
43
8
  }, string, import("vue").PublicProps, Readonly<DBTabItemProps> & Readonly<{
@@ -1,20 +1,7 @@
1
- import { cls } from "../../utils";
2
- declare const _id: import("vue").Ref<string | undefined, string | undefined>;
3
- declare const _ref: import("vue").Ref<any, any>;
4
- declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
5
1
  declare var __VLS_1: {};
6
- type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
2
+ type __VLS_Slots = {} & {
7
3
  default?: (props: typeof __VLS_1) => any;
8
- }>;
9
- declare const __VLS_self: import("vue").DefineComponent<import("../..").GlobalProps, {
10
- cls: typeof cls;
11
- _id: typeof _id;
12
- _ref: typeof _ref;
13
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("../..").GlobalProps> & Readonly<{}>, {
14
- children: any;
15
- className: string;
16
- id: string;
17
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
4
+ };
18
5
  declare const __VLS_component: import("vue").DefineComponent<import("../..").GlobalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("../..").GlobalProps> & Readonly<{}>, {
19
6
  children: any;
20
7
  className: string;
@@ -1,21 +1,8 @@
1
1
  import { DBTabPanelProps } from "./model";
2
- import { cls } from "../../utils";
3
- declare const _ref: import("vue").Ref<any, any>;
4
- declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
5
2
  declare var __VLS_1: {};
6
- type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
3
+ type __VLS_Slots = {} & {
7
4
  default?: (props: typeof __VLS_1) => any;
8
- }>;
9
- declare const __VLS_self: import("vue").DefineComponent<DBTabPanelProps, {
10
- cls: typeof cls;
11
- _ref: typeof _ref;
12
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBTabPanelProps> & Readonly<{}>, {
13
- children: any;
14
- className: string;
15
- id: string;
16
- content: string;
17
- labelledBy: string;
18
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
5
+ };
19
6
  declare const __VLS_component: import("vue").DefineComponent<DBTabPanelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBTabPanelProps> & Readonly<{}>, {
20
7
  children: any;
21
8
  className: string;
@@ -1,50 +1,8 @@
1
- import { DBSimpleTabProps, DBTabsProps, DBTabsState } from "./model";
2
- import { cls } from "../../utils";
3
- import DBButton from "../button/button.vue";
4
- import DBTabList from "../tab-list/tab-list.vue";
5
- import DBTabItem from "../tab-item/tab-item.vue";
6
- import DBTabPanel from "../tab-panel/tab-panel.vue";
7
- declare const _id: import("vue").Ref<string | undefined, string | undefined>;
8
- declare const showScrollLeft: import("vue").Ref<boolean | undefined, boolean | undefined>;
9
- declare const showScrollRight: import("vue").Ref<boolean | undefined, boolean | undefined>;
10
- declare const _ref: import("vue").Ref<any, any>;
11
- declare function convertTabs(): ReturnType<DBTabsState["convertTabs"]>;
12
- declare function scroll(left?: boolean): ReturnType<DBTabsState["scroll"]>;
13
- declare function handleChange(event: any): ReturnType<DBTabsState["handleChange"]>;
14
- declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
1
+ import { DBSimpleTabProps, DBTabsProps } from "./model";
15
2
  declare var __VLS_16: {};
16
- type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
3
+ type __VLS_Slots = {} & {
17
4
  default?: (props: typeof __VLS_16) => any;
18
- }>;
19
- declare const __VLS_self: import("vue").DefineComponent<DBTabsProps, {
20
- cls: typeof cls;
21
- DBButton: typeof DBButton;
22
- DBTabList: typeof DBTabList;
23
- DBTabItem: typeof DBTabItem;
24
- DBTabPanel: typeof DBTabPanel;
25
- _id: typeof _id;
26
- showScrollLeft: typeof showScrollLeft;
27
- showScrollRight: typeof showScrollRight;
28
- _ref: typeof _ref;
29
- convertTabs: typeof convertTabs;
30
- scroll: typeof scroll;
31
- handleChange: typeof handleChange;
32
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBTabsProps> & Readonly<{}>, {
33
- name: string;
34
- children: any;
35
- className: string;
36
- id: string;
37
- width: import("../..").WidthType | string;
38
- behavior: import("./model").TabsBehaviorType;
39
- arrowScrollDistance: number | string;
40
- initialSelectedIndex: number | string;
41
- initialSelectedMode: import("./model").TabsInitialSelectedModeType;
42
- onIndexChange: (index?: number) => void;
43
- onTabSelect: (event?: Event) => void;
44
- tabs: DBSimpleTabProps[] | string;
45
- orientation: import("../..").OrientationType;
46
- alignment: import("../..").AlignmentType | string;
47
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
5
+ };
48
6
  declare const __VLS_component: import("vue").DefineComponent<DBTabsProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBTabsProps> & Readonly<{}>, {
49
7
  name: string;
50
8
  children: any;
@@ -1,40 +1,10 @@
1
- import { DBTagProps, DBTagState } from "./model";
2
- import { cls, getBooleanAsString, getHideProp } from "../../utils";
3
- import { ClickEvent } from "../../shared/model";
4
- declare const _ref: import("vue").Ref<any, any>;
5
- declare function handleRemove(event?: ClickEvent<HTMLButtonElement>): ReturnType<DBTagState["handleRemove"]>;
6
- declare function getRemoveButtonText(): ReturnType<DBTagState["getRemoveButtonText"]>;
7
- declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
1
+ import { DBTagProps } from "./model";
8
2
  declare var __VLS_1: {}, __VLS_3: {};
9
- type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
3
+ type __VLS_Slots = {} & {
10
4
  content?: (props: typeof __VLS_1) => any;
11
5
  } & {
12
6
  default?: (props: typeof __VLS_3) => any;
13
- }>;
14
- declare const __VLS_self: import("vue").DefineComponent<DBTagProps, {
15
- cls: typeof cls;
16
- getBooleanAsString: typeof getBooleanAsString;
17
- getHideProp: typeof getHideProp;
18
- _ref: typeof _ref;
19
- handleRemove: typeof handleRemove;
20
- getRemoveButtonText: typeof getRemoveButtonText;
21
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBTagProps> & Readonly<{}>, {
22
- text: string;
23
- disabled: boolean | string;
24
- noText: boolean | string;
25
- children: any;
26
- className: string;
27
- id: string;
28
- icon: import("@db-ux/core-foundations").IconTypes;
29
- showIcon: boolean | string;
30
- semantic: import("../../shared/model").SemanticType;
31
- emphasis: import("../../shared/model").EmphasisType;
32
- behavior: import("./model").TagBehaviorType | string;
33
- onRemove: (event?: any) => void;
34
- removeButton: string;
35
- showCheckState: boolean | string;
36
- overflow: boolean | string;
37
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
+ };
38
8
  declare const __VLS_component: import("vue").DefineComponent<DBTagProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBTagProps> & Readonly<{}>, {
39
9
  text: string;
40
10
  disabled: boolean | string;
@@ -1,31 +1,8 @@
1
- import { DBTooltipProps, DBTooltipState } from "./model";
2
- import { cls, getBooleanAsString } from "../../utils";
3
- import { ClickEvent } from "../../shared/model";
4
- declare const _id: import("vue").Ref<string | undefined, string | undefined>;
5
- declare const _ref: import("vue").Ref<any, any>;
6
- declare function handleClick(event: ClickEvent<HTMLElement>): ReturnType<DBTooltipState["handleClick"]>;
7
- declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
1
+ import { DBTooltipProps } from "./model";
8
2
  declare var __VLS_1: {};
9
- type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
3
+ type __VLS_Slots = {} & {
10
4
  default?: (props: typeof __VLS_1) => any;
11
- }>;
12
- declare const __VLS_self: import("vue").DefineComponent<DBTooltipProps, {
13
- cls: typeof cls;
14
- getBooleanAsString: typeof getBooleanAsString;
15
- _id: typeof _id;
16
- _ref: typeof _ref;
17
- handleClick: typeof handleClick;
18
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBTooltipProps> & Readonly<{}>, {
19
- children: any;
20
- className: string;
21
- id: string;
22
- width: import("../../shared/model").PopoverWidthType;
23
- delay: import("../../shared/model").PopoverDelayType;
24
- animation: boolean | string;
25
- placement: import("../../shared/model").PlacementType;
26
- emphasis: import("../../shared/model").EmphasisType;
27
- showArrow: boolean | string;
28
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
5
+ };
29
6
  declare const __VLS_component: import("vue").DefineComponent<DBTooltipProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBTooltipProps> & Readonly<{}>, {
30
7
  children: any;
31
8
  className: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@db-ux/v-core-components",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
4
4
  "type": "module",
5
5
  "description": "Vue components for @db-ux/core-components",
6
6
  "repository": {
@@ -42,9 +42,9 @@
42
42
  "replace-in-file": "^8.3.0",
43
43
  "tsx": "^4.19.3",
44
44
  "typescript": "^5.4.5",
45
- "vite": "^6.3.0",
45
+ "vite": "^6.3.2",
46
46
  "vue": "^3.5.13",
47
- "vue-tsc": "^2.2.8"
47
+ "vue-tsc": "^2.2.10"
48
48
  },
49
49
  "publishConfig": {
50
50
  "registry": "https://registry.npmjs.org/",
@@ -53,7 +53,7 @@
53
53
  "sideEffects": false,
54
54
  "source": "src/index.ts",
55
55
  "dependencies": {
56
- "@db-ux/core-components": "2.0.2",
57
- "@db-ux/core-foundations": "2.0.2"
56
+ "@db-ux/core-components": "2.0.4",
57
+ "@db-ux/core-foundations": "2.0.4"
58
58
  }
59
59
  }