Skip to content

Commit

Permalink
Version Packages (#1344)
Browse files Browse the repository at this point in the history
  • Loading branch information
seek-oss-ci authored Aug 23, 2023
1 parent d763d80 commit f167b8e
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 37 deletions.
24 changes: 0 additions & 24 deletions .changeset/empty-zebras-serve.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/few-wasps-applaud.md

This file was deleted.

27 changes: 27 additions & 0 deletions packages/braid-design-system/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# braid-design-system

## 32.9.0

### Minor Changes

- **Page:** Add component ([#1343](https://github.com/seek-oss/braid-design-system/pull/1343))

The new `Page` component establishes a consistent page-level layout by managing the relationship between the footer and the main content.

By default, for pages with limited content the `footer` will at a minimum be placed at the bottom of the screen, pushed beyond as the page content grows.

For pages with dynamic content, it is recommended to place the footer out of view by setting the `footerPosition` prop to `belowFold` to prevent the footer from popping in and out of view when the page content changes, e.g. toggling between a loading indicator and content.

**EXAMPLE USAGE:**

```jsx
<Page footer={<Footer />}>
<Header />
{/* page content... */}
</Page>
```

### Patch Changes

- **TabPanel:** Align focus outline radius to scale ([#1345](https://github.com/seek-oss/braid-design-system/pull/1345))

Increase the radius of the focus outline to better align to the scale. A `TabPanel` is typically a "large" element containing entire sections of UI, so using the `large` radius to better align to the radius scale.

## 32.8.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/braid-design-system/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "braid-design-system",
"version": "32.8.3",
"version": "32.9.0",
"description": "Themeable design system for the SEEK Group",
"homepage": "https://seek-oss.github.io/braid-design-system/",
"bugs": {
Expand Down
17 changes: 17 additions & 0 deletions site/src/componentUpdates.json
Original file line number Diff line number Diff line change
Expand Up @@ -3448,5 +3448,22 @@
"summary": "**apac, seekBusiness:** Increase `medium` font weight\n\nThe unicode range of Thai characters is not satisfied by the preferred fonts specified for the `apac` theme, resulting in these characters falling through and being rendered by `sans-serif` — which applies a platform-specific font.\nThese system fonts do not have support for the semi-bold weight chosen for `medium`, resulting in the visual weight of `medium` text being rounded down to `regular` — providing no differentiation relative to other text in the UI.\n\nIn addition, due to both `Helvetica` and `Arial` not having a `medium` weight, these fallbacks also have the same problem, even for Latin characters.\n\nBy increasing the value of `medium`, it will now round to `strong` when the rendered font cannot satisfy `medium` — preventing the loss of hierarchy.\n\nThis only affects apac-based themes, namely `apac` and `seekBusiness`."
}
]
},
{
"version": "32.9.0",
"updates": [
{
"new": [
"Page"
],
"summary": "**Page:** Add component\n\nThe new `Page` component establishes a consistent page-level layout by managing the relationship between the footer and the main content.\n\nBy default, for pages with limited content the `footer` will at a minimum be placed at the bottom of the screen, pushed beyond as the page content grows.\n\nFor pages with dynamic content, it is recommended to place the footer out of view by setting the `footerPosition` prop to `belowFold` to prevent the footer from popping in and out of view when the page content changes, e.g. toggling between a loading indicator and content.\n\n**EXAMPLE USAGE:**\n```jsx\n<Page footer={<Footer />}>\n <Header />\n {/* page content... */}\n</Page>\n```"
},
{
"updated": [
"TabPanel"
],
"summary": "**TabPanel:** Align focus outline radius to scale\n\nIncrease the radius of the focus outline to better align to the scale. A `TabPanel` is typically a \"large\" element containing entire sections of UI, so using the `large` radius to better align to the radius scale."
}
]
}
]

0 comments on commit f167b8e

Please sign in to comment.