@db-ux/v-core-components 4.4.2 → 4.5.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 (52) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/components/accordion/accordion.vue.d.ts +3 -2
  3. package/dist/components/accordion-item/accordion-item.vue.d.ts +4 -3
  4. package/dist/components/badge/badge.vue.d.ts +5 -3
  5. package/dist/components/badge/model.d.ts +2 -2
  6. package/dist/components/brand/brand.vue.d.ts +3 -2
  7. package/dist/components/button/button.vue.d.ts +6 -4
  8. package/dist/components/button/model.d.ts +8 -10
  9. package/dist/components/card/card.vue.d.ts +2 -1
  10. package/dist/components/checkbox/checkbox.vue.d.ts +4 -3
  11. package/dist/components/custom-button/custom-button.vue.d.ts +29 -0
  12. package/dist/components/custom-button/index.d.ts +1 -0
  13. package/dist/components/custom-button/model.d.ts +6 -0
  14. package/dist/components/custom-select/custom-select.vue.d.ts +4 -3
  15. package/dist/components/custom-select-dropdown/custom-select-dropdown.vue.d.ts +2 -1
  16. package/dist/components/custom-select-form-field/custom-select-form-field.vue.d.ts +2 -1
  17. package/dist/components/custom-select-list/custom-select-list.vue.d.ts +3 -2
  18. package/dist/components/custom-select-list-item/custom-select-list-item.vue.d.ts +4 -3
  19. package/dist/components/divider/divider.vue.d.ts +2 -1
  20. package/dist/components/drawer/drawer.vue.d.ts +2 -1
  21. package/dist/components/header/header.vue.d.ts +2 -1
  22. package/dist/components/icon/icon.vue.d.ts +3 -2
  23. package/dist/components/infotext/infotext.vue.d.ts +5 -3
  24. package/dist/components/infotext/model.d.ts +2 -2
  25. package/dist/components/input/input.vue.d.ts +5 -4
  26. package/dist/components/link/link.vue.d.ts +5 -4
  27. package/dist/components/navigation/navigation.vue.d.ts +2 -1
  28. package/dist/components/navigation-item/navigation-item.vue.d.ts +5 -4
  29. package/dist/components/notification/model.d.ts +2 -2
  30. package/dist/components/notification/notification.vue.d.ts +4 -3
  31. package/dist/components/page/page.vue.d.ts +2 -1
  32. package/dist/components/popover/popover.vue.d.ts +2 -1
  33. package/dist/components/radio/radio.vue.d.ts +4 -3
  34. package/dist/components/section/section.vue.d.ts +2 -1
  35. package/dist/components/select/select.vue.d.ts +4 -3
  36. package/dist/components/stack/stack.vue.d.ts +3 -2
  37. package/dist/components/switch/model.d.ts +1 -1
  38. package/dist/components/switch/switch.vue.d.ts +5 -4
  39. package/dist/components/tab-item/tab-item.vue.d.ts +5 -4
  40. package/dist/components/tab-list/tab-list.vue.d.ts +2 -1
  41. package/dist/components/tab-panel/tab-panel.vue.d.ts +3 -2
  42. package/dist/components/tabs/tabs.vue.d.ts +3 -2
  43. package/dist/components/tag/model.d.ts +2 -6
  44. package/dist/components/tag/tag.vue.d.ts +4 -3
  45. package/dist/components/textarea/textarea.vue.d.ts +4 -3
  46. package/dist/components/tooltip/model.d.ts +3 -3
  47. package/dist/components/tooltip/tooltip.vue.d.ts +3 -1
  48. package/dist/db-ux.es.js +1983 -1787
  49. package/dist/db-ux.umd.js +1 -1
  50. package/dist/index.d.ts +2 -0
  51. package/dist/shared/model.d.ts +17 -3
  52. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @db-ux/v-core-components
2
2
 
3
+ ## 4.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - feat: add `wrap` property for possible inline components (badge, button, infotext, tooltip) besides link and navigation-item, which already have the `wrap` property - [see commit c08970c](https://github.com/db-ux-design-system/core-web/commit/c08970c640f24abee93ed17de258f4e15fa7cb7f)
8
+
9
+ - feat: add `propOverrides` property for components to provide a possibility for avoiding duplicated `id` property on Angular and Web Components - [see commit 9720ebb](https://github.com/db-ux-design-system/core-web/commit/9720ebb9c47302ed0d9939ce219a7d876ba0155c)
10
+
11
+ - feat: add DBCustomButton for development to style `<a>` or `<label><input/>` children - [see commit a50323b](https://github.com/db-ux-design-system/core-web/commit/a50323b21363981c02bbabf7828a6f2d94f11e4d)
12
+
13
+ ## 4.4.3
14
+
15
+ ### Patch Changes
16
+
17
+ - fix: icon color for DBTag with semantic property set - [see commit 89c4ad7](https://github.com/db-ux-design-system/core-web/commit/89c4ad7274cdadaccc0aedc106d6f2c781e6ce8a)
18
+
19
+ - fix: issue with DBCustomSelect not working properly with customValidity="no-validation" - [see commit 758ecb9](https://github.com/db-ux-design-system/core-web/commit/758ecb90f82a6c3d648728fa92c92474600b9941)
20
+
21
+ - fix: issue with floating-components (tooltip, popover, etc.) inside other absolute or fixed elements - [see commit e6d934f](https://github.com/db-ux-design-system/core-web/commit/e6d934f0c0a4af0b6dd57f81773831a2431b94e1)
22
+
3
23
  ## 4.4.2
4
24
 
5
25
  ### Patch Changes
@@ -5,10 +5,11 @@ type __VLS_Slots = {} & {
5
5
  default?: (props: typeof __VLS_1) => any;
6
6
  };
7
7
  declare const __VLS_base: import("vue").DefineComponent<DBAccordionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBAccordionProps> & Readonly<{}>, {
8
- name: string;
8
+ id: string;
9
9
  children: any;
10
10
  className: string;
11
- id: string;
11
+ propOverrides: import("../..").PropOverridesType;
12
+ name: string;
12
13
  behavior: import("./model").AccordionBehaviorType;
13
14
  initOpenIndex: number[];
14
15
  items: DBAccordionItemDefaultProps[] | string;
@@ -6,14 +6,15 @@ type __VLS_Slots = {} & {
6
6
  default?: (props: typeof __VLS_3) => any;
7
7
  };
8
8
  declare const __VLS_base: import("vue").DefineComponent<DBAccordionItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBAccordionItemProps> & Readonly<{}>, {
9
+ id: string;
10
+ children: any;
11
+ className: string;
12
+ propOverrides: import("../../shared/model").PropOverridesType;
9
13
  name: string;
10
14
  text: string;
11
15
  defaultOpen: boolean;
12
16
  disabled: boolean | string;
13
17
  headlinePlain: string;
14
- children: any;
15
- className: string;
16
- id: string;
17
18
  onToggle: (open: boolean) => void;
18
19
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
19
20
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
@@ -4,15 +4,17 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_1) => any;
5
5
  };
6
6
  declare const __VLS_base: import("vue").DefineComponent<DBBadgeProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBBadgeProps> & Readonly<{}>, {
7
+ id: string;
8
+ children: any;
9
+ className: string;
10
+ propOverrides: import("../..").PropOverridesType;
7
11
  semantic: import("../..").SemanticType;
8
12
  label: string;
9
13
  text: string;
10
- children: any;
11
- className: string;
12
- id: string;
13
14
  placement: import("./model").BadgePlacementType;
14
15
  size: import("../..").SizeType;
15
16
  emphasis: import("../..").EmphasisType;
17
+ wrap: boolean | string;
16
18
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
19
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
18
20
  declare const _default: typeof __VLS_export;
@@ -1,4 +1,4 @@
1
- import { EmphasisProps, GlobalProps, GlobalState, InitializedState, SemanticProps, SizeProps, TextProps } from '../../shared/model';
1
+ import { EmphasisProps, GlobalProps, GlobalState, InitializedState, SemanticProps, SizeProps, TextProps, WrapProps } from '../../shared/model';
2
2
  export declare const BadgePlacementList: readonly ["inline", "corner-top-left", "corner-top-right", "corner-center-left", "corner-center-right", "corner-bottom-left", "corner-bottom-right"];
3
3
  export type BadgePlacementType = (typeof BadgePlacementList)[number];
4
4
  export type DBBadgeDefaultProps = {
@@ -11,6 +11,6 @@ export type DBBadgeDefaultProps = {
11
11
  */
12
12
  label?: string;
13
13
  };
14
- export type DBBadgeProps = DBBadgeDefaultProps & GlobalProps & SemanticProps & SizeProps & EmphasisProps & TextProps;
14
+ export type DBBadgeProps = DBBadgeDefaultProps & GlobalProps & SemanticProps & SizeProps & EmphasisProps & TextProps & WrapProps;
15
15
  export type DBBadgeDefaultState = {};
16
16
  export type DBBadgeState = DBBadgeDefaultState & GlobalState & InitializedState;
@@ -4,10 +4,11 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_1) => any;
5
5
  };
6
6
  declare const __VLS_base: import("vue").DefineComponent<DBBrandProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBBrandProps> & Readonly<{}>, {
7
- text: string;
7
+ id: string;
8
8
  children: any;
9
9
  className: string;
10
- id: string;
10
+ propOverrides: import("../..").PropOverridesType;
11
+ text: string;
11
12
  hideLogo: boolean;
12
13
  icon: import("@db-ux/core-foundations").IconTypes;
13
14
  showIcon: boolean | string;
@@ -4,26 +4,28 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_1) => any;
5
5
  };
6
6
  declare const __VLS_base: import("vue").DefineComponent<DBButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBButtonProps> & Readonly<{}>, {
7
+ id: string;
8
+ children: any;
9
+ className: string;
10
+ propOverrides: import("../..").PropOverridesType;
7
11
  name: string;
8
12
  form: string;
9
13
  text: string;
10
14
  value: string;
11
15
  disabled: boolean | string;
12
- children: any;
13
- className: string;
14
- id: string;
15
16
  onClick: (event: import("../..").ClickEvent<HTMLButtonElement>) => void;
16
17
  type: import("./model").ButtonTypeType;
17
18
  variant: import("./model").ButtonVariantType | string;
18
19
  size: import("../..").SizeType;
20
+ wrap: boolean | string;
19
21
  icon: import("@db-ux/core-foundations").IconTypes;
20
22
  showIcon: boolean | string;
21
- noText: boolean | string;
22
23
  width: import("../..").WidthType | string;
23
24
  showIconLeading: boolean | string;
24
25
  showIconTrailing: boolean | string;
25
26
  iconLeading: import("@db-ux/core-foundations").IconTypes;
26
27
  iconTrailing: import("@db-ux/core-foundations").IconTypes;
28
+ noText: boolean | string;
27
29
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
28
30
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
29
31
  declare const _default: typeof __VLS_export;
@@ -1,8 +1,14 @@
1
- import { ClickEventProps, GlobalProps, GlobalState, IconLeadingProps, IconProps, IconTrailingProps, ShowIconLeadingProps, ShowIconProps, ShowIconTrailingProps, SizeProps, TextProps, WidthProps } from '../../shared/model';
1
+ import { ClickEventProps, GlobalProps, GlobalState, IconLeadingProps, IconProps, IconTrailingProps, NoTextProps, ShowIconLeadingProps, ShowIconProps, ShowIconTrailingProps, SizeProps, TextProps, WidthProps, WrapProps } from '../../shared/model';
2
2
  export declare const ButtonVariantList: readonly ["outlined", "brand", "filled", "ghost"];
3
3
  export type ButtonVariantType = (typeof ButtonVariantList)[number];
4
4
  export declare const ButtonTypeList: readonly ["button", "reset", "submit"];
5
5
  export type ButtonTypeType = (typeof ButtonTypeList)[number];
6
+ export type DBButtonSharedProps = {
7
+ /**
8
+ * Variant of the button. Only use one primary button as a CTA on a page; otherwise, use one of the adaptive buttons.
9
+ */
10
+ variant?: ButtonVariantType | string;
11
+ };
6
12
  export type DBButtonDefaultProps = {
7
13
  /**
8
14
  * The disabled attribute can be set to [keep a user from clicking on the button](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#disabled).
@@ -16,10 +22,6 @@ export type DBButtonDefaultProps = {
16
22
  * The name attribute specifies a [name attributes value](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#name) for the button.
17
23
  */
18
24
  name?: string;
19
- /**
20
- * Define the text next to the icon specified via the icon Property to get hidden.
21
- */
22
- noText?: boolean | string;
23
25
  /**
24
26
  * The type attribute specifies the [type of button](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#type).
25
27
  */
@@ -28,12 +30,8 @@ export type DBButtonDefaultProps = {
28
30
  * The value attribute specifies an initial [value for the button](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#value).
29
31
  */
30
32
  value?: string;
31
- /**
32
- * Variant of the button. Use only 1 primary button on a page as CTA otherwise use one of the adaptive buttons.
33
- */
34
- variant?: ButtonVariantType | string;
35
33
  };
36
- export type DBButtonProps = DBButtonDefaultProps & GlobalProps & ClickEventProps<HTMLButtonElement> & IconProps & WidthProps & SizeProps & ShowIconProps & TextProps & ShowIconLeadingProps & ShowIconTrailingProps & IconLeadingProps & IconTrailingProps;
34
+ export type DBButtonProps = DBButtonDefaultProps & DBButtonSharedProps & GlobalProps & ClickEventProps<HTMLButtonElement> & IconProps & WidthProps & SizeProps & ShowIconProps & TextProps & ShowIconLeadingProps & ShowIconTrailingProps & IconLeadingProps & IconTrailingProps & WrapProps & NoTextProps;
37
35
  export type DBButtonDefaultState = {
38
36
  getButtonType: () => ButtonTypeType;
39
37
  };
@@ -5,9 +5,10 @@ type __VLS_Slots = {} & {
5
5
  default?: (props: typeof __VLS_1) => any;
6
6
  };
7
7
  declare const __VLS_base: import("vue").DefineComponent<DBCardProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBCardProps> & Readonly<{}>, {
8
+ id: string;
8
9
  children: any;
9
10
  className: string;
10
- id: string;
11
+ propOverrides: import("../../shared/model").PropOverridesType;
11
12
  onClick: (event: ClickEvent<HTMLElement>) => void;
12
13
  behavior: import("./model").CardBehaviorType;
13
14
  elevationLevel: import("./model").CardElevationLevelType;
@@ -9,13 +9,14 @@ declare const __VLS_base: import("vue").DefineComponent<DBCheckboxProps, {}, {},
9
9
  }, string, import("vue").PublicProps, Readonly<DBCheckboxProps> & Readonly<{
10
10
  "onUpdate:checked"?: ((...args: any[]) => any) | undefined;
11
11
  }>, {
12
+ id: string;
13
+ children: any;
14
+ className: string;
15
+ propOverrides: import("../../shared/model").PropOverridesType;
12
16
  name: string;
13
17
  label: string;
14
18
  value: any;
15
19
  disabled: boolean | string;
16
- children: any;
17
- className: string;
18
- id: string;
19
20
  onFocus: (event: InteractionEvent<HTMLInputElement>) => void;
20
21
  onBlur: (event: InteractionEvent<HTMLInputElement>) => void;
21
22
  onChange: (event: ChangeEvent<HTMLInputElement>) => void;
@@ -0,0 +1,29 @@
1
+ import { DBCustomButtonProps } from "./model";
2
+ declare var __VLS_1: {};
3
+ type __VLS_Slots = {} & {
4
+ default?: (props: typeof __VLS_1) => any;
5
+ };
6
+ declare const __VLS_base: import("vue").DefineComponent<DBCustomButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBCustomButtonProps> & Readonly<{}>, {
7
+ id: string;
8
+ children: any;
9
+ className: string;
10
+ propOverrides: import("../..").PropOverridesType;
11
+ variant: import("../..").ButtonVariantType | string;
12
+ size: import("../..").SizeType;
13
+ icon: import("@db-ux/core-foundations").IconTypes;
14
+ showIcon: boolean | string;
15
+ width: import("../..").WidthType | string;
16
+ showIconLeading: boolean | string;
17
+ showIconTrailing: boolean | string;
18
+ iconLeading: import("@db-ux/core-foundations").IconTypes;
19
+ iconTrailing: import("@db-ux/core-foundations").IconTypes;
20
+ noText: boolean | string;
21
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
22
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
23
+ declare const _default: typeof __VLS_export;
24
+ export default _default;
25
+ type __VLS_WithSlots<T, S> = T & {
26
+ new (): {
27
+ $slots: S;
28
+ };
29
+ };
@@ -0,0 +1 @@
1
+ export { default as DBCustomButton } from './custom-button.vue';
@@ -0,0 +1,6 @@
1
+ import { GlobalProps, GlobalState, IconLeadingProps, IconProps, IconTrailingProps, NoTextProps, ShowIconLeadingProps, ShowIconProps, ShowIconTrailingProps, SizeProps, WidthProps, WrapProps } from '../../shared/model';
2
+ import { DBButtonSharedProps } from '../button/model';
3
+ export type DBCustomButtonDefaultProps = {};
4
+ export type DBCustomButtonProps = DBCustomButtonDefaultProps & DBButtonSharedProps & GlobalProps & IconProps & WidthProps & SizeProps & ShowIconProps & ShowIconLeadingProps & ShowIconTrailingProps & IconLeadingProps & IconTrailingProps & NoTextProps & WrapProps;
5
+ export type DBCustomButtonDefaultState = {};
6
+ export type DBCustomButtonState = DBCustomButtonDefaultState & GlobalState;
@@ -9,14 +9,15 @@ declare const __VLS_base: import("vue").DefineComponent<DBCustomSelectProps, {},
9
9
  }, string, import("vue").PublicProps, Readonly<DBCustomSelectProps> & Readonly<{
10
10
  "onUpdate:values"?: ((...args: any[]) => any) | undefined;
11
11
  }>, {
12
+ id: string;
13
+ children: any;
14
+ className: string;
15
+ propOverrides: import("../../shared/model").PropOverridesType;
12
16
  name: string;
13
17
  form: string;
14
18
  label: string;
15
19
  values: string[];
16
20
  disabled: boolean | string;
17
- children: any;
18
- className: string;
19
- id: string;
20
21
  open: boolean;
21
22
  multiple: boolean | string;
22
23
  variant: import("../../shared/model").LabelVariantType;
@@ -4,9 +4,10 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_1) => any;
5
5
  };
6
6
  declare const __VLS_base: import("vue").DefineComponent<DBCustomSelectDropdownProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBCustomSelectDropdownProps> & Readonly<{}>, {
7
+ id: string;
7
8
  children: any;
8
9
  className: string;
9
- id: string;
10
+ propOverrides: import("../..").PropOverridesType;
10
11
  width: import("./model").CustomSelectDropdownWidthType | string;
11
12
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
13
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
@@ -3,9 +3,10 @@ type __VLS_Slots = {} & {
3
3
  default?: (props: typeof __VLS_1) => any;
4
4
  };
5
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
+ id: string;
6
7
  children: any;
7
8
  className: string;
8
- id: string;
9
+ propOverrides: import("../..").PropOverridesType;
9
10
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
11
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
11
12
  declare const _default: typeof __VLS_export;
@@ -4,10 +4,11 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_1) => any;
5
5
  };
6
6
  declare const __VLS_base: import("vue").DefineComponent<DBCustomSelectListProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBCustomSelectListProps> & Readonly<{}>, {
7
- label: string;
7
+ id: string;
8
8
  children: any;
9
9
  className: string;
10
- id: string;
10
+ propOverrides: import("../..").PropOverridesType;
11
+ label: string;
11
12
  multiple: boolean;
12
13
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13
14
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
@@ -9,13 +9,14 @@ declare const __VLS_base: import("vue").DefineComponent<DBCustomSelectListItemPr
9
9
  }, string, import("vue").PublicProps, Readonly<DBCustomSelectListItemProps> & Readonly<{
10
10
  "onUpdate:checked"?: ((...args: any[]) => any) | undefined;
11
11
  }>, {
12
+ id: string;
13
+ children: any;
14
+ className: string;
15
+ propOverrides: import("../../shared/model").PropOverridesType;
12
16
  name: string;
13
17
  label: string;
14
18
  value: any;
15
19
  disabled: boolean | string;
16
- children: any;
17
- className: string;
18
- id: string;
19
20
  onChange: (event: ChangeEvent<HTMLInputElement>) => void;
20
21
  type: import("./model").CustomSelectListItemTypeType;
21
22
  icon: import("@db-ux/core-foundations").IconTypes;
@@ -1,7 +1,8 @@
1
1
  import { DBDividerProps } from "./model";
2
2
  declare const __VLS_export: import("vue").DefineComponent<DBDividerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBDividerProps> & Readonly<{}>, {
3
- className: string;
4
3
  id: string;
4
+ className: string;
5
+ propOverrides: import("../..").PropOverridesType;
5
6
  variant: import("./model").DividerVariantType;
6
7
  emphasis: import("../..").EmphasisType;
7
8
  width: import("../..").WidthType | string;
@@ -6,9 +6,10 @@ type __VLS_Slots = {} & {
6
6
  default?: (props: typeof __VLS_9) => any;
7
7
  };
8
8
  declare const __VLS_base: import("vue").DefineComponent<DBDrawerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBDrawerProps> & Readonly<{}>, {
9
+ id: string;
9
10
  children: any;
10
11
  className: string;
11
- id: string;
12
+ propOverrides: import("../../shared/model").PropOverridesType;
12
13
  open: boolean | string;
13
14
  variant: import("./model").DrawerVariantType;
14
15
  width: import("../../shared/model").WidthType | string;
@@ -18,9 +18,10 @@ type __VLS_Slots = {} & {
18
18
  'secondary-action'?: (props: typeof __VLS_27) => any;
19
19
  };
20
20
  declare const __VLS_base: import("vue").DefineComponent<DBHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBHeaderProps> & Readonly<{}>, {
21
+ id: string;
21
22
  children: any;
22
23
  className: string;
23
- id: string;
24
+ propOverrides: import("../..").PropOverridesType;
24
25
  onToggle: (open: boolean) => void;
25
26
  width: import("../..").MaxWidthType;
26
27
  closeButtonId: string;
@@ -4,10 +4,11 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_1) => any;
5
5
  };
6
6
  declare const __VLS_base: import("vue").DefineComponent<DBIconProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBIconProps> & Readonly<{}>, {
7
- text: string;
7
+ id: string;
8
8
  children: any;
9
9
  className: string;
10
- id: string;
10
+ propOverrides: import("../..").PropOverridesType;
11
+ text: string;
11
12
  variant: string;
12
13
  icon: import("@db-ux/core-foundations").IconTypes;
13
14
  weight: import("./model").IconWeightType;
@@ -4,12 +4,14 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_1) => any;
5
5
  };
6
6
  declare const __VLS_base: import("vue").DefineComponent<DBInfotextProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBInfotextProps> & Readonly<{}>, {
7
- semantic: import("../..").SemanticType;
8
- text: string;
7
+ id: string;
9
8
  children: any;
10
9
  className: string;
11
- id: string;
10
+ propOverrides: import("../..").PropOverridesType;
11
+ semantic: import("../..").SemanticType;
12
+ text: string;
12
13
  size: import("../..").SizeType;
14
+ wrap: boolean | string;
13
15
  icon: import("@db-ux/core-foundations").IconTypes;
14
16
  showIcon: boolean | string;
15
17
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -1,5 +1,5 @@
1
- import { GlobalProps, GlobalState, IconProps, SemanticProps, ShowIconProps, SizeProps, TextProps } from '../../shared/model';
1
+ import { GlobalProps, GlobalState, IconProps, SemanticProps, ShowIconProps, SizeProps, TextProps, WrapProps } from '../../shared/model';
2
2
  export type DBInfotextDefaultProps = {};
3
- export type DBInfotextProps = DBInfotextDefaultProps & GlobalProps & SemanticProps & IconProps & SizeProps & ShowIconProps & TextProps;
3
+ export type DBInfotextProps = DBInfotextDefaultProps & GlobalProps & SemanticProps & IconProps & SizeProps & ShowIconProps & TextProps & WrapProps;
4
4
  export type DBInfotextDefaultState = {};
5
5
  export type DBInfotextState = DBInfotextDefaultState & GlobalState;
@@ -9,6 +9,11 @@ declare const __VLS_base: import("vue").DefineComponent<DBInputProps, {}, {}, {}
9
9
  }, string, import("vue").PublicProps, Readonly<DBInputProps> & Readonly<{
10
10
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
11
11
  }>, {
12
+ id: string;
13
+ children: any;
14
+ className: string;
15
+ autofocus: boolean | string;
16
+ propOverrides: import("../../shared/model").PropOverridesType;
12
17
  name: string;
13
18
  form: string;
14
19
  input: (event: InputEvent<HTMLInputElement>) => void;
@@ -16,10 +21,6 @@ declare const __VLS_base: import("vue").DefineComponent<DBInputProps, {}, {}, {}
16
21
  pattern: string;
17
22
  value: any;
18
23
  disabled: boolean | string;
19
- children: any;
20
- className: string;
21
- id: string;
22
- autofocus: boolean | string;
23
24
  onFocus: (event: InteractionEvent<HTMLInputElement>) => void;
24
25
  onBlur: (event: InteractionEvent<HTMLInputElement>) => void;
25
26
  onChange: (event: ChangeEvent<HTMLInputElement>) => void;
@@ -4,16 +4,18 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_1) => any;
5
5
  };
6
6
  declare const __VLS_base: import("vue").DefineComponent<DBLinkProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBLinkProps> & Readonly<{}>, {
7
+ id: string;
8
+ children: any;
9
+ className: string;
10
+ propOverrides: import("../..").PropOverridesType;
7
11
  content: import("./model").LinkContentType;
8
12
  role: string;
9
13
  text: string;
10
14
  disabled: boolean | string;
11
- children: any;
12
- className: string;
13
- id: string;
14
15
  onClick: (event: import("../..").ClickEvent<HTMLAnchorElement>) => void;
15
16
  variant: import("./model").LinkVariantType;
16
17
  size: import("./model").LinkSizeType;
18
+ wrap: boolean | string;
17
19
  showIcon: boolean | string;
18
20
  target: import("../..").LinkTargetType;
19
21
  href: string;
@@ -21,7 +23,6 @@ declare const __VLS_base: import("vue").DefineComponent<DBLinkProps, {}, {}, {},
21
23
  rel: string;
22
24
  referrerpolicy: import("../..").LinkReferrerPolicyType;
23
25
  referrerPolicy: import("../..").LinkReferrerPolicyType;
24
- wrap: boolean | string;
25
26
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
26
27
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
27
28
  declare const _default: typeof __VLS_export;
@@ -3,9 +3,10 @@ type __VLS_Slots = {} & {
3
3
  default?: (props: typeof __VLS_1) => any;
4
4
  };
5
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
+ id: string;
6
7
  children: any;
7
8
  className: string;
8
- id: string;
9
+ propOverrides: import("../..").PropOverridesType;
9
10
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
11
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
11
12
  declare const _default: typeof __VLS_export;
@@ -9,16 +9,17 @@ type __VLS_Slots = {} & {
9
9
  'sub-navigation'?: (props: typeof __VLS_11) => any;
10
10
  };
11
11
  declare const __VLS_base: import("vue").DefineComponent<DBNavigationItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBNavigationItemProps> & Readonly<{}>, {
12
- text: string;
13
- disabled: boolean | string;
12
+ id: string;
14
13
  children: any;
15
14
  className: string;
16
- id: string;
15
+ propOverrides: import("../../shared/model").PropOverridesType;
16
+ text: string;
17
+ disabled: boolean | string;
17
18
  onClick: (event: ClickEvent<HTMLButtonElement>) => void;
19
+ wrap: boolean | string;
18
20
  icon: import("@db-ux/core-foundations").IconTypes;
19
21
  showIcon: boolean | string;
20
22
  width: import("../../shared/model").WidthType | string;
21
- wrap: boolean | string;
22
23
  active: boolean;
23
24
  subNavigationExpanded: boolean | string;
24
25
  backButtonId: string;
@@ -1,4 +1,4 @@
1
- import { ClickEvent, CloseEventProps, CloseEventState, GlobalProps, GlobalState, IconProps, InnerCloseButtonProps, PopoverProps, RoleProps, SemanticProps, ShowIconProps, TextProps } from '../../shared/model';
1
+ import { ClickEvent, CloseEventProps, CloseEventState, GlobalProps, GlobalState, IconProps, InnerCloseButtonProps, RoleProps, SemanticProps, ShowIconProps, TextProps } from '../../shared/model';
2
2
  export declare const NotificationVariantList: readonly ["docked", "standalone", "overlay"];
3
3
  export type NotificationVariantType = (typeof NotificationVariantList)[number];
4
4
  export declare const NotificationLinkVariantList: readonly ["block", "inline"];
@@ -52,6 +52,6 @@ export type DBNotificationDefaultProps = {
52
52
  */
53
53
  variant?: NotificationVariantType;
54
54
  };
55
- export type DBNotificationProps = DBNotificationDefaultProps & GlobalProps & RoleProps & CloseEventProps<ClickEvent<HTMLButtonElement>> & IconProps & SemanticProps & InnerCloseButtonProps & PopoverProps & ShowIconProps & TextProps;
55
+ export type DBNotificationProps = DBNotificationDefaultProps & GlobalProps & RoleProps & CloseEventProps<ClickEvent<HTMLButtonElement>> & IconProps & SemanticProps & InnerCloseButtonProps & ShowIconProps & TextProps;
56
56
  export type DBNotificationDefaultState = {};
57
57
  export type DBNotificationState = DBNotificationDefaultState & GlobalState & CloseEventState<ClickEvent<HTMLButtonElement>>;
@@ -8,14 +8,15 @@ type __VLS_Slots = {} & {
8
8
  link?: (props: typeof __VLS_5) => any;
9
9
  };
10
10
  declare const __VLS_base: import("vue").DefineComponent<DBNotificationProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBNotificationProps> & Readonly<{}>, {
11
+ id: string;
12
+ children: any;
13
+ className: string;
14
+ propOverrides: import("../../shared/model").PropOverridesType;
11
15
  semantic: import("../../shared/model").SemanticType;
12
16
  role: string;
13
17
  ariaLive: import("./model").NotificationAriaLiveType;
14
18
  text: string;
15
19
  headline: string | any;
16
- children: any;
17
- className: string;
18
- id: string;
19
20
  variant: import("./model").NotificationVariantType;
20
21
  icon: import("@db-ux/core-foundations").IconTypes;
21
22
  showIcon: boolean | string;
@@ -8,9 +8,10 @@ type __VLS_Slots = {} & {
8
8
  footer?: (props: typeof __VLS_5) => any;
9
9
  };
10
10
  declare const __VLS_base: import("vue").DefineComponent<DBPageProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBPageProps> & Readonly<{}>, {
11
+ id: string;
11
12
  children: any;
12
13
  className: string;
13
- id: string;
14
+ propOverrides: import("../..").PropOverridesType;
14
15
  variant: import("./model").PageVariantType;
15
16
  documentOverflow: import("./model").PageDocumentOverflowType;
16
17
  fadeIn: boolean | string;
@@ -6,9 +6,10 @@ type __VLS_Slots = {} & {
6
6
  default?: (props: typeof __VLS_3) => any;
7
7
  };
8
8
  declare const __VLS_base: import("vue").DefineComponent<DBPopoverProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBPopoverProps> & Readonly<{}>, {
9
+ id: string;
9
10
  children: any;
10
11
  className: string;
11
- id: string;
12
+ propOverrides: import("../..").PropOverridesType;
12
13
  open: boolean | string;
13
14
  placement: import("../..").PlacementType;
14
15
  width: import("../..").PopoverWidthType;
@@ -9,14 +9,15 @@ declare const __VLS_base: import("vue").DefineComponent<DBRadioProps, {}, {}, {}
9
9
  }, string, import("vue").PublicProps, Readonly<DBRadioProps> & Readonly<{
10
10
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
11
11
  }>, {
12
+ id: string;
13
+ children: any;
14
+ className: string;
15
+ propOverrides: import("../../shared/model").PropOverridesType;
12
16
  name: string;
13
17
  input: (event: import("../../shared/model").InputEvent<HTMLInputElement>) => void;
14
18
  label: string;
15
19
  value: any;
16
20
  disabled: boolean | string;
17
- children: any;
18
- className: string;
19
- id: string;
20
21
  onFocus: (event: InteractionEvent<HTMLInputElement>) => void;
21
22
  onBlur: (event: InteractionEvent<HTMLInputElement>) => void;
22
23
  onChange: (event: ChangeEvent<HTMLInputElement>) => void;
@@ -4,9 +4,10 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_1) => any;
5
5
  };
6
6
  declare const __VLS_base: import("vue").DefineComponent<DBSectionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBSectionProps> & Readonly<{}>, {
7
+ id: string;
7
8
  children: any;
8
9
  className: string;
9
- id: string;
10
+ propOverrides: import("../..").PropOverridesType;
10
11
  width: import("../..").MaxWidthType;
11
12
  spacing: import("../..").SpacingType | string;
12
13
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -9,14 +9,15 @@ declare const __VLS_base: import("vue").DefineComponent<DBSelectProps, {}, {}, {
9
9
  }, string, import("vue").PublicProps, Readonly<DBSelectProps> & Readonly<{
10
10
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
11
11
  }>, {
12
+ id: string;
13
+ children: any;
14
+ className: string;
15
+ propOverrides: import("../../shared/model").PropOverridesType;
12
16
  name: string;
13
17
  input: (event: InputEvent<HTMLSelectElement>) => void;
14
18
  label: string;
15
19
  value: any;
16
20
  disabled: boolean | string;
17
- children: any;
18
- className: string;
19
- id: string;
20
21
  onFocus: (event: InteractionEvent<HTMLSelectElement>) => void;
21
22
  onBlur: (event: InteractionEvent<HTMLSelectElement>) => void;
22
23
  onChange: (event: ChangeEvent<HTMLSelectElement>) => void;