@db-ux/v-core-components 1.0.0 → 1.1.0

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 (41) hide show
  1. package/dist/components/accordion/accordion.vue.d.ts +9 -7
  2. package/dist/components/accordion-item/accordion-item.vue.d.ts +9 -7
  3. package/dist/components/badge/badge.vue.d.ts +8 -6
  4. package/dist/components/brand/brand.vue.d.ts +8 -6
  5. package/dist/components/button/button.vue.d.ts +8 -6
  6. package/dist/components/card/card.vue.d.ts +8 -6
  7. package/dist/components/checkbox/checkbox.vue.d.ts +8 -6
  8. package/dist/components/divider/divider.vue.d.ts +5 -3
  9. package/dist/components/drawer/drawer.vue.d.ts +10 -8
  10. package/dist/components/header/header.vue.d.ts +12 -13
  11. package/dist/components/icon/icon.vue.d.ts +8 -6
  12. package/dist/components/infotext/infotext.vue.d.ts +8 -6
  13. package/dist/components/input/input.vue.d.ts +9 -6
  14. package/dist/components/input/model.d.ts +2 -2
  15. package/dist/components/link/link.vue.d.ts +11 -9
  16. package/dist/components/navigation/navigation.vue.d.ts +8 -6
  17. package/dist/components/navigation-item/navigation-item.vue.d.ts +9 -8
  18. package/dist/components/notification/notification.vue.d.ts +10 -8
  19. package/dist/components/page/page.vue.d.ts +10 -8
  20. package/dist/components/popover/popover.vue.d.ts +9 -7
  21. package/dist/components/radio/radio.vue.d.ts +8 -6
  22. package/dist/components/section/section.vue.d.ts +8 -6
  23. package/dist/components/select/model.d.ts +2 -2
  24. package/dist/components/select/select.vue.d.ts +9 -6
  25. package/dist/components/stack/stack.vue.d.ts +8 -6
  26. package/dist/components/switch/model.d.ts +2 -2
  27. package/dist/components/switch/switch.vue.d.ts +9 -6
  28. package/dist/components/tab-item/tab-item.vue.d.ts +8 -6
  29. package/dist/components/tab-list/tab-list.vue.d.ts +8 -6
  30. package/dist/components/tab-panel/tab-panel.vue.d.ts +9 -7
  31. package/dist/components/tabs/model.d.ts +9 -0
  32. package/dist/components/tabs/tabs.vue.d.ts +10 -6
  33. package/dist/components/tag/tag.vue.d.ts +9 -7
  34. package/dist/components/textarea/textarea.vue.d.ts +6 -4
  35. package/dist/components/tooltip/tooltip.vue.d.ts +8 -6
  36. package/dist/db-ux.es.js +774 -756
  37. package/dist/db-ux.umd.js +1 -1
  38. package/dist/shared/model.d.ts +6 -0
  39. package/dist/utils/index.d.ts +0 -4
  40. package/dist/utils/react.d.ts +7 -0
  41. package/package.json +6 -6
@@ -1,21 +1,23 @@
1
+ /// <reference types="../../../../../node_modules/.vue-global-types/vue_3.5_0_0_0.d.ts" />
1
2
  import { DBAccordionItemDefaultProps } from "../accordion-item/model";
2
3
  import { DBAccordionProps } from "./model";
3
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DBAccordionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBAccordionProps> & Readonly<{}>, {
4
+ type __VLS_TemplateRefs = {
5
+ _ref: typeof __VLS_nativeElements['ul'];
6
+ };
7
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<DBAccordionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBAccordionProps> & Readonly<{}>, {
4
8
  name: string;
5
- variant: "card" | "divider";
9
+ variant: "divider" | "card";
6
10
  children: any;
7
11
  className: string;
8
12
  id: string;
9
13
  behavior: "multiple" | "single";
10
14
  initOpenIndex: number[];
11
15
  items: string | DBAccordionItemDefaultProps[];
12
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
13
- _ref: HTMLUListElement;
14
- }, HTMLUListElement>, {
15
- default?(_: {}): any;
16
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, __VLS_TemplateRefs, HTMLUListElement>, {
17
+ default?: ((props: {}) => any) | undefined;
16
18
  }>;
17
19
  export default _default;
18
- type __VLS_WithTemplateSlots<T, S> = T & {
20
+ type __VLS_WithSlots<T, S> = T & {
19
21
  new (): {
20
22
  $slots: S;
21
23
  };
@@ -1,5 +1,9 @@
1
+ /// <reference types="../../../../../node_modules/.vue-global-types/vue_3.5_0_0_0.d.ts" />
1
2
  import { DBAccordionItemProps } from "./model";
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DBAccordionItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBAccordionItemProps> & Readonly<{}>, {
3
+ type __VLS_TemplateRefs = {
4
+ _ref: typeof __VLS_nativeElements['details'];
5
+ };
6
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<DBAccordionItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBAccordionItemProps> & Readonly<{}>, {
3
7
  disabled: boolean;
4
8
  children: any;
5
9
  className: string;
@@ -8,14 +12,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DB
8
12
  onToggle: (open: boolean) => void;
9
13
  defaultOpen: boolean;
10
14
  headlinePlain: string;
11
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
12
- _ref: HTMLDetailsElement;
13
- }, HTMLLIElement>, {
14
- headline?(_: {}): any;
15
- default?(_: {}): any;
15
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, __VLS_TemplateRefs, HTMLLIElement>, {
16
+ headline?: ((props: {}) => any) | undefined;
17
+ default?: ((props: {}) => any) | undefined;
16
18
  }>;
17
19
  export default _default;
18
- type __VLS_WithTemplateSlots<T, S> = T & {
20
+ type __VLS_WithSlots<T, S> = T & {
19
21
  new (): {
20
22
  $slots: S;
21
23
  };
@@ -1,5 +1,9 @@
1
+ /// <reference types="../../../../../node_modules/.vue-global-types/vue_3.5_0_0_0.d.ts" />
1
2
  import { DBBadgeProps } from "./model";
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DBBadgeProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBBadgeProps> & Readonly<{}>, {
3
+ type __VLS_TemplateRefs = {
4
+ _ref: typeof __VLS_nativeElements['span'];
5
+ };
6
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<DBBadgeProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBBadgeProps> & Readonly<{}>, {
3
7
  label: string;
4
8
  children: any;
5
9
  className: string;
@@ -9,13 +13,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DB
9
13
  semantic: "adaptive" | "neutral" | "critical" | "informational" | "warning" | "successful";
10
14
  placement: "inline" | "corner-top-left" | "corner-top-right" | "corner-center-left" | "corner-center-right" | "corner-bottom-left" | "corner-bottom-right";
11
15
  emphasis: "weak" | "strong" | "origin";
12
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
13
- _ref: HTMLSpanElement;
14
- }, HTMLSpanElement>, {
15
- default?(_: {}): any;
16
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, __VLS_TemplateRefs, HTMLSpanElement>, {
17
+ default?: ((props: {}) => any) | undefined;
16
18
  }>;
17
19
  export default _default;
18
- type __VLS_WithTemplateSlots<T, S> = T & {
20
+ type __VLS_WithSlots<T, S> = T & {
19
21
  new (): {
20
22
  $slots: S;
21
23
  };
@@ -1,5 +1,9 @@
1
+ /// <reference types="../../../../../node_modules/.vue-global-types/vue_3.5_0_0_0.d.ts" />
1
2
  import { DBBrandProps } from "./model";
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DBBrandProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBBrandProps> & Readonly<{}>, {
3
+ type __VLS_TemplateRefs = {
4
+ _ref: typeof __VLS_nativeElements['div'];
5
+ };
6
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<DBBrandProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBBrandProps> & Readonly<{}>, {
3
7
  children: any;
4
8
  className: string;
5
9
  id: string;
@@ -7,13 +11,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DB
7
11
  showIcon: boolean;
8
12
  text: string;
9
13
  hideLogo: boolean;
10
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
11
- _ref: HTMLDivElement;
12
- }, HTMLDivElement>, {
13
- default?(_: {}): any;
14
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, __VLS_TemplateRefs, HTMLDivElement>, {
15
+ default?: ((props: {}) => any) | undefined;
14
16
  }>;
15
17
  export default _default;
16
- type __VLS_WithTemplateSlots<T, S> = T & {
18
+ type __VLS_WithSlots<T, S> = T & {
17
19
  new (): {
18
20
  $slots: S;
19
21
  };
@@ -1,5 +1,9 @@
1
+ /// <reference types="../../../../../node_modules/.vue-global-types/vue_3.5_0_0_0.d.ts" />
1
2
  import type { DBButtonProps } from "./model";
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DBButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBButtonProps> & Readonly<{}>, {
3
+ type __VLS_TemplateRefs = {
4
+ _ref: typeof __VLS_nativeElements['button'];
5
+ };
6
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<DBButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBButtonProps> & Readonly<{}>, {
3
7
  name: string;
4
8
  ariaexpanded: boolean;
5
9
  ariapressed: boolean;
@@ -20,13 +24,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DB
20
24
  size: "medium" | "small";
21
25
  showIcon: boolean;
22
26
  text: string;
23
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
24
- _ref: HTMLButtonElement;
25
- }, HTMLButtonElement>, {
26
- default?(_: {}): any;
27
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, __VLS_TemplateRefs, HTMLButtonElement>, {
28
+ default?: ((props: {}) => any) | undefined;
27
29
  }>;
28
30
  export default _default;
29
- type __VLS_WithTemplateSlots<T, S> = T & {
31
+ type __VLS_WithSlots<T, S> = T & {
30
32
  new (): {
31
33
  $slots: S;
32
34
  };
@@ -1,5 +1,9 @@
1
+ /// <reference types="../../../../../node_modules/.vue-global-types/vue_3.5_0_0_0.d.ts" />
1
2
  import type { DBCardProps } from "./model";
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DBCardProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBCardProps> & Readonly<{}>, {
3
+ type __VLS_TemplateRefs = {
4
+ _ref: typeof __VLS_nativeElements['div'];
5
+ };
6
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<DBCardProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBCardProps> & Readonly<{}>, {
3
7
  children: any;
4
8
  className: string;
5
9
  id: string;
@@ -7,13 +11,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DB
7
11
  behavior: "static" | "interactive";
8
12
  elevationLevel: "1" | "2" | "3";
9
13
  spacing: "medium" | "small" | "large" | "none";
10
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
11
- _ref: HTMLDivElement;
12
- }, HTMLDivElement>, {
13
- default?(_: {}): any;
14
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, __VLS_TemplateRefs, HTMLDivElement>, {
15
+ default?: ((props: {}) => any) | undefined;
14
16
  }>;
15
17
  export default _default;
16
- type __VLS_WithTemplateSlots<T, S> = T & {
18
+ type __VLS_WithSlots<T, S> = T & {
17
19
  new (): {
18
20
  $slots: S;
19
21
  };
@@ -1,5 +1,9 @@
1
+ /// <reference types="../../../../../node_modules/.vue-global-types/vue_3.5_0_0_0.d.ts" />
1
2
  import { DBCheckboxProps } from "./model";
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DBCheckboxProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3
+ type __VLS_TemplateRefs = {
4
+ _ref: typeof __VLS_nativeElements['input'];
5
+ };
6
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<DBCheckboxProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3
7
  "update:checked": (...args: any[]) => void;
4
8
  }, string, import("vue").PublicProps, Readonly<DBCheckboxProps> & Readonly<{
5
9
  "onUpdate:checked"?: ((...args: any[]) => any) | undefined;
@@ -28,13 +32,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DB
28
32
  invalidMessage: string;
29
33
  messageIcon: import("@db-ux/core-foundations").BaseIconTypes | import("@db-ux/core-foundations").LooseAutocomplete;
30
34
  showMessage: boolean;
31
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
32
- _ref: HTMLInputElement;
33
- }, HTMLDivElement>, {
34
- default?(_: {}): any;
35
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, __VLS_TemplateRefs, HTMLDivElement>, {
36
+ default?: ((props: {}) => any) | undefined;
35
37
  }>;
36
38
  export default _default;
37
- type __VLS_WithTemplateSlots<T, S> = T & {
39
+ type __VLS_WithSlots<T, S> = T & {
38
40
  new (): {
39
41
  $slots: S;
40
42
  };
@@ -1,4 +1,8 @@
1
+ /// <reference types="../../../../../node_modules/.vue-global-types/vue_3.5_0_0_0.d.ts" />
1
2
  import { DBDividerProps } from "./model";
3
+ type __VLS_TemplateRefs = {
4
+ _ref: typeof __VLS_nativeElements['div'];
5
+ };
2
6
  declare const _default: import("vue").DefineComponent<DBDividerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBDividerProps> & Readonly<{}>, {
3
7
  variant: "horizontal" | "vertical";
4
8
  className: string;
@@ -6,7 +10,5 @@ declare const _default: import("vue").DefineComponent<DBDividerProps, {}, {}, {}
6
10
  width: "full" | "auto";
7
11
  emphasis: "weak" | "strong";
8
12
  margin: "none";
9
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
10
- _ref: HTMLDivElement;
11
- }, HTMLDivElement>;
13
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, __VLS_TemplateRefs, HTMLDivElement>;
12
14
  export default _default;
@@ -1,5 +1,10 @@
1
+ /// <reference types="../../../../../node_modules/.vue-global-types/vue_3.5_0_0_0.d.ts" />
1
2
  import { DBDrawerProps } from "./model";
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DBDrawerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBDrawerProps> & Readonly<{}>, {
3
+ type __VLS_TemplateRefs = {
4
+ _ref: typeof __VLS_nativeElements['dialog'];
5
+ dialogContainerRef: typeof __VLS_nativeElements['article'];
6
+ };
7
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<DBDrawerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBDrawerProps> & Readonly<{}>, {
3
8
  variant: "modal" | "inside";
4
9
  children: any;
5
10
  className: string;
@@ -13,15 +18,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DB
13
18
  direction: "left" | "right" | "up" | "down";
14
19
  open: boolean;
15
20
  rounded: boolean;
16
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
17
- _ref: HTMLDialogElement;
18
- dialogContainerRef: HTMLElement;
19
- }, HTMLDialogElement>, {
20
- 'drawer-header'?(_: {}): any;
21
- default?(_: {}): any;
21
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, __VLS_TemplateRefs, HTMLDialogElement>, {
22
+ 'drawer-header'?: ((props: {}) => any) | undefined;
23
+ default?: ((props: {}) => any) | undefined;
22
24
  }>;
23
25
  export default _default;
24
- type __VLS_WithTemplateSlots<T, S> = T & {
26
+ type __VLS_WithSlots<T, S> = T & {
25
27
  new (): {
26
28
  $slots: S;
27
29
  };
@@ -1,5 +1,9 @@
1
+ /// <reference types="../../../../../node_modules/.vue-global-types/vue_3.5_0_0_0.d.ts" />
1
2
  import { DBHeaderProps } from "./model";
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DBHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBHeaderProps> & Readonly<{}>, {
3
+ type __VLS_TemplateRefs = {
4
+ _ref: typeof __VLS_nativeElements['header'];
5
+ };
6
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<DBHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBHeaderProps> & Readonly<{}>, {
3
7
  children: any;
4
8
  className: string;
5
9
  id: string;
@@ -8,20 +12,15 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DB
8
12
  forceMobile: boolean;
9
13
  burgerMenuLabel: string;
10
14
  onToggle: (open: boolean) => void;
11
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
12
- _ref: HTMLElement;
13
- }, HTMLElement>, {
14
- default?(_: {}): any;
15
- default?(_: {}): any;
16
- 'meta-navigation'?(_: {}): any;
17
- 'meta-navigation'?(_: {}): any;
18
- 'secondary-action'?(_: {}): any;
19
- 'secondary-action'?(_: {}): any;
20
- brand?(_: {}): any;
21
- 'primary-action'?(_: {}): any;
15
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, __VLS_TemplateRefs, HTMLElement>, {
16
+ default?: (((props: {}) => any) & ((props: {}) => any)) | undefined;
17
+ 'meta-navigation'?: (((props: {}) => any) & ((props: {}) => any)) | undefined;
18
+ 'secondary-action'?: (((props: {}) => any) & ((props: {}) => any)) | undefined;
19
+ brand?: ((props: {}) => any) | undefined;
20
+ 'primary-action'?: ((props: {}) => any) | undefined;
22
21
  }>;
23
22
  export default _default;
24
- type __VLS_WithTemplateSlots<T, S> = T & {
23
+ type __VLS_WithSlots<T, S> = T & {
25
24
  new (): {
26
25
  $slots: S;
27
26
  };
@@ -1,5 +1,9 @@
1
+ /// <reference types="../../../../../node_modules/.vue-global-types/vue_3.5_0_0_0.d.ts" />
1
2
  import type { DBIconProps } from "./model";
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DBIconProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBIconProps> & Readonly<{}>, {
3
+ type __VLS_TemplateRefs = {
4
+ _ref: typeof __VLS_nativeElements['span'];
5
+ };
6
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<DBIconProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBIconProps> & Readonly<{}>, {
3
7
  variant: "filled" | "default" | "inverted";
4
8
  children: any;
5
9
  className: string;
@@ -7,13 +11,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DB
7
11
  icon: import("@db-ux/core-foundations").BaseIconTypes | import("@db-ux/core-foundations").LooseAutocomplete;
8
12
  text: string;
9
13
  weight: "16" | "20" | "24" | "32" | "48" | "64";
10
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
11
- _ref: HTMLSpanElement;
12
- }, HTMLSpanElement>, {
13
- default?(_: {}): any;
14
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, __VLS_TemplateRefs, HTMLSpanElement>, {
15
+ default?: ((props: {}) => any) | undefined;
14
16
  }>;
15
17
  export default _default;
16
- type __VLS_WithTemplateSlots<T, S> = T & {
18
+ type __VLS_WithSlots<T, S> = T & {
17
19
  new (): {
18
20
  $slots: S;
19
21
  };
@@ -1,5 +1,9 @@
1
+ /// <reference types="../../../../../node_modules/.vue-global-types/vue_3.5_0_0_0.d.ts" />
1
2
  import { DBInfotextProps } from "./model";
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DBInfotextProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBInfotextProps> & Readonly<{}>, {
3
+ type __VLS_TemplateRefs = {
4
+ _ref: typeof __VLS_nativeElements['span'];
5
+ };
6
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<DBInfotextProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBInfotextProps> & Readonly<{}>, {
3
7
  children: any;
4
8
  className: string;
5
9
  id: string;
@@ -8,13 +12,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DB
8
12
  showIcon: boolean;
9
13
  text: string;
10
14
  semantic: "adaptive" | "neutral" | "critical" | "informational" | "warning" | "successful";
11
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
12
- _ref: HTMLSpanElement;
13
- }, HTMLSpanElement>, {
14
- default?(_: {}): any;
15
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, __VLS_TemplateRefs, HTMLSpanElement>, {
16
+ default?: ((props: {}) => any) | undefined;
15
17
  }>;
16
18
  export default _default;
17
- type __VLS_WithTemplateSlots<T, S> = T & {
19
+ type __VLS_WithSlots<T, S> = T & {
18
20
  new (): {
19
21
  $slots: S;
20
22
  };
@@ -1,6 +1,10 @@
1
+ /// <reference types="../../../../../node_modules/.vue-global-types/vue_3.5_0_0_0.d.ts" />
1
2
  import { DBInputProps } from "./model";
2
3
  import { ValueLabelType } from "../../shared/model";
3
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DBInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4
+ type __VLS_TemplateRefs = {
5
+ _ref: typeof __VLS_nativeElements['input'];
6
+ };
7
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<DBInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4
8
  "update:value": (...args: any[]) => void;
5
9
  }, string, import("vue").PublicProps, Readonly<DBInputProps> & Readonly<{
6
10
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
@@ -17,6 +21,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DB
17
21
  id: string;
18
22
  autofocus: boolean;
19
23
  icon: import("@db-ux/core-foundations").BaseIconTypes | import("@db-ux/core-foundations").LooseAutocomplete;
24
+ size: number;
20
25
  showIcon: boolean;
21
26
  blur: (event: FocusEvent) => void;
22
27
  change: (event: Event) => void;
@@ -46,13 +51,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DB
46
51
  minLength: number;
47
52
  readOnly: boolean;
48
53
  iconAfter: import("@db-ux/core-foundations").BaseIconTypes | import("@db-ux/core-foundations").LooseAutocomplete;
49
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
50
- _ref: HTMLInputElement;
51
- }, HTMLDivElement>, {
52
- default?(_: {}): any;
54
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, __VLS_TemplateRefs, HTMLDivElement>, {
55
+ default?: ((props: {}) => any) | undefined;
53
56
  }>;
54
57
  export default _default;
55
- type __VLS_WithTemplateSlots<T, S> = T & {
58
+ type __VLS_WithSlots<T, S> = T & {
56
59
  new (): {
57
60
  $slots: S;
58
61
  };
@@ -1,4 +1,4 @@
1
- import { ChangeEventProps, ChangeEventState, FocusEventProps, FocusEventState, FormMessageProps, FormProps, FormState, FormTextProps, GlobalProps, GlobalState, IconAfterProps, IconProps, InputEventProps, InputEventState, ShowIconProps, ValueLabelType } from '../../shared/model';
1
+ import { ChangeEventProps, ChangeEventState, FocusEventProps, FocusEventState, FormMessageProps, FormProps, FormSizeProps, FormState, FormTextProps, GlobalProps, GlobalState, IconAfterProps, IconProps, InputEventProps, InputEventState, ShowIconProps, ValueLabelType } from '../../shared/model';
2
2
  export declare const InputTypeList: readonly ["color", "date", "datetime-local", "email", "file", "hidden", "month", "number", "password", "range", "search", "tel", "text", "time", "url", "week"];
3
3
  export type InputTypeType = (typeof InputTypeList)[number];
4
4
  export type DBInputDefaultProps = {
@@ -31,7 +31,7 @@ export type DBInputDefaultProps = {
31
31
  */
32
32
  step?: number | string;
33
33
  };
34
- export type DBInputProps = DBInputDefaultProps & GlobalProps & FormTextProps & InputEventProps<HTMLInputElement> & ChangeEventProps<HTMLInputElement> & FocusEventProps<HTMLInputElement> & FormProps & IconProps & IconAfterProps & FormMessageProps & ShowIconProps;
34
+ export type DBInputProps = DBInputDefaultProps & GlobalProps & FormTextProps & InputEventProps<HTMLInputElement> & ChangeEventProps<HTMLInputElement> & FocusEventProps<HTMLInputElement> & FormProps & IconProps & IconAfterProps & FormMessageProps & ShowIconProps & FormSizeProps;
35
35
  export type DBInputDefaultState = {
36
36
  _dataListId?: string;
37
37
  getDataList: (_list?: string[] | ValueLabelType[]) => ValueLabelType[];
@@ -1,8 +1,9 @@
1
+ /// <reference types="../../../../../node_modules/.vue-global-types/vue_3.5_0_0_0.d.ts" />
1
2
  import { DBLinkProps } from "./model";
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DBLinkProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBLinkProps> & Readonly<{}>, {
3
- rel: string;
4
- content: "external" | "internal";
5
- role: string;
3
+ type __VLS_TemplateRefs = {
4
+ _ref: typeof __VLS_nativeElements['a'];
5
+ };
6
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<DBLinkProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBLinkProps> & Readonly<{}>, {
6
7
  disabled: boolean;
7
8
  label: string;
8
9
  variant: "adaptive" | "brand";
@@ -14,17 +15,18 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DB
14
15
  showIcon: boolean;
15
16
  text: string;
16
17
  target: "_self" | "_blank" | "_parent" | "_top";
18
+ role: string;
19
+ content: "external" | "internal";
17
20
  current: boolean | "time" | "true" | "false" | "date" | "page" | "step" | "location";
18
21
  href: string;
19
22
  hreflang: string;
23
+ rel: string;
20
24
  selected: boolean;
21
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
22
- _ref: HTMLAnchorElement;
23
- }, HTMLAnchorElement>, {
24
- default?(_: {}): any;
25
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, __VLS_TemplateRefs, HTMLAnchorElement>, {
26
+ default?: ((props: {}) => any) | undefined;
25
27
  }>;
26
28
  export default _default;
27
- type __VLS_WithTemplateSlots<T, S> = T & {
29
+ type __VLS_WithSlots<T, S> = T & {
28
30
  new (): {
29
31
  $slots: S;
30
32
  };
@@ -1,16 +1,18 @@
1
+ /// <reference types="../../../../../node_modules/.vue-global-types/vue_3.5_0_0_0.d.ts" />
1
2
  import { DBNavigationProps } from "./model";
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DBNavigationProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBNavigationProps> & Readonly<{}>, {
3
+ type __VLS_TemplateRefs = {
4
+ _ref: typeof __VLS_nativeElements['nav'];
5
+ };
6
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<DBNavigationProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBNavigationProps> & Readonly<{}>, {
3
7
  children: any;
4
8
  className: string;
5
9
  id: string;
6
10
  labelledBy: string;
7
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
8
- _ref: HTMLElement;
9
- }, HTMLElement>, {
10
- default?(_: {}): any;
11
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, __VLS_TemplateRefs, HTMLElement>, {
12
+ default?: ((props: {}) => any) | undefined;
11
13
  }>;
12
14
  export default _default;
13
- type __VLS_WithTemplateSlots<T, S> = T & {
15
+ type __VLS_WithSlots<T, S> = T & {
14
16
  new (): {
15
17
  $slots: S;
16
18
  };
@@ -1,5 +1,9 @@
1
+ /// <reference types="../../../../../node_modules/.vue-global-types/vue_3.5_0_0_0.d.ts" />
1
2
  import { DBNavigationItemProps } from "./model";
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DBNavigationItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBNavigationItemProps> & Readonly<{}>, {
3
+ type __VLS_TemplateRefs = {
4
+ _ref: typeof __VLS_nativeElements['li'];
5
+ };
6
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<DBNavigationItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBNavigationItemProps> & Readonly<{}>, {
3
7
  disabled: boolean;
4
8
  children: any;
5
9
  className: string;
@@ -13,15 +17,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DB
13
17
  subNavigationExpanded: boolean;
14
18
  backButtonId: string;
15
19
  backButtonText: string;
16
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
17
- _ref: HTMLLIElement;
18
- }, HTMLLIElement>, {
19
- default?(_: {}): any;
20
- default?(_: {}): any;
21
- 'sub-navigation'?(_: {}): any;
20
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, __VLS_TemplateRefs, HTMLLIElement>, {
21
+ default?: (((props: {}) => any) & ((props: {}) => any)) | undefined;
22
+ 'sub-navigation'?: ((props: {}) => any) | undefined;
22
23
  }>;
23
24
  export default _default;
24
- type __VLS_WithTemplateSlots<T, S> = T & {
25
+ type __VLS_WithSlots<T, S> = T & {
25
26
  new (): {
26
27
  $slots: S;
27
28
  };
@@ -1,5 +1,9 @@
1
+ /// <reference types="../../../../../node_modules/.vue-global-types/vue_3.5_0_0_0.d.ts" />
1
2
  import { DBNotificationProps } from "./model";
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DBNotificationProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBNotificationProps> & Readonly<{}>, {
3
+ type __VLS_TemplateRefs = {
4
+ _ref: typeof __VLS_nativeElements['article'];
5
+ };
6
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<DBNotificationProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBNotificationProps> & Readonly<{}>, {
3
7
  variant: "docked" | "standalone" | "overlay";
4
8
  children: any;
5
9
  className: string;
@@ -18,15 +22,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DB
18
22
  semantic: "adaptive" | "neutral" | "critical" | "informational" | "warning" | "successful";
19
23
  closeButtonId: string;
20
24
  closeButtonText: string;
21
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
22
- _ref: HTMLElement;
23
- }, HTMLElement>, {
24
- image?(_: {}): any;
25
- default?(_: {}): any;
26
- link?(_: {}): any;
25
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, __VLS_TemplateRefs, HTMLElement>, {
26
+ image?: ((props: {}) => any) | undefined;
27
+ default?: ((props: {}) => any) | undefined;
28
+ link?: ((props: {}) => any) | undefined;
27
29
  }>;
28
30
  export default _default;
29
- type __VLS_WithTemplateSlots<T, S> = T & {
31
+ type __VLS_WithSlots<T, S> = T & {
30
32
  new (): {
31
33
  $slots: S;
32
34
  };
@@ -1,20 +1,22 @@
1
+ /// <reference types="../../../../../node_modules/.vue-global-types/vue_3.5_0_0_0.d.ts" />
1
2
  import { DBPageProps } from "./model";
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DBPageProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBPageProps> & Readonly<{}>, {
3
+ type __VLS_TemplateRefs = {
4
+ _ref: typeof __VLS_nativeElements['div'];
5
+ };
6
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<DBPageProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBPageProps> & Readonly<{}>, {
3
7
  variant: "auto" | "fixed";
4
8
  children: any;
5
9
  className: string;
6
10
  id: string;
7
11
  documentOverflow: "auto" | "hidden";
8
12
  fadeIn: boolean;
9
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
10
- _ref: HTMLDivElement;
11
- }, HTMLDivElement>, {
12
- header?(_: {}): any;
13
- default?(_: {}): any;
14
- footer?(_: {}): any;
13
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, __VLS_TemplateRefs, HTMLDivElement>, {
14
+ header?: ((props: {}) => any) | undefined;
15
+ default?: ((props: {}) => any) | undefined;
16
+ footer?: ((props: {}) => any) | undefined;
15
17
  }>;
16
18
  export default _default;
17
- type __VLS_WithTemplateSlots<T, S> = T & {
19
+ type __VLS_WithSlots<T, S> = T & {
18
20
  new (): {
19
21
  $slots: S;
20
22
  };
@@ -1,5 +1,9 @@
1
+ /// <reference types="../../../../../node_modules/.vue-global-types/vue_3.5_0_0_0.d.ts" />
1
2
  import { DBPopoverProps } from "./model";
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DBPopoverProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBPopoverProps> & Readonly<{}>, {
3
+ type __VLS_TemplateRefs = {
4
+ _ref: typeof __VLS_nativeElements['div'];
5
+ };
6
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<DBPopoverProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBPopoverProps> & Readonly<{}>, {
3
7
  children: any;
4
8
  className: string;
5
9
  id: string;
@@ -10,14 +14,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<DB
10
14
  spacing: "medium" | "small" | "large" | "none";
11
15
  open: boolean;
12
16
  gap: boolean;
13
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
14
- _ref: HTMLDivElement;
15
- }, HTMLDivElement>, {
16
- trigger?(_: {}): any;
17
- default?(_: {}): any;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, __VLS_TemplateRefs, HTMLDivElement>, {
18
+ trigger?: ((props: {}) => any) | undefined;
19
+ default?: ((props: {}) => any) | undefined;
18
20
  }>;
19
21
  export default _default;
20
- type __VLS_WithTemplateSlots<T, S> = T & {
22
+ type __VLS_WithSlots<T, S> = T & {
21
23
  new (): {
22
24
  $slots: S;
23
25
  };