Skip to content

Commit a447b50

Browse files
authored
Merge branch 'main' into copilot/fix-4724
2 parents 54b317a + 7d0394d commit a447b50

File tree

17 files changed

+308
-294
lines changed

17 files changed

+308
-294
lines changed

.changeset/modern-doors-give.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
"@db-ux/core-components": patch
3+
"@db-ux/ngx-core-components": patch
4+
"@db-ux/react-core-components": patch
5+
"@db-ux/v-core-components": patch
6+
"@db-ux/wc-core-components": patch
7+
---
8+
9+
fix(custom-select): keyboard focus ring appears on mouse interaction

.github/copilot-instructions.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,8 @@ npm run generate:component # Generate new component scaffolding
172172
173173
## Development Workflows
174174
175+
If possible, start by writing a test that you could use to verify your solution, as well as we could use for ongoing regression testing throughout the product's development.
176+
175177
### Adding a New Component
176178
1. `npm run generate:component` - Follow interactive prompts
177179
2. Implement component in `packages/components/src/components/[name]/`

.github/workflows/99-auto-merge.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ jobs:
2020
PR_URL: ${{github.event.pull_request.html_url}}
2121
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
2222

23+
- name: 🐛 Debug update-type output
24+
run: echo "Update type is '${{ steps.metadata.outputs.update-type }}'"
25+
2326
- name: 🤖 Enable auto-merge for Dependabot PRs
2427
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
2528
run: gh pr merge --auto --squash "$PR_URL"

.github/workflows/99-codeql-analysis.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/workflows/default.yml

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -191,12 +191,17 @@ jobs:
191191

192192
regenerate-snapshots:
193193
if: |
194-
needs.test-showcase-angular.outputs.aria-snapshots-changed == 'true' ||
195-
needs.test-showcase-angular.outputs.visual-snapshots-changed == 'true' ||
196-
needs.test-showcase-react.outputs.aria-snapshots-changed == 'true' ||
197-
needs.test-showcase-react.outputs.visual-snapshots-changed == 'true' ||
198-
needs.test-showcase-vue.outputs.aria-snapshots-changed == 'true' ||
199-
needs.test-showcase-vue.outputs.visual-snapshots-changed == 'true'
194+
always() && (
195+
needs.test-showcase-angular.result == 'failure' ||
196+
needs.test-showcase-react.result == 'failure' ||
197+
needs.test-showcase-vue.result == 'failure' ||
198+
needs.test-showcase-angular.outputs.aria-snapshots-changed == 'true' ||
199+
needs.test-showcase-angular.outputs.visual-snapshots-changed == 'true' ||
200+
needs.test-showcase-react.outputs.aria-snapshots-changed == 'true' ||
201+
needs.test-showcase-react.outputs.visual-snapshots-changed == 'true' ||
202+
needs.test-showcase-vue.outputs.aria-snapshots-changed == 'true' ||
203+
needs.test-showcase-vue.outputs.visual-snapshots-changed == 'true'
204+
)
200205
uses: ./.github/workflows/02-e2e-regenerate.yml
201206
with:
202207
version: ${{ needs.get-playwright-version.outputs.version }}
@@ -212,7 +217,11 @@ jobs:
212217
commit-regenerated-snapshots:
213218
uses: ./.github/workflows/02-e2e-regenerated-snapshots-commit.yml
214219
secrets: inherit
215-
if: always()
220+
if: |
221+
needs.regenerate-snapshots-components.result == 'success' ||
222+
needs.regenerate-snapshots-foundations.result == 'success' ||
223+
needs.regenerate-snapshots-patternhub.result == 'success' ||
224+
needs.regenerate-snapshots.result == 'success'
216225
needs:
217226
[
218227
regenerate-snapshots-components,

.github/workflows/pull-request.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ jobs:
1919
uses: ./.github/workflows/99-self-healing-dependabot-updates.yml
2020
secrets: inherit
2121

22-
codeql:
23-
uses: ./.github/workflows/99-codeql-analysis.yml
24-
2522
dependency-review:
2623
uses: ./.github/workflows/99-dependency-review.yml
2724

output/vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"replace-in-file": "8.3.0",
4343
"tsx": "4.20.5",
4444
"typescript": "5.8.3",
45-
"vite": "6.3.5",
45+
"vite": "6.3.6",
4646
"vue": "3.5.21",
4747
"vue-tsc": "3.0.6"
4848
},

0 commit comments

Comments
 (0)