@skeletonlabs/skeleton-react 4.2.4 → 4.3.1
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.
- package/dist/components/accordion/anatomy/item-content.d.mts +11 -0
- package/dist/components/accordion/anatomy/item-content.mjs +22 -0
- package/dist/components/accordion/anatomy/item-indicator.d.mts +11 -0
- package/dist/components/accordion/anatomy/item-indicator.mjs +22 -0
- package/dist/components/accordion/anatomy/item-trigger.d.mts +11 -0
- package/dist/components/accordion/anatomy/item-trigger.mjs +22 -0
- package/dist/components/accordion/anatomy/item.d.mts +12 -0
- package/dist/components/accordion/anatomy/item.mjs +26 -0
- package/dist/components/accordion/anatomy/root-context.d.mts +11 -0
- package/dist/components/accordion/anatomy/root-context.mjs +13 -0
- package/dist/components/accordion/anatomy/root-provider.d.mts +13 -0
- package/dist/components/accordion/anatomy/root-provider.mjs +21 -0
- package/dist/components/accordion/anatomy/root.d.mts +11 -0
- package/dist/components/accordion/anatomy/root.mjs +25 -0
- package/dist/components/accordion/index.d.mts +9 -0
- package/dist/components/accordion/modules/anatomy.d.mts +20 -0
- package/dist/components/accordion/modules/anatomy.mjs +21 -0
- package/dist/components/accordion/modules/item-context.mjs +8 -0
- package/dist/components/accordion/modules/provider.d.mts +8 -0
- package/dist/components/accordion/modules/provider.mjs +15 -0
- package/dist/components/accordion/modules/root-context.mjs +8 -0
- package/dist/components/app-bar/anatomy/headline.d.mts +10 -0
- package/dist/components/app-bar/anatomy/headline.mjs +17 -0
- package/dist/components/app-bar/anatomy/lead.d.mts +10 -0
- package/dist/components/app-bar/anatomy/lead.mjs +17 -0
- package/dist/components/app-bar/anatomy/root.d.mts +10 -0
- package/dist/components/app-bar/anatomy/root.mjs +17 -0
- package/dist/components/app-bar/anatomy/toolbar.d.mts +10 -0
- package/dist/components/app-bar/anatomy/toolbar.mjs +17 -0
- package/dist/components/app-bar/anatomy/trail.d.mts +10 -0
- package/dist/components/app-bar/anatomy/trail.mjs +17 -0
- package/dist/components/app-bar/index.d.mts +6 -0
- package/dist/components/app-bar/modules/anatomy.d.mts +16 -0
- package/dist/components/app-bar/modules/anatomy.mjs +17 -0
- package/dist/components/avatar/anatomy/fallback.d.mts +10 -0
- package/dist/components/avatar/anatomy/fallback.mjs +20 -0
- package/dist/components/avatar/anatomy/image.d.mts +10 -0
- package/dist/components/avatar/anatomy/image.mjs +17 -0
- package/dist/components/avatar/anatomy/root-context.d.mts +11 -0
- package/dist/components/avatar/anatomy/root-context.mjs +13 -0
- package/dist/components/avatar/anatomy/root-provider.d.mts +13 -0
- package/dist/components/avatar/anatomy/root-provider.mjs +21 -0
- package/dist/components/avatar/anatomy/root.d.mts +11 -0
- package/dist/components/avatar/anatomy/root.mjs +25 -0
- package/dist/components/avatar/index.d.mts +7 -0
- package/dist/components/avatar/modules/anatomy.d.mts +16 -0
- package/dist/components/avatar/modules/anatomy.mjs +17 -0
- package/dist/components/avatar/modules/provider.d.mts +8 -0
- package/dist/components/avatar/modules/provider.mjs +15 -0
- package/dist/components/avatar/modules/root-context.mjs +8 -0
- package/dist/components/collapsible/anatomy/content.d.mts +10 -0
- package/dist/components/collapsible/anatomy/content.mjs +20 -0
- package/dist/components/collapsible/anatomy/indicator.d.mts +10 -0
- package/dist/components/collapsible/anatomy/indicator.mjs +20 -0
- package/dist/components/collapsible/anatomy/root-context.d.mts +11 -0
- package/dist/components/collapsible/anatomy/root-context.mjs +13 -0
- package/dist/components/collapsible/anatomy/root-provider.d.mts +13 -0
- package/dist/components/collapsible/anatomy/root-provider.mjs +21 -0
- package/dist/components/collapsible/anatomy/root.d.mts +11 -0
- package/dist/components/collapsible/anatomy/root.mjs +25 -0
- package/dist/components/collapsible/anatomy/trigger.d.mts +10 -0
- package/dist/components/collapsible/anatomy/trigger.mjs +20 -0
- package/dist/components/collapsible/index.d.mts +8 -0
- package/dist/components/collapsible/modules/anatomy.d.mts +18 -0
- package/dist/components/collapsible/modules/anatomy.mjs +19 -0
- package/dist/components/collapsible/modules/provider.d.mts +8 -0
- package/dist/components/collapsible/modules/provider.mjs +15 -0
- package/dist/components/collapsible/modules/root-context.mjs +8 -0
- package/dist/components/combobox/anatomy/content.d.mts +10 -0
- package/dist/components/combobox/anatomy/content.mjs +20 -0
- package/dist/components/combobox/anatomy/control.d.mts +10 -0
- package/dist/components/combobox/anatomy/control.mjs +20 -0
- package/dist/components/combobox/anatomy/input.d.mts +10 -0
- package/dist/components/combobox/anatomy/input.mjs +17 -0
- package/dist/components/combobox/anatomy/item-group-label.d.mts +11 -0
- package/dist/components/combobox/anatomy/item-group-label.mjs +26 -0
- package/dist/components/combobox/anatomy/item-group.d.mts +11 -0
- package/dist/components/combobox/anatomy/item-group.mjs +29 -0
- package/dist/components/combobox/anatomy/item-indicator.d.mts +10 -0
- package/dist/components/combobox/anatomy/item-indicator.mjs +23 -0
- package/dist/components/combobox/anatomy/item-text.d.mts +10 -0
- package/dist/components/combobox/anatomy/item-text.mjs +22 -0
- package/dist/components/combobox/anatomy/item.d.mts +11 -0
- package/dist/components/combobox/anatomy/item.mjs +26 -0
- package/dist/components/combobox/anatomy/label.d.mts +10 -0
- package/dist/components/combobox/anatomy/label.mjs +20 -0
- package/dist/components/combobox/anatomy/positioner.d.mts +10 -0
- package/dist/components/combobox/anatomy/positioner.mjs +20 -0
- package/dist/components/combobox/anatomy/root-context.d.mts +11 -0
- package/dist/components/combobox/anatomy/root-context.mjs +13 -0
- package/dist/components/combobox/anatomy/root-provider.d.mts +13 -0
- package/dist/components/combobox/anatomy/root-provider.mjs +21 -0
- package/dist/components/combobox/anatomy/root.d.mts +11 -0
- package/dist/components/combobox/anatomy/root.mjs +25 -0
- package/dist/components/combobox/anatomy/trigger.d.mts +10 -0
- package/dist/components/combobox/anatomy/trigger.mjs +21 -0
- package/dist/components/combobox/index.d.mts +16 -0
- package/dist/components/combobox/modules/anatomy.d.mts +34 -0
- package/dist/components/combobox/modules/anatomy.mjs +35 -0
- package/dist/components/combobox/modules/item-context.mjs +8 -0
- package/dist/components/combobox/modules/item-group-context.mjs +8 -0
- package/dist/components/combobox/modules/provider.d.mts +8 -0
- package/dist/components/combobox/modules/provider.mjs +15 -0
- package/dist/components/combobox/modules/root-context.mjs +8 -0
- package/dist/components/date-picker/anatomy/content.d.mts +10 -0
- package/dist/components/date-picker/anatomy/content.mjs +20 -0
- package/dist/components/date-picker/anatomy/control.d.mts +10 -0
- package/dist/components/date-picker/anatomy/control.mjs +20 -0
- package/dist/components/date-picker/anatomy/input.d.mts +11 -0
- package/dist/components/date-picker/anatomy/input.mjs +19 -0
- package/dist/components/date-picker/anatomy/label.d.mts +10 -0
- package/dist/components/date-picker/anatomy/label.mjs +20 -0
- package/dist/components/date-picker/anatomy/month-select.d.mts +10 -0
- package/dist/components/date-picker/anatomy/month-select.mjs +23 -0
- package/dist/components/date-picker/anatomy/next-trigger.d.mts +10 -0
- package/dist/components/date-picker/anatomy/next-trigger.mjs +23 -0
- package/dist/components/date-picker/anatomy/positioner.d.mts +10 -0
- package/dist/components/date-picker/anatomy/positioner.mjs +20 -0
- package/dist/components/date-picker/anatomy/preset-trigger.d.mts +11 -0
- package/dist/components/date-picker/anatomy/preset-trigger.mjs +22 -0
- package/dist/components/date-picker/anatomy/prev-trigger.d.mts +10 -0
- package/dist/components/date-picker/anatomy/prev-trigger.mjs +23 -0
- package/dist/components/date-picker/anatomy/range-text.d.mts +10 -0
- package/dist/components/date-picker/anatomy/range-text.mjs +21 -0
- package/dist/components/date-picker/anatomy/root-context.d.mts +11 -0
- package/dist/components/date-picker/anatomy/root-context.mjs +13 -0
- package/dist/components/date-picker/anatomy/root-provider.d.mts +13 -0
- package/dist/components/date-picker/anatomy/root-provider.mjs +21 -0
- package/dist/components/date-picker/anatomy/root.d.mts +11 -0
- package/dist/components/date-picker/anatomy/root.mjs +25 -0
- package/dist/components/date-picker/anatomy/table-body.d.mts +10 -0
- package/dist/components/date-picker/anatomy/table-body.mjs +22 -0
- package/dist/components/date-picker/anatomy/table-cell-trigger.d.mts +10 -0
- package/dist/components/date-picker/anatomy/table-cell-trigger.mjs +31 -0
- package/dist/components/date-picker/anatomy/table-cell.d.mts +12 -0
- package/dist/components/date-picker/anatomy/table-cell.mjs +35 -0
- package/dist/components/date-picker/anatomy/table-head.d.mts +10 -0
- package/dist/components/date-picker/anatomy/table-head.mjs +22 -0
- package/dist/components/date-picker/anatomy/table-header.d.mts +10 -0
- package/dist/components/date-picker/anatomy/table-header.mjs +22 -0
- package/dist/components/date-picker/anatomy/table-row.d.mts +10 -0
- package/dist/components/date-picker/anatomy/table-row.mjs +22 -0
- package/dist/components/date-picker/anatomy/table.d.mts +10 -0
- package/dist/components/date-picker/anatomy/table.mjs +22 -0
- package/dist/components/date-picker/anatomy/trigger.d.mts +10 -0
- package/dist/components/date-picker/anatomy/trigger.mjs +21 -0
- package/dist/components/date-picker/anatomy/view-control.d.mts +10 -0
- package/dist/components/date-picker/anatomy/view-control.mjs +22 -0
- package/dist/components/date-picker/anatomy/view-trigger.d.mts +10 -0
- package/dist/components/date-picker/anatomy/view-trigger.mjs +22 -0
- package/dist/components/date-picker/anatomy/view.d.mts +11 -0
- package/dist/components/date-picker/anatomy/view.mjs +26 -0
- package/dist/components/date-picker/anatomy/year-select.d.mts +10 -0
- package/dist/components/date-picker/anatomy/year-select.mjs +23 -0
- package/dist/components/date-picker/index.d.mts +29 -0
- package/dist/components/date-picker/index.mjs +5 -0
- package/dist/components/date-picker/modules/anatomy.d.mts +56 -0
- package/dist/components/date-picker/modules/anatomy.mjs +57 -0
- package/dist/components/date-picker/modules/provider.d.mts +8 -0
- package/dist/components/date-picker/modules/provider.mjs +15 -0
- package/dist/components/date-picker/modules/root-context.mjs +8 -0
- package/dist/components/date-picker/modules/table-cell-context.mjs +8 -0
- package/dist/components/date-picker/modules/view-context.mjs +8 -0
- package/dist/components/dialog/anatomy/backdrop.d.mts +10 -0
- package/dist/components/dialog/anatomy/backdrop.mjs +17 -0
- package/dist/components/dialog/anatomy/close-trigger.d.mts +10 -0
- package/dist/components/dialog/anatomy/close-trigger.mjs +20 -0
- package/dist/components/dialog/anatomy/content.d.mts +10 -0
- package/dist/components/dialog/anatomy/content.mjs +20 -0
- package/dist/components/dialog/anatomy/description.d.mts +10 -0
- package/dist/components/dialog/anatomy/description.mjs +20 -0
- package/dist/components/dialog/anatomy/positioner.d.mts +10 -0
- package/dist/components/dialog/anatomy/positioner.mjs +20 -0
- package/dist/components/dialog/anatomy/root-context.d.mts +11 -0
- package/dist/components/dialog/anatomy/root-context.mjs +13 -0
- package/dist/components/dialog/anatomy/root-provider.d.mts +12 -0
- package/dist/components/dialog/anatomy/root-provider.mjs +15 -0
- package/dist/components/dialog/anatomy/root.d.mts +10 -0
- package/dist/components/dialog/anatomy/root.mjs +20 -0
- package/dist/components/dialog/anatomy/title.d.mts +10 -0
- package/dist/components/dialog/anatomy/title.mjs +20 -0
- package/dist/components/dialog/anatomy/trigger.d.mts +10 -0
- package/dist/components/dialog/anatomy/trigger.mjs +20 -0
- package/dist/components/dialog/index.d.mts +12 -0
- package/dist/components/dialog/modules/anatomy.d.mts +26 -0
- package/dist/components/dialog/modules/anatomy.mjs +27 -0
- package/dist/components/dialog/modules/provider.d.mts +8 -0
- package/dist/components/dialog/modules/provider.mjs +15 -0
- package/dist/components/dialog/modules/root-context.mjs +8 -0
- package/dist/components/file-upload/anatomy/dropzone.d.mts +10 -0
- package/dist/components/file-upload/anatomy/dropzone.mjs +20 -0
- package/dist/components/file-upload/anatomy/hidden-input.d.mts +10 -0
- package/dist/components/file-upload/anatomy/hidden-input.mjs +17 -0
- package/dist/components/file-upload/anatomy/item-delete-trigger.d.mts +10 -0
- package/dist/components/file-upload/anatomy/item-delete-trigger.mjs +22 -0
- package/dist/components/file-upload/anatomy/item-group.d.mts +10 -0
- package/dist/components/file-upload/anatomy/item-group.mjs +20 -0
- package/dist/components/file-upload/anatomy/item-name.d.mts +10 -0
- package/dist/components/file-upload/anatomy/item-name.mjs +22 -0
- package/dist/components/file-upload/anatomy/item-size-text.d.mts +10 -0
- package/dist/components/file-upload/anatomy/item-size-text.mjs +22 -0
- package/dist/components/file-upload/anatomy/item.d.mts +11 -0
- package/dist/components/file-upload/anatomy/item.mjs +26 -0
- package/dist/components/file-upload/anatomy/label.d.mts +10 -0
- package/dist/components/file-upload/anatomy/label.mjs +20 -0
- package/dist/components/file-upload/anatomy/root-context.d.mts +11 -0
- package/dist/components/file-upload/anatomy/root-context.mjs +13 -0
- package/dist/components/file-upload/anatomy/root-provider.d.mts +13 -0
- package/dist/components/file-upload/anatomy/root-provider.mjs +21 -0
- package/dist/components/file-upload/anatomy/root.d.mts +11 -0
- package/dist/components/file-upload/anatomy/root.mjs +25 -0
- package/dist/components/file-upload/anatomy/trigger.d.mts +10 -0
- package/dist/components/file-upload/anatomy/trigger.mjs +20 -0
- package/dist/components/file-upload/index.d.mts +14 -0
- package/dist/components/file-upload/modules/anatomy.d.mts +30 -0
- package/dist/components/file-upload/modules/anatomy.mjs +31 -0
- package/dist/components/file-upload/modules/item-context.mjs +8 -0
- package/dist/components/file-upload/modules/provider.d.mts +8 -0
- package/dist/components/file-upload/modules/provider.mjs +15 -0
- package/dist/components/file-upload/modules/root-context.mjs +8 -0
- package/dist/components/listbox/anatomy/content.d.mts +10 -0
- package/dist/components/listbox/anatomy/content.mjs +20 -0
- package/dist/components/listbox/anatomy/input.d.mts +10 -0
- package/dist/components/listbox/anatomy/input.mjs +17 -0
- package/dist/components/listbox/anatomy/item-group-label.d.mts +11 -0
- package/dist/components/listbox/anatomy/item-group-label.mjs +26 -0
- package/dist/components/listbox/anatomy/item-group.d.mts +11 -0
- package/dist/components/listbox/anatomy/item-group.mjs +29 -0
- package/dist/components/listbox/anatomy/item-indicator.d.mts +10 -0
- package/dist/components/listbox/anatomy/item-indicator.mjs +23 -0
- package/dist/components/listbox/anatomy/item-text.d.mts +10 -0
- package/dist/components/listbox/anatomy/item-text.mjs +22 -0
- package/dist/components/listbox/anatomy/item.d.mts +11 -0
- package/dist/components/listbox/anatomy/item.mjs +26 -0
- package/dist/components/listbox/anatomy/label.d.mts +10 -0
- package/dist/components/listbox/anatomy/label.mjs +20 -0
- package/dist/components/listbox/anatomy/root-context.d.mts +11 -0
- package/dist/components/listbox/anatomy/root-context.mjs +13 -0
- package/dist/components/listbox/anatomy/root-provider.d.mts +13 -0
- package/dist/components/listbox/anatomy/root-provider.mjs +21 -0
- package/dist/components/listbox/anatomy/root.d.mts +11 -0
- package/dist/components/listbox/anatomy/root.mjs +25 -0
- package/dist/components/listbox/index.d.mts +13 -0
- package/dist/components/listbox/modules/anatomy.d.mts +28 -0
- package/dist/components/listbox/modules/anatomy.mjs +29 -0
- package/dist/components/listbox/modules/item-context.mjs +8 -0
- package/dist/components/listbox/modules/item-group-context.mjs +8 -0
- package/dist/components/listbox/modules/provider.d.mts +8 -0
- package/dist/components/listbox/modules/provider.mjs +15 -0
- package/dist/components/listbox/modules/root-context.mjs +8 -0
- package/dist/components/navigation/anatomy/content.d.mts +10 -0
- package/dist/components/navigation/anatomy/content.mjs +23 -0
- package/dist/components/navigation/anatomy/footer.d.mts +10 -0
- package/dist/components/navigation/anatomy/footer.mjs +23 -0
- package/dist/components/navigation/anatomy/group.d.mts +10 -0
- package/dist/components/navigation/anatomy/group.mjs +23 -0
- package/dist/components/navigation/anatomy/header.d.mts +10 -0
- package/dist/components/navigation/anatomy/header.mjs +23 -0
- package/dist/components/navigation/anatomy/label.d.mts +10 -0
- package/dist/components/navigation/anatomy/label.mjs +23 -0
- package/dist/components/navigation/anatomy/menu.d.mts +10 -0
- package/dist/components/navigation/anatomy/menu.mjs +23 -0
- package/dist/components/navigation/anatomy/root.d.mts +17 -0
- package/dist/components/navigation/anatomy/root.mjs +24 -0
- package/dist/components/navigation/index.d.mts +8 -0
- package/dist/components/navigation/modules/anatomy.d.mts +20 -0
- package/dist/components/navigation/modules/anatomy.mjs +21 -0
- package/dist/components/navigation/modules/root-context.mjs +8 -0
- package/dist/components/pagination/anatomy/ellipsis.d.mts +11 -0
- package/dist/components/pagination/anatomy/ellipsis.mjs +22 -0
- package/dist/components/pagination/anatomy/first-trigger.d.mts +10 -0
- package/dist/components/pagination/anatomy/first-trigger.mjs +23 -0
- package/dist/components/pagination/anatomy/item.d.mts +11 -0
- package/dist/components/pagination/anatomy/item.mjs +22 -0
- package/dist/components/pagination/anatomy/last-trigger.d.mts +10 -0
- package/dist/components/pagination/anatomy/last-trigger.mjs +23 -0
- package/dist/components/pagination/anatomy/next-trigger.d.mts +10 -0
- package/dist/components/pagination/anatomy/next-trigger.mjs +20 -0
- package/dist/components/pagination/anatomy/prev-trigger.d.mts +10 -0
- package/dist/components/pagination/anatomy/prev-trigger.mjs +20 -0
- package/dist/components/pagination/anatomy/root-context.d.mts +11 -0
- package/dist/components/pagination/anatomy/root-context.mjs +13 -0
- package/dist/components/pagination/anatomy/root-provider.d.mts +13 -0
- package/dist/components/pagination/anatomy/root-provider.mjs +21 -0
- package/dist/components/pagination/anatomy/root.d.mts +11 -0
- package/dist/components/pagination/anatomy/root.mjs +25 -0
- package/dist/components/pagination/index.d.mts +11 -0
- package/dist/components/pagination/modules/anatomy.d.mts +24 -0
- package/dist/components/pagination/modules/anatomy.mjs +25 -0
- package/dist/components/pagination/modules/provider.d.mts +8 -0
- package/dist/components/pagination/modules/provider.mjs +15 -0
- package/dist/components/pagination/modules/root-context.mjs +8 -0
- package/dist/components/popover/anatomy/arrow-tip.d.mts +10 -0
- package/dist/components/popover/anatomy/arrow-tip.mjs +20 -0
- package/dist/components/popover/anatomy/arrow.d.mts +10 -0
- package/dist/components/popover/anatomy/arrow.mjs +20 -0
- package/dist/components/popover/anatomy/close-trigger.d.mts +10 -0
- package/dist/components/popover/anatomy/close-trigger.mjs +20 -0
- package/dist/components/popover/anatomy/content.d.mts +10 -0
- package/dist/components/popover/anatomy/content.mjs +20 -0
- package/dist/components/popover/anatomy/description.d.mts +10 -0
- package/dist/components/popover/anatomy/description.mjs +20 -0
- package/dist/components/popover/anatomy/positioner.d.mts +10 -0
- package/dist/components/popover/anatomy/positioner.mjs +20 -0
- package/dist/components/popover/anatomy/root-context.d.mts +11 -0
- package/dist/components/popover/anatomy/root-context.mjs +13 -0
- package/dist/components/popover/anatomy/root-provider.d.mts +12 -0
- package/dist/components/popover/anatomy/root-provider.mjs +15 -0
- package/dist/components/popover/anatomy/root.d.mts +10 -0
- package/dist/components/popover/anatomy/root.mjs +20 -0
- package/dist/components/popover/anatomy/title.d.mts +10 -0
- package/dist/components/popover/anatomy/title.mjs +20 -0
- package/dist/components/popover/anatomy/trigger.d.mts +11 -0
- package/dist/components/popover/anatomy/trigger.mjs +20 -0
- package/dist/components/popover/index.d.mts +13 -0
- package/dist/components/popover/modules/anatomy.d.mts +28 -0
- package/dist/components/popover/modules/anatomy.mjs +29 -0
- package/dist/components/popover/modules/provider.d.mts +8 -0
- package/dist/components/popover/modules/provider.mjs +15 -0
- package/dist/components/popover/modules/root-context.mjs +8 -0
- package/dist/components/portal/anatomy/root.d.mts +22 -0
- package/dist/components/portal/anatomy/root.mjs +14 -0
- package/dist/components/portal/index.d.mts +2 -0
- package/dist/components/portal/modules/anatomy.d.mts +7 -0
- package/dist/components/portal/modules/anatomy.mjs +8 -0
- package/dist/components/progress/anatomy/circle-range.d.mts +10 -0
- package/dist/components/progress/anatomy/circle-range.mjs +20 -0
- package/dist/components/progress/anatomy/circle-track.d.mts +10 -0
- package/dist/components/progress/anatomy/circle-track.mjs +17 -0
- package/dist/components/progress/anatomy/circle.d.mts +10 -0
- package/dist/components/progress/anatomy/circle.mjs +26 -0
- package/dist/components/progress/anatomy/label.d.mts +10 -0
- package/dist/components/progress/anatomy/label.mjs +20 -0
- package/dist/components/progress/anatomy/range.d.mts +10 -0
- package/dist/components/progress/anatomy/range.mjs +17 -0
- package/dist/components/progress/anatomy/root-context.d.mts +11 -0
- package/dist/components/progress/anatomy/root-context.mjs +13 -0
- package/dist/components/progress/anatomy/root-provider.d.mts +13 -0
- package/dist/components/progress/anatomy/root-provider.mjs +21 -0
- package/dist/components/progress/anatomy/root.d.mts +11 -0
- package/dist/components/progress/anatomy/root.mjs +25 -0
- package/dist/components/progress/anatomy/track.d.mts +10 -0
- package/dist/components/progress/anatomy/track.mjs +20 -0
- package/dist/components/progress/anatomy/value-text.d.mts +10 -0
- package/dist/components/progress/anatomy/value-text.mjs +20 -0
- package/dist/components/progress/index.d.mts +12 -0
- package/dist/components/progress/modules/anatomy.d.mts +26 -0
- package/dist/components/progress/modules/anatomy.mjs +27 -0
- package/dist/components/progress/modules/provider.d.mts +8 -0
- package/dist/components/progress/modules/provider.mjs +15 -0
- package/dist/components/progress/modules/root-context.mjs +8 -0
- package/dist/components/rating-group/anatomy/control.d.mts +10 -0
- package/dist/components/rating-group/anatomy/control.mjs +20 -0
- package/dist/components/rating-group/anatomy/hidden-input.d.mts +10 -0
- package/dist/components/rating-group/anatomy/hidden-input.mjs +17 -0
- package/dist/components/rating-group/anatomy/item.d.mts +31 -0
- package/dist/components/rating-group/anatomy/item.mjs +26 -0
- package/dist/components/rating-group/anatomy/label.d.mts +10 -0
- package/dist/components/rating-group/anatomy/label.mjs +20 -0
- package/dist/components/rating-group/anatomy/root-context.d.mts +11 -0
- package/dist/components/rating-group/anatomy/root-context.mjs +13 -0
- package/dist/components/rating-group/anatomy/root-provider.d.mts +13 -0
- package/dist/components/rating-group/anatomy/root-provider.mjs +21 -0
- package/dist/components/rating-group/anatomy/root.d.mts +11 -0
- package/dist/components/rating-group/anatomy/root.mjs +25 -0
- package/dist/components/rating-group/index.d.mts +9 -0
- package/dist/components/rating-group/modules/anatomy.d.mts +20 -0
- package/dist/components/rating-group/modules/anatomy.mjs +21 -0
- package/dist/components/rating-group/modules/provider.d.mts +8 -0
- package/dist/components/rating-group/modules/provider.mjs +15 -0
- package/dist/components/rating-group/modules/root-context.mjs +8 -0
- package/dist/components/segmented-control/anatomy/control.d.mts +10 -0
- package/dist/components/segmented-control/anatomy/control.mjs +17 -0
- package/dist/components/segmented-control/anatomy/indicator.d.mts +10 -0
- package/dist/components/segmented-control/anatomy/indicator.mjs +17 -0
- package/dist/components/segmented-control/anatomy/item-hidden-input.d.mts +10 -0
- package/dist/components/segmented-control/anatomy/item-hidden-input.mjs +19 -0
- package/dist/components/segmented-control/anatomy/item-text.d.mts +10 -0
- package/dist/components/segmented-control/anatomy/item-text.mjs +22 -0
- package/dist/components/segmented-control/anatomy/item.d.mts +11 -0
- package/dist/components/segmented-control/anatomy/item.mjs +26 -0
- package/dist/components/segmented-control/anatomy/label.d.mts +10 -0
- package/dist/components/segmented-control/anatomy/label.mjs +20 -0
- package/dist/components/segmented-control/anatomy/root-context.d.mts +11 -0
- package/dist/components/segmented-control/anatomy/root-context.mjs +13 -0
- package/dist/components/segmented-control/anatomy/root-provider.d.mts +13 -0
- package/dist/components/segmented-control/anatomy/root-provider.mjs +21 -0
- package/dist/components/segmented-control/anatomy/root.d.mts +11 -0
- package/dist/components/segmented-control/anatomy/root.mjs +25 -0
- package/dist/components/segmented-control/index.d.mts +11 -0
- package/dist/components/segmented-control/modules/anatomy.d.mts +24 -0
- package/dist/components/segmented-control/modules/anatomy.mjs +25 -0
- package/dist/components/segmented-control/modules/item-context.mjs +8 -0
- package/dist/components/segmented-control/modules/provider.d.mts +8 -0
- package/dist/components/segmented-control/modules/provider.mjs +16 -0
- package/dist/components/segmented-control/modules/root-context.mjs +8 -0
- package/dist/components/slider/anatomy/control.d.mts +10 -0
- package/dist/components/slider/anatomy/control.mjs +20 -0
- package/dist/components/slider/anatomy/hidden-input.d.mts +10 -0
- package/dist/components/slider/anatomy/hidden-input.mjs +19 -0
- package/dist/components/slider/anatomy/label.d.mts +10 -0
- package/dist/components/slider/anatomy/label.mjs +20 -0
- package/dist/components/slider/anatomy/marker-group.d.mts +10 -0
- package/dist/components/slider/anatomy/marker-group.mjs +20 -0
- package/dist/components/slider/anatomy/marker.d.mts +11 -0
- package/dist/components/slider/anatomy/marker.mjs +20 -0
- package/dist/components/slider/anatomy/range.d.mts +10 -0
- package/dist/components/slider/anatomy/range.mjs +20 -0
- package/dist/components/slider/anatomy/root-context.d.mts +11 -0
- package/dist/components/slider/anatomy/root-context.mjs +13 -0
- package/dist/components/slider/anatomy/root-provider.d.mts +13 -0
- package/dist/components/slider/anatomy/root-provider.mjs +21 -0
- package/dist/components/slider/anatomy/root.d.mts +11 -0
- package/dist/components/slider/anatomy/root.mjs +25 -0
- package/dist/components/slider/anatomy/thumb.d.mts +11 -0
- package/dist/components/slider/anatomy/thumb.mjs +26 -0
- package/dist/components/slider/anatomy/track.d.mts +10 -0
- package/dist/components/slider/anatomy/track.mjs +20 -0
- package/dist/components/slider/anatomy/value-text.d.mts +10 -0
- package/dist/components/slider/anatomy/value-text.mjs +20 -0
- package/dist/components/slider/index.d.mts +14 -0
- package/dist/components/slider/modules/anatomy.d.mts +30 -0
- package/dist/components/slider/modules/anatomy.mjs +31 -0
- package/dist/components/slider/modules/provider.d.mts +8 -0
- package/dist/components/slider/modules/provider.mjs +15 -0
- package/dist/components/slider/modules/root-context.mjs +8 -0
- package/dist/components/slider/modules/thumb-context.mjs +8 -0
- package/dist/components/switch/anatomy/control.d.mts +10 -0
- package/dist/components/switch/anatomy/control.mjs +20 -0
- package/dist/components/switch/anatomy/hidden-input.d.mts +10 -0
- package/dist/components/switch/anatomy/hidden-input.mjs +17 -0
- package/dist/components/switch/anatomy/label.d.mts +10 -0
- package/dist/components/switch/anatomy/label.mjs +20 -0
- package/dist/components/switch/anatomy/root-context.d.mts +11 -0
- package/dist/components/switch/anatomy/root-context.mjs +13 -0
- package/dist/components/switch/anatomy/root-provider.d.mts +13 -0
- package/dist/components/switch/anatomy/root-provider.mjs +21 -0
- package/dist/components/switch/anatomy/root.d.mts +11 -0
- package/dist/components/switch/anatomy/root.mjs +25 -0
- package/dist/components/switch/anatomy/thumb.d.mts +10 -0
- package/dist/components/switch/anatomy/thumb.mjs +20 -0
- package/dist/components/switch/index.d.mts +9 -0
- package/dist/components/switch/modules/anatomy.d.mts +20 -0
- package/dist/components/switch/modules/anatomy.mjs +21 -0
- package/dist/components/switch/modules/provider.d.mts +8 -0
- package/dist/components/switch/modules/provider.mjs +15 -0
- package/dist/components/switch/modules/root-context.mjs +8 -0
- package/dist/components/tabs/anatomy/content.d.mts +11 -0
- package/dist/components/tabs/anatomy/content.mjs +22 -0
- package/dist/components/tabs/anatomy/indicator.d.mts +10 -0
- package/dist/components/tabs/anatomy/indicator.mjs +17 -0
- package/dist/components/tabs/anatomy/list.d.mts +10 -0
- package/dist/components/tabs/anatomy/list.mjs +20 -0
- package/dist/components/tabs/anatomy/root-context.d.mts +11 -0
- package/dist/components/tabs/anatomy/root-context.mjs +13 -0
- package/dist/components/tabs/anatomy/root-provider.d.mts +13 -0
- package/dist/components/tabs/anatomy/root-provider.mjs +21 -0
- package/dist/components/tabs/anatomy/root.d.mts +11 -0
- package/dist/components/tabs/anatomy/root.mjs +25 -0
- package/dist/components/tabs/anatomy/trigger.d.mts +11 -0
- package/dist/components/tabs/anatomy/trigger.mjs +22 -0
- package/dist/components/tabs/index.d.mts +9 -0
- package/dist/components/tabs/modules/anatomy.d.mts +20 -0
- package/dist/components/tabs/modules/anatomy.mjs +21 -0
- package/dist/components/tabs/modules/provider.d.mts +8 -0
- package/dist/components/tabs/modules/provider.mjs +15 -0
- package/dist/components/tabs/modules/root-context.mjs +8 -0
- package/dist/components/tags-input/anatomy/clear-trigger.d.mts +10 -0
- package/dist/components/tags-input/anatomy/clear-trigger.mjs +20 -0
- package/dist/components/tags-input/anatomy/control.d.mts +10 -0
- package/dist/components/tags-input/anatomy/control.mjs +20 -0
- package/dist/components/tags-input/anatomy/hidden-input.d.mts +10 -0
- package/dist/components/tags-input/anatomy/hidden-input.mjs +17 -0
- package/dist/components/tags-input/anatomy/input.d.mts +10 -0
- package/dist/components/tags-input/anatomy/input.mjs +17 -0
- package/dist/components/tags-input/anatomy/item-delete-trigger.d.mts +10 -0
- package/dist/components/tags-input/anatomy/item-delete-trigger.mjs +22 -0
- package/dist/components/tags-input/anatomy/item-input.d.mts +10 -0
- package/dist/components/tags-input/anatomy/item-input.mjs +19 -0
- package/dist/components/tags-input/anatomy/item-preview.d.mts +10 -0
- package/dist/components/tags-input/anatomy/item-preview.mjs +22 -0
- package/dist/components/tags-input/anatomy/item-text.d.mts +10 -0
- package/dist/components/tags-input/anatomy/item-text.mjs +22 -0
- package/dist/components/tags-input/anatomy/item.d.mts +11 -0
- package/dist/components/tags-input/anatomy/item.mjs +26 -0
- package/dist/components/tags-input/anatomy/label.d.mts +10 -0
- package/dist/components/tags-input/anatomy/label.mjs +20 -0
- package/dist/components/tags-input/anatomy/root-context.d.mts +11 -0
- package/dist/components/tags-input/anatomy/root-context.mjs +13 -0
- package/dist/components/tags-input/anatomy/root-provider.d.mts +13 -0
- package/dist/components/tags-input/anatomy/root-provider.mjs +21 -0
- package/dist/components/tags-input/anatomy/root.d.mts +11 -0
- package/dist/components/tags-input/anatomy/root.mjs +25 -0
- package/dist/components/tags-input/index.d.mts +15 -0
- package/dist/components/tags-input/modules/anatomy.d.mts +32 -0
- package/dist/components/tags-input/modules/anatomy.mjs +33 -0
- package/dist/components/tags-input/modules/item-context.mjs +8 -0
- package/dist/components/tags-input/modules/provider.d.mts +8 -0
- package/dist/components/tags-input/modules/provider.mjs +15 -0
- package/dist/components/tags-input/modules/root-context.mjs +8 -0
- package/dist/components/toast/anatomy/action-trigger.d.mts +10 -0
- package/dist/components/toast/anatomy/action-trigger.mjs +20 -0
- package/dist/components/toast/anatomy/close-trigger.d.mts +10 -0
- package/dist/components/toast/anatomy/close-trigger.mjs +21 -0
- package/dist/components/toast/anatomy/description.d.mts +10 -0
- package/dist/components/toast/anatomy/description.mjs +20 -0
- package/dist/components/toast/anatomy/group.d.mts +15 -0
- package/dist/components/toast/anatomy/group.mjs +28 -0
- package/dist/components/toast/anatomy/message.d.mts +10 -0
- package/dist/components/toast/anatomy/message.mjs +17 -0
- package/dist/components/toast/anatomy/root-context.d.mts +12 -0
- package/dist/components/toast/anatomy/root-context.mjs +13 -0
- package/dist/components/toast/anatomy/root.d.mts +13 -0
- package/dist/components/toast/anatomy/root.mjs +56 -0
- package/dist/components/toast/anatomy/title.d.mts +10 -0
- package/dist/components/toast/anatomy/title.mjs +20 -0
- package/dist/components/toast/index.d.mts +11 -0
- package/dist/components/toast/index.mjs +4 -0
- package/dist/components/toast/modules/anatomy.d.mts +22 -0
- package/dist/components/toast/modules/anatomy.mjs +23 -0
- package/dist/components/toast/modules/group-context.mjs +8 -0
- package/dist/components/toast/modules/root-context.mjs +8 -0
- package/dist/components/toggle-group/anatomy/item.d.mts +11 -0
- package/dist/components/toggle-group/anatomy/item.mjs +22 -0
- package/dist/components/toggle-group/anatomy/root-context.d.mts +11 -0
- package/dist/components/toggle-group/anatomy/root-context.mjs +13 -0
- package/dist/components/toggle-group/anatomy/root-provider.d.mts +13 -0
- package/dist/components/toggle-group/anatomy/root-provider.mjs +21 -0
- package/dist/components/toggle-group/anatomy/root.d.mts +11 -0
- package/dist/components/toggle-group/anatomy/root.mjs +25 -0
- package/dist/components/toggle-group/index.d.mts +6 -0
- package/dist/components/toggle-group/modules/anatomy.d.mts +14 -0
- package/dist/components/toggle-group/modules/anatomy.mjs +15 -0
- package/dist/components/toggle-group/modules/provider.d.mts +8 -0
- package/dist/components/toggle-group/modules/provider.mjs +15 -0
- package/dist/components/toggle-group/modules/root-context.mjs +8 -0
- package/dist/components/tooltip/anatomy/arrow-tip.d.mts +10 -0
- package/dist/components/tooltip/anatomy/arrow-tip.mjs +20 -0
- package/dist/components/tooltip/anatomy/arrow.d.mts +10 -0
- package/dist/components/tooltip/anatomy/arrow.mjs +20 -0
- package/dist/components/tooltip/anatomy/content.d.mts +10 -0
- package/dist/components/tooltip/anatomy/content.mjs +20 -0
- package/dist/components/tooltip/anatomy/positioner.d.mts +10 -0
- package/dist/components/tooltip/anatomy/positioner.mjs +20 -0
- package/dist/components/tooltip/anatomy/root-context.d.mts +11 -0
- package/dist/components/tooltip/anatomy/root-context.mjs +13 -0
- package/dist/components/tooltip/anatomy/root-provider.d.mts +12 -0
- package/dist/components/tooltip/anatomy/root-provider.mjs +15 -0
- package/dist/components/tooltip/anatomy/root.d.mts +10 -0
- package/dist/components/tooltip/anatomy/root.mjs +19 -0
- package/dist/components/tooltip/anatomy/trigger.d.mts +10 -0
- package/dist/components/tooltip/anatomy/trigger.mjs +20 -0
- package/dist/components/tooltip/index.d.mts +10 -0
- package/dist/components/tooltip/modules/anatomy.d.mts +22 -0
- package/dist/components/tooltip/modules/anatomy.mjs +23 -0
- package/dist/components/tooltip/modules/provider.d.mts +8 -0
- package/dist/components/tooltip/modules/provider.mjs +15 -0
- package/dist/components/tooltip/modules/root-context.mjs +8 -0
- package/dist/components/tree-view/anatomy/branch-content.d.mts +10 -0
- package/dist/components/tree-view/anatomy/branch-content.mjs +22 -0
- package/dist/components/tree-view/anatomy/branch-control.d.mts +10 -0
- package/dist/components/tree-view/anatomy/branch-control.mjs +22 -0
- package/dist/components/tree-view/anatomy/branch-indent-guide.d.mts +10 -0
- package/dist/components/tree-view/anatomy/branch-indent-guide.mjs +22 -0
- package/dist/components/tree-view/anatomy/branch-indicator.d.mts +10 -0
- package/dist/components/tree-view/anatomy/branch-indicator.mjs +23 -0
- package/dist/components/tree-view/anatomy/branch-text.d.mts +10 -0
- package/dist/components/tree-view/anatomy/branch-text.mjs +22 -0
- package/dist/components/tree-view/anatomy/branch.d.mts +10 -0
- package/dist/components/tree-view/anatomy/branch.mjs +22 -0
- package/dist/components/tree-view/anatomy/item.d.mts +10 -0
- package/dist/components/tree-view/anatomy/item.mjs +22 -0
- package/dist/components/tree-view/anatomy/label.d.mts +17 -0
- package/dist/components/tree-view/anatomy/label.mjs +21 -0
- package/dist/components/tree-view/anatomy/node-context.d.mts +11 -0
- package/dist/components/tree-view/anatomy/node-context.mjs +13 -0
- package/dist/components/tree-view/anatomy/node-provider.d.mts +12 -0
- package/dist/components/tree-view/anatomy/node-provider.mjs +15 -0
- package/dist/components/tree-view/anatomy/root-context.d.mts +11 -0
- package/dist/components/tree-view/anatomy/root-context.mjs +13 -0
- package/dist/components/tree-view/anatomy/root-provider.d.mts +13 -0
- package/dist/components/tree-view/anatomy/root-provider.mjs +21 -0
- package/dist/components/tree-view/anatomy/root.d.mts +11 -0
- package/dist/components/tree-view/anatomy/root.mjs +25 -0
- package/dist/components/tree-view/anatomy/tree.d.mts +10 -0
- package/dist/components/tree-view/anatomy/tree.mjs +20 -0
- package/dist/components/tree-view/index.d.mts +18 -0
- package/dist/components/tree-view/index.mjs +5 -0
- package/dist/components/tree-view/modules/anatomy.d.mts +34 -0
- package/dist/components/tree-view/modules/anatomy.mjs +35 -0
- package/dist/components/tree-view/modules/node-context.mjs +8 -0
- package/dist/components/tree-view/modules/provider.d.mts +8 -0
- package/dist/components/tree-view/modules/provider.mjs +15 -0
- package/dist/components/tree-view/modules/root-context.mjs +8 -0
- package/dist/hooks/use-list-collection.d.mts +7 -0
- package/dist/hooks/use-list-collection.mjs +10 -0
- package/dist/index.d.mts +292 -0
- package/dist/index.mjs +50 -0
- package/dist/internal/components/calendar.mjs +36 -0
- package/dist/internal/components/check.mjs +25 -0
- package/dist/internal/components/chevron-down.mjs +25 -0
- package/dist/internal/components/chevron-left.mjs +25 -0
- package/dist/internal/components/chevron-right.mjs +25 -0
- package/dist/internal/components/star-empty.mjs +27 -0
- package/dist/internal/components/star-full.mjs +25 -0
- package/dist/internal/components/star-half.mjs +41 -0
- package/dist/internal/components/x.mjs +25 -0
- package/dist/internal/create-context.mjs +10 -0
- package/dist/internal/html-attributes.d.mts +9 -0
- package/dist/internal/props-with-element.d.mts +13 -0
- package/dist/internal/union.d.mts +5 -0
- package/package.json +29 -29
- package/dist/components/accordion/anatomy/item-content.d.ts +0 -11
- package/dist/components/accordion/anatomy/item-content.js +0 -22
- package/dist/components/accordion/anatomy/item-indicator.d.ts +0 -11
- package/dist/components/accordion/anatomy/item-indicator.js +0 -22
- package/dist/components/accordion/anatomy/item-trigger.d.ts +0 -11
- package/dist/components/accordion/anatomy/item-trigger.js +0 -22
- package/dist/components/accordion/anatomy/item.d.ts +0 -12
- package/dist/components/accordion/anatomy/item.js +0 -26
- package/dist/components/accordion/anatomy/root-context.d.ts +0 -11
- package/dist/components/accordion/anatomy/root-context.js +0 -13
- package/dist/components/accordion/anatomy/root-provider.d.ts +0 -13
- package/dist/components/accordion/anatomy/root-provider.js +0 -21
- package/dist/components/accordion/anatomy/root.d.ts +0 -11
- package/dist/components/accordion/anatomy/root.js +0 -25
- package/dist/components/accordion/index.d.ts +0 -9
- package/dist/components/accordion/modules/anatomy.d.ts +0 -20
- package/dist/components/accordion/modules/anatomy.js +0 -21
- package/dist/components/accordion/modules/item-context.js +0 -8
- package/dist/components/accordion/modules/provider.d.ts +0 -8
- package/dist/components/accordion/modules/provider.js +0 -15
- package/dist/components/accordion/modules/root-context.js +0 -8
- package/dist/components/app-bar/anatomy/headline.d.ts +0 -10
- package/dist/components/app-bar/anatomy/headline.js +0 -17
- package/dist/components/app-bar/anatomy/lead.d.ts +0 -10
- package/dist/components/app-bar/anatomy/lead.js +0 -17
- package/dist/components/app-bar/anatomy/root.d.ts +0 -10
- package/dist/components/app-bar/anatomy/root.js +0 -17
- package/dist/components/app-bar/anatomy/toolbar.d.ts +0 -10
- package/dist/components/app-bar/anatomy/toolbar.js +0 -17
- package/dist/components/app-bar/anatomy/trail.d.ts +0 -10
- package/dist/components/app-bar/anatomy/trail.js +0 -17
- package/dist/components/app-bar/index.d.ts +0 -6
- package/dist/components/app-bar/modules/anatomy.d.ts +0 -16
- package/dist/components/app-bar/modules/anatomy.js +0 -17
- package/dist/components/avatar/anatomy/fallback.d.ts +0 -10
- package/dist/components/avatar/anatomy/fallback.js +0 -20
- package/dist/components/avatar/anatomy/image.d.ts +0 -10
- package/dist/components/avatar/anatomy/image.js +0 -17
- package/dist/components/avatar/anatomy/root-context.d.ts +0 -11
- package/dist/components/avatar/anatomy/root-context.js +0 -13
- package/dist/components/avatar/anatomy/root-provider.d.ts +0 -13
- package/dist/components/avatar/anatomy/root-provider.js +0 -21
- package/dist/components/avatar/anatomy/root.d.ts +0 -11
- package/dist/components/avatar/anatomy/root.js +0 -25
- package/dist/components/avatar/index.d.ts +0 -7
- package/dist/components/avatar/modules/anatomy.d.ts +0 -16
- package/dist/components/avatar/modules/anatomy.js +0 -17
- package/dist/components/avatar/modules/provider.d.ts +0 -8
- package/dist/components/avatar/modules/provider.js +0 -15
- package/dist/components/avatar/modules/root-context.js +0 -8
- package/dist/components/collapsible/anatomy/content.d.ts +0 -10
- package/dist/components/collapsible/anatomy/content.js +0 -20
- package/dist/components/collapsible/anatomy/indicator.d.ts +0 -10
- package/dist/components/collapsible/anatomy/indicator.js +0 -20
- package/dist/components/collapsible/anatomy/root-context.d.ts +0 -11
- package/dist/components/collapsible/anatomy/root-context.js +0 -13
- package/dist/components/collapsible/anatomy/root-provider.d.ts +0 -13
- package/dist/components/collapsible/anatomy/root-provider.js +0 -21
- package/dist/components/collapsible/anatomy/root.d.ts +0 -11
- package/dist/components/collapsible/anatomy/root.js +0 -25
- package/dist/components/collapsible/anatomy/trigger.d.ts +0 -10
- package/dist/components/collapsible/anatomy/trigger.js +0 -20
- package/dist/components/collapsible/index.d.ts +0 -8
- package/dist/components/collapsible/modules/anatomy.d.ts +0 -18
- package/dist/components/collapsible/modules/anatomy.js +0 -19
- package/dist/components/collapsible/modules/provider.d.ts +0 -8
- package/dist/components/collapsible/modules/provider.js +0 -15
- package/dist/components/collapsible/modules/root-context.js +0 -8
- package/dist/components/combobox/anatomy/content.d.ts +0 -10
- package/dist/components/combobox/anatomy/content.js +0 -20
- package/dist/components/combobox/anatomy/control.d.ts +0 -10
- package/dist/components/combobox/anatomy/control.js +0 -20
- package/dist/components/combobox/anatomy/input.d.ts +0 -10
- package/dist/components/combobox/anatomy/input.js +0 -17
- package/dist/components/combobox/anatomy/item-group-label.d.ts +0 -11
- package/dist/components/combobox/anatomy/item-group-label.js +0 -26
- package/dist/components/combobox/anatomy/item-group.d.ts +0 -11
- package/dist/components/combobox/anatomy/item-group.js +0 -29
- package/dist/components/combobox/anatomy/item-indicator.d.ts +0 -10
- package/dist/components/combobox/anatomy/item-indicator.js +0 -23
- package/dist/components/combobox/anatomy/item-text.d.ts +0 -10
- package/dist/components/combobox/anatomy/item-text.js +0 -22
- package/dist/components/combobox/anatomy/item.d.ts +0 -11
- package/dist/components/combobox/anatomy/item.js +0 -26
- package/dist/components/combobox/anatomy/label.d.ts +0 -10
- package/dist/components/combobox/anatomy/label.js +0 -20
- package/dist/components/combobox/anatomy/positioner.d.ts +0 -10
- package/dist/components/combobox/anatomy/positioner.js +0 -20
- package/dist/components/combobox/anatomy/root-context.d.ts +0 -11
- package/dist/components/combobox/anatomy/root-context.js +0 -13
- package/dist/components/combobox/anatomy/root-provider.d.ts +0 -13
- package/dist/components/combobox/anatomy/root-provider.js +0 -21
- package/dist/components/combobox/anatomy/root.d.ts +0 -11
- package/dist/components/combobox/anatomy/root.js +0 -25
- package/dist/components/combobox/anatomy/trigger.d.ts +0 -10
- package/dist/components/combobox/anatomy/trigger.js +0 -21
- package/dist/components/combobox/index.d.ts +0 -16
- package/dist/components/combobox/modules/anatomy.d.ts +0 -34
- package/dist/components/combobox/modules/anatomy.js +0 -35
- package/dist/components/combobox/modules/item-context.js +0 -8
- package/dist/components/combobox/modules/item-group-context.js +0 -8
- package/dist/components/combobox/modules/provider.d.ts +0 -8
- package/dist/components/combobox/modules/provider.js +0 -15
- package/dist/components/combobox/modules/root-context.js +0 -8
- package/dist/components/date-picker/anatomy/content.d.ts +0 -10
- package/dist/components/date-picker/anatomy/content.js +0 -20
- package/dist/components/date-picker/anatomy/control.d.ts +0 -10
- package/dist/components/date-picker/anatomy/control.js +0 -20
- package/dist/components/date-picker/anatomy/input.d.ts +0 -11
- package/dist/components/date-picker/anatomy/input.js +0 -19
- package/dist/components/date-picker/anatomy/label.d.ts +0 -10
- package/dist/components/date-picker/anatomy/label.js +0 -20
- package/dist/components/date-picker/anatomy/month-select.d.ts +0 -10
- package/dist/components/date-picker/anatomy/month-select.js +0 -23
- package/dist/components/date-picker/anatomy/next-trigger.d.ts +0 -10
- package/dist/components/date-picker/anatomy/next-trigger.js +0 -23
- package/dist/components/date-picker/anatomy/positioner.d.ts +0 -10
- package/dist/components/date-picker/anatomy/positioner.js +0 -20
- package/dist/components/date-picker/anatomy/preset-trigger.d.ts +0 -11
- package/dist/components/date-picker/anatomy/preset-trigger.js +0 -22
- package/dist/components/date-picker/anatomy/prev-trigger.d.ts +0 -10
- package/dist/components/date-picker/anatomy/prev-trigger.js +0 -23
- package/dist/components/date-picker/anatomy/range-text.d.ts +0 -10
- package/dist/components/date-picker/anatomy/range-text.js +0 -21
- package/dist/components/date-picker/anatomy/root-context.d.ts +0 -11
- package/dist/components/date-picker/anatomy/root-context.js +0 -13
- package/dist/components/date-picker/anatomy/root-provider.d.ts +0 -13
- package/dist/components/date-picker/anatomy/root-provider.js +0 -21
- package/dist/components/date-picker/anatomy/root.d.ts +0 -11
- package/dist/components/date-picker/anatomy/root.js +0 -25
- package/dist/components/date-picker/anatomy/table-body.d.ts +0 -10
- package/dist/components/date-picker/anatomy/table-body.js +0 -22
- package/dist/components/date-picker/anatomy/table-cell-trigger.d.ts +0 -10
- package/dist/components/date-picker/anatomy/table-cell-trigger.js +0 -31
- package/dist/components/date-picker/anatomy/table-cell.d.ts +0 -12
- package/dist/components/date-picker/anatomy/table-cell.js +0 -35
- package/dist/components/date-picker/anatomy/table-head.d.ts +0 -10
- package/dist/components/date-picker/anatomy/table-head.js +0 -22
- package/dist/components/date-picker/anatomy/table-header.d.ts +0 -10
- package/dist/components/date-picker/anatomy/table-header.js +0 -22
- package/dist/components/date-picker/anatomy/table-row.d.ts +0 -10
- package/dist/components/date-picker/anatomy/table-row.js +0 -22
- package/dist/components/date-picker/anatomy/table.d.ts +0 -10
- package/dist/components/date-picker/anatomy/table.js +0 -22
- package/dist/components/date-picker/anatomy/trigger.d.ts +0 -10
- package/dist/components/date-picker/anatomy/trigger.js +0 -21
- package/dist/components/date-picker/anatomy/view-control.d.ts +0 -10
- package/dist/components/date-picker/anatomy/view-control.js +0 -22
- package/dist/components/date-picker/anatomy/view-trigger.d.ts +0 -10
- package/dist/components/date-picker/anatomy/view-trigger.js +0 -22
- package/dist/components/date-picker/anatomy/view.d.ts +0 -11
- package/dist/components/date-picker/anatomy/view.js +0 -26
- package/dist/components/date-picker/anatomy/year-select.d.ts +0 -10
- package/dist/components/date-picker/anatomy/year-select.js +0 -23
- package/dist/components/date-picker/index.d.ts +0 -29
- package/dist/components/date-picker/index.js +0 -5
- package/dist/components/date-picker/modules/anatomy.d.ts +0 -56
- package/dist/components/date-picker/modules/anatomy.js +0 -57
- package/dist/components/date-picker/modules/provider.d.ts +0 -8
- package/dist/components/date-picker/modules/provider.js +0 -15
- package/dist/components/date-picker/modules/root-context.js +0 -8
- package/dist/components/date-picker/modules/table-cell-context.js +0 -8
- package/dist/components/date-picker/modules/view-context.js +0 -8
- package/dist/components/dialog/anatomy/backdrop.d.ts +0 -10
- package/dist/components/dialog/anatomy/backdrop.js +0 -17
- package/dist/components/dialog/anatomy/close-trigger.d.ts +0 -10
- package/dist/components/dialog/anatomy/close-trigger.js +0 -20
- package/dist/components/dialog/anatomy/content.d.ts +0 -10
- package/dist/components/dialog/anatomy/content.js +0 -20
- package/dist/components/dialog/anatomy/description.d.ts +0 -10
- package/dist/components/dialog/anatomy/description.js +0 -20
- package/dist/components/dialog/anatomy/positioner.d.ts +0 -10
- package/dist/components/dialog/anatomy/positioner.js +0 -20
- package/dist/components/dialog/anatomy/root-context.d.ts +0 -11
- package/dist/components/dialog/anatomy/root-context.js +0 -13
- package/dist/components/dialog/anatomy/root-provider.d.ts +0 -12
- package/dist/components/dialog/anatomy/root-provider.js +0 -15
- package/dist/components/dialog/anatomy/root.d.ts +0 -10
- package/dist/components/dialog/anatomy/root.js +0 -20
- package/dist/components/dialog/anatomy/title.d.ts +0 -10
- package/dist/components/dialog/anatomy/title.js +0 -20
- package/dist/components/dialog/anatomy/trigger.d.ts +0 -10
- package/dist/components/dialog/anatomy/trigger.js +0 -20
- package/dist/components/dialog/index.d.ts +0 -12
- package/dist/components/dialog/modules/anatomy.d.ts +0 -26
- package/dist/components/dialog/modules/anatomy.js +0 -27
- package/dist/components/dialog/modules/provider.d.ts +0 -8
- package/dist/components/dialog/modules/provider.js +0 -15
- package/dist/components/dialog/modules/root-context.js +0 -8
- package/dist/components/file-upload/anatomy/dropzone.d.ts +0 -10
- package/dist/components/file-upload/anatomy/dropzone.js +0 -20
- package/dist/components/file-upload/anatomy/hidden-input.d.ts +0 -10
- package/dist/components/file-upload/anatomy/hidden-input.js +0 -17
- package/dist/components/file-upload/anatomy/item-delete-trigger.d.ts +0 -10
- package/dist/components/file-upload/anatomy/item-delete-trigger.js +0 -22
- package/dist/components/file-upload/anatomy/item-group.d.ts +0 -10
- package/dist/components/file-upload/anatomy/item-group.js +0 -20
- package/dist/components/file-upload/anatomy/item-name.d.ts +0 -10
- package/dist/components/file-upload/anatomy/item-name.js +0 -22
- package/dist/components/file-upload/anatomy/item-size-text.d.ts +0 -10
- package/dist/components/file-upload/anatomy/item-size-text.js +0 -22
- package/dist/components/file-upload/anatomy/item.d.ts +0 -11
- package/dist/components/file-upload/anatomy/item.js +0 -26
- package/dist/components/file-upload/anatomy/label.d.ts +0 -10
- package/dist/components/file-upload/anatomy/label.js +0 -20
- package/dist/components/file-upload/anatomy/root-context.d.ts +0 -11
- package/dist/components/file-upload/anatomy/root-context.js +0 -13
- package/dist/components/file-upload/anatomy/root-provider.d.ts +0 -13
- package/dist/components/file-upload/anatomy/root-provider.js +0 -21
- package/dist/components/file-upload/anatomy/root.d.ts +0 -11
- package/dist/components/file-upload/anatomy/root.js +0 -25
- package/dist/components/file-upload/anatomy/trigger.d.ts +0 -10
- package/dist/components/file-upload/anatomy/trigger.js +0 -20
- package/dist/components/file-upload/index.d.ts +0 -14
- package/dist/components/file-upload/modules/anatomy.d.ts +0 -30
- package/dist/components/file-upload/modules/anatomy.js +0 -31
- package/dist/components/file-upload/modules/item-context.js +0 -8
- package/dist/components/file-upload/modules/provider.d.ts +0 -8
- package/dist/components/file-upload/modules/provider.js +0 -15
- package/dist/components/file-upload/modules/root-context.js +0 -8
- package/dist/components/listbox/anatomy/content.d.ts +0 -10
- package/dist/components/listbox/anatomy/content.js +0 -20
- package/dist/components/listbox/anatomy/input.d.ts +0 -10
- package/dist/components/listbox/anatomy/input.js +0 -17
- package/dist/components/listbox/anatomy/item-group-label.d.ts +0 -11
- package/dist/components/listbox/anatomy/item-group-label.js +0 -26
- package/dist/components/listbox/anatomy/item-group.d.ts +0 -11
- package/dist/components/listbox/anatomy/item-group.js +0 -29
- package/dist/components/listbox/anatomy/item-indicator.d.ts +0 -10
- package/dist/components/listbox/anatomy/item-indicator.js +0 -23
- package/dist/components/listbox/anatomy/item-text.d.ts +0 -10
- package/dist/components/listbox/anatomy/item-text.js +0 -22
- package/dist/components/listbox/anatomy/item.d.ts +0 -11
- package/dist/components/listbox/anatomy/item.js +0 -26
- package/dist/components/listbox/anatomy/label.d.ts +0 -10
- package/dist/components/listbox/anatomy/label.js +0 -20
- package/dist/components/listbox/anatomy/root-context.d.ts +0 -11
- package/dist/components/listbox/anatomy/root-context.js +0 -13
- package/dist/components/listbox/anatomy/root-provider.d.ts +0 -13
- package/dist/components/listbox/anatomy/root-provider.js +0 -21
- package/dist/components/listbox/anatomy/root.d.ts +0 -11
- package/dist/components/listbox/anatomy/root.js +0 -25
- package/dist/components/listbox/index.d.ts +0 -13
- package/dist/components/listbox/modules/anatomy.d.ts +0 -28
- package/dist/components/listbox/modules/anatomy.js +0 -29
- package/dist/components/listbox/modules/item-context.js +0 -8
- package/dist/components/listbox/modules/item-group-context.js +0 -8
- package/dist/components/listbox/modules/provider.d.ts +0 -8
- package/dist/components/listbox/modules/provider.js +0 -15
- package/dist/components/listbox/modules/root-context.js +0 -8
- package/dist/components/navigation/anatomy/content.d.ts +0 -10
- package/dist/components/navigation/anatomy/content.js +0 -23
- package/dist/components/navigation/anatomy/footer.d.ts +0 -10
- package/dist/components/navigation/anatomy/footer.js +0 -23
- package/dist/components/navigation/anatomy/group.d.ts +0 -10
- package/dist/components/navigation/anatomy/group.js +0 -23
- package/dist/components/navigation/anatomy/header.d.ts +0 -10
- package/dist/components/navigation/anatomy/header.js +0 -23
- package/dist/components/navigation/anatomy/label.d.ts +0 -10
- package/dist/components/navigation/anatomy/label.js +0 -23
- package/dist/components/navigation/anatomy/menu.d.ts +0 -10
- package/dist/components/navigation/anatomy/menu.js +0 -23
- package/dist/components/navigation/anatomy/root.d.ts +0 -17
- package/dist/components/navigation/anatomy/root.js +0 -24
- package/dist/components/navigation/index.d.ts +0 -8
- package/dist/components/navigation/modules/anatomy.d.ts +0 -20
- package/dist/components/navigation/modules/anatomy.js +0 -21
- package/dist/components/navigation/modules/root-context.js +0 -8
- package/dist/components/pagination/anatomy/ellipsis.d.ts +0 -11
- package/dist/components/pagination/anatomy/ellipsis.js +0 -22
- package/dist/components/pagination/anatomy/first-trigger.d.ts +0 -10
- package/dist/components/pagination/anatomy/first-trigger.js +0 -23
- package/dist/components/pagination/anatomy/item.d.ts +0 -11
- package/dist/components/pagination/anatomy/item.js +0 -22
- package/dist/components/pagination/anatomy/last-trigger.d.ts +0 -10
- package/dist/components/pagination/anatomy/last-trigger.js +0 -23
- package/dist/components/pagination/anatomy/next-trigger.d.ts +0 -10
- package/dist/components/pagination/anatomy/next-trigger.js +0 -20
- package/dist/components/pagination/anatomy/prev-trigger.d.ts +0 -10
- package/dist/components/pagination/anatomy/prev-trigger.js +0 -20
- package/dist/components/pagination/anatomy/root-context.d.ts +0 -11
- package/dist/components/pagination/anatomy/root-context.js +0 -13
- package/dist/components/pagination/anatomy/root-provider.d.ts +0 -13
- package/dist/components/pagination/anatomy/root-provider.js +0 -21
- package/dist/components/pagination/anatomy/root.d.ts +0 -11
- package/dist/components/pagination/anatomy/root.js +0 -25
- package/dist/components/pagination/index.d.ts +0 -11
- package/dist/components/pagination/modules/anatomy.d.ts +0 -24
- package/dist/components/pagination/modules/anatomy.js +0 -25
- package/dist/components/pagination/modules/provider.d.ts +0 -8
- package/dist/components/pagination/modules/provider.js +0 -15
- package/dist/components/pagination/modules/root-context.js +0 -8
- package/dist/components/popover/anatomy/arrow-tip.d.ts +0 -10
- package/dist/components/popover/anatomy/arrow-tip.js +0 -20
- package/dist/components/popover/anatomy/arrow.d.ts +0 -10
- package/dist/components/popover/anatomy/arrow.js +0 -20
- package/dist/components/popover/anatomy/close-trigger.d.ts +0 -10
- package/dist/components/popover/anatomy/close-trigger.js +0 -20
- package/dist/components/popover/anatomy/content.d.ts +0 -10
- package/dist/components/popover/anatomy/content.js +0 -20
- package/dist/components/popover/anatomy/description.d.ts +0 -10
- package/dist/components/popover/anatomy/description.js +0 -20
- package/dist/components/popover/anatomy/positioner.d.ts +0 -10
- package/dist/components/popover/anatomy/positioner.js +0 -20
- package/dist/components/popover/anatomy/root-context.d.ts +0 -11
- package/dist/components/popover/anatomy/root-context.js +0 -13
- package/dist/components/popover/anatomy/root-provider.d.ts +0 -12
- package/dist/components/popover/anatomy/root-provider.js +0 -15
- package/dist/components/popover/anatomy/root.d.ts +0 -10
- package/dist/components/popover/anatomy/root.js +0 -20
- package/dist/components/popover/anatomy/title.d.ts +0 -10
- package/dist/components/popover/anatomy/title.js +0 -20
- package/dist/components/popover/anatomy/trigger.d.ts +0 -11
- package/dist/components/popover/anatomy/trigger.js +0 -20
- package/dist/components/popover/index.d.ts +0 -13
- package/dist/components/popover/modules/anatomy.d.ts +0 -28
- package/dist/components/popover/modules/anatomy.js +0 -29
- package/dist/components/popover/modules/provider.d.ts +0 -8
- package/dist/components/popover/modules/provider.js +0 -15
- package/dist/components/popover/modules/root-context.js +0 -8
- package/dist/components/portal/anatomy/root.d.ts +0 -22
- package/dist/components/portal/anatomy/root.js +0 -14
- package/dist/components/portal/index.d.ts +0 -2
- package/dist/components/portal/modules/anatomy.d.ts +0 -7
- package/dist/components/portal/modules/anatomy.js +0 -8
- package/dist/components/progress/anatomy/circle-range.d.ts +0 -10
- package/dist/components/progress/anatomy/circle-range.js +0 -20
- package/dist/components/progress/anatomy/circle-track.d.ts +0 -10
- package/dist/components/progress/anatomy/circle-track.js +0 -17
- package/dist/components/progress/anatomy/circle.d.ts +0 -10
- package/dist/components/progress/anatomy/circle.js +0 -26
- package/dist/components/progress/anatomy/label.d.ts +0 -10
- package/dist/components/progress/anatomy/label.js +0 -20
- package/dist/components/progress/anatomy/range.d.ts +0 -10
- package/dist/components/progress/anatomy/range.js +0 -17
- package/dist/components/progress/anatomy/root-context.d.ts +0 -11
- package/dist/components/progress/anatomy/root-context.js +0 -13
- package/dist/components/progress/anatomy/root-provider.d.ts +0 -13
- package/dist/components/progress/anatomy/root-provider.js +0 -21
- package/dist/components/progress/anatomy/root.d.ts +0 -11
- package/dist/components/progress/anatomy/root.js +0 -25
- package/dist/components/progress/anatomy/track.d.ts +0 -10
- package/dist/components/progress/anatomy/track.js +0 -20
- package/dist/components/progress/anatomy/value-text.d.ts +0 -10
- package/dist/components/progress/anatomy/value-text.js +0 -20
- package/dist/components/progress/index.d.ts +0 -12
- package/dist/components/progress/modules/anatomy.d.ts +0 -26
- package/dist/components/progress/modules/anatomy.js +0 -27
- package/dist/components/progress/modules/provider.d.ts +0 -8
- package/dist/components/progress/modules/provider.js +0 -15
- package/dist/components/progress/modules/root-context.js +0 -8
- package/dist/components/rating-group/anatomy/control.d.ts +0 -10
- package/dist/components/rating-group/anatomy/control.js +0 -20
- package/dist/components/rating-group/anatomy/hidden-input.d.ts +0 -10
- package/dist/components/rating-group/anatomy/hidden-input.js +0 -17
- package/dist/components/rating-group/anatomy/item.d.ts +0 -31
- package/dist/components/rating-group/anatomy/item.js +0 -26
- package/dist/components/rating-group/anatomy/label.d.ts +0 -10
- package/dist/components/rating-group/anatomy/label.js +0 -20
- package/dist/components/rating-group/anatomy/root-context.d.ts +0 -11
- package/dist/components/rating-group/anatomy/root-context.js +0 -13
- package/dist/components/rating-group/anatomy/root-provider.d.ts +0 -13
- package/dist/components/rating-group/anatomy/root-provider.js +0 -21
- package/dist/components/rating-group/anatomy/root.d.ts +0 -11
- package/dist/components/rating-group/anatomy/root.js +0 -25
- package/dist/components/rating-group/index.d.ts +0 -9
- package/dist/components/rating-group/modules/anatomy.d.ts +0 -20
- package/dist/components/rating-group/modules/anatomy.js +0 -21
- package/dist/components/rating-group/modules/provider.d.ts +0 -8
- package/dist/components/rating-group/modules/provider.js +0 -15
- package/dist/components/rating-group/modules/root-context.js +0 -8
- package/dist/components/segmented-control/anatomy/control.d.ts +0 -10
- package/dist/components/segmented-control/anatomy/control.js +0 -17
- package/dist/components/segmented-control/anatomy/indicator.d.ts +0 -10
- package/dist/components/segmented-control/anatomy/indicator.js +0 -17
- package/dist/components/segmented-control/anatomy/item-hidden-input.d.ts +0 -10
- package/dist/components/segmented-control/anatomy/item-hidden-input.js +0 -19
- package/dist/components/segmented-control/anatomy/item-text.d.ts +0 -10
- package/dist/components/segmented-control/anatomy/item-text.js +0 -22
- package/dist/components/segmented-control/anatomy/item.d.ts +0 -11
- package/dist/components/segmented-control/anatomy/item.js +0 -26
- package/dist/components/segmented-control/anatomy/label.d.ts +0 -10
- package/dist/components/segmented-control/anatomy/label.js +0 -20
- package/dist/components/segmented-control/anatomy/root-context.d.ts +0 -11
- package/dist/components/segmented-control/anatomy/root-context.js +0 -13
- package/dist/components/segmented-control/anatomy/root-provider.d.ts +0 -13
- package/dist/components/segmented-control/anatomy/root-provider.js +0 -21
- package/dist/components/segmented-control/anatomy/root.d.ts +0 -11
- package/dist/components/segmented-control/anatomy/root.js +0 -25
- package/dist/components/segmented-control/index.d.ts +0 -11
- package/dist/components/segmented-control/modules/anatomy.d.ts +0 -24
- package/dist/components/segmented-control/modules/anatomy.js +0 -25
- package/dist/components/segmented-control/modules/item-context.js +0 -8
- package/dist/components/segmented-control/modules/provider.d.ts +0 -8
- package/dist/components/segmented-control/modules/provider.js +0 -16
- package/dist/components/segmented-control/modules/root-context.js +0 -8
- package/dist/components/slider/anatomy/control.d.ts +0 -10
- package/dist/components/slider/anatomy/control.js +0 -20
- package/dist/components/slider/anatomy/hidden-input.d.ts +0 -10
- package/dist/components/slider/anatomy/hidden-input.js +0 -19
- package/dist/components/slider/anatomy/label.d.ts +0 -10
- package/dist/components/slider/anatomy/label.js +0 -20
- package/dist/components/slider/anatomy/marker-group.d.ts +0 -10
- package/dist/components/slider/anatomy/marker-group.js +0 -20
- package/dist/components/slider/anatomy/marker.d.ts +0 -11
- package/dist/components/slider/anatomy/marker.js +0 -20
- package/dist/components/slider/anatomy/range.d.ts +0 -10
- package/dist/components/slider/anatomy/range.js +0 -20
- package/dist/components/slider/anatomy/root-context.d.ts +0 -11
- package/dist/components/slider/anatomy/root-context.js +0 -13
- package/dist/components/slider/anatomy/root-provider.d.ts +0 -13
- package/dist/components/slider/anatomy/root-provider.js +0 -21
- package/dist/components/slider/anatomy/root.d.ts +0 -11
- package/dist/components/slider/anatomy/root.js +0 -25
- package/dist/components/slider/anatomy/thumb.d.ts +0 -11
- package/dist/components/slider/anatomy/thumb.js +0 -26
- package/dist/components/slider/anatomy/track.d.ts +0 -10
- package/dist/components/slider/anatomy/track.js +0 -20
- package/dist/components/slider/anatomy/value-text.d.ts +0 -10
- package/dist/components/slider/anatomy/value-text.js +0 -20
- package/dist/components/slider/index.d.ts +0 -14
- package/dist/components/slider/modules/anatomy.d.ts +0 -30
- package/dist/components/slider/modules/anatomy.js +0 -31
- package/dist/components/slider/modules/provider.d.ts +0 -8
- package/dist/components/slider/modules/provider.js +0 -15
- package/dist/components/slider/modules/root-context.js +0 -8
- package/dist/components/slider/modules/thumb-context.js +0 -8
- package/dist/components/switch/anatomy/control.d.ts +0 -10
- package/dist/components/switch/anatomy/control.js +0 -20
- package/dist/components/switch/anatomy/hidden-input.d.ts +0 -10
- package/dist/components/switch/anatomy/hidden-input.js +0 -17
- package/dist/components/switch/anatomy/label.d.ts +0 -10
- package/dist/components/switch/anatomy/label.js +0 -20
- package/dist/components/switch/anatomy/root-context.d.ts +0 -11
- package/dist/components/switch/anatomy/root-context.js +0 -13
- package/dist/components/switch/anatomy/root-provider.d.ts +0 -13
- package/dist/components/switch/anatomy/root-provider.js +0 -21
- package/dist/components/switch/anatomy/root.d.ts +0 -11
- package/dist/components/switch/anatomy/root.js +0 -25
- package/dist/components/switch/anatomy/thumb.d.ts +0 -10
- package/dist/components/switch/anatomy/thumb.js +0 -20
- package/dist/components/switch/index.d.ts +0 -9
- package/dist/components/switch/modules/anatomy.d.ts +0 -20
- package/dist/components/switch/modules/anatomy.js +0 -21
- package/dist/components/switch/modules/provider.d.ts +0 -8
- package/dist/components/switch/modules/provider.js +0 -15
- package/dist/components/switch/modules/root-context.js +0 -8
- package/dist/components/tabs/anatomy/content.d.ts +0 -11
- package/dist/components/tabs/anatomy/content.js +0 -22
- package/dist/components/tabs/anatomy/indicator.d.ts +0 -10
- package/dist/components/tabs/anatomy/indicator.js +0 -17
- package/dist/components/tabs/anatomy/list.d.ts +0 -10
- package/dist/components/tabs/anatomy/list.js +0 -20
- package/dist/components/tabs/anatomy/root-context.d.ts +0 -11
- package/dist/components/tabs/anatomy/root-context.js +0 -13
- package/dist/components/tabs/anatomy/root-provider.d.ts +0 -13
- package/dist/components/tabs/anatomy/root-provider.js +0 -21
- package/dist/components/tabs/anatomy/root.d.ts +0 -11
- package/dist/components/tabs/anatomy/root.js +0 -25
- package/dist/components/tabs/anatomy/trigger.d.ts +0 -11
- package/dist/components/tabs/anatomy/trigger.js +0 -22
- package/dist/components/tabs/index.d.ts +0 -9
- package/dist/components/tabs/modules/anatomy.d.ts +0 -20
- package/dist/components/tabs/modules/anatomy.js +0 -21
- package/dist/components/tabs/modules/provider.d.ts +0 -8
- package/dist/components/tabs/modules/provider.js +0 -15
- package/dist/components/tabs/modules/root-context.js +0 -8
- package/dist/components/tags-input/anatomy/clear-trigger.d.ts +0 -10
- package/dist/components/tags-input/anatomy/clear-trigger.js +0 -20
- package/dist/components/tags-input/anatomy/control.d.ts +0 -10
- package/dist/components/tags-input/anatomy/control.js +0 -20
- package/dist/components/tags-input/anatomy/hidden-input.d.ts +0 -10
- package/dist/components/tags-input/anatomy/hidden-input.js +0 -17
- package/dist/components/tags-input/anatomy/input.d.ts +0 -10
- package/dist/components/tags-input/anatomy/input.js +0 -17
- package/dist/components/tags-input/anatomy/item-delete-trigger.d.ts +0 -10
- package/dist/components/tags-input/anatomy/item-delete-trigger.js +0 -22
- package/dist/components/tags-input/anatomy/item-input.d.ts +0 -10
- package/dist/components/tags-input/anatomy/item-input.js +0 -19
- package/dist/components/tags-input/anatomy/item-preview.d.ts +0 -10
- package/dist/components/tags-input/anatomy/item-preview.js +0 -22
- package/dist/components/tags-input/anatomy/item-text.d.ts +0 -10
- package/dist/components/tags-input/anatomy/item-text.js +0 -22
- package/dist/components/tags-input/anatomy/item.d.ts +0 -11
- package/dist/components/tags-input/anatomy/item.js +0 -26
- package/dist/components/tags-input/anatomy/label.d.ts +0 -10
- package/dist/components/tags-input/anatomy/label.js +0 -20
- package/dist/components/tags-input/anatomy/root-context.d.ts +0 -11
- package/dist/components/tags-input/anatomy/root-context.js +0 -13
- package/dist/components/tags-input/anatomy/root-provider.d.ts +0 -13
- package/dist/components/tags-input/anatomy/root-provider.js +0 -21
- package/dist/components/tags-input/anatomy/root.d.ts +0 -11
- package/dist/components/tags-input/anatomy/root.js +0 -25
- package/dist/components/tags-input/index.d.ts +0 -15
- package/dist/components/tags-input/modules/anatomy.d.ts +0 -32
- package/dist/components/tags-input/modules/anatomy.js +0 -33
- package/dist/components/tags-input/modules/item-context.js +0 -8
- package/dist/components/tags-input/modules/provider.d.ts +0 -8
- package/dist/components/tags-input/modules/provider.js +0 -15
- package/dist/components/tags-input/modules/root-context.js +0 -8
- package/dist/components/toast/anatomy/action-trigger.d.ts +0 -10
- package/dist/components/toast/anatomy/action-trigger.js +0 -20
- package/dist/components/toast/anatomy/close-trigger.d.ts +0 -10
- package/dist/components/toast/anatomy/close-trigger.js +0 -21
- package/dist/components/toast/anatomy/description.d.ts +0 -10
- package/dist/components/toast/anatomy/description.js +0 -20
- package/dist/components/toast/anatomy/group.d.ts +0 -15
- package/dist/components/toast/anatomy/group.js +0 -28
- package/dist/components/toast/anatomy/message.d.ts +0 -10
- package/dist/components/toast/anatomy/message.js +0 -17
- package/dist/components/toast/anatomy/root-context.d.ts +0 -12
- package/dist/components/toast/anatomy/root-context.js +0 -13
- package/dist/components/toast/anatomy/root.d.ts +0 -13
- package/dist/components/toast/anatomy/root.js +0 -56
- package/dist/components/toast/anatomy/title.d.ts +0 -10
- package/dist/components/toast/anatomy/title.js +0 -20
- package/dist/components/toast/index.d.ts +0 -11
- package/dist/components/toast/index.js +0 -4
- package/dist/components/toast/modules/anatomy.d.ts +0 -22
- package/dist/components/toast/modules/anatomy.js +0 -23
- package/dist/components/toast/modules/group-context.js +0 -8
- package/dist/components/toast/modules/root-context.js +0 -8
- package/dist/components/toggle-group/anatomy/item.d.ts +0 -11
- package/dist/components/toggle-group/anatomy/item.js +0 -22
- package/dist/components/toggle-group/anatomy/root-context.d.ts +0 -11
- package/dist/components/toggle-group/anatomy/root-context.js +0 -13
- package/dist/components/toggle-group/anatomy/root-provider.d.ts +0 -13
- package/dist/components/toggle-group/anatomy/root-provider.js +0 -21
- package/dist/components/toggle-group/anatomy/root.d.ts +0 -11
- package/dist/components/toggle-group/anatomy/root.js +0 -25
- package/dist/components/toggle-group/index.d.ts +0 -6
- package/dist/components/toggle-group/modules/anatomy.d.ts +0 -14
- package/dist/components/toggle-group/modules/anatomy.js +0 -15
- package/dist/components/toggle-group/modules/provider.d.ts +0 -8
- package/dist/components/toggle-group/modules/provider.js +0 -15
- package/dist/components/toggle-group/modules/root-context.js +0 -8
- package/dist/components/tooltip/anatomy/arrow-tip.d.ts +0 -10
- package/dist/components/tooltip/anatomy/arrow-tip.js +0 -20
- package/dist/components/tooltip/anatomy/arrow.d.ts +0 -10
- package/dist/components/tooltip/anatomy/arrow.js +0 -20
- package/dist/components/tooltip/anatomy/content.d.ts +0 -10
- package/dist/components/tooltip/anatomy/content.js +0 -20
- package/dist/components/tooltip/anatomy/positioner.d.ts +0 -10
- package/dist/components/tooltip/anatomy/positioner.js +0 -20
- package/dist/components/tooltip/anatomy/root-context.d.ts +0 -11
- package/dist/components/tooltip/anatomy/root-context.js +0 -13
- package/dist/components/tooltip/anatomy/root-provider.d.ts +0 -12
- package/dist/components/tooltip/anatomy/root-provider.js +0 -15
- package/dist/components/tooltip/anatomy/root.d.ts +0 -10
- package/dist/components/tooltip/anatomy/root.js +0 -19
- package/dist/components/tooltip/anatomy/trigger.d.ts +0 -10
- package/dist/components/tooltip/anatomy/trigger.js +0 -20
- package/dist/components/tooltip/index.d.ts +0 -10
- package/dist/components/tooltip/modules/anatomy.d.ts +0 -22
- package/dist/components/tooltip/modules/anatomy.js +0 -23
- package/dist/components/tooltip/modules/provider.d.ts +0 -8
- package/dist/components/tooltip/modules/provider.js +0 -15
- package/dist/components/tooltip/modules/root-context.js +0 -8
- package/dist/components/tree-view/anatomy/branch-content.d.ts +0 -10
- package/dist/components/tree-view/anatomy/branch-content.js +0 -22
- package/dist/components/tree-view/anatomy/branch-control.d.ts +0 -10
- package/dist/components/tree-view/anatomy/branch-control.js +0 -22
- package/dist/components/tree-view/anatomy/branch-indent-guide.d.ts +0 -10
- package/dist/components/tree-view/anatomy/branch-indent-guide.js +0 -22
- package/dist/components/tree-view/anatomy/branch-indicator.d.ts +0 -10
- package/dist/components/tree-view/anatomy/branch-indicator.js +0 -23
- package/dist/components/tree-view/anatomy/branch-text.d.ts +0 -10
- package/dist/components/tree-view/anatomy/branch-text.js +0 -22
- package/dist/components/tree-view/anatomy/branch.d.ts +0 -10
- package/dist/components/tree-view/anatomy/branch.js +0 -22
- package/dist/components/tree-view/anatomy/item.d.ts +0 -10
- package/dist/components/tree-view/anatomy/item.js +0 -22
- package/dist/components/tree-view/anatomy/label.d.ts +0 -17
- package/dist/components/tree-view/anatomy/label.js +0 -21
- package/dist/components/tree-view/anatomy/node-provider.d.ts +0 -12
- package/dist/components/tree-view/anatomy/node-provider.js +0 -15
- package/dist/components/tree-view/anatomy/root-context.d.ts +0 -11
- package/dist/components/tree-view/anatomy/root-context.js +0 -13
- package/dist/components/tree-view/anatomy/root-provider.d.ts +0 -13
- package/dist/components/tree-view/anatomy/root-provider.js +0 -21
- package/dist/components/tree-view/anatomy/root.d.ts +0 -11
- package/dist/components/tree-view/anatomy/root.js +0 -25
- package/dist/components/tree-view/anatomy/tree.d.ts +0 -10
- package/dist/components/tree-view/anatomy/tree.js +0 -20
- package/dist/components/tree-view/index.d.ts +0 -17
- package/dist/components/tree-view/index.js +0 -5
- package/dist/components/tree-view/modules/anatomy.d.ts +0 -32
- package/dist/components/tree-view/modules/anatomy.js +0 -33
- package/dist/components/tree-view/modules/node-context.js +0 -8
- package/dist/components/tree-view/modules/provider.d.ts +0 -8
- package/dist/components/tree-view/modules/provider.js +0 -15
- package/dist/components/tree-view/modules/root-context.js +0 -8
- package/dist/hooks/use-list-collection.d.ts +0 -7
- package/dist/hooks/use-list-collection.js +0 -10
- package/dist/index.d.ts +0 -291
- package/dist/index.js +0 -50
- package/dist/internal/components/calendar.js +0 -36
- package/dist/internal/components/check.js +0 -25
- package/dist/internal/components/chevron-down.js +0 -25
- package/dist/internal/components/chevron-left.js +0 -25
- package/dist/internal/components/chevron-right.js +0 -25
- package/dist/internal/components/star-empty.js +0 -27
- package/dist/internal/components/star-full.js +0 -25
- package/dist/internal/components/star-half.js +0 -41
- package/dist/internal/components/x.js +0 -25
- package/dist/internal/create-context.js +0 -10
- package/dist/internal/html-attributes.d.ts +0 -9
- package/dist/internal/props-with-element.d.ts +0 -13
- package/dist/internal/union.d.ts +0 -5
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { RootContext } from "../modules/root-context.js";
|
|
2
|
-
import { useTreeView } from "../modules/provider.js";
|
|
3
|
-
import { mergeProps } from "@zag-js/react";
|
|
4
|
-
import { classesTreeView } from "@skeletonlabs/skeleton-common";
|
|
5
|
-
import { jsx } from "react/jsx-runtime";
|
|
6
|
-
import { splitProps } from "@zag-js/tree-view";
|
|
7
|
-
|
|
8
|
-
//#region src/components/tree-view/anatomy/root.tsx
|
|
9
|
-
function Root(props) {
|
|
10
|
-
const [treeViewProps, componentProps] = splitProps(props);
|
|
11
|
-
const { element, children,...rest } = componentProps;
|
|
12
|
-
const treeView = useTreeView(treeViewProps);
|
|
13
|
-
const attributes = mergeProps(treeView.getRootProps(), { className: classesTreeView.root }, rest);
|
|
14
|
-
return /* @__PURE__ */ jsx(RootContext.Provider, {
|
|
15
|
-
value: treeView,
|
|
16
|
-
children: element ? element(attributes) : /* @__PURE__ */ jsx("div", {
|
|
17
|
-
...attributes,
|
|
18
|
-
children
|
|
19
|
-
})
|
|
20
|
-
});
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
//#endregion
|
|
24
|
-
export { Root as default };
|
|
25
|
-
//# sourceMappingURL=root.js.map
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { HTMLAttributes } from "../../../internal/html-attributes.js";
|
|
2
|
-
import { PropsWithElement } from "../../../internal/props-with-element.js";
|
|
3
|
-
import * as react37 from "react";
|
|
4
|
-
|
|
5
|
-
//#region src/components/tree-view/anatomy/tree.d.ts
|
|
6
|
-
interface TreeViewTreeProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
7
|
-
declare function Tree(props: TreeViewTreeProps): react37.JSX.Element;
|
|
8
|
-
//#endregion
|
|
9
|
-
export { Tree, TreeViewTreeProps };
|
|
10
|
-
//# sourceMappingURL=tree.d.ts.map
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { RootContext } from "../modules/root-context.js";
|
|
2
|
-
import { use } from "react";
|
|
3
|
-
import { mergeProps } from "@zag-js/react";
|
|
4
|
-
import { classesTreeView } from "@skeletonlabs/skeleton-common";
|
|
5
|
-
import { jsx } from "react/jsx-runtime";
|
|
6
|
-
|
|
7
|
-
//#region src/components/tree-view/anatomy/tree.tsx
|
|
8
|
-
function Tree(props) {
|
|
9
|
-
const treeView = use(RootContext);
|
|
10
|
-
const { element, children,...rest } = props;
|
|
11
|
-
const attributes = mergeProps(treeView.getTreeProps(), { className: classesTreeView.tree }, rest);
|
|
12
|
-
return element ? element(attributes) : /* @__PURE__ */ jsx("div", {
|
|
13
|
-
...attributes,
|
|
14
|
-
children
|
|
15
|
-
});
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
//#endregion
|
|
19
|
-
export { Tree as default };
|
|
20
|
-
//# sourceMappingURL=tree.js.map
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { TreeViewBranchContentProps } from "./anatomy/branch-content.js";
|
|
2
|
-
import { TreeViewBranchControlProps } from "./anatomy/branch-control.js";
|
|
3
|
-
import { TreeViewBranchIndentGuideProps } from "./anatomy/branch-indent-guide.js";
|
|
4
|
-
import { TreeViewBranchIndicatorProps } from "./anatomy/branch-indicator.js";
|
|
5
|
-
import { TreeViewBranchTextProps } from "./anatomy/branch-text.js";
|
|
6
|
-
import { TreeViewBranchProps } from "./anatomy/branch.js";
|
|
7
|
-
import { TreeViewItemProps } from "./anatomy/item.js";
|
|
8
|
-
import { TreeViewLabelProps } from "./anatomy/label.js";
|
|
9
|
-
import { TreeViewNodeProviderProps } from "./anatomy/node-provider.js";
|
|
10
|
-
import { useTreeView } from "./modules/provider.js";
|
|
11
|
-
import { TreeViewRootContextProps } from "./anatomy/root-context.js";
|
|
12
|
-
import { TreeViewRootProviderProps } from "./anatomy/root-provider.js";
|
|
13
|
-
import { TreeViewRootProps } from "./anatomy/root.js";
|
|
14
|
-
import { TreeViewTreeProps } from "./anatomy/tree.js";
|
|
15
|
-
import { TreeView } from "./modules/anatomy.js";
|
|
16
|
-
import { collection as createTreeViewCollection } from "@zag-js/tree-view";
|
|
17
|
-
export { createTreeViewCollection };
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { BranchContent } from "../anatomy/branch-content.js";
|
|
2
|
-
import { BranchControl } from "../anatomy/branch-control.js";
|
|
3
|
-
import { BranchIndentGuide } from "../anatomy/branch-indent-guide.js";
|
|
4
|
-
import { BranchIndicator } from "../anatomy/branch-indicator.js";
|
|
5
|
-
import { BranchText } from "../anatomy/branch-text.js";
|
|
6
|
-
import { Branch } from "../anatomy/branch.js";
|
|
7
|
-
import { Item } from "../anatomy/item.js";
|
|
8
|
-
import { Label } from "../anatomy/label.js";
|
|
9
|
-
import { NodeProvider } from "../anatomy/node-provider.js";
|
|
10
|
-
import { RootContext } from "../anatomy/root-context.js";
|
|
11
|
-
import { RootProvider } from "../anatomy/root-provider.js";
|
|
12
|
-
import { Root } from "../anatomy/root.js";
|
|
13
|
-
import { Tree } from "../anatomy/tree.js";
|
|
14
|
-
|
|
15
|
-
//#region src/components/tree-view/modules/anatomy.d.ts
|
|
16
|
-
declare const TreeView: typeof Root & {
|
|
17
|
-
Provider: typeof RootProvider;
|
|
18
|
-
Context: typeof RootContext;
|
|
19
|
-
Tree: typeof Tree;
|
|
20
|
-
Label: typeof Label;
|
|
21
|
-
NodeProvider: typeof NodeProvider;
|
|
22
|
-
Branch: typeof Branch;
|
|
23
|
-
BranchControl: typeof BranchControl;
|
|
24
|
-
BranchText: typeof BranchText;
|
|
25
|
-
BranchIndicator: typeof BranchIndicator;
|
|
26
|
-
BranchContent: typeof BranchContent;
|
|
27
|
-
BranchIndentGuide: typeof BranchIndentGuide;
|
|
28
|
-
Item: typeof Item;
|
|
29
|
-
};
|
|
30
|
-
//#endregion
|
|
31
|
-
export { TreeView };
|
|
32
|
-
//# sourceMappingURL=anatomy.d.ts.map
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import BranchContent from "../anatomy/branch-content.js";
|
|
2
|
-
import BranchControl from "../anatomy/branch-control.js";
|
|
3
|
-
import BranchIndentGuide from "../anatomy/branch-indent-guide.js";
|
|
4
|
-
import BranchIndicator from "../anatomy/branch-indicator.js";
|
|
5
|
-
import BranchText from "../anatomy/branch-text.js";
|
|
6
|
-
import Branch from "../anatomy/branch.js";
|
|
7
|
-
import Item from "../anatomy/item.js";
|
|
8
|
-
import Label from "../anatomy/label.js";
|
|
9
|
-
import NodeProvider from "../anatomy/node-provider.js";
|
|
10
|
-
import RootContext from "../anatomy/root-context.js";
|
|
11
|
-
import RootProvider from "../anatomy/root-provider.js";
|
|
12
|
-
import Root from "../anatomy/root.js";
|
|
13
|
-
import Tree from "../anatomy/tree.js";
|
|
14
|
-
|
|
15
|
-
//#region src/components/tree-view/modules/anatomy.ts
|
|
16
|
-
const TreeView = Object.assign(Root, {
|
|
17
|
-
Provider: RootProvider,
|
|
18
|
-
Context: RootContext,
|
|
19
|
-
Tree,
|
|
20
|
-
Label,
|
|
21
|
-
NodeProvider,
|
|
22
|
-
Branch,
|
|
23
|
-
BranchControl,
|
|
24
|
-
BranchText,
|
|
25
|
-
BranchIndicator,
|
|
26
|
-
BranchContent,
|
|
27
|
-
BranchIndentGuide,
|
|
28
|
-
Item
|
|
29
|
-
});
|
|
30
|
-
|
|
31
|
-
//#endregion
|
|
32
|
-
export { TreeView };
|
|
33
|
-
//# sourceMappingURL=anatomy.js.map
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { PropTypes } from "@zag-js/react";
|
|
2
|
-
import { Api, Props, TreeNode } from "@zag-js/tree-view";
|
|
3
|
-
|
|
4
|
-
//#region src/components/tree-view/modules/provider.d.ts
|
|
5
|
-
declare function useTreeView<T extends TreeNode = TreeNode>(props?: Omit<Props<T>, 'id'>): Api<PropTypes>;
|
|
6
|
-
//#endregion
|
|
7
|
-
export { useTreeView };
|
|
8
|
-
//# sourceMappingURL=provider.d.ts.map
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { useId } from "react";
|
|
2
|
-
import { normalizeProps, useMachine } from "@zag-js/react";
|
|
3
|
-
import { connect, machine } from "@zag-js/tree-view";
|
|
4
|
-
|
|
5
|
-
//#region src/components/tree-view/modules/provider.ts
|
|
6
|
-
function useTreeView(props = {}) {
|
|
7
|
-
return connect(useMachine(machine, {
|
|
8
|
-
id: useId(),
|
|
9
|
-
...props
|
|
10
|
-
}), normalizeProps);
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
//#endregion
|
|
14
|
-
export { useTreeView };
|
|
15
|
-
//# sourceMappingURL=provider.js.map
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { CollectionItem, CollectionOptions, ListCollection } from "@zag-js/collection";
|
|
2
|
-
|
|
3
|
-
//#region src/hooks/use-list-collection.d.ts
|
|
4
|
-
declare function useListCollection<T extends CollectionItem = CollectionItem>(options: CollectionOptions<T>): ListCollection<T>;
|
|
5
|
-
//#endregion
|
|
6
|
-
export { useListCollection };
|
|
7
|
-
//# sourceMappingURL=use-list-collection.d.ts.map
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { ListCollection } from "@zag-js/collection";
|
|
2
|
-
|
|
3
|
-
//#region src/hooks/use-list-collection.ts
|
|
4
|
-
function useListCollection(options) {
|
|
5
|
-
return new ListCollection(options);
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
//#endregion
|
|
9
|
-
export { useListCollection };
|
|
10
|
-
//# sourceMappingURL=use-list-collection.js.map
|
package/dist/index.d.ts
DELETED
|
@@ -1,291 +0,0 @@
|
|
|
1
|
-
import { AccordionItemContentProps } from "./components/accordion/anatomy/item-content.js";
|
|
2
|
-
import { AccordionItemIndicatorProps } from "./components/accordion/anatomy/item-indicator.js";
|
|
3
|
-
import { AccordionItemProps } from "./components/accordion/anatomy/item.js";
|
|
4
|
-
import { AccordionRootProps } from "./components/accordion/anatomy/root.js";
|
|
5
|
-
import { useAccordion } from "./components/accordion/modules/provider.js";
|
|
6
|
-
import { AccordionRootContextProps } from "./components/accordion/anatomy/root-context.js";
|
|
7
|
-
import { AccordionRootProviderProps } from "./components/accordion/anatomy/root-provider.js";
|
|
8
|
-
import { AccordionItemTriggerProps } from "./components/accordion/anatomy/item-trigger.js";
|
|
9
|
-
import { Accordion } from "./components/accordion/modules/anatomy.js";
|
|
10
|
-
import "./components/accordion/index.js";
|
|
11
|
-
import { AppBarRootProps } from "./components/app-bar/anatomy/root.js";
|
|
12
|
-
import { AppBarToolbarProps } from "./components/app-bar/anatomy/toolbar.js";
|
|
13
|
-
import { AppBarLeadProps } from "./components/app-bar/anatomy/lead.js";
|
|
14
|
-
import { AppBarHeadlineProps } from "./components/app-bar/anatomy/headline.js";
|
|
15
|
-
import { AppBarTrailProps } from "./components/app-bar/anatomy/trail.js";
|
|
16
|
-
import { AppBar } from "./components/app-bar/modules/anatomy.js";
|
|
17
|
-
import "./components/app-bar/index.js";
|
|
18
|
-
import { AvatarFallbackProps } from "./components/avatar/anatomy/fallback.js";
|
|
19
|
-
import { AvatarImageProps } from "./components/avatar/anatomy/image.js";
|
|
20
|
-
import { AvatarRootProps } from "./components/avatar/anatomy/root.js";
|
|
21
|
-
import { useAvatar } from "./components/avatar/modules/provider.js";
|
|
22
|
-
import { AvatarRootContextProps } from "./components/avatar/anatomy/root-context.js";
|
|
23
|
-
import { AvatarRootProviderProps } from "./components/avatar/anatomy/root-provider.js";
|
|
24
|
-
import { Avatar } from "./components/avatar/modules/anatomy.js";
|
|
25
|
-
import "./components/avatar/index.js";
|
|
26
|
-
import { CollapsibleContentProps } from "./components/collapsible/anatomy/content.js";
|
|
27
|
-
import { CollapsibleRootProps } from "./components/collapsible/anatomy/root.js";
|
|
28
|
-
import { useCollapsible } from "./components/collapsible/modules/provider.js";
|
|
29
|
-
import { CollapsibleRootContextProps } from "./components/collapsible/anatomy/root-context.js";
|
|
30
|
-
import { CollapsibleRootProviderProps } from "./components/collapsible/anatomy/root-provider.js";
|
|
31
|
-
import { CollapsibleTriggerProps } from "./components/collapsible/anatomy/trigger.js";
|
|
32
|
-
import { CollapsibleIndicatorProps } from "./components/collapsible/anatomy/indicator.js";
|
|
33
|
-
import { Collapsible } from "./components/collapsible/modules/anatomy.js";
|
|
34
|
-
import "./components/collapsible/index.js";
|
|
35
|
-
import { ComboboxContentProps } from "./components/combobox/anatomy/content.js";
|
|
36
|
-
import { ComboboxControlProps } from "./components/combobox/anatomy/control.js";
|
|
37
|
-
import { ComboboxInputProps } from "./components/combobox/anatomy/input.js";
|
|
38
|
-
import { ComboboxItemProps } from "./components/combobox/anatomy/item.js";
|
|
39
|
-
import { ComboboxItemGroupProps } from "./components/combobox/anatomy/item-group.js";
|
|
40
|
-
import { ComboboxItemGroupLabelProps } from "./components/combobox/anatomy/item-group-label.js";
|
|
41
|
-
import { ComboboxItemIndicatorProps } from "./components/combobox/anatomy/item-indicator.js";
|
|
42
|
-
import { ComboboxItemTextProps } from "./components/combobox/anatomy/item-text.js";
|
|
43
|
-
import { ComboboxLabelProps } from "./components/combobox/anatomy/label.js";
|
|
44
|
-
import { ComboboxPositionerProps } from "./components/combobox/anatomy/positioner.js";
|
|
45
|
-
import { ComboboxRootProps } from "./components/combobox/anatomy/root.js";
|
|
46
|
-
import { useCombobox } from "./components/combobox/modules/provider.js";
|
|
47
|
-
import { ComboboxRootContextProps } from "./components/combobox/anatomy/root-context.js";
|
|
48
|
-
import { ComboboxRootProviderProps } from "./components/combobox/anatomy/root-provider.js";
|
|
49
|
-
import { ComboboxTriggerProps } from "./components/combobox/anatomy/trigger.js";
|
|
50
|
-
import { Combobox } from "./components/combobox/modules/anatomy.js";
|
|
51
|
-
import "./components/combobox/index.js";
|
|
52
|
-
import { DatePickerContentProps } from "./components/date-picker/anatomy/content.js";
|
|
53
|
-
import { DatePickerControlProps } from "./components/date-picker/anatomy/control.js";
|
|
54
|
-
import { DatePickerInputProps } from "./components/date-picker/anatomy/input.js";
|
|
55
|
-
import { DatePickerLabelProps } from "./components/date-picker/anatomy/label.js";
|
|
56
|
-
import { DatePickerMonthSelectProps } from "./components/date-picker/anatomy/month-select.js";
|
|
57
|
-
import { DatePickerNextTriggerProps } from "./components/date-picker/anatomy/next-trigger.js";
|
|
58
|
-
import { DatePickerPositionerProps } from "./components/date-picker/anatomy/positioner.js";
|
|
59
|
-
import { DatePickerPresetTriggerProps } from "./components/date-picker/anatomy/preset-trigger.js";
|
|
60
|
-
import { DatePickerPrevTriggerProps } from "./components/date-picker/anatomy/prev-trigger.js";
|
|
61
|
-
import { DatePickerRangeTextProps } from "./components/date-picker/anatomy/range-text.js";
|
|
62
|
-
import { DatePickerRootProps } from "./components/date-picker/anatomy/root.js";
|
|
63
|
-
import { useDatePicker } from "./components/date-picker/modules/provider.js";
|
|
64
|
-
import { DatePickerRootContextProps } from "./components/date-picker/anatomy/root-context.js";
|
|
65
|
-
import { DatePickerRootProviderProps } from "./components/date-picker/anatomy/root-provider.js";
|
|
66
|
-
import { DatePickerTableProps } from "./components/date-picker/anatomy/table.js";
|
|
67
|
-
import { DatePickerTableBodyProps } from "./components/date-picker/anatomy/table-body.js";
|
|
68
|
-
import { DatePickerTableCellProps } from "./components/date-picker/anatomy/table-cell.js";
|
|
69
|
-
import { DatePickerTableCellTriggerProps } from "./components/date-picker/anatomy/table-cell-trigger.js";
|
|
70
|
-
import { DatePickerTableHeadProps } from "./components/date-picker/anatomy/table-head.js";
|
|
71
|
-
import { DatePickerTableHeaderProps } from "./components/date-picker/anatomy/table-header.js";
|
|
72
|
-
import { DatePickerTableRowProps } from "./components/date-picker/anatomy/table-row.js";
|
|
73
|
-
import { DatePickerTriggerProps } from "./components/date-picker/anatomy/trigger.js";
|
|
74
|
-
import { DatePickerViewProps } from "./components/date-picker/anatomy/view.js";
|
|
75
|
-
import { DatePickerViewControlProps } from "./components/date-picker/anatomy/view-control.js";
|
|
76
|
-
import { DatePickerViewTriggerProps } from "./components/date-picker/anatomy/view-trigger.js";
|
|
77
|
-
import { DatePickerYearSelectProps } from "./components/date-picker/anatomy/year-select.js";
|
|
78
|
-
import { DatePicker } from "./components/date-picker/modules/anatomy.js";
|
|
79
|
-
import { DateValue, parseDate } from "./components/date-picker/index.js";
|
|
80
|
-
import { DialogBackdropProps } from "./components/dialog/anatomy/backdrop.js";
|
|
81
|
-
import { DialogCloseTriggerProps } from "./components/dialog/anatomy/close-trigger.js";
|
|
82
|
-
import { DialogContentProps } from "./components/dialog/anatomy/content.js";
|
|
83
|
-
import { DialogDescriptionProps } from "./components/dialog/anatomy/description.js";
|
|
84
|
-
import { DialogPositionerProps } from "./components/dialog/anatomy/positioner.js";
|
|
85
|
-
import { DialogRootProps } from "./components/dialog/anatomy/root.js";
|
|
86
|
-
import { useDialog } from "./components/dialog/modules/provider.js";
|
|
87
|
-
import { DialogRootContextProps } from "./components/dialog/anatomy/root-context.js";
|
|
88
|
-
import { DialogRootProviderProps } from "./components/dialog/anatomy/root-provider.js";
|
|
89
|
-
import { DialogTitleProps } from "./components/dialog/anatomy/title.js";
|
|
90
|
-
import { DialogTriggerProps } from "./components/dialog/anatomy/trigger.js";
|
|
91
|
-
import { Dialog } from "./components/dialog/modules/anatomy.js";
|
|
92
|
-
import "./components/dialog/index.js";
|
|
93
|
-
import { FileUploadDropzoneProps } from "./components/file-upload/anatomy/dropzone.js";
|
|
94
|
-
import { FileUploadHiddenInputProps } from "./components/file-upload/anatomy/hidden-input.js";
|
|
95
|
-
import { FileUploadItemProps } from "./components/file-upload/anatomy/item.js";
|
|
96
|
-
import { FileUploadItemDeleteTriggerProps } from "./components/file-upload/anatomy/item-delete-trigger.js";
|
|
97
|
-
import { FileUploadItemGroupProps } from "./components/file-upload/anatomy/item-group.js";
|
|
98
|
-
import { FileUploadItemNameProps } from "./components/file-upload/anatomy/item-name.js";
|
|
99
|
-
import { FileUploadItemSizeTextProps } from "./components/file-upload/anatomy/item-size-text.js";
|
|
100
|
-
import { FileUploadLabelProps } from "./components/file-upload/anatomy/label.js";
|
|
101
|
-
import { FileUploadRootProps } from "./components/file-upload/anatomy/root.js";
|
|
102
|
-
import { useFileUpload } from "./components/file-upload/modules/provider.js";
|
|
103
|
-
import { FileUploadRootContextProps } from "./components/file-upload/anatomy/root-context.js";
|
|
104
|
-
import { FileUploadRootProviderProps } from "./components/file-upload/anatomy/root-provider.js";
|
|
105
|
-
import { FileUploadTriggerProps } from "./components/file-upload/anatomy/trigger.js";
|
|
106
|
-
import { FileUpload } from "./components/file-upload/modules/anatomy.js";
|
|
107
|
-
import "./components/file-upload/index.js";
|
|
108
|
-
import { ListboxRootProps } from "./components/listbox/anatomy/root.js";
|
|
109
|
-
import { ListboxItemGroupProps } from "./components/listbox/anatomy/item-group.js";
|
|
110
|
-
import { ListboxItemGroupLabelProps } from "./components/listbox/anatomy/item-group-label.js";
|
|
111
|
-
import { ListboxItemProps } from "./components/listbox/anatomy/item.js";
|
|
112
|
-
import { ListboxInputProps } from "./components/listbox/anatomy/input.js";
|
|
113
|
-
import { ListboxItemIndicatorProps } from "./components/listbox/anatomy/item-indicator.js";
|
|
114
|
-
import { ListboxItemTextProps } from "./components/listbox/anatomy/item-text.js";
|
|
115
|
-
import { useListbox } from "./components/listbox/modules/provider.js";
|
|
116
|
-
import { ListboxRootContextProps } from "./components/listbox/anatomy/root-context.js";
|
|
117
|
-
import { ListboxRootProviderProps } from "./components/listbox/anatomy/root-provider.js";
|
|
118
|
-
import { ListboxLabelProps } from "./components/listbox/anatomy/label.js";
|
|
119
|
-
import { ListboxContentProps } from "./components/listbox/anatomy/content.js";
|
|
120
|
-
import { Listbox } from "./components/listbox/modules/anatomy.js";
|
|
121
|
-
import "./components/listbox/index.js";
|
|
122
|
-
import { NavigationRootProps } from "./components/navigation/anatomy/root.js";
|
|
123
|
-
import { NavigationMenuProps } from "./components/navigation/anatomy/menu.js";
|
|
124
|
-
import { NavigationHeaderProps } from "./components/navigation/anatomy/header.js";
|
|
125
|
-
import { NavigationContentProps } from "./components/navigation/anatomy/content.js";
|
|
126
|
-
import { NavigationFooterProps } from "./components/navigation/anatomy/footer.js";
|
|
127
|
-
import { NavigationGroupProps } from "./components/navigation/anatomy/group.js";
|
|
128
|
-
import { NavigationLabelProps } from "./components/navigation/anatomy/label.js";
|
|
129
|
-
import { Navigation } from "./components/navigation/modules/anatomy.js";
|
|
130
|
-
import "./components/navigation/index.js";
|
|
131
|
-
import { PaginationEllipsisProps } from "./components/pagination/anatomy/ellipsis.js";
|
|
132
|
-
import { PaginationFirstTriggerProps } from "./components/pagination/anatomy/first-trigger.js";
|
|
133
|
-
import { PaginationItemProps } from "./components/pagination/anatomy/item.js";
|
|
134
|
-
import { PaginationLastTriggerProps } from "./components/pagination/anatomy/last-trigger.js";
|
|
135
|
-
import { PaginationNextTriggerProps } from "./components/pagination/anatomy/next-trigger.js";
|
|
136
|
-
import { PaginationPrevTriggerProps } from "./components/pagination/anatomy/prev-trigger.js";
|
|
137
|
-
import { usePagination } from "./components/pagination/modules/provider.js";
|
|
138
|
-
import { PaginationRootContextProps } from "./components/pagination/anatomy/root-context.js";
|
|
139
|
-
import { PaginationRootProviderProps } from "./components/pagination/anatomy/root-provider.js";
|
|
140
|
-
import { PaginationRootProps } from "./components/pagination/anatomy/root.js";
|
|
141
|
-
import { Pagination } from "./components/pagination/modules/anatomy.js";
|
|
142
|
-
import "./components/pagination/index.js";
|
|
143
|
-
import { PopoverCloseTriggerProps } from "./components/popover/anatomy/close-trigger.js";
|
|
144
|
-
import { PopoverContentProps } from "./components/popover/anatomy/content.js";
|
|
145
|
-
import { PopoverDescriptionProps } from "./components/popover/anatomy/description.js";
|
|
146
|
-
import { PopoverPositionerProps } from "./components/popover/anatomy/positioner.js";
|
|
147
|
-
import { PopoverRootProps } from "./components/popover/anatomy/root.js";
|
|
148
|
-
import { usePopover } from "./components/popover/modules/provider.js";
|
|
149
|
-
import { PopoverRootContextProps } from "./components/popover/anatomy/root-context.js";
|
|
150
|
-
import { PopoverRootProviderProps } from "./components/popover/anatomy/root-provider.js";
|
|
151
|
-
import { PopoverTitleProps } from "./components/popover/anatomy/title.js";
|
|
152
|
-
import { PopoverArrowProps } from "./components/popover/anatomy/arrow.js";
|
|
153
|
-
import { PopoverArrowTipProps } from "./components/popover/anatomy/arrow-tip.js";
|
|
154
|
-
import { PopoverTriggerProps } from "./components/popover/anatomy/trigger.js";
|
|
155
|
-
import { Popover } from "./components/popover/modules/anatomy.js";
|
|
156
|
-
import "./components/popover/index.js";
|
|
157
|
-
import { PortalRootProps } from "./components/portal/anatomy/root.js";
|
|
158
|
-
import { Portal } from "./components/portal/modules/anatomy.js";
|
|
159
|
-
import "./components/portal/index.js";
|
|
160
|
-
import { ProgressLabelProps } from "./components/progress/anatomy/label.js";
|
|
161
|
-
import { ProgressRangeProps } from "./components/progress/anatomy/range.js";
|
|
162
|
-
import { ProgressRootProps } from "./components/progress/anatomy/root.js";
|
|
163
|
-
import { useProgress } from "./components/progress/modules/provider.js";
|
|
164
|
-
import { ProgressRootContextProps } from "./components/progress/anatomy/root-context.js";
|
|
165
|
-
import { ProgressRootProviderProps } from "./components/progress/anatomy/root-provider.js";
|
|
166
|
-
import { ProgressTrackProps } from "./components/progress/anatomy/track.js";
|
|
167
|
-
import { ProgressValueTextProps } from "./components/progress/anatomy/value-text.js";
|
|
168
|
-
import { ProgressCircleProps } from "./components/progress/anatomy/circle.js";
|
|
169
|
-
import { ProgressCircleRangeProps } from "./components/progress/anatomy/circle-range.js";
|
|
170
|
-
import { ProgressCircleTrackProps } from "./components/progress/anatomy/circle-track.js";
|
|
171
|
-
import { Progress } from "./components/progress/modules/anatomy.js";
|
|
172
|
-
import "./components/progress/index.js";
|
|
173
|
-
import { RatingGroupControlProps } from "./components/rating-group/anatomy/control.js";
|
|
174
|
-
import { RatingGroupHiddenInputProps } from "./components/rating-group/anatomy/hidden-input.js";
|
|
175
|
-
import { RatingGroupItemProps } from "./components/rating-group/anatomy/item.js";
|
|
176
|
-
import { RatingGroupLabelProps } from "./components/rating-group/anatomy/label.js";
|
|
177
|
-
import { RatingGroupRootProps } from "./components/rating-group/anatomy/root.js";
|
|
178
|
-
import { useRatingGroup } from "./components/rating-group/modules/provider.js";
|
|
179
|
-
import { RatingGroupRootContextProps } from "./components/rating-group/anatomy/root-context.js";
|
|
180
|
-
import { RatingGroupRootProviderProps } from "./components/rating-group/anatomy/root-provider.js";
|
|
181
|
-
import { RatingGroup } from "./components/rating-group/modules/anatomy.js";
|
|
182
|
-
import "./components/rating-group/index.js";
|
|
183
|
-
import { SegmentedControlControlProps } from "./components/segmented-control/anatomy/control.js";
|
|
184
|
-
import { SegmentedControlIndicatorProps } from "./components/segmented-control/anatomy/indicator.js";
|
|
185
|
-
import { SegmentedControlItemHiddenInputProps } from "./components/segmented-control/anatomy/item-hidden-input.js";
|
|
186
|
-
import { SegmentedControlItemTextProps } from "./components/segmented-control/anatomy/item-text.js";
|
|
187
|
-
import { SegmentedControlItemProps } from "./components/segmented-control/anatomy/item.js";
|
|
188
|
-
import { SegmentedControlLabelProps } from "./components/segmented-control/anatomy/label.js";
|
|
189
|
-
import { useSegmentedControl } from "./components/segmented-control/modules/provider.js";
|
|
190
|
-
import { SegmentedControlRootContextProps } from "./components/segmented-control/anatomy/root-context.js";
|
|
191
|
-
import { SegmentedControlRootProviderProps } from "./components/segmented-control/anatomy/root-provider.js";
|
|
192
|
-
import { SegmentedControlRootProps } from "./components/segmented-control/anatomy/root.js";
|
|
193
|
-
import { SegmentedControl } from "./components/segmented-control/modules/anatomy.js";
|
|
194
|
-
import "./components/segmented-control/index.js";
|
|
195
|
-
import { SliderControlProps } from "./components/slider/anatomy/control.js";
|
|
196
|
-
import { SliderHiddenInputProps } from "./components/slider/anatomy/hidden-input.js";
|
|
197
|
-
import { SliderLabelProps } from "./components/slider/anatomy/label.js";
|
|
198
|
-
import { SliderMarkerGroupProps } from "./components/slider/anatomy/marker-group.js";
|
|
199
|
-
import { SliderMarkerProps } from "./components/slider/anatomy/marker.js";
|
|
200
|
-
import { SliderRangeProps } from "./components/slider/anatomy/range.js";
|
|
201
|
-
import { useSlider } from "./components/slider/modules/provider.js";
|
|
202
|
-
import { SliderRootContextProps } from "./components/slider/anatomy/root-context.js";
|
|
203
|
-
import { SliderRootProviderProps } from "./components/slider/anatomy/root-provider.js";
|
|
204
|
-
import { SliderRootProps } from "./components/slider/anatomy/root.js";
|
|
205
|
-
import { SliderThumbProps } from "./components/slider/anatomy/thumb.js";
|
|
206
|
-
import { SliderTrackProps } from "./components/slider/anatomy/track.js";
|
|
207
|
-
import { SliderValueTextProps } from "./components/slider/anatomy/value-text.js";
|
|
208
|
-
import { Slider } from "./components/slider/modules/anatomy.js";
|
|
209
|
-
import "./components/slider/index.js";
|
|
210
|
-
import { SwitchControlProps } from "./components/switch/anatomy/control.js";
|
|
211
|
-
import { SwitchHiddenInputProps } from "./components/switch/anatomy/hidden-input.js";
|
|
212
|
-
import { SwitchLabelProps } from "./components/switch/anatomy/label.js";
|
|
213
|
-
import { useSwitch } from "./components/switch/modules/provider.js";
|
|
214
|
-
import { SwitchRootContextProps } from "./components/switch/anatomy/root-context.js";
|
|
215
|
-
import { SwitchRootProviderProps } from "./components/switch/anatomy/root-provider.js";
|
|
216
|
-
import { SwitchThumbProps } from "./components/switch/anatomy/thumb.js";
|
|
217
|
-
import { SwitchRootProps } from "./components/switch/anatomy/root.js";
|
|
218
|
-
import { Switch } from "./components/switch/modules/anatomy.js";
|
|
219
|
-
import "./components/switch/index.js";
|
|
220
|
-
import { TabsContentProps } from "./components/tabs/anatomy/content.js";
|
|
221
|
-
import { TabsIndicatorProps } from "./components/tabs/anatomy/indicator.js";
|
|
222
|
-
import { TabsListProps } from "./components/tabs/anatomy/list.js";
|
|
223
|
-
import { TabsRootProps } from "./components/tabs/anatomy/root.js";
|
|
224
|
-
import { useTabs } from "./components/tabs/modules/provider.js";
|
|
225
|
-
import { TabsRootContextProps } from "./components/tabs/anatomy/root-context.js";
|
|
226
|
-
import { TabsRootProviderProps } from "./components/tabs/anatomy/root-provider.js";
|
|
227
|
-
import { TabsTriggerProps } from "./components/tabs/anatomy/trigger.js";
|
|
228
|
-
import { Tabs } from "./components/tabs/modules/anatomy.js";
|
|
229
|
-
import "./components/tabs/index.js";
|
|
230
|
-
import { TagsInputClearTriggerProps } from "./components/tags-input/anatomy/clear-trigger.js";
|
|
231
|
-
import { TagsInputControlProps } from "./components/tags-input/anatomy/control.js";
|
|
232
|
-
import { TagsInputHiddenInputProps } from "./components/tags-input/anatomy/hidden-input.js";
|
|
233
|
-
import { TagsInputInputProps } from "./components/tags-input/anatomy/input.js";
|
|
234
|
-
import { TagsInputItemProps } from "./components/tags-input/anatomy/item.js";
|
|
235
|
-
import { TagsInputItemDeleteTriggerProps } from "./components/tags-input/anatomy/item-delete-trigger.js";
|
|
236
|
-
import { TagsInputItemInputProps } from "./components/tags-input/anatomy/item-input.js";
|
|
237
|
-
import { TagsInputItemPreviewProps } from "./components/tags-input/anatomy/item-preview.js";
|
|
238
|
-
import { TagsInputItemTextProps } from "./components/tags-input/anatomy/item-text.js";
|
|
239
|
-
import { TagsInputLabelProps } from "./components/tags-input/anatomy/label.js";
|
|
240
|
-
import { TagsInputRootProps } from "./components/tags-input/anatomy/root.js";
|
|
241
|
-
import { useTagsInput } from "./components/tags-input/modules/provider.js";
|
|
242
|
-
import { TagsInputRootContextProps } from "./components/tags-input/anatomy/root-context.js";
|
|
243
|
-
import { TagsInputRootProviderProps } from "./components/tags-input/anatomy/root-provider.js";
|
|
244
|
-
import { TagsInput } from "./components/tags-input/modules/anatomy.js";
|
|
245
|
-
import "./components/tags-input/index.js";
|
|
246
|
-
import { ToastCloseTriggerProps } from "./components/toast/anatomy/close-trigger.js";
|
|
247
|
-
import { ToastDescriptionProps } from "./components/toast/anatomy/description.js";
|
|
248
|
-
import { ToastGroupProps } from "./components/toast/anatomy/group.js";
|
|
249
|
-
import { ToastMessageProps } from "./components/toast/anatomy/message.js";
|
|
250
|
-
import { ToastRootProps } from "./components/toast/anatomy/root.js";
|
|
251
|
-
import { ToastRootContextProps } from "./components/toast/anatomy/root-context.js";
|
|
252
|
-
import { ToastTitleProps } from "./components/toast/anatomy/title.js";
|
|
253
|
-
import { ToastActionTriggerProps } from "./components/toast/anatomy/action-trigger.js";
|
|
254
|
-
import { Toast } from "./components/toast/modules/anatomy.js";
|
|
255
|
-
import { createToaster } from "./components/toast/index.js";
|
|
256
|
-
import { ToggleGroupItemProps } from "./components/toggle-group/anatomy/item.js";
|
|
257
|
-
import { ToggleGroupRootProps } from "./components/toggle-group/anatomy/root.js";
|
|
258
|
-
import { useToggleGroup } from "./components/toggle-group/modules/provider.js";
|
|
259
|
-
import { ToggleGroupRootContextProps } from "./components/toggle-group/anatomy/root-context.js";
|
|
260
|
-
import { ToggleGroupRootProviderProps } from "./components/toggle-group/anatomy/root-provider.js";
|
|
261
|
-
import { ToggleGroup } from "./components/toggle-group/modules/anatomy.js";
|
|
262
|
-
import "./components/toggle-group/index.js";
|
|
263
|
-
import { TooltipArrowProps } from "./components/tooltip/anatomy/arrow.js";
|
|
264
|
-
import { TooltipArrowTipProps } from "./components/tooltip/anatomy/arrow-tip.js";
|
|
265
|
-
import { TooltipContentProps } from "./components/tooltip/anatomy/content.js";
|
|
266
|
-
import { TooltipPositionerProps } from "./components/tooltip/anatomy/positioner.js";
|
|
267
|
-
import { TooltipRootProps } from "./components/tooltip/anatomy/root.js";
|
|
268
|
-
import { useTooltip } from "./components/tooltip/modules/provider.js";
|
|
269
|
-
import { TooltipRootContextProps } from "./components/tooltip/anatomy/root-context.js";
|
|
270
|
-
import { TooltipRootProviderProps } from "./components/tooltip/anatomy/root-provider.js";
|
|
271
|
-
import { TooltipTriggerProps } from "./components/tooltip/anatomy/trigger.js";
|
|
272
|
-
import { Tooltip } from "./components/tooltip/modules/anatomy.js";
|
|
273
|
-
import "./components/tooltip/index.js";
|
|
274
|
-
import { TreeViewBranchContentProps } from "./components/tree-view/anatomy/branch-content.js";
|
|
275
|
-
import { TreeViewBranchControlProps } from "./components/tree-view/anatomy/branch-control.js";
|
|
276
|
-
import { TreeViewBranchIndentGuideProps } from "./components/tree-view/anatomy/branch-indent-guide.js";
|
|
277
|
-
import { TreeViewBranchIndicatorProps } from "./components/tree-view/anatomy/branch-indicator.js";
|
|
278
|
-
import { TreeViewBranchTextProps } from "./components/tree-view/anatomy/branch-text.js";
|
|
279
|
-
import { TreeViewBranchProps } from "./components/tree-view/anatomy/branch.js";
|
|
280
|
-
import { TreeViewItemProps } from "./components/tree-view/anatomy/item.js";
|
|
281
|
-
import { TreeViewLabelProps } from "./components/tree-view/anatomy/label.js";
|
|
282
|
-
import { TreeViewNodeProviderProps } from "./components/tree-view/anatomy/node-provider.js";
|
|
283
|
-
import { useTreeView } from "./components/tree-view/modules/provider.js";
|
|
284
|
-
import { TreeViewRootContextProps } from "./components/tree-view/anatomy/root-context.js";
|
|
285
|
-
import { TreeViewRootProviderProps } from "./components/tree-view/anatomy/root-provider.js";
|
|
286
|
-
import { TreeViewRootProps } from "./components/tree-view/anatomy/root.js";
|
|
287
|
-
import { TreeViewTreeProps } from "./components/tree-view/anatomy/tree.js";
|
|
288
|
-
import { TreeView } from "./components/tree-view/modules/anatomy.js";
|
|
289
|
-
import { createTreeViewCollection } from "./components/tree-view/index.js";
|
|
290
|
-
import { useListCollection } from "./hooks/use-list-collection.js";
|
|
291
|
-
export { Accordion, AccordionItemContentProps, AccordionItemIndicatorProps, AccordionItemProps, AccordionItemTriggerProps, AccordionRootContextProps, AccordionRootProps, AccordionRootProviderProps, AppBar, AppBarHeadlineProps, AppBarLeadProps, AppBarRootProps, AppBarToolbarProps, AppBarTrailProps, Avatar, AvatarFallbackProps, AvatarImageProps, AvatarRootContextProps, AvatarRootProps, AvatarRootProviderProps, Collapsible, CollapsibleContentProps, CollapsibleIndicatorProps, CollapsibleRootContextProps, CollapsibleRootProps, CollapsibleRootProviderProps, CollapsibleTriggerProps, Combobox, ComboboxContentProps, ComboboxControlProps, ComboboxInputProps, ComboboxItemGroupLabelProps, ComboboxItemGroupProps, ComboboxItemIndicatorProps, ComboboxItemProps, ComboboxItemTextProps, ComboboxLabelProps, ComboboxPositionerProps, ComboboxRootContextProps, ComboboxRootProps, ComboboxRootProviderProps, ComboboxTriggerProps, DatePicker, DatePickerContentProps, DatePickerControlProps, DatePickerInputProps, DatePickerLabelProps, DatePickerMonthSelectProps, DatePickerNextTriggerProps, DatePickerPositionerProps, DatePickerPresetTriggerProps, DatePickerPrevTriggerProps, DatePickerRangeTextProps, DatePickerRootContextProps, DatePickerRootProps, DatePickerRootProviderProps, DatePickerTableBodyProps, DatePickerTableCellProps, DatePickerTableCellTriggerProps, DatePickerTableHeadProps, DatePickerTableHeaderProps, DatePickerTableProps, DatePickerTableRowProps, DatePickerTriggerProps, DatePickerViewControlProps, DatePickerViewProps, DatePickerViewTriggerProps, DatePickerYearSelectProps, DateValue, Dialog, DialogBackdropProps, DialogCloseTriggerProps, DialogContentProps, DialogDescriptionProps, DialogPositionerProps, DialogRootContextProps, DialogRootProps, DialogRootProviderProps, DialogTitleProps, DialogTriggerProps, FileUpload, FileUploadDropzoneProps, FileUploadHiddenInputProps, FileUploadItemDeleteTriggerProps, FileUploadItemGroupProps, FileUploadItemNameProps, FileUploadItemProps, FileUploadItemSizeTextProps, FileUploadLabelProps, FileUploadRootContextProps, FileUploadRootProps, FileUploadRootProviderProps, FileUploadTriggerProps, Listbox, ListboxContentProps, ListboxInputProps, ListboxItemGroupLabelProps, ListboxItemGroupProps, ListboxItemIndicatorProps, ListboxItemProps, ListboxItemTextProps, ListboxLabelProps, ListboxRootContextProps, ListboxRootProps, ListboxRootProviderProps, Navigation, NavigationContentProps, NavigationFooterProps, NavigationGroupProps, NavigationHeaderProps, NavigationLabelProps, NavigationMenuProps, NavigationRootProps, Pagination, PaginationEllipsisProps, PaginationFirstTriggerProps, PaginationItemProps, PaginationLastTriggerProps, PaginationNextTriggerProps, PaginationPrevTriggerProps, PaginationRootContextProps, PaginationRootProps, PaginationRootProviderProps, Popover, PopoverArrowProps, PopoverArrowTipProps, PopoverCloseTriggerProps, PopoverContentProps, PopoverDescriptionProps, PopoverPositionerProps, PopoverRootContextProps, PopoverRootProps, PopoverRootProviderProps, PopoverTitleProps, PopoverTriggerProps, Portal, PortalRootProps, Progress, ProgressCircleProps, ProgressCircleRangeProps, ProgressCircleTrackProps, ProgressLabelProps, ProgressRangeProps, ProgressRootContextProps, ProgressRootProps, ProgressRootProviderProps, ProgressTrackProps, ProgressValueTextProps, RatingGroup, RatingGroupControlProps, RatingGroupHiddenInputProps, RatingGroupItemProps, RatingGroupLabelProps, RatingGroupRootContextProps, RatingGroupRootProps, RatingGroupRootProviderProps, SegmentedControl, SegmentedControlControlProps, SegmentedControlIndicatorProps, SegmentedControlItemHiddenInputProps, SegmentedControlItemProps, SegmentedControlItemTextProps, SegmentedControlLabelProps, SegmentedControlRootContextProps, SegmentedControlRootProps, SegmentedControlRootProviderProps, Slider, SliderControlProps, SliderHiddenInputProps, SliderLabelProps, SliderMarkerGroupProps, SliderMarkerProps, SliderRangeProps, SliderRootContextProps, SliderRootProps, SliderRootProviderProps, SliderThumbProps, SliderTrackProps, SliderValueTextProps, Switch, SwitchControlProps, SwitchHiddenInputProps, SwitchLabelProps, SwitchRootContextProps, SwitchRootProps, SwitchRootProviderProps, SwitchThumbProps, Tabs, TabsContentProps, TabsIndicatorProps, TabsListProps, TabsRootContextProps, TabsRootProps, TabsRootProviderProps, TabsTriggerProps, TagsInput, TagsInputClearTriggerProps, TagsInputControlProps, TagsInputHiddenInputProps, TagsInputInputProps, TagsInputItemDeleteTriggerProps, TagsInputItemInputProps, TagsInputItemPreviewProps, TagsInputItemProps, TagsInputItemTextProps, TagsInputLabelProps, TagsInputRootContextProps, TagsInputRootProps, TagsInputRootProviderProps, Toast, ToastActionTriggerProps, ToastCloseTriggerProps, ToastDescriptionProps, ToastGroupProps, ToastMessageProps, ToastRootContextProps, ToastRootProps, ToastTitleProps, ToggleGroup, ToggleGroupItemProps, ToggleGroupRootContextProps, ToggleGroupRootProps, ToggleGroupRootProviderProps, Tooltip, TooltipArrowProps, TooltipArrowTipProps, TooltipContentProps, TooltipPositionerProps, TooltipRootContextProps, TooltipRootProps, TooltipRootProviderProps, TooltipTriggerProps, TreeView, TreeViewBranchContentProps, TreeViewBranchControlProps, TreeViewBranchIndentGuideProps, TreeViewBranchIndicatorProps, TreeViewBranchProps, TreeViewBranchTextProps, TreeViewItemProps, TreeViewLabelProps, TreeViewNodeProviderProps, TreeViewRootContextProps, TreeViewRootProps, TreeViewRootProviderProps, TreeViewTreeProps, createToaster, createTreeViewCollection, parseDate, useAccordion, useAvatar, useCollapsible, useCombobox, useDatePicker, useDialog, useFileUpload, useListCollection, useListbox, usePagination, usePopover, useProgress, useRatingGroup, useSegmentedControl, useSlider, useSwitch, useTabs, useTagsInput, useToggleGroup, useTooltip, useTreeView };
|
package/dist/index.js
DELETED
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import { useAccordion } from "./components/accordion/modules/provider.js";
|
|
2
|
-
import { Accordion } from "./components/accordion/modules/anatomy.js";
|
|
3
|
-
import { AppBar } from "./components/app-bar/modules/anatomy.js";
|
|
4
|
-
import { useAvatar } from "./components/avatar/modules/provider.js";
|
|
5
|
-
import { Avatar } from "./components/avatar/modules/anatomy.js";
|
|
6
|
-
import { useCollapsible } from "./components/collapsible/modules/provider.js";
|
|
7
|
-
import { Collapsible } from "./components/collapsible/modules/anatomy.js";
|
|
8
|
-
import { useCombobox } from "./components/combobox/modules/provider.js";
|
|
9
|
-
import { Combobox } from "./components/combobox/modules/anatomy.js";
|
|
10
|
-
import { useDatePicker } from "./components/date-picker/modules/provider.js";
|
|
11
|
-
import { DatePicker } from "./components/date-picker/modules/anatomy.js";
|
|
12
|
-
import { parseDate } from "./components/date-picker/index.js";
|
|
13
|
-
import { useDialog } from "./components/dialog/modules/provider.js";
|
|
14
|
-
import { Dialog } from "./components/dialog/modules/anatomy.js";
|
|
15
|
-
import { useFileUpload } from "./components/file-upload/modules/provider.js";
|
|
16
|
-
import { FileUpload } from "./components/file-upload/modules/anatomy.js";
|
|
17
|
-
import { useListbox } from "./components/listbox/modules/provider.js";
|
|
18
|
-
import { Listbox } from "./components/listbox/modules/anatomy.js";
|
|
19
|
-
import { Navigation } from "./components/navigation/modules/anatomy.js";
|
|
20
|
-
import { usePagination } from "./components/pagination/modules/provider.js";
|
|
21
|
-
import { Pagination } from "./components/pagination/modules/anatomy.js";
|
|
22
|
-
import { usePopover } from "./components/popover/modules/provider.js";
|
|
23
|
-
import { Popover } from "./components/popover/modules/anatomy.js";
|
|
24
|
-
import { Portal } from "./components/portal/modules/anatomy.js";
|
|
25
|
-
import { useProgress } from "./components/progress/modules/provider.js";
|
|
26
|
-
import { Progress } from "./components/progress/modules/anatomy.js";
|
|
27
|
-
import { useRatingGroup } from "./components/rating-group/modules/provider.js";
|
|
28
|
-
import { RatingGroup } from "./components/rating-group/modules/anatomy.js";
|
|
29
|
-
import { useSegmentedControl } from "./components/segmented-control/modules/provider.js";
|
|
30
|
-
import { SegmentedControl } from "./components/segmented-control/modules/anatomy.js";
|
|
31
|
-
import { useSlider } from "./components/slider/modules/provider.js";
|
|
32
|
-
import { Slider } from "./components/slider/modules/anatomy.js";
|
|
33
|
-
import { useSwitch } from "./components/switch/modules/provider.js";
|
|
34
|
-
import { Switch } from "./components/switch/modules/anatomy.js";
|
|
35
|
-
import { useTabs } from "./components/tabs/modules/provider.js";
|
|
36
|
-
import { Tabs } from "./components/tabs/modules/anatomy.js";
|
|
37
|
-
import { useTagsInput } from "./components/tags-input/modules/provider.js";
|
|
38
|
-
import { TagsInput } from "./components/tags-input/modules/anatomy.js";
|
|
39
|
-
import { Toast } from "./components/toast/modules/anatomy.js";
|
|
40
|
-
import { createToaster } from "./components/toast/index.js";
|
|
41
|
-
import { useToggleGroup } from "./components/toggle-group/modules/provider.js";
|
|
42
|
-
import { ToggleGroup } from "./components/toggle-group/modules/anatomy.js";
|
|
43
|
-
import { useTooltip } from "./components/tooltip/modules/provider.js";
|
|
44
|
-
import { Tooltip } from "./components/tooltip/modules/anatomy.js";
|
|
45
|
-
import { useTreeView } from "./components/tree-view/modules/provider.js";
|
|
46
|
-
import { TreeView } from "./components/tree-view/modules/anatomy.js";
|
|
47
|
-
import { createTreeViewCollection } from "./components/tree-view/index.js";
|
|
48
|
-
import { useListCollection } from "./hooks/use-list-collection.js";
|
|
49
|
-
|
|
50
|
-
export { Accordion, AppBar, Avatar, Collapsible, Combobox, DatePicker, Dialog, FileUpload, Listbox, Navigation, Pagination, Popover, Portal, Progress, RatingGroup, SegmentedControl, Slider, Switch, Tabs, TagsInput, Toast, ToggleGroup, Tooltip, TreeView, createToaster, createTreeViewCollection, parseDate, useAccordion, useAvatar, useCollapsible, useCombobox, useDatePicker, useDialog, useFileUpload, useListCollection, useListbox, usePagination, usePopover, useProgress, useRatingGroup, useSegmentedControl, useSlider, useSwitch, useTabs, useTagsInput, useToggleGroup, useTooltip, useTreeView };
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { mergeProps } from "@zag-js/react";
|
|
2
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
-
|
|
4
|
-
//#region src/internal/components/calendar.tsx
|
|
5
|
-
function Calendar(props) {
|
|
6
|
-
const { ...rest } = props;
|
|
7
|
-
return /* @__PURE__ */ jsxs("svg", {
|
|
8
|
-
...mergeProps({
|
|
9
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
-
width: "24",
|
|
11
|
-
height: "24",
|
|
12
|
-
viewBox: "0 0 24 24",
|
|
13
|
-
fill: "none",
|
|
14
|
-
stroke: "currentColor",
|
|
15
|
-
strokeWidth: "2",
|
|
16
|
-
strokeLinecap: "round",
|
|
17
|
-
strokeLinejoin: "round"
|
|
18
|
-
}, rest),
|
|
19
|
-
children: [
|
|
20
|
-
/* @__PURE__ */ jsx("path", { d: "M8 2v4" }),
|
|
21
|
-
/* @__PURE__ */ jsx("path", { d: "M16 2v4" }),
|
|
22
|
-
/* @__PURE__ */ jsx("rect", {
|
|
23
|
-
width: "18",
|
|
24
|
-
height: "18",
|
|
25
|
-
x: "3",
|
|
26
|
-
y: "4",
|
|
27
|
-
rx: "2"
|
|
28
|
-
}),
|
|
29
|
-
/* @__PURE__ */ jsx("path", { d: "M3 10h18" })
|
|
30
|
-
]
|
|
31
|
-
});
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
//#endregion
|
|
35
|
-
export { Calendar as default };
|
|
36
|
-
//# sourceMappingURL=calendar.js.map
|