Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #1432

Merged
merged 1 commit into from Apr 22, 2024
Merged

Version Packages #1432

merged 1 commit into from Apr 22, 2024

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Apr 18, 2024

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/accordion@0.48.0

Minor Changes

  • #1435 23ed828 Thanks @segunadebayo! - - Rename getItemState properties
    • isOpen -> expanded
    • isDisabled -> disabled
    • isFocused -> focused

Patch Changes

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

@zag-js/avatar@0.48.0

Minor Changes

  • #1435 23ed828 Thanks @segunadebayo! - - Rename api.isLoaded to api.loaded
    • Remove api.showFallback since it's equivalent to !api.loaded

Patch Changes

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

@zag-js/carousel@0.48.0

Minor Changes

  • #1435 23ed828 Thanks @segunadebayo! - - Rename api.getItemState properties

    • isCurrent to current
    • isNext to next
    • isPrevious to previous
    • isInView to inView
    • Rename api.isAutoPlay to api.autoPlaying

Patch Changes

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

@zag-js/checkbox@0.48.0

Minor Changes

Patch Changes

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

@zag-js/clipboard@0.48.0

Minor Changes

Patch Changes

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

@zag-js/collapsible@0.48.0

Minor Changes

  • #1435 23ed828 Thanks @segunadebayo! - Rename api properties

    • isVisible -> visible
    • isDisabled -> disabled
    • isOpen -> open
    • open, close -> setOpen(true|false)

Patch Changes

  • 40f3703 Thanks @cschroeter! - Resolve an issue that sometimes the collapsible height was not measured correctly

  • Updated dependencies []:

    • @zag-js/anatomy@0.48.0
    • @zag-js/core@0.48.0
    • @zag-js/types@0.48.0
    • @zag-js/utils@0.48.0
    • @zag-js/dom-query@0.48.0

@zag-js/color-picker@0.48.0

Minor Changes

  • #1435 23ed828 Thanks @segunadebayo! - Rename api properties

    • isDragging -> dragging
    • isOpen -> open
    • open(), close() -> setOpen(true|false)

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@0.48.0
    • @zag-js/core@0.48.0
    • @zag-js/types@0.48.0
    • @zag-js/color-utils@0.48.0
    • @zag-js/utils@0.48.0
    • @zag-js/dismissable@0.48.0
    • @zag-js/dom-event@0.48.0
    • @zag-js/dom-query@0.48.0
    • @zag-js/form-utils@0.48.0
    • @zag-js/popper@0.48.0
    • @zag-js/tabbable@0.48.0
    • @zag-js/text-selection@0.48.0

@zag-js/combobox@0.48.0

Minor Changes

  • #1431 80b97a9 Thanks @segunadebayo! - - Add open and open.controlled property to programmatically control the combobox's open state

    • Add new openOnChange property to automatically open the combobox when the value changes. Value can be a boolean or a
      function that returns a boolean.
    const [state, send] = useMachine(
      combobox.machine({
        // openOnChange: true,
        openOnChange: ({ inputValue }) => inputValue.length > 2,
      }),
    );
    • Add new openOnKeypress property to automatically open the combobox when the arrow keys (up and down) are pressed.
    • Add getSelectionValue to the combobox's context to allow customizing the input value when an item is selected.
    const [state, send] = useMachine(
      combobox.machine({
        getSelectionValue({ inputValue, valueAsString }) {
          return `${inputValue} ${valueAsString}`;
        },
      }),
    );
    • Add new dismissable property to determine whether to add the combobox content to the dismissable stack.
    • Add popup attribute to allow rendering the combobox has a select with input within the content.
    • Add persistFocus to the item props to determine whether to clear the highlighted item on pointer leave.
  • #1435 23ed828 Thanks @segunadebayo! - Rename api properties

    • isFocused -> focused
    • isOpen -> open
    • isInputValueEmpty -> inputEmpty
    • open(), close() -> setOpen(true|false)
  • #1431 80b97a9 Thanks @segunadebayo! - Rename loop to loopFocus to better reflect its purpose

  • #1431 80b97a9 Thanks @segunadebayo! - - Fix issue where combobox could be composed with tags-input due to the way selectedItems and valueAsString was
    computed

    • Remove selectOnBlur to prevent accidental selection of options. Prefer explicit selection by user via click or enter
      key.
    • Update the details provided by onInputValueChange to from details.value to details.inputValue

Patch Changes

  • Updated dependencies [ed0ee38]:
    • @zag-js/collection@0.48.0
    • @zag-js/anatomy@0.48.0
    • @zag-js/core@0.48.0
    • @zag-js/types@0.48.0
    • @zag-js/aria-hidden@0.48.0
    • @zag-js/utils@0.48.0
    • @zag-js/dismissable@0.48.0
    • @zag-js/dom-event@0.48.0
    • @zag-js/dom-query@0.48.0
    • @zag-js/popper@0.48.0

@zag-js/dialog@0.48.0

Minor Changes

Patch Changes

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

@zag-js/editable@0.48.0

Minor Changes

Patch Changes

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

@zag-js/file-upload@0.48.0

Minor Changes

  • #1435 23ed828 Thanks @segunadebayo! - Rename api properties

    • isDragging -> dragging
    • isFocused -> focused
    • open() -> openFilePicker()

Patch Changes

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

@zag-js/menu@0.48.0

Minor Changes

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@0.48.0
    • @zag-js/core@0.48.0
    • @zag-js/types@0.48.0
    • @zag-js/utils@0.48.0
    • @zag-js/dismissable@0.48.0
    • @zag-js/dom-event@0.48.0
    • @zag-js/dom-query@0.48.0
    • @zag-js/popper@0.48.0
    • @zag-js/rect-utils@0.48.0
    • @zag-js/tabbable@0.48.0

@zag-js/radio-group@0.48.0

Minor Changes

Patch Changes

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

@zag-js/select@0.48.0

Minor Changes

  • #1431 80b97a9 Thanks @segunadebayo! - Rename loop to loopFocus to better reflect its purpose

  • #1431 80b97a9 Thanks @segunadebayo! - Remove selectOnBlur to prevent accidental selection of options. Prefer explicit selection by user via click or enter key.

Patch Changes

  • Updated dependencies [ed0ee38]:
    • @zag-js/collection@0.48.0
    • @zag-js/anatomy@0.48.0
    • @zag-js/core@0.48.0
    • @zag-js/types@0.48.0
    • @zag-js/utils@0.48.0
    • @zag-js/dismissable@0.48.0
    • @zag-js/dom-event@0.48.0
    • @zag-js/dom-query@0.48.0
    • @zag-js/form-utils@0.48.0
    • @zag-js/popper@0.48.0

@zag-js/signature-pad@0.48.0

Minor Changes

Patch Changes

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

@zag-js/switch@0.48.0

Minor Changes

Patch Changes

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

@zag-js/tabs@0.48.0

Minor Changes

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@0.48.0
    • @zag-js/core@0.48.0
    • @zag-js/types@0.48.0
    • @zag-js/utils@0.48.0
    • @zag-js/dom-event@0.48.0
    • @zag-js/dom-query@0.48.0
    • @zag-js/element-rect@0.48.0
    • @zag-js/tabbable@0.48.0

@zag-js/tags-input@0.48.0

Minor Changes

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@0.48.0
    • @zag-js/core@0.48.0
    • @zag-js/types@0.48.0
    • @zag-js/auto-resize@0.48.0
    • @zag-js/utils@0.48.0
    • @zag-js/dom-event@0.48.0
    • @zag-js/dom-query@0.48.0
    • @zag-js/form-utils@0.48.0
    • @zag-js/interact-outside@0.48.0
    • @zag-js/live-region@0.48.0

@zag-js/tree-view@0.48.0

Minor Changes

  • c7b781c Thanks @segunadebayo! - - Rename some properties for better consistency:

    • id -> value
    • expandedIds -> expandedValue
    • selectedIds -> selectedValue
  • #1435 23ed828 Thanks @segunadebayo! - - Rename api.getItemState properties

    • isDisabled -> disabled

    • isFocused -> focused

    • isSelected -> selected

    • Rename api.getBranchState properties

      • isExpanded -> expanded

Patch Changes

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

@zag-js/core@0.48.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/store@0.48.0

@zag-js/react@0.48.0

Patch Changes

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

@zag-js/solid@0.48.0

Patch Changes

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

@zag-js/svelte@0.48.0

Patch Changes

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

@zag-js/vue@0.48.0

Patch Changes

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

@zag-js/date-picker@0.48.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@0.48.0
    • @zag-js/core@0.48.0
    • @zag-js/types@0.48.0
    • @zag-js/utils@0.48.0
    • @zag-js/date-utils@0.48.0
    • @zag-js/dismissable@0.48.0
    • @zag-js/dom-event@0.48.0
    • @zag-js/dom-query@0.48.0
    • @zag-js/form-utils@0.48.0
    • @zag-js/live-region@0.48.0
    • @zag-js/popper@0.48.0
    • @zag-js/text-selection@0.48.0

@zag-js/floating-panel@0.48.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@0.48.0
    • @zag-js/core@0.48.0
    • @zag-js/types@0.48.0
    • @zag-js/utils@0.48.0
    • @zag-js/dismissable@0.48.0
    • @zag-js/dom-event@0.48.0
    • @zag-js/dom-query@0.48.0
    • @zag-js/numeric-range@0.48.0
    • @zag-js/popper@0.48.0
    • @zag-js/rect-utils@0.48.0

@zag-js/hover-card@0.48.0

Patch Changes

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

@zag-js/number-input@0.48.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@0.48.0
    • @zag-js/core@0.48.0
    • @zag-js/types@0.48.0
    • @zag-js/utils@0.48.0
    • @zag-js/dom-event@0.48.0
    • @zag-js/dom-query@0.48.0
    • @zag-js/form-utils@0.48.0
    • @zag-js/number-utils@0.48.0

@zag-js/pagination@0.48.0

Patch Changes

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

@zag-js/pin-input@0.48.0

Patch Changes

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

@zag-js/popover@0.48.0

Patch Changes

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

@zag-js/presence@0.48.0

Patch Changes

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

@zag-js/progress@0.48.0

Patch Changes

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

@zag-js/rating-group@0.48.0

Patch Changes

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

@zag-js/slider@0.48.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/anatomy@0.48.0
    • @zag-js/core@0.48.0
    • @zag-js/types@0.48.0
    • @zag-js/utils@0.48.0
    • @zag-js/dom-event@0.48.0
    • @zag-js/dom-query@0.48.0
    • @zag-js/element-size@0.48.0
    • @zag-js/form-utils@0.48.0
    • @zag-js/numeric-range@0.48.0

@zag-js/splitter@0.48.0

Patch Changes

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

@zag-js/toast@0.48.0

Patch Changes

  • 2ac0f00 Thanks @cschroeter! - Fix an issue where toast hide immediately after updating

  • ccb1fa5 Thanks @cschroeter! - Fix an issue that the height was not exactly measured

  • Updated dependencies []:

    • @zag-js/anatomy@0.48.0
    • @zag-js/core@0.48.0
    • @zag-js/types@0.48.0
    • @zag-js/utils@0.48.0
    • @zag-js/dismissable@0.48.0
    • @zag-js/dom-event@0.48.0
    • @zag-js/dom-query@0.48.0

@zag-js/toggle-group@0.48.0

Patch Changes

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

@zag-js/tooltip@0.48.0

Patch Changes

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

@zag-js/tour@0.48.0

Patch Changes

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

@zag-js/aria-hidden@0.48.0

Patch Changes

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

@zag-js/auto-resize@0.48.0

Patch Changes

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

@zag-js/collection@0.48.0

Patch Changes

  • #1434 ed0ee38 Thanks @erm1116! - Fix issue where value is unintentionally sorted when highlighting item in the combobox and the select machine

@zag-js/color-utils@0.48.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/numeric-range@0.48.0

@zag-js/dismissable@0.48.0

Patch Changes

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

@zag-js/dom-event@0.48.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/types@0.48.0
    • @zag-js/dom-query@0.48.0
    • @zag-js/text-selection@0.48.0

@zag-js/file-utils@0.48.0

Patch Changes

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

@zag-js/focus-scope@0.48.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/utils@0.48.0
    • @zag-js/dom-event@0.48.0
    • @zag-js/dom-query@0.48.0
    • @zag-js/tabbable@0.48.0

@zag-js/focus-visible@0.48.0

Patch Changes

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

@zag-js/i18n-utils@0.48.0

Patch Changes

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

@zag-js/interact-outside@0.48.0

Patch Changes

  • Updated dependencies []:
    • @zag-js/utils@0.48.0
    • @zag-js/dom-event@0.48.0
    • @zag-js/dom-query@0.48.0
    • @zag-js/tabbable@0.48.0

@zag-js/popper@0.48.0

Patch Changes

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

@zag-js/remove-scroll@0.48.0

Patch Changes

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

@zag-js/tabbable@0.48.0

Patch Changes

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

@zag-js/text-selection@0.48.0

Patch Changes

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

@zag-js/anatomy@0.48.0

@zag-js/anatomy-icons@0.48.0

@zag-js/docs@0.48.0

@zag-js/store@0.48.0

@zag-js/types@0.48.0

@zag-js/utils@0.48.0

@zag-js/date-utils@0.48.0

@zag-js/dom-query@0.48.0

@zag-js/element-rect@0.48.0

@zag-js/element-size@0.48.0

@zag-js/form-utils@0.48.0

@zag-js/live-region@0.48.0

@zag-js/number-utils@0.48.0

@zag-js/numeric-range@0.48.0

@zag-js/rect-utils@0.48.0

@zag-js/preact@0.48.0

Patch Changes

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

Copy link

vercel bot commented Apr 18, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Updated (UTC)
zag-nextjs ✅ Ready (Inspect) Visit Preview Apr 22, 2024 4:25pm
zag-solid ✅ Ready (Inspect) Visit Preview Apr 22, 2024 4:25pm
zag-svelte ✅ Ready (Inspect) Visit Preview Apr 22, 2024 4:25pm
zag-vue ✅ Ready (Inspect) Visit Preview Apr 22, 2024 4:25pm
zag-website ✅ Ready (Inspect) Visit Preview Apr 22, 2024 4:25pm

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.

None yet

1 participant