Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .changeset/chart-colors-docs-refine.md

This file was deleted.

37 changes: 0 additions & 37 deletions .changeset/checkbox-breaking-onCheckedChange.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/composable-group-legend.md

This file was deleted.

23 changes: 0 additions & 23 deletions .changeset/decouple-text-heading-semantics.md

This file was deleted.

46 changes: 0 additions & 46 deletions .changeset/feat-input-group-revamp.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/global-typography-defaults.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/odd-oranges-give.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/table-of-contents-polish.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/update-base-ui-1.4.0.md

This file was deleted.

70 changes: 70 additions & 0 deletions packages/kumo-docs-astro/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,75 @@
# @cloudflare/kumo-docs-astro

## 1.4.0

### Minor Changes

- 353faea: Adds Autocomplete component. A free-form text input with an optional filtered suggestion list. Unlike Combobox, the value is not constrained to the items list.

### Patch Changes

- ec73bc5: Update chart color docs and demos, including sequential heatmap/CVD coverage and improved chart demo behavior.
- 1eee41a: Add `InputGroup` compound component for composing decorated inputs

Compound structure: `InputGroup`, `InputGroup.Input`, `InputGroup.Addon`, `InputGroup.Suffix`, `InputGroup.Button`.
- Field integration — pass `label`, `description`, `error`, `required`, and `labelTooltip` directly to `InputGroup`
- Size variants (`xs`, `sm`, `base`, `lg`) propagate to all sub-components via context, including icon sizing in addons
- `InputGroup.Addon` — positions icons, text, or buttons at `align="start"` (default) or `align="end"` of the input
- `InputGroup.Suffix` — inline text suffix (e.g. `.workers.dev`)
- `InputGroup.Button` — ghost button for secondary actions with tooltip support
- Deprecated `InputGroup.Label` — use `InputGroup.Addon` instead
- Deprecated `InputGroup.Description` — use `InputGroup.Suffix` instead

```tsx
{
/* Reveal / hide password */
}
<InputGroup>
<InputGroup.Input
type={show ? "text" : "password"}
defaultValue="password"
aria-label="Password"
/>
<InputGroup.Addon align="end" className="pr-1">
<InputGroup.Button
size="sm"
aria-label={show ? "Hide password" : "Show password"}
onClick={() => setShow(!show)}
>
{show ? <EyeSlashIcon size={16} /> : <EyeIcon size={16} />}
</InputGroup.Button>
</InputGroup.Addon>
</InputGroup>;
```

```tsx
{
/* Search input */
}
<InputGroup>
<InputGroup.Addon>
<MagnifyingGlassIcon className="text-kumo-subtle" />
</InputGroup.Addon>
<InputGroup.Input placeholder="Search..." />
</InputGroup>;
```

- 87432f8: Add global letter-spacing and typography defaults
- Set global `letter-spacing: -0.01em`, `line-height: 1.5`, and OpenType font features (`cv02`, `cv03`, `cv04`, `calt`) on `html`
- Reset `letter-spacing: normal` on `pre`, `code`, `kbd`, and `.font-mono` elements
- Replace hardcoded `tracking-[-0.02em]` with `tracking-tight` utility across headings
- Switch prose paragraphs and lists from `leading-relaxed` to `leading-normal`

- Updated dependencies [ec73bc5]
- Updated dependencies [bf68ac0]
- Updated dependencies [1954aa8]
- Updated dependencies [3256a7b]
- Updated dependencies [1eee41a]
- Updated dependencies [353faea]
- Updated dependencies [f9d8b76]
- Updated dependencies [6765526]
- @cloudflare/kumo@2.0.0

## 1.3.18

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/kumo-docs-astro/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cloudflare/kumo-docs-astro",
"version": "1.3.18",
"version": "1.4.0",
"private": true,
"type": "module",
"exports": {
Expand Down
14 changes: 14 additions & 0 deletions packages/kumo-figma/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @cloudflare/figma-plugin

## 0.3.24

### Patch Changes

- Updated dependencies [ec73bc5]
- Updated dependencies [bf68ac0]
- Updated dependencies [1954aa8]
- Updated dependencies [3256a7b]
- Updated dependencies [1eee41a]
- Updated dependencies [353faea]
- Updated dependencies [f9d8b76]
- Updated dependencies [6765526]
- @cloudflare/kumo@2.0.0

## 0.3.23

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/kumo-figma/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cloudflare/kumo-figma",
"version": "0.3.23",
"version": "0.3.24",
"private": true,
"type": "module",
"description": "Figma plugin for generating Kumo UI Kit components",
Expand Down
Loading
Loading