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/five-goats-march.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/fuzzy-keys-dress.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/light-bobcats-do.md

This file was deleted.

21 changes: 0 additions & 21 deletions .changeset/sharp-mails-jump.md

This file was deleted.

2 changes: 2 additions & 0 deletions apps/next-docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @primer/brand-docs

## 0.58.0

## 0.57.2

## 0.57.1
Expand Down
6 changes: 3 additions & 3 deletions apps/next-docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@primer/brand-docs",
"version": "0.57.2",
"version": "0.58.0",
"private": true,
"description": "Primer Brand Documentation",
"keywords": [
Expand Down Expand Up @@ -39,9 +39,9 @@
},
"devDependencies": {
"@github/prettier-config": "^0.0.6",
"@primer/brand-primitives": "^0.57.2",
"@primer/brand-primitives": "^0.58.0",
"@primer/react": "37.11.2",
"@primer/react-brand": "0.57.2",
"@primer/react-brand": "0.58.0",
"@types/node": "22.18.1",
"eslint-config-next": "15.5.2",
"prettier": "^3.5.1",
Expand Down
2 changes: 2 additions & 0 deletions apps/storybook/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @primer/brand-storybook

## 0.58.0

## 0.57.2

## 0.57.1
Expand Down
2 changes: 1 addition & 1 deletion apps/storybook/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@primer/brand-storybook",
"version": "0.57.2",
"version": "0.58.0",
"private": true,
"description": "Primer Brand Storybook",
"keywords": [
Expand Down
2 changes: 2 additions & 0 deletions packages/css/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @primer/brand-css

## 0.58.0

## 0.57.2

## 0.57.1
Expand Down
2 changes: 1 addition & 1 deletion packages/css/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@primer/brand-css",
"version": "0.57.2",
"version": "0.58.0",
"description": "CSS stylesheets for Primer Brand components",
"keywords": [
"primer",
Expand Down
2 changes: 2 additions & 0 deletions packages/design-tokens/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @primer/brand-primitives

## 0.58.0

## 0.57.2

## 0.57.1
Expand Down
2 changes: 1 addition & 1 deletion packages/design-tokens/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@primer/brand-primitives",
"version": "0.57.2",
"version": "0.58.0",
"description": "Color, spacing, and typography primitives for the Primer Brand Design System ",
"keywords": [
"primer",
Expand Down
2 changes: 2 additions & 0 deletions packages/e2e/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @primer/brand-e2e

## 0.58.0

## 0.57.2

## 0.57.1
Expand Down
2 changes: 1 addition & 1 deletion packages/e2e/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@primer/brand-e2e",
"version": "0.57.2",
"version": "0.58.0",
"private": true,
"description": "Primer Brand is a GitHub's design system for creating React-based marketing websites and digital experiences.",
"keywords": [
Expand Down
2 changes: 2 additions & 0 deletions packages/fonts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @primer/brand-fonts

## 0.58.0

## 0.57.2

## 0.57.1
Expand Down
2 changes: 1 addition & 1 deletion packages/fonts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@primer/brand-fonts",
"version": "0.57.2",
"version": "0.58.0",
"private": true,
"description": "Primer Brand is a GitHub's design system for creating React-based marketing websites and digital experiences.",
"keywords": [
Expand Down
42 changes: 42 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,47 @@
# @primer/react-brand

## 0.58.0

### Minor Changes

- [#1151](https://github.com/primer/brand/pull/1151) [`3e39ae1`](https://github.com/primer/brand/commit/3e39ae100ad5a26bb6b4eeab63bd7fe390d25cd7) Thanks [@rezrah](https://github.com/rezrah)! - Updated the minimum Node.js dependency for `@primer/react-brand` to match the current LTS version: `v22`

Also updated `webpack` and various other internal dependencies.

- [#1132](https://github.com/primer/brand/pull/1132) [`072f640`](https://github.com/primer/brand/commit/072f640b29ebee05fd65e5d4a25e101fc46d4f0e) Thanks [@rezrah](https://github.com/rezrah)! - Added new `Tabs` component.

Example:

```jsx
<Tabs {...args} aria-label="Tabs">
<Tabs.Item>Tab one</Tabs.Item>
<Tabs.Item>Tab two</Tabs.Item>

<Tabs.Panel>
<Text>Panel one</Text>
</Tabs.Panel>
<Tabs.Panel>
<Text>Panel two</Text>
</Tabs.Panel>
</Tabs>
```

### Patch Changes

- [#1133](https://github.com/primer/brand/pull/1133) [`23a0d50`](https://github.com/primer/brand/commit/23a0d50c8f5f2ca4f8f63bc105cad44da5662962) Thanks [@joshfarrant](https://github.com/joshfarrant)! - Added some comments to the `Accordion` component. This is a no-op update.

- [#1132](https://github.com/primer/brand/pull/1132) [`072f640`](https://github.com/primer/brand/commit/072f640b29ebee05fd65e5d4a25e101fc46d4f0e) Thanks [@rezrah](https://github.com/rezrah)! - Updates to `useTabs` hook:

- Added an optional `externalRef` parameter to `getTabProps` function for improved forwardRef support.
- Fixed `onTabActivate` callback to only trigger when switching between tabs (not on initial mount)
- Optimized focus state management by preventing unnecessary state updates when focus doesn't change.
- Removed redundant state updates in `focusTab` and `onTabFocus` functions

This affects the following components, which use this hook:

- `Tabs` component
- `IDE` component

## 0.57.2

### 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,6 +1,6 @@
{
"name": "@primer/react-brand",
"version": "0.57.2",
"version": "0.58.0",
"description": "Primer Brand is a GitHub's design system for creating React-based marketing websites and digital experiences.",
"keywords": [
"primer",
Expand Down
2 changes: 2 additions & 0 deletions packages/repo-configs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @primer/brand-config

## 0.58.0

## 0.57.2

## 0.57.1
Expand Down
2 changes: 1 addition & 1 deletion packages/repo-configs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@primer/brand-config",
"version": "0.57.2",
"version": "0.58.0",
"private": true,
"description": "General-purpose configurations for maintaining Primer Brand",
"homepage": "https://primer.style/brand",
Expand Down
Loading