Skip to content

Commit 5c8b155

Browse files
committed
Merge branch 'beta' into SPARK-147/badge-fix
2 parents 6ebeca0 + aefd939 commit 5c8b155

File tree

592 files changed

+7296
-6271
lines changed

Some content is hidden

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

592 files changed

+7296
-6271
lines changed

.changeset/breezy-sheep-exist.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"@stackoverflow/stacks-utils": patch
3+
"@stackoverflow/stacks-svelte": patch
4+
---
5+
6+
ensure correct module resolution in nodejs

.changeset/cute-parts-glow.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+
Update link component to new SHINE designs
7+
8+
BREAKING CHANGES:
9+
10+
- <a> elements no longer automatically have s-link styling, `s-link` needs to be an explict class of any <a> element that needs the styling
11+
- `block-link` component deleted

.changeset/itchy-tomatoes-grin.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@stackoverflow/stacks": patch
3+
---
4+
5+
patch(badges): Add star icon for new user badges

.changeset/nine-pears-attack.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@stackoverflow/stacks": patch
3+
---
4+
5+
patch(toggle-switch): update to SHINE styles

.changeset/pre.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,14 @@
1313
"beige-cycles-spend",
1414
"blue-regions-give",
1515
"bold-tables-hug",
16+
"breezy-sheep-exist",
1617
"clever-carrots-lie",
1718
"cold-kids-matter",
1819
"cold-months-mix",
1920
"cuddly-shoes-drum",
2021
"cuddly-years-grin",
2122
"curvy-candles-clap",
23+
"cute-parts-glow",
2224
"cute-shirts-wink",
2325
"dirty-snails-obey",
2426
"early-knives-wash",
@@ -38,6 +40,7 @@
3840
"heavy-kiwis-speak",
3941
"heavy-years-attack",
4042
"itchy-spies-cover",
43+
"itchy-tomatoes-grin",
4144
"lazy-teachers-wink",
4245
"legal-jobs-marry",
4346
"legal-pianos-own",
@@ -49,6 +52,7 @@
4952
"new-bees-grab",
5053
"nice-islands-worry",
5154
"nine-gifts-learn",
55+
"nine-pears-attack",
5256
"nine-wolves-share",
5357
"ninety-dogs-pump",
5458
"plain-teams-tell",
@@ -62,16 +66,19 @@
6266
"salty-papers-sneeze",
6367
"seven-comics-cross",
6468
"seven-dryers-smile",
69+
"shaggy-rings-agree",
6570
"sharp-banks-grin",
6671
"sharp-dolls-rule",
6772
"sharp-heads-call",
6873
"silent-camels-shake",
74+
"silent-friends-think",
6975
"silly-spiders-swim",
7076
"smooth-colts-make",
7177
"solid-mugs-jog",
7278
"sour-jobs-collect",
7379
"strong-stamps-occur",
7480
"tall-shrimps-deny",
81+
"ten-sheep-call",
7582
"thin-days-leave",
7683
"thin-peas-happen",
7784
"thirty-planes-beg",

.changeset/silent-friends-think.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"@stackoverflow/stacks": patch
3+
"@stackoverflow/stacks-svelte": patch
4+
---
5+
6+
Replace all static size variables (`--su-static*`) with dynamic ones (`--su*`)

.changeset/ten-sheep-call.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@stackoverflow/stacks": patch
3+
---
4+
5+
patch(navigation): Update vertical nav text color

MIGRATION_GUIDE.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@
3333

3434
### Components
3535

36+
#### Anchors
37+
- Removed `.s-anchors__default` in favor of appling those styles as the default for `.s-anchors`
38+
3639
#### Badge
3740
- `.s-badge__xs` removed
3841
- `.s-badge__filled` removed
@@ -54,6 +57,9 @@
5457
- The Award Bling component has been renamed to Bling.
5558
- Bling no longer accepts children elements besides those for screen readers. Please include any visually represented strings (such as counts) as siblings to the bling component.
5659

60+
#### Block Link
61+
- The Block Link component has been removed.
62+
5763
#### Buttons
5864
- The secondary style `outlined` has been removed i.e. `.s-btn__outlined`
5965
- The default button style is `filled`, use `.s-btn__clear` to use a clear style of a button
@@ -76,6 +82,10 @@
7682
- `s-label__md`, `s-label__xl` removed
7783
- `s-label--status`, `s-label--status__required`, `s-label--status__new`, `s-label--status__beta` removed. Use the new `s-badge` states instead.
7884

85+
#### Link
86+
- <a> elements no longer automatically have s-link styling, `s-link` needs to be an explict class of any <a> element that needs the styling
87+
- `s-link__visited` Removed
88+
7989
#### Loader
8090
- `Spinner` component replaced with new `Loader` component
8191
- `xs` and `xl` sized have been removed, leaving only the default, `sm`, and `lg` sizes
@@ -165,6 +175,10 @@ The Post Summary component has changed dramatically. Please refer to the docs fo
165175
- `s-textarea__md` removed
166176
- `s-textarea__xl` removed
167177

178+
#### Toggle Switch
179+
180+
- `s-toggle-switch--label-off` removed
181+
168182
#### User Card
169183

170184
Markup for the User Card has changed significantly. Please refer to the [docs](https://beta.stackoverflow.design/product/components/user-cards) for full guidance. Here are the most notable class changes:

package-lock.json

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

packages/stacks-classic/CHANGELOG.md

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

3+
## 3.0.0-beta.25
4+
5+
### Patch Changes
6+
7+
- [#2166](https://github.com/StackExchange/Stacks/pull/2166) [`c8fb945`](https://github.com/StackExchange/Stacks/commit/c8fb945af04e5b554ae585c834a8e21d4657d052) Thanks [@mukunku](https://github.com/mukunku)! - patch(toggle-switch): update to SHINE styles
8+
9+
## 3.0.0-beta.24
10+
11+
### Minor Changes
12+
13+
- [#2164](https://github.com/StackExchange/Stacks/pull/2164) [`a710c69`](https://github.com/StackExchange/Stacks/commit/a710c69a5214b7deee41f181ad3a8b2762f6822a) Thanks [@ttaylor-stack](https://github.com/ttaylor-stack)! - Update link component to new SHINE designs
14+
15+
BREAKING CHANGES:
16+
- <a> elements no longer automatically have s-link styling, `s-link` needs to be an explict class of any <a> element that needs the styling
17+
- `block-link` component deleted
18+
19+
- [#2163](https://github.com/StackExchange/Stacks/pull/2163) [`9000f2e`](https://github.com/StackExchange/Stacks/commit/9000f2eb6b2ca40b0e8a4dd4ffd95a6c9748f5c5) Thanks [@giamir](https://github.com/giamir)! - update label component to new SHINE specs
20+
21+
### Patch Changes
22+
23+
- [#2168](https://github.com/StackExchange/Stacks/pull/2168) [`c903ff0`](https://github.com/StackExchange/Stacks/commit/c903ff08d009a4165631a9b3b25e184924363c8a) Thanks [@mukunku](https://github.com/mukunku)! - patch(badges): Add star icon for new user badges
24+
25+
- [#2172](https://github.com/StackExchange/Stacks/pull/2172) [`92cd983`](https://github.com/StackExchange/Stacks/commit/92cd98363e36ffc1133bae2b67e276dc1d057444) Thanks [@dancormier](https://github.com/dancormier)! - Replace all static size variables (`--su-static*`) with dynamic ones (`--su*`)
26+
27+
- [#2171](https://github.com/StackExchange/Stacks/pull/2171) [`c122d46`](https://github.com/StackExchange/Stacks/commit/c122d463b0ca08c928aaeb43b20c99d5144d16a6) Thanks [@mukunku](https://github.com/mukunku)! - patch(navigation): Update vertical nav text color
28+
329
## 3.0.0-beta.23
430

531
### Minor Changes

0 commit comments

Comments
 (0)