gitextract_31woigsj/ ├── .cursorrules ├── .github/ │ └── workflows/ │ └── sync-components.yml ├── .gitignore ├── .prototools ├── LICENSE.md ├── README.md ├── biome.json ├── package.json ├── packages/ │ ├── components/ │ │ ├── CHANGELOG.md │ │ ├── package.json │ │ ├── registry.json │ │ ├── scripts/ │ │ │ └── gen-registry-json.ts │ │ ├── src/ │ │ │ ├── core/ │ │ │ │ ├── accordion/ │ │ │ │ │ ├── accordion.tsx │ │ │ │ │ └── meta.json │ │ │ │ ├── badge/ │ │ │ │ │ ├── badge.tsx │ │ │ │ │ └── meta.json │ │ │ │ ├── breadcrumbs/ │ │ │ │ │ ├── breadcrumbs.tsx │ │ │ │ │ └── meta.json │ │ │ │ ├── button/ │ │ │ │ │ ├── button.tsx │ │ │ │ │ └── meta.json │ │ │ │ ├── calendar/ │ │ │ │ │ ├── calendar.tsx │ │ │ │ │ └── meta.json │ │ │ │ ├── card/ │ │ │ │ │ ├── card.tsx │ │ │ │ │ └── meta.json │ │ │ │ ├── checkbox/ │ │ │ │ │ ├── checkbox.tsx │ │ │ │ │ └── meta.json │ │ │ │ ├── combobox/ │ │ │ │ │ ├── combobox.tsx │ │ │ │ │ └── meta.json │ │ │ │ ├── command/ │ │ │ │ │ ├── command.tsx │ │ │ │ │ └── meta.json │ │ │ │ ├── date-field/ │ │ │ │ │ ├── date-field.tsx │ │ │ │ │ └── meta.json │ │ │ │ ├── date-picker/ │ │ │ │ │ ├── date-picker.tsx │ │ │ │ │ └── meta.json │ │ │ │ ├── index.ts │ │ │ │ ├── input/ │ │ │ │ │ ├── input.tsx │ │ │ │ │ └── meta.json │ │ │ │ ├── menu/ │ │ │ │ │ ├── menu.tsx │ │ │ │ │ └── meta.json │ │ │ │ ├── meter/ │ │ │ │ │ ├── meta.json │ │ │ │ │ └── meter.tsx │ │ │ │ ├── modal/ │ │ │ │ │ ├── meta.json │ │ │ │ │ └── modal.tsx │ │ │ │ ├── popover/ │ │ │ │ │ ├── meta.json │ │ │ │ │ └── popover.tsx │ │ │ │ ├── radio-group/ │ │ │ │ │ ├── meta.json │ │ │ │ │ └── radio-group.tsx │ │ │ │ ├── select/ │ │ │ │ │ ├── meta.json │ │ │ │ │ └── select.tsx │ │ │ │ ├── slider/ │ │ │ │ │ ├── meta.json │ │ │ │ │ └── slider.tsx │ │ │ │ ├── switch/ │ │ │ │ │ ├── meta.json │ │ │ │ │ └── switch.tsx │ │ │ │ ├── table/ │ │ │ │ │ ├── meta.json │ │ │ │ │ └── table.tsx │ │ │ │ ├── tabs/ │ │ │ │ │ ├── meta.json │ │ │ │ │ └── tabs.tsx │ │ │ │ ├── tag-group/ │ │ │ │ │ ├── meta.json │ │ │ │ │ └── tag-group.tsx │ │ │ │ ├── time-field/ │ │ │ │ │ ├── meta.json │ │ │ │ │ └── time-field.tsx │ │ │ │ ├── toggle/ │ │ │ │ │ ├── meta.json │ │ │ │ │ └── toggle.tsx │ │ │ │ └── tooltip/ │ │ │ │ ├── meta.json │ │ │ │ └── tooltip.tsx │ │ │ ├── examples/ │ │ │ │ ├── accordion-base.tsx │ │ │ │ ├── accordion-group.tsx │ │ │ │ ├── badge-base.tsx │ │ │ │ ├── badge-variants.tsx │ │ │ │ ├── breadcrumbs-base.tsx │ │ │ │ ├── breadcrumbs-seperators.tsx │ │ │ │ ├── button-base.tsx │ │ │ │ ├── button-helper-icons.tsx │ │ │ │ ├── button-sizes.tsx │ │ │ │ ├── button-variants.tsx │ │ │ │ ├── calendar-base.tsx │ │ │ │ ├── card-base.tsx │ │ │ │ ├── card-variants.tsx │ │ │ │ ├── checkbox-base.tsx │ │ │ │ ├── checkbox-group.tsx │ │ │ │ ├── combobox-base.tsx │ │ │ │ ├── combobox-disabled-option.tsx │ │ │ │ ├── combobox-menu-trigger.tsx │ │ │ │ ├── command-base.tsx │ │ │ │ ├── command-custom-trigger.tsx │ │ │ │ ├── date-field-base.tsx │ │ │ │ ├── date-picker-base.tsx │ │ │ │ ├── date-range-picker-base.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── input-base.tsx │ │ │ │ ├── input-disabled.tsx │ │ │ │ ├── input-label.tsx │ │ │ │ ├── menu-base.tsx │ │ │ │ ├── meter-base.tsx │ │ │ │ ├── modal-base.tsx │ │ │ │ ├── modal-dismissable.tsx │ │ │ │ ├── popover-base.tsx │ │ │ │ ├── radio-group-base.tsx │ │ │ │ ├── range-calendar-base.tsx │ │ │ │ ├── select-base.tsx │ │ │ │ ├── select-popover-classname.tsx │ │ │ │ ├── select-searchable.tsx │ │ │ │ ├── slider-base.tsx │ │ │ │ ├── switch-base.tsx │ │ │ │ ├── table-base.tsx │ │ │ │ ├── tabs-base.tsx │ │ │ │ ├── tag-group-base.tsx │ │ │ │ ├── time-field-base.tsx │ │ │ │ ├── toggle-base.tsx │ │ │ │ ├── toggle-group-base.tsx │ │ │ │ └── tooltip-base.tsx │ │ │ ├── index.ts │ │ │ └── tailwind.css │ │ └── tsconfig.json │ └── registry/ │ ├── CHANGELOG.md │ ├── package.json │ ├── src/ │ │ ├── index.ts │ │ └── schema.ts │ └── tsconfig.json ├── pnpm-workspace.yaml ├── turbo.json └── web/ ├── .gitignore ├── CHANGELOG.md ├── README.md ├── app/ │ ├── api/ │ │ ├── examples/ │ │ │ └── [name]/ │ │ │ └── route.ts │ │ └── search/ │ │ └── route.ts │ ├── docs/ │ │ ├── [...slug]/ │ │ │ └── page.tsx │ │ ├── content/ │ │ │ ├── components/ │ │ │ │ ├── accordion.mdx │ │ │ │ ├── badge.mdx │ │ │ │ ├── breadcrumbs.mdx │ │ │ │ ├── button.mdx │ │ │ │ ├── calendar.mdx │ │ │ │ ├── card.mdx │ │ │ │ ├── checkbox.mdx │ │ │ │ ├── combobox.mdx │ │ │ │ ├── command.mdx │ │ │ │ ├── date-field.mdx │ │ │ │ ├── date-picker.mdx │ │ │ │ ├── input.mdx │ │ │ │ ├── menu.mdx │ │ │ │ ├── meter.mdx │ │ │ │ ├── modal.mdx │ │ │ │ ├── popover.mdx │ │ │ │ ├── radio-group.mdx │ │ │ │ ├── select.mdx │ │ │ │ ├── slider.mdx │ │ │ │ ├── switch.mdx │ │ │ │ ├── table.mdx │ │ │ │ ├── tabs.mdx │ │ │ │ ├── tag-group.mdx │ │ │ │ ├── time-field.mdx │ │ │ │ ├── toggle.mdx │ │ │ │ └── tooltip.mdx │ │ │ ├── intro.mdx │ │ │ ├── styles.mdx │ │ │ └── usage.mdx │ │ ├── layout.tsx │ │ └── page.tsx │ ├── globals.css │ ├── layout.tsx │ ├── llms.txt/ │ │ └── route.ts │ ├── page.tsx │ └── r/ │ └── [[...segments]]/ │ └── route.ts ├── components/ │ ├── code-block-client.tsx │ ├── code-block.tsx │ ├── component-metadata.tsx │ ├── docs-page.tsx │ ├── mdx-components.tsx │ ├── mobile-nav.tsx │ ├── open-in-ai-menu.tsx │ ├── preview.tsx │ ├── rac-link.tsx │ ├── search.tsx │ ├── sidebar-link.tsx │ ├── sidebar.tsx │ ├── table-of-contents.tsx │ └── theme-toggle.tsx ├── components.json ├── hooks/ │ └── use-active-heading.ts ├── lib/ │ ├── component-data.ts │ ├── cx.ts │ ├── examples-map.ts │ ├── metadata.ts │ ├── navigation.ts │ └── source.ts ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public/ │ └── r/ │ ├── accordion.json │ ├── badge.json │ ├── breadcrumbs.json │ ├── button.json │ ├── calendar.json │ ├── card.json │ ├── checkbox.json │ ├── combobox.json │ ├── command.json │ ├── date-field.json │ ├── date-picker.json │ ├── input.json │ ├── menu.json │ ├── meter.json │ ├── modal.json │ ├── popover.json │ ├── radio-group.json │ ├── registry.json │ ├── select.json │ ├── slider.json │ ├── switch.json │ ├── table.json │ ├── tabs.json │ ├── tag-group.json │ ├── time-field.json │ ├── toggle.json │ └── tooltip.json ├── source.config.ts └── tsconfig.json