Skip to content

Commit 907dd2e

Browse files
Version Packages
1 parent 641852a commit 907dd2e

15 files changed

+69
-62
lines changed

.changeset/cool-knives-mix.md

-5
This file was deleted.

.changeset/sharp-walls-knock.md

-5
This file was deleted.

.changeset/soft-buckets-help.md

-46
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.32.0
4+
35
## 0.31.0
46

57
## 0.30.3

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.31.0",
3+
"version": "0.32.0",
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.32.0
4+
35
## 0.31.0
46

57
## 0.30.3

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.31.0",
3+
"version": "0.32.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.32.0
4+
35
## 0.31.0
46

57
## 0.30.3

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.31.0",
3+
"version": "0.32.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.32.0
4+
35
## 0.31.0
46

57
## 0.30.3

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.31.0",
3+
"version": "0.32.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

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

3+
## 0.32.0
4+
5+
### Minor Changes
6+
7+
- [#530](https://github.com/primer/brand/pull/530) [`a9f0c1a`](https://github.com/primer/brand/commit/a9f0c1a034060e56ac00966792dd50a85fd2a0b8) Thanks [@danielguillan](https://github.com/danielguillan)! - New pricing options component now generally available
8+
9+
```jsx
10+
<PricingOptions>
11+
<PricingOptions.Item>
12+
<PricingOptions.Label>Recommended</PricingOptions.Label>
13+
<PricingOptions.Heading>Copilot</PricingOptions.Heading>
14+
<PricingOptions.Description>Copilot in the coding environment.</PricingOptions.Description>
15+
<PricingOptions.Price currencySymbol="$" trailingText="per month / $100 per year">
16+
10
17+
</PricingOptions.Price>
18+
<PricingOptions.FeatureList>
19+
<PricingOptions.FeatureListItem>Everything in Copilot Business plus:</PricingOptions.FeatureListItem>
20+
<PricingOptions.FeatureListItem>Chat in IDE and Mobile</PricingOptions.FeatureListItem>
21+
<PricingOptions.FeatureListItem>CLI assistance</PricingOptions.FeatureListItem>
22+
<PricingOptions.FeatureListItem>Code completions</PricingOptions.FeatureListItem>
23+
</PricingOptions.FeatureList>
24+
<PricingOptions.PrimaryAction href="/buy">Buy now</PricingOptions.PrimaryAction>
25+
<PricingOptions.SecondaryAction href="/contact">Contact sales</PricingOptions.SecondaryAction>
26+
</PricingOptions.Item>
27+
<PricingOptions.Item>
28+
<PricingOptions.Label>Recommended</PricingOptions.Label>
29+
<PricingOptions.Heading>Copilot Business</PricingOptions.Heading>
30+
<PricingOptions.Description>
31+
Copilot personalized to your organization throughout the software development lifecycle. Requires GitHub
32+
Enterprise Cloud.
33+
</PricingOptions.Description>
34+
<PricingOptions.Price currencySymbol="$" trailingText="per user / month">
35+
39
36+
</PricingOptions.Price>
37+
<PricingOptions.FeatureList>
38+
<PricingOptions.FeatureListItem>Everything in Copilot Business plus:</PricingOptions.FeatureListItem>
39+
<PricingOptions.FeatureListItem>Chat in IDE and Mobile</PricingOptions.FeatureListItem>
40+
<PricingOptions.FeatureListItem>CLI assistance</PricingOptions.FeatureListItem>
41+
<PricingOptions.FeatureListItem>Code completions</PricingOptions.FeatureListItem>
42+
</PricingOptions.FeatureList>
43+
<PricingOptions.PrimaryAction href="/waitlist">Join waitlist</PricingOptions.PrimaryAction>
44+
</PricingOptions.Item>
45+
</PricingOptions>
46+
```
47+
48+
:link: [Read the documentation for more examples](https://primer.style/brand/components/PricingOptions)
49+
50+
### Patch Changes
51+
52+
- [#553](https://github.com/primer/brand/pull/553) [`0fb9052`](https://github.com/primer/brand/commit/0fb90529ac532167a43f6eeac2a904c9922325fc) Thanks [@rezrah](https://github.com/rezrah)! - Use default text color in labels that feature gradients
53+
54+
- [#560](https://github.com/primer/brand/pull/560) [`9b150a7`](https://github.com/primer/brand/commit/9b150a7695c1b2e70afab901550b1cc91f742bcb) Thanks [@rezrah](https://github.com/rezrah)! - Removed redundant spacing on SubNav menu toggle button
55+
356
## 0.31.0
457

558
### 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.31.0",
3+
"version": "0.32.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.32.0
4+
35
## 0.31.0
46

57
## 0.30.3

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

0 commit comments

Comments
 (0)