Skip to content

Commit

Permalink
Merge branch 'main' into refactor-tabs-resilience-for-tab-id-values
Browse files Browse the repository at this point in the history
  • Loading branch information
mfranzke authored Dec 18, 2024
2 parents fae758b + 68a7e95 commit 7936bf3
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .github/actions/npm-cache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ inputs:
nodeVersion:
description: "Node version"
required: false
default: "20"
default: "22"
runs:
using: "composite"
steps:
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20
22
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"deque-systems.vscode-axe-linter",
"samverschueren.linter-xo",
"esbenp.prettier-vscode",
"stylelint.vscode-stylelint"
"stylelint.vscode-stylelint",
"gruntfuggly.todo-tree"
]
}
2 changes: 1 addition & 1 deletion output/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"devDependencies": {
"@playwright/experimental-ct-vue": "1.49.1",
"@vitejs/plugin-vue": "^5.2.0",
"replace-in-file": "^8.2.0",
"replace-in-file": "^8.3.0",
"tsx": "^4.19.2",
"typescript": "^5.4.5",
"vite": "^6.0.3",
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"prettier": "^3.4.2",
"prettier-plugin-pkg": "0.18.1",
"prettier-plugin-sh": "^0.14.0",
"replace-in-file": "^8.2.0",
"replace-in-file": "^8.3.0",
"rimraf": "6.0.1",
"stylelint": "16.12.0",
"stylelint-config-sass-guidelines": "12.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/migration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"dependencies": {
"commander": "^12.0.0",
"glob": "^11.0.0",
"replace-in-file": "^8.2.0"
"replace-in-file": "^8.3.0"
},
"devDependencies": {
"cpr": "3.0.1",
Expand Down
2 changes: 1 addition & 1 deletion scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,6 @@
"@inquirer/prompts": "7.2.0",
"glob": "^11.0.0",
"inquirer": "^12.2.0",
"replace-in-file": "^8.2.0"
"replace-in-file": "^8.3.0"
}
}
16 changes: 8 additions & 8 deletions showcases/patternhub/pages/foundations/colors/color-schemes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ const ColorOverview = () => {
</DBButton>
<section className="color-cards">
{colors.map((color) => (
<div
key={color}
className={`db-${color}-bg-basic-level-1`}>
<DBCard spacing="medium" elevationLevel="3">
<DBCard spacing="medium" elevationLevel="2">
<DBCard spacing="medium">{color}</DBCard>
</DBCard>
<DBCard
spacing="medium"
elevationLevel="3"
className={`db-${color}-bg-basic-level-1`}
key={color}>
<DBCard spacing="medium" elevationLevel="2">
<DBCard spacing="medium">{color}</DBCard>
</DBCard>
</div>
</DBCard>
))}
</section>
</div>
Expand Down

0 comments on commit 7936bf3

Please sign in to comment.