Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/clean-portals-render.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/remove-theme-color-schemes.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/styled-react-vendor-color-schemes.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/underline-nav-icon-breakpoint.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/warm-tools-smile.md

This file was deleted.

4 changes: 2 additions & 2 deletions examples/codesandbox/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"react-dom": "^18.3.1"
},
"devDependencies": {
"@primer/react": "38.35.1",
"@primer/styled-react": "1.1.0",
"@primer/react": "38.36.0",
"@primer/styled-react": "1.1.1",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^6.0.2",
Expand Down
4 changes: 2 additions & 2 deletions examples/nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"type-check": "tsc --noEmit"
},
"dependencies": {
"@primer/react": "38.35.1",
"@primer/styled-react": "1.1.0",
"@primer/react": "38.36.0",
"@primer/styled-react": "1.1.1",
"next": "^16.3.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/theming/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"@primer/octicons-react": "^19.28.1",
"@primer/react": "38.35.1",
"@primer/react": "38.36.0",
"clsx": "^2.1.1",
"next": "^16.3.0",
"react": "^19.2.0",
Expand Down
15 changes: 15 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @primer/react

## 38.36.0

### Minor Changes

- [#8212](https://github.com/primer/react/pull/8212) [`9ac9343`](https://github.com/primer/react/commit/9ac9343a70fd0f70413a42cd27baf562a74dd4fc) Thanks [@mattcosta7](https://github.com/mattcosta7)! - ThemeProvider: Add a CSS-variable-based implementation to `@primer/react/next`
and deprecate the legacy JavaScript theme implementation.

- [#8303](https://github.com/primer/react/pull/8303) [`a88cc69`](https://github.com/primer/react/commit/a88cc693539e2b9aa836623c737e860e7203e73a) Thanks [@TylerJDev](https://github.com/TylerJDev)! - NavList: Add a `tooltipText` prop to items

### Patch Changes

- [#8276](https://github.com/primer/react/pull/8276) [`5069f8a`](https://github.com/primer/react/commit/5069f8a7cb95544ce14122e97d67c8a1279f8a08) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - Portal: Render nothing while server rendering and during hydration instead of accessing the DOM during render, fixing server rendering support. Client-only renders are unchanged and still mount portaled content in the same commit.

- [#8260](https://github.com/primer/react/pull/8260) [`24d0831`](https://github.com/primer/react/commit/24d0831d34b13e3b4bac8afcfa2ccd5795cd9a9d) Thanks [@liuliu-dev](https://github.com/liuliu-dev)! - UnderlineNav: Keep item icons visible by default at the medium breakpoint and above

## 38.35.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@primer/react",
"type": "module",
"version": "38.35.1",
"version": "38.36.0",
"description": "An implementation of GitHub's Primer Design System using React",
"main": "./dist/index.js",
"module": "./dist/index.js",
Expand Down
7 changes: 7 additions & 0 deletions packages/styled-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @primer/styled-react

## 1.1.1

### Patch Changes

- [#8212](https://github.com/primer/react/pull/8212) [`9ac9343`](https://github.com/primer/react/commit/9ac9343a70fd0f70413a42cd27baf562a74dd4fc) Thanks [@mattcosta7](https://github.com/mattcosta7)! - ThemeProvider: Vendor the legacy `colorSchemes` object so styled theming keeps
working after `@primer/react` removed it from its default theme.

## 1.1.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/styled-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@primer/styled-react",
"version": "1.1.0",
"version": "1.1.1",
"type": "module",
"exports": {
".": {
Expand Down Expand Up @@ -44,7 +44,7 @@
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@primer/primitives": "10.x || 11.x",
"@primer/react": "^38.26.0",
"@primer/react": "^38.36.0",
"@rolldown/plugin-babel": "^0.2.3",
"@storybook/react-vite": "10.5.5",
"@types/babel__core": "^7.20.5",
Expand Down
Loading