Skip to content

Commit 15b2fc7

Browse files
Version Packages (#149)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 68c2f0d commit 15b2fc7

9 files changed

Lines changed: 62 additions & 51 deletions

File tree

.changeset/dropdown-link-item-and-icon-fix.md

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

.changeset/flow-diagram-improvements.md

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

.changeset/popover-position-method.md

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

packages/kumo-docs-astro/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @cloudflare/kumo-docs-astro
22

3+
## 1.3.5
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [23865db]
8+
- Updated dependencies [89cb5ec]
9+
- Updated dependencies [68c2f0d]
10+
- @cloudflare/kumo@1.9.0
11+
312
## 1.3.4
413

514
### Patch Changes

packages/kumo-docs-astro/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudflare/kumo-docs-astro",
3-
"version": "1.3.4",
3+
"version": "1.3.5",
44
"private": true,
55
"type": "module",
66
"exports": {

packages/kumo-figma/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @cloudflare/figma-plugin
22

3+
## 0.3.10
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [23865db]
8+
- Updated dependencies [89cb5ec]
9+
- Updated dependencies [68c2f0d]
10+
- @cloudflare/kumo@1.9.0
11+
312
## 0.3.9
413

514
### Patch Changes

packages/kumo-figma/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudflare/kumo-figma",
3-
"version": "0.3.9",
3+
"version": "0.3.10",
44
"private": true,
55
"type": "module",
66
"description": "Figma plugin for generating Kumo UI Kit components",

packages/kumo/CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,46 @@
11
# @cloudflare/kumo
22

3+
## 1.9.0
4+
5+
### Minor Changes
6+
7+
- 23865db: feat(dropdown): add LinkItem for navigation links and fix icon rendering
8+
9+
**New Features:**
10+
- Add `DropdownMenu.LinkItem` for navigation links (semantic `<a>` element with proper menu item behavior)
11+
- Upgrade `@base-ui/react` from 1.0.0 to 1.2.0
12+
- Add new primitives: `csp-provider` and `drawer` from Base UI 1.2.0
13+
14+
**Bug Fixes:**
15+
- Fix `icon` prop not rendering on `DropdownMenu.Item` when no `href` is provided
16+
17+
**Deprecations:**
18+
- `href` prop on `DropdownMenu.Item` is deprecated. Use `DropdownMenu.LinkItem` instead.
19+
20+
**Migration:**
21+
22+
```tsx
23+
// Before (deprecated)
24+
<DropdownMenu.Item href="https://example.com">Link</DropdownMenu.Item>
25+
26+
// After (recommended)
27+
<DropdownMenu.LinkItem href="https://example.com" target="_blank">
28+
Link
29+
</DropdownMenu.LinkItem>
30+
```
31+
32+
`DropdownMenu.LinkItem` gives you full control over link attributes (`target`, `rel`, etc.) without the component making assumptions about your intent.
33+
34+
- 68c2f0d: Add `positionMethod` prop to `Popover.Content` to control CSS positioning strategy. Use `"fixed"` when the popover needs to escape stacking contexts (e.g., inside sticky headers). Defaults to `"absolute"`.
35+
36+
### Patch Changes
37+
38+
- 89cb5ec: Improve Flow diagram components with disabled node support and better connector rendering:
39+
- Add `disabled` prop to FlowNode for greying out connectors
40+
- Add `align` prop to FlowParallelNode for start/end alignment
41+
- Improve connector path rendering with smarter junction detection
42+
- Fix panning behavior to not interfere with node interactions
43+
344
## 1.8.0
445

546
### Minor Changes

packages/kumo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudflare/kumo",
3-
"version": "1.8.0",
3+
"version": "1.9.0",
44
"private": false,
55
"type": "module",
66
"description": "Kumo - Cloudflare's component library for building modern web applications",

0 commit comments

Comments
 (0)