├── .changeset ├── README.md └── config.json ├── .commitlintrc.json ├── .editorconfig ├── .eslintrc.json ├── .github ├── changeset-version.js ├── version-script-beta.js ├── version-script-next.js └── workflows │ ├── code-check.yml │ ├── prerelease-comment.yml │ ├── prerelease.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .husky └── commit-msg ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .vscode └── settings.json ├── LICENSE.md ├── README.md ├── apps └── www │ ├── .env.example │ ├── .gitignore │ ├── .prettierignore │ ├── __registry__ │ ├── .autogenerated │ ├── .gitkeep │ ├── README.md │ └── index.tsx │ ├── app │ ├── docs │ │ ├── [[...slug]] │ │ │ └── page.tsx │ │ └── layout.tsx │ ├── examples │ │ ├── authentication │ │ │ ├── components │ │ │ │ └── user-auth-form.tsx │ │ │ └── page.tsx │ │ ├── cards │ │ │ ├── components │ │ │ │ ├── cookie-settings.tsx │ │ │ │ ├── create-account.tsx │ │ │ │ ├── date-picker.tsx │ │ │ │ ├── github-card.tsx │ │ │ │ ├── notifications.tsx │ │ │ │ ├── payment-method.tsx │ │ │ │ ├── report-an-issue.tsx │ │ │ │ ├── share-document.tsx │ │ │ │ └── team-members.tsx │ │ │ └── page.tsx │ │ ├── dashboard │ │ │ ├── components │ │ │ │ ├── date-range-picker.tsx │ │ │ │ ├── main-nav.tsx │ │ │ │ ├── overview.tsx │ │ │ │ ├── recent-sales.tsx │ │ │ │ ├── search.tsx │ │ │ │ ├── team-switcher.tsx │ │ │ │ └── user-nav.tsx │ │ │ └── page.tsx │ │ ├── forms │ │ │ ├── account │ │ │ │ ├── account-form.tsx │ │ │ │ └── page.tsx │ │ │ ├── appearance │ │ │ │ ├── appearance-form.tsx │ │ │ │ └── page.tsx │ │ │ ├── components │ │ │ │ └── sidebar-nav.tsx │ │ │ ├── display │ │ │ │ ├── display-form.tsx │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── notifications │ │ │ │ ├── notifications-form.tsx │ │ │ │ └── page.tsx │ │ │ ├── page.tsx │ │ │ └── profile-form.tsx │ │ ├── layout.tsx │ │ ├── music │ │ │ ├── components │ │ │ │ ├── album-artwork.tsx │ │ │ │ ├── menu.tsx │ │ │ │ ├── podcast-empty-placeholder.tsx │ │ │ │ └── sidebar.tsx │ │ │ ├── data │ │ │ │ ├── albums.ts │ │ │ │ └── playlists.ts │ │ │ └── page.tsx │ │ ├── playground │ │ │ ├── components │ │ │ │ ├── code-viewer.tsx │ │ │ │ ├── maxlength-selector.tsx │ │ │ │ ├── model-selector.tsx │ │ │ │ ├── preset-actions.tsx │ │ │ │ ├── preset-save.tsx │ │ │ │ ├── preset-selector.tsx │ │ │ │ ├── preset-share.tsx │ │ │ │ ├── temperature-selector.tsx │ │ │ │ └── top-p-selector.tsx │ │ │ ├── data │ │ │ │ ├── models.ts │ │ │ │ └── presets.ts │ │ │ └── page.tsx │ │ └── tasks │ │ │ ├── components │ │ │ ├── columns.tsx │ │ │ ├── data-table-column-header.tsx │ │ │ ├── data-table-faceted-filter.tsx │ │ │ ├── data-table-pagination.tsx │ │ │ ├── data-table-row-actions.tsx │ │ │ ├── data-table-toolbar.tsx │ │ │ ├── data-table-view-options.tsx │ │ │ ├── data-table.tsx │ │ │ └── user-nav.tsx │ │ │ ├── data │ │ │ ├── data.tsx │ │ │ ├── schema.ts │ │ │ ├── seed.ts │ │ │ └── tasks.json │ │ │ └── page.tsx │ ├── layout.tsx │ ├── page.tsx │ └── sink │ │ ├── layout.tsx │ │ ├── new-york │ │ └── page.tsx │ │ └── page.tsx │ ├── assets │ └── fonts │ │ ├── CalSans-SemiBold.ttf │ │ ├── CalSans-SemiBold.woff │ │ ├── CalSans-SemiBold.woff2 │ │ ├── Inter-Bold.ttf │ │ └── Inter-Regular.ttf │ ├── components │ ├── analytics.tsx │ ├── callout.tsx │ ├── code-block-wrapper.tsx │ ├── command-menu.tsx │ ├── component-card.tsx │ ├── component-example.tsx │ ├── component-preview.tsx │ ├── component-source.tsx │ ├── copy-button.tsx │ ├── examples-nav.tsx │ ├── framework-docs.tsx │ ├── icons.tsx │ ├── main-nav.tsx │ ├── mdx-components.tsx │ ├── mobile-nav.tsx │ ├── mode-toggle.tsx │ ├── page-header.tsx │ ├── pager.tsx │ ├── promo-video.tsx │ ├── providers.tsx │ ├── sidebar-nav.tsx │ ├── site-footer.tsx │ ├── site-header.tsx │ ├── style-switcher.tsx │ ├── style-wrapper.tsx │ ├── tailwind-indicator.tsx │ ├── theme-wrapper.tsx │ └── toc.tsx │ ├── config │ ├── docs.ts │ └── site.ts │ ├── content │ └── docs │ │ ├── about.mdx │ │ ├── changelog.mdx │ │ ├── cli.mdx │ │ ├── components │ │ ├── accordion.mdx │ │ ├── alert-dialog.mdx │ │ ├── alert.mdx │ │ ├── aspect-ratio.mdx │ │ ├── avatar.mdx │ │ ├── badge.mdx │ │ ├── button.mdx │ │ ├── calendar.mdx │ │ ├── card.mdx │ │ ├── checkbox.mdx │ │ ├── collapsible.mdx │ │ ├── combobox.mdx │ │ ├── command.mdx │ │ ├── context-menu.mdx │ │ ├── data-table.mdx │ │ ├── date-picker.mdx │ │ ├── dialog.mdx │ │ ├── dropdown-menu.mdx │ │ ├── form.mdx │ │ ├── hover-card.mdx │ │ ├── input.mdx │ │ ├── label.mdx │ │ ├── menubar.mdx │ │ ├── navigation-menu.mdx │ │ ├── popover.mdx │ │ ├── progress.mdx │ │ ├── radio-group.mdx │ │ ├── scroll-area.mdx │ │ ├── select.mdx │ │ ├── separator.mdx │ │ ├── sheet.mdx │ │ ├── skeleton.mdx │ │ ├── slider.mdx │ │ ├── switch.mdx │ │ ├── table.mdx │ │ ├── tabs.mdx │ │ ├── textarea.mdx │ │ ├── toast.mdx │ │ ├── toggle.mdx │ │ ├── tooltip.mdx │ │ └── typography.mdx │ │ ├── dark-mode.mdx │ │ ├── figma.mdx │ │ ├── index.mdx │ │ ├── installation │ │ ├── astro.mdx │ │ ├── gatsby.mdx │ │ ├── index.mdx │ │ ├── manual.mdx │ │ ├── next.mdx │ │ ├── remix.mdx │ │ └── vite.mdx │ │ └── theming.mdx │ ├── contentlayer.config.js │ ├── hooks │ ├── use-config.ts │ ├── use-lock-body.ts │ ├── use-mounted.ts │ └── use-mutation-observer.ts │ ├── lib │ ├── events.ts │ ├── fonts.ts │ ├── rehype-component.ts │ ├── rehype-npm-command.ts │ ├── themes │ │ ├── dark.json │ │ └── light.json │ ├── toc.ts │ ├── utils.ts │ └── validations │ │ ├── log.ts │ │ └── og.ts │ ├── next-env.d.ts │ ├── next.config.mjs │ ├── package.json │ ├── pages │ ├── .gitkeep │ └── api │ │ ├── .gitkeep │ │ ├── components.json │ │ └── components.ts │ ├── postcss.config.cjs │ ├── public │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── avatars │ │ ├── 01.png │ │ ├── 02.png │ │ ├── 03.png │ │ ├── 04.png │ │ └── 05.png │ ├── examples │ │ ├── authentication-dark.png │ │ ├── authentication-light.png │ │ ├── cards-dark.png │ │ ├── cards-light.png │ │ ├── dashboard-dark.png │ │ ├── dashboard-light.png │ │ ├── forms-dark.png │ │ ├── forms-light.png │ │ ├── music-dark.png │ │ ├── music-light.png │ │ ├── playground-dark.png │ │ ├── playground-light.png │ │ ├── tasks-dark.png │ │ └── tasks-light.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── images │ │ ├── style-with-theming.jpg │ │ └── style.jpg │ ├── og.jpg │ ├── registry │ │ ├── colors │ │ │ ├── gray.json │ │ │ ├── index.json │ │ │ ├── lime.json │ │ │ ├── neutral.json │ │ │ ├── slate.json │ │ │ ├── stone.json │ │ │ └── zinc.json │ │ ├── index.json │ │ ├── styles │ │ │ ├── default │ │ │ │ ├── accordion.json │ │ │ │ ├── alert-dialog.json │ │ │ │ ├── alert.json │ │ │ │ ├── aspect-ratio.json │ │ │ │ ├── avatar.json │ │ │ │ ├── badge.json │ │ │ │ ├── button.json │ │ │ │ ├── calendar.json │ │ │ │ ├── card.json │ │ │ │ ├── checkbox.json │ │ │ │ ├── collapsible.json │ │ │ │ ├── command.json │ │ │ │ ├── context-menu.json │ │ │ │ ├── dialog.json │ │ │ │ ├── dropdown-menu.json │ │ │ │ ├── form.json │ │ │ │ ├── hover-card.json │ │ │ │ ├── input.json │ │ │ │ ├── label.json │ │ │ │ ├── menubar.json │ │ │ │ ├── navigation-menu.json │ │ │ │ ├── popover.json │ │ │ │ ├── progress.json │ │ │ │ ├── radio-group.json │ │ │ │ ├── scroll-area.json │ │ │ │ ├── select.json │ │ │ │ ├── separator.json │ │ │ │ ├── sheet.json │ │ │ │ ├── skeleton.json │ │ │ │ ├── slider.json │ │ │ │ ├── switch.json │ │ │ │ ├── table.json │ │ │ │ ├── tabs.json │ │ │ │ ├── textarea.json │ │ │ │ ├── toast.json │ │ │ │ ├── toggle.json │ │ │ │ └── tooltip.json │ │ │ ├── index.json │ │ │ └── new-york │ │ │ │ ├── accordion.json │ │ │ │ ├── alert-dialog.json │ │ │ │ ├── alert.json │ │ │ │ ├── aspect-ratio.json │ │ │ │ ├── avatar.json │ │ │ │ ├── badge.json │ │ │ │ ├── button.json │ │ │ │ ├── calendar.json │ │ │ │ ├── card.json │ │ │ │ ├── checkbox.json │ │ │ │ ├── collapsible.json │ │ │ │ ├── command.json │ │ │ │ ├── context-menu.json │ │ │ │ ├── dialog.json │ │ │ │ ├── dropdown-menu.json │ │ │ │ ├── form.json │ │ │ │ ├── hover-card.json │ │ │ │ ├── input.json │ │ │ │ ├── label.json │ │ │ │ ├── menubar.json │ │ │ │ ├── navigation-menu.json │ │ │ │ ├── popover.json │ │ │ │ ├── progress.json │ │ │ │ ├── radio-group.json │ │ │ │ ├── scroll-area.json │ │ │ │ ├── select.json │ │ │ │ ├── separator.json │ │ │ │ ├── sheet.json │ │ │ │ ├── skeleton.json │ │ │ │ ├── slider.json │ │ │ │ ├── switch.json │ │ │ │ ├── table.json │ │ │ │ ├── tabs.json │ │ │ │ ├── textarea.json │ │ │ │ ├── toast.json │ │ │ │ ├── toggle.json │ │ │ │ └── tooltip.json │ │ └── themes.css │ ├── schema.json │ └── site.webmanifest │ ├── registry │ ├── .eslintrc.json │ ├── colors.ts │ ├── default │ │ ├── example │ │ │ ├── accordion-demo.tsx │ │ │ ├── alert-demo.tsx │ │ │ ├── alert-destructive.tsx │ │ │ ├── alert-dialog-demo.tsx │ │ │ ├── aspect-ratio-demo.tsx │ │ │ ├── avatar-demo.tsx │ │ │ ├── badge-demo.tsx │ │ │ ├── badge-destructive.tsx │ │ │ ├── badge-outline.tsx │ │ │ ├── badge-secondary.tsx │ │ │ ├── button-as-child.tsx │ │ │ ├── button-demo.tsx │ │ │ ├── button-destructive.tsx │ │ │ ├── button-ghost.tsx │ │ │ ├── button-icon.tsx │ │ │ ├── button-link.tsx │ │ │ ├── button-loading.tsx │ │ │ ├── button-outline.tsx │ │ │ ├── button-secondary.tsx │ │ │ ├── button-with-icon.tsx │ │ │ ├── calendar-demo.tsx │ │ │ ├── calendar-form.tsx │ │ │ ├── calendar-react-hook-form.tsx │ │ │ ├── card-demo.tsx │ │ │ ├── card-with-form.tsx │ │ │ ├── checkbox-demo.tsx │ │ │ ├── checkbox-disabled.tsx │ │ │ ├── checkbox-form-multiple.tsx │ │ │ ├── checkbox-form-single.tsx │ │ │ ├── checkbox-with-text.tsx │ │ │ ├── collapsible-demo.tsx │ │ │ ├── combobox-demo.tsx │ │ │ ├── combobox-dropdown-menu.tsx │ │ │ ├── combobox-form.tsx │ │ │ ├── combobox-popover.tsx │ │ │ ├── command-demo.tsx │ │ │ ├── command-dialog.tsx │ │ │ ├── context-menu-demo.tsx │ │ │ ├── data-table-demo.tsx │ │ │ ├── date-picker-demo.tsx │ │ │ ├── date-picker-form.tsx │ │ │ ├── date-picker-with-presets.tsx │ │ │ ├── date-picker-with-range.tsx │ │ │ ├── dialog-demo.tsx │ │ │ ├── dropdown-menu-checkboxes.tsx │ │ │ ├── dropdown-menu-demo.tsx │ │ │ ├── dropdown-menu-radio-group.tsx │ │ │ ├── hover-card-demo.tsx │ │ │ ├── input-demo.tsx │ │ │ ├── input-disabled.tsx │ │ │ ├── input-file.tsx │ │ │ ├── input-form.tsx │ │ │ ├── input-with-button.tsx │ │ │ ├── input-with-label.tsx │ │ │ ├── input-with-text.tsx │ │ │ ├── label-demo.tsx │ │ │ ├── menubar-demo.tsx │ │ │ ├── mode-toggle.tsx │ │ │ ├── navigation-menu-demo.tsx │ │ │ ├── popover-demo.tsx │ │ │ ├── progress-demo.tsx │ │ │ ├── radio-group-demo.tsx │ │ │ ├── radio-group-form.tsx │ │ │ ├── scroll-area-demo.tsx │ │ │ ├── select-demo.tsx │ │ │ ├── select-form.tsx │ │ │ ├── separator-demo.tsx │ │ │ ├── sheet-demo.tsx │ │ │ ├── sheet-side.tsx │ │ │ ├── skeleton-demo.tsx │ │ │ ├── slider-demo.tsx │ │ │ ├── switch-demo.tsx │ │ │ ├── switch-form.tsx │ │ │ ├── table-demo.tsx │ │ │ ├── tabs-demo.tsx │ │ │ ├── textarea-demo.tsx │ │ │ ├── textarea-disabled.tsx │ │ │ ├── textarea-form.tsx │ │ │ ├── textarea-with-button.tsx │ │ │ ├── textarea-with-label.tsx │ │ │ ├── textarea-with-text.tsx │ │ │ ├── toast-demo.tsx │ │ │ ├── toast-destructive.tsx │ │ │ ├── toast-simple.tsx │ │ │ ├── toast-with-action.tsx │ │ │ ├── toast-with-title.tsx │ │ │ ├── toggle-demo.tsx │ │ │ ├── toggle-disabled.tsx │ │ │ ├── toggle-lg.tsx │ │ │ ├── toggle-outline.tsx │ │ │ ├── toggle-sm.tsx │ │ │ ├── toggle-with-text.tsx │ │ │ ├── tooltip-demo.tsx │ │ │ ├── typography-blockquote.tsx │ │ │ ├── typography-demo.tsx │ │ │ ├── typography-h1.tsx │ │ │ ├── typography-h2.tsx │ │ │ ├── typography-h3.tsx │ │ │ ├── typography-h4.tsx │ │ │ ├── typography-inline-code.tsx │ │ │ ├── typography-large.tsx │ │ │ ├── typography-lead.tsx │ │ │ ├── typography-list.tsx │ │ │ ├── typography-muted.tsx │ │ │ ├── typography-p.tsx │ │ │ ├── typography-small.tsx │ │ │ └── typography-table.tsx │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── alert.tsx │ │ │ ├── aspect-ratio.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── calendar.tsx │ │ │ ├── card.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── collapsible.tsx │ │ │ ├── command.tsx │ │ │ ├── context-menu.tsx │ │ │ ├── dialog.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form.tsx │ │ │ ├── hover-card.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── menubar.tsx │ │ │ ├── navigation-menu.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── radio-group.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ ├── toggle.tsx │ │ │ ├── tooltip.tsx │ │ │ └── use-toast.ts │ ├── new-york │ │ ├── example │ │ │ ├── accordion-demo.tsx │ │ │ ├── alert-demo.tsx │ │ │ ├── alert-destructive.tsx │ │ │ ├── alert-dialog-demo.tsx │ │ │ ├── aspect-ratio-demo.tsx │ │ │ ├── avatar-demo.tsx │ │ │ ├── badge-demo.tsx │ │ │ ├── badge-destructive.tsx │ │ │ ├── badge-outline.tsx │ │ │ ├── badge-secondary.tsx │ │ │ ├── button-as-child.tsx │ │ │ ├── button-demo.tsx │ │ │ ├── button-destructive.tsx │ │ │ ├── button-ghost.tsx │ │ │ ├── button-icon.tsx │ │ │ ├── button-link.tsx │ │ │ ├── button-loading.tsx │ │ │ ├── button-outline.tsx │ │ │ ├── button-secondary.tsx │ │ │ ├── button-with-icon.tsx │ │ │ ├── calendar-demo.tsx │ │ │ ├── calendar-form.tsx │ │ │ ├── card-demo.tsx │ │ │ ├── card-with-form.tsx │ │ │ ├── checkbox-demo.tsx │ │ │ ├── checkbox-disabled.tsx │ │ │ ├── checkbox-form-multiple.tsx │ │ │ ├── checkbox-form-single.tsx │ │ │ ├── checkbox-with-text.tsx │ │ │ ├── collapsible-demo.tsx │ │ │ ├── combobox-demo.tsx │ │ │ ├── combobox-dropdown-menu.tsx │ │ │ ├── combobox-form.tsx │ │ │ ├── combobox-popover.tsx │ │ │ ├── command-demo.tsx │ │ │ ├── command-dialog.tsx │ │ │ ├── context-menu-demo.tsx │ │ │ ├── data-table-demo.tsx │ │ │ ├── date-picker-demo.tsx │ │ │ ├── date-picker-form.tsx │ │ │ ├── date-picker-with-presets.tsx │ │ │ ├── date-picker-with-range.tsx │ │ │ ├── dialog-demo.tsx │ │ │ ├── dropdown-menu-checkboxes.tsx │ │ │ ├── dropdown-menu-demo.tsx │ │ │ ├── dropdown-menu-radio-group.tsx │ │ │ ├── hover-card-demo.tsx │ │ │ ├── input-demo.tsx │ │ │ ├── input-disabled.tsx │ │ │ ├── input-file.tsx │ │ │ ├── input-form.tsx │ │ │ ├── input-with-button.tsx │ │ │ ├── input-with-label.tsx │ │ │ ├── input-with-text.tsx │ │ │ ├── label-demo.tsx │ │ │ ├── menubar-demo.tsx │ │ │ ├── mode-toggle.tsx │ │ │ ├── navigation-menu-demo.tsx │ │ │ ├── popover-demo.tsx │ │ │ ├── progress-demo.tsx │ │ │ ├── radio-group-demo.tsx │ │ │ ├── radio-group-form.tsx │ │ │ ├── scroll-area-demo.tsx │ │ │ ├── select-demo.tsx │ │ │ ├── select-form.tsx │ │ │ ├── separator-demo.tsx │ │ │ ├── sheet-demo.tsx │ │ │ ├── sheet-side.tsx │ │ │ ├── skeleton-demo.tsx │ │ │ ├── slider-demo.tsx │ │ │ ├── switch-demo.tsx │ │ │ ├── switch-form.tsx │ │ │ ├── table-demo.tsx │ │ │ ├── tabs-demo.tsx │ │ │ ├── textarea-demo.tsx │ │ │ ├── textarea-disabled.tsx │ │ │ ├── textarea-form.tsx │ │ │ ├── textarea-with-button.tsx │ │ │ ├── textarea-with-label.tsx │ │ │ ├── textarea-with-text.tsx │ │ │ ├── toast-demo.tsx │ │ │ ├── toast-destructive.tsx │ │ │ ├── toast-simple.tsx │ │ │ ├── toast-with-action.tsx │ │ │ ├── toast-with-title.tsx │ │ │ ├── toggle-demo.tsx │ │ │ ├── toggle-disabled.tsx │ │ │ ├── toggle-lg.tsx │ │ │ ├── toggle-outline.tsx │ │ │ ├── toggle-sm.tsx │ │ │ ├── toggle-with-text.tsx │ │ │ ├── tooltip-demo.tsx │ │ │ ├── typography-blockquote.tsx │ │ │ ├── typography-demo.tsx │ │ │ ├── typography-h1.tsx │ │ │ ├── typography-h2.tsx │ │ │ ├── typography-h3.tsx │ │ │ ├── typography-h4.tsx │ │ │ ├── typography-inline-code.tsx │ │ │ ├── typography-large.tsx │ │ │ ├── typography-lead.tsx │ │ │ ├── typography-list.tsx │ │ │ ├── typography-muted.tsx │ │ │ ├── typography-p.tsx │ │ │ ├── typography-small.tsx │ │ │ └── typography-table.tsx │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── alert.tsx │ │ │ ├── aspect-ratio.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── calendar.tsx │ │ │ ├── card.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── collapsible.tsx │ │ │ ├── command.tsx │ │ │ ├── context-menu.tsx │ │ │ ├── dialog.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form.tsx │ │ │ ├── hover-card.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── menubar.tsx │ │ │ ├── navigation-menu.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── radio-group.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ ├── toggle.tsx │ │ │ ├── tooltip.tsx │ │ │ └── use-toast.ts │ ├── registry.ts │ ├── schema.ts │ ├── styles.ts │ └── themes.ts │ ├── scripts │ └── build-registry.ts │ ├── styles │ ├── globals.css │ └── mdx.css │ ├── tailwind.config.cjs │ ├── tsconfig.json │ ├── tsconfig.scripts.json │ └── types │ ├── nav.ts │ └── unist.ts ├── fix_user.sh ├── package.json ├── packages └── cli │ ├── .gitignore │ ├── .prettierignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ ├── commands │ │ ├── add.ts │ │ ├── diff.ts │ │ └── init.ts │ ├── index.ts │ └── utils │ │ ├── get-config.ts │ │ ├── get-package-info.ts │ │ ├── get-package-manager.ts │ │ ├── get-project-info.ts │ │ ├── handle-error.ts │ │ ├── logger.ts │ │ ├── registry │ │ ├── index.ts │ │ └── schema.ts │ │ ├── resolve-import.ts │ │ ├── templates.ts │ │ └── transformers │ │ ├── index.ts │ │ ├── transform-css-vars.ts │ │ ├── transform-import.ts │ │ ├── transform-jsx.ts │ │ └── transform-rsc.ts │ ├── test │ ├── commands │ │ └── init.test.ts │ ├── fixtures │ │ ├── colors │ │ │ ├── neutral.json │ │ │ ├── slate.json │ │ │ ├── stone.json │ │ │ └── zinc.json │ │ ├── config-full │ │ │ ├── components.json │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ ├── config-invalid │ │ │ ├── components.json │ │ │ └── package.json │ │ ├── config-jsx │ │ │ ├── components.json │ │ │ ├── jsconfig.json │ │ │ └── package.json │ │ ├── config-none │ │ │ └── package.json │ │ ├── config-partial │ │ │ ├── components.json │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ ├── next-src │ │ │ ├── .gitignore │ │ │ ├── next.config.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── app │ │ │ │ │ └── globals.css │ │ │ ├── tailwind.config.js │ │ │ └── tsconfig.json │ │ ├── next │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ └── globals.css │ │ │ ├── next.config.js │ │ │ ├── package.json │ │ │ ├── pnpm-lock.yaml │ │ │ ├── tailwind.config.js │ │ │ └── tsconfig.json │ │ ├── project-bun │ │ │ ├── bun.lockb │ │ │ └── package.json │ │ ├── project-npm │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── project-pnpm │ │ │ ├── package.json │ │ │ └── pnpm-lock.yaml │ │ ├── project-src │ │ │ ├── components.json │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── project-yarn │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── project │ │ │ ├── components.json │ │ │ ├── package.json │ │ │ └── pnpm-lock.yaml │ │ ├── t3-app │ │ │ ├── .eslintrc.cjs │ │ │ ├── .gitignore │ │ │ ├── next.config.mjs │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── env.mjs │ │ │ │ ├── pages │ │ │ │ │ ├── _app.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── styles │ │ │ │ │ └── globals.css │ │ │ ├── tailwind.config.ts │ │ │ └── tsconfig.json │ │ ├── with-base-url │ │ │ └── tsconfig.json │ │ └── without-base-url │ │ │ └── tsconfig.json │ └── utils │ │ ├── __snapshots__ │ │ ├── transform-css-vars.test.ts.snap │ │ ├── transform-import.test.ts.snap │ │ └── transform-rsc.test.ts.snap │ │ ├── apply-color-mapping.test.ts │ │ ├── get-config.test.ts │ │ ├── get-package-manager.test.ts │ │ ├── registry.test.ts │ │ ├── resolve-import.test.ts │ │ ├── transform-css-vars.test.ts │ │ ├── transform-import.test.ts │ │ └── transform-rsc.test.ts │ ├── tsconfig.json │ └── tsup.config.ts ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── postcss.config.cjs ├── prettier.config.cjs ├── scripts └── sync-templates.sh ├── tailwind.config.cjs ├── templates └── next-template │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierignore │ ├── .vscode │ └── settings.json │ ├── README.md │ ├── app │ ├── layout.tsx │ └── page.tsx │ ├── components.json │ ├── components │ ├── icons.tsx │ ├── main-nav.tsx │ ├── site-header.tsx │ ├── tailwind-indicator.tsx │ ├── theme-provider.tsx │ ├── theme-toggle.tsx │ └── ui │ │ └── button.tsx │ ├── config │ └── site.ts │ ├── lib │ ├── fonts.ts │ └── utils.ts │ ├── next-env.d.ts │ ├── next.config.mjs │ ├── package.json │ ├── postcss.config.js │ ├── prettier.config.js │ ├── public │ ├── favicon.ico │ ├── next.svg │ ├── thirteen.svg │ └── vercel.svg │ ├── styles │ └── globals.css │ ├── tailwind.config.js │ ├── tsconfig.json │ └── types │ └── nav.ts ├── tsconfig.json ├── turbo.json └── vitest.config.ts /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.commitlintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@commitlint/config-conventional"] 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/changeset-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/.github/changeset-version.js -------------------------------------------------------------------------------- /.github/version-script-beta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/.github/version-script-beta.js -------------------------------------------------------------------------------- /.github/version-script-next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/.github/version-script-next.js -------------------------------------------------------------------------------- /.github/workflows/code-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/.github/workflows/code-check.yml -------------------------------------------------------------------------------- /.github/workflows/prerelease-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/.github/workflows/prerelease-comment.yml -------------------------------------------------------------------------------- /.github/workflows/prerelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/.github/workflows/prerelease.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | auto-install-peers=true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v16.18.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Next.js/ui 2 | -------------------------------------------------------------------------------- /apps/www/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/.env.example -------------------------------------------------------------------------------- /apps/www/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .env -------------------------------------------------------------------------------- /apps/www/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/.prettierignore -------------------------------------------------------------------------------- /apps/www/__registry__/.autogenerated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/__registry__/.autogenerated -------------------------------------------------------------------------------- /apps/www/__registry__/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/www/__registry__/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/__registry__/README.md -------------------------------------------------------------------------------- /apps/www/__registry__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/__registry__/index.tsx -------------------------------------------------------------------------------- /apps/www/app/docs/[[...slug]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/docs/[[...slug]]/page.tsx -------------------------------------------------------------------------------- /apps/www/app/docs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/docs/layout.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/authentication/components/user-auth-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/authentication/components/user-auth-form.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/authentication/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/authentication/page.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/cards/components/cookie-settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/cards/components/cookie-settings.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/cards/components/create-account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/cards/components/create-account.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/cards/components/date-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/cards/components/date-picker.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/cards/components/github-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/cards/components/github-card.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/cards/components/notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/cards/components/notifications.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/cards/components/payment-method.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/cards/components/payment-method.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/cards/components/report-an-issue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/cards/components/report-an-issue.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/cards/components/share-document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/cards/components/share-document.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/cards/components/team-members.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/cards/components/team-members.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/cards/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/cards/page.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/dashboard/components/date-range-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/dashboard/components/date-range-picker.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/dashboard/components/main-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/dashboard/components/main-nav.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/dashboard/components/overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/dashboard/components/overview.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/dashboard/components/recent-sales.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/dashboard/components/recent-sales.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/dashboard/components/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/dashboard/components/search.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/dashboard/components/team-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/dashboard/components/team-switcher.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/dashboard/components/user-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/dashboard/components/user-nav.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/dashboard/page.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/forms/account/account-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/forms/account/account-form.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/forms/account/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/forms/account/page.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/forms/appearance/appearance-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/forms/appearance/appearance-form.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/forms/appearance/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/forms/appearance/page.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/forms/components/sidebar-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/forms/components/sidebar-nav.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/forms/display/display-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/forms/display/display-form.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/forms/display/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/forms/display/page.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/forms/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/forms/layout.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/forms/notifications/notifications-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/forms/notifications/notifications-form.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/forms/notifications/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/forms/notifications/page.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/forms/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/forms/page.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/forms/profile-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/forms/profile-form.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/layout.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/music/components/album-artwork.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/music/components/album-artwork.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/music/components/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/music/components/menu.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/music/components/podcast-empty-placeholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/music/components/podcast-empty-placeholder.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/music/components/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/music/components/sidebar.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/music/data/albums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/music/data/albums.ts -------------------------------------------------------------------------------- /apps/www/app/examples/music/data/playlists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/music/data/playlists.ts -------------------------------------------------------------------------------- /apps/www/app/examples/music/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/music/page.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/playground/components/code-viewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/playground/components/code-viewer.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/playground/components/maxlength-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/playground/components/maxlength-selector.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/playground/components/model-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/playground/components/model-selector.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/playground/components/preset-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/playground/components/preset-actions.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/playground/components/preset-save.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/playground/components/preset-save.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/playground/components/preset-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/playground/components/preset-selector.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/playground/components/preset-share.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/playground/components/preset-share.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/playground/components/temperature-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/playground/components/temperature-selector.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/playground/components/top-p-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/playground/components/top-p-selector.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/playground/data/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/playground/data/models.ts -------------------------------------------------------------------------------- /apps/www/app/examples/playground/data/presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/playground/data/presets.ts -------------------------------------------------------------------------------- /apps/www/app/examples/playground/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/playground/page.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/tasks/components/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/tasks/components/columns.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/tasks/components/data-table-column-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/tasks/components/data-table-column-header.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/tasks/components/data-table-faceted-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/tasks/components/data-table-faceted-filter.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/tasks/components/data-table-pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/tasks/components/data-table-pagination.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/tasks/components/data-table-row-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/tasks/components/data-table-row-actions.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/tasks/components/data-table-toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/tasks/components/data-table-toolbar.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/tasks/components/data-table-view-options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/tasks/components/data-table-view-options.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/tasks/components/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/tasks/components/data-table.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/tasks/components/user-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/tasks/components/user-nav.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/tasks/data/data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/tasks/data/data.tsx -------------------------------------------------------------------------------- /apps/www/app/examples/tasks/data/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/tasks/data/schema.ts -------------------------------------------------------------------------------- /apps/www/app/examples/tasks/data/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/tasks/data/seed.ts -------------------------------------------------------------------------------- /apps/www/app/examples/tasks/data/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/tasks/data/tasks.json -------------------------------------------------------------------------------- /apps/www/app/examples/tasks/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/examples/tasks/page.tsx -------------------------------------------------------------------------------- /apps/www/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/layout.tsx -------------------------------------------------------------------------------- /apps/www/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/page.tsx -------------------------------------------------------------------------------- /apps/www/app/sink/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/sink/layout.tsx -------------------------------------------------------------------------------- /apps/www/app/sink/new-york/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/sink/new-york/page.tsx -------------------------------------------------------------------------------- /apps/www/app/sink/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/app/sink/page.tsx -------------------------------------------------------------------------------- /apps/www/assets/fonts/CalSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/assets/fonts/CalSans-SemiBold.ttf -------------------------------------------------------------------------------- /apps/www/assets/fonts/CalSans-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/assets/fonts/CalSans-SemiBold.woff -------------------------------------------------------------------------------- /apps/www/assets/fonts/CalSans-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/assets/fonts/CalSans-SemiBold.woff2 -------------------------------------------------------------------------------- /apps/www/assets/fonts/Inter-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/assets/fonts/Inter-Bold.ttf -------------------------------------------------------------------------------- /apps/www/assets/fonts/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/assets/fonts/Inter-Regular.ttf -------------------------------------------------------------------------------- /apps/www/components/analytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/analytics.tsx -------------------------------------------------------------------------------- /apps/www/components/callout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/callout.tsx -------------------------------------------------------------------------------- /apps/www/components/code-block-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/code-block-wrapper.tsx -------------------------------------------------------------------------------- /apps/www/components/command-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/command-menu.tsx -------------------------------------------------------------------------------- /apps/www/components/component-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/component-card.tsx -------------------------------------------------------------------------------- /apps/www/components/component-example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/component-example.tsx -------------------------------------------------------------------------------- /apps/www/components/component-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/component-preview.tsx -------------------------------------------------------------------------------- /apps/www/components/component-source.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/component-source.tsx -------------------------------------------------------------------------------- /apps/www/components/copy-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/copy-button.tsx -------------------------------------------------------------------------------- /apps/www/components/examples-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/examples-nav.tsx -------------------------------------------------------------------------------- /apps/www/components/framework-docs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/framework-docs.tsx -------------------------------------------------------------------------------- /apps/www/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/icons.tsx -------------------------------------------------------------------------------- /apps/www/components/main-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/main-nav.tsx -------------------------------------------------------------------------------- /apps/www/components/mdx-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/mdx-components.tsx -------------------------------------------------------------------------------- /apps/www/components/mobile-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/mobile-nav.tsx -------------------------------------------------------------------------------- /apps/www/components/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/mode-toggle.tsx -------------------------------------------------------------------------------- /apps/www/components/page-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/page-header.tsx -------------------------------------------------------------------------------- /apps/www/components/pager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/pager.tsx -------------------------------------------------------------------------------- /apps/www/components/promo-video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/promo-video.tsx -------------------------------------------------------------------------------- /apps/www/components/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/providers.tsx -------------------------------------------------------------------------------- /apps/www/components/sidebar-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/sidebar-nav.tsx -------------------------------------------------------------------------------- /apps/www/components/site-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/site-footer.tsx -------------------------------------------------------------------------------- /apps/www/components/site-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/site-header.tsx -------------------------------------------------------------------------------- /apps/www/components/style-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/style-switcher.tsx -------------------------------------------------------------------------------- /apps/www/components/style-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/style-wrapper.tsx -------------------------------------------------------------------------------- /apps/www/components/tailwind-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/tailwind-indicator.tsx -------------------------------------------------------------------------------- /apps/www/components/theme-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/theme-wrapper.tsx -------------------------------------------------------------------------------- /apps/www/components/toc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/components/toc.tsx -------------------------------------------------------------------------------- /apps/www/config/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/config/docs.ts -------------------------------------------------------------------------------- /apps/www/config/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/config/site.ts -------------------------------------------------------------------------------- /apps/www/content/docs/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/about.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/changelog.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/changelog.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/cli.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/cli.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/accordion.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/accordion.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/alert-dialog.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/alert-dialog.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/alert.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/alert.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/aspect-ratio.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/aspect-ratio.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/avatar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/avatar.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/badge.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/badge.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/button.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/button.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/calendar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/calendar.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/card.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/checkbox.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/checkbox.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/collapsible.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/collapsible.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/combobox.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/combobox.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/command.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/command.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/context-menu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/context-menu.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/data-table.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/data-table.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/date-picker.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/date-picker.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/dialog.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/dialog.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/dropdown-menu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/dropdown-menu.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/form.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/form.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/hover-card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/hover-card.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/input.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/input.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/label.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/label.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/menubar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/menubar.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/navigation-menu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/navigation-menu.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/popover.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/popover.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/progress.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/progress.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/radio-group.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/radio-group.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/scroll-area.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/scroll-area.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/select.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/select.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/separator.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/separator.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/sheet.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/sheet.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/skeleton.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/skeleton.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/slider.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/slider.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/switch.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/switch.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/table.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/table.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/tabs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/tabs.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/textarea.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/textarea.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/toast.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/toast.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/toggle.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/toggle.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/tooltip.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/tooltip.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/typography.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/components/typography.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/dark-mode.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/dark-mode.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/figma.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/figma.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/index.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/installation/astro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/installation/astro.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/installation/gatsby.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/installation/gatsby.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/installation/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/installation/index.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/installation/manual.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/installation/manual.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/installation/next.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/installation/next.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/installation/remix.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/installation/remix.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/installation/vite.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/installation/vite.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/theming.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/content/docs/theming.mdx -------------------------------------------------------------------------------- /apps/www/contentlayer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/contentlayer.config.js -------------------------------------------------------------------------------- /apps/www/hooks/use-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/hooks/use-config.ts -------------------------------------------------------------------------------- /apps/www/hooks/use-lock-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/hooks/use-lock-body.ts -------------------------------------------------------------------------------- /apps/www/hooks/use-mounted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/hooks/use-mounted.ts -------------------------------------------------------------------------------- /apps/www/hooks/use-mutation-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/hooks/use-mutation-observer.ts -------------------------------------------------------------------------------- /apps/www/lib/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/lib/events.ts -------------------------------------------------------------------------------- /apps/www/lib/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/lib/fonts.ts -------------------------------------------------------------------------------- /apps/www/lib/rehype-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/lib/rehype-component.ts -------------------------------------------------------------------------------- /apps/www/lib/rehype-npm-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/lib/rehype-npm-command.ts -------------------------------------------------------------------------------- /apps/www/lib/themes/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/lib/themes/dark.json -------------------------------------------------------------------------------- /apps/www/lib/themes/light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/lib/themes/light.json -------------------------------------------------------------------------------- /apps/www/lib/toc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/lib/toc.ts -------------------------------------------------------------------------------- /apps/www/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/lib/utils.ts -------------------------------------------------------------------------------- /apps/www/lib/validations/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/lib/validations/log.ts -------------------------------------------------------------------------------- /apps/www/lib/validations/og.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/lib/validations/og.ts -------------------------------------------------------------------------------- /apps/www/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/next-env.d.ts -------------------------------------------------------------------------------- /apps/www/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/next.config.mjs -------------------------------------------------------------------------------- /apps/www/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/package.json -------------------------------------------------------------------------------- /apps/www/pages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/www/pages/api/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/www/pages/api/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/pages/api/components.json -------------------------------------------------------------------------------- /apps/www/pages/api/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/pages/api/components.ts -------------------------------------------------------------------------------- /apps/www/postcss.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = require("../../postcss.config.cjs") 2 | -------------------------------------------------------------------------------- /apps/www/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /apps/www/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /apps/www/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/apple-touch-icon.png -------------------------------------------------------------------------------- /apps/www/public/avatars/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/avatars/01.png -------------------------------------------------------------------------------- /apps/www/public/avatars/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/avatars/02.png -------------------------------------------------------------------------------- /apps/www/public/avatars/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/avatars/03.png -------------------------------------------------------------------------------- /apps/www/public/avatars/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/avatars/04.png -------------------------------------------------------------------------------- /apps/www/public/avatars/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/avatars/05.png -------------------------------------------------------------------------------- /apps/www/public/examples/authentication-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/examples/authentication-dark.png -------------------------------------------------------------------------------- /apps/www/public/examples/authentication-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/examples/authentication-light.png -------------------------------------------------------------------------------- /apps/www/public/examples/cards-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/examples/cards-dark.png -------------------------------------------------------------------------------- /apps/www/public/examples/cards-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/examples/cards-light.png -------------------------------------------------------------------------------- /apps/www/public/examples/dashboard-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/examples/dashboard-dark.png -------------------------------------------------------------------------------- /apps/www/public/examples/dashboard-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/examples/dashboard-light.png -------------------------------------------------------------------------------- /apps/www/public/examples/forms-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/examples/forms-dark.png -------------------------------------------------------------------------------- /apps/www/public/examples/forms-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/examples/forms-light.png -------------------------------------------------------------------------------- /apps/www/public/examples/music-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/examples/music-dark.png -------------------------------------------------------------------------------- /apps/www/public/examples/music-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/examples/music-light.png -------------------------------------------------------------------------------- /apps/www/public/examples/playground-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/examples/playground-dark.png -------------------------------------------------------------------------------- /apps/www/public/examples/playground-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/examples/playground-light.png -------------------------------------------------------------------------------- /apps/www/public/examples/tasks-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/examples/tasks-dark.png -------------------------------------------------------------------------------- /apps/www/public/examples/tasks-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/examples/tasks-light.png -------------------------------------------------------------------------------- /apps/www/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/favicon-16x16.png -------------------------------------------------------------------------------- /apps/www/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/favicon-32x32.png -------------------------------------------------------------------------------- /apps/www/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/favicon.ico -------------------------------------------------------------------------------- /apps/www/public/images/style-with-theming.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/images/style-with-theming.jpg -------------------------------------------------------------------------------- /apps/www/public/images/style.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/images/style.jpg -------------------------------------------------------------------------------- /apps/www/public/og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/og.jpg -------------------------------------------------------------------------------- /apps/www/public/registry/colors/gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/colors/gray.json -------------------------------------------------------------------------------- /apps/www/public/registry/colors/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/colors/index.json -------------------------------------------------------------------------------- /apps/www/public/registry/colors/lime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/colors/lime.json -------------------------------------------------------------------------------- /apps/www/public/registry/colors/neutral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/colors/neutral.json -------------------------------------------------------------------------------- /apps/www/public/registry/colors/slate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/colors/slate.json -------------------------------------------------------------------------------- /apps/www/public/registry/colors/stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/colors/stone.json -------------------------------------------------------------------------------- /apps/www/public/registry/colors/zinc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/colors/zinc.json -------------------------------------------------------------------------------- /apps/www/public/registry/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/index.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/accordion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/accordion.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/alert-dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/alert-dialog.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/alert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/alert.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/aspect-ratio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/aspect-ratio.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/avatar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/avatar.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/badge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/badge.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/button.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/calendar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/calendar.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/card.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/checkbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/checkbox.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/collapsible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/collapsible.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/command.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/context-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/context-menu.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/dialog.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/dropdown-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/dropdown-menu.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/form.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/hover-card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/hover-card.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/input.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/label.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/menubar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/menubar.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/navigation-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/navigation-menu.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/popover.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/popover.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/progress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/progress.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/radio-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/radio-group.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/scroll-area.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/scroll-area.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/select.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/separator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/separator.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/sheet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/sheet.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/skeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/skeleton.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/slider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/slider.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/switch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/switch.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/table.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/tabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/tabs.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/textarea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/textarea.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/toast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/toast.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/toggle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/toggle.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/default/tooltip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/default/tooltip.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/index.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/accordion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/accordion.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/alert-dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/alert-dialog.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/alert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/alert.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/aspect-ratio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/aspect-ratio.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/avatar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/avatar.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/badge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/badge.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/button.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/calendar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/calendar.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/card.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/checkbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/checkbox.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/collapsible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/collapsible.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/command.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/context-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/context-menu.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/dialog.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/dropdown-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/dropdown-menu.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/form.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/hover-card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/hover-card.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/input.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/label.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/menubar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/menubar.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/navigation-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/navigation-menu.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/popover.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/popover.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/progress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/progress.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/radio-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/radio-group.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/scroll-area.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/scroll-area.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/select.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/separator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/separator.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/sheet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/sheet.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/skeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/skeleton.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/slider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/slider.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/switch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/switch.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/table.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/tabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/tabs.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/textarea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/textarea.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/toast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/toast.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/toggle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/toggle.json -------------------------------------------------------------------------------- /apps/www/public/registry/styles/new-york/tooltip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/styles/new-york/tooltip.json -------------------------------------------------------------------------------- /apps/www/public/registry/themes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/registry/themes.css -------------------------------------------------------------------------------- /apps/www/public/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/schema.json -------------------------------------------------------------------------------- /apps/www/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/public/site.webmanifest -------------------------------------------------------------------------------- /apps/www/registry/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/.eslintrc.json -------------------------------------------------------------------------------- /apps/www/registry/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/colors.ts -------------------------------------------------------------------------------- /apps/www/registry/default/example/accordion-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/accordion-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/alert-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/alert-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/alert-destructive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/alert-destructive.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/alert-dialog-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/alert-dialog-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/aspect-ratio-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/aspect-ratio-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/avatar-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/avatar-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/badge-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/badge-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/badge-destructive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/badge-destructive.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/badge-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/badge-outline.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/badge-secondary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/badge-secondary.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/button-as-child.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/button-as-child.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/button-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/button-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/button-destructive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/button-destructive.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/button-ghost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/button-ghost.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/button-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/button-icon.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/button-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/button-link.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/button-loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/button-loading.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/button-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/button-outline.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/button-secondary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/button-secondary.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/button-with-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/button-with-icon.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/calendar-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/calendar-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/calendar-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/calendar-form.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/calendar-react-hook-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/calendar-react-hook-form.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/card-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/card-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/card-with-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/card-with-form.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/checkbox-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/checkbox-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/checkbox-disabled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/checkbox-disabled.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/checkbox-form-multiple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/checkbox-form-multiple.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/checkbox-form-single.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/checkbox-form-single.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/checkbox-with-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/checkbox-with-text.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/collapsible-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/collapsible-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/combobox-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/combobox-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/combobox-dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/combobox-dropdown-menu.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/combobox-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/combobox-form.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/combobox-popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/combobox-popover.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/command-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/command-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/command-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/command-dialog.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/context-menu-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/context-menu-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/data-table-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/data-table-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/date-picker-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/date-picker-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/date-picker-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/date-picker-form.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/date-picker-with-presets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/date-picker-with-presets.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/date-picker-with-range.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/date-picker-with-range.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/dialog-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/dialog-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/dropdown-menu-checkboxes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/dropdown-menu-checkboxes.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/dropdown-menu-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/dropdown-menu-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/dropdown-menu-radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/dropdown-menu-radio-group.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/hover-card-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/hover-card-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/input-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/input-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/input-disabled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/input-disabled.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/input-file.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/input-file.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/input-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/input-form.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/input-with-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/input-with-button.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/input-with-label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/input-with-label.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/input-with-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/input-with-text.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/label-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/label-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/menubar-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/menubar-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/mode-toggle.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/navigation-menu-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/navigation-menu-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/popover-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/popover-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/progress-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/progress-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/radio-group-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/radio-group-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/radio-group-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/radio-group-form.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/scroll-area-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/scroll-area-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/select-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/select-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/select-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/select-form.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/separator-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/separator-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/sheet-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/sheet-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/sheet-side.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/sheet-side.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/skeleton-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/skeleton-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/slider-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/slider-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/switch-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/switch-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/switch-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/switch-form.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/table-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/table-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/tabs-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/tabs-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/textarea-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/textarea-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/textarea-disabled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/textarea-disabled.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/textarea-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/textarea-form.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/textarea-with-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/textarea-with-button.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/textarea-with-label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/textarea-with-label.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/textarea-with-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/textarea-with-text.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/toast-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/toast-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/toast-destructive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/toast-destructive.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/toast-simple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/toast-simple.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/toast-with-action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/toast-with-action.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/toast-with-title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/toast-with-title.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/toggle-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/toggle-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/toggle-disabled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/toggle-disabled.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/toggle-lg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/toggle-lg.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/toggle-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/toggle-outline.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/toggle-sm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/toggle-sm.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/toggle-with-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/toggle-with-text.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/tooltip-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/tooltip-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/typography-blockquote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/typography-blockquote.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/typography-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/typography-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/typography-h1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/typography-h1.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/typography-h2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/typography-h2.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/typography-h3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/typography-h3.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/typography-h4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/typography-h4.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/typography-inline-code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/typography-inline-code.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/typography-large.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/typography-large.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/typography-lead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/typography-lead.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/typography-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/typography-list.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/typography-muted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/typography-muted.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/typography-p.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/typography-p.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/typography-small.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/typography-small.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/example/typography-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/example/typography-table.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/accordion.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/alert.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/avatar.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/badge.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/button.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/calendar.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/card.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/checkbox.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/collapsible.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/command.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/context-menu.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/dialog.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/form.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/hover-card.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/input.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/label.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/menubar.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/popover.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/progress.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/radio-group.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/scroll-area.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/select.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/separator.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/sheet.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/skeleton.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/slider.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/switch.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/table.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/tabs.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/textarea.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/toast.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/toaster.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/toggle.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/tooltip.tsx -------------------------------------------------------------------------------- /apps/www/registry/default/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/default/ui/use-toast.ts -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/accordion-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/accordion-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/alert-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/alert-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/alert-destructive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/alert-destructive.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/alert-dialog-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/alert-dialog-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/aspect-ratio-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/aspect-ratio-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/avatar-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/avatar-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/badge-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/badge-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/badge-destructive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/badge-destructive.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/badge-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/badge-outline.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/badge-secondary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/badge-secondary.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/button-as-child.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/button-as-child.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/button-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/button-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/button-destructive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/button-destructive.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/button-ghost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/button-ghost.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/button-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/button-icon.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/button-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/button-link.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/button-loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/button-loading.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/button-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/button-outline.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/button-secondary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/button-secondary.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/button-with-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/button-with-icon.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/calendar-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/calendar-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/calendar-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/calendar-form.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/card-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/card-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/card-with-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/card-with-form.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/checkbox-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/checkbox-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/checkbox-disabled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/checkbox-disabled.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/checkbox-form-multiple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/checkbox-form-multiple.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/checkbox-form-single.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/checkbox-form-single.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/checkbox-with-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/checkbox-with-text.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/collapsible-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/collapsible-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/combobox-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/combobox-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/combobox-dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/combobox-dropdown-menu.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/combobox-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/combobox-form.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/combobox-popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/combobox-popover.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/command-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/command-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/command-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/command-dialog.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/context-menu-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/context-menu-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/data-table-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/data-table-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/date-picker-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/date-picker-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/date-picker-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/date-picker-form.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/date-picker-with-presets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/date-picker-with-presets.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/date-picker-with-range.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/date-picker-with-range.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/dialog-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/dialog-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/dropdown-menu-checkboxes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/dropdown-menu-checkboxes.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/dropdown-menu-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/dropdown-menu-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/dropdown-menu-radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/dropdown-menu-radio-group.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/hover-card-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/hover-card-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/input-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/input-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/input-disabled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/input-disabled.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/input-file.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/input-file.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/input-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/input-form.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/input-with-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/input-with-button.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/input-with-label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/input-with-label.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/input-with-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/input-with-text.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/label-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/label-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/menubar-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/menubar-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/mode-toggle.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/navigation-menu-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/navigation-menu-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/popover-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/popover-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/progress-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/progress-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/radio-group-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/radio-group-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/radio-group-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/radio-group-form.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/scroll-area-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/scroll-area-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/select-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/select-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/select-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/select-form.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/separator-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/separator-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/sheet-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/sheet-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/sheet-side.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/sheet-side.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/skeleton-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/skeleton-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/slider-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/slider-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/switch-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/switch-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/switch-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/switch-form.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/table-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/table-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/tabs-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/tabs-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/textarea-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/textarea-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/textarea-disabled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/textarea-disabled.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/textarea-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/textarea-form.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/textarea-with-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/textarea-with-button.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/textarea-with-label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/textarea-with-label.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/textarea-with-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/textarea-with-text.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/toast-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/toast-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/toast-destructive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/toast-destructive.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/toast-simple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/toast-simple.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/toast-with-action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/toast-with-action.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/toast-with-title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/toast-with-title.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/toggle-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/toggle-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/toggle-disabled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/toggle-disabled.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/toggle-lg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/toggle-lg.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/toggle-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/toggle-outline.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/toggle-sm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/toggle-sm.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/toggle-with-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/toggle-with-text.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/tooltip-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/tooltip-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/typography-blockquote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/typography-blockquote.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/typography-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/typography-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/typography-h1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/typography-h1.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/typography-h2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/typography-h2.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/typography-h3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/typography-h3.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/typography-h4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/typography-h4.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/typography-inline-code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/typography-inline-code.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/typography-large.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/typography-large.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/typography-lead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/typography-lead.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/typography-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/typography-list.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/typography-muted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/typography-muted.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/typography-p.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/typography-p.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/typography-small.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/typography-small.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/example/typography-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/example/typography-table.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/accordion.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/alert.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/avatar.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/badge.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/button.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/calendar.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/card.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/checkbox.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/collapsible.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/command.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/context-menu.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/dialog.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/form.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/hover-card.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/input.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/label.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/menubar.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/popover.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/progress.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/radio-group.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/scroll-area.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/select.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/separator.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/sheet.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/skeleton.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/slider.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/switch.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/table.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/tabs.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/textarea.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/toast.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/toaster.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/toggle.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/tooltip.tsx -------------------------------------------------------------------------------- /apps/www/registry/new-york/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/new-york/ui/use-toast.ts -------------------------------------------------------------------------------- /apps/www/registry/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/registry.ts -------------------------------------------------------------------------------- /apps/www/registry/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/schema.ts -------------------------------------------------------------------------------- /apps/www/registry/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/styles.ts -------------------------------------------------------------------------------- /apps/www/registry/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/registry/themes.ts -------------------------------------------------------------------------------- /apps/www/scripts/build-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/scripts/build-registry.ts -------------------------------------------------------------------------------- /apps/www/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/styles/globals.css -------------------------------------------------------------------------------- /apps/www/styles/mdx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/styles/mdx.css -------------------------------------------------------------------------------- /apps/www/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/tailwind.config.cjs -------------------------------------------------------------------------------- /apps/www/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/tsconfig.json -------------------------------------------------------------------------------- /apps/www/tsconfig.scripts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/tsconfig.scripts.json -------------------------------------------------------------------------------- /apps/www/types/nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/types/nav.ts -------------------------------------------------------------------------------- /apps/www/types/unist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/apps/www/types/unist.ts -------------------------------------------------------------------------------- /fix_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/fix_user.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/package.json -------------------------------------------------------------------------------- /packages/cli/.gitignore: -------------------------------------------------------------------------------- 1 | components 2 | dist 3 | .turbo -------------------------------------------------------------------------------- /packages/cli/.prettierignore: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /packages/cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/CHANGELOG.md -------------------------------------------------------------------------------- /packages/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/README.md -------------------------------------------------------------------------------- /packages/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/package.json -------------------------------------------------------------------------------- /packages/cli/src/commands/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/src/commands/add.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/src/commands/diff.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/src/commands/init.ts -------------------------------------------------------------------------------- /packages/cli/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/src/index.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/get-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/src/utils/get-config.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/get-package-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/src/utils/get-package-info.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/get-package-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/src/utils/get-package-manager.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/get-project-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/src/utils/get-project-info.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/handle-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/src/utils/handle-error.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/src/utils/logger.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/registry/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/src/utils/registry/index.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/registry/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/src/utils/registry/schema.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/resolve-import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/src/utils/resolve-import.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/src/utils/templates.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/transformers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/src/utils/transformers/index.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/transformers/transform-css-vars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/src/utils/transformers/transform-css-vars.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/transformers/transform-import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/src/utils/transformers/transform-import.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/transformers/transform-jsx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/src/utils/transformers/transform-jsx.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/transformers/transform-rsc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/src/utils/transformers/transform-rsc.ts -------------------------------------------------------------------------------- /packages/cli/test/commands/init.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/commands/init.test.ts -------------------------------------------------------------------------------- /packages/cli/test/fixtures/colors/neutral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/colors/neutral.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/colors/slate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/colors/slate.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/colors/stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/colors/stone.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/colors/zinc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/colors/zinc.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-full/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/config-full/components.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-full/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/config-full/package.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-full/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/config-full/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-invalid/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/config-invalid/components.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-invalid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/config-invalid/package.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-jsx/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/config-jsx/components.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-jsx/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/config-jsx/jsconfig.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-jsx/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/config-jsx/package.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-none/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/config-none/package.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-partial/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/config-partial/components.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-partial/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/config-partial/package.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-partial/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/config-partial/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/next-src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/next-src/.gitignore -------------------------------------------------------------------------------- /packages/cli/test/fixtures/next-src/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/next-src/next.config.js -------------------------------------------------------------------------------- /packages/cli/test/fixtures/next-src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/next-src/package.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/next-src/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/next-src/src/app/globals.css -------------------------------------------------------------------------------- /packages/cli/test/fixtures/next-src/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/next-src/tailwind.config.js -------------------------------------------------------------------------------- /packages/cli/test/fixtures/next-src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/next-src/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/next/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/next/.gitignore -------------------------------------------------------------------------------- /packages/cli/test/fixtures/next/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/next/app/globals.css -------------------------------------------------------------------------------- /packages/cli/test/fixtures/next/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/next/next.config.js -------------------------------------------------------------------------------- /packages/cli/test/fixtures/next/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/next/package.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/next/pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: "6.0" 2 | -------------------------------------------------------------------------------- /packages/cli/test/fixtures/next/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/next/tailwind.config.js -------------------------------------------------------------------------------- /packages/cli/test/fixtures/next/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/next/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/project-bun/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/project-bun/bun.lockb -------------------------------------------------------------------------------- /packages/cli/test/fixtures/project-bun/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/project-bun/package.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/project-npm/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/project-npm/package-lock.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/project-npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/project-npm/package.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/project-pnpm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/project-pnpm/package.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/project-pnpm/pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '6.0' 2 | -------------------------------------------------------------------------------- /packages/cli/test/fixtures/project-src/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/project-src/components.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/project-src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/project-src/package-lock.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/project-src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/project-src/package.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/project-yarn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/project-yarn/package.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/project-yarn/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/project-yarn/yarn.lock -------------------------------------------------------------------------------- /packages/cli/test/fixtures/project/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/project/components.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/project/package.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/project/pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: "6.0" 2 | -------------------------------------------------------------------------------- /packages/cli/test/fixtures/t3-app/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/t3-app/.eslintrc.cjs -------------------------------------------------------------------------------- /packages/cli/test/fixtures/t3-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/t3-app/.gitignore -------------------------------------------------------------------------------- /packages/cli/test/fixtures/t3-app/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/t3-app/next.config.mjs -------------------------------------------------------------------------------- /packages/cli/test/fixtures/t3-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/t3-app/package.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/t3-app/src/env.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/t3-app/src/env.mjs -------------------------------------------------------------------------------- /packages/cli/test/fixtures/t3-app/src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/t3-app/src/pages/_app.tsx -------------------------------------------------------------------------------- /packages/cli/test/fixtures/t3-app/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/t3-app/src/pages/index.tsx -------------------------------------------------------------------------------- /packages/cli/test/fixtures/t3-app/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/t3-app/src/styles/globals.css -------------------------------------------------------------------------------- /packages/cli/test/fixtures/t3-app/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/t3-app/tailwind.config.ts -------------------------------------------------------------------------------- /packages/cli/test/fixtures/t3-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/t3-app/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/with-base-url/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/with-base-url/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/without-base-url/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/fixtures/without-base-url/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/test/utils/__snapshots__/transform-css-vars.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/utils/__snapshots__/transform-css-vars.test.ts.snap -------------------------------------------------------------------------------- /packages/cli/test/utils/__snapshots__/transform-import.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/utils/__snapshots__/transform-import.test.ts.snap -------------------------------------------------------------------------------- /packages/cli/test/utils/__snapshots__/transform-rsc.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/utils/__snapshots__/transform-rsc.test.ts.snap -------------------------------------------------------------------------------- /packages/cli/test/utils/apply-color-mapping.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/utils/apply-color-mapping.test.ts -------------------------------------------------------------------------------- /packages/cli/test/utils/get-config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/utils/get-config.test.ts -------------------------------------------------------------------------------- /packages/cli/test/utils/get-package-manager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/utils/get-package-manager.test.ts -------------------------------------------------------------------------------- /packages/cli/test/utils/registry.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/utils/registry.test.ts -------------------------------------------------------------------------------- /packages/cli/test/utils/resolve-import.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/utils/resolve-import.test.ts -------------------------------------------------------------------------------- /packages/cli/test/utils/transform-css-vars.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/utils/transform-css-vars.test.ts -------------------------------------------------------------------------------- /packages/cli/test/utils/transform-import.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/utils/transform-import.test.ts -------------------------------------------------------------------------------- /packages/cli/test/utils/transform-rsc.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/test/utils/transform-rsc.test.ts -------------------------------------------------------------------------------- /packages/cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/packages/cli/tsup.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/prettier.config.cjs -------------------------------------------------------------------------------- /scripts/sync-templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/scripts/sync-templates.sh -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /templates/next-template/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/.editorconfig -------------------------------------------------------------------------------- /templates/next-template/.eslintignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | .cache 3 | public 4 | node_modules 5 | *.esm.js 6 | -------------------------------------------------------------------------------- /templates/next-template/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/.eslintrc.json -------------------------------------------------------------------------------- /templates/next-template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/.gitignore -------------------------------------------------------------------------------- /templates/next-template/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/.prettierignore -------------------------------------------------------------------------------- /templates/next-template/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/.vscode/settings.json -------------------------------------------------------------------------------- /templates/next-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/README.md -------------------------------------------------------------------------------- /templates/next-template/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/app/layout.tsx -------------------------------------------------------------------------------- /templates/next-template/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/app/page.tsx -------------------------------------------------------------------------------- /templates/next-template/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/components.json -------------------------------------------------------------------------------- /templates/next-template/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/components/icons.tsx -------------------------------------------------------------------------------- /templates/next-template/components/main-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/components/main-nav.tsx -------------------------------------------------------------------------------- /templates/next-template/components/site-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/components/site-header.tsx -------------------------------------------------------------------------------- /templates/next-template/components/tailwind-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/components/tailwind-indicator.tsx -------------------------------------------------------------------------------- /templates/next-template/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/components/theme-provider.tsx -------------------------------------------------------------------------------- /templates/next-template/components/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/components/theme-toggle.tsx -------------------------------------------------------------------------------- /templates/next-template/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/components/ui/button.tsx -------------------------------------------------------------------------------- /templates/next-template/config/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/config/site.ts -------------------------------------------------------------------------------- /templates/next-template/lib/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/lib/fonts.ts -------------------------------------------------------------------------------- /templates/next-template/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/lib/utils.ts -------------------------------------------------------------------------------- /templates/next-template/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/next-env.d.ts -------------------------------------------------------------------------------- /templates/next-template/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/next.config.mjs -------------------------------------------------------------------------------- /templates/next-template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/package.json -------------------------------------------------------------------------------- /templates/next-template/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/postcss.config.js -------------------------------------------------------------------------------- /templates/next-template/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/prettier.config.js -------------------------------------------------------------------------------- /templates/next-template/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/public/favicon.ico -------------------------------------------------------------------------------- /templates/next-template/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/public/next.svg -------------------------------------------------------------------------------- /templates/next-template/public/thirteen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/public/thirteen.svg -------------------------------------------------------------------------------- /templates/next-template/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/public/vercel.svg -------------------------------------------------------------------------------- /templates/next-template/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/styles/globals.css -------------------------------------------------------------------------------- /templates/next-template/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/tailwind.config.js -------------------------------------------------------------------------------- /templates/next-template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/tsconfig.json -------------------------------------------------------------------------------- /templates/next-template/types/nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/templates/next-template/types/nav.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/turbo.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coincatcher22/ui/HEAD/vitest.config.ts --------------------------------------------------------------------------------