Skip to content

Commit

Permalink
chore: release (s2-foundations) (#3127)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
2 people authored and castastrophe committed Sep 19, 2024
1 parent 3f56f4f commit a54761d
Show file tree
Hide file tree
Showing 10 changed files with 3,506 additions and 10 deletions.
5 changes: 4 additions & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@
"@spectrum-tools/theme-alignment": "0.0.0"
},
"changesets": [
"afraid-cycles-wash",
"big-hats-happen",
"calm-socks-speak",
"clever-walls-glow",
Expand Down Expand Up @@ -151,6 +152,7 @@
"six-fireants-rule",
"sixty-ears-heal",
"soft-pianos-suffer",
"sour-balloons-begin",
"spicy-meals-smoke",
"strong-hotels-type",
"sweet-zoos-shout",
Expand All @@ -161,6 +163,7 @@
"tiny-stingrays-kneel",
"twenty-jokes-lie",
"weak-bags-run",
"young-ads-argue"
"young-ads-argue",
"young-parents-knock"
]
}
2 changes: 1 addition & 1 deletion .github/actions/file-diff/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ async function run() {
*/
if (isRemoved(headMainSize, baseMainSize)) {
data.push("🚨 deleted, moved, or renamed");
} else if (isNew(headByteSize, baseByteSize)) {
} else if (isNew(headMainSize, baseMainSize)) {
data.push("🎉 new");
} else if (
((Math.abs(difference(headMainSize, baseMainSize))) / 1000) >= 0.001
Expand Down
4 changes: 2 additions & 2 deletions .storybook/guides/color_palette.mdx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Meta, Title } from "@storybook/blocks";
import { ColorPalette, ColorItem, ThemeContainer, Heading } from "../blocks";

import GradientLight from "../assets/gradient-background-light.png";
import GradientDark from "../assets/gradient-background-dark.png";
import GradientLight from "../assets/images/gradient-background-light.png";
import GradientDark from "../assets/images/gradient-background-dark.png";

<Meta title="Design tokens" />
<Title>Design tokens</Title>
Expand Down
2 changes: 1 addition & 1 deletion .storybook/guides/develop.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Meta } from "@storybook/blocks";

import Illustration from "../../assets/spectrum_illustration_2x.png";
import Illustration from "../assets/images/spectrum_illustration_2x.png";

<Meta title="Contributing" />

Expand Down
2 changes: 1 addition & 1 deletion .storybook/guides/s2_migration.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Meta, Title } from "@storybook/blocks";
import { ThemeContainer, Heading } from "../blocks";

import GrayMigrationGuide from "../assets/gray_migration-guide.png";
import GrayMigrationGuide from "../assets/images/gray_migration-guide.png";

<Meta title="Migration guide" />
<Title>Migration guide</Title>
Expand Down
4 changes: 2 additions & 2 deletions .storybook/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default {
},
],
rootDir: "../",
staticDirs: ["../assets"],
staticDirs: ["./assets/images"],
addons: [
{
name: "@storybook/addon-essentials",
Expand Down Expand Up @@ -67,7 +67,7 @@ export default {
const { mergeConfig } = await import("vite");

return mergeConfig(config, {
publicDir: "../assets",
publicDir: "./assets/images",
build: {
sourcemap: configType === "DEVELOPMENT",
manifest: true,
Expand Down
12 changes: 12 additions & 0 deletions components/stepper/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

## 7.0.0-s2-foundations.16

### Major Changes

- [#2786](https://github.com/adobe/spectrum-css/pull/2786) [`5f693f2`](https://github.com/adobe/spectrum-css/commit/5f693f2b000ffe77f1293980bc6006fbc5fa76c0) Thanks [@pfulton](https://github.com/pfulton)! - Stepper bug fixes for S1 and Express variants.

### Patch Changes

- [#2786](https://github.com/adobe/spectrum-css/pull/2786) [`5f693f2`](https://github.com/adobe/spectrum-css/commit/5f693f2b000ffe77f1293980bc6006fbc5fa76c0) Thanks [@pfulton](https://github.com/pfulton)! - Realign structure with original style format

- [#2786](https://github.com/adobe/spectrum-css/pull/2786) [`5f693f2`](https://github.com/adobe/spectrum-css/commit/5f693f2b000ffe77f1293980bc6006fbc5fa76c0) Thanks [@pfulton](https://github.com/pfulton)! - Add separate variable for stepper button border width

## 7.0.0-s2-foundations.15

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion components/stepper/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@spectrum-css/stepper",
"version": "7.0.0-s2-foundations.15",
"version": "7.0.0-s2-foundations.16",
"description": "The Spectrum CSS stepper component",
"license": "Apache-2.0",
"author": "Adobe",
Expand Down
2 changes: 1 addition & 1 deletion stylelint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ module.exports = {
},
},
{
files: ["site/**/*.css", ".storybook/assets/*.css"],
files: [".storybook/assets/*.css"],
rules: {
"custom-property-pattern": null,
"color-function-notation": null,
Expand Down
3,481 changes: 3,481 additions & 0 deletions tokens/dist/index.css

Large diffs are not rendered by default.

0 comments on commit a54761d

Please sign in to comment.