Skip to content

Commit

Permalink
Version Packages (#737)
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 Sep 19, 2024
1 parent 1916153 commit 4c6b597
Show file tree
Hide file tree
Showing 19 changed files with 84 additions and 80 deletions.
5 changes: 0 additions & 5 deletions .changeset/fair-garlics-remain.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hip-forks-taste.md

This file was deleted.

14 changes: 0 additions & 14 deletions .changeset/little-comics-pull.md

This file was deleted.

18 changes: 0 additions & 18 deletions .changeset/nervous-bees-guess.md

This file was deleted.

22 changes: 0 additions & 22 deletions .changeset/shiny-balloons-dress.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silver-actors-explain.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/three-boats-reflect.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.40.1

## 0.40.0

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

## 0.40.1

### Patch Changes

- [#736](https://github.com/primer/brand/pull/736) [`73cf706e`](https://github.com/primer/brand/commit/73cf706ec83c00c19fbdca4ab4349c7fa931e784) Thanks [@lukasoppermann](https://github.com/lukasoppermann)! - Replaced the `--brand-VideoPlayer-tooltip-padding` design token in the `VideoPlayer` component with two new tokens that separately account for padding along each axis: `--brand-VideoPlayer-tooltip-padding-inline` and `--brand-VideoPlayer-tooltip-padding-block`.

_Note: This update does not introduce any visual changes. Please update any manual references to `--brand-VideoPlayer-tooltip-padding` to use the new tokens._

```diff
- --brand-VideoPlayer-tooltip-padding
+ --brand-VideoPlayer-tooltip-padding-inline
+ --brand-VideoPlayer-tooltip-padding-block
```

- [#738](https://github.com/primer/brand/pull/738) [`f6bab573`](https://github.com/primer/brand/commit/f6bab573c5c7d690c7f49f8b2bfe4b2e8fa49fa9) Thanks [@lukasoppermann](https://github.com/lukasoppermann)! - Fixed line formatting in `functional/size/size-coarse.css` and `functional/size/size-fine.css`

E.g.

```diff
- @media (pointer: coarse) { :root {
- --brand-controlStack-medium-gap-auto: var(--base-size-12);
- --brand-controlStack-small-gap-auto: var(--base-size-16);
- --brand-control-minTarget-auto: var(--base-size-44);
-}}
+@media (pointer: coarse) {
+ :root {
+ --brand-controlStack-medium-gap-auto: var(--base-size-12);
+ --brand-controlStack-small-gap-auto: var(--base-size-16);
+ --brand-control-minTarget-auto: var(--base-size-44);
+ }
+}
```

## 0.40.0

## 0.39.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.40.0",
"version": "0.40.1",
"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.40.1

## 0.40.0

## 0.39.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.40.0",
"version": "0.40.1",
"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.40.1

## 0.40.0

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

## 0.40.1

### Patch Changes

- [#754](https://github.com/primer/brand/pull/754) [`d061705c`](https://github.com/primer/brand/commit/d061705c9242be17feb07fe860ac86887b22a079) Thanks [@joshfarrant](https://github.com/joshfarrant)! - The `RiverStoryScroll` component now enforces that its children must be `River` components through type checking, instead of relying on a run-time check.

- [#739](https://github.com/primer/brand/pull/739) [`24bd6338`](https://github.com/primer/brand/commit/24bd63385c95b308f7573e101b0594937f7b7830) Thanks [@joshfarrant](https://github.com/joshfarrant)! - Fixed a bug in the `SubNav` component where the submenu toggle was rendered as an empty button on mobile viewports.

- [#736](https://github.com/primer/brand/pull/736) [`73cf706e`](https://github.com/primer/brand/commit/73cf706ec83c00c19fbdca4ab4349c7fa931e784) Thanks [@lukasoppermann](https://github.com/lukasoppermann)! - Replaced the `--brand-VideoPlayer-tooltip-padding` design token in the `VideoPlayer` component with two new tokens that separately account for padding along each axis: `--brand-VideoPlayer-tooltip-padding-inline` and `--brand-VideoPlayer-tooltip-padding-block`.

_Note: This update does not introduce any visual changes. Please update any manual references to `--brand-VideoPlayer-tooltip-padding` to use the new tokens._

```diff
- --brand-VideoPlayer-tooltip-padding
+ --brand-VideoPlayer-tooltip-padding-inline
+ --brand-VideoPlayer-tooltip-padding-block
```

- [#722](https://github.com/primer/brand/pull/722) [`99328ce0`](https://github.com/primer/brand/commit/99328ce0a7d48fc5f9c74a48ac687bb988bb9f40) Thanks [@danielguillan](https://github.com/danielguillan)! - Added support for `<b>` elements to `Bento`, `RiverBreakout`, `SectionIntro`, `Timeline`, and `Testimonial` components, as `<em>` is semantically interpreted by screen readers for emphasis, while `<b>` allows duo-tone text to function purely as a visual decoration.

Usage example:

```jsx
<SectionIntro>
<SectionIntro.Heading>
<b>Expressive headline</b> about an exclusive set of features.
</SectionIntro.Heading>
</SectionIntro>
```

> **Important**
> The updated components still support the use of `<em>` elements for backward compatibility, but moving forward, the only recommended element for emphasized text is `<b>`.

- [#733](https://github.com/primer/brand/pull/733) [`2dcb9bad`](https://github.com/primer/brand/commit/2dcb9badfe3f7bd16731836a6e74df580b652bfe) Thanks [@danielguillan](https://github.com/danielguillan)! - Fixes Label component multiline reflow

- [#746](https://github.com/primer/brand/pull/746) [`4af8db14`](https://github.com/primer/brand/commit/4af8db149e7d9e27b590599355f7437cf3fabf33) Thanks [@joshfarrant](https://github.com/joshfarrant)! - Fixed a bug where `Card` components rendered within a dark colour mode would not take the full width of their container.

## 0.40.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.40.0",
"version": "0.40.1",
"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.40.1

## 0.40.0

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

0 comments on commit 4c6b597

Please sign in to comment.