You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| 🔄 renamed `db-alert` to `db-notification`| renamed `alert` to `notification` and add/changed some additional properties | 1. Replace `DBAlert`, `db-alert` by `DBNotification` / `db-notification`<br/>2. `Link` was removed, add a normal `a` or `DBLink` to the `slotLink`<br/>3. `props.type` has been changed to `props.variant`<br/>4. `onClick` has been changed to `onClose`|
38
38
| 🔄 renamed `db-main-navigation` to `db-navigation`| renamed `main-navigation` to `navigation`| Replace `DBMainNavigation`, `db-main-navigation` by `DBNavigation` / `db-navigation`|
39
-
| 🔄 changed `db-button` variants | We renamed the variants for the button |`primary` ➡ `brand`<br/>`solid` ➡ `filled`<br/>`text` ➡ `ghost`|
40
-
| 🔄 changed `db-card` elevation | We replaced the box-shadow elevation with bg-level | 1. `props.elevation` ➡ `props.elevationLevel` (1,2,3) <br/>2. `props.variant` ➡ `props.behaviour` <br/>3. Removed card-image |
39
+
| 🔄 changed `db-button` variants | We renamed the variants for the button |`primary` ➡ `brand`<br/>`solid` ➡ `filled`<br/>`text` ➡ `ghost`|
40
+
| 🔄 changed `db-card` elevation | We replaced the box-shadow elevation with bg-level | 1. `props.elevation` ➡ `props.elevationLevel` (1,2,3) <br/>2. `props.variant` ➡ `props.behaviour` <br/>3. Removed card-image |
41
41
| 🆕 valid/invalid message form-components | We add additional messages for `required` form-components like `DBInput` etc. | Use `validMessage="XXX"` and `invalidMessage="XXX"` to display the required information for form-components. Otherwise you will see a default message with a `TODO: ...`|
42
-
| 🔄 changed `db-link` variant | We renamed the variants for the link |`primary` ➡ `brand`|
42
+
| 🔄 changed `db-link` variant | We renamed the variants for the link |`primary` ➡ `brand`|
43
43
| ❌ removed `data-variant="information/critical/..."` for form-components like `input`, `select` and `textarea`| We don't support the colors changes anymore. Use `required`, `pattern`, `min` etc. to trigger `user-valid` for green and red components |`data-variant` changes the label variant now |
44
44
| 🔄 changed `db-accordion` title | We replaced `title` with `headlinePlain` because there is already a html default `title`, which caused trouble | Rename `title` to `headlinePlain` or use the slot `headline`|
45
45
| ❌ removed prop `areaPopup` from `db-navigation-item`| We no longer support opening sub-navigations from via prop. | There is no alternative at the moment. |
| 🔄 renamed `size` & `variant` in `db-section`| The properties `size` and `variant` in `db-section` were renamed to `spacing` & `width` to align it with other components | Search for every `db-section` and replace `size` with `spacing` and `variant` with `width`|
- enabled [`@db-ux/agent-cli`](https://www.npmjs.com/package/@db-ux/agent-cli) for every package - [see commit 0233048](https://github.com/db-ux-design-system/core-web/commit/023304869e61f5a506dca66a22d69e5f3d70f4d0):
58
-
- auto-generate/auto-update `.github/copilot-instructions.md`, to ensure GitHub Copilot uses DB UX Components for code generation
57
+
- auto-generate/auto-update `.github/copilot-instructions.md`, to ensure GitHub Copilot uses DB UX Components for code generation
Copy file name to clipboardExpand all lines: packages/components/CHANGELOG.md
+15-15Lines changed: 15 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,14 +21,14 @@ _version bump_
21
21
- refactor(notification): update and simplify grid layout for block link variant - [see commit cb83f96](https://github.com/db-ux-design-system/core-web/commit/cb83f966eaf29c85b4cf0079750bdd563f216d6e)
- An event listener is now added for every form component (input, custom-select, etc.) when a `form` property is passed.
30
-
- This listener detects form resets and updates the component's internal value/checked state accordingly.
31
-
-> **Note**: This does not work for `ngModel` in Angular.
29
+
- An event listener is now added for every form component (input, custom-select, etc.) when a `form` property is passed.
30
+
- This listener detects form resets and updates the component's internal value/checked state accordingly.
31
+
-> **Note**: This does not work for `ngModel` in Angular.
32
32
33
33
- fix(button): Replace fixed height with min-height for buttons to allow dynamic height adjustment when text wraps - [see commit d1fd2c4](https://github.com/db-ux-design-system/core-web/commit/d1fd2c4e58a5ed6f75fab44700cd2d93c7232474)
- fix(card): Remove the obsolete but harmful declaration regarding wrapping button and link styles. - [see commit 34c78df](https://github.com/db-ux-design-system/core-web/commit/34c78dffd4f43b0ac740574358b426a562e05cd0)
- This update resolves an issue where navigation arrows in DBTabs would not appear or update correctly when the window was resized. The component now properly responds to resize events, ensuring arrows are always shown or hidden as needed.
90
+
- This update resolves an issue where navigation arrows in DBTabs would not appear or update correctly when the window was resized. The component now properly responds to resize events, ensuring arrows are always shown or hidden as needed.
- enabled [`@db-ux/agent-cli`](https://www.npmjs.com/package/@db-ux/agent-cli) for every package - [see commit 0233048](https://github.com/db-ux-design-system/core-web/commit/023304869e61f5a506dca66a22d69e5f3d70f4d0):
95
-
- auto-generate/auto-update `.github/copilot-instructions.md`, to ensure GitHub Copilot uses DB UX Components for code generation
95
+
- auto-generate/auto-update `.github/copilot-instructions.md`, to ensure GitHub Copilot uses DB UX Components for code generation
96
96
97
97
## 3.1.17
98
98
99
99
### Patch Changes
100
100
101
101
- fix: color mode for textarea resizer control set by color-mode-switch documentation UI component - [see commit 354e270](https://github.com/db-ux-design-system/core-web/commit/354e27029a4378288a97ed5e31b75c11758f0c01)
102
102
- refactor: enabling `hidden` HTML attribute in every context in which we need to set overwriting styling declarations (`display`) - [see commit 4826455](https://github.com/db-ux-design-system/core-web/commit/4826455637590b6ae780afb93abb9effe9380342)
103
-
-@db-ux/core-foundations@3.1.17
103
+
-@db-ux/core-foundations@3.1.17
104
104
105
105
## 3.1.16
106
106
107
107
### Patch Changes
108
108
109
109
- a28eb71: fix(custom-select): keyboard navigation for option groups in single-select mode - [see commit 6d60bab](https://github.com/db-ux-design-system/core-web/commit/6d60bab2eb87f16a9ffa942085bffd658564769c):
110
-
- Fixes a keyboard accessibility issue where users could not navigate to options in subsequent option groups using arrow keys in single-select mode.
111
-
- Now, all options are accessible via keyboard regardless of group boundaries.
110
+
- Fixes a keyboard accessibility issue where users could not navigate to options in subsequent option groups using arrow keys in single-select mode.
111
+
- Now, all options are accessible via keyboard regardless of group boundaries.
- fix(tailwind): add individual color theme files for all color variants - [see commit e8d58bd](https://github.com/db-ux-design-system/core-web/commit/e8d58bde01039a3d233105c2c72efa71c619c4b4):
36
-
- Create separate CSS files for each color
37
-
- Move colors.css to colors/ subdirectory with adaptive theme
38
-
- Add colors/index.css that imports all color variants
39
-
- Update theme/index.css to import from colors/index.css
40
-
- burgundy
41
-
- critical
42
-
- cyan
43
-
- green
44
-
- informational
45
-
- light-green
46
-
- neutral
47
-
- orange
48
-
- pink
49
-
- red
50
-
- successful
51
-
- turquoise
52
-
- violet
53
-
- warning
54
-
- yellow
35
+
- Create separate CSS files for each color
36
+
- Move colors.css to colors/ subdirectory with adaptive theme
37
+
- Add colors/index.css that imports all color variants
38
+
- Update theme/index.css to import from colors/index.css
39
+
- burgundy
40
+
- critical
41
+
- cyan
42
+
- green
43
+
- informational
44
+
- light-green
45
+
- neutral
46
+
- orange
47
+
- pink
48
+
- red
49
+
- successful
50
+
- turquoise
51
+
- violet
52
+
- warning
53
+
- yellow
55
54
56
55
## 4.0.1
57
56
@@ -78,7 +77,7 @@ _version bump_
78
77
### Patch Changes
79
78
80
79
- enabled [`@db-ux/agent-cli`](https://www.npmjs.com/package/@db-ux/agent-cli) for every package - [see commit 0233048](https://github.com/db-ux-design-system/core-web/commit/023304869e61f5a506dca66a22d69e5f3d70f4d0):
81
-
- auto-generate/auto-update `.github/copilot-instructions.md`, to ensure GitHub Copilot uses DB UX Components for code generation
80
+
- auto-generate/auto-update `.github/copilot-instructions.md`, to ensure GitHub Copilot uses DB UX Components for code generation
0 commit comments