Skip to content

Commit a235e35

Browse files
Version Packages
1 parent b11c431 commit a235e35

16 files changed

+50
-42
lines changed

.changeset/ninety-ducks-worry.md

-20
This file was deleted.

.changeset/spicy-hairs-attend.md

-5
This file was deleted.

.changeset/two-keys-arrive.md

-5
This file was deleted.

.changeset/wicked-cooks-hope.md

-6
This file was deleted.

apps/storybook/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @primer/brand-storybook
22

3+
## 0.48.0
4+
35
## 0.47.2
46

57
## 0.47.1

apps/storybook/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@primer/brand-storybook",
3-
"version": "0.47.2",
3+
"version": "0.48.0",
44
"private": true,
55
"description": "Primer Brand Storybook",
66
"keywords": [

packages/design-tokens/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @primer/brand-primitives
22

3+
## 0.48.0
4+
5+
### Patch Changes
6+
7+
- [#942](https://github.com/primer/brand/pull/942) [`5f31936`](https://github.com/primer/brand/commit/5f319362d85ea79fabf6b5239848cc30503b1ccd) Thanks [@danielguillan](https://github.com/danielguillan)! - Update the default `primary` and `secondary` accent color tokens from `pink` and `purple` to `green` and `yellow`, respectively.
8+
39
## 0.47.2
410

511
## 0.47.1

packages/design-tokens/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@primer/brand-primitives",
3-
"version": "0.47.2",
3+
"version": "0.48.0",
44
"description": "Color, spacing, and typography primitives for the Primer Brand Design System ",
55
"keywords": [
66
"primer",

packages/e2e/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @primer/brand-e2e
22

3+
## 0.48.0
4+
35
## 0.47.2
46

57
## 0.47.1

packages/e2e/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@primer/brand-e2e",
3-
"version": "0.47.2",
3+
"version": "0.48.0",
44
"private": true,
55
"description": "Primer Brand is a GitHub's design system for creating React-based marketing websites and digital experiences.",
66
"keywords": [

packages/fonts/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @primer/brand-fonts
22

3+
## 0.48.0
4+
35
## 0.47.2
46

57
## 0.47.1

packages/fonts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@primer/brand-fonts",
3-
"version": "0.47.2",
3+
"version": "0.48.0",
44
"private": true,
55
"description": "Primer Brand is a GitHub's design system for creating React-based marketing websites and digital experiences.",
66
"keywords": [

packages/react/CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# @primer/react-brand
22

3+
## 0.48.0
4+
5+
### Minor Changes
6+
7+
- [#926](https://github.com/primer/brand/pull/926) [`b11c431`](https://github.com/primer/brand/commit/b11c431d762ada206179eb81257b85d86a9e7f58) Thanks [@joshfarrant](https://github.com/joshfarrant)! - - Updated the `Pagination` component to ensure consistent behaviour across all viewports by displaying a condensed pagination on narrow viewports.
8+
9+
- ⚠️ Deprecated responsive object support in the `showPages` prop. The `showPages` prop now only accepts a boolean value which will hide/show the page numbers across all viewports.
10+
11+
```diff
12+
<Pagination
13+
- showPages={{narrow: true, regular: true, wide: true}}
14+
+ showPages
15+
/>
16+
17+
// Or
18+
19+
<Pagination
20+
- showPages={{narrow: false, regular: false, wide: false}}
21+
+ showPages={false}
22+
/>
23+
```
24+
25+
### Patch Changes
26+
27+
- [#943](https://github.com/primer/brand/pull/943) [`16b0cc7`](https://github.com/primer/brand/commit/16b0cc796489bc7ea90411a86f8e2f0ac710854e) Thanks [@danielguillan](https://github.com/danielguillan)! - Sets the maximum widths for the heading and description of the `Card` component.
28+
29+
- [#940](https://github.com/primer/brand/pull/940) [`cca78a1`](https://github.com/primer/brand/commit/cca78a17b1266b1b0276c84c18983832d6c7fc94) Thanks [@joshfarrant](https://github.com/joshfarrant)! - Updated the `Accordion` component to support additional state handling methods. All changes are backwards compatible. Refer to Storybook for examples of these additional `Accordion` features.
30+
31+
- [#942](https://github.com/primer/brand/pull/942) [`5f31936`](https://github.com/primer/brand/commit/5f319362d85ea79fabf6b5239848cc30503b1ccd) Thanks [@danielguillan](https://github.com/danielguillan)! - Update the default `primary` and `secondary` accent color tokens from `pink` and `purple` to `green` and `yellow`, respectively.
32+
333
## 0.47.2
434

535
### Patch Changes

packages/react/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@primer/react-brand",
3-
"version": "0.47.2",
3+
"version": "0.48.0",
44
"description": "Primer Brand is a GitHub's design system for creating React-based marketing websites and digital experiences.",
55
"keywords": [
66
"primer",

packages/repo-configs/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @primer/brand-config
22

3+
## 0.48.0
4+
35
## 0.47.2
46

57
## 0.47.1

packages/repo-configs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@primer/brand-config",
3-
"version": "0.47.2",
3+
"version": "0.48.0",
44
"private": true,
55
"description": "General-purpose configurations for maintaining Primer Brand",
66
"homepage": "https://primer.style/brand",

0 commit comments

Comments
 (0)