Skip to content

Commit 0c6c734

Browse files
committed
Merge branch 'sal/SPARK-64' of https://github.com/StackExchange/Stacks into sal/SPARK-64
2 parents 55559ca + 81a621f commit 0c6c734

File tree

1,213 files changed

+8971
-1716
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,213 files changed

+8971
-1716
lines changed

.changeset/eight-pants-worry.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"@stackoverflow/stacks": minor
3+
"@stackoverflow/stacks-svelte": minor
4+
---
5+
6+
Add Vote component

.changeset/heavy-years-attack.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@stackoverflow/stacks-svelte": minor
3+
---
4+
5+
Made TextInputs value prop bindable

.changeset/lemon-shoes-tease.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
"@stackoverflow/stacks": minor
3+
"@stackoverflow/stacks-svelte": minor
4+
---
5+
6+
Updated checkbox and radio styling in Stacks Classic and documentation for SHINE
7+
`.s-check-control` has been removed
8+
Renamed `.s-check-group` to `.s-form-group`
9+
`.s-checkbox` and `.s-radio` are now expected to be on the container where `.s-check-control` would previously be applied. They are no longer needed on the input itself
10+
Added `.s-checkbox__checkmark` and `.s-radio__checkmark` to Stacks Classic
11+
Added `Checkbox`, `CheckboxGroup`, `Radio`, `RadioGroup` components to Stacks Svelte

.changeset/lovely-hotels-arrive.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"@stackoverflow/stacks": patch
3+
"@stackoverflow/stacks-svelte": minor
4+
---
5+
6+
feat(empty-state): new SHINE styles and Svelte Component
7+
fix(expanding-input): expands correctly now after textarea update

.changeset/pre.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"curvy-candles-clap",
1515
"dirty-snails-obey",
1616
"early-knives-wash",
17+
"eight-pants-worry",
1718
"fine-chefs-write",
1819
"fine-kids-watch",
1920
"fluffy-ways-like",
@@ -22,10 +23,13 @@
2223
"giant-suns-look",
2324
"goofy-toys-attend",
2425
"great-coats-remain",
26+
"heavy-years-attack",
2527
"itchy-spies-cover",
2628
"legal-jobs-marry",
2729
"legal-pianos-own",
2830
"lemon-coins-chew",
31+
"lemon-shoes-tease",
32+
"lovely-hotels-arrive",
2933
"moody-banks-study",
3034
"new-bees-grab",
3135
"nine-wolves-share",
@@ -49,6 +53,7 @@
4953
"thin-days-leave",
5054
"thin-peas-happen",
5155
"thirty-planes-beg",
56+
"true-guests-drive",
5257
"violet-pears-draw",
5358
"witty-wolves-wash",
5459
"young-views-join"

.changeset/true-guests-drive.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@stackoverflow/stacks-svelte": minor
3+
---
4+
5+
Added aria-label and aria-labelledby props to PopoverContent

MIGRATION_GUIDE.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,12 @@
5353
- The variant `Muted` has been removed, `Tonal` has been added
5454
- `s-btn__md` has been removed, `s-btn__lg` has been added
5555

56+
#### Checkbox & Radio
57+
- The `s-checkbox` and `s-radio` classes should now be applied to the container including the `input` and `label`. These classes replace `.s-check-control`
58+
- The `s-checkbox` and `s-radio` classes are no longer needed on the `input` element itself
59+
- The `s-check-group` class has been renamed to `s-form-group`
60+
- Added `.s-checkbox__checkmark` and `.s-radio__checkmark` modifier classes for checkmark-style variants
61+
5662
#### Inputs
5763
- `s-input__md` removed
5864
- `s-input__xl` removed

package-lock.json

Lines changed: 45 additions & 21 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
@@ -30,8 +30,8 @@
3030
"@rollup/plugin-commonjs": "^26.0.1",
3131
"@rollup/plugin-replace": "^6.0.3",
3232
"@stackoverflow/prettier-config": "^1.0.0",
33-
"@stackoverflow/stacks-icons": "^7.0.0-beta.10",
34-
"@stackoverflow/stacks-icons-legacy": "npm:@stackoverflow/stacks-icons@^6.6.1",
33+
"@stackoverflow/stacks-icons": "^7.0.0-beta.14",
34+
"@stackoverflow/stacks-icons-legacy": "npm:@stackoverflow/stacks-icons@^6.9.0",
3535
"@storybook/addon-docs": "^9.1.5",
3636
"@storybook/addon-links": "^9.1.3",
3737
"@storybook/addon-svelte-csf": "^5.0.8",
@@ -85,7 +85,7 @@
8585
"storybook": "^9.1.5",
8686
"stylelint": "^16.25.0",
8787
"stylelint-config-recommended": "^16.0.0",
88-
"stylelint-config-standard": "^38.0.0",
88+
"stylelint-config-standard": "^39.0.1",
8989
"svelte": "^5.39.11",
9090
"svelte-check": "^4.3.3",
9191
"svelte-preprocess": "^6.0.3",

packages/stacks-classic/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# @stackoverflow/stacks
22

3+
## 3.0.0-beta.14
4+
5+
### Minor Changes
6+
7+
- [#2062](https://github.com/StackExchange/Stacks/pull/2062) [`83d21b8`](https://github.com/StackExchange/Stacks/commit/83d21b8cc89fdc8ad2fe4e43ad39fd07a1eca8a0) Thanks [@dancormier](https://github.com/dancormier)! - Add Vote component
8+
9+
- [#2060](https://github.com/StackExchange/Stacks/pull/2060) [`d53cdd1`](https://github.com/StackExchange/Stacks/commit/d53cdd189e6b831ea2db442068b26ab7c281f3b8) Thanks [@ttaylor-stack](https://github.com/ttaylor-stack)! - Updated checkbox and radio styling in Stacks Classic and documentation for SHINE
10+
`.s-check-control` has been removed
11+
Renamed `.s-check-group` to `.s-form-group`
12+
`.s-checkbox` and `.s-radio` are now expected to be on the container where `.s-check-control` would previously be applied. They are no longer needed on the input itself
13+
Added `.s-checkbox__checkmark` and `.s-radio__checkmark` to Stacks Classic
14+
Added `Checkbox`, `CheckboxGroup`, `Radio`, `RadioGroup` components to Stacks Svelte
15+
16+
### Patch Changes
17+
18+
- [#2100](https://github.com/StackExchange/Stacks/pull/2100) [`1407fb5`](https://github.com/StackExchange/Stacks/commit/1407fb512458203d5f9d4dbf40efb0d2b0426062) Thanks [@mukunku](https://github.com/mukunku)! - feat(empty-state): new SHINE styles and Svelte Component
19+
fix(expanding-input): expands correctly now after textarea update
20+
321
## 3.0.0-beta.13
422

523
### Patch Changes

0 commit comments

Comments
 (0)