diff --git a/.changeset/add-floating-panel.md b/.changeset/add-floating-panel.md deleted file mode 100644 index ba6673ed321..00000000000 --- a/.changeset/add-floating-panel.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -"@chakra-ui/react": minor ---- - -**[New] FloatingPanel**: Add draggable, resizable floating panel component - -```tsx -import { FloatingPanel } from "@chakra-ui/react/floating-panel" -``` - -```tsx - - - - - - - - - - - - - - - - - - -``` diff --git a/.changeset/fix-cli-typegen-system-export-error.md b/.changeset/fix-cli-typegen-system-export-error.md deleted file mode 100644 index d8f60d5917d..00000000000 --- a/.changeset/fix-cli-typegen-system-export-error.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@chakra-ui/cli": patch ---- - -Improve the `chakra typegen` error when the input file does not export a Chakra -system, including the discovered exports and a `createSystem(...)` example for -files that export `defineConfig(...)` configs. diff --git a/.changeset/fix-datepicker-placeholder-color.md b/.changeset/fix-datepicker-placeholder-color.md deleted file mode 100644 index f295fc5a8ec..00000000000 --- a/.changeset/fix-datepicker-placeholder-color.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@chakra-ui/panda-preset": patch -"@chakra-ui/react": patch ---- - -Remove the DatePicker input `_placeholder` override so placeholders use the same -global `*::placeholder` styling as `Input`. diff --git a/.changeset/fix-link-focus-visible-ring.md b/.changeset/fix-link-focus-visible-ring.md deleted file mode 100644 index 5c203b1558d..00000000000 --- a/.changeset/fix-link-focus-visible-ring.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@chakra-ui/panda-preset": patch -"@chakra-ui/react": patch ---- - -Use `focusVisibleRing` instead of `focusRing` on `Link` so the focus ring shows -only for `:focus-visible`, not on mouse click. diff --git a/.changeset/fix-recipe-default-variants-types.md b/.changeset/fix-recipe-default-variants-types.md deleted file mode 100644 index 577faa994e2..00000000000 --- a/.changeset/fix-recipe-default-variants-types.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@chakra-ui/react": patch ---- - -Fix recipe definition types so `defaultVariants` accepts variant keys when using -the broad `RecipeDefinition` type. diff --git a/.changeset/fix-semantic-token-lookup-10822.md b/.changeset/fix-semantic-token-lookup-10822.md deleted file mode 100644 index b3d23965f28..00000000000 --- a/.changeset/fix-semantic-token-lookup-10822.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"@chakra-ui/react": patch ---- - -Fix `system.token()` returning dark-mode resolved values for semantic tokens -with light/dark conditions instead of the semantic CSS variable reference. - -Also fix token dictionary bookkeeping for semantic tokens without a base value -so lookup maps stay in sync after empty tokens are removed. diff --git a/.changeset/fix-token-dictionary-conditions.md b/.changeset/fix-token-dictionary-conditions.md deleted file mode 100644 index 8c936c38261..00000000000 --- a/.changeset/fix-token-dictionary-conditions.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@chakra-ui/react": patch ---- - -Fix token dictionary lookups to preserve semantic token condition metadata when -using `getByName`. diff --git a/.changeset/large-dancers-bet.md b/.changeset/large-dancers-bet.md deleted file mode 100644 index c155deb826c..00000000000 --- a/.changeset/large-dancers-bet.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -"@chakra-ui/react": patch ---- - -Fix: normalize nested token overrides when merging default theme - -When merging a custom token into the default theme, token normalization could -stop at the category level (for example `colors`) and prevent promoting flat -tokens to `DEFAULT`. This change updates the merge logic so adding nested -overrides like `colors.black.100` correctly moves the original `colors.black` -value to `DEFAULT` and resolves nested tokens. - -Fixes: #10800 diff --git a/.changeset/update-ark-ui-5.37.2.md b/.changeset/update-ark-ui-5.37.2.md deleted file mode 100644 index 899d08961be..00000000000 --- a/.changeset/update-ark-ui-5.37.2.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -"@chakra-ui/react": minor ---- - -Update Ark UI to v5.37.2 - -- **Splitter**: Accept CSS units (`px`, `em`, `rem`, `vh`, `vw`) for size props, - add per-panel `resizeBehavior` (`"preserve-pixel-size"`), and fix focus not - moving to a resize trigger on click. -- **Color Picker, Combobox, Date Picker, Hover Card, Menu, Popover, Select, - Tooltip**: Add `data-side` to placement-aware parts for placement-based - styling. -- **Accordion**: Remove redundant `aria-disabled` from item triggers. -- **Color Picker**: Fire `onValueChangeEnd` when picking a color with the - EyeDropper API. -- **Combobox**: Don't submit the form on `Enter` when an item is highlighted or - the value is rejected by `allowCustomValue: false`. -- **Date Picker**: Fix range-mode clear not resetting active/hovered state, the - native month/year select inside modals (Firefox), and `outsideDaySelectable` - hover changing the visible month. -- **Dialog, Hover Card, Menu, Popover, Tooltip**: Fix shared custom trigger - elements being ignored, and trigger lookups in shadow DOM. -- **Dialog, Popover**: Fix the page being left uninteractive after closing in - React 19 Strict Mode. -- **Number Input**: Fix blur behavior when the input is cleared and `min` is - greater than `0`. -- **Pin Input**: Fix `data-filled` being set on every input on first render. -- **Tabs**: Update the indicator when the tab list resizes (responsive reflow). diff --git a/apps/www/components/announcement.tsx b/apps/www/components/announcement.tsx index 6215c978c95..bec8c271d1b 100644 --- a/apps/www/components/announcement.tsx +++ b/apps/www/components/announcement.tsx @@ -12,8 +12,8 @@ export const Announcement = chakra("div", { py: "2", fontWeight: "medium", layerStyle: "fill.subtle", - colorPalette: "orange", - bg: "orange.500/10", + colorPalette: "teal", + bg: "teal.500/10", borderRadius: "l2", focusRing: "outside", }, diff --git a/apps/www/components/site/hero.section.tsx b/apps/www/components/site/hero.section.tsx index 333044ab01a..4cd68e2ac78 100644 --- a/apps/www/components/site/hero.section.tsx +++ b/apps/www/components/site/hero.section.tsx @@ -24,7 +24,7 @@ import { Slider } from "compositions/ui/slider" import { Switch } from "compositions/ui/switch" import Link from "next/link" import { HiArrowRight } from "react-icons/hi" -import { LuTerminal, LuWandSparkles } from "react-icons/lu" +import { LuPartyPopper, LuTerminal } from "react-icons/lu" const tabsData = [ { @@ -147,9 +147,9 @@ export const HeroSection = () => ( - - - Skills for AI Agents + + + New: FloatingPanel diff --git a/apps/www/content/blog/20-chakra-3.36-floating-panel.mdx b/apps/www/content/blog/20-chakra-3.36-floating-panel.mdx new file mode 100644 index 00000000000..bf52daec0fd --- /dev/null +++ b/apps/www/content/blog/20-chakra-3.36-floating-panel.mdx @@ -0,0 +1,135 @@ +--- +title: Meet FloatingPanel +description: + "Chakra UI v3.36 introduces FloatingPanel, a draggable, resizable panel that + floats above your page content" +type: release +version: "3.36" +authors: ["lope"] +publishedAt: "2026-06-10" +--- + +Today we're shipping Chakra UI v3.36, headlined by a brand-new component: +**[FloatingPanel](/docs/components/floating-panel)**. + +It's a draggable, resizable panel that floats above your page content, and it's +the building block for floating toolbars, property inspectors, mini-players, and +those little movable windows that always seem harder to build than they should +be. Dragging, resizing from any edge or corner, keeping the panel inside its +boundary, minimize and maximize states: FloatingPanel handles all of it, with an +API that fits the rest of Chakra UI. + +FloatingPanel was contributed by +[@kalisaNkevin](https://github.com/kalisaNkevin). Thank you for the excellent +work! + +## FloatingPanel + + + +Like the rest of Chakra UI, the panel is a set of composable parts you assemble +to fit your layout: + +```tsx + + + + + + + + + + + + + + + + + + +``` + +Out of the box you get: + +- Drag to reposition, resize from any edge or corner +- Minimize, maximize, and restore stages +- Boundary and overflow constraints so panels stay where they should +- Min/max size limits and controlled position/size +- Multiple independent panels on the same page +- Accessible by default, with `role="dialog"` semantics, arrow-key + repositioning, escape-to-close, and RTL support + +## Stages + +Panels can minimize to just their header, maximize to fill the available space, +or restore to their default size, all through `FloatingPanel.StageTrigger`. + + + +## Multiple Panels + +Render multiple `FloatingPanel.Root` instances to show several panels at once. +Each one manages its own open state, position, and size independently. + + + +## Open It From Anywhere + +Pair FloatingPanel with [`createOverlay`](/docs/components/overlay-manager) to +open a panel programmatically from anywhere in your app, no trigger required. + + + +## Splitter + +The Ark UI update also levels up [Splitter](/docs/components/splitter). Panel +sizes now accept [CSS-unit sizes](/docs/components/splitter#css-unit-sizes) like +`px`, `rem`, and `vw`, so a sidebar can hold a fixed width instead of a +percentage. + + + +There's also a new per-panel +[`resizeBehavior`](/docs/components/splitter#resize-behavior). Set it to +`"preserve-pixel-size"` to keep a panel's pixel width as the group resizes, +while the other panels absorb the change. + + + +## Also in v3.36 + +Alongside FloatingPanel, we shipped a round of fixes and refinements: + +- **Ark UI 5.37.2**: Updated our headless foundation. Floating components now + expose `data-side` for placement-aware styling, and Combobox, Date Picker, and + Tabs pick up a batch of fixes. +- **DatePicker**: Removed the input `_placeholder` override so placeholders use + the same global `*::placeholder` styling as `Input`. +- **Link**: Switched to `focusVisibleRing` so the focus ring shows only on + keyboard focus, not on mouse click. +- **Recipes**: Fixed `defaultVariants` types so they accept variant keys when + using the broad `RecipeDefinition` type. +- **Semantic tokens**: `system.token()` now returns the semantic CSS variable + reference instead of the dark-mode resolved value, with token-dictionary + bookkeeping that stays in sync after empty tokens are removed. +- **Token dictionary**: `getByName` now preserves semantic-token condition + metadata, and nested token overrides like `colors.black.100` merge correctly + against the default theme. +- **CLI**: `chakra typegen` now gives a clearer error when the input file + doesn't export a Chakra system, including the discovered exports and a + `createSystem(...)` example. + +## Upgrading + +```bash +npm install @chakra-ui/react@latest +``` + +This release is backward compatible, so you can upgrade and start using +FloatingPanel right away. + +Try it out and tell us what you build in +[Discord](https://chakra-ui.com/discord) or on +[Twitter](https://twitter.com/chakra_ui). diff --git a/packages/charts/CHANGELOG.md b/packages/charts/CHANGELOG.md index d8b1e06de3e..0585ec29f12 100644 --- a/packages/charts/CHANGELOG.md +++ b/packages/charts/CHANGELOG.md @@ -1,5 +1,7 @@ # @chakra-ui/charts +## 3.36.0 + ## 3.35.0 ## 3.34.0 diff --git a/packages/charts/package.json b/packages/charts/package.json index b457cc1dab2..edc37b61022 100644 --- a/packages/charts/package.json +++ b/packages/charts/package.json @@ -1,6 +1,6 @@ { "name": "@chakra-ui/charts", - "version": "3.35.0", + "version": "3.36.0", "description": "Data visualization components for Chakra UI", "type": "module", "main": "dist/cjs/index.cjs", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index d018a7ddf15..5c849dfc11f 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,16 @@ # @chakra-ui/cli +## 3.36.0 + +### Patch Changes + +- [#10825](https://github.com/chakra-ui/chakra-ui/pull/10825) + [`025b974`](https://github.com/chakra-ui/chakra-ui/commit/025b97446454626ec9b7b8b5065142a7b3bcc854) + Thanks [@cyphercodes](https://github.com/cyphercodes)! - Improve the + `chakra typegen` error when the input file does not export a Chakra system, + including the discovered exports and a `createSystem(...)` example for files + that export `defineConfig(...)` configs. + ## 3.35.0 ### Minor Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 842bda1ead5..1b194a4ad47 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@chakra-ui/cli", - "version": "3.35.0", + "version": "3.36.0", "description": "Generate theme typings for autocomplete", "keywords": [ "theme", diff --git a/packages/codemod/CHANGELOG.md b/packages/codemod/CHANGELOG.md index 36b608a8a5a..e5c97acf238 100644 --- a/packages/codemod/CHANGELOG.md +++ b/packages/codemod/CHANGELOG.md @@ -1,5 +1,7 @@ # @chakra-ui/codemod +## 3.36.0 + ## 3.35.0 ## 3.34.0 diff --git a/packages/codemod/package.json b/packages/codemod/package.json index 4ffa1800a96..ac4d67379d5 100644 --- a/packages/codemod/package.json +++ b/packages/codemod/package.json @@ -1,6 +1,6 @@ { "name": "@chakra-ui/codemod", - "version": "3.35.0", + "version": "3.36.0", "description": "Codemods for migrating and transforming Chakra UI codebases across versions.", "type": "module", "main": "dist/esm/index.js", diff --git a/packages/panda-preset/CHANGELOG.md b/packages/panda-preset/CHANGELOG.md index ffe44ffba30..519da882690 100644 --- a/packages/panda-preset/CHANGELOG.md +++ b/packages/panda-preset/CHANGELOG.md @@ -1,5 +1,19 @@ # @chakra-ui/panda-preset +## 3.36.0 + +### Patch Changes + +- [`43a016d`](https://github.com/chakra-ui/chakra-ui/commit/43a016d32f470b14bbfb0d0a7c83075902feee5e) + Thanks [@segunadebayo](https://github.com/segunadebayo)! - Remove the + DatePicker input `_placeholder` override so placeholders use the same global + `*::placeholder` styling as `Input`. + +- [`82b26be`](https://github.com/chakra-ui/chakra-ui/commit/82b26bea60f49450522354474fa5b1811095c3bb) + Thanks [@segunadebayo](https://github.com/segunadebayo)! - Use + `focusVisibleRing` instead of `focusRing` on `Link` so the focus ring shows + only for `:focus-visible`, not on mouse click. + ## 3.35.0 ### Patch Changes diff --git a/packages/panda-preset/package.json b/packages/panda-preset/package.json index 3a5a5cbba43..14e8eb51b98 100644 --- a/packages/panda-preset/package.json +++ b/packages/panda-preset/package.json @@ -1,6 +1,6 @@ { "name": "@chakra-ui/panda-preset", - "version": "3.35.0", + "version": "3.36.0", "description": "Panda preset for Chakra UI", "type": "module", "main": "dist/cjs/index.cjs", diff --git a/packages/panda-preset/src/slot-recipes/floating-panel.ts b/packages/panda-preset/src/slot-recipes/floating-panel.ts new file mode 100644 index 00000000000..ce032266e75 --- /dev/null +++ b/packages/panda-preset/src/slot-recipes/floating-panel.ts @@ -0,0 +1,88 @@ +import { defineSlotRecipe } from "../def" + +export const floatingPanelSlotRecipe = defineSlotRecipe({ + slots: [ + "trigger", + "positioner", + "content", + "header", + "body", + "title", + "resizeTrigger", + "dragTrigger", + "stageTrigger", + "closeTrigger", + "control", + ], + className: "floating-panel", + base: { + positioner: { + "--floating-panel-z-index": "zIndex.popover", + zIndex: "calc(var(--floating-panel-z-index) + var(--layer-index, 0))", + "&:has([data-topmost])": { + "--layer-index": "100", + }, + "&:has([data-behind])": { + "--layer-index": "-100", + }, + }, + content: { + display: "flex", + flexDirection: "column", + bg: "bg.panel", + borderRadius: "l2", + boxShadow: "lg", + overflow: "hidden", + outline: 0, + position: "relative", + _open: { + animationName: "scale-in, fade-in", + animationDuration: "moderate", + }, + }, + dragTrigger: { + flex: "1", + display: "flex", + alignItems: "center", + gap: "2", + minW: "0", + }, + header: { + display: "flex", + alignItems: "center", + gap: "2", + px: "3", + py: "2", + borderBottomWidth: "1px", + bg: "bg.subtle", + flex: "none", + }, + title: { + fontWeight: "semibold", + textStyle: "sm", + flex: "1", + truncate: true, + }, + body: { + flex: "1", + overflow: "auto", + p: "3", + textStyle: "sm", + }, + resizeTrigger: { + zIndex: "1", + "--size": "sizes.2.5", + '&[data-axis="n"], &[data-axis="s"]': { + h: "var(--size)", + }, + '&[data-axis="e"], &[data-axis="w"]': { + w: "var(--size)", + }, + '&[data-axis]:is([data-axis="ne"], [data-axis="nw"], [data-axis="se"], [data-axis="sw"])': + { + w: "var(--size)", + h: "var(--size)", + }, + }, + }, +}) diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index b605ba639f3..abebc4dc788 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,110 @@ # @chakra-ui/react +## 3.36.0 + +### Minor Changes + +- [#10752](https://github.com/chakra-ui/chakra-ui/pull/10752) + [`1ef5800`](https://github.com/chakra-ui/chakra-ui/commit/1ef580069c1a6c0cc3dd03f6edab52d98dac14b2) + Thanks [@kalisaNkevin](https://github.com/kalisaNkevin)! - **[New] + FloatingPanel**: Add draggable, resizable floating panel component + + ```tsx + import { FloatingPanel } from "@chakra-ui/react/floating-panel" + ``` + + ```tsx + + + + + + + + + + + + + + + + + + + ``` + +- [#10847](https://github.com/chakra-ui/chakra-ui/pull/10847) + [`238e20a`](https://github.com/chakra-ui/chakra-ui/commit/238e20a41a3e8f750bad555d56a1b23fa3de84d8) + Thanks [@Adebesin-Cell](https://github.com/Adebesin-Cell)! - Update Ark UI to + v5.37.2 + - **Splitter**: Accept CSS units (`px`, `em`, `rem`, `vh`, `vw`) for size + props, add per-panel `resizeBehavior` (`"preserve-pixel-size"`), and fix + focus not moving to a resize trigger on click. + - **Color Picker, Combobox, Date Picker, Hover Card, Menu, Popover, Select, + Tooltip**: Add `data-side` to placement-aware parts for placement-based + styling. + - **Accordion**: Remove redundant `aria-disabled` from item triggers. + - **Color Picker**: Fire `onValueChangeEnd` when picking a color with the + EyeDropper API. + - **Combobox**: Don't submit the form on `Enter` when an item is highlighted + or the value is rejected by `allowCustomValue: false`. + - **Date Picker**: Fix range-mode clear not resetting active/hovered state, + the native month/year select inside modals (Firefox), and + `outsideDaySelectable` hover changing the visible month. + - **Dialog, Hover Card, Menu, Popover, Tooltip**: Fix shared custom trigger + elements being ignored, and trigger lookups in shadow DOM. + - **Dialog, Popover**: Fix the page being left uninteractive after closing in + React 19 Strict Mode. + - **Number Input**: Fix blur behavior when the input is cleared and `min` is + greater than `0`. + - **Pin Input**: Fix `data-filled` being set on every input on first render. + - **Tabs**: Update the indicator when the tab list resizes (responsive + reflow). + +### Patch Changes + +- [`43a016d`](https://github.com/chakra-ui/chakra-ui/commit/43a016d32f470b14bbfb0d0a7c83075902feee5e) + Thanks [@segunadebayo](https://github.com/segunadebayo)! - Remove the + DatePicker input `_placeholder` override so placeholders use the same global + `*::placeholder` styling as `Input`. + +- [`82b26be`](https://github.com/chakra-ui/chakra-ui/commit/82b26bea60f49450522354474fa5b1811095c3bb) + Thanks [@segunadebayo](https://github.com/segunadebayo)! - Use + `focusVisibleRing` instead of `focusRing` on `Link` so the focus ring shows + only for `:focus-visible`, not on mouse click. + +- [`1bbdd86`](https://github.com/chakra-ui/chakra-ui/commit/1bbdd8608cbd6b5c1b34b1eea3b1989b8a1dd6b4) + Thanks [@segunadebayo](https://github.com/segunadebayo)! - Fix recipe + definition types so `defaultVariants` accepts variant keys when using the + broad `RecipeDefinition` type. + +- [`06b5f02`](https://github.com/chakra-ui/chakra-ui/commit/06b5f022dbe16a2285437465340871b975c34dfb) + Thanks [@segunadebayo](https://github.com/segunadebayo)! - Fix + `system.token()` returning dark-mode resolved values for semantic tokens with + light/dark conditions instead of the semantic CSS variable reference. + + Also fix token dictionary bookkeeping for semantic tokens without a base value + so lookup maps stay in sync after empty tokens are removed. + +- [#10799](https://github.com/chakra-ui/chakra-ui/pull/10799) + [`7a97cf9`](https://github.com/chakra-ui/chakra-ui/commit/7a97cf9f359373ca577374881ba2c6ba6770cebe) + Thanks [@cyphercodes](https://github.com/cyphercodes)! - Fix token dictionary + lookups to preserve semantic token condition metadata when using `getByName`. + +- [#10801](https://github.com/chakra-ui/chakra-ui/pull/10801) + [`27e0489`](https://github.com/chakra-ui/chakra-ui/commit/27e048996062c642c3b7417879fe299ca266eef2) + Thanks [@doz13189](https://github.com/doz13189)! - Fix: normalize nested token + overrides when merging default theme + + When merging a custom token into the default theme, token normalization could + stop at the category level (for example `colors`) and prevent promoting flat + tokens to `DEFAULT`. This change updates the merge logic so adding nested + overrides like `colors.black.100` correctly moves the original `colors.black` + value to `DEFAULT` and resolves nested tokens. + + Fixes: [#10800](https://github.com/chakra-ui/chakra-ui/issues/10800) + ## 3.35.0 ### Minor Changes diff --git a/packages/react/package.json b/packages/react/package.json index 9778fba3f3e..b713c20c5b0 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@chakra-ui/react", - "version": "3.35.0", + "version": "3.36.0", "description": "Responsive and accessible React UI components built with React and Emotion", "type": "module", "main": "dist/cjs/index.cjs", diff --git a/sandbox/tanstack-router/CHANGELOG.md b/sandbox/tanstack-router/CHANGELOG.md index 97bb842186d..d795fec5e1a 100644 --- a/sandbox/tanstack-router/CHANGELOG.md +++ b/sandbox/tanstack-router/CHANGELOG.md @@ -1,5 +1,20 @@ # tanstack-router-ts +## 0.0.3 + +### Patch Changes + +- Updated dependencies + [[`1ef5800`](https://github.com/chakra-ui/chakra-ui/commit/1ef580069c1a6c0cc3dd03f6edab52d98dac14b2), + [`43a016d`](https://github.com/chakra-ui/chakra-ui/commit/43a016d32f470b14bbfb0d0a7c83075902feee5e), + [`82b26be`](https://github.com/chakra-ui/chakra-ui/commit/82b26bea60f49450522354474fa5b1811095c3bb), + [`1bbdd86`](https://github.com/chakra-ui/chakra-ui/commit/1bbdd8608cbd6b5c1b34b1eea3b1989b8a1dd6b4), + [`06b5f02`](https://github.com/chakra-ui/chakra-ui/commit/06b5f022dbe16a2285437465340871b975c34dfb), + [`7a97cf9`](https://github.com/chakra-ui/chakra-ui/commit/7a97cf9f359373ca577374881ba2c6ba6770cebe), + [`27e0489`](https://github.com/chakra-ui/chakra-ui/commit/27e048996062c642c3b7417879fe299ca266eef2), + [`238e20a`](https://github.com/chakra-ui/chakra-ui/commit/238e20a41a3e8f750bad555d56a1b23fa3de84d8)]: + - @chakra-ui/react@3.36.0 + ## 0.0.2 ### Patch Changes diff --git a/sandbox/tanstack-router/package.json b/sandbox/tanstack-router/package.json index 8c25560ad34..768479e97d6 100644 --- a/sandbox/tanstack-router/package.json +++ b/sandbox/tanstack-router/package.json @@ -1,7 +1,7 @@ { "name": "tanstack-router-ts", "private": true, - "version": "0.0.2", + "version": "0.0.3", "type": "module", "scripts": { "dev": "vite",