Skip to content

Commit

Permalink
Version Packages (#1562)
Browse files Browse the repository at this point in the history
  • Loading branch information
seek-oss-ci authored Aug 26, 2024
1 parent 06093c1 commit 46f569d
Show file tree
Hide file tree
Showing 7 changed files with 75 additions and 73 deletions.
12 changes: 0 additions & 12 deletions .changeset/big-pugs-greet.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/bright-nails-cry.md

This file was deleted.

24 changes: 0 additions & 24 deletions .changeset/cool-phones-end.md

This file was deleted.

23 changes: 0 additions & 23 deletions .changeset/nice-mangos-hug.md

This file was deleted.

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

## 32.23.1

### Patch Changes

- **RadioItem:** Improve `checked` visual affordance when `disabled` ([#1564](https://github.com/seek-oss/braid-design-system/pull/1564))

Improve the visual affordance of the `checked` state when `disabled` across all themes and colour modes.

- **MenuRenderer, OverflowMenu:** Limit the menu height ([#1567](https://github.com/seek-oss/braid-design-system/pull/1567))

Limit the menu to show a maximum of around 10 items before scrolling (a little less so it's evident there is more to scroll to).

- **TextLink:** Default to weak inside secondary tone ([#1561](https://github.com/seek-oss/braid-design-system/pull/1561))

Align the `secondary` tone with other non-neutral text tones, making the foreground color of links inherit the tone of the wrapping `Text` component.

**EXAMPLE USAGE:**
In the following example the `TextLink` will now follow the `secondary` tone from the wrapping `Text` component:

```jsx
<Text tone="secondary">
<TextLink href="#">Link</TextLink>
</Text>
```

Previously this would have retained the default link colour from the theme.

- Standardise `disabled` & `critical` state across form fields ([#1564](https://github.com/seek-oss/braid-design-system/pull/1564))

Improves the consistency of form fields when combining both `disabled` and `critical` tone, which includes:

- Hiding `critical` borders
- Hiding `message` and not reserving space for it unless explicitly providing the `reserveMessageSpace` prop.

## 32.23.0

### Minor 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.23.0",
"version": "32.23.1",
"description": "Themeable design system for the SEEK Group",
"homepage": "https://seek-oss.github.io/braid-design-system/",
"bugs": {
Expand Down
40 changes: 40 additions & 0 deletions site/src/componentUpdates.json
Original file line number Diff line number Diff line change
Expand Up @@ -4072,5 +4072,45 @@
"summary": "**Spread:** Add `data` prop support\n\n**EXAMPLE USAGE:**\n```jsx\n<Spread data={{ test: 123 }}>\n ...\n</Spread>\n```"
}
]
},
{
"version": "32.23.1",
"updates": [
{
"updated": [
"RadioItem"
],
"summary": "**RadioItem:** Improve `checked` visual affordance when `disabled`\n\nImprove the visual affordance of the `checked` state when `disabled` across all themes and colour modes."
},
{
"updated": [
"MenuRenderer",
"OverflowMenu"
],
"summary": "**MenuRenderer, OverflowMenu:** Limit the menu height\n\nLimit the menu to show a maximum of around 10 items before scrolling (a little less so it's evident there is more to scroll to)."
},
{
"updated": [
"TextLink",
"TextLinkButton"
],
"summary": "**TextLink:** Default to weak inside secondary tone\n\nAlign the `secondary` tone with other non-neutral text tones, making the foreground color of links inherit the tone of the wrapping `Text` component.\n\n**EXAMPLE USAGE:**\nIn the following example the `TextLink` will now follow the `secondary` tone from the wrapping `Text` component:\n\n```jsx\n<Text tone=\"secondary\">\n <TextLink href=\"#\">Link</TextLink>\n</Text>\n```\n\nPreviously this would have retained the default link colour from the theme."
},
{
"updated": [
"Autosuggest",
"Checkbox",
"CheckboxStandalone",
"Dropdown",
"MonthPicker",
"PasswordField",
"RadioGroup",
"Radio",
"TextField",
"Textarea"
],
"summary": "Standardise `disabled` & `critical` state across form fields\n\nImproves the consistency of form fields when combining both `disabled` and `critical` tone, which includes:\n- Hiding `critical` borders\n- Hiding `message` and not reserving space for it unless explicitly providing the `reserveMessageSpace` prop."
}
]
}
]

0 comments on commit 46f569d

Please sign in to comment.