Skip to content

Commit

Permalink
Version Packages (#567)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
primer-css and github-actions[bot] authored Apr 25, 2024
1 parent 3ce6073 commit 8c57c9c
Show file tree
Hide file tree
Showing 19 changed files with 102 additions and 102 deletions.
30 changes: 0 additions & 30 deletions .changeset/appears-kangaroo-early.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/confusing-changeset-name.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/copy-kangaroo-appear.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/early-kangaroos-appear.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/lazy-kangaroos-appear.md

This file was deleted.

16 changes: 0 additions & 16 deletions .changeset/mix-knives-cold.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pretty-countries-type.md

This file was deleted.

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.33.0

## 0.32.0

## 0.31.0
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.32.0",
"version": "0.33.0",
"private": true,
"description": "Primer Brand Storybook",
"keywords": [
Expand Down
8 changes: 8 additions & 0 deletions packages/design-tokens/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @primer/brand-primitives

## 0.33.0

### Patch Changes

- [#566](https://github.com/primer/brand/pull/566) [`eaeb50e`](https://github.com/primer/brand/commit/eaeb50e31e87748c7d1aadcdfa9518c28ee31765) Thanks [@joshfarrant](https://github.com/joshfarrant)! - Adjusted block padding of small button controls from `12px` to `8px`.

This change affects all small size `Button` and `ActionMenu` instances.

## 0.32.0

## 0.31.0
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.32.0",
"version": "0.33.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.33.0

## 0.32.0

## 0.31.0
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.32.0",
"version": "0.33.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.33.0

## 0.32.0

## 0.31.0
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.32.0",
"version": "0.33.0",
"private": true,
"description": "Primer Brand is a GitHub's design system for creating React-based marketing websites and digital experiences.",
"keywords": [
Expand Down
80 changes: 80 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,85 @@
# @primer/react-brand

## 0.33.0

### Minor Changes

- [#575](https://github.com/primer/brand/pull/575) [`89d6590`](https://github.com/primer/brand/commit/89d659084eedb60ebeea198ead43dd0f89a4fac0) Thanks [@rezrah](https://github.com/rezrah)! - New pagination component generally available

```jsx
<Pagination pageCount={15} currentPage={5} />
```

:link: [Read the documentation for more examples](https://primer.style/brand/components/Pagination)

- [#574](https://github.com/primer/brand/pull/574) [`95f15ba`](https://github.com/primer/brand/commit/95f15ba12156aa3ce11b5e436c9bcf10747ff1ff) Thanks [@rezrah](https://github.com/rezrah)! - New breadcrumbs component generally available

```jsx
<Breadcrumbs>
<Breadcrumbs.Item href="/">Resources</Breadcrumbs.Item>
<Breadcrumbs.Item href="/copilot">GitHub Copilot</Breadcrumbs.Item>
<Breadcrumbs.Item href="/copilot/chat" selected>
Chat
</Breadcrumbs.Item>
</Breadcrumbs>
```

:link: [Read the documentation for more examples](https://primer.style/brand/components/Breadcrumbs)

- [#555](https://github.com/primer/brand/pull/555) [`3980daa`](https://github.com/primer/brand/commit/3980daa4a492aefcd5e151e5451200d9ac6f9b43) Thanks [@rezrah](https://github.com/rezrah)! - Added new `IDE` component

Example:

```jsx
<IDE alternativeText="description of the IDE, including any animations for users of assistive technologies">
<IDE.Editor />
<IDE.Chat />
</IDE>
```

🔗 [See the documentation for more examples](https://primer.style/brand/components/IDE)

### Patch Changes

- [#568](https://github.com/primer/brand/pull/568) [`40a129d`](https://github.com/primer/brand/commit/40a129d78024612b625238d8a826fc06aa933465) Thanks [@rezrah](https://github.com/rezrah)! - Added support for optional `Button` and sub menu's in `SubNav` component.

Also added `fullWidth` prop to optionally remove the default component padding.

```jsx
<SubNav>
<SubNav.Heading href="#">Heading</SubNav.Heading>
<SubNav.Link href="#">Link</SubNav.Link>
<SubNav.Link href="#">Link</SubNav.Link>
<SubNav.Link href="#">Link</SubNav.Link>
<SubNav.Link href="#" aria-current="page">
Link
<SubNav.SubMenu>
<SubNav.Link href="#">Link feature one</SubNav.Link>
<SubNav.Link href="#">Link feature two</SubNav.Link>
<SubNav.Link href="#">Link feature three</SubNav.Link>
<SubNav.Link href="#">Link feature four</SubNav.Link>
</SubNav.SubMenu>
</SubNav.Link>
<SubNav.Link href="#">Link</SubNav.Link>
<SubNav.Link href="#">Link</SubNav.Link>
<SubNav.Action href="#" variant="secondary">
Optional CTA
</SubNav.Action>
</SubNav>
```

- [#566](https://github.com/primer/brand/pull/566) [`eaeb50e`](https://github.com/primer/brand/commit/eaeb50e31e87748c7d1aadcdfa9518c28ee31765) Thanks [@joshfarrant](https://github.com/joshfarrant)! - Adjusted block padding of small button controls from `12px` to `8px`.

This change affects all small size `Button` and `ActionMenu` instances.

- [#575](https://github.com/primer/brand/pull/575) [`89d6590`](https://github.com/primer/brand/commit/89d659084eedb60ebeea198ead43dd0f89a4fac0) Thanks [@rezrah](https://github.com/rezrah)! - Added `none` optiona to `arrowDirection` prop of `Link` component. This value removes the arrow entirely.

```jsx
<Link arrowDirection="none" {...rest} />
```

- [#573](https://github.com/primer/brand/pull/573) [`e76c92b`](https://github.com/primer/brand/commit/e76c92b73cb428c64cd14324d1a7a7fbe48c8daf) Thanks [@joshfarrant](https://github.com/joshfarrant)! - Add `trailingComponent` prop to Hero

## 0.32.0

### Minor 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.32.0",
"version": "0.33.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.33.0

## 0.32.0

## 0.31.0
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.32.0",
"version": "0.33.0",
"private": true,
"description": "General-purpose configurations for maintaining Primer Brand",
"homepage": "https://primer.style/brand",
Expand Down

0 comments on commit 8c57c9c

Please sign in to comment.