Skip to content

Commit 7740180

Browse files
authored
Merge branch 'main' into copilot/fix-h1-visibility-test
2 parents 7a11be2 + 0df4553 commit 7740180

File tree

48 files changed

+1170
-601
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1170
-601
lines changed

docs/migration/alpha-beta.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ The prop labelVariant for form-components (input, checkbox, ...) has been rename
3636
| -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
3737
| 🔄 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` |
3838
| 🔄 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 |
4141
| 🆕 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` |
4343
| ❌ 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 |
4444
| 🔄 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` |
4545
| ❌ removed prop `areaPopup` from `db-navigation-item` | We no longer support opening sub-navigations from via prop. | There is no alternative at the moment. |
46-
| 🔄 changed `db-header` slot names | The slot names for "action" containers changed | 1. `callToAction``primaryAction` <br/>2. `actionBar``secondaryAction` |
46+
| 🔄 changed `db-header` slot names | The slot names for "action" containers changed | 1. `callToAction``primaryAction` <br/>2. `actionBar``secondaryAction` |
4747
| 🔄 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` |
4848

4949
### React

output/angular/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @db-ux/ngx-core-components
22

3+
## 4.2.3
4+
5+
### Patch Changes
6+
7+
- fix(SASS): return typed values from scss functions `px-to-rem` and `px-to-em` instead of strings - [see commit e1be60a](https://github.com/db-ux-design-system/core-web/commit/e1be60a871596107d8026390b194f0730c84a8ad)
8+
9+
- refactor(css): replacing slow selector - [see commit 1133c21](https://github.com/db-ux-design-system/core-web/commit/1133c216ab5ec802241c6986fc9287ff22a287b0)
10+
11+
- fix: DBSection ignoring `id` prop during SSR - [see commit 254a705](https://github.com/db-ux-design-system/core-web/commit/254a70507422b070c35b69487323b797de3c73a9)
12+
13+
- fix(textarea): "responsiveness" due to CSS selector - [see commit c1104df](https://github.com/db-ux-design-system/core-web/commit/c1104dfe242a455ea8cf80716322a591e6e6e109)
14+
315
## 4.2.2
416

517
### Patch Changes

output/angular/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@db-ux/ngx-core-components",
3-
"version": "4.2.2",
3+
"version": "4.2.3",
44
"description": "Angular components @db-ux/core-components",
55
"type": "module",
66
"repository": {
@@ -27,7 +27,7 @@
2727
"access": "public"
2828
},
2929
"dependencies": {
30-
"@db-ux/core-components": "4.2.2",
31-
"@db-ux/core-foundations": "4.2.2"
30+
"@db-ux/core-components": "4.2.3",
31+
"@db-ux/core-foundations": "4.2.3"
3232
}
3333
}

output/react/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @db-ux/react-core-components
22

3+
## 4.2.3
4+
5+
### Patch Changes
6+
7+
- fix(SASS): return typed values from scss functions `px-to-rem` and `px-to-em` instead of strings - [see commit e1be60a](https://github.com/db-ux-design-system/core-web/commit/e1be60a871596107d8026390b194f0730c84a8ad)
8+
9+
- refactor(css): replacing slow selector - [see commit 1133c21](https://github.com/db-ux-design-system/core-web/commit/1133c216ab5ec802241c6986fc9287ff22a287b0)
10+
11+
- fix: DBSection ignoring `id` prop during SSR - [see commit 254a705](https://github.com/db-ux-design-system/core-web/commit/254a70507422b070c35b69487323b797de3c73a9)
12+
13+
- fix(textarea): "responsiveness" due to CSS selector - [see commit c1104df](https://github.com/db-ux-design-system/core-web/commit/c1104dfe242a455ea8cf80716322a591e6e6e109)
14+
315
## 4.2.2
416

517
### Patch Changes

output/react/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@db-ux/react-core-components",
3-
"version": "4.2.2",
3+
"version": "4.2.3",
44
"description": "React components for @db-ux/core-components",
55
"repository": {
66
"type": "git",
@@ -42,7 +42,7 @@
4242
},
4343
"sideEffects": false,
4444
"dependencies": {
45-
"@db-ux/core-components": "4.2.2",
46-
"@db-ux/core-foundations": "4.2.2"
45+
"@db-ux/core-components": "4.2.3",
46+
"@db-ux/core-foundations": "4.2.3"
4747
}
4848
}

output/stencil/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @db-ux/wc-core-components
22

3+
## 4.2.3
4+
5+
### Patch Changes
6+
7+
- fix(SASS): return typed values from scss functions `px-to-rem` and `px-to-em` instead of strings - [see commit e1be60a](https://github.com/db-ux-design-system/core-web/commit/e1be60a871596107d8026390b194f0730c84a8ad)
8+
9+
- refactor(css): replacing slow selector - [see commit 1133c21](https://github.com/db-ux-design-system/core-web/commit/1133c216ab5ec802241c6986fc9287ff22a287b0)
10+
11+
- fix: DBSection ignoring `id` prop during SSR - [see commit 254a705](https://github.com/db-ux-design-system/core-web/commit/254a70507422b070c35b69487323b797de3c73a9)
12+
13+
- fix(textarea): "responsiveness" due to CSS selector - [see commit c1104df](https://github.com/db-ux-design-system/core-web/commit/c1104dfe242a455ea8cf80716322a591e6e6e109)
14+
315
## 4.2.2
416

517
### Patch Changes

output/stencil/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@db-ux/wc-core-components",
3-
"version": "4.2.2",
3+
"version": "4.2.3",
44
"description": "Stencil components for @db-ux/core-components",
55
"repository": {
66
"type": "git",
@@ -47,7 +47,7 @@
4747
"web-types": "./dist/web-types.json",
4848
"customElements": "dist/custom-elements.json",
4949
"dependencies": {
50-
"@db-ux/core-components": "4.2.2",
51-
"@db-ux/core-foundations": "4.2.2"
50+
"@db-ux/core-components": "4.2.3",
51+
"@db-ux/core-foundations": "4.2.3"
5252
}
5353
}

output/vue/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @db-ux/v-core-components
22

3+
## 4.2.3
4+
5+
### Patch Changes
6+
7+
- fix(SASS): return typed values from scss functions `px-to-rem` and `px-to-em` instead of strings - [see commit e1be60a](https://github.com/db-ux-design-system/core-web/commit/e1be60a871596107d8026390b194f0730c84a8ad)
8+
9+
- refactor(css): replacing slow selector - [see commit 1133c21](https://github.com/db-ux-design-system/core-web/commit/1133c216ab5ec802241c6986fc9287ff22a287b0)
10+
11+
- fix: DBSection ignoring `id` prop during SSR - [see commit 254a705](https://github.com/db-ux-design-system/core-web/commit/254a70507422b070c35b69487323b797de3c73a9)
12+
13+
- fix(textarea): "responsiveness" due to CSS selector - [see commit c1104df](https://github.com/db-ux-design-system/core-web/commit/c1104dfe242a455ea8cf80716322a591e6e6e109)
14+
315
## 4.2.2
416

517
### Patch Changes

output/vue/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@db-ux/v-core-components",
3-
"version": "4.2.2",
3+
"version": "4.2.3",
44
"type": "module",
55
"description": "Vue components for @db-ux/core-components",
66
"repository": {
@@ -44,9 +44,9 @@
4444
"@playwright/experimental-ct-vue": "1.56.1",
4545
"@vitejs/plugin-vue": "6.0.1",
4646
"replace-in-file": "8.3.0",
47-
"tsx": "4.20.6",
47+
"tsx": "4.21.0",
4848
"typescript": "5.9.3",
49-
"vite": "7.2.4",
49+
"vite": "7.2.6",
5050
"vue": "3.5.24",
5151
"vue-tsc": "3.1.3"
5252
},
@@ -57,7 +57,7 @@
5757
"sideEffects": false,
5858
"source": "src/index.ts",
5959
"dependencies": {
60-
"@db-ux/core-components": "4.2.2",
61-
"@db-ux/core-foundations": "4.2.2"
60+
"@db-ux/core-components": "4.2.3",
61+
"@db-ux/core-foundations": "4.2.3"
6262
}
6363
}

0 commit comments

Comments
 (0)