@db-ux/v-core-components 4.5.3 → 4.5.4
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,10 +1,19 @@
|
|
|
1
1
|
# @db-ux/v-core-components
|
|
2
2
|
|
|
3
|
+
## 4.5.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- refactor: Enhance the accessibility of the navigation components by adding missing WAI-ARIA attributes (`aria-controls`, `aria-label`, `aria-haspopup`) for better screen reader support. - [see commit f040188](https://github.com/db-ux-design-system/core-web/commit/f0401886267359518c37062373bb0f9df311214c)
|
|
8
|
+
|
|
9
|
+
- fix: adjusted `@media` queries (removed `screen` from combined queries) to avoid broken layouts when printing - [see commit 0960eb6](https://github.com/db-ux-design-system/core-web/commit/0960eb6f9223fe23bdaac0de685cf7aa5eb7654e)
|
|
10
|
+
|
|
11
|
+
- fix(switch): removed obsolete gap towards label in `small` variant - [see commit 40bad01](https://github.com/db-ux-design-system/core-web/commit/40bad017f068bf8968829977808a6d8e9d21b4fe)
|
|
12
|
+
|
|
3
13
|
## 4.5.3
|
|
4
14
|
|
|
5
15
|
_version bump_
|
|
6
16
|
|
|
7
|
-
|
|
8
17
|
## 4.5.2
|
|
9
18
|
|
|
10
19
|
### Patch Changes
|
|
@@ -29,5 +29,7 @@ export type DBNavigationItemDefaultState = {
|
|
|
29
29
|
hasSubNavigation?: boolean;
|
|
30
30
|
navigationItemSafeTriangle?: NavigationItemSafeTriangle;
|
|
31
31
|
autoClose?: boolean;
|
|
32
|
+
subNavigationId?: string;
|
|
33
|
+
subNavigationToggleId?: string;
|
|
32
34
|
};
|
|
33
35
|
export type DBNavigationItemState = DBNavigationItemDefaultState & ClickEventState<HTMLButtonElement> & GlobalState & InitializedState & NavigationBehaviorState;
|