diff --git a/.changeset/pre.json b/.changeset/pre.json index c938756f166..b6a7666dbf0 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -18,7 +18,9 @@ "bright-birds-glow", "chilled-spoons-roll", "curly-rivers-arrive", + "dark-birds-dont", "dull-wolves-judge", + "eight-icons-approve", "eleven-cameras-hammer", "fair-bars-smile", "flat-ears-wink", @@ -27,11 +29,14 @@ "fruity-monkeys-cover", "gold-geckos-send", "grumpy-lobsters-obey", + "grumpy-walls-cry", "healthy-laws-walk", "lemon-onions-teach", "lucky-walls-jog", + "mean-kangaroos-count", "nice-cycles-dress", "poor-ducks-attack", + "purple-pigs-check", "quick-queens-rescue", "rare-otters-deliver", "real-cooks-melt", @@ -42,11 +47,13 @@ "slick-gifts-cross", "smart-hornets-happen", "spicy-items-watch", + "stupid-olives-sleep", "styled-react-themeprovider", "tame-eggs-taste", "tasty-suns-behave", "thin-cobras-cry", "tricky-plums-smoke", - "two-pots-battle" + "two-pots-battle", + "wise-baboons-sing" ] } diff --git a/examples/codesandbox/package.json b/examples/codesandbox/package.json index c92e038bedf..4bc2af40ad5 100644 --- a/examples/codesandbox/package.json +++ b/examples/codesandbox/package.json @@ -17,7 +17,7 @@ "@types/react": "^18.3.11", "@types/react-dom": "^18.3.0", "@vitejs/plugin-react": "^4.3.3", - "@primer/react": "38.0.0-rc.8", + "@primer/react": "38.0.0-rc.9", "styled-components": "5.x", "typescript": "^5.9.2", "vite": "^7.1.11" diff --git a/examples/nextjs/package.json b/examples/nextjs/package.json index 558bfc02fed..921f05c4d2d 100644 --- a/examples/nextjs/package.json +++ b/examples/nextjs/package.json @@ -10,8 +10,8 @@ "type-check": "tsc --noEmit" }, "dependencies": { - "@primer/react": "38.0.0-rc.8", - "@primer/styled-react": "1.0.0-rc.9", + "@primer/react": "38.0.0-rc.9", + "@primer/styled-react": "1.0.0-rc.10", "next": "^15.2.3", "react": "18.3.1", "react-dom": "18.3.1", diff --git a/examples/theming/package.json b/examples/theming/package.json index 29cbaf78097..ee8edcc6d62 100644 --- a/examples/theming/package.json +++ b/examples/theming/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@primer/octicons-react": "^19.14.0", - "@primer/react": "38.0.0-rc.8", + "@primer/react": "38.0.0-rc.9", "clsx": "^2.1.1", "next": "^15.2.3", "react": "18.3.1", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index d563c051740..97765b4566d 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,28 @@ # @primer/react +## 38.0.0-rc.9 + +### Major Changes + +- [#7032](https://github.com/primer/react/pull/7032) [`9fce541`](https://github.com/primer/react/commit/9fce5419ce76c94837f2bd4b013f007837a97182) Thanks [@francinelucca](https://github.com/francinelucca)! - - remove sx, SxProp, exports + - add type ThemeColorPaths, type ThemeShadowPaths + +### Minor Changes + +- [#7045](https://github.com/primer/react/pull/7045) [`7595b8d`](https://github.com/primer/react/commit/7595b8d0d534043aeca69f0862a8ffd5c911c50c) Thanks [@langermank](https://github.com/langermank)! - Add new `Banner` `actionsLayout` prop to handle actions layout edge cases + +### Patch Changes + +- [#7020](https://github.com/primer/react/pull/7020) [`aaa2e1f`](https://github.com/primer/react/commit/aaa2e1f5589a862557b6f7d5194e0579bc952c84) Thanks [@hectahertz](https://github.com/hectahertz)! - Fixes `Details` flickering, prevents re-renders + +- [#7008](https://github.com/primer/react/pull/7008) [`ca6d60d`](https://github.com/primer/react/commit/ca6d60d37dcdaec354bbdd097fd8c656971e752b) Thanks [@langermank](https://github.com/langermank)! - Use primitives for Button line-height + +- [#7046](https://github.com/primer/react/pull/7046) [`4ffe66d`](https://github.com/primer/react/commit/4ffe66d0d87c5ab8a3c0d9ef4e9ba571e6d57393) Thanks [@pksjce](https://github.com/pksjce)! - Fix: ActionMenu with overflow contains scrollbars within its rounded border + +- [#7030](https://github.com/primer/react/pull/7030) [`52d6cf7`](https://github.com/primer/react/commit/52d6cf7e7cc2a0f4ea3186ee61412a2a2549b530) Thanks [@francinelucca](https://github.com/francinelucca)! - fix(SelectPanel): remove hidden attribute from selection Radio + +- [#7048](https://github.com/primer/react/pull/7048) [`f4a92f6`](https://github.com/primer/react/commit/f4a92f6d5fab8aee0bebb0b3bd8a400d55dc6cc7) Thanks [@langermank](https://github.com/langermank)! - Adjust Breadcrumb item focus outline + ## 38.0.0-rc.8 ### Major Changes diff --git a/packages/react/package.json b/packages/react/package.json index 4041a358e7a..e77a17bebe3 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,7 +1,7 @@ { "name": "@primer/react", "type": "module", - "version": "38.0.0-rc.8", + "version": "38.0.0-rc.9", "description": "An implementation of GitHub's Primer Design System using React", "main": "./dist/index.js", "module": "./dist/index.js", diff --git a/packages/styled-react/CHANGELOG.md b/packages/styled-react/CHANGELOG.md index 6d6b37790db..ef74568f6e8 100644 --- a/packages/styled-react/CHANGELOG.md +++ b/packages/styled-react/CHANGELOG.md @@ -1,5 +1,14 @@ # @primer/styled-react +## 1.0.0-rc.10 + +### Patch Changes + +- [#7032](https://github.com/primer/react/pull/7032) [`9fce541`](https://github.com/primer/react/commit/9fce5419ce76c94837f2bd4b013f007837a97182) Thanks [@francinelucca](https://github.com/francinelucca)! - - remove sx, SxProp, exports + - add type ThemeColorPaths, type ThemeShadowPaths +- Updated dependencies [[`aaa2e1f`](https://github.com/primer/react/commit/aaa2e1f5589a862557b6f7d5194e0579bc952c84), [`ca6d60d`](https://github.com/primer/react/commit/ca6d60d37dcdaec354bbdd097fd8c656971e752b), [`7595b8d`](https://github.com/primer/react/commit/7595b8d0d534043aeca69f0862a8ffd5c911c50c), [`9fce541`](https://github.com/primer/react/commit/9fce5419ce76c94837f2bd4b013f007837a97182), [`4ffe66d`](https://github.com/primer/react/commit/4ffe66d0d87c5ab8a3c0d9ef4e9ba571e6d57393), [`52d6cf7`](https://github.com/primer/react/commit/52d6cf7e7cc2a0f4ea3186ee61412a2a2549b530), [`f4a92f6`](https://github.com/primer/react/commit/f4a92f6d5fab8aee0bebb0b3bd8a400d55dc6cc7)]: + - @primer/react@38.0.0-rc.9 + ## 1.0.0-rc.9 ### Patch Changes diff --git a/packages/styled-react/package.json b/packages/styled-react/package.json index 7a21b369a5b..b495a6643a4 100644 --- a/packages/styled-react/package.json +++ b/packages/styled-react/package.json @@ -1,6 +1,6 @@ { "name": "@primer/styled-react", - "version": "1.0.0-rc.9", + "version": "1.0.0-rc.10", "type": "module", "exports": { ".": { @@ -30,7 +30,7 @@ "devDependencies": { "@babel/preset-react": "^7.27.1", "@babel/preset-typescript": "^7.27.1", - "@primer/react": "^38.0.0-rc.8", + "@primer/react": "^38.0.0-rc.9", "@rollup/plugin-babel": "^6.0.4", "@types/react": "18.3.11", "@types/react-dom": "18.3.1", @@ -46,7 +46,7 @@ "typescript": "^5.9.2" }, "peerDependencies": { - "@primer/react": "38.0.0-rc.8", + "@primer/react": "38.0.0-rc.9", "@types/react": "18.x || 19.x", "@types/react-dom": "18.x || 19.x", "@types/react-is": "18.x || 19.x",