@db-ux/v-core-components 3.1.4 → 3.1.16

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 (40) hide show
  1. package/dist/components/accordion/accordion.vue.d.ts +3 -2
  2. package/dist/components/accordion-item/accordion-item.vue.d.ts +3 -2
  3. package/dist/components/badge/badge.vue.d.ts +3 -2
  4. package/dist/components/brand/brand.vue.d.ts +3 -2
  5. package/dist/components/button/button.vue.d.ts +4 -3
  6. package/dist/components/card/card.vue.d.ts +3 -2
  7. package/dist/components/checkbox/checkbox.vue.d.ts +3 -2
  8. package/dist/components/custom-select/custom-select.vue.d.ts +3 -2
  9. package/dist/components/custom-select/model.d.ts +1 -1
  10. package/dist/components/custom-select-dropdown/custom-select-dropdown.vue.d.ts +3 -2
  11. package/dist/components/custom-select-form-field/custom-select-form-field.vue.d.ts +3 -2
  12. package/dist/components/custom-select-list/custom-select-list.vue.d.ts +3 -2
  13. package/dist/components/custom-select-list-item/custom-select-list-item.vue.d.ts +4 -3
  14. package/dist/components/divider/divider.vue.d.ts +2 -1
  15. package/dist/components/drawer/drawer.vue.d.ts +3 -2
  16. package/dist/components/header/header.vue.d.ts +3 -2
  17. package/dist/components/icon/icon.vue.d.ts +3 -2
  18. package/dist/components/infotext/infotext.vue.d.ts +3 -2
  19. package/dist/components/input/input.vue.d.ts +4 -3
  20. package/dist/components/link/link.vue.d.ts +3 -2
  21. package/dist/components/navigation/navigation.vue.d.ts +3 -2
  22. package/dist/components/navigation-item/navigation-item.vue.d.ts +3 -2
  23. package/dist/components/notification/notification.vue.d.ts +3 -2
  24. package/dist/components/page/page.vue.d.ts +3 -2
  25. package/dist/components/popover/popover.vue.d.ts +3 -2
  26. package/dist/components/radio/radio.vue.d.ts +3 -2
  27. package/dist/components/section/section.vue.d.ts +3 -2
  28. package/dist/components/select/select.vue.d.ts +3 -2
  29. package/dist/components/stack/stack.vue.d.ts +3 -2
  30. package/dist/components/switch/switch.vue.d.ts +4 -4
  31. package/dist/components/tab-item/tab-item.vue.d.ts +3 -2
  32. package/dist/components/tab-list/tab-list.vue.d.ts +3 -2
  33. package/dist/components/tab-panel/tab-panel.vue.d.ts +3 -2
  34. package/dist/components/tabs/tabs.vue.d.ts +3 -2
  35. package/dist/components/tag/tag.vue.d.ts +3 -2
  36. package/dist/components/textarea/textarea.vue.d.ts +3 -2
  37. package/dist/components/tooltip/tooltip.vue.d.ts +3 -2
  38. package/dist/db-ux.es.js +950 -918
  39. package/dist/db-ux.umd.js +1 -1
  40. package/package.json +9 -8
@@ -4,7 +4,7 @@ declare var __VLS_1: {};
4
4
  type __VLS_Slots = {} & {
5
5
  default?: (props: typeof __VLS_1) => any;
6
6
  };
7
- declare const __VLS_component: import("vue").DefineComponent<DBAccordionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBAccordionProps> & Readonly<{}>, {
7
+ declare const __VLS_base: import("vue").DefineComponent<DBAccordionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBAccordionProps> & Readonly<{}>, {
8
8
  name: string;
9
9
  children: any;
10
10
  className: string;
@@ -14,7 +14,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBAccordionProps, {
14
14
  items: DBAccordionItemDefaultProps[] | string;
15
15
  variant: import("./model").AccordionVariantType;
16
16
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
17
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
18
+ declare const _default: typeof __VLS_export;
18
19
  export default _default;
19
20
  type __VLS_WithSlots<T, S> = T & {
20
21
  new (): {
@@ -5,7 +5,7 @@ type __VLS_Slots = {} & {
5
5
  } & {
6
6
  default?: (props: typeof __VLS_3) => any;
7
7
  };
8
- declare const __VLS_component: import("vue").DefineComponent<DBAccordionItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBAccordionItemProps> & Readonly<{}>, {
8
+ declare const __VLS_base: import("vue").DefineComponent<DBAccordionItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBAccordionItemProps> & Readonly<{}>, {
9
9
  name: string;
10
10
  text: string;
11
11
  defaultOpen: boolean;
@@ -16,7 +16,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBAccordionItemProp
16
16
  id: string;
17
17
  onToggle: (open: boolean) => void;
18
18
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
19
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
19
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
20
+ declare const _default: typeof __VLS_export;
20
21
  export default _default;
21
22
  type __VLS_WithSlots<T, S> = T & {
22
23
  new (): {
@@ -3,7 +3,7 @@ declare var __VLS_1: {};
3
3
  type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_1) => any;
5
5
  };
6
- declare const __VLS_component: import("vue").DefineComponent<DBBadgeProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBBadgeProps> & Readonly<{}>, {
6
+ declare const __VLS_base: import("vue").DefineComponent<DBBadgeProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBBadgeProps> & Readonly<{}>, {
7
7
  label: string;
8
8
  text: string;
9
9
  children: any;
@@ -14,7 +14,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBBadgeProps, {}, {
14
14
  size: import("../..").SizeType;
15
15
  emphasis: import("../..").EmphasisType;
16
16
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
17
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
18
+ declare const _default: typeof __VLS_export;
18
19
  export default _default;
19
20
  type __VLS_WithSlots<T, S> = T & {
20
21
  new (): {
@@ -3,7 +3,7 @@ declare var __VLS_1: {};
3
3
  type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_1) => any;
5
5
  };
6
- declare const __VLS_component: import("vue").DefineComponent<DBBrandProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBBrandProps> & Readonly<{}>, {
6
+ declare const __VLS_base: import("vue").DefineComponent<DBBrandProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBBrandProps> & Readonly<{}>, {
7
7
  text: string;
8
8
  children: any;
9
9
  className: string;
@@ -12,7 +12,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBBrandProps, {}, {
12
12
  icon: import("@db-ux/core-foundations").IconTypes;
13
13
  showIcon: boolean | string;
14
14
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
15
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
16
+ declare const _default: typeof __VLS_export;
16
17
  export default _default;
17
18
  type __VLS_WithSlots<T, S> = T & {
18
19
  new (): {
@@ -3,7 +3,7 @@ declare var __VLS_1: {};
3
3
  type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_1) => any;
5
5
  };
6
- declare const __VLS_component: import("vue").DefineComponent<DBButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBButtonProps> & Readonly<{}>, {
6
+ declare const __VLS_base: import("vue").DefineComponent<DBButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBButtonProps> & Readonly<{}>, {
7
7
  value: string;
8
8
  name: string;
9
9
  form: string;
@@ -12,8 +12,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBButtonProps, {},
12
12
  children: any;
13
13
  className: string;
14
14
  id: string;
15
- type: import("./model").ButtonTypeType;
16
15
  onClick: (event: import("../..").ClickEvent<HTMLButtonElement>) => void;
16
+ type: import("./model").ButtonTypeType;
17
17
  variant: import("./model").ButtonVariantType | string;
18
18
  size: import("../..").SizeType;
19
19
  icon: import("@db-ux/core-foundations").IconTypes;
@@ -25,7 +25,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBButtonProps, {},
25
25
  iconLeading: import("@db-ux/core-foundations").IconTypes;
26
26
  iconTrailing: import("@db-ux/core-foundations").IconTypes;
27
27
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
28
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
28
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
29
+ declare const _default: typeof __VLS_export;
29
30
  export default _default;
30
31
  type __VLS_WithSlots<T, S> = T & {
31
32
  new (): {
@@ -4,7 +4,7 @@ declare var __VLS_1: {};
4
4
  type __VLS_Slots = {} & {
5
5
  default?: (props: typeof __VLS_1) => any;
6
6
  };
7
- declare const __VLS_component: import("vue").DefineComponent<DBCardProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBCardProps> & Readonly<{}>, {
7
+ declare const __VLS_base: import("vue").DefineComponent<DBCardProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBCardProps> & Readonly<{}>, {
8
8
  children: any;
9
9
  className: string;
10
10
  id: string;
@@ -13,7 +13,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBCardProps, {}, {}
13
13
  elevationLevel: import("./model").CardElevationLevelType;
14
14
  spacing: import("../../shared/model").SpacingType | string;
15
15
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
16
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
17
+ declare const _default: typeof __VLS_export;
17
18
  export default _default;
18
19
  type __VLS_WithSlots<T, S> = T & {
19
20
  new (): {
@@ -4,7 +4,7 @@ declare var __VLS_1: {};
4
4
  type __VLS_Slots = {} & {
5
5
  default?: (props: typeof __VLS_1) => any;
6
6
  };
7
- declare const __VLS_component: import("vue").DefineComponent<DBCheckboxProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
+ declare const __VLS_base: import("vue").DefineComponent<DBCheckboxProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
8
  "update:checked": (...args: any[]) => void;
9
9
  }, string, import("vue").PublicProps, Readonly<DBCheckboxProps> & Readonly<{
10
10
  "onUpdate:checked"?: ((...args: any[]) => any) | undefined;
@@ -33,7 +33,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBCheckboxProps, {}
33
33
  messageIcon: import("@db-ux/core-foundations").IconTypes;
34
34
  showMessage: boolean | string;
35
35
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
36
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
36
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
37
+ declare const _default: typeof __VLS_export;
37
38
  export default _default;
38
39
  type __VLS_WithSlots<T, S> = T & {
39
40
  new (): {
@@ -4,7 +4,7 @@ declare var __VLS_1: {};
4
4
  type __VLS_Slots = {} & {
5
5
  default?: (props: typeof __VLS_1) => any;
6
6
  };
7
- declare const __VLS_component: import("vue").DefineComponent<DBCustomSelectProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
+ declare const __VLS_base: import("vue").DefineComponent<DBCustomSelectProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
8
  "update:values": (...args: any[]) => void;
9
9
  }, string, import("vue").PublicProps, Readonly<DBCustomSelectProps> & Readonly<{
10
10
  "onUpdate:values"?: ((...args: any[]) => any) | undefined;
@@ -62,7 +62,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBCustomSelectProps
62
62
  onDropdownToggle: (event: GeneralEvent<HTMLDetailsElement>) => void;
63
63
  onSearch: (event: InputEvent<HTMLInputElement>) => void;
64
64
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
65
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
65
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
66
+ declare const _default: typeof __VLS_export;
66
67
  export default _default;
67
68
  type __VLS_WithSlots<T, S> = T & {
68
69
  new (): {
@@ -194,7 +194,7 @@ export type DBCustomSelectDefaultState = {
194
194
  getNativeSelectValue: () => string;
195
195
  getOptionLabel: (option: CustomSelectOptionType) => string;
196
196
  getOptionChecked: (value?: string) => boolean;
197
- getTagRemoveLabel: (index: number) => string;
197
+ getTagRemoveLabel: (option: CustomSelectOptionType) => string;
198
198
  selectAllEnabled: boolean;
199
199
  searchEnabled: boolean;
200
200
  amountOptions: number;
@@ -3,13 +3,14 @@ declare var __VLS_1: {};
3
3
  type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_1) => any;
5
5
  };
6
- declare const __VLS_component: import("vue").DefineComponent<DBCustomSelectDropdownProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBCustomSelectDropdownProps> & Readonly<{}>, {
6
+ declare const __VLS_base: import("vue").DefineComponent<DBCustomSelectDropdownProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBCustomSelectDropdownProps> & Readonly<{}>, {
7
7
  children: any;
8
8
  className: string;
9
9
  id: string;
10
10
  width: import("./model").CustomSelectDropdownWidthType | string;
11
11
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
12
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
13
+ declare const _default: typeof __VLS_export;
13
14
  export default _default;
14
15
  type __VLS_WithSlots<T, S> = T & {
15
16
  new (): {
@@ -2,12 +2,13 @@ declare var __VLS_1: {};
2
2
  type __VLS_Slots = {} & {
3
3
  default?: (props: typeof __VLS_1) => any;
4
4
  };
5
- declare const __VLS_component: import("vue").DefineComponent<import("../..").GlobalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("../..").GlobalProps> & Readonly<{}>, {
5
+ declare const __VLS_base: import("vue").DefineComponent<import("../..").GlobalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("../..").GlobalProps> & Readonly<{}>, {
6
6
  children: any;
7
7
  className: string;
8
8
  id: string;
9
9
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
10
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
11
+ declare const _default: typeof __VLS_export;
11
12
  export default _default;
12
13
  type __VLS_WithSlots<T, S> = T & {
13
14
  new (): {
@@ -3,14 +3,15 @@ declare var __VLS_1: {};
3
3
  type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_1) => any;
5
5
  };
6
- declare const __VLS_component: import("vue").DefineComponent<DBCustomSelectListProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBCustomSelectListProps> & Readonly<{}>, {
6
+ declare const __VLS_base: import("vue").DefineComponent<DBCustomSelectListProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBCustomSelectListProps> & Readonly<{}>, {
7
7
  label: string;
8
8
  children: any;
9
9
  className: string;
10
10
  id: string;
11
11
  multiple: boolean;
12
12
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
13
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
14
+ declare const _default: typeof __VLS_export;
14
15
  export default _default;
15
16
  type __VLS_WithSlots<T, S> = T & {
16
17
  new (): {
@@ -4,7 +4,7 @@ declare var __VLS_1: {};
4
4
  type __VLS_Slots = {} & {
5
5
  default?: (props: typeof __VLS_1) => any;
6
6
  };
7
- declare const __VLS_component: import("vue").DefineComponent<DBCustomSelectListItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
+ declare const __VLS_base: import("vue").DefineComponent<DBCustomSelectListItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
8
  "update:checked": (...args: any[]) => void;
9
9
  }, string, import("vue").PublicProps, Readonly<DBCustomSelectListItemProps> & Readonly<{
10
10
  "onUpdate:checked"?: ((...args: any[]) => any) | undefined;
@@ -16,8 +16,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBCustomSelectListI
16
16
  children: any;
17
17
  className: string;
18
18
  id: string;
19
- type: import("./model").CustomSelectListItemTypeType;
20
19
  onChange: (event: ChangeEvent<HTMLInputElement>) => void;
20
+ type: import("./model").CustomSelectListItemTypeType;
21
21
  icon: import("@db-ux/core-foundations").IconTypes;
22
22
  showIcon: boolean | string;
23
23
  checked: boolean | string;
@@ -25,7 +25,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBCustomSelectListI
25
25
  isGroupTitle: boolean;
26
26
  showDivider: boolean;
27
27
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
28
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
28
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
29
+ declare const _default: typeof __VLS_export;
29
30
  export default _default;
30
31
  type __VLS_WithSlots<T, S> = T & {
31
32
  new (): {
@@ -1,5 +1,5 @@
1
1
  import { DBDividerProps } from "./model";
2
- declare const _default: import("vue").DefineComponent<DBDividerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBDividerProps> & Readonly<{}>, {
2
+ declare const __VLS_export: import("vue").DefineComponent<DBDividerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBDividerProps> & Readonly<{}>, {
3
3
  className: string;
4
4
  id: string;
5
5
  variant: import("./model").DividerVariantType;
@@ -7,4 +7,5 @@ declare const _default: import("vue").DefineComponent<DBDividerProps, {}, {}, {}
7
7
  width: import("../..").WidthType | string;
8
8
  margin: "none";
9
9
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
+ declare const _default: typeof __VLS_export;
10
11
  export default _default;
@@ -5,7 +5,7 @@ type __VLS_Slots = {} & {
5
5
  } & {
6
6
  default?: (props: typeof __VLS_7) => any;
7
7
  };
8
- declare const __VLS_component: import("vue").DefineComponent<DBDrawerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBDrawerProps> & Readonly<{}>, {
8
+ declare const __VLS_base: import("vue").DefineComponent<DBDrawerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBDrawerProps> & Readonly<{}>, {
9
9
  children: any;
10
10
  className: string;
11
11
  id: string;
@@ -21,7 +21,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBDrawerProps, {},
21
21
  closeButtonId: string;
22
22
  closeButtonText: string;
23
23
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
24
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
24
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
25
+ declare const _default: typeof __VLS_export;
25
26
  export default _default;
26
27
  type __VLS_WithSlots<T, S> = T & {
27
28
  new (): {
@@ -17,7 +17,7 @@ type __VLS_Slots = {} & {
17
17
  } & {
18
18
  'secondary-action'?: (props: typeof __VLS_23) => any;
19
19
  };
20
- declare const __VLS_component: import("vue").DefineComponent<DBHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBHeaderProps> & Readonly<{}>, {
20
+ declare const __VLS_base: import("vue").DefineComponent<DBHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBHeaderProps> & Readonly<{}>, {
21
21
  children: any;
22
22
  className: string;
23
23
  id: string;
@@ -27,7 +27,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBHeaderProps, {},
27
27
  forceMobile: boolean | string;
28
28
  burgerMenuLabel: string;
29
29
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
30
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
30
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
31
+ declare const _default: typeof __VLS_export;
31
32
  export default _default;
32
33
  type __VLS_WithSlots<T, S> = T & {
33
34
  new (): {
@@ -3,7 +3,7 @@ declare var __VLS_1: {};
3
3
  type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_1) => any;
5
5
  };
6
- declare const __VLS_component: import("vue").DefineComponent<DBIconProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBIconProps> & Readonly<{}>, {
6
+ declare const __VLS_base: import("vue").DefineComponent<DBIconProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBIconProps> & Readonly<{}>, {
7
7
  text: string;
8
8
  children: any;
9
9
  className: string;
@@ -12,7 +12,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBIconProps, {}, {}
12
12
  icon: import("@db-ux/core-foundations").IconTypes;
13
13
  weight: import("./model").IconWeightType;
14
14
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
15
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
16
+ declare const _default: typeof __VLS_export;
16
17
  export default _default;
17
18
  type __VLS_WithSlots<T, S> = T & {
18
19
  new (): {
@@ -3,7 +3,7 @@ declare var __VLS_1: {};
3
3
  type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_1) => any;
5
5
  };
6
- declare const __VLS_component: import("vue").DefineComponent<DBInfotextProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBInfotextProps> & Readonly<{}>, {
6
+ declare const __VLS_base: import("vue").DefineComponent<DBInfotextProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBInfotextProps> & Readonly<{}>, {
7
7
  text: string;
8
8
  children: any;
9
9
  className: string;
@@ -13,7 +13,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBInfotextProps, {}
13
13
  icon: import("@db-ux/core-foundations").IconTypes;
14
14
  showIcon: boolean | string;
15
15
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
16
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
17
+ declare const _default: typeof __VLS_export;
17
18
  export default _default;
18
19
  type __VLS_WithSlots<T, S> = T & {
19
20
  new (): {
@@ -4,7 +4,7 @@ declare var __VLS_1: {};
4
4
  type __VLS_Slots = {} & {
5
5
  default?: (props: typeof __VLS_1) => any;
6
6
  };
7
- declare const __VLS_component: import("vue").DefineComponent<DBInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
+ declare const __VLS_base: import("vue").DefineComponent<DBInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
8
  "update:value": (...args: any[]) => void;
9
9
  }, string, import("vue").PublicProps, Readonly<DBInputProps> & Readonly<{
10
10
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
@@ -20,11 +20,11 @@ declare const __VLS_component: import("vue").DefineComponent<DBInputProps, {}, {
20
20
  className: string;
21
21
  id: string;
22
22
  autofocus: boolean | string;
23
- type: import("./model").InputTypeType | string;
24
23
  onFocus: (event: InteractionEvent<HTMLInputElement>) => void;
25
24
  onBlur: (event: InteractionEvent<HTMLInputElement>) => void;
26
25
  onChange: (event: ChangeEvent<HTMLInputElement>) => void;
27
26
  onInput: (event: InputEvent<HTMLInputElement>) => void;
27
+ type: import("./model").InputTypeType | string;
28
28
  multiple: boolean | string;
29
29
  variant: import("../../shared/model").LabelVariantType;
30
30
  size: number;
@@ -64,7 +64,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBInputProps, {}, {
64
64
  readonly: boolean | string;
65
65
  fieldSizing: import("../../shared/model").FieldSizingType;
66
66
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
67
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
67
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
68
+ declare const _default: typeof __VLS_export;
68
69
  export default _default;
69
70
  type __VLS_WithSlots<T, S> = T & {
70
71
  new (): {
@@ -3,7 +3,7 @@ declare var __VLS_1: {};
3
3
  type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_1) => any;
5
5
  };
6
- declare const __VLS_component: import("vue").DefineComponent<DBLinkProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBLinkProps> & Readonly<{}>, {
6
+ declare const __VLS_base: import("vue").DefineComponent<DBLinkProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBLinkProps> & Readonly<{}>, {
7
7
  content: import("./model").LinkContentType;
8
8
  text: string;
9
9
  disabled: boolean | string;
@@ -21,7 +21,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBLinkProps, {}, {}
21
21
  rel: string;
22
22
  wrap: boolean | string;
23
23
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
24
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
24
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
25
+ declare const _default: typeof __VLS_export;
25
26
  export default _default;
26
27
  type __VLS_WithSlots<T, S> = T & {
27
28
  new (): {
@@ -2,12 +2,13 @@ declare var __VLS_1: {};
2
2
  type __VLS_Slots = {} & {
3
3
  default?: (props: typeof __VLS_1) => any;
4
4
  };
5
- declare const __VLS_component: import("vue").DefineComponent<import("../..").GlobalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("../..").GlobalProps> & Readonly<{}>, {
5
+ declare const __VLS_base: import("vue").DefineComponent<import("../..").GlobalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("../..").GlobalProps> & Readonly<{}>, {
6
6
  children: any;
7
7
  className: string;
8
8
  id: string;
9
9
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
10
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
11
+ declare const _default: typeof __VLS_export;
11
12
  export default _default;
12
13
  type __VLS_WithSlots<T, S> = T & {
13
14
  new (): {
@@ -8,7 +8,7 @@ type __VLS_Slots = {} & {
8
8
  } & {
9
9
  'sub-navigation'?: (props: typeof __VLS_9) => any;
10
10
  };
11
- declare const __VLS_component: import("vue").DefineComponent<DBNavigationItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBNavigationItemProps> & Readonly<{}>, {
11
+ declare const __VLS_base: import("vue").DefineComponent<DBNavigationItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBNavigationItemProps> & Readonly<{}>, {
12
12
  text: string;
13
13
  disabled: boolean | string;
14
14
  children: any;
@@ -24,7 +24,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBNavigationItemPro
24
24
  backButtonId: string;
25
25
  backButtonText: string;
26
26
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
27
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
27
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
28
+ declare const _default: typeof __VLS_export;
28
29
  export default _default;
29
30
  type __VLS_WithSlots<T, S> = T & {
30
31
  new (): {
@@ -7,7 +7,7 @@ type __VLS_Slots = {} & {
7
7
  } & {
8
8
  link?: (props: typeof __VLS_5) => any;
9
9
  };
10
- declare const __VLS_component: import("vue").DefineComponent<DBNotificationProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBNotificationProps> & Readonly<{}>, {
10
+ declare const __VLS_base: import("vue").DefineComponent<DBNotificationProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBNotificationProps> & Readonly<{}>, {
11
11
  text: string;
12
12
  headline: string | any;
13
13
  children: any;
@@ -27,7 +27,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBNotificationProps
27
27
  timestamp: string;
28
28
  showTimestamp: boolean | string;
29
29
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
30
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
30
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
31
+ declare const _default: typeof __VLS_export;
31
32
  export default _default;
32
33
  type __VLS_WithSlots<T, S> = T & {
33
34
  new (): {
@@ -7,7 +7,7 @@ type __VLS_Slots = {} & {
7
7
  } & {
8
8
  footer?: (props: typeof __VLS_5) => any;
9
9
  };
10
- declare const __VLS_component: import("vue").DefineComponent<DBPageProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBPageProps> & Readonly<{}>, {
10
+ declare const __VLS_base: import("vue").DefineComponent<DBPageProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBPageProps> & Readonly<{}>, {
11
11
  children: any;
12
12
  className: string;
13
13
  id: string;
@@ -16,7 +16,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBPageProps, {}, {}
16
16
  fadeIn: boolean | string;
17
17
  mainClass: string;
18
18
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
19
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
19
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
20
+ declare const _default: typeof __VLS_export;
20
21
  export default _default;
21
22
  type __VLS_WithSlots<T, S> = T & {
22
23
  new (): {
@@ -5,7 +5,7 @@ type __VLS_Slots = {} & {
5
5
  } & {
6
6
  default?: (props: typeof __VLS_3) => any;
7
7
  };
8
- declare const __VLS_component: import("vue").DefineComponent<DBPopoverProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBPopoverProps> & Readonly<{}>, {
8
+ declare const __VLS_base: import("vue").DefineComponent<DBPopoverProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBPopoverProps> & Readonly<{}>, {
9
9
  children: any;
10
10
  className: string;
11
11
  id: string;
@@ -17,7 +17,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBPopoverProps, {},
17
17
  animation: boolean | string;
18
18
  gap: boolean | string;
19
19
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
20
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
20
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
21
+ declare const _default: typeof __VLS_export;
21
22
  export default _default;
22
23
  type __VLS_WithSlots<T, S> = T & {
23
24
  new (): {
@@ -4,7 +4,7 @@ declare var __VLS_1: {};
4
4
  type __VLS_Slots = {} & {
5
5
  default?: (props: typeof __VLS_1) => any;
6
6
  };
7
- declare const __VLS_component: import("vue").DefineComponent<DBRadioProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
+ declare const __VLS_base: import("vue").DefineComponent<DBRadioProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
8
  "update:value": (...args: any[]) => void;
9
9
  }, string, import("vue").PublicProps, Readonly<DBRadioProps> & Readonly<{
10
10
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
@@ -26,7 +26,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBRadioProps, {}, {
26
26
  showLabel: boolean | string;
27
27
  checked: boolean | string;
28
28
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
29
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
29
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
30
+ declare const _default: typeof __VLS_export;
30
31
  export default _default;
31
32
  type __VLS_WithSlots<T, S> = T & {
32
33
  new (): {
@@ -3,14 +3,15 @@ declare var __VLS_1: {};
3
3
  type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_1) => any;
5
5
  };
6
- declare const __VLS_component: import("vue").DefineComponent<DBSectionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBSectionProps> & Readonly<{}>, {
6
+ declare const __VLS_base: import("vue").DefineComponent<DBSectionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBSectionProps> & Readonly<{}>, {
7
7
  children: any;
8
8
  className: string;
9
9
  id: string;
10
10
  width: import("../..").MaxWidthType;
11
11
  spacing: import("../..").SpacingType | string;
12
12
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
13
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
14
+ declare const _default: typeof __VLS_export;
14
15
  export default _default;
15
16
  type __VLS_WithSlots<T, S> = T & {
16
17
  new (): {
@@ -4,7 +4,7 @@ declare var __VLS_1: {};
4
4
  type __VLS_Slots = {} & {
5
5
  default?: (props: typeof __VLS_1) => any;
6
6
  };
7
- declare const __VLS_component: import("vue").DefineComponent<DBSelectProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
+ declare const __VLS_base: import("vue").DefineComponent<DBSelectProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
8
  "update:value": (...args: any[]) => void;
9
9
  }, string, import("vue").PublicProps, Readonly<DBSelectProps> & Readonly<{
10
10
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
@@ -41,7 +41,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBSelectProps, {},
41
41
  showMessage: boolean | string;
42
42
  options: DBSelectOptionType[];
43
43
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
44
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
44
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
45
+ declare const _default: typeof __VLS_export;
45
46
  export default _default;
46
47
  type __VLS_WithSlots<T, S> = T & {
47
48
  new (): {
@@ -3,7 +3,7 @@ declare var __VLS_1: {};
3
3
  type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_1) => any;
5
5
  };
6
- declare const __VLS_component: import("vue").DefineComponent<DBStackProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBStackProps> & Readonly<{}>, {
6
+ declare const __VLS_base: import("vue").DefineComponent<DBStackProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBStackProps> & Readonly<{}>, {
7
7
  children: any;
8
8
  className: string;
9
9
  id: string;
@@ -14,7 +14,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBStackProps, {}, {
14
14
  alignment: import("./model").StackAlignmentType;
15
15
  justifyContent: import("./model").StackJustifyContentType;
16
16
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
17
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
18
+ declare const _default: typeof __VLS_export;
18
19
  export default _default;
19
20
  type __VLS_WithSlots<T, S> = T & {
20
21
  new (): {
@@ -1,10 +1,10 @@
1
- import { ChangeEvent, InteractionEvent } from "../../shared/model";
1
+ import { InteractionEvent } from "../../shared/model";
2
2
  import { DBSwitchProps } from "./model";
3
3
  declare var __VLS_1: {};
4
4
  type __VLS_Slots = {} & {
5
5
  default?: (props: typeof __VLS_1) => any;
6
6
  };
7
- declare const __VLS_component: import("vue").DefineComponent<DBSwitchProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
+ declare const __VLS_base: import("vue").DefineComponent<DBSwitchProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
8
  "update:checked": (...args: any[]) => void;
9
9
  }, string, import("vue").PublicProps, Readonly<DBSwitchProps> & Readonly<{
10
10
  "onUpdate:checked"?: ((...args: any[]) => any) | undefined;
@@ -18,7 +18,6 @@ declare const __VLS_component: import("vue").DefineComponent<DBSwitchProps, {},
18
18
  id: string;
19
19
  onFocus: (event: InteractionEvent<HTMLInputElement>) => void;
20
20
  onBlur: (event: InteractionEvent<HTMLInputElement>) => void;
21
- onChange: (event: ChangeEvent<HTMLInputElement>) => void;
22
21
  size: import("../../shared/model").SizeType;
23
22
  emphasis: import("../../shared/model").EmphasisType;
24
23
  icon: import("@db-ux/core-foundations").IconTypes;
@@ -31,7 +30,8 @@ declare const __VLS_component: import("vue").DefineComponent<DBSwitchProps, {},
31
30
  checked: boolean | string;
32
31
  visualAid: boolean | string;
33
32
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
34
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
33
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
34
+ declare const _default: typeof __VLS_export;
35
35
  export default _default;
36
36
  type __VLS_WithSlots<T, S> = T & {
37
37
  new (): {