@db-ux/v-core-components 5.3.0 → 5.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.
package/CHANGELOG.md CHANGED
@@ -1,28 +1,51 @@
1
1
  # @db-ux/v-core-components
2
2
 
3
+ ## 5.5.0
4
+
5
+ ### Patch Changes
6
+
7
+ - fix(DBCustomSelectListItem): make label bold when checked - [see commit 58df675](https://github.com/db-ux-design-system/core-web/commit/58df6754fde599346696e4e9372d97e13c384082)
8
+ - fix(table): remove unwanted white background on component wrapper for `variant="spaced"` - [see commit 1524afe](https://github.com/db-ux-design-system/core-web/commit/1524afe64488b90e47c133594438182bb47a59e7)
9
+
10
+ ## 5.4.0
11
+
12
+ ### Minor Changes
13
+
14
+ - feat(DBFooter): add the composable DBFooter, DBFooterContent and DBFooterMeta components - [see commit 7df9937](https://github.com/db-ux-design-system/core-web/commit/7df99378cb41c17ca818792918e7e8f18a96a2ec):
15
+
16
+ - `DBFooter` renders the native `contentinfo` landmark and the layout container with the
17
+ - optional `width` variants. `DBFooterContent` holds the primary area, `DBFooterMeta` the
18
+ - secondary one including an optional `copyright` holder, for which the component prepends
19
+ - the copyright symbol. Both areas are optional, so consumers compose only the parts they
20
+ - need and wrap navigational content in a labelled `nav` themselves.
21
+ - Inside `DBFooterMeta` the copyright and the secondary content sit side by side from a
22
+ - viewport width of 768 px upwards, with the copyright aligned to the top of the row, and
23
+ - stack below that. `data-force-mobile="true"` on the footer forces the stacked
24
+ - arrangement, for a footer placed in a region narrower than the viewport suggests.
25
+
3
26
  ## 5.3.0
4
27
 
5
28
  ### Minor Changes
6
29
 
7
30
  - feat: introduce control-panel shell architecture (deprecates DBPage, DBHeader, DBBrand, DBNavigation, DBNavigationItem) - [see commit eafd85b](https://github.com/db-ux-design-system/core-web/commit/eafd85bc0d1692e9124a7599fe1397f9ff68a759):
8
- - New `DBShell` component (deprecates `DBPage`)
9
- - New `DBControlPanelDesktop` and `DBControlPanelMobile` (deprecates `DBHeader`)
10
- - New `DBControlPanelBrand` (deprecates `DBBrand`)
11
- - New `DBControlPanelNavigation` (deprecates `DBNavigation`)
12
- - New `DBControlPanelNavigationItem` (deprecates `DBNavigationItem`)
13
- - New `DBControlPanelNavigationItemGroup` for sub-navigation
14
- - New `DBShellContent` component for main content area
15
- - New `DBShellSubNavigation` for secondary navigation panels
16
- - New `DBControlPanelMeta`, `DBControlPanelActions1`, `DBControlPanelActions2` slot components
17
- - New `DBControlPanelFlatIcon` for collapsed icon-only navigation
31
+ - New `DBShell` component (deprecates `DBPage`)
32
+ - New `DBControlPanelDesktop` and `DBControlPanelMobile` (deprecates `DBHeader`)
33
+ - New `DBControlPanelBrand` (deprecates `DBBrand`)
34
+ - New `DBControlPanelNavigation` (deprecates `DBNavigation`)
35
+ - New `DBControlPanelNavigationItem` (deprecates `DBNavigationItem`)
36
+ - New `DBControlPanelNavigationItemGroup` for sub-navigation
37
+ - New `DBShellContent` component for main content area
38
+ - New `DBShellSubNavigation` for secondary navigation panels
39
+ - New `DBControlPanelMeta`, `DBControlPanelActions1`, `DBControlPanelActions2` slot components
40
+ - New `DBControlPanelFlatIcon` for collapsed icon-only navigation
18
41
 
19
42
  - feat: add logo token variables - [see commit eafd85b](https://github.com/db-ux-design-system/core-web/commit/eafd85bc0d1692e9124a7599fe1397f9ff68a759):
20
- - Providing `--db-logo-url`, `--db-logo-aspect-ratio`, `--db-logo-url-short`, and `--db-logo-aspect-ratio-short` tokens.
43
+ - Providing `--db-logo-url`, `--db-logo-aspect-ratio`, `--db-logo-url-short`, and `--db-logo-aspect-ratio-short` tokens.
21
44
 
22
45
  ### Patch Changes
23
46
 
24
47
  - fix(DBSelect): keep the user's selection when validation runs on `input` - [see commit 86d0feb](https://github.com/db-ux-design-system/core-web/commit/86d0feb14e3af59e170f08204fccf8c269e4c5fb):
25
- - A browser dispatches `input` and `change` for a `select` in separate tasks. `DBSelect` validated synchronously on `input`, which changed internal state and triggered a re-render while the controlled `value` was still the previous one. Because React re-applies the `value` on every commit of a `select`, that re-render discarded the selection before `change` was dispatched — so controlled `required` selects never received the new value. Validation now runs once the value has been propagated.
48
+ - A browser dispatches `input` and `change` for a `select` in separate tasks. `DBSelect` validated synchronously on `input`, which changed internal state and triggered a re-render while the controlled `value` was still the previous one. Because React re-applies the `value` on every commit of a `select`, that re-render discarded the selection before `change` was dispatched — so controlled `required` selects never received the new value. Validation now runs once the value has been propagated.
26
49
 
27
50
  - fix(DBSwitch): icon no longer bleeds through a closed popover - [see commit 6d4deb5](https://github.com/db-ux-design-system/core-web/commit/6d4deb54cff50c36b45b3ea9b6331b333d072845)
28
51
 
@@ -0,0 +1,20 @@
1
+ import { DBFooterProps } from "./model.js";
2
+ declare var __VLS_1: {};
3
+ type __VLS_Slots = {} & {
4
+ default?: (props: typeof __VLS_1) => any;
5
+ };
6
+ declare const __VLS_base: import("@vue/runtime-core").DefineComponent<DBFooterProps, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<DBFooterProps> & Readonly<{}>, {
7
+ id: string;
8
+ children: any;
9
+ className: string;
10
+ propOverrides: import("../../index.js", { with: { "resolution-mode": "import" } }).PropOverridesType;
11
+ width: import("../../index.js", { with: { "resolution-mode": "import" } }).MaxWidthType;
12
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
13
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
14
+ declare const _default: typeof __VLS_export;
15
+ export default _default;
16
+ type __VLS_WithSlots<T, S> = T & {
17
+ new (): {
18
+ $slots: S;
19
+ };
20
+ };
@@ -0,0 +1 @@
1
+ export { default as DBFooter } from './footer.vue';
@@ -0,0 +1,5 @@
1
+ import type { ContainerWidthProps, GlobalProps, GlobalState } from '../../shared/model.js';
2
+ export type DBFooterDefaultProps = {};
3
+ export type DBFooterProps = DBFooterDefaultProps & GlobalProps & ContainerWidthProps;
4
+ export type DBFooterDefaultState = {};
5
+ export type DBFooterState = DBFooterDefaultState & GlobalState;
@@ -0,0 +1,18 @@
1
+ declare var __VLS_1: {};
2
+ type __VLS_Slots = {} & {
3
+ default?: (props: typeof __VLS_1) => any;
4
+ };
5
+ declare const __VLS_base: import("@vue/runtime-core").DefineComponent<import("../../index.js", { with: { "resolution-mode": "import" } }).GlobalProps, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("../../index.js", { with: { "resolution-mode": "import" } }).GlobalProps> & Readonly<{}>, {
6
+ id: string;
7
+ children: any;
8
+ className: string;
9
+ propOverrides: import("../../index.js", { with: { "resolution-mode": "import" } }).PropOverridesType;
10
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
11
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
14
+ type __VLS_WithSlots<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ };
@@ -0,0 +1 @@
1
+ export { default as DBFooterContent } from './footer-content.vue';
@@ -0,0 +1,5 @@
1
+ import type { GlobalProps, GlobalState } from '../../shared/model.js';
2
+ export type DBFooterContentDefaultProps = {};
3
+ export type DBFooterContentProps = DBFooterContentDefaultProps & GlobalProps;
4
+ export type DBFooterContentDefaultState = {};
5
+ export type DBFooterContentState = DBFooterContentDefaultState & GlobalState;
@@ -0,0 +1,20 @@
1
+ import { DBFooterMetaProps } from "./model.js";
2
+ declare var __VLS_1: {};
3
+ type __VLS_Slots = {} & {
4
+ default?: (props: typeof __VLS_1) => any;
5
+ };
6
+ declare const __VLS_base: import("@vue/runtime-core").DefineComponent<DBFooterMetaProps, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<DBFooterMetaProps> & Readonly<{}>, {
7
+ id: string;
8
+ children: any;
9
+ className: string;
10
+ propOverrides: import("../../index.js", { with: { "resolution-mode": "import" } }).PropOverridesType;
11
+ copyright: string;
12
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
13
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
14
+ declare const _default: typeof __VLS_export;
15
+ export default _default;
16
+ type __VLS_WithSlots<T, S> = T & {
17
+ new (): {
18
+ $slots: S;
19
+ };
20
+ };
@@ -0,0 +1 @@
1
+ export { default as DBFooterMeta } from './footer-meta.vue';
@@ -0,0 +1,12 @@
1
+ import type { GlobalProps, GlobalState } from '../../shared/model.js';
2
+ export type DBFooterMetaDefaultProps = {
3
+ /**
4
+ * Optional copyright holder rendered before the secondary content.
5
+ * The component prepends the copyright symbol, so pass only the holder
6
+ * (and a year if needed), for example `2026 Example Company`.
7
+ */
8
+ copyright?: string;
9
+ };
10
+ export type DBFooterMetaProps = DBFooterMetaDefaultProps & GlobalProps;
11
+ export type DBFooterMetaDefaultState = {};
12
+ export type DBFooterMetaState = DBFooterMetaDefaultState & GlobalState;