Minor changes
- b93d881
Update Banner to use borderless tinted styling by default and add a secondary variant.
- a9a1526
Re-export
useFilterfromComboboxandAutocompletenamespaces. Use it to write customfilterprops that preserve Base UI's default case- and accent-insensitive matching viaIntl.Collator. - 3db8294
Sidebar: comprehensive modernization
Breaking changes:
- Removed
Sidebar.Input— build custom search triggers inline - Removed
Sidebar.MenuAction— unused in practice - Removed
Sidebar.GroupContentand group-level collapsible props (collapsible,defaultOpen,open,onOpenChange) fromSidebar.Group— useSidebar.Collapsibleat the item level instead - Replaced Base UI Collapsible dependency with custom CSS grid-rows implementation
SidebarStatetype is now"expanded" | "collapsed" | "peeking"(was"expanded" | "collapsed")
New features:
containedprop on Provider — absolute positioning for embedded/demo sidebarspeekableprop on Provider — hover/focus collapsed sidebar to temporarily expandanimationDurationprop on Provider — configurable animation timingSidebar.SlidingViews+Sidebar.SlidingView— animated horizontal transitions between navigation surfaces- Animated
SidebarPanelIconreplacing PhosphorSidebarSimpleIcon - Enhanced
Sidebar.Triggerwitharia-expandedand dynamicaria-label - Keyboard-accessible resize handle (arrow keys, Home, End)
- Custom
Sidebar.Collapsiblewith keyboard auto-expand on focus
Token/styling fixes:
border-kumo-hairline→border-kumo-linethroughout- Hardcoded
duration-250→--sidebar-animation-durationCSS custom property bg-kumo-base→bg-(--sidebar-bg)for theme overridability- Focus styles:
ring-2/ring-kumo-brand→outline-none/text-kumo-strong/bg-kumo-tint - Icon opacity-50, updated spacing (header h-58px, footer h-12, menu gap-y-px)
isolateon sidebar root with low z-index (z-1, z-2) instead of z-20/z-50- Mobile sidebar now has correct
data-state/data-side/data-variant/data-collapsibleattributes
- Removed
- 18f5e42
TimeseriesChart: React tooltip with Base UI positioning
Replaces ECharts' HTML-string tooltip with a React component positioned by Base UI's Tooltip primitive:
- Tooltip rendered as a React component with correct theme tokens — no more inline styles or
getComputedStylehacks - Positioning handled by Base UI Tooltip (Floating UI), with automatic collision avoidance and viewport flipping
- New
tooltipFollowCursorprop:"both"(default, free-following) or"x"(axis-locked, Recharts-style) - New
tooltipModeprop:"all"(default) or"single"(nearest series to cursor) - New
tooltipMaxItemsprop: caps rows in"all"mode with+N morefooter (default10) - Date formatted with
Intl.DateTimeFormat(locale-aware) instead of ISO string - Values sorted descending; fallback formatter avoids scientific notation
- Tooltip rendered as a React component with correct theme tokens — no more inline styles or
Patch changes
- ab273fe
Banner: replace
dark:Tailwind variants with newkumo-banner-infoandkumo-banner-warningsemantic tokens so dark-mode opacity is baked into the design system. No visual change. - 351fac9
fix(styles): show pointer cursor on clickable Kumo elements by default
Adds a global
cursor: pointerrule scoped to elements rendered by Kumo components, identified by the newdata-kumo-componentanddata-kumo-partattributes. Interactive component roots and parts now opt into the rule by setting these attributes, which gives the library a stable scoping primitive that doesn't couple to Tailwind class names.Components updated to set
data-kumo-component/data-kumo-part: Button, LinkButton, Link, Checkbox, Radio, Switch, Select (trigger, option), DropdownMenu (item, link-item, checkbox-item, radio-item, submenu-trigger), Combobox (trigger, item, clear, chip-remove), Autocomplete (item), Dialog (trigger, close), Popover (trigger), Tabs (tab), Collapsible (trigger, default-trigger), Breadcrumbs (link), TableOfContents (item, group-link), Sidebar (menu-button, menu-sub-button, trigger, rail), MenuBar (option), Toast (close), SensitiveInput (toggle-visibility, copy, masked-container). - 3db8294
fix(sidebar): collapsed state styling, transitions, and sliding views
- 6d5d9f0
Add
flex items-centertoComboboxBase.IconinTriggerInputfor consistency withTriggerValueandSelect - 5081d35
Fix
Selectplaceholder not showing whenrenderValueis provided and the value is empty. - 9d4a2ff
Update semantic color tokens to better represent status icons and indicators:
- Adjust status token values in the theme generator and refresh generated theme output
- Update toast and badge status background treatments
- Update docs to reflect new tint token usage
- 1585bfe
Adjust toast visual styling for improved readability and emphasis: increase background tint intensity for success/warning/info variants, refine description text contrast, and update close-button icon contrast.
- 6e9b524
Fixed vertical alignment of checkbox and radio indicators with multi-line labels.
When label text wrapped to multiple lines, the indicators were vertically centered against the entire text block. They now align to the top, sitting next to the first line of text.
- 729caa3
echarts is now an optional peer dependency. If you don't use Chart components (Chart, TimeseriesChart, SankeyChart), it will no longer be installed automatically. If you do use them, run npm install echarts (as documented).