├── .browserslistrc ├── .circleci └── config.yml ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── 1.bug.md │ ├── 2.feature-request.md │ ├── 3.get-help.md │ └── 4.docs-feedback.md ├── PULL_REQUEST_TEMPLATE.md ├── codeql │ └── codeql-config.yml ├── dependabot.yml └── workflows │ ├── check-if-pr-has-label.yml │ ├── ci.yml │ ├── codeql.yml │ ├── ensure-triage-label.yml │ ├── fixed-issue.yml │ ├── maintenance.yml │ ├── mark-duplicate.yml │ ├── new-issue-triage.yml │ ├── no-response.yml │ ├── publish.yml │ ├── scorecards.yml │ ├── support-stackoverflow.yml │ └── vale-action.yml ├── .gitignore ├── .lintignore ├── .markdownlint-cli2.mjs ├── .npmrc ├── .vale.ini ├── .vscode ├── extensions.json └── settings.json ├── AGENTS.md ├── CHANGELOG.md ├── CHANGELOG.old.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── babel.config.mjs ├── codecov.yml ├── docs ├── .env ├── .link-check-errors.txt ├── README.md ├── next.config.mjs ├── package.json ├── postcss.config.js ├── public │ ├── _headers │ ├── _redirects │ ├── robots.txt │ └── static │ │ ├── apple-touch-icon.png │ │ ├── favicon-dev.ico │ │ ├── favicon-dev.svg │ │ ├── favicon.ico │ │ ├── favicon.svg │ │ └── logo.svg ├── reference │ └── generated │ │ ├── accordion-header.json │ │ ├── accordion-item.json │ │ ├── accordion-panel.json │ │ ├── accordion-root.json │ │ ├── accordion-trigger.json │ │ ├── alert-dialog-backdrop.json │ │ ├── alert-dialog-close.json │ │ ├── alert-dialog-description.json │ │ ├── alert-dialog-popup.json │ │ ├── alert-dialog-portal.json │ │ ├── alert-dialog-root.json │ │ ├── alert-dialog-title.json │ │ ├── alert-dialog-trigger.json │ │ ├── alert-dialog-viewport.json │ │ ├── autocomplete-root.json │ │ ├── autocomplete-value.json │ │ ├── avatar-fallback.json │ │ ├── avatar-image.json │ │ ├── avatar-root.json │ │ ├── button.json │ │ ├── checkbox-group.json │ │ ├── checkbox-indicator.json │ │ ├── checkbox-root.json │ │ ├── collapsible-panel.json │ │ ├── collapsible-root.json │ │ ├── collapsible-trigger.json │ │ ├── combobox-arrow.json │ │ ├── combobox-backdrop.json │ │ ├── combobox-chip-remove.json │ │ ├── combobox-chip.json │ │ ├── combobox-chips.json │ │ ├── combobox-clear.json │ │ ├── combobox-collection.json │ │ ├── combobox-empty.json │ │ ├── combobox-group-label.json │ │ ├── combobox-group.json │ │ ├── combobox-icon.json │ │ ├── combobox-input.json │ │ ├── combobox-item-indicator.json │ │ ├── combobox-item.json │ │ ├── combobox-list.json │ │ ├── combobox-popup.json │ │ ├── combobox-portal.json │ │ ├── combobox-positioner.json │ │ ├── combobox-root.json │ │ ├── combobox-row.json │ │ ├── combobox-status.json │ │ ├── combobox-trigger.json │ │ ├── combobox-value.json │ │ ├── context-menu-root.json │ │ ├── context-menu-trigger.json │ │ ├── dialog-backdrop.json │ │ ├── dialog-close.json │ │ ├── dialog-description.json │ │ ├── dialog-popup.json │ │ ├── dialog-portal.json │ │ ├── dialog-root.json │ │ ├── dialog-title.json │ │ ├── dialog-trigger.json │ │ ├── dialog-viewport.json │ │ ├── direction-provider.json │ │ ├── field-control.json │ │ ├── field-description.json │ │ ├── field-error.json │ │ ├── field-item.json │ │ ├── field-label.json │ │ ├── field-root.json │ │ ├── field-validity.json │ │ ├── fieldset-legend.json │ │ ├── fieldset-root.json │ │ ├── form.json │ │ ├── group-collection-provider.json │ │ ├── input.json │ │ ├── menu-arrow.json │ │ ├── menu-backdrop.json │ │ ├── menu-checkbox-item-indicator.json │ │ ├── menu-checkbox-item.json │ │ ├── menu-group-label.json │ │ ├── menu-group.json │ │ ├── menu-item.json │ │ ├── menu-popup.json │ │ ├── menu-portal.json │ │ ├── menu-positioner.json │ │ ├── menu-radio-group.json │ │ ├── menu-radio-item-indicator.json │ │ ├── menu-radio-item.json │ │ ├── menu-root.json │ │ ├── menu-submenu-root.json │ │ ├── menu-submenu-trigger.json │ │ ├── menu-trigger.json │ │ ├── menubar.json │ │ ├── meter-indicator.json │ │ ├── meter-label.json │ │ ├── meter-root.json │ │ ├── meter-track.json │ │ ├── meter-value.json │ │ ├── navigation-menu-arrow.json │ │ ├── navigation-menu-backdrop.json │ │ ├── navigation-menu-content.json │ │ ├── navigation-menu-icon.json │ │ ├── navigation-menu-item.json │ │ ├── navigation-menu-link.json │ │ ├── navigation-menu-list.json │ │ ├── navigation-menu-popup.json │ │ ├── navigation-menu-portal.json │ │ ├── navigation-menu-positioner.json │ │ ├── navigation-menu-root.json │ │ ├── navigation-menu-trigger.json │ │ ├── navigation-menu-viewport.json │ │ ├── number-field-decrement.json │ │ ├── number-field-group.json │ │ ├── number-field-increment.json │ │ ├── number-field-input.json │ │ ├── number-field-root.json │ │ ├── number-field-scrub-area-cursor.json │ │ ├── number-field-scrub-area.json │ │ ├── popover-arrow.json │ │ ├── popover-backdrop.json │ │ ├── popover-close.json │ │ ├── popover-description.json │ │ ├── popover-popup.json │ │ ├── popover-portal.json │ │ ├── popover-positioner.json │ │ ├── popover-root.json │ │ ├── popover-title.json │ │ ├── popover-trigger.json │ │ ├── popover-viewport.json │ │ ├── preview-card-arrow.json │ │ ├── preview-card-backdrop.json │ │ ├── preview-card-popup.json │ │ ├── preview-card-portal.json │ │ ├── preview-card-positioner.json │ │ ├── preview-card-root.json │ │ ├── preview-card-trigger.json │ │ ├── progress-indicator.json │ │ ├── progress-label.json │ │ ├── progress-root.json │ │ ├── progress-track.json │ │ ├── progress-value.json │ │ ├── radio-group.json │ │ ├── radio-indicator.json │ │ ├── radio-root.json │ │ ├── scroll-area-content.json │ │ ├── scroll-area-corner.json │ │ ├── scroll-area-root.json │ │ ├── scroll-area-scrollbar.json │ │ ├── scroll-area-thumb.json │ │ ├── scroll-area-viewport.json │ │ ├── select-arrow.json │ │ ├── select-backdrop.json │ │ ├── select-group-label.json │ │ ├── select-group.json │ │ ├── select-icon.json │ │ ├── select-item-indicator.json │ │ ├── select-item-text.json │ │ ├── select-item.json │ │ ├── select-list.json │ │ ├── select-popup.json │ │ ├── select-portal.json │ │ ├── select-positioner.json │ │ ├── select-root.json │ │ ├── select-scroll-down-arrow.json │ │ ├── select-scroll-up-arrow.json │ │ ├── select-trigger.json │ │ ├── select-value.json │ │ ├── separator.json │ │ ├── slider-control.json │ │ ├── slider-indicator.json │ │ ├── slider-root.json │ │ ├── slider-thumb.json │ │ ├── slider-track.json │ │ ├── slider-value.json │ │ ├── switch-root.json │ │ ├── switch-thumb.json │ │ ├── tabs-indicator.json │ │ ├── tabs-list.json │ │ ├── tabs-panel.json │ │ ├── tabs-root.json │ │ ├── tabs-tab.json │ │ ├── toast-action.json │ │ ├── toast-arrow.json │ │ ├── toast-close.json │ │ ├── toast-content.json │ │ ├── toast-description.json │ │ ├── toast-portal.json │ │ ├── toast-positioner.json │ │ ├── toast-provider.json │ │ ├── toast-root.json │ │ ├── toast-title.json │ │ ├── toast-viewport.json │ │ ├── toggle-group.json │ │ ├── toggle.json │ │ ├── toolbar-button.json │ │ ├── toolbar-group.json │ │ ├── toolbar-input.json │ │ ├── toolbar-link.json │ │ ├── toolbar-root.json │ │ ├── toolbar-separator.json │ │ ├── tooltip-arrow.json │ │ ├── tooltip-popup.json │ │ ├── tooltip-portal.json │ │ ├── tooltip-positioner.json │ │ ├── tooltip-provider.json │ │ ├── tooltip-root.json │ │ ├── tooltip-trigger.json │ │ ├── tooltip-viewport.json │ │ └── use-render.json ├── scripts │ ├── generateLlmTxt │ │ ├── __snapshots__ │ │ │ └── mdxToMarkdown.test.mjs.snap │ │ ├── demoProcessor.mjs │ │ ├── index.mjs │ │ ├── mdxNodeHelpers.mjs │ │ ├── mdxToMarkdown.mjs │ │ ├── mdxToMarkdown.test.mjs │ │ ├── propsReferenceTableProcessor.mjs │ │ ├── referenceProcessor.mjs │ │ └── resolver.mjs │ ├── playground.template.tsx │ ├── rehypeExtractLinkUrls.mts │ └── reportBrokenLinks.mts ├── src │ ├── app │ │ ├── (private) │ │ │ ├── experiments │ │ │ │ ├── [...slug] │ │ │ │ │ └── page.tsx │ │ │ │ ├── accordion │ │ │ │ │ ├── animations.module.css │ │ │ │ │ ├── animations.tsx │ │ │ │ │ ├── horizontal.module.css │ │ │ │ │ ├── horizontal.tsx │ │ │ │ │ ├── transitions.module.css │ │ │ │ │ └── transitions.tsx │ │ │ │ ├── anchor-positioning.module.css │ │ │ │ ├── anchor-positioning.tsx │ │ │ │ ├── anchor-side-animations.module.css │ │ │ │ ├── anchor-side-animations.tsx │ │ │ │ ├── collapsible │ │ │ │ │ ├── _icons.tsx │ │ │ │ │ ├── animate-presence.tsx │ │ │ │ │ ├── animations.module.css │ │ │ │ │ ├── animations.tsx │ │ │ │ │ ├── collapsible.module.css │ │ │ │ │ ├── motion.module.css │ │ │ │ │ ├── plain.tsx │ │ │ │ │ ├── transitions.module.css │ │ │ │ │ └── transitions.tsx │ │ │ │ ├── combobox-composition.tsx │ │ │ │ ├── combobox-perf.module.css │ │ │ │ ├── combobox-perf.tsx │ │ │ │ ├── combobox │ │ │ │ │ ├── dialog-combobox-multiple.tsx │ │ │ │ │ ├── dialog-combobox.module.css │ │ │ │ │ ├── dialog-combobox.tsx │ │ │ │ │ └── priority-combobox.tsx │ │ │ │ ├── context-menu.tsx │ │ │ │ ├── dialog │ │ │ │ │ ├── dialog.module.css │ │ │ │ │ ├── dialogs.tsx │ │ │ │ │ ├── nested.module.css │ │ │ │ │ └── nested.tsx │ │ │ │ ├── forms │ │ │ │ │ ├── _icons.tsx │ │ │ │ │ ├── button-controls.tsx │ │ │ │ │ ├── form.module.css │ │ │ │ │ ├── form.tsx │ │ │ │ │ └── rhf.tsx │ │ │ │ ├── long-select.module.css │ │ │ │ ├── long-select.tsx │ │ │ │ ├── menu │ │ │ │ │ ├── complex-nesting.tsx │ │ │ │ │ ├── menu-anchor-el.tsx │ │ │ │ │ ├── menu-anchor-ref.tsx │ │ │ │ │ ├── menu-disabled-items.tsx │ │ │ │ │ ├── menu-fully-featured.tsx │ │ │ │ │ ├── menu-horizontal.module.css │ │ │ │ │ ├── menu-horizontal.tsx │ │ │ │ │ ├── menu-nested.module.css │ │ │ │ │ ├── menu-nested.tsx │ │ │ │ │ ├── menu.module.css │ │ │ │ │ ├── nested-detached-triggers.module.css │ │ │ │ │ ├── nested-detached-triggers.tsx │ │ │ │ │ ├── perf-contained.tsx │ │ │ │ │ ├── perf-detached.tsx │ │ │ │ │ ├── triggers.module.css │ │ │ │ │ └── triggers.tsx │ │ │ │ ├── menubar.module.css │ │ │ │ ├── menubar.tsx │ │ │ │ ├── meter.module.css │ │ │ │ ├── meter.tsx │ │ │ │ ├── mobile-scroll-lock.module.css │ │ │ │ ├── mobile-scroll-lock.tsx │ │ │ │ ├── modality.module.css │ │ │ │ ├── modality.tsx │ │ │ │ ├── motion.tsx │ │ │ │ ├── navigation-menu-popups.tsx │ │ │ │ ├── navigation-menu.module.css │ │ │ │ ├── navigation-menu.tsx │ │ │ │ ├── page.tsx │ │ │ │ ├── perf │ │ │ │ │ ├── contained-triggers.tsx │ │ │ │ │ ├── detached-triggers.tsx │ │ │ │ │ ├── perf.module.css │ │ │ │ │ ├── radix-triggers.tsx │ │ │ │ │ └── utils │ │ │ │ │ │ └── benchmark.tsx │ │ │ │ ├── popover │ │ │ │ │ ├── calendar-shared.ts │ │ │ │ │ ├── calendar.module.css │ │ │ │ │ ├── calendar.tsx │ │ │ │ │ ├── dynamic-size.tsx │ │ │ │ │ ├── popovers.module.css │ │ │ │ │ ├── popovers.tsx │ │ │ │ │ ├── vertical-shared.ts │ │ │ │ │ ├── vertical.module.css │ │ │ │ │ └── vertical.tsx │ │ │ │ ├── popups │ │ │ │ │ ├── popups-in-popups.module.css │ │ │ │ │ ├── popups-in-popups.tsx │ │ │ │ │ ├── popups-transform-origin.module.css │ │ │ │ │ └── popups-transform-origin.tsx │ │ │ │ ├── rtl.module.css │ │ │ │ ├── rtl.tsx │ │ │ │ ├── scroll-area │ │ │ │ │ ├── inside-menu.module.css │ │ │ │ │ ├── inside-menu.tsx │ │ │ │ │ ├── inside-select.module.css │ │ │ │ │ ├── inside-select.tsx │ │ │ │ │ ├── scroll-area-inset.module.css │ │ │ │ │ ├── scroll-area-inset.tsx │ │ │ │ │ ├── scroll-area-slight.module.css │ │ │ │ │ ├── scroll-area-slight.tsx │ │ │ │ │ ├── scroll-area.module.css │ │ │ │ │ └── scroll-area.tsx │ │ │ │ ├── scroll-lock.tsx │ │ │ │ ├── select-perf.module.css │ │ │ │ ├── select-perf.tsx │ │ │ │ ├── slider │ │ │ │ │ ├── inset.tsx │ │ │ │ │ ├── slider.module.css │ │ │ │ │ ├── slider.tsx │ │ │ │ │ ├── small.module.css │ │ │ │ │ └── vertical.module.css │ │ │ │ ├── storeWithControlledValues.tsx │ │ │ │ ├── tabs-overflow.module.css │ │ │ │ ├── tabs-overflow.tsx │ │ │ │ ├── tabs.module.css │ │ │ │ ├── tabs.tsx │ │ │ │ ├── toast.module.css │ │ │ │ ├── toast.tsx │ │ │ │ ├── toggle-group.tsx │ │ │ │ ├── toggle.module.css │ │ │ │ ├── toolbar │ │ │ │ │ ├── _icons.tsx │ │ │ │ │ ├── basic.tsx │ │ │ │ │ ├── slider.module.css │ │ │ │ │ ├── text-editor.tsx │ │ │ │ │ ├── toolbar.module.css │ │ │ │ │ ├── triggers.module.css │ │ │ │ │ └── triggers.tsx │ │ │ │ └── tooltip │ │ │ │ │ ├── prevent-open.tsx │ │ │ │ │ ├── tooltips.module.css │ │ │ │ │ ├── tooltips.tsx │ │ │ │ │ ├── transitions.module.css │ │ │ │ │ └── transitions.tsx │ │ │ ├── layout.css │ │ │ ├── layout.tsx │ │ │ └── playground │ │ │ │ └── [slug] │ │ │ │ └── page.tsx │ │ ├── (public) │ │ │ ├── (content) │ │ │ │ ├── layout.css │ │ │ │ ├── layout.tsx │ │ │ │ ├── production-error │ │ │ │ │ ├── ErrorCode.tsx │ │ │ │ │ ├── ErrorDisplay.tsx │ │ │ │ │ └── page.mdx │ │ │ │ ├── react │ │ │ │ │ ├── components │ │ │ │ │ │ ├── accordion │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ ├── _index.module.css │ │ │ │ │ │ │ │ ├── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── multiple │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── alert-dialog │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ ├── _index.module.css │ │ │ │ │ │ │ │ ├── detached-triggers-controlled │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── detached-triggers-simple │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── autocomplete │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── auto-highlight │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── fuzzy-matching │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── grid │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── grouped │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── inline │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── limit │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── virtualized │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── avatar │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ └── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── button │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ ├── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── loading │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── checkbox-group │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ ├── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── nested │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ └── parent │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── checkbox │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ └── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── collapsible │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ └── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── combobox │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ ├── async-multiple │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── async-single │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── creatable │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── grouped │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── input-inside-popup │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── multiple │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── virtualized │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── context-menu │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ ├── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── submenu │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── dialog │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ ├── _index.module.css │ │ │ │ │ │ │ │ ├── close-confirmation │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── detached-triggers-controlled │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── detached-triggers-simple │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── inside-scroll │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── nested │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── outside-scroll │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── uncontained │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── field │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ └── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── fieldset │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ └── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ ├── form-action │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── zod │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ └── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── menu │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ ├── _index.module.css │ │ │ │ │ │ │ │ ├── checkbox-items │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── detached-triggers-controlled │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── detached-triggers-simple │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── group-labels │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── open-on-hover │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── radio-items │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── submenu │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── menubar │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ └── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── meter │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ └── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── navigation-menu │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ ├── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── nested │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── number-field │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ └── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── popover │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ ├── _index.module.css │ │ │ │ │ │ │ │ ├── detached-triggers-controlled │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── detached-triggers-full │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── detached-triggers-simple │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── icons-tw.tsx │ │ │ │ │ │ │ │ └── open-on-hover │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── preview-card │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ └── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── progress │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ └── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── radio │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ └── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── scroll-area │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ ├── both │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── scroll-fade │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── select │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ ├── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── multiple │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── object-values │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── separator │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ └── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── slider │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ ├── edge-alignment │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── range-slider │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── switch │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ └── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── tabs │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ └── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── toast │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ ├── anchored │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── custom │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ ├── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── position │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── promise │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ ├── undo │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ └── varying-heights │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── toggle-group │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ └── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── toggle │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ └── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── toolbar │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ └── hero │ │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ └── tooltip │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ ├── detached-triggers-controlled │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── detached-triggers-full │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── detached-triggers-simple │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── hero │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── icons-tw.tsx │ │ │ │ │ │ │ └── index.module.css │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ ├── handbook │ │ │ │ │ │ ├── animation │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── composition │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── customization │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── forms │ │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ │ ├── autocomplete.tsx │ │ │ │ │ │ │ │ │ ├── button.tsx │ │ │ │ │ │ │ │ │ ├── checkbox-group.tsx │ │ │ │ │ │ │ │ │ ├── checkbox.tsx │ │ │ │ │ │ │ │ │ ├── combobox.tsx │ │ │ │ │ │ │ │ │ ├── field.tsx │ │ │ │ │ │ │ │ │ ├── fieldset.tsx │ │ │ │ │ │ │ │ │ ├── form.tsx │ │ │ │ │ │ │ │ │ ├── number-field.tsx │ │ │ │ │ │ │ │ │ ├── radio-group.tsx │ │ │ │ │ │ │ │ │ ├── radio.tsx │ │ │ │ │ │ │ │ │ ├── select.tsx │ │ │ │ │ │ │ │ │ ├── slider.tsx │ │ │ │ │ │ │ │ │ ├── switch.tsx │ │ │ │ │ │ │ │ │ └── toast.tsx │ │ │ │ │ │ │ │ ├── hero │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── react-hook-form │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── tanstack-form │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── styling │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ └── typescript │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ ├── overview │ │ │ │ │ │ ├── about │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── accessibility │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ ├── quick-start │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ └── releases │ │ │ │ │ │ │ └── page.mdx │ │ │ │ │ └── utils │ │ │ │ │ │ ├── direction-provider │ │ │ │ │ │ ├── demos │ │ │ │ │ │ │ └── hero │ │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── tailwind │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── page.mdx │ │ │ │ │ │ └── use-render │ │ │ │ │ │ ├── demos │ │ │ │ │ │ ├── render-callback │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── render │ │ │ │ │ │ │ ├── css-modules │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── page.mdx │ │ │ │ └── test │ │ │ │ │ └── quick-nav │ │ │ │ │ └── page.mdx │ │ │ ├── careers │ │ │ │ └── design-engineer │ │ │ │ │ └── page.tsx │ │ │ ├── layout.css │ │ │ ├── layout.tsx │ │ │ ├── opengraph-image.png │ │ │ ├── page.css │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── not-found.css │ │ └── not-found.tsx │ ├── blocks │ │ ├── Demo │ │ │ ├── DemoContext.ts │ │ │ ├── DemoPlayground.tsx │ │ │ ├── DemoRoot.tsx │ │ │ ├── DemoSourceBrowser.tsx │ │ │ ├── DemoSourceCopy.tsx │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── GoogleAnalytics.tsx │ │ ├── GoogleTagManager.tsx │ │ ├── PackageManagerSnippet │ │ │ ├── PackageManagerSnippetCode.tsx │ │ │ ├── PackageManagerSnippetProvider.tsx │ │ │ ├── PackageManagerSnippetRoot.tsx │ │ │ └── index.ts │ │ ├── README.txt │ │ └── createCodeSandbox │ │ │ ├── CreateReactApp.ts │ │ │ ├── addHiddenInput.ts │ │ │ ├── createCodeSandbox.ts │ │ │ ├── createStackBlitzProject.ts │ │ │ ├── flattenRelativeImports.ts │ │ │ ├── packDemo.test.ts │ │ │ └── packDemo.ts │ ├── breakpoints.css │ ├── components │ │ ├── Accordion.css │ │ ├── Accordion.tsx │ │ ├── Code.css │ │ ├── Code.tsx │ │ ├── CodeBlock.css │ │ ├── CodeBlock.tsx │ │ ├── Demo │ │ │ ├── CodeHighlighting.css │ │ │ ├── Demo.css │ │ │ ├── Demo.tsx │ │ │ ├── DemoCodeBlock.tsx │ │ │ ├── DemoErrorFallback.tsx │ │ │ ├── DemoFileSelector.tsx │ │ │ ├── DemoPlayground.tsx │ │ │ ├── DemoVariantSelector.tsx │ │ │ └── DemoVariantSelectorProvider.tsx │ │ ├── DescriptionList.css │ │ ├── DescriptionList.tsx │ │ ├── DocsProviders.tsx │ │ ├── Experiments │ │ │ ├── Button.module.css │ │ │ ├── Button.tsx │ │ │ ├── EditPanel.tsx │ │ │ ├── ExperimentRoot.module.css │ │ │ ├── ExperimentRoot.tsx │ │ │ ├── ExperimentsList.module.css │ │ │ ├── ExperimentsList.tsx │ │ │ ├── HideSidebar.tsx │ │ │ ├── Input.module.css │ │ │ ├── Input.tsx │ │ │ ├── SandboxLink.tsx │ │ │ ├── Select.module.css │ │ │ ├── Select.tsx │ │ │ ├── SettingsPanel.module.css │ │ │ ├── SettingsPanel.tsx │ │ │ ├── ShowSidebar.module.css │ │ │ ├── ShowSidebar.tsx │ │ │ ├── Sidebar.module.css │ │ │ ├── Sidebar.tsx │ │ │ ├── Switch.module.css │ │ │ ├── Switch.tsx │ │ │ ├── Tooltip.module.css │ │ │ └── Tooltip.tsx │ │ ├── GhostButton.css │ │ ├── GhostButton.tsx │ │ ├── GoogleAnalytics.tsx │ │ ├── Header.css │ │ ├── Header.tsx │ │ ├── HeadingLink.css │ │ ├── HeadingLink.tsx │ │ ├── Kbd │ │ │ ├── Kbd.css │ │ │ ├── Kbd.tsx │ │ │ └── rehypeKbd.mjs │ │ ├── Link.css │ │ ├── Link.tsx │ │ ├── Logo.tsx │ │ ├── MobileNav.css │ │ ├── MobileNav.tsx │ │ ├── Popup.css │ │ ├── Popup.tsx │ │ ├── QuickNav │ │ │ ├── QuickNav.css │ │ │ ├── QuickNav.tsx │ │ │ ├── rehypeConcatHeadings.mjs │ │ │ ├── rehypeQuickNav.mjs │ │ │ └── rehypeSlug.mjs │ │ ├── ReferenceTable │ │ │ ├── AttributesReferenceTable.tsx │ │ │ ├── CssVariablesReferenceTable.tsx │ │ │ ├── PropsReferenceAccordion.tsx │ │ │ ├── ReferenceTableTooltip.tsx │ │ │ ├── rehypeReference.mjs │ │ │ └── types.ts │ │ ├── ScrollArea.css │ │ ├── ScrollArea.tsx │ │ ├── Select.css │ │ ├── Select.tsx │ │ ├── SideNav.css │ │ ├── SideNav.tsx │ │ ├── SkipNav.css │ │ ├── SkipNav.tsx │ │ ├── Subtitle │ │ │ ├── MarkdownLink.css │ │ │ ├── MarkdownLink.tsx │ │ │ ├── Subtitle.css │ │ │ ├── Subtitle.tsx │ │ │ └── rehypeSubtitle.mjs │ │ ├── Table.css │ │ ├── Table.tsx │ │ └── TableCode.tsx │ ├── demo-data │ │ └── theme │ │ │ ├── css-modules │ │ │ ├── index.ts │ │ │ └── theme.css │ │ │ └── index.ts │ ├── demo-theme.css │ ├── error-codes.json │ ├── fonts │ │ ├── bold.woff2 │ │ ├── index.css │ │ ├── medium.woff2 │ │ └── regular.woff2 │ ├── icons │ │ ├── ArrowRightIcon.tsx │ │ ├── CheckIcon.tsx │ │ ├── ChevronDownIcon.tsx │ │ ├── CopyIcon.tsx │ │ ├── ExternalLinkIcon.tsx │ │ ├── GitHubIcon.tsx │ │ ├── MarkdownIcon.tsx │ │ ├── NpmIcon.tsx │ │ └── ThickCheckIcon.tsx │ ├── mdx-components.tsx │ ├── mdx │ │ ├── createHast.mjs │ │ ├── createMdxComponent.ts │ │ └── createMdxElement.mjs │ ├── nav.ts │ ├── styles.css │ ├── syntax-highlighting │ │ ├── index.css │ │ ├── index.mjs │ │ ├── index.ts │ │ ├── rehypeEmptyLines.mjs │ │ ├── rehypeInlineCode.mjs │ │ ├── rehypeJsxExpressions.mjs │ │ └── rehypePrettierIgnore.mjs │ └── utils │ │ ├── camelToSentenceCase.ts │ │ ├── createDemo.ts │ │ ├── demoExportOptions.ts │ │ ├── getChildrenText.ts │ │ └── observeScrollableInner.ts ├── tsconfig.json ├── types.d.ts └── vitest.config.mts ├── eslint.config.mjs ├── examples └── vite-css │ ├── .gitignore │ ├── README.md │ ├── eslint.config.js │ ├── index.html │ ├── package.json │ ├── src │ ├── App.css │ ├── App.tsx │ ├── assets │ │ ├── base-ui.svg │ │ ├── react.svg │ │ └── vite.svg │ ├── index.css │ ├── main.tsx │ ├── vite-env.d.ts │ └── widgets │ │ ├── Switch.module.css │ │ └── Switch.tsx │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── lerna.json ├── netlify.toml ├── netlify └── functions │ └── deploy-succeeded.js ├── nx.json ├── package.json ├── packages ├── react │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── accordion │ │ │ ├── header │ │ │ │ ├── AccordionHeader.test.tsx │ │ │ │ ├── AccordionHeader.tsx │ │ │ │ └── AccordionHeaderDataAttributes.ts │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── item │ │ │ │ ├── AccordionItem.test.tsx │ │ │ │ ├── AccordionItem.tsx │ │ │ │ ├── AccordionItemContext.ts │ │ │ │ ├── AccordionItemDataAttributes.ts │ │ │ │ └── stateAttributesMapping.ts │ │ │ ├── panel │ │ │ │ ├── AccordionPanel.test.tsx │ │ │ │ ├── AccordionPanel.tsx │ │ │ │ ├── AccordionPanelCssVars.ts │ │ │ │ └── AccordionPanelDataAttributes.ts │ │ │ ├── root │ │ │ │ ├── AccordionRoot.test.tsx │ │ │ │ ├── AccordionRoot.tsx │ │ │ │ ├── AccordionRootContext.ts │ │ │ │ └── AccordionRootDataAttributes.ts │ │ │ └── trigger │ │ │ │ ├── AccordionTrigger.test.tsx │ │ │ │ ├── AccordionTrigger.tsx │ │ │ │ └── AccordionTriggerDataAttributes.ts │ │ ├── alert-dialog │ │ │ ├── handle.ts │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ └── root │ │ │ │ ├── AlertDialogRoot.spec.tsx │ │ │ │ ├── AlertDialogRoot.test.tsx │ │ │ │ └── AlertDialogRoot.tsx │ │ ├── autocomplete │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── item │ │ │ │ └── AutocompleteItem.test.tsx │ │ │ ├── root │ │ │ │ ├── AutocompleteRoot.spec.tsx │ │ │ │ ├── AutocompleteRoot.test.tsx │ │ │ │ └── AutocompleteRoot.tsx │ │ │ └── value │ │ │ │ ├── AutocompleteValue.test.tsx │ │ │ │ └── AutocompleteValue.tsx │ │ ├── avatar │ │ │ ├── fallback │ │ │ │ ├── AvatarFallback.test.tsx │ │ │ │ └── AvatarFallback.tsx │ │ │ ├── image │ │ │ │ ├── AvatarImage.test.tsx │ │ │ │ ├── AvatarImage.tsx │ │ │ │ └── useImageLoadingStatus.ts │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ └── root │ │ │ │ ├── AvatarRoot.test.tsx │ │ │ │ ├── AvatarRoot.tsx │ │ │ │ ├── AvatarRootContext.ts │ │ │ │ └── stateAttributesMapping.ts │ │ ├── button │ │ │ ├── Button.spec.tsx │ │ │ ├── Button.test.tsx │ │ │ ├── Button.tsx │ │ │ ├── ButtonDataAttributes.tsx │ │ │ └── index.ts │ │ ├── checkbox-group │ │ │ ├── CheckboxGroup.test.tsx │ │ │ ├── CheckboxGroup.tsx │ │ │ ├── CheckboxGroupContext.ts │ │ │ ├── CheckboxGroupDataAttributes.ts │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── useCheckboxGroupParent.test.tsx │ │ │ └── useCheckboxGroupParent.ts │ │ ├── checkbox │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── indicator │ │ │ │ ├── CheckboxIndicator.test.tsx │ │ │ │ ├── CheckboxIndicator.tsx │ │ │ │ └── CheckboxIndicatorDataAttributes.ts │ │ │ ├── root │ │ │ │ ├── CheckboxRoot.test.tsx │ │ │ │ ├── CheckboxRoot.tsx │ │ │ │ ├── CheckboxRootContext.ts │ │ │ │ └── CheckboxRootDataAttributes.ts │ │ │ └── utils │ │ │ │ └── useStateAttributesMapping.ts │ │ ├── collapsible │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── panel │ │ │ │ ├── CollapsiblePanel.test.tsx │ │ │ │ ├── CollapsiblePanel.tsx │ │ │ │ ├── CollapsiblePanelCssVars.ts │ │ │ │ ├── CollapsiblePanelDataAttributes.ts │ │ │ │ └── useCollapsiblePanel.ts │ │ │ ├── root │ │ │ │ ├── CollapsibleRoot.test.tsx │ │ │ │ ├── CollapsibleRoot.tsx │ │ │ │ ├── CollapsibleRootContext.ts │ │ │ │ ├── stateAttributesMapping.ts │ │ │ │ └── useCollapsibleRoot.ts │ │ │ └── trigger │ │ │ │ ├── CollapsibleTrigger.test.tsx │ │ │ │ ├── CollapsibleTrigger.tsx │ │ │ │ └── CollapsibleTriggerDataAttributes.ts │ │ ├── combobox │ │ │ ├── arrow │ │ │ │ ├── ComboboxArrow.test.tsx │ │ │ │ ├── ComboboxArrow.tsx │ │ │ │ └── ComboboxArrowDataAttributes.ts │ │ │ ├── backdrop │ │ │ │ ├── ComboboxBackdrop.test.tsx │ │ │ │ ├── ComboboxBackdrop.tsx │ │ │ │ └── ComboboxBackdropDataAttributes.ts │ │ │ ├── chip-remove │ │ │ │ ├── ComboboxChipRemove.test.tsx │ │ │ │ └── ComboboxChipRemove.tsx │ │ │ ├── chip │ │ │ │ ├── ComboboxChip.test.tsx │ │ │ │ ├── ComboboxChip.tsx │ │ │ │ └── ComboboxChipContext.ts │ │ │ ├── chips │ │ │ │ ├── ComboboxChips.test.tsx │ │ │ │ ├── ComboboxChips.tsx │ │ │ │ └── ComboboxChipsContext.ts │ │ │ ├── clear │ │ │ │ ├── ComboboxClear.test.tsx │ │ │ │ ├── ComboboxClear.tsx │ │ │ │ └── ComboboxClearDataAtributes.ts │ │ │ ├── collection │ │ │ │ ├── ComboboxCollection.test.tsx │ │ │ │ ├── ComboboxCollection.tsx │ │ │ │ └── GroupCollectionContext.tsx │ │ │ ├── empty │ │ │ │ ├── ComboboxEmpty.test.tsx │ │ │ │ └── ComboboxEmpty.tsx │ │ │ ├── group-label │ │ │ │ ├── ComboboxGroupLabel.test.tsx │ │ │ │ └── ComboboxGroupLabel.tsx │ │ │ ├── group │ │ │ │ ├── ComboboxGroup.test.tsx │ │ │ │ ├── ComboboxGroup.tsx │ │ │ │ └── ComboboxGroupContext.ts │ │ │ ├── icon │ │ │ │ ├── ComboboxIcon.test.tsx │ │ │ │ └── ComboboxIcon.tsx │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── input │ │ │ │ ├── ComboboxInput.test.tsx │ │ │ │ ├── ComboboxInput.tsx │ │ │ │ └── ComboboxInputDataAttributes.ts │ │ │ ├── item-indicator │ │ │ │ ├── ComboboxItemIndicator.test.tsx │ │ │ │ └── ComboboxItemIndicator.tsx │ │ │ ├── item │ │ │ │ ├── ComboboxItem.test.tsx │ │ │ │ ├── ComboboxItem.tsx │ │ │ │ ├── ComboboxItemContext.ts │ │ │ │ └── ComboboxtemDataAttributes.ts │ │ │ ├── list │ │ │ │ ├── ComboboxList.test.tsx │ │ │ │ └── ComboboxList.tsx │ │ │ ├── popup │ │ │ │ ├── ComboboxPopup.test.tsx │ │ │ │ ├── ComboboxPopup.tsx │ │ │ │ └── ComboboxPopupDataAttributes.ts │ │ │ ├── portal │ │ │ │ ├── ComboboxPortal.test.tsx │ │ │ │ ├── ComboboxPortal.tsx │ │ │ │ └── ComboboxPortalContext.tsx │ │ │ ├── positioner │ │ │ │ ├── ComboboxPositioner.test.tsx │ │ │ │ ├── ComboboxPositioner.tsx │ │ │ │ ├── ComboboxPositionerContext.tsx │ │ │ │ ├── ComboboxPositionerCssVars.ts │ │ │ │ └── ComboboxPositionerDataAttributes.ts │ │ │ ├── root │ │ │ │ ├── AriaCombobox.tsx │ │ │ │ ├── ComboboxRoot.spec.tsx │ │ │ │ ├── ComboboxRoot.test.tsx │ │ │ │ ├── ComboboxRoot.tsx │ │ │ │ ├── ComboboxRootContext.tsx │ │ │ │ └── utils │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── useFilter.ts │ │ │ ├── row │ │ │ │ ├── ComboboxRow.tsx │ │ │ │ └── ComboboxRowContext.ts │ │ │ ├── status │ │ │ │ ├── ComboboxStatus.test.tsx │ │ │ │ └── ComboboxStatus.tsx │ │ │ ├── store.ts │ │ │ ├── trigger │ │ │ │ ├── ComboboxTrigger.test.tsx │ │ │ │ ├── ComboboxTrigger.tsx │ │ │ │ └── ComboboxTriggerDataAttributes.ts │ │ │ └── value │ │ │ │ ├── ComboboxValue.test.tsx │ │ │ │ └── ComboboxValue.tsx │ │ ├── composite │ │ │ ├── composite.ts │ │ │ ├── constants.ts │ │ │ ├── item │ │ │ │ ├── CompositeItem.tsx │ │ │ │ └── useCompositeItem.ts │ │ │ ├── list │ │ │ │ ├── CompositeList.test.tsx │ │ │ │ ├── CompositeList.tsx │ │ │ │ ├── CompositeListContext.ts │ │ │ │ └── useCompositeListItem.ts │ │ │ └── root │ │ │ │ ├── CompositeRoot.test.tsx │ │ │ │ ├── CompositeRoot.tsx │ │ │ │ ├── CompositeRootContext.ts │ │ │ │ └── useCompositeRoot.ts │ │ ├── context-menu │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── root │ │ │ │ ├── ContextMenuRoot.test.tsx │ │ │ │ ├── ContextMenuRoot.tsx │ │ │ │ └── ContextMenuRootContext.ts │ │ │ └── trigger │ │ │ │ ├── ContextMenuTrigger.test.tsx │ │ │ │ ├── ContextMenuTrigger.tsx │ │ │ │ └── ContextMenuTriggerDataAttributes.ts │ │ ├── dialog │ │ │ ├── backdrop │ │ │ │ ├── DialogBackdrop.test.tsx │ │ │ │ ├── DialogBackdrop.tsx │ │ │ │ └── DialogBackdropDataAttributes.ts │ │ │ ├── close │ │ │ │ ├── DialogClose.test.tsx │ │ │ │ ├── DialogClose.tsx │ │ │ │ └── DialogCloseDataAttributes.ts │ │ │ ├── description │ │ │ │ ├── DialogDescription.test.tsx │ │ │ │ └── DialogDescription.tsx │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── popup │ │ │ │ ├── DialogPopup.test.tsx │ │ │ │ ├── DialogPopup.tsx │ │ │ │ ├── DialogPopupCssVars.ts │ │ │ │ └── DialogPopupDataAttributes.ts │ │ │ ├── portal │ │ │ │ ├── DialogPortal.test.tsx │ │ │ │ ├── DialogPortal.tsx │ │ │ │ └── DialogPortalContext.ts │ │ │ ├── root │ │ │ │ ├── DialogRoot.spec.tsx │ │ │ │ ├── DialogRoot.test.tsx │ │ │ │ ├── DialogRoot.tsx │ │ │ │ ├── DialogRootContext.ts │ │ │ │ └── useDialogRoot.ts │ │ │ ├── store │ │ │ │ ├── DialogHandle.ts │ │ │ │ └── DialogStore.ts │ │ │ ├── title │ │ │ │ ├── DialogTitle.test.tsx │ │ │ │ └── DialogTitle.tsx │ │ │ ├── trigger │ │ │ │ ├── DialogTrigger.test.tsx │ │ │ │ ├── DialogTrigger.tsx │ │ │ │ └── DialogTriggerDataAttributes.ts │ │ │ └── viewport │ │ │ │ ├── DialogViewport.test.tsx │ │ │ │ ├── DialogViewport.tsx │ │ │ │ └── DialogViewportDataAttributes.ts │ │ ├── direction-provider │ │ │ ├── DirectionContext.tsx │ │ │ ├── DirectionProvider.tsx │ │ │ ├── index.parts.ts │ │ │ └── index.ts │ │ ├── field │ │ │ ├── control │ │ │ │ ├── FieldControl.test.tsx │ │ │ │ ├── FieldControl.tsx │ │ │ │ └── FieldControlDataAttributes.ts │ │ │ ├── description │ │ │ │ ├── FieldDescription.test.tsx │ │ │ │ ├── FieldDescription.tsx │ │ │ │ └── FieldDescriptionDataAttributes.ts │ │ │ ├── error │ │ │ │ ├── FieldError.test.tsx │ │ │ │ ├── FieldError.tsx │ │ │ │ └── FieldErrorDataAttributes.ts │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── item │ │ │ │ ├── FieldItem.test.tsx │ │ │ │ ├── FieldItem.tsx │ │ │ │ └── FieldItemContext.ts │ │ │ ├── label │ │ │ │ ├── FieldLabel.test.tsx │ │ │ │ ├── FieldLabel.tsx │ │ │ │ └── FieldLabelDataAttributes.ts │ │ │ ├── root │ │ │ │ ├── FieldRoot.test.tsx │ │ │ │ ├── FieldRoot.tsx │ │ │ │ ├── FieldRootContext.ts │ │ │ │ ├── FieldRootDataAttributes.ts │ │ │ │ └── useFieldValidation.ts │ │ │ ├── useField.ts │ │ │ ├── utils │ │ │ │ ├── constants.ts │ │ │ │ └── getCombinedFieldValidityData.ts │ │ │ └── validity │ │ │ │ ├── FieldValidity.test.tsx │ │ │ │ └── FieldValidity.tsx │ │ ├── fieldset │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── legend │ │ │ │ ├── FieldsetLegend.test.tsx │ │ │ │ └── FieldsetLegend.tsx │ │ │ └── root │ │ │ │ ├── FieldsetRoot.test.tsx │ │ │ │ ├── FieldsetRoot.tsx │ │ │ │ └── FieldsetRootContext.ts │ │ ├── floating-ui-react │ │ │ ├── components │ │ │ │ ├── FloatingDelayGroup.test.tsx │ │ │ │ ├── FloatingDelayGroup.tsx │ │ │ │ ├── FloatingFocusManager.test.tsx │ │ │ │ ├── FloatingFocusManager.tsx │ │ │ │ ├── FloatingPortal.test.tsx │ │ │ │ ├── FloatingPortal.tsx │ │ │ │ ├── FloatingRootStore.ts │ │ │ │ ├── FloatingTree.tsx │ │ │ │ └── FloatingTreeStore.ts │ │ │ ├── hooks │ │ │ │ ├── useClick.ts │ │ │ │ ├── useClientPoint.test.tsx │ │ │ │ ├── useClientPoint.ts │ │ │ │ ├── useDismiss.test.tsx │ │ │ │ ├── useDismiss.ts │ │ │ │ ├── useFloating.ts │ │ │ │ ├── useFloatingRootContext.ts │ │ │ │ ├── useFocus.ts │ │ │ │ ├── useHover.test.tsx │ │ │ │ ├── useHover.ts │ │ │ │ ├── useHoverFloatingInteraction.ts │ │ │ │ ├── useHoverInteractionSharedState.ts │ │ │ │ ├── useHoverReferenceInteraction.ts │ │ │ │ ├── useInteractions.test.tsx │ │ │ │ ├── useInteractions.ts │ │ │ │ ├── useListNavigation.test.tsx │ │ │ │ ├── useListNavigation.ts │ │ │ │ ├── useRole.ts │ │ │ │ ├── useSyncedFloatingRootContext.ts │ │ │ │ ├── useTypeahead.test.tsx │ │ │ │ └── useTypeahead.ts │ │ │ ├── index.ts │ │ │ ├── middleware │ │ │ │ └── arrow.ts │ │ │ ├── safePolygon.ts │ │ │ ├── types.ts │ │ │ ├── utils.ts │ │ │ └── utils │ │ │ │ ├── composite.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── createAttribute.ts │ │ │ │ ├── createEventEmitter.ts │ │ │ │ ├── element.ts │ │ │ │ ├── enqueueFocus.ts │ │ │ │ ├── event.ts │ │ │ │ ├── getEmptyRootContext.ts │ │ │ │ ├── markOthers.ts │ │ │ │ ├── nodes.test.ts │ │ │ │ ├── nodes.ts │ │ │ │ └── tabbable.ts │ │ ├── form │ │ │ ├── Form.spec.tsx │ │ │ ├── Form.test.tsx │ │ │ ├── Form.tsx │ │ │ ├── FormContext.ts │ │ │ └── index.ts │ │ ├── global.d.ts │ │ ├── index.test.ts │ │ ├── index.ts │ │ ├── input │ │ │ ├── Input.test.tsx │ │ │ ├── Input.tsx │ │ │ ├── InputDataAttributes.ts │ │ │ └── index.ts │ │ ├── labelable-provider │ │ │ ├── LabelableContext.ts │ │ │ ├── LabelableProvider.tsx │ │ │ ├── index.ts │ │ │ └── useLabelableId.ts │ │ ├── menu │ │ │ ├── arrow │ │ │ │ ├── MenuArrow.test.tsx │ │ │ │ ├── MenuArrow.tsx │ │ │ │ └── MenuArrowDataAttributes.ts │ │ │ ├── backdrop │ │ │ │ ├── MenuBackdrop.test.tsx │ │ │ │ ├── MenuBackdrop.tsx │ │ │ │ └── MenuBackdropDataAttributes.ts │ │ │ ├── checkbox-item-indicator │ │ │ │ ├── MenuCheckboxItemIndicator.test.tsx │ │ │ │ ├── MenuCheckboxItemIndicator.tsx │ │ │ │ └── MenuCheckboxItemIndicatorDataAttributes.ts │ │ │ ├── checkbox-item │ │ │ │ ├── MenuCheckboxItem.test.tsx │ │ │ │ ├── MenuCheckboxItem.tsx │ │ │ │ ├── MenuCheckboxItemContext.ts │ │ │ │ └── MenuCheckboxItemDataAttributes.ts │ │ │ ├── group-label │ │ │ │ ├── MenuGroupLabel.test.tsx │ │ │ │ └── MenuGroupLabel.tsx │ │ │ ├── group │ │ │ │ ├── MenuGroup.test.tsx │ │ │ │ ├── MenuGroup.tsx │ │ │ │ └── MenuGroupContext.ts │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── item │ │ │ │ ├── MenuItem.test.tsx │ │ │ │ ├── MenuItem.tsx │ │ │ │ ├── MenuItemDataAttributes.ts │ │ │ │ └── useMenuItem.ts │ │ │ ├── popup │ │ │ │ ├── MenuPopup.test.tsx │ │ │ │ ├── MenuPopup.tsx │ │ │ │ └── MenuPopupDataAttributes.ts │ │ │ ├── portal │ │ │ │ ├── MenuPortal.test.tsx │ │ │ │ ├── MenuPortal.tsx │ │ │ │ └── MenuPortalContext.ts │ │ │ ├── positioner │ │ │ │ ├── MenuPositioner.spec.tsx │ │ │ │ ├── MenuPositioner.test.tsx │ │ │ │ ├── MenuPositioner.tsx │ │ │ │ ├── MenuPositionerContext.ts │ │ │ │ ├── MenuPositionerCssVars.ts │ │ │ │ └── MenuPositionerDataAttributes.ts │ │ │ ├── radio-group │ │ │ │ ├── MenuRadioGroup.test.tsx │ │ │ │ ├── MenuRadioGroup.tsx │ │ │ │ └── MenuRadioGroupContext.ts │ │ │ ├── radio-item-indicator │ │ │ │ ├── MenuRadioItemIndicator.test.tsx │ │ │ │ ├── MenuRadioItemIndicator.tsx │ │ │ │ └── MenuRadioItemIndicatorDataAttributes.ts │ │ │ ├── radio-item │ │ │ │ ├── MenuRadioItem.test.tsx │ │ │ │ ├── MenuRadioItem.tsx │ │ │ │ ├── MenuRadioItemContext.ts │ │ │ │ └── MenuRadioItemDataAttributes.ts │ │ │ ├── root │ │ │ │ ├── MenuRoot.detached-triggers.test.tsx │ │ │ │ ├── MenuRoot.test.tsx │ │ │ │ ├── MenuRoot.tsx │ │ │ │ └── MenuRootContext.ts │ │ │ ├── store │ │ │ │ ├── MenuHandle.ts │ │ │ │ └── MenuStore.ts │ │ │ ├── submenu-root │ │ │ │ ├── MenuSubmenuRoot.tsx │ │ │ │ └── MenuSubmenuRootContext.ts │ │ │ ├── submenu-trigger │ │ │ │ ├── MenuSubmenuTrigger.test.tsx │ │ │ │ ├── MenuSubmenuTrigger.tsx │ │ │ │ └── MenuSubmenuTriggerDataAttributes.ts │ │ │ ├── trigger │ │ │ │ ├── MenuTrigger.test.tsx │ │ │ │ ├── MenuTrigger.tsx │ │ │ │ └── MenuTriggerDataAttributes.ts │ │ │ └── utils │ │ │ │ ├── findRootOwnerId.ts │ │ │ │ ├── stateAttributesMapping.ts │ │ │ │ └── types.ts │ │ ├── menubar │ │ │ ├── Menubar.test.tsx │ │ │ ├── Menubar.tsx │ │ │ ├── MenubarContext.ts │ │ │ ├── MenubarDataAttributes.ts │ │ │ └── index.ts │ │ ├── merge-props │ │ │ ├── index.ts │ │ │ ├── mergeProps.test.ts │ │ │ └── mergeProps.ts │ │ ├── meter │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── indicator │ │ │ │ ├── MeterIndicator.test.tsx │ │ │ │ └── MeterIndicator.tsx │ │ │ ├── label │ │ │ │ ├── MeterLabel.test.tsx │ │ │ │ └── MeterLabel.tsx │ │ │ ├── root │ │ │ │ ├── MeterRoot.test.tsx │ │ │ │ ├── MeterRoot.tsx │ │ │ │ └── MeterRootContext.ts │ │ │ ├── track │ │ │ │ ├── MeterTrack.test.tsx │ │ │ │ └── MeterTrack.tsx │ │ │ └── value │ │ │ │ ├── MeterValue.test.tsx │ │ │ │ └── MeterValue.tsx │ │ ├── navigation-menu │ │ │ ├── arrow │ │ │ │ ├── NavigationMenuArrow.test.tsx │ │ │ │ ├── NavigationMenuArrow.tsx │ │ │ │ └── NavigationMenuArrowDataAttributes.ts │ │ │ ├── backdrop │ │ │ │ ├── NavigationMenuBackdrop.test.tsx │ │ │ │ ├── NavigationMenuBackdrop.tsx │ │ │ │ └── NavigationMenuBackdropDataAttributes.ts │ │ │ ├── content │ │ │ │ ├── NavigationMenuContent.test.tsx │ │ │ │ ├── NavigationMenuContent.tsx │ │ │ │ └── NavigationMenuContentDataAttributes.ts │ │ │ ├── icon │ │ │ │ ├── NavigationMenuIcon.test.tsx │ │ │ │ └── NavigationMenuIcon.tsx │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── item │ │ │ │ ├── NavigationMenuItem.test.tsx │ │ │ │ ├── NavigationMenuItem.tsx │ │ │ │ └── NavigationMenuItemContext.ts │ │ │ ├── link │ │ │ │ ├── NavigationMenuLinikDataAttributes.ts │ │ │ │ ├── NavigationMenuLink.test.tsx │ │ │ │ └── NavigationMenuLink.tsx │ │ │ ├── list │ │ │ │ ├── NavigationMenuDismissContext.ts │ │ │ │ ├── NavigationMenuList.test.tsx │ │ │ │ └── NavigationMenuList.tsx │ │ │ ├── popup │ │ │ │ ├── NavigationMenuPopup.test.tsx │ │ │ │ ├── NavigationMenuPopup.tsx │ │ │ │ ├── NavigationMenuPopupCssVars.ts │ │ │ │ └── NavigationMenuPopupDataAttributes.ts │ │ │ ├── portal │ │ │ │ ├── NavigationMenuPortal.test.tsx │ │ │ │ ├── NavigationMenuPortal.tsx │ │ │ │ └── NavigationMenuPortalContext.ts │ │ │ ├── positioner │ │ │ │ ├── NavigationMenuPositioner.test.tsx │ │ │ │ ├── NavigationMenuPositioner.tsx │ │ │ │ ├── NavigationMenuPositionerContext.ts │ │ │ │ ├── NavigationMenuPositionerCssVars.ts │ │ │ │ └── NavigationPositionerDataAttributes.ts │ │ │ ├── root │ │ │ │ ├── NavigationMenuRoot.test.tsx │ │ │ │ ├── NavigationMenuRoot.tsx │ │ │ │ └── NavigationMenuRootContext.ts │ │ │ ├── trigger │ │ │ │ ├── NavigationMenuTrigger.test.tsx │ │ │ │ ├── NavigationMenuTrigger.tsx │ │ │ │ └── NavigationMenuTriggerDataAttributes.ts │ │ │ ├── utils │ │ │ │ ├── constants.ts │ │ │ │ ├── isOutsideMenuEvent.ts │ │ │ │ └── setFixedSize.ts │ │ │ └── viewport │ │ │ │ ├── NavigationMenuViewport.test.tsx │ │ │ │ └── NavigationMenuViewport.tsx │ │ ├── number-field │ │ │ ├── decrement │ │ │ │ ├── NumberFieldDecrement.test.tsx │ │ │ │ ├── NumberFieldDecrement.tsx │ │ │ │ └── NumberFieldDecrementDataAttributes.ts │ │ │ ├── group │ │ │ │ ├── NumberFieldGroup.test.tsx │ │ │ │ ├── NumberFieldGroup.tsx │ │ │ │ └── NumberFieldGroupDataAttributes.ts │ │ │ ├── increment │ │ │ │ ├── NumberFieldIncrement.test.tsx │ │ │ │ ├── NumberFieldIncrement.tsx │ │ │ │ └── NumberFieldIncrementDataAttributes.ts │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── input │ │ │ │ ├── NumberFieldInput.test.tsx │ │ │ │ ├── NumberFieldInput.tsx │ │ │ │ └── NumberFieldInputDataAttributes.ts │ │ │ ├── root │ │ │ │ ├── NumberFieldRoot.spec.tsx │ │ │ │ ├── NumberFieldRoot.test.tsx │ │ │ │ ├── NumberFieldRoot.tsx │ │ │ │ ├── NumberFieldRootContext.ts │ │ │ │ ├── NumberFieldRootDataAttributes.ts │ │ │ │ └── useNumberFieldButton.ts │ │ │ ├── scrub-area-cursor │ │ │ │ ├── NumberFieldScrubAreaCursor.test.tsx │ │ │ │ ├── NumberFieldScrubAreaCursor.tsx │ │ │ │ └── NumberFieldScrubAreaCursorDataAttributes.ts │ │ │ ├── scrub-area │ │ │ │ ├── NumberFieldScrubArea.test.tsx │ │ │ │ ├── NumberFieldScrubArea.tsx │ │ │ │ ├── NumberFieldScrubAreaContext.ts │ │ │ │ └── NumberFieldScrubAreaDataAttributes.ts │ │ │ └── utils │ │ │ │ ├── constants.ts │ │ │ │ ├── getViewportRect.ts │ │ │ │ ├── parse.test.ts │ │ │ │ ├── parse.ts │ │ │ │ ├── stateAttributesMapping.ts │ │ │ │ ├── subscribeToVisualViewportResize.ts │ │ │ │ ├── types.ts │ │ │ │ ├── validate.test.ts │ │ │ │ └── validate.ts │ │ ├── popover │ │ │ ├── arrow │ │ │ │ ├── PopoverArrow.test.tsx │ │ │ │ ├── PopoverArrow.tsx │ │ │ │ └── PopoverArrowDataAttributes.ts │ │ │ ├── backdrop │ │ │ │ ├── PopoverBackdrop.test.tsx │ │ │ │ ├── PopoverBackdrop.tsx │ │ │ │ └── PopoverBackdropDataAttributes.ts │ │ │ ├── close │ │ │ │ ├── PopoverClose.test.tsx │ │ │ │ └── PopoverClose.tsx │ │ │ ├── description │ │ │ │ ├── PopoverDescription.test.tsx │ │ │ │ └── PopoverDescription.tsx │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── popup │ │ │ │ ├── PopoverPopup.test.tsx │ │ │ │ ├── PopoverPopup.tsx │ │ │ │ ├── PopoverPopupCssVars.ts │ │ │ │ └── PopoverPopupDataAttributes.ts │ │ │ ├── portal │ │ │ │ ├── PopoverPortal.test.tsx │ │ │ │ ├── PopoverPortal.tsx │ │ │ │ └── PopoverPortalContext.ts │ │ │ ├── positioner │ │ │ │ ├── PopoverPositioner.spec.tsx │ │ │ │ ├── PopoverPositioner.test.tsx │ │ │ │ ├── PopoverPositioner.tsx │ │ │ │ ├── PopoverPositionerContext.ts │ │ │ │ ├── PopoverPositionerCssVars.ts │ │ │ │ └── PopoverPositionerDataAttributes.ts │ │ │ ├── root │ │ │ │ ├── PopoverRoot.spec.tsx │ │ │ │ ├── PopoverRoot.test.tsx │ │ │ │ ├── PopoverRoot.tsx │ │ │ │ └── PopoverRootContext.ts │ │ │ ├── store │ │ │ │ ├── PopoverHandle.ts │ │ │ │ └── PopoverStore.ts │ │ │ ├── title │ │ │ │ ├── PopoverTitle.test.tsx │ │ │ │ └── PopoverTitle.tsx │ │ │ ├── trigger │ │ │ │ ├── PopoverTrigger.test.tsx │ │ │ │ ├── PopoverTrigger.tsx │ │ │ │ └── PopoverTriggerDataAttributes.ts │ │ │ ├── utils │ │ │ │ └── constants.ts │ │ │ └── viewport │ │ │ │ ├── PopoverViewport.test.tsx │ │ │ │ ├── PopoverViewport.tsx │ │ │ │ ├── PopoverViewportCssVars.ts │ │ │ │ └── PopoverViewportDataAttributes.ts │ │ ├── preview-card │ │ │ ├── arrow │ │ │ │ ├── PreviewCardArrow.test.tsx │ │ │ │ ├── PreviewCardArrow.tsx │ │ │ │ └── PreviewCardArrowDataAttributes.ts │ │ │ ├── backdrop │ │ │ │ ├── PreviewCardBackdrop.test.tsx │ │ │ │ ├── PreviewCardBackdrop.tsx │ │ │ │ └── PreviewCardBackdropDataAttributes.ts │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── popup │ │ │ │ ├── PreviewCardPopup.test.tsx │ │ │ │ ├── PreviewCardPopup.tsx │ │ │ │ └── PreviewCardPopupDataAttributes.ts │ │ │ ├── portal │ │ │ │ ├── PreviewCardPortal.test.tsx │ │ │ │ ├── PreviewCardPortal.tsx │ │ │ │ └── PreviewCardPortalContext.ts │ │ │ ├── positioner │ │ │ │ ├── PreviewCardPositioner.spec.tsx │ │ │ │ ├── PreviewCardPositioner.test.tsx │ │ │ │ ├── PreviewCardPositioner.tsx │ │ │ │ ├── PreviewCardPositionerContext.ts │ │ │ │ ├── PreviewCardPositionerCssVars.ts │ │ │ │ └── PreviewCardPositionerDataAttributes.ts │ │ │ ├── root │ │ │ │ ├── PreviewCardContext.ts │ │ │ │ ├── PreviewCardRoot.test.tsx │ │ │ │ └── PreviewCardRoot.tsx │ │ │ ├── trigger │ │ │ │ ├── PreviewCardTrigger.test.tsx │ │ │ │ ├── PreviewCardTrigger.tsx │ │ │ │ └── PreviewCardTriggerDataAttributes.ts │ │ │ └── utils │ │ │ │ └── constants.ts │ │ ├── progress │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── indicator │ │ │ │ ├── ProgressIndicator.test.tsx │ │ │ │ ├── ProgressIndicator.tsx │ │ │ │ └── ProgressIndicatorDataAttributes.ts │ │ │ ├── label │ │ │ │ ├── ProgressLabel.test.tsx │ │ │ │ ├── ProgressLabel.tsx │ │ │ │ └── ProgressLabelDataAttributes.ts │ │ │ ├── root │ │ │ │ ├── ProgressRoot.test.tsx │ │ │ │ ├── ProgressRoot.tsx │ │ │ │ ├── ProgressRootContext.tsx │ │ │ │ ├── ProgressRootDataAttributes.ts │ │ │ │ └── stateAttributesMapping.ts │ │ │ ├── track │ │ │ │ ├── ProgressTrack.test.tsx │ │ │ │ ├── ProgressTrack.tsx │ │ │ │ └── ProgressTrackDataAttributes.ts │ │ │ └── value │ │ │ │ ├── ProgressValue.test.tsx │ │ │ │ ├── ProgressValue.tsx │ │ │ │ └── ProgressValueDataAttributes.ts │ │ ├── radio-group │ │ │ ├── RadioGroup.test.tsx │ │ │ ├── RadioGroup.tsx │ │ │ ├── RadioGroupContext.ts │ │ │ ├── RadioGroupDataAttributes.ts │ │ │ └── index.ts │ │ ├── radio │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── indicator │ │ │ │ ├── RadioIndicator.test.tsx │ │ │ │ ├── RadioIndicator.tsx │ │ │ │ └── RadioIndicatorDataAttributes.ts │ │ │ ├── root │ │ │ │ ├── RadioRoot.test.tsx │ │ │ │ ├── RadioRoot.tsx │ │ │ │ ├── RadioRootContext.ts │ │ │ │ └── RadioRootDataAttributes.ts │ │ │ └── utils │ │ │ │ └── stateAttributesMapping.ts │ │ ├── scroll-area │ │ │ ├── constants.ts │ │ │ ├── content │ │ │ │ ├── ScrollAreaContent.test.tsx │ │ │ │ └── ScrollAreaContent.tsx │ │ │ ├── corner │ │ │ │ ├── ScrollAreaCorner.test.tsx │ │ │ │ └── ScrollAreaCorner.tsx │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── root │ │ │ │ ├── ScrollAreaRoot.test.tsx │ │ │ │ ├── ScrollAreaRoot.tsx │ │ │ │ ├── ScrollAreaRootContext.ts │ │ │ │ ├── ScrollAreaRootCssVars.ts │ │ │ │ ├── ScrollAreaRootDataAttributes.ts │ │ │ │ └── stateAttributes.ts │ │ │ ├── scrollbar │ │ │ │ ├── ScrollAreaScrollbar.test.tsx │ │ │ │ ├── ScrollAreaScrollbar.tsx │ │ │ │ ├── ScrollAreaScrollbarContext.ts │ │ │ │ ├── ScrollAreaScrollbarCssVars.ts │ │ │ │ └── ScrollAreaScrollbarDataAttributes.ts │ │ │ ├── thumb │ │ │ │ ├── ScrollAreaThumb.test.tsx │ │ │ │ ├── ScrollAreaThumb.tsx │ │ │ │ └── ScrollAreaThumbDataAttributes.ts │ │ │ ├── utils │ │ │ │ ├── getOffset.ts │ │ │ │ └── onVisible.ts │ │ │ └── viewport │ │ │ │ ├── ScrollAreaViewport.test.tsx │ │ │ │ ├── ScrollAreaViewport.tsx │ │ │ │ ├── ScrollAreaViewportContext.ts │ │ │ │ ├── ScrollAreaViewportCssVars.ts │ │ │ │ └── ScrollAreaViewportDataAttributes.ts │ │ ├── select │ │ │ ├── arrow │ │ │ │ ├── SelectArrow.test.tsx │ │ │ │ ├── SelectArrow.tsx │ │ │ │ └── SelectArrowDataAttributes.ts │ │ │ ├── backdrop │ │ │ │ ├── SelectBackdrop.test.tsx │ │ │ │ ├── SelectBackdrop.tsx │ │ │ │ └── SelectBackdropDataAttributes.ts │ │ │ ├── group-label │ │ │ │ ├── SelectGroupLabel.test.tsx │ │ │ │ └── SelectGroupLabel.tsx │ │ │ ├── group │ │ │ │ ├── SelectGroup.test.tsx │ │ │ │ ├── SelectGroup.tsx │ │ │ │ └── SelectGroupContext.ts │ │ │ ├── icon │ │ │ │ ├── SelectIcon.test.tsx │ │ │ │ ├── SelectIcon.tsx │ │ │ │ └── SelectIconDataAttributes.ts │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── item-indicator │ │ │ │ ├── SelectItemIndicator.test.tsx │ │ │ │ └── SelectItemIndicator.tsx │ │ │ ├── item-text │ │ │ │ ├── SelectItemText.test.tsx │ │ │ │ └── SelectItemText.tsx │ │ │ ├── item │ │ │ │ ├── SelectItem.test.tsx │ │ │ │ ├── SelectItem.tsx │ │ │ │ ├── SelectItemContext.ts │ │ │ │ └── SelectItemDataAttributes.ts │ │ │ ├── list │ │ │ │ ├── SelectList.test.tsx │ │ │ │ └── SelectList.tsx │ │ │ ├── popup │ │ │ │ ├── SelectPopup.test.tsx │ │ │ │ ├── SelectPopup.tsx │ │ │ │ ├── SelectPopupDataAttributes.ts │ │ │ │ └── utils.ts │ │ │ ├── portal │ │ │ │ ├── SelectPortal.test.tsx │ │ │ │ ├── SelectPortal.tsx │ │ │ │ └── SelectPortalContext.ts │ │ │ ├── positioner │ │ │ │ ├── SelectPositioner.spec.tsx │ │ │ │ ├── SelectPositioner.test.tsx │ │ │ │ ├── SelectPositioner.tsx │ │ │ │ ├── SelectPositionerContext.ts │ │ │ │ ├── SelectPositionerCssVars.ts │ │ │ │ └── SelectPositionerDataAttributes.ts │ │ │ ├── root │ │ │ │ ├── SelectRoot.spec.tsx │ │ │ │ ├── SelectRoot.test.tsx │ │ │ │ ├── SelectRoot.tsx │ │ │ │ └── SelectRootContext.ts │ │ │ ├── scroll-arrow │ │ │ │ └── SelectScrollArrow.tsx │ │ │ ├── scroll-down-arrow │ │ │ │ ├── SelectScrollDownArrow.test.tsx │ │ │ │ ├── SelectScrollDownArrow.tsx │ │ │ │ └── SelectScrollDownArrowDataAttributes.ts │ │ │ ├── scroll-up-arrow │ │ │ │ ├── SelectScrollUpArrow.test.tsx │ │ │ │ ├── SelectScrollUpArrow.tsx │ │ │ │ └── SelectScrollUpArrowDataAttributes.ts │ │ │ ├── store.ts │ │ │ ├── trigger │ │ │ │ ├── SelectTrigger.test.tsx │ │ │ │ ├── SelectTrigger.tsx │ │ │ │ └── SelectTriggerDataAttributes.ts │ │ │ └── value │ │ │ │ ├── SelectValue.test.tsx │ │ │ │ ├── SelectValue.tsx │ │ │ │ └── SelectValueDataAttributes.ts │ │ ├── separator │ │ │ ├── Separator.test.tsx │ │ │ ├── Separator.tsx │ │ │ └── index.ts │ │ ├── slider │ │ │ ├── control │ │ │ │ ├── SliderControl.test.tsx │ │ │ │ ├── SliderControl.tsx │ │ │ │ └── SliderControlDataAttributes.ts │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── indicator │ │ │ │ ├── SliderIndicator.test.tsx │ │ │ │ ├── SliderIndicator.tsx │ │ │ │ └── SliderIndicatorDataAttributes.ts │ │ │ ├── root │ │ │ │ ├── SliderRoot.spec.tsx │ │ │ │ ├── SliderRoot.test.tsx │ │ │ │ ├── SliderRoot.tsx │ │ │ │ ├── SliderRootContext.ts │ │ │ │ ├── SliderRootDataAttributes.ts │ │ │ │ └── stateAttributesMapping.ts │ │ │ ├── thumb │ │ │ │ ├── SliderThumb.test.tsx │ │ │ │ ├── SliderThumb.tsx │ │ │ │ ├── SliderThumbDataAttributes.ts │ │ │ │ ├── prehydrationScript.min.ts │ │ │ │ └── prehydrationScript.template.js │ │ │ ├── track │ │ │ │ ├── SliderTrack.test.tsx │ │ │ │ ├── SliderTrack.tsx │ │ │ │ └── SliderTrackDataAttributes.ts │ │ │ ├── utils │ │ │ │ ├── asc.ts │ │ │ │ ├── getMidpoint.ts │ │ │ │ ├── getPushedThumbValues.test.ts │ │ │ │ ├── getPushedThumbValues.ts │ │ │ │ ├── getSliderValue.ts │ │ │ │ ├── replaceArrayItemAtIndex.ts │ │ │ │ ├── resolveThumbCollision.test.ts │ │ │ │ ├── resolveThumbCollision.ts │ │ │ │ ├── roundValueToStep.ts │ │ │ │ ├── test-utils.ts │ │ │ │ ├── validateMinimumDistance.ts │ │ │ │ └── valueArrayToPercentages.ts │ │ │ └── value │ │ │ │ ├── SliderValue.test.tsx │ │ │ │ ├── SliderValue.tsx │ │ │ │ └── SliderValueDataAttributes.ts │ │ ├── switch │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── root │ │ │ │ ├── SwitchRoot.test.tsx │ │ │ │ ├── SwitchRoot.tsx │ │ │ │ ├── SwitchRootContext.ts │ │ │ │ └── SwitchRootDataAttributes.ts │ │ │ ├── stateAttributesMapping.ts │ │ │ └── thumb │ │ │ │ ├── SwitchThumb.test.tsx │ │ │ │ ├── SwitchThumb.tsx │ │ │ │ └── SwitchThumbDataAttributes.ts │ │ ├── tabs │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── indicator │ │ │ │ ├── TabsIndicator.test.tsx │ │ │ │ ├── TabsIndicator.tsx │ │ │ │ ├── TabsIndicatorCssVars.ts │ │ │ │ ├── TabsIndicatorDataAttributes.ts │ │ │ │ ├── prehydrationScript.min.ts │ │ │ │ └── prehydrationScript.template.js │ │ │ ├── list │ │ │ │ ├── TabsList.test.tsx │ │ │ │ ├── TabsList.tsx │ │ │ │ ├── TabsListContext.ts │ │ │ │ └── TabsListDataAttributes.ts │ │ │ ├── panel │ │ │ │ ├── TabsPanel.test.tsx │ │ │ │ ├── TabsPanel.tsx │ │ │ │ └── TabsPanelDataAttributes.ts │ │ │ ├── root │ │ │ │ ├── TabsRoot.test.tsx │ │ │ │ ├── TabsRoot.tsx │ │ │ │ ├── TabsRootContext.ts │ │ │ │ ├── TabsRootDataAttributes.ts │ │ │ │ └── stateAttributesMapping.ts │ │ │ └── tab │ │ │ │ ├── TabsTab.test.tsx │ │ │ │ ├── TabsTab.tsx │ │ │ │ └── TabsTabDataAttributes.ts │ │ ├── toast │ │ │ ├── action │ │ │ │ ├── ToastAction.test.tsx │ │ │ │ ├── ToastAction.tsx │ │ │ │ └── ToastActionDataAttributes.ts │ │ │ ├── arrow │ │ │ │ ├── ToastArrow.test.tsx │ │ │ │ ├── ToastArrow.tsx │ │ │ │ └── ToastArrowDataAttributes.ts │ │ │ ├── close │ │ │ │ ├── ToastClose.test.tsx │ │ │ │ ├── ToastClose.tsx │ │ │ │ └── ToastCloseDataAttributes.ts │ │ │ ├── content │ │ │ │ ├── ToastContent.tsx │ │ │ │ └── ToastContentDataAttributes.ts │ │ │ ├── createToastManager.test.tsx │ │ │ ├── createToastManager.ts │ │ │ ├── description │ │ │ │ ├── ToastDescription.test.tsx │ │ │ │ ├── ToastDescription.tsx │ │ │ │ └── ToastDescriptionDataAttributes.ts │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── portal │ │ │ │ ├── ToastPortal.test.tsx │ │ │ │ └── ToastPortal.tsx │ │ │ ├── positioner │ │ │ │ ├── ToastPositioner.test.tsx │ │ │ │ ├── ToastPositioner.tsx │ │ │ │ ├── ToastPositionerContext.ts │ │ │ │ ├── ToastPositionerCssVars.ts │ │ │ │ └── ToastPositionerDataAttributes.ts │ │ │ ├── provider │ │ │ │ ├── ToastProvider.tsx │ │ │ │ └── ToastProviderContext.ts │ │ │ ├── root │ │ │ │ ├── ToastRoot.test.tsx │ │ │ │ ├── ToastRoot.tsx │ │ │ │ ├── ToastRootContext.ts │ │ │ │ ├── ToastRootCssVars.ts │ │ │ │ └── ToastRootDataAttributes.ts │ │ │ ├── title │ │ │ │ ├── ToastTitle.test.tsx │ │ │ │ ├── ToastTitle.tsx │ │ │ │ └── ToastTitleDataAttributes.ts │ │ │ ├── useToastManager.test.tsx │ │ │ ├── useToastManager.ts │ │ │ ├── utils │ │ │ │ ├── focusVisible.ts │ │ │ │ ├── resolvePromiseOptions.ts │ │ │ │ └── test-utils.tsx │ │ │ └── viewport │ │ │ │ ├── ToastViewport.test.tsx │ │ │ │ ├── ToastViewport.tsx │ │ │ │ ├── ToastViewportContext.ts │ │ │ │ ├── ToastViewportCssVars.ts │ │ │ │ └── ToastViewportDataAttributes.ts │ │ ├── toggle-group │ │ │ ├── ToggleGroup.test.tsx │ │ │ ├── ToggleGroup.tsx │ │ │ ├── ToggleGroupContext.ts │ │ │ ├── ToggleGroupDataAttributes.ts │ │ │ └── index.ts │ │ ├── toggle │ │ │ ├── Toggle.test.tsx │ │ │ ├── Toggle.tsx │ │ │ ├── ToggleDataAttributes.ts │ │ │ └── index.ts │ │ ├── toolbar │ │ │ ├── button │ │ │ │ ├── ToolbarButton.test.tsx │ │ │ │ ├── ToolbarButton.tsx │ │ │ │ └── ToolbarButtonDataAttributes.ts │ │ │ ├── group │ │ │ │ ├── ToolbarGroup.test.tsx │ │ │ │ ├── ToolbarGroup.tsx │ │ │ │ ├── ToolbarGroupContext.ts │ │ │ │ └── ToolbarGroupDataAttributes.ts │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── input │ │ │ │ ├── ToolbarInput.test.tsx │ │ │ │ ├── ToolbarInput.tsx │ │ │ │ └── ToolbarInputDataAttributes.ts │ │ │ ├── link │ │ │ │ ├── ToolbarLink.test.tsx │ │ │ │ ├── ToolbarLink.tsx │ │ │ │ └── ToolbarLinkDataAttributes.ts │ │ │ ├── root │ │ │ │ ├── ToolbarRoot.test.tsx │ │ │ │ ├── ToolbarRoot.tsx │ │ │ │ ├── ToolbarRootContext.ts │ │ │ │ └── ToolbarRootDataAttributes.ts │ │ │ └── separator │ │ │ │ ├── ToolbarSeparator.tsx │ │ │ │ └── ToolbarSeparatorDataAttributes.ts │ │ ├── tooltip │ │ │ ├── arrow │ │ │ │ ├── TooltipArrow.test.tsx │ │ │ │ ├── TooltipArrow.tsx │ │ │ │ └── TooltipArrowDataAttributes.ts │ │ │ ├── index.parts.ts │ │ │ ├── index.ts │ │ │ ├── popup │ │ │ │ ├── TooltipPopup.test.tsx │ │ │ │ ├── TooltipPopup.tsx │ │ │ │ └── TooltipPopupDataAttributes.ts │ │ │ ├── portal │ │ │ │ ├── TooltipPortal.test.tsx │ │ │ │ ├── TooltipPortal.tsx │ │ │ │ └── TooltipPortalContext.ts │ │ │ ├── positioner │ │ │ │ ├── TooltipPositioner.spec.tsx │ │ │ │ ├── TooltipPositioner.test.tsx │ │ │ │ ├── TooltipPositioner.tsx │ │ │ │ ├── TooltipPositionerContext.ts │ │ │ │ ├── TooltipPositionerCssVars.ts │ │ │ │ └── TooltipPositionerDataAttributes.ts │ │ │ ├── provider │ │ │ │ ├── TooltipProvider.test.tsx │ │ │ │ ├── TooltipProvider.tsx │ │ │ │ └── TooltipProviderContext.ts │ │ │ ├── root │ │ │ │ ├── TooltipRoot.test.tsx │ │ │ │ ├── TooltipRoot.tsx │ │ │ │ └── TooltipRootContext.ts │ │ │ ├── store │ │ │ │ ├── TooltipHandle.ts │ │ │ │ └── TooltipStore.ts │ │ │ ├── trigger │ │ │ │ ├── TooltipTrigger.spec.tsx │ │ │ │ ├── TooltipTrigger.test.tsx │ │ │ │ ├── TooltipTrigger.tsx │ │ │ │ └── TooltipTriggerDataAttributes.ts │ │ │ ├── utils │ │ │ │ └── constants.ts │ │ │ └── viewport │ │ │ │ ├── TooltipViewport.test.tsx │ │ │ │ ├── TooltipViewport.tsx │ │ │ │ ├── TooltipViewportCssVars.ts │ │ │ │ └── TooltipViewportDataAttributes.ts │ │ ├── types │ │ │ └── index.ts │ │ ├── unstable-use-media-query │ │ │ └── index.ts │ │ ├── use-button │ │ │ ├── index.ts │ │ │ ├── useButton.test.tsx │ │ │ └── useButton.ts │ │ ├── use-render │ │ │ ├── index.ts │ │ │ ├── useRender.spec.tsx │ │ │ ├── useRender.test.tsx │ │ │ └── useRender.ts │ │ └── utils │ │ │ ├── FloatingPortalLite.tsx │ │ │ ├── FocusGuard.tsx │ │ │ ├── InternalBackdrop.tsx │ │ │ ├── adaptiveOriginMiddleware.ts │ │ │ ├── areArraysEqual.ts │ │ │ ├── clamp.test.ts │ │ │ ├── clamp.ts │ │ │ ├── collapsibleOpenStateMapping.ts │ │ │ ├── constants.ts │ │ │ ├── createBaseUIEventDetails.ts │ │ │ ├── formatNumber.test.ts │ │ │ ├── formatNumber.ts │ │ │ ├── getCssDimensions.ts │ │ │ ├── getDisabledMountTransitionStyles.ts │ │ │ ├── getPseudoElementBounds.ts │ │ │ ├── getStateAttributesProps.test.ts │ │ │ ├── getStateAttributesProps.ts │ │ │ ├── hideMiddleware.ts │ │ │ ├── interactions │ │ │ └── useFocusWithDelay.ts │ │ │ ├── itemEquality.ts │ │ │ ├── noop.ts │ │ │ ├── popupStateMapping.ts │ │ │ ├── popups │ │ │ ├── index.ts │ │ │ ├── popupStoreUtils.test.tsx │ │ │ ├── popupStoreUtils.ts │ │ │ ├── popupTriggerMap.test.ts │ │ │ ├── popupTriggerMap.ts │ │ │ └── store.ts │ │ │ ├── reason-parts.ts │ │ │ ├── reasons.ts │ │ │ ├── resolveClassName.ts │ │ │ ├── resolveRef.ts │ │ │ ├── resolveStyle.ts │ │ │ ├── resolveValueLabel.tsx │ │ │ ├── serializeValue.ts │ │ │ ├── stateAttributesMapping.ts │ │ │ ├── styles.tsx │ │ │ ├── types.ts │ │ │ ├── useAnchorPositioning.ts │ │ │ ├── useAnimationsFinished.ts │ │ │ ├── useBaseUiId.ts │ │ │ ├── useFocusableWhenDisabled.ts │ │ │ ├── useMixedToggleClickHander.ts │ │ │ ├── useOpenChangeComplete.tsx │ │ │ ├── useOpenInteractionType.ts │ │ │ ├── usePopupAutoResize.ts │ │ │ ├── useRenderElement.spec.tsx │ │ │ ├── useRenderElement.test.tsx │ │ │ ├── useRenderElement.tsx │ │ │ ├── useTransitionStatus.d.ts │ │ │ ├── useTransitionStatus.ts │ │ │ ├── useValueChanged.ts │ │ │ └── valueToPercent.ts │ ├── test │ │ ├── conformanceTests │ │ │ ├── className.tsx │ │ │ ├── propForwarding.tsx │ │ │ ├── refForwarding.tsx │ │ │ ├── renderProp.tsx │ │ │ └── utils.ts │ │ ├── createRenderer.ts │ │ ├── describeConformance.tsx │ │ ├── floating-ui-tests │ │ │ ├── Button.tsx │ │ │ ├── ComplexGrid.tsx │ │ │ ├── EmojiPicker.tsx │ │ │ ├── Grid.tsx │ │ │ ├── ListboxFocus.tsx │ │ │ ├── Menu.tsx │ │ │ ├── MenuOrientation.tsx │ │ │ ├── Navigation.tsx │ │ │ └── Popover.tsx │ │ ├── index.ts │ │ ├── popupConformanceTests.tsx │ │ └── wait.ts │ ├── tsconfig.build.json │ ├── tsconfig.json │ ├── tsconfig.test.json │ └── vitest.config.mts └── utils │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ ├── detectBrowser.ts │ ├── empty.ts │ ├── error.ts │ ├── fastObjectShallowCompare.ts │ ├── formatErrorMessage.ts │ ├── generateId.ts │ ├── getReactElementRef.test.tsx │ ├── getReactElementRef.ts │ ├── inertValue.ts │ ├── isElementDisabled.ts │ ├── isMouseWithinBounds.ts │ ├── mergeObjects.ts │ ├── owner.ts │ ├── reactVersion.ts │ ├── safeReact.ts │ ├── store │ │ ├── ReactStore.spec.ts │ │ ├── ReactStore.test.tsx │ │ ├── ReactStore.ts │ │ ├── Store.ts │ │ ├── StoreInspector.tsx │ │ ├── createSelector.ts │ │ ├── index.ts │ │ └── useStore.ts │ ├── testUtils.ts │ ├── useAnimationFrame.ts │ ├── useControlled.test.tsx │ ├── useControlled.ts │ ├── useEnhancedClickHandler.ts │ ├── useForcedRerendering.ts │ ├── useId.test.tsx │ ├── useId.ts │ ├── useInterval.ts │ ├── useIsoLayoutEffect.ts │ ├── useMergedRefs.test.tsx │ ├── useMergedRefs.ts │ ├── useOnFirstRender.ts │ ├── useOnMount.ts │ ├── usePreviousValue.test.tsx │ ├── usePreviousValue.ts │ ├── useRefWithInit.ts │ ├── useScrollLock.ts │ ├── useStableCallback.ts │ ├── useTimeout.ts │ ├── useValueAsRef.ts │ ├── visuallyHidden.ts │ └── warn.ts │ ├── tsconfig.build.json │ ├── tsconfig.json │ ├── tsconfig.test.json │ └── vitest.config.mts ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── prettier.config.mjs ├── renovate.json ├── scripts ├── README.md ├── api-docs-builder │ ├── package.json │ └── src │ │ ├── componentHandler.ts │ │ ├── formatter.ts │ │ ├── hookHandler.ts │ │ ├── index.ts │ │ └── order.json ├── inlineScripts.mts ├── releaseChangelog.mts └── tsconfig.json ├── stylelint.config.mjs ├── test ├── README.md ├── assets │ ├── fake.png │ └── fake2.png ├── bundle-size │ ├── bundle-size-checker.config.mjs │ └── package.json ├── docs-regressions-before.png ├── docs-regressions-diff.png ├── e2e │ ├── README.md │ ├── TestViewer.tsx │ ├── fixtures │ │ ├── .gitkeep │ │ ├── Radio.tsx │ │ ├── field │ │ │ └── validate-on-change │ │ │ │ ├── Input.tsx │ │ │ │ └── Select.tsx │ │ └── slider │ │ │ ├── Inset.tsx │ │ │ ├── Range.tsx │ │ │ └── RangeSliderMax.tsx │ ├── index.html │ ├── index.test.ts │ ├── main.tsx │ ├── postcss.config.js │ ├── serve.json │ ├── vite.config.mjs │ └── vitest.config.mts ├── node-resolution │ ├── index.mjs │ └── package.json ├── package.json ├── public-types │ ├── autocomplete.tsx │ ├── checkbox.tsx │ ├── combobox.tsx │ ├── index.tsx │ ├── menu.tsx │ ├── package.json │ ├── separator.tsx │ ├── toast.tsx │ ├── tsconfig.json │ └── use-render.tsx ├── regressions │ ├── README.md │ ├── TestViewer.tsx │ ├── fixtures │ │ └── .gitkeep │ ├── index.html │ ├── index.test.ts │ ├── main.tsx │ ├── manual │ │ └── README.md │ ├── postcss.config.js │ ├── serve.json │ ├── vite.config.mjs │ └── vitest.config.mts ├── setupVitest.ts ├── tsconfig.json ├── vite.d.ts └── vite.shared.config.mjs ├── tsconfig.base.json ├── tsconfig.json ├── vitest.config.mts └── vitest.shared.mts /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1.bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.github/ISSUE_TEMPLATE/1.bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2.feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.github/ISSUE_TEMPLATE/2.feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3.get-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.github/ISSUE_TEMPLATE/3.get-help.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/4.docs-feedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.github/ISSUE_TEMPLATE/4.docs-feedback.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/codeql/codeql-config.yml: -------------------------------------------------------------------------------- 1 | name: CodeQL configuration 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/check-if-pr-has-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.github/workflows/check-if-pr-has-label.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/ensure-triage-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.github/workflows/ensure-triage-label.yml -------------------------------------------------------------------------------- /.github/workflows/fixed-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.github/workflows/fixed-issue.yml -------------------------------------------------------------------------------- /.github/workflows/maintenance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.github/workflows/maintenance.yml -------------------------------------------------------------------------------- /.github/workflows/mark-duplicate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.github/workflows/mark-duplicate.yml -------------------------------------------------------------------------------- /.github/workflows/new-issue-triage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.github/workflows/new-issue-triage.yml -------------------------------------------------------------------------------- /.github/workflows/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.github/workflows/no-response.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/scorecards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.github/workflows/scorecards.yml -------------------------------------------------------------------------------- /.github/workflows/support-stackoverflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.github/workflows/support-stackoverflow.yml -------------------------------------------------------------------------------- /.github/workflows/vale-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.github/workflows/vale-action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.lintignore -------------------------------------------------------------------------------- /.markdownlint-cli2.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.markdownlint-cli2.mjs -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | enable-pre-post-scripts = true 2 | -------------------------------------------------------------------------------- /.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.vale.ini -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG.old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/CHANGELOG.old.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/SECURITY.md -------------------------------------------------------------------------------- /babel.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/babel.config.mjs -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/.env: -------------------------------------------------------------------------------- 1 | FEEDBACK_URL=https://hgvi836wi8.execute-api.us-east-1.amazonaws.com -------------------------------------------------------------------------------- /docs/.link-check-errors.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/next.config.mjs -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/postcss.config.js -------------------------------------------------------------------------------- /docs/public/_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/public/_headers -------------------------------------------------------------------------------- /docs/public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/public/_redirects -------------------------------------------------------------------------------- /docs/public/robots.txt: -------------------------------------------------------------------------------- 1 | # Algolia-Crawler-Verif: 98C49CAFF7AEED76 2 | 3 | User-agent: * 4 | Allow: / 5 | -------------------------------------------------------------------------------- /docs/public/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/public/static/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/public/static/favicon-dev.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/public/static/favicon-dev.ico -------------------------------------------------------------------------------- /docs/public/static/favicon-dev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/public/static/favicon-dev.svg -------------------------------------------------------------------------------- /docs/public/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/public/static/favicon.ico -------------------------------------------------------------------------------- /docs/public/static/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/public/static/favicon.svg -------------------------------------------------------------------------------- /docs/public/static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/public/static/logo.svg -------------------------------------------------------------------------------- /docs/reference/generated/accordion-header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/accordion-header.json -------------------------------------------------------------------------------- /docs/reference/generated/accordion-item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/accordion-item.json -------------------------------------------------------------------------------- /docs/reference/generated/accordion-panel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/accordion-panel.json -------------------------------------------------------------------------------- /docs/reference/generated/accordion-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/accordion-root.json -------------------------------------------------------------------------------- /docs/reference/generated/accordion-trigger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/accordion-trigger.json -------------------------------------------------------------------------------- /docs/reference/generated/alert-dialog-close.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/alert-dialog-close.json -------------------------------------------------------------------------------- /docs/reference/generated/alert-dialog-popup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/alert-dialog-popup.json -------------------------------------------------------------------------------- /docs/reference/generated/alert-dialog-portal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/alert-dialog-portal.json -------------------------------------------------------------------------------- /docs/reference/generated/alert-dialog-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/alert-dialog-root.json -------------------------------------------------------------------------------- /docs/reference/generated/alert-dialog-title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/alert-dialog-title.json -------------------------------------------------------------------------------- /docs/reference/generated/alert-dialog-trigger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/alert-dialog-trigger.json -------------------------------------------------------------------------------- /docs/reference/generated/autocomplete-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/autocomplete-root.json -------------------------------------------------------------------------------- /docs/reference/generated/autocomplete-value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/autocomplete-value.json -------------------------------------------------------------------------------- /docs/reference/generated/avatar-fallback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/avatar-fallback.json -------------------------------------------------------------------------------- /docs/reference/generated/avatar-image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/avatar-image.json -------------------------------------------------------------------------------- /docs/reference/generated/avatar-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/avatar-root.json -------------------------------------------------------------------------------- /docs/reference/generated/button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/button.json -------------------------------------------------------------------------------- /docs/reference/generated/checkbox-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/checkbox-group.json -------------------------------------------------------------------------------- /docs/reference/generated/checkbox-indicator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/checkbox-indicator.json -------------------------------------------------------------------------------- /docs/reference/generated/checkbox-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/checkbox-root.json -------------------------------------------------------------------------------- /docs/reference/generated/collapsible-panel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/collapsible-panel.json -------------------------------------------------------------------------------- /docs/reference/generated/collapsible-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/collapsible-root.json -------------------------------------------------------------------------------- /docs/reference/generated/collapsible-trigger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/collapsible-trigger.json -------------------------------------------------------------------------------- /docs/reference/generated/combobox-arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/combobox-arrow.json -------------------------------------------------------------------------------- /docs/reference/generated/combobox-backdrop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/combobox-backdrop.json -------------------------------------------------------------------------------- /docs/reference/generated/combobox-chip-remove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/combobox-chip-remove.json -------------------------------------------------------------------------------- /docs/reference/generated/combobox-chip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/combobox-chip.json -------------------------------------------------------------------------------- /docs/reference/generated/combobox-chips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/combobox-chips.json -------------------------------------------------------------------------------- /docs/reference/generated/combobox-clear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/combobox-clear.json -------------------------------------------------------------------------------- /docs/reference/generated/combobox-collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/combobox-collection.json -------------------------------------------------------------------------------- /docs/reference/generated/combobox-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/combobox-empty.json -------------------------------------------------------------------------------- /docs/reference/generated/combobox-group-label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/combobox-group-label.json -------------------------------------------------------------------------------- /docs/reference/generated/combobox-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/combobox-group.json -------------------------------------------------------------------------------- /docs/reference/generated/combobox-icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/combobox-icon.json -------------------------------------------------------------------------------- /docs/reference/generated/combobox-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/combobox-input.json -------------------------------------------------------------------------------- /docs/reference/generated/combobox-item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/combobox-item.json -------------------------------------------------------------------------------- /docs/reference/generated/combobox-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/combobox-list.json -------------------------------------------------------------------------------- /docs/reference/generated/combobox-popup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/combobox-popup.json -------------------------------------------------------------------------------- /docs/reference/generated/combobox-portal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/combobox-portal.json -------------------------------------------------------------------------------- /docs/reference/generated/combobox-positioner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/combobox-positioner.json -------------------------------------------------------------------------------- /docs/reference/generated/combobox-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/combobox-root.json -------------------------------------------------------------------------------- /docs/reference/generated/combobox-row.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/combobox-row.json -------------------------------------------------------------------------------- /docs/reference/generated/combobox-status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/combobox-status.json -------------------------------------------------------------------------------- /docs/reference/generated/combobox-trigger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/combobox-trigger.json -------------------------------------------------------------------------------- /docs/reference/generated/combobox-value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/combobox-value.json -------------------------------------------------------------------------------- /docs/reference/generated/context-menu-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/context-menu-root.json -------------------------------------------------------------------------------- /docs/reference/generated/context-menu-trigger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/context-menu-trigger.json -------------------------------------------------------------------------------- /docs/reference/generated/dialog-backdrop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/dialog-backdrop.json -------------------------------------------------------------------------------- /docs/reference/generated/dialog-close.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/dialog-close.json -------------------------------------------------------------------------------- /docs/reference/generated/dialog-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/dialog-description.json -------------------------------------------------------------------------------- /docs/reference/generated/dialog-popup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/dialog-popup.json -------------------------------------------------------------------------------- /docs/reference/generated/dialog-portal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/dialog-portal.json -------------------------------------------------------------------------------- /docs/reference/generated/dialog-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/dialog-root.json -------------------------------------------------------------------------------- /docs/reference/generated/dialog-title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/dialog-title.json -------------------------------------------------------------------------------- /docs/reference/generated/dialog-trigger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/dialog-trigger.json -------------------------------------------------------------------------------- /docs/reference/generated/dialog-viewport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/dialog-viewport.json -------------------------------------------------------------------------------- /docs/reference/generated/direction-provider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/direction-provider.json -------------------------------------------------------------------------------- /docs/reference/generated/field-control.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/field-control.json -------------------------------------------------------------------------------- /docs/reference/generated/field-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/field-description.json -------------------------------------------------------------------------------- /docs/reference/generated/field-error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/field-error.json -------------------------------------------------------------------------------- /docs/reference/generated/field-item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/field-item.json -------------------------------------------------------------------------------- /docs/reference/generated/field-label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/field-label.json -------------------------------------------------------------------------------- /docs/reference/generated/field-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/field-root.json -------------------------------------------------------------------------------- /docs/reference/generated/field-validity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/field-validity.json -------------------------------------------------------------------------------- /docs/reference/generated/fieldset-legend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/fieldset-legend.json -------------------------------------------------------------------------------- /docs/reference/generated/fieldset-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/fieldset-root.json -------------------------------------------------------------------------------- /docs/reference/generated/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/form.json -------------------------------------------------------------------------------- /docs/reference/generated/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/input.json -------------------------------------------------------------------------------- /docs/reference/generated/menu-arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/menu-arrow.json -------------------------------------------------------------------------------- /docs/reference/generated/menu-backdrop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/menu-backdrop.json -------------------------------------------------------------------------------- /docs/reference/generated/menu-checkbox-item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/menu-checkbox-item.json -------------------------------------------------------------------------------- /docs/reference/generated/menu-group-label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/menu-group-label.json -------------------------------------------------------------------------------- /docs/reference/generated/menu-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/menu-group.json -------------------------------------------------------------------------------- /docs/reference/generated/menu-item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/menu-item.json -------------------------------------------------------------------------------- /docs/reference/generated/menu-popup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/menu-popup.json -------------------------------------------------------------------------------- /docs/reference/generated/menu-portal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/menu-portal.json -------------------------------------------------------------------------------- /docs/reference/generated/menu-positioner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/menu-positioner.json -------------------------------------------------------------------------------- /docs/reference/generated/menu-radio-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/menu-radio-group.json -------------------------------------------------------------------------------- /docs/reference/generated/menu-radio-item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/menu-radio-item.json -------------------------------------------------------------------------------- /docs/reference/generated/menu-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/menu-root.json -------------------------------------------------------------------------------- /docs/reference/generated/menu-submenu-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/menu-submenu-root.json -------------------------------------------------------------------------------- /docs/reference/generated/menu-submenu-trigger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/menu-submenu-trigger.json -------------------------------------------------------------------------------- /docs/reference/generated/menu-trigger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/menu-trigger.json -------------------------------------------------------------------------------- /docs/reference/generated/menubar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/menubar.json -------------------------------------------------------------------------------- /docs/reference/generated/meter-indicator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/meter-indicator.json -------------------------------------------------------------------------------- /docs/reference/generated/meter-label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/meter-label.json -------------------------------------------------------------------------------- /docs/reference/generated/meter-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/meter-root.json -------------------------------------------------------------------------------- /docs/reference/generated/meter-track.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/meter-track.json -------------------------------------------------------------------------------- /docs/reference/generated/meter-value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/meter-value.json -------------------------------------------------------------------------------- /docs/reference/generated/navigation-menu-icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/navigation-menu-icon.json -------------------------------------------------------------------------------- /docs/reference/generated/navigation-menu-item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/navigation-menu-item.json -------------------------------------------------------------------------------- /docs/reference/generated/navigation-menu-link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/navigation-menu-link.json -------------------------------------------------------------------------------- /docs/reference/generated/navigation-menu-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/navigation-menu-list.json -------------------------------------------------------------------------------- /docs/reference/generated/navigation-menu-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/navigation-menu-root.json -------------------------------------------------------------------------------- /docs/reference/generated/number-field-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/number-field-group.json -------------------------------------------------------------------------------- /docs/reference/generated/number-field-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/number-field-input.json -------------------------------------------------------------------------------- /docs/reference/generated/number-field-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/number-field-root.json -------------------------------------------------------------------------------- /docs/reference/generated/popover-arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/popover-arrow.json -------------------------------------------------------------------------------- /docs/reference/generated/popover-backdrop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/popover-backdrop.json -------------------------------------------------------------------------------- /docs/reference/generated/popover-close.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/popover-close.json -------------------------------------------------------------------------------- /docs/reference/generated/popover-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/popover-description.json -------------------------------------------------------------------------------- /docs/reference/generated/popover-popup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/popover-popup.json -------------------------------------------------------------------------------- /docs/reference/generated/popover-portal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/popover-portal.json -------------------------------------------------------------------------------- /docs/reference/generated/popover-positioner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/popover-positioner.json -------------------------------------------------------------------------------- /docs/reference/generated/popover-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/popover-root.json -------------------------------------------------------------------------------- /docs/reference/generated/popover-title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/popover-title.json -------------------------------------------------------------------------------- /docs/reference/generated/popover-trigger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/popover-trigger.json -------------------------------------------------------------------------------- /docs/reference/generated/popover-viewport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/popover-viewport.json -------------------------------------------------------------------------------- /docs/reference/generated/preview-card-arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/preview-card-arrow.json -------------------------------------------------------------------------------- /docs/reference/generated/preview-card-popup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/preview-card-popup.json -------------------------------------------------------------------------------- /docs/reference/generated/preview-card-portal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/preview-card-portal.json -------------------------------------------------------------------------------- /docs/reference/generated/preview-card-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/preview-card-root.json -------------------------------------------------------------------------------- /docs/reference/generated/preview-card-trigger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/preview-card-trigger.json -------------------------------------------------------------------------------- /docs/reference/generated/progress-indicator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/progress-indicator.json -------------------------------------------------------------------------------- /docs/reference/generated/progress-label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/progress-label.json -------------------------------------------------------------------------------- /docs/reference/generated/progress-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/progress-root.json -------------------------------------------------------------------------------- /docs/reference/generated/progress-track.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/progress-track.json -------------------------------------------------------------------------------- /docs/reference/generated/progress-value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/progress-value.json -------------------------------------------------------------------------------- /docs/reference/generated/radio-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/radio-group.json -------------------------------------------------------------------------------- /docs/reference/generated/radio-indicator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/radio-indicator.json -------------------------------------------------------------------------------- /docs/reference/generated/radio-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/radio-root.json -------------------------------------------------------------------------------- /docs/reference/generated/scroll-area-content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/scroll-area-content.json -------------------------------------------------------------------------------- /docs/reference/generated/scroll-area-corner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/scroll-area-corner.json -------------------------------------------------------------------------------- /docs/reference/generated/scroll-area-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/scroll-area-root.json -------------------------------------------------------------------------------- /docs/reference/generated/scroll-area-thumb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/scroll-area-thumb.json -------------------------------------------------------------------------------- /docs/reference/generated/scroll-area-viewport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/scroll-area-viewport.json -------------------------------------------------------------------------------- /docs/reference/generated/select-arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/select-arrow.json -------------------------------------------------------------------------------- /docs/reference/generated/select-backdrop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/select-backdrop.json -------------------------------------------------------------------------------- /docs/reference/generated/select-group-label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/select-group-label.json -------------------------------------------------------------------------------- /docs/reference/generated/select-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/select-group.json -------------------------------------------------------------------------------- /docs/reference/generated/select-icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/select-icon.json -------------------------------------------------------------------------------- /docs/reference/generated/select-item-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/select-item-text.json -------------------------------------------------------------------------------- /docs/reference/generated/select-item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/select-item.json -------------------------------------------------------------------------------- /docs/reference/generated/select-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/select-list.json -------------------------------------------------------------------------------- /docs/reference/generated/select-popup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/select-popup.json -------------------------------------------------------------------------------- /docs/reference/generated/select-portal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/select-portal.json -------------------------------------------------------------------------------- /docs/reference/generated/select-positioner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/select-positioner.json -------------------------------------------------------------------------------- /docs/reference/generated/select-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/select-root.json -------------------------------------------------------------------------------- /docs/reference/generated/select-trigger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/select-trigger.json -------------------------------------------------------------------------------- /docs/reference/generated/select-value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/select-value.json -------------------------------------------------------------------------------- /docs/reference/generated/separator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/separator.json -------------------------------------------------------------------------------- /docs/reference/generated/slider-control.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/slider-control.json -------------------------------------------------------------------------------- /docs/reference/generated/slider-indicator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/slider-indicator.json -------------------------------------------------------------------------------- /docs/reference/generated/slider-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/slider-root.json -------------------------------------------------------------------------------- /docs/reference/generated/slider-thumb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/slider-thumb.json -------------------------------------------------------------------------------- /docs/reference/generated/slider-track.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/slider-track.json -------------------------------------------------------------------------------- /docs/reference/generated/slider-value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/slider-value.json -------------------------------------------------------------------------------- /docs/reference/generated/switch-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/switch-root.json -------------------------------------------------------------------------------- /docs/reference/generated/switch-thumb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/switch-thumb.json -------------------------------------------------------------------------------- /docs/reference/generated/tabs-indicator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/tabs-indicator.json -------------------------------------------------------------------------------- /docs/reference/generated/tabs-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/tabs-list.json -------------------------------------------------------------------------------- /docs/reference/generated/tabs-panel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/tabs-panel.json -------------------------------------------------------------------------------- /docs/reference/generated/tabs-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/tabs-root.json -------------------------------------------------------------------------------- /docs/reference/generated/tabs-tab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/tabs-tab.json -------------------------------------------------------------------------------- /docs/reference/generated/toast-action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/toast-action.json -------------------------------------------------------------------------------- /docs/reference/generated/toast-arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/toast-arrow.json -------------------------------------------------------------------------------- /docs/reference/generated/toast-close.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/toast-close.json -------------------------------------------------------------------------------- /docs/reference/generated/toast-content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/toast-content.json -------------------------------------------------------------------------------- /docs/reference/generated/toast-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/toast-description.json -------------------------------------------------------------------------------- /docs/reference/generated/toast-portal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/toast-portal.json -------------------------------------------------------------------------------- /docs/reference/generated/toast-positioner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/toast-positioner.json -------------------------------------------------------------------------------- /docs/reference/generated/toast-provider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/toast-provider.json -------------------------------------------------------------------------------- /docs/reference/generated/toast-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/toast-root.json -------------------------------------------------------------------------------- /docs/reference/generated/toast-title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/toast-title.json -------------------------------------------------------------------------------- /docs/reference/generated/toast-viewport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/toast-viewport.json -------------------------------------------------------------------------------- /docs/reference/generated/toggle-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/toggle-group.json -------------------------------------------------------------------------------- /docs/reference/generated/toggle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/toggle.json -------------------------------------------------------------------------------- /docs/reference/generated/toolbar-button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/toolbar-button.json -------------------------------------------------------------------------------- /docs/reference/generated/toolbar-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/toolbar-group.json -------------------------------------------------------------------------------- /docs/reference/generated/toolbar-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/toolbar-input.json -------------------------------------------------------------------------------- /docs/reference/generated/toolbar-link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/toolbar-link.json -------------------------------------------------------------------------------- /docs/reference/generated/toolbar-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/toolbar-root.json -------------------------------------------------------------------------------- /docs/reference/generated/toolbar-separator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/toolbar-separator.json -------------------------------------------------------------------------------- /docs/reference/generated/tooltip-arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/tooltip-arrow.json -------------------------------------------------------------------------------- /docs/reference/generated/tooltip-popup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/tooltip-popup.json -------------------------------------------------------------------------------- /docs/reference/generated/tooltip-portal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/tooltip-portal.json -------------------------------------------------------------------------------- /docs/reference/generated/tooltip-positioner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/tooltip-positioner.json -------------------------------------------------------------------------------- /docs/reference/generated/tooltip-provider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/tooltip-provider.json -------------------------------------------------------------------------------- /docs/reference/generated/tooltip-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/tooltip-root.json -------------------------------------------------------------------------------- /docs/reference/generated/tooltip-trigger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/tooltip-trigger.json -------------------------------------------------------------------------------- /docs/reference/generated/tooltip-viewport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/tooltip-viewport.json -------------------------------------------------------------------------------- /docs/reference/generated/use-render.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/reference/generated/use-render.json -------------------------------------------------------------------------------- /docs/scripts/generateLlmTxt/demoProcessor.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/scripts/generateLlmTxt/demoProcessor.mjs -------------------------------------------------------------------------------- /docs/scripts/generateLlmTxt/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/scripts/generateLlmTxt/index.mjs -------------------------------------------------------------------------------- /docs/scripts/generateLlmTxt/mdxNodeHelpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/scripts/generateLlmTxt/mdxNodeHelpers.mjs -------------------------------------------------------------------------------- /docs/scripts/generateLlmTxt/mdxToMarkdown.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/scripts/generateLlmTxt/mdxToMarkdown.mjs -------------------------------------------------------------------------------- /docs/scripts/generateLlmTxt/mdxToMarkdown.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/scripts/generateLlmTxt/mdxToMarkdown.test.mjs -------------------------------------------------------------------------------- /docs/scripts/generateLlmTxt/referenceProcessor.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/scripts/generateLlmTxt/referenceProcessor.mjs -------------------------------------------------------------------------------- /docs/scripts/generateLlmTxt/resolver.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/scripts/generateLlmTxt/resolver.mjs -------------------------------------------------------------------------------- /docs/scripts/playground.template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/scripts/playground.template.tsx -------------------------------------------------------------------------------- /docs/scripts/rehypeExtractLinkUrls.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/scripts/rehypeExtractLinkUrls.mts -------------------------------------------------------------------------------- /docs/scripts/reportBrokenLinks.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/scripts/reportBrokenLinks.mts -------------------------------------------------------------------------------- /docs/src/app/(private)/experiments/forms/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(private)/experiments/forms/form.tsx -------------------------------------------------------------------------------- /docs/src/app/(private)/experiments/forms/rhf.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(private)/experiments/forms/rhf.tsx -------------------------------------------------------------------------------- /docs/src/app/(private)/experiments/long-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(private)/experiments/long-select.tsx -------------------------------------------------------------------------------- /docs/src/app/(private)/experiments/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(private)/experiments/menubar.tsx -------------------------------------------------------------------------------- /docs/src/app/(private)/experiments/meter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(private)/experiments/meter.tsx -------------------------------------------------------------------------------- /docs/src/app/(private)/experiments/modality.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(private)/experiments/modality.tsx -------------------------------------------------------------------------------- /docs/src/app/(private)/experiments/motion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(private)/experiments/motion.tsx -------------------------------------------------------------------------------- /docs/src/app/(private)/experiments/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(private)/experiments/page.tsx -------------------------------------------------------------------------------- /docs/src/app/(private)/experiments/rtl.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(private)/experiments/rtl.module.css -------------------------------------------------------------------------------- /docs/src/app/(private)/experiments/rtl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(private)/experiments/rtl.tsx -------------------------------------------------------------------------------- /docs/src/app/(private)/experiments/scroll-lock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(private)/experiments/scroll-lock.tsx -------------------------------------------------------------------------------- /docs/src/app/(private)/experiments/select-perf.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(private)/experiments/select-perf.tsx -------------------------------------------------------------------------------- /docs/src/app/(private)/experiments/tabs.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(private)/experiments/tabs.module.css -------------------------------------------------------------------------------- /docs/src/app/(private)/experiments/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(private)/experiments/tabs.tsx -------------------------------------------------------------------------------- /docs/src/app/(private)/experiments/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(private)/experiments/toast.tsx -------------------------------------------------------------------------------- /docs/src/app/(private)/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(private)/layout.css -------------------------------------------------------------------------------- /docs/src/app/(private)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(private)/layout.tsx -------------------------------------------------------------------------------- /docs/src/app/(private)/playground/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(private)/playground/[slug]/page.tsx -------------------------------------------------------------------------------- /docs/src/app/(public)/(content)/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(public)/(content)/layout.css -------------------------------------------------------------------------------- /docs/src/app/(public)/(content)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(public)/(content)/layout.tsx -------------------------------------------------------------------------------- /docs/src/app/(public)/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(public)/layout.css -------------------------------------------------------------------------------- /docs/src/app/(public)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(public)/layout.tsx -------------------------------------------------------------------------------- /docs/src/app/(public)/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(public)/opengraph-image.png -------------------------------------------------------------------------------- /docs/src/app/(public)/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(public)/page.css -------------------------------------------------------------------------------- /docs/src/app/(public)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/(public)/page.tsx -------------------------------------------------------------------------------- /docs/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/layout.tsx -------------------------------------------------------------------------------- /docs/src/app/not-found.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/not-found.css -------------------------------------------------------------------------------- /docs/src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/app/not-found.tsx -------------------------------------------------------------------------------- /docs/src/blocks/Demo/DemoContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/blocks/Demo/DemoContext.ts -------------------------------------------------------------------------------- /docs/src/blocks/Demo/DemoPlayground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/blocks/Demo/DemoPlayground.tsx -------------------------------------------------------------------------------- /docs/src/blocks/Demo/DemoRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/blocks/Demo/DemoRoot.tsx -------------------------------------------------------------------------------- /docs/src/blocks/Demo/DemoSourceBrowser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/blocks/Demo/DemoSourceBrowser.tsx -------------------------------------------------------------------------------- /docs/src/blocks/Demo/DemoSourceCopy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/blocks/Demo/DemoSourceCopy.tsx -------------------------------------------------------------------------------- /docs/src/blocks/Demo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/blocks/Demo/index.ts -------------------------------------------------------------------------------- /docs/src/blocks/Demo/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/blocks/Demo/types.ts -------------------------------------------------------------------------------- /docs/src/blocks/GoogleAnalytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/blocks/GoogleAnalytics.tsx -------------------------------------------------------------------------------- /docs/src/blocks/GoogleTagManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/blocks/GoogleTagManager.tsx -------------------------------------------------------------------------------- /docs/src/blocks/PackageManagerSnippet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/blocks/PackageManagerSnippet/index.ts -------------------------------------------------------------------------------- /docs/src/blocks/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/blocks/README.txt -------------------------------------------------------------------------------- /docs/src/blocks/createCodeSandbox/packDemo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/blocks/createCodeSandbox/packDemo.test.ts -------------------------------------------------------------------------------- /docs/src/blocks/createCodeSandbox/packDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/blocks/createCodeSandbox/packDemo.ts -------------------------------------------------------------------------------- /docs/src/breakpoints.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/breakpoints.css -------------------------------------------------------------------------------- /docs/src/components/Accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Accordion.css -------------------------------------------------------------------------------- /docs/src/components/Accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Accordion.tsx -------------------------------------------------------------------------------- /docs/src/components/Code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Code.css -------------------------------------------------------------------------------- /docs/src/components/Code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Code.tsx -------------------------------------------------------------------------------- /docs/src/components/CodeBlock.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/CodeBlock.css -------------------------------------------------------------------------------- /docs/src/components/CodeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/CodeBlock.tsx -------------------------------------------------------------------------------- /docs/src/components/Demo/CodeHighlighting.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Demo/CodeHighlighting.css -------------------------------------------------------------------------------- /docs/src/components/Demo/Demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Demo/Demo.css -------------------------------------------------------------------------------- /docs/src/components/Demo/Demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Demo/Demo.tsx -------------------------------------------------------------------------------- /docs/src/components/Demo/DemoCodeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Demo/DemoCodeBlock.tsx -------------------------------------------------------------------------------- /docs/src/components/Demo/DemoErrorFallback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Demo/DemoErrorFallback.tsx -------------------------------------------------------------------------------- /docs/src/components/Demo/DemoFileSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Demo/DemoFileSelector.tsx -------------------------------------------------------------------------------- /docs/src/components/Demo/DemoPlayground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Demo/DemoPlayground.tsx -------------------------------------------------------------------------------- /docs/src/components/Demo/DemoVariantSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Demo/DemoVariantSelector.tsx -------------------------------------------------------------------------------- /docs/src/components/DescriptionList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/DescriptionList.css -------------------------------------------------------------------------------- /docs/src/components/DescriptionList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/DescriptionList.tsx -------------------------------------------------------------------------------- /docs/src/components/DocsProviders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/DocsProviders.tsx -------------------------------------------------------------------------------- /docs/src/components/Experiments/Button.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Experiments/Button.module.css -------------------------------------------------------------------------------- /docs/src/components/Experiments/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Experiments/Button.tsx -------------------------------------------------------------------------------- /docs/src/components/Experiments/EditPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Experiments/EditPanel.tsx -------------------------------------------------------------------------------- /docs/src/components/Experiments/ExperimentRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Experiments/ExperimentRoot.tsx -------------------------------------------------------------------------------- /docs/src/components/Experiments/HideSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Experiments/HideSidebar.tsx -------------------------------------------------------------------------------- /docs/src/components/Experiments/Input.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Experiments/Input.module.css -------------------------------------------------------------------------------- /docs/src/components/Experiments/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Experiments/Input.tsx -------------------------------------------------------------------------------- /docs/src/components/Experiments/SandboxLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Experiments/SandboxLink.tsx -------------------------------------------------------------------------------- /docs/src/components/Experiments/Select.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Experiments/Select.module.css -------------------------------------------------------------------------------- /docs/src/components/Experiments/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Experiments/Select.tsx -------------------------------------------------------------------------------- /docs/src/components/Experiments/SettingsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Experiments/SettingsPanel.tsx -------------------------------------------------------------------------------- /docs/src/components/Experiments/ShowSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Experiments/ShowSidebar.tsx -------------------------------------------------------------------------------- /docs/src/components/Experiments/Sidebar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Experiments/Sidebar.module.css -------------------------------------------------------------------------------- /docs/src/components/Experiments/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Experiments/Sidebar.tsx -------------------------------------------------------------------------------- /docs/src/components/Experiments/Switch.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Experiments/Switch.module.css -------------------------------------------------------------------------------- /docs/src/components/Experiments/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Experiments/Switch.tsx -------------------------------------------------------------------------------- /docs/src/components/Experiments/Tooltip.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Experiments/Tooltip.module.css -------------------------------------------------------------------------------- /docs/src/components/Experiments/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Experiments/Tooltip.tsx -------------------------------------------------------------------------------- /docs/src/components/GhostButton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/GhostButton.css -------------------------------------------------------------------------------- /docs/src/components/GhostButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/GhostButton.tsx -------------------------------------------------------------------------------- /docs/src/components/GoogleAnalytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/GoogleAnalytics.tsx -------------------------------------------------------------------------------- /docs/src/components/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Header.css -------------------------------------------------------------------------------- /docs/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Header.tsx -------------------------------------------------------------------------------- /docs/src/components/HeadingLink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/HeadingLink.css -------------------------------------------------------------------------------- /docs/src/components/HeadingLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/HeadingLink.tsx -------------------------------------------------------------------------------- /docs/src/components/Kbd/Kbd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Kbd/Kbd.css -------------------------------------------------------------------------------- /docs/src/components/Kbd/Kbd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Kbd/Kbd.tsx -------------------------------------------------------------------------------- /docs/src/components/Kbd/rehypeKbd.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Kbd/rehypeKbd.mjs -------------------------------------------------------------------------------- /docs/src/components/Link.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Link.css -------------------------------------------------------------------------------- /docs/src/components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Link.tsx -------------------------------------------------------------------------------- /docs/src/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Logo.tsx -------------------------------------------------------------------------------- /docs/src/components/MobileNav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/MobileNav.css -------------------------------------------------------------------------------- /docs/src/components/MobileNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/MobileNav.tsx -------------------------------------------------------------------------------- /docs/src/components/Popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Popup.css -------------------------------------------------------------------------------- /docs/src/components/Popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Popup.tsx -------------------------------------------------------------------------------- /docs/src/components/QuickNav/QuickNav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/QuickNav/QuickNav.css -------------------------------------------------------------------------------- /docs/src/components/QuickNav/QuickNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/QuickNav/QuickNav.tsx -------------------------------------------------------------------------------- /docs/src/components/QuickNav/rehypeQuickNav.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/QuickNav/rehypeQuickNav.mjs -------------------------------------------------------------------------------- /docs/src/components/QuickNav/rehypeSlug.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/QuickNav/rehypeSlug.mjs -------------------------------------------------------------------------------- /docs/src/components/ReferenceTable/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/ReferenceTable/types.ts -------------------------------------------------------------------------------- /docs/src/components/ScrollArea.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/ScrollArea.css -------------------------------------------------------------------------------- /docs/src/components/ScrollArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/ScrollArea.tsx -------------------------------------------------------------------------------- /docs/src/components/Select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Select.css -------------------------------------------------------------------------------- /docs/src/components/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Select.tsx -------------------------------------------------------------------------------- /docs/src/components/SideNav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/SideNav.css -------------------------------------------------------------------------------- /docs/src/components/SideNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/SideNav.tsx -------------------------------------------------------------------------------- /docs/src/components/SkipNav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/SkipNav.css -------------------------------------------------------------------------------- /docs/src/components/SkipNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/SkipNav.tsx -------------------------------------------------------------------------------- /docs/src/components/Subtitle/MarkdownLink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Subtitle/MarkdownLink.css -------------------------------------------------------------------------------- /docs/src/components/Subtitle/MarkdownLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Subtitle/MarkdownLink.tsx -------------------------------------------------------------------------------- /docs/src/components/Subtitle/Subtitle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Subtitle/Subtitle.css -------------------------------------------------------------------------------- /docs/src/components/Subtitle/Subtitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Subtitle/Subtitle.tsx -------------------------------------------------------------------------------- /docs/src/components/Subtitle/rehypeSubtitle.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Subtitle/rehypeSubtitle.mjs -------------------------------------------------------------------------------- /docs/src/components/Table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Table.css -------------------------------------------------------------------------------- /docs/src/components/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/Table.tsx -------------------------------------------------------------------------------- /docs/src/components/TableCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/components/TableCode.tsx -------------------------------------------------------------------------------- /docs/src/demo-data/theme/css-modules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/demo-data/theme/css-modules/index.ts -------------------------------------------------------------------------------- /docs/src/demo-data/theme/css-modules/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/demo-data/theme/css-modules/theme.css -------------------------------------------------------------------------------- /docs/src/demo-data/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/demo-data/theme/index.ts -------------------------------------------------------------------------------- /docs/src/demo-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/demo-theme.css -------------------------------------------------------------------------------- /docs/src/error-codes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/error-codes.json -------------------------------------------------------------------------------- /docs/src/fonts/bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/fonts/bold.woff2 -------------------------------------------------------------------------------- /docs/src/fonts/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/fonts/index.css -------------------------------------------------------------------------------- /docs/src/fonts/medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/fonts/medium.woff2 -------------------------------------------------------------------------------- /docs/src/fonts/regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/fonts/regular.woff2 -------------------------------------------------------------------------------- /docs/src/icons/ArrowRightIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/icons/ArrowRightIcon.tsx -------------------------------------------------------------------------------- /docs/src/icons/CheckIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/icons/CheckIcon.tsx -------------------------------------------------------------------------------- /docs/src/icons/ChevronDownIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/icons/ChevronDownIcon.tsx -------------------------------------------------------------------------------- /docs/src/icons/CopyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/icons/CopyIcon.tsx -------------------------------------------------------------------------------- /docs/src/icons/ExternalLinkIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/icons/ExternalLinkIcon.tsx -------------------------------------------------------------------------------- /docs/src/icons/GitHubIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/icons/GitHubIcon.tsx -------------------------------------------------------------------------------- /docs/src/icons/MarkdownIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/icons/MarkdownIcon.tsx -------------------------------------------------------------------------------- /docs/src/icons/NpmIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/icons/NpmIcon.tsx -------------------------------------------------------------------------------- /docs/src/icons/ThickCheckIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/icons/ThickCheckIcon.tsx -------------------------------------------------------------------------------- /docs/src/mdx-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/mdx-components.tsx -------------------------------------------------------------------------------- /docs/src/mdx/createHast.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/mdx/createHast.mjs -------------------------------------------------------------------------------- /docs/src/mdx/createMdxComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/mdx/createMdxComponent.ts -------------------------------------------------------------------------------- /docs/src/mdx/createMdxElement.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/mdx/createMdxElement.mjs -------------------------------------------------------------------------------- /docs/src/nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/nav.ts -------------------------------------------------------------------------------- /docs/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/styles.css -------------------------------------------------------------------------------- /docs/src/syntax-highlighting/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/syntax-highlighting/index.css -------------------------------------------------------------------------------- /docs/src/syntax-highlighting/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/syntax-highlighting/index.mjs -------------------------------------------------------------------------------- /docs/src/syntax-highlighting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/syntax-highlighting/index.ts -------------------------------------------------------------------------------- /docs/src/syntax-highlighting/rehypeEmptyLines.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/syntax-highlighting/rehypeEmptyLines.mjs -------------------------------------------------------------------------------- /docs/src/syntax-highlighting/rehypeInlineCode.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/syntax-highlighting/rehypeInlineCode.mjs -------------------------------------------------------------------------------- /docs/src/utils/camelToSentenceCase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/utils/camelToSentenceCase.ts -------------------------------------------------------------------------------- /docs/src/utils/createDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/utils/createDemo.ts -------------------------------------------------------------------------------- /docs/src/utils/demoExportOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/utils/demoExportOptions.ts -------------------------------------------------------------------------------- /docs/src/utils/getChildrenText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/utils/getChildrenText.ts -------------------------------------------------------------------------------- /docs/src/utils/observeScrollableInner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/src/utils/observeScrollableInner.ts -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /docs/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/types.d.ts -------------------------------------------------------------------------------- /docs/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/docs/vitest.config.mts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /examples/vite-css/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/examples/vite-css/.gitignore -------------------------------------------------------------------------------- /examples/vite-css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/examples/vite-css/README.md -------------------------------------------------------------------------------- /examples/vite-css/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/examples/vite-css/eslint.config.js -------------------------------------------------------------------------------- /examples/vite-css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/examples/vite-css/index.html -------------------------------------------------------------------------------- /examples/vite-css/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/examples/vite-css/package.json -------------------------------------------------------------------------------- /examples/vite-css/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/examples/vite-css/src/App.css -------------------------------------------------------------------------------- /examples/vite-css/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/examples/vite-css/src/App.tsx -------------------------------------------------------------------------------- /examples/vite-css/src/assets/base-ui.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/examples/vite-css/src/assets/base-ui.svg -------------------------------------------------------------------------------- /examples/vite-css/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/examples/vite-css/src/assets/react.svg -------------------------------------------------------------------------------- /examples/vite-css/src/assets/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/examples/vite-css/src/assets/vite.svg -------------------------------------------------------------------------------- /examples/vite-css/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/examples/vite-css/src/index.css -------------------------------------------------------------------------------- /examples/vite-css/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/examples/vite-css/src/main.tsx -------------------------------------------------------------------------------- /examples/vite-css/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/vite-css/src/widgets/Switch.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/examples/vite-css/src/widgets/Switch.module.css -------------------------------------------------------------------------------- /examples/vite-css/src/widgets/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/examples/vite-css/src/widgets/Switch.tsx -------------------------------------------------------------------------------- /examples/vite-css/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/examples/vite-css/tsconfig.app.json -------------------------------------------------------------------------------- /examples/vite-css/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/examples/vite-css/tsconfig.json -------------------------------------------------------------------------------- /examples/vite-css/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/examples/vite-css/tsconfig.node.json -------------------------------------------------------------------------------- /examples/vite-css/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/examples/vite-css/vite.config.ts -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/lerna.json -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/netlify.toml -------------------------------------------------------------------------------- /netlify/functions/deploy-succeeded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/netlify/functions/deploy-succeeded.js -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/package.json -------------------------------------------------------------------------------- /packages/react/.npmignore: -------------------------------------------------------------------------------- 1 | *.tsbuildinfo 2 | -------------------------------------------------------------------------------- /packages/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/README.md -------------------------------------------------------------------------------- /packages/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/package.json -------------------------------------------------------------------------------- /packages/react/src/accordion/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/accordion/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/accordion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/accordion/index.ts -------------------------------------------------------------------------------- /packages/react/src/alert-dialog/handle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/alert-dialog/handle.ts -------------------------------------------------------------------------------- /packages/react/src/alert-dialog/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/alert-dialog/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/alert-dialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/alert-dialog/index.ts -------------------------------------------------------------------------------- /packages/react/src/autocomplete/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/autocomplete/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/autocomplete/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/autocomplete/index.ts -------------------------------------------------------------------------------- /packages/react/src/avatar/image/AvatarImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/avatar/image/AvatarImage.tsx -------------------------------------------------------------------------------- /packages/react/src/avatar/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/avatar/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/avatar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/avatar/index.ts -------------------------------------------------------------------------------- /packages/react/src/avatar/root/AvatarRoot.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/avatar/root/AvatarRoot.test.tsx -------------------------------------------------------------------------------- /packages/react/src/avatar/root/AvatarRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/avatar/root/AvatarRoot.tsx -------------------------------------------------------------------------------- /packages/react/src/button/Button.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/button/Button.spec.tsx -------------------------------------------------------------------------------- /packages/react/src/button/Button.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/button/Button.test.tsx -------------------------------------------------------------------------------- /packages/react/src/button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/button/Button.tsx -------------------------------------------------------------------------------- /packages/react/src/button/ButtonDataAttributes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/button/ButtonDataAttributes.tsx -------------------------------------------------------------------------------- /packages/react/src/button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/button/index.ts -------------------------------------------------------------------------------- /packages/react/src/checkbox-group/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/checkbox-group/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/checkbox-group/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/checkbox-group/index.ts -------------------------------------------------------------------------------- /packages/react/src/checkbox/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/checkbox/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/checkbox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/checkbox/index.ts -------------------------------------------------------------------------------- /packages/react/src/checkbox/root/CheckboxRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/checkbox/root/CheckboxRoot.tsx -------------------------------------------------------------------------------- /packages/react/src/collapsible/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/collapsible/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/collapsible/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/collapsible/index.ts -------------------------------------------------------------------------------- /packages/react/src/combobox/chip/ComboboxChip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/combobox/chip/ComboboxChip.tsx -------------------------------------------------------------------------------- /packages/react/src/combobox/icon/ComboboxIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/combobox/icon/ComboboxIcon.tsx -------------------------------------------------------------------------------- /packages/react/src/combobox/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/combobox/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/combobox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/combobox/index.ts -------------------------------------------------------------------------------- /packages/react/src/combobox/item/ComboboxItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/combobox/item/ComboboxItem.tsx -------------------------------------------------------------------------------- /packages/react/src/combobox/list/ComboboxList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/combobox/list/ComboboxList.tsx -------------------------------------------------------------------------------- /packages/react/src/combobox/root/AriaCombobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/combobox/root/AriaCombobox.tsx -------------------------------------------------------------------------------- /packages/react/src/combobox/root/ComboboxRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/combobox/root/ComboboxRoot.tsx -------------------------------------------------------------------------------- /packages/react/src/combobox/root/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/combobox/root/utils/index.ts -------------------------------------------------------------------------------- /packages/react/src/combobox/row/ComboboxRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/combobox/row/ComboboxRow.tsx -------------------------------------------------------------------------------- /packages/react/src/combobox/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/combobox/store.ts -------------------------------------------------------------------------------- /packages/react/src/composite/composite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/composite/composite.ts -------------------------------------------------------------------------------- /packages/react/src/composite/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/composite/constants.ts -------------------------------------------------------------------------------- /packages/react/src/context-menu/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/context-menu/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/context-menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/context-menu/index.ts -------------------------------------------------------------------------------- /packages/react/src/dialog/close/DialogClose.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/dialog/close/DialogClose.tsx -------------------------------------------------------------------------------- /packages/react/src/dialog/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/dialog/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/dialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/dialog/index.ts -------------------------------------------------------------------------------- /packages/react/src/dialog/popup/DialogPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/dialog/popup/DialogPopup.tsx -------------------------------------------------------------------------------- /packages/react/src/dialog/portal/DialogPortal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/dialog/portal/DialogPortal.tsx -------------------------------------------------------------------------------- /packages/react/src/dialog/root/DialogRoot.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/dialog/root/DialogRoot.spec.tsx -------------------------------------------------------------------------------- /packages/react/src/dialog/root/DialogRoot.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/dialog/root/DialogRoot.test.tsx -------------------------------------------------------------------------------- /packages/react/src/dialog/root/DialogRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/dialog/root/DialogRoot.tsx -------------------------------------------------------------------------------- /packages/react/src/dialog/root/useDialogRoot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/dialog/root/useDialogRoot.ts -------------------------------------------------------------------------------- /packages/react/src/dialog/store/DialogHandle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/dialog/store/DialogHandle.ts -------------------------------------------------------------------------------- /packages/react/src/dialog/store/DialogStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/dialog/store/DialogStore.ts -------------------------------------------------------------------------------- /packages/react/src/dialog/title/DialogTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/dialog/title/DialogTitle.tsx -------------------------------------------------------------------------------- /packages/react/src/direction-provider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/direction-provider/index.ts -------------------------------------------------------------------------------- /packages/react/src/field/control/FieldControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/field/control/FieldControl.tsx -------------------------------------------------------------------------------- /packages/react/src/field/error/FieldError.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/field/error/FieldError.test.tsx -------------------------------------------------------------------------------- /packages/react/src/field/error/FieldError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/field/error/FieldError.tsx -------------------------------------------------------------------------------- /packages/react/src/field/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/field/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/field/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/field/index.ts -------------------------------------------------------------------------------- /packages/react/src/field/item/FieldItem.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/field/item/FieldItem.test.tsx -------------------------------------------------------------------------------- /packages/react/src/field/item/FieldItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/field/item/FieldItem.tsx -------------------------------------------------------------------------------- /packages/react/src/field/item/FieldItemContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/field/item/FieldItemContext.ts -------------------------------------------------------------------------------- /packages/react/src/field/label/FieldLabel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/field/label/FieldLabel.test.tsx -------------------------------------------------------------------------------- /packages/react/src/field/label/FieldLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/field/label/FieldLabel.tsx -------------------------------------------------------------------------------- /packages/react/src/field/root/FieldRoot.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/field/root/FieldRoot.test.tsx -------------------------------------------------------------------------------- /packages/react/src/field/root/FieldRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/field/root/FieldRoot.tsx -------------------------------------------------------------------------------- /packages/react/src/field/root/FieldRootContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/field/root/FieldRootContext.ts -------------------------------------------------------------------------------- /packages/react/src/field/useField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/field/useField.ts -------------------------------------------------------------------------------- /packages/react/src/field/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/field/utils/constants.ts -------------------------------------------------------------------------------- /packages/react/src/fieldset/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/fieldset/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/fieldset/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/fieldset/index.ts -------------------------------------------------------------------------------- /packages/react/src/fieldset/root/FieldsetRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/fieldset/root/FieldsetRoot.tsx -------------------------------------------------------------------------------- /packages/react/src/floating-ui-react/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/floating-ui-react/index.ts -------------------------------------------------------------------------------- /packages/react/src/floating-ui-react/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/floating-ui-react/types.ts -------------------------------------------------------------------------------- /packages/react/src/floating-ui-react/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/floating-ui-react/utils.ts -------------------------------------------------------------------------------- /packages/react/src/form/Form.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/form/Form.spec.tsx -------------------------------------------------------------------------------- /packages/react/src/form/Form.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/form/Form.test.tsx -------------------------------------------------------------------------------- /packages/react/src/form/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/form/Form.tsx -------------------------------------------------------------------------------- /packages/react/src/form/FormContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/form/FormContext.ts -------------------------------------------------------------------------------- /packages/react/src/form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/form/index.ts -------------------------------------------------------------------------------- /packages/react/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/global.d.ts -------------------------------------------------------------------------------- /packages/react/src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/index.test.ts -------------------------------------------------------------------------------- /packages/react/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/index.ts -------------------------------------------------------------------------------- /packages/react/src/input/Input.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/input/Input.test.tsx -------------------------------------------------------------------------------- /packages/react/src/input/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/input/Input.tsx -------------------------------------------------------------------------------- /packages/react/src/input/InputDataAttributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/input/InputDataAttributes.ts -------------------------------------------------------------------------------- /packages/react/src/input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/input/index.ts -------------------------------------------------------------------------------- /packages/react/src/labelable-provider/index.ts: -------------------------------------------------------------------------------- 1 | export * from './LabelableProvider'; 2 | -------------------------------------------------------------------------------- /packages/react/src/menu/arrow/MenuArrow.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menu/arrow/MenuArrow.test.tsx -------------------------------------------------------------------------------- /packages/react/src/menu/arrow/MenuArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menu/arrow/MenuArrow.tsx -------------------------------------------------------------------------------- /packages/react/src/menu/backdrop/MenuBackdrop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menu/backdrop/MenuBackdrop.tsx -------------------------------------------------------------------------------- /packages/react/src/menu/group/MenuGroup.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menu/group/MenuGroup.test.tsx -------------------------------------------------------------------------------- /packages/react/src/menu/group/MenuGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menu/group/MenuGroup.tsx -------------------------------------------------------------------------------- /packages/react/src/menu/group/MenuGroupContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menu/group/MenuGroupContext.ts -------------------------------------------------------------------------------- /packages/react/src/menu/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menu/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menu/index.ts -------------------------------------------------------------------------------- /packages/react/src/menu/item/MenuItem.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menu/item/MenuItem.test.tsx -------------------------------------------------------------------------------- /packages/react/src/menu/item/MenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menu/item/MenuItem.tsx -------------------------------------------------------------------------------- /packages/react/src/menu/item/useMenuItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menu/item/useMenuItem.ts -------------------------------------------------------------------------------- /packages/react/src/menu/popup/MenuPopup.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menu/popup/MenuPopup.test.tsx -------------------------------------------------------------------------------- /packages/react/src/menu/popup/MenuPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menu/popup/MenuPopup.tsx -------------------------------------------------------------------------------- /packages/react/src/menu/portal/MenuPortal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menu/portal/MenuPortal.test.tsx -------------------------------------------------------------------------------- /packages/react/src/menu/portal/MenuPortal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menu/portal/MenuPortal.tsx -------------------------------------------------------------------------------- /packages/react/src/menu/root/MenuRoot.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menu/root/MenuRoot.test.tsx -------------------------------------------------------------------------------- /packages/react/src/menu/root/MenuRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menu/root/MenuRoot.tsx -------------------------------------------------------------------------------- /packages/react/src/menu/root/MenuRootContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menu/root/MenuRootContext.ts -------------------------------------------------------------------------------- /packages/react/src/menu/store/MenuHandle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menu/store/MenuHandle.ts -------------------------------------------------------------------------------- /packages/react/src/menu/store/MenuStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menu/store/MenuStore.ts -------------------------------------------------------------------------------- /packages/react/src/menu/trigger/MenuTrigger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menu/trigger/MenuTrigger.tsx -------------------------------------------------------------------------------- /packages/react/src/menu/utils/findRootOwnerId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menu/utils/findRootOwnerId.ts -------------------------------------------------------------------------------- /packages/react/src/menu/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menu/utils/types.ts -------------------------------------------------------------------------------- /packages/react/src/menubar/Menubar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menubar/Menubar.test.tsx -------------------------------------------------------------------------------- /packages/react/src/menubar/Menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menubar/Menubar.tsx -------------------------------------------------------------------------------- /packages/react/src/menubar/MenubarContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menubar/MenubarContext.ts -------------------------------------------------------------------------------- /packages/react/src/menubar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/menubar/index.ts -------------------------------------------------------------------------------- /packages/react/src/merge-props/index.ts: -------------------------------------------------------------------------------- 1 | export * from './mergeProps'; 2 | -------------------------------------------------------------------------------- /packages/react/src/merge-props/mergeProps.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/merge-props/mergeProps.test.ts -------------------------------------------------------------------------------- /packages/react/src/merge-props/mergeProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/merge-props/mergeProps.ts -------------------------------------------------------------------------------- /packages/react/src/meter/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/meter/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/meter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/meter/index.ts -------------------------------------------------------------------------------- /packages/react/src/meter/label/MeterLabel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/meter/label/MeterLabel.test.tsx -------------------------------------------------------------------------------- /packages/react/src/meter/label/MeterLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/meter/label/MeterLabel.tsx -------------------------------------------------------------------------------- /packages/react/src/meter/root/MeterRoot.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/meter/root/MeterRoot.test.tsx -------------------------------------------------------------------------------- /packages/react/src/meter/root/MeterRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/meter/root/MeterRoot.tsx -------------------------------------------------------------------------------- /packages/react/src/meter/root/MeterRootContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/meter/root/MeterRootContext.ts -------------------------------------------------------------------------------- /packages/react/src/meter/track/MeterTrack.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/meter/track/MeterTrack.test.tsx -------------------------------------------------------------------------------- /packages/react/src/meter/track/MeterTrack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/meter/track/MeterTrack.tsx -------------------------------------------------------------------------------- /packages/react/src/meter/value/MeterValue.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/meter/value/MeterValue.test.tsx -------------------------------------------------------------------------------- /packages/react/src/meter/value/MeterValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/meter/value/MeterValue.tsx -------------------------------------------------------------------------------- /packages/react/src/navigation-menu/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/navigation-menu/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/navigation-menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/navigation-menu/index.ts -------------------------------------------------------------------------------- /packages/react/src/number-field/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/number-field/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/number-field/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/number-field/index.ts -------------------------------------------------------------------------------- /packages/react/src/number-field/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/number-field/utils/constants.ts -------------------------------------------------------------------------------- /packages/react/src/number-field/utils/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/number-field/utils/parse.ts -------------------------------------------------------------------------------- /packages/react/src/number-field/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/number-field/utils/types.ts -------------------------------------------------------------------------------- /packages/react/src/number-field/utils/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/number-field/utils/validate.ts -------------------------------------------------------------------------------- /packages/react/src/popover/arrow/PopoverArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/popover/arrow/PopoverArrow.tsx -------------------------------------------------------------------------------- /packages/react/src/popover/close/PopoverClose.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/popover/close/PopoverClose.tsx -------------------------------------------------------------------------------- /packages/react/src/popover/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/popover/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/popover/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/popover/index.ts -------------------------------------------------------------------------------- /packages/react/src/popover/popup/PopoverPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/popover/popup/PopoverPopup.tsx -------------------------------------------------------------------------------- /packages/react/src/popover/root/PopoverRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/popover/root/PopoverRoot.tsx -------------------------------------------------------------------------------- /packages/react/src/popover/store/PopoverHandle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/popover/store/PopoverHandle.ts -------------------------------------------------------------------------------- /packages/react/src/popover/store/PopoverStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/popover/store/PopoverStore.ts -------------------------------------------------------------------------------- /packages/react/src/popover/title/PopoverTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/popover/title/PopoverTitle.tsx -------------------------------------------------------------------------------- /packages/react/src/popover/utils/constants.ts: -------------------------------------------------------------------------------- 1 | export const OPEN_DELAY = 300; 2 | -------------------------------------------------------------------------------- /packages/react/src/preview-card/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/preview-card/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/preview-card/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/preview-card/index.ts -------------------------------------------------------------------------------- /packages/react/src/preview-card/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/preview-card/utils/constants.ts -------------------------------------------------------------------------------- /packages/react/src/progress/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/progress/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/progress/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/progress/index.ts -------------------------------------------------------------------------------- /packages/react/src/progress/root/ProgressRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/progress/root/ProgressRoot.tsx -------------------------------------------------------------------------------- /packages/react/src/radio-group/RadioGroup.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/radio-group/RadioGroup.test.tsx -------------------------------------------------------------------------------- /packages/react/src/radio-group/RadioGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/radio-group/RadioGroup.tsx -------------------------------------------------------------------------------- /packages/react/src/radio-group/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/radio-group/index.ts -------------------------------------------------------------------------------- /packages/react/src/radio/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/radio/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/radio/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/radio/index.ts -------------------------------------------------------------------------------- /packages/react/src/radio/root/RadioRoot.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/radio/root/RadioRoot.test.tsx -------------------------------------------------------------------------------- /packages/react/src/radio/root/RadioRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/radio/root/RadioRoot.tsx -------------------------------------------------------------------------------- /packages/react/src/radio/root/RadioRootContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/radio/root/RadioRootContext.ts -------------------------------------------------------------------------------- /packages/react/src/scroll-area/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/scroll-area/constants.ts -------------------------------------------------------------------------------- /packages/react/src/scroll-area/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/scroll-area/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/scroll-area/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/scroll-area/index.ts -------------------------------------------------------------------------------- /packages/react/src/scroll-area/utils/getOffset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/scroll-area/utils/getOffset.ts -------------------------------------------------------------------------------- /packages/react/src/scroll-area/utils/onVisible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/scroll-area/utils/onVisible.ts -------------------------------------------------------------------------------- /packages/react/src/select/arrow/SelectArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/select/arrow/SelectArrow.tsx -------------------------------------------------------------------------------- /packages/react/src/select/group/SelectGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/select/group/SelectGroup.tsx -------------------------------------------------------------------------------- /packages/react/src/select/icon/SelectIcon.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/select/icon/SelectIcon.test.tsx -------------------------------------------------------------------------------- /packages/react/src/select/icon/SelectIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/select/icon/SelectIcon.tsx -------------------------------------------------------------------------------- /packages/react/src/select/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/select/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/select/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/select/index.ts -------------------------------------------------------------------------------- /packages/react/src/select/item/SelectItem.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/select/item/SelectItem.test.tsx -------------------------------------------------------------------------------- /packages/react/src/select/item/SelectItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/select/item/SelectItem.tsx -------------------------------------------------------------------------------- /packages/react/src/select/list/SelectList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/select/list/SelectList.test.tsx -------------------------------------------------------------------------------- /packages/react/src/select/list/SelectList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/select/list/SelectList.tsx -------------------------------------------------------------------------------- /packages/react/src/select/popup/SelectPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/select/popup/SelectPopup.tsx -------------------------------------------------------------------------------- /packages/react/src/select/popup/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/select/popup/utils.ts -------------------------------------------------------------------------------- /packages/react/src/select/portal/SelectPortal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/select/portal/SelectPortal.tsx -------------------------------------------------------------------------------- /packages/react/src/select/root/SelectRoot.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/select/root/SelectRoot.spec.tsx -------------------------------------------------------------------------------- /packages/react/src/select/root/SelectRoot.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/select/root/SelectRoot.test.tsx -------------------------------------------------------------------------------- /packages/react/src/select/root/SelectRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/select/root/SelectRoot.tsx -------------------------------------------------------------------------------- /packages/react/src/select/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/select/store.ts -------------------------------------------------------------------------------- /packages/react/src/select/value/SelectValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/select/value/SelectValue.tsx -------------------------------------------------------------------------------- /packages/react/src/separator/Separator.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/separator/Separator.test.tsx -------------------------------------------------------------------------------- /packages/react/src/separator/Separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/separator/Separator.tsx -------------------------------------------------------------------------------- /packages/react/src/separator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/separator/index.ts -------------------------------------------------------------------------------- /packages/react/src/slider/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/slider/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/slider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/slider/index.ts -------------------------------------------------------------------------------- /packages/react/src/slider/root/SliderRoot.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/slider/root/SliderRoot.spec.tsx -------------------------------------------------------------------------------- /packages/react/src/slider/root/SliderRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/slider/root/SliderRoot.tsx -------------------------------------------------------------------------------- /packages/react/src/slider/thumb/SliderThumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/slider/thumb/SliderThumb.tsx -------------------------------------------------------------------------------- /packages/react/src/slider/track/SliderTrack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/slider/track/SliderTrack.tsx -------------------------------------------------------------------------------- /packages/react/src/slider/utils/asc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/slider/utils/asc.ts -------------------------------------------------------------------------------- /packages/react/src/slider/utils/getMidpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/slider/utils/getMidpoint.ts -------------------------------------------------------------------------------- /packages/react/src/slider/utils/test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/slider/utils/test-utils.ts -------------------------------------------------------------------------------- /packages/react/src/slider/value/SliderValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/slider/value/SliderValue.tsx -------------------------------------------------------------------------------- /packages/react/src/switch/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/switch/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/switch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/switch/index.ts -------------------------------------------------------------------------------- /packages/react/src/switch/root/SwitchRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/switch/root/SwitchRoot.tsx -------------------------------------------------------------------------------- /packages/react/src/switch/thumb/SwitchThumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/switch/thumb/SwitchThumb.tsx -------------------------------------------------------------------------------- /packages/react/src/tabs/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/tabs/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/tabs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/tabs/index.ts -------------------------------------------------------------------------------- /packages/react/src/tabs/list/TabsList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/tabs/list/TabsList.test.tsx -------------------------------------------------------------------------------- /packages/react/src/tabs/list/TabsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/tabs/list/TabsList.tsx -------------------------------------------------------------------------------- /packages/react/src/tabs/list/TabsListContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/tabs/list/TabsListContext.ts -------------------------------------------------------------------------------- /packages/react/src/tabs/panel/TabsPanel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/tabs/panel/TabsPanel.test.tsx -------------------------------------------------------------------------------- /packages/react/src/tabs/panel/TabsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/tabs/panel/TabsPanel.tsx -------------------------------------------------------------------------------- /packages/react/src/tabs/root/TabsRoot.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/tabs/root/TabsRoot.test.tsx -------------------------------------------------------------------------------- /packages/react/src/tabs/root/TabsRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/tabs/root/TabsRoot.tsx -------------------------------------------------------------------------------- /packages/react/src/tabs/root/TabsRootContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/tabs/root/TabsRootContext.ts -------------------------------------------------------------------------------- /packages/react/src/tabs/tab/TabsTab.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/tabs/tab/TabsTab.test.tsx -------------------------------------------------------------------------------- /packages/react/src/tabs/tab/TabsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/tabs/tab/TabsTab.tsx -------------------------------------------------------------------------------- /packages/react/src/toast/action/ToastAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/toast/action/ToastAction.tsx -------------------------------------------------------------------------------- /packages/react/src/toast/arrow/ToastArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/toast/arrow/ToastArrow.tsx -------------------------------------------------------------------------------- /packages/react/src/toast/close/ToastClose.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/toast/close/ToastClose.tsx -------------------------------------------------------------------------------- /packages/react/src/toast/createToastManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/toast/createToastManager.ts -------------------------------------------------------------------------------- /packages/react/src/toast/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/toast/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/toast/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/toast/index.ts -------------------------------------------------------------------------------- /packages/react/src/toast/portal/ToastPortal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/toast/portal/ToastPortal.tsx -------------------------------------------------------------------------------- /packages/react/src/toast/root/ToastRoot.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/toast/root/ToastRoot.test.tsx -------------------------------------------------------------------------------- /packages/react/src/toast/root/ToastRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/toast/root/ToastRoot.tsx -------------------------------------------------------------------------------- /packages/react/src/toast/title/ToastTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/toast/title/ToastTitle.tsx -------------------------------------------------------------------------------- /packages/react/src/toast/useToastManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/toast/useToastManager.ts -------------------------------------------------------------------------------- /packages/react/src/toast/utils/focusVisible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/toast/utils/focusVisible.ts -------------------------------------------------------------------------------- /packages/react/src/toast/utils/test-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/toast/utils/test-utils.tsx -------------------------------------------------------------------------------- /packages/react/src/toggle-group/ToggleGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/toggle-group/ToggleGroup.tsx -------------------------------------------------------------------------------- /packages/react/src/toggle-group/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/toggle-group/index.ts -------------------------------------------------------------------------------- /packages/react/src/toggle/Toggle.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/toggle/Toggle.test.tsx -------------------------------------------------------------------------------- /packages/react/src/toggle/Toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/toggle/Toggle.tsx -------------------------------------------------------------------------------- /packages/react/src/toggle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/toggle/index.ts -------------------------------------------------------------------------------- /packages/react/src/toolbar/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/toolbar/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/toolbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/toolbar/index.ts -------------------------------------------------------------------------------- /packages/react/src/toolbar/link/ToolbarLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/toolbar/link/ToolbarLink.tsx -------------------------------------------------------------------------------- /packages/react/src/toolbar/root/ToolbarRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/toolbar/root/ToolbarRoot.tsx -------------------------------------------------------------------------------- /packages/react/src/tooltip/index.parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/tooltip/index.parts.ts -------------------------------------------------------------------------------- /packages/react/src/tooltip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/tooltip/index.ts -------------------------------------------------------------------------------- /packages/react/src/tooltip/root/TooltipRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/tooltip/root/TooltipRoot.tsx -------------------------------------------------------------------------------- /packages/react/src/tooltip/store/TooltipStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/tooltip/store/TooltipStore.ts -------------------------------------------------------------------------------- /packages/react/src/tooltip/utils/constants.ts: -------------------------------------------------------------------------------- 1 | export const OPEN_DELAY = 600; 2 | -------------------------------------------------------------------------------- /packages/react/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/types/index.ts -------------------------------------------------------------------------------- /packages/react/src/use-button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/use-button/index.ts -------------------------------------------------------------------------------- /packages/react/src/use-button/useButton.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/use-button/useButton.test.tsx -------------------------------------------------------------------------------- /packages/react/src/use-button/useButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/use-button/useButton.ts -------------------------------------------------------------------------------- /packages/react/src/use-render/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useRender'; 2 | -------------------------------------------------------------------------------- /packages/react/src/use-render/useRender.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/use-render/useRender.spec.tsx -------------------------------------------------------------------------------- /packages/react/src/use-render/useRender.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/use-render/useRender.test.tsx -------------------------------------------------------------------------------- /packages/react/src/use-render/useRender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/use-render/useRender.ts -------------------------------------------------------------------------------- /packages/react/src/utils/FloatingPortalLite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/FloatingPortalLite.tsx -------------------------------------------------------------------------------- /packages/react/src/utils/FocusGuard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/FocusGuard.tsx -------------------------------------------------------------------------------- /packages/react/src/utils/InternalBackdrop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/InternalBackdrop.tsx -------------------------------------------------------------------------------- /packages/react/src/utils/areArraysEqual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/areArraysEqual.ts -------------------------------------------------------------------------------- /packages/react/src/utils/clamp.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/clamp.test.ts -------------------------------------------------------------------------------- /packages/react/src/utils/clamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/clamp.ts -------------------------------------------------------------------------------- /packages/react/src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/constants.ts -------------------------------------------------------------------------------- /packages/react/src/utils/formatNumber.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/formatNumber.test.ts -------------------------------------------------------------------------------- /packages/react/src/utils/formatNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/formatNumber.ts -------------------------------------------------------------------------------- /packages/react/src/utils/getCssDimensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/getCssDimensions.ts -------------------------------------------------------------------------------- /packages/react/src/utils/hideMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/hideMiddleware.ts -------------------------------------------------------------------------------- /packages/react/src/utils/itemEquality.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/itemEquality.ts -------------------------------------------------------------------------------- /packages/react/src/utils/noop.ts: -------------------------------------------------------------------------------- 1 | export { NOOP } from '@base-ui-components/utils/empty'; 2 | -------------------------------------------------------------------------------- /packages/react/src/utils/popupStateMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/popupStateMapping.ts -------------------------------------------------------------------------------- /packages/react/src/utils/popups/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/popups/index.ts -------------------------------------------------------------------------------- /packages/react/src/utils/popups/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/popups/store.ts -------------------------------------------------------------------------------- /packages/react/src/utils/reason-parts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/reason-parts.ts -------------------------------------------------------------------------------- /packages/react/src/utils/reasons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/reasons.ts -------------------------------------------------------------------------------- /packages/react/src/utils/resolveClassName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/resolveClassName.ts -------------------------------------------------------------------------------- /packages/react/src/utils/resolveRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/resolveRef.ts -------------------------------------------------------------------------------- /packages/react/src/utils/resolveStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/resolveStyle.ts -------------------------------------------------------------------------------- /packages/react/src/utils/resolveValueLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/resolveValueLabel.tsx -------------------------------------------------------------------------------- /packages/react/src/utils/serializeValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/serializeValue.ts -------------------------------------------------------------------------------- /packages/react/src/utils/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/styles.tsx -------------------------------------------------------------------------------- /packages/react/src/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/types.ts -------------------------------------------------------------------------------- /packages/react/src/utils/useAnchorPositioning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/useAnchorPositioning.ts -------------------------------------------------------------------------------- /packages/react/src/utils/useBaseUiId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/useBaseUiId.ts -------------------------------------------------------------------------------- /packages/react/src/utils/usePopupAutoResize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/usePopupAutoResize.ts -------------------------------------------------------------------------------- /packages/react/src/utils/useRenderElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/useRenderElement.tsx -------------------------------------------------------------------------------- /packages/react/src/utils/useTransitionStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/useTransitionStatus.ts -------------------------------------------------------------------------------- /packages/react/src/utils/useValueChanged.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/useValueChanged.ts -------------------------------------------------------------------------------- /packages/react/src/utils/valueToPercent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/src/utils/valueToPercent.ts -------------------------------------------------------------------------------- /packages/react/test/conformanceTests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/test/conformanceTests/utils.ts -------------------------------------------------------------------------------- /packages/react/test/createRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/test/createRenderer.ts -------------------------------------------------------------------------------- /packages/react/test/describeConformance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/test/describeConformance.tsx -------------------------------------------------------------------------------- /packages/react/test/floating-ui-tests/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/test/floating-ui-tests/Button.tsx -------------------------------------------------------------------------------- /packages/react/test/floating-ui-tests/Grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/test/floating-ui-tests/Grid.tsx -------------------------------------------------------------------------------- /packages/react/test/floating-ui-tests/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/test/floating-ui-tests/Menu.tsx -------------------------------------------------------------------------------- /packages/react/test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/test/index.ts -------------------------------------------------------------------------------- /packages/react/test/popupConformanceTests.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/test/popupConformanceTests.tsx -------------------------------------------------------------------------------- /packages/react/test/wait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/test/wait.ts -------------------------------------------------------------------------------- /packages/react/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/tsconfig.build.json -------------------------------------------------------------------------------- /packages/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/tsconfig.json -------------------------------------------------------------------------------- /packages/react/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/tsconfig.test.json -------------------------------------------------------------------------------- /packages/react/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/react/vitest.config.mts -------------------------------------------------------------------------------- /packages/utils/.npmignore: -------------------------------------------------------------------------------- 1 | *.tsbuildinfo 2 | -------------------------------------------------------------------------------- /packages/utils/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/CHANGELOG.md -------------------------------------------------------------------------------- /packages/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/README.md -------------------------------------------------------------------------------- /packages/utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/package.json -------------------------------------------------------------------------------- /packages/utils/src/detectBrowser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/detectBrowser.ts -------------------------------------------------------------------------------- /packages/utils/src/empty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/empty.ts -------------------------------------------------------------------------------- /packages/utils/src/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/error.ts -------------------------------------------------------------------------------- /packages/utils/src/fastObjectShallowCompare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/fastObjectShallowCompare.ts -------------------------------------------------------------------------------- /packages/utils/src/formatErrorMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/formatErrorMessage.ts -------------------------------------------------------------------------------- /packages/utils/src/generateId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/generateId.ts -------------------------------------------------------------------------------- /packages/utils/src/getReactElementRef.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/getReactElementRef.test.tsx -------------------------------------------------------------------------------- /packages/utils/src/getReactElementRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/getReactElementRef.ts -------------------------------------------------------------------------------- /packages/utils/src/inertValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/inertValue.ts -------------------------------------------------------------------------------- /packages/utils/src/isElementDisabled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/isElementDisabled.ts -------------------------------------------------------------------------------- /packages/utils/src/isMouseWithinBounds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/isMouseWithinBounds.ts -------------------------------------------------------------------------------- /packages/utils/src/mergeObjects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/mergeObjects.ts -------------------------------------------------------------------------------- /packages/utils/src/owner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/owner.ts -------------------------------------------------------------------------------- /packages/utils/src/reactVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/reactVersion.ts -------------------------------------------------------------------------------- /packages/utils/src/safeReact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/safeReact.ts -------------------------------------------------------------------------------- /packages/utils/src/store/ReactStore.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/store/ReactStore.spec.ts -------------------------------------------------------------------------------- /packages/utils/src/store/ReactStore.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/store/ReactStore.test.tsx -------------------------------------------------------------------------------- /packages/utils/src/store/ReactStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/store/ReactStore.ts -------------------------------------------------------------------------------- /packages/utils/src/store/Store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/store/Store.ts -------------------------------------------------------------------------------- /packages/utils/src/store/StoreInspector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/store/StoreInspector.tsx -------------------------------------------------------------------------------- /packages/utils/src/store/createSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/store/createSelector.ts -------------------------------------------------------------------------------- /packages/utils/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/store/index.ts -------------------------------------------------------------------------------- /packages/utils/src/store/useStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/store/useStore.ts -------------------------------------------------------------------------------- /packages/utils/src/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/testUtils.ts -------------------------------------------------------------------------------- /packages/utils/src/useAnimationFrame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/useAnimationFrame.ts -------------------------------------------------------------------------------- /packages/utils/src/useControlled.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/useControlled.test.tsx -------------------------------------------------------------------------------- /packages/utils/src/useControlled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/useControlled.ts -------------------------------------------------------------------------------- /packages/utils/src/useEnhancedClickHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/useEnhancedClickHandler.ts -------------------------------------------------------------------------------- /packages/utils/src/useForcedRerendering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/useForcedRerendering.ts -------------------------------------------------------------------------------- /packages/utils/src/useId.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/useId.test.tsx -------------------------------------------------------------------------------- /packages/utils/src/useId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/useId.ts -------------------------------------------------------------------------------- /packages/utils/src/useInterval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/useInterval.ts -------------------------------------------------------------------------------- /packages/utils/src/useIsoLayoutEffect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/useIsoLayoutEffect.ts -------------------------------------------------------------------------------- /packages/utils/src/useMergedRefs.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/useMergedRefs.test.tsx -------------------------------------------------------------------------------- /packages/utils/src/useMergedRefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/useMergedRefs.ts -------------------------------------------------------------------------------- /packages/utils/src/useOnFirstRender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/useOnFirstRender.ts -------------------------------------------------------------------------------- /packages/utils/src/useOnMount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/useOnMount.ts -------------------------------------------------------------------------------- /packages/utils/src/usePreviousValue.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/usePreviousValue.test.tsx -------------------------------------------------------------------------------- /packages/utils/src/usePreviousValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/usePreviousValue.ts -------------------------------------------------------------------------------- /packages/utils/src/useRefWithInit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/useRefWithInit.ts -------------------------------------------------------------------------------- /packages/utils/src/useScrollLock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/useScrollLock.ts -------------------------------------------------------------------------------- /packages/utils/src/useStableCallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/useStableCallback.ts -------------------------------------------------------------------------------- /packages/utils/src/useTimeout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/useTimeout.ts -------------------------------------------------------------------------------- /packages/utils/src/useValueAsRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/useValueAsRef.ts -------------------------------------------------------------------------------- /packages/utils/src/visuallyHidden.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/visuallyHidden.ts -------------------------------------------------------------------------------- /packages/utils/src/warn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/src/warn.ts -------------------------------------------------------------------------------- /packages/utils/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/tsconfig.build.json -------------------------------------------------------------------------------- /packages/utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/tsconfig.json -------------------------------------------------------------------------------- /packages/utils/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/tsconfig.test.json -------------------------------------------------------------------------------- /packages/utils/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/packages/utils/vitest.config.mts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /prettier.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/prettier.config.mjs -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/api-docs-builder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/scripts/api-docs-builder/package.json -------------------------------------------------------------------------------- /scripts/api-docs-builder/src/componentHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/scripts/api-docs-builder/src/componentHandler.ts -------------------------------------------------------------------------------- /scripts/api-docs-builder/src/formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/scripts/api-docs-builder/src/formatter.ts -------------------------------------------------------------------------------- /scripts/api-docs-builder/src/hookHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/scripts/api-docs-builder/src/hookHandler.ts -------------------------------------------------------------------------------- /scripts/api-docs-builder/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/scripts/api-docs-builder/src/index.ts -------------------------------------------------------------------------------- /scripts/api-docs-builder/src/order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/scripts/api-docs-builder/src/order.json -------------------------------------------------------------------------------- /scripts/inlineScripts.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/scripts/inlineScripts.mts -------------------------------------------------------------------------------- /scripts/releaseChangelog.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/scripts/releaseChangelog.mts -------------------------------------------------------------------------------- /scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/scripts/tsconfig.json -------------------------------------------------------------------------------- /stylelint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/stylelint.config.mjs -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/README.md -------------------------------------------------------------------------------- /test/assets/fake.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/assets/fake2.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/bundle-size/bundle-size-checker.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/bundle-size/bundle-size-checker.config.mjs -------------------------------------------------------------------------------- /test/bundle-size/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/bundle-size/package.json -------------------------------------------------------------------------------- /test/docs-regressions-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/docs-regressions-before.png -------------------------------------------------------------------------------- /test/docs-regressions-diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/docs-regressions-diff.png -------------------------------------------------------------------------------- /test/e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/e2e/README.md -------------------------------------------------------------------------------- /test/e2e/TestViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/e2e/TestViewer.tsx -------------------------------------------------------------------------------- /test/e2e/fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/e2e/fixtures/Radio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/e2e/fixtures/Radio.tsx -------------------------------------------------------------------------------- /test/e2e/fixtures/slider/Inset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/e2e/fixtures/slider/Inset.tsx -------------------------------------------------------------------------------- /test/e2e/fixtures/slider/Range.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/e2e/fixtures/slider/Range.tsx -------------------------------------------------------------------------------- /test/e2e/fixtures/slider/RangeSliderMax.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/e2e/fixtures/slider/RangeSliderMax.tsx -------------------------------------------------------------------------------- /test/e2e/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/e2e/index.html -------------------------------------------------------------------------------- /test/e2e/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/e2e/index.test.ts -------------------------------------------------------------------------------- /test/e2e/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/e2e/main.tsx -------------------------------------------------------------------------------- /test/e2e/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/e2e/postcss.config.js -------------------------------------------------------------------------------- /test/e2e/serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/e2e/serve.json -------------------------------------------------------------------------------- /test/e2e/vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/e2e/vite.config.mjs -------------------------------------------------------------------------------- /test/e2e/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/e2e/vitest.config.mts -------------------------------------------------------------------------------- /test/node-resolution/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/node-resolution/index.mjs -------------------------------------------------------------------------------- /test/node-resolution/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/node-resolution/package.json -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/package.json -------------------------------------------------------------------------------- /test/public-types/autocomplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/public-types/autocomplete.tsx -------------------------------------------------------------------------------- /test/public-types/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/public-types/checkbox.tsx -------------------------------------------------------------------------------- /test/public-types/combobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/public-types/combobox.tsx -------------------------------------------------------------------------------- /test/public-types/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/public-types/index.tsx -------------------------------------------------------------------------------- /test/public-types/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/public-types/menu.tsx -------------------------------------------------------------------------------- /test/public-types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/public-types/package.json -------------------------------------------------------------------------------- /test/public-types/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/public-types/separator.tsx -------------------------------------------------------------------------------- /test/public-types/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/public-types/toast.tsx -------------------------------------------------------------------------------- /test/public-types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/public-types/tsconfig.json -------------------------------------------------------------------------------- /test/public-types/use-render.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/public-types/use-render.tsx -------------------------------------------------------------------------------- /test/regressions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/regressions/README.md -------------------------------------------------------------------------------- /test/regressions/TestViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/regressions/TestViewer.tsx -------------------------------------------------------------------------------- /test/regressions/fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/regressions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/regressions/index.html -------------------------------------------------------------------------------- /test/regressions/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/regressions/index.test.ts -------------------------------------------------------------------------------- /test/regressions/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/regressions/main.tsx -------------------------------------------------------------------------------- /test/regressions/manual/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/regressions/manual/README.md -------------------------------------------------------------------------------- /test/regressions/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/regressions/postcss.config.js -------------------------------------------------------------------------------- /test/regressions/serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/regressions/serve.json -------------------------------------------------------------------------------- /test/regressions/vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/regressions/vite.config.mjs -------------------------------------------------------------------------------- /test/regressions/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/regressions/vitest.config.mts -------------------------------------------------------------------------------- /test/setupVitest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/setupVitest.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /test/vite.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /test/vite.shared.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/test/vite.shared.config.mjs -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/vitest.config.mts -------------------------------------------------------------------------------- /vitest.shared.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mui/base-ui/HEAD/vitest.shared.mts --------------------------------------------------------------------------------