Skip to content

Commit 370182a

Browse files
authored
Merge branch 'main' into docs-added-further-relevant-websites
2 parents 5de867e + 8f1f19d commit 370182a

File tree

14 files changed

+251
-251
lines changed

14 files changed

+251
-251
lines changed

.github/workflows/99-dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ jobs:
1010
- name: ⏬ Checkout repo
1111
uses: actions/checkout@v4
1212
- name: 🔎 Dependency Review
13-
uses: actions/dependency-review-action@v3
13+
uses: actions/dependency-review-action@v4

docs/research/tabs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
| [Telefonica Mistica](https://github.com/Telefonica/mistica-web) | [tabs](https://brandfactory.telefonica.com/d/iSp7b1DkYygv/n-a#/components/tabs) | `div`, `button role=tab`, no panels |
2020
| [Telekom Scale](https://github.com/telekom/scale) | [tab-navigation](https://telekom.github.io/scale/?path=/docs/components-tab-navigation--text-icon) | `div role=tablist`, `span role=tab`, `div role="tabpanel"` |
2121
| [Washington Post Design System](https://build.washingtonpost.com/) | [tabs](https://build.washingtonpost.com/components/tabs) | `div role=tablist`, `button role=tab`, `div`, alignement, disabled, overflow, !activationMode! |
22-
| [W3C](https://www.w3.org/WAI/ARIA/apg/patterns/) | [tabs pattern](https://w3.org/WAI/https://w3.org/WAI/) | Tabs -> Tablist = set of tab-elements (serves as label for tabpanel) -> activation displays content of tabpanel; aria and role attributes accurately described |
22+
| [W3C](https://www.w3.org/WAI/ARIA/apg/patterns/) | [tabs pattern](https://www.w3.org/WAI/ARIA/apg/patterns/tabs/) | Tabs -> Tablist = set of tab-elements (serves as label for tabpanel) -> activation displays content of tabpanel; aria and role attributes accurately described |
2323

2424
## Conclusion
2525

output/react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
},
2727
"devDependencies": {
2828
"@axe-core/playwright": "^4.8.3",
29-
"@playwright/experimental-ct-react": "1.41.0",
29+
"@playwright/experimental-ct-react": "1.41.1",
3030
"@types/react": "^18.2.48",
3131
"react": "^18.2.0",
3232
"react-dom": "^18.2.0",
33-
"sass": "^1.69.7"
33+
"sass": "^1.70.0"
3434
},
3535
"publishConfig": {
3636
"registry": "https://registry.npmjs.org/",

output/vue/vue3/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@
3131
"test:components": "playwright test -c playwright.config.ts"
3232
},
3333
"dependencies": {
34-
"vue": "^3.4.14"
34+
"vue": "^3.4.15"
3535
},
3636
"devDependencies": {
3737
"@axe-core/playwright": "^4.8.3",
38-
"@playwright/experimental-ct-vue": "1.41.0",
38+
"@playwright/experimental-ct-vue": "1.41.1",
3939
"@vitejs/plugin-vue": "^5.0.3",
40-
"sass": "^1.69.7",
40+
"sass": "^1.70.0",
4141
"typescript": "^5.3.3",
42-
"vite": "^5.0.10",
42+
"vite": "^5.0.12",
4343
"vue-tsc": "^1.8.27"
4444
},
4545
"publishConfig": {

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,13 @@
8282
"devDependencies": {
8383
"@commitlint/cli": "18.4.4",
8484
"@commitlint/config-conventional": "18.4.4",
85-
"@playwright/test": "1.41.0",
85+
"@playwright/test": "1.41.1",
8686
"adm-zip": "0.5.10",
8787
"commander": "^11.1.0",
8888
"cpr": "3.0.1",
8989
"cross-env": "^7.0.3",
9090
"cssnano": "^6.0.3",
91-
"dotenv": "^16.3.1",
91+
"dotenv": "^16.3.2",
9292
"eslint-plugin-prettier": "^5.1.3",
9393
"fs-extra": "^11.2.0",
9494
"glob": "^10.3.10",
@@ -102,7 +102,7 @@
102102
"postcss": "^8.4.33",
103103
"postcss-cli": "^11.0.0",
104104
"prettier": "^3.2.4",
105-
"prettier-plugin-pkg": "0.18.0",
105+
"prettier-plugin-pkg": "0.18.1",
106106
"prettier-plugin-sh": "^0.14.0",
107107
"replace-in-file": "^7.1.0",
108108
"rimraf": "5.0.5",

packages/components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"hygen": "^6.2.11",
5555
"lit": "^3.1.1",
5656
"nodemon": "3.0.3",
57-
"sass": "^1.69.7"
57+
"sass": "^1.70.0"
5858
},
5959
"publishConfig": {
6060
"registry": "https://registry.npmjs.org/",

packages/components/src/components/accordion-item/docs/Angular.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { DBAccordionItemModule } from '@db-ui/ngx-components';
1818

1919
### Use component
2020

21-
#### With Slots
21+
#### With Content Projection
2222

2323
```html app.component.html
2424
<!-- app.component.html -->

packages/foundations/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@
3939
"devDependencies": {
4040
"@zeplin/sdk": "^1.18.0",
4141
"cpr": "3.0.1",
42-
"dotenv": "^16.3.1",
42+
"dotenv": "^16.3.2",
4343
"nodemon": "3.0.3",
44-
"sass": "^1.69.7",
44+
"sass": "^1.70.0",
4545
"style-dictionary": "3.9.2"
4646
},
4747
"publishConfig": {

showcases/angular-showcase/src/app/components/default.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- TODO: Slots not working for nested components? -> Had to copy paste variant-cards... -->
1+
<!-- TODO: Content Projection not working for nested components? -> Had to copy paste variant-cards... -->
22
<db-code-docs
33
*ngIf="variantRef"
44
class="variants-card"

0 commit comments

Comments
 (0)