Skip to content

Version Packages#3050

Open
github-actions[bot] wants to merge 1 commit intomainfrom
changeset-release/main
Open

Version Packages#3050
github-actions[bot] wants to merge 1 commit intomainfrom
changeset-release/main

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

@github-actions github-actions bot commented Mar 26, 2026

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@zag-js/dialog@1.39.0

Minor Changes

  • #2929
    024dc75 Thanks
    @segunadebayo! - Add support for multiple triggers in Dialog, Hover Card, Menu,
    Popover, and Tooltip.

    A single component instance can now be shared across multiple trigger elements. Each trigger is identified by a
    value passed to getTriggerProps:

    const users = [{ id: 1, name: "Alice Johnson" }]
    
    const Demo = () => {
      // One dialog, many triggers
      const service = useMachine(dialog.machine, {
        id: useId(),
        // Track the active trigger change
        onTriggerValueChange({ value }) {
          const user = users.find((u) => u.id === value) ?? null
          setActiveUser(user)
        },
      })
    
      const api = dialog.connect(service, normalizeProps)
    
      return (
        <>
          {users.map((user) => (
            <button {...api.getTriggerProps({ value: user.id })}>Edit {user.name}</button>
          ))}
        </>
      )
    }

    When the component is open and a different trigger is activated, it switches and repositions without closing.
    aria-expanded is scoped to the active trigger, and focus returns to the correct trigger on close.

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/aria-hidden@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dismissable@1.39.0
    • @zag-js/dom-query@1.39.0
    • @zag-js/focus-trap@1.39.0
    • @zag-js/remove-scroll@1.39.0

@zag-js/drawer@1.39.0

Minor Changes

  • #2929
    024dc75 Thanks
    @segunadebayo! - Add support for multiple triggers in Dialog, Hover Card, Menu,
    Popover, and Tooltip.

    A single component instance can now be shared across multiple trigger elements. Each trigger is identified by a
    value passed to getTriggerProps:

    const users = [{ id: 1, name: "Alice Johnson" }]
    
    const Demo = () => {
      // One dialog, many triggers
      const service = useMachine(dialog.machine, {
        id: useId(),
        // Track the active trigger change
        onTriggerValueChange({ value }) {
          const user = users.find((u) => u.id === value) ?? null
          setActiveUser(user)
        },
      })
    
      const api = dialog.connect(service, normalizeProps)
    
      return (
        <>
          {users.map((user) => (
            <button {...api.getTriggerProps({ value: user.id })}>Edit {user.name}</button>
          ))}
        </>
      )
    }

    When the component is open and a different trigger is activated, it switches and repositions without closing.
    aria-expanded is scoped to the active trigger, and focus returns to the correct trigger on close.

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/aria-hidden@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dismissable@1.39.0
    • @zag-js/dom-query@1.39.0
    • @zag-js/focus-trap@1.39.0
    • @zag-js/remove-scroll@1.39.0

@zag-js/hover-card@1.39.0

Minor Changes

  • #2929
    024dc75 Thanks
    @segunadebayo! - Add support for multiple triggers in Dialog, Hover Card, Menu,
    Popover, and Tooltip.

    A single component instance can now be shared across multiple trigger elements. Each trigger is identified by a
    value passed to getTriggerProps:

    const users = [{ id: 1, name: "Alice Johnson" }]
    
    const Demo = () => {
      // One dialog, many triggers
      const service = useMachine(dialog.machine, {
        id: useId(),
        // Track the active trigger change
        onTriggerValueChange({ value }) {
          const user = users.find((u) => u.id === value) ?? null
          setActiveUser(user)
        },
      })
    
      const api = dialog.connect(service, normalizeProps)
    
      return (
        <>
          {users.map((user) => (
            <button {...api.getTriggerProps({ value: user.id })}>Edit {user.name}</button>
          ))}
        </>
      )
    }

    When the component is open and a different trigger is activated, it switches and repositions without closing.
    aria-expanded is scoped to the active trigger, and focus returns to the correct trigger on close.

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dismissable@1.39.0
    • @zag-js/dom-query@1.39.0
    • @zag-js/popper@1.39.0

@zag-js/menu@1.39.0

Minor Changes

  • #2929
    024dc75 Thanks
    @segunadebayo! - Add support for multiple triggers in Dialog, Hover Card, Menu,
    Popover, and Tooltip.

    A single component instance can now be shared across multiple trigger elements. Each trigger is identified by a
    value passed to getTriggerProps:

    const users = [{ id: 1, name: "Alice Johnson" }]
    
    const Demo = () => {
      // One dialog, many triggers
      const service = useMachine(dialog.machine, {
        id: useId(),
        // Track the active trigger change
        onTriggerValueChange({ value }) {
          const user = users.find((u) => u.id === value) ?? null
          setActiveUser(user)
        },
      })
    
      const api = dialog.connect(service, normalizeProps)
    
      return (
        <>
          {users.map((user) => (
            <button {...api.getTriggerProps({ value: user.id })}>Edit {user.name}</button>
          ))}
        </>
      )
    }

    When the component is open and a different trigger is activated, it switches and repositions without closing.
    aria-expanded is scoped to the active trigger, and focus returns to the correct trigger on close.

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dismissable@1.39.0
    • @zag-js/dom-query@1.39.0
    • @zag-js/focus-visible@1.39.0
    • @zag-js/popper@1.39.0
    • @zag-js/rect-utils@1.39.0

@zag-js/popover@1.39.0

Minor Changes

  • #2929
    024dc75 Thanks
    @segunadebayo! - Add support for multiple triggers in Dialog, Hover Card, Menu,
    Popover, and Tooltip.

    A single component instance can now be shared across multiple trigger elements. Each trigger is identified by a
    value passed to getTriggerProps:

    const users = [{ id: 1, name: "Alice Johnson" }]
    
    const Demo = () => {
      // One dialog, many triggers
      const service = useMachine(dialog.machine, {
        id: useId(),
        // Track the active trigger change
        onTriggerValueChange({ value }) {
          const user = users.find((u) => u.id === value) ?? null
          setActiveUser(user)
        },
      })
    
      const api = dialog.connect(service, normalizeProps)
    
      return (
        <>
          {users.map((user) => (
            <button {...api.getTriggerProps({ value: user.id })}>Edit {user.name}</button>
          ))}
        </>
      )
    }

    When the component is open and a different trigger is activated, it switches and repositions without closing.
    aria-expanded is scoped to the active trigger, and focus returns to the correct trigger on close.

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/aria-hidden@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dismissable@1.39.0
    • @zag-js/dom-query@1.39.0
    • @zag-js/focus-trap@1.39.0
    • @zag-js/popper@1.39.0
    • @zag-js/remove-scroll@1.39.0

@zag-js/tags-input@1.39.0

Minor Changes

  • e352a49 Thanks
    @segunadebayo! - - Add sanitizeValue prop to transform tag values before adding.
    Defaults to (v) => v.trim().

Patch Changes

  • e33abb5 Thanks
    @segunadebayo! - Set enterKeyHint to "done" on the input element so mobile
    virtual keyboards show a "Done" button that triggers tag addition.
  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/auto-resize@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0
    • @zag-js/interact-outside@1.39.0
    • @zag-js/live-region@1.39.0

@zag-js/toast@1.39.0

Minor Changes

  • #2628
    afd8047 Thanks
    @segunadebayo! - Add priority-based queue system for toasts. When the max number of
    toasts is reached, queued toasts are sorted by priority (1-8, lower is higher priority) before being displayed.
    Priorities are automatically assigned based on toast type and whether it has an action. Custom priorities can be set
    via the priority option.

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dismissable@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/tooltip@1.39.0

Minor Changes

  • #2929
    024dc75 Thanks
    @segunadebayo! - Add support for multiple triggers in Dialog, Hover Card, Menu,
    Popover, and Tooltip.

    A single component instance can now be shared across multiple trigger elements. Each trigger is identified by a
    value passed to getTriggerProps:

    const users = [{ id: 1, name: "Alice Johnson" }]
    
    const Demo = () => {
      // One dialog, many triggers
      const service = useMachine(dialog.machine, {
        id: useId(),
        // Track the active trigger change
        onTriggerValueChange({ value }) {
          const user = users.find((u) => u.id === value) ?? null
          setActiveUser(user)
        },
      })
    
      const api = dialog.connect(service, normalizeProps)
    
      return (
        <>
          {users.map((user) => (
            <button {...api.getTriggerProps({ value: user.id })}>Edit {user.name}</button>
          ))}
        </>
      )
    }

    When the component is open and a different trigger is activated, it switches and repositions without closing.
    aria-expanded is scoped to the active trigger, and focus returns to the correct trigger on close.

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0
    • @zag-js/focus-visible@1.39.0
    • @zag-js/popper@1.39.0

@zag-js/core@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/preact@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/core@1.39.0
    • @zag-js/store@1.39.0
    • @zag-js/types@1.39.0

@zag-js/react@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/core@1.39.0
    • @zag-js/store@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0

@zag-js/solid@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/core@1.39.0
    • @zag-js/store@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0

@zag-js/svelte@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0

@zag-js/vanilla@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/core@1.39.0
    • @zag-js/store@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0

@zag-js/vue@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/core@1.39.0
    • @zag-js/store@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0

@zag-js/accordion@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/angle-slider@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0
    • @zag-js/rect-utils@1.39.0

@zag-js/async-list@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/core@1.39.0
    • @zag-js/utils@1.39.0

@zag-js/avatar@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/carousel@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0
    • @zag-js/scroll-snap@1.39.0

@zag-js/cascade-select@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/collection@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dismissable@1.39.0
    • @zag-js/dom-query@1.39.0
    • @zag-js/focus-visible@1.39.0
    • @zag-js/popper@1.39.0
    • @zag-js/rect-utils@1.39.0

@zag-js/checkbox@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0
    • @zag-js/focus-visible@1.39.0

@zag-js/clipboard@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/collapsible@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/color-picker@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/color-utils@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dismissable@1.39.0
    • @zag-js/dom-query@1.39.0
    • @zag-js/popper@1.39.0

@zag-js/combobox@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/aria-hidden@1.39.0
    • @zag-js/collection@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dismissable@1.39.0
    • @zag-js/dom-query@1.39.0
    • @zag-js/focus-visible@1.39.0
    • @zag-js/popper@1.39.0

@zag-js/date-input@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/date-utils@1.39.0
    • @zag-js/dom-query@1.39.0
    • @zag-js/live-region@1.39.0

@zag-js/date-picker@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/date-utils@1.39.0
    • @zag-js/dismissable@1.39.0
    • @zag-js/dom-query@1.39.0
    • @zag-js/live-region@1.39.0
    • @zag-js/popper@1.39.0

@zag-js/editable@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0
    • @zag-js/interact-outside@1.39.0

@zag-js/file-upload@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0
    • @zag-js/file-utils@1.39.0
    • @zag-js/i18n-utils@1.39.0

@zag-js/floating-panel@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/store@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0
    • @zag-js/popper@1.39.0
    • @zag-js/rect-utils@1.39.0

@zag-js/image-cropper@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/listbox@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/collection@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0
    • @zag-js/focus-visible@1.39.0

@zag-js/marquee@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/navigation-menu@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dismissable@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/number-input@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/pagination@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/password-input@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/pin-input@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/presence@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/progress@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/qr-code@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/radio-group@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0
    • @zag-js/focus-visible@1.39.0

@zag-js/rating-group@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/scroll-area@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/select@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/collection@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dismissable@1.39.0
    • @zag-js/dom-query@1.39.0
    • @zag-js/focus-visible@1.39.0
    • @zag-js/popper@1.39.0

@zag-js/signature-pad@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/slider@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/splitter@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/steps@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/switch@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0
    • @zag-js/focus-visible@1.39.0

@zag-js/tabs@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/timer@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/toc@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/toggle@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/toggle-group@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/tour@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dismissable@1.39.0
    • @zag-js/dom-query@1.39.0
    • @zag-js/focus-trap@1.39.0
    • @zag-js/interact-outside@1.39.0
    • @zag-js/popper@1.39.0

@zag-js/tree-view@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@1.39.0
    • @zag-js/core@1.39.0
    • @zag-js/types@1.39.0
    • @zag-js/collection@1.39.0
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/aria-hidden@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/dom-query@1.39.0

@zag-js/auto-resize@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/dom-query@1.39.0

@zag-js/collection@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/utils@1.39.0

@zag-js/color-utils@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/utils@1.39.0

@zag-js/dismissable@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0
    • @zag-js/interact-outside@1.39.0

@zag-js/dom-query@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/types@1.39.0

@zag-js/file-utils@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/i18n-utils@1.39.0

@zag-js/focus-trap@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/dom-query@1.39.0

@zag-js/focus-visible@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/dom-query@1.39.0

@zag-js/i18n-utils@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/dom-query@1.39.0

@zag-js/interact-outside@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/popper@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/utils@1.39.0
    • @zag-js/dom-query@1.39.0

@zag-js/remove-scroll@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/dom-query@1.39.0

@zag-js/scroll-snap@1.39.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/dom-query@1.39.0

@zag-js/anatomy@1.39.0

@zag-js/anatomy-icons@1.39.0

@zag-js/docs@1.39.0

@zag-js/store@1.39.0

@zag-js/types@1.39.0

@zag-js/utils@1.39.0

@zag-js/date-utils@1.39.0

@zag-js/highlight-word@1.39.0

@zag-js/hotkeys@1.39.0

@zag-js/json-tree-utils@1.39.0

@zag-js/live-region@1.39.0

@zag-js/rect-utils@1.39.0

@zag-js/stringify-state@1.39.0

svelte-kit-starter@0.0.13

Patch Changes

  • Updated dependencies []:
    • @zag-js/svelte@1.39.0
    • @zag-js/switch@1.39.0

@vercel
Copy link
Copy Markdown

vercel bot commented Mar 26, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
zag-nextjs Ready Ready Preview Mar 29, 2026 4:45pm
zag-solid Ready Ready Preview Mar 29, 2026 4:45pm
zag-svelte Ready Ready Preview Mar 29, 2026 4:45pm
zag-vue Ready Ready Preview Mar 29, 2026 4:45pm
zag-website Ready Ready Preview Mar 29, 2026 4:45pm

Request Review

@segunadebayo segunadebayo force-pushed the changeset-release/main branch from 53632f5 to 4b374ec Compare March 26, 2026 17:26
@segunadebayo segunadebayo force-pushed the changeset-release/main branch from 4b374ec to 2fd46c4 Compare March 26, 2026 21:31
@segunadebayo segunadebayo force-pushed the changeset-release/main branch from 2fd46c4 to 2e58869 Compare March 26, 2026 22:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants