├── .eslintignore ├── .eslintrc.cjs ├── .gitignore ├── .pnpmfile.ts ├── .prettierignore ├── .vscode ├── extensions.json ├── launch.json ├── qwik-city.code-snippets ├── qwik.code-snippets └── settings.json ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── adapters └── vercel-edge │ └── vite.config.ts ├── components.json ├── package.json ├── pnpm-lock.yaml ├── postcss.config.ts ├── prettier.config.ts ├── 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 ├── favicon.svg ├── images │ ├── style-with-theming.jpg │ └── style.jpg ├── manifest.json ├── og.jpg ├── registry │ ├── colors │ │ ├── gray.json │ │ ├── index.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-react.json │ │ │ ├── alert-dialog.json │ │ │ ├── alert.json │ │ │ ├── aspect-ratio.json │ │ │ ├── avatar-vanilla.json │ │ │ ├── avatar.json │ │ │ ├── badge.json │ │ │ ├── button.json │ │ │ ├── calendar-qwikified.json │ │ │ ├── calendar.json │ │ │ ├── card.json │ │ │ ├── checkbox.json │ │ │ ├── collapsible.json │ │ │ ├── command-react.json │ │ │ ├── command.json │ │ │ ├── context-menu-react.json │ │ │ ├── context-menu.json │ │ │ ├── dialog-react.json │ │ │ ├── dialog.json │ │ │ ├── dropdown-menu-react.json │ │ │ ├── dropdown-menu.json │ │ │ ├── form.json │ │ │ ├── hover-card-react.json │ │ │ ├── hover-card.json │ │ │ ├── input.json │ │ │ ├── label.json │ │ │ ├── menubar-react.json │ │ │ ├── menubar.json │ │ │ ├── navigation-menu-react.json │ │ │ ├── navigation-menu.json │ │ │ ├── popover-react.json │ │ │ ├── popover.json │ │ │ ├── progress-qwikified.json │ │ │ ├── progress.json │ │ │ ├── radio-group-vanilla.json │ │ │ ├── radio-group.json │ │ │ ├── scroll-area-qwikified.json │ │ │ ├── scroll-area-vanilla.json │ │ │ ├── scroll-area.json │ │ │ ├── select-vanilla.json │ │ │ ├── select.json │ │ │ ├── separator.json │ │ │ ├── sheet-react.json │ │ │ ├── sheet.json │ │ │ ├── skeleton.json │ │ │ ├── slider-vanilla.json │ │ │ ├── slider.json │ │ │ ├── switch-vanilla.json │ │ │ ├── switch.json │ │ │ ├── table-react.json │ │ │ ├── table.json │ │ │ ├── tabs.json │ │ │ ├── textarea.json │ │ │ ├── toast-react.json │ │ │ ├── toast.json │ │ │ ├── toggle-vanilla.json │ │ │ ├── toggle.json │ │ │ ├── tooltip-react.json │ │ │ └── tooltip.json │ ├── themes.css │ └── themes │ │ ├── gray.json │ │ ├── neutral.json │ │ ├── slate.json │ │ ├── stone.json │ │ └── zinc.json ├── robots.txt ├── schema.json └── site.webmanifest ├── recma-provide-components.ts ├── src ├── __registry__ │ └── index.tsx ├── components │ ├── callout.tsx │ ├── code-block-wrapper.tsx │ ├── component-example.tsx │ ├── component-preview.tsx │ ├── component-source.tsx │ ├── copy-button.tsx │ ├── copy-npm-command-button.tsx │ ├── copy-with-classnames-qwikified.tsx │ ├── default │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── separator.tsx │ │ │ └── textarea.tsx │ ├── docs-sidebar-nav.tsx │ ├── headless │ │ └── aspect-ratio.tsx │ ├── icons.tsx │ ├── main-nav.tsx │ ├── mdx-components │ │ ├── index.css │ │ └── index.tsx │ ├── mobile-nav.tsx │ ├── pager.tsx │ ├── partytown │ │ └── partytown.tsx │ ├── router-head │ │ └── router-head.tsx │ ├── site-footer.tsx │ ├── site-header.tsx │ ├── style-switcher.tsx │ ├── style-wrapper.tsx │ ├── theme-wrapper.tsx │ └── toc.tsx ├── config │ ├── docs.ts │ └── site.ts ├── context │ └── MDXProvider.tsx ├── entry.dev.tsx ├── entry.preview.tsx ├── entry.ssr.tsx ├── entry.vercel-edge.tsx ├── global.css ├── hooks │ ├── use-config.tsx │ ├── use-mounted.tsx │ ├── use-signal-with-storage.tsx │ └── use-store-with-storage.tsx ├── lib │ ├── events.ts │ ├── themes │ │ ├── dark.json │ │ └── light.json │ └── utils.ts ├── mdx.css ├── registry │ ├── colors.ts │ ├── new-york │ │ ├── examples │ │ │ ├── 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 │ │ │ ├── card-demo.tsx │ │ │ ├── card-with-form.tsx │ │ │ ├── cards │ │ │ │ ├── activity-goal │ │ │ │ │ ├── activity-goal-chart.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── calendar.tsx │ │ │ │ ├── chat.tsx │ │ │ │ ├── cookie-settings.tsx │ │ │ │ ├── create-account.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── metric │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── metric-chart.tsx │ │ │ │ ├── payment-method.tsx │ │ │ │ ├── report-issue.tsx │ │ │ │ ├── share.tsx │ │ │ │ └── stats │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── stats-bar-chart.tsx │ │ │ │ │ └── stats-line-chart.tsx │ │ │ ├── checkbox-demo.tsx │ │ │ ├── checkbox-disabled.tsx │ │ │ ├── checkbox-with-text.tsx │ │ │ ├── collapsible-demo.tsx │ │ │ ├── combobox-demo.tsx │ │ │ ├── combobox-dropdown-menu.tsx │ │ │ ├── combobox-popover.tsx │ │ │ ├── command-demo.tsx │ │ │ ├── command-dialog.tsx │ │ │ ├── context-menu-demo.tsx │ │ │ ├── input-demo.tsx │ │ │ ├── input-disabled.tsx │ │ │ ├── input-file.tsx │ │ │ ├── input-with-button.tsx │ │ │ ├── input-with-label.tsx │ │ │ ├── input-with-text.tsx │ │ │ ├── label-demo.tsx │ │ │ ├── progress-demo.tsx │ │ │ ├── radio-group-demo.tsx │ │ │ ├── scroll-area-demo.tsx │ │ │ ├── select-demo.tsx │ │ │ ├── separator-demo.tsx │ │ │ ├── skeleton-demo.tsx │ │ │ ├── slider-demo.tsx │ │ │ ├── switch-demo.tsx │ │ │ ├── tabs-demo.tsx │ │ │ ├── textarea-demo.tsx │ │ │ ├── textarea-disabled.tsx │ │ │ ├── textarea-with-button.tsx │ │ │ ├── textarea-with-label.tsx │ │ │ ├── textarea-with-text.tsx │ │ │ ├── toggle-demo.tsx │ │ │ ├── toggle-disabled.tsx │ │ │ ├── toggle-lg.tsx │ │ │ ├── toggle-outline.tsx │ │ │ ├── toggle-sm.tsx │ │ │ └── toggle-with-text.tsx │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog-react.tsx │ │ │ ├── alert.tsx │ │ │ ├── aspect-ratio.tsx │ │ │ ├── avatar-vanilla.tsx │ │ │ ├── badge.tsx │ │ │ ├── button-react.tsx │ │ │ ├── button.tsx │ │ │ ├── calendar-qwikified.tsx │ │ │ ├── card.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── collapsible-vanilla.tsx │ │ │ ├── combobox-qwikified.tsx │ │ │ ├── command-react.tsx │ │ │ ├── context-menu-react.tsx │ │ │ ├── dialog-react.tsx │ │ │ ├── dropdown-menu-react.tsx │ │ │ ├── hover-card-react.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── menubar-react.tsx │ │ │ ├── navigation-menu-react.tsx │ │ │ ├── popover-react.tsx │ │ │ ├── progress-qwikified.tsx │ │ │ ├── radio-group-vanilla.tsx │ │ │ ├── scroll-area-qwikified.tsx │ │ │ ├── select-vanilla.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet-react.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider-vanilla.tsx │ │ │ ├── switch-vanilla.tsx │ │ │ ├── table-react.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toast-react.tsx │ │ │ ├── toaster-qwikified.tsx │ │ │ ├── toggle-vanilla.tsx │ │ │ ├── tooltip-react.tsx │ │ │ └── use-toast-react.ts │ ├── registry.ts │ ├── schema.ts │ ├── styles.ts │ └── themes.ts ├── root.tsx ├── routes │ ├── docs │ │ ├── about │ │ │ └── index.mdx │ │ ├── changelog │ │ │ └── index.mdx │ │ ├── cli │ │ │ └── index.mdx │ │ ├── components-json │ │ │ └── index.mdx │ │ ├── components │ │ │ ├── accordion │ │ │ │ └── index.mdx │ │ │ ├── alert-dialog │ │ │ │ └── index.mdx │ │ │ ├── alert │ │ │ │ └── index.mdx │ │ │ ├── aspect-ratio │ │ │ │ └── index.mdx │ │ │ ├── avatar │ │ │ │ └── index.mdx │ │ │ ├── badge │ │ │ │ └── index.mdx │ │ │ ├── button │ │ │ │ └── index.mdx │ │ │ ├── calendar │ │ │ │ └── index.mdx │ │ │ ├── card │ │ │ │ └── index.mdx │ │ │ ├── checkbox │ │ │ │ └── index.mdx │ │ │ ├── collapsible │ │ │ │ └── index.mdx │ │ │ ├── combobox │ │ │ │ └── index.mdx │ │ │ ├── command │ │ │ │ └── index.mdx │ │ │ ├── context-menu │ │ │ │ └── index.mdx │ │ │ ├── data-table │ │ │ │ └── index.mdx │ │ │ ├── date-picker │ │ │ │ └── index.mdx │ │ │ ├── dialog │ │ │ │ └── index.mdx │ │ │ ├── dropdown-menu │ │ │ │ └── index.mdx │ │ │ ├── form │ │ │ │ └── index.mdx │ │ │ ├── hover-card │ │ │ │ └── index.mdx │ │ │ ├── input │ │ │ │ └── index.mdx │ │ │ ├── label │ │ │ │ └── index.mdx │ │ │ ├── menubar │ │ │ │ └── index.mdx │ │ │ ├── navigation-menu │ │ │ │ └── index.mdx │ │ │ ├── popover │ │ │ │ └── index.mdx │ │ │ ├── progress │ │ │ │ └── index.mdx │ │ │ ├── radio-group │ │ │ │ └── index.mdx │ │ │ ├── scroll-area │ │ │ │ └── index.mdx │ │ │ ├── select │ │ │ │ └── index.mdx │ │ │ ├── separator │ │ │ │ └── index.mdx │ │ │ ├── sheet │ │ │ │ └── index.mdx │ │ │ ├── skeleton │ │ │ │ └── index.mdx │ │ │ ├── slider │ │ │ │ └── index.mdx │ │ │ ├── switch │ │ │ │ └── index.mdx │ │ │ ├── table │ │ │ │ └── index.mdx │ │ │ ├── tabs │ │ │ │ └── index.mdx │ │ │ ├── textarea │ │ │ │ └── index.mdx │ │ │ ├── toast │ │ │ │ └── index.mdx │ │ │ ├── toggle │ │ │ │ └── index.mdx │ │ │ ├── tooltip │ │ │ │ └── index.mdx │ │ │ └── typography │ │ │ │ └── index.mdx │ │ ├── dark-mode │ │ │ ├── astro │ │ │ │ └── index.mdx │ │ │ ├── index.mdx │ │ │ └── qwik │ │ │ │ └── index.mdx │ │ ├── figma │ │ │ └── index.mdx │ │ ├── index.mdx │ │ ├── installation │ │ │ ├── astro │ │ │ │ └── index.mdx │ │ │ ├── index.mdx │ │ │ ├── manual │ │ │ │ └── index.mdx │ │ │ └── qwik │ │ │ │ └── index.mdx │ │ ├── layout.tsx │ │ ├── menu.md │ │ └── theming │ │ │ └── index.mdx │ ├── index.tsx │ ├── layout.tsx │ ├── menu.md │ └── service-worker.ts ├── scripts │ └── build-registry.ts └── types │ ├── nav.ts │ └── unist.ts ├── tailwind.config.ts ├── tsconfig.json ├── vercel.json └── vite.config.ts /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/.gitignore -------------------------------------------------------------------------------- /.pnpmfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/.pnpmfile.ts -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/qwik-city.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/.vscode/qwik-city.code-snippets -------------------------------------------------------------------------------- /.vscode/qwik.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/.vscode/qwik.code-snippets -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/README.md -------------------------------------------------------------------------------- /adapters/vercel-edge/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/adapters/vercel-edge/vite.config.ts -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/components.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/postcss.config.ts -------------------------------------------------------------------------------- /prettier.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/prettier.config.ts -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/avatars/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/avatars/01.png -------------------------------------------------------------------------------- /public/avatars/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/avatars/02.png -------------------------------------------------------------------------------- /public/avatars/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/avatars/03.png -------------------------------------------------------------------------------- /public/avatars/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/avatars/04.png -------------------------------------------------------------------------------- /public/avatars/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/avatars/05.png -------------------------------------------------------------------------------- /public/examples/authentication-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/examples/authentication-dark.png -------------------------------------------------------------------------------- /public/examples/authentication-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/examples/authentication-light.png -------------------------------------------------------------------------------- /public/examples/cards-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/examples/cards-dark.png -------------------------------------------------------------------------------- /public/examples/cards-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/examples/cards-light.png -------------------------------------------------------------------------------- /public/examples/dashboard-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/examples/dashboard-dark.png -------------------------------------------------------------------------------- /public/examples/dashboard-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/examples/dashboard-light.png -------------------------------------------------------------------------------- /public/examples/forms-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/examples/forms-dark.png -------------------------------------------------------------------------------- /public/examples/forms-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/examples/forms-light.png -------------------------------------------------------------------------------- /public/examples/music-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/examples/music-dark.png -------------------------------------------------------------------------------- /public/examples/music-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/examples/music-light.png -------------------------------------------------------------------------------- /public/examples/playground-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/examples/playground-dark.png -------------------------------------------------------------------------------- /public/examples/playground-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/examples/playground-light.png -------------------------------------------------------------------------------- /public/examples/tasks-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/examples/tasks-dark.png -------------------------------------------------------------------------------- /public/examples/tasks-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/examples/tasks-light.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/images/style-with-theming.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/images/style-with-theming.jpg -------------------------------------------------------------------------------- /public/images/style.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/images/style.jpg -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/og.jpg -------------------------------------------------------------------------------- /public/registry/colors/gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/colors/gray.json -------------------------------------------------------------------------------- /public/registry/colors/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/colors/index.json -------------------------------------------------------------------------------- /public/registry/colors/neutral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/colors/neutral.json -------------------------------------------------------------------------------- /public/registry/colors/slate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/colors/slate.json -------------------------------------------------------------------------------- /public/registry/colors/stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/colors/stone.json -------------------------------------------------------------------------------- /public/registry/colors/zinc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/colors/zinc.json -------------------------------------------------------------------------------- /public/registry/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/index.json -------------------------------------------------------------------------------- /public/registry/styles/default/accordion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/accordion.json -------------------------------------------------------------------------------- /public/registry/styles/default/alert-dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/alert-dialog.json -------------------------------------------------------------------------------- /public/registry/styles/default/alert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/alert.json -------------------------------------------------------------------------------- /public/registry/styles/default/aspect-ratio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/aspect-ratio.json -------------------------------------------------------------------------------- /public/registry/styles/default/avatar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/avatar.json -------------------------------------------------------------------------------- /public/registry/styles/default/badge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/badge.json -------------------------------------------------------------------------------- /public/registry/styles/default/button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/button.json -------------------------------------------------------------------------------- /public/registry/styles/default/calendar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/calendar.json -------------------------------------------------------------------------------- /public/registry/styles/default/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/card.json -------------------------------------------------------------------------------- /public/registry/styles/default/checkbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/checkbox.json -------------------------------------------------------------------------------- /public/registry/styles/default/collapsible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/collapsible.json -------------------------------------------------------------------------------- /public/registry/styles/default/command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/command.json -------------------------------------------------------------------------------- /public/registry/styles/default/context-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/context-menu.json -------------------------------------------------------------------------------- /public/registry/styles/default/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/dialog.json -------------------------------------------------------------------------------- /public/registry/styles/default/dropdown-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/dropdown-menu.json -------------------------------------------------------------------------------- /public/registry/styles/default/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/form.json -------------------------------------------------------------------------------- /public/registry/styles/default/hover-card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/hover-card.json -------------------------------------------------------------------------------- /public/registry/styles/default/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/input.json -------------------------------------------------------------------------------- /public/registry/styles/default/label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/label.json -------------------------------------------------------------------------------- /public/registry/styles/default/menubar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/menubar.json -------------------------------------------------------------------------------- /public/registry/styles/default/navigation-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/navigation-menu.json -------------------------------------------------------------------------------- /public/registry/styles/default/popover.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/popover.json -------------------------------------------------------------------------------- /public/registry/styles/default/progress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/progress.json -------------------------------------------------------------------------------- /public/registry/styles/default/radio-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/radio-group.json -------------------------------------------------------------------------------- /public/registry/styles/default/scroll-area.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/scroll-area.json -------------------------------------------------------------------------------- /public/registry/styles/default/select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/select.json -------------------------------------------------------------------------------- /public/registry/styles/default/separator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/separator.json -------------------------------------------------------------------------------- /public/registry/styles/default/sheet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/sheet.json -------------------------------------------------------------------------------- /public/registry/styles/default/skeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/skeleton.json -------------------------------------------------------------------------------- /public/registry/styles/default/slider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/slider.json -------------------------------------------------------------------------------- /public/registry/styles/default/switch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/switch.json -------------------------------------------------------------------------------- /public/registry/styles/default/table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/table.json -------------------------------------------------------------------------------- /public/registry/styles/default/tabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/tabs.json -------------------------------------------------------------------------------- /public/registry/styles/default/textarea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/textarea.json -------------------------------------------------------------------------------- /public/registry/styles/default/toast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/toast.json -------------------------------------------------------------------------------- /public/registry/styles/default/toggle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/toggle.json -------------------------------------------------------------------------------- /public/registry/styles/default/tooltip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/default/tooltip.json -------------------------------------------------------------------------------- /public/registry/styles/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/index.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/accordion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/accordion.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/alert-dialog-react.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/alert-dialog-react.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/alert-dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/alert-dialog.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/alert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/alert.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/aspect-ratio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/aspect-ratio.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/avatar-vanilla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/avatar-vanilla.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/avatar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/avatar.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/badge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/badge.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/button.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/calendar-qwikified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/calendar-qwikified.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/calendar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/calendar.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/card.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/checkbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/checkbox.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/collapsible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/collapsible.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/command-react.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/command-react.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/command.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/context-menu-react.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/context-menu-react.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/context-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/context-menu.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/dialog-react.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/dialog-react.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/dialog.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/dropdown-menu-react.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/dropdown-menu-react.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/dropdown-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/dropdown-menu.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/form.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/hover-card-react.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/hover-card-react.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/hover-card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/hover-card.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/input.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/label.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/menubar-react.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/menubar-react.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/menubar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/menubar.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/navigation-menu-react.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/navigation-menu-react.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/navigation-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/navigation-menu.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/popover-react.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/popover-react.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/popover.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/popover.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/progress-qwikified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/progress-qwikified.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/progress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/progress.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/radio-group-vanilla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/radio-group-vanilla.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/radio-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/radio-group.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/scroll-area-qwikified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/scroll-area-qwikified.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/scroll-area-vanilla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/scroll-area-vanilla.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/scroll-area.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/scroll-area.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/select-vanilla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/select-vanilla.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/select.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/separator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/separator.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/sheet-react.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/sheet-react.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/sheet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/sheet.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/skeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/skeleton.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/slider-vanilla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/slider-vanilla.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/slider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/slider.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/switch-vanilla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/switch-vanilla.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/switch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/switch.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/table-react.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/table-react.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/table.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/tabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/tabs.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/textarea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/textarea.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/toast-react.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/toast-react.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/toast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/toast.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/toggle-vanilla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/toggle-vanilla.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/toggle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/toggle.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/tooltip-react.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/tooltip-react.json -------------------------------------------------------------------------------- /public/registry/styles/new-york/tooltip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/styles/new-york/tooltip.json -------------------------------------------------------------------------------- /public/registry/themes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/themes.css -------------------------------------------------------------------------------- /public/registry/themes/gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/themes/gray.json -------------------------------------------------------------------------------- /public/registry/themes/neutral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/themes/neutral.json -------------------------------------------------------------------------------- /public/registry/themes/slate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/themes/slate.json -------------------------------------------------------------------------------- /public/registry/themes/stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/themes/stone.json -------------------------------------------------------------------------------- /public/registry/themes/zinc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/registry/themes/zinc.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/schema.json -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /recma-provide-components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/recma-provide-components.ts -------------------------------------------------------------------------------- /src/__registry__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/__registry__/index.tsx -------------------------------------------------------------------------------- /src/components/callout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/callout.tsx -------------------------------------------------------------------------------- /src/components/code-block-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/code-block-wrapper.tsx -------------------------------------------------------------------------------- /src/components/component-example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/component-example.tsx -------------------------------------------------------------------------------- /src/components/component-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/component-preview.tsx -------------------------------------------------------------------------------- /src/components/component-source.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/component-source.tsx -------------------------------------------------------------------------------- /src/components/copy-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/copy-button.tsx -------------------------------------------------------------------------------- /src/components/copy-npm-command-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/copy-npm-command-button.tsx -------------------------------------------------------------------------------- /src/components/copy-with-classnames-qwikified.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/copy-with-classnames-qwikified.tsx -------------------------------------------------------------------------------- /src/components/default/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/default/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/default/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/default/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/default/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/default/ui/button.tsx -------------------------------------------------------------------------------- /src/components/default/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/default/ui/card.tsx -------------------------------------------------------------------------------- /src/components/default/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/default/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/default/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/default/ui/input.tsx -------------------------------------------------------------------------------- /src/components/default/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/default/ui/label.tsx -------------------------------------------------------------------------------- /src/components/default/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/default/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/default/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/default/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/docs-sidebar-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/docs-sidebar-nav.tsx -------------------------------------------------------------------------------- /src/components/headless/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/headless/aspect-ratio.tsx -------------------------------------------------------------------------------- /src/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/icons.tsx -------------------------------------------------------------------------------- /src/components/main-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/main-nav.tsx -------------------------------------------------------------------------------- /src/components/mdx-components/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/mdx-components/index.css -------------------------------------------------------------------------------- /src/components/mdx-components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/mdx-components/index.tsx -------------------------------------------------------------------------------- /src/components/mobile-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/mobile-nav.tsx -------------------------------------------------------------------------------- /src/components/pager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/pager.tsx -------------------------------------------------------------------------------- /src/components/partytown/partytown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/partytown/partytown.tsx -------------------------------------------------------------------------------- /src/components/router-head/router-head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/router-head/router-head.tsx -------------------------------------------------------------------------------- /src/components/site-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/site-footer.tsx -------------------------------------------------------------------------------- /src/components/site-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/site-header.tsx -------------------------------------------------------------------------------- /src/components/style-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/style-switcher.tsx -------------------------------------------------------------------------------- /src/components/style-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/style-wrapper.tsx -------------------------------------------------------------------------------- /src/components/theme-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/theme-wrapper.tsx -------------------------------------------------------------------------------- /src/components/toc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/components/toc.tsx -------------------------------------------------------------------------------- /src/config/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/config/docs.ts -------------------------------------------------------------------------------- /src/config/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/config/site.ts -------------------------------------------------------------------------------- /src/context/MDXProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/context/MDXProvider.tsx -------------------------------------------------------------------------------- /src/entry.dev.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/entry.dev.tsx -------------------------------------------------------------------------------- /src/entry.preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/entry.preview.tsx -------------------------------------------------------------------------------- /src/entry.ssr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/entry.ssr.tsx -------------------------------------------------------------------------------- /src/entry.vercel-edge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/entry.vercel-edge.tsx -------------------------------------------------------------------------------- /src/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/global.css -------------------------------------------------------------------------------- /src/hooks/use-config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/hooks/use-config.tsx -------------------------------------------------------------------------------- /src/hooks/use-mounted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/hooks/use-mounted.tsx -------------------------------------------------------------------------------- /src/hooks/use-signal-with-storage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/hooks/use-signal-with-storage.tsx -------------------------------------------------------------------------------- /src/hooks/use-store-with-storage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/hooks/use-store-with-storage.tsx -------------------------------------------------------------------------------- /src/lib/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/lib/events.ts -------------------------------------------------------------------------------- /src/lib/themes/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/lib/themes/dark.json -------------------------------------------------------------------------------- /src/lib/themes/light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/lib/themes/light.json -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/mdx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/mdx.css -------------------------------------------------------------------------------- /src/registry/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/colors.ts -------------------------------------------------------------------------------- /src/registry/new-york/examples/accordion-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/accordion-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/alert-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/alert-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/alert-destructive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/alert-destructive.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/alert-dialog-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/alert-dialog-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/aspect-ratio-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/aspect-ratio-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/avatar-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/avatar-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/badge-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/badge-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/badge-destructive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/badge-destructive.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/badge-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/badge-outline.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/badge-secondary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/badge-secondary.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/button-as-child.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/button-as-child.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/button-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/button-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/button-destructive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/button-destructive.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/button-ghost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/button-ghost.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/button-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/button-icon.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/button-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/button-link.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/button-loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/button-loading.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/button-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/button-outline.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/button-secondary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/button-secondary.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/button-with-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/button-with-icon.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/calendar-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/calendar-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/card-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/card-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/card-with-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/card-with-form.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/cards/activity-goal/activity-goal-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/cards/activity-goal/activity-goal-chart.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/cards/activity-goal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/cards/activity-goal/index.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/cards/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/cards/calendar.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/cards/chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/cards/chat.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/cards/cookie-settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/cards/cookie-settings.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/cards/create-account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/cards/create-account.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/cards/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/cards/index.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/cards/metric/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/cards/metric/index.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/cards/metric/metric-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/cards/metric/metric-chart.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/cards/payment-method.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/cards/payment-method.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/cards/report-issue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/cards/report-issue.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/cards/share.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/cards/share.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/cards/stats/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/cards/stats/index.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/cards/stats/stats-bar-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/cards/stats/stats-bar-chart.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/cards/stats/stats-line-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/cards/stats/stats-line-chart.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/checkbox-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/checkbox-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/checkbox-disabled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/checkbox-disabled.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/checkbox-with-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/checkbox-with-text.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/collapsible-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/collapsible-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/combobox-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/combobox-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/combobox-dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/combobox-dropdown-menu.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/combobox-popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/combobox-popover.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/command-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/command-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/command-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/command-dialog.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/context-menu-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/context-menu-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/input-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/input-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/input-disabled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/input-disabled.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/input-file.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/input-file.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/input-with-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/input-with-button.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/input-with-label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/input-with-label.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/input-with-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/input-with-text.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/label-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/label-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/progress-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/progress-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/radio-group-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/radio-group-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/scroll-area-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/scroll-area-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/select-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/select-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/separator-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/separator-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/skeleton-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/skeleton-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/slider-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/slider-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/switch-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/switch-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/tabs-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/tabs-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/textarea-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/textarea-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/textarea-disabled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/textarea-disabled.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/textarea-with-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/textarea-with-button.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/textarea-with-label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/textarea-with-label.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/textarea-with-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/textarea-with-text.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/toggle-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/toggle-demo.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/toggle-disabled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/toggle-disabled.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/toggle-lg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/toggle-lg.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/toggle-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/toggle-outline.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/toggle-sm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/toggle-sm.tsx -------------------------------------------------------------------------------- /src/registry/new-york/examples/toggle-with-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/examples/toggle-with-text.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/accordion.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/alert-dialog-react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/alert-dialog-react.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/alert.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/avatar-vanilla.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/avatar-vanilla.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/badge.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/button-react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/button-react.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/button.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/calendar-qwikified.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/calendar-qwikified.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/card.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/collapsible-vanilla.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/collapsible-vanilla.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/combobox-qwikified.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/combobox-qwikified.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/command-react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/command-react.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/context-menu-react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/context-menu-react.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/dialog-react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/dialog-react.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/dropdown-menu-react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/dropdown-menu-react.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/hover-card-react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/hover-card-react.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/input.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/label.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/menubar-react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/menubar-react.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/navigation-menu-react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/navigation-menu-react.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/popover-react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/popover-react.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/progress-qwikified.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/progress-qwikified.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/radio-group-vanilla.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/radio-group-vanilla.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/scroll-area-qwikified.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/scroll-area-qwikified.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/select-vanilla.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/select-vanilla.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/separator.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/sheet-react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/sheet-react.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/slider-vanilla.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/slider-vanilla.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/switch-vanilla.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/switch-vanilla.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/table-react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/table-react.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/tabs.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/textarea.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/toast-react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/toast-react.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/toaster-qwikified.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/toaster-qwikified.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/toggle-vanilla.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/toggle-vanilla.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/tooltip-react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/tooltip-react.tsx -------------------------------------------------------------------------------- /src/registry/new-york/ui/use-toast-react.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/new-york/ui/use-toast-react.ts -------------------------------------------------------------------------------- /src/registry/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/registry.ts -------------------------------------------------------------------------------- /src/registry/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/schema.ts -------------------------------------------------------------------------------- /src/registry/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/styles.ts -------------------------------------------------------------------------------- /src/registry/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/registry/themes.ts -------------------------------------------------------------------------------- /src/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/root.tsx -------------------------------------------------------------------------------- /src/routes/docs/about/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/about/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/changelog/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/changelog/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/cli/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/cli/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components-json/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components-json/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/accordion/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/accordion/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/alert-dialog/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/alert-dialog/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/alert/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/alert/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/aspect-ratio/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/aspect-ratio/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/avatar/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/avatar/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/badge/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/badge/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/button/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/button/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/calendar/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/calendar/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/card/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/card/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/checkbox/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/checkbox/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/collapsible/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/collapsible/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/combobox/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/combobox/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/command/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/command/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/context-menu/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/context-menu/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/data-table/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/data-table/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/date-picker/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/date-picker/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/dialog/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/dialog/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/dropdown-menu/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/dropdown-menu/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/form/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/form/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/hover-card/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/hover-card/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/input/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/input/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/label/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/label/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/menubar/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/menubar/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/navigation-menu/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/navigation-menu/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/popover/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/popover/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/progress/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/progress/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/radio-group/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/radio-group/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/scroll-area/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/scroll-area/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/select/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/select/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/separator/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/separator/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/sheet/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/sheet/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/skeleton/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/skeleton/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/slider/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/slider/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/switch/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/switch/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/table/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/table/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/tabs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/tabs/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/textarea/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/textarea/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/toast/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/toast/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/toggle/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/toggle/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/tooltip/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/tooltip/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/components/typography/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/components/typography/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/dark-mode/astro/index.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/routes/docs/dark-mode/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/dark-mode/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/dark-mode/qwik/index.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/routes/docs/figma/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/figma/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/installation/astro/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/installation/astro/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/installation/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/installation/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/installation/manual/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/installation/manual/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/installation/qwik/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/installation/qwik/index.mdx -------------------------------------------------------------------------------- /src/routes/docs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/layout.tsx -------------------------------------------------------------------------------- /src/routes/docs/menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/menu.md -------------------------------------------------------------------------------- /src/routes/docs/theming/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/docs/theming/index.mdx -------------------------------------------------------------------------------- /src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/index.tsx -------------------------------------------------------------------------------- /src/routes/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/layout.tsx -------------------------------------------------------------------------------- /src/routes/menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/menu.md -------------------------------------------------------------------------------- /src/routes/service-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/routes/service-worker.ts -------------------------------------------------------------------------------- /src/scripts/build-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/scripts/build-registry.ts -------------------------------------------------------------------------------- /src/types/nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/types/nav.ts -------------------------------------------------------------------------------- /src/types/unist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/src/types/unist.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/vercel.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-ploration-of-mars/qwikcn/HEAD/vite.config.ts --------------------------------------------------------------------------------