@ark-ui/solid 3.13.0 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (98) hide show
  1. package/dist/cjs/index.js +92 -59
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/esm/index.js +83 -60
  4. package/dist/esm/index.js.map +1 -1
  5. package/dist/source/components/accordion/index.js +1 -1
  6. package/dist/source/components/carousel/index.js +1 -1
  7. package/dist/source/components/checkbox/index.js +1 -1
  8. package/dist/source/components/clipboard/index.js +1 -1
  9. package/dist/source/components/collapsible/index.js +1 -1
  10. package/dist/source/components/collection.js +3 -0
  11. package/dist/source/components/color-picker/index.js +2 -1
  12. package/dist/source/components/color-picker/use-color-picker.js +1 -5
  13. package/dist/source/components/combobox/combobox-root.jsx +1 -4
  14. package/dist/source/components/combobox/index.js +2 -1
  15. package/dist/source/components/combobox/use-combobox.js +11 -13
  16. package/dist/source/components/date-picker/index.js +2 -1
  17. package/dist/source/components/date-picker/use-date-picker.js +2 -9
  18. package/dist/source/components/dialog/index.js +1 -1
  19. package/dist/source/components/editable/index.js +1 -2
  20. package/dist/source/components/field/index.js +2 -2
  21. package/dist/source/components/fieldset/index.js +1 -1
  22. package/dist/source/components/hover-card/index.js +1 -1
  23. package/dist/source/components/menu/index.js +1 -1
  24. package/dist/source/components/number-input/index.js +1 -1
  25. package/dist/source/components/pagination/index.js +1 -1
  26. package/dist/source/components/pin-input/index.js +1 -1
  27. package/dist/source/components/popover/index.js +1 -1
  28. package/dist/source/components/progress/index.js +1 -1
  29. package/dist/source/components/qr-code/index.js +1 -1
  30. package/dist/source/components/qr-code/qr-code.js +1 -1
  31. package/dist/source/components/radio-group/index.js +1 -1
  32. package/dist/source/components/rating-group/index.js +1 -1
  33. package/dist/source/components/segment-group/index.js +1 -1
  34. package/dist/source/components/select/index.js +2 -1
  35. package/dist/source/components/select/select-root.jsx +1 -4
  36. package/dist/source/components/select/use-select.js +4 -14
  37. package/dist/source/components/signature-pad/index.js +2 -2
  38. package/dist/source/components/slider/index.js +1 -1
  39. package/dist/source/components/splitter/index.js +1 -1
  40. package/dist/source/components/switch/index.js +1 -1
  41. package/dist/source/components/tabs/index.js +1 -1
  42. package/dist/source/components/tags-input/index.js +1 -1
  43. package/dist/source/components/timer/index.js +3 -2
  44. package/dist/source/components/timer/timer.anatomy.js +1 -0
  45. package/dist/source/components/toast/index.js +1 -1
  46. package/dist/source/components/toggle-group/index.js +1 -1
  47. package/dist/source/components/tooltip/index.js +1 -1
  48. package/dist/source/components/tree-view/index.js +1 -1
  49. package/dist/types/components/accordion/index.d.ts +1 -1
  50. package/dist/types/components/carousel/index.d.ts +11 -11
  51. package/dist/types/components/checkbox/index.d.ts +8 -8
  52. package/dist/types/components/clipboard/index.d.ts +8 -8
  53. package/dist/types/components/collapsible/index.d.ts +5 -5
  54. package/dist/types/components/collection.d.ts +3 -0
  55. package/dist/types/components/color-picker/color-picker.d.ts +1 -1
  56. package/dist/types/components/color-picker/index.d.ts +3 -2
  57. package/dist/types/components/color-picker/use-color-picker.d.ts +2 -6
  58. package/dist/types/components/combobox/combobox.d.ts +1 -1
  59. package/dist/types/components/combobox/index.d.ts +17 -17
  60. package/dist/types/components/combobox/use-combobox.d.ts +6 -2
  61. package/dist/types/components/date-picker/date-picker.d.ts +26 -26
  62. package/dist/types/components/date-picker/index.d.ts +28 -27
  63. package/dist/types/components/date-picker/use-date-picker.d.ts +2 -18
  64. package/dist/types/components/dialog/dialog.d.ts +9 -9
  65. package/dist/types/components/dialog/index.d.ts +10 -10
  66. package/dist/types/components/editable/index.d.ts +12 -15
  67. package/dist/types/components/field/index.d.ts +2 -2
  68. package/dist/types/components/fieldset/index.d.ts +1 -1
  69. package/dist/types/components/hover-card/index.d.ts +8 -8
  70. package/dist/types/components/menu/index.d.ts +20 -20
  71. package/dist/types/components/number-input/index.d.ts +1 -1
  72. package/dist/types/components/pagination/index.d.ts +7 -7
  73. package/dist/types/components/pin-input/index.d.ts +7 -7
  74. package/dist/types/components/popover/index.d.ts +13 -13
  75. package/dist/types/components/progress/index.d.ts +11 -11
  76. package/dist/types/components/qr-code/index.d.ts +6 -6
  77. package/dist/types/components/qr-code/qr-code.d.ts +1 -1
  78. package/dist/types/components/radio-group/index.d.ts +9 -9
  79. package/dist/types/components/rating-group/index.d.ts +7 -7
  80. package/dist/types/components/segment-group/index.d.ts +9 -9
  81. package/dist/types/components/select/index.d.ts +19 -19
  82. package/dist/types/components/select/select.d.ts +1 -1
  83. package/dist/types/components/select/use-select.d.ts +6 -2
  84. package/dist/types/components/signature-pad/index.d.ts +9 -9
  85. package/dist/types/components/slider/index.d.ts +12 -12
  86. package/dist/types/components/splitter/index.d.ts +5 -5
  87. package/dist/types/components/switch/index.d.ts +7 -7
  88. package/dist/types/components/tabs/index.d.ts +7 -7
  89. package/dist/types/components/tags-input/index.d.ts +13 -13
  90. package/dist/types/components/timer/index.d.ts +3 -2
  91. package/dist/types/components/timer/timer.anatomy.d.ts +1 -0
  92. package/dist/types/components/timer/timer.d.ts +1 -0
  93. package/dist/types/components/toast/index.d.ts +7 -7
  94. package/dist/types/components/toggle-group/index.d.ts +4 -4
  95. package/dist/types/components/tooltip/index.d.ts +8 -8
  96. package/dist/types/components/tree-view/index.d.ts +14 -14
  97. package/package.json +10 -9
  98. /package/dist/source/components/fieldset/{fieldset.jsx → fieldset.js} +0 -0
@@ -1,28 +1,28 @@
1
1
  export type { HighlightChangeDetails as MenuHighlightChangeDetails, OpenChangeDetails as MenuOpenChangeDetails, SelectionDetails as MenuSelectionDetails, } from '@zag-js/menu';
2
- export { MenuArrow, type MenuArrowProps, type MenuArrowBaseProps, } from './menu-arrow';
3
- export { MenuArrowTip, type MenuArrowTipProps, type MenuArrowTipBaseProps, } from './menu-arrow-tip';
4
- export { MenuCheckboxItem, type MenuCheckboxItemProps, type MenuCheckboxItemBaseProps, } from './menu-checkbox-item';
5
- export { MenuContent, type MenuContentProps, type MenuContentBaseProps, } from './menu-content';
2
+ export { MenuArrow, type MenuArrowBaseProps, type MenuArrowProps, } from './menu-arrow';
3
+ export { MenuArrowTip, type MenuArrowTipBaseProps, type MenuArrowTipProps, } from './menu-arrow-tip';
4
+ export { MenuCheckboxItem, type MenuCheckboxItemBaseProps, type MenuCheckboxItemProps, } from './menu-checkbox-item';
5
+ export { MenuContent, type MenuContentBaseProps, type MenuContentProps, } from './menu-content';
6
6
  export { MenuContext, type MenuContextProps, } from './menu-context';
7
- export { MenuContextTrigger, type MenuContextTriggerProps, type MenuContextTriggerBaseProps, } from './menu-context-trigger';
8
- export { MenuIndicator, type MenuIndicatorProps, type MenuIndicatorBaseProps, } from './menu-indicator';
9
- export { MenuItem, type MenuItemProps, type MenuItemBaseProps, } from './menu-item';
7
+ export { MenuContextTrigger, type MenuContextTriggerBaseProps, type MenuContextTriggerProps, } from './menu-context-trigger';
8
+ export { MenuIndicator, type MenuIndicatorBaseProps, type MenuIndicatorProps, } from './menu-indicator';
9
+ export { MenuItem, type MenuItemBaseProps, type MenuItemProps, } from './menu-item';
10
10
  export { MenuItemContext, type MenuItemContextProps, } from './menu-item-context';
11
- export { MenuItemGroup, type MenuItemGroupProps, type MenuItemGroupBaseProps, } from './menu-item-group';
12
- export { MenuItemGroupLabel, type MenuItemGroupLabelProps, type MenuItemGroupLabelBaseProps, } from './menu-item-group-label';
13
- export { MenuItemIndicator, type MenuItemIndicatorProps, type MenuItemIndicatorBaseProps, } from './menu-item-indicator';
14
- export { MenuItemText, type MenuItemTextProps, type MenuItemTextBaseProps, } from './menu-item-text';
15
- export { MenuPositioner, type MenuPositionerProps, type MenuPositionerBaseProps, } from './menu-positioner';
16
- export { MenuRadioItem, type MenuRadioItemProps, type MenuRadioItemBaseProps, } from './menu-radio-item';
17
- export { MenuRadioItemGroup, type MenuRadioItemGroupProps, type MenuRadioItemGroupBaseProps, } from './menu-radio-item-group';
18
- export { MenuRoot, type MenuRootProps, type MenuRootBaseProps, } from './menu-root';
19
- export { MenuRootProvider, type MenuRootProviderProps, type MenuRootProviderBaseProps, } from './menu-root-provider';
20
- export { MenuSeparator, type MenuSeparatorProps, type MenuSeparatorBaseProps, } from './menu-separator';
21
- export { MenuTrigger, type MenuTriggerProps, type MenuTriggerBaseProps, } from './menu-trigger';
22
- export { MenuTriggerItem, type MenuTriggerItemProps, type MenuTriggerItemBaseProps, } from './menu-trigger-item';
11
+ export { MenuItemGroup, type MenuItemGroupBaseProps, type MenuItemGroupProps, } from './menu-item-group';
12
+ export { MenuItemGroupLabel, type MenuItemGroupLabelBaseProps, type MenuItemGroupLabelProps, } from './menu-item-group-label';
13
+ export { MenuItemIndicator, type MenuItemIndicatorBaseProps, type MenuItemIndicatorProps, } from './menu-item-indicator';
14
+ export { MenuItemText, type MenuItemTextBaseProps, type MenuItemTextProps, } from './menu-item-text';
15
+ export { MenuPositioner, type MenuPositionerBaseProps, type MenuPositionerProps, } from './menu-positioner';
16
+ export { MenuRadioItem, type MenuRadioItemBaseProps, type MenuRadioItemProps, } from './menu-radio-item';
17
+ export { MenuRadioItemGroup, type MenuRadioItemGroupBaseProps, type MenuRadioItemGroupProps, } from './menu-radio-item-group';
18
+ export { MenuRoot, type MenuRootBaseProps, type MenuRootProps, } from './menu-root';
19
+ export { MenuRootProvider, type MenuRootProviderBaseProps, type MenuRootProviderProps, } from './menu-root-provider';
20
+ export { MenuSeparator, type MenuSeparatorBaseProps, type MenuSeparatorProps, } from './menu-separator';
21
+ export { MenuTrigger, type MenuTriggerBaseProps, type MenuTriggerProps, } from './menu-trigger';
22
+ export { MenuTriggerItem, type MenuTriggerItemBaseProps, type MenuTriggerItemProps, } from './menu-trigger-item';
23
+ export { menuAnatomy } from './menu.anatomy';
23
24
  export { useMenu, type UseMenuProps, type UseMenuReturn } from './use-menu';
24
25
  export { useMenuContext, type UseMenuContext } from './use-menu-context';
25
26
  export { useMenuItemContext, type UseMenuItemContext } from './use-menu-item-context';
26
27
  export type { ValueChangeDetails as MenuValueChangeDetails } from './use-menu-item-group-context';
27
- export { menuAnatomy } from './menu.anatomy';
28
28
  export * as Menu from './menu';
@@ -9,7 +9,7 @@ export { NumberInputRoot, type NumberInputRootBaseProps, type NumberInputRootPro
9
9
  export { NumberInputRootProvider, type NumberInputRootProviderBaseProps, type NumberInputRootProviderProps, } from './number-input-root-provider';
10
10
  export { NumberInputScrubber, type NumberInputScrubberBaseProps, type NumberInputScrubberProps, } from './number-input-scrubber';
11
11
  export { NumberInputValueText, type NumberInputValueTextBaseProps, type NumberInputValueTextProps, } from './number-input-value-text';
12
+ export { numberInputAnatomy } from './number-input.anatomy';
12
13
  export { useNumberInput, type UseNumberInputProps, type UseNumberInputReturn, } from './use-number-input';
13
14
  export { useNumberInputContext, type UseNumberInputContext } from './use-number-input-context';
14
- export { numberInputAnatomy } from './number-input.anatomy';
15
15
  export * as NumberInput from './number-input';
@@ -1,12 +1,12 @@
1
1
  export type { ItemLabelDetails as PaginationItemLabelDetails, PageChangeDetails as PaginationPageChangeDetails, PageSizeChangeDetails as PaginationPageSizeChangeDetails, } from '@zag-js/pagination';
2
2
  export { PaginationContext, type PaginationContextProps, } from './pagination-context';
3
- export { PaginationEllipsis, type PaginationEllipsisProps, type PaginationEllipsisBaseProps, } from './pagination-ellipsis';
4
- export { PaginationItem, type PaginationItemProps, type PaginationItemBaseProps, } from './pagination-item';
5
- export { PaginationNextTrigger, type PaginationNextTriggerProps, type PaginationNextTriggerBaseProps, } from './pagination-next-trigger';
6
- export { PaginationPrevTrigger, type PaginationPrevTriggerProps, type PaginationPrevTriggerBaseProps, } from './pagination-prev-trigger';
7
- export { PaginationRoot, type PaginationRootProps, type PaginationRootBaseProps, } from './pagination-root';
8
- export { PaginationRootProvider, type PaginationRootProviderProps, type PaginationRootProviderBaseProps, } from './pagination-root-provider';
3
+ export { PaginationEllipsis, type PaginationEllipsisBaseProps, type PaginationEllipsisProps, } from './pagination-ellipsis';
4
+ export { PaginationItem, type PaginationItemBaseProps, type PaginationItemProps, } from './pagination-item';
5
+ export { PaginationNextTrigger, type PaginationNextTriggerBaseProps, type PaginationNextTriggerProps, } from './pagination-next-trigger';
6
+ export { PaginationPrevTrigger, type PaginationPrevTriggerBaseProps, type PaginationPrevTriggerProps, } from './pagination-prev-trigger';
7
+ export { PaginationRoot, type PaginationRootBaseProps, type PaginationRootProps, } from './pagination-root';
8
+ export { PaginationRootProvider, type PaginationRootProviderBaseProps, type PaginationRootProviderProps, } from './pagination-root-provider';
9
+ export { paginationAnatomy } from './pagination.anatomy';
9
10
  export { usePagination, type UsePaginationProps, type UsePaginationReturn } from './use-pagination';
10
11
  export { usePaginationContext, type UsePaginationContext } from './use-pagination-context';
11
- export { paginationAnatomy } from './pagination.anatomy';
12
12
  export * as Pagination from './pagination';
@@ -1,12 +1,12 @@
1
1
  export type { ValueChangeDetails as PinInputValueChangeDetails, ValueInvalidDetails as PinInputValueInvalidDetails, } from '@zag-js/pin-input';
2
2
  export { PinInputContext, type PinInputContextProps, } from './pin-input-context';
3
- export { PinInputControl, type PinInputControlProps, type PinInputControlBaseProps, } from './pin-input-control';
4
- export { PinInputHiddenInput, type PinInputHiddenInputProps, type PinInputHiddenInputBaseProps, } from './pin-input-hidden-input';
5
- export { PinInputInput, type PinInputInputProps, type PinInputInputBaseProps, } from './pin-input-input';
6
- export { PinInputLabel, type PinInputLabelProps, type PinInputLabelBaseProps, } from './pin-input-label';
7
- export { PinInputRoot, type PinInputRootProps, type PinInputRootBaseProps, } from './pin-input-root';
8
- export { PinInputRootProvider, type PinInputRootProviderProps, type PinInputRootProviderBaseProps, } from './pin-input-root-provider';
3
+ export { PinInputControl, type PinInputControlBaseProps, type PinInputControlProps, } from './pin-input-control';
4
+ export { PinInputHiddenInput, type PinInputHiddenInputBaseProps, type PinInputHiddenInputProps, } from './pin-input-hidden-input';
5
+ export { PinInputInput, type PinInputInputBaseProps, type PinInputInputProps, } from './pin-input-input';
6
+ export { PinInputLabel, type PinInputLabelBaseProps, type PinInputLabelProps, } from './pin-input-label';
7
+ export { PinInputRoot, type PinInputRootBaseProps, type PinInputRootProps, } from './pin-input-root';
8
+ export { PinInputRootProvider, type PinInputRootProviderBaseProps, type PinInputRootProviderProps, } from './pin-input-root-provider';
9
+ export { pinInputAnatomy } from './pin-input.anatomy';
9
10
  export { usePinInput, type UsePinInputProps, type UsePinInputReturn } from './use-pin-input';
10
11
  export { usePinInputContext, type UsePinInputContext } from './use-pin-input-context';
11
- export { pinInputAnatomy } from './pin-input.anatomy';
12
12
  export * as PinInput from './pin-input';
@@ -1,18 +1,18 @@
1
1
  export type { OpenChangeDetails as PopoverOpenChangeDetails } from '@zag-js/popover';
2
- export { PopoverAnchor, type PopoverAnchorProps, type PopoverAnchorBaseProps, } from './popover-anchor';
3
- export { PopoverArrow, type PopoverArrowProps, type PopoverArrowBaseProps, } from './popover-arrow';
4
- export { PopoverArrowTip, type PopoverArrowTipProps, type PopoverArrowTipBaseProps, } from './popover-arrow-tip';
5
- export { PopoverCloseTrigger, type PopoverCloseTriggerProps, type PopoverCloseTriggerBaseProps, } from './popover-close-trigger';
6
- export { PopoverContent, type PopoverContentProps, type PopoverContentBaseProps, } from './popover-content';
2
+ export { PopoverAnchor, type PopoverAnchorBaseProps, type PopoverAnchorProps, } from './popover-anchor';
3
+ export { PopoverArrow, type PopoverArrowBaseProps, type PopoverArrowProps, } from './popover-arrow';
4
+ export { PopoverArrowTip, type PopoverArrowTipBaseProps, type PopoverArrowTipProps, } from './popover-arrow-tip';
5
+ export { PopoverCloseTrigger, type PopoverCloseTriggerBaseProps, type PopoverCloseTriggerProps, } from './popover-close-trigger';
6
+ export { PopoverContent, type PopoverContentBaseProps, type PopoverContentProps, } from './popover-content';
7
7
  export { PopoverContext, type PopoverContextProps, } from './popover-context';
8
- export { PopoverDescription, type PopoverDescriptionProps, type PopoverDescriptionBaseProps, } from './popover-description';
9
- export { PopoverIndicator, type PopoverIndicatorProps, type PopoverIndicatorBaseProps, } from './popover-indicator';
10
- export { PopoverPositioner, type PopoverPositionerProps, type PopoverPositionerBaseProps, } from './popover-positioner';
11
- export { PopoverRoot, type PopoverRootProps, type PopoverRootBaseProps, } from './popover-root';
12
- export { PopoverRootProvider, type PopoverRootProviderProps, type PopoverRootProviderBaseProps, } from './popover-root-provider';
13
- export { PopoverTitle, type PopoverTitleProps, type PopoverTitleBaseProps, } from './popover-title';
14
- export { PopoverTrigger, type PopoverTriggerProps, type PopoverTriggerBaseProps, } from './popover-trigger';
8
+ export { PopoverDescription, type PopoverDescriptionBaseProps, type PopoverDescriptionProps, } from './popover-description';
9
+ export { PopoverIndicator, type PopoverIndicatorBaseProps, type PopoverIndicatorProps, } from './popover-indicator';
10
+ export { PopoverPositioner, type PopoverPositionerBaseProps, type PopoverPositionerProps, } from './popover-positioner';
11
+ export { PopoverRoot, type PopoverRootBaseProps, type PopoverRootProps, } from './popover-root';
12
+ export { PopoverRootProvider, type PopoverRootProviderBaseProps, type PopoverRootProviderProps, } from './popover-root-provider';
13
+ export { PopoverTitle, type PopoverTitleBaseProps, type PopoverTitleProps, } from './popover-title';
14
+ export { PopoverTrigger, type PopoverTriggerBaseProps, type PopoverTriggerProps, } from './popover-trigger';
15
+ export { popoverAnatomy } from './popover.anatomy';
15
16
  export { usePopover, type UsePopoverProps, type UsePopoverReturn } from './use-popover';
16
17
  export { usePopoverContext, type UsePopoverContext } from './use-popover-context';
17
- export { popoverAnatomy } from './popover.anatomy';
18
18
  export * as Popover from './popover';
@@ -1,15 +1,15 @@
1
- export { ProgressCircle, type ProgressCircleProps, type ProgressCircleBaseProps, } from './progress-circle';
2
- export { ProgressCircleRange, type ProgressCircleRangeProps, type ProgressCircleRangeBaseProps, } from './progress-circle-range';
3
- export { ProgressCircleTrack, type ProgressCircleTrackProps, type ProgressCircleTrackBaseProps, } from './progress-circle-track';
1
+ export { ProgressCircle, type ProgressCircleBaseProps, type ProgressCircleProps, } from './progress-circle';
2
+ export { ProgressCircleRange, type ProgressCircleRangeBaseProps, type ProgressCircleRangeProps, } from './progress-circle-range';
3
+ export { ProgressCircleTrack, type ProgressCircleTrackBaseProps, type ProgressCircleTrackProps, } from './progress-circle-track';
4
4
  export { ProgressContext, type ProgressContextProps, } from './progress-context';
5
- export { ProgressLabel, type ProgressLabelProps, type ProgressLabelBaseProps, } from './progress-label';
6
- export { ProgressRange, type ProgressRangeProps, type ProgressRangeBaseProps, } from './progress-range';
7
- export { ProgressRoot, type ProgressRootProps, type ProgressRootBaseProps, } from './progress-root';
8
- export { ProgressRootProvider, type ProgressRootProviderProps, type ProgressRootProviderBaseProps, } from './progress-root-provider';
9
- export { ProgressTrack, type ProgressTrackProps, type ProgressTrackBaseProps, } from './progress-track';
10
- export { ProgressValueText, type ProgressValueTextProps, type ProgressValueTextBaseProps, } from './progress-value-text';
11
- export { ProgressView, type ProgressViewProps, type ProgressViewBaseProps, } from './progress-view';
5
+ export { ProgressLabel, type ProgressLabelBaseProps, type ProgressLabelProps, } from './progress-label';
6
+ export { ProgressRange, type ProgressRangeBaseProps, type ProgressRangeProps, } from './progress-range';
7
+ export { ProgressRoot, type ProgressRootBaseProps, type ProgressRootProps, } from './progress-root';
8
+ export { ProgressRootProvider, type ProgressRootProviderBaseProps, type ProgressRootProviderProps, } from './progress-root-provider';
9
+ export { ProgressTrack, type ProgressTrackBaseProps, type ProgressTrackProps, } from './progress-track';
10
+ export { ProgressValueText, type ProgressValueTextBaseProps, type ProgressValueTextProps, } from './progress-value-text';
11
+ export { ProgressView, type ProgressViewBaseProps, type ProgressViewProps, } from './progress-view';
12
+ export { progressAnatomy } from './progress.anatomy';
12
13
  export { useProgress, type UseProgressProps, type UseProgressReturn } from './use-progress';
13
14
  export { useProgressContext, type UseProgressContext } from './use-progress-context';
14
- export { progressAnatomy } from './progress.anatomy';
15
15
  export * as Progress from './progress';
@@ -1,11 +1,11 @@
1
1
  export type { QrCodeGenerateOptions, QrCodeGenerateResult } from '@zag-js/qr-code';
2
2
  export { QrCodeContext, type QrCodeContextProps, } from './qr-code-context';
3
- export { QrCodeFrame, type QrCodeFrameProps, type QrCodeFrameBaseProps, } from './qr-code-frame';
4
- export { QrCodeOverlay, type QrCodeOverlayProps, type QrCodeOverlayBaseProps, } from './qr-code-overlay';
5
- export { QrCodePattern, type QrCodePatternProps, type QrCodePatternBaseProps, } from './qr-code-pattern';
6
- export { QrCodeRoot, type QrCodeRootProps, type QrCodeRootBaseProps, } from './qr-code-root';
7
- export { QrCodeRootProvider, type QrCodeRootProviderProps, type QrCodeRootProviderBaseProps, } from './qr-code-root-provider';
3
+ export { QrCodeFrame, type QrCodeFrameBaseProps, type QrCodeFrameProps, } from './qr-code-frame';
4
+ export { QrCodeOverlay, type QrCodeOverlayBaseProps, type QrCodeOverlayProps, } from './qr-code-overlay';
5
+ export { QrCodePattern, type QrCodePatternBaseProps, type QrCodePatternProps, } from './qr-code-pattern';
6
+ export { QrCodeRoot, type QrCodeRootBaseProps, type QrCodeRootProps, } from './qr-code-root';
7
+ export { QrCodeRootProvider, type QrCodeRootProviderBaseProps, type QrCodeRootProviderProps, } from './qr-code-root-provider';
8
+ export { qrCodeAnatomy } from './qr-code.anatomy';
8
9
  export { useQrCode, type UseQrCodeProps, type UseQrCodeReturn } from './use-qr-code';
9
10
  export { useQrCodeContext, type UseQrCodeContext } from './use-qr-code-context';
10
- export { qrCodeAnatomy } from './qr-code.anatomy';
11
11
  export * as QrCode from './qr-code';
@@ -1,5 +1,5 @@
1
1
  export type { QrCodeGenerateOptions as GenerateOptions, QrCodeGenerateResult as GenerateResult, } from '@zag-js/qr-code';
2
- export { QrCodeContext, type QrCodeContextProps } from './qr-code-context';
2
+ export { QrCodeContext as Context, type QrCodeContextProps as ContextProps, } from './qr-code-context';
3
3
  export { QrCodeFrame as Frame, type QrCodeFrameProps as FrameProps, type QrCodeFrameBaseProps as FrameBaseProps, } from './qr-code-frame';
4
4
  export { QrCodeOverlay as Overlay, type QrCodeOverlayProps as OverlayProps, type QrCodeOverlayBaseProps as OverlayBaseProps, } from './qr-code-overlay';
5
5
  export { QrCodePattern as Pattern, type QrCodePatternProps as PatternProps, type QrCodePatternBaseProps as PatternBaseProps, } from './qr-code-pattern';
@@ -1,16 +1,16 @@
1
1
  export type { ValueChangeDetails as RadioGroupValueChangeDetails } from '@zag-js/radio-group';
2
2
  export { RadioGroupContext, type RadioGroupContextProps, } from './radio-group-context';
3
- export { RadioGroupIndicator, type RadioGroupIndicatorProps, type RadioGroupIndicatorBaseProps, } from './radio-group-indicator';
4
- export { RadioGroupItem, type RadioGroupItemProps, type RadioGroupItemBaseProps, } from './radio-group-item';
3
+ export { RadioGroupIndicator, type RadioGroupIndicatorBaseProps, type RadioGroupIndicatorProps, } from './radio-group-indicator';
4
+ export { RadioGroupItem, type RadioGroupItemBaseProps, type RadioGroupItemProps, } from './radio-group-item';
5
5
  export { RadioGroupItemContext, type RadioGroupItemContextProps, } from './radio-group-item-context';
6
- export { RadioGroupItemControl, type RadioGroupItemControlProps, type RadioGroupItemControlBaseProps, } from './radio-group-item-control';
7
- export { RadioGroupItemHiddenInput, type RadioGroupItemHiddenInputProps, type RadioGroupItemHiddenInputBaseProps, } from './radio-group-item-hidden-input';
8
- export { RadioGroupItemText, type RadioGroupItemTextProps, type RadioGroupItemTextBaseProps, } from './radio-group-item-text';
9
- export { RadioGroupLabel, type RadioGroupLabelProps, type RadioGroupLabelBaseProps, } from './radio-group-label';
10
- export { RadioGroupRoot, type RadioGroupRootProps, type RadioGroupRootBaseProps, } from './radio-group-root';
11
- export { RadioGroupRootProvider, type RadioGroupRootProviderProps, type RadioGroupRootProviderBaseProps, } from './radio-group-root-provider';
6
+ export { RadioGroupItemControl, type RadioGroupItemControlBaseProps, type RadioGroupItemControlProps, } from './radio-group-item-control';
7
+ export { RadioGroupItemHiddenInput, type RadioGroupItemHiddenInputBaseProps, type RadioGroupItemHiddenInputProps, } from './radio-group-item-hidden-input';
8
+ export { RadioGroupItemText, type RadioGroupItemTextBaseProps, type RadioGroupItemTextProps, } from './radio-group-item-text';
9
+ export { RadioGroupLabel, type RadioGroupLabelBaseProps, type RadioGroupLabelProps, } from './radio-group-label';
10
+ export { RadioGroupRoot, type RadioGroupRootBaseProps, type RadioGroupRootProps, } from './radio-group-root';
11
+ export { RadioGroupRootProvider, type RadioGroupRootProviderBaseProps, type RadioGroupRootProviderProps, } from './radio-group-root-provider';
12
+ export { radioGroupAnatomy } from './radio-group.anatomy';
12
13
  export { useRadioGroup, type UseRadioGroupProps, type UseRadioGroupReturn } from './use-radio-group';
13
14
  export { useRadioGroupContext, type UseRadioGroupContext } from './use-radio-group-context';
14
15
  export { useRadioGroupItemContext, type UseRadioGroupItemContext, } from './use-radio-group-item-context';
15
- export { radioGroupAnatomy } from './radio-group.anatomy';
16
16
  export * as RadioGroup from './radio-group';
@@ -1,14 +1,14 @@
1
1
  export type { HoverChangeDetails as RatingGroupHoverChangeDetails, ValueChangeDetails as RatingGroupValueChangeDetails, } from '@zag-js/rating-group';
2
2
  export { RatingGroupContext, type RatingGroupContextProps, } from './rating-group-context';
3
- export { RatingGroupControl, type RatingGroupControlProps, type RatingGroupControlBaseProps, } from './rating-group-control';
4
- export { RatingGroupHiddenInput, type RatingGroupHiddenInputProps, type RatingGroupHiddenInputBaseProps, } from './rating-group-hidden-input';
5
- export { RatingGroupItem, type RatingGroupItemProps, type RatingGroupItemBaseProps, } from './rating-group-item';
3
+ export { RatingGroupControl, type RatingGroupControlBaseProps, type RatingGroupControlProps, } from './rating-group-control';
4
+ export { RatingGroupHiddenInput, type RatingGroupHiddenInputBaseProps, type RatingGroupHiddenInputProps, } from './rating-group-hidden-input';
5
+ export { RatingGroupItem, type RatingGroupItemBaseProps, type RatingGroupItemProps, } from './rating-group-item';
6
6
  export { RatingGroupItemContext, type RatingGroupItemContextProps, } from './rating-group-item-context';
7
- export { RatingGroupLabel, type RatingGroupLabelProps, type RatingGroupLabelBaseProps, } from './rating-group-label';
8
- export { RatingGroupRoot, type RatingGroupRootProps, type RatingGroupRootBaseProps, } from './rating-group-root';
9
- export { RatingGroupRootProvider, type RatingGroupRootProviderProps, type RatingGroupRootProviderBaseProps, } from './rating-group-root-provider';
7
+ export { RatingGroupLabel, type RatingGroupLabelBaseProps, type RatingGroupLabelProps, } from './rating-group-label';
8
+ export { RatingGroupRoot, type RatingGroupRootBaseProps, type RatingGroupRootProps, } from './rating-group-root';
9
+ export { RatingGroupRootProvider, type RatingGroupRootProviderBaseProps, type RatingGroupRootProviderProps, } from './rating-group-root-provider';
10
+ export { ratingGroupAnatomy } from './rating-group.anatomy';
10
11
  export { useRatingGroup, type UseRatingGroupProps, type UseRatingGroupReturn, } from './use-rating-group';
11
12
  export { useRatingGroupContext, type UseRatingGroupContext } from './use-rating-group-context';
12
13
  export { useRatingGroupItemContext, type UseRatingGroupItemContext, } from './use-rating-group-item-context';
13
- export { ratingGroupAnatomy } from './rating-group.anatomy';
14
14
  export * as RatingGroup from './rating-group';
@@ -1,16 +1,16 @@
1
1
  export type { ValueChangeDetails as SegmentGroupValueChangeDetails } from '@zag-js/radio-group';
2
2
  export { SegmentGroupContext, type SegmentGroupContextProps, } from './segment-group-context';
3
- export { SegmentGroupIndicator, type SegmentGroupIndicatorProps, type SegmentGroupIndicatorBaseProps, } from './segment-group-indicator';
4
- export { SegmentGroupItem, type SegmentGroupItemProps, type SegmentGroupItemBaseProps, } from './segment-group-item';
3
+ export { SegmentGroupIndicator, type SegmentGroupIndicatorBaseProps, type SegmentGroupIndicatorProps, } from './segment-group-indicator';
4
+ export { SegmentGroupItem, type SegmentGroupItemBaseProps, type SegmentGroupItemProps, } from './segment-group-item';
5
5
  export { SegmentGroupItemContext, type SegmentGroupItemContextProps, } from './segment-group-item-context';
6
- export { SegmentGroupItemControl, type SegmentGroupItemControlProps, type SegmentGroupItemControlBaseProps, } from './segment-group-item-control';
7
- export { SegmentGroupItemHiddenInput, type SegmentGroupItemHiddenInputProps, type SegmentGroupItemHiddenInputBaseProps, } from './segment-group-item-hidden-input';
8
- export { SegmentGroupItemText, type SegmentGroupItemTextProps, type SegmentGroupItemTextBaseProps, } from './segment-group-item-text';
9
- export { SegmentGroupLabel, type SegmentGroupLabelProps, type SegmentGroupLabelBaseProps, } from './segment-group-label';
10
- export { SegmentGroupRoot, type SegmentGroupRootProps, type SegmentGroupRootBaseProps, } from './segment-group-root';
11
- export { SegmentGroupRootProvider, type SegmentGroupRootProviderProps, type SegmentGroupRootProviderBaseProps, } from './segment-group-root-provider';
6
+ export { SegmentGroupItemControl, type SegmentGroupItemControlBaseProps, type SegmentGroupItemControlProps, } from './segment-group-item-control';
7
+ export { SegmentGroupItemHiddenInput, type SegmentGroupItemHiddenInputBaseProps, type SegmentGroupItemHiddenInputProps, } from './segment-group-item-hidden-input';
8
+ export { SegmentGroupItemText, type SegmentGroupItemTextBaseProps, type SegmentGroupItemTextProps, } from './segment-group-item-text';
9
+ export { SegmentGroupLabel, type SegmentGroupLabelBaseProps, type SegmentGroupLabelProps, } from './segment-group-label';
10
+ export { SegmentGroupRoot, type SegmentGroupRootBaseProps, type SegmentGroupRootProps, } from './segment-group-root';
11
+ export { SegmentGroupRootProvider, type SegmentGroupRootProviderBaseProps, type SegmentGroupRootProviderProps, } from './segment-group-root-provider';
12
+ export { segmentGroupAnatomy } from './segment-group.anatomy';
12
13
  export { useSegmentGroup, type UseSegmentGroupProps, type UseSegmentGroupReturn, } from './use-segment-group';
13
14
  export { useSegmentGroupContext, type UseSegmentGroupContext } from './use-segment-group-context';
14
15
  export { useSegmentGroupItemContext, type UseSegmentGroupItemContext, } from './use-segment-group-item-context';
15
- export { segmentGroupAnatomy } from './segment-group.anatomy';
16
16
  export * as SegmentGroup from './segment-group';
@@ -1,26 +1,26 @@
1
1
  export type { HighlightChangeDetails as SelectHighlightChangeDetails, OpenChangeDetails as SelectOpenChangeDetails, ValueChangeDetails as SelectValueChangeDetails, } from '@zag-js/select';
2
- export type { CollectionItem as SelectCollectionItem } from '../../types';
3
- export { SelectClearTrigger, type SelectClearTriggerProps, type SelectClearTriggerBaseProps, } from './select-clear-trigger';
4
- export { SelectContent, type SelectContentProps, type SelectContentBaseProps, } from './select-content';
2
+ export { createListCollection, type CollectionItem, type ListCollection } from '../collection';
3
+ export { SelectClearTrigger, type SelectClearTriggerBaseProps, type SelectClearTriggerProps, } from './select-clear-trigger';
4
+ export { SelectContent, type SelectContentBaseProps, type SelectContentProps, } from './select-content';
5
5
  export { SelectContext, type SelectContextProps, } from './select-context';
6
- export { SelectControl, type SelectControlProps, type SelectControlBaseProps, } from './select-control';
7
- export { SelectHiddenSelect, type SelectHiddenSelectProps, type SelectHiddenSelectBaseProps, } from './select-hidden-select';
8
- export { SelectIndicator, type SelectIndicatorProps, type SelectIndicatorBaseProps, } from './select-indicator';
9
- export { SelectItem, type SelectItemProps, type SelectItemBaseProps, } from './select-item';
6
+ export { SelectControl, type SelectControlBaseProps, type SelectControlProps, } from './select-control';
7
+ export { SelectHiddenSelect, type SelectHiddenSelectBaseProps, type SelectHiddenSelectProps, } from './select-hidden-select';
8
+ export { SelectIndicator, type SelectIndicatorBaseProps, type SelectIndicatorProps, } from './select-indicator';
9
+ export { SelectItem, type SelectItemBaseProps, type SelectItemProps, } from './select-item';
10
10
  export { SelectItemContext, type SelectItemContextProps, } from './select-item-context';
11
- export { SelectItemGroup, type SelectItemGroupProps, type SelectItemGroupBaseProps, } from './select-item-group';
12
- export { SelectItemGroupLabel, type SelectItemGroupLabelProps, type SelectItemGroupLabelBaseProps, } from './select-item-group-label';
13
- export { SelectItemIndicator, type SelectItemIndicatorProps, type SelectItemIndicatorBaseProps, } from './select-item-indicator';
14
- export { SelectItemText, type SelectItemTextProps, type SelectItemTextBaseProps, } from './select-item-text';
15
- export { SelectLabel, type SelectLabelProps, type SelectLabelBaseProps, } from './select-label';
16
- export { SelectList, type SelectListProps, type SelectListBaseProps, } from './select-list';
17
- export { SelectPositioner, type SelectPositionerProps, type SelectPositionerBaseProps, } from './select-positioner';
18
- export { SelectRoot, type SelectRootProps, type SelectRootBaseProps, } from './select-root';
19
- export { SelectRootProvider, type SelectRootProviderProps, type SelectRootProviderBaseProps, } from './select-root-provider';
20
- export { SelectTrigger, type SelectTriggerProps, type SelectTriggerBaseProps, } from './select-trigger';
21
- export { SelectValueText, type SelectValueTextProps, type SelectValueTextBaseProps, } from './select-value-text';
11
+ export { SelectItemGroup, type SelectItemGroupBaseProps, type SelectItemGroupProps, } from './select-item-group';
12
+ export { SelectItemGroupLabel, type SelectItemGroupLabelBaseProps, type SelectItemGroupLabelProps, } from './select-item-group-label';
13
+ export { SelectItemIndicator, type SelectItemIndicatorBaseProps, type SelectItemIndicatorProps, } from './select-item-indicator';
14
+ export { SelectItemText, type SelectItemTextBaseProps, type SelectItemTextProps, } from './select-item-text';
15
+ export { SelectLabel, type SelectLabelBaseProps, type SelectLabelProps, } from './select-label';
16
+ export { SelectList, type SelectListBaseProps, type SelectListProps, } from './select-list';
17
+ export { SelectPositioner, type SelectPositionerBaseProps, type SelectPositionerProps, } from './select-positioner';
18
+ export { SelectRoot, type SelectRootBaseProps, type SelectRootProps, } from './select-root';
19
+ export { SelectRootProvider, type SelectRootProviderBaseProps, type SelectRootProviderProps, } from './select-root-provider';
20
+ export { SelectTrigger, type SelectTriggerBaseProps, type SelectTriggerProps, } from './select-trigger';
21
+ export { SelectValueText, type SelectValueTextBaseProps, type SelectValueTextProps, } from './select-value-text';
22
+ export { selectAnatomy } from './select.anatomy';
22
23
  export { useSelect, type UseSelectProps, type UseSelectReturn } from './use-select';
23
24
  export { useSelectContext, type UseSelectContext } from './use-select-context';
24
25
  export { useSelectItemContext, type UseSelectItemContext } from './use-select-item-context';
25
- export { selectAnatomy } from './select.anatomy';
26
26
  export * as Select from './select';
@@ -1,5 +1,5 @@
1
1
  export type { HighlightChangeDetails, OpenChangeDetails, ValueChangeDetails } from '@zag-js/select';
2
- export type { CollectionItem } from '../../types';
2
+ export type { CollectionItem, ListCollection } from '../collection';
3
3
  export { SelectClearTrigger as ClearTrigger, type SelectClearTriggerProps as ClearTriggerProps, type SelectClearTriggerBaseProps as ClearTriggerBaseProps, } from './select-clear-trigger';
4
4
  export { SelectContent as Content, type SelectContentProps as ContentProps, type SelectContentBaseProps as ContentBaseProps, } from './select-content';
5
5
  export { SelectContext as Context, type SelectContextProps as ContextProps } from './select-context';
@@ -1,9 +1,9 @@
1
- import type { CollectionOptions } from '@zag-js/select';
2
1
  import * as select from '@zag-js/select';
3
2
  import { type PropTypes } from '@zag-js/solid';
4
3
  import { type Accessor } from 'solid-js';
5
4
  import type { CollectionItem, Optional } from '../../types';
6
- export interface UseSelectProps<T extends CollectionItem> extends CollectionOptions<T>, Optional<Omit<select.Context<T>, 'collection' | 'dir' | 'getRootNode' | 'open.controlled'>, 'id'> {
5
+ import type { ListCollection } from '../collection';
6
+ export interface UseSelectProps<T extends CollectionItem> extends Optional<Omit<select.Context<T>, 'collection' | 'dir' | 'getRootNode' | 'open.controlled'>, 'id'> {
7
7
  /**
8
8
  * The initial open state of the select when it is first rendered.
9
9
  * Use when you do not need to control its open state.
@@ -14,6 +14,10 @@ export interface UseSelectProps<T extends CollectionItem> extends CollectionOpti
14
14
  * Use when you do not need to control the state of the select.
15
15
  */
16
16
  defaultValue?: select.Context<T>['value'];
17
+ /**
18
+ * The collection of items
19
+ */
20
+ collection: ListCollection<T>;
17
21
  }
18
22
  export interface UseSelectReturn<T extends CollectionItem> extends Accessor<select.Api<PropTypes, T>> {
19
23
  }
@@ -1,14 +1,14 @@
1
1
  export type { DrawDetails as SignaturePadDrawDetails, DrawEndDetails as SignaturePadDrawEndDetails, DrawingOptions as SignaturePadDrawingOptions, } from '@zag-js/signature-pad';
2
- export { SignaturePadClearTrigger, type SignaturePadClearTriggerProps, type SignaturePadClearTriggerBaseProps, } from './signature-pad-clear-trigger';
2
+ export { SignaturePadClearTrigger, type SignaturePadClearTriggerBaseProps, type SignaturePadClearTriggerProps, } from './signature-pad-clear-trigger';
3
3
  export { SignaturePadContext, type SignaturePadContextProps, } from './signature-pad-context';
4
- export { SignaturePadControl, type SignaturePadControlProps, type SignaturePadControlBaseProps, } from './signature-pad-control';
5
- export { SignaturePadGuide, type SignaturePadGuideProps, type SignaturePadGuideBaseProps, } from './signature-pad-guide';
6
- export { SignaturePadLabel, type SignaturePadLabelProps, type SignaturePadLabelBaseProps, } from './signature-pad-label';
7
- export { SignaturePadHiddenInput, type SignaturePadHiddenInputProps, type SignaturePadHiddenInputBaseProps, } from './signature-pad-hidden-input';
8
- export { SignaturePadRoot, type SignaturePadRootProps, type SignaturePadRootBaseProps, } from './signature-pad-root';
9
- export { SignaturePadRootProvider, type SignaturePadRootProviderProps, type SignaturePadRootProviderBaseProps, } from './signature-pad-root-provider';
10
- export { SignaturePadSegment, type SignaturePadSegmentProps, type SignaturePadSegmentBaseProps, } from './signature-pad-segment';
4
+ export { SignaturePadControl, type SignaturePadControlBaseProps, type SignaturePadControlProps, } from './signature-pad-control';
5
+ export { SignaturePadGuide, type SignaturePadGuideBaseProps, type SignaturePadGuideProps, } from './signature-pad-guide';
6
+ export { SignaturePadHiddenInput, type SignaturePadHiddenInputBaseProps, type SignaturePadHiddenInputProps, } from './signature-pad-hidden-input';
7
+ export { SignaturePadLabel, type SignaturePadLabelBaseProps, type SignaturePadLabelProps, } from './signature-pad-label';
8
+ export { SignaturePadRoot, type SignaturePadRootBaseProps, type SignaturePadRootProps, } from './signature-pad-root';
9
+ export { SignaturePadRootProvider, type SignaturePadRootProviderBaseProps, type SignaturePadRootProviderProps, } from './signature-pad-root-provider';
10
+ export { SignaturePadSegment, type SignaturePadSegmentBaseProps, type SignaturePadSegmentProps, } from './signature-pad-segment';
11
+ export { signaturePadAnatomy } from './signature-pad.anatomy';
11
12
  export { useSignaturePad, type UseSignaturePadProps, type UseSignaturePadReturn, } from './use-signature-pad';
12
13
  export { useSignaturePadContext, type UseSignaturePadContext } from './use-signature-pad-context';
13
- export { signaturePadAnatomy } from './signature-pad.anatomy';
14
14
  export * as SignaturePad from './signature-pad';
@@ -1,17 +1,17 @@
1
1
  export type { FocusChangeDetails as SliderFocusChangeDetails, ValueChangeDetails as SliderValueChangeDetails, } from '@zag-js/slider';
2
2
  export { SliderContext, type SliderContextProps, } from './slider-context';
3
- export { SliderControl, type SliderControlProps, type SliderControlBaseProps, } from './slider-control';
4
- export { SliderHiddenInput, type SliderHiddenInputProps, type SliderHiddenInputBaseProps, } from './slider-hidden-input';
5
- export { SliderLabel, type SliderLabelProps, type SliderLabelBaseProps, } from './slider-label';
6
- export { SliderMarker, type SliderMarkerProps, type SliderMarkerBaseProps, } from './slider-marker';
7
- export { SliderMarkerGroup, type SliderMarkerGroupProps, type SliderMarkerGroupBaseProps, } from './slider-marker-group';
8
- export { SliderRange, type SliderRangeProps, type SliderRangeBaseProps, } from './slider-range';
9
- export { SliderRoot, type SliderRootProps, type SliderRootBaseProps, } from './slider-root';
10
- export { SliderRootProvider, type SliderRootProviderProps, type SliderRootProviderBaseProps, } from './slider-root-provider';
11
- export { SliderThumb, type SliderThumbProps, type SliderThumbBaseProps, } from './slider-thumb';
12
- export { SliderTrack, type SliderTrackProps, type SliderTrackBaseProps, } from './slider-track';
13
- export { SliderValueText, type SliderValueTextProps, type SliderValueTextBaseProps, } from './slider-value-text';
3
+ export { SliderControl, type SliderControlBaseProps, type SliderControlProps, } from './slider-control';
4
+ export { SliderHiddenInput, type SliderHiddenInputBaseProps, type SliderHiddenInputProps, } from './slider-hidden-input';
5
+ export { SliderLabel, type SliderLabelBaseProps, type SliderLabelProps, } from './slider-label';
6
+ export { SliderMarker, type SliderMarkerBaseProps, type SliderMarkerProps, } from './slider-marker';
7
+ export { SliderMarkerGroup, type SliderMarkerGroupBaseProps, type SliderMarkerGroupProps, } from './slider-marker-group';
8
+ export { SliderRange, type SliderRangeBaseProps, type SliderRangeProps, } from './slider-range';
9
+ export { SliderRoot, type SliderRootBaseProps, type SliderRootProps, } from './slider-root';
10
+ export { SliderRootProvider, type SliderRootProviderBaseProps, type SliderRootProviderProps, } from './slider-root-provider';
11
+ export { SliderThumb, type SliderThumbBaseProps, type SliderThumbProps, } from './slider-thumb';
12
+ export { SliderTrack, type SliderTrackBaseProps, type SliderTrackProps, } from './slider-track';
13
+ export { SliderValueText, type SliderValueTextBaseProps, type SliderValueTextProps, } from './slider-value-text';
14
+ export { sliderAnatomy } from './slider.anatomy';
14
15
  export { useSlider, type UseSliderProps, type UseSliderReturn } from './use-slider';
15
16
  export { useSliderContext, type UseSliderContext } from './use-slider-context';
16
- export { sliderAnatomy } from './slider.anatomy';
17
17
  export * as Slider from './slider';
@@ -1,10 +1,10 @@
1
1
  export type { SizeChangeDetails as SplitterSizeChangeDetails } from '@zag-js/splitter';
2
2
  export { SplitterContext, type SplitterContextProps, } from './splitter-context';
3
- export { SplitterPanel, type SplitterPanelProps, type SplitterPanelBaseProps, } from './splitter-panel';
4
- export { SplitterResizeTrigger, type SplitterResizeTriggerProps, type SplitterResizeTriggerBaseProps, } from './splitter-resize-trigger';
5
- export { SplitterRoot, type SplitterRootProps, type SplitterRootBaseProps, } from './splitter-root';
6
- export { SplitterRootProvider, type SplitterRootProviderProps, type SplitterRootProviderBaseProps, } from './splitter-root-provider';
3
+ export { SplitterPanel, type SplitterPanelBaseProps, type SplitterPanelProps, } from './splitter-panel';
4
+ export { SplitterResizeTrigger, type SplitterResizeTriggerBaseProps, type SplitterResizeTriggerProps, } from './splitter-resize-trigger';
5
+ export { SplitterRoot, type SplitterRootBaseProps, type SplitterRootProps, } from './splitter-root';
6
+ export { SplitterRootProvider, type SplitterRootProviderBaseProps, type SplitterRootProviderProps, } from './splitter-root-provider';
7
+ export { splitterAnatomy } from './splitter.anatomy';
7
8
  export { useSplitter, type UseSplitterProps, type UseSplitterReturn } from './use-splitter';
8
9
  export { useSplitterContext, type UseSplitterContext } from './use-splitter-context';
9
- export { splitterAnatomy } from './splitter.anatomy';
10
10
  export * as Splitter from './splitter';
@@ -1,12 +1,12 @@
1
1
  export type { CheckedChangeDetails as SwitchCheckedChangeDetails } from '@zag-js/switch';
2
2
  export { SwitchContext, type SwitchContextProps, } from './switch-context';
3
- export { SwitchControl, type SwitchControlProps, type SwitchControlBaseProps, } from './switch-control';
4
- export { SwitchHiddenInput, type SwitchHiddenInputProps, type SwitchHiddenInputBaseProps, } from './switch-hidden-input';
5
- export { SwitchLabel, type SwitchLabelProps, type SwitchLabelBaseProps, } from './switch-label';
6
- export { SwitchRoot, type SwitchRootProps, type SwitchRootBaseProps, } from './switch-root';
7
- export { SwitchRootProvider, type SwitchRootProviderProps, type SwitchRootProviderBaseProps, } from './switch-root-provider';
8
- export { SwitchThumb, type SwitchThumbProps, type SwitchThumbBaseProps, } from './switch-thumb';
3
+ export { SwitchControl, type SwitchControlBaseProps, type SwitchControlProps, } from './switch-control';
4
+ export { SwitchHiddenInput, type SwitchHiddenInputBaseProps, type SwitchHiddenInputProps, } from './switch-hidden-input';
5
+ export { SwitchLabel, type SwitchLabelBaseProps, type SwitchLabelProps, } from './switch-label';
6
+ export { SwitchRoot, type SwitchRootBaseProps, type SwitchRootProps, } from './switch-root';
7
+ export { SwitchRootProvider, type SwitchRootProviderBaseProps, type SwitchRootProviderProps, } from './switch-root-provider';
8
+ export { SwitchThumb, type SwitchThumbBaseProps, type SwitchThumbProps, } from './switch-thumb';
9
+ export { switchAnatomy } from './switch.anatomy';
9
10
  export { useSwitch, type UseSwitchProps, type UseSwitchReturn } from './use-switch';
10
11
  export { useSwitchContext, type UseSwitchContext } from './use-switch-context';
11
- export { switchAnatomy } from './switch.anatomy';
12
12
  export * as Switch from './switch';
@@ -1,12 +1,12 @@
1
1
  export type { FocusChangeDetails as TabsFocusChangeDetails, ValueChangeDetails as TabsValueChangeDetails, } from '@zag-js/tabs';
2
- export { TabContent, type TabContentProps, type TabContentBaseProps, } from './tab-content';
3
- export { TabIndicator, type TabIndicatorProps, type TabIndicatorBaseProps, } from './tab-indicator';
4
- export { TabList, type TabListProps, type TabListBaseProps, } from './tab-list';
5
- export { TabTrigger, type TabTriggerProps, type TabTriggerBaseProps, } from './tab-trigger';
2
+ export { TabContent, type TabContentBaseProps, type TabContentProps, } from './tab-content';
3
+ export { TabIndicator, type TabIndicatorBaseProps, type TabIndicatorProps, } from './tab-indicator';
4
+ export { TabList, type TabListBaseProps, type TabListProps, } from './tab-list';
5
+ export { TabTrigger, type TabTriggerBaseProps, type TabTriggerProps, } from './tab-trigger';
6
6
  export { TabsContext, type TabsContextProps, } from './tabs-context';
7
- export { TabsRoot, type TabsRootProps, type TabsRootBaseProps, } from './tabs-root';
8
- export { TabsRootProvider, type TabsRootProviderProps, type TabsRootProviderBaseProps, } from './tabs-root-provider';
7
+ export { TabsRoot, type TabsRootBaseProps, type TabsRootProps, } from './tabs-root';
8
+ export { TabsRootProvider, type TabsRootProviderBaseProps, type TabsRootProviderProps, } from './tabs-root-provider';
9
+ export { tabsAnatomy } from './tabs.anatomy';
9
10
  export { useTabs, type UseTabsProps, type UseTabsReturn } from './use-tabs';
10
11
  export { useTabsContext, type UseTabsContext } from './use-tabs-context';
11
- export { tabsAnatomy } from './tabs.anatomy';
12
12
  export * as Tabs from './tabs';
@@ -1,20 +1,20 @@
1
1
  export type { HighlightChangeDetails as TagsInputHighlightChangeDetails, ValidityChangeDetails as TagsInputValidityChangeDetails, ValueChangeDetails as TagsInputValueChangeDetails, } from '@zag-js/tags-input';
2
- export { TagsInputClearTrigger, type TagsInputClearTriggerProps, type TagsInputClearTriggerBaseProps, } from './tags-input-clear-trigger';
2
+ export { TagsInputClearTrigger, type TagsInputClearTriggerBaseProps, type TagsInputClearTriggerProps, } from './tags-input-clear-trigger';
3
3
  export { TagsInputContext, type TagsInputContextProps, } from './tags-input-context';
4
- export { TagsInputControl, type TagsInputControlProps, type TagsInputControlBaseProps, } from './tags-input-control';
5
- export { TagsInputHiddenInput, type TagsInputHiddenInputProps, type TagsInputHiddenInputBaseProps, } from './tags-input-hidden-input';
6
- export { TagsInputInput, type TagsInputInputProps, type TagsInputInputBaseProps, } from './tags-input-input';
7
- export { TagsInputItem, type TagsInputItemProps, type TagsInputItemBaseProps, } from './tags-input-item';
4
+ export { TagsInputControl, type TagsInputControlBaseProps, type TagsInputControlProps, } from './tags-input-control';
5
+ export { TagsInputHiddenInput, type TagsInputHiddenInputBaseProps, type TagsInputHiddenInputProps, } from './tags-input-hidden-input';
6
+ export { TagsInputInput, type TagsInputInputBaseProps, type TagsInputInputProps, } from './tags-input-input';
7
+ export { TagsInputItem, type TagsInputItemBaseProps, type TagsInputItemProps, } from './tags-input-item';
8
8
  export { TagsInputItemContext, type TagsInputItemContextProps, } from './tags-input-item-context';
9
- export { TagsInputItemDeleteTrigger, type TagsInputItemDeleteTriggerProps, type TagsInputItemDeleteTriggerBaseProps, } from './tags-input-item-delete-trigger';
10
- export { TagsInputItemInput, type TagsInputItemInputProps, type TagsInputItemInputBaseProps, } from './tags-input-item-input';
11
- export { TagsInputItemPreview, type TagsInputItemPreviewProps, type TagsInputItemPreviewBaseProps, } from './tags-input-item-preview';
12
- export { TagsInputItemText, type TagsInputItemTextProps, type TagsInputItemTextBaseProps, } from './tags-input-item-text';
13
- export { TagsInputLabel, type TagsInputLabelProps, type TagsInputLabelBaseProps, } from './tags-input-label';
14
- export { TagsInputRoot, type TagsInputRootProps, type TagsInputRootBaseProps, } from './tags-input-root';
15
- export { TagsInputRootProvider, type TagsInputRootProviderProps, type TagsInputRootProviderBaseProps, } from './tags-input-root-provider';
9
+ export { TagsInputItemDeleteTrigger, type TagsInputItemDeleteTriggerBaseProps, type TagsInputItemDeleteTriggerProps, } from './tags-input-item-delete-trigger';
10
+ export { TagsInputItemInput, type TagsInputItemInputBaseProps, type TagsInputItemInputProps, } from './tags-input-item-input';
11
+ export { TagsInputItemPreview, type TagsInputItemPreviewBaseProps, type TagsInputItemPreviewProps, } from './tags-input-item-preview';
12
+ export { TagsInputItemText, type TagsInputItemTextBaseProps, type TagsInputItemTextProps, } from './tags-input-item-text';
13
+ export { TagsInputLabel, type TagsInputLabelBaseProps, type TagsInputLabelProps, } from './tags-input-label';
14
+ export { TagsInputRoot, type TagsInputRootBaseProps, type TagsInputRootProps, } from './tags-input-root';
15
+ export { TagsInputRootProvider, type TagsInputRootProviderBaseProps, type TagsInputRootProviderProps, } from './tags-input-root-provider';
16
+ export { tagsInputAnatomy } from './tags-input.anatomy';
16
17
  export { useTagsInput, type UseTagsInputProps, type UseTagsInputReturn } from './use-tags-input';
17
18
  export { useTagsInputContext, type UseTagsInputContext } from './use-tags-input-context';
18
19
  export { useTagsInputItemContext, type UseTagsInputItemContext, } from './use-tags-input-item-context';
19
- export { tagsInputAnatomy } from './tags-input.anatomy';
20
20
  export * as TagsInput from './tags-input';
@@ -1,11 +1,12 @@
1
1
  export { TimerActionTrigger, type TimerActionTriggerBaseProps, type TimerActionTriggerProps, } from './timer-action-trigger';
2
- export { TimerArea, type TimerAreaBaseProps, type TimerAreaProps } from './timer-area';
3
2
  export { TimerContext, type TimerContextProps } from './timer-context';
4
- export { TimerControl, type TimerControlBaseProps, type TimerControlProps } from './timer-control';
5
3
  export { TimerItem, type TimerItemBaseProps, type TimerItemProps } from './timer-item';
4
+ export { TimerArea, type TimerAreaBaseProps, type TimerAreaProps } from './timer-area';
5
+ export { TimerControl, type TimerControlBaseProps, type TimerControlProps } from './timer-control';
6
6
  export { TimerRoot, type TimerRootBaseProps, type TimerRootProps } from './timer-root';
7
7
  export { TimerRootProvider, type TimerRootProviderBaseProps, type TimerRootProviderProps, } from './timer-root-provider';
8
8
  export { TimerSeparator, type TimerSeparatorBaseProps, type TimerSeparatorProps, } from './timer-separator';
9
+ export { timerAnatomy } from './timer.anatomy';
9
10
  export { useTimer, type UseTimerProps, type UseTimerReturn } from './use-timer';
10
11
  export { useTimerContext, type UseTimerContext } from './use-timer-context';
11
12
  export * as Timer from './timer';
@@ -0,0 +1 @@
1
+ export { anatomy as timerAnatomy } from '@zag-js/timer';
@@ -1,3 +1,4 @@
1
+ export type { TickDetails } from '@zag-js/timer';
1
2
  export { TimerActionTrigger as ActionTrigger, type TimerActionTriggerBaseProps as ActionTriggerBaseProps, type TimerActionTriggerProps as ActionTriggerProps, } from './timer-action-trigger';
2
3
  export { TimerArea as Area, type TimerAreaBaseProps as AreaBaseProps, type TimerAreaProps as AreaProps, } from './timer-area';
3
4
  export { TimerContext as Context, type TimerContextProps as ContextProps, } from './timer-context';
@@ -1,11 +1,11 @@
1
1
  export { createToaster, type CreateToasterProps, type CreateToasterReturn, } from './create-toaster';
2
- export { ToastActionTrigger, type ToastActionTriggerProps, type ToastActionTriggerBaseProps, } from './toast-action-trigger';
3
- export { ToastCloseTrigger, type ToastCloseTriggerProps, type ToastCloseTriggerBaseProps, } from './toast-close-trigger';
2
+ export { ToastActionTrigger, type ToastActionTriggerBaseProps, type ToastActionTriggerProps, } from './toast-action-trigger';
3
+ export { ToastCloseTrigger, type ToastCloseTriggerBaseProps, type ToastCloseTriggerProps, } from './toast-close-trigger';
4
4
  export { ToastContext, type ToastContextProps, } from './toast-context';
5
- export { ToastDescription, type ToastDescriptionProps, type ToastDescriptionBaseProps, } from './toast-description';
6
- export { ToastRoot, type ToastRootProps, type ToastRootBaseProps, } from './toast-root';
7
- export { ToastTitle, type ToastTitleProps, type ToastTitleBaseProps, } from './toast-title';
8
- export { Toaster, type ToasterProps, type ToasterBaseProps, } from './toaster';
9
- export { useToastContext, type UseToastContext } from './use-toast-context';
5
+ export { ToastDescription, type ToastDescriptionBaseProps, type ToastDescriptionProps, } from './toast-description';
6
+ export { ToastRoot, type ToastRootBaseProps, type ToastRootProps, } from './toast-root';
7
+ export { ToastTitle, type ToastTitleBaseProps, type ToastTitleProps, } from './toast-title';
10
8
  export { toastAnatomy } from './toast.anatomy';
9
+ export { Toaster, type ToasterBaseProps, type ToasterProps, } from './toaster';
10
+ export { useToastContext, type UseToastContext } from './use-toast-context';
11
11
  export * as Toast from './toast';