├── .gitignore ├── README.md ├── app ├── components │ └── [framework] │ │ └── [slug] │ │ ├── code-modal.tsx │ │ ├── component-examples.tsx │ │ ├── not-found.tsx │ │ └── page.tsx ├── globals.css ├── layout.tsx ├── loading.tsx ├── page.components.tsx ├── page.tsx └── r │ └── [frameworkCode] │ └── [componentIndex] │ └── [exampleIndex] │ └── route.ts ├── components.json ├── components ├── component-preview.tsx ├── header.tsx ├── open-graph-preview.tsx ├── registry │ ├── README.md │ ├── manifest │ │ ├── accordion.ts │ │ ├── angle-slider.ts │ │ ├── avatar.ts │ │ ├── carousel.ts │ │ ├── checkbox.ts │ │ ├── collapsible.ts │ │ ├── color-picker.ts │ │ ├── combobox.ts │ │ ├── date-picker.ts │ │ ├── dialog.ts │ │ ├── editable.ts │ │ ├── field.ts │ │ ├── file-upload.ts │ │ ├── floating-panel.ts │ │ ├── hover-card.ts │ │ ├── listbox.ts │ │ ├── menu.ts │ │ ├── number-input.ts │ │ ├── pagination.ts │ │ ├── password-input.ts │ │ ├── pin-input.ts │ │ ├── popover.ts │ │ ├── progress.ts │ │ ├── qr-code.ts │ │ ├── radio-group.ts │ │ ├── rating-group.ts │ │ ├── segment-group.ts │ │ ├── select.ts │ │ ├── signature-pad.ts │ │ ├── slider.ts │ │ ├── splitter.ts │ │ ├── steps.ts │ │ ├── switch.ts │ │ ├── tabs.ts │ │ ├── tags-input.ts │ │ ├── timer.ts │ │ ├── toast.ts │ │ ├── toggle-group.ts │ │ ├── toggle.ts │ │ ├── tooltip.ts │ │ ├── tour.ts │ │ └── tree-view.ts │ ├── react │ │ ├── accordion │ │ │ ├── multi-level-with-icon.tsx │ │ │ ├── multi-level.tsx │ │ │ ├── table-with-chevron.tsx │ │ │ ├── table-with-left-chevron.tsx │ │ │ ├── table-with-left-plus-minus.tsx │ │ │ ├── table-with-plus-minus.tsx │ │ │ ├── tabs-with-chevron.tsx │ │ │ ├── tabs-with-left-chevron.tsx │ │ │ ├── tabs-with-left-plus-minus.tsx │ │ │ ├── tabs-with-plus-minus.tsx │ │ │ ├── with-chevron.tsx │ │ │ ├── with-icon-and-chevron.tsx │ │ │ ├── with-icon-and-plus-minus.tsx │ │ │ ├── with-icon-sub-header-and-chevron.tsx │ │ │ ├── with-icon-sub-header-and-plus-minus.tsx │ │ │ ├── with-left-chevron.tsx │ │ │ ├── with-left-plus-minus.tsx │ │ │ ├── with-plus-minus.tsx │ │ │ ├── with-sub-header-and-chevron.tsx │ │ │ └── with-sub-header-and-plus-minus.tsx │ │ ├── angle-slider │ │ │ ├── with-adaptive-marks.tsx │ │ │ ├── with-knob.tsx │ │ │ ├── with-labeled-marks.tsx │ │ │ └── with-marks.tsx │ │ ├── avatar │ │ │ ├── basic.tsx │ │ │ ├── group-pill-outlined.tsx │ │ │ ├── group-pill-solid.tsx │ │ │ ├── group-with-count.tsx │ │ │ ├── group.tsx │ │ │ ├── rounded-square.tsx │ │ │ ├── trusted-by.tsx │ │ │ ├── with-badge-minimal.tsx │ │ │ ├── with-badge.tsx │ │ │ ├── with-fallback.tsx │ │ │ ├── with-icon-fallback.tsx │ │ │ ├── with-multiple-status.tsx │ │ │ ├── with-status-minimal.tsx │ │ │ ├── with-status.tsx │ │ │ └── with-verification.tsx │ │ ├── carousel │ │ │ ├── basic.tsx │ │ │ ├── cards.tsx │ │ │ ├── hero.tsx │ │ │ ├── infinite.tsx │ │ │ ├── minimal.tsx │ │ │ ├── testimonials.tsx │ │ │ ├── thumbnails.tsx │ │ │ ├── vertical.tsx │ │ │ └── with-autoplay.tsx │ │ ├── checkbox │ │ │ ├── basic.tsx │ │ │ ├── cards.tsx │ │ │ ├── colors.tsx │ │ │ ├── disabled.tsx │ │ │ ├── fancy-todo.tsx │ │ │ ├── indeterminate.tsx │ │ │ ├── simple-todo.tsx │ │ │ └── with-description.tsx │ │ ├── collapsible │ │ │ ├── basic.tsx │ │ │ ├── faq-style.tsx │ │ │ ├── styled.tsx │ │ │ ├── with-content.tsx │ │ │ └── with-icon.tsx │ │ ├── color-picker │ │ │ ├── basic.tsx │ │ │ ├── hue-wheel.tsx │ │ │ ├── inline.tsx │ │ │ └── with-presets.tsx │ │ ├── combobox │ │ │ ├── async.tsx │ │ │ ├── basic.tsx │ │ │ ├── grouping.tsx │ │ │ ├── multiple.tsx │ │ │ └── with-highlight.tsx │ │ ├── date-picker │ │ │ ├── appointment.tsx │ │ │ ├── basic.tsx │ │ │ ├── multiple.tsx │ │ │ ├── presets.tsx │ │ │ ├── pricing.tsx │ │ │ ├── range-presets.tsx │ │ │ ├── range.tsx │ │ │ ├── three-months.tsx │ │ │ ├── two-months.tsx │ │ │ ├── unavailable.tsx │ │ │ ├── with-button.tsx │ │ │ └── with-weeks.tsx │ │ ├── dialog │ │ │ ├── alert.tsx │ │ │ ├── card-details.tsx │ │ │ ├── checkout.tsx │ │ │ ├── choose-subscription.tsx │ │ │ ├── delete-project.tsx │ │ │ ├── edit-profile.tsx │ │ │ ├── feedback.tsx │ │ │ ├── invite-team.tsx │ │ │ ├── newsletter.tsx │ │ │ ├── rating.tsx │ │ │ ├── signin.tsx │ │ │ ├── signup.tsx │ │ │ ├── terms.tsx │ │ │ └── with-icon.tsx │ │ ├── editable │ │ │ ├── auto-resize.tsx │ │ │ ├── basic.tsx │ │ │ ├── double-click.tsx │ │ │ ├── inline-edit.tsx │ │ │ ├── profile-field.tsx │ │ │ ├── task-item.tsx │ │ │ ├── title-editor.tsx │ │ │ └── with-controls.tsx │ │ ├── field │ │ │ ├── required.tsx │ │ │ ├── search-with-loader.tsx │ │ │ ├── simple.tsx │ │ │ ├── with-character-limit.tsx │ │ │ ├── with-characters-left.tsx │ │ │ ├── with-clear-button.tsx │ │ │ ├── with-end-add-on.tsx │ │ │ ├── with-end-button.tsx │ │ │ ├── with-end-icon-button.tsx │ │ │ ├── with-end-icon.tsx │ │ │ ├── with-end-inline-button.tsx │ │ │ ├── with-end-select.tsx │ │ │ ├── with-error.tsx │ │ │ ├── with-helper-text.tsx │ │ │ ├── with-inset-label.tsx │ │ │ ├── with-label-animation.tsx │ │ │ ├── with-overlapping-label.tsx │ │ │ ├── with-start-add-on.tsx │ │ │ ├── with-start-icon.tsx │ │ │ └── with-start-select.tsx │ │ ├── file-upload │ │ │ ├── avatar-upload.tsx │ │ │ ├── basic.tsx │ │ │ ├── directory-upload.tsx │ │ │ ├── drag-and-drop.tsx │ │ │ ├── files-list.tsx │ │ │ ├── files-table.tsx │ │ │ ├── multiple-images.tsx │ │ │ └── with-paste.tsx │ │ ├── floating-panel │ │ │ ├── basic.tsx │ │ │ ├── calculator.tsx │ │ │ ├── chat-widget.tsx │ │ │ ├── media-player.tsx │ │ │ ├── notes-panel.tsx │ │ │ ├── settings-panel.tsx │ │ │ ├── task-inspector.tsx │ │ │ └── video-call.tsx │ │ ├── hover-card │ │ │ ├── basic.tsx │ │ │ ├── link-preview.tsx │ │ │ ├── product-info.tsx │ │ │ └── user-profile.tsx │ │ ├── listbox │ │ │ ├── basic.tsx │ │ │ ├── controlled.tsx │ │ │ ├── countries.tsx │ │ │ ├── multiple-selection.tsx │ │ │ ├── priority-levels.tsx │ │ │ ├── settings-menu.tsx │ │ │ ├── with-groups.tsx │ │ │ └── with-icons.tsx │ │ ├── menu │ │ │ ├── basic.tsx │ │ │ ├── context-menu.tsx │ │ │ ├── nested.tsx │ │ │ ├── user-menu.tsx │ │ │ ├── with-groups.tsx │ │ │ └── with-icons.tsx │ │ ├── number-input │ │ │ ├── basic.tsx │ │ │ ├── currency.tsx │ │ │ ├── decimal.tsx │ │ │ ├── min-max.tsx │ │ │ ├── mouse-wheel.tsx │ │ │ ├── percentage.tsx │ │ │ ├── quantity.tsx │ │ │ └── with-scrubber.tsx │ │ ├── pagination │ │ │ ├── basic.tsx │ │ │ ├── complete.tsx │ │ │ ├── numbered.tsx │ │ │ ├── with-dropdown.tsx │ │ │ ├── with-info.tsx │ │ │ ├── with-input.tsx │ │ │ └── with-page-size.tsx │ │ ├── password-input │ │ │ ├── api-key.tsx │ │ │ ├── basic.tsx │ │ │ ├── confirm-password.tsx │ │ │ ├── with-field.tsx │ │ │ ├── with-requirements.tsx │ │ │ └── with-strength.tsx │ │ ├── pin-input │ │ │ ├── basic.tsx │ │ │ ├── custom-placeholder.tsx │ │ │ ├── masked.tsx │ │ │ ├── two-factor.tsx │ │ │ ├── verification.tsx │ │ │ └── with-field.tsx │ │ ├── popover │ │ │ ├── basic.tsx │ │ │ ├── feedback.tsx │ │ │ ├── notifications.tsx │ │ │ ├── settings-menu.tsx │ │ │ ├── share.tsx │ │ │ └── user-profile.tsx │ │ ├── progress │ │ │ ├── circular-basic.tsx │ │ │ ├── circular-colors.tsx │ │ │ ├── circular-indeterminate.tsx │ │ │ ├── circular-sizes.tsx │ │ │ ├── circular-with-label.tsx │ │ │ ├── linear-basic.tsx │ │ │ ├── linear-colors.tsx │ │ │ ├── linear-indeterminate.tsx │ │ │ ├── linear-sizes.tsx │ │ │ ├── linear-with-label.tsx │ │ │ └── vertical.tsx │ │ ├── qr-code │ │ │ ├── basic.tsx │ │ │ ├── custom-colors.tsx │ │ │ ├── error-correction.tsx │ │ │ ├── for-contact.tsx │ │ │ ├── for-url.tsx │ │ │ ├── sizes.tsx │ │ │ ├── with-download.tsx │ │ │ └── with-overlay.tsx │ │ ├── radio-group │ │ │ ├── basic.tsx │ │ │ ├── cards.tsx │ │ │ ├── colors.tsx │ │ │ ├── disabled.tsx │ │ │ ├── feedback.tsx │ │ │ ├── grid.tsx │ │ │ ├── plans.tsx │ │ │ └── with-descriptions.tsx │ │ ├── rating-group │ │ │ ├── basic.tsx │ │ │ ├── movie-rating.tsx │ │ │ ├── product-review.tsx │ │ │ └── service-evaluation.tsx │ │ ├── segment-group │ │ │ ├── basic.tsx │ │ │ ├── filter-selector.tsx │ │ │ ├── project-status.tsx │ │ │ ├── theme-selector.tsx │ │ │ └── view-mode.tsx │ │ ├── select │ │ │ ├── basic.tsx │ │ │ ├── category-filter.tsx │ │ │ ├── country-selector.tsx │ │ │ ├── language-selector.tsx │ │ │ ├── multi-select.tsx │ │ │ ├── profile-selector.tsx │ │ │ ├── theme-selector.tsx │ │ │ └── with-overlapping-label.tsx │ │ ├── signature-pad │ │ │ ├── basic.tsx │ │ │ ├── contract-signature.tsx │ │ │ ├── receipt-signature.tsx │ │ │ └── with-preview.tsx │ │ ├── slider │ │ │ ├── basic.tsx │ │ │ ├── equalizer.tsx │ │ │ ├── range.tsx │ │ │ ├── vertical.tsx │ │ │ ├── with-marks.tsx │ │ │ └── with-ticks.tsx │ │ ├── splitter │ │ │ ├── basic.tsx │ │ │ ├── nested.tsx │ │ │ ├── three-panels.tsx │ │ │ └── vertical.tsx │ │ ├── steps │ │ │ ├── basic.tsx │ │ │ ├── segmented.tsx │ │ │ ├── vertical-labels.tsx │ │ │ ├── vertical-navigation.tsx │ │ │ ├── vertical-titles.tsx │ │ │ ├── vertical.tsx │ │ │ ├── with-checkmarks.tsx │ │ │ ├── with-content.tsx │ │ │ ├── with-descriptions.tsx │ │ │ ├── with-icons.tsx │ │ │ ├── with-labels.tsx │ │ │ ├── with-lines.tsx │ │ │ ├── with-navigation.tsx │ │ │ ├── with-progress.tsx │ │ │ └── with-spinner.tsx │ │ ├── switch │ │ │ ├── basic.tsx │ │ │ ├── bordered.tsx │ │ │ ├── disabled.tsx │ │ │ ├── in-card-with-icon.tsx │ │ │ ├── in-card.tsx │ │ │ ├── large-thumb.tsx │ │ │ ├── square.tsx │ │ │ ├── with-dual-icons.tsx │ │ │ ├── with-dual-labels.tsx │ │ │ ├── with-embedded-icons.tsx │ │ │ ├── with-embedded-text.tsx │ │ │ ├── with-icon.tsx │ │ │ ├── with-label.tsx │ │ │ └── with-revealing-icons.tsx │ │ ├── tabs │ │ │ ├── basic.tsx │ │ │ ├── ghost.tsx │ │ │ ├── icon-above.tsx │ │ │ ├── icon-only.tsx │ │ │ ├── outline-with-icons.tsx │ │ │ ├── outline.tsx │ │ │ ├── pills.tsx │ │ │ ├── stack-with-icons.tsx │ │ │ ├── stack.tsx │ │ │ ├── underline.tsx │ │ │ ├── vertical-ghost.tsx │ │ │ ├── vertical-icons.tsx │ │ │ ├── vertical-underline.tsx │ │ │ ├── vertical-with-icons.tsx │ │ │ ├── with-badges.tsx │ │ │ └── with-icons.tsx │ │ ├── tags-input │ │ │ ├── basic.tsx │ │ │ └── with-combobox.tsx │ │ ├── timer │ │ │ ├── basic.tsx │ │ │ ├── card-style.tsx │ │ │ ├── compact.tsx │ │ │ ├── countdown.tsx │ │ │ ├── large-display.tsx │ │ │ ├── minimal.tsx │ │ │ ├── pomodoro.tsx │ │ │ ├── with-labels.tsx │ │ │ └── workout.tsx │ │ ├── toast │ │ │ ├── basic.tsx │ │ │ ├── custom-duration.tsx │ │ │ ├── positions.tsx │ │ │ ├── promise.tsx │ │ │ ├── types.tsx │ │ │ ├── updatable.tsx │ │ │ └── with-action.tsx │ │ ├── toggle-group │ │ │ ├── basic.tsx │ │ │ ├── ghost.tsx │ │ │ ├── multiple.tsx │ │ │ ├── outline.tsx │ │ │ ├── toolbar.tsx │ │ │ └── with-icons.tsx │ │ ├── toggle │ │ │ ├── basic.tsx │ │ │ ├── controlled.tsx │ │ │ ├── disabled.tsx │ │ │ ├── ghost.tsx │ │ │ ├── with-indicator.tsx │ │ │ └── with-text.tsx │ │ ├── tooltip │ │ │ ├── basic.tsx │ │ │ ├── metrics-card.tsx │ │ │ ├── positioning.tsx │ │ │ ├── status-card.tsx │ │ │ ├── video-thumbnail.tsx │ │ │ └── with-arrow.tsx │ │ ├── tour │ │ │ └── basic.tsx │ │ ├── tree-view │ │ │ ├── async-loading.tsx │ │ │ └── basic.tsx │ │ └── tsconfig.json │ ├── solid │ │ ├── accordion │ │ │ ├── multi-level-with-icon.tsx │ │ │ ├── multi-level.tsx │ │ │ ├── table-with-chevron.tsx │ │ │ ├── table-with-left-chevron.tsx │ │ │ ├── table-with-left-plus-minus.tsx │ │ │ ├── table-with-plus-minus.tsx │ │ │ ├── tabs-with-chevron.tsx │ │ │ ├── tabs-with-left-chevron.tsx │ │ │ ├── tabs-with-left-plus-minus.tsx │ │ │ ├── tabs-with-plus-minus.tsx │ │ │ ├── with-chevron.tsx │ │ │ ├── with-icon-and-chevron.tsx │ │ │ ├── with-icon-and-plus-minus.tsx │ │ │ ├── with-icon-sub-header-and-chevron.tsx │ │ │ ├── with-icon-sub-header-and-plus-minus.tsx │ │ │ ├── with-left-chevron.tsx │ │ │ ├── with-left-plus-minus.tsx │ │ │ ├── with-plus-minus.tsx │ │ │ ├── with-sub-header-and-chevron.tsx │ │ │ └── with-sub-header-and-plus-minus.tsx │ │ ├── angle-slider │ │ │ ├── with-adaptive-marks.tsx │ │ │ ├── with-knob.tsx │ │ │ ├── with-labeled-marks.tsx │ │ │ └── with-marks.tsx │ │ ├── avatar │ │ │ ├── basic.tsx │ │ │ ├── group-pill-outlined.tsx │ │ │ ├── group-pill-solid.tsx │ │ │ ├── group-with-count.tsx │ │ │ ├── group.tsx │ │ │ ├── rounded-square.tsx │ │ │ ├── trusted-by.tsx │ │ │ ├── with-badge-minimal.tsx │ │ │ ├── with-badge.tsx │ │ │ ├── with-fallback.tsx │ │ │ ├── with-icon-fallback.tsx │ │ │ ├── with-multiple-status.tsx │ │ │ ├── with-status-minimal.tsx │ │ │ ├── with-status.tsx │ │ │ └── with-verification.tsx │ │ ├── carousel │ │ │ ├── basic.tsx │ │ │ ├── cards.tsx │ │ │ ├── hero.tsx │ │ │ ├── infinite.tsx │ │ │ ├── minimal.tsx │ │ │ ├── testimonials.tsx │ │ │ ├── thumbnails.tsx │ │ │ ├── vertical.tsx │ │ │ └── with-autoplay.tsx │ │ ├── checkbox │ │ │ ├── basic.tsx │ │ │ ├── cards.tsx │ │ │ ├── colors.tsx │ │ │ ├── disabled.tsx │ │ │ ├── fancy-todo.tsx │ │ │ ├── indeterminate.tsx │ │ │ ├── simple-todo.tsx │ │ │ └── with-description.tsx │ │ ├── collapsible │ │ │ ├── basic.tsx │ │ │ ├── faq-style.tsx │ │ │ ├── styled.tsx │ │ │ ├── with-content.tsx │ │ │ └── with-icon.tsx │ │ ├── color-picker │ │ │ ├── basic.tsx │ │ │ ├── hue-wheel.tsx │ │ │ ├── inline.tsx │ │ │ └── with-presets.tsx │ │ ├── combobox │ │ │ ├── async.tsx │ │ │ ├── basic.tsx │ │ │ ├── grouping.tsx │ │ │ ├── multiple.tsx │ │ │ └── with-highlight.tsx │ │ ├── date-picker │ │ │ ├── appointment.tsx │ │ │ ├── basic.tsx │ │ │ ├── multiple.tsx │ │ │ ├── presets.tsx │ │ │ ├── pricing.tsx │ │ │ ├── range-presets.tsx │ │ │ ├── range.tsx │ │ │ ├── three-months.tsx │ │ │ ├── two-months.tsx │ │ │ ├── unavailable.tsx │ │ │ ├── with-button.tsx │ │ │ └── with-weeks.tsx │ │ ├── dialog │ │ │ ├── alert.tsx │ │ │ ├── card-details.tsx │ │ │ ├── checkout.tsx │ │ │ ├── choose-subscription.tsx │ │ │ ├── delete-project.tsx │ │ │ ├── edit-profile.tsx │ │ │ ├── feedback.tsx │ │ │ ├── invite-team.tsx │ │ │ ├── newsletter.tsx │ │ │ ├── rating.tsx │ │ │ ├── signin.tsx │ │ │ ├── signup.tsx │ │ │ ├── terms.tsx │ │ │ └── with-icon.tsx │ │ ├── editable │ │ │ ├── auto-resize.tsx │ │ │ ├── basic.tsx │ │ │ ├── double-click.tsx │ │ │ ├── inline-edit.tsx │ │ │ ├── profile-field.tsx │ │ │ ├── task-item.tsx │ │ │ ├── title-editor.tsx │ │ │ └── with-controls.tsx │ │ ├── field │ │ │ ├── required.tsx │ │ │ ├── search-with-loader.tsx │ │ │ ├── simple.tsx │ │ │ ├── with-character-limit.tsx │ │ │ ├── with-characters-left.tsx │ │ │ ├── with-clear-button.tsx │ │ │ ├── with-end-add-on.tsx │ │ │ ├── with-end-button.tsx │ │ │ ├── with-end-icon-button.tsx │ │ │ ├── with-end-icon.tsx │ │ │ ├── with-end-inline-button.tsx │ │ │ ├── with-end-select.tsx │ │ │ ├── with-error.tsx │ │ │ ├── with-helper-text.tsx │ │ │ ├── with-label-animation.tsx │ │ │ ├── with-overlapping-label.tsx │ │ │ ├── with-start-add-on.tsx │ │ │ ├── with-start-icon.tsx │ │ │ └── with-start-select.tsx │ │ ├── file-upload │ │ │ ├── avatar-upload.tsx │ │ │ ├── basic.tsx │ │ │ ├── directory-upload.tsx │ │ │ ├── drag-and-drop.tsx │ │ │ ├── files-list.tsx │ │ │ ├── files-table.tsx │ │ │ ├── multiple-images.tsx │ │ │ └── with-paste.tsx │ │ ├── floating-panel │ │ │ ├── basic.tsx │ │ │ ├── calculator.tsx │ │ │ ├── chat-widget.tsx │ │ │ ├── media-player.tsx │ │ │ ├── notes-panel.tsx │ │ │ ├── settings-panel.tsx │ │ │ ├── task-inspector.tsx │ │ │ └── video-call.tsx │ │ ├── hover-card │ │ │ ├── basic.tsx │ │ │ ├── controlled.tsx │ │ │ ├── custom-positioning.tsx │ │ │ ├── link-preview.tsx │ │ │ ├── product-info.tsx │ │ │ ├── user-profile.tsx │ │ │ └── with-arrow.tsx │ │ ├── listbox │ │ │ ├── basic.tsx │ │ │ ├── controlled.tsx │ │ │ ├── countries.tsx │ │ │ ├── multiple-selection.tsx │ │ │ ├── priority-levels.tsx │ │ │ ├── settings-menu.tsx │ │ │ ├── with-groups.tsx │ │ │ └── with-icons.tsx │ │ ├── menu │ │ │ ├── basic.tsx │ │ │ ├── context-menu.tsx │ │ │ ├── nested.tsx │ │ │ ├── user-menu.tsx │ │ │ ├── with-groups.tsx │ │ │ └── with-icons.tsx │ │ ├── number-input │ │ │ ├── basic.tsx │ │ │ ├── currency.tsx │ │ │ ├── decimal.tsx │ │ │ ├── min-max.tsx │ │ │ ├── mouse-wheel.tsx │ │ │ ├── percentage.tsx │ │ │ ├── quantity.tsx │ │ │ └── with-scrubber.tsx │ │ ├── pagination │ │ │ ├── basic.tsx │ │ │ ├── complete.tsx │ │ │ ├── numbered.tsx │ │ │ ├── with-dropdown.tsx │ │ │ ├── with-info.tsx │ │ │ ├── with-input.tsx │ │ │ └── with-page-size.tsx │ │ ├── password-input │ │ │ ├── api-key.tsx │ │ │ ├── basic.tsx │ │ │ ├── confirm-password.tsx │ │ │ ├── with-field.tsx │ │ │ ├── with-requirements.tsx │ │ │ └── with-strength.tsx │ │ ├── pin-input │ │ │ ├── basic.tsx │ │ │ ├── custom-placeholder.tsx │ │ │ ├── masked.tsx │ │ │ ├── two-factor.tsx │ │ │ ├── verification.tsx │ │ │ └── with-field.tsx │ │ ├── popover │ │ │ ├── basic.tsx │ │ │ ├── feedback.tsx │ │ │ ├── notifications.tsx │ │ │ ├── settings-menu.tsx │ │ │ ├── share.tsx │ │ │ └── user-profile.tsx │ │ ├── progress │ │ │ ├── circular-basic.tsx │ │ │ ├── circular-colors.tsx │ │ │ ├── circular-indeterminate.tsx │ │ │ ├── circular-sizes.tsx │ │ │ ├── circular-with-label.tsx │ │ │ ├── linear-basic.tsx │ │ │ ├── linear-colors.tsx │ │ │ ├── linear-indeterminate.tsx │ │ │ ├── linear-sizes.tsx │ │ │ ├── linear-with-label.tsx │ │ │ └── vertical.tsx │ │ ├── qr-code │ │ │ ├── basic.tsx │ │ │ ├── custom-colors.tsx │ │ │ ├── error-correction.tsx │ │ │ ├── for-contact.tsx │ │ │ ├── for-url.tsx │ │ │ ├── sizes.tsx │ │ │ ├── with-download.tsx │ │ │ └── with-overlay.tsx │ │ ├── radio-group │ │ │ ├── basic.tsx │ │ │ ├── cards.tsx │ │ │ ├── colors.tsx │ │ │ ├── disabled.tsx │ │ │ ├── feedback.tsx │ │ │ ├── grid.tsx │ │ │ ├── plans.tsx │ │ │ └── with-descriptions.tsx │ │ ├── rating-group │ │ │ ├── basic.tsx │ │ │ ├── movie-rating.tsx │ │ │ ├── product-review.tsx │ │ │ └── service-evaluation.tsx │ │ ├── segment-group │ │ │ ├── basic.tsx │ │ │ ├── filter-selector.tsx │ │ │ ├── project-status.tsx │ │ │ ├── theme-selector.tsx │ │ │ └── view-mode.tsx │ │ ├── select │ │ │ ├── basic.tsx │ │ │ ├── category-filter.tsx │ │ │ ├── country-selector.tsx │ │ │ ├── language-selector.tsx │ │ │ ├── multi-select.tsx │ │ │ ├── profile-selector.tsx │ │ │ ├── theme-selector.tsx │ │ │ └── with-overlapping-label.tsx │ │ ├── signature-pad │ │ │ ├── basic.tsx │ │ │ ├── contract-signature.tsx │ │ │ ├── receipt-signature.tsx │ │ │ └── with-preview.tsx │ │ ├── slider │ │ │ ├── basic.tsx │ │ │ ├── equalizer.tsx │ │ │ ├── range.tsx │ │ │ ├── vertical.tsx │ │ │ ├── with-marks.tsx │ │ │ └── with-ticks.tsx │ │ ├── splitter │ │ │ ├── basic.tsx │ │ │ ├── nested.tsx │ │ │ ├── three-panels.tsx │ │ │ └── vertical.tsx │ │ ├── steps │ │ │ ├── basic.tsx │ │ │ ├── segmented.tsx │ │ │ ├── vertical-labels.tsx │ │ │ ├── vertical-navigation.tsx │ │ │ ├── vertical-titles.tsx │ │ │ ├── vertical.tsx │ │ │ ├── with-checkmarks.tsx │ │ │ ├── with-content.tsx │ │ │ ├── with-descriptions.tsx │ │ │ ├── with-icons.tsx │ │ │ ├── with-labels.tsx │ │ │ ├── with-lines.tsx │ │ │ ├── with-navigation.tsx │ │ │ ├── with-progress.tsx │ │ │ └── with-spinner.tsx │ │ ├── switch │ │ │ ├── basic.tsx │ │ │ ├── bordered.tsx │ │ │ ├── disabled.tsx │ │ │ ├── in-card-with-icon.tsx │ │ │ ├── in-card.tsx │ │ │ ├── large-thumb.tsx │ │ │ ├── square.tsx │ │ │ ├── with-dual-icons.tsx │ │ │ ├── with-dual-labels.tsx │ │ │ ├── with-embedded-icons.tsx │ │ │ ├── with-embedded-text.tsx │ │ │ ├── with-icon.tsx │ │ │ ├── with-label.tsx │ │ │ └── with-revealing-icons.tsx │ │ ├── tabs │ │ │ ├── basic.tsx │ │ │ ├── ghost.tsx │ │ │ ├── icon-above.tsx │ │ │ ├── icon-only.tsx │ │ │ ├── outline-with-icons.tsx │ │ │ ├── outline.tsx │ │ │ ├── pills.tsx │ │ │ ├── stack-with-icons.tsx │ │ │ ├── stack.tsx │ │ │ ├── underline.tsx │ │ │ ├── vertical-ghost.tsx │ │ │ ├── vertical-icons.tsx │ │ │ ├── vertical-underline.tsx │ │ │ ├── vertical-with-icons.tsx │ │ │ ├── with-badges.tsx │ │ │ └── with-icons.tsx │ │ ├── tags-input │ │ │ ├── basic.tsx │ │ │ └── with-combobox.tsx │ │ ├── timer │ │ │ ├── basic.tsx │ │ │ ├── card-style.tsx │ │ │ ├── compact.tsx │ │ │ ├── countdown.tsx │ │ │ ├── large-display.tsx │ │ │ ├── minimal.tsx │ │ │ ├── pomodoro.tsx │ │ │ ├── with-labels.tsx │ │ │ └── workout.tsx │ │ ├── toast │ │ │ ├── basic.tsx │ │ │ ├── custom-duration.tsx │ │ │ ├── positions.tsx │ │ │ ├── promise.tsx │ │ │ ├── types.tsx │ │ │ ├── updatable.tsx │ │ │ └── with-action.tsx │ │ ├── toggle-group │ │ │ ├── basic.tsx │ │ │ ├── ghost.tsx │ │ │ ├── multiple.tsx │ │ │ ├── outline.tsx │ │ │ ├── toolbar.tsx │ │ │ └── with-icons.tsx │ │ ├── toggle │ │ │ ├── basic.tsx │ │ │ ├── controlled.tsx │ │ │ ├── disabled.tsx │ │ │ ├── ghost.tsx │ │ │ ├── with-indicator.tsx │ │ │ └── with-text.tsx │ │ ├── tooltip │ │ │ ├── basic.tsx │ │ │ ├── metrics-card.tsx │ │ │ ├── positioning.tsx │ │ │ ├── status-card.tsx │ │ │ ├── video-thumbnail.tsx │ │ │ └── with-arrow.tsx │ │ ├── tour │ │ │ └── basic.tsx │ │ ├── tree-view │ │ │ ├── async-loading.tsx │ │ │ └── basic.tsx │ │ └── tsconfig.json │ ├── svelte │ │ ├── accordion │ │ │ ├── multi-level-with-icon.svelte │ │ │ ├── multi-level.svelte │ │ │ ├── table-with-chevron.svelte │ │ │ ├── table-with-left-chevron.svelte │ │ │ ├── table-with-left-plus-minus.svelte │ │ │ ├── table-with-plus-minus.svelte │ │ │ ├── tabs-with-chevron.svelte │ │ │ ├── tabs-with-left-chevron.svelte │ │ │ ├── tabs-with-left-plus-minus.svelte │ │ │ ├── tabs-with-plus-minus.svelte │ │ │ ├── with-chevron.svelte │ │ │ ├── with-icon-and-chevron.svelte │ │ │ ├── with-icon-and-plus-minus.svelte │ │ │ ├── with-icon-sub-header-and-chevron.svelte │ │ │ ├── with-icon-sub-header-and-plus-minus.svelte │ │ │ ├── with-left-chevron.svelte │ │ │ ├── with-left-plus-minus.svelte │ │ │ ├── with-plus-minus.svelte │ │ │ ├── with-sub-header-and-chevron.svelte │ │ │ └── with-sub-header-and-plus-minus.svelte │ │ ├── angle-slider │ │ │ ├── with-adaptive-marks.svelte │ │ │ ├── with-knob.svelte │ │ │ ├── with-labeled-marks.svelte │ │ │ └── with-marks.svelte │ │ ├── avatar │ │ │ ├── basic.svelte │ │ │ ├── group-pill-outlined.svelte │ │ │ ├── group-pill-solid.svelte │ │ │ ├── group-with-count.svelte │ │ │ ├── group.svelte │ │ │ ├── rounded-square.svelte │ │ │ ├── trusted-by.svelte │ │ │ ├── with-badge-minimal.svelte │ │ │ ├── with-badge.svelte │ │ │ ├── with-fallback.svelte │ │ │ ├── with-icon-fallback.svelte │ │ │ ├── with-multiple-status.svelte │ │ │ ├── with-status-minimal.svelte │ │ │ ├── with-status.svelte │ │ │ └── with-verification.svelte │ │ ├── carousel │ │ │ ├── basic.svelte │ │ │ ├── cards.svelte │ │ │ ├── hero.svelte │ │ │ ├── infinite.svelte │ │ │ ├── minimal.svelte │ │ │ ├── testimonials.svelte │ │ │ ├── thumbnails.svelte │ │ │ ├── vertical.svelte │ │ │ └── with-autoplay.svelte │ │ ├── checkbox │ │ │ ├── basic.svelte │ │ │ ├── cards.svelte │ │ │ ├── colors.svelte │ │ │ ├── disabled.svelte │ │ │ ├── fancy-todo.svelte │ │ │ ├── indeterminate.svelte │ │ │ ├── simple-todo.svelte │ │ │ └── with-description.svelte │ │ ├── collapsible │ │ │ ├── basic.svelte │ │ │ ├── faq-style.svelte │ │ │ ├── styled.svelte │ │ │ ├── with-content.svelte │ │ │ └── with-icon.svelte │ │ ├── color-picker │ │ │ ├── basic.svelte │ │ │ ├── hue-wheel.svelte │ │ │ ├── inline.svelte │ │ │ └── with-presets.svelte │ │ ├── combobox │ │ │ ├── async.svelte │ │ │ ├── basic.svelte │ │ │ ├── grouping.svelte │ │ │ ├── multiple.svelte │ │ │ └── with-highlight.svelte │ │ ├── date-picker │ │ │ ├── appointment.svelte │ │ │ ├── basic.svelte │ │ │ ├── multiple.svelte │ │ │ ├── presets.svelte │ │ │ ├── pricing.svelte │ │ │ ├── range-presets.svelte │ │ │ ├── range.svelte │ │ │ ├── three-months.svelte │ │ │ ├── two-months.svelte │ │ │ ├── unavailable.svelte │ │ │ ├── with-button.svelte │ │ │ └── with-weeks.svelte │ │ ├── dialog │ │ │ ├── alert.svelte │ │ │ ├── card-details.svelte │ │ │ ├── checkout.svelte │ │ │ ├── choose-subscription.svelte │ │ │ ├── delete-project.svelte │ │ │ ├── edit-profile.svelte │ │ │ ├── feedback.svelte │ │ │ ├── invite-team.svelte │ │ │ ├── newsletter.svelte │ │ │ ├── rating.svelte │ │ │ ├── signin.svelte │ │ │ ├── signup.svelte │ │ │ ├── terms.svelte │ │ │ └── with-icon.svelte │ │ ├── field │ │ │ ├── required.svelte │ │ │ ├── search-with-loader.svelte │ │ │ ├── simple.svelte │ │ │ ├── with-character-limit.svelte │ │ │ ├── with-characters-left.svelte │ │ │ ├── with-clear-button.svelte │ │ │ ├── with-end-add-on.svelte │ │ │ ├── with-end-button.svelte │ │ │ ├── with-end-icon-button.svelte │ │ │ ├── with-end-icon.svelte │ │ │ ├── with-end-inline-button.svelte │ │ │ ├── with-end-select.svelte │ │ │ ├── with-error.svelte │ │ │ ├── with-helper-text.svelte │ │ │ ├── with-label-animation.svelte │ │ │ ├── with-overlapping-label.svelte │ │ │ ├── with-start-add-on.svelte │ │ │ ├── with-start-icon.svelte │ │ │ └── with-start-select.svelte │ │ ├── file-upload │ │ │ ├── avatar-upload.svelte │ │ │ ├── basic.svelte │ │ │ ├── directory-upload.svelte │ │ │ ├── drag-and-drop.svelte │ │ │ ├── files-list.svelte │ │ │ ├── files-table.svelte │ │ │ ├── multiple-images.svelte │ │ │ └── with-paste.svelte │ │ ├── floating-panel │ │ │ ├── basic.svelte │ │ │ ├── calculator.svelte │ │ │ ├── chat-widget.svelte │ │ │ ├── media-player.svelte │ │ │ ├── notes-panel.svelte │ │ │ ├── settings-panel.svelte │ │ │ ├── task-inspector.svelte │ │ │ └── video-call.svelte │ │ ├── hover-card │ │ │ ├── basic.svelte │ │ │ ├── controlled.svelte │ │ │ ├── custom-positioning.svelte │ │ │ ├── link-preview.svelte │ │ │ ├── product-info.svelte │ │ │ ├── user-profile.svelte │ │ │ └── with-arrow.svelte │ │ ├── listbox │ │ │ ├── basic.svelte │ │ │ ├── controlled.svelte │ │ │ ├── countries.svelte │ │ │ ├── multiple-selection.svelte │ │ │ ├── priority-levels.svelte │ │ │ ├── settings-menu.svelte │ │ │ ├── with-groups.svelte │ │ │ └── with-icons.svelte │ │ ├── menu │ │ │ ├── basic.svelte │ │ │ ├── context-menu.svelte │ │ │ ├── nested.svelte │ │ │ ├── user-menu.svelte │ │ │ ├── with-groups.svelte │ │ │ └── with-icons.svelte │ │ ├── number-input │ │ │ ├── basic.svelte │ │ │ ├── currency.svelte │ │ │ ├── decimal.svelte │ │ │ ├── min-max.svelte │ │ │ ├── mouse-wheel.svelte │ │ │ ├── percentage.svelte │ │ │ ├── quantity.svelte │ │ │ └── with-scrubber.svelte │ │ ├── pagination │ │ │ ├── basic.svelte │ │ │ ├── complete.svelte │ │ │ ├── numbered.svelte │ │ │ ├── with-dropdown.svelte │ │ │ ├── with-info.svelte │ │ │ ├── with-input.svelte │ │ │ └── with-page-size.svelte │ │ ├── password-input │ │ │ ├── api-key.svelte │ │ │ ├── basic.svelte │ │ │ ├── confirm-password.svelte │ │ │ ├── with-field.svelte │ │ │ ├── with-requirements.svelte │ │ │ └── with-strength.svelte │ │ ├── pin-input │ │ │ ├── basic.svelte │ │ │ ├── custom-placeholder.svelte │ │ │ ├── masked.svelte │ │ │ ├── two-factor.svelte │ │ │ ├── verification.svelte │ │ │ └── with-field.svelte │ │ ├── popover │ │ │ ├── basic.svelte │ │ │ ├── feedback.svelte │ │ │ ├── notifications.svelte │ │ │ ├── settings-menu.svelte │ │ │ ├── share.svelte │ │ │ └── user-profile.svelte │ │ ├── progress │ │ │ ├── circular-basic.svelte │ │ │ ├── circular-colors.svelte │ │ │ ├── circular-indeterminate.svelte │ │ │ ├── circular-sizes.svelte │ │ │ ├── circular-with-label.svelte │ │ │ ├── linear-basic.svelte │ │ │ ├── linear-colors.svelte │ │ │ ├── linear-indeterminate.svelte │ │ │ ├── linear-sizes.svelte │ │ │ ├── linear-with-label.svelte │ │ │ └── vertical.svelte │ │ ├── qr-code │ │ │ ├── basic.svelte │ │ │ ├── custom-colors.svelte │ │ │ ├── error-correction.svelte │ │ │ ├── for-contact.svelte │ │ │ ├── for-url.svelte │ │ │ ├── sizes.svelte │ │ │ ├── with-download.svelte │ │ │ └── with-overlay.svelte │ │ ├── radio-group │ │ │ ├── basic.svelte │ │ │ ├── cards.svelte │ │ │ ├── colors.svelte │ │ │ ├── disabled.svelte │ │ │ ├── feedback.svelte │ │ │ ├── grid.svelte │ │ │ ├── plans.svelte │ │ │ └── with-descriptions.svelte │ │ ├── rating-group │ │ │ ├── basic.svelte │ │ │ ├── movie-rating.svelte │ │ │ ├── product-review.svelte │ │ │ └── service-evaluation.svelte │ │ ├── segment-group │ │ │ ├── basic.svelte │ │ │ ├── filter-selector.svelte │ │ │ ├── project-status.svelte │ │ │ ├── theme-selector.svelte │ │ │ └── view-mode.svelte │ │ ├── select │ │ │ ├── basic.svelte │ │ │ ├── category-filter.svelte │ │ │ ├── country-selector.svelte │ │ │ ├── language-selector.svelte │ │ │ ├── multi-select.svelte │ │ │ ├── profile-selector.svelte │ │ │ ├── theme-selector.svelte │ │ │ └── with-overlapping-label.svelte │ │ ├── signature-pad │ │ │ ├── basic.svelte │ │ │ ├── contract-signature.svelte │ │ │ ├── receipt-signature.svelte │ │ │ └── with-preview.svelte │ │ ├── slider │ │ │ ├── basic.svelte │ │ │ ├── equalizer.svelte │ │ │ ├── range.svelte │ │ │ ├── vertical.svelte │ │ │ ├── with-marks.svelte │ │ │ └── with-ticks.svelte │ │ ├── splitter │ │ │ ├── basic.svelte │ │ │ ├── nested.svelte │ │ │ ├── three-panels.svelte │ │ │ └── vertical.svelte │ │ ├── steps │ │ │ ├── basic.svelte │ │ │ ├── segmented.svelte │ │ │ ├── vertical-labels.svelte │ │ │ ├── vertical-navigation.svelte │ │ │ ├── vertical-titles.svelte │ │ │ ├── vertical.svelte │ │ │ ├── with-checkmarks.svelte │ │ │ ├── with-content.svelte │ │ │ ├── with-descriptions.svelte │ │ │ ├── with-icons.svelte │ │ │ ├── with-labels.svelte │ │ │ ├── with-lines.svelte │ │ │ ├── with-navigation.svelte │ │ │ ├── with-progress.svelte │ │ │ └── with-spinner.svelte │ │ ├── switch │ │ │ ├── basic.svelte │ │ │ ├── bordered.svelte │ │ │ ├── disabled.svelte │ │ │ ├── in-card-with-icon.svelte │ │ │ ├── in-card.svelte │ │ │ ├── large-thumb.svelte │ │ │ ├── square.svelte │ │ │ ├── with-dual-icons.svelte │ │ │ ├── with-dual-labels.svelte │ │ │ ├── with-embedded-icons.svelte │ │ │ ├── with-embedded-text.svelte │ │ │ ├── with-icon.svelte │ │ │ ├── with-label.svelte │ │ │ └── with-revealing-icons.svelte │ │ ├── tabs │ │ │ ├── basic.svelte │ │ │ ├── ghost.svelte │ │ │ ├── icon-above.svelte │ │ │ ├── icon-only.svelte │ │ │ ├── outline-with-icons.svelte │ │ │ ├── outline.svelte │ │ │ ├── pills.svelte │ │ │ ├── stack-with-icons.svelte │ │ │ ├── stack.svelte │ │ │ ├── underline.svelte │ │ │ ├── vertical-ghost.svelte │ │ │ ├── vertical-icons.svelte │ │ │ ├── vertical-underline.svelte │ │ │ ├── vertical-with-icons.svelte │ │ │ ├── with-badges.svelte │ │ │ └── with-icons.svelte │ │ ├── tags-input │ │ │ ├── basic.svelte │ │ │ └── with-combobox.svelte │ │ ├── timer │ │ │ ├── basic.svelte │ │ │ ├── card-style.svelte │ │ │ ├── compact.svelte │ │ │ ├── countdown.svelte │ │ │ ├── large-display.svelte │ │ │ ├── minimal.svelte │ │ │ ├── pomodoro.svelte │ │ │ ├── with-labels.svelte │ │ │ └── workout.svelte │ │ ├── toast │ │ │ ├── basic.svelte │ │ │ ├── custom-duration.svelte │ │ │ ├── positions.svelte │ │ │ ├── promise.svelte │ │ │ ├── types.svelte │ │ │ ├── updatable.svelte │ │ │ └── with-action.svelte │ │ ├── toggle-group │ │ │ ├── basic.svelte │ │ │ ├── ghost.svelte │ │ │ ├── multiple.svelte │ │ │ ├── outline.svelte │ │ │ ├── toolbar.svelte │ │ │ └── with-icons.svelte │ │ ├── toggle │ │ │ ├── basic.svelte │ │ │ ├── controlled.svelte │ │ │ ├── disabled.svelte │ │ │ ├── ghost.svelte │ │ │ ├── with-indicator.svelte │ │ │ └── with-text.svelte │ │ ├── tooltip │ │ │ ├── basic.svelte │ │ │ ├── metrics-card.svelte │ │ │ ├── positioning.svelte │ │ │ ├── status-card.svelte │ │ │ ├── video-thumbnail.svelte │ │ │ └── with-arrow.svelte │ │ ├── tour │ │ │ └── basic.svelte │ │ ├── tree-view │ │ │ ├── async-loading.svelte │ │ │ └── basic.svelte │ │ └── tsconfig.json │ └── vue │ │ ├── accordion │ │ ├── multi-level-with-icon.vue │ │ ├── multi-level.vue │ │ ├── table-with-chevron.vue │ │ ├── table-with-left-chevron.vue │ │ ├── table-with-left-plus-minus.vue │ │ ├── table-with-plus-minus.vue │ │ ├── tabs-with-chevron.vue │ │ ├── tabs-with-left-chevron.vue │ │ ├── tabs-with-left-plus-minus.vue │ │ ├── tabs-with-plus-minus.vue │ │ ├── with-chevron.vue │ │ ├── with-icon-and-chevron.vue │ │ ├── with-icon-and-plus-minus.vue │ │ ├── with-icon-sub-header-and-chevron.vue │ │ ├── with-icon-sub-header-and-plus-minus.vue │ │ ├── with-left-chevron.vue │ │ ├── with-left-plus-minus.vue │ │ ├── with-plus-minus.vue │ │ ├── with-sub-header-and-chevron.vue │ │ └── with-sub-header-and-plus-minus.vue │ │ ├── angle-slider │ │ ├── with-adaptive-marks.vue │ │ ├── with-knob.vue │ │ ├── with-labeled-marks.vue │ │ └── with-marks.vue │ │ ├── avatar │ │ ├── basic.vue │ │ ├── group-pill-outlined.vue │ │ ├── group-pill-solid.vue │ │ ├── group-with-count.vue │ │ ├── group.vue │ │ ├── rounded-square.vue │ │ ├── trusted-by.vue │ │ ├── with-badge-minimal.vue │ │ ├── with-badge.vue │ │ ├── with-fallback.vue │ │ ├── with-icon-fallback.vue │ │ ├── with-multiple-status.vue │ │ ├── with-status-minimal.vue │ │ ├── with-status.vue │ │ └── with-verification.vue │ │ ├── carousel │ │ ├── basic.vue │ │ ├── cards.vue │ │ ├── hero.vue │ │ ├── infinite.vue │ │ ├── minimal.vue │ │ ├── testimonials.vue │ │ ├── thumbnails.vue │ │ ├── vertical.vue │ │ └── with-autoplay.vue │ │ ├── checkbox │ │ ├── basic.vue │ │ ├── cards.vue │ │ ├── colors.vue │ │ ├── disabled.vue │ │ ├── fancy-todo.vue │ │ ├── indeterminate.vue │ │ ├── simple-todo.vue │ │ └── with-description.vue │ │ ├── collapsible │ │ ├── basic.vue │ │ ├── faq-style.vue │ │ ├── styled.vue │ │ ├── with-content.vue │ │ └── with-icon.vue │ │ ├── color-picker │ │ ├── basic.vue │ │ ├── hue-wheel.vue │ │ ├── inline.vue │ │ └── with-presets.vue │ │ ├── combobox │ │ ├── async.vue │ │ ├── basic.vue │ │ ├── grouping.vue │ │ ├── multiple.vue │ │ └── with-highlight.vue │ │ ├── date-picker │ │ ├── appointment.vue │ │ ├── basic.vue │ │ ├── multiple.vue │ │ ├── presets.vue │ │ ├── pricing.vue │ │ ├── range-presets.vue │ │ ├── range.vue │ │ ├── three-months.vue │ │ ├── two-months.vue │ │ ├── unavailable.vue │ │ ├── with-button.vue │ │ └── with-weeks.vue │ │ ├── dialog │ │ ├── alert.vue │ │ ├── card-details.vue │ │ ├── checkout.vue │ │ ├── choose-subscription.vue │ │ ├── delete-project.vue │ │ ├── edit-profile.vue │ │ ├── feedback.vue │ │ ├── invite-team.vue │ │ ├── newsletter.vue │ │ ├── rating.vue │ │ ├── signin.vue │ │ ├── signup.vue │ │ ├── terms.vue │ │ └── with-icon.vue │ │ ├── editable │ │ ├── auto-resize.vue │ │ ├── basic.vue │ │ ├── double-click.vue │ │ ├── inline-edit.vue │ │ ├── profile-field.vue │ │ ├── task-item.vue │ │ ├── title-editor.vue │ │ └── with-controls.vue │ │ ├── field │ │ ├── required.vue │ │ ├── search-with-loader.vue │ │ ├── simple.vue │ │ ├── with-character-limit.vue │ │ ├── with-characters-left.vue │ │ ├── with-clear-button.vue │ │ ├── with-end-add-on.vue │ │ ├── with-end-button.vue │ │ ├── with-end-icon-button.vue │ │ ├── with-end-icon.vue │ │ ├── with-end-inline-button.vue │ │ ├── with-end-select.vue │ │ ├── with-error.vue │ │ ├── with-helper-text.vue │ │ ├── with-label-animation.vue │ │ ├── with-overlapping-label.vue │ │ ├── with-start-add-on.vue │ │ ├── with-start-icon.vue │ │ └── with-start-select.vue │ │ ├── file-upload │ │ ├── avatar-upload.vue │ │ ├── basic.vue │ │ ├── directory-upload.vue │ │ ├── drag-and-drop.vue │ │ ├── files-list.vue │ │ ├── files-table.vue │ │ ├── multiple-images.vue │ │ └── with-paste.vue │ │ ├── floating-panel │ │ ├── basic.vue │ │ ├── calculator.vue │ │ ├── chat-widget.vue │ │ ├── media-player.vue │ │ ├── notes-panel.vue │ │ ├── settings-panel.vue │ │ ├── task-inspector.vue │ │ └── video-call.vue │ │ ├── hover-card │ │ ├── basic.vue │ │ ├── controlled.vue │ │ ├── custom-positioning.vue │ │ ├── link-preview.vue │ │ ├── product-info.vue │ │ ├── user-profile.vue │ │ └── with-arrow.vue │ │ ├── listbox │ │ ├── basic.vue │ │ ├── controlled.vue │ │ ├── countries.vue │ │ ├── multiple-selection.vue │ │ ├── priority-levels.vue │ │ ├── settings-menu.vue │ │ ├── with-groups.vue │ │ └── with-icons.vue │ │ ├── menu │ │ ├── basic.vue │ │ ├── context-menu.vue │ │ ├── nested.vue │ │ ├── user-menu.vue │ │ ├── with-groups.vue │ │ └── with-icons.vue │ │ ├── number-input │ │ ├── basic.vue │ │ ├── currency.vue │ │ ├── decimal.vue │ │ ├── min-max.vue │ │ ├── mouse-wheel.vue │ │ ├── percentage.vue │ │ ├── quantity.vue │ │ └── with-scrubber.vue │ │ ├── pagination │ │ ├── basic.vue │ │ ├── complete.vue │ │ ├── numbered.vue │ │ ├── with-dropdown.vue │ │ ├── with-info.vue │ │ ├── with-input.vue │ │ └── with-page-size.vue │ │ ├── password-input │ │ ├── api-key.vue │ │ ├── basic.vue │ │ ├── confirm-password.vue │ │ ├── with-field.vue │ │ ├── with-requirements.vue │ │ └── with-strength.vue │ │ ├── pin-input │ │ ├── basic.vue │ │ ├── custom-placeholder.vue │ │ ├── masked.vue │ │ ├── two-factor.vue │ │ ├── verification.vue │ │ └── with-field.vue │ │ ├── popover │ │ ├── basic.vue │ │ ├── feedback.vue │ │ ├── notifications.vue │ │ ├── settings-menu.vue │ │ ├── share.vue │ │ └── user-profile.vue │ │ ├── progress │ │ ├── circular-basic.vue │ │ ├── circular-colors.vue │ │ ├── circular-indeterminate.vue │ │ ├── circular-sizes.vue │ │ ├── circular-with-label.vue │ │ ├── linear-basic.vue │ │ ├── linear-colors.vue │ │ ├── linear-indeterminate.vue │ │ ├── linear-sizes.vue │ │ ├── linear-with-label.vue │ │ └── vertical.vue │ │ ├── qr-code │ │ ├── basic.vue │ │ ├── custom-colors.vue │ │ ├── error-correction.vue │ │ ├── for-contact.vue │ │ ├── for-url.vue │ │ ├── sizes.vue │ │ ├── with-download.vue │ │ └── with-overlay.vue │ │ ├── radio-group │ │ ├── basic.vue │ │ ├── cards.vue │ │ ├── colors.vue │ │ ├── disabled.vue │ │ ├── feedback.vue │ │ ├── grid.vue │ │ ├── plans.vue │ │ └── with-descriptions.vue │ │ ├── rating-group │ │ ├── basic.vue │ │ ├── movie-rating.vue │ │ ├── product-review.vue │ │ └── service-evaluation.vue │ │ ├── segment-group │ │ ├── basic.vue │ │ ├── filter-selector.vue │ │ ├── project-status.vue │ │ ├── theme-selector.vue │ │ └── view-mode.vue │ │ ├── select │ │ ├── basic.vue │ │ ├── category-filter.vue │ │ ├── country-selector.vue │ │ ├── language-selector.vue │ │ ├── multi-select.vue │ │ ├── profile-selector.vue │ │ ├── theme-selector.vue │ │ └── with-overlapping-label.vue │ │ ├── signature-pad │ │ ├── basic.vue │ │ ├── contract-signature.vue │ │ ├── receipt-signature.vue │ │ └── with-preview.vue │ │ ├── slider │ │ ├── basic.vue │ │ ├── equalizer.vue │ │ ├── range.vue │ │ ├── vertical.vue │ │ ├── with-marks.vue │ │ └── with-ticks.vue │ │ ├── splitter │ │ ├── basic.vue │ │ ├── nested.vue │ │ ├── three-panels.vue │ │ └── vertical.vue │ │ ├── steps │ │ ├── basic.vue │ │ ├── segmented.vue │ │ ├── vertical-labels.vue │ │ ├── vertical-navigation.vue │ │ ├── vertical-titles.vue │ │ ├── vertical.vue │ │ ├── with-checkmarks.vue │ │ ├── with-content.vue │ │ ├── with-descriptions.vue │ │ ├── with-icons.vue │ │ ├── with-labels.vue │ │ ├── with-lines.vue │ │ ├── with-navigation.vue │ │ ├── with-progress.vue │ │ └── with-spinner.vue │ │ ├── switch │ │ ├── basic.vue │ │ ├── bordered.vue │ │ ├── disabled.vue │ │ ├── in-card-with-icon.vue │ │ ├── in-card.vue │ │ ├── large-thumb.vue │ │ ├── square.vue │ │ ├── with-dual-icons.vue │ │ ├── with-dual-labels.vue │ │ ├── with-embedded-icons.vue │ │ ├── with-embedded-text.vue │ │ ├── with-icon.vue │ │ ├── with-label.vue │ │ └── with-revealing-icons.vue │ │ ├── tabs │ │ ├── basic.vue │ │ ├── ghost.vue │ │ ├── icon-above.vue │ │ ├── icon-only.vue │ │ ├── outline-with-icons.vue │ │ ├── outline.vue │ │ ├── pills.vue │ │ ├── stack-with-icons.vue │ │ ├── stack.vue │ │ ├── underline.vue │ │ ├── vertical-ghost.vue │ │ ├── vertical-icons.vue │ │ ├── vertical-underline.vue │ │ ├── vertical-with-icons.vue │ │ ├── with-badges.vue │ │ └── with-icons.vue │ │ ├── tags-input │ │ ├── basic.vue │ │ └── with-combobox.vue │ │ ├── timer │ │ ├── basic.vue │ │ ├── card-style.vue │ │ ├── compact.vue │ │ ├── countdown.vue │ │ ├── large-display.vue │ │ ├── minimal.vue │ │ ├── pomodoro.vue │ │ ├── with-labels.vue │ │ └── workout.vue │ │ ├── toast │ │ ├── basic.vue │ │ ├── custom-duration.vue │ │ ├── positions.vue │ │ ├── promise.vue │ │ ├── types.vue │ │ ├── updatable.vue │ │ └── with-action.vue │ │ ├── toggle-group │ │ ├── basic.vue │ │ ├── ghost.vue │ │ ├── multiple.vue │ │ ├── outline.vue │ │ ├── toolbar.vue │ │ └── with-icons.vue │ │ ├── toggle │ │ ├── basic.vue │ │ ├── controlled.vue │ │ ├── disabled.vue │ │ ├── ghost.vue │ │ ├── with-indicator.vue │ │ └── with-text.vue │ │ ├── tooltip │ │ ├── basic.vue │ │ ├── metrics-card.vue │ │ ├── positioning.vue │ │ ├── status-card.vue │ │ ├── video-thumbnail.vue │ │ └── with-arrow.vue │ │ ├── tour │ │ └── basic.vue │ │ ├── tree-view │ │ ├── async-loading.vue │ │ └── basic.vue │ │ └── tsconfig.json ├── theme-provider.tsx └── ui │ ├── badge.tsx │ ├── button.tsx │ ├── dialog.tsx │ ├── input.tsx │ ├── select.tsx │ └── tooltip.tsx ├── hooks ├── use-framework.ts ├── use-mobile.tsx └── use-toast.ts ├── lib ├── components.ts ├── registry.server.ts ├── registry.ts ├── registry.utils.ts └── utils.ts ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public ├── favicon.svg ├── open-graph.png └── site.webmanifest └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/README.md -------------------------------------------------------------------------------- /app/components/[framework]/[slug]/code-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/app/components/[framework]/[slug]/code-modal.tsx -------------------------------------------------------------------------------- /app/components/[framework]/[slug]/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/app/components/[framework]/[slug]/not-found.tsx -------------------------------------------------------------------------------- /app/components/[framework]/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/app/components/[framework]/[slug]/page.tsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/loading.tsx: -------------------------------------------------------------------------------- 1 | export default function Loading() { 2 | return null 3 | } 4 | -------------------------------------------------------------------------------- /app/page.components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/app/page.components.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/app/page.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components.json -------------------------------------------------------------------------------- /components/component-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/component-preview.tsx -------------------------------------------------------------------------------- /components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/header.tsx -------------------------------------------------------------------------------- /components/open-graph-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/open-graph-preview.tsx -------------------------------------------------------------------------------- /components/registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/README.md -------------------------------------------------------------------------------- /components/registry/manifest/accordion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/accordion.ts -------------------------------------------------------------------------------- /components/registry/manifest/angle-slider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/angle-slider.ts -------------------------------------------------------------------------------- /components/registry/manifest/avatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/avatar.ts -------------------------------------------------------------------------------- /components/registry/manifest/carousel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/carousel.ts -------------------------------------------------------------------------------- /components/registry/manifest/checkbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/checkbox.ts -------------------------------------------------------------------------------- /components/registry/manifest/collapsible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/collapsible.ts -------------------------------------------------------------------------------- /components/registry/manifest/color-picker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/color-picker.ts -------------------------------------------------------------------------------- /components/registry/manifest/combobox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/combobox.ts -------------------------------------------------------------------------------- /components/registry/manifest/date-picker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/date-picker.ts -------------------------------------------------------------------------------- /components/registry/manifest/dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/dialog.ts -------------------------------------------------------------------------------- /components/registry/manifest/editable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/editable.ts -------------------------------------------------------------------------------- /components/registry/manifest/field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/field.ts -------------------------------------------------------------------------------- /components/registry/manifest/file-upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/file-upload.ts -------------------------------------------------------------------------------- /components/registry/manifest/floating-panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/floating-panel.ts -------------------------------------------------------------------------------- /components/registry/manifest/hover-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/hover-card.ts -------------------------------------------------------------------------------- /components/registry/manifest/listbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/listbox.ts -------------------------------------------------------------------------------- /components/registry/manifest/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/menu.ts -------------------------------------------------------------------------------- /components/registry/manifest/number-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/number-input.ts -------------------------------------------------------------------------------- /components/registry/manifest/pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/pagination.ts -------------------------------------------------------------------------------- /components/registry/manifest/password-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/password-input.ts -------------------------------------------------------------------------------- /components/registry/manifest/pin-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/pin-input.ts -------------------------------------------------------------------------------- /components/registry/manifest/popover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/popover.ts -------------------------------------------------------------------------------- /components/registry/manifest/progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/progress.ts -------------------------------------------------------------------------------- /components/registry/manifest/qr-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/qr-code.ts -------------------------------------------------------------------------------- /components/registry/manifest/radio-group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/radio-group.ts -------------------------------------------------------------------------------- /components/registry/manifest/rating-group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/rating-group.ts -------------------------------------------------------------------------------- /components/registry/manifest/segment-group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/segment-group.ts -------------------------------------------------------------------------------- /components/registry/manifest/select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/select.ts -------------------------------------------------------------------------------- /components/registry/manifest/signature-pad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/signature-pad.ts -------------------------------------------------------------------------------- /components/registry/manifest/slider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/slider.ts -------------------------------------------------------------------------------- /components/registry/manifest/splitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/splitter.ts -------------------------------------------------------------------------------- /components/registry/manifest/steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/steps.ts -------------------------------------------------------------------------------- /components/registry/manifest/switch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/switch.ts -------------------------------------------------------------------------------- /components/registry/manifest/tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/tabs.ts -------------------------------------------------------------------------------- /components/registry/manifest/tags-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/tags-input.ts -------------------------------------------------------------------------------- /components/registry/manifest/timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/timer.ts -------------------------------------------------------------------------------- /components/registry/manifest/toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/toast.ts -------------------------------------------------------------------------------- /components/registry/manifest/toggle-group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/toggle-group.ts -------------------------------------------------------------------------------- /components/registry/manifest/toggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/toggle.ts -------------------------------------------------------------------------------- /components/registry/manifest/tooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/tooltip.ts -------------------------------------------------------------------------------- /components/registry/manifest/tour.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/tour.ts -------------------------------------------------------------------------------- /components/registry/manifest/tree-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/manifest/tree-view.ts -------------------------------------------------------------------------------- /components/registry/react/accordion/multi-level.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/accordion/multi-level.tsx -------------------------------------------------------------------------------- /components/registry/react/accordion/with-chevron.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/accordion/with-chevron.tsx -------------------------------------------------------------------------------- /components/registry/react/angle-slider/with-knob.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/angle-slider/with-knob.tsx -------------------------------------------------------------------------------- /components/registry/react/angle-slider/with-marks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/angle-slider/with-marks.tsx -------------------------------------------------------------------------------- /components/registry/react/avatar/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/avatar/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/avatar/group-pill-solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/avatar/group-pill-solid.tsx -------------------------------------------------------------------------------- /components/registry/react/avatar/group-with-count.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/avatar/group-with-count.tsx -------------------------------------------------------------------------------- /components/registry/react/avatar/group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/avatar/group.tsx -------------------------------------------------------------------------------- /components/registry/react/avatar/rounded-square.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/avatar/rounded-square.tsx -------------------------------------------------------------------------------- /components/registry/react/avatar/trusted-by.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/avatar/trusted-by.tsx -------------------------------------------------------------------------------- /components/registry/react/avatar/with-badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/avatar/with-badge.tsx -------------------------------------------------------------------------------- /components/registry/react/avatar/with-fallback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/avatar/with-fallback.tsx -------------------------------------------------------------------------------- /components/registry/react/avatar/with-status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/avatar/with-status.tsx -------------------------------------------------------------------------------- /components/registry/react/carousel/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/carousel/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/carousel/cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/carousel/cards.tsx -------------------------------------------------------------------------------- /components/registry/react/carousel/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/carousel/hero.tsx -------------------------------------------------------------------------------- /components/registry/react/carousel/infinite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/carousel/infinite.tsx -------------------------------------------------------------------------------- /components/registry/react/carousel/minimal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/carousel/minimal.tsx -------------------------------------------------------------------------------- /components/registry/react/carousel/testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/carousel/testimonials.tsx -------------------------------------------------------------------------------- /components/registry/react/carousel/thumbnails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/carousel/thumbnails.tsx -------------------------------------------------------------------------------- /components/registry/react/carousel/vertical.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/carousel/vertical.tsx -------------------------------------------------------------------------------- /components/registry/react/carousel/with-autoplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/carousel/with-autoplay.tsx -------------------------------------------------------------------------------- /components/registry/react/checkbox/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/checkbox/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/checkbox/cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/checkbox/cards.tsx -------------------------------------------------------------------------------- /components/registry/react/checkbox/colors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/checkbox/colors.tsx -------------------------------------------------------------------------------- /components/registry/react/checkbox/disabled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/checkbox/disabled.tsx -------------------------------------------------------------------------------- /components/registry/react/checkbox/fancy-todo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/checkbox/fancy-todo.tsx -------------------------------------------------------------------------------- /components/registry/react/checkbox/indeterminate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/checkbox/indeterminate.tsx -------------------------------------------------------------------------------- /components/registry/react/checkbox/simple-todo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/checkbox/simple-todo.tsx -------------------------------------------------------------------------------- /components/registry/react/collapsible/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/collapsible/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/collapsible/faq-style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/collapsible/faq-style.tsx -------------------------------------------------------------------------------- /components/registry/react/collapsible/styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/collapsible/styled.tsx -------------------------------------------------------------------------------- /components/registry/react/collapsible/with-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/collapsible/with-icon.tsx -------------------------------------------------------------------------------- /components/registry/react/color-picker/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/color-picker/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/color-picker/hue-wheel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/color-picker/hue-wheel.tsx -------------------------------------------------------------------------------- /components/registry/react/color-picker/inline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/color-picker/inline.tsx -------------------------------------------------------------------------------- /components/registry/react/combobox/async.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/combobox/async.tsx -------------------------------------------------------------------------------- /components/registry/react/combobox/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/combobox/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/combobox/grouping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/combobox/grouping.tsx -------------------------------------------------------------------------------- /components/registry/react/combobox/multiple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/combobox/multiple.tsx -------------------------------------------------------------------------------- /components/registry/react/combobox/with-highlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/combobox/with-highlight.tsx -------------------------------------------------------------------------------- /components/registry/react/date-picker/appointment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/date-picker/appointment.tsx -------------------------------------------------------------------------------- /components/registry/react/date-picker/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/date-picker/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/date-picker/multiple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/date-picker/multiple.tsx -------------------------------------------------------------------------------- /components/registry/react/date-picker/presets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/date-picker/presets.tsx -------------------------------------------------------------------------------- /components/registry/react/date-picker/pricing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/date-picker/pricing.tsx -------------------------------------------------------------------------------- /components/registry/react/date-picker/range.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/date-picker/range.tsx -------------------------------------------------------------------------------- /components/registry/react/date-picker/two-months.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/date-picker/two-months.tsx -------------------------------------------------------------------------------- /components/registry/react/date-picker/unavailable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/date-picker/unavailable.tsx -------------------------------------------------------------------------------- /components/registry/react/date-picker/with-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/date-picker/with-button.tsx -------------------------------------------------------------------------------- /components/registry/react/date-picker/with-weeks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/date-picker/with-weeks.tsx -------------------------------------------------------------------------------- /components/registry/react/dialog/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/dialog/alert.tsx -------------------------------------------------------------------------------- /components/registry/react/dialog/card-details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/dialog/card-details.tsx -------------------------------------------------------------------------------- /components/registry/react/dialog/checkout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/dialog/checkout.tsx -------------------------------------------------------------------------------- /components/registry/react/dialog/delete-project.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/dialog/delete-project.tsx -------------------------------------------------------------------------------- /components/registry/react/dialog/edit-profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/dialog/edit-profile.tsx -------------------------------------------------------------------------------- /components/registry/react/dialog/feedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/dialog/feedback.tsx -------------------------------------------------------------------------------- /components/registry/react/dialog/invite-team.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/dialog/invite-team.tsx -------------------------------------------------------------------------------- /components/registry/react/dialog/newsletter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/dialog/newsletter.tsx -------------------------------------------------------------------------------- /components/registry/react/dialog/rating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/dialog/rating.tsx -------------------------------------------------------------------------------- /components/registry/react/dialog/signin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/dialog/signin.tsx -------------------------------------------------------------------------------- /components/registry/react/dialog/signup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/dialog/signup.tsx -------------------------------------------------------------------------------- /components/registry/react/dialog/terms.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/dialog/terms.tsx -------------------------------------------------------------------------------- /components/registry/react/dialog/with-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/dialog/with-icon.tsx -------------------------------------------------------------------------------- /components/registry/react/editable/auto-resize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/editable/auto-resize.tsx -------------------------------------------------------------------------------- /components/registry/react/editable/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/editable/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/editable/double-click.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/editable/double-click.tsx -------------------------------------------------------------------------------- /components/registry/react/editable/inline-edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/editable/inline-edit.tsx -------------------------------------------------------------------------------- /components/registry/react/editable/profile-field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/editable/profile-field.tsx -------------------------------------------------------------------------------- /components/registry/react/editable/task-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/editable/task-item.tsx -------------------------------------------------------------------------------- /components/registry/react/editable/title-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/editable/title-editor.tsx -------------------------------------------------------------------------------- /components/registry/react/editable/with-controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/editable/with-controls.tsx -------------------------------------------------------------------------------- /components/registry/react/field/required.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/field/required.tsx -------------------------------------------------------------------------------- /components/registry/react/field/simple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/field/simple.tsx -------------------------------------------------------------------------------- /components/registry/react/field/with-clear-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/field/with-clear-button.tsx -------------------------------------------------------------------------------- /components/registry/react/field/with-end-add-on.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/field/with-end-add-on.tsx -------------------------------------------------------------------------------- /components/registry/react/field/with-end-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/field/with-end-button.tsx -------------------------------------------------------------------------------- /components/registry/react/field/with-end-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/field/with-end-icon.tsx -------------------------------------------------------------------------------- /components/registry/react/field/with-end-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/field/with-end-select.tsx -------------------------------------------------------------------------------- /components/registry/react/field/with-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/field/with-error.tsx -------------------------------------------------------------------------------- /components/registry/react/field/with-helper-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/field/with-helper-text.tsx -------------------------------------------------------------------------------- /components/registry/react/field/with-inset-label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/field/with-inset-label.tsx -------------------------------------------------------------------------------- /components/registry/react/field/with-start-add-on.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/field/with-start-add-on.tsx -------------------------------------------------------------------------------- /components/registry/react/field/with-start-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/field/with-start-icon.tsx -------------------------------------------------------------------------------- /components/registry/react/field/with-start-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/field/with-start-select.tsx -------------------------------------------------------------------------------- /components/registry/react/file-upload/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/file-upload/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/file-upload/files-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/file-upload/files-list.tsx -------------------------------------------------------------------------------- /components/registry/react/file-upload/files-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/file-upload/files-table.tsx -------------------------------------------------------------------------------- /components/registry/react/file-upload/with-paste.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/file-upload/with-paste.tsx -------------------------------------------------------------------------------- /components/registry/react/floating-panel/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/floating-panel/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/hover-card/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/hover-card/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/hover-card/link-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/hover-card/link-preview.tsx -------------------------------------------------------------------------------- /components/registry/react/hover-card/product-info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/hover-card/product-info.tsx -------------------------------------------------------------------------------- /components/registry/react/hover-card/user-profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/hover-card/user-profile.tsx -------------------------------------------------------------------------------- /components/registry/react/listbox/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/listbox/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/listbox/controlled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/listbox/controlled.tsx -------------------------------------------------------------------------------- /components/registry/react/listbox/countries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/listbox/countries.tsx -------------------------------------------------------------------------------- /components/registry/react/listbox/priority-levels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/listbox/priority-levels.tsx -------------------------------------------------------------------------------- /components/registry/react/listbox/settings-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/listbox/settings-menu.tsx -------------------------------------------------------------------------------- /components/registry/react/listbox/with-groups.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/listbox/with-groups.tsx -------------------------------------------------------------------------------- /components/registry/react/listbox/with-icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/listbox/with-icons.tsx -------------------------------------------------------------------------------- /components/registry/react/menu/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/menu/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/menu/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/menu/context-menu.tsx -------------------------------------------------------------------------------- /components/registry/react/menu/nested.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/menu/nested.tsx -------------------------------------------------------------------------------- /components/registry/react/menu/user-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/menu/user-menu.tsx -------------------------------------------------------------------------------- /components/registry/react/menu/with-groups.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/menu/with-groups.tsx -------------------------------------------------------------------------------- /components/registry/react/menu/with-icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/menu/with-icons.tsx -------------------------------------------------------------------------------- /components/registry/react/number-input/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/number-input/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/number-input/currency.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/number-input/currency.tsx -------------------------------------------------------------------------------- /components/registry/react/number-input/decimal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/number-input/decimal.tsx -------------------------------------------------------------------------------- /components/registry/react/number-input/min-max.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/number-input/min-max.tsx -------------------------------------------------------------------------------- /components/registry/react/number-input/percentage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/number-input/percentage.tsx -------------------------------------------------------------------------------- /components/registry/react/number-input/quantity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/number-input/quantity.tsx -------------------------------------------------------------------------------- /components/registry/react/pagination/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/pagination/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/pagination/complete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/pagination/complete.tsx -------------------------------------------------------------------------------- /components/registry/react/pagination/numbered.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/pagination/numbered.tsx -------------------------------------------------------------------------------- /components/registry/react/pagination/with-info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/pagination/with-info.tsx -------------------------------------------------------------------------------- /components/registry/react/pagination/with-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/pagination/with-input.tsx -------------------------------------------------------------------------------- /components/registry/react/password-input/api-key.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/password-input/api-key.tsx -------------------------------------------------------------------------------- /components/registry/react/password-input/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/password-input/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/pin-input/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/pin-input/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/pin-input/masked.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/pin-input/masked.tsx -------------------------------------------------------------------------------- /components/registry/react/pin-input/two-factor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/pin-input/two-factor.tsx -------------------------------------------------------------------------------- /components/registry/react/pin-input/verification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/pin-input/verification.tsx -------------------------------------------------------------------------------- /components/registry/react/pin-input/with-field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/pin-input/with-field.tsx -------------------------------------------------------------------------------- /components/registry/react/popover/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/popover/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/popover/feedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/popover/feedback.tsx -------------------------------------------------------------------------------- /components/registry/react/popover/notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/popover/notifications.tsx -------------------------------------------------------------------------------- /components/registry/react/popover/settings-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/popover/settings-menu.tsx -------------------------------------------------------------------------------- /components/registry/react/popover/share.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/popover/share.tsx -------------------------------------------------------------------------------- /components/registry/react/popover/user-profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/popover/user-profile.tsx -------------------------------------------------------------------------------- /components/registry/react/progress/circular-basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/progress/circular-basic.tsx -------------------------------------------------------------------------------- /components/registry/react/progress/circular-sizes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/progress/circular-sizes.tsx -------------------------------------------------------------------------------- /components/registry/react/progress/linear-basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/progress/linear-basic.tsx -------------------------------------------------------------------------------- /components/registry/react/progress/linear-colors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/progress/linear-colors.tsx -------------------------------------------------------------------------------- /components/registry/react/progress/linear-sizes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/progress/linear-sizes.tsx -------------------------------------------------------------------------------- /components/registry/react/progress/vertical.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/progress/vertical.tsx -------------------------------------------------------------------------------- /components/registry/react/qr-code/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/qr-code/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/qr-code/custom-colors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/qr-code/custom-colors.tsx -------------------------------------------------------------------------------- /components/registry/react/qr-code/for-contact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/qr-code/for-contact.tsx -------------------------------------------------------------------------------- /components/registry/react/qr-code/for-url.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/qr-code/for-url.tsx -------------------------------------------------------------------------------- /components/registry/react/qr-code/sizes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/qr-code/sizes.tsx -------------------------------------------------------------------------------- /components/registry/react/qr-code/with-download.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/qr-code/with-download.tsx -------------------------------------------------------------------------------- /components/registry/react/qr-code/with-overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/qr-code/with-overlay.tsx -------------------------------------------------------------------------------- /components/registry/react/radio-group/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/radio-group/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/radio-group/cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/radio-group/cards.tsx -------------------------------------------------------------------------------- /components/registry/react/radio-group/colors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/radio-group/colors.tsx -------------------------------------------------------------------------------- /components/registry/react/radio-group/disabled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/radio-group/disabled.tsx -------------------------------------------------------------------------------- /components/registry/react/radio-group/feedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/radio-group/feedback.tsx -------------------------------------------------------------------------------- /components/registry/react/radio-group/grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/radio-group/grid.tsx -------------------------------------------------------------------------------- /components/registry/react/radio-group/plans.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/radio-group/plans.tsx -------------------------------------------------------------------------------- /components/registry/react/rating-group/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/rating-group/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/segment-group/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/segment-group/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/segment-group/view-mode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/segment-group/view-mode.tsx -------------------------------------------------------------------------------- /components/registry/react/select/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/select/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/select/category-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/select/category-filter.tsx -------------------------------------------------------------------------------- /components/registry/react/select/country-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/select/country-selector.tsx -------------------------------------------------------------------------------- /components/registry/react/select/multi-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/select/multi-select.tsx -------------------------------------------------------------------------------- /components/registry/react/signature-pad/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/signature-pad/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/slider/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/slider/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/slider/equalizer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/slider/equalizer.tsx -------------------------------------------------------------------------------- /components/registry/react/slider/range.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/slider/range.tsx -------------------------------------------------------------------------------- /components/registry/react/slider/vertical.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/slider/vertical.tsx -------------------------------------------------------------------------------- /components/registry/react/slider/with-marks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/slider/with-marks.tsx -------------------------------------------------------------------------------- /components/registry/react/slider/with-ticks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/slider/with-ticks.tsx -------------------------------------------------------------------------------- /components/registry/react/splitter/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/splitter/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/splitter/nested.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/splitter/nested.tsx -------------------------------------------------------------------------------- /components/registry/react/splitter/vertical.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/splitter/vertical.tsx -------------------------------------------------------------------------------- /components/registry/react/steps/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/steps/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/steps/segmented.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/steps/segmented.tsx -------------------------------------------------------------------------------- /components/registry/react/steps/vertical.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/steps/vertical.tsx -------------------------------------------------------------------------------- /components/registry/react/steps/with-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/steps/with-content.tsx -------------------------------------------------------------------------------- /components/registry/react/steps/with-icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/steps/with-icons.tsx -------------------------------------------------------------------------------- /components/registry/react/steps/with-labels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/steps/with-labels.tsx -------------------------------------------------------------------------------- /components/registry/react/steps/with-lines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/steps/with-lines.tsx -------------------------------------------------------------------------------- /components/registry/react/steps/with-progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/steps/with-progress.tsx -------------------------------------------------------------------------------- /components/registry/react/steps/with-spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/steps/with-spinner.tsx -------------------------------------------------------------------------------- /components/registry/react/switch/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/switch/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/switch/bordered.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/switch/bordered.tsx -------------------------------------------------------------------------------- /components/registry/react/switch/disabled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/switch/disabled.tsx -------------------------------------------------------------------------------- /components/registry/react/switch/in-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/switch/in-card.tsx -------------------------------------------------------------------------------- /components/registry/react/switch/large-thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/switch/large-thumb.tsx -------------------------------------------------------------------------------- /components/registry/react/switch/square.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/switch/square.tsx -------------------------------------------------------------------------------- /components/registry/react/switch/with-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/switch/with-icon.tsx -------------------------------------------------------------------------------- /components/registry/react/switch/with-label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/switch/with-label.tsx -------------------------------------------------------------------------------- /components/registry/react/tabs/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/tabs/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/tabs/ghost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/tabs/ghost.tsx -------------------------------------------------------------------------------- /components/registry/react/tabs/icon-above.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/tabs/icon-above.tsx -------------------------------------------------------------------------------- /components/registry/react/tabs/icon-only.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/tabs/icon-only.tsx -------------------------------------------------------------------------------- /components/registry/react/tabs/outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/tabs/outline.tsx -------------------------------------------------------------------------------- /components/registry/react/tabs/pills.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/tabs/pills.tsx -------------------------------------------------------------------------------- /components/registry/react/tabs/stack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/tabs/stack.tsx -------------------------------------------------------------------------------- /components/registry/react/tabs/underline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/tabs/underline.tsx -------------------------------------------------------------------------------- /components/registry/react/tabs/vertical-ghost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/tabs/vertical-ghost.tsx -------------------------------------------------------------------------------- /components/registry/react/tabs/vertical-icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/tabs/vertical-icons.tsx -------------------------------------------------------------------------------- /components/registry/react/tabs/with-badges.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/tabs/with-badges.tsx -------------------------------------------------------------------------------- /components/registry/react/tabs/with-icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/tabs/with-icons.tsx -------------------------------------------------------------------------------- /components/registry/react/tags-input/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/tags-input/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/timer/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/timer/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/timer/card-style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/timer/card-style.tsx -------------------------------------------------------------------------------- /components/registry/react/timer/compact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/timer/compact.tsx -------------------------------------------------------------------------------- /components/registry/react/timer/countdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/timer/countdown.tsx -------------------------------------------------------------------------------- /components/registry/react/timer/large-display.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/timer/large-display.tsx -------------------------------------------------------------------------------- /components/registry/react/timer/minimal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/timer/minimal.tsx -------------------------------------------------------------------------------- /components/registry/react/timer/pomodoro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/timer/pomodoro.tsx -------------------------------------------------------------------------------- /components/registry/react/timer/with-labels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/timer/with-labels.tsx -------------------------------------------------------------------------------- /components/registry/react/timer/workout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/timer/workout.tsx -------------------------------------------------------------------------------- /components/registry/react/toast/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/toast/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/toast/positions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/toast/positions.tsx -------------------------------------------------------------------------------- /components/registry/react/toast/promise.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/toast/promise.tsx -------------------------------------------------------------------------------- /components/registry/react/toast/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/toast/types.tsx -------------------------------------------------------------------------------- /components/registry/react/toast/updatable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/toast/updatable.tsx -------------------------------------------------------------------------------- /components/registry/react/toast/with-action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/toast/with-action.tsx -------------------------------------------------------------------------------- /components/registry/react/toggle-group/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/toggle-group/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/toggle-group/ghost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/toggle-group/ghost.tsx -------------------------------------------------------------------------------- /components/registry/react/toggle-group/outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/toggle-group/outline.tsx -------------------------------------------------------------------------------- /components/registry/react/toggle-group/toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/toggle-group/toolbar.tsx -------------------------------------------------------------------------------- /components/registry/react/toggle/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/toggle/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/toggle/controlled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/toggle/controlled.tsx -------------------------------------------------------------------------------- /components/registry/react/toggle/disabled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/toggle/disabled.tsx -------------------------------------------------------------------------------- /components/registry/react/toggle/ghost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/toggle/ghost.tsx -------------------------------------------------------------------------------- /components/registry/react/toggle/with-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/toggle/with-text.tsx -------------------------------------------------------------------------------- /components/registry/react/tooltip/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/tooltip/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/tooltip/metrics-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/tooltip/metrics-card.tsx -------------------------------------------------------------------------------- /components/registry/react/tooltip/positioning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/tooltip/positioning.tsx -------------------------------------------------------------------------------- /components/registry/react/tooltip/status-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/tooltip/status-card.tsx -------------------------------------------------------------------------------- /components/registry/react/tooltip/with-arrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/tooltip/with-arrow.tsx -------------------------------------------------------------------------------- /components/registry/react/tour/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/tour/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/tree-view/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/tree-view/basic.tsx -------------------------------------------------------------------------------- /components/registry/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/react/tsconfig.json -------------------------------------------------------------------------------- /components/registry/solid/avatar/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/avatar/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/avatar/group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/avatar/group.tsx -------------------------------------------------------------------------------- /components/registry/solid/avatar/trusted-by.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/avatar/trusted-by.tsx -------------------------------------------------------------------------------- /components/registry/solid/avatar/with-badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/avatar/with-badge.tsx -------------------------------------------------------------------------------- /components/registry/solid/avatar/with-fallback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/avatar/with-fallback.tsx -------------------------------------------------------------------------------- /components/registry/solid/avatar/with-status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/avatar/with-status.tsx -------------------------------------------------------------------------------- /components/registry/solid/carousel/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/carousel/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/carousel/cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/carousel/cards.tsx -------------------------------------------------------------------------------- /components/registry/solid/carousel/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/carousel/hero.tsx -------------------------------------------------------------------------------- /components/registry/solid/carousel/infinite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/carousel/infinite.tsx -------------------------------------------------------------------------------- /components/registry/solid/carousel/minimal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/carousel/minimal.tsx -------------------------------------------------------------------------------- /components/registry/solid/carousel/thumbnails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/carousel/thumbnails.tsx -------------------------------------------------------------------------------- /components/registry/solid/carousel/vertical.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/carousel/vertical.tsx -------------------------------------------------------------------------------- /components/registry/solid/checkbox/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/checkbox/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/checkbox/cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/checkbox/cards.tsx -------------------------------------------------------------------------------- /components/registry/solid/checkbox/colors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/checkbox/colors.tsx -------------------------------------------------------------------------------- /components/registry/solid/checkbox/disabled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/checkbox/disabled.tsx -------------------------------------------------------------------------------- /components/registry/solid/checkbox/fancy-todo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/checkbox/fancy-todo.tsx -------------------------------------------------------------------------------- /components/registry/solid/checkbox/simple-todo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/checkbox/simple-todo.tsx -------------------------------------------------------------------------------- /components/registry/solid/collapsible/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/collapsible/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/collapsible/styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/collapsible/styled.tsx -------------------------------------------------------------------------------- /components/registry/solid/color-picker/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/color-picker/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/color-picker/inline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/color-picker/inline.tsx -------------------------------------------------------------------------------- /components/registry/solid/combobox/async.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/combobox/async.tsx -------------------------------------------------------------------------------- /components/registry/solid/combobox/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/combobox/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/combobox/grouping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/combobox/grouping.tsx -------------------------------------------------------------------------------- /components/registry/solid/combobox/multiple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/combobox/multiple.tsx -------------------------------------------------------------------------------- /components/registry/solid/date-picker/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/date-picker/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/date-picker/multiple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/date-picker/multiple.tsx -------------------------------------------------------------------------------- /components/registry/solid/date-picker/presets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/date-picker/presets.tsx -------------------------------------------------------------------------------- /components/registry/solid/date-picker/pricing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/date-picker/pricing.tsx -------------------------------------------------------------------------------- /components/registry/solid/date-picker/range.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/date-picker/range.tsx -------------------------------------------------------------------------------- /components/registry/solid/dialog/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/dialog/alert.tsx -------------------------------------------------------------------------------- /components/registry/solid/dialog/card-details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/dialog/card-details.tsx -------------------------------------------------------------------------------- /components/registry/solid/dialog/checkout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/dialog/checkout.tsx -------------------------------------------------------------------------------- /components/registry/solid/dialog/edit-profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/dialog/edit-profile.tsx -------------------------------------------------------------------------------- /components/registry/solid/dialog/feedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/dialog/feedback.tsx -------------------------------------------------------------------------------- /components/registry/solid/dialog/invite-team.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/dialog/invite-team.tsx -------------------------------------------------------------------------------- /components/registry/solid/dialog/newsletter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/dialog/newsletter.tsx -------------------------------------------------------------------------------- /components/registry/solid/dialog/rating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/dialog/rating.tsx -------------------------------------------------------------------------------- /components/registry/solid/dialog/signin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/dialog/signin.tsx -------------------------------------------------------------------------------- /components/registry/solid/dialog/signup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/dialog/signup.tsx -------------------------------------------------------------------------------- /components/registry/solid/dialog/terms.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/dialog/terms.tsx -------------------------------------------------------------------------------- /components/registry/solid/dialog/with-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/dialog/with-icon.tsx -------------------------------------------------------------------------------- /components/registry/solid/editable/auto-resize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/editable/auto-resize.tsx -------------------------------------------------------------------------------- /components/registry/solid/editable/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/editable/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/editable/inline-edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/editable/inline-edit.tsx -------------------------------------------------------------------------------- /components/registry/solid/editable/task-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/editable/task-item.tsx -------------------------------------------------------------------------------- /components/registry/solid/field/required.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/field/required.tsx -------------------------------------------------------------------------------- /components/registry/solid/field/simple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/field/simple.tsx -------------------------------------------------------------------------------- /components/registry/solid/field/with-end-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/field/with-end-icon.tsx -------------------------------------------------------------------------------- /components/registry/solid/field/with-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/field/with-error.tsx -------------------------------------------------------------------------------- /components/registry/solid/file-upload/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/file-upload/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/floating-panel/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/floating-panel/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/hover-card/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/hover-card/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/listbox/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/listbox/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/listbox/controlled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/listbox/controlled.tsx -------------------------------------------------------------------------------- /components/registry/solid/listbox/countries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/listbox/countries.tsx -------------------------------------------------------------------------------- /components/registry/solid/listbox/with-groups.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/listbox/with-groups.tsx -------------------------------------------------------------------------------- /components/registry/solid/listbox/with-icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/listbox/with-icons.tsx -------------------------------------------------------------------------------- /components/registry/solid/menu/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/menu/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/menu/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/menu/context-menu.tsx -------------------------------------------------------------------------------- /components/registry/solid/menu/nested.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/menu/nested.tsx -------------------------------------------------------------------------------- /components/registry/solid/menu/user-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/menu/user-menu.tsx -------------------------------------------------------------------------------- /components/registry/solid/menu/with-groups.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/menu/with-groups.tsx -------------------------------------------------------------------------------- /components/registry/solid/menu/with-icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/menu/with-icons.tsx -------------------------------------------------------------------------------- /components/registry/solid/number-input/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/number-input/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/number-input/decimal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/number-input/decimal.tsx -------------------------------------------------------------------------------- /components/registry/solid/number-input/min-max.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/number-input/min-max.tsx -------------------------------------------------------------------------------- /components/registry/solid/pagination/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/pagination/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/pagination/complete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/pagination/complete.tsx -------------------------------------------------------------------------------- /components/registry/solid/pagination/numbered.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/pagination/numbered.tsx -------------------------------------------------------------------------------- /components/registry/solid/pagination/with-info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/pagination/with-info.tsx -------------------------------------------------------------------------------- /components/registry/solid/password-input/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/password-input/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/pin-input/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/pin-input/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/pin-input/masked.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/pin-input/masked.tsx -------------------------------------------------------------------------------- /components/registry/solid/pin-input/two-factor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/pin-input/two-factor.tsx -------------------------------------------------------------------------------- /components/registry/solid/pin-input/with-field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/pin-input/with-field.tsx -------------------------------------------------------------------------------- /components/registry/solid/popover/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/popover/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/popover/feedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/popover/feedback.tsx -------------------------------------------------------------------------------- /components/registry/solid/popover/share.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/popover/share.tsx -------------------------------------------------------------------------------- /components/registry/solid/popover/user-profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/popover/user-profile.tsx -------------------------------------------------------------------------------- /components/registry/solid/progress/vertical.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/progress/vertical.tsx -------------------------------------------------------------------------------- /components/registry/solid/qr-code/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/qr-code/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/qr-code/for-contact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/qr-code/for-contact.tsx -------------------------------------------------------------------------------- /components/registry/solid/qr-code/for-url.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/qr-code/for-url.tsx -------------------------------------------------------------------------------- /components/registry/solid/qr-code/sizes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/qr-code/sizes.tsx -------------------------------------------------------------------------------- /components/registry/solid/qr-code/with-overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/qr-code/with-overlay.tsx -------------------------------------------------------------------------------- /components/registry/solid/radio-group/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/radio-group/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/radio-group/cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/radio-group/cards.tsx -------------------------------------------------------------------------------- /components/registry/solid/radio-group/colors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/radio-group/colors.tsx -------------------------------------------------------------------------------- /components/registry/solid/radio-group/disabled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/radio-group/disabled.tsx -------------------------------------------------------------------------------- /components/registry/solid/radio-group/feedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/radio-group/feedback.tsx -------------------------------------------------------------------------------- /components/registry/solid/radio-group/grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/radio-group/grid.tsx -------------------------------------------------------------------------------- /components/registry/solid/radio-group/plans.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/radio-group/plans.tsx -------------------------------------------------------------------------------- /components/registry/solid/rating-group/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/rating-group/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/segment-group/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/segment-group/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/select/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/select/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/select/multi-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/select/multi-select.tsx -------------------------------------------------------------------------------- /components/registry/solid/signature-pad/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/signature-pad/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/slider/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/slider/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/slider/equalizer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/slider/equalizer.tsx -------------------------------------------------------------------------------- /components/registry/solid/slider/range.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/slider/range.tsx -------------------------------------------------------------------------------- /components/registry/solid/slider/vertical.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/slider/vertical.tsx -------------------------------------------------------------------------------- /components/registry/solid/slider/with-marks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/slider/with-marks.tsx -------------------------------------------------------------------------------- /components/registry/solid/slider/with-ticks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/slider/with-ticks.tsx -------------------------------------------------------------------------------- /components/registry/solid/splitter/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/splitter/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/splitter/nested.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/splitter/nested.tsx -------------------------------------------------------------------------------- /components/registry/solid/splitter/vertical.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/splitter/vertical.tsx -------------------------------------------------------------------------------- /components/registry/solid/steps/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/steps/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/steps/segmented.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/steps/segmented.tsx -------------------------------------------------------------------------------- /components/registry/solid/steps/vertical.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/steps/vertical.tsx -------------------------------------------------------------------------------- /components/registry/solid/steps/with-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/steps/with-content.tsx -------------------------------------------------------------------------------- /components/registry/solid/steps/with-icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/steps/with-icons.tsx -------------------------------------------------------------------------------- /components/registry/solid/steps/with-labels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/steps/with-labels.tsx -------------------------------------------------------------------------------- /components/registry/solid/steps/with-lines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/steps/with-lines.tsx -------------------------------------------------------------------------------- /components/registry/solid/steps/with-progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/steps/with-progress.tsx -------------------------------------------------------------------------------- /components/registry/solid/steps/with-spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/steps/with-spinner.tsx -------------------------------------------------------------------------------- /components/registry/solid/switch/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/switch/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/switch/bordered.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/switch/bordered.tsx -------------------------------------------------------------------------------- /components/registry/solid/switch/disabled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/switch/disabled.tsx -------------------------------------------------------------------------------- /components/registry/solid/switch/in-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/switch/in-card.tsx -------------------------------------------------------------------------------- /components/registry/solid/switch/large-thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/switch/large-thumb.tsx -------------------------------------------------------------------------------- /components/registry/solid/switch/square.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/switch/square.tsx -------------------------------------------------------------------------------- /components/registry/solid/switch/with-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/switch/with-icon.tsx -------------------------------------------------------------------------------- /components/registry/solid/switch/with-label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/switch/with-label.tsx -------------------------------------------------------------------------------- /components/registry/solid/tabs/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/tabs/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/tabs/ghost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/tabs/ghost.tsx -------------------------------------------------------------------------------- /components/registry/solid/tabs/icon-above.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/tabs/icon-above.tsx -------------------------------------------------------------------------------- /components/registry/solid/tabs/icon-only.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/tabs/icon-only.tsx -------------------------------------------------------------------------------- /components/registry/solid/tabs/outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/tabs/outline.tsx -------------------------------------------------------------------------------- /components/registry/solid/tabs/pills.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/tabs/pills.tsx -------------------------------------------------------------------------------- /components/registry/solid/tabs/stack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/tabs/stack.tsx -------------------------------------------------------------------------------- /components/registry/solid/tabs/underline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/tabs/underline.tsx -------------------------------------------------------------------------------- /components/registry/solid/tabs/vertical-ghost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/tabs/vertical-ghost.tsx -------------------------------------------------------------------------------- /components/registry/solid/tabs/vertical-icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/tabs/vertical-icons.tsx -------------------------------------------------------------------------------- /components/registry/solid/tabs/with-badges.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/tabs/with-badges.tsx -------------------------------------------------------------------------------- /components/registry/solid/tabs/with-icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/tabs/with-icons.tsx -------------------------------------------------------------------------------- /components/registry/solid/tags-input/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/tags-input/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/timer/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/timer/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/timer/card-style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/timer/card-style.tsx -------------------------------------------------------------------------------- /components/registry/solid/timer/compact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/timer/compact.tsx -------------------------------------------------------------------------------- /components/registry/solid/timer/countdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/timer/countdown.tsx -------------------------------------------------------------------------------- /components/registry/solid/timer/large-display.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/timer/large-display.tsx -------------------------------------------------------------------------------- /components/registry/solid/timer/minimal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/timer/minimal.tsx -------------------------------------------------------------------------------- /components/registry/solid/timer/pomodoro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/timer/pomodoro.tsx -------------------------------------------------------------------------------- /components/registry/solid/timer/with-labels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/timer/with-labels.tsx -------------------------------------------------------------------------------- /components/registry/solid/timer/workout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/timer/workout.tsx -------------------------------------------------------------------------------- /components/registry/solid/toast/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/toast/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/toast/positions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/toast/positions.tsx -------------------------------------------------------------------------------- /components/registry/solid/toast/promise.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/toast/promise.tsx -------------------------------------------------------------------------------- /components/registry/solid/toast/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/toast/types.tsx -------------------------------------------------------------------------------- /components/registry/solid/toast/updatable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/toast/updatable.tsx -------------------------------------------------------------------------------- /components/registry/solid/toast/with-action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/toast/with-action.tsx -------------------------------------------------------------------------------- /components/registry/solid/toggle-group/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/toggle-group/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/toggle-group/ghost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/toggle-group/ghost.tsx -------------------------------------------------------------------------------- /components/registry/solid/toggle-group/outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/toggle-group/outline.tsx -------------------------------------------------------------------------------- /components/registry/solid/toggle-group/toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/toggle-group/toolbar.tsx -------------------------------------------------------------------------------- /components/registry/solid/toggle/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/toggle/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/toggle/controlled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/toggle/controlled.tsx -------------------------------------------------------------------------------- /components/registry/solid/toggle/disabled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/toggle/disabled.tsx -------------------------------------------------------------------------------- /components/registry/solid/toggle/ghost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/toggle/ghost.tsx -------------------------------------------------------------------------------- /components/registry/solid/toggle/with-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/toggle/with-text.tsx -------------------------------------------------------------------------------- /components/registry/solid/tooltip/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/tooltip/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/tooltip/metrics-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/tooltip/metrics-card.tsx -------------------------------------------------------------------------------- /components/registry/solid/tooltip/positioning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/tooltip/positioning.tsx -------------------------------------------------------------------------------- /components/registry/solid/tooltip/status-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/tooltip/status-card.tsx -------------------------------------------------------------------------------- /components/registry/solid/tooltip/with-arrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/tooltip/with-arrow.tsx -------------------------------------------------------------------------------- /components/registry/solid/tour/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/tour/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/tree-view/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/tree-view/basic.tsx -------------------------------------------------------------------------------- /components/registry/solid/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/solid/tsconfig.json -------------------------------------------------------------------------------- /components/registry/svelte/avatar/basic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/avatar/basic.svelte -------------------------------------------------------------------------------- /components/registry/svelte/avatar/group.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/avatar/group.svelte -------------------------------------------------------------------------------- /components/registry/svelte/carousel/basic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/carousel/basic.svelte -------------------------------------------------------------------------------- /components/registry/svelte/carousel/cards.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/carousel/cards.svelte -------------------------------------------------------------------------------- /components/registry/svelte/carousel/hero.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/carousel/hero.svelte -------------------------------------------------------------------------------- /components/registry/svelte/carousel/minimal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/carousel/minimal.svelte -------------------------------------------------------------------------------- /components/registry/svelte/checkbox/basic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/checkbox/basic.svelte -------------------------------------------------------------------------------- /components/registry/svelte/checkbox/cards.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/checkbox/cards.svelte -------------------------------------------------------------------------------- /components/registry/svelte/checkbox/colors.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/checkbox/colors.svelte -------------------------------------------------------------------------------- /components/registry/svelte/combobox/async.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/combobox/async.svelte -------------------------------------------------------------------------------- /components/registry/svelte/combobox/basic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/combobox/basic.svelte -------------------------------------------------------------------------------- /components/registry/svelte/dialog/alert.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/dialog/alert.svelte -------------------------------------------------------------------------------- /components/registry/svelte/dialog/checkout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/dialog/checkout.svelte -------------------------------------------------------------------------------- /components/registry/svelte/dialog/feedback.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/dialog/feedback.svelte -------------------------------------------------------------------------------- /components/registry/svelte/dialog/rating.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/dialog/rating.svelte -------------------------------------------------------------------------------- /components/registry/svelte/dialog/signin.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/dialog/signin.svelte -------------------------------------------------------------------------------- /components/registry/svelte/dialog/signup.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/dialog/signup.svelte -------------------------------------------------------------------------------- /components/registry/svelte/dialog/terms.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/dialog/terms.svelte -------------------------------------------------------------------------------- /components/registry/svelte/dialog/with-icon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/dialog/with-icon.svelte -------------------------------------------------------------------------------- /components/registry/svelte/field/required.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/field/required.svelte -------------------------------------------------------------------------------- /components/registry/svelte/field/simple.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/field/simple.svelte -------------------------------------------------------------------------------- /components/registry/svelte/field/with-error.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/field/with-error.svelte -------------------------------------------------------------------------------- /components/registry/svelte/hover-card/basic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/hover-card/basic.svelte -------------------------------------------------------------------------------- /components/registry/svelte/listbox/basic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/listbox/basic.svelte -------------------------------------------------------------------------------- /components/registry/svelte/menu/basic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/menu/basic.svelte -------------------------------------------------------------------------------- /components/registry/svelte/menu/nested.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/menu/nested.svelte -------------------------------------------------------------------------------- /components/registry/svelte/menu/user-menu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/menu/user-menu.svelte -------------------------------------------------------------------------------- /components/registry/svelte/menu/with-groups.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/menu/with-groups.svelte -------------------------------------------------------------------------------- /components/registry/svelte/menu/with-icons.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/menu/with-icons.svelte -------------------------------------------------------------------------------- /components/registry/svelte/pagination/basic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/pagination/basic.svelte -------------------------------------------------------------------------------- /components/registry/svelte/pin-input/basic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/pin-input/basic.svelte -------------------------------------------------------------------------------- /components/registry/svelte/pin-input/masked.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/pin-input/masked.svelte -------------------------------------------------------------------------------- /components/registry/svelte/popover/basic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/popover/basic.svelte -------------------------------------------------------------------------------- /components/registry/svelte/popover/feedback.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/popover/feedback.svelte -------------------------------------------------------------------------------- /components/registry/svelte/popover/share.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/popover/share.svelte -------------------------------------------------------------------------------- /components/registry/svelte/qr-code/basic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/qr-code/basic.svelte -------------------------------------------------------------------------------- /components/registry/svelte/qr-code/for-url.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/qr-code/for-url.svelte -------------------------------------------------------------------------------- /components/registry/svelte/qr-code/sizes.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/qr-code/sizes.svelte -------------------------------------------------------------------------------- /components/registry/svelte/radio-group/grid.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/radio-group/grid.svelte -------------------------------------------------------------------------------- /components/registry/svelte/select/basic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/select/basic.svelte -------------------------------------------------------------------------------- /components/registry/svelte/slider/basic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/slider/basic.svelte -------------------------------------------------------------------------------- /components/registry/svelte/slider/equalizer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/slider/equalizer.svelte -------------------------------------------------------------------------------- /components/registry/svelte/slider/range.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/slider/range.svelte -------------------------------------------------------------------------------- /components/registry/svelte/slider/vertical.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/slider/vertical.svelte -------------------------------------------------------------------------------- /components/registry/svelte/splitter/basic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/splitter/basic.svelte -------------------------------------------------------------------------------- /components/registry/svelte/splitter/nested.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/splitter/nested.svelte -------------------------------------------------------------------------------- /components/registry/svelte/steps/basic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/steps/basic.svelte -------------------------------------------------------------------------------- /components/registry/svelte/steps/segmented.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/steps/segmented.svelte -------------------------------------------------------------------------------- /components/registry/svelte/steps/vertical.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/steps/vertical.svelte -------------------------------------------------------------------------------- /components/registry/svelte/steps/with-icons.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/steps/with-icons.svelte -------------------------------------------------------------------------------- /components/registry/svelte/steps/with-lines.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/steps/with-lines.svelte -------------------------------------------------------------------------------- /components/registry/svelte/switch/basic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/switch/basic.svelte -------------------------------------------------------------------------------- /components/registry/svelte/switch/bordered.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/switch/bordered.svelte -------------------------------------------------------------------------------- /components/registry/svelte/switch/disabled.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/switch/disabled.svelte -------------------------------------------------------------------------------- /components/registry/svelte/switch/in-card.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/switch/in-card.svelte -------------------------------------------------------------------------------- /components/registry/svelte/switch/square.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/switch/square.svelte -------------------------------------------------------------------------------- /components/registry/svelte/switch/with-icon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/switch/with-icon.svelte -------------------------------------------------------------------------------- /components/registry/svelte/tabs/basic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/tabs/basic.svelte -------------------------------------------------------------------------------- /components/registry/svelte/tabs/ghost.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/tabs/ghost.svelte -------------------------------------------------------------------------------- /components/registry/svelte/tabs/icon-above.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/tabs/icon-above.svelte -------------------------------------------------------------------------------- /components/registry/svelte/tabs/icon-only.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/tabs/icon-only.svelte -------------------------------------------------------------------------------- /components/registry/svelte/tabs/outline.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/tabs/outline.svelte -------------------------------------------------------------------------------- /components/registry/svelte/tabs/pills.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/tabs/pills.svelte -------------------------------------------------------------------------------- /components/registry/svelte/tabs/stack.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/tabs/stack.svelte -------------------------------------------------------------------------------- /components/registry/svelte/tabs/underline.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/tabs/underline.svelte -------------------------------------------------------------------------------- /components/registry/svelte/tabs/with-badges.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/tabs/with-badges.svelte -------------------------------------------------------------------------------- /components/registry/svelte/tabs/with-icons.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/tabs/with-icons.svelte -------------------------------------------------------------------------------- /components/registry/svelte/tags-input/basic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/tags-input/basic.svelte -------------------------------------------------------------------------------- /components/registry/svelte/timer/basic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/timer/basic.svelte -------------------------------------------------------------------------------- /components/registry/svelte/timer/card-style.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/timer/card-style.svelte -------------------------------------------------------------------------------- /components/registry/svelte/timer/compact.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/timer/compact.svelte -------------------------------------------------------------------------------- /components/registry/svelte/timer/countdown.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/timer/countdown.svelte -------------------------------------------------------------------------------- /components/registry/svelte/timer/minimal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/timer/minimal.svelte -------------------------------------------------------------------------------- /components/registry/svelte/timer/pomodoro.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/timer/pomodoro.svelte -------------------------------------------------------------------------------- /components/registry/svelte/timer/workout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/timer/workout.svelte -------------------------------------------------------------------------------- /components/registry/svelte/toast/basic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/toast/basic.svelte -------------------------------------------------------------------------------- /components/registry/svelte/toast/positions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/toast/positions.svelte -------------------------------------------------------------------------------- /components/registry/svelte/toast/promise.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/toast/promise.svelte -------------------------------------------------------------------------------- /components/registry/svelte/toast/types.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/toast/types.svelte -------------------------------------------------------------------------------- /components/registry/svelte/toast/updatable.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/toast/updatable.svelte -------------------------------------------------------------------------------- /components/registry/svelte/toggle/basic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/toggle/basic.svelte -------------------------------------------------------------------------------- /components/registry/svelte/toggle/disabled.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/toggle/disabled.svelte -------------------------------------------------------------------------------- /components/registry/svelte/toggle/ghost.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/toggle/ghost.svelte -------------------------------------------------------------------------------- /components/registry/svelte/toggle/with-text.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/toggle/with-text.svelte -------------------------------------------------------------------------------- /components/registry/svelte/tooltip/basic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/tooltip/basic.svelte -------------------------------------------------------------------------------- /components/registry/svelte/tour/basic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/tour/basic.svelte -------------------------------------------------------------------------------- /components/registry/svelte/tree-view/basic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/tree-view/basic.svelte -------------------------------------------------------------------------------- /components/registry/svelte/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/svelte/tsconfig.json -------------------------------------------------------------------------------- /components/registry/vue/accordion/multi-level.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/accordion/multi-level.vue -------------------------------------------------------------------------------- /components/registry/vue/accordion/with-chevron.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/accordion/with-chevron.vue -------------------------------------------------------------------------------- /components/registry/vue/angle-slider/with-knob.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/angle-slider/with-knob.vue -------------------------------------------------------------------------------- /components/registry/vue/avatar/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/avatar/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/avatar/group.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/avatar/group.vue -------------------------------------------------------------------------------- /components/registry/vue/avatar/rounded-square.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/avatar/rounded-square.vue -------------------------------------------------------------------------------- /components/registry/vue/avatar/trusted-by.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/avatar/trusted-by.vue -------------------------------------------------------------------------------- /components/registry/vue/avatar/with-badge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/avatar/with-badge.vue -------------------------------------------------------------------------------- /components/registry/vue/avatar/with-fallback.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/avatar/with-fallback.vue -------------------------------------------------------------------------------- /components/registry/vue/avatar/with-status.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/avatar/with-status.vue -------------------------------------------------------------------------------- /components/registry/vue/carousel/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/carousel/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/carousel/cards.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/carousel/cards.vue -------------------------------------------------------------------------------- /components/registry/vue/carousel/hero.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/carousel/hero.vue -------------------------------------------------------------------------------- /components/registry/vue/carousel/infinite.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/carousel/infinite.vue -------------------------------------------------------------------------------- /components/registry/vue/carousel/minimal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/carousel/minimal.vue -------------------------------------------------------------------------------- /components/registry/vue/carousel/testimonials.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/carousel/testimonials.vue -------------------------------------------------------------------------------- /components/registry/vue/carousel/thumbnails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/carousel/thumbnails.vue -------------------------------------------------------------------------------- /components/registry/vue/carousel/vertical.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/carousel/vertical.vue -------------------------------------------------------------------------------- /components/registry/vue/carousel/with-autoplay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/carousel/with-autoplay.vue -------------------------------------------------------------------------------- /components/registry/vue/checkbox/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/checkbox/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/checkbox/cards.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/checkbox/cards.vue -------------------------------------------------------------------------------- /components/registry/vue/checkbox/colors.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/checkbox/colors.vue -------------------------------------------------------------------------------- /components/registry/vue/checkbox/disabled.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/checkbox/disabled.vue -------------------------------------------------------------------------------- /components/registry/vue/checkbox/fancy-todo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/checkbox/fancy-todo.vue -------------------------------------------------------------------------------- /components/registry/vue/checkbox/indeterminate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/checkbox/indeterminate.vue -------------------------------------------------------------------------------- /components/registry/vue/checkbox/simple-todo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/checkbox/simple-todo.vue -------------------------------------------------------------------------------- /components/registry/vue/collapsible/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/collapsible/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/collapsible/faq-style.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/collapsible/faq-style.vue -------------------------------------------------------------------------------- /components/registry/vue/collapsible/styled.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/collapsible/styled.vue -------------------------------------------------------------------------------- /components/registry/vue/collapsible/with-icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/collapsible/with-icon.vue -------------------------------------------------------------------------------- /components/registry/vue/color-picker/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/color-picker/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/color-picker/hue-wheel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/color-picker/hue-wheel.vue -------------------------------------------------------------------------------- /components/registry/vue/color-picker/inline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/color-picker/inline.vue -------------------------------------------------------------------------------- /components/registry/vue/combobox/async.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/combobox/async.vue -------------------------------------------------------------------------------- /components/registry/vue/combobox/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/combobox/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/combobox/grouping.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/combobox/grouping.vue -------------------------------------------------------------------------------- /components/registry/vue/combobox/multiple.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/combobox/multiple.vue -------------------------------------------------------------------------------- /components/registry/vue/date-picker/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/date-picker/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/date-picker/multiple.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/date-picker/multiple.vue -------------------------------------------------------------------------------- /components/registry/vue/date-picker/presets.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/date-picker/presets.vue -------------------------------------------------------------------------------- /components/registry/vue/date-picker/pricing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/date-picker/pricing.vue -------------------------------------------------------------------------------- /components/registry/vue/date-picker/range.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/date-picker/range.vue -------------------------------------------------------------------------------- /components/registry/vue/date-picker/two-months.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/date-picker/two-months.vue -------------------------------------------------------------------------------- /components/registry/vue/date-picker/with-weeks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/date-picker/with-weeks.vue -------------------------------------------------------------------------------- /components/registry/vue/dialog/alert.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/dialog/alert.vue -------------------------------------------------------------------------------- /components/registry/vue/dialog/card-details.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/dialog/card-details.vue -------------------------------------------------------------------------------- /components/registry/vue/dialog/checkout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/dialog/checkout.vue -------------------------------------------------------------------------------- /components/registry/vue/dialog/delete-project.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/dialog/delete-project.vue -------------------------------------------------------------------------------- /components/registry/vue/dialog/edit-profile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/dialog/edit-profile.vue -------------------------------------------------------------------------------- /components/registry/vue/dialog/feedback.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/dialog/feedback.vue -------------------------------------------------------------------------------- /components/registry/vue/dialog/invite-team.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/dialog/invite-team.vue -------------------------------------------------------------------------------- /components/registry/vue/dialog/newsletter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/dialog/newsletter.vue -------------------------------------------------------------------------------- /components/registry/vue/dialog/rating.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/dialog/rating.vue -------------------------------------------------------------------------------- /components/registry/vue/dialog/signin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/dialog/signin.vue -------------------------------------------------------------------------------- /components/registry/vue/dialog/signup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/dialog/signup.vue -------------------------------------------------------------------------------- /components/registry/vue/dialog/terms.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/dialog/terms.vue -------------------------------------------------------------------------------- /components/registry/vue/dialog/with-icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/dialog/with-icon.vue -------------------------------------------------------------------------------- /components/registry/vue/editable/auto-resize.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/editable/auto-resize.vue -------------------------------------------------------------------------------- /components/registry/vue/editable/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/editable/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/editable/double-click.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/editable/double-click.vue -------------------------------------------------------------------------------- /components/registry/vue/editable/inline-edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/editable/inline-edit.vue -------------------------------------------------------------------------------- /components/registry/vue/editable/profile-field.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/editable/profile-field.vue -------------------------------------------------------------------------------- /components/registry/vue/editable/task-item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/editable/task-item.vue -------------------------------------------------------------------------------- /components/registry/vue/editable/title-editor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/editable/title-editor.vue -------------------------------------------------------------------------------- /components/registry/vue/editable/with-controls.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/editable/with-controls.vue -------------------------------------------------------------------------------- /components/registry/vue/field/required.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/field/required.vue -------------------------------------------------------------------------------- /components/registry/vue/field/simple.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/field/simple.vue -------------------------------------------------------------------------------- /components/registry/vue/field/with-end-add-on.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/field/with-end-add-on.vue -------------------------------------------------------------------------------- /components/registry/vue/field/with-end-button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/field/with-end-button.vue -------------------------------------------------------------------------------- /components/registry/vue/field/with-end-icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/field/with-end-icon.vue -------------------------------------------------------------------------------- /components/registry/vue/field/with-end-select.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/field/with-end-select.vue -------------------------------------------------------------------------------- /components/registry/vue/field/with-error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/field/with-error.vue -------------------------------------------------------------------------------- /components/registry/vue/field/with-helper-text.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/field/with-helper-text.vue -------------------------------------------------------------------------------- /components/registry/vue/field/with-start-icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/field/with-start-icon.vue -------------------------------------------------------------------------------- /components/registry/vue/file-upload/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/file-upload/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/file-upload/files-list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/file-upload/files-list.vue -------------------------------------------------------------------------------- /components/registry/vue/file-upload/with-paste.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/file-upload/with-paste.vue -------------------------------------------------------------------------------- /components/registry/vue/floating-panel/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/floating-panel/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/hover-card/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/hover-card/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/hover-card/controlled.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/hover-card/controlled.vue -------------------------------------------------------------------------------- /components/registry/vue/hover-card/with-arrow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/hover-card/with-arrow.vue -------------------------------------------------------------------------------- /components/registry/vue/listbox/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/listbox/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/listbox/controlled.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/listbox/controlled.vue -------------------------------------------------------------------------------- /components/registry/vue/listbox/countries.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/listbox/countries.vue -------------------------------------------------------------------------------- /components/registry/vue/listbox/settings-menu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/listbox/settings-menu.vue -------------------------------------------------------------------------------- /components/registry/vue/listbox/with-groups.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/listbox/with-groups.vue -------------------------------------------------------------------------------- /components/registry/vue/listbox/with-icons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/listbox/with-icons.vue -------------------------------------------------------------------------------- /components/registry/vue/menu/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/menu/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/menu/context-menu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/menu/context-menu.vue -------------------------------------------------------------------------------- /components/registry/vue/menu/nested.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/menu/nested.vue -------------------------------------------------------------------------------- /components/registry/vue/menu/user-menu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/menu/user-menu.vue -------------------------------------------------------------------------------- /components/registry/vue/menu/with-groups.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/menu/with-groups.vue -------------------------------------------------------------------------------- /components/registry/vue/menu/with-icons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/menu/with-icons.vue -------------------------------------------------------------------------------- /components/registry/vue/number-input/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/number-input/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/number-input/currency.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/number-input/currency.vue -------------------------------------------------------------------------------- /components/registry/vue/number-input/decimal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/number-input/decimal.vue -------------------------------------------------------------------------------- /components/registry/vue/number-input/min-max.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/number-input/min-max.vue -------------------------------------------------------------------------------- /components/registry/vue/number-input/quantity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/number-input/quantity.vue -------------------------------------------------------------------------------- /components/registry/vue/pagination/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/pagination/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/pagination/complete.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/pagination/complete.vue -------------------------------------------------------------------------------- /components/registry/vue/pagination/numbered.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/pagination/numbered.vue -------------------------------------------------------------------------------- /components/registry/vue/pagination/with-info.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/pagination/with-info.vue -------------------------------------------------------------------------------- /components/registry/vue/pagination/with-input.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/pagination/with-input.vue -------------------------------------------------------------------------------- /components/registry/vue/password-input/api-key.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/password-input/api-key.vue -------------------------------------------------------------------------------- /components/registry/vue/password-input/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/password-input/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/pin-input/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/pin-input/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/pin-input/masked.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/pin-input/masked.vue -------------------------------------------------------------------------------- /components/registry/vue/pin-input/two-factor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/pin-input/two-factor.vue -------------------------------------------------------------------------------- /components/registry/vue/pin-input/verification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/pin-input/verification.vue -------------------------------------------------------------------------------- /components/registry/vue/pin-input/with-field.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/pin-input/with-field.vue -------------------------------------------------------------------------------- /components/registry/vue/popover/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/popover/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/popover/feedback.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/popover/feedback.vue -------------------------------------------------------------------------------- /components/registry/vue/popover/notifications.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/popover/notifications.vue -------------------------------------------------------------------------------- /components/registry/vue/popover/settings-menu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/popover/settings-menu.vue -------------------------------------------------------------------------------- /components/registry/vue/popover/share.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/popover/share.vue -------------------------------------------------------------------------------- /components/registry/vue/popover/user-profile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/popover/user-profile.vue -------------------------------------------------------------------------------- /components/registry/vue/progress/linear-basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/progress/linear-basic.vue -------------------------------------------------------------------------------- /components/registry/vue/progress/linear-colors.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/progress/linear-colors.vue -------------------------------------------------------------------------------- /components/registry/vue/progress/linear-sizes.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/progress/linear-sizes.vue -------------------------------------------------------------------------------- /components/registry/vue/progress/vertical.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/progress/vertical.vue -------------------------------------------------------------------------------- /components/registry/vue/qr-code/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/qr-code/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/qr-code/custom-colors.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/qr-code/custom-colors.vue -------------------------------------------------------------------------------- /components/registry/vue/qr-code/for-contact.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/qr-code/for-contact.vue -------------------------------------------------------------------------------- /components/registry/vue/qr-code/for-url.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/qr-code/for-url.vue -------------------------------------------------------------------------------- /components/registry/vue/qr-code/sizes.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/qr-code/sizes.vue -------------------------------------------------------------------------------- /components/registry/vue/qr-code/with-download.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/qr-code/with-download.vue -------------------------------------------------------------------------------- /components/registry/vue/qr-code/with-overlay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/qr-code/with-overlay.vue -------------------------------------------------------------------------------- /components/registry/vue/radio-group/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/radio-group/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/radio-group/cards.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/radio-group/cards.vue -------------------------------------------------------------------------------- /components/registry/vue/radio-group/colors.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/radio-group/colors.vue -------------------------------------------------------------------------------- /components/registry/vue/radio-group/disabled.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/radio-group/disabled.vue -------------------------------------------------------------------------------- /components/registry/vue/radio-group/feedback.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/radio-group/feedback.vue -------------------------------------------------------------------------------- /components/registry/vue/radio-group/grid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/radio-group/grid.vue -------------------------------------------------------------------------------- /components/registry/vue/radio-group/plans.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/radio-group/plans.vue -------------------------------------------------------------------------------- /components/registry/vue/rating-group/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/rating-group/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/segment-group/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/segment-group/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/select/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/select/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/select/category-filter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/select/category-filter.vue -------------------------------------------------------------------------------- /components/registry/vue/select/multi-select.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/select/multi-select.vue -------------------------------------------------------------------------------- /components/registry/vue/select/theme-selector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/select/theme-selector.vue -------------------------------------------------------------------------------- /components/registry/vue/signature-pad/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/signature-pad/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/slider/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/slider/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/slider/equalizer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/slider/equalizer.vue -------------------------------------------------------------------------------- /components/registry/vue/slider/range.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/slider/range.vue -------------------------------------------------------------------------------- /components/registry/vue/slider/vertical.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/slider/vertical.vue -------------------------------------------------------------------------------- /components/registry/vue/slider/with-marks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/slider/with-marks.vue -------------------------------------------------------------------------------- /components/registry/vue/slider/with-ticks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/slider/with-ticks.vue -------------------------------------------------------------------------------- /components/registry/vue/splitter/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/splitter/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/splitter/nested.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/splitter/nested.vue -------------------------------------------------------------------------------- /components/registry/vue/splitter/three-panels.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/splitter/three-panels.vue -------------------------------------------------------------------------------- /components/registry/vue/splitter/vertical.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/splitter/vertical.vue -------------------------------------------------------------------------------- /components/registry/vue/steps/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/steps/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/steps/segmented.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/steps/segmented.vue -------------------------------------------------------------------------------- /components/registry/vue/steps/vertical-labels.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/steps/vertical-labels.vue -------------------------------------------------------------------------------- /components/registry/vue/steps/vertical-titles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/steps/vertical-titles.vue -------------------------------------------------------------------------------- /components/registry/vue/steps/vertical.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/steps/vertical.vue -------------------------------------------------------------------------------- /components/registry/vue/steps/with-checkmarks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/steps/with-checkmarks.vue -------------------------------------------------------------------------------- /components/registry/vue/steps/with-content.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/steps/with-content.vue -------------------------------------------------------------------------------- /components/registry/vue/steps/with-icons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/steps/with-icons.vue -------------------------------------------------------------------------------- /components/registry/vue/steps/with-labels.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/steps/with-labels.vue -------------------------------------------------------------------------------- /components/registry/vue/steps/with-lines.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/steps/with-lines.vue -------------------------------------------------------------------------------- /components/registry/vue/steps/with-navigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/steps/with-navigation.vue -------------------------------------------------------------------------------- /components/registry/vue/steps/with-progress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/steps/with-progress.vue -------------------------------------------------------------------------------- /components/registry/vue/steps/with-spinner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/steps/with-spinner.vue -------------------------------------------------------------------------------- /components/registry/vue/switch/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/switch/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/switch/bordered.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/switch/bordered.vue -------------------------------------------------------------------------------- /components/registry/vue/switch/disabled.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/switch/disabled.vue -------------------------------------------------------------------------------- /components/registry/vue/switch/in-card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/switch/in-card.vue -------------------------------------------------------------------------------- /components/registry/vue/switch/large-thumb.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/switch/large-thumb.vue -------------------------------------------------------------------------------- /components/registry/vue/switch/square.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/switch/square.vue -------------------------------------------------------------------------------- /components/registry/vue/switch/with-dual-icons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/switch/with-dual-icons.vue -------------------------------------------------------------------------------- /components/registry/vue/switch/with-icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/switch/with-icon.vue -------------------------------------------------------------------------------- /components/registry/vue/switch/with-label.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/switch/with-label.vue -------------------------------------------------------------------------------- /components/registry/vue/tabs/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/tabs/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/tabs/ghost.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/tabs/ghost.vue -------------------------------------------------------------------------------- /components/registry/vue/tabs/icon-above.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/tabs/icon-above.vue -------------------------------------------------------------------------------- /components/registry/vue/tabs/icon-only.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/tabs/icon-only.vue -------------------------------------------------------------------------------- /components/registry/vue/tabs/outline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/tabs/outline.vue -------------------------------------------------------------------------------- /components/registry/vue/tabs/pills.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/tabs/pills.vue -------------------------------------------------------------------------------- /components/registry/vue/tabs/stack-with-icons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/tabs/stack-with-icons.vue -------------------------------------------------------------------------------- /components/registry/vue/tabs/stack.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/tabs/stack.vue -------------------------------------------------------------------------------- /components/registry/vue/tabs/underline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/tabs/underline.vue -------------------------------------------------------------------------------- /components/registry/vue/tabs/vertical-ghost.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/tabs/vertical-ghost.vue -------------------------------------------------------------------------------- /components/registry/vue/tabs/vertical-icons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/tabs/vertical-icons.vue -------------------------------------------------------------------------------- /components/registry/vue/tabs/with-badges.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/tabs/with-badges.vue -------------------------------------------------------------------------------- /components/registry/vue/tabs/with-icons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/tabs/with-icons.vue -------------------------------------------------------------------------------- /components/registry/vue/tags-input/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/tags-input/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/timer/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/timer/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/timer/card-style.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/timer/card-style.vue -------------------------------------------------------------------------------- /components/registry/vue/timer/compact.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/timer/compact.vue -------------------------------------------------------------------------------- /components/registry/vue/timer/countdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/timer/countdown.vue -------------------------------------------------------------------------------- /components/registry/vue/timer/large-display.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/timer/large-display.vue -------------------------------------------------------------------------------- /components/registry/vue/timer/minimal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/timer/minimal.vue -------------------------------------------------------------------------------- /components/registry/vue/timer/pomodoro.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/timer/pomodoro.vue -------------------------------------------------------------------------------- /components/registry/vue/timer/with-labels.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/timer/with-labels.vue -------------------------------------------------------------------------------- /components/registry/vue/timer/workout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/timer/workout.vue -------------------------------------------------------------------------------- /components/registry/vue/toast/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/toast/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/toast/custom-duration.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/toast/custom-duration.vue -------------------------------------------------------------------------------- /components/registry/vue/toast/positions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/toast/positions.vue -------------------------------------------------------------------------------- /components/registry/vue/toast/promise.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/toast/promise.vue -------------------------------------------------------------------------------- /components/registry/vue/toast/types.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/toast/types.vue -------------------------------------------------------------------------------- /components/registry/vue/toast/updatable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/toast/updatable.vue -------------------------------------------------------------------------------- /components/registry/vue/toast/with-action.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/toast/with-action.vue -------------------------------------------------------------------------------- /components/registry/vue/toggle-group/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/toggle-group/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/toggle-group/ghost.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/toggle-group/ghost.vue -------------------------------------------------------------------------------- /components/registry/vue/toggle-group/multiple.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/toggle-group/multiple.vue -------------------------------------------------------------------------------- /components/registry/vue/toggle-group/outline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/toggle-group/outline.vue -------------------------------------------------------------------------------- /components/registry/vue/toggle-group/toolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/toggle-group/toolbar.vue -------------------------------------------------------------------------------- /components/registry/vue/toggle/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/toggle/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/toggle/controlled.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/toggle/controlled.vue -------------------------------------------------------------------------------- /components/registry/vue/toggle/disabled.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/toggle/disabled.vue -------------------------------------------------------------------------------- /components/registry/vue/toggle/ghost.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/toggle/ghost.vue -------------------------------------------------------------------------------- /components/registry/vue/toggle/with-indicator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/toggle/with-indicator.vue -------------------------------------------------------------------------------- /components/registry/vue/toggle/with-text.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/toggle/with-text.vue -------------------------------------------------------------------------------- /components/registry/vue/tooltip/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/tooltip/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/tooltip/metrics-card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/tooltip/metrics-card.vue -------------------------------------------------------------------------------- /components/registry/vue/tooltip/positioning.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/tooltip/positioning.vue -------------------------------------------------------------------------------- /components/registry/vue/tooltip/status-card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/tooltip/status-card.vue -------------------------------------------------------------------------------- /components/registry/vue/tooltip/with-arrow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/tooltip/with-arrow.vue -------------------------------------------------------------------------------- /components/registry/vue/tour/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/tour/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/tree-view/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/tree-view/basic.vue -------------------------------------------------------------------------------- /components/registry/vue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/registry/vue/tsconfig.json -------------------------------------------------------------------------------- /components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/theme-provider.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /hooks/use-framework.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/hooks/use-framework.ts -------------------------------------------------------------------------------- /hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/hooks/use-toast.ts -------------------------------------------------------------------------------- /lib/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/lib/components.ts -------------------------------------------------------------------------------- /lib/registry.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/lib/registry.server.ts -------------------------------------------------------------------------------- /lib/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/lib/registry.ts -------------------------------------------------------------------------------- /lib/registry.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/lib/registry.utils.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/open-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/public/open-graph.png -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anubra266/tarkui/HEAD/tsconfig.json --------------------------------------------------------------------------------