@db-ux/v-core-components 5.2.1-shell2-b3d6ca4 → 5.3.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 +26 -0
- package/dist/components/drawer/model.d.ts +0 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @db-ux/v-core-components
|
|
2
2
|
|
|
3
|
+
## 5.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 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
|
|
18
|
+
|
|
19
|
+
- 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.
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- 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.
|
|
26
|
+
|
|
27
|
+
- 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
|
+
|
|
3
29
|
## 5.2.1
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
|
@@ -63,6 +63,5 @@ export type DBDrawerDefaultState = {
|
|
|
63
63
|
isNotModal: () => boolean;
|
|
64
64
|
handleBackdropPointerDown: (event: any) => void;
|
|
65
65
|
backdropPointerDown: boolean;
|
|
66
|
-
_closeTimeoutId?: number;
|
|
67
66
|
};
|
|
68
67
|
export type DBDrawerState = DBDrawerDefaultState & GlobalState & CloseEventState<ClickEvent<HTMLButtonElement | HTMLDialogElement> | GeneralKeyboardEvent<HTMLDialogElement>> & InitializedState;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@db-ux/v-core-components",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.3.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Vue components for @db-ux/core-components",
|
|
6
6
|
"repository": {
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"dist/"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@db-ux/core-components": "5.
|
|
32
|
-
"@db-ux/core-foundations": "5.
|
|
31
|
+
"@db-ux/core-components": "5.3.0",
|
|
32
|
+
"@db-ux/core-foundations": "5.3.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@playwright/experimental-ct-vue": "1.62.1",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"cpr": "3.0.1",
|
|
39
39
|
"npm-run-all2": "9.0.3",
|
|
40
40
|
"replace-in-file": "9.0.0",
|
|
41
|
-
"tsx": "4.23.
|
|
41
|
+
"tsx": "4.23.13",
|
|
42
42
|
"typescript": "5.9.3",
|
|
43
43
|
"vite": "8.2.2",
|
|
44
44
|
"vue": "3.5.42",
|