Skip to content

Commit 64ade40

Browse files
Merge branch 'main' into fix-preserve-whitespaces-infotext
2 parents 2f714e6 + a7b05c5 commit 64ade40

File tree

13 files changed

+47
-43
lines changed

13 files changed

+47
-43
lines changed

.github/workflows/02-e2e-regenerate.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,31 +83,31 @@ jobs:
8383
fi
8484
8585
- name: 🆙 Upload components
86-
if: always() && inputs.type == 'components'
86+
if: ${{ !cancelled() && inputs.type == 'components' }}
8787
uses: actions/upload-artifact@v4
8888
with:
8989
name: snapshots-${{ inputs.type }}
9090
path: ./__snapshots__/*/component
9191
retention-days: 7
9292

9393
- name: 🆙 Upload foundations
94-
if: always() && inputs.type == 'foundations'
94+
if: ${{ !cancelled() && inputs.type == 'foundations' }}
9595
uses: actions/upload-artifact@v4
9696
with:
9797
name: snapshots-${{ inputs.type }}
9898
path: ./__snapshots__/foundations
9999
retention-days: 7
100100

101101
- name: 🆙 Upload patternhub
102-
if: always() && inputs.type == 'patternhub'
102+
if: ${{ !cancelled() && inputs.type == 'patternhub' }}
103103
uses: actions/upload-artifact@v4
104104
with:
105105
name: snapshots-${{ inputs.type }}
106106
path: ./__snapshots__/*/patternhub
107107
retention-days: 7
108108

109109
- name: 🆙 Upload showcase
110-
if: always() && inputs.type == 'showcases'
110+
if: ${{ !cancelled() && inputs.type == 'showcases' }}
111111
uses: actions/upload-artifact@v4
112112
with:
113113
name: snapshots-${{ inputs.type }}

.github/workflows/default.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -150,23 +150,23 @@ jobs:
150150
path: ${{ needs.build-showcase-patternhub.outputs.path }}
151151

152152
regenerate-snapshots-components:
153-
if: always() && needs.test-components.result == 'failure'
153+
if: ${{ !cancelled() && needs.test-components.result == 'failure' }}
154154
uses: ./.github/workflows/02-e2e-regenerate.yml
155155
with:
156156
version: ${{ needs.get-playwright-version.outputs.version }}
157157
type: components
158158
needs: [test-components, get-playwright-version]
159159

160160
regenerate-snapshots-foundations:
161-
if: always() && needs.test-foundations.result == 'failure'
161+
if: ${{ !cancelled() && needs.test-foundations.result == 'failure' }}
162162
uses: ./.github/workflows/02-e2e-regenerate.yml
163163
with:
164164
version: ${{ needs.get-playwright-version.outputs.version }}
165165
type: foundations
166166
needs: [test-foundations, get-playwright-version]
167167

168168
regenerate-snapshots-patternhub:
169-
if: always() && needs.test-showcase-patternhub.result == 'failure'
169+
if: ${{ !cancelled() && needs.test-showcase-patternhub.result == 'failure' }}
170170
uses: ./.github/workflows/02-e2e-regenerate.yml
171171
with:
172172
version: ${{ needs.get-playwright-version.outputs.version }}
@@ -191,7 +191,7 @@ jobs:
191191

192192
regenerate-snapshots:
193193
if: |
194-
always() && (
194+
!cancelled() && (
195195
needs.test-showcase-angular.result == 'failure' ||
196196
needs.test-showcase-react.result == 'failure' ||
197197
needs.test-showcase-vue.result == 'failure' ||
@@ -238,7 +238,7 @@ jobs:
238238
patternhub: ${{ needs.regenerate-snapshots-patternhub.result == 'success' }}
239239

240240
checks-done:
241-
if: ${{ always() }}
241+
if: ${{ !cancelled() }}
242242
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
243243
steps:
244244
- name: 🎉 Checks done

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
version: ${{ needs.get-playwright-version.outputs.version }}
144144

145145
checks-done:
146-
if: ${{ always() }}
146+
if: ${{ !cancelled() }}
147147
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
148148
steps:
149149
- name: 🎉 Checks done

package-lock.json

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
"postcss": "8.5.6",
123123
"postcss-cli": "11.0.1",
124124
"prettier": "3.6.2",
125-
"prettier-plugin-organize-imports": "4.2.0",
125+
"prettier-plugin-organize-imports": "4.3.0",
126126
"prettier-plugin-pkg": "0.21.2",
127127
"replace-in-file": "8.3.0",
128128
"rimraf": "6.0.1",

packages/foundations/docs/BrowserSupport.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ This may leave some older browser versions behind. If you need to take care of t
1717

1818
The following functionality relies on JavaScript for support in browsers that do not support it yet. Other solutions would be PostCSS preprocessing (planned) and declaring CSS declarations twice, both in the new and old ways (e.g., semantic overflow).
1919

20-
| Web Feature | Google Chrome | Mozilla Firefox | Apple Safari |
21-
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------- | ---------------- | -------------------------------------------------------------------------------------------------------------------- |
22-
| [semantic overflow (`overflow-block` and `overflow-inline`)](https://caniuse.com/mdn-css_properties_overflow-block) | 135 (01.04.2026) | 69 (03.09.2019) | 26 |
23-
| [`@property` / typed CSS Custom Properties](https://developer.mozilla.org/en-US/docs/Web/CSS/@property) | 85 (25.08.2022) | 128 (09.07.2024) | 16.4 (27.03.2023) |
24-
| [`light-dark()` CSS function](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/light-dark) | 123 (19.03.2024) | 120 (21.11.2023) | 17.5 (13.05.2024) |
25-
| [`style()` container queries for custom properties](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_containment/Container_size_and_style_queries#container_style_queries) (planned) | 111 (07.03.2023) | _behind a flag_ | 18 (16.09.2024) |
26-
| [Anchor Positioning](https://caniuse.com/css-anchor-positioning) (planned) | 125 (14.05.2024) | tbd | ["this fall"](https://webkit.org/blog/16993/news-from-wwdc25-web-technology-coming-this-fall-in-safari-26-beta/#css) |
27-
| [Invoker Commands](https://caniuse.com/mdn-html_elements_button_commandfor) (planned) | 135 (01.04.2025) | 144 (14.10.2025) | Technology Preview (211), enabled by default |
28-
| [`attr()` CSS Values 5 extensions](https://developer.mozilla.org/en-US/docs/Web/CSS/attr) (planned) | 133 (04.02.2025) | tbd | tbd |
29-
| [CSS Custom Functions](https://www.bram.us/2025/02/09/css-custom-functions-teaser/) (planned) | 139 (30.07.2025) | tbd | tbd |
20+
| Web Feature | Google Chrome | Mozilla Firefox | Apple Safari |
21+
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------- | ---------------- | -------------------------------------------- |
22+
| [semantic overflow (`overflow-block` and `overflow-inline`)](https://caniuse.com/mdn-css_properties_overflow-block) | 135 (01.04.2026) | 69 (03.09.2019) | 26 |
23+
| [`@property` / typed CSS Custom Properties](https://developer.mozilla.org/en-US/docs/Web/CSS/@property) | 85 (25.08.2022) | 128 (09.07.2024) | 16.4 (27.03.2023) |
24+
| [`light-dark()` CSS function](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/light-dark) | 123 (19.03.2024) | 120 (21.11.2023) | 17.5 (13.05.2024) |
25+
| [`style()` container queries for custom properties](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_containment/Container_size_and_style_queries#container_style_queries) (planned) | 111 (07.03.2023) | _behind a flag_ | 18 (16.09.2024) |
26+
| [Anchor Positioning](https://caniuse.com/css-anchor-positioning) (planned) | 125 (14.05.2024) | tbd | 26 (15.09.2025) |
27+
| [Invoker Commands](https://caniuse.com/mdn-html_elements_button_commandfor) (planned) | 135 (01.04.2025) | 144 (14.10.2025) | Technology Preview (211), enabled by default |
28+
| [`attr()` CSS Values 5 extensions](https://developer.mozilla.org/en-US/docs/Web/CSS/attr) (planned) | 133 (04.02.2025) | tbd | tbd |
29+
| [CSS Custom Functions](https://www.bram.us/2025/02/09/css-custom-functions-teaser/) (planned) | 139 (30.07.2025) | tbd | tbd |
3030

3131
## Stable in evergreen browsers
3232

showcases/angular-showcase/src/app/components/custom-select/custom-select.component.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
[validMessage]="exampleProps?.validMessage"
6262
[validation]="exampleProps?.validation"
6363
(optionSelected)="console.log($event)"
64+
[removeTagsTexts]="exampleProps?.removeTagsTexts"
6465
></db-custom-select>
6566
}
6667
</ng-template>

showcases/angular-ssr-showcase/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
},
1717
"devDependencies": {
1818
"@types/express": "5.0.3",
19-
"@types/node": "24.4.0",
19+
"@types/node": "24.5.2",
2020
"cpr": "3.0.1",
2121
"typescript": "5.8.3"
2222
}

showcases/next-showcase/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"react-dom": "18.3.1"
1818
},
1919
"devDependencies": {
20-
"@types/node": "24.4.0",
20+
"@types/node": "24.5.2",
2121
"@types/react": "18.3.13",
2222
"npm-run-all2": "8.0.4",
2323
"open-cli": "8.0.0",

showcases/patternhub/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"@mdx-js/react": "3.1.1",
3838
"@next/mdx": "15.5.3",
3939
"@types/dompurify": "3.2.0",
40-
"@types/node": "24.4.0",
40+
"@types/node": "24.5.2",
4141
"@types/react": "18.3.13",
4242
"@types/react-dom": "18.3.1",
4343
"esbuild": "0.25.10",

0 commit comments

Comments
 (0)