Skip to content

Commit e6b45b1

Browse files
Version Packages (#870)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 6b73869 commit e6b45b1

17 files changed

+61
-62
lines changed

.changeset/cold-ears-breathe.md

-5
This file was deleted.

.changeset/early-roses-pump.md

-15
This file was deleted.

.changeset/gorgeous-frogs-buy.md

-7
This file was deleted.

.changeset/hot-laws-hug.md

-10
This file was deleted.

.changeset/proud-students-collect.md

-19
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.45.1
4+
35
## 0.45.0
46

57
## 0.44.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.45.0",
3+
"version": "0.45.1",
44
"private": true,
55
"description": "Primer Brand Storybook",
66
"keywords": [

packages/design-tokens/CHANGELOG.md

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

3+
## 0.45.1
4+
35
## 0.45.0
46

57
### Patch Changes

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.45.0",
3+
"version": "0.45.1",
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.45.1
4+
35
## 0.45.0
46

57
## 0.44.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.45.0",
3+
"version": "0.45.1",
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.45.1
4+
35
## 0.45.0
46

57
## 0.44.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.45.0",
3+
"version": "0.45.1",
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

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

3+
## 0.45.1
4+
5+
### Patch Changes
6+
7+
- [#880](https://github.com/primer/brand/pull/880) [`bfe40610`](https://github.com/primer/brand/commit/bfe4061068a8149fe8b6b7ec498fe61328729d05) Thanks [@rezrah](https://github.com/rezrah)! - Increased border radius of `Card` from `large` (`16px`) to `xlarge` (`24px`)
8+
9+
- [#878](https://github.com/primer/brand/pull/878) [`d9183796`](https://github.com/primer/brand/commit/d918379698bacaeb856067107d9ac59615f146a2) Thanks [@rezrah](https://github.com/rezrah)! - Added `leadingComponent` slot to `SectionIntro` for inserting arbitrary visuals and JSX above the heading.
10+
11+
```jsx
12+
<SectionIntro leadingComponent={() => <img src="leading-visual.png" alt="description of your leading visual" />}>
13+
<SectionIntro.Heading>...</SectionIntro.Heading>
14+
<SectionIntro.Description>...</SectionIntro.Description>
15+
<SectionIntro.Link>...</SectionIntro.Link>
16+
</SectionIntro>
17+
```
18+
19+
🔗 [See Storybook example](https://primer.style/brand/storybook?path=/story/components-sectionintro-features--leading-component)
20+
21+
- [#880](https://github.com/primer/brand/pull/880) [`bfe40610`](https://github.com/primer/brand/commit/bfe4061068a8149fe8b6b7ec498fe61328729d05) Thanks [@rezrah](https://github.com/rezrah)! - Added `hasBorder` prop to `Pillar` for alternative presentation
22+
23+
🔗 [See Storybook for an example](https://primer.style/brand/storybook/?path=/story/components-pillar-features--with-border)
24+
25+
- [#703](https://github.com/primer/brand/pull/703) [`621d8ee2`](https://github.com/primer/brand/commit/621d8ee25e15a4a67281be5e4ec6116fa89a6fa0) Thanks [@joshfarrant](https://github.com/joshfarrant)! - `VideoPlayer` accessibility improvements
26+
27+
- Improved contrast of play overlay focus styles.
28+
- Improved contrast of controls and title.
29+
- The title bar now hides while the video is playing.
30+
- The controls bar now hides when the cursor or keyboard focus leaves the video player, or after a few seconds of inactivity, and reappears when the cursor or keyboard focus returns.
31+
32+
- [#862](https://github.com/primer/brand/pull/862) [`eba0c530`](https://github.com/primer/brand/commit/eba0c53043133239006807a2694b05e9852da169) Thanks [@danielguillan](https://github.com/danielguillan)! - Added image support to `Pillar` component
33+
34+
Usage example:
35+
36+
```jsx
37+
<Pillar>
38+
<Pillar.Image src="/path/to/your/image.jpg" alt="Required alternative text" />
39+
<Pillar.Heading>Code search & code view</Pillar.Heading>
40+
<Pillar.Description>
41+
Enables you to rapidly search, navigate, and understand code, right from GitHub.com.
42+
</Pillar.Description>
43+
</Pillar>
44+
```
45+
46+
🔗 [See Storybook for an example](https://primer.style/brand/storybook/?path=/story/components-pillar-features--with-image)
47+
348
## 0.45.0
449

550
### Minor 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.45.0",
3+
"version": "0.45.1",
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.45.1
4+
35
## 0.45.0
46

57
## 0.44.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.45.0",
3+
"version": "0.45.1",
44
"private": true,
55
"description": "General-purpose configurations for maintaining Primer Brand",
66
"homepage": "https://primer.style/brand",

0 commit comments

Comments
 (0)