├── .changeset ├── README.md └── config.json ├── .github ├── ISSUE_TEMPLATE │ ├── 1-documentation_change.yml │ ├── 2-feature_request.yml │ ├── 3-bug_report.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md └── reproduire │ └── needs-reproduction.md ├── .gitignore ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── eslint.config.js ├── package.json ├── packages └── cli │ ├── .gitignore │ ├── .prettierignore │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── package.json │ ├── src │ ├── commands │ │ ├── add.ts │ │ ├── index.ts │ │ ├── init.ts │ │ └── update.ts │ ├── index.ts │ └── utils │ │ ├── auto-detect.ts │ │ ├── errors.ts │ │ ├── get-config.ts │ │ ├── get-env-proxy.ts │ │ ├── get-package-info.ts │ │ ├── prompt-helpers.ts │ │ ├── prompts.ts │ │ ├── registry │ │ ├── index.ts │ │ └── schema.ts │ │ ├── resolve-imports.ts │ │ ├── sveltekit.ts │ │ ├── templates.ts │ │ └── transformers.ts │ ├── test │ ├── commands │ │ └── init.spec.ts │ ├── fixtures │ │ ├── colors │ │ │ ├── neutral.json │ │ │ ├── slate.json │ │ │ ├── stone.json │ │ │ └── zinc.json │ │ ├── config-full │ │ │ ├── .svelte-kit │ │ │ │ └── tsconfig.json │ │ │ ├── components.json │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ ├── config-invalid │ │ │ ├── .svelte-kit │ │ │ │ └── tsconfig.json │ │ │ ├── components.json │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ ├── config-jsconfig │ │ │ ├── components.json │ │ │ ├── jsconfig.json │ │ │ └── package.json │ │ ├── config-none │ │ │ ├── .svelte-kit │ │ │ │ └── tsconfig.json │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ ├── config-partial │ │ │ ├── .svelte-kit │ │ │ │ └── tsconfig.json │ │ │ ├── components.json │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ ├── config-vite │ │ │ ├── components.json │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ ├── project-bun │ │ │ ├── bun.lockb │ │ │ └── package.json │ │ ├── project-npm │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── project-pnpm │ │ │ ├── package.json │ │ │ └── pnpm-lock.yaml │ │ └── project-yarn │ │ │ ├── package.json │ │ │ └── yarn.lock │ └── utils │ │ └── get-config.spec.ts │ ├── tsconfig.json │ └── tsup.config.ts ├── playgrounds ├── playground-js │ ├── .gitignore │ ├── .npmrc │ ├── .prettierignore │ ├── .prettierrc │ ├── CHANGELOG.md │ ├── README.md │ ├── jsconfig.json │ ├── package.json │ ├── postcss.config.cjs │ ├── reset.js │ ├── src │ │ ├── app.html │ │ ├── app.pcss │ │ ├── lib │ │ │ └── index.js │ │ └── routes │ │ │ ├── +layout.svelte │ │ │ └── +page.svelte │ ├── static │ │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.cjs │ └── vite.config.js └── playground-ts │ ├── .gitignore │ ├── .npmrc │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── package.json │ ├── postcss.config.cjs │ ├── reset.js │ ├── src │ ├── app.d.ts │ ├── app.html │ ├── app.pcss │ ├── index.test.ts │ ├── lib │ │ └── index.ts │ └── routes │ │ ├── +layout.svelte │ │ └── +page.svelte │ ├── static │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.cjs │ ├── tsconfig.json │ └── vite.config.ts ├── pnpm-lock.yaml ├── pnpm-workspace.yaml └── sites └── docs ├── .env.example ├── .gitignore ├── .prettierignore ├── CHANGELOG.md ├── README.md ├── mdsx.config.js ├── other ├── code-block-prettier.js └── themes │ ├── dark.json │ └── light.json ├── package.json ├── playwright.config.ts ├── postcss.config.cjs ├── scripts ├── build-registry.ts ├── registry.ts ├── templates.ts ├── tmp.ts ├── transform-chunks.ts ├── transformers.ts └── tsconfig.json ├── src ├── __registry__ │ ├── blocks.js │ ├── chunks │ │ ├── default │ │ │ ├── dashboard-01-chunk-0.svelte │ │ │ ├── dashboard-01-chunk-1.svelte │ │ │ ├── dashboard-01-chunk-2.svelte │ │ │ ├── dashboard-01-chunk-3.svelte │ │ │ ├── dashboard-01-chunk-4.svelte │ │ │ ├── dashboard-01-chunk-5.svelte │ │ │ ├── dashboard-02-chunk-0.svelte │ │ │ ├── dashboard-02-chunk-1.svelte │ │ │ ├── dashboard-03-chunk-0.svelte │ │ │ ├── dashboard-03-chunk-1.svelte │ │ │ ├── dashboard-04-chunk-0.svelte │ │ │ ├── dashboard-04-chunk-1.svelte │ │ │ ├── dashboard-04-chunk-2.svelte │ │ │ ├── dashboard-05-chunk-0.svelte │ │ │ ├── dashboard-05-chunk-1.svelte │ │ │ ├── dashboard-05-chunk-2.svelte │ │ │ ├── dashboard-05-chunk-3.svelte │ │ │ ├── dashboard-05-chunk-4.svelte │ │ │ ├── dashboard-06-chunk-0.svelte │ │ │ ├── dashboard-07-chunk-0.svelte │ │ │ ├── dashboard-07-chunk-1.svelte │ │ │ ├── dashboard-07-chunk-2.svelte │ │ │ ├── dashboard-07-chunk-3.svelte │ │ │ ├── dashboard-07-chunk-4.svelte │ │ │ └── dashboard-07-chunk-5.svelte │ │ └── new-york │ │ │ ├── dashboard-01-chunk-0.svelte │ │ │ ├── dashboard-01-chunk-1.svelte │ │ │ ├── dashboard-01-chunk-2.svelte │ │ │ ├── dashboard-01-chunk-3.svelte │ │ │ ├── dashboard-01-chunk-4.svelte │ │ │ ├── dashboard-01-chunk-5.svelte │ │ │ ├── dashboard-02-chunk-0.svelte │ │ │ ├── dashboard-02-chunk-1.svelte │ │ │ ├── dashboard-03-chunk-0.svelte │ │ │ ├── dashboard-03-chunk-1.svelte │ │ │ ├── dashboard-04-chunk-0.svelte │ │ │ ├── dashboard-04-chunk-1.svelte │ │ │ ├── dashboard-04-chunk-2.svelte │ │ │ ├── dashboard-05-chunk-0.svelte │ │ │ ├── dashboard-05-chunk-1.svelte │ │ │ ├── dashboard-05-chunk-2.svelte │ │ │ ├── dashboard-05-chunk-3.svelte │ │ │ ├── dashboard-05-chunk-4.svelte │ │ │ ├── dashboard-06-chunk-0.svelte │ │ │ ├── dashboard-06-chunk-1.svelte │ │ │ ├── dashboard-07-chunk-0.svelte │ │ │ ├── dashboard-07-chunk-1.svelte │ │ │ ├── dashboard-07-chunk-2.svelte │ │ │ ├── dashboard-07-chunk-3.svelte │ │ │ ├── dashboard-07-chunk-4.svelte │ │ │ └── dashboard-07-chunk-5.svelte │ └── index.js ├── app.d.ts ├── app.html ├── content │ ├── about.md │ ├── changelog.md │ ├── cli.md │ ├── components-json.md │ ├── components │ │ ├── accordion.md │ │ ├── alert-dialog.md │ │ ├── alert.md │ │ ├── aspect-ratio.md │ │ ├── avatar.md │ │ ├── badge.md │ │ ├── breadcrumb.md │ │ ├── button.md │ │ ├── calendar.md │ │ ├── card.md │ │ ├── carousel.md │ │ ├── checkbox.md │ │ ├── collapsible.md │ │ ├── combobox.md │ │ ├── command.md │ │ ├── context-menu.md │ │ ├── data-table.md │ │ ├── date-picker.md │ │ ├── dialog.md │ │ ├── drawer.md │ │ ├── dropdown-menu.md │ │ ├── form.md │ │ ├── hover-card.md │ │ ├── input.md │ │ ├── label.md │ │ ├── menubar.md │ │ ├── pagination.md │ │ ├── popover.md │ │ ├── progress.md │ │ ├── radio-group.md │ │ ├── range-calendar.md │ │ ├── resizable.md │ │ ├── scroll-area.md │ │ ├── select.md │ │ ├── separator.md │ │ ├── sheet.md │ │ ├── skeleton.md │ │ ├── slider.md │ │ ├── sonner.md │ │ ├── switch.md │ │ ├── table.md │ │ ├── tabs.md │ │ ├── textarea.md │ │ ├── toggle-group.md │ │ ├── toggle.md │ │ └── tooltip.md │ ├── dark-mode │ │ ├── astro.md │ │ ├── index.md │ │ └── svelte.md │ ├── figma.md │ ├── index.md │ ├── installation │ │ ├── astro.md │ │ ├── index.md │ │ ├── manual.md │ │ ├── sveltekit.md │ │ └── vite.md │ ├── theming.md │ └── typography.md ├── index.test.ts ├── lib │ ├── blocks.ts │ ├── components │ │ ├── colors │ │ │ ├── color-card.svelte │ │ │ └── color-data.ts │ │ └── docs │ │ │ ├── announcement.svelte │ │ │ ├── block-chunk.svelte │ │ │ ├── block-copy-code-button.svelte │ │ │ ├── block-preview.svelte │ │ │ ├── block-toolbar.svelte │ │ │ ├── block-wrapper.svelte │ │ │ ├── callout.svelte │ │ │ ├── carbon.svelte │ │ │ ├── charts │ │ │ ├── activity.svelte │ │ │ ├── bar.svelte │ │ │ ├── helpers.ts │ │ │ ├── index.ts │ │ │ ├── metric.svelte │ │ │ ├── revenue.svelte │ │ │ └── subscription.svelte │ │ │ ├── code-block-wrapper.svelte │ │ │ ├── command-menu.svelte │ │ │ ├── component-example.svelte │ │ │ ├── component-preview-manual.svelte │ │ │ ├── component-preview.svelte │ │ │ ├── component-source.svelte │ │ │ ├── copy-button.svelte │ │ │ ├── dashboard │ │ │ ├── dashboard-page.svelte │ │ │ ├── index.ts │ │ │ ├── main-nav.svelte │ │ │ ├── overview.svelte │ │ │ ├── recent-sales.svelte │ │ │ ├── search.svelte │ │ │ ├── team-switcher.svelte │ │ │ └── user-nav.svelte │ │ │ ├── docs-pager.svelte │ │ │ ├── examples-nav │ │ │ ├── example-code-link.svelte │ │ │ ├── examples-nav.svelte │ │ │ └── index.ts │ │ │ ├── forms │ │ │ ├── form-preview.svelte │ │ │ └── index.ts │ │ │ ├── hex-to-channels.svelte │ │ │ ├── icons │ │ │ ├── apple.svelte │ │ │ ├── aria.svelte │ │ │ ├── github.svelte │ │ │ ├── google.svelte │ │ │ ├── hamburger.svelte │ │ │ ├── index.ts │ │ │ ├── logo.svelte │ │ │ ├── npm.svelte │ │ │ ├── paypal.svelte │ │ │ ├── pnpm.svelte │ │ │ ├── radix-svelte.svelte │ │ │ ├── radix.svelte │ │ │ ├── svelte-logo.svelte │ │ │ ├── tailwind.svelte │ │ │ ├── twitter.svelte │ │ │ └── yarn.svelte │ │ │ ├── index.ts │ │ │ ├── linked-card.svelte │ │ │ ├── manual-install.svelte │ │ │ ├── markdown │ │ │ ├── a.svelte │ │ │ ├── blockquote.svelte │ │ │ ├── blueprint.svelte │ │ │ ├── h1.svelte │ │ │ ├── h2.svelte │ │ │ ├── h3.svelte │ │ │ ├── h4.svelte │ │ │ ├── h5.svelte │ │ │ ├── h6.svelte │ │ │ ├── hr.svelte │ │ │ ├── img.svelte │ │ │ ├── index.ts │ │ │ ├── li.svelte │ │ │ ├── ol.svelte │ │ │ ├── p.svelte │ │ │ ├── pre.svelte │ │ │ ├── table.svelte │ │ │ ├── td.svelte │ │ │ ├── th.svelte │ │ │ ├── tr.svelte │ │ │ └── ul.svelte │ │ │ ├── metadata.svelte │ │ │ ├── mode-toggle.svelte │ │ │ ├── nav │ │ │ ├── docs-sidebar-nav-items.svelte │ │ │ ├── docs-sidebar-nav.svelte │ │ │ ├── index.ts │ │ │ ├── main-nav.svelte │ │ │ ├── mobile-link.svelte │ │ │ └── mobile-nav.svelte │ │ │ ├── page-header │ │ │ ├── index.ts │ │ │ ├── page-header-actions.svelte │ │ │ ├── page-header-description.svelte │ │ │ ├── page-header-heading.svelte │ │ │ └── page-header.svelte │ │ │ ├── pm-add-comp.svelte │ │ │ ├── pm-block.svelte │ │ │ ├── pm-create.svelte │ │ │ ├── pm-execute.svelte │ │ │ ├── pm-install.svelte │ │ │ ├── site-footer.svelte │ │ │ ├── site-header.svelte │ │ │ ├── step.svelte │ │ │ ├── steps.svelte │ │ │ ├── style-switcher.svelte │ │ │ ├── style-wrapper.svelte │ │ │ ├── svelte-5-banner.svelte │ │ │ ├── table-of-contents.svelte │ │ │ ├── tailwind-indicator.svelte │ │ │ ├── theme-customizer │ │ │ ├── copy-code-button.svelte │ │ │ ├── customizer-code.svelte │ │ │ ├── customizer.svelte │ │ │ ├── index.ts │ │ │ └── theme-customizer.svelte │ │ │ ├── theme-wrapper.svelte │ │ │ └── tree.svelte │ ├── config │ │ ├── blocks.ts │ │ ├── components.ts │ │ ├── docs.ts │ │ └── site.ts │ ├── img │ │ ├── blocks │ │ │ ├── dashboard-1-dark.jpg │ │ │ ├── dashboard-1.jpg │ │ │ ├── dashboard-2-dark.jpg │ │ │ ├── dashboard-2.jpg │ │ │ ├── dashboard-3-dark.jpg │ │ │ └── dashboard-3.jpg │ │ └── 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 │ │ │ ├── mail-dark.png │ │ │ ├── mail-light.png │ │ │ ├── music-dark.png │ │ │ ├── music-light.png │ │ │ ├── playground-dark.png │ │ │ ├── playground-light.png │ │ │ ├── tasks-dark.png │ │ │ └── tasks-light.png │ ├── registry │ │ ├── colors.ts │ │ ├── default │ │ │ ├── block │ │ │ │ ├── authentication-01.svelte │ │ │ │ ├── authentication-02.svelte │ │ │ │ ├── authentication-03.svelte │ │ │ │ ├── authentication-04.svelte │ │ │ │ ├── dashboard-01.svelte │ │ │ │ ├── dashboard-02.svelte │ │ │ │ ├── dashboard-03.svelte │ │ │ │ ├── dashboard-04.svelte │ │ │ │ ├── dashboard-05.svelte │ │ │ │ ├── dashboard-06.svelte │ │ │ │ └── dashboard-07.svelte │ │ │ ├── example │ │ │ │ ├── accordion-demo.svelte │ │ │ │ ├── alert-demo.svelte │ │ │ │ ├── alert-destructive.svelte │ │ │ │ ├── alert-dialog-demo.svelte │ │ │ │ ├── aspect-ratio-demo.svelte │ │ │ │ ├── avatar-demo.svelte │ │ │ │ ├── badge-demo.svelte │ │ │ │ ├── badge-destructive.svelte │ │ │ │ ├── badge-outline.svelte │ │ │ │ ├── badge-secondary.svelte │ │ │ │ ├── breadcrumb-demo.svelte │ │ │ │ ├── breadcrumb-dropdown.svelte │ │ │ │ ├── breadcrumb-ellipsis.svelte │ │ │ │ ├── breadcrumb-link.svelte │ │ │ │ ├── breadcrumb-responsive.svelte │ │ │ │ ├── breadcrumb-separator.svelte │ │ │ │ ├── button-demo.svelte │ │ │ │ ├── button-destructive.svelte │ │ │ │ ├── button-ghost.svelte │ │ │ │ ├── button-icon.svelte │ │ │ │ ├── button-link.svelte │ │ │ │ ├── button-loading.svelte │ │ │ │ ├── button-outline.svelte │ │ │ │ ├── button-secondary.svelte │ │ │ │ ├── button-with-icon.svelte │ │ │ │ ├── calendar-demo.svelte │ │ │ │ ├── calendar-with-selects.svelte │ │ │ │ ├── card-demo.svelte │ │ │ │ ├── card-with-form.svelte │ │ │ │ ├── cards │ │ │ │ │ ├── activity-goal.svelte │ │ │ │ │ ├── all.svelte │ │ │ │ │ ├── calendar.svelte │ │ │ │ │ ├── chat.svelte │ │ │ │ │ ├── cookie-settings.svelte │ │ │ │ │ ├── create-account.svelte │ │ │ │ │ ├── data-table.svelte │ │ │ │ │ ├── github.svelte │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── metric.svelte │ │ │ │ │ ├── notifications.svelte │ │ │ │ │ ├── payment-method.svelte │ │ │ │ │ ├── report-issue.svelte │ │ │ │ │ ├── share.svelte │ │ │ │ │ ├── stats.svelte │ │ │ │ │ └── team-members.svelte │ │ │ │ ├── carousel-api.svelte │ │ │ │ ├── carousel-demo.svelte │ │ │ │ ├── carousel-orientation.svelte │ │ │ │ ├── carousel-plugin.svelte │ │ │ │ ├── carousel-size.svelte │ │ │ │ ├── carousel-spacing.svelte │ │ │ │ ├── checkbox-demo.svelte │ │ │ │ ├── checkbox-disabled.svelte │ │ │ │ ├── checkbox-form-multiple.svelte │ │ │ │ ├── checkbox-form-single.svelte │ │ │ │ ├── checkbox-with-text.svelte │ │ │ │ ├── collapsible-demo.svelte │ │ │ │ ├── combobox-demo.svelte │ │ │ │ ├── combobox-dropdown-menu.svelte │ │ │ │ ├── combobox-form.svelte │ │ │ │ ├── combobox-popover.svelte │ │ │ │ ├── command-demo.svelte │ │ │ │ ├── command-dialog.svelte │ │ │ │ ├── context-menu-demo.svelte │ │ │ │ ├── dark-mode-dropdown-menu.svelte │ │ │ │ ├── dark-mode-light-switch.svelte │ │ │ │ ├── data-table-demo.svelte │ │ │ │ ├── data-table │ │ │ │ │ ├── data-table-actions.svelte │ │ │ │ │ └── data-table-checkbox.svelte │ │ │ │ ├── date-picker-demo.svelte │ │ │ │ ├── date-picker-form.svelte │ │ │ │ ├── date-picker-with-presets.svelte │ │ │ │ ├── date-picker-with-range.svelte │ │ │ │ ├── dialog-demo.svelte │ │ │ │ ├── drawer-demo.svelte │ │ │ │ ├── drawer-dialog.svelte │ │ │ │ ├── dropdown-menu-checkboxes.svelte │ │ │ │ ├── dropdown-menu-demo.svelte │ │ │ │ ├── dropdown-menu-radio-group.svelte │ │ │ │ ├── form-demo.svelte │ │ │ │ ├── hover-card-demo.svelte │ │ │ │ ├── index.ts │ │ │ │ ├── input-demo.svelte │ │ │ │ ├── input-disabled.svelte │ │ │ │ ├── input-file.svelte │ │ │ │ ├── input-with-button.svelte │ │ │ │ ├── input-with-label.svelte │ │ │ │ ├── input-with-text.svelte │ │ │ │ ├── label-demo.svelte │ │ │ │ ├── menubar-demo.svelte │ │ │ │ ├── pagination-demo.svelte │ │ │ │ ├── popover-demo.svelte │ │ │ │ ├── progress-demo.svelte │ │ │ │ ├── radio-group-demo.svelte │ │ │ │ ├── radio-group-form.svelte │ │ │ │ ├── range-calendar-demo.svelte │ │ │ │ ├── resizable-demo.svelte │ │ │ │ ├── resizable-handle.svelte │ │ │ │ ├── resizable-vertical.svelte │ │ │ │ ├── scroll-area-both.svelte │ │ │ │ ├── scroll-area-demo.svelte │ │ │ │ ├── scroll-area-horizontal.svelte │ │ │ │ ├── select-demo.svelte │ │ │ │ ├── select-form.svelte │ │ │ │ ├── separator-demo.svelte │ │ │ │ ├── sheet-demo.svelte │ │ │ │ ├── sheet-side.svelte │ │ │ │ ├── skeleton-demo.svelte │ │ │ │ ├── slider-demo.svelte │ │ │ │ ├── sonner-demo.svelte │ │ │ │ ├── switch-demo.svelte │ │ │ │ ├── switch-form.svelte │ │ │ │ ├── table-demo.svelte │ │ │ │ ├── tabs-demo.svelte │ │ │ │ ├── textarea-demo.svelte │ │ │ │ ├── textarea-disabled.svelte │ │ │ │ ├── textarea-form.svelte │ │ │ │ ├── textarea-with-button.svelte │ │ │ │ ├── textarea-with-label.svelte │ │ │ │ ├── textarea-with-text.svelte │ │ │ │ ├── toggle-demo.svelte │ │ │ │ ├── toggle-disabled.svelte │ │ │ │ ├── toggle-group-demo.svelte │ │ │ │ ├── toggle-group-disabled.svelte │ │ │ │ ├── toggle-group-lg.svelte │ │ │ │ ├── toggle-group-outline.svelte │ │ │ │ ├── toggle-group-single.svelte │ │ │ │ ├── toggle-group-sm.svelte │ │ │ │ ├── toggle-lg.svelte │ │ │ │ ├── toggle-outline.svelte │ │ │ │ ├── toggle-sm.svelte │ │ │ │ ├── toggle-with-text.svelte │ │ │ │ ├── tooltip-demo.svelte │ │ │ │ ├── typography-blockquote.svelte │ │ │ │ ├── typography-demo.svelte │ │ │ │ ├── typography-h1.svelte │ │ │ │ ├── typography-h2.svelte │ │ │ │ ├── typography-h3.svelte │ │ │ │ ├── typography-h4.svelte │ │ │ │ ├── typography-inline-code.svelte │ │ │ │ ├── typography-large.svelte │ │ │ │ ├── typography-lead.svelte │ │ │ │ ├── typography-list.svelte │ │ │ │ ├── typography-muted.svelte │ │ │ │ ├── typography-p.svelte │ │ │ │ ├── typography-small.svelte │ │ │ │ └── typography-table.svelte │ │ │ └── ui │ │ │ │ ├── accordion │ │ │ │ ├── accordion-content.svelte │ │ │ │ ├── accordion-item.svelte │ │ │ │ ├── accordion-trigger.svelte │ │ │ │ └── index.ts │ │ │ │ ├── alert-dialog │ │ │ │ ├── alert-dialog-action.svelte │ │ │ │ ├── alert-dialog-cancel.svelte │ │ │ │ ├── alert-dialog-content.svelte │ │ │ │ ├── alert-dialog-description.svelte │ │ │ │ ├── alert-dialog-footer.svelte │ │ │ │ ├── alert-dialog-header.svelte │ │ │ │ ├── alert-dialog-overlay.svelte │ │ │ │ ├── alert-dialog-portal.svelte │ │ │ │ ├── alert-dialog-title.svelte │ │ │ │ └── index.ts │ │ │ │ ├── alert │ │ │ │ ├── alert-description.svelte │ │ │ │ ├── alert-title.svelte │ │ │ │ ├── alert.svelte │ │ │ │ └── index.ts │ │ │ │ ├── aspect-ratio │ │ │ │ ├── aspect-ratio.svelte │ │ │ │ └── index.ts │ │ │ │ ├── avatar │ │ │ │ ├── avatar-fallback.svelte │ │ │ │ ├── avatar-image.svelte │ │ │ │ ├── avatar.svelte │ │ │ │ └── index.ts │ │ │ │ ├── badge │ │ │ │ ├── badge.svelte │ │ │ │ └── index.ts │ │ │ │ ├── breadcrumb │ │ │ │ ├── breadcrumb-ellipsis.svelte │ │ │ │ ├── breadcrumb-item.svelte │ │ │ │ ├── breadcrumb-link.svelte │ │ │ │ ├── breadcrumb-list.svelte │ │ │ │ ├── breadcrumb-page.svelte │ │ │ │ ├── breadcrumb-separator.svelte │ │ │ │ ├── breadcrumb.svelte │ │ │ │ └── index.ts │ │ │ │ ├── button │ │ │ │ ├── button.svelte │ │ │ │ └── index.ts │ │ │ │ ├── calendar │ │ │ │ ├── calendar-cell.svelte │ │ │ │ ├── calendar-day.svelte │ │ │ │ ├── calendar-grid-body.svelte │ │ │ │ ├── calendar-grid-head.svelte │ │ │ │ ├── calendar-grid-row.svelte │ │ │ │ ├── calendar-grid.svelte │ │ │ │ ├── calendar-head-cell.svelte │ │ │ │ ├── calendar-header.svelte │ │ │ │ ├── calendar-heading.svelte │ │ │ │ ├── calendar-months.svelte │ │ │ │ ├── calendar-next-button.svelte │ │ │ │ ├── calendar-prev-button.svelte │ │ │ │ ├── calendar.svelte │ │ │ │ └── index.ts │ │ │ │ ├── card │ │ │ │ ├── card-content.svelte │ │ │ │ ├── card-description.svelte │ │ │ │ ├── card-footer.svelte │ │ │ │ ├── card-header.svelte │ │ │ │ ├── card-title.svelte │ │ │ │ ├── card.svelte │ │ │ │ └── index.ts │ │ │ │ ├── carousel │ │ │ │ ├── carousel-content.svelte │ │ │ │ ├── carousel-item.svelte │ │ │ │ ├── carousel-next.svelte │ │ │ │ ├── carousel-previous.svelte │ │ │ │ ├── carousel.svelte │ │ │ │ ├── context.ts │ │ │ │ └── index.ts │ │ │ │ ├── checkbox │ │ │ │ ├── checkbox.svelte │ │ │ │ └── index.ts │ │ │ │ ├── collapsible │ │ │ │ ├── collapsible-content.svelte │ │ │ │ └── index.ts │ │ │ │ ├── command │ │ │ │ ├── command-dialog.svelte │ │ │ │ ├── command-empty.svelte │ │ │ │ ├── command-group.svelte │ │ │ │ ├── command-input.svelte │ │ │ │ ├── command-item.svelte │ │ │ │ ├── command-list.svelte │ │ │ │ ├── command-separator.svelte │ │ │ │ ├── command-shortcut.svelte │ │ │ │ ├── command.svelte │ │ │ │ └── index.ts │ │ │ │ ├── context-menu │ │ │ │ ├── context-menu-checkbox-item.svelte │ │ │ │ ├── context-menu-content.svelte │ │ │ │ ├── context-menu-item.svelte │ │ │ │ ├── context-menu-label.svelte │ │ │ │ ├── context-menu-radio-group.svelte │ │ │ │ ├── context-menu-radio-item.svelte │ │ │ │ ├── context-menu-separator.svelte │ │ │ │ ├── context-menu-shortcut.svelte │ │ │ │ ├── context-menu-sub-content.svelte │ │ │ │ ├── context-menu-sub-trigger.svelte │ │ │ │ └── index.ts │ │ │ │ ├── dialog │ │ │ │ ├── dialog-content.svelte │ │ │ │ ├── dialog-description.svelte │ │ │ │ ├── dialog-footer.svelte │ │ │ │ ├── dialog-header.svelte │ │ │ │ ├── dialog-overlay.svelte │ │ │ │ ├── dialog-portal.svelte │ │ │ │ ├── dialog-title.svelte │ │ │ │ └── index.ts │ │ │ │ ├── drawer │ │ │ │ ├── drawer-content.svelte │ │ │ │ ├── drawer-description.svelte │ │ │ │ ├── drawer-footer.svelte │ │ │ │ ├── drawer-header.svelte │ │ │ │ ├── drawer-nested.svelte │ │ │ │ ├── drawer-overlay.svelte │ │ │ │ ├── drawer-title.svelte │ │ │ │ ├── drawer.svelte │ │ │ │ └── index.ts │ │ │ │ ├── dropdown-menu │ │ │ │ ├── dropdown-menu-checkbox-item.svelte │ │ │ │ ├── dropdown-menu-content.svelte │ │ │ │ ├── dropdown-menu-item.svelte │ │ │ │ ├── dropdown-menu-label.svelte │ │ │ │ ├── dropdown-menu-radio-group.svelte │ │ │ │ ├── dropdown-menu-radio-item.svelte │ │ │ │ ├── dropdown-menu-separator.svelte │ │ │ │ ├── dropdown-menu-shortcut.svelte │ │ │ │ ├── dropdown-menu-sub-content.svelte │ │ │ │ ├── dropdown-menu-sub-trigger.svelte │ │ │ │ └── index.ts │ │ │ │ ├── form │ │ │ │ ├── form-button.svelte │ │ │ │ ├── form-description.svelte │ │ │ │ ├── form-element-field.svelte │ │ │ │ ├── form-field-errors.svelte │ │ │ │ ├── form-field.svelte │ │ │ │ ├── form-fieldset.svelte │ │ │ │ ├── form-label.svelte │ │ │ │ ├── form-legend.svelte │ │ │ │ └── index.ts │ │ │ │ ├── hover-card │ │ │ │ ├── hover-card-content.svelte │ │ │ │ └── index.ts │ │ │ │ ├── input │ │ │ │ ├── index.ts │ │ │ │ └── input.svelte │ │ │ │ ├── label │ │ │ │ ├── index.ts │ │ │ │ └── label.svelte │ │ │ │ ├── menubar │ │ │ │ ├── index.ts │ │ │ │ ├── menubar-checkbox-item.svelte │ │ │ │ ├── menubar-content.svelte │ │ │ │ ├── menubar-item.svelte │ │ │ │ ├── menubar-label.svelte │ │ │ │ ├── menubar-radio-item.svelte │ │ │ │ ├── menubar-separator.svelte │ │ │ │ ├── menubar-shortcut.svelte │ │ │ │ ├── menubar-sub-content.svelte │ │ │ │ ├── menubar-sub-trigger.svelte │ │ │ │ ├── menubar-trigger.svelte │ │ │ │ └── menubar.svelte │ │ │ │ ├── pagination │ │ │ │ ├── index.ts │ │ │ │ ├── pagination-content.svelte │ │ │ │ ├── pagination-ellipsis.svelte │ │ │ │ ├── pagination-item.svelte │ │ │ │ ├── pagination-link.svelte │ │ │ │ ├── pagination-next-button.svelte │ │ │ │ ├── pagination-prev-button.svelte │ │ │ │ └── pagination.svelte │ │ │ │ ├── popover │ │ │ │ ├── index.ts │ │ │ │ └── popover-content.svelte │ │ │ │ ├── progress │ │ │ │ ├── index.ts │ │ │ │ └── progress.svelte │ │ │ │ ├── radio-group │ │ │ │ ├── index.ts │ │ │ │ ├── radio-group-item.svelte │ │ │ │ └── radio-group.svelte │ │ │ │ ├── range-calendar │ │ │ │ ├── index.ts │ │ │ │ ├── range-calendar-cell.svelte │ │ │ │ ├── range-calendar-day.svelte │ │ │ │ ├── range-calendar-grid-body.svelte │ │ │ │ ├── range-calendar-grid-head.svelte │ │ │ │ ├── range-calendar-grid-row.svelte │ │ │ │ ├── range-calendar-grid.svelte │ │ │ │ ├── range-calendar-head-cell.svelte │ │ │ │ ├── range-calendar-header.svelte │ │ │ │ ├── range-calendar-heading.svelte │ │ │ │ ├── range-calendar-months.svelte │ │ │ │ ├── range-calendar-next-button.svelte │ │ │ │ ├── range-calendar-prev-button.svelte │ │ │ │ └── range-calendar.svelte │ │ │ │ ├── resizable │ │ │ │ ├── index.ts │ │ │ │ ├── resizable-handle.svelte │ │ │ │ └── resizable-pane-group.svelte │ │ │ │ ├── scroll-area │ │ │ │ ├── index.ts │ │ │ │ ├── scroll-area-scrollbar.svelte │ │ │ │ └── scroll-area.svelte │ │ │ │ ├── select │ │ │ │ ├── index.ts │ │ │ │ ├── select-content.svelte │ │ │ │ ├── select-item.svelte │ │ │ │ ├── select-label.svelte │ │ │ │ ├── select-separator.svelte │ │ │ │ └── select-trigger.svelte │ │ │ │ ├── separator │ │ │ │ ├── index.ts │ │ │ │ └── separator.svelte │ │ │ │ ├── sheet │ │ │ │ ├── index.ts │ │ │ │ ├── sheet-content.svelte │ │ │ │ ├── sheet-description.svelte │ │ │ │ ├── sheet-footer.svelte │ │ │ │ ├── sheet-header.svelte │ │ │ │ ├── sheet-overlay.svelte │ │ │ │ ├── sheet-portal.svelte │ │ │ │ └── sheet-title.svelte │ │ │ │ ├── skeleton │ │ │ │ ├── index.ts │ │ │ │ └── skeleton.svelte │ │ │ │ ├── slider │ │ │ │ ├── index.ts │ │ │ │ └── slider.svelte │ │ │ │ ├── sonner │ │ │ │ ├── index.ts │ │ │ │ └── sonner.svelte │ │ │ │ ├── switch │ │ │ │ ├── index.ts │ │ │ │ └── switch.svelte │ │ │ │ ├── table │ │ │ │ ├── index.ts │ │ │ │ ├── table-body.svelte │ │ │ │ ├── table-caption.svelte │ │ │ │ ├── table-cell.svelte │ │ │ │ ├── table-footer.svelte │ │ │ │ ├── table-head.svelte │ │ │ │ ├── table-header.svelte │ │ │ │ ├── table-row.svelte │ │ │ │ └── table.svelte │ │ │ │ ├── tabs │ │ │ │ ├── index.ts │ │ │ │ ├── tabs-content.svelte │ │ │ │ ├── tabs-list.svelte │ │ │ │ └── tabs-trigger.svelte │ │ │ │ ├── textarea │ │ │ │ ├── index.ts │ │ │ │ └── textarea.svelte │ │ │ │ ├── toggle-group │ │ │ │ ├── index.ts │ │ │ │ ├── toggle-group-item.svelte │ │ │ │ └── toggle-group.svelte │ │ │ │ ├── toggle │ │ │ │ ├── index.ts │ │ │ │ └── toggle.svelte │ │ │ │ └── tooltip │ │ │ │ ├── index.ts │ │ │ │ └── tooltip-content.svelte │ │ ├── index.ts │ │ ├── new-york │ │ │ ├── block │ │ │ │ ├── authentication-01.svelte │ │ │ │ ├── authentication-02.svelte │ │ │ │ ├── authentication-03.svelte │ │ │ │ ├── authentication-04.svelte │ │ │ │ ├── dashboard-01.svelte │ │ │ │ ├── dashboard-02.svelte │ │ │ │ ├── dashboard-03.svelte │ │ │ │ ├── dashboard-04.svelte │ │ │ │ ├── dashboard-05.svelte │ │ │ │ ├── dashboard-06.svelte │ │ │ │ └── dashboard-07.svelte │ │ │ ├── example │ │ │ │ ├── accordion-demo.svelte │ │ │ │ ├── alert-demo.svelte │ │ │ │ ├── alert-destructive.svelte │ │ │ │ ├── alert-dialog-demo.svelte │ │ │ │ ├── aspect-ratio-demo.svelte │ │ │ │ ├── avatar-demo.svelte │ │ │ │ ├── badge-demo.svelte │ │ │ │ ├── badge-destructive.svelte │ │ │ │ ├── badge-outline.svelte │ │ │ │ ├── badge-secondary.svelte │ │ │ │ ├── breadcrumb-demo.svelte │ │ │ │ ├── breadcrumb-dropdown.svelte │ │ │ │ ├── breadcrumb-ellipsis.svelte │ │ │ │ ├── breadcrumb-link.svelte │ │ │ │ ├── breadcrumb-responsive.svelte │ │ │ │ ├── breadcrumb-separator.svelte │ │ │ │ ├── button-demo.svelte │ │ │ │ ├── button-destructive.svelte │ │ │ │ ├── button-ghost.svelte │ │ │ │ ├── button-icon.svelte │ │ │ │ ├── button-link.svelte │ │ │ │ ├── button-loading.svelte │ │ │ │ ├── button-outline.svelte │ │ │ │ ├── button-secondary.svelte │ │ │ │ ├── button-with-icon.svelte │ │ │ │ ├── calendar-demo.svelte │ │ │ │ ├── calendar-with-selects.svelte │ │ │ │ ├── card-demo.svelte │ │ │ │ ├── card-with-form.svelte │ │ │ │ ├── cards │ │ │ │ │ ├── activity-goal.svelte │ │ │ │ │ ├── all.svelte │ │ │ │ │ ├── calendar.svelte │ │ │ │ │ ├── chat.svelte │ │ │ │ │ ├── cookie-settings.svelte │ │ │ │ │ ├── create-account.svelte │ │ │ │ │ ├── data-table.svelte │ │ │ │ │ ├── github.svelte │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── metric.svelte │ │ │ │ │ ├── notifications.svelte │ │ │ │ │ ├── payment-method.svelte │ │ │ │ │ ├── report-issue.svelte │ │ │ │ │ ├── share.svelte │ │ │ │ │ ├── stats.svelte │ │ │ │ │ └── team-members.svelte │ │ │ │ ├── carousel-api.svelte │ │ │ │ ├── carousel-demo.svelte │ │ │ │ ├── carousel-orientation.svelte │ │ │ │ ├── carousel-plugin.svelte │ │ │ │ ├── carousel-size.svelte │ │ │ │ ├── carousel-spacing.svelte │ │ │ │ ├── checkbox-demo.svelte │ │ │ │ ├── checkbox-disabled.svelte │ │ │ │ ├── checkbox-form-multiple.svelte │ │ │ │ ├── checkbox-form-single.svelte │ │ │ │ ├── checkbox-with-text.svelte │ │ │ │ ├── collapsible-demo.svelte │ │ │ │ ├── combobox-demo.svelte │ │ │ │ ├── combobox-dropdown-menu.svelte │ │ │ │ ├── combobox-form.svelte │ │ │ │ ├── combobox-popover.svelte │ │ │ │ ├── command-demo.svelte │ │ │ │ ├── command-dialog.svelte │ │ │ │ ├── context-menu-demo.svelte │ │ │ │ ├── dark-mode-dropdown-menu.svelte │ │ │ │ ├── dark-mode-light-switch.svelte │ │ │ │ ├── data-table-demo.svelte │ │ │ │ ├── data-table │ │ │ │ │ ├── data-table-actions.svelte │ │ │ │ │ └── data-table-checkbox.svelte │ │ │ │ ├── date-picker-demo.svelte │ │ │ │ ├── date-picker-form.svelte │ │ │ │ ├── date-picker-with-presets.svelte │ │ │ │ ├── date-picker-with-range.svelte │ │ │ │ ├── dialog-demo.svelte │ │ │ │ ├── drawer-demo.svelte │ │ │ │ ├── drawer-dialog.svelte │ │ │ │ ├── dropdown-menu-checkboxes.svelte │ │ │ │ ├── dropdown-menu-demo.svelte │ │ │ │ ├── dropdown-menu-radio-group.svelte │ │ │ │ ├── form-demo.svelte │ │ │ │ ├── hover-card-demo.svelte │ │ │ │ ├── index.ts │ │ │ │ ├── input-demo.svelte │ │ │ │ ├── input-disabled.svelte │ │ │ │ ├── input-file.svelte │ │ │ │ ├── input-with-button.svelte │ │ │ │ ├── input-with-label.svelte │ │ │ │ ├── input-with-text.svelte │ │ │ │ ├── label-demo.svelte │ │ │ │ ├── menubar-demo.svelte │ │ │ │ ├── pagination-demo.svelte │ │ │ │ ├── popover-demo.svelte │ │ │ │ ├── progress-demo.svelte │ │ │ │ ├── radio-group-demo.svelte │ │ │ │ ├── radio-group-form.svelte │ │ │ │ ├── range-calendar-demo.svelte │ │ │ │ ├── resizable-demo.svelte │ │ │ │ ├── resizable-handle.svelte │ │ │ │ ├── resizable-vertical.svelte │ │ │ │ ├── scroll-area-both.svelte │ │ │ │ ├── scroll-area-demo.svelte │ │ │ │ ├── scroll-area-horizontal.svelte │ │ │ │ ├── select-demo.svelte │ │ │ │ ├── select-form.svelte │ │ │ │ ├── separator-demo.svelte │ │ │ │ ├── sheet-demo.svelte │ │ │ │ ├── sheet-side.svelte │ │ │ │ ├── skeleton-demo.svelte │ │ │ │ ├── slider-demo.svelte │ │ │ │ ├── sonner-demo.svelte │ │ │ │ ├── switch-demo.svelte │ │ │ │ ├── switch-form.svelte │ │ │ │ ├── table-demo.svelte │ │ │ │ ├── tabs-demo.svelte │ │ │ │ ├── textarea-demo.svelte │ │ │ │ ├── textarea-disabled.svelte │ │ │ │ ├── textarea-form.svelte │ │ │ │ ├── textarea-with-button.svelte │ │ │ │ ├── textarea-with-label.svelte │ │ │ │ ├── textarea-with-text.svelte │ │ │ │ ├── toggle-demo.svelte │ │ │ │ ├── toggle-disabled.svelte │ │ │ │ ├── toggle-group-demo.svelte │ │ │ │ ├── toggle-group-disabled.svelte │ │ │ │ ├── toggle-group-lg.svelte │ │ │ │ ├── toggle-group-outline.svelte │ │ │ │ ├── toggle-group-single.svelte │ │ │ │ ├── toggle-group-sm.svelte │ │ │ │ ├── toggle-lg.svelte │ │ │ │ ├── toggle-outline.svelte │ │ │ │ ├── toggle-sm.svelte │ │ │ │ ├── toggle-with-text.svelte │ │ │ │ ├── tooltip-demo.svelte │ │ │ │ ├── typography-blockquote.svelte │ │ │ │ ├── typography-demo.svelte │ │ │ │ ├── typography-h1.svelte │ │ │ │ ├── typography-h2.svelte │ │ │ │ ├── typography-h3.svelte │ │ │ │ ├── typography-h4.svelte │ │ │ │ ├── typography-inline-code.svelte │ │ │ │ ├── typography-large.svelte │ │ │ │ ├── typography-lead.svelte │ │ │ │ ├── typography-list.svelte │ │ │ │ ├── typography-muted.svelte │ │ │ │ ├── typography-p.svelte │ │ │ │ ├── typography-small.svelte │ │ │ │ └── typography-table.svelte │ │ │ └── ui │ │ │ │ ├── accordion │ │ │ │ ├── accordion-content.svelte │ │ │ │ ├── accordion-item.svelte │ │ │ │ ├── accordion-trigger.svelte │ │ │ │ └── index.ts │ │ │ │ ├── alert-dialog │ │ │ │ ├── alert-dialog-action.svelte │ │ │ │ ├── alert-dialog-cancel.svelte │ │ │ │ ├── alert-dialog-content.svelte │ │ │ │ ├── alert-dialog-description.svelte │ │ │ │ ├── alert-dialog-footer.svelte │ │ │ │ ├── alert-dialog-header.svelte │ │ │ │ ├── alert-dialog-overlay.svelte │ │ │ │ ├── alert-dialog-portal.svelte │ │ │ │ ├── alert-dialog-title.svelte │ │ │ │ └── index.ts │ │ │ │ ├── alert │ │ │ │ ├── alert-description.svelte │ │ │ │ ├── alert-title.svelte │ │ │ │ ├── alert.svelte │ │ │ │ └── index.ts │ │ │ │ ├── aspect-ratio │ │ │ │ ├── aspect-ratio.svelte │ │ │ │ └── index.ts │ │ │ │ ├── avatar │ │ │ │ ├── avatar-fallback.svelte │ │ │ │ ├── avatar-image.svelte │ │ │ │ ├── avatar.svelte │ │ │ │ └── index.ts │ │ │ │ ├── badge │ │ │ │ ├── badge.svelte │ │ │ │ └── index.ts │ │ │ │ ├── breadcrumb │ │ │ │ ├── breadcrumb-ellipsis.svelte │ │ │ │ ├── breadcrumb-item.svelte │ │ │ │ ├── breadcrumb-link.svelte │ │ │ │ ├── breadcrumb-list.svelte │ │ │ │ ├── breadcrumb-page.svelte │ │ │ │ ├── breadcrumb-separator.svelte │ │ │ │ ├── breadcrumb.svelte │ │ │ │ └── index.ts │ │ │ │ ├── button │ │ │ │ ├── button.svelte │ │ │ │ └── index.ts │ │ │ │ ├── calendar │ │ │ │ ├── calendar-cell.svelte │ │ │ │ ├── calendar-day.svelte │ │ │ │ ├── calendar-grid-body.svelte │ │ │ │ ├── calendar-grid-head.svelte │ │ │ │ ├── calendar-grid-row.svelte │ │ │ │ ├── calendar-grid.svelte │ │ │ │ ├── calendar-head-cell.svelte │ │ │ │ ├── calendar-header.svelte │ │ │ │ ├── calendar-heading.svelte │ │ │ │ ├── calendar-months.svelte │ │ │ │ ├── calendar-next-button.svelte │ │ │ │ ├── calendar-prev-button.svelte │ │ │ │ ├── calendar.svelte │ │ │ │ └── index.ts │ │ │ │ ├── card │ │ │ │ ├── card-content.svelte │ │ │ │ ├── card-description.svelte │ │ │ │ ├── card-footer.svelte │ │ │ │ ├── card-header.svelte │ │ │ │ ├── card-title.svelte │ │ │ │ ├── card.svelte │ │ │ │ └── index.ts │ │ │ │ ├── carousel │ │ │ │ ├── carousel-content.svelte │ │ │ │ ├── carousel-item.svelte │ │ │ │ ├── carousel-next.svelte │ │ │ │ ├── carousel-previous.svelte │ │ │ │ ├── carousel.svelte │ │ │ │ ├── context.ts │ │ │ │ └── index.ts │ │ │ │ ├── checkbox │ │ │ │ ├── checkbox.svelte │ │ │ │ └── index.ts │ │ │ │ ├── collapsible │ │ │ │ ├── collapsible-content.svelte │ │ │ │ └── index.ts │ │ │ │ ├── command │ │ │ │ ├── command-dialog.svelte │ │ │ │ ├── command-empty.svelte │ │ │ │ ├── command-group.svelte │ │ │ │ ├── command-input.svelte │ │ │ │ ├── command-item.svelte │ │ │ │ ├── command-list.svelte │ │ │ │ ├── command-separator.svelte │ │ │ │ ├── command-shortcut.svelte │ │ │ │ ├── command.svelte │ │ │ │ └── index.ts │ │ │ │ ├── context-menu │ │ │ │ ├── context-menu-checkbox-item.svelte │ │ │ │ ├── context-menu-content.svelte │ │ │ │ ├── context-menu-item.svelte │ │ │ │ ├── context-menu-label.svelte │ │ │ │ ├── context-menu-radio-group.svelte │ │ │ │ ├── context-menu-radio-item.svelte │ │ │ │ ├── context-menu-separator.svelte │ │ │ │ ├── context-menu-shortcut.svelte │ │ │ │ ├── context-menu-sub-content.svelte │ │ │ │ ├── context-menu-sub-trigger.svelte │ │ │ │ └── index.ts │ │ │ │ ├── dialog │ │ │ │ ├── dialog-content.svelte │ │ │ │ ├── dialog-description.svelte │ │ │ │ ├── dialog-footer.svelte │ │ │ │ ├── dialog-header.svelte │ │ │ │ ├── dialog-overlay.svelte │ │ │ │ ├── dialog-portal.svelte │ │ │ │ ├── dialog-title.svelte │ │ │ │ └── index.ts │ │ │ │ ├── drawer │ │ │ │ ├── drawer-content.svelte │ │ │ │ ├── drawer-description.svelte │ │ │ │ ├── drawer-footer.svelte │ │ │ │ ├── drawer-header.svelte │ │ │ │ ├── drawer-nested.svelte │ │ │ │ ├── drawer-overlay.svelte │ │ │ │ ├── drawer-title.svelte │ │ │ │ ├── drawer.svelte │ │ │ │ └── index.ts │ │ │ │ ├── dropdown-menu │ │ │ │ ├── dropdown-menu-checkbox-item.svelte │ │ │ │ ├── dropdown-menu-content.svelte │ │ │ │ ├── dropdown-menu-item.svelte │ │ │ │ ├── dropdown-menu-label.svelte │ │ │ │ ├── dropdown-menu-radio-group.svelte │ │ │ │ ├── dropdown-menu-radio-item.svelte │ │ │ │ ├── dropdown-menu-separator.svelte │ │ │ │ ├── dropdown-menu-shortcut.svelte │ │ │ │ ├── dropdown-menu-sub-content.svelte │ │ │ │ ├── dropdown-menu-sub-trigger.svelte │ │ │ │ └── index.ts │ │ │ │ ├── form │ │ │ │ ├── form-button.svelte │ │ │ │ ├── form-description.svelte │ │ │ │ ├── form-element-field.svelte │ │ │ │ ├── form-field-errors.svelte │ │ │ │ ├── form-field.svelte │ │ │ │ ├── form-fieldset.svelte │ │ │ │ ├── form-label.svelte │ │ │ │ ├── form-legend.svelte │ │ │ │ └── index.ts │ │ │ │ ├── hover-card │ │ │ │ ├── hover-card-content.svelte │ │ │ │ └── index.ts │ │ │ │ ├── input │ │ │ │ ├── index.ts │ │ │ │ └── input.svelte │ │ │ │ ├── label │ │ │ │ ├── index.ts │ │ │ │ └── label.svelte │ │ │ │ ├── menubar │ │ │ │ ├── index.ts │ │ │ │ ├── menubar-checkbox-item.svelte │ │ │ │ ├── menubar-content.svelte │ │ │ │ ├── menubar-item.svelte │ │ │ │ ├── menubar-label.svelte │ │ │ │ ├── menubar-radio-item.svelte │ │ │ │ ├── menubar-separator.svelte │ │ │ │ ├── menubar-shortcut.svelte │ │ │ │ ├── menubar-sub-content.svelte │ │ │ │ ├── menubar-sub-trigger.svelte │ │ │ │ ├── menubar-trigger.svelte │ │ │ │ └── menubar.svelte │ │ │ │ ├── pagination │ │ │ │ ├── index.ts │ │ │ │ ├── pagination-content.svelte │ │ │ │ ├── pagination-ellipsis.svelte │ │ │ │ ├── pagination-item.svelte │ │ │ │ ├── pagination-link.svelte │ │ │ │ ├── pagination-next-button.svelte │ │ │ │ ├── pagination-prev-button.svelte │ │ │ │ └── pagination.svelte │ │ │ │ ├── popover │ │ │ │ ├── index.ts │ │ │ │ └── popover-content.svelte │ │ │ │ ├── progress │ │ │ │ ├── index.ts │ │ │ │ └── progress.svelte │ │ │ │ ├── radio-group │ │ │ │ ├── index.ts │ │ │ │ ├── radio-group-item.svelte │ │ │ │ └── radio-group.svelte │ │ │ │ ├── range-calendar │ │ │ │ ├── index.ts │ │ │ │ ├── range-calendar-cell.svelte │ │ │ │ ├── range-calendar-day.svelte │ │ │ │ ├── range-calendar-grid-body.svelte │ │ │ │ ├── range-calendar-grid-head.svelte │ │ │ │ ├── range-calendar-grid-row.svelte │ │ │ │ ├── range-calendar-grid.svelte │ │ │ │ ├── range-calendar-head-cell.svelte │ │ │ │ ├── range-calendar-header.svelte │ │ │ │ ├── range-calendar-heading.svelte │ │ │ │ ├── range-calendar-months.svelte │ │ │ │ ├── range-calendar-next-button.svelte │ │ │ │ ├── range-calendar-prev-button.svelte │ │ │ │ └── range-calendar.svelte │ │ │ │ ├── resizable │ │ │ │ ├── index.ts │ │ │ │ ├── resizable-handle.svelte │ │ │ │ └── resizable-pane-group.svelte │ │ │ │ ├── scroll-area │ │ │ │ ├── index.ts │ │ │ │ ├── scroll-area-scrollbar.svelte │ │ │ │ └── scroll-area.svelte │ │ │ │ ├── select │ │ │ │ ├── index.ts │ │ │ │ ├── select-content.svelte │ │ │ │ ├── select-item.svelte │ │ │ │ ├── select-label.svelte │ │ │ │ ├── select-separator.svelte │ │ │ │ └── select-trigger.svelte │ │ │ │ ├── separator │ │ │ │ ├── index.ts │ │ │ │ └── separator.svelte │ │ │ │ ├── sheet │ │ │ │ ├── index.ts │ │ │ │ ├── sheet-content.svelte │ │ │ │ ├── sheet-description.svelte │ │ │ │ ├── sheet-footer.svelte │ │ │ │ ├── sheet-header.svelte │ │ │ │ ├── sheet-overlay.svelte │ │ │ │ ├── sheet-portal.svelte │ │ │ │ └── sheet-title.svelte │ │ │ │ ├── skeleton │ │ │ │ ├── index.ts │ │ │ │ └── skeleton.svelte │ │ │ │ ├── slider │ │ │ │ ├── index.ts │ │ │ │ └── slider.svelte │ │ │ │ ├── sonner │ │ │ │ ├── index.ts │ │ │ │ └── sonner.svelte │ │ │ │ ├── switch │ │ │ │ ├── index.ts │ │ │ │ └── switch.svelte │ │ │ │ ├── table │ │ │ │ ├── index.ts │ │ │ │ ├── table-body.svelte │ │ │ │ ├── table-caption.svelte │ │ │ │ ├── table-cell.svelte │ │ │ │ ├── table-footer.svelte │ │ │ │ ├── table-head.svelte │ │ │ │ ├── table-header.svelte │ │ │ │ ├── table-row.svelte │ │ │ │ └── table.svelte │ │ │ │ ├── tabs │ │ │ │ ├── index.ts │ │ │ │ ├── tabs-content.svelte │ │ │ │ ├── tabs-list.svelte │ │ │ │ └── tabs-trigger.svelte │ │ │ │ ├── textarea │ │ │ │ ├── index.ts │ │ │ │ └── textarea.svelte │ │ │ │ ├── toggle-group │ │ │ │ ├── index.ts │ │ │ │ ├── toggle-group-item.svelte │ │ │ │ └── toggle-group.svelte │ │ │ │ ├── toggle │ │ │ │ ├── index.ts │ │ │ │ └── toggle.svelte │ │ │ │ └── tooltip │ │ │ │ ├── index.ts │ │ │ │ └── tooltip-content.svelte │ │ ├── schema.ts │ │ ├── styles.ts │ │ └── themes.ts │ ├── stores │ │ ├── config.ts │ │ ├── index.ts │ │ └── package-manager.ts │ ├── types │ │ ├── docs.ts │ │ └── nav.ts │ └── utils.ts ├── routes │ ├── (app) │ │ ├── +layout.svelte │ │ ├── +page.server.ts │ │ ├── +page.svelte │ │ ├── blocks │ │ │ ├── +layout.svelte │ │ │ ├── +page.server.ts │ │ │ └── +page.svelte │ │ ├── colors │ │ │ └── +page.svelte │ │ ├── components │ │ │ └── +page.ts │ │ ├── docs │ │ │ ├── +layout.server.ts │ │ │ ├── +layout.svelte │ │ │ ├── +page.svelte │ │ │ ├── +page.ts │ │ │ └── [...slug] │ │ │ │ ├── +page.svelte │ │ │ │ └── +page.ts │ │ ├── examples │ │ │ ├── +layout.svelte │ │ │ ├── +page.svelte │ │ │ ├── +page.ts │ │ │ ├── authentication │ │ │ │ ├── (components) │ │ │ │ │ └── user-auth-form.svelte │ │ │ │ ├── +page.svelte │ │ │ │ └── +page.ts │ │ │ ├── cards │ │ │ │ ├── (components) │ │ │ │ │ ├── cookie-settings.svelte │ │ │ │ │ ├── create-account.svelte │ │ │ │ │ ├── demo-container.svelte │ │ │ │ │ ├── github.svelte │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── notifications.svelte │ │ │ │ │ ├── payment-method.svelte │ │ │ │ │ ├── report-issue.svelte │ │ │ │ │ ├── share.svelte │ │ │ │ │ └── team-members.svelte │ │ │ │ ├── +page.svelte │ │ │ │ └── +page.ts │ │ │ ├── dashboard │ │ │ │ ├── +page.svelte │ │ │ │ └── +page.ts │ │ │ ├── data-table │ │ │ │ ├── +page.svelte │ │ │ │ ├── data-table-actions.svelte │ │ │ │ ├── data-table-checkbox.svelte │ │ │ │ └── data-table.svelte │ │ │ ├── forms │ │ │ │ ├── (components) │ │ │ │ │ └── sidebar-nav.svelte │ │ │ │ ├── +layout.svelte │ │ │ │ ├── +page.server.ts │ │ │ │ ├── +page.svelte │ │ │ │ ├── account │ │ │ │ │ ├── +page.server.ts │ │ │ │ │ ├── +page.svelte │ │ │ │ │ └── account-form.svelte │ │ │ │ ├── appearance │ │ │ │ │ ├── +page.server.ts │ │ │ │ │ ├── +page.svelte │ │ │ │ │ └── appearance-form.svelte │ │ │ │ ├── display │ │ │ │ │ ├── +page.server.ts │ │ │ │ │ ├── +page.svelte │ │ │ │ │ └── display-form.svelte │ │ │ │ ├── notifications │ │ │ │ │ ├── +page.server.ts │ │ │ │ │ ├── +page.svelte │ │ │ │ │ └── notifications-form.svelte │ │ │ │ └── profile-form.svelte │ │ │ ├── mail │ │ │ │ ├── (components) │ │ │ │ │ ├── account-switcher.svelte │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── gmail.svelte │ │ │ │ │ │ ├── icloud.svelte │ │ │ │ │ │ └── vercel.svelte │ │ │ │ │ ├── mail-display.svelte │ │ │ │ │ ├── mail-list.svelte │ │ │ │ │ ├── mail.svelte │ │ │ │ │ └── nav.svelte │ │ │ │ ├── +page.server.ts │ │ │ │ ├── +page.svelte │ │ │ │ ├── config.ts │ │ │ │ ├── data.ts │ │ │ │ ├── icons.ts │ │ │ │ ├── store.ts │ │ │ │ └── utils.ts │ │ │ ├── music │ │ │ │ ├── (components) │ │ │ │ │ ├── album-artwork.svelte │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── menu.svelte │ │ │ │ │ ├── podcast-empty-placeholder.svelte │ │ │ │ │ └── sidebar.svelte │ │ │ │ ├── (data) │ │ │ │ │ ├── albums.ts │ │ │ │ │ └── playlists.ts │ │ │ │ └── +page.svelte │ │ │ ├── playground │ │ │ │ ├── (components) │ │ │ │ │ ├── code-viewer.svelte │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── max-length-selector.svelte │ │ │ │ │ ├── model-item.svelte │ │ │ │ │ ├── model-selector.svelte │ │ │ │ │ ├── preset-actions.svelte │ │ │ │ │ ├── preset-save.svelte │ │ │ │ │ ├── preset-selector.svelte │ │ │ │ │ ├── preset-share.svelte │ │ │ │ │ ├── temperature-selector.svelte │ │ │ │ │ └── top-p-selector.svelte │ │ │ │ ├── (data) │ │ │ │ │ ├── models.ts │ │ │ │ │ └── presets.ts │ │ │ │ └── +page.svelte │ │ │ └── tasks │ │ │ │ ├── (components) │ │ │ │ ├── data-table-checkbox.svelte │ │ │ │ ├── data-table-column-header.svelte │ │ │ │ ├── data-table-faceted-filter.svelte │ │ │ │ ├── data-table-pagination.svelte │ │ │ │ ├── data-table-priority-cell.svelte │ │ │ │ ├── data-table-row-actions.svelte │ │ │ │ ├── data-table-status-cell.svelte │ │ │ │ ├── data-table-title-cell.svelte │ │ │ │ ├── data-table-toolbar.svelte │ │ │ │ ├── data-table-view-options.svelte │ │ │ │ ├── data-table.svelte │ │ │ │ ├── index.ts │ │ │ │ └── user-nav.svelte │ │ │ │ ├── (data) │ │ │ │ ├── data.ts │ │ │ │ ├── schemas.ts │ │ │ │ └── tasks.json │ │ │ │ └── +page.svelte │ │ ├── repro │ │ │ └── +page.ts │ │ ├── sink │ │ │ └── +page.svelte │ │ └── themes │ │ │ └── +page.svelte │ ├── (blocks) │ │ └── blocks │ │ │ └── [style] │ │ │ └── [name] │ │ │ ├── +page.server.ts │ │ │ └── +page.svelte │ └── +layout.svelte └── styles │ ├── carbon.pcss │ ├── dark.ts │ ├── globals.css │ └── markdown.pcss ├── static ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── avatars │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ └── 05.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── fonts │ └── Geist │ │ ├── LICENSE.TXT │ │ └── geist.woff2 ├── images │ ├── placeholder-logo.svg │ ├── placeholder-user.jpg │ └── placeholder.svg ├── og.png ├── registry │ ├── colors │ │ ├── gray.json │ │ ├── index.json │ │ ├── lime.json │ │ ├── neutral.json │ │ ├── slate.json │ │ ├── stone.json │ │ └── zinc.json │ ├── index.json │ ├── styles │ │ ├── default-js │ │ │ ├── accordion.json │ │ │ ├── alert-dialog.json │ │ │ ├── alert.json │ │ │ ├── aspect-ratio.json │ │ │ ├── avatar.json │ │ │ ├── badge.json │ │ │ ├── breadcrumb.json │ │ │ ├── button.json │ │ │ ├── calendar.json │ │ │ ├── card.json │ │ │ ├── carousel.json │ │ │ ├── checkbox.json │ │ │ ├── collapsible.json │ │ │ ├── command.json │ │ │ ├── context-menu.json │ │ │ ├── dialog.json │ │ │ ├── drawer.json │ │ │ ├── dropdown-menu.json │ │ │ ├── form.json │ │ │ ├── hover-card.json │ │ │ ├── input.json │ │ │ ├── label.json │ │ │ ├── menubar.json │ │ │ ├── pagination.json │ │ │ ├── popover.json │ │ │ ├── progress.json │ │ │ ├── radio-group.json │ │ │ ├── range-calendar.json │ │ │ ├── resizable.json │ │ │ ├── scroll-area.json │ │ │ ├── select.json │ │ │ ├── separator.json │ │ │ ├── sheet.json │ │ │ ├── skeleton.json │ │ │ ├── slider.json │ │ │ ├── sonner.json │ │ │ ├── switch.json │ │ │ ├── table.json │ │ │ ├── tabs.json │ │ │ ├── textarea.json │ │ │ ├── toggle-group.json │ │ │ ├── toggle.json │ │ │ └── tooltip.json │ │ ├── default │ │ │ ├── accordion.json │ │ │ ├── alert-dialog.json │ │ │ ├── alert.json │ │ │ ├── aspect-ratio.json │ │ │ ├── avatar.json │ │ │ ├── badge.json │ │ │ ├── breadcrumb.json │ │ │ ├── button.json │ │ │ ├── calendar.json │ │ │ ├── card.json │ │ │ ├── carousel.json │ │ │ ├── checkbox.json │ │ │ ├── collapsible.json │ │ │ ├── command.json │ │ │ ├── context-menu.json │ │ │ ├── dialog.json │ │ │ ├── drawer.json │ │ │ ├── dropdown-menu.json │ │ │ ├── form.json │ │ │ ├── hover-card.json │ │ │ ├── input.json │ │ │ ├── label.json │ │ │ ├── menubar.json │ │ │ ├── pagination.json │ │ │ ├── popover.json │ │ │ ├── progress.json │ │ │ ├── radio-group.json │ │ │ ├── range-calendar.json │ │ │ ├── resizable.json │ │ │ ├── scroll-area.json │ │ │ ├── select.json │ │ │ ├── separator.json │ │ │ ├── sheet.json │ │ │ ├── skeleton.json │ │ │ ├── slider.json │ │ │ ├── sonner.json │ │ │ ├── switch.json │ │ │ ├── table.json │ │ │ ├── tabs.json │ │ │ ├── textarea.json │ │ │ ├── toggle-group.json │ │ │ ├── toggle.json │ │ │ └── tooltip.json │ │ ├── index.json │ │ ├── new-york-js │ │ │ ├── accordion.json │ │ │ ├── alert-dialog.json │ │ │ ├── alert.json │ │ │ ├── aspect-ratio.json │ │ │ ├── avatar.json │ │ │ ├── badge.json │ │ │ ├── breadcrumb.json │ │ │ ├── button.json │ │ │ ├── calendar.json │ │ │ ├── card.json │ │ │ ├── carousel.json │ │ │ ├── checkbox.json │ │ │ ├── collapsible.json │ │ │ ├── command.json │ │ │ ├── context-menu.json │ │ │ ├── dialog.json │ │ │ ├── drawer.json │ │ │ ├── dropdown-menu.json │ │ │ ├── form.json │ │ │ ├── hover-card.json │ │ │ ├── input.json │ │ │ ├── label.json │ │ │ ├── menubar.json │ │ │ ├── pagination.json │ │ │ ├── popover.json │ │ │ ├── progress.json │ │ │ ├── radio-group.json │ │ │ ├── range-calendar.json │ │ │ ├── resizable.json │ │ │ ├── scroll-area.json │ │ │ ├── select.json │ │ │ ├── separator.json │ │ │ ├── sheet.json │ │ │ ├── skeleton.json │ │ │ ├── slider.json │ │ │ ├── sonner.json │ │ │ ├── switch.json │ │ │ ├── table.json │ │ │ ├── tabs.json │ │ │ ├── textarea.json │ │ │ ├── toggle-group.json │ │ │ ├── toggle.json │ │ │ └── tooltip.json │ │ └── new-york │ │ │ ├── accordion.json │ │ │ ├── alert-dialog.json │ │ │ ├── alert.json │ │ │ ├── aspect-ratio.json │ │ │ ├── avatar.json │ │ │ ├── badge.json │ │ │ ├── breadcrumb.json │ │ │ ├── button.json │ │ │ ├── calendar.json │ │ │ ├── card.json │ │ │ ├── carousel.json │ │ │ ├── checkbox.json │ │ │ ├── collapsible.json │ │ │ ├── command.json │ │ │ ├── context-menu.json │ │ │ ├── dialog.json │ │ │ ├── drawer.json │ │ │ ├── dropdown-menu.json │ │ │ ├── form.json │ │ │ ├── hover-card.json │ │ │ ├── input.json │ │ │ ├── label.json │ │ │ ├── menubar.json │ │ │ ├── pagination.json │ │ │ ├── popover.json │ │ │ ├── progress.json │ │ │ ├── radio-group.json │ │ │ ├── range-calendar.json │ │ │ ├── resizable.json │ │ │ ├── scroll-area.json │ │ │ ├── select.json │ │ │ ├── separator.json │ │ │ ├── sheet.json │ │ │ ├── skeleton.json │ │ │ ├── slider.json │ │ │ ├── sonner.json │ │ │ ├── switch.json │ │ │ ├── table.json │ │ │ ├── tabs.json │ │ │ ├── textarea.json │ │ │ ├── toggle-group.json │ │ │ ├── toggle.json │ │ │ └── tooltip.json │ ├── themes.css │ └── themes │ │ ├── gray.json │ │ ├── neutral.json │ │ ├── slate.json │ │ ├── stone.json │ │ └── zinc.json ├── schema.json └── site.webmanifest ├── svelte.config.js ├── tailwind.config.js ├── tests └── test.ts ├── tsconfig.json └── vite.config.ts /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-documentation_change.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/.github/ISSUE_TEMPLATE/1-documentation_change.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/.github/ISSUE_TEMPLATE/2-feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3-bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/.github/ISSUE_TEMPLATE/3-bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/reproduire/needs-reproduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/.github/reproduire/needs-reproduction.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20.15.1 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/package.json -------------------------------------------------------------------------------- /packages/cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/.gitignore -------------------------------------------------------------------------------- /packages/cli/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/.prettierignore -------------------------------------------------------------------------------- /packages/cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/CHANGELOG.md -------------------------------------------------------------------------------- /packages/cli/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/LICENSE.md -------------------------------------------------------------------------------- /packages/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/README.md -------------------------------------------------------------------------------- /packages/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/package.json -------------------------------------------------------------------------------- /packages/cli/src/commands/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/src/commands/add.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/src/commands/index.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/src/commands/init.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/src/commands/update.ts -------------------------------------------------------------------------------- /packages/cli/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/src/index.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/auto-detect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/src/utils/auto-detect.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/src/utils/errors.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/get-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/src/utils/get-config.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/get-env-proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/src/utils/get-env-proxy.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/get-package-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/src/utils/get-package-info.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/prompt-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/src/utils/prompt-helpers.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/src/utils/prompts.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/registry/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/src/utils/registry/index.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/registry/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/src/utils/registry/schema.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/resolve-imports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/src/utils/resolve-imports.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/sveltekit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/src/utils/sveltekit.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/src/utils/templates.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/src/utils/transformers.ts -------------------------------------------------------------------------------- /packages/cli/test/commands/init.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/commands/init.spec.ts -------------------------------------------------------------------------------- /packages/cli/test/fixtures/colors/neutral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/colors/neutral.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/colors/slate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/colors/slate.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/colors/stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/colors/stone.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/colors/zinc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/colors/zinc.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-full/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/config-full/components.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-full/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/config-full/package.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-full/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/config-full/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-invalid/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/config-invalid/components.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-invalid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/config-invalid/package.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-invalid/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/config-invalid/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-jsconfig/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/config-jsconfig/components.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-jsconfig/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/config-jsconfig/jsconfig.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-jsconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/config-jsconfig/package.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-none/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/config-none/package.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-none/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/config-none/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-partial/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/config-partial/components.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-partial/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/config-partial/package.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-partial/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/config-partial/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-vite/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/config-vite/components.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-vite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/config-vite/package.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/config-vite/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/config-vite/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/project-bun/bun.lockb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/cli/test/fixtures/project-bun/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/project-bun/package.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/project-npm/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/project-npm/package-lock.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/project-npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/project-npm/package.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/project-pnpm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/project-pnpm/package.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/project-pnpm/pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '6.0' 2 | -------------------------------------------------------------------------------- /packages/cli/test/fixtures/project-yarn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/fixtures/project-yarn/package.json -------------------------------------------------------------------------------- /packages/cli/test/fixtures/project-yarn/yarn.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/cli/test/utils/get-config.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/test/utils/get-config.spec.ts -------------------------------------------------------------------------------- /packages/cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/packages/cli/tsup.config.ts -------------------------------------------------------------------------------- /playgrounds/playground-js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-js/.gitignore -------------------------------------------------------------------------------- /playgrounds/playground-js/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /playgrounds/playground-js/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-js/.prettierignore -------------------------------------------------------------------------------- /playgrounds/playground-js/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-js/.prettierrc -------------------------------------------------------------------------------- /playgrounds/playground-js/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-js/CHANGELOG.md -------------------------------------------------------------------------------- /playgrounds/playground-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-js/README.md -------------------------------------------------------------------------------- /playgrounds/playground-js/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-js/jsconfig.json -------------------------------------------------------------------------------- /playgrounds/playground-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-js/package.json -------------------------------------------------------------------------------- /playgrounds/playground-js/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-js/postcss.config.cjs -------------------------------------------------------------------------------- /playgrounds/playground-js/reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-js/reset.js -------------------------------------------------------------------------------- /playgrounds/playground-js/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-js/src/app.html -------------------------------------------------------------------------------- /playgrounds/playground-js/src/app.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-js/src/app.pcss -------------------------------------------------------------------------------- /playgrounds/playground-js/src/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-js/src/lib/index.js -------------------------------------------------------------------------------- /playgrounds/playground-js/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-js/src/routes/+layout.svelte -------------------------------------------------------------------------------- /playgrounds/playground-js/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-js/src/routes/+page.svelte -------------------------------------------------------------------------------- /playgrounds/playground-js/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-js/static/favicon.png -------------------------------------------------------------------------------- /playgrounds/playground-js/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-js/svelte.config.js -------------------------------------------------------------------------------- /playgrounds/playground-js/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-js/tailwind.config.cjs -------------------------------------------------------------------------------- /playgrounds/playground-js/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-js/vite.config.js -------------------------------------------------------------------------------- /playgrounds/playground-ts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-ts/.gitignore -------------------------------------------------------------------------------- /playgrounds/playground-ts/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /playgrounds/playground-ts/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-ts/.prettierignore -------------------------------------------------------------------------------- /playgrounds/playground-ts/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-ts/.prettierrc -------------------------------------------------------------------------------- /playgrounds/playground-ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-ts/README.md -------------------------------------------------------------------------------- /playgrounds/playground-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-ts/package.json -------------------------------------------------------------------------------- /playgrounds/playground-ts/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-ts/postcss.config.cjs -------------------------------------------------------------------------------- /playgrounds/playground-ts/reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-ts/reset.js -------------------------------------------------------------------------------- /playgrounds/playground-ts/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-ts/src/app.d.ts -------------------------------------------------------------------------------- /playgrounds/playground-ts/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-ts/src/app.html -------------------------------------------------------------------------------- /playgrounds/playground-ts/src/app.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-ts/src/app.pcss -------------------------------------------------------------------------------- /playgrounds/playground-ts/src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-ts/src/index.test.ts -------------------------------------------------------------------------------- /playgrounds/playground-ts/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-ts/src/lib/index.ts -------------------------------------------------------------------------------- /playgrounds/playground-ts/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-ts/src/routes/+layout.svelte -------------------------------------------------------------------------------- /playgrounds/playground-ts/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-ts/src/routes/+page.svelte -------------------------------------------------------------------------------- /playgrounds/playground-ts/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-ts/static/favicon.png -------------------------------------------------------------------------------- /playgrounds/playground-ts/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-ts/svelte.config.js -------------------------------------------------------------------------------- /playgrounds/playground-ts/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-ts/tailwind.config.cjs -------------------------------------------------------------------------------- /playgrounds/playground-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-ts/tsconfig.json -------------------------------------------------------------------------------- /playgrounds/playground-ts/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/playgrounds/playground-ts/vite.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /sites/docs/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/.env.example -------------------------------------------------------------------------------- /sites/docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/.gitignore -------------------------------------------------------------------------------- /sites/docs/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/.prettierignore -------------------------------------------------------------------------------- /sites/docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/CHANGELOG.md -------------------------------------------------------------------------------- /sites/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/README.md -------------------------------------------------------------------------------- /sites/docs/mdsx.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/mdsx.config.js -------------------------------------------------------------------------------- /sites/docs/other/code-block-prettier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/other/code-block-prettier.js -------------------------------------------------------------------------------- /sites/docs/other/themes/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/other/themes/dark.json -------------------------------------------------------------------------------- /sites/docs/other/themes/light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/other/themes/light.json -------------------------------------------------------------------------------- /sites/docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/package.json -------------------------------------------------------------------------------- /sites/docs/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/playwright.config.ts -------------------------------------------------------------------------------- /sites/docs/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/postcss.config.cjs -------------------------------------------------------------------------------- /sites/docs/scripts/build-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/scripts/build-registry.ts -------------------------------------------------------------------------------- /sites/docs/scripts/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/scripts/registry.ts -------------------------------------------------------------------------------- /sites/docs/scripts/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/scripts/templates.ts -------------------------------------------------------------------------------- /sites/docs/scripts/tmp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/scripts/tmp.ts -------------------------------------------------------------------------------- /sites/docs/scripts/transform-chunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/scripts/transform-chunks.ts -------------------------------------------------------------------------------- /sites/docs/scripts/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/scripts/transformers.ts -------------------------------------------------------------------------------- /sites/docs/scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/scripts/tsconfig.json -------------------------------------------------------------------------------- /sites/docs/src/__registry__/blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/__registry__/blocks.js -------------------------------------------------------------------------------- /sites/docs/src/__registry__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/__registry__/index.js -------------------------------------------------------------------------------- /sites/docs/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/app.d.ts -------------------------------------------------------------------------------- /sites/docs/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/app.html -------------------------------------------------------------------------------- /sites/docs/src/content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/about.md -------------------------------------------------------------------------------- /sites/docs/src/content/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/changelog.md -------------------------------------------------------------------------------- /sites/docs/src/content/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/cli.md -------------------------------------------------------------------------------- /sites/docs/src/content/components-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components-json.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/accordion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/accordion.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/alert-dialog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/alert-dialog.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/alert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/alert.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/aspect-ratio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/aspect-ratio.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/avatar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/avatar.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/badge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/badge.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/breadcrumb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/breadcrumb.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/button.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/calendar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/calendar.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/card.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/carousel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/carousel.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/checkbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/checkbox.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/collapsible.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/collapsible.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/combobox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/combobox.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/command.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/context-menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/context-menu.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/data-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/data-table.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/date-picker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/date-picker.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/dialog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/dialog.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/drawer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/drawer.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/dropdown-menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/dropdown-menu.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/form.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/hover-card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/hover-card.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/input.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/label.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/menubar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/menubar.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/pagination.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/popover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/popover.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/progress.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/radio-group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/radio-group.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/range-calendar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/range-calendar.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/resizable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/resizable.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/scroll-area.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/scroll-area.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/select.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/separator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/separator.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/sheet.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/skeleton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/skeleton.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/slider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/slider.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/sonner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/sonner.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/switch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/switch.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/table.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/tabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/tabs.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/textarea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/textarea.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/toggle-group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/toggle-group.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/toggle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/toggle.md -------------------------------------------------------------------------------- /sites/docs/src/content/components/tooltip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/components/tooltip.md -------------------------------------------------------------------------------- /sites/docs/src/content/dark-mode/astro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/dark-mode/astro.md -------------------------------------------------------------------------------- /sites/docs/src/content/dark-mode/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/dark-mode/index.md -------------------------------------------------------------------------------- /sites/docs/src/content/dark-mode/svelte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/dark-mode/svelte.md -------------------------------------------------------------------------------- /sites/docs/src/content/figma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/figma.md -------------------------------------------------------------------------------- /sites/docs/src/content/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/index.md -------------------------------------------------------------------------------- /sites/docs/src/content/installation/astro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/installation/astro.md -------------------------------------------------------------------------------- /sites/docs/src/content/installation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/installation/index.md -------------------------------------------------------------------------------- /sites/docs/src/content/installation/manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/installation/manual.md -------------------------------------------------------------------------------- /sites/docs/src/content/installation/sveltekit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/installation/sveltekit.md -------------------------------------------------------------------------------- /sites/docs/src/content/installation/vite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/installation/vite.md -------------------------------------------------------------------------------- /sites/docs/src/content/theming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/theming.md -------------------------------------------------------------------------------- /sites/docs/src/content/typography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/content/typography.md -------------------------------------------------------------------------------- /sites/docs/src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/index.test.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/blocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/blocks.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/components/colors/color-card.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/colors/color-card.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/colors/color-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/colors/color-data.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/announcement.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/announcement.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/block-chunk.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/block-chunk.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/block-preview.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/block-preview.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/block-toolbar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/block-toolbar.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/block-wrapper.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/block-wrapper.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/callout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/callout.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/carbon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/carbon.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/charts/activity.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/charts/activity.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/charts/bar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/charts/bar.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/charts/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/charts/helpers.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/charts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/charts/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/charts/metric.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/charts/metric.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/charts/revenue.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/charts/revenue.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/charts/subscription.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/charts/subscription.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/code-block-wrapper.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/code-block-wrapper.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/command-menu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/command-menu.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/component-example.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/component-example.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/component-preview.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/component-preview.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/component-source.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/component-source.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/copy-button.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/copy-button.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/dashboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/dashboard/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/dashboard/main-nav.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/dashboard/main-nav.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/dashboard/overview.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/dashboard/overview.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/dashboard/search.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/dashboard/search.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/dashboard/user-nav.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/dashboard/user-nav.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/docs-pager.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/docs-pager.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/examples-nav/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/examples-nav/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/forms/form-preview.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/forms/form-preview.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/forms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/forms/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/hex-to-channels.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/hex-to-channels.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/icons/apple.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/icons/apple.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/icons/aria.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/icons/aria.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/icons/github.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/icons/github.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/icons/google.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/icons/google.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/icons/hamburger.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/icons/hamburger.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/icons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/icons/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/icons/logo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/icons/logo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/icons/npm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/icons/npm.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/icons/paypal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/icons/paypal.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/icons/pnpm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/icons/pnpm.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/icons/radix-svelte.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/icons/radix-svelte.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/icons/radix.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/icons/radix.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/icons/svelte-logo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/icons/svelte-logo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/icons/tailwind.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/icons/tailwind.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/icons/twitter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/icons/twitter.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/icons/yarn.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/icons/yarn.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/linked-card.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/linked-card.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/manual-install.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/manual-install.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/markdown/a.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/markdown/a.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/markdown/blockquote.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/markdown/blockquote.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/markdown/blueprint.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/markdown/blueprint.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/markdown/h1.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/markdown/h1.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/markdown/h2.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/markdown/h2.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/markdown/h3.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/markdown/h3.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/markdown/h4.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/markdown/h4.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/markdown/h5.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/markdown/h5.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/markdown/h6.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/markdown/h6.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/markdown/hr.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/markdown/hr.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/markdown/img.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/markdown/img.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/markdown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/markdown/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/markdown/li.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/markdown/li.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/markdown/ol.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/markdown/ol.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/markdown/p.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/markdown/p.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/markdown/pre.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/markdown/pre.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/markdown/table.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/markdown/table.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/markdown/td.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/markdown/td.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/markdown/th.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/markdown/th.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/markdown/tr.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/markdown/tr.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/markdown/ul.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/markdown/ul.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/metadata.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/metadata.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/mode-toggle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/mode-toggle.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/nav/docs-sidebar-nav.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/nav/docs-sidebar-nav.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/nav/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/nav/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/nav/main-nav.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/nav/main-nav.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/nav/mobile-link.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/nav/mobile-link.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/nav/mobile-nav.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/nav/mobile-nav.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/page-header/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/page-header/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/pm-add-comp.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/pm-add-comp.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/pm-block.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/pm-block.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/pm-create.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/pm-create.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/pm-execute.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/pm-execute.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/pm-install.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/pm-install.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/site-footer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/site-footer.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/site-header.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/site-header.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/step.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/step.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/steps.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/steps.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/style-switcher.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/style-switcher.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/style-wrapper.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/style-wrapper.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/svelte-5-banner.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/svelte-5-banner.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/table-of-contents.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/table-of-contents.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/tailwind-indicator.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/tailwind-indicator.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/theme-customizer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/theme-customizer/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/theme-wrapper.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/theme-wrapper.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/components/docs/tree.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/components/docs/tree.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/config/blocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/config/blocks.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/config/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/config/components.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/config/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/config/docs.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/config/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/config/site.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/img/blocks/dashboard-1-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/img/blocks/dashboard-1-dark.jpg -------------------------------------------------------------------------------- /sites/docs/src/lib/img/blocks/dashboard-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/img/blocks/dashboard-1.jpg -------------------------------------------------------------------------------- /sites/docs/src/lib/img/blocks/dashboard-2-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/img/blocks/dashboard-2-dark.jpg -------------------------------------------------------------------------------- /sites/docs/src/lib/img/blocks/dashboard-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/img/blocks/dashboard-2.jpg -------------------------------------------------------------------------------- /sites/docs/src/lib/img/blocks/dashboard-3-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/img/blocks/dashboard-3-dark.jpg -------------------------------------------------------------------------------- /sites/docs/src/lib/img/blocks/dashboard-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/img/blocks/dashboard-3.jpg -------------------------------------------------------------------------------- /sites/docs/src/lib/img/examples/authentication-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/img/examples/authentication-dark.png -------------------------------------------------------------------------------- /sites/docs/src/lib/img/examples/authentication-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/img/examples/authentication-light.png -------------------------------------------------------------------------------- /sites/docs/src/lib/img/examples/cards-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/img/examples/cards-dark.png -------------------------------------------------------------------------------- /sites/docs/src/lib/img/examples/cards-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/img/examples/cards-light.png -------------------------------------------------------------------------------- /sites/docs/src/lib/img/examples/dashboard-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/img/examples/dashboard-dark.png -------------------------------------------------------------------------------- /sites/docs/src/lib/img/examples/dashboard-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/img/examples/dashboard-light.png -------------------------------------------------------------------------------- /sites/docs/src/lib/img/examples/forms-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/img/examples/forms-dark.png -------------------------------------------------------------------------------- /sites/docs/src/lib/img/examples/forms-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/img/examples/forms-light.png -------------------------------------------------------------------------------- /sites/docs/src/lib/img/examples/mail-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/img/examples/mail-dark.png -------------------------------------------------------------------------------- /sites/docs/src/lib/img/examples/mail-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/img/examples/mail-light.png -------------------------------------------------------------------------------- /sites/docs/src/lib/img/examples/music-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/img/examples/music-dark.png -------------------------------------------------------------------------------- /sites/docs/src/lib/img/examples/music-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/img/examples/music-light.png -------------------------------------------------------------------------------- /sites/docs/src/lib/img/examples/playground-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/img/examples/playground-dark.png -------------------------------------------------------------------------------- /sites/docs/src/lib/img/examples/playground-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/img/examples/playground-light.png -------------------------------------------------------------------------------- /sites/docs/src/lib/img/examples/tasks-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/img/examples/tasks-dark.png -------------------------------------------------------------------------------- /sites/docs/src/lib/img/examples/tasks-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/img/examples/tasks-light.png -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/colors.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/block/dashboard-01.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/block/dashboard-01.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/block/dashboard-02.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/block/dashboard-02.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/block/dashboard-03.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/block/dashboard-03.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/block/dashboard-04.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/block/dashboard-04.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/block/dashboard-05.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/block/dashboard-05.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/block/dashboard-06.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/block/dashboard-06.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/block/dashboard-07.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/block/dashboard-07.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/alert-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/alert-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/avatar-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/avatar-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/badge-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/badge-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/button-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/button-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/button-icon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/button-icon.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/button-link.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/button-link.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/card-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/card-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/cards/all.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/cards/all.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/cards/chat.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/cards/chat.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/cards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/cards/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/cards/share.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/cards/share.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/cards/stats.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/cards/stats.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/dialog-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/dialog-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/drawer-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/drawer-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/form-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/form-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/input-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/input-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/input-file.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/input-file.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/label-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/label-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/select-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/select-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/select-form.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/select-form.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/sheet-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/sheet-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/sheet-side.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/sheet-side.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/slider-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/slider-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/sonner-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/sonner-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/switch-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/switch-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/switch-form.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/switch-form.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/table-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/table-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/tabs-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/tabs-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/toggle-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/toggle-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/toggle-lg.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/toggle-lg.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/example/toggle-sm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/example/toggle-sm.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/accordion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/accordion/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/alert-dialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/alert-dialog/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/alert/alert.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/alert/alert.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/alert/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/alert/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/aspect-ratio/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/aspect-ratio/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/avatar/avatar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/avatar/avatar.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/avatar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/avatar/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/badge/badge.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/badge/badge.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/badge/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/badge/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/breadcrumb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/breadcrumb/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/button/button.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/button/button.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/button/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/calendar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/calendar/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/card/card-footer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/card/card-footer.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/card/card-header.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/card/card-header.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/card/card-title.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/card/card-title.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/card/card.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/card/card.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/card/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/card/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/carousel/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/carousel/context.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/carousel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/carousel/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/checkbox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/checkbox/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/collapsible/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/collapsible/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/command/command.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/command/command.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/command/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/command/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/context-menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/context-menu/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/dialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/dialog/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/drawer/drawer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/drawer/drawer.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/drawer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/drawer/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/dropdown-menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/dropdown-menu/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/form/form-button.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/form/form-button.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/form/form-field.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/form/form-field.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/form/form-label.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/form/form-label.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/form/form-legend.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/form/form-legend.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/form/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/hover-card/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/hover-card/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/input/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/input/input.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/input/input.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/label/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/label/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/label/label.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/label/label.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/menubar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/menubar/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/menubar/menubar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/menubar/menubar.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/pagination/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/pagination/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/popover/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/popover/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/progress/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/progress/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/radio-group/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/radio-group/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/range-calendar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/range-calendar/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/resizable/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/resizable/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/scroll-area/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/scroll-area/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/select/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/select/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/separator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/separator/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/sheet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/sheet/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/skeleton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/skeleton/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/slider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/slider/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/slider/slider.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/slider/slider.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/sonner/index.ts: -------------------------------------------------------------------------------- 1 | export { default as Toaster } from "./sonner.svelte"; 2 | -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/sonner/sonner.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/sonner/sonner.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/switch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/switch/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/switch/switch.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/switch/switch.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/table/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/table/table-body.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/table/table-body.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/table/table-cell.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/table/table-cell.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/table/table-head.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/table/table-head.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/table/table-row.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/table/table-row.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/table/table.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/table/table.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/tabs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/tabs/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/tabs/tabs-list.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/tabs/tabs-list.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/textarea/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/textarea/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/toggle-group/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/toggle-group/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/toggle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/toggle/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/toggle/toggle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/toggle/toggle.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/default/ui/tooltip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/default/ui/tooltip/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/block/dashboard-01.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/block/dashboard-01.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/block/dashboard-02.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/block/dashboard-02.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/block/dashboard-03.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/block/dashboard-03.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/block/dashboard-04.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/block/dashboard-04.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/block/dashboard-05.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/block/dashboard-05.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/block/dashboard-06.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/block/dashboard-06.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/block/dashboard-07.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/block/dashboard-07.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/example/alert-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/example/alert-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/example/badge-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/example/badge-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/example/card-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/example/card-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/example/cards/all.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/example/cards/all.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/example/cards/chat.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/example/cards/chat.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/example/cards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/example/cards/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/example/form-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/example/form-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/example/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/example/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/example/input-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/example/input-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/example/input-file.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/example/input-file.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/example/label-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/example/label-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/example/sheet-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/example/sheet-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/example/sheet-side.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/example/sheet-side.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/example/table-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/example/table-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/example/tabs-demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/example/tabs-demo.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/example/toggle-lg.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/example/toggle-lg.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/example/toggle-sm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/example/toggle-sm.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/accordion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/accordion/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/alert-dialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/alert-dialog/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/alert/alert.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/alert/alert.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/alert/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/alert/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/aspect-ratio/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/aspect-ratio/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/avatar/avatar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/avatar/avatar.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/avatar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/avatar/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/badge/badge.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/badge/badge.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/badge/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/badge/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/breadcrumb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/breadcrumb/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/button/button.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/button/button.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/button/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/calendar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/calendar/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/card/card-title.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/card/card-title.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/card/card.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/card/card.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/card/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/card/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/carousel/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/carousel/context.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/carousel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/carousel/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/checkbox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/checkbox/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/collapsible/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/collapsible/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/command/command.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/command/command.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/command/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/command/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/context-menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/context-menu/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/dialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/dialog/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/drawer/drawer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/drawer/drawer.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/drawer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/drawer/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/dropdown-menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/dropdown-menu/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/form/form-field.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/form/form-field.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/form/form-label.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/form/form-label.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/form/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/hover-card/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/hover-card/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/input/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/input/input.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/input/input.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/label/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/label/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/label/label.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/label/label.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/menubar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/menubar/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/pagination/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/pagination/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/popover/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/popover/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/progress/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/progress/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/resizable/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/resizable/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/select/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/select/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/separator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/separator/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/sheet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/sheet/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/skeleton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/skeleton/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/slider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/slider/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/sonner/index.ts: -------------------------------------------------------------------------------- 1 | export { default as Toaster } from "./sonner.svelte"; 2 | -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/switch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/switch/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/table/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/table/table.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/table/table.svelte -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/tabs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/tabs/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/textarea/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/textarea/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/toggle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/toggle/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/new-york/ui/tooltip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/new-york/ui/tooltip/index.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/schema.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/styles.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/registry/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/registry/themes.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/stores/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/stores/config.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/stores/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./config.js"; 2 | -------------------------------------------------------------------------------- /sites/docs/src/lib/stores/package-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/stores/package-manager.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/types/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/types/docs.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/types/nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/types/nav.ts -------------------------------------------------------------------------------- /sites/docs/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/lib/utils.ts -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/+layout.svelte -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/+page.server.ts -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/+page.svelte -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/blocks/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/blocks/+layout.svelte -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/blocks/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/blocks/+page.server.ts -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/blocks/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/blocks/+page.svelte -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/colors/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/colors/+page.svelte -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/components/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/components/+page.ts -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/docs/+layout.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/docs/+layout.server.ts -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/docs/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/docs/+layout.svelte -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/docs/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/docs/+page.svelte -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/docs/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/docs/+page.ts -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/docs/[...slug]/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/docs/[...slug]/+page.svelte -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/docs/[...slug]/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/docs/[...slug]/+page.ts -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/examples/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/examples/+layout.svelte -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/examples/+page.svelte: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/examples/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/examples/+page.ts -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/examples/cards/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/examples/cards/+page.svelte -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/examples/cards/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/examples/cards/+page.ts -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/examples/dashboard/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/examples/dashboard/+page.svelte -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/examples/dashboard/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/examples/dashboard/+page.ts -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/examples/forms/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/examples/forms/+layout.svelte -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/examples/forms/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/examples/forms/+page.server.ts -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/examples/forms/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/examples/forms/+page.svelte -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/examples/mail/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/examples/mail/+page.server.ts -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/examples/mail/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/examples/mail/+page.svelte -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/examples/mail/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/examples/mail/config.ts -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/examples/mail/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/examples/mail/data.ts -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/examples/mail/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/examples/mail/icons.ts -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/examples/mail/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/examples/mail/store.ts -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/examples/mail/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/examples/mail/utils.ts -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/examples/music/(data)/albums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/examples/music/(data)/albums.ts -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/examples/music/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/examples/music/+page.svelte -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/examples/tasks/(data)/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/examples/tasks/(data)/data.ts -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/examples/tasks/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/examples/tasks/+page.svelte -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/repro/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/repro/+page.ts -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/sink/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/sink/+page.svelte -------------------------------------------------------------------------------- /sites/docs/src/routes/(app)/themes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/(app)/themes/+page.svelte -------------------------------------------------------------------------------- /sites/docs/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/routes/+layout.svelte -------------------------------------------------------------------------------- /sites/docs/src/styles/carbon.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/styles/carbon.pcss -------------------------------------------------------------------------------- /sites/docs/src/styles/dark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/styles/dark.ts -------------------------------------------------------------------------------- /sites/docs/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/styles/globals.css -------------------------------------------------------------------------------- /sites/docs/src/styles/markdown.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/src/styles/markdown.pcss -------------------------------------------------------------------------------- /sites/docs/static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /sites/docs/static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /sites/docs/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/apple-touch-icon.png -------------------------------------------------------------------------------- /sites/docs/static/avatars/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/avatars/01.png -------------------------------------------------------------------------------- /sites/docs/static/avatars/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/avatars/02.png -------------------------------------------------------------------------------- /sites/docs/static/avatars/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/avatars/03.png -------------------------------------------------------------------------------- /sites/docs/static/avatars/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/avatars/04.png -------------------------------------------------------------------------------- /sites/docs/static/avatars/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/avatars/05.png -------------------------------------------------------------------------------- /sites/docs/static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/favicon-16x16.png -------------------------------------------------------------------------------- /sites/docs/static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/favicon-32x32.png -------------------------------------------------------------------------------- /sites/docs/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/favicon.ico -------------------------------------------------------------------------------- /sites/docs/static/fonts/Geist/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/fonts/Geist/LICENSE.TXT -------------------------------------------------------------------------------- /sites/docs/static/fonts/Geist/geist.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/fonts/Geist/geist.woff2 -------------------------------------------------------------------------------- /sites/docs/static/images/placeholder-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/images/placeholder-logo.svg -------------------------------------------------------------------------------- /sites/docs/static/images/placeholder-user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/images/placeholder-user.jpg -------------------------------------------------------------------------------- /sites/docs/static/images/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/images/placeholder.svg -------------------------------------------------------------------------------- /sites/docs/static/og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/og.png -------------------------------------------------------------------------------- /sites/docs/static/registry/colors/gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/colors/gray.json -------------------------------------------------------------------------------- /sites/docs/static/registry/colors/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/colors/index.json -------------------------------------------------------------------------------- /sites/docs/static/registry/colors/lime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/colors/lime.json -------------------------------------------------------------------------------- /sites/docs/static/registry/colors/neutral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/colors/neutral.json -------------------------------------------------------------------------------- /sites/docs/static/registry/colors/slate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/colors/slate.json -------------------------------------------------------------------------------- /sites/docs/static/registry/colors/stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/colors/stone.json -------------------------------------------------------------------------------- /sites/docs/static/registry/colors/zinc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/colors/zinc.json -------------------------------------------------------------------------------- /sites/docs/static/registry/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/index.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/accordion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/accordion.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/alert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/alert.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/avatar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/avatar.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/badge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/badge.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/button.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/calendar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/calendar.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/card.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/carousel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/carousel.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/checkbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/checkbox.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/command.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/dialog.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/drawer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/drawer.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/form.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/input.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/label.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/menubar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/menubar.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/popover.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/popover.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/progress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/progress.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/resizable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/resizable.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/select.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/separator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/separator.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/sheet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/sheet.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/skeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/skeleton.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/slider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/slider.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/sonner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/sonner.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/switch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/switch.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/table.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/tabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/tabs.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/textarea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/textarea.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/toggle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/toggle.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default-js/tooltip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default-js/tooltip.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/accordion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/accordion.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/alert-dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/alert-dialog.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/alert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/alert.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/aspect-ratio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/aspect-ratio.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/avatar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/avatar.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/badge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/badge.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/breadcrumb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/breadcrumb.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/button.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/calendar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/calendar.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/card.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/carousel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/carousel.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/checkbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/checkbox.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/collapsible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/collapsible.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/command.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/context-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/context-menu.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/dialog.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/drawer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/drawer.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/form.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/hover-card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/hover-card.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/input.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/label.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/menubar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/menubar.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/pagination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/pagination.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/popover.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/popover.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/progress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/progress.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/radio-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/radio-group.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/resizable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/resizable.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/scroll-area.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/scroll-area.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/select.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/separator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/separator.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/sheet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/sheet.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/skeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/skeleton.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/slider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/slider.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/sonner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/sonner.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/switch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/switch.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/table.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/tabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/tabs.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/textarea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/textarea.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/toggle-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/toggle-group.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/toggle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/toggle.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/default/tooltip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/default/tooltip.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/index.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/alert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/alert.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/avatar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/avatar.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/badge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/badge.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/button.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/calendar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/calendar.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/card.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/carousel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/carousel.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/checkbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/checkbox.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/command.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/dialog.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/drawer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/drawer.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/form.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/input.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/label.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/menubar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/menubar.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/popover.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/popover.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/progress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/progress.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/select.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/sheet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/sheet.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/skeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/skeleton.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/slider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/slider.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/sonner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/sonner.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/switch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/switch.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/table.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/tabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/tabs.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/textarea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/textarea.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/toggle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/toggle.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york-js/tooltip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york-js/tooltip.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/accordion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/accordion.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/alert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/alert.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/avatar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/avatar.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/badge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/badge.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/breadcrumb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/breadcrumb.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/button.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/calendar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/calendar.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/card.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/carousel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/carousel.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/checkbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/checkbox.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/collapsible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/collapsible.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/command.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/dialog.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/drawer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/drawer.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/form.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/hover-card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/hover-card.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/input.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/label.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/menubar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/menubar.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/pagination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/pagination.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/popover.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/popover.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/progress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/progress.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/radio-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/radio-group.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/resizable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/resizable.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/scroll-area.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/scroll-area.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/select.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/separator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/separator.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/sheet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/sheet.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/skeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/skeleton.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/slider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/slider.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/sonner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/sonner.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/switch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/switch.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/table.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/tabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/tabs.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/textarea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/textarea.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/toggle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/toggle.json -------------------------------------------------------------------------------- /sites/docs/static/registry/styles/new-york/tooltip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/styles/new-york/tooltip.json -------------------------------------------------------------------------------- /sites/docs/static/registry/themes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/themes.css -------------------------------------------------------------------------------- /sites/docs/static/registry/themes/gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/themes/gray.json -------------------------------------------------------------------------------- /sites/docs/static/registry/themes/neutral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/themes/neutral.json -------------------------------------------------------------------------------- /sites/docs/static/registry/themes/slate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/themes/slate.json -------------------------------------------------------------------------------- /sites/docs/static/registry/themes/stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/themes/stone.json -------------------------------------------------------------------------------- /sites/docs/static/registry/themes/zinc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/registry/themes/zinc.json -------------------------------------------------------------------------------- /sites/docs/static/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/schema.json -------------------------------------------------------------------------------- /sites/docs/static/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/static/site.webmanifest -------------------------------------------------------------------------------- /sites/docs/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/svelte.config.js -------------------------------------------------------------------------------- /sites/docs/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/tailwind.config.js -------------------------------------------------------------------------------- /sites/docs/tests/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/tests/test.ts -------------------------------------------------------------------------------- /sites/docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/tsconfig.json -------------------------------------------------------------------------------- /sites/docs/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdevops233/shadcn-svelte/HEAD/sites/docs/vite.config.ts --------------------------------------------------------------------------------