Skip to content

Commit 1f3b341

Browse files
committed
Merge branch 'main' into fix/2671-nested-slots
2 parents 708b223 + d01fc71 commit 1f3b341

File tree

7 files changed

+144
-139
lines changed

7 files changed

+144
-139
lines changed

.changeset/dark-ravens-join.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@sl-design-system/button': patch
3+
---
4+
5+
Fix text color of disabled buttons with a variant

chromatic/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@
4040
}
4141
},
4242
"devDependencies": {
43-
"@storybook/addon-a11y": "^9.1.10",
44-
"@storybook/addon-docs": "^9.1.10",
45-
"@storybook/addon-themes": "^9.1.10",
46-
"@storybook/web-components-vite": "^9.1.10",
43+
"@storybook/addon-a11y": "^9.1.13",
44+
"@storybook/addon-docs": "^9.1.13",
45+
"@storybook/addon-themes": "^9.1.13",
46+
"@storybook/web-components-vite": "^9.1.13",
4747
"lit": "^3.3.1",
48-
"storybook": "^9.1.10",
49-
"storybook-addon-pseudo-states": "^9.1.10",
48+
"storybook": "^9.1.13",
49+
"storybook-addon-pseudo-states": "^9.1.13",
5050
"tslib": "^2.8.1",
5151
"typescript": "^5.5.4",
5252
"wireit": "^0.14.12"

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -457,11 +457,11 @@
457457
"@custom-elements-manifest/analyzer": "^0.10.10",
458458
"@faker-js/faker": "^10.1.0",
459459
"@lit/localize-tools": "^0.8.0",
460-
"@storybook/addon-a11y": "^9.1.10",
461-
"@storybook/addon-docs": "^9.1.10",
462-
"@storybook/addon-vitest": "^9.1.10",
463-
"@storybook/web-components": "^9.1.10",
464-
"@storybook/web-components-vite": "^9.1.10",
460+
"@storybook/addon-a11y": "^9.1.13",
461+
"@storybook/addon-docs": "^9.1.13",
462+
"@storybook/addon-vitest": "^9.1.13",
463+
"@storybook/web-components": "^9.1.13",
464+
"@storybook/web-components-vite": "^9.1.13",
465465
"@types/chai-dom": "^1.11.3",
466466
"@types/sinon": "^17.0.4",
467467
"@types/sinon-chai": "^4.0.0",
@@ -474,15 +474,15 @@
474474
"chromatic": "^13.3.0",
475475
"eslint": "^9.27.0",
476476
"husky": "^9.1.7",
477-
"lint-staged": "^16.2.4",
477+
"lint-staged": "^16.2.5",
478478
"lit": "^3.3.1",
479-
"playwright": "^1.56.0",
479+
"playwright": "^1.56.1",
480480
"sinon": "^21.0.0",
481481
"sinon-chai": "^4.0.1",
482-
"storybook": "^9.1.10",
482+
"storybook": "^9.1.13",
483483
"stylelint": "^16.19.1",
484484
"typescript": "^5.5.4",
485-
"vite": "^7.1.10",
485+
"vite": "^7.1.11",
486486
"vitest": "^3.2.4",
487487
"wireit": "^0.14.12"
488488
}

packages/angular/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@
8686
"@angular/platform-browser": "^19.2.14",
8787
"@angular/platform-browser-dynamic": "^19.2.14",
8888
"@angular/router": "^19.2.14",
89-
"@storybook/angular": "^9.1.10",
90-
"@types/jasmine": "~5.1.10",
89+
"@storybook/angular": "^9.1.13",
90+
"@types/jasmine": "~5.1.12",
9191
"jasmine-core": "~5.12.0",
9292
"karma": "~6.4.4",
9393
"karma-chrome-launcher": "~3.2.0",
@@ -96,7 +96,7 @@
9696
"karma-jasmine-html-reporter": "~2.1.0",
9797
"ng-packagr": "^19.2.2",
9898
"rxjs": "~7.8.2",
99-
"storybook": "^9.1.10",
99+
"storybook": "^9.1.13",
100100
"tslib": "^2.8.1",
101101
"typescript": "~5.5.4",
102102
"wireit": "^0.14.12",

packages/components/button/src/button.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,20 +206,20 @@
206206
pointer-events: none;
207207
}
208208

209-
:host(:where([disabled], [aria-disabled='true'])) {
209+
:host(:is([disabled], [aria-disabled='true'])) {
210210
color: var(--sl-color-foreground-disabled);
211211
cursor: default;
212212
}
213213

214-
:host(:where([disabled], [aria-disabled='true']):where(:not([fill]), [fill='solid'])) {
214+
:host(:is([disabled], [aria-disabled='true']):where(:not([fill]), [fill='solid'])) {
215215
background: var(--sl-color-background-disabled);
216216
}
217217

218-
:host(:where([disabled], [aria-disabled='true']):where([fill='ghost'], [fill='link'], [fill='outline'])) {
218+
:host(:is([disabled], [aria-disabled='true']):where([fill='ghost'], [fill='link'], [fill='outline'])) {
219219
background: transparent;
220220
}
221221

222-
:host(:where([disabled], [aria-disabled='true'])[fill='outline']) {
222+
:host(:is([disabled], [aria-disabled='true'])[fill='outline']) {
223223
border-color: var(--sl-color-border-disabled);
224224
}
225225

tools/eslint-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
},
5252
"devDependencies": {
5353
"eslint": "^9.27.0",
54-
"storybook": "^9.1.10",
54+
"storybook": "^9.1.13",
5555
"typescript": "^5.5.4"
5656
}
5757
}

0 commit comments

Comments
 (0)