@nikala-ui/docs 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +22 -0
- package/dist/cli/commands/build.d.ts +5 -0
- package/dist/cli/commands/build.d.ts.map +1 -0
- package/dist/cli/commands/build.js +27 -0
- package/dist/cli/commands/build.js.map +1 -0
- package/dist/cli/commands/dev.d.ts +7 -0
- package/dist/cli/commands/dev.d.ts.map +1 -0
- package/dist/cli/commands/dev.js +32 -0
- package/dist/cli/commands/dev.js.map +1 -0
- package/dist/cli/commands/init.d.ts +2 -0
- package/dist/cli/commands/init.d.ts.map +1 -0
- package/dist/cli/commands/init.js +308 -0
- package/dist/cli/commands/init.js.map +1 -0
- package/dist/cli/commands/preview.d.ts +7 -0
- package/dist/cli/commands/preview.d.ts.map +1 -0
- package/dist/cli/commands/preview.js +24 -0
- package/dist/cli/commands/preview.js.map +1 -0
- package/dist/cli/commands/serve.d.ts +7 -0
- package/dist/cli/commands/serve.d.ts.map +1 -0
- package/dist/cli/commands/serve.js +33 -0
- package/dist/cli/commands/serve.js.map +1 -0
- package/dist/cli/index.d.ts +3 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/index.js +53 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/client/App.d.ts +5 -0
- package/dist/client/App.d.ts.map +1 -0
- package/dist/client/App.jsx +31 -0
- package/dist/client/App.jsx.map +1 -0
- package/dist/client/app-types.d.ts +14 -0
- package/dist/client/app-types.d.ts.map +1 -0
- package/dist/client/app-types.js +2 -0
- package/dist/client/app-types.js.map +1 -0
- package/dist/client/components/DocsLayoutShell.d.ts +21 -0
- package/dist/client/components/DocsLayoutShell.d.ts.map +1 -0
- package/dist/client/components/DocsLayoutShell.jsx +14 -0
- package/dist/client/components/DocsLayoutShell.jsx.map +1 -0
- package/dist/client/components/DocsPageContent.d.ts +9 -0
- package/dist/client/components/DocsPageContent.d.ts.map +1 -0
- package/dist/client/components/DocsPageContent.jsx +10 -0
- package/dist/client/components/DocsPageContent.jsx.map +1 -0
- package/dist/client/entry.d.ts +2 -0
- package/dist/client/entry.d.ts.map +1 -0
- package/dist/client/entry.jsx +28 -0
- package/dist/client/entry.jsx.map +1 -0
- package/dist/client/index.html +21 -0
- package/dist/client/navigation/page-navigation.d.ts +9 -0
- package/dist/client/navigation/page-navigation.d.ts.map +1 -0
- package/dist/client/navigation/page-navigation.js +51 -0
- package/dist/client/navigation/page-navigation.js.map +1 -0
- package/dist/client/routing/use-docs-router.d.ts +17 -0
- package/dist/client/routing/use-docs-router.d.ts.map +1 -0
- package/dist/client/routing/use-docs-router.js +71 -0
- package/dist/client/routing/use-docs-router.js.map +1 -0
- package/dist/client/ssr-entry.d.ts +3 -0
- package/dist/client/ssr-entry.d.ts.map +1 -0
- package/dist/client/ssr-entry.jsx +13 -0
- package/dist/client/ssr-entry.jsx.map +1 -0
- package/dist/client/style.css +183 -0
- package/dist/client/utils/sidebar.d.ts +2 -0
- package/dist/client/utils/sidebar.d.ts.map +1 -0
- package/dist/client/utils/sidebar.js +2 -0
- package/dist/client/utils/sidebar.js.map +1 -0
- package/dist/components/mdx-components.d.ts +34 -0
- package/dist/components/mdx-components.d.ts.map +1 -0
- package/dist/components/mdx-components.jsx +131 -0
- package/dist/components/mdx-components.jsx.map +1 -0
- package/dist/config.d.ts +6 -0
- package/dist/config.d.ts.map +1 -0
- package/dist/config.js +105 -0
- package/dist/config.js.map +1 -0
- package/dist/core/content-scanner.d.ts +10 -0
- package/dist/core/content-scanner.d.ts.map +1 -0
- package/dist/core/content-scanner.js +153 -0
- package/dist/core/content-scanner.js.map +1 -0
- package/dist/core/route-tree.d.ts +19 -0
- package/dist/core/route-tree.d.ts.map +1 -0
- package/dist/core/route-tree.js +176 -0
- package/dist/core/route-tree.js.map +1 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +14 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/cn.d.ts +6 -0
- package/dist/lib/cn.d.ts.map +1 -0
- package/dist/lib/cn.js +9 -0
- package/dist/lib/cn.js.map +1 -0
- package/dist/mdx/compiler.d.ts +13 -0
- package/dist/mdx/compiler.d.ts.map +1 -0
- package/dist/mdx/compiler.js +38 -0
- package/dist/mdx/compiler.js.map +1 -0
- package/dist/mdx/highlighter.d.ts +22 -0
- package/dist/mdx/highlighter.d.ts.map +1 -0
- package/dist/mdx/highlighter.js +139 -0
- package/dist/mdx/highlighter.js.map +1 -0
- package/dist/mdx/rehype-shiki.d.ts +3 -0
- package/dist/mdx/rehype-shiki.d.ts.map +1 -0
- package/dist/mdx/rehype-shiki.js +83 -0
- package/dist/mdx/rehype-shiki.js.map +1 -0
- package/dist/navigation/index.d.ts +2 -0
- package/dist/navigation/index.d.ts.map +1 -0
- package/dist/navigation/index.js +2 -0
- package/dist/navigation/index.js.map +1 -0
- package/dist/navigation/sidebar-state.d.ts +6 -0
- package/dist/navigation/sidebar-state.d.ts.map +1 -0
- package/dist/navigation/sidebar-state.js +20 -0
- package/dist/navigation/sidebar-state.js.map +1 -0
- package/dist/navigation/sidebar-tree.d.ts +7 -0
- package/dist/navigation/sidebar-tree.d.ts.map +1 -0
- package/dist/navigation/sidebar-tree.js +11 -0
- package/dist/navigation/sidebar-tree.js.map +1 -0
- package/dist/registry/accordion.json +18 -0
- package/dist/registry/alert.json +18 -0
- package/dist/registry/api-table.json +21 -0
- package/dist/registry/aspect-ratio.json +17 -0
- package/dist/registry/avatar.json +17 -0
- package/dist/registry/badge.json +18 -0
- package/dist/registry/banner.json +19 -0
- package/dist/registry/breadcrumb.json +17 -0
- package/dist/registry/bubble.json +18 -0
- package/dist/registry/button-group.json +20 -0
- package/dist/registry/button.json +21 -0
- package/dist/registry/callout.json +19 -0
- package/dist/registry/card.json +17 -0
- package/dist/registry/checkbox.json +20 -0
- package/dist/registry/code-block.json +26 -0
- package/dist/registry/code-group.json +20 -0
- package/dist/registry/collapsible.json +18 -0
- package/dist/registry/combobox.json +21 -0
- package/dist/registry/command.json +27 -0
- package/dist/registry/component-viewer.json +25 -0
- package/dist/registry/container.json +18 -0
- package/dist/registry/context-menu.json +24 -0
- package/dist/registry/create-active-element.json +13 -0
- package/dist/registry/create-app-updater.json +13 -0
- package/dist/registry/create-audio.json +7 -0
- package/dist/registry/create-battery.json +13 -0
- package/dist/registry/create-chat-scroll.json +13 -0
- package/dist/registry/create-click-outside.json +13 -0
- package/dist/registry/create-clipboard.json +13 -0
- package/dist/registry/create-color-mode.json +13 -0
- package/dist/registry/create-controllable-signal.json +13 -0
- package/dist/registry/create-debounce.json +13 -0
- package/dist/registry/create-disclosure.json +13 -0
- package/dist/registry/create-document-tabs.json +13 -0
- package/dist/registry/create-document-title.json +13 -0
- package/dist/registry/create-drop-zone.json +13 -0
- package/dist/registry/create-event-source.json +13 -0
- package/dist/registry/create-favicon.json +13 -0
- package/dist/registry/create-fetch.json +13 -0
- package/dist/registry/create-focus-trap.json +13 -0
- package/dist/registry/create-form.json +13 -0
- package/dist/registry/create-fullscreen.json +13 -0
- package/dist/registry/create-geolocation.json +13 -0
- package/dist/registry/create-global-shortcut.json +13 -0
- package/dist/registry/create-hover.json +13 -0
- package/dist/registry/create-idle.json +13 -0
- package/dist/registry/create-infinite-scroll.json +13 -0
- package/dist/registry/create-input-mask.json +13 -0
- package/dist/registry/create-intersection-observer.json +13 -0
- package/dist/registry/create-keybindings.json +13 -0
- package/dist/registry/create-lock-scroll.json +13 -0
- package/dist/registry/create-long-press.json +13 -0
- package/dist/registry/create-media-query.json +13 -0
- package/dist/registry/create-mouse-position.json +13 -0
- package/dist/registry/create-network-status.json +13 -0
- package/dist/registry/create-orientation.json +13 -0
- package/dist/registry/create-pagination.json +13 -0
- package/dist/registry/create-permission.json +13 -0
- package/dist/registry/create-previous.json +13 -0
- package/dist/registry/create-resize-observer.json +13 -0
- package/dist/registry/create-scroll-into-view.json +13 -0
- package/dist/registry/create-scroll-position.json +13 -0
- package/dist/registry/create-storage.json +13 -0
- package/dist/registry/create-tauri-window.json +13 -0
- package/dist/registry/create-timer.json +13 -0
- package/dist/registry/create-tiptap-editor.json +34 -0
- package/dist/registry/create-undo-redo.json +13 -0
- package/dist/registry/create-web-notification.json +13 -0
- package/dist/registry/create-websocket.json +13 -0
- package/dist/registry/create-window-size.json +13 -0
- package/dist/registry/dialog.json +21 -0
- package/dist/registry/dropdown-menu.json +22 -0
- package/dist/registry/dropzone.json +21 -0
- package/dist/registry/empty.json +17 -0
- package/dist/registry/field.json +20 -0
- package/dist/registry/file-tree.json +21 -0
- package/dist/registry/footer.json +18 -0
- package/dist/registry/forgot-password-01.json +28 -0
- package/dist/registry/form-message.json +17 -0
- package/dist/registry/form.json +17 -0
- package/dist/registry/hero-01.json +22 -0
- package/dist/registry/hover-card.json +18 -0
- package/dist/registry/icon-button.json +20 -0
- package/dist/registry/index.json +1489 -0
- package/dist/registry/input-group.json +21 -0
- package/dist/registry/input.json +17 -0
- package/dist/registry/kbd.json +18 -0
- package/dist/registry/label.json +18 -0
- package/dist/registry/list.json +20 -0
- package/dist/registry/login-01.json +28 -0
- package/dist/registry/logo.json +17 -0
- package/dist/registry/marker.json +17 -0
- package/dist/registry/marquee.json +17 -0
- package/dist/registry/message.json +17 -0
- package/dist/registry/navbar.json +19 -0
- package/dist/registry/navigation-menu.json +22 -0
- package/dist/registry/number-input.json +24 -0
- package/dist/registry/otp-verification-01.json +26 -0
- package/dist/registry/package-manager-tabs.json +24 -0
- package/dist/registry/pager.json +21 -0
- package/dist/registry/pagination.json +22 -0
- package/dist/registry/pin-input.json +17 -0
- package/dist/registry/popover.json +22 -0
- package/dist/registry/progress.json +18 -0
- package/dist/registry/radio-group.json +18 -0
- package/dist/registry/rating.json +19 -0
- package/dist/registry/register-01.json +31 -0
- package/dist/registry/resizable.json +21 -0
- package/dist/registry/review-card.json +23 -0
- package/dist/registry/rich-text-editor.json +95 -0
- package/dist/registry/scroll-area.json +21 -0
- package/dist/registry/section-heading.json +21 -0
- package/dist/registry/select.json +22 -0
- package/dist/registry/separator.json +17 -0
- package/dist/registry/sheet.json +22 -0
- package/dist/registry/sidebar.json +24 -0
- package/dist/registry/skeleton.json +17 -0
- package/dist/registry/slider.json +18 -0
- package/dist/registry/spinner.json +18 -0
- package/dist/registry/stat.json +19 -0
- package/dist/registry/status.json +18 -0
- package/dist/registry/steps.json +20 -0
- package/dist/registry/switch.json +20 -0
- package/dist/registry/table-of-contents.json +23 -0
- package/dist/registry/table.json +17 -0
- package/dist/registry/tabs.json +20 -0
- package/dist/registry/textarea.json +17 -0
- package/dist/registry/theme-manager.json +39 -0
- package/dist/registry/timeline.json +18 -0
- package/dist/registry/titlebar-tabs.json +24 -0
- package/dist/registry/titlebar.json +26 -0
- package/dist/registry/toast.json +20 -0
- package/dist/registry/toggle-group.json +21 -0
- package/dist/registry/toggle.json +18 -0
- package/dist/registry/tooltip.json +18 -0
- package/dist/registry/updater-modal.json +26 -0
- package/dist/server/index.d.ts +18 -0
- package/dist/server/index.d.ts.map +1 -0
- package/dist/server/index.js +526 -0
- package/dist/server/index.js.map +1 -0
- package/dist/server/plugin.d.ts +10 -0
- package/dist/server/plugin.d.ts.map +1 -0
- package/dist/server/plugin.js +271 -0
- package/dist/server/plugin.js.map +1 -0
- package/dist/themes/default/content/breadcrumbs.d.ts +4 -0
- package/dist/themes/default/content/breadcrumbs.d.ts.map +1 -0
- package/dist/themes/default/content/breadcrumbs.jsx +31 -0
- package/dist/themes/default/content/breadcrumbs.jsx.map +1 -0
- package/dist/themes/default/content/pager.d.ts +5 -0
- package/dist/themes/default/content/pager.d.ts.map +1 -0
- package/dist/themes/default/content/pager.jsx +9 -0
- package/dist/themes/default/content/pager.jsx.map +1 -0
- package/dist/themes/default/content/table-of-contents.d.ts +4 -0
- package/dist/themes/default/content/table-of-contents.d.ts.map +1 -0
- package/dist/themes/default/content/table-of-contents.jsx +19 -0
- package/dist/themes/default/content/table-of-contents.jsx.map +1 -0
- package/dist/themes/default/index.d.ts +11 -0
- package/dist/themes/default/index.d.ts.map +1 -0
- package/dist/themes/default/index.js +30 -0
- package/dist/themes/default/index.js.map +1 -0
- package/dist/themes/default/layout.d.ts +4 -0
- package/dist/themes/default/layout.d.ts.map +1 -0
- package/dist/themes/default/layout.jsx +75 -0
- package/dist/themes/default/layout.jsx.map +1 -0
- package/dist/themes/default/navbar.d.ts +4 -0
- package/dist/themes/default/navbar.d.ts.map +1 -0
- package/dist/themes/default/navbar.jsx +74 -0
- package/dist/themes/default/navbar.jsx.map +1 -0
- package/dist/themes/default/navigation/mobile-table-of-contents.d.ts +4 -0
- package/dist/themes/default/navigation/mobile-table-of-contents.d.ts.map +1 -0
- package/dist/themes/default/navigation/mobile-table-of-contents.jsx +22 -0
- package/dist/themes/default/navigation/mobile-table-of-contents.jsx.map +1 -0
- package/dist/themes/default/navigation/sidebar-tree.d.ts +8 -0
- package/dist/themes/default/navigation/sidebar-tree.d.ts.map +1 -0
- package/dist/themes/default/navigation/sidebar-tree.jsx +100 -0
- package/dist/themes/default/navigation/sidebar-tree.jsx.map +1 -0
- package/dist/themes/default/overlays/search-dialog.d.ts +4 -0
- package/dist/themes/default/overlays/search-dialog.d.ts.map +1 -0
- package/dist/themes/default/overlays/search-dialog.jsx +34 -0
- package/dist/themes/default/overlays/search-dialog.jsx.map +1 -0
- package/dist/themes/default/sidebar.d.ts +4 -0
- package/dist/themes/default/sidebar.d.ts.map +1 -0
- package/dist/themes/default/sidebar.jsx +60 -0
- package/dist/themes/default/sidebar.jsx.map +1 -0
- package/dist/themes/index.d.ts +4 -0
- package/dist/themes/index.d.ts.map +1 -0
- package/dist/themes/index.js +5 -0
- package/dist/themes/index.js.map +1 -0
- package/dist/themes/types.d.ts +83 -0
- package/dist/themes/types.d.ts.map +1 -0
- package/dist/themes/types.js +2 -0
- package/dist/themes/types.js.map +1 -0
- package/dist/types.d.ts +97 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +3 -0
- package/dist/types.js.map +1 -0
- package/dist/vendor/core-src/index.css +11 -0
- package/dist/vendor/core-src/index.ts +48 -0
- package/dist/vendor/core-src/lib/cn.ts +9 -0
- package/dist/vendor/core-src/registry/blocks/forgot-password-01.tsx +141 -0
- package/dist/vendor/core-src/registry/blocks/hero-01.tsx +28 -0
- package/dist/vendor/core-src/registry/blocks/login-01.tsx +231 -0
- package/dist/vendor/core-src/registry/blocks/otp-verification-01.tsx +170 -0
- package/dist/vendor/core-src/registry/blocks/register-01.tsx +318 -0
- package/dist/vendor/core-src/registry/components/ui/accordion.tsx +128 -0
- package/dist/vendor/core-src/registry/components/ui/alert.tsx +155 -0
- package/dist/vendor/core-src/registry/components/ui/api-table.tsx +117 -0
- package/dist/vendor/core-src/registry/components/ui/aspect-ratio.tsx +31 -0
- package/dist/vendor/core-src/registry/components/ui/avatar.tsx +114 -0
- package/dist/vendor/core-src/registry/components/ui/badge.tsx +56 -0
- package/dist/vendor/core-src/registry/components/ui/banner.tsx +187 -0
- package/dist/vendor/core-src/registry/components/ui/breadcrumb.tsx +136 -0
- package/dist/vendor/core-src/registry/components/ui/bubble.tsx +142 -0
- package/dist/vendor/core-src/registry/components/ui/button-group.tsx +42 -0
- package/dist/vendor/core-src/registry/components/ui/button.tsx +82 -0
- package/dist/vendor/core-src/registry/components/ui/callout.tsx +137 -0
- package/dist/vendor/core-src/registry/components/ui/card.tsx +113 -0
- package/dist/vendor/core-src/registry/components/ui/checkbox.tsx +74 -0
- package/dist/vendor/core-src/registry/components/ui/code-block.tsx +326 -0
- package/dist/vendor/core-src/registry/components/ui/code-group.tsx +105 -0
- package/dist/vendor/core-src/registry/components/ui/collapsible.tsx +73 -0
- package/dist/vendor/core-src/registry/components/ui/combobox.tsx +299 -0
- package/dist/vendor/core-src/registry/components/ui/command.tsx +378 -0
- package/dist/vendor/core-src/registry/components/ui/component-viewer.tsx +363 -0
- package/dist/vendor/core-src/registry/components/ui/container.tsx +45 -0
- package/dist/vendor/core-src/registry/components/ui/context-menu.tsx +237 -0
- package/dist/vendor/core-src/registry/components/ui/dialog.tsx +200 -0
- package/dist/vendor/core-src/registry/components/ui/dropdown-menu.tsx +298 -0
- package/dist/vendor/core-src/registry/components/ui/dropzone.tsx +189 -0
- package/dist/vendor/core-src/registry/components/ui/empty.tsx +83 -0
- package/dist/vendor/core-src/registry/components/ui/field.tsx +71 -0
- package/dist/vendor/core-src/registry/components/ui/file-tree.tsx +181 -0
- package/dist/vendor/core-src/registry/components/ui/footer.tsx +247 -0
- package/dist/vendor/core-src/registry/components/ui/form-message.tsx +36 -0
- package/dist/vendor/core-src/registry/components/ui/form.tsx +21 -0
- package/dist/vendor/core-src/registry/components/ui/hover-card.tsx +105 -0
- package/dist/vendor/core-src/registry/components/ui/icon-button.tsx +34 -0
- package/dist/vendor/core-src/registry/components/ui/input-group.tsx +80 -0
- package/dist/vendor/core-src/registry/components/ui/input.tsx +28 -0
- package/dist/vendor/core-src/registry/components/ui/kbd.tsx +73 -0
- package/dist/vendor/core-src/registry/components/ui/label.tsx +30 -0
- package/dist/vendor/core-src/registry/components/ui/list.tsx +222 -0
- package/dist/vendor/core-src/registry/components/ui/logo.tsx +68 -0
- package/dist/vendor/core-src/registry/components/ui/marker.tsx +102 -0
- package/dist/vendor/core-src/registry/components/ui/marquee.tsx +118 -0
- package/dist/vendor/core-src/registry/components/ui/message.tsx +168 -0
- package/dist/vendor/core-src/registry/components/ui/navbar.tsx +375 -0
- package/dist/vendor/core-src/registry/components/ui/navigation-menu.tsx +358 -0
- package/dist/vendor/core-src/registry/components/ui/number-input.tsx +150 -0
- package/dist/vendor/core-src/registry/components/ui/package-manager-tabs.tsx +226 -0
- package/dist/vendor/core-src/registry/components/ui/pager.tsx +102 -0
- package/dist/vendor/core-src/registry/components/ui/pagination.tsx +258 -0
- package/dist/vendor/core-src/registry/components/ui/pin-input.tsx +198 -0
- package/dist/vendor/core-src/registry/components/ui/popover.tsx +90 -0
- package/dist/vendor/core-src/registry/components/ui/progress.tsx +66 -0
- package/dist/vendor/core-src/registry/components/ui/radio-group.tsx +95 -0
- package/dist/vendor/core-src/registry/components/ui/rating.tsx +185 -0
- package/dist/vendor/core-src/registry/components/ui/resizable.tsx +195 -0
- package/dist/vendor/core-src/registry/components/ui/review-card.tsx +195 -0
- package/dist/vendor/core-src/registry/components/ui/rich-text-editor/bubble-menu.tsx +236 -0
- package/dist/vendor/core-src/registry/components/ui/rich-text-editor/editor.tsx +308 -0
- package/dist/vendor/core-src/registry/components/ui/rich-text-editor/extensions.ts +116 -0
- package/dist/vendor/core-src/registry/components/ui/rich-text-editor/footer.tsx +36 -0
- package/dist/vendor/core-src/registry/components/ui/rich-text-editor/image-dialog.tsx +75 -0
- package/dist/vendor/core-src/registry/components/ui/rich-text-editor/index.ts +11 -0
- package/dist/vendor/core-src/registry/components/ui/rich-text-editor/link-dialog.tsx +48 -0
- package/dist/vendor/core-src/registry/components/ui/rich-text-editor/markdown.ts +170 -0
- package/dist/vendor/core-src/registry/components/ui/rich-text-editor/slash-command.tsx +301 -0
- package/dist/vendor/core-src/registry/components/ui/rich-text-editor/table-controls.tsx +68 -0
- package/dist/vendor/core-src/registry/components/ui/rich-text-editor/toolbar.tsx +465 -0
- package/dist/vendor/core-src/registry/components/ui/rich-text-editor/use-editor.ts +231 -0
- package/dist/vendor/core-src/registry/components/ui/scroll-area.tsx +228 -0
- package/dist/vendor/core-src/registry/components/ui/section-heading.tsx +108 -0
- package/dist/vendor/core-src/registry/components/ui/select.tsx +156 -0
- package/dist/vendor/core-src/registry/components/ui/separator.tsx +37 -0
- package/dist/vendor/core-src/registry/components/ui/sheet.tsx +220 -0
- package/dist/vendor/core-src/registry/components/ui/sidebar.tsx +692 -0
- package/dist/vendor/core-src/registry/components/ui/skeleton.tsx +24 -0
- package/dist/vendor/core-src/registry/components/ui/slider.tsx +153 -0
- package/dist/vendor/core-src/registry/components/ui/spinner.tsx +41 -0
- package/dist/vendor/core-src/registry/components/ui/stat.tsx +245 -0
- package/dist/vendor/core-src/registry/components/ui/status.tsx +121 -0
- package/dist/vendor/core-src/registry/components/ui/steps.tsx +198 -0
- package/dist/vendor/core-src/registry/components/ui/switch.tsx +68 -0
- package/dist/vendor/core-src/registry/components/ui/table-of-contents.tsx +131 -0
- package/dist/vendor/core-src/registry/components/ui/table.tsx +160 -0
- package/dist/vendor/core-src/registry/components/ui/tabs.tsx +204 -0
- package/dist/vendor/core-src/registry/components/ui/textarea.tsx +82 -0
- package/dist/vendor/core-src/registry/components/ui/theme-toggle.tsx +238 -0
- package/dist/vendor/core-src/registry/components/ui/timeline.tsx +350 -0
- package/dist/vendor/core-src/registry/components/ui/titlebar-tabs.tsx +773 -0
- package/dist/vendor/core-src/registry/components/ui/titlebar.tsx +468 -0
- package/dist/vendor/core-src/registry/components/ui/toast.tsx +124 -0
- package/dist/vendor/core-src/registry/components/ui/toggle-group.tsx +203 -0
- package/dist/vendor/core-src/registry/components/ui/toggle.tsx +101 -0
- package/dist/vendor/core-src/registry/components/ui/tooltip.tsx +41 -0
- package/dist/vendor/core-src/registry/components/ui/updater-modal.tsx +254 -0
- package/dist/vendor/core-src/registry/index.ts +50 -0
- package/dist/vendor/core-src/registry/metadata.ts +742 -0
- package/dist/vendor/core-src/registry/providers/theme-provider.tsx +216 -0
- package/dist/vendor/core-src/registry/providers/theme-script.tsx +78 -0
- package/dist/vendor/core-src/registry/providers/theme-transitions.ts +139 -0
- package/dist/vendor/hooks-src/create-active-element.ts +51 -0
- package/dist/vendor/hooks-src/create-app-updater.ts +272 -0
- package/dist/vendor/hooks-src/create-audio-video.ts +444 -0
- package/dist/vendor/hooks-src/create-battery.ts +78 -0
- package/dist/vendor/hooks-src/create-chat-scroll.ts +113 -0
- package/dist/vendor/hooks-src/create-click-outside.ts +82 -0
- package/dist/vendor/hooks-src/create-clipboard.ts +69 -0
- package/dist/vendor/hooks-src/create-color-mode.ts +115 -0
- package/dist/vendor/hooks-src/create-controllable-signal.ts +56 -0
- package/dist/vendor/hooks-src/create-debounce.ts +90 -0
- package/dist/vendor/hooks-src/create-disclosure.ts +82 -0
- package/dist/vendor/hooks-src/create-document-tabs.ts +267 -0
- package/dist/vendor/hooks-src/create-document-title.ts +33 -0
- package/dist/vendor/hooks-src/create-drop-zone.ts +317 -0
- package/dist/vendor/hooks-src/create-event-source.ts +126 -0
- package/dist/vendor/hooks-src/create-favicon.ts +52 -0
- package/dist/vendor/hooks-src/create-fetch.ts +93 -0
- package/dist/vendor/hooks-src/create-focus-trap.ts +94 -0
- package/dist/vendor/hooks-src/create-form.ts +200 -0
- package/dist/vendor/hooks-src/create-fullscreen.ts +105 -0
- package/dist/vendor/hooks-src/create-geolocation.ts +140 -0
- package/dist/vendor/hooks-src/create-global-shortcut.ts +140 -0
- package/dist/vendor/hooks-src/create-hover.ts +88 -0
- package/dist/vendor/hooks-src/create-idle.ts +109 -0
- package/dist/vendor/hooks-src/create-infinite-scroll.ts +90 -0
- package/dist/vendor/hooks-src/create-input-mask.ts +109 -0
- package/dist/vendor/hooks-src/create-intersection-observer.ts +82 -0
- package/dist/vendor/hooks-src/create-keybindings.ts +148 -0
- package/dist/vendor/hooks-src/create-lock-scroll.ts +97 -0
- package/dist/vendor/hooks-src/create-long-press.ts +85 -0
- package/dist/vendor/hooks-src/create-media-query.ts +94 -0
- package/dist/vendor/hooks-src/create-mouse-position.ts +87 -0
- package/dist/vendor/hooks-src/create-network-status.ts +100 -0
- package/dist/vendor/hooks-src/create-orientation.ts +129 -0
- package/dist/vendor/hooks-src/create-pagination.ts +208 -0
- package/dist/vendor/hooks-src/create-permission.ts +91 -0
- package/dist/vendor/hooks-src/create-previous.ts +21 -0
- package/dist/vendor/hooks-src/create-resize-observer.ts +89 -0
- package/dist/vendor/hooks-src/create-scroll-into-view.ts +57 -0
- package/dist/vendor/hooks-src/create-scroll-position.ts +129 -0
- package/dist/vendor/hooks-src/create-storage.ts +106 -0
- package/dist/vendor/hooks-src/create-tauri-window.ts +628 -0
- package/dist/vendor/hooks-src/create-timer.ts +150 -0
- package/dist/vendor/hooks-src/create-tiptap-editor.ts +326 -0
- package/dist/vendor/hooks-src/create-undo-redo.ts +100 -0
- package/dist/vendor/hooks-src/create-web-notification.ts +111 -0
- package/dist/vendor/hooks-src/create-websocket.ts +179 -0
- package/dist/vendor/hooks-src/create-window-size.ts +41 -0
- package/dist/vendor/hooks-src/index.ts +48 -0
- package/package.json +87 -0
|
@@ -0,0 +1,1489 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"name": "accordion",
|
|
4
|
+
"title": "Accordion",
|
|
5
|
+
"description": "A vertically stacked set of interactive headings built on Kobalte primitives.",
|
|
6
|
+
"type": "registry:ui",
|
|
7
|
+
"dependencies": [
|
|
8
|
+
"clsx",
|
|
9
|
+
"tailwind-merge",
|
|
10
|
+
"@kobalte/core"
|
|
11
|
+
]
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"name": "alert",
|
|
15
|
+
"title": "Alert",
|
|
16
|
+
"description": "Displays a callout banner for user feedback with variants, dismiss button, and timer.",
|
|
17
|
+
"type": "registry:ui",
|
|
18
|
+
"dependencies": [
|
|
19
|
+
"clsx",
|
|
20
|
+
"tailwind-merge",
|
|
21
|
+
"class-variance-authority"
|
|
22
|
+
]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "api-table",
|
|
26
|
+
"title": "API Table",
|
|
27
|
+
"description": "A structured, clean API reference table component for documenting props, options, and events.",
|
|
28
|
+
"type": "registry:ui",
|
|
29
|
+
"dependencies": [
|
|
30
|
+
"clsx",
|
|
31
|
+
"tailwind-merge"
|
|
32
|
+
],
|
|
33
|
+
"registryDependencies": [
|
|
34
|
+
"table",
|
|
35
|
+
"section-heading"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "aspect-ratio",
|
|
40
|
+
"title": "Aspect Ratio",
|
|
41
|
+
"description": "Displays content within a specific aspect ratio using CSS aspect-ratio while preventing layout shifts.",
|
|
42
|
+
"type": "registry:ui",
|
|
43
|
+
"dependencies": [
|
|
44
|
+
"clsx",
|
|
45
|
+
"tailwind-merge"
|
|
46
|
+
]
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "avatar",
|
|
50
|
+
"title": "Avatar",
|
|
51
|
+
"description": "An image element with fallback representation for representing users.",
|
|
52
|
+
"type": "registry:ui",
|
|
53
|
+
"dependencies": [
|
|
54
|
+
"clsx",
|
|
55
|
+
"tailwind-merge"
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "badge",
|
|
60
|
+
"title": "Badge",
|
|
61
|
+
"description": "A small badge component for status indicators and tags.",
|
|
62
|
+
"type": "registry:ui",
|
|
63
|
+
"dependencies": [
|
|
64
|
+
"clsx",
|
|
65
|
+
"tailwind-merge",
|
|
66
|
+
"class-variance-authority"
|
|
67
|
+
]
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "banner",
|
|
71
|
+
"title": "Banner",
|
|
72
|
+
"description": "An announcement banner with sticky positioning, dismissal persistence, auto-hide timer, Lucide icons, and variant styles.",
|
|
73
|
+
"type": "registry:ui",
|
|
74
|
+
"dependencies": [
|
|
75
|
+
"clsx",
|
|
76
|
+
"tailwind-merge",
|
|
77
|
+
"class-variance-authority",
|
|
78
|
+
"lucide-solid"
|
|
79
|
+
]
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "breadcrumb",
|
|
83
|
+
"title": "Breadcrumb",
|
|
84
|
+
"description": "Displays the path to the current resource using a hierarchy of links.",
|
|
85
|
+
"type": "registry:ui",
|
|
86
|
+
"dependencies": [
|
|
87
|
+
"clsx",
|
|
88
|
+
"tailwind-merge"
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "bubble",
|
|
93
|
+
"title": "Bubble",
|
|
94
|
+
"description": "Chat message bubble container supporting variants, grouped consecutive bubbles, and emoji reactions.",
|
|
95
|
+
"type": "registry:ui",
|
|
96
|
+
"dependencies": [
|
|
97
|
+
"clsx",
|
|
98
|
+
"tailwind-merge",
|
|
99
|
+
"class-variance-authority"
|
|
100
|
+
]
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "button-group",
|
|
104
|
+
"title": "Button Group",
|
|
105
|
+
"description": "Groups related buttons into a connected horizontal or vertical control.",
|
|
106
|
+
"type": "registry:ui",
|
|
107
|
+
"dependencies": [
|
|
108
|
+
"clsx",
|
|
109
|
+
"tailwind-merge"
|
|
110
|
+
],
|
|
111
|
+
"registryDependencies": [
|
|
112
|
+
"button"
|
|
113
|
+
]
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"name": "button",
|
|
117
|
+
"title": "Button",
|
|
118
|
+
"description": "An interactive button component with variant and size options.",
|
|
119
|
+
"type": "registry:ui",
|
|
120
|
+
"dependencies": [
|
|
121
|
+
"clsx",
|
|
122
|
+
"tailwind-merge",
|
|
123
|
+
"class-variance-authority"
|
|
124
|
+
],
|
|
125
|
+
"registryDependencies": [
|
|
126
|
+
"spinner"
|
|
127
|
+
]
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "callout",
|
|
131
|
+
"title": "Callout",
|
|
132
|
+
"description": "A semantic callout and alert block with status variants, icons, and titles for documentation and notices.",
|
|
133
|
+
"type": "registry:ui",
|
|
134
|
+
"dependencies": [
|
|
135
|
+
"clsx",
|
|
136
|
+
"tailwind-merge",
|
|
137
|
+
"class-variance-authority",
|
|
138
|
+
"lucide-solid"
|
|
139
|
+
]
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"name": "card",
|
|
143
|
+
"title": "Card",
|
|
144
|
+
"description": "A versatile container component with header, content, and footer sections.",
|
|
145
|
+
"type": "registry:ui",
|
|
146
|
+
"dependencies": [
|
|
147
|
+
"clsx",
|
|
148
|
+
"tailwind-merge"
|
|
149
|
+
]
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"name": "checkbox",
|
|
153
|
+
"title": "Checkbox",
|
|
154
|
+
"description": "A control that allows the user to toggle between checked and unchecked options.",
|
|
155
|
+
"type": "registry:ui",
|
|
156
|
+
"dependencies": [
|
|
157
|
+
"clsx",
|
|
158
|
+
"tailwind-merge"
|
|
159
|
+
],
|
|
160
|
+
"registryDependencies": [
|
|
161
|
+
"create-controllable-signal"
|
|
162
|
+
]
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"name": "code-block",
|
|
166
|
+
"title": "Code Block",
|
|
167
|
+
"description": "A code block container with filename header, language indicator, and interactive copy to clipboard button.",
|
|
168
|
+
"type": "registry:ui",
|
|
169
|
+
"dependencies": [
|
|
170
|
+
"clsx",
|
|
171
|
+
"tailwind-merge",
|
|
172
|
+
"lucide-solid",
|
|
173
|
+
"shiki"
|
|
174
|
+
],
|
|
175
|
+
"registryDependencies": [
|
|
176
|
+
"button",
|
|
177
|
+
"badge",
|
|
178
|
+
"tooltip",
|
|
179
|
+
"tabs",
|
|
180
|
+
"create-clipboard"
|
|
181
|
+
]
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"name": "code-group",
|
|
185
|
+
"title": "Code Group",
|
|
186
|
+
"description": "A compound tabbed code container for organizing multiple files, languages, and snippets built on Tabs.",
|
|
187
|
+
"type": "registry:ui",
|
|
188
|
+
"dependencies": [
|
|
189
|
+
"clsx",
|
|
190
|
+
"tailwind-merge"
|
|
191
|
+
],
|
|
192
|
+
"registryDependencies": [
|
|
193
|
+
"tabs"
|
|
194
|
+
]
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"name": "collapsible",
|
|
198
|
+
"title": "Collapsible",
|
|
199
|
+
"description": "An interactive component that expands and collapses content panels with smooth height animations, built on Kobalte primitives.",
|
|
200
|
+
"type": "registry:ui",
|
|
201
|
+
"dependencies": [
|
|
202
|
+
"clsx",
|
|
203
|
+
"tailwind-merge",
|
|
204
|
+
"@kobalte/core"
|
|
205
|
+
]
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"name": "combobox",
|
|
209
|
+
"title": "Combobox",
|
|
210
|
+
"description": "Searchable autocomplete dropdown with single/multi-selection tags, avatars, group headers, and customizable clear controls.",
|
|
211
|
+
"type": "registry:ui",
|
|
212
|
+
"dependencies": [
|
|
213
|
+
"clsx",
|
|
214
|
+
"tailwind-merge",
|
|
215
|
+
"@kobalte/core"
|
|
216
|
+
],
|
|
217
|
+
"registryDependencies": [
|
|
218
|
+
"scroll-area"
|
|
219
|
+
]
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"name": "command",
|
|
223
|
+
"title": "Command / Command Palette",
|
|
224
|
+
"description": "Fast, accessible command palette and search modal built on Kobalte Dialog primitives with auto-filtering.",
|
|
225
|
+
"type": "registry:ui",
|
|
226
|
+
"dependencies": [
|
|
227
|
+
"clsx",
|
|
228
|
+
"tailwind-merge",
|
|
229
|
+
"class-variance-authority",
|
|
230
|
+
"lucide-solid",
|
|
231
|
+
"@kobalte/core"
|
|
232
|
+
],
|
|
233
|
+
"registryDependencies": [
|
|
234
|
+
"kbd",
|
|
235
|
+
"input-group",
|
|
236
|
+
"list",
|
|
237
|
+
"scroll-area",
|
|
238
|
+
"create-keybindings"
|
|
239
|
+
]
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"name": "component-viewer",
|
|
243
|
+
"title": "Component Viewer",
|
|
244
|
+
"description": "An interactive preview canvas and code viewer container with responsive viewports, canvas grid, and AI prompts.",
|
|
245
|
+
"type": "registry:ui",
|
|
246
|
+
"dependencies": [
|
|
247
|
+
"clsx",
|
|
248
|
+
"tailwind-merge",
|
|
249
|
+
"lucide-solid"
|
|
250
|
+
],
|
|
251
|
+
"registryDependencies": [
|
|
252
|
+
"tabs",
|
|
253
|
+
"button",
|
|
254
|
+
"tooltip",
|
|
255
|
+
"code-block",
|
|
256
|
+
"create-clipboard"
|
|
257
|
+
]
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"name": "container",
|
|
261
|
+
"title": "Container",
|
|
262
|
+
"description": "A responsive layout container constraining maximum width with semantic padding tokens.",
|
|
263
|
+
"type": "registry:ui",
|
|
264
|
+
"dependencies": [
|
|
265
|
+
"clsx",
|
|
266
|
+
"tailwind-merge",
|
|
267
|
+
"class-variance-authority"
|
|
268
|
+
]
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"name": "context-menu",
|
|
272
|
+
"title": "Context Menu",
|
|
273
|
+
"description": "Displays a contextual popup menu triggered by right-clicking target areas, built on Kobalte primitives.",
|
|
274
|
+
"type": "registry:ui",
|
|
275
|
+
"dependencies": [
|
|
276
|
+
"clsx",
|
|
277
|
+
"tailwind-merge",
|
|
278
|
+
"@kobalte/core"
|
|
279
|
+
],
|
|
280
|
+
"registryDependencies": [
|
|
281
|
+
"separator",
|
|
282
|
+
"kbd",
|
|
283
|
+
"create-click-outside",
|
|
284
|
+
"scroll-area"
|
|
285
|
+
]
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"name": "dialog",
|
|
289
|
+
"title": "Dialog",
|
|
290
|
+
"description": "A modal window overlaying the main content, built on Kobalte primitives with blur and outside-click options.",
|
|
291
|
+
"type": "registry:ui",
|
|
292
|
+
"dependencies": [
|
|
293
|
+
"clsx",
|
|
294
|
+
"tailwind-merge",
|
|
295
|
+
"@kobalte/core"
|
|
296
|
+
],
|
|
297
|
+
"registryDependencies": [
|
|
298
|
+
"scroll-area"
|
|
299
|
+
]
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"name": "dropdown-menu",
|
|
303
|
+
"title": "Dropdown Menu",
|
|
304
|
+
"description": "Displays a menu to the user—such as a set of actions or functions—triggered by a button or avatar.",
|
|
305
|
+
"type": "registry:ui",
|
|
306
|
+
"dependencies": [
|
|
307
|
+
"clsx",
|
|
308
|
+
"tailwind-merge",
|
|
309
|
+
"@kobalte/core"
|
|
310
|
+
],
|
|
311
|
+
"registryDependencies": [
|
|
312
|
+
"scroll-area",
|
|
313
|
+
"create-click-outside"
|
|
314
|
+
]
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"name": "dropzone",
|
|
318
|
+
"title": "Dropzone",
|
|
319
|
+
"description": "A compound drag-and-drop file upload container with file list previews and validation feedback.",
|
|
320
|
+
"type": "registry:ui",
|
|
321
|
+
"dependencies": [
|
|
322
|
+
"clsx",
|
|
323
|
+
"tailwind-merge",
|
|
324
|
+
"lucide-solid"
|
|
325
|
+
],
|
|
326
|
+
"registryDependencies": [
|
|
327
|
+
"create-drop-zone"
|
|
328
|
+
]
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"name": "empty",
|
|
332
|
+
"title": "Empty",
|
|
333
|
+
"description": "A compound empty-state layout for collections, search results, and initial application states.",
|
|
334
|
+
"type": "registry:ui",
|
|
335
|
+
"dependencies": [
|
|
336
|
+
"clsx",
|
|
337
|
+
"tailwind-merge"
|
|
338
|
+
]
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"name": "field",
|
|
342
|
+
"title": "Field",
|
|
343
|
+
"description": "A consistent form field layout for labels, descriptions, and validation errors.",
|
|
344
|
+
"type": "registry:ui",
|
|
345
|
+
"dependencies": [
|
|
346
|
+
"clsx",
|
|
347
|
+
"tailwind-merge"
|
|
348
|
+
],
|
|
349
|
+
"registryDependencies": [
|
|
350
|
+
"label"
|
|
351
|
+
]
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"name": "file-tree",
|
|
355
|
+
"title": "File Tree",
|
|
356
|
+
"description": "An interactive hierarchical directory file tree component built on Collapsible.",
|
|
357
|
+
"type": "registry:ui",
|
|
358
|
+
"dependencies": [
|
|
359
|
+
"clsx",
|
|
360
|
+
"tailwind-merge",
|
|
361
|
+
"lucide-solid"
|
|
362
|
+
],
|
|
363
|
+
"registryDependencies": [
|
|
364
|
+
"collapsible"
|
|
365
|
+
]
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"name": "footer",
|
|
369
|
+
"title": "Footer",
|
|
370
|
+
"description": "A responsive, accessible, and structured bottom navigation layout suite supporting multi-column link directories, brand sections, and newsletter inputs.",
|
|
371
|
+
"type": "registry:ui",
|
|
372
|
+
"dependencies": [
|
|
373
|
+
"clsx",
|
|
374
|
+
"tailwind-merge",
|
|
375
|
+
"class-variance-authority"
|
|
376
|
+
]
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"name": "form-message",
|
|
380
|
+
"title": "Form Message",
|
|
381
|
+
"description": "Validation message helper connected to createForm errors and touched state.",
|
|
382
|
+
"type": "registry:ui",
|
|
383
|
+
"registryDependencies": [
|
|
384
|
+
"field",
|
|
385
|
+
"create-form"
|
|
386
|
+
]
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"name": "form",
|
|
390
|
+
"title": "Form",
|
|
391
|
+
"description": "A semantic form layout wrapper designed to work with the createForm hook.",
|
|
392
|
+
"type": "registry:ui",
|
|
393
|
+
"dependencies": [
|
|
394
|
+
"clsx",
|
|
395
|
+
"tailwind-merge"
|
|
396
|
+
]
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"name": "hover-card",
|
|
400
|
+
"title": "Hover Card",
|
|
401
|
+
"description": "Profile and link preview popover triggered on hover, built on Kobalte primitives.",
|
|
402
|
+
"type": "registry:ui",
|
|
403
|
+
"dependencies": [
|
|
404
|
+
"clsx",
|
|
405
|
+
"tailwind-merge",
|
|
406
|
+
"@kobalte/core"
|
|
407
|
+
]
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"name": "icon-button",
|
|
411
|
+
"title": "Icon Button",
|
|
412
|
+
"description": "An accessible square button intended for a single icon action.",
|
|
413
|
+
"type": "registry:ui",
|
|
414
|
+
"dependencies": [
|
|
415
|
+
"clsx",
|
|
416
|
+
"tailwind-merge"
|
|
417
|
+
],
|
|
418
|
+
"registryDependencies": [
|
|
419
|
+
"button"
|
|
420
|
+
]
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"name": "input-group",
|
|
424
|
+
"title": "Input Group",
|
|
425
|
+
"description": "Compound input wrapper for combining text inputs with prefix and suffix addons.",
|
|
426
|
+
"type": "registry:ui",
|
|
427
|
+
"dependencies": [
|
|
428
|
+
"clsx",
|
|
429
|
+
"tailwind-merge",
|
|
430
|
+
"class-variance-authority"
|
|
431
|
+
],
|
|
432
|
+
"registryDependencies": [
|
|
433
|
+
"kbd"
|
|
434
|
+
]
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"name": "input",
|
|
438
|
+
"title": "Input",
|
|
439
|
+
"description": "A standard text input field with styling variants.",
|
|
440
|
+
"type": "registry:ui",
|
|
441
|
+
"dependencies": [
|
|
442
|
+
"clsx",
|
|
443
|
+
"tailwind-merge"
|
|
444
|
+
]
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"name": "kbd",
|
|
448
|
+
"title": "Kbd (Keyboard Key)",
|
|
449
|
+
"description": "Keyboard key and shortcut group indicators for displaying hotkeys.",
|
|
450
|
+
"type": "registry:ui",
|
|
451
|
+
"dependencies": [
|
|
452
|
+
"clsx",
|
|
453
|
+
"tailwind-merge",
|
|
454
|
+
"class-variance-authority"
|
|
455
|
+
]
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"name": "label",
|
|
459
|
+
"title": "Label",
|
|
460
|
+
"description": "Accessible caption label for form controls and inputs.",
|
|
461
|
+
"type": "registry:ui",
|
|
462
|
+
"dependencies": [
|
|
463
|
+
"clsx",
|
|
464
|
+
"tailwind-merge",
|
|
465
|
+
"class-variance-authority"
|
|
466
|
+
]
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"name": "list",
|
|
470
|
+
"title": "List / List Item",
|
|
471
|
+
"description": "Compound list components supporting icons, avatars, titles, subtitles, hotkey badges, chevron indicators, and interactive links.",
|
|
472
|
+
"type": "registry:ui",
|
|
473
|
+
"dependencies": [
|
|
474
|
+
"clsx",
|
|
475
|
+
"tailwind-merge",
|
|
476
|
+
"class-variance-authority",
|
|
477
|
+
"lucide-solid",
|
|
478
|
+
"@kobalte/core"
|
|
479
|
+
]
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"name": "logo",
|
|
483
|
+
"title": "Logo",
|
|
484
|
+
"description": "logo component.",
|
|
485
|
+
"type": "registry:ui",
|
|
486
|
+
"dependencies": [
|
|
487
|
+
"clsx",
|
|
488
|
+
"tailwind-merge"
|
|
489
|
+
]
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"name": "marker",
|
|
493
|
+
"title": "Marker",
|
|
494
|
+
"description": "System chat events, date dividers, and live typing indicator badges.",
|
|
495
|
+
"type": "registry:ui",
|
|
496
|
+
"dependencies": [
|
|
497
|
+
"clsx",
|
|
498
|
+
"tailwind-merge"
|
|
499
|
+
]
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"name": "marquee",
|
|
503
|
+
"title": "Marquee",
|
|
504
|
+
"description": "A smooth, GPU-accelerated infinite scrolling ticker component for logo clouds, testimonials, and live ribbons.",
|
|
505
|
+
"type": "registry:ui",
|
|
506
|
+
"dependencies": [
|
|
507
|
+
"clsx",
|
|
508
|
+
"tailwind-merge"
|
|
509
|
+
]
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"name": "message",
|
|
513
|
+
"title": "Message",
|
|
514
|
+
"description": "A structured chat and conversation message layout with avatars, alignment, headers, footers, and actions.",
|
|
515
|
+
"type": "registry:ui",
|
|
516
|
+
"dependencies": [
|
|
517
|
+
"clsx",
|
|
518
|
+
"tailwind-merge"
|
|
519
|
+
]
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
"name": "navbar",
|
|
523
|
+
"title": "Navbar",
|
|
524
|
+
"description": "A responsive, accessible, and composable top navigation header suite supporting nested dropdown flyouts, floating card containers, and mobile navigation drawers.",
|
|
525
|
+
"type": "registry:ui",
|
|
526
|
+
"dependencies": [
|
|
527
|
+
"clsx",
|
|
528
|
+
"tailwind-merge",
|
|
529
|
+
"class-variance-authority",
|
|
530
|
+
"lucide-solid"
|
|
531
|
+
]
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"name": "navigation-menu",
|
|
535
|
+
"title": "Navigation Menu",
|
|
536
|
+
"description": "A responsive and accessible top header navigation menu with mega-menu dropdowns and link previews.",
|
|
537
|
+
"type": "registry:ui",
|
|
538
|
+
"dependencies": [
|
|
539
|
+
"clsx",
|
|
540
|
+
"tailwind-merge",
|
|
541
|
+
"class-variance-authority",
|
|
542
|
+
"lucide-solid"
|
|
543
|
+
],
|
|
544
|
+
"registryDependencies": [
|
|
545
|
+
"create-click-outside"
|
|
546
|
+
]
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"name": "number-input",
|
|
550
|
+
"title": "Number Input",
|
|
551
|
+
"description": "A numeric stepper input component supporting min, max, step, negative values, and long-press auto-repeat, built on Kobalte primitives.",
|
|
552
|
+
"type": "registry:ui",
|
|
553
|
+
"dependencies": [
|
|
554
|
+
"clsx",
|
|
555
|
+
"tailwind-merge",
|
|
556
|
+
"@kobalte/core",
|
|
557
|
+
"lucide-solid"
|
|
558
|
+
],
|
|
559
|
+
"registryDependencies": [
|
|
560
|
+
"input",
|
|
561
|
+
"button",
|
|
562
|
+
"create-long-press"
|
|
563
|
+
]
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
"name": "package-manager-tabs",
|
|
567
|
+
"title": "Package Manager Tabs",
|
|
568
|
+
"description": "An interactive command tab bar supporting customizable package managers (bun, pnpm, npm, yarn, deno, bunx, npx) with copy functionality.",
|
|
569
|
+
"type": "registry:ui",
|
|
570
|
+
"dependencies": [
|
|
571
|
+
"clsx",
|
|
572
|
+
"tailwind-merge",
|
|
573
|
+
"lucide-solid"
|
|
574
|
+
],
|
|
575
|
+
"registryDependencies": [
|
|
576
|
+
"button",
|
|
577
|
+
"tooltip",
|
|
578
|
+
"tabs",
|
|
579
|
+
"create-clipboard"
|
|
580
|
+
]
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"name": "pager",
|
|
584
|
+
"title": "Pager",
|
|
585
|
+
"description": "Previous and next article navigation links with card previews for documentation and blog layouts.",
|
|
586
|
+
"type": "registry:ui",
|
|
587
|
+
"dependencies": [
|
|
588
|
+
"clsx",
|
|
589
|
+
"tailwind-merge",
|
|
590
|
+
"lucide-solid"
|
|
591
|
+
],
|
|
592
|
+
"registryDependencies": [
|
|
593
|
+
"card"
|
|
594
|
+
]
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
"name": "pagination",
|
|
598
|
+
"title": "Pagination",
|
|
599
|
+
"description": "An accessible multi-page navigation bar with previous, next, page numbers, and ellipsis controls.",
|
|
600
|
+
"type": "registry:ui",
|
|
601
|
+
"dependencies": [
|
|
602
|
+
"clsx",
|
|
603
|
+
"tailwind-merge",
|
|
604
|
+
"class-variance-authority",
|
|
605
|
+
"lucide-solid"
|
|
606
|
+
],
|
|
607
|
+
"registryDependencies": [
|
|
608
|
+
"create-pagination"
|
|
609
|
+
]
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
"name": "pin-input",
|
|
613
|
+
"title": "Pin Input",
|
|
614
|
+
"description": "Interactive multi-slot PIN/OTP input component for SMS and 2FA authentication verification codes.",
|
|
615
|
+
"type": "registry:ui",
|
|
616
|
+
"dependencies": [
|
|
617
|
+
"clsx",
|
|
618
|
+
"tailwind-merge"
|
|
619
|
+
]
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
"name": "popover",
|
|
623
|
+
"title": "Popover",
|
|
624
|
+
"description": "Displays rich content in a portal layer triggered by a button, built on Kobalte primitives.",
|
|
625
|
+
"type": "registry:ui",
|
|
626
|
+
"dependencies": [
|
|
627
|
+
"clsx",
|
|
628
|
+
"tailwind-merge",
|
|
629
|
+
"@kobalte/core",
|
|
630
|
+
"lucide-solid"
|
|
631
|
+
],
|
|
632
|
+
"registryDependencies": [
|
|
633
|
+
"create-click-outside"
|
|
634
|
+
]
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
"name": "progress",
|
|
638
|
+
"title": "Progress",
|
|
639
|
+
"description": "Displays an indicator showing the completion progress of a task or media playback, built on Kobalte primitives.",
|
|
640
|
+
"type": "registry:ui",
|
|
641
|
+
"dependencies": [
|
|
642
|
+
"clsx",
|
|
643
|
+
"tailwind-merge",
|
|
644
|
+
"@kobalte/core"
|
|
645
|
+
]
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"name": "radio-group",
|
|
649
|
+
"title": "Radio Group",
|
|
650
|
+
"description": "A set of checkable buttons built on Kobalte primitives where only one button can be checked at a time.",
|
|
651
|
+
"type": "registry:ui",
|
|
652
|
+
"dependencies": [
|
|
653
|
+
"clsx",
|
|
654
|
+
"tailwind-merge",
|
|
655
|
+
"@kobalte/core"
|
|
656
|
+
]
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"name": "rating",
|
|
660
|
+
"title": "Rating",
|
|
661
|
+
"description": "An accessible star rating component supporting interactive inputs, hover preview states, and read-only score badges.",
|
|
662
|
+
"type": "registry:ui",
|
|
663
|
+
"dependencies": [
|
|
664
|
+
"clsx",
|
|
665
|
+
"tailwind-merge",
|
|
666
|
+
"class-variance-authority",
|
|
667
|
+
"lucide-solid"
|
|
668
|
+
]
|
|
669
|
+
},
|
|
670
|
+
{
|
|
671
|
+
"name": "resizable",
|
|
672
|
+
"title": "Resizable",
|
|
673
|
+
"description": "Accessible resizable panel layout component supporting drag-to-resize handles.",
|
|
674
|
+
"type": "registry:ui",
|
|
675
|
+
"dependencies": [
|
|
676
|
+
"clsx",
|
|
677
|
+
"tailwind-merge",
|
|
678
|
+
"lucide-solid"
|
|
679
|
+
],
|
|
680
|
+
"registryDependencies": [
|
|
681
|
+
"create-resize-observer"
|
|
682
|
+
]
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"name": "review-card",
|
|
686
|
+
"title": "Review Card",
|
|
687
|
+
"description": "A versatile, structured card component for customer testimonials, product ratings, verified buyer badges, and social proof.",
|
|
688
|
+
"type": "registry:ui",
|
|
689
|
+
"dependencies": [
|
|
690
|
+
"clsx",
|
|
691
|
+
"tailwind-merge",
|
|
692
|
+
"class-variance-authority",
|
|
693
|
+
"lucide-solid"
|
|
694
|
+
],
|
|
695
|
+
"registryDependencies": [
|
|
696
|
+
"avatar",
|
|
697
|
+
"rating"
|
|
698
|
+
]
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"name": "rich-text-editor",
|
|
702
|
+
"title": "Rich Text Editor",
|
|
703
|
+
"description": "A full-featured WYSIWYG rich text editor with toolbar, bubble formatting, tables, task lists, and image uploads built on Tiptap.",
|
|
704
|
+
"type": "registry:ui",
|
|
705
|
+
"dependencies": [
|
|
706
|
+
"@tiptap/core",
|
|
707
|
+
"@tiptap/starter-kit",
|
|
708
|
+
"@tiptap/extension-link",
|
|
709
|
+
"@tiptap/extension-image",
|
|
710
|
+
"@tiptap/extension-placeholder",
|
|
711
|
+
"@tiptap/extension-task-list",
|
|
712
|
+
"@tiptap/extension-task-item",
|
|
713
|
+
"@tiptap/extension-table",
|
|
714
|
+
"@tiptap/extension-table-row",
|
|
715
|
+
"@tiptap/extension-table-cell",
|
|
716
|
+
"@tiptap/extension-table-header",
|
|
717
|
+
"@tiptap/extension-underline",
|
|
718
|
+
"@tiptap/extension-text-align",
|
|
719
|
+
"@tiptap/extension-highlight",
|
|
720
|
+
"@tiptap/extension-character-count",
|
|
721
|
+
"@tiptap/extension-subscript",
|
|
722
|
+
"@tiptap/extension-superscript",
|
|
723
|
+
"@tiptap/extension-typography",
|
|
724
|
+
"tiptap-markdown",
|
|
725
|
+
"clsx",
|
|
726
|
+
"tailwind-merge",
|
|
727
|
+
"lucide-solid"
|
|
728
|
+
],
|
|
729
|
+
"registryDependencies": [
|
|
730
|
+
"create-tiptap-editor"
|
|
731
|
+
]
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
"name": "scroll-area",
|
|
735
|
+
"title": "Scroll Area",
|
|
736
|
+
"description": "Augments native scroll functionality with custom styled scrollbars and reactive scroll tracking.",
|
|
737
|
+
"type": "registry:ui",
|
|
738
|
+
"dependencies": [
|
|
739
|
+
"clsx",
|
|
740
|
+
"tailwind-merge"
|
|
741
|
+
],
|
|
742
|
+
"registryDependencies": [
|
|
743
|
+
"create-scroll-position",
|
|
744
|
+
"create-resize-observer"
|
|
745
|
+
]
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"name": "section-heading",
|
|
749
|
+
"title": "Section Heading",
|
|
750
|
+
"description": "A reusable heading block with title, optional badge, and description. Supports page and section variants.",
|
|
751
|
+
"type": "registry:ui",
|
|
752
|
+
"dependencies": [
|
|
753
|
+
"clsx",
|
|
754
|
+
"tailwind-merge",
|
|
755
|
+
"class-variance-authority"
|
|
756
|
+
],
|
|
757
|
+
"registryDependencies": [
|
|
758
|
+
"badge"
|
|
759
|
+
]
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
"name": "select",
|
|
763
|
+
"title": "Select",
|
|
764
|
+
"description": "Displays a list of options for the user to pick from, built on Kobalte primitives.",
|
|
765
|
+
"type": "registry:ui",
|
|
766
|
+
"dependencies": [
|
|
767
|
+
"clsx",
|
|
768
|
+
"tailwind-merge",
|
|
769
|
+
"@kobalte/core"
|
|
770
|
+
],
|
|
771
|
+
"registryDependencies": [
|
|
772
|
+
"scroll-area",
|
|
773
|
+
"create-click-outside"
|
|
774
|
+
]
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
"name": "separator",
|
|
778
|
+
"title": "Separator",
|
|
779
|
+
"description": "Visually or semantically separates content horizontally or vertically.",
|
|
780
|
+
"type": "registry:ui",
|
|
781
|
+
"dependencies": [
|
|
782
|
+
"clsx",
|
|
783
|
+
"tailwind-merge"
|
|
784
|
+
]
|
|
785
|
+
},
|
|
786
|
+
{
|
|
787
|
+
"name": "sheet",
|
|
788
|
+
"title": "Sheet / Drawer",
|
|
789
|
+
"description": "Extends the dialog component to display content that slides in from screen edges.",
|
|
790
|
+
"type": "registry:ui",
|
|
791
|
+
"dependencies": [
|
|
792
|
+
"clsx",
|
|
793
|
+
"tailwind-merge",
|
|
794
|
+
"class-variance-authority",
|
|
795
|
+
"@kobalte/core"
|
|
796
|
+
],
|
|
797
|
+
"registryDependencies": [
|
|
798
|
+
"scroll-area"
|
|
799
|
+
]
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
"name": "sidebar",
|
|
803
|
+
"title": "Sidebar",
|
|
804
|
+
"description": "A composable, collapsible, and accessible application sidebar navigation suite with icon mode, mobile drawer, and keyboard shortcuts.",
|
|
805
|
+
"type": "registry:ui",
|
|
806
|
+
"dependencies": [
|
|
807
|
+
"clsx",
|
|
808
|
+
"tailwind-merge",
|
|
809
|
+
"class-variance-authority",
|
|
810
|
+
"lucide-solid"
|
|
811
|
+
],
|
|
812
|
+
"registryDependencies": [
|
|
813
|
+
"tooltip",
|
|
814
|
+
"skeleton",
|
|
815
|
+
"separator"
|
|
816
|
+
]
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
"name": "skeleton",
|
|
820
|
+
"title": "Skeleton",
|
|
821
|
+
"description": "Renders an animated pulse loading placeholder for content loading states.",
|
|
822
|
+
"type": "registry:ui",
|
|
823
|
+
"dependencies": [
|
|
824
|
+
"clsx",
|
|
825
|
+
"tailwind-merge"
|
|
826
|
+
]
|
|
827
|
+
},
|
|
828
|
+
{
|
|
829
|
+
"name": "slider",
|
|
830
|
+
"title": "Slider",
|
|
831
|
+
"description": "Numeric range selection slider supporting single/dual thumbs, custom steps, vertical orientation, and formatted value labels, built on Kobalte primitives.",
|
|
832
|
+
"type": "registry:ui",
|
|
833
|
+
"dependencies": [
|
|
834
|
+
"clsx",
|
|
835
|
+
"tailwind-merge",
|
|
836
|
+
"@kobalte/core"
|
|
837
|
+
]
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"name": "spinner",
|
|
841
|
+
"title": "Spinner",
|
|
842
|
+
"description": "An accessible animated loading indicator for asynchronous UI states.",
|
|
843
|
+
"type": "registry:ui",
|
|
844
|
+
"dependencies": [
|
|
845
|
+
"clsx",
|
|
846
|
+
"tailwind-merge",
|
|
847
|
+
"class-variance-authority"
|
|
848
|
+
]
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
"name": "stat",
|
|
852
|
+
"title": "Stat",
|
|
853
|
+
"description": "Display key performance indicators, statistics, financial data, and metrics with trends and icons.",
|
|
854
|
+
"type": "registry:ui",
|
|
855
|
+
"dependencies": [
|
|
856
|
+
"clsx",
|
|
857
|
+
"tailwind-merge",
|
|
858
|
+
"class-variance-authority",
|
|
859
|
+
"lucide-solid"
|
|
860
|
+
]
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
"name": "status",
|
|
864
|
+
"title": "Status",
|
|
865
|
+
"description": "A compact semantic status indicator with a color dot and label.",
|
|
866
|
+
"type": "registry:ui",
|
|
867
|
+
"dependencies": [
|
|
868
|
+
"clsx",
|
|
869
|
+
"tailwind-merge",
|
|
870
|
+
"class-variance-authority"
|
|
871
|
+
]
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
"name": "steps",
|
|
875
|
+
"title": "Steps",
|
|
876
|
+
"description": "A vertical multi-step instruction container with connecting progress line and numbered step indicators.",
|
|
877
|
+
"type": "registry:ui",
|
|
878
|
+
"dependencies": [
|
|
879
|
+
"clsx",
|
|
880
|
+
"tailwind-merge"
|
|
881
|
+
],
|
|
882
|
+
"registryDependencies": [
|
|
883
|
+
"badge"
|
|
884
|
+
]
|
|
885
|
+
},
|
|
886
|
+
{
|
|
887
|
+
"name": "switch",
|
|
888
|
+
"title": "Switch",
|
|
889
|
+
"description": "A control that allows the user to toggle between checked and unchecked states.",
|
|
890
|
+
"type": "registry:ui",
|
|
891
|
+
"dependencies": [
|
|
892
|
+
"clsx",
|
|
893
|
+
"tailwind-merge"
|
|
894
|
+
],
|
|
895
|
+
"registryDependencies": [
|
|
896
|
+
"create-controllable-signal"
|
|
897
|
+
]
|
|
898
|
+
},
|
|
899
|
+
{
|
|
900
|
+
"name": "table-of-contents",
|
|
901
|
+
"title": "Table of Contents",
|
|
902
|
+
"description": "An accessible heading navigation tree with ScrollSpy tracking and smooth scrolling, composed of ScrollArea and List.",
|
|
903
|
+
"type": "registry:ui",
|
|
904
|
+
"dependencies": [
|
|
905
|
+
"clsx",
|
|
906
|
+
"tailwind-merge",
|
|
907
|
+
"class-variance-authority"
|
|
908
|
+
],
|
|
909
|
+
"registryDependencies": [
|
|
910
|
+
"scroll-area",
|
|
911
|
+
"list",
|
|
912
|
+
"create-scroll-position"
|
|
913
|
+
]
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
"name": "table",
|
|
917
|
+
"title": "Table",
|
|
918
|
+
"description": "A responsive and accessible data table component with headers, rows, cells, and footer summaries.",
|
|
919
|
+
"type": "registry:ui",
|
|
920
|
+
"dependencies": [
|
|
921
|
+
"clsx",
|
|
922
|
+
"tailwind-merge"
|
|
923
|
+
]
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
"name": "tabs",
|
|
927
|
+
"title": "Tabs",
|
|
928
|
+
"description": "A set of layered sections of content displayed one at a time.",
|
|
929
|
+
"type": "registry:ui",
|
|
930
|
+
"dependencies": [
|
|
931
|
+
"clsx",
|
|
932
|
+
"tailwind-merge"
|
|
933
|
+
],
|
|
934
|
+
"registryDependencies": [
|
|
935
|
+
"create-controllable-signal"
|
|
936
|
+
]
|
|
937
|
+
},
|
|
938
|
+
{
|
|
939
|
+
"name": "textarea",
|
|
940
|
+
"title": "Textarea",
|
|
941
|
+
"description": "A multi-line text input field with responsive focus styles.",
|
|
942
|
+
"type": "registry:ui",
|
|
943
|
+
"dependencies": [
|
|
944
|
+
"clsx",
|
|
945
|
+
"tailwind-merge"
|
|
946
|
+
]
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
"name": "theme-manager",
|
|
950
|
+
"title": "Theme Manager",
|
|
951
|
+
"description": "Zero-dependency ThemeProvider and ThemeToggle component for switching light, dark, and system themes.",
|
|
952
|
+
"type": "registry:ui",
|
|
953
|
+
"dependencies": [
|
|
954
|
+
"clsx",
|
|
955
|
+
"tailwind-merge",
|
|
956
|
+
"@kobalte/core",
|
|
957
|
+
"lucide-solid"
|
|
958
|
+
],
|
|
959
|
+
"registryDependencies": [
|
|
960
|
+
"button",
|
|
961
|
+
"dropdown-menu",
|
|
962
|
+
"create-color-mode"
|
|
963
|
+
]
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
"name": "timeline",
|
|
967
|
+
"title": "Timeline",
|
|
968
|
+
"description": "A responsive chronological display for event streams, activity logs, order tracking, and multi-step workflows.",
|
|
969
|
+
"type": "registry:ui",
|
|
970
|
+
"dependencies": [
|
|
971
|
+
"clsx",
|
|
972
|
+
"tailwind-merge",
|
|
973
|
+
"class-variance-authority"
|
|
974
|
+
]
|
|
975
|
+
},
|
|
976
|
+
{
|
|
977
|
+
"name": "titlebar-tabs",
|
|
978
|
+
"title": "Titlebar Tabs",
|
|
979
|
+
"description": "Native draggable tab bar integrated directly inside desktop titlebars for multi-document applications.",
|
|
980
|
+
"type": "registry:ui",
|
|
981
|
+
"dependencies": [
|
|
982
|
+
"clsx",
|
|
983
|
+
"tailwind-merge",
|
|
984
|
+
"class-variance-authority",
|
|
985
|
+
"lucide-solid"
|
|
986
|
+
],
|
|
987
|
+
"registryDependencies": [
|
|
988
|
+
"button",
|
|
989
|
+
"tooltip",
|
|
990
|
+
"create-document-tabs"
|
|
991
|
+
]
|
|
992
|
+
},
|
|
993
|
+
{
|
|
994
|
+
"name": "titlebar",
|
|
995
|
+
"title": "Titlebar",
|
|
996
|
+
"description": "A native-feeling custom titlebar for frameless desktop windows supporting macOS Traffic Lights and Windows 11 controls.",
|
|
997
|
+
"type": "registry:ui",
|
|
998
|
+
"dependencies": [
|
|
999
|
+
"clsx",
|
|
1000
|
+
"tailwind-merge",
|
|
1001
|
+
"class-variance-authority",
|
|
1002
|
+
"lucide-solid"
|
|
1003
|
+
],
|
|
1004
|
+
"registryDependencies": [
|
|
1005
|
+
"titlebar-tabs",
|
|
1006
|
+
"button",
|
|
1007
|
+
"tooltip",
|
|
1008
|
+
"create-tauri-window",
|
|
1009
|
+
"create-document-tabs"
|
|
1010
|
+
]
|
|
1011
|
+
},
|
|
1012
|
+
{
|
|
1013
|
+
"name": "toast",
|
|
1014
|
+
"title": "Toast / Sonner",
|
|
1015
|
+
"description": "A succinct message displayed temporarily in a toast region, built on Kobalte primitives.",
|
|
1016
|
+
"type": "registry:ui",
|
|
1017
|
+
"dependencies": [
|
|
1018
|
+
"clsx",
|
|
1019
|
+
"tailwind-merge",
|
|
1020
|
+
"class-variance-authority",
|
|
1021
|
+
"lucide-solid",
|
|
1022
|
+
"@kobalte/core"
|
|
1023
|
+
]
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
"name": "toggle-group",
|
|
1027
|
+
"title": "Toggle Group",
|
|
1028
|
+
"description": "A set of two-state buttons that can be toggled on or off with single or multiple selection modes.",
|
|
1029
|
+
"type": "registry:ui",
|
|
1030
|
+
"dependencies": [
|
|
1031
|
+
"clsx",
|
|
1032
|
+
"tailwind-merge",
|
|
1033
|
+
"class-variance-authority"
|
|
1034
|
+
],
|
|
1035
|
+
"registryDependencies": [
|
|
1036
|
+
"create-controllable-signal"
|
|
1037
|
+
]
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
"name": "toggle",
|
|
1041
|
+
"title": "Toggle",
|
|
1042
|
+
"description": "A two-state interactive button component built on Kobalte primitives.",
|
|
1043
|
+
"type": "registry:ui",
|
|
1044
|
+
"dependencies": [
|
|
1045
|
+
"clsx",
|
|
1046
|
+
"tailwind-merge",
|
|
1047
|
+
"@kobalte/core"
|
|
1048
|
+
]
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
"name": "tooltip",
|
|
1052
|
+
"title": "Tooltip",
|
|
1053
|
+
"description": "A popup that displays information related to an element when the element receives keyboard focus or the mouse hovers over it, built on Kobalte primitives.",
|
|
1054
|
+
"type": "registry:ui",
|
|
1055
|
+
"dependencies": [
|
|
1056
|
+
"clsx",
|
|
1057
|
+
"tailwind-merge",
|
|
1058
|
+
"@kobalte/core"
|
|
1059
|
+
]
|
|
1060
|
+
},
|
|
1061
|
+
{
|
|
1062
|
+
"name": "updater-modal",
|
|
1063
|
+
"title": "Updater Modal",
|
|
1064
|
+
"description": "An automated application auto-updater dialog for Tauri v2 with release notes preview, download progress bar, and relaunch actions.",
|
|
1065
|
+
"type": "registry:ui",
|
|
1066
|
+
"dependencies": [
|
|
1067
|
+
"clsx",
|
|
1068
|
+
"tailwind-merge",
|
|
1069
|
+
"lucide-solid"
|
|
1070
|
+
],
|
|
1071
|
+
"registryDependencies": [
|
|
1072
|
+
"dialog",
|
|
1073
|
+
"button",
|
|
1074
|
+
"badge",
|
|
1075
|
+
"progress",
|
|
1076
|
+
"alert",
|
|
1077
|
+
"create-app-updater"
|
|
1078
|
+
]
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
"name": "forgot-password-01",
|
|
1082
|
+
"title": "Forgot Password 01 — Account Recovery Flow",
|
|
1083
|
+
"description": "A sleek password recovery block with email instructions submission and success confirmation states.",
|
|
1084
|
+
"type": "registry:block",
|
|
1085
|
+
"dependencies": [
|
|
1086
|
+
"clsx",
|
|
1087
|
+
"tailwind-merge",
|
|
1088
|
+
"lucide-solid"
|
|
1089
|
+
],
|
|
1090
|
+
"registryDependencies": [
|
|
1091
|
+
"card",
|
|
1092
|
+
"input",
|
|
1093
|
+
"label",
|
|
1094
|
+
"button",
|
|
1095
|
+
"alert",
|
|
1096
|
+
"form",
|
|
1097
|
+
"field",
|
|
1098
|
+
"form-message"
|
|
1099
|
+
]
|
|
1100
|
+
},
|
|
1101
|
+
{
|
|
1102
|
+
"name": "hero-01",
|
|
1103
|
+
"title": "Hero 01 — Simple Centered with Actions",
|
|
1104
|
+
"description": "A clean centered hero section with badge pill, high-contrast headline, and dual CTA buttons.",
|
|
1105
|
+
"type": "registry:block",
|
|
1106
|
+
"dependencies": [
|
|
1107
|
+
"clsx",
|
|
1108
|
+
"tailwind-merge",
|
|
1109
|
+
"lucide-solid"
|
|
1110
|
+
],
|
|
1111
|
+
"registryDependencies": [
|
|
1112
|
+
"button",
|
|
1113
|
+
"badge"
|
|
1114
|
+
]
|
|
1115
|
+
},
|
|
1116
|
+
{
|
|
1117
|
+
"name": "login-01",
|
|
1118
|
+
"title": "Login 01 — Split Screen with Social Auth & Testimonial",
|
|
1119
|
+
"description": "A modern split-screen authentication page block with OAuth providers, email sign-in form, and brand testimonial visual.",
|
|
1120
|
+
"type": "registry:block",
|
|
1121
|
+
"dependencies": [
|
|
1122
|
+
"clsx",
|
|
1123
|
+
"tailwind-merge",
|
|
1124
|
+
"lucide-solid"
|
|
1125
|
+
],
|
|
1126
|
+
"registryDependencies": [
|
|
1127
|
+
"button",
|
|
1128
|
+
"input",
|
|
1129
|
+
"label",
|
|
1130
|
+
"checkbox",
|
|
1131
|
+
"separator",
|
|
1132
|
+
"form",
|
|
1133
|
+
"field",
|
|
1134
|
+
"form-message"
|
|
1135
|
+
]
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
"name": "otp-verification-01",
|
|
1139
|
+
"title": "OTP Verification 01 — Two-Factor Security Code",
|
|
1140
|
+
"description": "A clean 2-Factor Authentication block with a 6-digit PIN input, countdown resend timer, and security notifications.",
|
|
1141
|
+
"type": "registry:block",
|
|
1142
|
+
"dependencies": [
|
|
1143
|
+
"clsx",
|
|
1144
|
+
"tailwind-merge",
|
|
1145
|
+
"lucide-solid"
|
|
1146
|
+
],
|
|
1147
|
+
"registryDependencies": [
|
|
1148
|
+
"card",
|
|
1149
|
+
"pin-input",
|
|
1150
|
+
"button",
|
|
1151
|
+
"alert",
|
|
1152
|
+
"badge",
|
|
1153
|
+
"form"
|
|
1154
|
+
]
|
|
1155
|
+
},
|
|
1156
|
+
{
|
|
1157
|
+
"name": "register-01",
|
|
1158
|
+
"title": "Register 01 — Sign-Up Card with Password Strength",
|
|
1159
|
+
"description": "A comprehensive sign-up card featuring social logins, live password strength meter with validation checklist, and terms agreement.",
|
|
1160
|
+
"type": "registry:block",
|
|
1161
|
+
"dependencies": [
|
|
1162
|
+
"clsx",
|
|
1163
|
+
"tailwind-merge",
|
|
1164
|
+
"lucide-solid"
|
|
1165
|
+
],
|
|
1166
|
+
"registryDependencies": [
|
|
1167
|
+
"card",
|
|
1168
|
+
"input",
|
|
1169
|
+
"label",
|
|
1170
|
+
"button",
|
|
1171
|
+
"checkbox",
|
|
1172
|
+
"progress",
|
|
1173
|
+
"badge",
|
|
1174
|
+
"separator",
|
|
1175
|
+
"form",
|
|
1176
|
+
"field",
|
|
1177
|
+
"form-message"
|
|
1178
|
+
]
|
|
1179
|
+
},
|
|
1180
|
+
{
|
|
1181
|
+
"name": "create-controllable-signal",
|
|
1182
|
+
"title": "createControllableSignal",
|
|
1183
|
+
"description": "SolidJS reactive primitive supporting both controlled and uncontrolled state management",
|
|
1184
|
+
"type": "registry:hook"
|
|
1185
|
+
},
|
|
1186
|
+
{
|
|
1187
|
+
"name": "create-click-outside",
|
|
1188
|
+
"title": "createClickOutside",
|
|
1189
|
+
"description": "SolidJS reactive primitive for detecting click and pointer interactions outside target elements",
|
|
1190
|
+
"type": "registry:hook"
|
|
1191
|
+
},
|
|
1192
|
+
{
|
|
1193
|
+
"name": "create-clipboard",
|
|
1194
|
+
"title": "createClipboard",
|
|
1195
|
+
"description": "SolidJS reactive primitive for copying text to clipboard with automatic status reset",
|
|
1196
|
+
"type": "registry:hook"
|
|
1197
|
+
},
|
|
1198
|
+
{
|
|
1199
|
+
"name": "create-keybindings",
|
|
1200
|
+
"title": "createKeybindings",
|
|
1201
|
+
"description": "SolidJS reactive primitives for listening to keyboard shortcuts, key combinations, and Escape key presses",
|
|
1202
|
+
"type": "registry:hook"
|
|
1203
|
+
},
|
|
1204
|
+
{
|
|
1205
|
+
"name": "create-lock-scroll",
|
|
1206
|
+
"title": "createLockScroll",
|
|
1207
|
+
"description": "SolidJS reactive primitive for locking body or container scrolling when overlays are active",
|
|
1208
|
+
"type": "registry:hook"
|
|
1209
|
+
},
|
|
1210
|
+
{
|
|
1211
|
+
"name": "create-disclosure",
|
|
1212
|
+
"title": "createDisclosure",
|
|
1213
|
+
"description": "SolidJS reactive primitive for managing boolean open/close disclosure state with helper controls",
|
|
1214
|
+
"type": "registry:hook"
|
|
1215
|
+
},
|
|
1216
|
+
{
|
|
1217
|
+
"name": "create-media-query",
|
|
1218
|
+
"title": "createMediaQuery",
|
|
1219
|
+
"description": "SolidJS reactive primitives for tracking CSS media queries and responsive Tailwind breakpoints",
|
|
1220
|
+
"type": "registry:hook"
|
|
1221
|
+
},
|
|
1222
|
+
{
|
|
1223
|
+
"name": "create-debounce",
|
|
1224
|
+
"title": "createDebounce",
|
|
1225
|
+
"description": "SolidJS reactive primitives for debouncing and throttling rate-limited function execution",
|
|
1226
|
+
"type": "registry:hook"
|
|
1227
|
+
},
|
|
1228
|
+
{
|
|
1229
|
+
"name": "create-intersection-observer",
|
|
1230
|
+
"title": "createIntersectionObserver",
|
|
1231
|
+
"description": "SolidJS reactive primitives for observing element visibility and viewport intersection status",
|
|
1232
|
+
"type": "registry:hook"
|
|
1233
|
+
},
|
|
1234
|
+
{
|
|
1235
|
+
"name": "create-timer",
|
|
1236
|
+
"title": "createTimer",
|
|
1237
|
+
"description": "SolidJS reactive primitives for recurring interval ticks and formatted countdown timers",
|
|
1238
|
+
"type": "registry:hook"
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
"name": "create-resize-observer",
|
|
1242
|
+
"title": "createResizeObserver",
|
|
1243
|
+
"description": "SolidJS reactive primitives for tracking element width and height dimensions dynamically",
|
|
1244
|
+
"type": "registry:hook"
|
|
1245
|
+
},
|
|
1246
|
+
{
|
|
1247
|
+
"name": "create-window-size",
|
|
1248
|
+
"title": "createWindowSize",
|
|
1249
|
+
"description": "SolidJS reactive primitive for tracking window viewport inner width and height",
|
|
1250
|
+
"type": "registry:hook"
|
|
1251
|
+
},
|
|
1252
|
+
{
|
|
1253
|
+
"name": "create-scroll-position",
|
|
1254
|
+
"title": "createScrollPosition",
|
|
1255
|
+
"description": "SolidJS reactive primitive for tracking scroll position, scroll direction, and container bounds",
|
|
1256
|
+
"type": "registry:hook"
|
|
1257
|
+
},
|
|
1258
|
+
{
|
|
1259
|
+
"name": "create-focus-trap",
|
|
1260
|
+
"title": "createFocusTrap",
|
|
1261
|
+
"description": "SolidJS reactive primitive for trapping keyboard focus inside target container element for accessibility",
|
|
1262
|
+
"type": "registry:hook"
|
|
1263
|
+
},
|
|
1264
|
+
{
|
|
1265
|
+
"name": "create-mouse-position",
|
|
1266
|
+
"title": "createMousePosition",
|
|
1267
|
+
"description": "SolidJS reactive primitive for tracking global and element-relative mouse pointer coordinates",
|
|
1268
|
+
"type": "registry:hook"
|
|
1269
|
+
},
|
|
1270
|
+
{
|
|
1271
|
+
"name": "create-long-press",
|
|
1272
|
+
"title": "createLongPress",
|
|
1273
|
+
"description": "SolidJS reactive primitive for detecting long press / hold touch and pointer interactions",
|
|
1274
|
+
"type": "registry:hook"
|
|
1275
|
+
},
|
|
1276
|
+
{
|
|
1277
|
+
"name": "create-hover",
|
|
1278
|
+
"title": "createHover",
|
|
1279
|
+
"description": "SolidJS reactive primitive for tracking element hover state with entrance and exit delays",
|
|
1280
|
+
"type": "registry:hook"
|
|
1281
|
+
},
|
|
1282
|
+
{
|
|
1283
|
+
"name": "create-storage",
|
|
1284
|
+
"title": "createLocalStorage",
|
|
1285
|
+
"description": "SolidJS reactive primitives for Web Storage state synchronization across components and browser tabs",
|
|
1286
|
+
"type": "registry:hook"
|
|
1287
|
+
},
|
|
1288
|
+
{
|
|
1289
|
+
"name": "create-previous",
|
|
1290
|
+
"title": "createPrevious",
|
|
1291
|
+
"description": "SolidJS reactive primitive for tracking previous value of a signal accessor",
|
|
1292
|
+
"type": "registry:hook"
|
|
1293
|
+
},
|
|
1294
|
+
{
|
|
1295
|
+
"name": "create-network-status",
|
|
1296
|
+
"title": "createNetworkStatus",
|
|
1297
|
+
"description": "SolidJS reactive primitives for tracking browser network connectivity and connection quality metrics",
|
|
1298
|
+
"type": "registry:hook"
|
|
1299
|
+
},
|
|
1300
|
+
{
|
|
1301
|
+
"name": "create-color-mode",
|
|
1302
|
+
"title": "createColorMode",
|
|
1303
|
+
"description": "SolidJS reactive primitive for managing dark/light themes and system preferences",
|
|
1304
|
+
"type": "registry:hook"
|
|
1305
|
+
},
|
|
1306
|
+
{
|
|
1307
|
+
"name": "create-form",
|
|
1308
|
+
"title": "createForm",
|
|
1309
|
+
"description": "SolidJS reactive primitive for form state management, field validation, errors, and submission",
|
|
1310
|
+
"type": "registry:hook"
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
"name": "create-input-mask",
|
|
1314
|
+
"title": "createInputMask",
|
|
1315
|
+
"description": "SolidJS reactive primitive for input value masking (phone numbers, credit cards, dates)",
|
|
1316
|
+
"type": "registry:hook"
|
|
1317
|
+
},
|
|
1318
|
+
{
|
|
1319
|
+
"name": "create-idle",
|
|
1320
|
+
"title": "createIdle",
|
|
1321
|
+
"description": "SolidJS reactive primitive for detecting user inactivity with customizable timeout",
|
|
1322
|
+
"type": "registry:hook"
|
|
1323
|
+
},
|
|
1324
|
+
{
|
|
1325
|
+
"name": "create-active-element",
|
|
1326
|
+
"title": "createActiveElement",
|
|
1327
|
+
"description": "SolidJS reactive primitive for tracking the currently focused DOM element",
|
|
1328
|
+
"type": "registry:hook"
|
|
1329
|
+
},
|
|
1330
|
+
{
|
|
1331
|
+
"name": "create-infinite-scroll",
|
|
1332
|
+
"title": "createInfiniteScroll",
|
|
1333
|
+
"description": "SolidJS reactive primitive for dynamic infinite scrolling, auto-fetching pages, and scroll pagination",
|
|
1334
|
+
"type": "registry:hook"
|
|
1335
|
+
},
|
|
1336
|
+
{
|
|
1337
|
+
"name": "create-fullscreen",
|
|
1338
|
+
"title": "createFullscreen",
|
|
1339
|
+
"description": "SolidJS reactive primitive for requesting and monitoring element or document fullscreen status",
|
|
1340
|
+
"type": "registry:hook"
|
|
1341
|
+
},
|
|
1342
|
+
{
|
|
1343
|
+
"name": "create-audio",
|
|
1344
|
+
"title": "createAudio & createVideo",
|
|
1345
|
+
"description": "SolidJS reactive primitives for controlling HTML audio and video playback, duration, volume, and seeking",
|
|
1346
|
+
"type": "registry:hook"
|
|
1347
|
+
},
|
|
1348
|
+
{
|
|
1349
|
+
"name": "create-orientation",
|
|
1350
|
+
"title": "createOrientation",
|
|
1351
|
+
"description": "SolidJS reactive primitive for observing mobile and desktop screen orientation changes and rotation angles",
|
|
1352
|
+
"type": "registry:hook"
|
|
1353
|
+
},
|
|
1354
|
+
{
|
|
1355
|
+
"name": "create-undo-redo",
|
|
1356
|
+
"title": "createUndoRedo",
|
|
1357
|
+
"description": "SolidJS reactive primitive for undo/redo state history management, history stack tracking, and reverting actions",
|
|
1358
|
+
"type": "registry:hook"
|
|
1359
|
+
},
|
|
1360
|
+
{
|
|
1361
|
+
"name": "create-fetch",
|
|
1362
|
+
"title": "createFetch",
|
|
1363
|
+
"description": "SolidJS reactive primitive for HTTP REST API fetching, request loading states, error handling, and refetching",
|
|
1364
|
+
"type": "registry:hook"
|
|
1365
|
+
},
|
|
1366
|
+
{
|
|
1367
|
+
"name": "create-geolocation",
|
|
1368
|
+
"title": "createGeolocation",
|
|
1369
|
+
"description": "SolidJS reactive primitive for tracking browser Geolocation position, coordinates, speed, and GPS accuracy",
|
|
1370
|
+
"type": "registry:hook"
|
|
1371
|
+
},
|
|
1372
|
+
{
|
|
1373
|
+
"name": "create-permission",
|
|
1374
|
+
"title": "createPermission",
|
|
1375
|
+
"description": "SolidJS reactive primitive for querying and observing browser permission status changes",
|
|
1376
|
+
"type": "registry:hook"
|
|
1377
|
+
},
|
|
1378
|
+
{
|
|
1379
|
+
"name": "create-battery",
|
|
1380
|
+
"title": "createBattery",
|
|
1381
|
+
"description": "SolidJS reactive primitive for observing device battery status, charge level, and charging metrics",
|
|
1382
|
+
"type": "registry:hook"
|
|
1383
|
+
},
|
|
1384
|
+
{
|
|
1385
|
+
"name": "create-web-notification",
|
|
1386
|
+
"title": "createWebNotification",
|
|
1387
|
+
"description": "SolidJS reactive primitive for sending browser desktop notifications and managing notification permissions",
|
|
1388
|
+
"type": "registry:hook"
|
|
1389
|
+
},
|
|
1390
|
+
{
|
|
1391
|
+
"name": "create-websocket",
|
|
1392
|
+
"title": "createWebSocket",
|
|
1393
|
+
"description": "SolidJS reactive primitive for WebSocket client connections, auto-reconnection, and message passing",
|
|
1394
|
+
"type": "registry:hook"
|
|
1395
|
+
},
|
|
1396
|
+
{
|
|
1397
|
+
"name": "create-document-title",
|
|
1398
|
+
"title": "createDocumentTitle",
|
|
1399
|
+
"description": "SolidJS reactive primitive for managing document title dynamically",
|
|
1400
|
+
"type": "registry:hook"
|
|
1401
|
+
},
|
|
1402
|
+
{
|
|
1403
|
+
"name": "create-favicon",
|
|
1404
|
+
"title": "createFavicon",
|
|
1405
|
+
"description": "SolidJS reactive primitive for dynamically updating browser favicon element",
|
|
1406
|
+
"type": "registry:hook"
|
|
1407
|
+
},
|
|
1408
|
+
{
|
|
1409
|
+
"name": "create-event-source",
|
|
1410
|
+
"title": "createEventSource",
|
|
1411
|
+
"description": "SolidJS reactive primitive for subscribing to Server-Sent Events (SSE) streams",
|
|
1412
|
+
"type": "registry:hook"
|
|
1413
|
+
},
|
|
1414
|
+
{
|
|
1415
|
+
"name": "create-scroll-into-view",
|
|
1416
|
+
"title": "createScrollIntoView",
|
|
1417
|
+
"description": "SolidJS reactive primitive for scrolling a target element into view smooth or auto behavior",
|
|
1418
|
+
"type": "registry:hook"
|
|
1419
|
+
},
|
|
1420
|
+
{
|
|
1421
|
+
"name": "create-drop-zone",
|
|
1422
|
+
"title": "createDropZone",
|
|
1423
|
+
"description": "SolidJS reactive primitive for file drag & drop operations, validation, and file chooser dialogs",
|
|
1424
|
+
"type": "registry:hook"
|
|
1425
|
+
},
|
|
1426
|
+
{
|
|
1427
|
+
"name": "create-pagination",
|
|
1428
|
+
"title": "createPagination",
|
|
1429
|
+
"description": "SolidJS reactive primitive for computing pagination state, dynamic page ranges with ellipses, and navigation controls",
|
|
1430
|
+
"type": "registry:hook"
|
|
1431
|
+
},
|
|
1432
|
+
{
|
|
1433
|
+
"name": "create-chat-scroll",
|
|
1434
|
+
"title": "createChatScroll",
|
|
1435
|
+
"description": "SolidJS reactive primitive for automated chat container scrolling with manual scroll-up detection",
|
|
1436
|
+
"type": "registry:hook"
|
|
1437
|
+
},
|
|
1438
|
+
{
|
|
1439
|
+
"name": "create-tauri-window",
|
|
1440
|
+
"title": "createTauriWindow",
|
|
1441
|
+
"description": "SolidJS reactive primitive for interacting with and controlling Tauri v2 application window states",
|
|
1442
|
+
"type": "registry:hook"
|
|
1443
|
+
},
|
|
1444
|
+
{
|
|
1445
|
+
"name": "create-global-shortcut",
|
|
1446
|
+
"title": "createGlobalShortcut",
|
|
1447
|
+
"description": "SolidJS reactive primitive for registering OS-level global keyboard shortcuts via Tauri v2 plugin",
|
|
1448
|
+
"type": "registry:hook"
|
|
1449
|
+
},
|
|
1450
|
+
{
|
|
1451
|
+
"name": "create-app-updater",
|
|
1452
|
+
"title": "createAppUpdater",
|
|
1453
|
+
"description": "SolidJS reactive primitive for controlling and observing Tauri v2 application updates",
|
|
1454
|
+
"type": "registry:hook"
|
|
1455
|
+
},
|
|
1456
|
+
{
|
|
1457
|
+
"name": "create-document-tabs",
|
|
1458
|
+
"title": "createDocumentTabs",
|
|
1459
|
+
"description": "SolidJS reactive primitive for managing multi-document tabs, editor buffers, and browser tab stacks with adjacent activation and pinned state",
|
|
1460
|
+
"type": "registry:hook"
|
|
1461
|
+
},
|
|
1462
|
+
{
|
|
1463
|
+
"name": "create-tiptap-editor",
|
|
1464
|
+
"title": "createTiptapEditor",
|
|
1465
|
+
"description": "Fine-grained reactive SolidJS primitive for managing Tiptap rich text editor instances, signals, and formatting commands.",
|
|
1466
|
+
"type": "registry:hook",
|
|
1467
|
+
"dependencies": [
|
|
1468
|
+
"@tiptap/core",
|
|
1469
|
+
"@tiptap/starter-kit",
|
|
1470
|
+
"@tiptap/extension-link",
|
|
1471
|
+
"@tiptap/extension-image",
|
|
1472
|
+
"@tiptap/extension-placeholder",
|
|
1473
|
+
"@tiptap/extension-task-list",
|
|
1474
|
+
"@tiptap/extension-task-item",
|
|
1475
|
+
"@tiptap/extension-table",
|
|
1476
|
+
"@tiptap/extension-table-row",
|
|
1477
|
+
"@tiptap/extension-table-cell",
|
|
1478
|
+
"@tiptap/extension-table-header",
|
|
1479
|
+
"@tiptap/extension-underline",
|
|
1480
|
+
"@tiptap/extension-text-align",
|
|
1481
|
+
"@tiptap/extension-highlight",
|
|
1482
|
+
"@tiptap/extension-character-count",
|
|
1483
|
+
"@tiptap/extension-subscript",
|
|
1484
|
+
"@tiptap/extension-superscript",
|
|
1485
|
+
"@tiptap/extension-typography",
|
|
1486
|
+
"tiptap-markdown"
|
|
1487
|
+
]
|
|
1488
|
+
}
|
|
1489
|
+
]
|