Skip to content

Commit bbf9fa7

Browse files
Version Packages (#1943)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 9650176 commit bbf9fa7

5 files changed

Lines changed: 37 additions & 30 deletions

File tree

.changeset/fluffy-boxes-arrive.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

.changeset/neat-planes-work.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/braid-design-system/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# braid-design-system
22

3+
## 33.14.0
4+
5+
### Minor Changes
6+
7+
- **TooltipRenderer:** Add support for `left` and `right` placement, in addition to existing `top` and `bottom`. ([#1942](https://github.com/seek-oss/braid-design-system/pull/1942))
8+
9+
**EXAMPLE USAGE:**
10+
11+
```jsx
12+
<TooltipRenderer
13+
placement="left"
14+
...props
15+
>
16+
...
17+
</TooltipRenderer>
18+
19+
```
20+
21+
### Patch Changes
22+
23+
- Improve components type definitions in support of Playroom props ([#1941](https://github.com/seek-oss/braid-design-system/pull/1941))
24+
325
## 33.13.0
426

527
### Minor Changes

packages/braid-design-system/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "braid-design-system",
3-
"version": "33.13.0",
3+
"version": "33.14.0",
44
"description": "Themeable design system for the SEEK Group",
55
"homepage": "https://seek-oss.github.io/braid-design-system/",
66
"bugs": {

site/src/componentUpdates.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5297,5 +5297,19 @@
52975297
"summary": "**Autosuggest:** Add support for data attributes on individual suggestions\n\nThe data attributes are applied to each rendered list item.\n\n**EXAMPLE USAGE:**\n```jsx\n<Autosuggest\n suggestions={[\n {\n text: 'Apples',\n data: { testid: 'suggestion-apples' },\n },\n ]}\n/>\n```"
52985298
}
52995299
]
5300+
},
5301+
{
5302+
"version": "33.14.0",
5303+
"updates": [
5304+
{
5305+
"updated": [
5306+
"Autosuggest",
5307+
"MenuRenderer",
5308+
"OverflowMenu",
5309+
"TooltipRenderer"
5310+
],
5311+
"summary": "**TooltipRenderer:** Add support for `left` and `right` placement, in addition to existing `top` and `bottom`.\n\n**EXAMPLE USAGE:**\n```jsx\n<TooltipRenderer\n placement=\"left\"\n ...props\n>\n ...\n</TooltipRenderer>\n\n```"
5312+
}
5313+
]
53005314
}
53015315
]

0 commit comments

Comments
 (0)