@catalystsoftware/ui 1.0.12 → 1.0.15
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/dist/components/catalyst-ui/background/animated-beam.tsx +189 -0
- package/dist/components/catalyst-ui/background/background-gradient.tsx +77 -0
- package/dist/components/catalyst-ui/background/background-paths.tsx +132 -0
- package/dist/components/catalyst-ui/background/canvas-fractal-grid.tsx +1862 -0
- package/dist/components/catalyst-ui/background/distorted-glass.tsx +0 -0
- package/dist/components/catalyst-ui/background/dot-pattern.tsx +169 -0
- package/dist/components/catalyst-ui/background/dotted-glow-background.tsx +342 -0
- package/dist/components/catalyst-ui/background/dotted-map.tsx +193 -0
- package/dist/components/catalyst-ui/background/dynamic-rain.tsx +216 -0
- package/dist/components/catalyst-ui/background/flickering-grid.tsx +211 -0
- package/dist/components/catalyst-ui/background/fractal-grid.tsx +666 -0
- package/dist/components/catalyst-ui/background/hexagon-background.tsx +102 -0
- package/dist/components/catalyst-ui/background/index.ts +25 -0
- package/dist/components/catalyst-ui/background/interactive-grid-pattern.tsx +90 -0
- package/dist/components/catalyst-ui/background/lamp.tsx +105 -0
- package/dist/components/catalyst-ui/background/orbiting-circles.tsx +76 -0
- package/dist/components/catalyst-ui/background/particles.tsx +286 -0
- package/dist/components/catalyst-ui/background/progressive-blur.tsx +113 -0
- package/dist/components/catalyst-ui/background/retro-grid-background.tsx +104 -0
- package/dist/components/catalyst-ui/background/smoke.tsx +117 -0
- package/dist/components/catalyst-ui/background/sparkles.tsx +435 -0
- package/dist/components/catalyst-ui/background/stripe-bg-guides.tsx +260 -0
- package/dist/components/catalyst-ui/background/texture-overlay.tsx +207 -0
- package/dist/components/catalyst-ui/background/vortex.tsx +257 -0
- package/dist/components/catalyst-ui/buttons/animated-theme-toggler.tsx +90 -0
- package/dist/components/catalyst-ui/buttons/attract-button.tsx +167 -0
- package/dist/components/catalyst-ui/buttons/bg-animate-button.tsx +249 -0
- package/dist/components/catalyst-ui/buttons/button-group.tsx +203 -0
- package/dist/components/catalyst-ui/buttons/command-button.tsx +109 -0
- package/dist/components/catalyst-ui/buttons/copy-button.tsx +117 -0
- package/dist/components/catalyst-ui/buttons/copy-text.tsx +347 -0
- package/dist/components/catalyst-ui/buttons/export-file.tsx +262 -0
- package/dist/components/catalyst-ui/buttons/flip-button.tsx +106 -0
- package/dist/components/catalyst-ui/buttons/float-button.tsx +197 -0
- package/dist/components/catalyst-ui/buttons/form-button.tsx +90 -0
- package/dist/components/catalyst-ui/buttons/hold-button.tsx +208 -0
- package/dist/components/catalyst-ui/buttons/index.ts +35 -0
- package/dist/components/catalyst-ui/buttons/input-button.tsx +192 -0
- package/dist/components/catalyst-ui/buttons/liquid-button.tsx +53 -0
- package/dist/components/catalyst-ui/buttons/particle-button.tsx +193 -0
- package/dist/components/catalyst-ui/buttons/rating-button-1.tsx +243 -0
- package/dist/components/catalyst-ui/buttons/rating-button.tsx +226 -0
- package/dist/components/catalyst-ui/buttons/ripple-button.tsx +146 -0
- package/dist/components/catalyst-ui/buttons/scroll-to-top.tsx +47 -0
- package/dist/components/catalyst-ui/buttons/shimmer-button.tsx +84 -0
- package/dist/components/catalyst-ui/buttons/slide-button.tsx +90 -0
- package/dist/components/catalyst-ui/buttons/social-button.tsx +194 -0
- package/dist/components/catalyst-ui/buttons/split-button.tsx +121 -0
- package/dist/components/catalyst-ui/buttons/switch-button.tsx +316 -0
- package/dist/components/catalyst-ui/buttons/text-reveal-button.tsx +65 -0
- package/dist/components/catalyst-ui/buttons/theme-switcher.tsx +102 -0
- package/dist/components/catalyst-ui/buttons/theme-toggle-button.tsx +312 -0
- package/dist/components/catalyst-ui/buttons/toggle-button.tsx +125 -0
- package/dist/components/catalyst-ui/buttons/tooltip-button.tsx +24 -0
- package/dist/components/catalyst-ui/charts/area-chart.tsx +989 -0
- package/dist/components/catalyst-ui/charts/bar-chart.tsx +887 -0
- package/dist/components/catalyst-ui/charts/bar-list.tsx +171 -0
- package/dist/components/catalyst-ui/charts/category-bar.tsx +221 -0
- package/dist/components/catalyst-ui/charts/chart-utils.ts +168 -0
- package/dist/components/catalyst-ui/charts/combo-chart.tsx +1179 -0
- package/dist/components/catalyst-ui/charts/donut-chart.tsx +337 -0
- package/dist/components/catalyst-ui/charts/index.ts +14 -0
- package/dist/components/catalyst-ui/charts/line-chart.tsx +907 -0
- package/dist/components/catalyst-ui/charts/spark-chart.tsx +328 -0
- package/dist/components/catalyst-ui/chat/chat.tsx +491 -0
- package/dist/components/catalyst-ui/code/code-block-section.tsx +939 -0
- package/dist/components/catalyst-ui/code/code-comparison.tsx +221 -0
- package/dist/components/catalyst-ui/code/code-comparison1.tsx +203 -0
- package/dist/components/catalyst-ui/code/code-editor.tsx +318 -0
- package/dist/components/catalyst-ui/code/code-section.tsx +62 -0
- package/dist/components/catalyst-ui/code/css-section.tsx +142 -0
- package/dist/components/catalyst-ui/code/html-section.tsx +102 -0
- package/dist/components/catalyst-ui/code/index.ts +22 -0
- package/dist/components/catalyst-ui/code/installCode-section.tsx +181 -0
- package/dist/components/catalyst-ui/code/installCodeArray-section.tsx +186 -0
- package/dist/components/catalyst-ui/code/installGithub-section.tsx +119 -0
- package/dist/components/catalyst-ui/code/json-section.tsx +253 -0
- package/dist/components/catalyst-ui/code/props-section.tsx +605 -0
- package/dist/components/catalyst-ui/code/sandbox.tsx +398 -0
- package/dist/components/catalyst-ui/code/sandbox2.tsx +3194 -0
- package/dist/components/catalyst-ui/code/terminal-1.tsx +119 -0
- package/dist/components/catalyst-ui/code/terminal-code-section.tsx +395 -0
- package/dist/components/catalyst-ui/code/terminal.tsx +315 -0
- package/dist/components/catalyst-ui/code/tsx-section.tsx +176 -0
- package/dist/components/catalyst-ui/comboboxes/choicebox.tsx +203 -0
- package/dist/components/catalyst-ui/comboboxes/combobox-0.tsx +556 -0
- package/dist/components/catalyst-ui/comboboxes/combobox-1.tsx +146 -0
- package/dist/components/catalyst-ui/comboboxes/combobox2.tsx +255 -0
- package/dist/components/catalyst-ui/comboboxes/emoji-picker.tsx +486 -0
- package/dist/components/catalyst-ui/comboboxes/filter-combobox.tsx +46 -0
- package/dist/components/catalyst-ui/comboboxes/index.ts +9 -0
- package/dist/components/catalyst-ui/comboboxes/multi-combobox.tsx +169 -0
- package/dist/components/catalyst-ui/comboboxes/nested-combobox.tsx +211 -0
- package/dist/components/catalyst-ui/commands/command-2.tsx +126 -0
- package/dist/components/catalyst-ui/commands/command-w-combobox.tsx +108 -0
- package/dist/components/catalyst-ui/commands/index.ts +6 -0
- package/dist/components/catalyst-ui/commands/nested-command-dialog.tsx +429 -0
- package/dist/components/catalyst-ui/commands/nested-command.tsx +133 -0
- package/dist/components/catalyst-ui/core/components/3d-card.tsx +144 -0
- package/dist/components/catalyst-ui/core/components/3d-card1.tsx +196 -0
- package/dist/components/catalyst-ui/core/components/android.tsx +105 -0
- package/dist/components/catalyst-ui/core/components/apple-cards-carousel.tsx +376 -0
- package/dist/components/catalyst-ui/core/components/apple-dock.tsx +280 -0
- package/dist/components/catalyst-ui/core/components/badge-1.tsx +117 -0
- package/dist/components/catalyst-ui/core/components/card-flip.tsx +204 -0
- package/dist/components/catalyst-ui/core/components/card-stack.tsx +224 -0
- package/dist/components/catalyst-ui/core/components/chat-bubble.tsx +198 -0
- package/dist/components/catalyst-ui/core/components/collapsible-section.tsx +92 -0
- package/dist/components/catalyst-ui/core/components/comment.tsx +812 -0
- package/dist/components/catalyst-ui/core/components/counter.tsx +77 -0
- package/dist/components/catalyst-ui/core/components/credit-card.tsx +406 -0
- package/dist/components/catalyst-ui/core/components/device-mockup.tsx +436 -0
- package/dist/components/catalyst-ui/core/components/embed.tsx +0 -0
- package/dist/components/catalyst-ui/core/components/faq.tsx +166 -0
- package/dist/components/catalyst-ui/core/components/feed.tsx +741 -0
- package/dist/components/catalyst-ui/core/components/fixed-marker.tsx +232 -0
- package/dist/components/catalyst-ui/core/components/for.tsx +138 -0
- package/dist/components/catalyst-ui/core/components/glowing-effect-card.tsx +273 -0
- package/dist/components/catalyst-ui/core/components/iframe.tsx +175 -0
- package/dist/components/catalyst-ui/core/components/in-place.tsx +285 -0
- package/dist/components/catalyst-ui/core/components/iphone-15-pro.tsx +129 -0
- package/dist/components/catalyst-ui/core/components/macbook-scroll.tsx +702 -0
- package/dist/components/catalyst-ui/core/components/magic-card.tsx +102 -0
- package/dist/components/catalyst-ui/core/components/message-dock.tsx +61 -0
- package/dist/components/catalyst-ui/core/components/meter.tsx +123 -0
- package/dist/components/catalyst-ui/core/components/number-ticker.tsx +67 -0
- package/dist/components/catalyst-ui/core/components/panel.tsx +286 -0
- package/dist/components/catalyst-ui/core/components/pill-1.tsx +166 -0
- package/dist/components/catalyst-ui/core/components/qrcode.tsx +1153 -0
- package/dist/components/catalyst-ui/core/components/safari-device.tsx +197 -0
- package/dist/components/catalyst-ui/core/components/sliding-number.tsx +235 -0
- package/dist/components/catalyst-ui/core/components/spoiler.tsx +161 -0
- package/dist/components/catalyst-ui/core/components/stat.tsx +572 -0
- package/dist/components/catalyst-ui/core/components/sticky.tsx +214 -0
- package/dist/components/catalyst-ui/core/components/tag.tsx +551 -0
- package/dist/components/catalyst-ui/core/components/tweet-card-1.tsx +164 -0
- package/dist/components/catalyst-ui/core/components/tweet-card.tsx +229 -0
- package/dist/components/catalyst-ui/core/data-display/barcode.tsx +1007 -0
- package/dist/components/catalyst-ui/core/data-display/data-list.tsx +344 -0
- package/dist/components/catalyst-ui/core/data-display/descriptionLists.tsx +205 -0
- package/dist/components/catalyst-ui/core/data-display/diff.tsx +186 -0
- package/dist/components/catalyst-ui/core/data-display/heat-map-calendar.tsx +361 -0
- package/dist/components/catalyst-ui/core/data-display/order-list.tsx +0 -0
- package/dist/components/catalyst-ui/core/data-display/stats-1.tsx +129 -0
- package/dist/components/catalyst-ui/core/data-display/stats.tsx +139 -0
- package/dist/components/catalyst-ui/core/data-display/ticker.tsx +179 -0
- package/dist/components/catalyst-ui/core/data-display/timeline-1.tsx +452 -0
- package/dist/components/catalyst-ui/core/data-display/timeline2.tsx +240 -0
- package/dist/components/catalyst-ui/core/data-display/tracker.tsx +209 -0
- package/dist/components/catalyst-ui/core/data-display/transfer-list.tsx +278 -0
- package/dist/components/catalyst-ui/core/data-display/tremor-tracker.tsx +103 -0
- package/dist/components/catalyst-ui/core/demos/FAQ-demo.tsx +41 -0
- package/dist/components/catalyst-ui/core/demos/action-panels-demo.tsx +64 -0
- package/dist/components/catalyst-ui/core/demos/banner-demo.tsx +100 -0
- package/dist/components/catalyst-ui/core/demos/bentoGrid-demo.tsx +191 -0
- package/dist/components/catalyst-ui/core/demos/blog-demo.tsx +68 -0
- package/dist/components/catalyst-ui/core/demos/blogEditor-demo.tsx +10 -0
- package/dist/components/catalyst-ui/core/demos/blogPost-demo.tsx +41 -0
- package/dist/components/catalyst-ui/core/demos/button-groups-demo.tsx +111 -0
- package/dist/components/catalyst-ui/core/demos/cardHeadings-demo.tsx +65 -0
- package/dist/components/catalyst-ui/core/demos/catch-all.tsx +414 -0
- package/dist/components/catalyst-ui/core/demos/contact-demo.tsx +87 -0
- package/dist/components/catalyst-ui/core/demos/content-demo.tsx +52 -0
- package/dist/components/catalyst-ui/core/demos/cta-demo.tsx +64 -0
- package/dist/components/catalyst-ui/core/demos/descriptionLists-demo.tsx +109 -0
- package/dist/components/catalyst-ui/core/demos/edit-product-page-demo.tsx +11 -0
- package/dist/components/catalyst-ui/core/demos/empty-state-demo.tsx +37 -0
- package/dist/components/catalyst-ui/core/demos/feature-demo.tsx +104 -0
- package/dist/components/catalyst-ui/core/demos/feeds-demo.tsx +26 -0
- package/dist/components/catalyst-ui/core/demos/flyoutMenu-demo.tsx +156 -0
- package/dist/components/catalyst-ui/core/demos/footer-demo.tsx +62 -0
- package/dist/components/catalyst-ui/core/demos/form-layouts-demo.tsx +378 -0
- package/dist/components/catalyst-ui/core/demos/gridLists-demo.tsx +47 -0
- package/dist/components/catalyst-ui/core/demos/header-demo.tsx +0 -0
- package/dist/components/catalyst-ui/core/demos/header2-demo.tsx +77 -0
- package/dist/components/catalyst-ui/core/demos/headers-demo.tsx +659 -0
- package/dist/components/catalyst-ui/core/demos/hero-demo.tsx +75 -0
- package/dist/components/catalyst-ui/core/demos/input-groups-demo.tsx +75 -0
- package/dist/components/catalyst-ui/core/demos/landingPage-demo.tsx +222 -0
- package/dist/components/catalyst-ui/core/demos/list-demo.tsx +442 -0
- package/dist/components/catalyst-ui/core/demos/logoClouds-demo.tsx +36 -0
- package/dist/components/catalyst-ui/core/demos/mediaObject-demo.tsx +219 -0
- package/dist/components/catalyst-ui/core/demos/multiColumnLayouts-demo.tsx +42 -0
- package/dist/components/catalyst-ui/core/demos/newsLetter-demo.tsx +51 -0
- package/dist/components/catalyst-ui/core/demos/pageHeading-demo.tsx +55 -0
- package/dist/components/catalyst-ui/core/demos/pricing-demo.tsx +114 -0
- package/dist/components/catalyst-ui/core/demos/radio-group-demo.tsx +315 -0
- package/dist/components/catalyst-ui/core/demos/settingsScreen-demo.tsx +95 -0
- package/dist/components/catalyst-ui/core/demos/sidebar-demo.tsx +40 -0
- package/dist/components/catalyst-ui/core/demos/stackedLayout-demo.tsx +17 -0
- package/dist/components/catalyst-ui/core/demos/stackedLists-demo.tsx +60 -0
- package/dist/components/catalyst-ui/core/demos/stats-demo.tsx +99 -0
- package/dist/components/catalyst-ui/core/demos/team-demo.tsx +35 -0
- package/dist/components/catalyst-ui/core/demos/testimonial-demo.tsx +33 -0
- package/dist/components/catalyst-ui/core/demos/toggle-demo-demo.tsx +414 -0
- package/dist/components/catalyst-ui/core/feedback/alert-variant.tsx +101 -0
- package/dist/components/catalyst-ui/core/feedback/announcement.tsx +53 -0
- package/dist/components/catalyst-ui/core/feedback/banner-2.tsx +143 -0
- package/dist/components/catalyst-ui/core/feedback/banner.tsx +50 -0
- package/dist/components/catalyst-ui/core/feedback/banner1.tsx +64 -0
- package/dist/components/catalyst-ui/core/feedback/callout.tsx +18 -0
- package/dist/components/catalyst-ui/core/feedback/chat-bubble.tsx +770 -0
- package/dist/components/catalyst-ui/core/feedback/dimmer.tsx +518 -0
- package/dist/components/catalyst-ui/core/feedback/dot-loader.tsx +116 -0
- package/dist/components/catalyst-ui/core/feedback/empty-states.tsx +154 -0
- package/dist/components/catalyst-ui/core/feedback/hero-badge.tsx +90 -0
- package/dist/components/catalyst-ui/core/feedback/indicator.tsx +315 -0
- package/dist/components/catalyst-ui/core/feedback/loading.tsx +11 -0
- package/dist/components/catalyst-ui/core/feedback/spinner-2.tsx +10 -0
- package/dist/components/catalyst-ui/core/feedback/spinner-3.tsx +163 -0
- package/dist/components/catalyst-ui/core/feedback/spinner-4.tsx +276 -0
- package/dist/components/catalyst-ui/core/feedback/spinner.tsx +287 -0
- package/dist/components/catalyst-ui/core/feedback/status.tsx +54 -0
- package/dist/components/catalyst-ui/core/headings/cardHeadings.tsx +215 -0
- package/dist/components/catalyst-ui/core/headings/pageHeading.tsx +300 -0
- package/dist/components/catalyst-ui/core/headings/sectionHeadings.tsx +240 -0
- package/dist/components/catalyst-ui/core/heros/animated-hero.tsx +116 -0
- package/dist/components/catalyst-ui/core/heros/animated-hero1.tsx +108 -0
- package/dist/components/catalyst-ui/core/heros/hero-video-dialog.tsx +150 -0
- package/dist/components/catalyst-ui/core/index.ts +248 -0
- package/dist/components/catalyst-ui/core/layout/absolute-center.tsx +45 -0
- package/dist/components/catalyst-ui/core/layout/bento-grid.tsx +251 -0
- package/dist/components/catalyst-ui/core/layout/bento-grid1.tsx +58 -0
- package/dist/components/catalyst-ui/core/layout/bento-grid2.tsx +107 -0
- package/dist/components/catalyst-ui/core/layout/bento-system.tsx +101 -0
- package/dist/components/catalyst-ui/core/layout/box.tsx +231 -0
- package/dist/components/catalyst-ui/core/layout/card-layout.tsx +312 -0
- package/dist/components/catalyst-ui/core/layout/center.tsx +76 -0
- package/dist/components/catalyst-ui/core/layout/container-demo.tsx +340 -0
- package/dist/components/catalyst-ui/core/layout/container.tsx +280 -0
- package/dist/components/catalyst-ui/core/layout/flexbox-grid.tsx +469 -0
- package/dist/components/catalyst-ui/core/layout/grid.tsx +656 -0
- package/dist/components/catalyst-ui/core/layout/group.tsx +49 -0
- package/dist/components/catalyst-ui/core/layout/list.tsx +665 -0
- package/dist/components/catalyst-ui/core/layout/mediaObject.tsx +254 -0
- package/dist/components/catalyst-ui/core/layout/rail.tsx +175 -0
- package/dist/components/catalyst-ui/core/layout/section.tsx +86 -0
- package/dist/components/catalyst-ui/core/layout/stack.tsx +182 -0
- package/dist/components/catalyst-ui/core/lists/animated-list.tsx +98 -0
- package/dist/components/catalyst-ui/core/lists/feeds.tsx +190 -0
- package/dist/components/catalyst-ui/core/lists/file-tree.tsx +379 -0
- package/dist/components/catalyst-ui/core/lists/gridLists.tsx +212 -0
- package/dist/components/catalyst-ui/core/lists/index.ts +14 -0
- package/dist/components/catalyst-ui/core/lists/list-1.tsx +152 -0
- package/dist/components/catalyst-ui/core/lists/list.tsx +217 -0
- package/dist/components/catalyst-ui/core/lists/list1.tsx +138 -0
- package/dist/components/catalyst-ui/core/lists/pin-list.tsx +191 -0
- package/dist/components/catalyst-ui/core/lists/stackedLists.tsx +149 -0
- package/dist/components/catalyst-ui/core/lists/tables.tsx +615 -0
- package/dist/components/catalyst-ui/core/lists/tree.tsx +194 -0
- package/dist/components/catalyst-ui/core/modules/createEditSchedule.tsx +389 -0
- package/dist/components/catalyst-ui/core/modules/punchClock.tsx +304 -0
- package/dist/components/catalyst-ui/core/modules/schedule.tsx +188 -0
- package/dist/components/catalyst-ui/core/modules/viewPunchClockEntries.tsx +629 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-01.tsx +264 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-02.tsx +498 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-03.tsx +263 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-04.tsx +331 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-05.tsx +400 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-06.tsx +436 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-07.tsx +331 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-08.tsx +418 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-09.tsx +440 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-10.tsx +351 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-11.tsx +444 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-12/NotificationMenu.tsx +120 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-12/TeamSwitcher.tsx +87 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-12/UserMenu.tsx +80 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-12/navbar-12.tsx +230 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-13/UserMenu.tsx +80 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-13/navbar-13.tsx +144 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-14/InfoMenu.tsx +62 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-14/NotificationMenu.tsx +122 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-14/SettingsMenu.tsx +66 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-14/navbar-14.tsx +156 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-15/DatePicker.tsx +66 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-15/Filters.tsx +160 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-15/navbar-15.tsx +151 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-16/AppToggle.tsx +125 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-16/TeamSwitcher.tsx +87 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-16/navbar-16.tsx +113 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-17.tsx +209 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-18.tsx +243 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-19.tsx +333 -0
- package/dist/components/catalyst-ui/core/navigation/affix.tsx +123 -0
- package/dist/components/catalyst-ui/core/navigation/anchor.tsx +41 -0
- package/dist/components/catalyst-ui/core/navigation/dock-1.tsx +0 -0
- package/dist/components/catalyst-ui/core/navigation/dock-2.tsx +289 -0
- package/dist/components/catalyst-ui/core/navigation/dock.tsx +376 -0
- package/dist/components/catalyst-ui/core/navigation/efab.tsx +245 -0
- package/dist/components/catalyst-ui/core/navigation/fab-menu-component.tsx +299 -0
- package/dist/components/catalyst-ui/core/navigation/fab-menu.tsx +220 -0
- package/dist/components/catalyst-ui/core/navigation/fab.tsx +236 -0
- package/dist/components/catalyst-ui/core/navigation/index.ts +32 -0
- package/dist/components/catalyst-ui/core/navigation/limelight-nav.tsx +110 -0
- package/dist/components/catalyst-ui/core/navigation/mega-menu.tsx +354 -0
- package/dist/components/catalyst-ui/core/navigation/menu-dock.tsx +204 -0
- package/dist/components/catalyst-ui/core/navigation/message-dock.tsx +511 -0
- package/dist/components/catalyst-ui/core/navigation/page-nav.tsx +29 -0
- package/dist/components/catalyst-ui/core/navigation/page-sidebar-nav.tsx +39 -0
- package/dist/components/catalyst-ui/core/navigation/pagination-button.tsx +56 -0
- package/dist/components/catalyst-ui/core/navigation/pagination-wrapper.tsx +152 -0
- package/dist/components/catalyst-ui/core/navigation/panel-menu.tsx +201 -0
- package/dist/components/catalyst-ui/core/navigation/remix-link.tsx +40 -0
- package/dist/components/catalyst-ui/core/navigation/smooth-tab.tsx +412 -0
- package/dist/components/catalyst-ui/core/navigation/speed-dial.tsx +175 -0
- package/dist/components/catalyst-ui/core/navigation/stepper.tsx +290 -0
- package/dist/components/catalyst-ui/core/navigation/steps.tsx +578 -0
- package/dist/components/catalyst-ui/core/navigation/tab-menu.tsx +227 -0
- package/dist/components/catalyst-ui/core/navigation/tab-view.tsx +742 -0
- package/dist/components/catalyst-ui/core/navigation/toolbar-1.tsx +412 -0
- package/dist/components/catalyst-ui/core/navigation/toolbar.tsx +245 -0
- package/dist/components/catalyst-ui/core/sections/changelog-section.tsx +135 -0
- package/dist/components/catalyst-ui/core/sections/config-section.tsx +82 -0
- package/dist/components/catalyst-ui/core/sections/contact.tsx +600 -0
- package/dist/components/catalyst-ui/core/sections/content.tsx +386 -0
- package/dist/components/catalyst-ui/core/sections/layout.tsx +310 -0
- package/dist/components/catalyst-ui/core/sections/note-section.tsx +85 -0
- package/dist/components/catalyst-ui/core/sections/placeholder-code-section.tsx +14 -0
- package/dist/components/catalyst-ui/core/sections/step-number-section.tsx +16 -0
- package/dist/components/catalyst-ui/core/sections/team.tsx +372 -0
- package/dist/components/catalyst-ui/core/sections/useage-no-dash-section.tsx +79 -0
- package/dist/components/catalyst-ui/core/sections/useage-section.tsx +79 -0
- package/dist/components/catalyst-ui/core/shell/app-shell.tsx +321 -0
- package/dist/components/catalyst-ui/core/shell/content-shell.tsx +70 -0
- package/dist/components/catalyst-ui/core/shell/documentation/example.tsx +106 -0
- package/dist/components/catalyst-ui/core/shell/documentation/layout.config.tsx +200 -0
- package/dist/components/catalyst-ui/core/shell/documentation/layout.example.tsx +127 -0
- package/dist/components/catalyst-ui/core/shell/documentation/layout.tsx +280 -0
- package/dist/components/catalyst-ui/core/shell/multiColumnLayouts.tsx +364 -0
- package/dist/components/catalyst-ui/core/shell/sidebarLayout.tsx +459 -0
- package/dist/components/catalyst-ui/core/shell/stackedLayout.tsx +323 -0
- package/dist/components/catalyst-ui/core/shell/three-col/app.tsx +193 -0
- package/dist/components/catalyst-ui/core/shell/three-col/content.tsx +358 -0
- package/dist/components/catalyst-ui/core/shell/three-col/header.tsx +222 -0
- package/dist/components/catalyst-ui/core/shell/three-col/layout.tsx +120 -0
- package/dist/components/catalyst-ui/core/shell/three-col/side-navbar.tsx +305 -0
- package/dist/components/catalyst-ui/core/shell/three-col/sidebar.tsx +41 -0
- package/dist/components/catalyst-ui/crm/comp-297.tsx +24 -0
- package/dist/components/catalyst-ui/crm/comp-298.tsx +188 -0
- package/dist/components/catalyst-ui/crm/comp-299.tsx +24 -0
- package/dist/components/catalyst-ui/crm/comp-300.tsx +62 -0
- package/dist/components/catalyst-ui/crm/index.ts +5 -0
- package/dist/components/catalyst-ui/crm/tools/scripts-editor.tsx +3109 -0
- package/dist/components/catalyst-ui/crm/tools/scripts-viewer.tsx +215 -0
- package/dist/components/catalyst-ui/data/bg-data.tsx +901 -0
- package/dist/components/catalyst-ui/data/buttons-data.tsx +2327 -0
- package/dist/components/catalyst-ui/data/charts-data.tsx +102 -0
- package/dist/components/catalyst-ui/data/chat-data.tsx +83 -0
- package/dist/components/catalyst-ui/data/code-data.tsx +1040 -0
- package/dist/components/catalyst-ui/data/comboboxes-data.tsx +1843 -0
- package/dist/components/catalyst-ui/data/command-data.tsx +1381 -0
- package/dist/components/catalyst-ui/data/core-data.tsx +15953 -0
- package/dist/components/catalyst-ui/data/crm-data.tsx +47 -0
- package/dist/components/catalyst-ui/data/data.tsx +159 -0
- package/dist/components/catalyst-ui/data/date-and-time-data.tsx +554 -0
- package/dist/components/catalyst-ui/data/dependencies.tsx +7 -0
- package/dist/components/catalyst-ui/data/ecommerce-data.tsx +1387 -0
- package/dist/components/catalyst-ui/data/forms-data.tsx +7890 -0
- package/dist/components/catalyst-ui/data/hooks-data.tsx +5487 -0
- package/dist/components/catalyst-ui/data/index.ts +34 -0
- package/dist/components/catalyst-ui/data/inputs-data.tsx +557 -0
- package/dist/components/catalyst-ui/data/interactive-data.tsx +5394 -0
- package/dist/components/catalyst-ui/data/lofi-data.tsx +18295 -0
- package/dist/components/catalyst-ui/data/marketing-data.tsx +2546 -0
- package/dist/components/catalyst-ui/data/media-data.tsx +1510 -0
- package/dist/components/catalyst-ui/data/motion-data.tsx +5801 -0
- package/dist/components/catalyst-ui/data/overlay-data.tsx +4136 -0
- package/dist/components/catalyst-ui/data/pdf-data.tsx +124 -0
- package/dist/components/catalyst-ui/data/pos-data.tsx +213 -0
- package/dist/components/catalyst-ui/data/primitive-data.tsx +5170 -0
- package/dist/components/catalyst-ui/data/prompt-data.tsx +1226 -0
- package/dist/components/catalyst-ui/data/requiredLibs.ts +4 -0
- package/dist/components/catalyst-ui/data/sandbox-data.tsx +1 -0
- package/dist/components/catalyst-ui/data/sidebars-data.tsx +5421 -0
- package/dist/components/catalyst-ui/data/stacks-data.tsx +32 -0
- package/dist/components/catalyst-ui/data/table-data.tsx +706 -0
- package/dist/components/catalyst-ui/data/tools-data.tsx +6910 -0
- package/dist/components/catalyst-ui/data/typography-data.tsx +2050 -0
- package/dist/components/catalyst-ui/data/utils-data.tsx +6500 -0
- package/dist/components/catalyst-ui/data/x-data.tsx +1171 -0
- package/dist/components/catalyst-ui/data2.tsx +158 -0
- package/dist/components/catalyst-ui/date-and-time/appointment-scheduler.tsx +381 -0
- package/dist/components/catalyst-ui/date-and-time/calendar-2.tsx +498 -0
- package/dist/components/catalyst-ui/date-and-time/calendar-for-sidebar.tsx +68 -0
- package/dist/components/catalyst-ui/date-and-time/calendar-rac.tsx +112 -0
- package/dist/components/catalyst-ui/date-and-time/date-picker-input.tsx +76 -0
- package/dist/components/catalyst-ui/date-and-time/date-picker.tsx +64 -0
- package/dist/components/catalyst-ui/date-and-time/date-range-picker-input.tsx +84 -0
- package/dist/components/catalyst-ui/date-and-time/date-range-picker.tsx +125 -0
- package/dist/components/catalyst-ui/date-and-time/datefield-rac.tsx +88 -0
- package/dist/components/catalyst-ui/date-and-time/docked-date-picker.tsx +267 -0
- package/dist/components/catalyst-ui/date-and-time/drawerDatePicker.tsx +50 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/agenda-view.tsx +90 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/calendar-dnd-context.tsx +373 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/constants.ts +18 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/day-view.tsx +322 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/demo.tsx +162 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/draggable-event.tsx +141 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/droppable-cell.tsx +57 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/event-calendar.tsx +400 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/event-dialog.tsx +467 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/event-item.tsx +262 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/events-popup.tsx +135 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/hooks/use-current-time-indicator.ts +57 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/hooks/use-event-visibility.ts +86 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/index.ts +23 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/month-view.tsx +276 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/types.ts +20 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/utils.ts +153 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/week-view.tsx +406 -0
- package/dist/components/catalyst-ui/date-and-time/index.ts +74 -0
- package/dist/components/catalyst-ui/date-and-time/mini-calendar.tsx +230 -0
- package/dist/components/catalyst-ui/date-and-time/modal-date-input.tsx +229 -0
- package/dist/components/catalyst-ui/date-and-time/popover-date-input.tsx +233 -0
- package/dist/components/catalyst-ui/date-and-time/relative-time.tsx +181 -0
- package/dist/components/catalyst-ui/date-and-time/time-picker-dial.tsx +368 -0
- package/dist/components/catalyst-ui/date-and-time/time-picker-input.tsx +385 -0
- package/dist/components/catalyst-ui/date-and-time/time-picker.tsx +514 -0
- package/dist/components/catalyst-ui/demo/examples.tsx +10069 -0
- package/dist/components/catalyst-ui/demo/examples2.tsx +10954 -0
- package/dist/components/catalyst-ui/demo/index.ts +5 -0
- package/dist/components/catalyst-ui/ecommerce/components/categoryFilters.tsx +302 -0
- package/dist/components/catalyst-ui/ecommerce/components/categoryPreviews.tsx +464 -0
- package/dist/components/catalyst-ui/ecommerce/components/checkoutForms.tsx +991 -0
- package/dist/components/catalyst-ui/ecommerce/components/incentives.tsx +529 -0
- package/dist/components/catalyst-ui/ecommerce/components/orderHistory.tsx +380 -0
- package/dist/components/catalyst-ui/ecommerce/components/orderSummaries.tsx +482 -0
- package/dist/components/catalyst-ui/ecommerce/components/productCard.tsx +84 -0
- package/dist/components/catalyst-ui/ecommerce/components/productCard2.tsx +82 -0
- package/dist/components/catalyst-ui/ecommerce/components/productFeatures.tsx +764 -0
- package/dist/components/catalyst-ui/ecommerce/components/productLists.tsx +472 -0
- package/dist/components/catalyst-ui/ecommerce/components/productOverview.tsx +856 -0
- package/dist/components/catalyst-ui/ecommerce/components/productQuickViews.tsx +378 -0
- package/dist/components/catalyst-ui/ecommerce/components/promoSectionts.tsx +414 -0
- package/dist/components/catalyst-ui/ecommerce/components/reviews.tsx +274 -0
- package/dist/components/catalyst-ui/ecommerce/components/shoppingCarts.tsx +508 -0
- package/dist/components/catalyst-ui/ecommerce/components/storeNavigation.tsx +255 -0
- package/dist/components/catalyst-ui/ecommerce/demo/categoryFilters-demo.tsx +140 -0
- package/dist/components/catalyst-ui/ecommerce/demo/categoryPreviews-demo.tsx +252 -0
- package/dist/components/catalyst-ui/ecommerce/demo/checkoutForms-demo.tsx +76 -0
- package/dist/components/catalyst-ui/ecommerce/demo/editProductPage-data2.tsx +34 -0
- package/dist/components/catalyst-ui/ecommerce/demo/editProductPage-demo.tsx +10 -0
- package/dist/components/catalyst-ui/ecommerce/demo/incentives-demo.tsx +172 -0
- package/dist/components/catalyst-ui/ecommerce/demo/orderHistory-demo.tsx +81 -0
- package/dist/components/catalyst-ui/ecommerce/demo/orderSummaries-demo.tsx +98 -0
- package/dist/components/catalyst-ui/ecommerce/demo/pricingPage-demo.tsx +105 -0
- package/dist/components/catalyst-ui/ecommerce/demo/product.$id-demo.tsx +98 -0
- package/dist/components/catalyst-ui/ecommerce/demo/productCard-demo.tsx +308 -0
- package/dist/components/catalyst-ui/ecommerce/demo/productFeatures-demo.tsx +57 -0
- package/dist/components/catalyst-ui/ecommerce/demo/productLists-demo.tsx +130 -0
- package/dist/components/catalyst-ui/ecommerce/demo/productOverview-demo.tsx +328 -0
- package/dist/components/catalyst-ui/ecommerce/demo/productQuickViews-demo.tsx +242 -0
- package/dist/components/catalyst-ui/ecommerce/demo/promoSectionts-demo.tsx +169 -0
- package/dist/components/catalyst-ui/ecommerce/demo/reviews-demo.tsx +45 -0
- package/dist/components/catalyst-ui/ecommerce/demo/shoppingCarts-demo.tsx +73 -0
- package/dist/components/catalyst-ui/ecommerce/demo/store-demo.tsx +88 -0
- package/dist/components/catalyst-ui/ecommerce/demo/storeNavigation-demo.tsx +171 -0
- package/dist/components/catalyst-ui/ecommerce/index.ts +55 -0
- package/dist/components/catalyst-ui/ecommerce/modules/cash-drawer-wizard.tsx +1400 -0
- package/dist/components/catalyst-ui/ecommerce/modules/cash-till-manager.tsx +639 -0
- package/dist/components/catalyst-ui/ecommerce/modules/promotionEngine.ts +341 -0
- package/dist/components/catalyst-ui/ecommerce/modules/promotionsManager.tsx +840 -0
- package/dist/components/catalyst-ui/forms/action-bar-1.tsx +192 -0
- package/dist/components/catalyst-ui/forms/action-bar.tsx +154 -0
- package/dist/components/catalyst-ui/forms/action-panels.tsx +153 -0
- package/dist/components/catalyst-ui/forms/action-search-bar.tsx +268 -0
- package/dist/components/catalyst-ui/forms/auto-resizing-textarea.tsx +36 -0
- package/dist/components/catalyst-ui/forms/cascade-tree.tsx +224 -0
- package/dist/components/catalyst-ui/forms/cascader.tsx +219 -0
- package/dist/components/catalyst-ui/forms/check-tree-picker.tsx +330 -0
- package/dist/components/catalyst-ui/forms/check-tree.tsx +348 -0
- package/dist/components/catalyst-ui/forms/checkbox-1.tsx +48 -0
- package/dist/components/catalyst-ui/forms/checkbox-card-1.tsx +64 -0
- package/dist/components/catalyst-ui/forms/checkbox-card.tsx +145 -0
- package/dist/components/catalyst-ui/forms/checkbox-multistate.tsx +97 -0
- package/dist/components/catalyst-ui/forms/checkbox-tristate.tsx +158 -0
- package/dist/components/catalyst-ui/forms/color-picker-1.tsx +299 -0
- package/dist/components/catalyst-ui/forms/color-picker-3.tsx +487 -0
- package/dist/components/catalyst-ui/forms/color-picker.tsx +251 -0
- package/dist/components/catalyst-ui/forms/credit-card-input.tsx +284 -0
- package/dist/components/catalyst-ui/forms/debounced-input.tsx +21 -0
- package/dist/components/catalyst-ui/forms/fancy-area.tsx +571 -0
- package/dist/components/catalyst-ui/forms/fieldset.tsx +107 -0
- package/dist/components/catalyst-ui/forms/float-label.tsx +66 -0
- package/dist/components/catalyst-ui/forms/floating-label.tsx +138 -0
- package/dist/components/catalyst-ui/forms/form-wizard.tsx +787 -0
- package/dist/components/catalyst-ui/forms/fuse-search-input.tsx +293 -0
- package/dist/components/catalyst-ui/forms/fuzzy-filter.tsx +17 -0
- package/dist/components/catalyst-ui/forms/fuzzy-sort.tsx +17 -0
- package/dist/components/catalyst-ui/forms/icon-field.tsx +51 -0
- package/dist/components/catalyst-ui/forms/index.ts +58 -0
- package/dist/components/catalyst-ui/forms/inline-edit.tsx +108 -0
- package/dist/components/catalyst-ui/forms/inplace.tsx +174 -0
- package/dist/components/catalyst-ui/forms/input-icon.tsx +39 -0
- package/dist/components/catalyst-ui/forms/input-mask.tsx +216 -0
- package/dist/components/catalyst-ui/forms/input-text.tsx +52 -0
- package/dist/components/catalyst-ui/forms/json-input.tsx +261 -0
- package/dist/components/catalyst-ui/forms/key-filter.tsx +238 -0
- package/dist/components/catalyst-ui/forms/label-variant.tsx +53 -0
- package/dist/components/catalyst-ui/forms/listbox.tsx +118 -0
- package/dist/components/catalyst-ui/forms/multi-cascade-tree.tsx +586 -0
- package/dist/components/catalyst-ui/forms/multi-cascader.tsx +429 -0
- package/dist/components/catalyst-ui/forms/multi-select.tsx +161 -0
- package/dist/components/catalyst-ui/forms/password-input.tsx +54 -0
- package/dist/components/catalyst-ui/forms/pills-input.tsx +133 -0
- package/dist/components/catalyst-ui/forms/pin-input.tsx +354 -0
- package/dist/components/catalyst-ui/forms/profile-dropdown.tsx +219 -0
- package/dist/components/catalyst-ui/forms/radio-tile.tsx +245 -0
- package/dist/components/catalyst-ui/forms/rating-2.tsx +140 -0
- package/dist/components/catalyst-ui/forms/search-input.tsx +49 -0
- package/dist/components/catalyst-ui/forms/select-button.tsx +155 -0
- package/dist/components/catalyst-ui/forms/step-form-wizard.tsx +877 -0
- package/dist/components/catalyst-ui/forms/tags-input-1.tsx +457 -0
- package/dist/components/catalyst-ui/forms/textarea-2.tsx +36 -0
- package/dist/components/catalyst-ui/forms/tree-picker.tsx +295 -0
- package/dist/components/catalyst-ui/hooks/demo.tsx +2757 -0
- package/dist/components/catalyst-ui/hooks/index.ts +106 -0
- package/dist/components/catalyst-ui/hooks/react-hook-docs.tsx +608 -0
- package/dist/components/catalyst-ui/hooks/use-api-key.tsx +151 -0
- package/dist/components/catalyst-ui/hooks/use-async.tsx +36 -0
- package/dist/components/catalyst-ui/hooks/use-auto-scroll.tsx +139 -0
- package/dist/components/catalyst-ui/hooks/use-breakpoint.tsx +21 -0
- package/dist/components/catalyst-ui/hooks/use-character-limit.tsx +37 -0
- package/dist/components/catalyst-ui/hooks/use-click-outside.tsx +27 -0
- package/dist/components/catalyst-ui/hooks/use-client.tsx +30 -0
- package/dist/components/catalyst-ui/hooks/use-color-theme.tsx +4933 -0
- package/dist/components/catalyst-ui/hooks/use-color-wheel.tsx +905 -0
- package/dist/components/catalyst-ui/hooks/use-current-time-indicator.tsx +65 -0
- package/dist/components/catalyst-ui/hooks/use-debounce-fetcher.tsx +56 -0
- package/dist/components/catalyst-ui/hooks/use-debounce-submit.tsx +45 -0
- package/dist/components/catalyst-ui/hooks/use-debounce.tsx +18 -0
- package/dist/components/catalyst-ui/hooks/use-debounced-fuse-search.tsx +168 -0
- package/dist/components/catalyst-ui/hooks/use-delegated-anchors.tsx +87 -0
- package/dist/components/catalyst-ui/hooks/use-document-title.tsx +14 -0
- package/dist/components/catalyst-ui/hooks/use-event-callback.tsx +24 -0
- package/dist/components/catalyst-ui/hooks/use-event-source.tsx +69 -0
- package/dist/components/catalyst-ui/hooks/use-event-visibility.tsx +72 -0
- package/dist/components/catalyst-ui/hooks/use-expandable.tsx +18 -0
- package/dist/components/catalyst-ui/hooks/use-export-markdown-usage.tsx +92 -0
- package/dist/components/catalyst-ui/hooks/use-export-tsx.tsx +50 -0
- package/dist/components/catalyst-ui/hooks/use-external-scripts.tsx +44 -0
- package/dist/components/catalyst-ui/hooks/use-favicon.tsx +16 -0
- package/dist/components/catalyst-ui/hooks/use-fetch.tsx +64 -0
- package/dist/components/catalyst-ui/hooks/use-file-upload.tsx +405 -0
- package/dist/components/catalyst-ui/hooks/use-focus-within.tsx +16 -0
- package/dist/components/catalyst-ui/hooks/use-form.tsx +86 -0
- package/dist/components/catalyst-ui/hooks/use-fuse-search.tsx +155 -0
- package/dist/components/catalyst-ui/hooks/use-fuzzy-search.tsx +17 -0
- package/dist/components/catalyst-ui/hooks/use-global-loading-state.tsx +7 -0
- package/dist/components/catalyst-ui/hooks/use-global-navigation-state.tsx +23 -0
- package/dist/components/catalyst-ui/hooks/use-global-pending-state.tsx +10 -0
- package/dist/components/catalyst-ui/hooks/use-global-submitting-state.tsx +7 -0
- package/dist/components/catalyst-ui/hooks/use-google-font.tsx +39 -0
- package/dist/components/catalyst-ui/hooks/use-hover.tsx +24 -0
- package/dist/components/catalyst-ui/hooks/use-hydrated.tsx +31 -0
- package/dist/components/catalyst-ui/hooks/use-intersection-observer.tsx +28 -0
- package/dist/components/catalyst-ui/hooks/use-isomorphic-layout-effect.tsx +9 -0
- package/dist/components/catalyst-ui/hooks/use-key-press.tsx +30 -0
- package/dist/components/catalyst-ui/hooks/use-keyboard-shortcut.tsx +69 -0
- package/dist/components/catalyst-ui/hooks/use-keyboard.tsx +16 -0
- package/dist/components/catalyst-ui/hooks/use-local-storage-auto-save.tsx +24 -0
- package/dist/components/catalyst-ui/hooks/use-local-storage.tsx +32 -0
- package/dist/components/catalyst-ui/hooks/use-locales.tsx +40 -0
- package/dist/components/catalyst-ui/hooks/use-long-press.tsx +16 -0
- package/dist/components/catalyst-ui/hooks/use-markdown-batches.tsx +120 -0
- package/dist/components/catalyst-ui/hooks/use-markdown-to-html.tsx +42 -0
- package/dist/components/catalyst-ui/hooks/use-mount-effect.tsx +5 -0
- package/dist/components/catalyst-ui/hooks/use-mounted.tsx +11 -0
- package/dist/components/catalyst-ui/hooks/use-mouse-enter.tsx +13 -0
- package/dist/components/catalyst-ui/hooks/use-move.tsx +16 -0
- package/dist/components/catalyst-ui/hooks/use-mutation-observer-useage.tsx +96 -0
- package/dist/components/catalyst-ui/hooks/use-mutation-observer.tsx +117 -0
- package/dist/components/catalyst-ui/hooks/use-on-click-outside.tsx +38 -0
- package/dist/components/catalyst-ui/hooks/use-online-status.tsx +23 -0
- package/dist/components/catalyst-ui/hooks/use-outside-click.tsx +25 -0
- package/dist/components/catalyst-ui/hooks/use-overlay-listener.tsx +31 -0
- package/dist/components/catalyst-ui/hooks/use-overlay-scroll-listener.tsx +128 -0
- package/dist/components/catalyst-ui/hooks/use-pagination.tsx +68 -0
- package/dist/components/catalyst-ui/hooks/use-press.tsx +17 -0
- package/dist/components/catalyst-ui/hooks/use-previous.tsx +13 -0
- package/dist/components/catalyst-ui/hooks/use-read-local-storage.tsx +73 -0
- package/dist/components/catalyst-ui/hooks/use-reducer.tsx +0 -0
- package/dist/components/catalyst-ui/hooks/use-resize-listener.tsx +18 -0
- package/dist/components/catalyst-ui/hooks/use-screen.tsx +100 -0
- package/dist/components/catalyst-ui/hooks/use-script.tsx +102 -0
- package/dist/components/catalyst-ui/hooks/use-scroll-lock.tsx +91 -0
- package/dist/components/catalyst-ui/hooks/use-scroll-position.tsx +23 -0
- package/dist/components/catalyst-ui/hooks/use-sec-fetch-parser.tsx +52 -0
- package/dist/components/catalyst-ui/hooks/use-session-storage.tsx +31 -0
- package/dist/components/catalyst-ui/hooks/use-should-hydrate.tsx +27 -0
- package/dist/components/catalyst-ui/hooks/use-slide-in-1.tsx +96 -0
- package/dist/components/catalyst-ui/hooks/use-slide-in.tsx +368 -0
- package/dist/components/catalyst-ui/hooks/use-slider-with-input.tsx +106 -0
- package/dist/components/catalyst-ui/hooks/use-smooth-scroll.tsx +35 -0
- package/dist/components/catalyst-ui/hooks/use-stream.tsx +576 -0
- package/dist/components/catalyst-ui/hooks/use-tailwind-converter.tsx +465 -0
- package/dist/components/catalyst-ui/hooks/use-throttle.tsx +22 -0
- package/dist/components/catalyst-ui/hooks/use-transition.tsx +0 -0
- package/dist/components/catalyst-ui/hooks/use-unmount-effect.tsx +15 -0
- package/dist/components/catalyst-ui/hooks/use-update-effect.tsx +13 -0
- package/dist/components/catalyst-ui/hooks/use-validate-credit-card.tsx +112 -0
- package/dist/components/catalyst-ui/hooks/use-window-size.tsx +23 -0
- package/dist/components/catalyst-ui/hooks/useDevList.tsx +185 -0
- package/dist/components/catalyst-ui/hooks/useOnWindowResize.tsx +15 -0
- package/dist/components/catalyst-ui/index.ts +38 -0
- package/dist/components/catalyst-ui/inputs/autocomplete.tsx +569 -0
- package/dist/components/catalyst-ui/inputs/autocomplete1.tsx +323 -0
- package/dist/components/catalyst-ui/inputs/cc-input.tsx +44 -0
- package/dist/components/catalyst-ui/inputs/email-address-input.tsx +17 -0
- package/dist/components/catalyst-ui/inputs/index.ts +30 -0
- package/dist/components/catalyst-ui/inputs/input-with-characters-left.tsx +41 -0
- package/dist/components/catalyst-ui/inputs/input-with-end-add-on.tsx +25 -0
- package/dist/components/catalyst-ui/inputs/input-with-end-button.tsx +27 -0
- package/dist/components/catalyst-ui/inputs/input-with-end-icon-button.tsx +29 -0
- package/dist/components/catalyst-ui/inputs/input-with-end-inline-add-on.tsx +24 -0
- package/dist/components/catalyst-ui/inputs/input-with-end-inline-button.tsx +24 -0
- package/dist/components/catalyst-ui/inputs/input-with-end-select.tsx +27 -0
- package/dist/components/catalyst-ui/inputs/input-with-inline-add-ons.tsx +27 -0
- package/dist/components/catalyst-ui/inputs/input-with-inline-start-and-end-add-on.tsx +27 -0
- package/dist/components/catalyst-ui/inputs/input-with-inner-tags.tsx +60 -0
- package/dist/components/catalyst-ui/inputs/input-with-inset-label.tsx +23 -0
- package/dist/components/catalyst-ui/inputs/input-with-mask.tsx +44 -0
- package/dist/components/catalyst-ui/inputs/input-with-password-strength-indicator.tsx +137 -0
- package/dist/components/catalyst-ui/inputs/input-with-start-add-on.tsx +24 -0
- package/dist/components/catalyst-ui/inputs/input-with-start-inline-add-on.tsx +24 -0
- package/dist/components/catalyst-ui/inputs/input-with-start-select.tsx +30 -0
- package/dist/components/catalyst-ui/inputs/input-with-tags.tsx +72 -0
- package/dist/components/catalyst-ui/inputs/number-input-with-chevrons.tsx +61 -0
- package/dist/components/catalyst-ui/inputs/number-input-with-plus-minus-buttons.tsx +52 -0
- package/dist/components/catalyst-ui/inputs/search-input-with-icon-and-button.tsx +32 -0
- package/dist/components/catalyst-ui/inputs/search-input-with-kbd.tsx +26 -0
- package/dist/components/catalyst-ui/inputs/search-input-with-loader.tsx +59 -0
- package/dist/components/catalyst-ui/interactive/3d-pin.tsx +175 -0
- package/dist/components/catalyst-ui/interactive/action-sheet.tsx +240 -0
- package/dist/components/catalyst-ui/interactive/activity-card.tsx +196 -0
- package/dist/components/catalyst-ui/interactive/ai-prompt.tsx +441 -0
- package/dist/components/catalyst-ui/interactive/animated-cursor.tsx +254 -0
- package/dist/components/catalyst-ui/interactive/background-paths.tsx +172 -0
- package/dist/components/catalyst-ui/interactive/can-edit.tsx +100 -0
- package/dist/components/catalyst-ui/interactive/color-swatch.tsx +441 -0
- package/dist/components/catalyst-ui/interactive/currency-transfer.tsx +228 -0
- package/dist/components/catalyst-ui/interactive/cursor.tsx +109 -0
- package/dist/components/catalyst-ui/interactive/drag-and-drop.tsx +374 -0
- package/dist/components/catalyst-ui/interactive/drawing-2.tsx +1147 -0
- package/dist/components/catalyst-ui/interactive/drawing.tsx +576 -0
- package/dist/components/catalyst-ui/interactive/drop-zone-external.tsx +377 -0
- package/dist/components/catalyst-ui/interactive/drop-zone.tsx +399 -0
- package/dist/components/catalyst-ui/interactive/dropzone-1.tsx +259 -0
- package/dist/components/catalyst-ui/interactive/export-excel.tsx +201 -0
- package/dist/components/catalyst-ui/interactive/file-upload.tsx +403 -0
- package/dist/components/catalyst-ui/interactive/file_upload-1.tsx +422 -0
- package/dist/components/catalyst-ui/interactive/filesaver.tsx +51 -0
- package/dist/components/catalyst-ui/interactive/gantt-1.tsx +1464 -0
- package/dist/components/catalyst-ui/interactive/highlight.tsx +84 -0
- package/dist/components/catalyst-ui/interactive/index.ts +49 -0
- package/dist/components/catalyst-ui/interactive/kanban-1.tsx +338 -0
- package/dist/components/catalyst-ui/interactive/lens.tsx +121 -0
- package/dist/components/catalyst-ui/interactive/magnetic.tsx +105 -0
- package/dist/components/catalyst-ui/interactive/mouse-effect-card.tsx +158 -0
- package/dist/components/catalyst-ui/interactive/pdf-generator.tsx +414 -0
- package/dist/components/catalyst-ui/interactive/pdf-signature.tsx +623 -0
- package/dist/components/catalyst-ui/interactive/pdf-viewer.tsx +931 -0
- package/dist/components/catalyst-ui/interactive/pointer.tsx +108 -0
- package/dist/components/catalyst-ui/interactive/ripple.tsx +103 -0
- package/dist/components/catalyst-ui/interactive/scroll-based-velocity.tsx +205 -0
- package/dist/components/catalyst-ui/interactive/signature.tsx +606 -0
- package/dist/components/catalyst-ui/interactive/smooth-cursor.tsx +236 -0
- package/dist/components/catalyst-ui/interactive/sortable.tsx +420 -0
- package/dist/components/catalyst-ui/interactive/spreadsheet.tsx +601 -0
- package/dist/components/catalyst-ui/interactive/task-board.tsx +902 -0
- package/dist/components/catalyst-ui/interactive/terminal.tsx +587 -0
- package/dist/components/catalyst-ui/interactive/tour-1.tsx +426 -0
- package/dist/components/catalyst-ui/interactive/tour.tsx +830 -0
- package/dist/components/catalyst-ui/interactive/transition.tsx +913 -0
- package/dist/components/catalyst-ui/interactive/transitionable-portal.tsx +0 -0
- package/dist/components/catalyst-ui/interactive/tree-view.tsx +427 -0
- package/dist/components/catalyst-ui/interactive/virtualizer.tsx +233 -0
- package/dist/components/catalyst-ui/interactive/watermark.tsx +211 -0
- package/dist/components/catalyst-ui/lo-fi/components/AboutPageLoFi.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/components/ActionPanelLoFi.tsx +22 -0
- package/dist/components/catalyst-ui/lo-fi/components/AnchorLoFi-lofi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/components/ButtonGroupLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/components/ButtonIconLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/components/ButtonLinkLoFi.tsx +5 -0
- package/dist/components/catalyst-ui/lo-fi/components/ButtonLoadingLoFi.tsx +9 -0
- package/dist/components/catalyst-ui/lo-fi/components/CalendarForSidebarLoFi.tsx +21 -0
- package/dist/components/catalyst-ui/lo-fi/components/CalendarMultiDayLoFi.tsx +23 -0
- package/dist/components/catalyst-ui/lo-fi/components/CalloutLoFi.tsx +23 -0
- package/dist/components/catalyst-ui/lo-fi/components/Chart.tsx +239 -0
- package/dist/components/catalyst-ui/lo-fi/components/ContainerLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/components/CopyTextLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/components/DebouncedInputLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/components/DescriptionListLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/components/EditorLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/components/EmptyStateLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/components/ErrorPageLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/components/ExportFileLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/components/FlyoutMenuLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/components/FormLayoutLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/components/HeroCalendar.tsx +115 -0
- package/dist/components/catalyst-ui/lo-fi/components/HeroLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/components/ListLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/components/LoadingLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/components/LogoCloudLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/components/MediaObjectLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/components/MultiColumnLayoutLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/components/NavButtonLoFi.tsx +6 -0
- package/dist/components/catalyst-ui/lo-fi/components/NavButtonStyledLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/components/ScaffoldingLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/components/SectionHeadingLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/components/VerticalNavigationLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/components/accordion-lofi.tsx +76 -0
- package/dist/components/catalyst-ui/lo-fi/components/accountForm-lofi.tsx +21 -0
- package/dist/components/catalyst-ui/lo-fi/components/alert-lofi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/components/alertDialog-lofi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/components/announcement-lofi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/components/aspectRatio-lofi.tsx +9 -0
- package/dist/components/catalyst-ui/lo-fi/components/authenticator-lofi.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/components/avatar-lofi.tsx +6 -0
- package/dist/components/catalyst-ui/lo-fi/components/badge-lofi.tsx +5 -0
- package/dist/components/catalyst-ui/lo-fi/components/banner.tsx +31 -0
- package/dist/components/catalyst-ui/lo-fi/components/bento-grid.tsx +31 -0
- package/dist/components/catalyst-ui/lo-fi/components/blog.tsx +37 -0
- package/dist/components/catalyst-ui/lo-fi/components/breadcrumb.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/components/button.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/components/card-header.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/components/card-heading.tsx +30 -0
- package/dist/components/catalyst-ui/lo-fi/components/card.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/components/carousel.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/components/cart.tsx +21 -0
- package/dist/components/catalyst-ui/lo-fi/components/catchAll.tsx +660 -0
- package/dist/components/catalyst-ui/lo-fi/components/categoryFilter.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/components/categoryPage.tsx +31 -0
- package/dist/components/catalyst-ui/lo-fi/components/categoryPreviews.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/components/checkbox.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/components/checkout-form.tsx +27 -0
- package/dist/components/catalyst-ui/lo-fi/components/checkout.tsx +34 -0
- package/dist/components/catalyst-ui/lo-fi/components/checkoutPage.tsx +67 -0
- package/dist/components/catalyst-ui/lo-fi/components/clientOnly.tsx +34 -0
- package/dist/components/catalyst-ui/lo-fi/components/collapsible.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/components/columns.tsx +23 -0
- package/dist/components/catalyst-ui/lo-fi/components/combobox.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/components/contact-section.tsx +28 -0
- package/dist/components/catalyst-ui/lo-fi/components/content-section.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/components/cookieSettings.tsx +34 -0
- package/dist/components/catalyst-ui/lo-fi/components/cta-section.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/components/data.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/components/dataTable.tsx +36 -0
- package/dist/components/catalyst-ui/lo-fi/components/datePicker.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/components/details.tsx +36 -0
- package/dist/components/catalyst-ui/lo-fi/components/dialog.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/components/display-code.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/components/dropdown.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/components/dropdownMenu.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/components/faq-section.tsx +28 -0
- package/dist/components/catalyst-ui/lo-fi/components/feature-section.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/components/feature.tsx +26 -0
- package/dist/components/catalyst-ui/lo-fi/components/feedList.tsx +26 -0
- package/dist/components/catalyst-ui/lo-fi/components/footer.tsx +40 -0
- package/dist/components/catalyst-ui/lo-fi/components/form.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/components/fourofour.tsx +42 -0
- package/dist/components/catalyst-ui/lo-fi/components/gridLists.tsx +36 -0
- package/dist/components/catalyst-ui/lo-fi/components/header.tsx +23 -0
- package/dist/components/catalyst-ui/lo-fi/components/hero.tsx +21 -0
- package/dist/components/catalyst-ui/lo-fi/components/homeScreen.tsx +31 -0
- package/dist/components/catalyst-ui/lo-fi/components/hooks.tsx +31 -0
- package/dist/components/catalyst-ui/lo-fi/components/hoverCard.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/components/icons.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/components/image.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/components/incentives.tsx +26 -0
- package/dist/components/catalyst-ui/lo-fi/components/index.ts +152 -0
- package/dist/components/catalyst-ui/lo-fi/components/input.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/components/label.tsx +5 -0
- package/dist/components/catalyst-ui/lo-fi/components/landingPage.tsx +35 -0
- package/dist/components/catalyst-ui/lo-fi/components/loadingPage.tsx +23 -0
- package/dist/components/catalyst-ui/lo-fi/components/menubar.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/components/motherboard-blog.tsx +178 -0
- package/dist/components/catalyst-ui/lo-fi/components/motherboard.tsx +91 -0
- package/dist/components/catalyst-ui/lo-fi/components/newsletter.tsx +25 -0
- package/dist/components/catalyst-ui/lo-fi/components/notifications.tsx +21 -0
- package/dist/components/catalyst-ui/lo-fi/components/orderDetails.tsx +51 -0
- package/dist/components/catalyst-ui/lo-fi/components/orderHistory.tsx +35 -0
- package/dist/components/catalyst-ui/lo-fi/components/orderSumaries.tsx +34 -0
- package/dist/components/catalyst-ui/lo-fi/components/pageHeading.tsx +26 -0
- package/dist/components/catalyst-ui/lo-fi/components/pageNav.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/components/pagination.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/components/paymentMethod.tsx +32 -0
- package/dist/components/catalyst-ui/lo-fi/components/pricing.tsx +34 -0
- package/dist/components/catalyst-ui/lo-fi/components/pricingPage.tsx +47 -0
- package/dist/components/catalyst-ui/lo-fi/components/prisma.tsx +23 -0
- package/dist/components/catalyst-ui/lo-fi/components/product-card.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/components/product-gallery.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/components/productList.tsx +41 -0
- package/dist/components/catalyst-ui/lo-fi/components/productOverview.tsx +62 -0
- package/dist/components/catalyst-ui/lo-fi/components/productsFeatured.tsx +43 -0
- package/dist/components/catalyst-ui/lo-fi/components/progress.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/components/promo.tsx +33 -0
- package/dist/components/catalyst-ui/lo-fi/components/radioGroup.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/components/reportIssue.tsx +22 -0
- package/dist/components/catalyst-ui/lo-fi/components/review.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/components/reviews.tsx +60 -0
- package/dist/components/catalyst-ui/lo-fi/components/sales-lofi.tsx +257 -0
- package/dist/components/catalyst-ui/lo-fi/components/scaffolding.tsx +46 -0
- package/dist/components/catalyst-ui/lo-fi/components/scrollBar.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/components/select.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/components/settings.tsx +32 -0
- package/dist/components/catalyst-ui/lo-fi/components/shoppingCart.tsx +52 -0
- package/dist/components/catalyst-ui/lo-fi/components/sidebar.tsx +38 -0
- package/dist/components/catalyst-ui/lo-fi/components/skeleton.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/components/slider.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/components/stacked-lofi.tsx +43 -0
- package/dist/components/catalyst-ui/lo-fi/components/stacked.tsx +52 -0
- package/dist/components/catalyst-ui/lo-fi/components/stats.tsx +25 -0
- package/dist/components/catalyst-ui/lo-fi/components/storeFront.tsx +65 -0
- package/dist/components/catalyst-ui/lo-fi/components/storeNav.tsx +37 -0
- package/dist/components/catalyst-ui/lo-fi/components/switch.tsx +9 -0
- package/dist/components/catalyst-ui/lo-fi/components/tabs.tsx +29 -0
- package/dist/components/catalyst-ui/lo-fi/components/tailwind.tsx +22 -0
- package/dist/components/catalyst-ui/lo-fi/components/team.tsx +27 -0
- package/dist/components/catalyst-ui/lo-fi/components/team2.tsx +27 -0
- package/dist/components/catalyst-ui/lo-fi/components/templatePage.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/components/testimonial.tsx +36 -0
- package/dist/components/catalyst-ui/lo-fi/components/testtimonial.tsx +35 -0
- package/dist/components/catalyst-ui/lo-fi/components/textarea.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/components/toast.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/components/toggle.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/components/tooltip.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/components/useHydrated.tsx +38 -0
- package/dist/components/catalyst-ui/lo-fi/index.ts +528 -0
- package/dist/components/catalyst-ui/lo-fi/utils/atom.tsx +30 -0
- package/dist/components/catalyst-ui/lo-fi/utils/component.tsx +28 -0
- package/dist/components/catalyst-ui/lo-fi/v2/AIPromptLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/AboutLoFi.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/v2/AccessLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/AccountLoFi.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ActivityGoalLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/AiChatLoFi.tsx +29 -0
- package/dist/components/catalyst-ui/lo-fi/v2/AlertV1LoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/AspectRatioLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/AuthProviderLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/AuthSystemLoFi.tsx +23 -0
- package/dist/components/catalyst-ui/lo-fi/v2/AutoCompleteV2LoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/BLoFi.tsx +9 -0
- package/dist/components/catalyst-ui/lo-fi/v2/BankLoFi.tsx +26 -0
- package/dist/components/catalyst-ui/lo-fi/v2/BarcodeLoFi.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/v2/BasicAuthMiddlewareLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/BatcherMiddlewareLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/BlocksLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/BlogEditorLoFi.tsx +25 -0
- package/dist/components/catalyst-ui/lo-fi/v2/BlogListLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/BlogSidebarLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/BoxLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CORSMiddlewareLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CSSLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CalendarLoFi.tsx +25 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CallOutLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CarServiceLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CardsLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CarouselHeroLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CategoriesNavigationLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CategoryFiltersSectionCenteredLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CategoryFiltersSectionLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CategoryFiltersSidebarLoFi.tsx +22 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ChatBubbleLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ChatLoFi.tsx +22 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CheckListLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CheckboxMultistateLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CheckboxTristateLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CheckoutCancelLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CheckoutSuccessLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CheckoutVariousLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ClientOnlyLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CnLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CodeSectionLoFi.tsx +21 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CollapsesToIconsLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CollapsibleFileTreeLoFi.tsx +26 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ConfigSectionLoFi.tsx +26 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ConfirmPopupLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ContactLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ContainerLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ContextStorageMiddlewareLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CookieSettingsLoFi.tsx +22 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CoreLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CreateAccountLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DashboardLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DashboardSidebarLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DebouncedFetcherAndSubmitLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DebouncedInputLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DefaultStyledLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DeferredContentLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DelegateAnchorsToRemixLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DetailLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DeviceMockupLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DiffLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DisplayCodeLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DockLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DragAndDropLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DrawerLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DrawingLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DrawingV2LoFi.tsx +21 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DropZoneLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ECommerceLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/EmbedLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/EmblaCarouselLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/EmblaCarouselSnapLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/EnhancedChartLoFi.tsx +29 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ErrorLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ExerciseMinutesLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FABLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FaqLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FeatureSectionLoFi.tsx +29 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FeedLoFi.tsx +28 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FileManagerLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FilterComboboxLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FilterDrawerLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FilterTanStackTableLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FixedMarkerLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FlexboxGridLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FloatingSidebarWithSubmenusLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ForLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ForgotPasswordLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FormsLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/Four04LoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FunctionalLeftRightSidebarLoFi.tsx +21 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FuseSearchInputLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FuzzyFilterLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FuzzySortLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/GalleriaLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/GnattChartLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/GridLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/H3LoFi.tsx +9 -0
- package/dist/components/catalyst-ui/lo-fi/v2/H4LoFi.tsx +9 -0
- package/dist/components/catalyst-ui/lo-fi/v2/H5LoFi.tsx +9 -0
- package/dist/components/catalyst-ui/lo-fi/v2/HeaderNavLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/HelpLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/HighlightLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/HighlightV1LoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/HomeLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/HoneypotMiddlewareLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/IBLoFi.tsx +9 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ILoFi.tsx +9 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ImageLoFi.tsx +9 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ImageSectionLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/InADialogLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/IncIdLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/IncentivesCardLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/IndicatorLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/InsetSidebarSecondaryNavLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/InsufficientPermissionsLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/InvoiceLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/JWKAuthMiddlewareLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/LandingLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/LayoutLoFi.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/v2/LoadErrorPageLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/LoadingLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/LoadingOverlayLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/LoadingPageLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/LoginLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/MailLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/MarketingLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/MegaMenuLoFi.tsx +26 -0
- package/dist/components/catalyst-ui/lo-fi/v2/MenuLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/MessageLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/MeterLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/MobileNavLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ModalIntegrationsLoFi.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ModalV1LoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/MusicLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/NavMainLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/NavProjectsLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/NavTreeViewLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/NavUserLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/NestedComboboxLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/NestedCommandDialogLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/NestedCommandLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/NotFoundLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/NoteSectionLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/NotificationLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/OnTheRightLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/OrderListLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/OrderSummaryLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/OrderedListLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/OtpLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/OverlayPanelLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PDFGeneratorLoFi.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PMLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PageHeaderLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PageHeadingsSectionLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PaginationButtonLoFi.tsx +8 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PaginationWrapperLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PanelLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PanelMenuLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PasswordInputLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PaymentFormLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PaymentMethodLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PaymentsLoFi.tsx +22 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PdfSignatureLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PdfViewerLoFi.tsx +23 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PlaceholderCodeLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PlaygroundLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PopconfirmLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PrefetchAnchorsLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PrismaClientExtensionLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ProductCategoryLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ProductComparisonLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ProductDetailsLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ProductEditLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ProductPricingLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ProductsLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ProfileCreateLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ProfileListLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ProfileLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ProgressLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ProseLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/QRCodeLoFi.tsx +43 -0
- package/dist/components/catalyst-ui/lo-fi/v2/QaDiscussionLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/QaForumLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/RailLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/RatingLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ReactHooksDocsLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ReceiptLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/RedirectBadRequestsLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/RegisterLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/RemixAuthLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/RemixLinkLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ReportIssueLoFi.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/v2/RequestIDMiddlewareLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ResetPasswordLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ResponsiveLinkLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/RightSidebarLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SaasLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SchedulerLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ScrolltopLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SecFetchParserLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SecureHeadersMiddlewareLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ServerTimingMiddlewareLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ServiceRepairFormLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SessionLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SettingsLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ShareLoFi.tsx +21 -0
- package/dist/components/catalyst-ui/lo-fi/v2/Sidebar24LoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SidebarAgnosticLoFi.tsx +22 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SidebarDetailsLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SidebarInAPopoverLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SidebarNavLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SidebarReactRouterLoFi.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SidebarStylisticDefaultLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SidebarStylisticDefaultWRightLoFi.tsx +23 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SidebarWithSubmenusLoFi.tsx +25 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SignUpLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SignatureLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SingletonMiddlewareLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SiteHeaderLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SmallTableLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SpeedDialLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SpinLoFi.tsx +7 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SpinnerLoFi.tsx +9 -0
- package/dist/components/catalyst-ui/lo-fi/v2/StackLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/StackedListsLoFi.tsx +50 -0
- package/dist/components/catalyst-ui/lo-fi/v2/StackedLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/StateChangeLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/StatsLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/StatusLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/StepsLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/StoreFrontLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/StoreNavSectionLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/StripeLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/StyleProviderLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TSTableLoFi.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TSTableV1LoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TSTableV2LoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TabViewLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TableLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TagLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TailwindcssTxtLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TaskListLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TaskboardLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TasksLoFi.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TeamMembersLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TerminalLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TextEditorLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ThemeSelectorLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TicketsLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TimelineLoFi.tsx +33 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TimelineV1LoFi.tsx +36 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TitleSectionLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ToDoLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ToggleClassLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ToolbarLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TourLoFi.tsx +21 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TransitionLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TransitionablePortalLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TravelLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TreeViewLoFi.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UnderConstructionLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UsageSectionLoFi.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UsageSectionNoDashLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseAsyncLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseClickOutsideLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseCopyToClipboardLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseCounterLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseDebounceLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseDebouncedFuseSearchLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseEventListenerLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseExportMarkdownLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseExportTsxLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseExternalScriptsLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseFaviconLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseFetchLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseFocusLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseFocusWithinLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseFormLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseFuseSearchLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseFuzzySearchLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseGlobalLoadingStateLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseGlobalNavigationStateLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseGlobalPendingStateLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseGlobalSubmittingStateLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseHoverLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseIntersectionObserverLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseIntervalLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseKeyPressLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseKeyboardLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseLocalStorageLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseLocalesLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseLongPressLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseMediaQueryLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseMobileLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseMountEffectLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseMountedLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseMoveLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseMutationObserverLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseOnlineStatusLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseOverlayListenerLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseOverlayScrollListenerLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UsePressLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UsePreviousLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseResizeListenerLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseScrollPositionLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseSessionStorageLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseShouldHydrateLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseSlideInLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseStreamLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseThrottleLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseTimeoutLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseToggleLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseUnmountEffectLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseUpdateEffectLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseWindowSizeLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UserBasedAccessRulesLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UserLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UserOnboardingLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/VerificationLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/VirtualizerLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/WatermarkLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/WithACalendarLoFi.tsx +23 -0
- package/dist/components/catalyst-ui/lo-fi/v2/WithAShoppingCartLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/WithATreeViewLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/WithCollapsibleNestedSidebarsLoFi.tsx +22 -0
- package/dist/components/catalyst-ui/lo-fi/v2/WithCollapsibleSectionsLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/WithCollapsibleSubmenusLoFi.tsx +26 -0
- package/dist/components/catalyst-ui/lo-fi/v2/WithCookieMiddlewareLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/WithInitialLoadingStateLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/WithLoadingNavStateChangesLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/WithNavigationGroupedBySectionLoFi.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/v2/WithSubmenusAsDropdownsLoFi.tsx +25 -0
- package/dist/components/catalyst-ui/lo-fi/v2/action-bar-lofi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/block-quote-lofi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/calendar-lofi.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/v2/cascade-tree-lofi.tsx +34 -0
- package/dist/components/catalyst-ui/lo-fi/v2/cascader-lofi.tsx +27 -0
- package/dist/components/catalyst-ui/lo-fi/v2/changelog-lofi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/check-tree-lofi.tsx +27 -0
- package/dist/components/catalyst-ui/lo-fi/v2/check-tree-picker-lofi.tsx +28 -0
- package/dist/components/catalyst-ui/lo-fi/v2/checkbox-card-v1-lofi.tsx +29 -0
- package/dist/components/catalyst-ui/lo-fi/v2/checkbox-v1-lofi.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/v2/client-only-mermaid-lofi.tsx +21 -0
- package/dist/components/catalyst-ui/lo-fi/v2/color-picker-lofi.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/v2/combobox-v1-lofi.tsx +25 -0
- package/dist/components/catalyst-ui/lo-fi/v2/credit-card-input-lofi.tsx +32 -0
- package/dist/components/catalyst-ui/lo-fi/v2/floating-label-lofi.tsx +26 -0
- package/dist/components/catalyst-ui/lo-fi/v2/form-wizard-lofi.tsx +26 -0
- package/dist/components/catalyst-ui/lo-fi/v2/hero-lofi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/heroV2-lofi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/inline-edit-lofi.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/v2/inplaceLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/input-mask-lofi.tsx +33 -0
- package/dist/components/catalyst-ui/lo-fi/v2/install-code-array-section-lofi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/install-code-section-lofi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/install-github-section-lofi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/json-input-lofi.tsx +29 -0
- package/dist/components/catalyst-ui/lo-fi/v2/multi-cascade-tree-lofi.tsx +40 -0
- package/dist/components/catalyst-ui/lo-fi/v2/multi-cascader-lofi.tsx +28 -0
- package/dist/components/catalyst-ui/lo-fi/v2/multi-combobox-lofi.tsx +31 -0
- package/dist/components/catalyst-ui/lo-fi/v2/nav-shopping-cart-lofi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/pin-input-lofi.tsx +23 -0
- package/dist/components/catalyst-ui/lo-fi/v2/select-button-lofi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/sidebar28-lofi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/step-form-wizard-lofi.tsx +34 -0
- package/dist/components/catalyst-ui/lo-fi/v2/tags-input-lofi.tsx +21 -0
- package/dist/components/catalyst-ui/lo-fi/v2/textarea-lofi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/textarea-v2-lofi.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/v2/transfer-list-lofi.tsx +40 -0
- package/dist/components/catalyst-ui/lo-fi/v2/tri-state-checkbox-lofi.tsx +25 -0
- package/dist/components/catalyst-ui/lo-fi/v2/tsxSection-lofi.tsx +20 -0
- package/dist/components/catalyst-ui/marketing/demo/demos.tsx +0 -0
- package/dist/components/catalyst-ui/marketing/demo/sectionHeadings-demo.tsx +103 -0
- package/dist/components/catalyst-ui/marketing/elements/banner-with-effect.tsx +0 -0
- package/dist/components/catalyst-ui/marketing/elements/flyoutMenu.tsx +318 -0
- package/dist/components/catalyst-ui/marketing/index.ts +41 -0
- package/dist/components/catalyst-ui/marketing/sections/animated-testimonials.tsx +169 -0
- package/dist/components/catalyst-ui/marketing/sections/bentoGrid.tsx +300 -0
- package/dist/components/catalyst-ui/marketing/sections/blog.tsx +469 -0
- package/dist/components/catalyst-ui/marketing/sections/blogEditor.tsx +358 -0
- package/dist/components/catalyst-ui/marketing/sections/blogPost.tsx +208 -0
- package/dist/components/catalyst-ui/marketing/sections/carousel.tsx +928 -0
- package/dist/components/catalyst-ui/marketing/sections/cta.tsx +379 -0
- package/dist/components/catalyst-ui/marketing/sections/faq.tsx +147 -0
- package/dist/components/catalyst-ui/marketing/sections/feature-carousel.tsx +505 -0
- package/dist/components/catalyst-ui/marketing/sections/feature-section.tsx +83 -0
- package/dist/components/catalyst-ui/marketing/sections/feature-showcase.tsx +250 -0
- package/dist/components/catalyst-ui/marketing/sections/feature.tsx +279 -0
- package/dist/components/catalyst-ui/marketing/sections/footer.tsx +390 -0
- package/dist/components/catalyst-ui/marketing/sections/header-1.tsx +450 -0
- package/dist/components/catalyst-ui/marketing/sections/header.tsx +414 -0
- package/dist/components/catalyst-ui/marketing/sections/hero-2.tsx +55 -0
- package/dist/components/catalyst-ui/marketing/sections/hero-3.tsx +12 -0
- package/dist/components/catalyst-ui/marketing/sections/hero-section.tsx +17 -0
- package/dist/components/catalyst-ui/marketing/sections/hero.tsx +169 -0
- package/dist/components/catalyst-ui/marketing/sections/image-section.tsx +36 -0
- package/dist/components/catalyst-ui/marketing/sections/index.ts +33 -0
- package/dist/components/catalyst-ui/marketing/sections/logoClouds.tsx +295 -0
- package/dist/components/catalyst-ui/marketing/sections/newsLetter.tsx +137 -0
- package/dist/components/catalyst-ui/marketing/sections/page-header-section.tsx +127 -0
- package/dist/components/catalyst-ui/marketing/sections/pricing-carousel-2.tsx +282 -0
- package/dist/components/catalyst-ui/marketing/sections/pricing-carousel.tsx +555 -0
- package/dist/components/catalyst-ui/marketing/sections/pricing-single-card.tsx +154 -0
- package/dist/components/catalyst-ui/marketing/sections/pricing.tsx +790 -0
- package/dist/components/catalyst-ui/marketing/sections/testimonial-carousel.tsx +499 -0
- package/dist/components/catalyst-ui/marketing/sections/testimonial.tsx +204 -0
- package/dist/components/catalyst-ui/marketing/sections/title-section.tsx +57 -0
- package/dist/components/catalyst-ui/media/3d-marquee.tsx +144 -0
- package/dist/components/catalyst-ui/media/avatar-circles.tsx +78 -0
- package/dist/components/catalyst-ui/media/blur-fade.tsx +106 -0
- package/dist/components/catalyst-ui/media/carousel-1.tsx +926 -0
- package/dist/components/catalyst-ui/media/carousel-2.tsx +198 -0
- package/dist/components/catalyst-ui/media/carousel-hero.tsx +286 -0
- package/dist/components/catalyst-ui/media/carousel-simple.tsx +244 -0
- package/dist/components/catalyst-ui/media/color-palette-card.tsx +85 -0
- package/dist/components/catalyst-ui/media/cropper.tsx +68 -0
- package/dist/components/catalyst-ui/media/embla-carousel-arrow-buttons.tsx +117 -0
- package/dist/components/catalyst-ui/media/embla-carousel-snap.tsx +103 -0
- package/dist/components/catalyst-ui/media/galleria.tsx +316 -0
- package/dist/components/catalyst-ui/media/globe.tsx +138 -0
- package/dist/components/catalyst-ui/media/google-maps-component.tsx +540 -0
- package/dist/components/catalyst-ui/media/icon-cloud.tsx +312 -0
- package/dist/components/catalyst-ui/media/image-comparison.tsx +251 -0
- package/dist/components/catalyst-ui/media/image-crop.tsx +366 -0
- package/dist/components/catalyst-ui/media/image-zoom.tsx +51 -0
- package/dist/components/catalyst-ui/media/index.ts +32 -0
- package/dist/components/catalyst-ui/media/infinite-scroll.tsx +303 -0
- package/dist/components/catalyst-ui/media/infinite-slider.tsx +108 -0
- package/dist/components/catalyst-ui/media/interactive-icon-cloud.tsx +100 -0
- package/dist/components/catalyst-ui/media/logo.tsx +100 -0
- package/dist/components/catalyst-ui/media/marquee.tsx +199 -0
- package/dist/components/catalyst-ui/media/marquee1.tsx +114 -0
- package/dist/components/catalyst-ui/media/parallax-scroll.tsx +119 -0
- package/dist/components/catalyst-ui/media/pixel-image.tsx +153 -0
- package/dist/components/catalyst-ui/media/video-player.tsx +94 -0
- package/dist/components/catalyst-ui/motions/animated-number.tsx +252 -0
- package/dist/components/catalyst-ui/motions/bg-media.tsx +122 -0
- package/dist/components/catalyst-ui/motions/border-beam.tsx +40 -0
- package/dist/components/catalyst-ui/motions/circle-menu.tsx +320 -0
- package/dist/components/catalyst-ui/motions/color-picker.tsx +490 -0
- package/dist/components/catalyst-ui/motions/color-wheel.tsx +81 -0
- package/dist/components/catalyst-ui/motions/direction-aware-tabs.tsx +568 -0
- package/dist/components/catalyst-ui/motions/dynamic-island.tsx +733 -0
- package/dist/components/catalyst-ui/motions/expandable-card.tsx +941 -0
- package/dist/components/catalyst-ui/motions/expandable-screen.tsx +455 -0
- package/dist/components/catalyst-ui/motions/floating-panel.tsx +1115 -0
- package/dist/components/catalyst-ui/motions/gradient-heading.tsx +116 -0
- package/dist/components/catalyst-ui/motions/index.ts +93 -0
- package/dist/components/catalyst-ui/motions/intro-disclosure.tsx +1345 -0
- package/dist/components/catalyst-ui/motions/light-board.tsx +888 -0
- package/dist/components/catalyst-ui/motions/loading-carousel.tsx +517 -0
- package/dist/components/catalyst-ui/motions/logo-carousel.tsx +586 -0
- package/dist/components/catalyst-ui/motions/morph-surface.tsx +779 -0
- package/dist/components/catalyst-ui/motions/motion-accordian.tsx +206 -0
- package/dist/components/catalyst-ui/motions/motion-alert-dialog.tsx +356 -0
- package/dist/components/catalyst-ui/motions/motion-avatar.tsx +384 -0
- package/dist/components/catalyst-ui/motions/motion-beam.tsx +674 -0
- package/dist/components/catalyst-ui/motions/motion-bento.tsx +262 -0
- package/dist/components/catalyst-ui/motions/motion-bento1.tsx +307 -0
- package/dist/components/catalyst-ui/motions/motion-button.tsx +107 -0
- package/dist/components/catalyst-ui/motions/motion-calendar.tsx +213 -0
- package/dist/components/catalyst-ui/motions/motion-card.tsx +1609 -0
- package/dist/components/catalyst-ui/motions/motion-card1.tsx +825 -0
- package/dist/components/catalyst-ui/motions/motion-card2.tsx +289 -0
- package/dist/components/catalyst-ui/motions/motion-card3.tsx +190 -0
- package/dist/components/catalyst-ui/motions/motion-carousel.tsx +517 -0
- package/dist/components/catalyst-ui/motions/motion-checkbox.tsx +77 -0
- package/dist/components/catalyst-ui/motions/motion-choicebox.tsx +360 -0
- package/dist/components/catalyst-ui/motions/motion-combobox.tsx +242 -0
- package/dist/components/catalyst-ui/motions/motion-command.tsx +328 -0
- package/dist/components/catalyst-ui/motions/motion-context-menu.tsx +391 -0
- package/dist/components/catalyst-ui/motions/motion-date-picker.tsx +162 -0
- package/dist/components/catalyst-ui/motions/motion-dialog.tsx +350 -0
- package/dist/components/catalyst-ui/motions/motion-drawer.tsx +1778 -0
- package/dist/components/catalyst-ui/motions/motion-drawer1.tsx +209 -0
- package/dist/components/catalyst-ui/motions/motion-dropdown-menu.tsx +429 -0
- package/dist/components/catalyst-ui/motions/motion-dropdown1.tsx +572 -0
- package/dist/components/catalyst-ui/motions/motion-feature-carousel.tsx +771 -0
- package/dist/components/catalyst-ui/motions/motion-file-upload.tsx +596 -0
- package/dist/components/catalyst-ui/motions/motion-group.tsx +194 -0
- package/dist/components/catalyst-ui/motions/motion-highlight.tsx +550 -0
- package/dist/components/catalyst-ui/motions/motion-highlight2.tsx +590 -0
- package/dist/components/catalyst-ui/motions/motion-hover-card.tsx +207 -0
- package/dist/components/catalyst-ui/motions/motion-images.tsx +53 -0
- package/dist/components/catalyst-ui/motions/motion-input.tsx +51 -0
- package/dist/components/catalyst-ui/motions/motion-list.tsx +170 -0
- package/dist/components/catalyst-ui/motions/motion-logo-carosel.tsx +668 -0
- package/dist/components/catalyst-ui/motions/motion-map.tsx +372 -0
- package/dist/components/catalyst-ui/motions/motion-navbar.tsx +69 -0
- package/dist/components/catalyst-ui/motions/motion-navigation-menu.tsx +302 -0
- package/dist/components/catalyst-ui/motions/motion-panel.tsx +338 -0
- package/dist/components/catalyst-ui/motions/motion-popover.tsx +281 -0
- package/dist/components/catalyst-ui/motions/motion-radio-card.tsx +77 -0
- package/dist/components/catalyst-ui/motions/motion-radio-group.tsx +54 -0
- package/dist/components/catalyst-ui/motions/motion-rating.tsx +182 -0
- package/dist/components/catalyst-ui/motions/motion-screen.tsx +441 -0
- package/dist/components/catalyst-ui/motions/motion-search-bar.tsx +1013 -0
- package/dist/components/catalyst-ui/motions/motion-section.tsx +270 -0
- package/dist/components/catalyst-ui/motions/motion-select.tsx +306 -0
- package/dist/components/catalyst-ui/motions/motion-spotlight.tsx +217 -0
- package/dist/components/catalyst-ui/motions/motion-switch.tsx +83 -0
- package/dist/components/catalyst-ui/motions/motion-tabs.tsx +554 -0
- package/dist/components/catalyst-ui/motions/motion-tabs2.tsx +257 -0
- package/dist/components/catalyst-ui/motions/motion-testimonials.tsx +282 -0
- package/dist/components/catalyst-ui/motions/motion-toast.tsx +398 -0
- package/dist/components/catalyst-ui/motions/motion-toolbar-tabs.tsx +519 -0
- package/dist/components/catalyst-ui/motions/motion-toolbar.tsx +1113 -0
- package/dist/components/catalyst-ui/motions/motion-tooltip.tsx +162 -0
- package/dist/components/catalyst-ui/motions/motion-tooltip2.tsx +82 -0
- package/dist/components/catalyst-ui/motions/motion-video-player.tsx +1056 -0
- package/dist/components/catalyst-ui/motions/motions-input.tsx +51 -0
- package/dist/components/catalyst-ui/motions/popover-form.tsx +469 -0
- package/dist/components/catalyst-ui/motions/profile-dropdown.tsx +237 -0
- package/dist/components/catalyst-ui/motions/radial-menu.tsx +303 -0
- package/dist/components/catalyst-ui/motions/roladex.tsx +194 -0
- package/dist/components/catalyst-ui/motions/roladex1.tsx +166 -0
- package/dist/components/catalyst-ui/motions/shift-card.tsx +302 -0
- package/dist/components/catalyst-ui/motions/side-panel.tsx +352 -0
- package/dist/components/catalyst-ui/motions/smooth-drawer.tsx +213 -0
- package/dist/components/catalyst-ui/motions/smooth-popover.tsx +491 -0
- package/dist/components/catalyst-ui/motions/sortable-list.tsx +712 -0
- package/dist/components/catalyst-ui/motions/stripe.tsx +261 -0
- package/dist/components/catalyst-ui/motions/texture-button.tsx +217 -0
- package/dist/components/catalyst-ui/motions/timer.tsx +286 -0
- package/dist/components/catalyst-ui/motions/toolbar-expandable.tsx +1138 -0
- package/dist/components/catalyst-ui/motions/youtube-player.tsx +614 -0
- package/dist/components/catalyst-ui/overlays/animated-modal.tsx +212 -0
- package/dist/components/catalyst-ui/overlays/animated-tooltip.tsx +99 -0
- package/dist/components/catalyst-ui/overlays/confirm-popup.tsx +219 -0
- package/dist/components/catalyst-ui/overlays/dialog-stack.tsx +558 -0
- package/dist/components/catalyst-ui/overlays/index.ts +19 -0
- package/dist/components/catalyst-ui/overlays/loading-overlay.tsx +324 -0
- package/dist/components/catalyst-ui/overlays/modal-integrations-1.tsx +300 -0
- package/dist/components/catalyst-ui/overlays/modal-integrations.tsx +301 -0
- package/dist/components/catalyst-ui/overlays/overlay-panel.tsx +233 -0
- package/dist/components/catalyst-ui/overlays/popconfirm.tsx +721 -0
- package/dist/components/catalyst-ui/overlays/sidebar-props.tsx +492 -0
- package/dist/components/catalyst-ui/overlays/sidebar.tsx +2208 -0
- package/dist/components/catalyst-ui/overlays/sidebarMenuItemLoading.tsx +124 -0
- package/dist/components/catalyst-ui/overlays/texture-card.tsx +309 -0
- package/dist/components/catalyst-ui/overlays/transitionable-portal.tsx +230 -0
- package/dist/components/catalyst-ui/pdf/generate_custom_pdf.tsx +40 -0
- package/dist/components/catalyst-ui/pdf/generate_pdf.tsx +196 -0
- package/dist/components/catalyst-ui/pdf/index.ts +12 -0
- package/dist/components/catalyst-ui/pdf/pdf.tsx +32 -0
- package/dist/components/catalyst-ui/pdf/pdf_generator.ts +141 -0
- package/dist/components/catalyst-ui/pdf/pdf_sender.$dealerId.$documentId.$dept.tsx +1260 -0
- package/dist/components/catalyst-ui/pdf/pdf_signer.$id.tsx +1438 -0
- package/dist/components/catalyst-ui/pdf/print_pdf.tsx +15905 -0
- package/dist/components/catalyst-ui/pdf/templateBuilder.tsx +1590 -0
- package/dist/components/catalyst-ui/pdf/test.tsx +53 -0
- package/dist/components/catalyst-ui/pos/index.ts +5 -0
- package/dist/components/catalyst-ui/pos/tools/barcodeScanner.tsx +160 -0
- package/dist/components/catalyst-ui/pos/tools/cashDrawerWizard.tsx +1403 -0
- package/dist/components/catalyst-ui/pos/tools/scan.mp4 +0 -0
- package/dist/components/catalyst-ui/primitives/alert.tsx +103 -0
- package/dist/components/catalyst-ui/primitives/annotated.tsx +133 -0
- package/dist/components/catalyst-ui/primitives/button-group.tsx +89 -0
- package/dist/components/catalyst-ui/primitives/checkbox-tree.tsx +175 -0
- package/dist/components/catalyst-ui/primitives/combobox.tsx +93 -0
- package/dist/components/catalyst-ui/primitives/description-list.tsx +88 -0
- package/dist/components/catalyst-ui/primitives/index.ts +59 -0
- package/dist/components/catalyst-ui/primitives/input-group.tsx +186 -0
- package/dist/components/catalyst-ui/primitives/menubar.tsx +273 -0
- package/dist/components/catalyst-ui/primitives/progress-bar.tsx +114 -0
- package/dist/components/catalyst-ui/primitives/radio-card.tsx +167 -0
- package/dist/components/catalyst-ui/primitives/scroll-area.tsx +56 -0
- package/dist/components/catalyst-ui/primitives/table.tsx +329 -0
- package/dist/components/catalyst-ui/prompt/ai-input-search.tsx +288 -0
- package/dist/components/catalyst-ui/prompt/ai-loading-state.tsx +313 -0
- package/dist/components/catalyst-ui/prompt/ai-prompt-input.tsx +305 -0
- package/dist/components/catalyst-ui/prompt/ai-voice.tsx +241 -0
- package/dist/components/catalyst-ui/prompt/chain-of-thought.tsx +146 -0
- package/dist/components/catalyst-ui/prompt/chatbot.tsx +201 -0
- package/dist/components/catalyst-ui/prompt/code-block-examples.tsx +227 -0
- package/dist/components/catalyst-ui/prompt/code-block.tsx +92 -0
- package/dist/components/catalyst-ui/prompt/conversation-actions.tsx +150 -0
- package/dist/components/catalyst-ui/prompt/conversation-avatars.tsx +92 -0
- package/dist/components/catalyst-ui/prompt/conversation-prompt-input.tsx +256 -0
- package/dist/components/catalyst-ui/prompt/conversation-scroll-bottom.tsx +121 -0
- package/dist/components/catalyst-ui/prompt/file-upload.tsx +310 -0
- package/dist/components/catalyst-ui/prompt/full-chat-app.tsx +759 -0
- package/dist/components/catalyst-ui/prompt/full-conversation.tsx +76 -0
- package/dist/components/catalyst-ui/prompt/image.tsx +94 -0
- package/dist/components/catalyst-ui/prompt/index.ts +46 -0
- package/dist/components/catalyst-ui/prompt/input-byok.tsx +70 -0
- package/dist/components/catalyst-ui/prompt/jsx-preview.tsx +81 -0
- package/dist/components/catalyst-ui/prompt/loader.tsx +497 -0
- package/dist/components/catalyst-ui/prompt/markdown.tsx +117 -0
- package/dist/components/catalyst-ui/prompt/pre-prompts.tsx +59 -0
- package/dist/components/catalyst-ui/prompt/prompt-autocomplete-highlight.tsx +81 -0
- package/dist/components/catalyst-ui/prompt/prompt-chat-container-basic.tsx +98 -0
- package/dist/components/catalyst-ui/prompt/prompt-chat-container-streaming.tsx +132 -0
- package/dist/components/catalyst-ui/prompt/prompt-chat-container.tsx +65 -0
- package/dist/components/catalyst-ui/prompt/prompt-feedback-bar.tsx +79 -0
- package/dist/components/catalyst-ui/prompt/prompt-input-actions.tsx +100 -0
- package/dist/components/catalyst-ui/prompt/prompt-input-suggestions.tsx +150 -0
- package/dist/components/catalyst-ui/prompt/prompt-input.tsx +187 -0
- package/dist/components/catalyst-ui/prompt/prompt-message.tsx +109 -0
- package/dist/components/catalyst-ui/prompt/prompt-suggestion.tsx +116 -0
- package/dist/components/catalyst-ui/prompt/providers.tsx +540 -0
- package/dist/components/catalyst-ui/prompt/reasoning.tsx +168 -0
- package/dist/components/catalyst-ui/prompt/response-stream.tsx +392 -0
- package/dist/components/catalyst-ui/prompt/scroll-button.tsx +39 -0
- package/dist/components/catalyst-ui/prompt/sidebar-chat-history.tsx +242 -0
- package/dist/components/catalyst-ui/prompt/snippets.tsx +1378 -0
- package/dist/components/catalyst-ui/prompt/source.tsx +127 -0
- package/dist/components/catalyst-ui/prompt/steps.tsx +111 -0
- package/dist/components/catalyst-ui/prompt/system-message.tsx +131 -0
- package/dist/components/catalyst-ui/prompt/tool-calling.tsx +236 -0
- package/dist/components/catalyst-ui/prompt/tool.tsx +204 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/NotificationMenu.tsx +120 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/Tree.tsx +53 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/active-toc.tsx +213 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/analog-clock.tsx +211 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/app-sidebar.tsx +339 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/blog-sidebar.tsx +39 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/calendars.tsx +58 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/date-picker.tsx +12 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/dev-list-sidebar.tsx +195 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/digital-clock.tsx +343 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/index.ts +41 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/loading-sidebar.tsx +42 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-actions.tsx +122 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-appointments.tsx +429 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-auto-search.tsx +314 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-favorites.tsx +71 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-header.tsx +409 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-main.tsx +1583 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-messenger.tsx +440 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-projects.tsx +66 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-quick-actions.tsx +366 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-secondary.tsx +33 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-shopping-cart.tsx +231 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-shopping-cartCatlstui.tsx +196 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-tree-view.tsx +18 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-user.tsx +87 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-workspaces.tsx +69 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/navigation-theme-selector.tsx +143 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/opt-in-form.tsx +29 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/search-command.tsx +32 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/search-form.tsx +21 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/settings-menu.tsx +35 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/sidebar-dialog.tsx +82 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/site-header.tsx +40 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/team-switcher.tsx +68 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/toc.tsx +301 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/user-menu.tsx +77 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/version-switcher.tsx +49 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/wishlist.tsx +292 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-01/AppSidebar.tsx +36 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-01/SearchForm.tsx +24 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-01/VersionSwitcher.tsx +49 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-01/index.tsx +270 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-01/sidebar-01.tsx +178 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-02/AppSidebar.tsx +56 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-02/SearchForm.tsx +24 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-02/VersionSwitcher.tsx +44 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-02/index.tsx +301 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-02/sidebar-02.tsx +193 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-03/AppSidebar.tsx +54 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-03/index.tsx +238 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-03/sidebar-03.tsx +189 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-04/AppSidebar.tsx +58 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-04/index.tsx +249 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-04/sidebar-04.tsx +201 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-05/AppSidebar.tsx +70 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-05/SearchForm.tsx +25 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-05/index.tsx +275 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-05/sidebar-05.tsx +191 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-06/AppSidebar.tsx +43 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-06/NavMain.tsx +56 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-06/SidebarOptInForm.tsx +34 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-06/index.tsx +290 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-06/sidebar-06.tsx +183 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-07/AppSidebar.tsx +28 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-07/NavMain.tsx +57 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-07/NavProjects.tsx +67 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-07/NavUser.tsx +86 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-07/TeamSwitcher.tsx +74 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-07/index.tsx +474 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-07/sidebar-07.tsx +189 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-08/AppSidebar.tsx +41 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-08/NavMain.tsx +62 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-08/NavProjects.tsx +68 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-08/NavSecondary.tsx +35 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-08/NavUser.tsx +87 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-08/index.tsx +446 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-08/sidebar-08.tsx +181 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-09/AppSidebar.tsx +213 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-09/NavUser.tsx +88 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-09/index.tsx +468 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-09/sidebar-09.tsx +177 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-10/AppSidebar.tsx +28 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-10/NavActions.tsx +59 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-10/NavFavorites.tsx +74 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-10/NavMain.tsx +31 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-10/NavSecondary.tsx +37 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-10/NavWorkspaces.tsx +70 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-10/TeamSwitcher.tsx +70 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-10/index.tsx +675 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-10/sidebar-10.tsx +348 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-11/AppSidebar.tsx +46 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-11/Tree.tsx +49 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-11/index.tsx +175 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-11/sidebar-11.tsx +102 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-12/AppSidebar.tsx +32 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-12/Calendars.tsx +57 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-12/DatePicker.tsx +13 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-12/NavUser.tsx +85 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-12/index.tsx +237 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-12/sidebar-12.tsx +68 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-13/SettingsDialog.tsx +82 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-13/index.tsx +105 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-13/sidebar-13.tsx +24 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-14/AppSidebar.tsx +45 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-14/index.tsx +225 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-14/sidebar-14.tsx +186 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-15/Calendars.tsx +83 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-15/DatePicker.tsx +39 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-15/NavFavorites.tsx +98 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-15/NavMain.tsx +29 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-15/NavSecondary.tsx +36 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-15/NavUser.tsx +89 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-15/NavWorkspaces.tsx +95 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-15/SidebarLeft.tsx +28 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-15/SidebarRight.tsx +38 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-15/TeamSwitcher.tsx +89 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-15/index.tsx +776 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-15/sidebar-15.tsx +324 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-16/AppSidebar.tsx +50 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-16/NavUser.tsx +100 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-16/SearchForm.tsx +35 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-16/SiteHeader.tsx +51 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-16/index.tsx +424 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-16/sidebar-16.tsx +188 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-17/AppSidebar.tsx +154 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-17/ShoppingCartSidebar.tsx +163 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-17/index.tsx +557 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-17/sidebar-17.tsx +183 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-18/AppSidebar.tsx +32 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-18/NavTreeView.tsx +18 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-18/index.tsx +120 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-18/sidebar-18.tsx +92 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-19/AppSidebar.tsx +230 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-19/index.tsx +264 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-19/sidebar-19.tsx +59 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-20/AppSidebar.tsx +215 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-20/index.tsx +250 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-20/sidebar-20.tsx +44 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-21/AppSidebar.tsx +303 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-21/LoadingSidebar.tsx +41 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-21/index.tsx +412 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-21/sidebar-21.tsx +75 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-22/AppSidebar.tsx +184 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-22/LoadingSidebar.tsx +45 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-22/index.tsx +251 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-22/sidebar-22.tsx +44 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-24/NavUser.tsx +87 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-24/calendars-24.tsx +58 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-24/date-picker-24.tsx +12 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-24/sidebar-24.tsx +39 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-25/AppSidebar.tsx +24 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-25/NavMain.tsx +57 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-25/NavSecondary.tsx +35 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-25/NavUser.tsx +87 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-25/SearchForm.tsx +35 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-25/SiteHeader.tsx +19 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-25/index.tsx +172 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-25/sidebar-25.tsx +153 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-26/app-sidebar-26.tsx +344 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-26/index.tsx +78 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-26/sidebar-26.tsx +78 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-26/use-mobile-26.ts +19 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-27/sidebar-27.tsx +5 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-28/app-sidebar-28.tsx +285 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-28/index.tsx +31 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-28/nav-user-28.tsx +88 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-28/search-form-28.tsx +23 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-28/sidebar-28.tsx +32 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-28/site-header-28.tsx +29 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-28/use-mobile-28.ts +19 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-29/ds-left-icon.tsx +101 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-29/ds-left.tsx +88 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-29/ds-right-icon.tsx +106 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-29/ds-right.tsx +87 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-29/nav-user.tsx +74 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-29/settings-dialog.tsx +91 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-29/sidebar-29.tsx +204 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-29/version-switcher.tsx +52 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-30/ds-left.tsx +678 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-30/ds-right.tsx +87 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-30/settings-dialog.tsx +91 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-30/sidebar-30.tsx +604 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-31/ds-left.tsx +431 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-31/message.tsx +28 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-31/nav-auto-search.tsx +310 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-31/nav-search-command.tsx +0 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-31/nav-user.tsx +74 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-31/sidebar-31.tsx +369 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-31/typing-message.tsx +12 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-32/ds-left.tsx +119 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-32/ds-right.tsx +87 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-32/settings-dialog.tsx +91 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-32/sidebar-32.tsx +119 -0
- package/dist/components/catalyst-ui/sidebars/variants/dual-sidebar-agnostic.tsx +3473 -0
- package/dist/components/catalyst-ui/sidebars/variants/sidebar-original.tsx +714 -0
- package/dist/components/catalyst-ui/sidebars/variants/sidebar-right.tsx +823 -0
- package/dist/components/catalyst-ui/sidebars/variants/sidebar-stylistic-default.tsx +591 -0
- package/dist/components/catalyst-ui/table/catalyst-table/column-header-simple.tsx +60 -0
- package/dist/components/catalyst-ui/table/catalyst-table/column-header.tsx +223 -0
- package/dist/components/catalyst-ui/table/catalyst-table/draggable-header.tsx +58 -0
- package/dist/components/catalyst-ui/table/catalyst-table/faceted-filter.tsx +131 -0
- package/dist/components/catalyst-ui/table/catalyst-table/global-search.tsx +0 -0
- package/dist/components/catalyst-ui/table/catalyst-table/row-actions.tsx +49 -0
- package/dist/components/catalyst-ui/table/catalyst-table/table.tsx +421 -0
- package/dist/components/catalyst-ui/table/index.ts +14 -0
- package/dist/components/catalyst-ui/table/props-table.tsx +170 -0
- package/dist/components/catalyst-ui/table/small-table.tsx +719 -0
- package/dist/components/catalyst-ui/table/table-1.tsx +246 -0
- package/dist/components/catalyst-ui/themeStudio/config.tsx +83 -0
- package/dist/components/catalyst-ui/themeStudio/dual-sidebar.tsx +3256 -0
- package/dist/components/catalyst-ui/themeStudio/theme-provider.tsx +269 -0
- package/dist/components/catalyst-ui/themeStudio/use-color-theme.tsx +1614 -0
- package/dist/components/catalyst-ui/themeStudio/use-color-wheel.tsx +904 -0
- package/dist/components/catalyst-ui/tools/Demo/md-render-genie.tsx +273 -0
- package/dist/components/catalyst-ui/tools/GandalfBot.tsx +144 -0
- package/dist/components/catalyst-ui/tools/MdFileTreeExplorer.tsx +287 -0
- package/dist/components/catalyst-ui/tools/accessibility-checker.tsx +370 -0
- package/dist/components/catalyst-ui/tools/animation-builder.tsx +350 -0
- package/dist/components/catalyst-ui/tools/api-response.tsx +318 -0
- package/dist/components/catalyst-ui/tools/chart-playground.tsx +480 -0
- package/dist/components/catalyst-ui/tools/code-carousel.tsx +246 -0
- package/dist/components/catalyst-ui/tools/code-diff.tsx +274 -0
- package/dist/components/catalyst-ui/tools/code-editor.tsx +35 -0
- package/dist/components/catalyst-ui/tools/code-highlight-plugin.tsx +25 -0
- package/dist/components/catalyst-ui/tools/color-converter.tsx +413 -0
- package/dist/components/catalyst-ui/tools/color-wheel.tsx +1012 -0
- package/dist/components/catalyst-ui/tools/components-reel.tsx +135 -0
- package/dist/components/catalyst-ui/tools/convert/converter.tsx +969 -0
- package/dist/components/catalyst-ui/tools/convert/sidebar-converter.tsx +132 -0
- package/dist/components/catalyst-ui/tools/cron-expression-builder.tsx +346 -0
- package/dist/components/catalyst-ui/tools/dual-editor.tsx +240 -0
- package/dist/components/catalyst-ui/tools/editor.tsx +1744 -0
- package/dist/components/catalyst-ui/tools/examples.tsx +1206 -0
- package/dist/components/catalyst-ui/tools/flexbox-sandbox.tsx +327 -0
- package/dist/components/catalyst-ui/tools/function-theater.tsx +93 -0
- package/dist/components/catalyst-ui/tools/grid-sandbox.tsx +464 -0
- package/dist/components/catalyst-ui/tools/icons.tsx +249 -0
- package/dist/components/catalyst-ui/tools/index.ts +59 -0
- package/dist/components/catalyst-ui/tools/json-Formatter.tsx +258 -0
- package/dist/components/catalyst-ui/tools/layout-generator.tsx +237 -0
- package/dist/components/catalyst-ui/tools/lexical-editor.tsx +218 -0
- package/dist/components/catalyst-ui/tools/live-playground.tsx +1458 -0
- package/dist/components/catalyst-ui/tools/lorem-ipsum-generator.tsx +314 -0
- package/dist/components/catalyst-ui/tools/md-badge-builder.tsx +179 -0
- package/dist/components/catalyst-ui/tools/md-cheat-sheet.tsx +5557 -0
- package/dist/components/catalyst-ui/tools/md-editor.tsx +632 -0
- package/dist/components/catalyst-ui/tools/md-render-genie.tsx +1233 -0
- package/dist/components/catalyst-ui/tools/md-renderer.tsx +61 -0
- package/dist/components/catalyst-ui/tools/monaco-sidebar.tsx +7791 -0
- package/dist/components/catalyst-ui/tools/monaco.tsx +492 -0
- package/dist/components/catalyst-ui/tools/motion-sandbox.tsx +0 -0
- package/dist/components/catalyst-ui/tools/qr-code-generator.tsx +432 -0
- package/dist/components/catalyst-ui/tools/regex-tester.tsx +508 -0
- package/dist/components/catalyst-ui/tools/responsive-preview.tsx +286 -0
- package/dist/components/catalyst-ui/tools/rich-text-editor copy.tsx +1058 -0
- package/dist/components/catalyst-ui/tools/rich-text-editor.tsx +1994 -0
- package/dist/components/catalyst-ui/tools/rte.md +119 -0
- package/dist/components/catalyst-ui/tools/sandbox.tsx +52 -0
- package/dist/components/catalyst-ui/tools/scripts-viewer.tsx +215 -0
- package/dist/components/catalyst-ui/tools/scripts.edit.tsx +3102 -0
- package/dist/components/catalyst-ui/tools/table-plugin.tsx +149 -0
- package/dist/components/catalyst-ui/tools/tailwind-converter.tsx +502 -0
- package/dist/components/catalyst-ui/tools/terminal.tsx +60 -0
- package/dist/components/catalyst-ui/tools/theme-builder.tsx +5071 -0
- package/dist/components/catalyst-ui/tools/toolbar-plugin.tsx +383 -0
- package/dist/components/catalyst-ui/tools/toolbar-plugin1.tsx +861 -0
- package/dist/components/catalyst-ui/tools/typography-tester.tsx +310 -0
- package/dist/components/catalyst-ui/tools/uuid-hash-generator.tsx +534 -0
- package/dist/components/catalyst-ui/tools/vscode-cmds.tsx +3813 -0
- package/dist/components/catalyst-ui/tools/x-viewer.tsx +135 -0
- package/dist/components/catalyst-ui/typography/animated-glitch-text.tsx +188 -0
- package/dist/components/catalyst-ui/typography/b.tsx +23 -0
- package/dist/components/catalyst-ui/typography/blockquote.tsx +35 -0
- package/dist/components/catalyst-ui/typography/check-list.tsx +130 -0
- package/dist/components/catalyst-ui/typography/code.tsx +26 -0
- package/dist/components/catalyst-ui/typography/comic-text.tsx +68 -0
- package/dist/components/catalyst-ui/typography/display-code.tsx +148 -0
- package/dist/components/catalyst-ui/typography/div.tsx +20 -0
- package/dist/components/catalyst-ui/typography/dynamic-text.tsx +149 -0
- package/dist/components/catalyst-ui/typography/encrypted-text.tsx +168 -0
- package/dist/components/catalyst-ui/typography/glitch-text.tsx +174 -0
- package/dist/components/catalyst-ui/typography/h1.tsx +19 -0
- package/dist/components/catalyst-ui/typography/h2.tsx +19 -0
- package/dist/components/catalyst-ui/typography/h3.tsx +19 -0
- package/dist/components/catalyst-ui/typography/h4.tsx +19 -0
- package/dist/components/catalyst-ui/typography/h5.tsx +19 -0
- package/dist/components/catalyst-ui/typography/highlight-1.tsx +133 -0
- package/dist/components/catalyst-ui/typography/highlight.tsx +133 -0
- package/dist/components/catalyst-ui/typography/hyper-text.tsx +135 -0
- package/dist/components/catalyst-ui/typography/i.tsx +23 -0
- package/dist/components/catalyst-ui/typography/ib.tsx +24 -0
- package/dist/components/catalyst-ui/typography/index.ts +49 -0
- package/dist/components/catalyst-ui/typography/line-shadow-text.tsx +44 -0
- package/dist/components/catalyst-ui/typography/matrix-text.tsx +186 -0
- package/dist/components/catalyst-ui/typography/ordered-list.tsx +39 -0
- package/dist/components/catalyst-ui/typography/p.tsx +19 -0
- package/dist/components/catalyst-ui/typography/paragraph-scramble.tsx +122 -0
- package/dist/components/catalyst-ui/typography/pm.tsx +20 -0
- package/dist/components/catalyst-ui/typography/prose.tsx +90 -0
- package/dist/components/catalyst-ui/typography/scroll-text.tsx +181 -0
- package/dist/components/catalyst-ui/typography/shimmer-text.tsx +105 -0
- package/dist/components/catalyst-ui/typography/sliced-text.tsx +131 -0
- package/dist/components/catalyst-ui/typography/swoosh-text.tsx +111 -0
- package/dist/components/catalyst-ui/typography/text-animate.tsx +380 -0
- package/dist/components/catalyst-ui/typography/text-highlighter.tsx +101 -0
- package/dist/components/catalyst-ui/typography/text-morph.tsx +272 -0
- package/dist/components/catalyst-ui/typography/text-reveal.tsx +71 -0
- package/dist/components/catalyst-ui/typography/text-rewind.tsx +90 -0
- package/dist/components/catalyst-ui/typography/text-scramble.tsx +111 -0
- package/dist/components/catalyst-ui/typography/text.tsx +134 -0
- package/dist/components/catalyst-ui/typography/typewriter.tsx +153 -0
- package/dist/components/catalyst-ui/typography/typing-animation.tsx +172 -0
- package/dist/components/catalyst-ui/typography/typography.tsx +67 -0
- package/dist/components/catalyst-ui/typography/unordered-list.tsx +78 -0
- package/dist/components/catalyst-ui/typography/video-text.tsx +86 -0
- package/dist/components/catalyst-ui/typography/word-rotate.tsx +48 -0
- package/dist/components/catalyst-ui/utils/auth-provider.tsx +419 -0
- package/dist/components/catalyst-ui/utils/auth.github.callback.tsx +135 -0
- package/dist/components/catalyst-ui/utils/auth.github.tsx +17 -0
- package/dist/components/catalyst-ui/utils/auth.ts +34 -0
- package/dist/components/catalyst-ui/utils/auth_github.ts +48 -0
- package/dist/components/catalyst-ui/utils/auth_session.ts +70 -0
- package/dist/components/catalyst-ui/utils/batcher.tsx +50 -0
- package/dist/components/catalyst-ui/utils/build-package-json.js +89 -0
- package/dist/components/catalyst-ui/utils/cache-assets.ts +72 -0
- package/dist/components/catalyst-ui/utils/client-only-mermaid.tsx +82 -0
- package/dist/components/catalyst-ui/utils/client-only.tsx +27 -0
- package/dist/components/catalyst-ui/utils/cors.ts +178 -0
- package/dist/components/catalyst-ui/utils/crypto.ts +96 -0
- package/dist/components/catalyst-ui/utils/dbLocal.js +74 -0
- package/dist/components/catalyst-ui/utils/dbRemote.js +74 -0
- package/dist/components/catalyst-ui/utils/demo.tsx +499 -0
- package/dist/components/catalyst-ui/utils/dynamic-links.tsx +324 -0
- package/dist/components/catalyst-ui/utils/event-stream.ts +82 -0
- package/dist/components/catalyst-ui/utils/existing-search-params.tsx +78 -0
- package/dist/components/catalyst-ui/utils/external-scripts.tsx +144 -0
- package/dist/components/catalyst-ui/utils/fetcher-context.tsx +45 -0
- package/dist/components/catalyst-ui/utils/fetcher-type.tsx +82 -0
- package/dist/components/catalyst-ui/utils/filename-icon-map.tsx +176 -0
- package/dist/components/catalyst-ui/utils/flickering-grid.tsx +188 -0
- package/dist/components/catalyst-ui/utils/get-client-ip-address.ts +52 -0
- package/dist/components/catalyst-ui/utils/get-client-locales.ts +25 -0
- package/dist/components/catalyst-ui/utils/get-headers.ts +7 -0
- package/dist/components/catalyst-ui/utils/honeypot-react.tsx +480 -0
- package/dist/components/catalyst-ui/utils/honeypot.ts +138 -0
- package/dist/components/catalyst-ui/utils/index.ts +82 -0
- package/dist/components/catalyst-ui/utils/is-prefetch.ts +19 -0
- package/dist/components/catalyst-ui/utils/json-hash.ts +33 -0
- package/dist/components/catalyst-ui/utils/keyboard-shortcut.tsx +124 -0
- package/dist/components/catalyst-ui/utils/named-action.ts +50 -0
- package/dist/components/catalyst-ui/utils/navigation-context.tsx +71 -0
- package/dist/components/catalyst-ui/utils/options.ts +20 -0
- package/dist/components/catalyst-ui/utils/otp-auth-session.ts +14 -0
- package/dist/components/catalyst-ui/utils/otp-client-auth.tsx +30 -0
- package/dist/components/catalyst-ui/utils/otp-email.tsx +104 -0
- package/dist/components/catalyst-ui/utils/parse-accept-header.ts +21 -0
- package/dist/components/catalyst-ui/utils/preload-route-assets.ts +60 -0
- package/dist/components/catalyst-ui/utils/prisma.ts +93 -0
- package/dist/components/catalyst-ui/utils/promise.ts +55 -0
- package/dist/components/catalyst-ui/utils/qr-code-1-server.tsx +42 -0
- package/dist/components/catalyst-ui/utils/qr-code-1.tsx +87 -0
- package/dist/components/catalyst-ui/utils/redirect-back.ts +35 -0
- package/dist/components/catalyst-ui/utils/redirect-bad-requests.tsx +5 -0
- package/dist/components/catalyst-ui/utils/remix-auth.ts +35 -0
- package/dist/components/catalyst-ui/utils/remix_auth_session.ts +71 -0
- package/dist/components/catalyst-ui/utils/respond-to.ts +40 -0
- package/dist/components/catalyst-ui/utils/responses.ts +130 -0
- package/dist/components/catalyst-ui/utils/rolling-cookie.tsx +39 -0
- package/dist/components/catalyst-ui/utils/safe-redirect.ts +21 -0
- package/dist/components/catalyst-ui/utils/scaffolding.tsx +14 -0
- package/dist/components/catalyst-ui/utils/scroll-top.tsx +382 -0
- package/dist/components/catalyst-ui/utils/scroll-x.tsx +22 -0
- package/dist/components/catalyst-ui/utils/scroll-xy.tsx +22 -0
- package/dist/components/catalyst-ui/utils/scroll-y.tsx +14 -0
- package/dist/components/catalyst-ui/utils/scroll.tsx +32 -0
- package/dist/components/catalyst-ui/utils/sec-fetch-parser.tsx +119 -0
- package/dist/components/catalyst-ui/utils/sec-fetch-parsers.tsx +42 -0
- package/dist/components/catalyst-ui/utils/server-only.tsx +12 -0
- package/dist/components/catalyst-ui/utils/singleton.tsx +22 -0
- package/dist/components/catalyst-ui/utils/style-provider.tsx +292 -0
- package/dist/components/catalyst-ui/utils/tailwindcss.css.txt +134 -0
- package/dist/components/catalyst-ui/utils/typed-cookie.ts +90 -0
- package/dist/components/catalyst-ui/utils/typed-session.ts +115 -0
- package/dist/components/catalyst-ui/utils/user-based-access-rules.tsx +118 -0
- package/dist/components/catalyst-ui/x/index.ts +38 -0
- package/dist/components/catalyst-ui/x/input-x.tsx +2263 -0
- package/dist/components/catalyst-ui/x/nav-x.tsx +3213 -0
- package/dist/components/catalyst-ui/x/tracker-x.tsx +2 -12
- package/dist/index.js +116 -141
- package/package.json +1 -1
- /package/dist/{data.tsx → components/catalyst-ui/data.tsx} +0 -0
- /package/dist/components/catalyst-ui/x/{button-X.tsx → button-x.tsx} +0 -0
|
@@ -0,0 +1,3194 @@
|
|
|
1
|
+
import React, { createContext, useCallback, useContext, useEffect, useMemo, useReducer, useRef, useState } from "react"
|
|
2
|
+
import type { ButtonHTMLAttributes, HTMLAttributes, ReactNode } from "react"
|
|
3
|
+
import { cn, } from "~/components/catalyst-ui/utils";
|
|
4
|
+
import { Badge, BookOpenText, Braces, Code, Copy, Download, Eye, ListRestart, Maximize2, Minimize2, Minus, RotateCcw, RotateCw, Save, Square, SquareSplitHorizontal, TimerIcon, TimerReset, X, } from "lucide-react";
|
|
5
|
+
import { LiveProvider, LiveEditor, LivePreview, LiveError, } from "react-live";
|
|
6
|
+
import { ClientOnly, } from "~/utils/client-only";
|
|
7
|
+
import { Editor, } from "@monaco-editor/react";
|
|
8
|
+
import { Burger, Stripe, TextWrap, } from "@catalystsoftware/icons";
|
|
9
|
+
|
|
10
|
+
import { Alert, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, AnimatedNumber, BlobContext, Button, calendarDayButtonVariants, calendarNavButtonVariants, calendarVariants, Card, CircleMenu, damping, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, DynamicContainer, DynamicDescription, DynamicDiv, DynamicIsland, DynamicIslandProvider, DynamicIslandSizePresets, DynamicTitle, FeatureCarousel, filenameIconMap, FloatingPanel, FloatingPanelBody, FloatingPanelButton, FloatingPanelCloseButton, FloatingPanelContent, FloatingPanelFooter, FloatingPanelForm, FloatingPanelHeader, FloatingPanelLabel, FloatingPanelSubmitButton, FloatingPanelTextarea, FloatingPanelTrigger, GradientHeading, headingVariants, Input, IntroDisclosure, KBD, LightBoard, LoadingCarousel, LoadingPage, LogoCarousel, Modal, MorphSurface, Motion, MotionAlertDialog, MotionAlertDialogAction, MotionAlertDialogCancel, MotionAlertDialogContent, MotionAlertDialogDescription, MotionAlertDialogFooter, MotionAlertDialogHeader, MotionAlertDialogIcon, MotionAlertDialogOverlay, MotionAlertDialogPortal, MotionAlertDialogTitle, MotionAlertDialogTrigger, MotionCalendar, MotionCalendarDayButton, MotionCard, MotionCard1, MotionCard2, MotionCardContent, MotionCardFooter, MotionCardHeader, MotionCardTrigger, MotionCarousel, MotionChoicebox, MotionChoiceboxItem, MotionChoiceboxItemContent, MotionChoiceboxItemContentWrapper, MotionChoiceboxItemDescription, MotionChoiceboxItemHeader, MotionChoiceboxItemIndicator, MotionChoiceboxItemSubtitle, MotionChoiceboxItemTitle, MotionCombobox, MotionComboboxCommand, MotionComboboxEmpty, MotionComboboxGroup, MotionComboboxInput, MotionComboboxItem, MotionComboboxList, MotionCommand, MotionCommandDialog, MotionCommandEmpty, MotionCommandGroup, MotionCommandInput, MotionCommandItem, MotionCommandList, MotionCommandSeparator, MotionContent, MotionContext, MotionContextMenu, MotionContextMenuCheckboxItem, MotionContextMenuContent, MotionContextMenuGroup, MotionContextMenuItem, MotionContextMenuLabel, MotionContextMenuPortal, MotionContextMenuRadioGroup, MotionContextMenuRadioItem, MotionContextMenuSeparator, MotionContextMenuShortcut, MotionContextMenuSub, MotionContextMenuSubContent, MotionContextMenuSubTrigger, MotionContextMenuTrigger, MotionDatePicker, MotionDialog, MotionDrawer, MotionDrawer1, MotionDrawerAnimatedContent, MotionDrawerAnimatedWrapper, MotionDrawerButton, MotionDrawerClose, MotionDrawerContent, MotionDrawerHeader, MotionDrawerOverlay, MotionDrawerPortal, MotionDrawerSecondaryButton, MotionDrawerTrigger, MotionDrawerViewContent, MotionDropdownMenu, MotionDropdownMenuAnchor, MotionDropdownMenuCheckboxItem, MotionDropdownMenuContent, MotionDropdownMenuGroup, MotionDropdownMenuItem, MotionDropdownMenuLabel, MotionDropdownMenuPortal, MotionDropdownMenuRadioGroup, MotionDropdownMenuRadioItem, MotionDropdownMenuSeparator, MotionDropdownMenuShortcut, MotionDropdownMenuSub, MotionDropdownMenuSubContent, MotionDropdownMenuSubTrigger, MotionDropdownMenuTrigger, MotionFileUpload, MotionHoverCard, MotionImages, MotionNavigationMenu, MotionNavigationMenuContent, MotionNavigationMenuIndicator, MotionNavigationMenuItem, MotionNavigationMenuLink, MotionNavigationMenuList, MotionNavigationMenuTrigger, MotionNavigationMenuViewport, MotionPanel, MotionPopover, MotionScreen, MotionScreenBackground, MotionScreenContent, MotionScreenTrigger, MotionSearchBar, MotionSelect, MotionTabs, MotionTabsContent, MotionTabsList, MotionTabsTrigger, MotionToolbar, navigationMenuTriggerStyle, PopoverForm, PopoverFormClose, PopoverFormConfirm, PopoverFormContent, PopoverFormCutOutLeftIcon, PopoverFormCutOutRightIcon, PopoverFormDescription, PopoverFormFooter, PopoverFormHeader, PopoverFormSeparator, PopoverFormSuccess, PopoverFormTitle, PopoverFormTrigger, RadialMenu, Select, SelectContent, SelectItem, SelectTrigger, SelectValue, ShiftCard, ShiftCardContent, ShiftCardHeader, SIZE_PRESETS, SortableList, SortableListItem, SpinnerV4, stiffness, TextureButton, Timeline, TimelineContent, TimelineDate, TimelineHeader, TimelineIndicator, TimelineItem, TimelineSeparator, TimelineTitle, TimerDisplay, TimerRoot, TooltipButton, FileTree, FileTreeDragLine, FileTreeItem, FileTreeItemLabel, useCopyToClipboard, useDynamicIslandSize, useLocalStorageAutoSave, useMotion, useMotionDrawer, useScheduledAnimations, useTimer, } from "~/components/catalyst-ui";
|
|
11
|
+
|
|
12
|
+
/** import {
|
|
13
|
+
Choicebox,
|
|
14
|
+
|
|
15
|
+
APIDocsHeader,
|
|
16
|
+
AboutPageHeader,
|
|
17
|
+
AbsoluteCenter,
|
|
18
|
+
AbsoluteCenterDemo,
|
|
19
|
+
AbsoluteCenterUsage,
|
|
20
|
+
AdvancedQRCodeExamples,
|
|
21
|
+
Affix,
|
|
22
|
+
AffixDemo,
|
|
23
|
+
Alert,
|
|
24
|
+
AlertVariantDemo,
|
|
25
|
+
Anchor,
|
|
26
|
+
AnchorText,
|
|
27
|
+
Android,
|
|
28
|
+
AnimatedHero,
|
|
29
|
+
AnimatedHero1,
|
|
30
|
+
AnimatedList,
|
|
31
|
+
AnimatedListDemo,
|
|
32
|
+
AnimatedListItem,
|
|
33
|
+
Announcement,
|
|
34
|
+
AnnouncementTag,
|
|
35
|
+
AnnouncementTitle,
|
|
36
|
+
AppDSLeft,
|
|
37
|
+
AppShell,
|
|
38
|
+
AppShellDemo,
|
|
39
|
+
AppToggle,
|
|
40
|
+
AppleBlurImage,
|
|
41
|
+
AppleCard,
|
|
42
|
+
AppleCarousel,
|
|
43
|
+
AppleCarouselContext,
|
|
44
|
+
AppleDockDemo,
|
|
45
|
+
ArticleMediaObject,
|
|
46
|
+
Banner2,
|
|
47
|
+
BannerAction2,
|
|
48
|
+
BannerClose2,
|
|
49
|
+
BannerContext,
|
|
50
|
+
BannerDemo1,
|
|
51
|
+
BannerDemo2,
|
|
52
|
+
BannerDemo3,
|
|
53
|
+
BannerDemo4,
|
|
54
|
+
BannerDemo5,
|
|
55
|
+
BannerDemo6,
|
|
56
|
+
BannerDemo7,
|
|
57
|
+
BannerDemo8,
|
|
58
|
+
BannerIcon2,
|
|
59
|
+
BannerSection,
|
|
60
|
+
BannerTitle2,
|
|
61
|
+
Barcode,
|
|
62
|
+
BentoCard,
|
|
63
|
+
BentoCard2,
|
|
64
|
+
BentoGrid,
|
|
65
|
+
BentoGrid2,
|
|
66
|
+
BentoGridDemo,
|
|
67
|
+
BentoGridDemo1,
|
|
68
|
+
BentoGridItem,
|
|
69
|
+
BlogHeader,
|
|
70
|
+
BoxDemo,
|
|
71
|
+
BoxUsage,
|
|
72
|
+
ButtonGroupDemo,
|
|
73
|
+
CTADemo,
|
|
74
|
+
Callout,
|
|
75
|
+
CardBody,
|
|
76
|
+
CardBody1,
|
|
77
|
+
CardContainer1,
|
|
78
|
+
CardFlipDemo,
|
|
79
|
+
CardHeading,
|
|
80
|
+
CardHeadingWithDropdown,
|
|
81
|
+
CardHeadingWithTabs,
|
|
82
|
+
CardItem,
|
|
83
|
+
CardItem1,
|
|
84
|
+
CardStackDemo,
|
|
85
|
+
CaseStudyHeader,
|
|
86
|
+
CategoryMenuDemo,
|
|
87
|
+
Center,
|
|
88
|
+
CenterDemo,
|
|
89
|
+
CenterUsage,
|
|
90
|
+
Changelog,
|
|
91
|
+
ChangelogSection,
|
|
92
|
+
ChanglelogDemo,
|
|
93
|
+
Chat,
|
|
94
|
+
ChatBubble,
|
|
95
|
+
ChatBubbleDemo,
|
|
96
|
+
ChatUsage,
|
|
97
|
+
CheckableTag,
|
|
98
|
+
Col,
|
|
99
|
+
CollapsibleSectionDemo,
|
|
100
|
+
Comment,
|
|
101
|
+
CommentDemo,
|
|
102
|
+
CommentForm,
|
|
103
|
+
CommentList,
|
|
104
|
+
CommentMediaObject,
|
|
105
|
+
CommentUsage,
|
|
106
|
+
CommunityHeader,
|
|
107
|
+
ConfigSection,
|
|
108
|
+
ConfigSectionDemo,
|
|
109
|
+
Contact,
|
|
110
|
+
ContactPageDemo1,
|
|
111
|
+
ContactPageDemo2,
|
|
112
|
+
ContactPageHeader,
|
|
113
|
+
ContactSection,
|
|
114
|
+
ContainerBasicExample,
|
|
115
|
+
ContainerDemo,
|
|
116
|
+
ContainerSidebarLayoutExample,
|
|
117
|
+
Content,
|
|
118
|
+
Content1,
|
|
119
|
+
Content2,
|
|
120
|
+
Content3,
|
|
121
|
+
ContentLayout,
|
|
122
|
+
CreditCard,
|
|
123
|
+
CreditCardChip,
|
|
124
|
+
CreditCardFlipper,
|
|
125
|
+
CreditCardName,
|
|
126
|
+
CustomQRCode,
|
|
127
|
+
DataList,
|
|
128
|
+
DataListActionMenu,
|
|
129
|
+
DataListActions,
|
|
130
|
+
DataListDemo,
|
|
131
|
+
DataListItem,
|
|
132
|
+
DataListKeyValue,
|
|
133
|
+
DataListLabel,
|
|
134
|
+
DataListRow,
|
|
135
|
+
DataListUsage,
|
|
136
|
+
DataListValue,
|
|
137
|
+
DatePicker,
|
|
138
|
+
DescriptionList,
|
|
139
|
+
DescriptionListWithActions,
|
|
140
|
+
DescriptionListWithBadges,
|
|
141
|
+
DescriptionListsDemo1,
|
|
142
|
+
DescriptionListsDemo2,
|
|
143
|
+
DeviceMockup,
|
|
144
|
+
DeviceMockupDemo,
|
|
145
|
+
DeviceMockupUsage,
|
|
146
|
+
Diff,
|
|
147
|
+
DiffUsage,
|
|
148
|
+
Dimmable,
|
|
149
|
+
Dimmer,
|
|
150
|
+
DimmerDemo,
|
|
151
|
+
DocPageDemo,
|
|
152
|
+
Dock,
|
|
153
|
+
DotLoader,
|
|
154
|
+
DotLoading,
|
|
155
|
+
DynamicHeader,
|
|
156
|
+
EFabDemo,
|
|
157
|
+
EditProductPageDemo,
|
|
158
|
+
EmptyState,
|
|
159
|
+
EmptyStateDemo,
|
|
160
|
+
ErrorPage,
|
|
161
|
+
ErrorPageHeader,
|
|
162
|
+
EventPageHeader,
|
|
163
|
+
FAB,
|
|
164
|
+
FABDemo,
|
|
165
|
+
FABUsage,
|
|
166
|
+
FAQ,
|
|
167
|
+
FabDemo,
|
|
168
|
+
FabMenuDemo,
|
|
169
|
+
FeaturePageHeader,
|
|
170
|
+
Feed,
|
|
171
|
+
FeedDemo,
|
|
172
|
+
FeedEvent,
|
|
173
|
+
FeedsDemo,
|
|
174
|
+
Filters,
|
|
175
|
+
FixedMarker,
|
|
176
|
+
FixedMarkerUsage,
|
|
177
|
+
FlexboxGrid,
|
|
178
|
+
FlexboxGridBasicExample,
|
|
179
|
+
FlexboxGridDemo,
|
|
180
|
+
FlexboxGridItem,
|
|
181
|
+
FlexboxGridResponsiveExample,
|
|
182
|
+
FooterDemo1,
|
|
183
|
+
FooterDemo2,
|
|
184
|
+
FooterDemo3,
|
|
185
|
+
FooterDemo4,
|
|
186
|
+
FooterLayout,
|
|
187
|
+
For,
|
|
188
|
+
ForDemo,
|
|
189
|
+
FormLayoutDemo,
|
|
190
|
+
FourOFourPage,
|
|
191
|
+
GlowingEffectCardDemo,
|
|
192
|
+
Grid,
|
|
193
|
+
GridBasicExample,
|
|
194
|
+
GridDemo,
|
|
195
|
+
GridList,
|
|
196
|
+
GridListsDemo,
|
|
197
|
+
GridOffsetExample,
|
|
198
|
+
GridResponsiveExample,
|
|
199
|
+
Group,
|
|
200
|
+
Header2Demo1,
|
|
201
|
+
Header2Demo2,
|
|
202
|
+
Header2Demo3,
|
|
203
|
+
Header2Demo4,
|
|
204
|
+
Header2Demo5,
|
|
205
|
+
HeaderDemo,
|
|
206
|
+
HeaderLayout,
|
|
207
|
+
HeatMapCalendar,
|
|
208
|
+
HeatMapCalendarDemo,
|
|
209
|
+
HeroBadge,
|
|
210
|
+
HeroVideoDialog,
|
|
211
|
+
IframeDemo,
|
|
212
|
+
InPlaceDemo,
|
|
213
|
+
Indicator,
|
|
214
|
+
IndicatorDemo,
|
|
215
|
+
InfoMenu,
|
|
216
|
+
InputGroupDemo,
|
|
217
|
+
InsufficientPermissions,
|
|
218
|
+
Iphone15Pro,
|
|
219
|
+
KBDDemo,
|
|
220
|
+
Keypad,
|
|
221
|
+
LandingPageHeader,
|
|
222
|
+
Layout,
|
|
223
|
+
LayoutContainerDemo,
|
|
224
|
+
Lid,
|
|
225
|
+
LimelightNav,
|
|
226
|
+
List,
|
|
227
|
+
List1,
|
|
228
|
+
ListContainer,
|
|
229
|
+
ListContainerDemo,
|
|
230
|
+
ListGroup,
|
|
231
|
+
ListHeader,
|
|
232
|
+
ListItem,
|
|
233
|
+
ListItems,
|
|
234
|
+
ListProvider,
|
|
235
|
+
LoadErrorPage,
|
|
236
|
+
Loading,
|
|
237
|
+
LoadingPage,
|
|
238
|
+
LogoClouds666,
|
|
239
|
+
MacbookScroll,
|
|
240
|
+
MagicCard,
|
|
241
|
+
MediaObject,
|
|
242
|
+
MediaObjectsDemo,
|
|
243
|
+
MegaMenuDemo,
|
|
244
|
+
MegaMenuUsage,
|
|
245
|
+
Menu,
|
|
246
|
+
MessageDock,
|
|
247
|
+
Meter,
|
|
248
|
+
MeterDemo,
|
|
249
|
+
MinPricingPage,
|
|
250
|
+
MinPricingSectionDemo,
|
|
251
|
+
MultiColumnLayouts1,
|
|
252
|
+
MultiColumnLayouts2,
|
|
253
|
+
MultiColumnShell,
|
|
254
|
+
Navbar13,
|
|
255
|
+
Navbar14,
|
|
256
|
+
Navbar15,
|
|
257
|
+
Navbar16,
|
|
258
|
+
Navbar17,
|
|
259
|
+
Navbar19,
|
|
260
|
+
NewsletterHeader,
|
|
261
|
+
NoteSection,
|
|
262
|
+
NoteSectionDemo,
|
|
263
|
+
NotificationMediaObject,
|
|
264
|
+
NotificationMenuNavbar12,
|
|
265
|
+
NotificationMenuNavbar14,
|
|
266
|
+
NumberTicker,
|
|
267
|
+
OverlayQRCodeExample,
|
|
268
|
+
PageHeading,
|
|
269
|
+
PageHeadingDemo,
|
|
270
|
+
PageNav,
|
|
271
|
+
PaginationButton,
|
|
272
|
+
PaginationWrapper,
|
|
273
|
+
PanelDemo,
|
|
274
|
+
PanelMenuDemo,
|
|
275
|
+
PanelUsage,
|
|
276
|
+
Pill,
|
|
277
|
+
PillAvatar,
|
|
278
|
+
PillAvatarGroup,
|
|
279
|
+
PillButton,
|
|
280
|
+
PillDelta,
|
|
281
|
+
PillIcon,
|
|
282
|
+
PillIndicator,
|
|
283
|
+
PillStatus,
|
|
284
|
+
PinList,
|
|
285
|
+
PlaceholderCode,
|
|
286
|
+
PricingPageHeader,
|
|
287
|
+
PricingWithParams,
|
|
288
|
+
PricingWithToggle,
|
|
289
|
+
ProductPageHeader,
|
|
290
|
+
QRCodeDemo,
|
|
291
|
+
Rail,
|
|
292
|
+
RailUsage,
|
|
293
|
+
RemixLinkText,
|
|
294
|
+
RemixNavLinkText,
|
|
295
|
+
ReviewMediaObject,
|
|
296
|
+
Row,
|
|
297
|
+
Safari,
|
|
298
|
+
Section,
|
|
299
|
+
SectionDemo,
|
|
300
|
+
SectionHeading,
|
|
301
|
+
SectionHeadingWithAvatar,
|
|
302
|
+
SectionHeadingWithDropdown,
|
|
303
|
+
SettingsMenuNavbar14,
|
|
304
|
+
SettingsScreenStackedsDemo,
|
|
305
|
+
SidebarDemo,
|
|
306
|
+
SidebarDemoDynamic,
|
|
307
|
+
SidebarLayout,
|
|
308
|
+
SidebarNav,
|
|
309
|
+
SidebarSettingsDemo,
|
|
310
|
+
SidebarShell,
|
|
311
|
+
SimpleTwoTierPricing,
|
|
312
|
+
SmoothTabDemo,
|
|
313
|
+
SpinDemo,
|
|
314
|
+
Spinner,
|
|
315
|
+
SpinnerDemo,
|
|
316
|
+
SpinnerV1Demo,
|
|
317
|
+
SpinnerV2,
|
|
318
|
+
SpinnerV3,
|
|
319
|
+
SpinnerV4,
|
|
320
|
+
SpinnerV4Demo,
|
|
321
|
+
Spoiler,
|
|
322
|
+
SpoilerDemo,
|
|
323
|
+
Stack,
|
|
324
|
+
StackUsage,
|
|
325
|
+
StackedList,
|
|
326
|
+
StackedListsDemo,
|
|
327
|
+
StackedSettingsDemo,
|
|
328
|
+
StackedShell,
|
|
329
|
+
Stat,
|
|
330
|
+
StatDemo,
|
|
331
|
+
StatDescription,
|
|
332
|
+
StatIcon,
|
|
333
|
+
StatIndicator,
|
|
334
|
+
StatLabel,
|
|
335
|
+
StatProgress,
|
|
336
|
+
StatText,
|
|
337
|
+
StatUsage,
|
|
338
|
+
StatValue,
|
|
339
|
+
Stats,
|
|
340
|
+
Stats1,
|
|
341
|
+
StepNumber,
|
|
342
|
+
Steps,
|
|
343
|
+
StepsDemo,
|
|
344
|
+
Sticky,
|
|
345
|
+
StickyDemo,
|
|
346
|
+
StorageUsage,
|
|
347
|
+
SwissQRCodeExample,
|
|
348
|
+
TabMenu,
|
|
349
|
+
TabMenuDemo,
|
|
350
|
+
TabMenuUsage,
|
|
351
|
+
TabViewDemo,
|
|
352
|
+
TableOfContentsDemo,
|
|
353
|
+
TabsSettingsDemo,
|
|
354
|
+
Tag,
|
|
355
|
+
TagDemo,
|
|
356
|
+
Team,
|
|
357
|
+
TeamMemberMediaObject,
|
|
358
|
+
TeamSwitcher12,
|
|
359
|
+
TeamSwitcher16,
|
|
360
|
+
ThreeDCard,
|
|
361
|
+
ThreeDCardDemo1,
|
|
362
|
+
Ticker,
|
|
363
|
+
TickerIcon,
|
|
364
|
+
TickerPrice,
|
|
365
|
+
TickerPriceChange,
|
|
366
|
+
TickerSymbol,
|
|
367
|
+
Timeline2,
|
|
368
|
+
TimelineDemo66,
|
|
369
|
+
TimelineV1,
|
|
370
|
+
TimelineV1Demo,
|
|
371
|
+
ToastDemo,
|
|
372
|
+
ToastDemo1,
|
|
373
|
+
Toasty,
|
|
374
|
+
ToolbarDemo,
|
|
375
|
+
ToolbarDemoV1,
|
|
376
|
+
Tracker,
|
|
377
|
+
TrackerDemo,
|
|
378
|
+
Trackpad,
|
|
379
|
+
TransferList,
|
|
380
|
+
TransferListDemo,
|
|
381
|
+
TweetCardDemo,
|
|
382
|
+
UnauthorizedPage,
|
|
383
|
+
UnderConstructionPage,
|
|
384
|
+
UsageSection,
|
|
385
|
+
UsageSectionDemo,
|
|
386
|
+
UsageSectionNoDash,
|
|
387
|
+
UsageSectionNoDashDemo,
|
|
388
|
+
UserMenu12,
|
|
389
|
+
UserMenu13,
|
|
390
|
+
exportQRCode,
|
|
391
|
+
formatNumber,
|
|
392
|
+
styleConfigs,
|
|
393
|
+
useTickerContext,
|
|
394
|
+
useToasted,
|
|
395
|
+
validateQRCodeValue,
|
|
396
|
+
|
|
397
|
+
AgendaDaysToShow,
|
|
398
|
+
AgendaView,
|
|
399
|
+
AppointmentScheduler,
|
|
400
|
+
AppointmentSchedulerDemo,
|
|
401
|
+
CalendarBody,
|
|
402
|
+
CalendarDOB,
|
|
403
|
+
CalendarDate,
|
|
404
|
+
CalendarDatePagination,
|
|
405
|
+
CalendarDatePicker,
|
|
406
|
+
CalendarDndProvider,
|
|
407
|
+
CalendarHeader,
|
|
408
|
+
CalendarItem,
|
|
409
|
+
CalendarMonthPicker,
|
|
410
|
+
CalendarProvider,
|
|
411
|
+
CalendarYearPicker,
|
|
412
|
+
DatePicker,
|
|
413
|
+
DatePickerInput,
|
|
414
|
+
DateRangePicker,
|
|
415
|
+
DateRangePickerInput,
|
|
416
|
+
DayView,
|
|
417
|
+
DefaultEndHour,
|
|
418
|
+
DefaultStartHour,
|
|
419
|
+
DockedDatePickerDemo,
|
|
420
|
+
DraggableEvent,
|
|
421
|
+
DroppableCell,
|
|
422
|
+
EndHour,
|
|
423
|
+
EventCalendar,
|
|
424
|
+
EventDialog,
|
|
425
|
+
EventGap,
|
|
426
|
+
EventHeight,
|
|
427
|
+
EventItem,
|
|
428
|
+
EventsPopup,
|
|
429
|
+
MiniCalendar,
|
|
430
|
+
MiniCalendarDay,
|
|
431
|
+
MiniCalendarDays,
|
|
432
|
+
MiniCalendarNavigation,
|
|
433
|
+
ModalDateInputDemo,
|
|
434
|
+
MonthView,
|
|
435
|
+
PickWithInput,
|
|
436
|
+
PopoverDateInputDemo,
|
|
437
|
+
RangePicker,
|
|
438
|
+
RelativeTime,
|
|
439
|
+
RelativeTimeZone,
|
|
440
|
+
RelativeTimeZoneDate,
|
|
441
|
+
RelativeTimeZoneDisplay,
|
|
442
|
+
RelativeTimeZoneLabel,
|
|
443
|
+
SingleDay,
|
|
444
|
+
SingleDayMultiMonths,
|
|
445
|
+
StartHour,
|
|
446
|
+
TimePicker,
|
|
447
|
+
TimePickerDialDemo,
|
|
448
|
+
TimePickerInputDemo,
|
|
449
|
+
WeekCellsHeight,
|
|
450
|
+
WeekView,
|
|
451
|
+
addHoursToDate,
|
|
452
|
+
daysForLocale,
|
|
453
|
+
getAgendaEventsForDay,
|
|
454
|
+
getAllEventsForDay,
|
|
455
|
+
getBorderRadiusClasses,
|
|
456
|
+
getEventColorClasses,
|
|
457
|
+
getEventsForDay,
|
|
458
|
+
getSpanningEventsForDay,
|
|
459
|
+
isMultiDayEvent,
|
|
460
|
+
monthsForLocale,
|
|
461
|
+
sortEvents,
|
|
462
|
+
useCalendarDnd,
|
|
463
|
+
useCalendarMonth,
|
|
464
|
+
useCalendarYear,
|
|
465
|
+
useCurrentTimeIndicator1,
|
|
466
|
+
useEventVisibility1,
|
|
467
|
+
|
|
468
|
+
AddressCard,
|
|
469
|
+
CategoryFilters,
|
|
470
|
+
CategoryFiltersDemo,
|
|
471
|
+
CategoryPreviews,
|
|
472
|
+
CategoryPreviewsDemo,
|
|
473
|
+
CheckoutForm,
|
|
474
|
+
CheckoutFormDemo,
|
|
475
|
+
CreditCardForm,
|
|
476
|
+
CustomerSupport,
|
|
477
|
+
EcommerceCategory,
|
|
478
|
+
EditProductPageDemo,
|
|
479
|
+
FilterSidebar,
|
|
480
|
+
FormInput,
|
|
481
|
+
FormSelect,
|
|
482
|
+
Incentives,
|
|
483
|
+
IncentivesDemo,
|
|
484
|
+
OrderHistory,
|
|
485
|
+
OrderHistoryDemo,
|
|
486
|
+
OrderItem,
|
|
487
|
+
OrderStatusBadge,
|
|
488
|
+
OrderStatusTimeline,
|
|
489
|
+
OrderSummary,
|
|
490
|
+
OrderSummaryDemo,
|
|
491
|
+
OrderSummaryItem,
|
|
492
|
+
PaymentCard,
|
|
493
|
+
PaymentMethodSelector,
|
|
494
|
+
PricingPageDemo1,
|
|
495
|
+
PricingPageDemo2,
|
|
496
|
+
PricingPageDemo3,
|
|
497
|
+
PricingPageDemo4,
|
|
498
|
+
PricingPageDemo5,
|
|
499
|
+
PricingPagePages,
|
|
500
|
+
ProductCard,
|
|
501
|
+
ProductCardDemo,
|
|
502
|
+
ProductFeatures,
|
|
503
|
+
ProductFeaturesDemo,
|
|
504
|
+
ProductList,
|
|
505
|
+
ProductListDemo,
|
|
506
|
+
ProductOverview,
|
|
507
|
+
ProductOverviewsDemo,
|
|
508
|
+
ProductPage,
|
|
509
|
+
ProductQuickview,
|
|
510
|
+
ProductQuickviewDemo,
|
|
511
|
+
PromoSection,
|
|
512
|
+
PromoSectionDemo,
|
|
513
|
+
QuickViewModal,
|
|
514
|
+
ReviewItem,
|
|
515
|
+
ReviewsComponent,
|
|
516
|
+
ReviewsDemo,
|
|
517
|
+
ShoppingCart,
|
|
518
|
+
ShoppingCartDemo,
|
|
519
|
+
StarRating,
|
|
520
|
+
StoreNavigation,
|
|
521
|
+
StoreNavigationDemo,
|
|
522
|
+
StorefrontPages,
|
|
523
|
+
TrustBadges,
|
|
524
|
+
filterProducts,
|
|
525
|
+
renderStars,
|
|
526
|
+
|
|
527
|
+
ActionBar,
|
|
528
|
+
ActionBar1,
|
|
529
|
+
ActionBarBasicUsage,
|
|
530
|
+
ActionBarContent1,
|
|
531
|
+
ActionBarDemo1,
|
|
532
|
+
ActionBarDescription1,
|
|
533
|
+
ActionPanel,
|
|
534
|
+
ActionSearchBar,
|
|
535
|
+
ActionSearchBarDemo,
|
|
536
|
+
CVVInput,
|
|
537
|
+
CascadeTree,
|
|
538
|
+
Cascader,
|
|
539
|
+
CheckTree,
|
|
540
|
+
CheckTreeDemo,
|
|
541
|
+
CheckTreePicker,
|
|
542
|
+
CheckboxCard,
|
|
543
|
+
CheckboxV1,
|
|
544
|
+
ColorPicker1,
|
|
545
|
+
ColorPicker3,
|
|
546
|
+
ColorPickerAlpha3,
|
|
547
|
+
ColorPickerDemo,
|
|
548
|
+
ColorPickerEyeDropper3,
|
|
549
|
+
ColorPickerFormat3,
|
|
550
|
+
ColorPickerHue3,
|
|
551
|
+
ColorPickerOutput3,
|
|
552
|
+
ColorPickerSelection3,
|
|
553
|
+
CreditCardInput,
|
|
554
|
+
DebouncedInput,
|
|
555
|
+
ExampleComponent1,
|
|
556
|
+
ExpiryInput,
|
|
557
|
+
FancyArea,
|
|
558
|
+
FloatLabel,
|
|
559
|
+
FloatingLabel,
|
|
560
|
+
FormWizard,
|
|
561
|
+
FormWizardDefaultDemo,
|
|
562
|
+
FormWizardDemo,
|
|
563
|
+
FuseSearchInput,
|
|
564
|
+
InlineEdit,
|
|
565
|
+
InputMask,
|
|
566
|
+
JSONInputDemoPage,
|
|
567
|
+
Listbox,
|
|
568
|
+
MultiCascadeTree,
|
|
569
|
+
MultiCascadeTreeDemo,
|
|
570
|
+
MultiCascader,
|
|
571
|
+
MultiCascaderDemo,
|
|
572
|
+
MultiSelect,
|
|
573
|
+
PillsInput,
|
|
574
|
+
PinInputDemo,
|
|
575
|
+
Preview,
|
|
576
|
+
RadioTile,
|
|
577
|
+
RadioTileGroup,
|
|
578
|
+
Rating2,
|
|
579
|
+
SelectButton,
|
|
580
|
+
StepForm,
|
|
581
|
+
StepFormDefaultDemo,
|
|
582
|
+
StepFormDemo,
|
|
583
|
+
TagsInput1,
|
|
584
|
+
TreePicker,
|
|
585
|
+
TriStateCheckbox,
|
|
586
|
+
Write,
|
|
587
|
+
fuzzyFilter,
|
|
588
|
+
fuzzySort,
|
|
589
|
+
people,
|
|
590
|
+
useColorPicker3,
|
|
591
|
+
|
|
592
|
+
DirectionalAnimationsDemo,
|
|
593
|
+
DynamicContentTracker,
|
|
594
|
+
EventSourceProvider,
|
|
595
|
+
GetColorThemeDemo,
|
|
596
|
+
HooksDocumentation,
|
|
597
|
+
HooksDocumentationDemo,
|
|
598
|
+
LOCAL_STORAGE_KEY,
|
|
599
|
+
ManagedStream,
|
|
600
|
+
MouseEnterContext,
|
|
601
|
+
PrefetchPageAnchors,
|
|
602
|
+
Stream,
|
|
603
|
+
StreamBridge,
|
|
604
|
+
StreamDemo,
|
|
605
|
+
StreamEmitter,
|
|
606
|
+
StreamManagerProvider,
|
|
607
|
+
TailwindConverterExample,
|
|
608
|
+
UseApiKeyDemo,
|
|
609
|
+
UseAutoScrollDemo,
|
|
610
|
+
UseClientDemo,
|
|
611
|
+
UseCurrentTimeIndicatorDemo,
|
|
612
|
+
UseExportMarkdownDemo,
|
|
613
|
+
UseFileUploadDemo,
|
|
614
|
+
UseMutationObserverDemo,
|
|
615
|
+
UsePaginationDemo,
|
|
616
|
+
addSubscriber,
|
|
617
|
+
broadcastToSubscribers,
|
|
618
|
+
colorThemes,
|
|
619
|
+
colorWheel,
|
|
620
|
+
createStreamExtension,
|
|
621
|
+
formatBytes,
|
|
622
|
+
highlightMatches,
|
|
623
|
+
highlightMatchesDebounced,
|
|
624
|
+
isLinkEvent,
|
|
625
|
+
subscribeToIntent,
|
|
626
|
+
useApiKey,
|
|
627
|
+
useAsync,
|
|
628
|
+
useAutoScroll,
|
|
629
|
+
useBreakpoint,
|
|
630
|
+
useCharacterLimit,
|
|
631
|
+
useClickOutside,
|
|
632
|
+
useClient,
|
|
633
|
+
useColorTheme,
|
|
634
|
+
useCopyToClipboard,
|
|
635
|
+
useCounter,
|
|
636
|
+
useCurrentTimeIndicator,
|
|
637
|
+
useDebounce,
|
|
638
|
+
useDebounceFetcher,
|
|
639
|
+
useDebounceSubmit,
|
|
640
|
+
useDebouncedFuseSearch,
|
|
641
|
+
useDelegatedAnchors,
|
|
642
|
+
useDevList,
|
|
643
|
+
useEventListener,
|
|
644
|
+
useEventSource,
|
|
645
|
+
useEventVisibility,
|
|
646
|
+
useExpandable,
|
|
647
|
+
useExport,
|
|
648
|
+
useExportMarkdown,
|
|
649
|
+
useExternalScripts,
|
|
650
|
+
useFavicon,
|
|
651
|
+
useFetch,
|
|
652
|
+
useFileUpload,
|
|
653
|
+
useFocus,
|
|
654
|
+
useFocusWithin,
|
|
655
|
+
useForm,
|
|
656
|
+
useFuseSearch,
|
|
657
|
+
useFuzzySearch,
|
|
658
|
+
useGlobalLoadingState,
|
|
659
|
+
useGlobalNavigationState,
|
|
660
|
+
useGlobalPendingState,
|
|
661
|
+
useGlobalSubmittingState,
|
|
662
|
+
useHover,
|
|
663
|
+
useHydrated,
|
|
664
|
+
useIntersectionObserver,
|
|
665
|
+
useInterval,
|
|
666
|
+
useIsMobile,
|
|
667
|
+
useKeyPress,
|
|
668
|
+
useKeyboard,
|
|
669
|
+
useLocalStorage,
|
|
670
|
+
useLocalStorageAutoSave,
|
|
671
|
+
useLocales,
|
|
672
|
+
useLongPress,
|
|
673
|
+
useMarkdownBatches,
|
|
674
|
+
useMarkdownToHtml,
|
|
675
|
+
useMediaQuery,
|
|
676
|
+
useMountEffect,
|
|
677
|
+
useMounted,
|
|
678
|
+
useMouseEnter,
|
|
679
|
+
useMove,
|
|
680
|
+
useMutationObserver,
|
|
681
|
+
useOnWindowResize,
|
|
682
|
+
useOnlineStatus,
|
|
683
|
+
useOutsideClick,
|
|
684
|
+
useOverlayListener,
|
|
685
|
+
useOverlayScrollListener,
|
|
686
|
+
usePagination,
|
|
687
|
+
usePress,
|
|
688
|
+
usePrevious,
|
|
689
|
+
useResizeListener,
|
|
690
|
+
useScrollPosition,
|
|
691
|
+
useSecFetchParser,
|
|
692
|
+
useSessionStorage,
|
|
693
|
+
useShouldHydrate,
|
|
694
|
+
useSlideIn,
|
|
695
|
+
useSlideInAnimation,
|
|
696
|
+
useSlideInV1,
|
|
697
|
+
useSliderWithInput,
|
|
698
|
+
useSmoothScroll,
|
|
699
|
+
useStream,
|
|
700
|
+
useStreamManager,
|
|
701
|
+
useTailwindConverter,
|
|
702
|
+
useThrottle,
|
|
703
|
+
useTimeout,
|
|
704
|
+
useTimer,
|
|
705
|
+
useToggle,
|
|
706
|
+
useUnmountEffect,
|
|
707
|
+
useUpdateEffect,
|
|
708
|
+
useWindowSize,
|
|
709
|
+
|
|
710
|
+
Autocomplete,
|
|
711
|
+
Autocomplete1,
|
|
712
|
+
AutocompleteClear,
|
|
713
|
+
AutocompleteCollection,
|
|
714
|
+
AutocompleteDemo,
|
|
715
|
+
AutocompleteEmpty,
|
|
716
|
+
AutocompleteGroup,
|
|
717
|
+
AutocompleteGroupLabel,
|
|
718
|
+
AutocompleteInput,
|
|
719
|
+
AutocompleteItem,
|
|
720
|
+
AutocompleteList,
|
|
721
|
+
AutocompletePopup,
|
|
722
|
+
AutocompleteRow,
|
|
723
|
+
AutocompleteSeparator,
|
|
724
|
+
AutocompleteStatus,
|
|
725
|
+
AutocompleteTrigger,
|
|
726
|
+
AutocompleteValue,
|
|
727
|
+
CcInput,
|
|
728
|
+
EmailAddressInput,
|
|
729
|
+
InputWithCharactersLeft,
|
|
730
|
+
InputWithEndAddOn,
|
|
731
|
+
InputWithEndButton,
|
|
732
|
+
InputWithEndIconButton,
|
|
733
|
+
InputWithEndInlineAddOn,
|
|
734
|
+
InputWithEndInlineButton,
|
|
735
|
+
InputWithEndSelect,
|
|
736
|
+
InputWithInlineAddOns,
|
|
737
|
+
InputWithInlineStartAndEndAddOn,
|
|
738
|
+
InputWithInnerTags,
|
|
739
|
+
InputWithInsetLabel,
|
|
740
|
+
InputWithMask,
|
|
741
|
+
InputWithPasswordStrengthIndicator,
|
|
742
|
+
InputWithStartAddOn,
|
|
743
|
+
InputWithStartInlineAddOn,
|
|
744
|
+
InputWithStartSelect,
|
|
745
|
+
InputWithTags,
|
|
746
|
+
MotionsInput,
|
|
747
|
+
NumberInputWithChevrons,
|
|
748
|
+
NumberInputWithPlusMinusButtons,
|
|
749
|
+
SearchInputWithIconAndButton,
|
|
750
|
+
SearchInputWithKBD,
|
|
751
|
+
SearchInputWithLoader,
|
|
752
|
+
|
|
753
|
+
AIPromptDemo,
|
|
754
|
+
ActionSheetDemo,
|
|
755
|
+
ActivityCard,
|
|
756
|
+
ActivityCardDemo,
|
|
757
|
+
BackgroundPaths,
|
|
758
|
+
ColorSwatch,
|
|
759
|
+
ColorSwatchDemo,
|
|
760
|
+
ColorSwatchUsage,
|
|
761
|
+
CurrencyTransferDemo,
|
|
762
|
+
Cursor,
|
|
763
|
+
CursorPointer,
|
|
764
|
+
Draggable,
|
|
765
|
+
DraggableCard,
|
|
766
|
+
DraggableDemo,
|
|
767
|
+
DraggableDemo2,
|
|
768
|
+
Drawing,
|
|
769
|
+
DrawingDemo,
|
|
770
|
+
DrawingSurface,
|
|
771
|
+
DrawingToolbar,
|
|
772
|
+
DrawingV2,
|
|
773
|
+
DrawingV2Demo,
|
|
774
|
+
DropZone,
|
|
775
|
+
DropZoneDemo56,
|
|
776
|
+
Dropzone,
|
|
777
|
+
DropzoneContent,
|
|
778
|
+
DropzoneDemo,
|
|
779
|
+
DropzoneEmptyState,
|
|
780
|
+
ExcelExport,
|
|
781
|
+
ExternalDropZone,
|
|
782
|
+
ExternalDropZoneDemo,
|
|
783
|
+
FileSaver,
|
|
784
|
+
FileUploadDemo,
|
|
785
|
+
GanttAddFeatureHelper,
|
|
786
|
+
GanttColumn,
|
|
787
|
+
GanttColumns,
|
|
788
|
+
GanttContentHeader,
|
|
789
|
+
GanttCreateMarkerTrigger,
|
|
790
|
+
GanttFeatureDragHelper,
|
|
791
|
+
GanttFeatureItem,
|
|
792
|
+
GanttFeatureItemCard,
|
|
793
|
+
GanttFeatureList,
|
|
794
|
+
GanttFeatureListGroup,
|
|
795
|
+
GanttFeatureRow,
|
|
796
|
+
GanttHeader,
|
|
797
|
+
GanttMarker,
|
|
798
|
+
GanttProvider,
|
|
799
|
+
GanttSidebar,
|
|
800
|
+
GanttSidebarGroup,
|
|
801
|
+
GanttSidebarHeader,
|
|
802
|
+
GanttSidebarItem,
|
|
803
|
+
GanttTimeline,
|
|
804
|
+
GanttToday,
|
|
805
|
+
KanbanBoard,
|
|
806
|
+
KanbanCard,
|
|
807
|
+
KanbanCards,
|
|
808
|
+
KanbanHeader,
|
|
809
|
+
KanbanProvider,
|
|
810
|
+
Lens,
|
|
811
|
+
MouseEffectCard,
|
|
812
|
+
MouseEffectCardDemo,
|
|
813
|
+
PDFGenerator,
|
|
814
|
+
PDFGeneratorDemo,
|
|
815
|
+
PdfSignature,
|
|
816
|
+
PdfSignatureCompactDemo,
|
|
817
|
+
PdfSignatureDemo,
|
|
818
|
+
PdfSignatureViewer,
|
|
819
|
+
PdfSignatureViewerCompactDemo,
|
|
820
|
+
PdfSignatureViewerDemo,
|
|
821
|
+
PdfViewer,
|
|
822
|
+
PdfViewerDemo,
|
|
823
|
+
PdfViewerMinimalDemo,
|
|
824
|
+
PinPerspective,
|
|
825
|
+
Pointer,
|
|
826
|
+
Ripple,
|
|
827
|
+
RippleDemo,
|
|
828
|
+
ScrollVelocityContainer,
|
|
829
|
+
ScrollVelocityRow,
|
|
830
|
+
ScrollVelocityRowImpl,
|
|
831
|
+
ScrollVelocityRowLocal,
|
|
832
|
+
SignatureDemo,
|
|
833
|
+
SignatureDemo2,
|
|
834
|
+
SortableDemo,
|
|
835
|
+
Spreadsheet,
|
|
836
|
+
SpreadsheetDemo,
|
|
837
|
+
TaskBoardDemo,
|
|
838
|
+
Terminal,
|
|
839
|
+
TerminalDemo,
|
|
840
|
+
TerminalService,
|
|
841
|
+
ThreeDPin,
|
|
842
|
+
Tour,
|
|
843
|
+
Tour1,
|
|
844
|
+
TourDemo,
|
|
845
|
+
TourDemov1,
|
|
846
|
+
Transition,
|
|
847
|
+
TransitionDemo,
|
|
848
|
+
TreeViewDemo,
|
|
849
|
+
Virtualizer,
|
|
850
|
+
VirtualizerDemo,
|
|
851
|
+
VirtualizerUsage,
|
|
852
|
+
Watermark,
|
|
853
|
+
canDiscountsPOs,
|
|
854
|
+
canEditAnnouncements,
|
|
855
|
+
canEditInventory,
|
|
856
|
+
canEditLabelPrinter,
|
|
857
|
+
canEditPO,
|
|
858
|
+
canEditPromotions,
|
|
859
|
+
canEditSchedule,
|
|
860
|
+
canEditStore,
|
|
861
|
+
canEditTemplates,
|
|
862
|
+
canEditTickets,
|
|
863
|
+
canEditUsers,
|
|
864
|
+
canImportExport,
|
|
865
|
+
canViewReports,
|
|
866
|
+
checkPermission,
|
|
867
|
+
hasPermission,
|
|
868
|
+
isMgr,
|
|
869
|
+
isReceiving,
|
|
870
|
+
requirePermission,
|
|
871
|
+
transitions,
|
|
872
|
+
useGanttDragging,
|
|
873
|
+
useGanttScrollX,
|
|
874
|
+
wrap,
|
|
875
|
+
|
|
876
|
+
AnimatedTestimonials,
|
|
877
|
+
BentoGrids,
|
|
878
|
+
Blog,
|
|
879
|
+
BlogPost,
|
|
880
|
+
BlogPostEditor,
|
|
881
|
+
Cta,
|
|
882
|
+
FaqSection,
|
|
883
|
+
Feature,
|
|
884
|
+
FeatureCarousel,
|
|
885
|
+
FeatureCarouselDemo,
|
|
886
|
+
FeatureSection,
|
|
887
|
+
FeatureSectionDemo,
|
|
888
|
+
FeatureShowcase,
|
|
889
|
+
FeatureShowcaseDemo,
|
|
890
|
+
FlyoutMenuDemo,
|
|
891
|
+
Footer,
|
|
892
|
+
Header,
|
|
893
|
+
HeaderComponent,
|
|
894
|
+
Hero,
|
|
895
|
+
HeroSection,
|
|
896
|
+
HeroV2,
|
|
897
|
+
ImageSection,
|
|
898
|
+
ImageSectionDemo,
|
|
899
|
+
LandingPage,
|
|
900
|
+
LogoCloud,
|
|
901
|
+
Newsletter,
|
|
902
|
+
PageActions,
|
|
903
|
+
PageHeader,
|
|
904
|
+
|
|
905
|
+
AvatarCircles,
|
|
906
|
+
AvatarCirclesDemo,
|
|
907
|
+
BasicMapUsage,
|
|
908
|
+
BlurFade,
|
|
909
|
+
CarouselHero,
|
|
910
|
+
CarouselHeroDemo555,
|
|
911
|
+
Comparison,
|
|
912
|
+
ComparisonDemo,
|
|
913
|
+
ComparisonHandle,
|
|
914
|
+
ComparisonItem,
|
|
915
|
+
Cropper,
|
|
916
|
+
EmblaCarouselDemo,
|
|
917
|
+
Galleria,
|
|
918
|
+
Globe,
|
|
919
|
+
GlobeDemo,
|
|
920
|
+
GoogleMap,
|
|
921
|
+
IconCloud,
|
|
922
|
+
Image,
|
|
923
|
+
ImageCrop,
|
|
924
|
+
ImageCropApply,
|
|
925
|
+
ImageCropContent,
|
|
926
|
+
ImageCropReset,
|
|
927
|
+
ImageZoom,
|
|
928
|
+
InfiniteScroll,
|
|
929
|
+
InfiniteScrollDemo,
|
|
930
|
+
InfiniteSlider,
|
|
931
|
+
InteractiveIconCloud,
|
|
932
|
+
LogoDemo,
|
|
933
|
+
MapDemo,
|
|
934
|
+
MapWithCustomStyling,
|
|
935
|
+
Marquee,
|
|
936
|
+
Marquee1,
|
|
937
|
+
MarqueeDemo,
|
|
938
|
+
NextButton,
|
|
939
|
+
ParallaxScroll,
|
|
940
|
+
ParallaxScrollDemo,
|
|
941
|
+
PixelImage,
|
|
942
|
+
PrevButton,
|
|
943
|
+
SelectedSnapDisplay,
|
|
944
|
+
SimpleCarouselDemo,
|
|
945
|
+
ThreeDMarquee,
|
|
946
|
+
VideoPlayer,
|
|
947
|
+
VideoPlayerContent,
|
|
948
|
+
VideoPlayerControlBar,
|
|
949
|
+
VideoPlayerMuteButton,
|
|
950
|
+
VideoPlayerPlayButton,
|
|
951
|
+
VideoPlayerSeekBackwardButton,
|
|
952
|
+
VideoPlayerSeekForwardButton,
|
|
953
|
+
VideoPlayerTimeDisplay,
|
|
954
|
+
VideoPlayerTimeRange,
|
|
955
|
+
VideoPlayerVolumeRange,
|
|
956
|
+
cloudProps,
|
|
957
|
+
renderCustomIcon,
|
|
958
|
+
usePrevNextButtons,
|
|
959
|
+
useSelectedSnapDisplay,
|
|
960
|
+
|
|
961
|
+
AnimatedNumber,
|
|
962
|
+
AnimatedNumberExamples,
|
|
963
|
+
BackgroundMedia,
|
|
964
|
+
BgMediaDemo,
|
|
965
|
+
ColorPicker,
|
|
966
|
+
ColorPickerDemo,
|
|
967
|
+
ColorWheel,
|
|
968
|
+
ColorWheelDemo,
|
|
969
|
+
DirectionAwareTabs,
|
|
970
|
+
DirectionAwareTabsDemo,
|
|
971
|
+
DynamicIslandDemo,
|
|
972
|
+
FadeIn,
|
|
973
|
+
FadeInStagger,
|
|
974
|
+
FloatingPanel,
|
|
975
|
+
FloatingPanelBody,
|
|
976
|
+
FloatingPanelButton,
|
|
977
|
+
FloatingPanelCloseButton,
|
|
978
|
+
FloatingPanelContent,
|
|
979
|
+
FloatingPanelExamples,
|
|
980
|
+
FloatingPanelFooter,
|
|
981
|
+
FloatingPanelForm,
|
|
982
|
+
FloatingPanelHeader,
|
|
983
|
+
FloatingPanelLabel,
|
|
984
|
+
FloatingPanelSubmitButton,
|
|
985
|
+
FloatingPanelTextarea,
|
|
986
|
+
FloatingPanelTrigger,
|
|
987
|
+
GradientHeadingDemo,
|
|
988
|
+
IntroDisclosure,
|
|
989
|
+
IntroDisclosureDemo,
|
|
990
|
+
IntroDisclosureTab,
|
|
991
|
+
IntroDisclosureTrigger,
|
|
992
|
+
LightBoardDemo,
|
|
993
|
+
LogoCarouselDemo,
|
|
994
|
+
MonacoStorageManagerDemo,
|
|
995
|
+
MorphSurface,
|
|
996
|
+
MotionAccordion,
|
|
997
|
+
MotionAccordionContent,
|
|
998
|
+
MotionAccordionDemo,
|
|
999
|
+
MotionAccordionItem,
|
|
1000
|
+
MotionAccordionTrigger,
|
|
1001
|
+
MotionAlertDialogDemo,
|
|
1002
|
+
MotionBentoGrid,
|
|
1003
|
+
MotionBentoGridCard,
|
|
1004
|
+
MotionBentoGridDemo,
|
|
1005
|
+
MotionButton,
|
|
1006
|
+
MotionButtonContent,
|
|
1007
|
+
MotionButtonDemo,
|
|
1008
|
+
MotionButtonTrigger,
|
|
1009
|
+
MotionCalendarDemo,
|
|
1010
|
+
MotionCard1,
|
|
1011
|
+
MotionCard1Back,
|
|
1012
|
+
MotionCard1BackAction,
|
|
1013
|
+
MotionCard1BackActionIcon,
|
|
1014
|
+
MotionCard1BackActionText,
|
|
1015
|
+
MotionCard1BackContent,
|
|
1016
|
+
MotionCard1BackDescription,
|
|
1017
|
+
MotionCard1BackFeature,
|
|
1018
|
+
MotionCard1BackFooter,
|
|
1019
|
+
MotionCard1BackHeader,
|
|
1020
|
+
MotionCard1BackTitle,
|
|
1021
|
+
MotionCard1Demo,
|
|
1022
|
+
MotionCard1Front,
|
|
1023
|
+
MotionCard1FrontDescription,
|
|
1024
|
+
MotionCard1FrontHeader,
|
|
1025
|
+
MotionCard1FrontIcon,
|
|
1026
|
+
MotionCard1FrontTitle,
|
|
1027
|
+
MotionCard2,
|
|
1028
|
+
MotionCard2Action,
|
|
1029
|
+
MotionCard2Content,
|
|
1030
|
+
MotionCard2Demo,
|
|
1031
|
+
MotionCard2Description,
|
|
1032
|
+
MotionCard2Footer,
|
|
1033
|
+
MotionCard2Header,
|
|
1034
|
+
MotionCard2Title,
|
|
1035
|
+
MotionCard3Body,
|
|
1036
|
+
MotionCard3Container,
|
|
1037
|
+
MotionCard3Item,
|
|
1038
|
+
MotionCardDemo,
|
|
1039
|
+
MotionChoicebox,
|
|
1040
|
+
MotionChoiceboxDemo,
|
|
1041
|
+
MotionChoiceboxItem,
|
|
1042
|
+
MotionChoiceboxItemContent,
|
|
1043
|
+
MotionChoiceboxItemContentWrapper,
|
|
1044
|
+
MotionChoiceboxItemDescription,
|
|
1045
|
+
MotionChoiceboxItemHeader,
|
|
1046
|
+
MotionChoiceboxItemIndicator,
|
|
1047
|
+
MotionChoiceboxItemSubtitle,
|
|
1048
|
+
MotionChoiceboxItemTitle,
|
|
1049
|
+
MotionCombobox,
|
|
1050
|
+
MotionComboboxCommand,
|
|
1051
|
+
MotionComboboxDemo,
|
|
1052
|
+
MotionComboboxEmpty,
|
|
1053
|
+
MotionComboboxGroup,
|
|
1054
|
+
MotionComboboxInput,
|
|
1055
|
+
MotionComboboxItem,
|
|
1056
|
+
MotionComboboxList,
|
|
1057
|
+
MotionCommand,
|
|
1058
|
+
MotionCommandDemo,
|
|
1059
|
+
MotionCommandDialog,
|
|
1060
|
+
MotionCommandEmpty,
|
|
1061
|
+
MotionCommandGroup,
|
|
1062
|
+
MotionCommandInput,
|
|
1063
|
+
MotionCommandItem,
|
|
1064
|
+
MotionCommandList,
|
|
1065
|
+
MotionCommandSeparator,
|
|
1066
|
+
MotionContextMenuDemo,
|
|
1067
|
+
MotionDatePicker,
|
|
1068
|
+
MotionDatePickerDemo,
|
|
1069
|
+
MotionDialog,
|
|
1070
|
+
MotionDialogClose,
|
|
1071
|
+
MotionDialogContent,
|
|
1072
|
+
MotionDialogDemo,
|
|
1073
|
+
MotionDialogDescription,
|
|
1074
|
+
MotionDialogFooter,
|
|
1075
|
+
MotionDialogHeader,
|
|
1076
|
+
MotionDialogOverlay,
|
|
1077
|
+
MotionDialogPortal,
|
|
1078
|
+
MotionDialogTitle,
|
|
1079
|
+
MotionDialogTrigger,
|
|
1080
|
+
MotionDrawer1,
|
|
1081
|
+
MotionDropdown1,
|
|
1082
|
+
MotionDropdown1Content,
|
|
1083
|
+
MotionDropdown1Demo,
|
|
1084
|
+
MotionDropdown1Group,
|
|
1085
|
+
MotionDropdown1Item,
|
|
1086
|
+
MotionDropdown1ItemWithIcon,
|
|
1087
|
+
MotionDropdown1Label,
|
|
1088
|
+
MotionDropdown1Portal,
|
|
1089
|
+
MotionDropdown1ProfileTrigger,
|
|
1090
|
+
MotionDropdown1Separator,
|
|
1091
|
+
MotionDropdown1Shortcut,
|
|
1092
|
+
MotionDropdown1Sub,
|
|
1093
|
+
MotionDropdown1SubContent,
|
|
1094
|
+
MotionDropdown1SubTrigger,
|
|
1095
|
+
MotionDropdown1Trigger,
|
|
1096
|
+
MotionDropdownMenuDemo,
|
|
1097
|
+
MotionFileUpload,
|
|
1098
|
+
MotionFileUploadDemo,
|
|
1099
|
+
MotionHoverCard,
|
|
1100
|
+
MotionHoverCardContent,
|
|
1101
|
+
MotionHoverCardDemo,
|
|
1102
|
+
MotionHoverCardTrigger,
|
|
1103
|
+
MotionList,
|
|
1104
|
+
MotionListDemo,
|
|
1105
|
+
MotionListItem,
|
|
1106
|
+
MotionNavigationMenuDemo,
|
|
1107
|
+
MotionPanel,
|
|
1108
|
+
MotionPopover,
|
|
1109
|
+
MotionPopoverAnchor,
|
|
1110
|
+
MotionPopoverClose,
|
|
1111
|
+
MotionPopoverContent,
|
|
1112
|
+
MotionPopoverDemo,
|
|
1113
|
+
MotionPopoverDescription,
|
|
1114
|
+
MotionPopoverFooter,
|
|
1115
|
+
MotionPopoverHeader,
|
|
1116
|
+
MotionPopoverTitle,
|
|
1117
|
+
MotionPopoverTrigger,
|
|
1118
|
+
MotionRadioCardItem,
|
|
1119
|
+
MotionRadioCards,
|
|
1120
|
+
MotionRating,
|
|
1121
|
+
MotionRatingDemo,
|
|
1122
|
+
MotionScreen,
|
|
1123
|
+
MotionScreenBackground,
|
|
1124
|
+
MotionScreenContent,
|
|
1125
|
+
MotionScreenDemo,
|
|
1126
|
+
MotionScreenTrigger,
|
|
1127
|
+
MotionSearchBar,
|
|
1128
|
+
MotionSearchBarDemo,
|
|
1129
|
+
MotionSearchBarEmpty,
|
|
1130
|
+
MotionSearchBarGroup,
|
|
1131
|
+
MotionSearchBarInput,
|
|
1132
|
+
MotionSearchBarItem,
|
|
1133
|
+
MotionSearchBarList,
|
|
1134
|
+
MotionSearchBarSeparator,
|
|
1135
|
+
MotionSearchBarShortcut,
|
|
1136
|
+
MotionSelectDemo,
|
|
1137
|
+
MotionTabs,
|
|
1138
|
+
MotionTabsContent,
|
|
1139
|
+
MotionTabsDemo,
|
|
1140
|
+
MotionTabsList,
|
|
1141
|
+
MotionTabsTrigger,
|
|
1142
|
+
MotionToast,
|
|
1143
|
+
MotionToastDemo,
|
|
1144
|
+
MotionToolbar,
|
|
1145
|
+
MotionToolbarTabs,
|
|
1146
|
+
MotionToolbarTabsCard,
|
|
1147
|
+
MotionToolbarTabsContent,
|
|
1148
|
+
MotionToolbarTabsDemo,
|
|
1149
|
+
MotionToolbarTabsList,
|
|
1150
|
+
MotionToolbarTabsTrigger,
|
|
1151
|
+
MotionToolbarTabsWaveform,
|
|
1152
|
+
MotionTooltip,
|
|
1153
|
+
MotionTooltipContent,
|
|
1154
|
+
MotionTooltipDemo,
|
|
1155
|
+
MotionTooltipProvider,
|
|
1156
|
+
MotionTooltipTrigger,
|
|
1157
|
+
PopoverForm,
|
|
1158
|
+
PopoverFormClose,
|
|
1159
|
+
PopoverFormConfirm,
|
|
1160
|
+
PopoverFormContent,
|
|
1161
|
+
PopoverFormCutOutRightIcon,
|
|
1162
|
+
PopoverFormDescription,
|
|
1163
|
+
PopoverFormFooter,
|
|
1164
|
+
PopoverFormHeader,
|
|
1165
|
+
PopoverFormSuccess,
|
|
1166
|
+
PopoverFormTitle,
|
|
1167
|
+
PopoverFormTrigger,
|
|
1168
|
+
RadialMenu,
|
|
1169
|
+
ResizableMotionPanel,
|
|
1170
|
+
ShiftCardDemo,
|
|
1171
|
+
SortableListDemo,
|
|
1172
|
+
StripeBgGuides,
|
|
1173
|
+
StripeBgGuidesDemo,
|
|
1174
|
+
TextureButtonDemo,
|
|
1175
|
+
Timer,
|
|
1176
|
+
TimerDisplay,
|
|
1177
|
+
TimerExamples,
|
|
1178
|
+
TimerIcon,
|
|
1179
|
+
TimerRoot,
|
|
1180
|
+
VideoPowerButton,
|
|
1181
|
+
WeatherForecastCard,
|
|
1182
|
+
YouTubePlayer,
|
|
1183
|
+
YouTubeVideoPlayerDemo,
|
|
1184
|
+
useCustomMeasure,
|
|
1185
|
+
useMotionToast,
|
|
1186
|
+
AlertModal,
|
|
1187
|
+
AlertModalIntegrations1,
|
|
1188
|
+
AnimatedTooltip,
|
|
1189
|
+
ConfirmPopup,
|
|
1190
|
+
ConfirmPopupDemo,
|
|
1191
|
+
ConfirmationModal,
|
|
1192
|
+
ConfirmationModalIntegrations1,
|
|
1193
|
+
DialogSidebar,
|
|
1194
|
+
DialogStack,
|
|
1195
|
+
DialogStackBody,
|
|
1196
|
+
DialogStackContent,
|
|
1197
|
+
DialogStackDemo,
|
|
1198
|
+
DialogStackDescription,
|
|
1199
|
+
DialogStackFooter,
|
|
1200
|
+
DialogStackHeader,
|
|
1201
|
+
DialogStackNext,
|
|
1202
|
+
DialogStackOverlay,
|
|
1203
|
+
DialogStackPrevious,
|
|
1204
|
+
DialogStackTitle,
|
|
1205
|
+
DialogStackTrigger,
|
|
1206
|
+
LOCAL_SIDEBAR_STORAGE_KEY,
|
|
1207
|
+
LoadingOverlay,
|
|
1208
|
+
LoadingOverlayDemo,
|
|
1209
|
+
LoadingOverlayUsage,
|
|
1210
|
+
Modal,
|
|
1211
|
+
ModalDemolIntegrations1,
|
|
1212
|
+
ModalIntegrations1,
|
|
1213
|
+
ModalIntegrationsDemo,
|
|
1214
|
+
OverlayPanel,
|
|
1215
|
+
OverlayPanelDemo,
|
|
1216
|
+
Popconfirm,
|
|
1217
|
+
PopconfirmDemo,
|
|
1218
|
+
SIDEBAR_COOKIE_MAX_AGE,
|
|
1219
|
+
SIDEBAR_COOKIE_NAME,
|
|
1220
|
+
SIDEBAR_KEYBOARD_SHORTCUT,
|
|
1221
|
+
SIDEBAR_WIDTH,
|
|
1222
|
+
SIDEBAR_WIDTH_ICON,
|
|
1223
|
+
SIDEBAR_WIDTH_MOBILE,
|
|
1224
|
+
SidebarMenuButtonLoading,
|
|
1225
|
+
SidebarMenuItemLoading,
|
|
1226
|
+
THEME_OPTIONS,
|
|
1227
|
+
THEME_VERSION,
|
|
1228
|
+
TextureCardDemo,
|
|
1229
|
+
TransitionablePortal,
|
|
1230
|
+
sidebarProps,
|
|
1231
|
+
|
|
1232
|
+
AIInputSearchDemo,
|
|
1233
|
+
AIPromptInputDemo,
|
|
1234
|
+
AIVoiceDemo,
|
|
1235
|
+
BarsLoader,
|
|
1236
|
+
ChainOfThought,
|
|
1237
|
+
ChainOfThoughtContent,
|
|
1238
|
+
ChainOfThoughtItem,
|
|
1239
|
+
ChainOfThoughtStep,
|
|
1240
|
+
ChainOfThoughtTrigger,
|
|
1241
|
+
ChatBasic,
|
|
1242
|
+
ChatContent,
|
|
1243
|
+
ChatSidebar,
|
|
1244
|
+
ChatWithCustomScroll,
|
|
1245
|
+
CircularLoader,
|
|
1246
|
+
ClassicLoader,
|
|
1247
|
+
CodeBlockBasic,
|
|
1248
|
+
CodeBlockCSS,
|
|
1249
|
+
CodeBlockNord,
|
|
1250
|
+
CodeBlockPython,
|
|
1251
|
+
CodeBlockThemed,
|
|
1252
|
+
CodeBlockWithHeader,
|
|
1253
|
+
ConversationPromptInput,
|
|
1254
|
+
ConversationWithAvatars,
|
|
1255
|
+
CustomFileUpload,
|
|
1256
|
+
DotsLoader,
|
|
1257
|
+
FeedbackBar,
|
|
1258
|
+
FeedbackBarBasic,
|
|
1259
|
+
FullChatApp,
|
|
1260
|
+
InputByok,
|
|
1261
|
+
MessageComponent,
|
|
1262
|
+
PromptImage,
|
|
1263
|
+
PromptInputWithSuggestions,
|
|
1264
|
+
PulseDotLoader,
|
|
1265
|
+
PulseLoader,
|
|
1266
|
+
ScrollButton,
|
|
1267
|
+
Source,
|
|
1268
|
+
SourceContent,
|
|
1269
|
+
SourceTrigger,
|
|
1270
|
+
Steps,
|
|
1271
|
+
StepsBar,
|
|
1272
|
+
StepsContent,
|
|
1273
|
+
StepsItem,
|
|
1274
|
+
StepsTrigger,
|
|
1275
|
+
SystemMessage,
|
|
1276
|
+
TerminalLoader,
|
|
1277
|
+
TextBlinkLoader,
|
|
1278
|
+
TextDotsLoader,
|
|
1279
|
+
TextShimmerLoader,
|
|
1280
|
+
TypingLoader,
|
|
1281
|
+
WaveLoader,
|
|
1282
|
+
getOpenAIApiKey,
|
|
1283
|
+
getProviderIcon,
|
|
1284
|
+
parseAIResponseFiles,
|
|
1285
|
+
prePromptsObject,
|
|
1286
|
+
providerInfo,
|
|
1287
|
+
providerModels,
|
|
1288
|
+
snippetsObject,
|
|
1289
|
+
CatalystTable,
|
|
1290
|
+
CatalystTableColumnHeader,
|
|
1291
|
+
CatalystTableColumnHeaderSimple,
|
|
1292
|
+
CatalystTableDraggableHeader,
|
|
1293
|
+
CatalystTableFacetedFilter,
|
|
1294
|
+
CatalystTableRowActions,
|
|
1295
|
+
CleanSmallTable,
|
|
1296
|
+
CleanSmallTableDemo,
|
|
1297
|
+
DataTableColumnHeaderst,
|
|
1298
|
+
DataTableFacetedFilterST,
|
|
1299
|
+
DataTableRowActionsST,
|
|
1300
|
+
TableBody1,
|
|
1301
|
+
TableCell1,
|
|
1302
|
+
TableColumnHeader1,
|
|
1303
|
+
TableContext,
|
|
1304
|
+
TableHead1,
|
|
1305
|
+
TableHeader1,
|
|
1306
|
+
TableHeaderGroup1,
|
|
1307
|
+
TableProvider1,
|
|
1308
|
+
TableRow1,
|
|
1309
|
+
|
|
1310
|
+
AnimatedGlitchTextDemo,
|
|
1311
|
+
B,
|
|
1312
|
+
Blockquote,
|
|
1313
|
+
BlockquoteDemo,
|
|
1314
|
+
BoldDemo,
|
|
1315
|
+
CODE,
|
|
1316
|
+
Checklist,
|
|
1317
|
+
ChecklistDemo,
|
|
1318
|
+
ChecklistWithState,
|
|
1319
|
+
CodeDemo,
|
|
1320
|
+
ComicText,
|
|
1321
|
+
ComicTextDemo,
|
|
1322
|
+
DIV,
|
|
1323
|
+
DIVDemo,
|
|
1324
|
+
DisplayCode,
|
|
1325
|
+
DisplayCodeDemoTypography,
|
|
1326
|
+
DynamicTextDemo,
|
|
1327
|
+
EncryptedText,
|
|
1328
|
+
EncryptedTextDemoSecond,
|
|
1329
|
+
GlitchTextDemo,
|
|
1330
|
+
H1,
|
|
1331
|
+
H1Demo,
|
|
1332
|
+
H2,
|
|
1333
|
+
H2Demo,
|
|
1334
|
+
H3,
|
|
1335
|
+
H3Demo,
|
|
1336
|
+
H4,
|
|
1337
|
+
H4Demo,
|
|
1338
|
+
H5,
|
|
1339
|
+
H5Demo,
|
|
1340
|
+
HIGHLIGHT,
|
|
1341
|
+
HighlightDemo,
|
|
1342
|
+
HighlightUsage,
|
|
1343
|
+
HighlightV1,
|
|
1344
|
+
HighlightV1Demo,
|
|
1345
|
+
HighlightV1Usage,
|
|
1346
|
+
HyperText,
|
|
1347
|
+
I,
|
|
1348
|
+
IB,
|
|
1349
|
+
ItalicBDemo,
|
|
1350
|
+
ItalicDemo,
|
|
1351
|
+
LineShadowText,
|
|
1352
|
+
MatrixTextDemo,
|
|
1353
|
+
OrderedList,
|
|
1354
|
+
OrderedListDemo,
|
|
1355
|
+
P,
|
|
1356
|
+
PDemo,
|
|
1357
|
+
PM,
|
|
1358
|
+
PMDemo,
|
|
1359
|
+
PROSE,
|
|
1360
|
+
ParaScramble,
|
|
1361
|
+
ProseUsage,
|
|
1362
|
+
ScrollTextDemo,
|
|
1363
|
+
ShimmerTextDemo,
|
|
1364
|
+
SlicedTextDemo,
|
|
1365
|
+
StepNumber,
|
|
1366
|
+
SwooshTextDemo,
|
|
1367
|
+
TextAnimate,
|
|
1368
|
+
TextBlockquote,
|
|
1369
|
+
TextCode,
|
|
1370
|
+
TextHighlighter,
|
|
1371
|
+
TextLarge,
|
|
1372
|
+
TextLead,
|
|
1373
|
+
TextMorph,
|
|
1374
|
+
TextMorphDemo,
|
|
1375
|
+
TextMorphMinimalDemo,
|
|
1376
|
+
TextParagraph,
|
|
1377
|
+
TextPre,
|
|
1378
|
+
TextReveal,
|
|
1379
|
+
TextRewind,
|
|
1380
|
+
TextRewindDemo,
|
|
1381
|
+
TextScramble,
|
|
1382
|
+
TextSpan,
|
|
1383
|
+
TextSubtle,
|
|
1384
|
+
TypewriterDemo,
|
|
1385
|
+
TypingAnimation,
|
|
1386
|
+
TypographyExample,
|
|
1387
|
+
UnorderedList,
|
|
1388
|
+
UnorderedListDemo,
|
|
1389
|
+
VideoText,
|
|
1390
|
+
WordRotate,
|
|
1391
|
+
|
|
1392
|
+
AppWithStyleProvider,
|
|
1393
|
+
AuthProviderDemo,
|
|
1394
|
+
BasicAuthMiddleware,
|
|
1395
|
+
BatcherMiddleware,
|
|
1396
|
+
CORS,
|
|
1397
|
+
CORSMiddleware,
|
|
1398
|
+
CardDiv,
|
|
1399
|
+
ClientOnly,
|
|
1400
|
+
ContainerDiv,
|
|
1401
|
+
ContextStorageMiddleware,
|
|
1402
|
+
DeferredCard,
|
|
1403
|
+
DeferredContent,
|
|
1404
|
+
DeferredImage,
|
|
1405
|
+
DeferredTable,
|
|
1406
|
+
Document,
|
|
1407
|
+
DynamicLinks,
|
|
1408
|
+
DynamicLinksDemo,
|
|
1409
|
+
DynamicStyleDemo,
|
|
1410
|
+
ExistingSearchParams,
|
|
1411
|
+
ExternalScript,
|
|
1412
|
+
ExternalScripts,
|
|
1413
|
+
FetcherProvider,
|
|
1414
|
+
FlexBetween,
|
|
1415
|
+
FlexCenter,
|
|
1416
|
+
FlexCol,
|
|
1417
|
+
FlickeringGrid,
|
|
1418
|
+
HeaderDiv,
|
|
1419
|
+
Honeypot,
|
|
1420
|
+
HoneypotInputs,
|
|
1421
|
+
HoneypotMiddleware,
|
|
1422
|
+
HoneypotProvider,
|
|
1423
|
+
ImageDiv,
|
|
1424
|
+
JWKAuthMiddleware,
|
|
1425
|
+
KeyboardShortcut,
|
|
1426
|
+
KeyboardShortcutsProvider,
|
|
1427
|
+
LoginForm,
|
|
1428
|
+
MermaidDiagram,
|
|
1429
|
+
MiddlewareDemo,
|
|
1430
|
+
NavigationContextDemo,
|
|
1431
|
+
NavigationProvider,
|
|
1432
|
+
PageDiv,
|
|
1433
|
+
ParagraphDiv,
|
|
1434
|
+
QRCode,
|
|
1435
|
+
RemixUtilitiesDemo,
|
|
1436
|
+
RequestIDMiddleware,
|
|
1437
|
+
RollingCookie,
|
|
1438
|
+
Scaffolding,
|
|
1439
|
+
Scroll,
|
|
1440
|
+
ScrollTop,
|
|
1441
|
+
ScrollTopDemo,
|
|
1442
|
+
ScrollX,
|
|
1443
|
+
ScrollXY,
|
|
1444
|
+
ScrollY,
|
|
1445
|
+
SecFetchDemo,
|
|
1446
|
+
SecFetchParsersDemo,
|
|
1447
|
+
SecureHeadersMiddleware,
|
|
1448
|
+
ServerOnly,
|
|
1449
|
+
ServerTimingMiddleware,
|
|
1450
|
+
SingletonMiddleware,
|
|
1451
|
+
SpamError,
|
|
1452
|
+
StyleProvider,
|
|
1453
|
+
SubtitleP,
|
|
1454
|
+
TimeoutError,
|
|
1455
|
+
TimerDemo,
|
|
1456
|
+
TitleH1,
|
|
1457
|
+
TitleH2,
|
|
1458
|
+
TitleH3,
|
|
1459
|
+
TitleH4,
|
|
1460
|
+
ValidationError,
|
|
1461
|
+
WithCookieMiddleware,
|
|
1462
|
+
authSessionStorage,
|
|
1463
|
+
authenticator,
|
|
1464
|
+
clientSession,
|
|
1465
|
+
cn,
|
|
1466
|
+
createStyleHook,
|
|
1467
|
+
createTypedCookie,
|
|
1468
|
+
createTypedSessionStorage,
|
|
1469
|
+
customerSession,
|
|
1470
|
+
dateOptions,
|
|
1471
|
+
eventStream,
|
|
1472
|
+
filenameIconMap,
|
|
1473
|
+
focusInput,
|
|
1474
|
+
focusRing,
|
|
1475
|
+
getClientIPAddress,
|
|
1476
|
+
getClientLocales,
|
|
1477
|
+
getFetcherType,
|
|
1478
|
+
getGitHubCredentials,
|
|
1479
|
+
getHeaders,
|
|
1480
|
+
getIconByExt,
|
|
1481
|
+
getIconByLanguage,
|
|
1482
|
+
getInitials,
|
|
1483
|
+
getStyle,
|
|
1484
|
+
handle,
|
|
1485
|
+
hasErrorInput,
|
|
1486
|
+
html,
|
|
1487
|
+
image,
|
|
1488
|
+
includeUserAll,
|
|
1489
|
+
isPrefetch,
|
|
1490
|
+
isTypedCookie,
|
|
1491
|
+
isTypedSession,
|
|
1492
|
+
javascript,
|
|
1493
|
+
languageIconMap,
|
|
1494
|
+
meta,
|
|
1495
|
+
notModified,
|
|
1496
|
+
options,
|
|
1497
|
+
parseAcceptHeader,
|
|
1498
|
+
pdf,
|
|
1499
|
+
preloadLinkedAssets,
|
|
1500
|
+
preloadModuleAssets,
|
|
1501
|
+
preloadRouteAssets,
|
|
1502
|
+
randomString,
|
|
1503
|
+
redirectBack,
|
|
1504
|
+
redirectSessionStorage,
|
|
1505
|
+
respondTo,
|
|
1506
|
+
safeRedirect,
|
|
1507
|
+
sidebarSessionStorage,
|
|
1508
|
+
styled,
|
|
1509
|
+
stylesheet,
|
|
1510
|
+
timeout,
|
|
1511
|
+
txt,
|
|
1512
|
+
useCardStyle,
|
|
1513
|
+
useContainerStyle,
|
|
1514
|
+
useFetcherContext,
|
|
1515
|
+
useFetcherType,
|
|
1516
|
+
useGridStyle,
|
|
1517
|
+
useHeaderStyle,
|
|
1518
|
+
useImageStyle,
|
|
1519
|
+
useKeyboardShortcut,
|
|
1520
|
+
useMarginStyle,
|
|
1521
|
+
useNavigationContext,
|
|
1522
|
+
usePaddingStyle,
|
|
1523
|
+
usePageStyle,
|
|
1524
|
+
useParagraphStyle,
|
|
1525
|
+
useSecFetchParser,
|
|
1526
|
+
useSecFetchParsers,
|
|
1527
|
+
useSpacingStyle,
|
|
1528
|
+
useStyleUpdater,
|
|
1529
|
+
useStyles,
|
|
1530
|
+
xml,
|
|
1531
|
+
IconX,
|
|
1532
|
+
LoaderX,
|
|
1533
|
+
NavX,
|
|
1534
|
+
PageHeaderDescription,
|
|
1535
|
+
PageHeaderFunction,
|
|
1536
|
+
PageHeaderHeading,
|
|
1537
|
+
PricingCardCarousel,
|
|
1538
|
+
PricingCardSingle,
|
|
1539
|
+
PricingCardSingleDemo,
|
|
1540
|
+
PricingCarousel,
|
|
1541
|
+
PricingCarousel2Demo,
|
|
1542
|
+
PricingCarouselDemo,
|
|
1543
|
+
PricingFeatureComp,
|
|
1544
|
+
PricingSimple,
|
|
1545
|
+
PricingThreeTiers,
|
|
1546
|
+
PricingTwoTiers,
|
|
1547
|
+
PricingUsageExamples,
|
|
1548
|
+
SectionHeadingsDemo1,
|
|
1549
|
+
SectionHeadingsDemo2,
|
|
1550
|
+
SectionTitle,
|
|
1551
|
+
SectionTitleDemo,
|
|
1552
|
+
TestimonialCarousel,
|
|
1553
|
+
TestimonialCarouselDemo,
|
|
1554
|
+
Testimonials,
|
|
1555
|
+
XYCarousel,
|
|
1556
|
+
usePricingFilter,
|
|
1557
|
+
useProductFilter,
|
|
1558
|
+
CommandV2,
|
|
1559
|
+
CommandV2Demo,
|
|
1560
|
+
CommandWCombobox,
|
|
1561
|
+
NestedCommand,
|
|
1562
|
+
NestedCommandDialog,
|
|
1563
|
+
NestedCommandDialogDemo,
|
|
1564
|
+
ChoiceboxDemo,
|
|
1565
|
+
ChoiceboxItem,
|
|
1566
|
+
ChoiceboxItemContent,
|
|
1567
|
+
ChoiceboxItemDescription,
|
|
1568
|
+
ChoiceboxItemHeader,
|
|
1569
|
+
ChoiceboxItemIndicator,
|
|
1570
|
+
ChoiceboxItemSubtitle,
|
|
1571
|
+
ChoiceboxItemTitle,
|
|
1572
|
+
Combobox0Demo,
|
|
1573
|
+
Combobox2,
|
|
1574
|
+
ComboboxContent2,
|
|
1575
|
+
ComboboxCreateNew2,
|
|
1576
|
+
ComboboxEmpty2,
|
|
1577
|
+
ComboboxGroup2,
|
|
1578
|
+
ComboboxInput2,
|
|
1579
|
+
ComboboxItem2,
|
|
1580
|
+
ComboboxList2,
|
|
1581
|
+
ComboboxSeparator2,
|
|
1582
|
+
ComboboxTrigger2,
|
|
1583
|
+
ComboboxV1,
|
|
1584
|
+
EmojiPicker,
|
|
1585
|
+
EmojiPickerExample,
|
|
1586
|
+
FilterCombobox,
|
|
1587
|
+
NestedCombobox,
|
|
1588
|
+
AnimatedThemeToggler,
|
|
1589
|
+
AnimatedThemeTogglerDemo,
|
|
1590
|
+
AttractButtonDemo,
|
|
1591
|
+
ScrollToTop,
|
|
1592
|
+
BgAnimateButtonsDemo,
|
|
1593
|
+
Burger,
|
|
1594
|
+
BurgerButton,
|
|
1595
|
+
BurgerNavigation,
|
|
1596
|
+
CommandButtonDemo,
|
|
1597
|
+
ConnectedButtonGroupDemo,
|
|
1598
|
+
ExportFile,
|
|
1599
|
+
FloatButton,
|
|
1600
|
+
FloatButtonGroup,
|
|
1601
|
+
FormButton,
|
|
1602
|
+
HoldButtonDemo,
|
|
1603
|
+
ParticleButtonDemo,
|
|
1604
|
+
Rate,
|
|
1605
|
+
Rating1,
|
|
1606
|
+
RatingButton,
|
|
1607
|
+
RatingButton1,
|
|
1608
|
+
ShimmerButton,
|
|
1609
|
+
SlideTextButtonDemo,
|
|
1610
|
+
SocialButtonDemo,
|
|
1611
|
+
SwitchButtonDemo,
|
|
1612
|
+
TextRevealButton,
|
|
1613
|
+
ThemeSwitcher,
|
|
1614
|
+
ThemeToggleButton,
|
|
1615
|
+
ToggleButton,
|
|
1616
|
+
TooltipButton,
|
|
1617
|
+
useThemeTransition,
|
|
1618
|
+
AnimatedBeam,
|
|
1619
|
+
BackgroundGradient,
|
|
1620
|
+
BackgroundPaths,
|
|
1621
|
+
DotPattern,
|
|
1622
|
+
DotPatternDemo,
|
|
1623
|
+
DottedGlowBackground,
|
|
1624
|
+
DottedGlowBackgroundDemo,
|
|
1625
|
+
DottedMap,
|
|
1626
|
+
DottedMapDemo,
|
|
1627
|
+
DynamicRain,
|
|
1628
|
+
FlickeringGrid,
|
|
1629
|
+
FlickeringGridDemo,
|
|
1630
|
+
InteractiveGridPattern,
|
|
1631
|
+
LampContainer,
|
|
1632
|
+
LampDemo,
|
|
1633
|
+
MatrixRain,
|
|
1634
|
+
OrbitingCircles,
|
|
1635
|
+
Particles,
|
|
1636
|
+
ProgressiveBlur,
|
|
1637
|
+
RetroGrid,
|
|
1638
|
+
SparklesCore,
|
|
1639
|
+
Vortex,
|
|
1640
|
+
AvailableChartColors,
|
|
1641
|
+
chartColors,
|
|
1642
|
+
constructCategoryColors,
|
|
1643
|
+
getColorClassName,
|
|
1644
|
+
getYAxisDomain,
|
|
1645
|
+
hasOnlyOneValueForKey,
|
|
1646
|
+
AllProps,
|
|
1647
|
+
AnimatedSpan,
|
|
1648
|
+
BasicAllProps,
|
|
1649
|
+
Code,
|
|
1650
|
+
CodeBlockSectionDemo,
|
|
1651
|
+
CodeComparison,
|
|
1652
|
+
CodeComparison1,
|
|
1653
|
+
CodeComparison1Demo,
|
|
1654
|
+
CodeComparisonDemo,
|
|
1655
|
+
CodeEditorDemo,
|
|
1656
|
+
CodeSectionDemo,
|
|
1657
|
+
CssSection,
|
|
1658
|
+
CssSectionDemo,
|
|
1659
|
+
DisplayGithubInstall,
|
|
1660
|
+
DisplayGithubInstallDemo,
|
|
1661
|
+
DisplayInstallCode,
|
|
1662
|
+
DisplayInstallCodeArray,
|
|
1663
|
+
DisplayInstallCodeArrayDemo,
|
|
1664
|
+
DisplayInstallCodeDemo,
|
|
1665
|
+
DisplayTerminalCodeDemo,
|
|
1666
|
+
Html,
|
|
1667
|
+
JsonSection,
|
|
1668
|
+
JsonSectionDemo,
|
|
1669
|
+
PropsCode,
|
|
1670
|
+
PropsCopyButton,
|
|
1671
|
+
PropsCopyButtonGroup,
|
|
1672
|
+
SandboxCodeEditor,
|
|
1673
|
+
SandboxCodeEditor2,
|
|
1674
|
+
SandboxConsole,
|
|
1675
|
+
SandboxConsole2,
|
|
1676
|
+
SandboxDemo2,
|
|
1677
|
+
SandboxFileExplorer,
|
|
1678
|
+
SandboxFileExplorer2,
|
|
1679
|
+
SandboxIsClient,
|
|
1680
|
+
SandboxLayout,
|
|
1681
|
+
SandboxPreview,
|
|
1682
|
+
SandboxPreview2,
|
|
1683
|
+
SandboxProvider,
|
|
1684
|
+
SandboxTabs,
|
|
1685
|
+
SandboxTabs2,
|
|
1686
|
+
SandboxTabsContent,
|
|
1687
|
+
SandboxTabsContent2,
|
|
1688
|
+
SandboxTabsList,
|
|
1689
|
+
SandboxTabsList2,
|
|
1690
|
+
SandboxTabsTrigger,
|
|
1691
|
+
SandboxTabsTrigger2,
|
|
1692
|
+
Terminal,
|
|
1693
|
+
TerminalCode,
|
|
1694
|
+
TerminalDemo,
|
|
1695
|
+
TsxSection,
|
|
1696
|
+
TsxSectionDemo,
|
|
1697
|
+
TypingAnimation,
|
|
1698
|
+
} from "~/components/catalyst-ui"; */
|
|
1699
|
+
|
|
1700
|
+
|
|
1701
|
+
|
|
1702
|
+
|
|
1703
|
+
const FONT_SIZES = [8, 10, 12, 14, 16, 18, 20, 24, 26, 28, 30, 32, 34, 36, 38, 44]
|
|
1704
|
+
|
|
1705
|
+
// Create scope for React Live
|
|
1706
|
+
const reactLiveScope = {
|
|
1707
|
+
React, useState, useEffect, useRef, useCallback, useMemo, useContext, useReducer,
|
|
1708
|
+
|
|
1709
|
+
|
|
1710
|
+
useTimer, PopoverForm, PopoverFormTrigger, PopoverFormContent, PopoverFormHeader, PopoverFormTitle, PopoverFormDescription, PopoverFormFooter, MotionTabs, MotionTabsList, MotionTabsTrigger, MotionTabsContent, PopoverFormClose, PopoverFormConfirm, PopoverFormSuccess, PopoverFormSeparator, PopoverFormCutOutLeftIcon, PopoverFormCutOutRightIcon, TimerRoot, MotionCommand, MotionCommandInput,MotionCommandList, MotionCarousel, MotionCommandEmpty, MotionCommandGroup, MotionComboboxCommand, MotionComboboxInput, MotionComboboxList, LogoCarousel, LoadingCarousel, LightBoard, GradientHeading, headingVariants, IntroDisclosure, FeatureCarousel, FloatingPanel, FloatingPanelTrigger, FloatingPanelContent, FloatingPanelForm, FloatingPanelLabel, FloatingPanelTextarea, FloatingPanelHeader, FloatingPanelBody, FloatingPanelFooter, FloatingPanelCloseButton, FloatingPanelSubmitButton, FloatingPanelButton, MotionChoicebox, MotionChoiceboxItem, MotionChoiceboxItemHeader, MotionChoiceboxItemTitle, MotionChoiceboxItemSubtitle, MotionChoiceboxItemDescription, MotionChoiceboxItemContentWrapper, MotionChoiceboxItemContent, MotionChoiceboxItemIndicator, MotionComboboxEmpty, MotionComboboxGroup, MotionComboboxItem, MotionCombobox, MotionCommandItem, MotionCommandSeparator, MotionCommandDialog, TimerIcon, TimerDisplay, TextureButton, MotionDatePicker, SortableListItem, ShiftCardContent, MotionToolbar, AnimatedNumber, MotionSearchBar, MotionScreen, MotionScreenTrigger, MotionScreenContent, MotionScreenBackground, MorphSurface, Motion, MotionAlertDialog, MotionAlertDialogPortal, MotionAlertDialogOverlay, DynamicContainer, DynamicTitle, DynamicDescription, DynamicIsland, SIZE_PRESETS, stiffness, DynamicDiv, damping, DynamicIslandSizePresets, BlobContext, useDynamicIslandSize, useScheduledAnimations, DynamicIslandProvider, MotionAlertDialogTrigger, MotionAlertDialogContent, MotionAlertDialogHeader, MotionAlertDialogFooter, MotionAlertDialogTitle, MotionAlertDialogDescription, MotionAlertDialogAction, MotionAlertDialogCancel, MotionAlertDialogIcon, MotionCalendar, MotionCalendarDayButton, calendarVariants, calendarDayButtonVariants, calendarNavButtonVariants, useMotion, MotionCard, MotionContent, MotionContext, MotionCardTrigger, MotionCardHeader, MotionCardContent, MotionCardFooter, MotionNavigationMenu, MotionNavigationMenuList, MotionNavigationMenuItem, MotionNavigationMenuContent, MotionNavigationMenuTrigger, MotionNavigationMenuLink, MotionNavigationMenuIndicator, MotionNavigationMenuViewport, navigationMenuTriggerStyle, SortableList, ShiftCard, ShiftCardHeader, MotionDropdownMenu, MotionDropdownMenuPortal, MotionDropdownMenuTrigger, MotionDropdownMenuContent, MotionDropdownMenuGroup, MotionDropdownMenuLabel, MotionDropdownMenuItem, MotionDropdownMenuCheckboxItem, MotionDropdownMenuRadioGroup, MotionDropdownMenuRadioItem, MotionDropdownMenuSeparator, MotionDropdownMenuShortcut, MotionDropdownMenuSub, MotionDropdownMenuSubTrigger, MotionDropdownMenuSubContent, MotionDropdownMenuAnchor, MotionDrawer, MotionDrawerTrigger, MotionDrawerPortal, MotionDrawerOverlay, MotionDrawerContent, MotionDrawerAnimatedWrapper, MotionDrawerAnimatedContent, MotionDrawerClose, MotionDrawerHeader, MotionDrawerButton, MotionDrawerSecondaryButton, MotionDrawerViewContent, useMotionDrawer, MotionContextMenu, MotionContextMenuTrigger, MotionContextMenuContent, MotionContextMenuItem, MotionContextMenuCheckboxItem, MotionContextMenuRadioItem, MotionContextMenuLabel, MotionContextMenuSeparator, MotionContextMenuShortcut, MotionContextMenuGroup, MotionContextMenuPortal, MotionContextMenuSub, MotionContextMenuSubContent, MotionContextMenuSubTrigger, MotionContextMenuRadioGroup, Button, Card, Input, Badge, Burger, KBD, Select, SelectContent, SelectItem, SelectTrigger, SelectValue, TooltipButton, Modal, Alert, SpinnerV4, useCopyToClipboard, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuSeparator, DropdownMenuCheckboxItem, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, cn, CircleMenu,
|
|
1711
|
+
|
|
1712
|
+
|
|
1713
|
+
}
|
|
1714
|
+
export type SandboxTabsContextValue = {
|
|
1715
|
+
selectedTab: string | undefined
|
|
1716
|
+
setSelectedTab: (value: string) => void
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1719
|
+
const SandboxTabsContext = createContext<SandboxTabsContextValue | undefined>(undefined)
|
|
1720
|
+
|
|
1721
|
+
function useSandboxTabsContext() {
|
|
1722
|
+
const context = useContext(SandboxTabsContext)
|
|
1723
|
+
if (!context) {
|
|
1724
|
+
throw new Error("SandboxTabs2 components must be used within a SandboxTabs2")
|
|
1725
|
+
}
|
|
1726
|
+
return context
|
|
1727
|
+
}
|
|
1728
|
+
|
|
1729
|
+
export type SandboxTabsProps = HTMLAttributes<HTMLDivElement> & {
|
|
1730
|
+
defaultValue?: string
|
|
1731
|
+
value?: string
|
|
1732
|
+
onValueChange?: (value: string) => void
|
|
1733
|
+
}
|
|
1734
|
+
|
|
1735
|
+
export function SandboxTabs2({ className, defaultValue, value, onValueChange, ...props }: SandboxTabsProps): ReactNode {
|
|
1736
|
+
const [selectedTab, setSelectedTabState] = useState(value || defaultValue)
|
|
1737
|
+
|
|
1738
|
+
useEffect(() => {
|
|
1739
|
+
if (value !== undefined) {
|
|
1740
|
+
setSelectedTabState(value)
|
|
1741
|
+
}
|
|
1742
|
+
}, [value])
|
|
1743
|
+
|
|
1744
|
+
const setSelectedTab = useCallback(
|
|
1745
|
+
(newValue: string) => {
|
|
1746
|
+
if (value === undefined) {
|
|
1747
|
+
setSelectedTabState(newValue)
|
|
1748
|
+
}
|
|
1749
|
+
onValueChange?.(newValue)
|
|
1750
|
+
},
|
|
1751
|
+
[value, onValueChange]
|
|
1752
|
+
)
|
|
1753
|
+
|
|
1754
|
+
return (
|
|
1755
|
+
<SandboxTabsContext.Provider value={{ selectedTab, setSelectedTab }}>
|
|
1756
|
+
<div
|
|
1757
|
+
className={cn(
|
|
1758
|
+
"group relative flex size-full flex-col overflow-hidden rounded-lg bg-background text-sm",
|
|
1759
|
+
// " border ",
|
|
1760
|
+
className
|
|
1761
|
+
)}
|
|
1762
|
+
{...props}
|
|
1763
|
+
data-selected={selectedTab}
|
|
1764
|
+
>
|
|
1765
|
+
{props.children}
|
|
1766
|
+
</div>
|
|
1767
|
+
</SandboxTabsContext.Provider>
|
|
1768
|
+
)
|
|
1769
|
+
}
|
|
1770
|
+
|
|
1771
|
+
export type SandboxTabsListProps = HTMLAttributes<HTMLDivElement>
|
|
1772
|
+
|
|
1773
|
+
export function SandboxTabsList2({ className, ...props }: SandboxTabsListProps): ReactNode {
|
|
1774
|
+
return (
|
|
1775
|
+
<div
|
|
1776
|
+
className={cn(
|
|
1777
|
+
// 'inline-flex w-full shrink-0 items-center justify-start border-b bg-secondary p-2 text-muted-foreground',
|
|
1778
|
+
"mb-px flex gap-x-6 border-b border-border whitespace-nowrap justify-start bg-transparent rounded-[0xp]",
|
|
1779
|
+
className
|
|
1780
|
+
)}
|
|
1781
|
+
role="tablist"
|
|
1782
|
+
{...props}
|
|
1783
|
+
/>
|
|
1784
|
+
)
|
|
1785
|
+
}
|
|
1786
|
+
|
|
1787
|
+
export type SandboxTabsTriggerProps = Omit<ButtonHTMLAttributes<HTMLButtonElement>, "onClick"> & {
|
|
1788
|
+
value: string
|
|
1789
|
+
}
|
|
1790
|
+
|
|
1791
|
+
export function SandboxTabsTrigger2({ className, value, ...props }: SandboxTabsTriggerProps): ReactNode {
|
|
1792
|
+
const { selectedTab, setSelectedTab } = useSandboxTabsContext()
|
|
1793
|
+
|
|
1794
|
+
const handleClick = useCallback(() => {
|
|
1795
|
+
setSelectedTab(value)
|
|
1796
|
+
}, [setSelectedTab, value])
|
|
1797
|
+
|
|
1798
|
+
return (
|
|
1799
|
+
<button
|
|
1800
|
+
aria-selected={selectedTab === value}
|
|
1801
|
+
className={cn(
|
|
1802
|
+
// 'inline-flex items-center justify-center gap-1.5 whitespace-nowrap rounded-md px-3 py-1 font-medium text-sm ring-offset-background transition-all focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 data-[state=active]:bg-background data-[state=active]:text-foreground data-[state=active]:shadow',
|
|
1803
|
+
"-mb-px flex border-b pb-2 text-sm/7 font-medium border-transparent",
|
|
1804
|
+
"text-muted-foreground hover:border-border/25",
|
|
1805
|
+
"data-[state=active]:border-[#2563eb] data-[state=active]:text-foreground rounded-[0xp]",
|
|
1806
|
+
className
|
|
1807
|
+
)}
|
|
1808
|
+
data-state={selectedTab === value ? "active" : "inactive"}
|
|
1809
|
+
onClick={handleClick}
|
|
1810
|
+
role="tab"
|
|
1811
|
+
{...props}
|
|
1812
|
+
/>
|
|
1813
|
+
)
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1816
|
+
export type SandboxTabsContentProps = HTMLAttributes<HTMLDivElement> & {
|
|
1817
|
+
value: string
|
|
1818
|
+
}
|
|
1819
|
+
|
|
1820
|
+
export function SandboxTabsContent2({ className, value, ...props }: SandboxTabsContentProps): ReactNode {
|
|
1821
|
+
const { selectedTab } = useSandboxTabsContext()
|
|
1822
|
+
|
|
1823
|
+
return <div aria-hidden={selectedTab !== value} className={cn("flex-1 overflow-y-auto ring-offset-background transition-opacity duration-200 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2", selectedTab === value ? "h-auto w-auto opacity-100" : "pointer-events-none absolute h-0 w-0 opacity-0", className)} data-state={selectedTab === value ? "active" : "inactive"} role="tabpanel" {...props} />
|
|
1824
|
+
}
|
|
1825
|
+
|
|
1826
|
+
export type SandboxFileExplorerProps = HTMLAttributes<HTMLDivElement> & {
|
|
1827
|
+
files: string[]
|
|
1828
|
+
activeFile?: string
|
|
1829
|
+
onFileSelect?: (file: string) => void
|
|
1830
|
+
}
|
|
1831
|
+
|
|
1832
|
+
export function SandboxFileExplorer2({ className, files = [], activeFile, onFileSelect, ...props }: SandboxFileExplorerProps): ReactNode {
|
|
1833
|
+
return (
|
|
1834
|
+
<div className={cn("h-full bg-background p-2 font-mono text-sm", className)} {...props}>
|
|
1835
|
+
<div className="space-y-0.5">
|
|
1836
|
+
{files.map((file) => {
|
|
1837
|
+
const defaultIcon = Object.entries(filenameIconMap).find(([pattern]) => {
|
|
1838
|
+
const regex = new RegExp(`^${pattern.replace(/\\/g, "\\\\").replace(/\./g, "\\.").replace(/\*/g, ".*")}$`)
|
|
1839
|
+
return file && regex.test(file)
|
|
1840
|
+
})?.[1]
|
|
1841
|
+
const Icon = defaultIcon
|
|
1842
|
+
return (
|
|
1843
|
+
<button
|
|
1844
|
+
key={file}
|
|
1845
|
+
onClick={() => onFileSelect?.(file)}
|
|
1846
|
+
className={cn(
|
|
1847
|
+
"flex w-full items-center gap-2 rounded px-2 py-1.5 text-left transition-colors",
|
|
1848
|
+
|
|
1849
|
+
"-mb-px flex border-b pb-2 text-sm/7 font-medium border-transparent",
|
|
1850
|
+
"text-muted-foreground hover:border-border/25",
|
|
1851
|
+
activeFile === file && "text-foreground border-[#2563eb] rounded-[0xp]"
|
|
1852
|
+
)}
|
|
1853
|
+
>
|
|
1854
|
+
{Icon && <Icon className="h-4 w-4 shrink-0" />}
|
|
1855
|
+
<span className="truncate text-muted-foreground">{file}</span>
|
|
1856
|
+
</button>
|
|
1857
|
+
)
|
|
1858
|
+
})}
|
|
1859
|
+
</div>
|
|
1860
|
+
</div>
|
|
1861
|
+
)
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
export type SandboxCodeEditorProps = HTMLAttributes<HTMLDivElement> & {
|
|
1865
|
+
value?: string
|
|
1866
|
+
onChange?: (value: string) => void
|
|
1867
|
+
language?: string
|
|
1868
|
+
readOnly?: boolean
|
|
1869
|
+
}
|
|
1870
|
+
|
|
1871
|
+
export type SandboxPreviewProps = HTMLAttributes<HTMLDivElement> & {
|
|
1872
|
+
html?: string
|
|
1873
|
+
srcDoc?: string
|
|
1874
|
+
}
|
|
1875
|
+
|
|
1876
|
+
export function SandboxPreview2({ className, code = "", ...props }: SandboxPreviewProps): ReactNode {
|
|
1877
|
+
return (
|
|
1878
|
+
<div className={cn("h-full bg-background overflow-auto", className)} {...props}>
|
|
1879
|
+
<LiveProvider code={code} scope={reactLiveScope} noInline={false}>
|
|
1880
|
+
<div className="p-4">
|
|
1881
|
+
<LivePreview />
|
|
1882
|
+
<LiveError className="bg-destructive/10 text-destructive p-4 rounded-lg mt-4 font-mono text-sm" />
|
|
1883
|
+
</div>
|
|
1884
|
+
</LiveProvider>
|
|
1885
|
+
</div>
|
|
1886
|
+
)
|
|
1887
|
+
}
|
|
1888
|
+
|
|
1889
|
+
export type SandboxConsoleProps = HTMLAttributes<HTMLDivElement> & {
|
|
1890
|
+
logs?: Array<{ type: "log" | "error" | "warn"; message: string }>
|
|
1891
|
+
}
|
|
1892
|
+
|
|
1893
|
+
export function SandboxConsole2({ className, logs = [], ...props }: SandboxConsoleProps): ReactNode {
|
|
1894
|
+
return (
|
|
1895
|
+
<div className={cn("h-full overflow-y-auto bg-background p-2 font-mono text-sm", className)} {...props}>
|
|
1896
|
+
{logs.map((log, i) => (
|
|
1897
|
+
<div key={i} className={cn("px-2 py-1", log.type === "error" && "text-destructive", log.type === "warn" && "text-yellow-500", log.type === "log" && "text-foreground")}>
|
|
1898
|
+
<span className="text-muted-foreground">[{log.type}]</span> {log.message}
|
|
1899
|
+
</div>
|
|
1900
|
+
))}
|
|
1901
|
+
</div>
|
|
1902
|
+
)
|
|
1903
|
+
}
|
|
1904
|
+
|
|
1905
|
+
export function SandboxCodeEditor2({ setIsClient, activeTab, theme, handleEditorChange, handleEditorDidMount, showMinimap, fontSize, showLineNumbers, editorSettings, editorRef, isClient, className, ...props }: SandboxCodeEditorProps): ReactNode {
|
|
1906
|
+
useEffect(() => {
|
|
1907
|
+
setIsClient(true)
|
|
1908
|
+
}, [])
|
|
1909
|
+
|
|
1910
|
+
const EditorLoading = () => {
|
|
1911
|
+
return (
|
|
1912
|
+
<div>
|
|
1913
|
+
<LoadingPage />
|
|
1914
|
+
</div>
|
|
1915
|
+
)
|
|
1916
|
+
}
|
|
1917
|
+
|
|
1918
|
+
const renderEditor = () => {
|
|
1919
|
+
if (!isClient || !activeTab) {
|
|
1920
|
+
return <EditorLoading />
|
|
1921
|
+
}
|
|
1922
|
+
|
|
1923
|
+
return (
|
|
1924
|
+
<div className="h-full">
|
|
1925
|
+
<Editor
|
|
1926
|
+
height="100%"
|
|
1927
|
+
className=""
|
|
1928
|
+
loading={<SpinnerV4 title="Loading..." subtitle="Please wait while your editor loads the content." size="sm" />}
|
|
1929
|
+
language={activeTab.language}
|
|
1930
|
+
value={activeTab.content}
|
|
1931
|
+
theme={theme}
|
|
1932
|
+
onChange={handleEditorChange}
|
|
1933
|
+
onMount={handleEditorDidMount}
|
|
1934
|
+
options={{
|
|
1935
|
+
minimap: { enabled: showMinimap },
|
|
1936
|
+
fontSize: fontSize,
|
|
1937
|
+
lineNumbers: showLineNumbers ? "on" : "off",
|
|
1938
|
+
wordWrap: true,
|
|
1939
|
+
automaticLayout: true,
|
|
1940
|
+
scrollBeyondLastLine: false,
|
|
1941
|
+
folding: true,
|
|
1942
|
+
bracketMatching: editorSettings.bracketMatching,
|
|
1943
|
+
autoClosingBrackets: editorSettings.autoClosingBrackets,
|
|
1944
|
+
autoClosingQuotes: editorSettings.autoClosingQuotes,
|
|
1945
|
+
autoIndent: editorSettings.autoIndent,
|
|
1946
|
+
renderWhitespace: editorSettings.renderWhitespace,
|
|
1947
|
+
multiCursorModifier: "alt",
|
|
1948
|
+
formatOnPaste: editorSettings.formatOnPaste,
|
|
1949
|
+
formatOnType: editorSettings.formatOnType,
|
|
1950
|
+
smoothScrolling: editorSettings.smoothScrolling,
|
|
1951
|
+
cursorBlinking: editorSettings.cursorBlinking,
|
|
1952
|
+
cursorStyle: editorSettings.cursorStyle,
|
|
1953
|
+
suggest: {
|
|
1954
|
+
showKeywords: true,
|
|
1955
|
+
showSnippets: true,
|
|
1956
|
+
showFunctions: true,
|
|
1957
|
+
showConstructors: true,
|
|
1958
|
+
showFields: true,
|
|
1959
|
+
showVariables: true,
|
|
1960
|
+
showClasses: true,
|
|
1961
|
+
showStructs: true,
|
|
1962
|
+
showInterfaces: true,
|
|
1963
|
+
showModules: true,
|
|
1964
|
+
showProperties: true,
|
|
1965
|
+
showEvents: true,
|
|
1966
|
+
showOperators: true,
|
|
1967
|
+
showUnits: true,
|
|
1968
|
+
showValues: true,
|
|
1969
|
+
showConstants: true,
|
|
1970
|
+
showEnums: true,
|
|
1971
|
+
showEnumMembers: true,
|
|
1972
|
+
showColors: true,
|
|
1973
|
+
showFiles: true,
|
|
1974
|
+
showReferences: true,
|
|
1975
|
+
showFolders: true,
|
|
1976
|
+
showTypeParameters: true,
|
|
1977
|
+
},
|
|
1978
|
+
quickSuggestions: {
|
|
1979
|
+
other: true,
|
|
1980
|
+
comments: true,
|
|
1981
|
+
strings: true,
|
|
1982
|
+
},
|
|
1983
|
+
suggestOnTriggerCharacters: true,
|
|
1984
|
+
acceptSuggestionOnCommitCharacter: true,
|
|
1985
|
+
acceptSuggestionOnEnter: "on",
|
|
1986
|
+
tabCompletion: "on",
|
|
1987
|
+
|
|
1988
|
+
scrollbar: {
|
|
1989
|
+
vertical: "auto",
|
|
1990
|
+
// horizontal: 'auto',
|
|
1991
|
+
useShadows: true,
|
|
1992
|
+
verticalHasArrows: false,
|
|
1993
|
+
horizontalHasArrows: false,
|
|
1994
|
+
verticalScrollbarSize: 10,
|
|
1995
|
+
horizontalScrollbarSize: 10,
|
|
1996
|
+
arrowSize: 10,
|
|
1997
|
+
},
|
|
1998
|
+
mouseWheelZoom: true,
|
|
1999
|
+
links: true,
|
|
2000
|
+
colorDecorators: true,
|
|
2001
|
+
}}
|
|
2002
|
+
/>
|
|
2003
|
+
</div>
|
|
2004
|
+
)
|
|
2005
|
+
}
|
|
2006
|
+
|
|
2007
|
+
return (
|
|
2008
|
+
<div className={cn("flex-1", className)} {...props}>
|
|
2009
|
+
{renderEditor()}
|
|
2010
|
+
</div>
|
|
2011
|
+
)
|
|
2012
|
+
}
|
|
2013
|
+
|
|
2014
|
+
export function SandboxDemo2() {
|
|
2015
|
+
return <ClientOnly>{() => <SandboxIsClient />}</ClientOnly>
|
|
2016
|
+
}
|
|
2017
|
+
|
|
2018
|
+
export function SandboxIsClient() {
|
|
2019
|
+
const { toast } = useToasted()
|
|
2020
|
+
|
|
2021
|
+
const [value, setValue] = useState("editor")
|
|
2022
|
+
const [code, setCode] = useState("")
|
|
2023
|
+
const [isSplitView, setIsSplitView] = useState(false)
|
|
2024
|
+
const [theme, setTheme] = useState("customDark")
|
|
2025
|
+
const [lastSaved, setLastSaved] = useState(null)
|
|
2026
|
+
const [isSaving, setIsSaving] = useState(false)
|
|
2027
|
+
const [isFullscreen, setIsFullscreen] = useState(false)
|
|
2028
|
+
const [showMinimap, setShowMinimap] = useState(true)
|
|
2029
|
+
const [fontSize, setFontSize] = useState(14)
|
|
2030
|
+
const [showLineNumbers, setShowLineNumbers] = useState(true)
|
|
2031
|
+
const [activeTabId, setActiveTabId] = useState(1)
|
|
2032
|
+
const [nextTabId, setNextTabId] = useState(4)
|
|
2033
|
+
const [isClient, setIsClient] = useState(false)
|
|
2034
|
+
const [autoSaveEnabled, setAutoSaveEnabled] = useState(true)
|
|
2035
|
+
const [isCopied, setIsCopied] = useState(false)
|
|
2036
|
+
const [isPreview, setIsPreview] = useState(false)
|
|
2037
|
+
const [isVisible, setIsVisible] = useState(true)
|
|
2038
|
+
const [isWordWrapEnabled, setIsWordWrapEnabled] = useState(false)
|
|
2039
|
+
const [isStickyScrollEnabled, setIsStickyScrollEnabled] = useState(false)
|
|
2040
|
+
const [isWhitespaceRendered, setIsWhitespaceRendered] = useState(false)
|
|
2041
|
+
const [areIndentGuidesRendered, setAreIndentGuidesRendered] = useState(true)
|
|
2042
|
+
const [wordWrap, setWordWrap] = useState(true)
|
|
2043
|
+
|
|
2044
|
+
const fileInputRef = useRef<HTMLInputElement>(null)
|
|
2045
|
+
const editorRef = useRef(null)
|
|
2046
|
+
const saveTimeoutRef = useRef(null)
|
|
2047
|
+
|
|
2048
|
+
const [tabs, setTabs] = useState([
|
|
2049
|
+
{
|
|
2050
|
+
id: 1,
|
|
2051
|
+
name: "App.jsx",
|
|
2052
|
+
content: `function App() {
|
|
2053
|
+
const [count, setCount] = React.useState(0);
|
|
2054
|
+
const [name, setName] = React.useState('');
|
|
2055
|
+
|
|
2056
|
+
return (
|
|
2057
|
+
<div className="p-6 space-y-6 max-w-4xl mx-auto">
|
|
2058
|
+
<Card className="p-6">
|
|
2059
|
+
<h1 className="text-2xl font-bold mb-4">Catalyst UI React Playground</h1>
|
|
2060
|
+
|
|
2061
|
+
<div className="space-y-4">
|
|
2062
|
+
<h2 className="text-lg font-semibold">Interactive Example</h2>
|
|
2063
|
+
|
|
2064
|
+
<div className="flex gap-2 items-center">
|
|
2065
|
+
<Button onClick={() => setCount(c => c + 1)}>
|
|
2066
|
+
Count: {count}
|
|
2067
|
+
</Button>
|
|
2068
|
+
<Button variant="secondary" onClick={() => setCount(0)}>
|
|
2069
|
+
Reset
|
|
2070
|
+
</Button>
|
|
2071
|
+
</div>
|
|
2072
|
+
|
|
2073
|
+
<Input
|
|
2074
|
+
placeholder="Enter your name..."
|
|
2075
|
+
value={name}
|
|
2076
|
+
onChange={(e) => setName(e.target.value)}
|
|
2077
|
+
className="max-w-xs"
|
|
2078
|
+
/>
|
|
2079
|
+
|
|
2080
|
+
{name && (
|
|
2081
|
+
<Alert>
|
|
2082
|
+
Hello, {name}! Welcome to Catalyst UI.
|
|
2083
|
+
</Alert>
|
|
2084
|
+
)}
|
|
2085
|
+
|
|
2086
|
+
<div className="flex gap-2 flex-wrap">
|
|
2087
|
+
<Badge>React</Badge>
|
|
2088
|
+
<Badge variant="secondary">Live</Badge>
|
|
2089
|
+
<Badge variant="outline">Playground</Badge>
|
|
2090
|
+
</div>
|
|
2091
|
+
</div>
|
|
2092
|
+
</Card>
|
|
2093
|
+
</div>
|
|
2094
|
+
);
|
|
2095
|
+
}
|
|
2096
|
+
|
|
2097
|
+
`,
|
|
2098
|
+
language: "javascript",
|
|
2099
|
+
isDirty: false,
|
|
2100
|
+
isActive: true,
|
|
2101
|
+
},
|
|
2102
|
+
{
|
|
2103
|
+
id: 2,
|
|
2104
|
+
name: "ButtonDemo.jsx",
|
|
2105
|
+
content: `function ButtonDemo() {
|
|
2106
|
+
return (
|
|
2107
|
+
<div className="space-y-4">
|
|
2108
|
+
<h3 className="font-semibold">Button Variants</h3>
|
|
2109
|
+
<div className="flex gap-2 flex-wrap">
|
|
2110
|
+
<Button>Default</Button>
|
|
2111
|
+
<Button variant="secondary">Secondary</Button>
|
|
2112
|
+
<Button variant="outline">Outline</Button>
|
|
2113
|
+
<Button variant="destructive">Destructive</Button>
|
|
2114
|
+
</div>
|
|
2115
|
+
</div>
|
|
2116
|
+
);
|
|
2117
|
+
}
|
|
2118
|
+
|
|
2119
|
+
`,
|
|
2120
|
+
language: "javascript",
|
|
2121
|
+
isDirty: false,
|
|
2122
|
+
isActive: false,
|
|
2123
|
+
},
|
|
2124
|
+
{
|
|
2125
|
+
id: 3,
|
|
2126
|
+
name: "styles.css",
|
|
2127
|
+
content: `/* Custom styles can go here */
|
|
2128
|
+
.custom-card {
|
|
2129
|
+
border: 2px dashed #3b82f6;
|
|
2130
|
+
}`,
|
|
2131
|
+
language: "css",
|
|
2132
|
+
isDirty: false,
|
|
2133
|
+
isActive: false,
|
|
2134
|
+
},
|
|
2135
|
+
])
|
|
2136
|
+
|
|
2137
|
+
const [editorSettings, setEditorSettings] = useState({
|
|
2138
|
+
bracketMatching: "always",
|
|
2139
|
+
autoClosingBrackets: "always",
|
|
2140
|
+
autoClosingQuotes: "always",
|
|
2141
|
+
autoIndent: "full",
|
|
2142
|
+
formatOnPaste: true,
|
|
2143
|
+
formatOnType: true,
|
|
2144
|
+
renderWhitespace: "selection",
|
|
2145
|
+
smoothScrolling: true,
|
|
2146
|
+
cursorBlinking: "blink",
|
|
2147
|
+
cursorStyle: "line",
|
|
2148
|
+
})
|
|
2149
|
+
|
|
2150
|
+
const customDarkTheme = {
|
|
2151
|
+
base: "vs-dark",
|
|
2152
|
+
inherit: true,
|
|
2153
|
+
rules: [],
|
|
2154
|
+
colors: {
|
|
2155
|
+
"editor.background": "#020817",
|
|
2156
|
+
},
|
|
2157
|
+
}
|
|
2158
|
+
|
|
2159
|
+
const languages = [
|
|
2160
|
+
{ value: "markdown", label: "Markdown", icon: "📝" },
|
|
2161
|
+
{ value: "javascript", label: "JavaScript", icon: "🟨" },
|
|
2162
|
+
{ value: "typescript", label: "TypeScript", icon: "🔷" },
|
|
2163
|
+
{ value: "html", label: "HTML", icon: "🌐" },
|
|
2164
|
+
{ value: "css", label: "CSS", icon: "🎨" },
|
|
2165
|
+
{ value: "scss", label: "SCSS", icon: "💅" },
|
|
2166
|
+
{ value: "json", label: "JSON", icon: "📋" },
|
|
2167
|
+
{ value: "python", label: "Python", icon: "🐍" },
|
|
2168
|
+
{ value: "sql", label: "SQL", icon: "🗃️" },
|
|
2169
|
+
{ value: "yaml", label: "YAML", icon: "⚙️" },
|
|
2170
|
+
{ value: "xml", label: "XML", icon: "📄" },
|
|
2171
|
+
{ value: "java", label: "Java", icon: "☕" },
|
|
2172
|
+
{ value: "csharp", label: "C#", icon: "💜" },
|
|
2173
|
+
{ value: "cpp", label: "C++", icon: "⚡" },
|
|
2174
|
+
{ value: "php", label: "PHP", icon: "🔮" },
|
|
2175
|
+
{ value: "rust", label: "Rust", icon: "🦀" },
|
|
2176
|
+
{ value: "go", label: "Go", icon: "🐹" },
|
|
2177
|
+
{ value: "shell", label: "Shell", icon: "🐚" },
|
|
2178
|
+
]
|
|
2179
|
+
|
|
2180
|
+
const activeTab = tabs.find((tab) => tab.id === activeTabId)
|
|
2181
|
+
|
|
2182
|
+
useEffect(() => {
|
|
2183
|
+
setIsClient(true)
|
|
2184
|
+
}, [])
|
|
2185
|
+
|
|
2186
|
+
const handleEditorChange = (value) => {
|
|
2187
|
+
setTabs((prev) => prev.map((tab) => (tab.id === activeTabId ? { ...tab, content: value || "", isDirty: true } : tab)))
|
|
2188
|
+
setCode(value)
|
|
2189
|
+
}
|
|
2190
|
+
|
|
2191
|
+
useEffect(() => {
|
|
2192
|
+
if (!isClient) return
|
|
2193
|
+
|
|
2194
|
+
const savedTabs = []
|
|
2195
|
+
|
|
2196
|
+
// Check each existing tab to see if there's saved content
|
|
2197
|
+
tabs.forEach((tab) => {
|
|
2198
|
+
const savedContent = localStorage.getItem(`live-playground-${tab.id}`)
|
|
2199
|
+
const savedName = localStorage.getItem(`live-playground-${tab.id}-name`)
|
|
2200
|
+
const savedLanguage = localStorage.getItem(`live-playground-${tab.id}-language`)
|
|
2201
|
+
|
|
2202
|
+
if (savedContent) {
|
|
2203
|
+
savedTabs.push({
|
|
2204
|
+
...tab,
|
|
2205
|
+
name: savedName || tab.name,
|
|
2206
|
+
content: savedContent,
|
|
2207
|
+
language: savedLanguage || tab.language,
|
|
2208
|
+
isDirty: false,
|
|
2209
|
+
})
|
|
2210
|
+
} else {
|
|
2211
|
+
// Keep the default tab if nothing was saved
|
|
2212
|
+
savedTabs.push(tab)
|
|
2213
|
+
}
|
|
2214
|
+
})
|
|
2215
|
+
|
|
2216
|
+
// Check for any additional tabs beyond the defaults
|
|
2217
|
+
let index = Math.max(...tabs.map((t) => t.id)) + 1
|
|
2218
|
+
while (true) {
|
|
2219
|
+
const savedContent = localStorage.getItem(`live-playground-${index}`)
|
|
2220
|
+
const savedName = localStorage.getItem(`live-playground-${index}-name`)
|
|
2221
|
+
const savedLanguage = localStorage.getItem(`live-playground-${index}-language`)
|
|
2222
|
+
|
|
2223
|
+
if (!savedContent) break
|
|
2224
|
+
|
|
2225
|
+
savedTabs.push({
|
|
2226
|
+
id: index,
|
|
2227
|
+
name: savedName || `tab-${index}.md`,
|
|
2228
|
+
content: savedContent,
|
|
2229
|
+
language: savedLanguage || "markdown",
|
|
2230
|
+
isDirty: false,
|
|
2231
|
+
isActive: false,
|
|
2232
|
+
})
|
|
2233
|
+
|
|
2234
|
+
index++
|
|
2235
|
+
}
|
|
2236
|
+
|
|
2237
|
+
if (savedTabs.length > 0) {
|
|
2238
|
+
setTabs(savedTabs.map((tab, i) => ({ ...tab, isActive: i === 0 })))
|
|
2239
|
+
setNextTabId(Math.max(...savedTabs.map((t) => t.id)) + 1)
|
|
2240
|
+
setCode(savedTabs[0].content)
|
|
2241
|
+
}
|
|
2242
|
+
}, [isClient])
|
|
2243
|
+
|
|
2244
|
+
const autoSave = useCallback(
|
|
2245
|
+
async (tabId, content) => {
|
|
2246
|
+
const tab = tabs.find((t) => t.id === tabId)
|
|
2247
|
+
if (!tab?.isDirty || !autoSaveEnabled) return
|
|
2248
|
+
|
|
2249
|
+
setIsSaving(true)
|
|
2250
|
+
try {
|
|
2251
|
+
localStorage.setItem(`live-playground-${tabId}`, content)
|
|
2252
|
+
localStorage.setItem(`live-playground-${tabId}-name`, tab.name)
|
|
2253
|
+
localStorage.setItem(`live-playground-${tabId}-language`, tab.language)
|
|
2254
|
+
setTabs((prev) => prev.map((t) => (t.id === tabId ? { ...t, isDirty: false } : t)))
|
|
2255
|
+
setLastSaved(new Date())
|
|
2256
|
+
} catch (error) {
|
|
2257
|
+
console.error("Save failed:", error)
|
|
2258
|
+
} finally {
|
|
2259
|
+
setIsSaving(false)
|
|
2260
|
+
}
|
|
2261
|
+
},
|
|
2262
|
+
[tabs, autoSaveEnabled]
|
|
2263
|
+
)
|
|
2264
|
+
|
|
2265
|
+
useEffect(() => {
|
|
2266
|
+
if (activeTab?.isDirty && autoSaveEnabled) {
|
|
2267
|
+
clearTimeout(saveTimeoutRef.current)
|
|
2268
|
+
saveTimeoutRef.current = setTimeout(() => {
|
|
2269
|
+
autoSave(activeTabId, activeTab.content)
|
|
2270
|
+
}, 2000)
|
|
2271
|
+
}
|
|
2272
|
+
|
|
2273
|
+
return () => clearTimeout(saveTimeoutRef.current)
|
|
2274
|
+
}, [activeTab?.content, activeTab?.isDirty, activeTabId, autoSave, autoSaveEnabled])
|
|
2275
|
+
|
|
2276
|
+
const getFileExtension = (language) => {
|
|
2277
|
+
const extensions = {
|
|
2278
|
+
javascript: "js",
|
|
2279
|
+
typescript: "ts",
|
|
2280
|
+
html: "html",
|
|
2281
|
+
css: "css",
|
|
2282
|
+
scss: "scss",
|
|
2283
|
+
json: "json",
|
|
2284
|
+
python: "py",
|
|
2285
|
+
sql: "sql",
|
|
2286
|
+
yaml: "yml",
|
|
2287
|
+
xml: "xml",
|
|
2288
|
+
java: "java",
|
|
2289
|
+
csharp: "cs",
|
|
2290
|
+
cpp: "cpp",
|
|
2291
|
+
php: "php",
|
|
2292
|
+
rust: "rs",
|
|
2293
|
+
go: "go",
|
|
2294
|
+
shell: "sh",
|
|
2295
|
+
markdown: "md",
|
|
2296
|
+
}
|
|
2297
|
+
return extensions[language] || "txt"
|
|
2298
|
+
}
|
|
2299
|
+
|
|
2300
|
+
const getTemplateForLanguage = (language) => {
|
|
2301
|
+
const templates = {
|
|
2302
|
+
javascript: "// JavaScript code\n",
|
|
2303
|
+
typescript: "// TypeScript code\n",
|
|
2304
|
+
html: "<!DOCTYPE html>\n<html>\n<head>\n <title>Document</title>\n</head>\n<body>\n \n</body>\n</html>",
|
|
2305
|
+
css: "/* CSS styles */\n",
|
|
2306
|
+
markdown: "# Markdown Document\n\n",
|
|
2307
|
+
python: "# Python code\n",
|
|
2308
|
+
json: "{\n \n}",
|
|
2309
|
+
}
|
|
2310
|
+
return templates[language] || ""
|
|
2311
|
+
}
|
|
2312
|
+
|
|
2313
|
+
const toggleFullscreen = () => {
|
|
2314
|
+
if (!document.fullscreenElement) {
|
|
2315
|
+
document.documentElement.requestFullscreen()
|
|
2316
|
+
setIsFullscreen(true)
|
|
2317
|
+
} else {
|
|
2318
|
+
document.exitFullscreen()
|
|
2319
|
+
setIsFullscreen(false)
|
|
2320
|
+
}
|
|
2321
|
+
}
|
|
2322
|
+
|
|
2323
|
+
const createNewTab = useCallback(
|
|
2324
|
+
(language = "markdown") => {
|
|
2325
|
+
const newTab = {
|
|
2326
|
+
id: nextTabId,
|
|
2327
|
+
name: `untitled-${nextTabId}.${getFileExtension(language)}`,
|
|
2328
|
+
content: getTemplateForLanguage(language),
|
|
2329
|
+
language,
|
|
2330
|
+
isDirty: false,
|
|
2331
|
+
isActive: true,
|
|
2332
|
+
}
|
|
2333
|
+
|
|
2334
|
+
setTabs((prev) => prev.map((tab) => ({ ...tab, isActive: false })))
|
|
2335
|
+
setTabs((prev) => [...prev, newTab])
|
|
2336
|
+
setActiveTabId(nextTabId)
|
|
2337
|
+
setNextTabId((prev) => prev + 1)
|
|
2338
|
+
},
|
|
2339
|
+
[nextTabId]
|
|
2340
|
+
)
|
|
2341
|
+
|
|
2342
|
+
const closeTab = useCallback(
|
|
2343
|
+
(tabId) => {
|
|
2344
|
+
if (tabs.length === 1) return
|
|
2345
|
+
|
|
2346
|
+
setTabs((prev) => {
|
|
2347
|
+
const newTabs = prev.filter((tab) => tab.id !== tabId)
|
|
2348
|
+
if (tabId === activeTabId) {
|
|
2349
|
+
const nextTab = newTabs[0] || newTabs[newTabs.length - 1]
|
|
2350
|
+
setActiveTabId(nextTab?.id || 1)
|
|
2351
|
+
}
|
|
2352
|
+
return newTabs
|
|
2353
|
+
})
|
|
2354
|
+
},
|
|
2355
|
+
[tabs.length, activeTabId]
|
|
2356
|
+
)
|
|
2357
|
+
|
|
2358
|
+
const handleManualSave = useCallback(() => {
|
|
2359
|
+
if (activeTab?.isDirty) {
|
|
2360
|
+
clearTimeout(saveTimeoutRef.current)
|
|
2361
|
+
autoSave(activeTabId, activeTab.content)
|
|
2362
|
+
}
|
|
2363
|
+
}, [activeTab, activeTabId, autoSave])
|
|
2364
|
+
|
|
2365
|
+
const handleEditorDidMount = (editor, monaco) => {
|
|
2366
|
+
editorRef.current = editor
|
|
2367
|
+
monaco.editor.defineTheme("customDark", customDarkTheme)
|
|
2368
|
+
monaco.editor.setTheme("customDark")
|
|
2369
|
+
|
|
2370
|
+
editor.addCommand(
|
|
2371
|
+
monaco.KeyCode.Enter,
|
|
2372
|
+
() => {
|
|
2373
|
+
const model = editor.getModel()
|
|
2374
|
+
const position = editor.getPosition()
|
|
2375
|
+
const lineContent = model.getLineContent(position.lineNumber)
|
|
2376
|
+
|
|
2377
|
+
const taskMatch = lineContent.match(/^(\s*)-\s+\[([ xX])\]\s*(.*)$/)
|
|
2378
|
+
const unorderedMatch = lineContent.match(/^(\s*)([-*+])\s+(.*)$/)
|
|
2379
|
+
const orderedMatch = lineContent.match(/^(\s*)(\d+)\.\s+(.*)$/)
|
|
2380
|
+
|
|
2381
|
+
if (taskMatch) {
|
|
2382
|
+
const [fullMatch, indent, checked, content] = taskMatch
|
|
2383
|
+
const isCursorAtEnd = position.column === lineContent.length + 1
|
|
2384
|
+
|
|
2385
|
+
if (content.trim() === "" || (content.trim() === "" && isCursorAtEnd)) {
|
|
2386
|
+
const endOfMarker = indent.length + 6
|
|
2387
|
+
editor.executeEdits("list-break", [
|
|
2388
|
+
{
|
|
2389
|
+
range: new monaco.Range(position.lineNumber, indent.length + 1, position.lineNumber, lineContent.length + 1),
|
|
2390
|
+
text: "",
|
|
2391
|
+
},
|
|
2392
|
+
{
|
|
2393
|
+
range: new monaco.Range(position.lineNumber, lineContent.length + 1, position.lineNumber, lineContent.length + 1),
|
|
2394
|
+
text: "\n",
|
|
2395
|
+
},
|
|
2396
|
+
])
|
|
2397
|
+
editor.setPosition({ lineNumber: position.lineNumber + 1, column: indent.length + 1 })
|
|
2398
|
+
} else {
|
|
2399
|
+
const newText = "\n" + indent + "- [ ] "
|
|
2400
|
+
editor.executeEdits("list-continue", [
|
|
2401
|
+
{
|
|
2402
|
+
range: new monaco.Range(position.lineNumber, position.column, position.lineNumber, position.column),
|
|
2403
|
+
text: newText,
|
|
2404
|
+
},
|
|
2405
|
+
])
|
|
2406
|
+
editor.setPosition({
|
|
2407
|
+
lineNumber: position.lineNumber + 1,
|
|
2408
|
+
column: indent.length + 7,
|
|
2409
|
+
})
|
|
2410
|
+
}
|
|
2411
|
+
return true
|
|
2412
|
+
} else if (unorderedMatch) {
|
|
2413
|
+
const [fullMatch, indent, marker, content] = unorderedMatch
|
|
2414
|
+
|
|
2415
|
+
if (content.trim() === "") {
|
|
2416
|
+
editor.executeEdits("list-break", [
|
|
2417
|
+
{
|
|
2418
|
+
range: new monaco.Range(position.lineNumber, indent.length + 1, position.lineNumber, lineContent.length + 1),
|
|
2419
|
+
text: "",
|
|
2420
|
+
},
|
|
2421
|
+
{
|
|
2422
|
+
range: new monaco.Range(position.lineNumber, lineContent.length + 1, position.lineNumber, lineContent.length + 1),
|
|
2423
|
+
text: "\n",
|
|
2424
|
+
},
|
|
2425
|
+
])
|
|
2426
|
+
editor.setPosition({ lineNumber: position.lineNumber + 1, column: indent.length + 1 })
|
|
2427
|
+
} else {
|
|
2428
|
+
const newText = "\n" + indent + marker + " "
|
|
2429
|
+
editor.executeEdits("list-continue", [
|
|
2430
|
+
{
|
|
2431
|
+
range: new monaco.Range(position.lineNumber, position.column, position.lineNumber, position.column),
|
|
2432
|
+
text: newText,
|
|
2433
|
+
},
|
|
2434
|
+
])
|
|
2435
|
+
editor.setPosition({
|
|
2436
|
+
lineNumber: position.lineNumber + 1,
|
|
2437
|
+
column: indent.length + marker.length + 2,
|
|
2438
|
+
})
|
|
2439
|
+
}
|
|
2440
|
+
return true
|
|
2441
|
+
} else if (orderedMatch) {
|
|
2442
|
+
const [fullMatch, indent, num, content] = orderedMatch
|
|
2443
|
+
|
|
2444
|
+
if (content.trim() === "") {
|
|
2445
|
+
editor.executeEdits("list-break", [
|
|
2446
|
+
{
|
|
2447
|
+
range: new monaco.Range(position.lineNumber, indent.length + 1, position.lineNumber, lineContent.length + 1),
|
|
2448
|
+
text: "",
|
|
2449
|
+
},
|
|
2450
|
+
{
|
|
2451
|
+
range: new monaco.Range(position.lineNumber, lineContent.length + 1, position.lineNumber, lineContent.length + 1),
|
|
2452
|
+
text: "\n",
|
|
2453
|
+
},
|
|
2454
|
+
])
|
|
2455
|
+
editor.setPosition({ lineNumber: position.lineNumber + 1, column: indent.length + 1 })
|
|
2456
|
+
} else {
|
|
2457
|
+
const nextNum = parseInt(num) + 1
|
|
2458
|
+
const newText = "\n" + indent + nextNum + ". "
|
|
2459
|
+
editor.executeEdits("list-continue", [
|
|
2460
|
+
{
|
|
2461
|
+
range: new monaco.Range(position.lineNumber, position.column, position.lineNumber, position.column),
|
|
2462
|
+
text: newText,
|
|
2463
|
+
},
|
|
2464
|
+
])
|
|
2465
|
+
editor.setPosition({
|
|
2466
|
+
lineNumber: position.lineNumber + 1,
|
|
2467
|
+
column: indent.length + nextNum.toString().length + 3,
|
|
2468
|
+
})
|
|
2469
|
+
}
|
|
2470
|
+
return true
|
|
2471
|
+
} else {
|
|
2472
|
+
editor.trigger("keyboard", "type", { text: "\n" })
|
|
2473
|
+
return false
|
|
2474
|
+
}
|
|
2475
|
+
},
|
|
2476
|
+
""
|
|
2477
|
+
)
|
|
2478
|
+
|
|
2479
|
+
editor.addCommand(monaco.KeyMod.Alt | monaco.KeyCode.KeyS, () => {
|
|
2480
|
+
handleManualSave()
|
|
2481
|
+
})
|
|
2482
|
+
|
|
2483
|
+
editor.addCommand(monaco.KeyMod.Alt | monaco.KeyCode.KeyP, () => {
|
|
2484
|
+
setIsPreview((prev) => !prev)
|
|
2485
|
+
})
|
|
2486
|
+
|
|
2487
|
+
editor.addCommand(monaco.KeyMod.CtrlCmd | monaco.KeyCode.Equal, () => {
|
|
2488
|
+
setFontSize((prev) => Math.min(prev + 1, 24))
|
|
2489
|
+
})
|
|
2490
|
+
|
|
2491
|
+
editor.addCommand(monaco.KeyMod.CtrlCmd | monaco.KeyCode.Minus, () => {
|
|
2492
|
+
setFontSize((prev) => Math.max(prev - 1, 8))
|
|
2493
|
+
})
|
|
2494
|
+
|
|
2495
|
+
editor.focus()
|
|
2496
|
+
}
|
|
2497
|
+
|
|
2498
|
+
function resetLocalStorage() {
|
|
2499
|
+
localStorage.clear()
|
|
2500
|
+
toast.success("Success", "Local storage has been reset!", { variant: "accent" })
|
|
2501
|
+
}
|
|
2502
|
+
|
|
2503
|
+
const editorFind = () => {
|
|
2504
|
+
if (editorRef.current) {
|
|
2505
|
+
editorRef.current.trigger("menu", "actions.find", null)
|
|
2506
|
+
}
|
|
2507
|
+
}
|
|
2508
|
+
|
|
2509
|
+
const editorFindReplace = () => {
|
|
2510
|
+
if (editorRef.current) {
|
|
2511
|
+
editorRef.current.trigger("menu", "editor.action.startFindReplace", null)
|
|
2512
|
+
}
|
|
2513
|
+
}
|
|
2514
|
+
|
|
2515
|
+
const editorFoldAll = () => {
|
|
2516
|
+
if (editorRef.current) {
|
|
2517
|
+
editorRef.current.trigger("menu", "editor.foldAll", null)
|
|
2518
|
+
}
|
|
2519
|
+
}
|
|
2520
|
+
|
|
2521
|
+
const editorUnfoldAll = () => {
|
|
2522
|
+
if (editorRef.current) {
|
|
2523
|
+
editorRef.current.trigger("menu", "editor.unfoldAll", null)
|
|
2524
|
+
}
|
|
2525
|
+
}
|
|
2526
|
+
|
|
2527
|
+
const closeAllTabs = () => {
|
|
2528
|
+
setTabs([])
|
|
2529
|
+
createNewTab()
|
|
2530
|
+
handleManualSave()
|
|
2531
|
+
}
|
|
2532
|
+
|
|
2533
|
+
useEffect(() => {
|
|
2534
|
+
setIsVisible(true)
|
|
2535
|
+
const timer = setTimeout(() => {
|
|
2536
|
+
setIsVisible(false)
|
|
2537
|
+
}, 5000)
|
|
2538
|
+
return () => clearTimeout(timer)
|
|
2539
|
+
}, [lastSaved])
|
|
2540
|
+
|
|
2541
|
+
const editorChangeAllOccurrences = () => {
|
|
2542
|
+
if (editorRef.current) {
|
|
2543
|
+
editorRef.current.trigger("menu", "editor.action.selectHighlights", null)
|
|
2544
|
+
}
|
|
2545
|
+
}
|
|
2546
|
+
|
|
2547
|
+
const editorToggleBlockComment = () => {
|
|
2548
|
+
if (editorRef.current) {
|
|
2549
|
+
editorRef.current.trigger("menu", "editor.action.blockComment", null)
|
|
2550
|
+
}
|
|
2551
|
+
}
|
|
2552
|
+
|
|
2553
|
+
const editorToggleSoftWraps = () => {
|
|
2554
|
+
const newStatus = !isWordWrapEnabled
|
|
2555
|
+
setIsWordWrapEnabled(newStatus)
|
|
2556
|
+
|
|
2557
|
+
if (editorRef.current) {
|
|
2558
|
+
editorRef.current.updateOptions({
|
|
2559
|
+
wordWrap: newStatus ? "on" : "off",
|
|
2560
|
+
})
|
|
2561
|
+
}
|
|
2562
|
+
}
|
|
2563
|
+
|
|
2564
|
+
const editorToggleStickyScroll = () => {
|
|
2565
|
+
const newStatus = !isStickyScrollEnabled
|
|
2566
|
+
setIsStickyScrollEnabled(newStatus)
|
|
2567
|
+
|
|
2568
|
+
if (editorRef.current) {
|
|
2569
|
+
editorRef.current.updateOptions({
|
|
2570
|
+
"stickyScroll.enabled": newStatus,
|
|
2571
|
+
})
|
|
2572
|
+
}
|
|
2573
|
+
}
|
|
2574
|
+
|
|
2575
|
+
const editorToggleRenderWhitespace = () => {
|
|
2576
|
+
const newStatus = !isWhitespaceRendered
|
|
2577
|
+
setIsWhitespaceRendered(newStatus)
|
|
2578
|
+
const renderMode = newStatus ? "all" : "none"
|
|
2579
|
+
|
|
2580
|
+
if (editorRef.current) {
|
|
2581
|
+
editorRef.current.updateOptions({
|
|
2582
|
+
renderWhitespace: renderMode,
|
|
2583
|
+
})
|
|
2584
|
+
}
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2587
|
+
const editorToggleIndentGuides = () => {
|
|
2588
|
+
const newStatus = !areIndentGuidesRendered
|
|
2589
|
+
setAreIndentGuidesRendered(newStatus)
|
|
2590
|
+
|
|
2591
|
+
if (editorRef.current) {
|
|
2592
|
+
editorRef.current.updateOptions({
|
|
2593
|
+
renderIndentGuides: newStatus,
|
|
2594
|
+
})
|
|
2595
|
+
}
|
|
2596
|
+
}
|
|
2597
|
+
|
|
2598
|
+
const handleClick = (content, filename) => {
|
|
2599
|
+
const blob = new Blob([content], { type: "text/plain" })
|
|
2600
|
+
const url = URL.createObjectURL(blob)
|
|
2601
|
+
const link = document.createElement("a")
|
|
2602
|
+
link.href = url
|
|
2603
|
+
link.download = filename
|
|
2604
|
+
link.click()
|
|
2605
|
+
URL.revokeObjectURL(url)
|
|
2606
|
+
}
|
|
2607
|
+
|
|
2608
|
+
const copyToClipboard = (text) => {
|
|
2609
|
+
navigator.clipboard.writeText(text)
|
|
2610
|
+
setIsCopied(true)
|
|
2611
|
+
setTimeout(() => setIsCopied(false), 2000)
|
|
2612
|
+
}
|
|
2613
|
+
|
|
2614
|
+
const onOpen = (e) => {
|
|
2615
|
+
const file = e.target.files?.[0]
|
|
2616
|
+
if (!file) return
|
|
2617
|
+
|
|
2618
|
+
const reader = new FileReader()
|
|
2619
|
+
reader.onload = (event) => {
|
|
2620
|
+
const content = event.target?.result
|
|
2621
|
+
if (typeof content === "string") {
|
|
2622
|
+
setCode(content)
|
|
2623
|
+
if (activeTab) {
|
|
2624
|
+
setTabs((prev) => prev.map((tab) => (tab.id === activeTabId ? { ...tab, content, isDirty: true } : tab)))
|
|
2625
|
+
}
|
|
2626
|
+
}
|
|
2627
|
+
}
|
|
2628
|
+
reader.readAsText(file)
|
|
2629
|
+
}
|
|
2630
|
+
|
|
2631
|
+
const options = {
|
|
2632
|
+
year: "numeric",
|
|
2633
|
+
month: "short",
|
|
2634
|
+
day: "numeric",
|
|
2635
|
+
hour: "2-digit",
|
|
2636
|
+
minute: "2-digit",
|
|
2637
|
+
}
|
|
2638
|
+
|
|
2639
|
+
const TabComponent = ({ tab, isActive, onClose, onSelect }) => {
|
|
2640
|
+
const defaultIcon = Object.entries(filenameIconMap).find(([pattern]) => {
|
|
2641
|
+
const regex = new RegExp(`^${pattern.replace(/\\/g, "\\\\").replace(/\./g, "\\.").replace(/\*/g, ".*")}$`)
|
|
2642
|
+
return tab.language && regex.test(tab.language)
|
|
2643
|
+
})?.[1]
|
|
2644
|
+
const Icon = defaultIcon
|
|
2645
|
+
return (
|
|
2646
|
+
<div className={`flex items-center px-3 py-2 border-r border-border cursor-pointer transition-colors ${isActive ? "bg-background text-foreground border-b-2 border-[#1447e6]" : "bg-muted text-muted-foreground hover:bg-background hover:text-foreground"}`} onClick={() => onSelect(tab.id)}>
|
|
2647
|
+
{Icon && <Icon className="h-4 w-4 shrink-0" />}
|
|
2648
|
+
<span className="text-sm truncate max-w-32">{tab.name}</span>
|
|
2649
|
+
{tab.isDirty && <span className="ml-1 text-destructive">●</span>}
|
|
2650
|
+
<button
|
|
2651
|
+
onClick={(e) => {
|
|
2652
|
+
e.stopPropagation()
|
|
2653
|
+
onClose(tab.id)
|
|
2654
|
+
}}
|
|
2655
|
+
className="ml-2 p-1 rounded hover:bg-destructive/20 hover:text-destructive"
|
|
2656
|
+
>
|
|
2657
|
+
<X className="h-3 w-3" />
|
|
2658
|
+
</button>
|
|
2659
|
+
</div>
|
|
2660
|
+
)
|
|
2661
|
+
}
|
|
2662
|
+
|
|
2663
|
+
function KBDShortcut({
|
|
2664
|
+
name = "Save",
|
|
2665
|
+
sc = (
|
|
2666
|
+
<>
|
|
2667
|
+
<KBD>Alt</KBD>
|
|
2668
|
+
{" & "}
|
|
2669
|
+
<KBD>S</KBD>
|
|
2670
|
+
</>
|
|
2671
|
+
),
|
|
2672
|
+
}) {
|
|
2673
|
+
return (
|
|
2674
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground">
|
|
2675
|
+
{name}
|
|
2676
|
+
<DropdownMenuShortcut>{sc}</DropdownMenuShortcut>
|
|
2677
|
+
</DropdownMenuItem>
|
|
2678
|
+
)
|
|
2679
|
+
}
|
|
2680
|
+
|
|
2681
|
+
const Toolbar = () => (
|
|
2682
|
+
<div className="flex items-center space-x-2">
|
|
2683
|
+
{isSaving && !isVisible && !lastSaved && (
|
|
2684
|
+
<Badge variant="outline" className="text-muted-foreground w-fit transition-opacity duration-500">
|
|
2685
|
+
Saving...
|
|
2686
|
+
</Badge>
|
|
2687
|
+
)}
|
|
2688
|
+
{isVisible && lastSaved && (
|
|
2689
|
+
<Badge variant="outline" className="text-muted-foreground w-fit transition-opacity duration-500">
|
|
2690
|
+
Saved: {new Date(lastSaved).toLocaleString("en-US", options)}
|
|
2691
|
+
</Badge>
|
|
2692
|
+
)}
|
|
2693
|
+
{isCopied && (
|
|
2694
|
+
<Badge variant="outline" className="text-muted-foreground w-fit transition-opacity duration-500">
|
|
2695
|
+
Copied contents to clipboard!
|
|
2696
|
+
</Badge>
|
|
2697
|
+
)}
|
|
2698
|
+
<Button variant="ghost" size="sm" className="text-muted-foreground hover:text-foreground" onClick={() => setValue(value === "editor" ? "preview" : "editor")}>
|
|
2699
|
+
{value === "editor" ? "Preview" : "Editor"}
|
|
2700
|
+
</Button>
|
|
2701
|
+
<Button variant="ghost" size="sm" className="text-muted-foreground hover:text-foreground" onClick={() => setValue("Console")}>
|
|
2702
|
+
Console
|
|
2703
|
+
</Button>
|
|
2704
|
+
{/** File */}
|
|
2705
|
+
<DropdownMenu>
|
|
2706
|
+
<DropdownMenuTrigger>
|
|
2707
|
+
<Button variant="ghost" size="sm" className="text-muted-foreground hover:text-foreground">
|
|
2708
|
+
File
|
|
2709
|
+
</Button>
|
|
2710
|
+
</DropdownMenuTrigger>
|
|
2711
|
+
<DropdownMenuContent>
|
|
2712
|
+
<DropdownMenuLabel>Monaco Editor</DropdownMenuLabel>
|
|
2713
|
+
<DropdownMenuSeparator />
|
|
2714
|
+
<DropdownMenuGroup>
|
|
2715
|
+
{/** Open File */}
|
|
2716
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground" onClick={() => fileInputRef.current?.click()}>
|
|
2717
|
+
Open File
|
|
2718
|
+
<DropdownMenuShortcut>
|
|
2719
|
+
<BookOpenText />
|
|
2720
|
+
</DropdownMenuShortcut>
|
|
2721
|
+
</DropdownMenuItem>
|
|
2722
|
+
<input ref={fileInputRef} type="file" accept=".md" onChange={onOpen} style={{ display: "none" }} />
|
|
2723
|
+
{/** save */}
|
|
2724
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground" disabled={!activeTab?.isDirty} onClick={handleManualSave}>
|
|
2725
|
+
Save
|
|
2726
|
+
<DropdownMenuShortcut>
|
|
2727
|
+
<Save />
|
|
2728
|
+
</DropdownMenuShortcut>
|
|
2729
|
+
</DropdownMenuItem>
|
|
2730
|
+
{/** ExportFile */}
|
|
2731
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground" onClick={() => handleClick(code, activeTab.name)}>
|
|
2732
|
+
Export
|
|
2733
|
+
<DropdownMenuShortcut>
|
|
2734
|
+
<Download />
|
|
2735
|
+
</DropdownMenuShortcut>
|
|
2736
|
+
</DropdownMenuItem>
|
|
2737
|
+
</DropdownMenuGroup>
|
|
2738
|
+
<DropdownMenuSeparator />
|
|
2739
|
+
<DropdownMenuGroup>
|
|
2740
|
+
{/** Copy Text */}
|
|
2741
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground" onClick={() => copyToClipboard(code)}>
|
|
2742
|
+
Place File Contents In Clipboard
|
|
2743
|
+
<DropdownMenuShortcut>
|
|
2744
|
+
<Copy />
|
|
2745
|
+
</DropdownMenuShortcut>
|
|
2746
|
+
</DropdownMenuItem>
|
|
2747
|
+
{/** Reset Local Storage */}
|
|
2748
|
+
<AlertDialog>
|
|
2749
|
+
<AlertDialogTrigger asChild>
|
|
2750
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground">
|
|
2751
|
+
Reset Local Storage
|
|
2752
|
+
<DropdownMenuShortcut>
|
|
2753
|
+
<ListRestart />
|
|
2754
|
+
</DropdownMenuShortcut>
|
|
2755
|
+
</DropdownMenuItem>
|
|
2756
|
+
</AlertDialogTrigger>
|
|
2757
|
+
<AlertDialogContent>
|
|
2758
|
+
<AlertDialogHeader>
|
|
2759
|
+
<AlertDialogTitle>Are you absolutely sure?</AlertDialogTitle>
|
|
2760
|
+
<AlertDialogDescription>This action cannot be undone. This will permanently delete your local storage data that contains the data from your tabs within this editor.</AlertDialogDescription>
|
|
2761
|
+
</AlertDialogHeader>
|
|
2762
|
+
<AlertDialogFooter>
|
|
2763
|
+
<AlertDialogCancel>Cancel</AlertDialogCancel>
|
|
2764
|
+
<AlertDialogAction onClick={() => resetLocalStorage()}>Continue</AlertDialogAction>
|
|
2765
|
+
</AlertDialogFooter>
|
|
2766
|
+
</AlertDialogContent>
|
|
2767
|
+
</AlertDialog>
|
|
2768
|
+
</DropdownMenuGroup>
|
|
2769
|
+
<DropdownMenuSeparator />
|
|
2770
|
+
</DropdownMenuContent>
|
|
2771
|
+
</DropdownMenu>
|
|
2772
|
+
|
|
2773
|
+
{/** Edit */}
|
|
2774
|
+
<DropdownMenu>
|
|
2775
|
+
<DropdownMenuTrigger>
|
|
2776
|
+
<Button variant="ghost" size="sm" className="text-muted-foreground hover:text-foreground">
|
|
2777
|
+
Edit
|
|
2778
|
+
</Button>
|
|
2779
|
+
</DropdownMenuTrigger>
|
|
2780
|
+
<DropdownMenuContent>
|
|
2781
|
+
<DropdownMenuGroup>
|
|
2782
|
+
{/** Undo */}
|
|
2783
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground" onClick={() => editorRef.current?.trigger("dropdown-menu", "undo", null)}>
|
|
2784
|
+
Undo
|
|
2785
|
+
<DropdownMenuShortcut>
|
|
2786
|
+
<RotateCcw />
|
|
2787
|
+
</DropdownMenuShortcut>
|
|
2788
|
+
</DropdownMenuItem>
|
|
2789
|
+
{/** Redo */}
|
|
2790
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground" onClick={() => editorRef.current?.trigger("dropdown-menu", "redo", null)}>
|
|
2791
|
+
Redo
|
|
2792
|
+
<DropdownMenuShortcut>
|
|
2793
|
+
<RotateCw />
|
|
2794
|
+
</DropdownMenuShortcut>
|
|
2795
|
+
</DropdownMenuItem>
|
|
2796
|
+
{/** Toggle Line Comment */}
|
|
2797
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground" onClick={() => editorRef.current?.trigger("dropdown-menu", "editor.action.commentLine", null)}>
|
|
2798
|
+
Toggle Line Comment
|
|
2799
|
+
</DropdownMenuItem>
|
|
2800
|
+
</DropdownMenuGroup>
|
|
2801
|
+
<DropdownMenuSeparator />
|
|
2802
|
+
<DropdownMenuGroup>
|
|
2803
|
+
{/** Go To Line */}
|
|
2804
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground" onClick={() => editorRef.current?.trigger("dropdown-menu", "editor.action.gotoLine", null)}>
|
|
2805
|
+
Go To Line
|
|
2806
|
+
</DropdownMenuItem>
|
|
2807
|
+
{/** Format Document */}
|
|
2808
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground" onClick={() => editorRef.current?.trigger("dropdown-menu", "editor.action.formatDocument", null)}>
|
|
2809
|
+
Format Document
|
|
2810
|
+
<DropdownMenuShortcut>
|
|
2811
|
+
<Braces />
|
|
2812
|
+
</DropdownMenuShortcut>
|
|
2813
|
+
</DropdownMenuItem>
|
|
2814
|
+
{/** Toggle Block Comment */}
|
|
2815
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground" onClick={() => editorToggleBlockComment()}>
|
|
2816
|
+
Toggle Block Comment
|
|
2817
|
+
</DropdownMenuItem>
|
|
2818
|
+
{/** Change All Occurrences */}
|
|
2819
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground" onClick={() => editorChangeAllOccurrences()}>
|
|
2820
|
+
Change All Occurrences
|
|
2821
|
+
</DropdownMenuItem>
|
|
2822
|
+
{/** Toggle Soft Wraps */}
|
|
2823
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground" onClick={() => editorToggleSoftWraps()}>
|
|
2824
|
+
Toggle Soft Wraps
|
|
2825
|
+
</DropdownMenuItem>
|
|
2826
|
+
</DropdownMenuGroup>
|
|
2827
|
+
<DropdownMenuSeparator />
|
|
2828
|
+
<DropdownMenuGroup>
|
|
2829
|
+
{/** Font Size */}
|
|
2830
|
+
<DropdownMenuSub>
|
|
2831
|
+
<DropdownMenuSubTrigger>Font Size</DropdownMenuSubTrigger>
|
|
2832
|
+
<DropdownMenuPortal>
|
|
2833
|
+
<DropdownMenuSubContent>
|
|
2834
|
+
{FONT_SIZES.map((size) => (
|
|
2835
|
+
<DropdownMenuItem
|
|
2836
|
+
key={size}
|
|
2837
|
+
onClick={() => {
|
|
2838
|
+
setFontSize(size)
|
|
2839
|
+
if (editorRef && editorRef.current) {
|
|
2840
|
+
editorRef.current.updateOptions({
|
|
2841
|
+
fontSize: size,
|
|
2842
|
+
})
|
|
2843
|
+
}
|
|
2844
|
+
}}
|
|
2845
|
+
className={size === fontSize ? "bg-gray-100 dark:bg-gray-700 font-semibold text-muted-foreground hover:text-foreground" : ""}
|
|
2846
|
+
>
|
|
2847
|
+
{size}px
|
|
2848
|
+
</DropdownMenuItem>
|
|
2849
|
+
))}
|
|
2850
|
+
</DropdownMenuSubContent>
|
|
2851
|
+
</DropdownMenuPortal>
|
|
2852
|
+
</DropdownMenuSub>
|
|
2853
|
+
</DropdownMenuGroup>
|
|
2854
|
+
<DropdownMenuSeparator />
|
|
2855
|
+
<DropdownMenuGroup>
|
|
2856
|
+
{/** find */}
|
|
2857
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground" onClick={() => editorFind()}>
|
|
2858
|
+
Find
|
|
2859
|
+
</DropdownMenuItem>
|
|
2860
|
+
{/** Find & Replace */}
|
|
2861
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground" onClick={() => editorFindReplace()}>
|
|
2862
|
+
Find & Replace
|
|
2863
|
+
</DropdownMenuItem>
|
|
2864
|
+
</DropdownMenuGroup>
|
|
2865
|
+
</DropdownMenuContent>
|
|
2866
|
+
</DropdownMenu>
|
|
2867
|
+
|
|
2868
|
+
{/** View */}
|
|
2869
|
+
<DropdownMenu>
|
|
2870
|
+
<DropdownMenuTrigger>
|
|
2871
|
+
<Button variant="ghost" size="sm" className="text-muted-foreground hover:text-foreground">
|
|
2872
|
+
View
|
|
2873
|
+
</Button>
|
|
2874
|
+
</DropdownMenuTrigger>
|
|
2875
|
+
<DropdownMenuContent>
|
|
2876
|
+
<DropdownMenuGroup>
|
|
2877
|
+
{/** Command Palette */}
|
|
2878
|
+
<DropdownMenuItem
|
|
2879
|
+
className="text-muted-foreground hover:text-foreground"
|
|
2880
|
+
onClick={() => {
|
|
2881
|
+
if (editorRef.current) {
|
|
2882
|
+
editorRef.current.trigger("dropdown-menu", "editor.action.quickCommand", null)
|
|
2883
|
+
}
|
|
2884
|
+
}}
|
|
2885
|
+
>
|
|
2886
|
+
Command Palette
|
|
2887
|
+
</DropdownMenuItem>
|
|
2888
|
+
{/** Shortcuts */}
|
|
2889
|
+
<DropdownMenuSub>
|
|
2890
|
+
<DropdownMenuSubTrigger>Shortcuts</DropdownMenuSubTrigger>
|
|
2891
|
+
<DropdownMenuPortal>
|
|
2892
|
+
<DropdownMenuSubContent>
|
|
2893
|
+
<KBDShortcut
|
|
2894
|
+
name="Open File"
|
|
2895
|
+
sc={
|
|
2896
|
+
<>
|
|
2897
|
+
<KBD>Alt</KBD>
|
|
2898
|
+
{" & "}
|
|
2899
|
+
<KBD>O</KBD>
|
|
2900
|
+
</>
|
|
2901
|
+
}
|
|
2902
|
+
/>
|
|
2903
|
+
<KBDShortcut
|
|
2904
|
+
name="Save File"
|
|
2905
|
+
sc={
|
|
2906
|
+
<>
|
|
2907
|
+
<KBD>Alt</KBD>
|
|
2908
|
+
{" & "}
|
|
2909
|
+
<KBD>S</KBD>
|
|
2910
|
+
</>
|
|
2911
|
+
}
|
|
2912
|
+
/>
|
|
2913
|
+
<KBDShortcut
|
|
2914
|
+
name="Rename Tab"
|
|
2915
|
+
sc={
|
|
2916
|
+
<>
|
|
2917
|
+
<KBD>Alt</KBD>
|
|
2918
|
+
{" & "}
|
|
2919
|
+
<KBD>R</KBD>
|
|
2920
|
+
</>
|
|
2921
|
+
}
|
|
2922
|
+
/>
|
|
2923
|
+
<KBDShortcut
|
|
2924
|
+
name="Toggle Preview"
|
|
2925
|
+
sc={
|
|
2926
|
+
<>
|
|
2927
|
+
<KBD>Alt</KBD>
|
|
2928
|
+
{" & "}
|
|
2929
|
+
<KBD>P</KBD>
|
|
2930
|
+
</>
|
|
2931
|
+
}
|
|
2932
|
+
/>
|
|
2933
|
+
<KBDShortcut
|
|
2934
|
+
name="Create Tab"
|
|
2935
|
+
sc={
|
|
2936
|
+
<>
|
|
2937
|
+
<KBD>Alt</KBD>
|
|
2938
|
+
{" & "}
|
|
2939
|
+
<KBD>N</KBD>
|
|
2940
|
+
</>
|
|
2941
|
+
}
|
|
2942
|
+
/>
|
|
2943
|
+
<KBDShortcut
|
|
2944
|
+
name="Create tab: Typescript"
|
|
2945
|
+
sc={
|
|
2946
|
+
<>
|
|
2947
|
+
<KBD>Alt</KBD>
|
|
2948
|
+
{" & "}
|
|
2949
|
+
<KBD>T</KBD>
|
|
2950
|
+
</>
|
|
2951
|
+
}
|
|
2952
|
+
/>
|
|
2953
|
+
<KBDShortcut
|
|
2954
|
+
name="Create tab: Markdown"
|
|
2955
|
+
sc={
|
|
2956
|
+
<>
|
|
2957
|
+
<KBD>Alt</KBD>
|
|
2958
|
+
{" & "}
|
|
2959
|
+
<KBD>M</KBD>
|
|
2960
|
+
</>
|
|
2961
|
+
}
|
|
2962
|
+
/>
|
|
2963
|
+
|
|
2964
|
+
<KBDShortcut
|
|
2965
|
+
name="Close Tab"
|
|
2966
|
+
sc={
|
|
2967
|
+
<>
|
|
2968
|
+
<KBD>Alt</KBD>
|
|
2969
|
+
{" & "}
|
|
2970
|
+
<KBD>w</KBD>
|
|
2971
|
+
</>
|
|
2972
|
+
}
|
|
2973
|
+
/>
|
|
2974
|
+
<KBDShortcut
|
|
2975
|
+
name="Close Tab"
|
|
2976
|
+
sc={
|
|
2977
|
+
<>
|
|
2978
|
+
<KBD>Alt</KBD>
|
|
2979
|
+
{" & "}
|
|
2980
|
+
<KBD>w</KBD>
|
|
2981
|
+
</>
|
|
2982
|
+
}
|
|
2983
|
+
/>
|
|
2984
|
+
<KBDShortcut
|
|
2985
|
+
name="Search"
|
|
2986
|
+
sc={
|
|
2987
|
+
<>
|
|
2988
|
+
<KBD>Alt</KBD>
|
|
2989
|
+
{" & "}
|
|
2990
|
+
<KBD>F</KBD>
|
|
2991
|
+
</>
|
|
2992
|
+
}
|
|
2993
|
+
/>
|
|
2994
|
+
<KBDShortcut
|
|
2995
|
+
name="Increase Font Size"
|
|
2996
|
+
sc={
|
|
2997
|
+
<>
|
|
2998
|
+
<KBD>Ctrl</KBD>
|
|
2999
|
+
{" & "}
|
|
3000
|
+
<KBD>+</KBD>
|
|
3001
|
+
</>
|
|
3002
|
+
}
|
|
3003
|
+
/>
|
|
3004
|
+
<KBDShortcut
|
|
3005
|
+
name="Decrease Font Size"
|
|
3006
|
+
sc={
|
|
3007
|
+
<>
|
|
3008
|
+
<KBD>Ctrl</KBD>
|
|
3009
|
+
{" & "}
|
|
3010
|
+
<KBD>-</KBD>
|
|
3011
|
+
</>
|
|
3012
|
+
}
|
|
3013
|
+
/>
|
|
3014
|
+
<KBDShortcut
|
|
3015
|
+
name="Open MD Sidebar"
|
|
3016
|
+
sc={
|
|
3017
|
+
<>
|
|
3018
|
+
<KBD>Ctrl</KBD>
|
|
3019
|
+
{" & "}
|
|
3020
|
+
<KBD>B</KBD>
|
|
3021
|
+
</>
|
|
3022
|
+
}
|
|
3023
|
+
/>
|
|
3024
|
+
</DropdownMenuSubContent>
|
|
3025
|
+
</DropdownMenuPortal>
|
|
3026
|
+
</DropdownMenuSub>
|
|
3027
|
+
</DropdownMenuGroup>
|
|
3028
|
+
<DropdownMenuSeparator />
|
|
3029
|
+
<DropdownMenuGroup>
|
|
3030
|
+
{/** fold */}
|
|
3031
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground" onClick={() => editorFoldAll()}>
|
|
3032
|
+
Fold All
|
|
3033
|
+
</DropdownMenuItem>
|
|
3034
|
+
{/** Unfold */}
|
|
3035
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground" onClick={() => editorUnfoldAll()}>
|
|
3036
|
+
Unfold All
|
|
3037
|
+
</DropdownMenuItem>
|
|
3038
|
+
</DropdownMenuGroup>
|
|
3039
|
+
<DropdownMenuSeparator />
|
|
3040
|
+
<DropdownMenuGroup>
|
|
3041
|
+
{/** mini map */}
|
|
3042
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground" onClick={() => setShowMinimap((prev) => !prev)}>
|
|
3043
|
+
Mini Map
|
|
3044
|
+
<DropdownMenuShortcut>
|
|
3045
|
+
<Map />
|
|
3046
|
+
</DropdownMenuShortcut>
|
|
3047
|
+
</DropdownMenuItem>
|
|
3048
|
+
{/** Word Wrap */}
|
|
3049
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground" onClick={() => setWordWrap((prev) => !prev)}>
|
|
3050
|
+
Word Wrap
|
|
3051
|
+
<DropdownMenuShortcut>
|
|
3052
|
+
<TextWrap />
|
|
3053
|
+
</DropdownMenuShortcut>
|
|
3054
|
+
</DropdownMenuItem>
|
|
3055
|
+
{/** Line Numbers */}
|
|
3056
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground" onClick={() => setShowLineNumbers((prev) => !prev)}>
|
|
3057
|
+
Line Numbers
|
|
3058
|
+
</DropdownMenuItem>
|
|
3059
|
+
{/** toggle renderer */}
|
|
3060
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground" onClick={() => setIsPreview(!isPreview)}>
|
|
3061
|
+
{isPreview ? (
|
|
3062
|
+
<>
|
|
3063
|
+
Code
|
|
3064
|
+
<DropdownMenuShortcut>
|
|
3065
|
+
<Code />
|
|
3066
|
+
</DropdownMenuShortcut>
|
|
3067
|
+
</>
|
|
3068
|
+
) : (
|
|
3069
|
+
<>
|
|
3070
|
+
Preview
|
|
3071
|
+
<DropdownMenuShortcut>
|
|
3072
|
+
<Eye />
|
|
3073
|
+
</DropdownMenuShortcut>
|
|
3074
|
+
</>
|
|
3075
|
+
)}
|
|
3076
|
+
</DropdownMenuItem>
|
|
3077
|
+
</DropdownMenuGroup>
|
|
3078
|
+
<DropdownMenuSeparator />
|
|
3079
|
+
<DropdownMenuGroup>
|
|
3080
|
+
{/** Toggle Render Whitespace */}
|
|
3081
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground" onClick={() => editorToggleRenderWhitespace()}>
|
|
3082
|
+
{isWhitespaceRendered ? "Hide Whitespace" : "Show Whitespace"}
|
|
3083
|
+
</DropdownMenuItem>
|
|
3084
|
+
{/** Toggle Indent Guides */}
|
|
3085
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground" onClick={() => editorToggleIndentGuides()}>
|
|
3086
|
+
{areIndentGuidesRendered ? "Hide Indent Guides" : "Show Indent Guides"}
|
|
3087
|
+
</DropdownMenuItem>
|
|
3088
|
+
{/** Toggle Sticky Scroll */}
|
|
3089
|
+
<DropdownMenuItem className="text-muted-foreground hover:text-foreground" onClick={() => editorToggleStickyScroll()}>
|
|
3090
|
+
{isStickyScrollEnabled ? "Disable Sticky Scroll" : "Enable Sticky Scroll"}
|
|
3091
|
+
</DropdownMenuItem>
|
|
3092
|
+
</DropdownMenuGroup>
|
|
3093
|
+
</DropdownMenuContent>
|
|
3094
|
+
</DropdownMenu>
|
|
3095
|
+
|
|
3096
|
+
<Button variant="ghost" size="sm" className="text-muted-foreground hover:text-foreground" onClick={() => setIsSplitView((prev) => !prev)}>
|
|
3097
|
+
{isSplitView ? <SquareSplitHorizontal /> : <SquareSplitHorizontal />}
|
|
3098
|
+
</Button>
|
|
3099
|
+
{isFullscreen ? <TooltipButton icon={<Minus />} onClick={toggleFullscreen} content="Minimize" /> : <TooltipButton icon={<Square />} onClick={toggleFullscreen} content="Maximize" />}
|
|
3100
|
+
</div>
|
|
3101
|
+
)
|
|
3102
|
+
return (
|
|
3103
|
+
<div className="mx-auto max-w-[95vw] w-full border-2 border-border rounded-[10px] shadow-lg !overflow-hidden">
|
|
3104
|
+
<SandboxTabs2 className="h-[85vh]" value={value} onValueChange={setValue}>
|
|
3105
|
+
<div className="flex items-center justify-between border-b border-border bg-background ">
|
|
3106
|
+
<div className="flex overflow-x-auto">
|
|
3107
|
+
{tabs.map((tab) => (
|
|
3108
|
+
<TabComponent key={tab.id} tab={tab} isActive={tab.id === activeTabId} onClose={closeTab} onSelect={setActiveTabId} />
|
|
3109
|
+
))}
|
|
3110
|
+
</div>
|
|
3111
|
+
<Toolbar />
|
|
3112
|
+
</div>
|
|
3113
|
+
<SandboxTabsContent2 value="editor" className="flex">
|
|
3114
|
+
{isSplitView ? (
|
|
3115
|
+
<>
|
|
3116
|
+
<div className="flex h-full w-full">
|
|
3117
|
+
<div className="w-1/2">
|
|
3118
|
+
<SandboxCodeEditor2 setIsClient={setIsClient} activeTab={activeTab} theme={theme} handleEditorChange={handleEditorChange} handleEditorDidMount={handleEditorDidMount} showMinimap={showMinimap} fontSize={fontSize} showLineNumbers={showLineNumbers} editorSettings={editorSettings} isClient={isClient} editorRef={editorRef} className="h-full border-r border-border" />
|
|
3119
|
+
</div>
|
|
3120
|
+
<div className="w-1/2 overflow-auto bg-background">
|
|
3121
|
+
<div className="mx-auto p-3">
|
|
3122
|
+
<SandboxPreview2 code={code} />
|
|
3123
|
+
</div>
|
|
3124
|
+
</div>
|
|
3125
|
+
</div>
|
|
3126
|
+
</>
|
|
3127
|
+
) : (
|
|
3128
|
+
<SandboxCodeEditor2 setIsClient={setIsClient} activeTab={activeTab} theme={theme} handleEditorChange={handleEditorChange} handleEditorDidMount={handleEditorDidMount} showMinimap={showMinimap} fontSize={fontSize} showLineNumbers={showLineNumbers} editorSettings={editorSettings} isClient={isClient} editorRef={editorRef} className="flex-1" />
|
|
3129
|
+
)}
|
|
3130
|
+
</SandboxTabsContent2>
|
|
3131
|
+
|
|
3132
|
+
<SandboxTabsContent2 value="preview">
|
|
3133
|
+
<SandboxPreview2 code={code} />
|
|
3134
|
+
</SandboxTabsContent2>
|
|
3135
|
+
|
|
3136
|
+
<SandboxTabsContent2 value="console">
|
|
3137
|
+
<SandboxConsole2
|
|
3138
|
+
logs={[
|
|
3139
|
+
{ type: "log", message: "React Live playground started" },
|
|
3140
|
+
{ type: "log", message: "Edit App.jsx to see live changes" },
|
|
3141
|
+
]}
|
|
3142
|
+
/>
|
|
3143
|
+
</SandboxTabsContent2>
|
|
3144
|
+
</SandboxTabs2>
|
|
3145
|
+
</div>
|
|
3146
|
+
)
|
|
3147
|
+
}
|
|
3148
|
+
|
|
3149
|
+
/**import React, { createContext, useCallback, useContext, useEffect, useMemo, useReducer, useRef, useState, type ButtonHTMLAttributes, type HTMLAttributes, type ReactNode } from "react"
|
|
3150
|
+
import { cn, filenameIconMap, } from "~/components/catalyst-ui/utils";
|
|
3151
|
+
import { BookOpenText, Braces, Code, Copy, Download, Eye, ListRestart, Maximize2, Minimize2, Minus, RotateCcw, RotateCw, Save, Square, SquareSplitHorizontal, TimerIcon, TimerReset, X, } from "lucide-react";
|
|
3152
|
+
import { LiveProvider, LiveEditor, LivePreview, LiveError, } from "react-live";
|
|
3153
|
+
// import { ClientOnly, } from "~/utils/client-only";
|
|
3154
|
+
import { Editor, } from "@monaco-editor/react";
|
|
3155
|
+
import { TextWrap, } from "@catalystsoftware/icons";
|
|
3156
|
+
import popoverForm from "../blocks/popover-form";
|
|
3157
|
+
import { AlertDialogTrigger, AlertDialogContent, AlertDialogTitle, AlertDialogDescription, AlertDialogCancel, AlertDialogAction, DropdownMenuItem, DropdownMenuTrigger, DropdownMenuContent, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuGroup, DropdownMenuSub, DropdownMenuSubTrigger, DropdownMenuPortal, DropdownMenuSubContent, DropdownMenu, AlertDialog, TooltipButton, LoadingPage, SpinnerV4, KBD, DropdownMenuShortcut, AlertDialogHeader, AlertDialogFooter } from "~/components/catalyst-ui";
|
|
3158
|
+
|
|
3159
|
+
import {
|
|
3160
|
+
Particles, Vortex, SparklesCore, RetroGrid, InteractiveGridPattern, HexagonBackground, BackgroundGradient, OrbitingCircles, AnimatedBeam, BackgroundPaths, FlickeringGrid, DotPattern, DottedMap, Rating1, Ratingbutton1, Themetogglebutton, Usethemetransition, ThemeSwitcher, TextRevealButton, RippleButton, Rate, Ratingbutton, LiquidButton, Inputbutton, Inputbuttonprovider, Inputbuttonaction, Inputbuttonsubmit, Inputbuttoninput, CopyButton, FlipButton, ShimmerButton, AnimatedThemeToggler, AttractButton, SlideButton, CommandButton, HoldButton, ParticleButton, SocialButton, SwitchButton, Buttongroup, Connectedbuttongroup, Floatbutton, Floatbuttongroup, SplitButton, Burger, Burgerbutton, Burgernavigation, Burgermenudemo, CopyText, ExportFile, FormButton, ToggleButton, Enhancedchart, Enhancedchartdemo, Terminal, Animatedspan, Typinganimation, Sandboxtabs2, Sandboxtabslist2, Sandboxtabstrigger2, Sandboxtabscontent2, Sandboxfileexplorer2, Sandboxcodeeditor2, Sandboxpreview2, Sandboxconsole2, CodeComparison, Sandboxtabs, Sandboxtabslist, Sandboxtabstrigger, Sandboxtabscontent, Sandboxcodeeditor, Sandboxconsole, Sandboxfileexplorer, Sandboxlayout, Sandboxpreview, Sandboxprovider, Codeblocksection, Codeblock, Codeblockheader, Codeblockselect, Codeblockselecttrigger, Codeblockselectvalue, Codeblockselectcontent, Codeblockselectitem, Codeblockcopybutton, Codeblockbody, Codeblockitem, Codeblockcontent, Codeeditor, Copybutton, CodeSection, CssSection, HtmlSection, DisplayInstallCode, DisplayInstallCodeArray, DisplayGithubInstall, JsonSection, Propscode, Propscopybutton, Propscopybuttongroup, Allprops, Basicallprops, TerminalCode, TsxSection, SlidingNumber, Counter, Threedcard, Cardbody, Carditem, Badge1, Badgewrapper1, Badgevariants, Badgewrappervariants, Iphone15Pro, Safari, Android, NumberTicker, Tweetcard1, Tweetskeleton1, Tweetnotfound1, Magictweet1, Tweetheader1, Tweetbody1, Tweetmedia1, Tags, Tagstrigger, Tagsvalue, Tagscontent, Tagsinput, Tagslist, Tagsempty, Tagsgroup, Tagsitem, Pill, Pillavatar, Pillbutton, Pillstatus, Pillindicator, Pilldelta, Pillicon, Pillavatargroup, TweetCard, CardStack, ChatBubble, DeviceMockup, Checkabletag, Tag, Comment, CardFlip, FlyoutMenu, ActivityCard, MagicCard, Commandwcombobox, Combobox2, Comboboxtrigger2, Comboboxcontent2, Comboboxinput2, Comboboxlist2, Comboboxempty2, Comboboxgroup2, Comboboxitem2, Comboboxseparator2, Comboboxcreatenew2, AnimatedHero1, Creditcard, Creditcardflipper, Creditcardfront, Creditcardback, Creditcardname, Creditcardnumber, Creditcardexpiry, Creditcardcvv, Creditcardchip, Creditcardlogo, Creditcardserviceprovider, Creditcardmagstripe, Ticker, Tickericon, Tickersymbol, Tickerprice, Tickerpricechange, Meter, Diff, Diffdemo, Diffusage, TimelineV1, Feed, Stat, Treeview, Treeviewlabel, Treeviewtree, Treeviewbranchcontrol, Treeviewbranchtext, Treeviewbranchindicator, Treeviewitem, Treeviewitemtext, Treeviewnode, Treeviewvariants, Treeitemvariants, Timeline, Faq, Highlight, Datalist, datalistitem, datalistlabel, datalistvalue, datalistkeyvalue, datalistrow, datalistactions, datalistactionmenu, DescriptionLists, Stats, OrderList, TransferList, Colorpicker3, Colorpickeralpha, Colorpickereyedropper, Colorpickerformat, Colorpickerhue, Colorpickeroutput, Colorpickerselection, ColorPicker1, ColorPicker, Choicebox, Choiceboxitem, Choiceboxitemheader, Choiceboxitemtitle, Choiceboxitemsubtitle, Choiceboxitemdescription, Choiceboxitemcontent, Choiceboxitemindicator, AutoResizingTextarea, Textareav2, PasswordInput, DebouncedInput, KeyFilter, InputMask, Inputtext, LabelVariant, InputGroup, FloatingLabel, FloatLabel, StepFormWizard, FormWizard, Fieldset, fieldsetcontent, fieldsetfooter, Forms, MultiCascadeTree, Multicascader, Multicascaderdemo, Checktree, Checktreedemo, CheckTreePicker, CascadeTree, Cascader, TreePicker, ProfileDropdown, ActionSearchBar, MultiSelect, Listbox, Combobox0, ComboboxV1, MultiCombobox, Combobox, NestedCombobox, NestedCommandDialog, NestedCommand, CommandV2, FilterCombobox, Autocomplete, FuseSearchInput, FuzzyFilter, FuzzySort, SearchInput, Toggleclass, CheckboxCard, CheckboxMultistate, CheckboxTristate, TriStateCheckbox, SelectButton, Radiotile, Radiotilegroup, CheckboxCardV1, CheckboxV1, TagsInput, PillsInput, PinInput, Rating, Creditcardinput, Expiryinput, Cvvinput, Creditcardinputdemo, JsonInput, Inplace, InlineEdit, InputIcon, ActionPanel, ActionBar, Iconfield, Banner2, Bannericon2, Bannertitle2, Banneraction2, Bannerclose2, Banner, Announcement, DotLoader, Status, Toast, Alertv1, Alertdescription, Alerttitle, Indicator,
|
|
3161
|
+
} from "~/components/catalyst-ui";
|
|
3162
|
+
|
|
3163
|
+
import {
|
|
3164
|
+
Alert, CallOut, EmptyState, SpinnerV3, SpinnerV2, Spinnerv1, Empty, InsufficientPermissions, Dimmer, FourOhFour, Underconstruction, Unauthorized, Notification, Error, Spinner, LoadErrorPage, Loading, EditEmployeeSchedule, EmployeeSchedule, ViewPunchClock, PunchClock, CardHeadings, PageHeading, SectionHeadings, PinList, Tree, Folder, File, Collapsebutton, Listprovider, Listgroup, Listheader, Listitems, Listitem, StackedLists, Item, Rail, Feeds, GridLists, Datatable, Simpletabledemo, Cardtabledemo, Borderedtabledemo, Fullwidthtabledemo, Darktabledemo, MultiColumnLayouts, StackedLayout, SidebarLayout, Bentogrid, Bentocard, CollapsibleSection, Panel, Group, Bentogrid, Bentogriditem, Stack, Layout, Header, Content, Footer, Sidebar, Grid, Row, Col, For, Flexboxgrid, Flexboxgriditem, Container, Center, Box, AbsoluteCenter, Card, List, MediaObject, Bentogrid1, Bentocard1, PlaceholderCodeSection, HeroVideoDialog, Scaffolding, Contactsection, Contact, Content, Team, Navbar1, Navbar2, Navbar3, Navbar4, Navbar5, Navbar6, Navbar7, Navbar8, Navbar9, Navbar10, Navbar11, Navbar12, Navbar13, Navbar14, Navbar15, Navbar16, Navbar17, Navbar18, MenuDock, MessageDock, LimelightNav, Fab, FabMenu, EFab, Dock2, Dock2icon, Toolbar, Toolbargroup, Toolbarseparator, Toolbarbutton, Toolbarsearch, SmoothTab, Actionbar, Actionbarcontent, Actionbardescription, Affix, Kbd, TabMenu, ThemeSelector, Tabview, Tabpanel, SpeedDial, Remixlink, Remixnavlink, Remixlinktext, Remixnavlinktext, PanelMenu, Menu, MegaMenu, Dock, Dockvariants, Dockitemvariants, TypeDockprops, TypeDockitem, Steps, Anchor, HeaderNav, Menubar, Menubarcontent, Menubaritem, Menubarmenu, Menubarseparator, Menubarshortcut, Menubartrigger, Menubarportal, Menubargroup, Menubarlabel, Menubarcheckboxitem, Menubarradioitem, Menubarradiogroup, Menubarsub, Menubarsubtrigger, Menubarsubcontent, Pageactions, Pageheader, Pageheaderdescription, Pageheaderheading, PaginationWrapper, PaginationButton, SiteHeader, ScriptsEditor, ScriptsViewer, CalendarForSidebar, DrawerDatePicker, Calendarprovider, Calendardate, Calendardatepicker, Calendarmonthpicker, Calendaryearpicker, Calendardatepagination, Calendarheader, Calendarbody, Calendaritem, Usecalendarmonth, Usecalendaryear, Monthsforlocale, Daysforlocale, Relativetime, Relativetimezone, Relativetimezonedisplay, Relativetimezonedate, Relativetimezonelabel, Minicalendar, Minicalendarnavigation, Minicalendardays, Minicalendarday, TimePicker, PopoverDateInput, ModalDateInput, Dockeddatepicker, Dockeddatepickertrigger, TimePickerInput, TimePickerDial, CategoryFilters, CategoryPreviews, CheckoutForms, Incentives, OrderHistory, OrderSummaries, ProductCard, ProductFeatures, ProductLists, ProductOverview, ProductQuickviews, PromoSections, Reviews, ShoppingCarts, StoreNavigation, PromotionEngine, PromotionsManager, CashTillManager, CashDrawerWizard, UseCopyToClipboard, UseLocalStorageAutoSave, UseExpandable, UseGoogleFont, UseDocumentTitle, UseEventCallback, UseIsClient, UseIsomorphicLayoutEffect, UseReadLocalStorage, UseResizeObserver, UseScript, UseScreen, UseScrollLock, UseOnClickOutside, UseSecFetchParser, UseTimer, UseApiKey, UseBreakpoint, UseExternalScripts, UseSlideIn, UseStream, DebouncedFetcherAndSubmit, PrefetchAnchors, DelegateAnchorsToRemixUsedelegatedanchors, UseShouldHydrate, UseLocales, UseGlobalLoadingState, UseGlobalSubmittingState, UseGlobalPendingState, UseGlobalNavigationState, UseEventListener, UseExportMarkdown, UseHydrated, UseFocusWithin, UseFocus, UsePress, UseLongPress, UseKeyboard, UseHover, UseMove, UseMountEffect, UseUpdateEffect, UseUnmountEffect, UseOverlayListener, UseOverlayScrollListener, UseFavicon, UseResizeListener, UseMobile, UseMounted, UseMutationObserver, UseExportTsx, UseFuzzySearch, UseFuseSearch, UseDebouncedFuseSearch, UseMediaQuery, UseLocalStorage, UseSessionStorage, UseDebounce, UseThrottle, UsePrevious, UseToggle, UseCounter, UseInterval, UseTimeout, UseClickOutside, UseKeyPress, UseOnlineStatus, UseWindowSize, UseScrollPosition, UseIntersectionObserver, UseAsync, UseFetch, UseForm, Scrollvelocitycontainer, Scrollvelocityrow, Wrap, Lens, Pointer, SmoothCursor, Motionhighlight, Motionhighlightitem, Usemotionhighlight, Magnetic, Kanbanprovider, Kanbanboard, Kanbanheader, Kanbancards, Kanbancard, Ganttprovider, Gantttimeline, Ganttheader, Ganttsidebar, Ganttsidebargroup, Ganttsidebaritem, Ganttfeaturelist, Ganttfeaturelistgroup, Ganttfeaturerow, Ganttfeatureitem, Gantttoday, Ganttmarker, Ganttcreatemarkertrigger, Useganttdragging, Useganttscrollx, Dropzone, Dropzonecontent, Dropzoneemptystate, Cursorprovider, Cursor, Cursorfollow, Usecursor, Pincontainer, Pinperspective, Cardcontainer, Cardbody, Carditem, Spoiler, Sticky, InPlace, ActionSheet, FixedMarker, Ripple, IconCloud, Tour1, Tour, MouseEffectCard, CurrencyTransfer, FileUploadV1, FileSaver, ExcelExport, FileUpload, Pdfgenerator,
|
|
3165
|
+
} from "~/components/catalyst-ui";
|
|
3166
|
+
|
|
3167
|
+
import {
|
|
3168
|
+
Pdfgeneratordemo, PdfSignature, Pdfsignature, Pdfviewer, Signature, Aiprompt, Aipromptview, Aipromptoutputview, Aipromptcommandsview, Drawing, Drawingsurface, Drawingtoolbar, Drawingv2, DropZone, Draggable, Draggablecard, Taskboard, Taskcolumn, Taskcard, Sortable, Sortableitem, Sortablehandle, Spreadsheet, ColorSwatch, DropZoneExternal, Terminal, About, Navbutton, Navbuttonstytled, Hero, Exportfile, Verticalnavigation, Emptystate, Flyoutmenu, Logoclouds, Editor, Buttonicon, Buttonlink, Buttonloading, Buttongroup, Calendarforsidebar, CalendarmultidayLofi, Copytext, Debouncedinput, AccountForm, Atom, Accordian, AspectRatio, Authenticator, Avatar, Badge, BannerLofi, BentoGrid, Blog, ButtonLofi, Breadcrumb, Calendar, CardHeader, CardHeading, Carousel, Cart, CategoryFilter, CategoryPage, Checkbox, CheckoutForm, CheckoutPage, CheckoutPage2, Collapsible, Component, Columns, ContactSection, ContentSection, CookieSettings, CtaSection, Data, Descriptionlists, DataTable, DatePicker, DetailsSection, Dropdown, Dialog, Formlayouts, DisplayCode, DropdownMenu, FaqSection, Feature, FeatureSection, FeedList, Footer, Form, Header, HomeScreen, Hooks, HoverCard, Icons, Image, Input, Listlofi, Label, LandingPage, Menubar, Multicolumnlayouts, Newsletter, Notifications, OrderDetailsPage, Pagenav, Pagination, PaymentMethod, Pricing, PricingPage, Prisma, ProductGallery, ProductList, ProductsFeatured, Progress, PromoSection, RadioGroup, ReportIssue, Review, ReviewsSection, ScrollBar, Select, SettingsSection, Sectionheadings, ShoppingCart, Sidebar, Skeleton, Slider, StackedLayouts, StoreFrontPages, StoreNav, Switch, Tabs, Tailwind, Team2, Toggle, Templatepage, Testimonial, Textarea, Tooltip, Usehydrated, AboutLoFi, AccessLoFi, AccountLoFi, ActionBarLoFi, ActivityGoalLoFi, AiChatLoFi, AipromptLoFi, AlertV, AspectRatioLoFi, AuthProviderLoFi, AuthSystemLoFi, AutoCompleteV, BankLoFi, BarcodeLoFi, BasicAuthMiddlewareLoFi, BatcherMiddlewareLoFi, BlockQuoteLoFi, BlocksLoFi, BloFi, BlogEditorLoFi, BlogListLoFi, BlogSidebarLoFi, BoxLoFi, CrmsidebarCalendarLoFi, CalendarLoFi, CallOutLoFi, CardsLoFi, CarouselHeroLoFi, CarServiceLoFi, CascadeTreeLoFi, CascaderLoFi, CategoriesNavigationLoFi, CategoryFiltersSectionCenteredLoFi, CategoryFiltersSectionLoFi, CategoryFiltersSidebarLoFi, ChangelogSectionLoFi, ChatBubbleLoFi, ChatLoFi, CheckTreeLoFi, CheckTreePickerLoFi, CheckboxCardV, CheckboxV, CheckboxMultistateLoFi, CheckboxTristateLoFi, CheckListLoFi, CheckoutCancelLoFi, CheckoutFormLoFi, CheckoutSuccessLoFi, CheckoutVariousLoFi, ClientOnlyMermaidLoFi, ClientOnlyLoFi, CnLoFi, CodeSectionLoFi, CollapsesToIconsLoFi, CollapsibleFileTreeLoFi, ColorPickerLoFi, ComboboxV, ConfigSectionLoFi, ConfirmPopupLoFi, ContactLoFi, ContainerLoFi, ContextStorageMiddlewareLoFi, CookieSettingsLoFi, CoreLoFi, CorsmiddlewareLoFi, CreateAccountLoFi, CreditCardInputLoFi, CssloFi, DashboardLoFi, DashboardSidebarLoFi, DebouncedFetcherAndSubmitLoFi, DebouncedInputLoFi, DefaultStyledLoFi, DeferredContentLoFi, DelegateAnchorsToRemixLoFi, DetailLoFi, DeviceMockupLoFi, DiffLoFi, DisplayCodeLoFi, DockLoFi, DragAndDropLoFi, DrawerLoFi, DrawingLoFi, DrawingV, DropZoneLoFi, EcommerceLoFi, EmbedLoFi, EmblaCarouselLoFi, EmblaCarouselSnapLoFi, EnhancedChartLoFi, ErrorLoFi, ExerciseMinutesLoFi, FabloFi, FaqLoFi, FeatureSectionLoFi, FeedLoFi, FileManagerLoFi, FilterComboboxLoFi, FilterDrawerLoFi, FilterTanStackTableLoFi, FixedMarkerLoFi, FlexboxGridLoFi, FloatingLabelLoFi, FloatingSidebarWithSubmenusLoFi, FooterLoFi, ForgotPasswordLoFi, ForLoFi, FormWizardLoFi, FormsLoFi, Four, FunctionalLeftRightSidebarLoFi, FuseSearchInputLoFi, FuzzyFilterLoFi, FuzzySortLoFi, GalleriaLoFi, GnattChartLoFi, GridLoFi, H, HeaderNavLoFi, HelpLoFi, HeroLoFi, HeroV, HighlightLoFi, HighlightV, HomeLoFi, HoneypotMiddlewareLoFi, IbloFi, IloFi, ImageLoFi, ImageSectionLoFi, InAdialogLoFi, IncentivesCardLoFi, IncIdLoFi, IndicatorLoFi, InlineEditLoFi, InplaceLoFi, InputMaskLoFi, InsetSidebarSecondaryNavLoFi, InstallCodeArraySectionLoFi, InstallCodeSectionLoFi, InstallGithubSectionLoFi, InsufficientPermissionsLoFi, InvoiceLoFi, JsonInputLoFi, JwkauthMiddlewareLoFi, LandingLoFi, LayoutLoFi, LoadErrorPageLoFi, LoadingLoFi, LoadingOverlayLoFi, LoadingPageLoFi,
|
|
3169
|
+
} from "~/components/catalyst-ui";
|
|
3170
|
+
|
|
3171
|
+
import {
|
|
3172
|
+
LoginLoFi, MailLoFi, MarketingLoFi, MegaMenuLoFi, MenuLoFi, MessageLoFi, MeterLoFi, MobileNavLoFi, ModalIntegrationsLoFi, ModalV, MultiCascadeTreeLoFi, MultiCascaderLoFi, MultiComboboxLoFi, MusicLoFi, NavShoppingCartLoFi, NavMainLoFi, NavProjectsLoFi, NavTreeViewLoFi, NavUserLoFi, NestedComboboxLoFi, NestedCommandDialogLoFi, NestedCommandLoFi, NoteSectionLoFi, NotFoundLoFi, NotificationLoFi, OnTheRightLoFi, OrderedListLoFi, OrderHistoryLoFi, OrderListLoFi, OrderSummaryLoFi, OtpLoFi, OverlayPanelLoFi, PageHeaderLoFi, PageHeadingsSectionLoFi, PaginationButtonLoFi, PaginationWrapperLoFi, PanelLoFi, PanelMenuLoFi, PasswordInputLoFi, PaymentFormLoFi, PaymentMethodLoFi, PaymentsLoFi, PdfgeneratorLoFi, PdfSignatureLoFi, PdfViewerLoFi, PinInputLoFi, PlaceholderCodeLoFi, PlaygroundLoFi, PmloFi, PopconfirmLoFi, PrefetchAnchorsLoFi, PrismaClientExtensionLoFi, ProductCategoryLoFi, ProductComparisonLoFi, ProductDetailsLoFi, ProductEditLoFi, ProductListLoFi, ProductPricingLoFi, ProductsLoFi, ProfileCreateLoFi, ProfileListLoFi, ProfileLoFi, ProgressLoFi, ProseLoFi, QaDiscussionLoFi, QaForumLoFi, QrcodeLoFi, RailLoFi, RatingLoFi, ReactHooksDocsLoFi, ReceiptLoFi, RedirectBadRequestsLoFi, RegisterLoFi, RemixAuthLoFi, RemixLinkLoFi, ReportIssueLoFi, RequestIdmiddlewareLoFi, ResetPasswordLoFi, ResponsiveLinkLoFi, RightSidebarLoFi, SaasLoFi, ScaffoldingLoFi, SchedulerLoFi, ScrolltopLoFi, SecFetchParserLoFi, SecureHeadersMiddlewareLoFi, SelectButtonLoFi, ServerTimingMiddlewareLoFi, ServiceRepairFormLoFi, SessionLoFi, SettingsLoFi, ShareLoFi, ShoppingCartLoFi, SidebarAgnosticLoFi, SidebarDetailsLoFi, SidebarInApopoverLoFi, SidebarLoFi, SidebarNavLoFi, SidebarReactRouterLoFi, SidebarStylisticDefaultLoFi, SidebarStylisticDefaultWrightLoFi, SidebarWithSubmenusLoFi, SignatureLoFi, SignUpLoFi, SingletonMiddlewareLoFi, SiteHeaderLoFi, SmallTableLoFi, SpeedDialLoFi, SpinLoFi, SpinnerLoFi, StackedListsLoFi, StackedLoFi, StackLoFi, StateChangeLoFi, StatsLoFi, StatusLoFi, StepFormWizardLoFi, StepsLoFi, StoreFrontLoFi, StoreNavSectionLoFi, StripeLoFi, StyleProviderLoFi, TableLoFi, TabViewLoFi, TagLoFi, TagsInputLoFi, TailwindcssTxtLoFi, TaskboardLoFi, TaskListLoFi, TasksLoFi, TeamMembersLoFi, TerminalLoFi, AutoResizingTextareaLoFi, TextareaV, TextEditorLoFi, ThemeSelectorLoFi, TicketsLoFi, TimelineLoFi, TimelineV, TitleSectionLoFi, ToDoLoFi, ToggleClassLoFi, ToolbarLoFi, TourLoFi, TransferListLoFi, TransitionablePortalLoFi, TransitionLoFi, TravelLoFi, TreeViewLoFi, TriStateCheckboxLoFi, TstableLoFi, TstableV1, TstableV2, TsxsectionLoFi, UnderConstructionLoFi, UsageSectionLoFi, UsageSectionNoDashLoFi, UseAsyncLoFi, UseClickOutsideLoFi, UseCopyToClipboardLoFi, UseCounterLoFi, UseDebouncedFuseSearchLoFi, UseDebounceLoFi, UseEventListenerLoFi, UseExportMarkdownLoFi, UseExportTsxLoFi, UseExternalScriptsLoFi, UseFaviconLoFi, UseFetchLoFi, UseFocusLoFi, UseFocusWithinLoFi, UseFormLoFi, UseFuseSearchLoFi, UseFuzzySearchLoFi, UseGlobalLoadingStateLoFi, UseGlobalNavigationStateLoFi, UseGlobalPendingStateLoFi, UseGlobalSubmittingStateLoFi, UseHoverLoFi, UseHydratedLoFi, UseIntersectionObserverLoFi, UseIntervalLoFi, UseKeyboardLoFi, UseKeyPressLoFi, UseLocalesLoFi, UseLocalStorageLoFi, UseLongPressLoFi, UseMediaQueryLoFi, UseMobileLoFi, UseMountedLoFi, UseMountEffectLoFi, UseMoveLoFi, UseMutationObserverLoFi, UseOnlineStatusLoFi, UseOverlayListenerLoFi, UseOverlayScrollListenerLoFi, UsePressLoFi, UsePreviousLoFi, UserBasedAccessRulesLoFi, UseResizeListenerLoFi, UserLoFi, UserOnboardingLoFi, UseScrollPositionLoFi, UseSessionStorageLoFi, UseShouldHydrateLoFi, UseSlideInLoFi, UseStreamLoFi, UseThrottleLoFi, UseTimeoutLoFi, UseToggleLoFi, UseUnmountEffectLoFi, UseUpdateEffectLoFi, UseWindowSizeLoFi, VerificationLoFi, VirtualizerLoFi, WatermarkLoFi, WithAcalendarLoFi, WithAshoppingCartLoFi, WithAtreeViewLoFi, WithCollapsibleNestedSidebarsLoFi, WithCollapsibleSectionsLoFi, WithCollapsibleSubmenusLoFi, WithCookieMiddlewareLoFi, WithInitialLoadingStateLoFi, WithLoadingNavStateChangesLoFi, WithNavigationGroupedBySectionLoFi, WithSubmenusAsDropdownsLoFi, AnimatedTestimonials, Headers1, TestimonialCarousel, PricingCarousel, FeatureCarousel, PricingCarouselV2, FeatureShowcase, PricingCardSingle, BlogEditor, BlogPost, Cta, LogoClouds, NewsLetter, Carousel2, Carouselitem2, Carouselvariants, Carouselcontentvariants, Carouselitemvariants, Interactiveiconcloud, Cloudprops, Rendercustomicon, Marquee1, PixelImage, Marquee, Imagecrop, Imagecropcontent, Imagecropapply, Imagecropreset, Cropper, ImageZoom, Comparison, Comparisonitem, Comparisonhandle, Carousel, Carouselitem, Avatargroup, Avatargrouptooltip, Threedmarquee, Gridlinehorizontal, Gridlinevertical, Logo, Logoimage, Logotext, Iframe, Iframevariants, Embed, Globe, BlurFade, AvatarCircles, Googlemap, Mapmarker, Carouselv1, InfiniteScroll, Galleria, CarouselWithIndicator, EmblaCarousel, CarouselHero, CarouselSimple, Animatedmodal, Animatedmodalbody, Animatedmodalcontent, Animatedmodalfooter, Animatedmodaltrigger, Animatedmodalclosebutton, Animatedmodalsuccessbutton, Usemodal, Useds, Dsleftrail, Dsrightrail, Dsheader, Dscontent, Dsfooter, Dsavatar, Dsavatarimage, Dsavatarfallback, Dsgroup, Dsgroupaction, Dsgroupcontent, Dsgrouplabel, Dsinput, Dsmenu, Dsmenuaction, Dsmenubadge, Dsmenubutton, Dsmenuitem, Dsmenuskeleton, Dsmenusub, Dsmenusubbutton, Dsmenusubitem, Dsseparator, Dsmenuanchor, Dsmenulink, Dsloading, Usedstheme, Dsthemeselector, TypeDstheme, Dsthemeprovider, Dsprovider, Dsinset, Dstrigger, Dsleft, Dslefticon, Dsright, Dsrighticon, Dsd, Dsdbottom, Dsdtrigger, Dsdportal, Dsdclose, Dsdoverlay, Dsdcontent, Dsdheader, Dsdfooter, Dsdtitle, Dsddescription, Dsdm, Dsdmportal, Dsdmtrigger, Dsdmcontent, Dsdmgroup, Dsdmlabel, Dsdmitem, Dsdmcheckboxitem, Dsdmradiogroup, Dsdmradioitem, Dsdmseparator, Dsdmshortcut, Dsdmsub, Dsdmsubtrigger, Dsdmsubcontent, Dsdmanchor, Dsc, Dsctrigger, Dsccontent, Sidebar, Sidebarcontent, Sidebarfooter, Sidebargroup, Sidebargroupaction, Sidebargroupcontent, Sidebargrouplabel, Sidebarheader, Sidebarinput, Sidebarinset, Sidebarmenu, Sidebarmenuaction, Sidebarmenubadge, Sidebarmenubutton, Sidebarmenuitem, Sidebarmenuskeleton, Sidebarmenusub, Sidebarmenusubbutton, Sidebarmenusubitem, Sidebarprovider, Sidebarrail, Sidebarseparator, Sidebartrigger, Usesidebar, Modalv1, TransitionablePortal, ModalIntegrations, LoadingOverlay, OverlayPanel, ConfirmPopup, Popconfirm, Dialogstack, Dialogstacktrigger, Dialogstackoverlay, Dialogstackbody, Dialogstackcontent, Dialogstackheader, Dialogstacktitle, Dialogstackdescription, Dialogstackfooter, Dialogstacknext, Dialogstackprevious, AnimatedTooltip, PdfAction, GenerateCustomPdf, GeneratePdf, PdfGenerator, PdfSender, PdfSigner, PrintPdf, TemplateBuilder, Playscansound, Barcodescanner, Cashdrawerservice, Validateapppath, Validatecommandargs, Validateexecution, Usecashdrawer, Table, Tableheader, Tablebody, Tablefooter, Tablehead, Tablerow, Tablecell, Tablecaption, Item, Itemmedia, Itemcontent, Itemactions, Itemgroup, Itemseparator, Itemtitle, Itemdescription, Itemheader, Itemfooter, Pagination, Paginationcontent, Paginationellipsis, Paginationitem, Paginationlink, Paginationnext, Paginationprevious, Paginationwithhrefs, TypePaginationprops, TypePaginationlinkprops, Field, Fieldlabel, Fielddescription, Fielderror, Chartcontainer, Charttooltip, Charttooltipcontent, Chartlegend, Chartlegendcontent, Chartstyle, Badge, Badgevariants, Avatar, Avatarimage, Avatarfallback, Resizablehandle, Resizablepanel, Resizablepanelgroup, Breadcrumb, Breadcrumblist, Breadcrumbitem, Breadcrumblink, Breadcrumbpage, Breadcrumbseparator, Breadcrumbellipsis, Inputotp, Inputotpgroup, Inputotpslot, Inputotpseparator, CalendarTailwindV4, Navigationmenu, Navigationmenulist, Navigationmenuitem, Navigationmenucontent, Navigationmenutrigger, Navigationmenulink, Navigationmenuindicator, Navigationmenuviewport, Navigationmenutriggerstyle, Contextmenu, Contextmenutrigger, Contextmenucontent, Contextmenuitem, Contextmenucheckboxitem, Contextmenuradioitem, Contextmenulabel, Contextmenuseparator, Contextmenushortcut, Contextmenugroup, Contextmenuportal, Contextmenusub,
|
|
3173
|
+
} from "~/components/catalyst-ui";
|
|
3174
|
+
|
|
3175
|
+
import {
|
|
3176
|
+
Contextmenusubcontent, Contextmenusubtrigger, Contextmenuradiogroup, Tabs, Tabslist, Tabstrigger, Tabscontent, Virtualizer, Virtualizerdemo, Virtualizerusage, Accordion, Accordionitem, Accordiontrigger, Accordioncontent, Button, Buttonvariants, Command, Commanddialog, Commandempty, Commandgroup, Commandinput, Commanditem, Commandlist, Commandseparator, Commandshortcut, Radiogroup, Radiogroupitem, Togglegroup, Togglegroupitem, Card, Cardheader, Cardfooter, Cardtitle, Carddescription, Cardcontent, Collapsible, Collapsiblecontent, Collapsibletrigger, Separator, Dropdownmenu, Dropdownmenucontent, Dropdownmenugroup, Dropdownmenuitem, Dropdownmenulabel, Dropdownmenuportal, Dropdownmenuseparator, Dropdownmenushortcut, Dropdownmenusub, Dropdownmenusubcontent, Dropdownmenusubtrigger, Dropdownmenutrigger, Select, Selectcontent, Selectitem, Selecttrigger, Selectvalue, Alertdialog, Alertdialogportal, Alertdialogoverlay, Alertdialogtrigger, Alertdialogcontent, Alertdialogheader, Alertdialogfooter, Alertdialogtitle, Alertdialogdescription, Alertdialogaction, Alertdialogcancel, Dialog, Dialogclose, Dialogcontent, Dialogdescription, Dialogfooter, Dialogheader, Dialogoverlay, Dialogportal, Dialogtitle, Dialogtrigger, Drawer, Drawerportal, Draweroverlay, Drawertrigger, Drawerclose, Drawercontent, Drawerheader, Drawerfooter, Drawertitle, Drawerdescription, Hovercard, Hovercardtrigger, Hovercardcontent, Popover, Popovertrigger, Popovercontent, Popoverclose, Popoverheader, Popoverfooter, Popovertitle, Popoverdescription, Popoveranchor, Tooltipprovider, Tooltip, Tooltiptrigger, Tooltipcontent, Sheet, Sheetportal, Sheetoverlay, Sheettrigger, Sheetclose, Sheetcontent, Sheetheader, Sheetfooter, Sheettitle, Sheetdescription, TypeSheetcontentprops, AiInputSearch, Ailoadingstate, Aitextloading, AiPromptInput, AiVoice, Inputbyok, Getopenaiapikey, Chainofthought, Chainofthoughtstep, Chainofthoughttrigger, Chainofthoughtcontent, Chainofthoughtitem, Chatcontainerroot, Chatcontainercontent, Chatcontainerscrollanchor, Codeblock, Codeblockcode, Codeblockgroup, Fileupload, Fileuploadtrigger, Fileuploadcontent, JsxPreview, Loader, Circularloader, Classicloader, Pulseloader, Pulsedotloader, Dotsloader, Typingloader, Waveloader, Barsloader, Terminalloader, Textblinkloader, Textshimmerloader, Textdotsloader, Markdown, Message, Messageavatar, Messagecontent, Messageactions, Messageaction, Promptinput, Promptinputtextarea, Promptinputactions, Promptinputaction, Promptsuggestion, Reasoning, Reasoningtrigger, Reasoningcontent, Responsestream, Usetextstream, Scrollbutton, Source, Sourcetrigger, Sourcecontent, Steps, Stepsitem, Stepstrigger, Stepscontent, Stepsbar, Systemmessage, Tool, Conversationpromptinput, Messagecomponent, Loadingmessage, Errormessage, Toolcallingchatbot, Messagecomponent, Loadingmessage, Errormessage, DevListSidebar, AppSidebar, NavQuickActions, NavAppointments, Messenger, ActiveToc, AnalogClock, Calendars, DigitalClock, LoadingSidebar, NavActions, NavAutoSearch, NavFavorites, NavHeader, NavMain, NavMessenger, NavProjects, NavSecondary, NavShoppingCart, NavShoppingCartcatlstui, NavTreeView, NavUser, NavWorkspaces, NavigationThemeSelector, OptInForm, PageHeader, SearchCommand, SearchForm, SidebarDialog, TeamSwitcher, Toc, Tree, VersionSwitcher, Wishlist, FilterTanstackTable, DefaultColumnHeader, Dtable, Draggabletableheader, PropsTable, LexicalEditor, IconAliases, CodeHighlightPlugin, Colorwheel, Colorthemes, MdRenderGenie, MonacoEditor, ScriptEditor, ScriptViewer, ColorWheel, DualEditor, Loader, Meta, MarkdownEditor, MarkdownRenderer, MdRenderer, MonacoSidebar, Cellcontext, Tablecontext, Inserttabledialog, Tableplugin, TailwindConverter, ThemeBuilder, ToolbarPlugin, LineShadowText, TextAnimate, TextHighlighter, TextReveal, WordRotate, TypingAnimation, VideoText, HyperText, ComicText, Textmorph, Scrolltext, Scrolltextword, Scrolltextletter, Typewriter, Typewriteronce, Typewriterword, SwooshText, SlicedText, ShimmerText, MatrixText, GlitchText, DynamicText, Highlight, Highlightdemo, Highlightusage, Prose, H5, H4, H3, Typography, OrderedList, P, Pm, UnorderedList, BlockQuote, CheckList, Div, H1, H2, B, I, Ib, Keyboardshortcut, Keyboardshortcutsprovider, Usekeyboardshortcut, QrCode1, Null, Barcode, Watermark, Transition, Scrolltop, Scrollxy, Scrolly, Scrollx, Scroll, ClientOnlyMermaid, Cn, Timeout, Ripple, Ripple, FormHoneypot, RespondtoForContentNegotiation, JsonHashResponse, SafeRedirects, PreloadRouteAssets, NamedActions, RollingCookie, ServerSentEvents, CreateTypedCookie, CreateTypedSessionStorage, Responses, IsPrefetch, GetHeaders, GetClientLocales, GetClientIpAddress, ExternalScriptsHandle, Cors, ServerOnly, CacheAssets, Promise, UserBasedAccessRules, PrismaClientExtension, BasicAuthMiddleware, BatcherMiddleware, ContextStorageMiddleware, Corsmiddleware, HoneypotMiddleware, JwkauthMiddleware, RequestIdmiddleware, SecFetchParser, SecureHeadersMiddleware, ServerTimingMiddleware, SingletonMiddleware, WithCookieMiddleware, Options, Incid, ExistingSearchParams, GetFetcherType, FetcherContext, AuthProvider, Styleprovider, Usestyles, Usestyleupdater, Getstyle, Styled, Createstylehook, Usepagestyle, Usecontainerstyle, Useheaderstyle, Usecardstyle, Useimagestyle, Useparagraphstyle, Usegridstyle, Usespacingstyle, Usepaddingstyle, Usemarginstyle, Pagediv, Containerdiv, Headerdiv, Carddiv, Imagediv, Paragraphdiv, Titleh1, Titleh2, Titleh3, Titleh4, Subtitlep, Flexcenter, Flexbetween, Flexcol, Appwithstyleprovider, Styleproviderdemo, Dynamicstyledemo, Usenavigationcontext, Navigationprovider, DynamicLinks, Deferredcontent, Deferredimage, Deferredtable, Deferredcard, Tailwindcss.txt, FilenameIconMap, RemixAuth, OtpAuthSession, OtpClientAuth, Sendemail, Sendauthemail, Authsessionstorage, Getauthsession, Clientsession, Redirectsessionstorage, Customersession, Sidebarsessionstorage, PrismaClient, BuildPackageJson, DbLocal, DbRemote, AccountBilling, AccountActiveSessions, AccountActivityLog, AccountApiKeys, AccountAppearanceSettings, AccountAvatarUpload, AccountBackupCodes, AccountBasicInformationForm, AccountChangePassword, AccountConnectedAccounts, AccountDangerZone, AccountEmailPreferences, AccountNotificationInbox, AccountNotificationPrefrences, AccountPrivacySettings, AccountReferralProgram, AccountSecuritySettings, AccountStorageManagement, AccountTeamMembers, AccountThirdPartyIntegrations, AccountTwoFactorAuth, AccountUsageAndAnalytics, AccountWebhooks, BlogCardsLoadMore, BlogCompactList, BlogFeaturedPosts, BlogGridWSearch, BlogHeroFeaturedPost, BlogLargePreview, BlogNewsletterSignup, BlogPostsWTags, BlogRectangularLayout, BlogSimpleCards, BlogWFilterChips, BlogWPagination, BlogWSidebar, ContactCallbackRequest, ContactFormWMap, ContactHeroSection, ContactMinimalForm, ContactMultiStepForm, ContactMultipleLocations, ContactSectionsWCard, ContactSectionsWImage, ContactSupportOptions, ContactTeamMembers, ContactWDarkCard, ContactWFaq, ContactWFileUpload, ContactWNewsletter, CrudActivityFeed, CrudAdvancedFilters, CrudBulkEditProducts, CrudCreateBlogPost, CrudDataTable, CrudDeleteConfirmationDialog, CrudDuplicateRecord, CrudEditProductForm, CrudEditUserProfile, CrudImportExportData, CrudInlineEditTable, CrudKanbanBoard, CrudManageRelationships, CrudProductDetailView, CrudSettingsForm, CrudStatusWorkflow, CrudUserListManagement, FooterCentered, FooterCompany, FooterMinimal, FooterMultiColumnFooter, FooterNewletter, FooterSimple, FooterWCta, FooterWLinks, FooterWLocalization, FooterWUpgradeCta, PromptCompactPrompt, PromptFullFeaturedPrompt, PromptInputAndModelSelector, PromptInput, TablesColumnVisbility, TablesDensityToggle, TablesExpandableRows, TablesExportOptions, TablesFilterableDataTable, TablesGroupedRows, TablesInlineEditing, TablesPageNavigation, TablesQuickFilters, TablesRowMenu, TablesRowSelection, TablesSortableColumns, TablesStickyHeader, TablesSummaryFooter, TablesWActions, TestimonialsBento, TestimonialsCentered, TestimonialsCompany, TestimonialsDarkCarousel, TestimonialsGridWAdd, TestimonialsImageCarousel, TestimonialsLargeQuote, TestimonialsMarquee, TestimonialsMasonry, TestimonialsMinimalSlider, TestimonialsSimple, TestimonialsSplit, TestimonialsVideo, TestimonialsWCards, TestimonialsWStats, TestimonialsWall, ScrollExpanseHero, PricingSectionWithComparison, MinWorldMap, MinTimeline, MinTestimonialsColumns, MinPricing, MinPricingTable, MinLayoutGrid, MinFeatureSection, MinCarousel, MinBentoGrid, MinActivityCard, InteractiveCheckout, ImagesSlider, HeroWImageTextAndTwoButtons, HeroGalleryScrollAnimation, HeroFashion, GlareCard, Gallery4, FullscreenCalendar, FocusCards, FeatureWImageCarousel, FeatureSectionWithGrid, FeatureSectionWHoverEffects, ExpandableCard, CircularTestimonials,
|
|
3177
|
+
} from "~/components/catalyst-ui";
|
|
3178
|
+
|
|
3179
|
+
import {
|
|
3180
|
+
ContainerScrollAnimation, ChatCard, MinPricingSection, MinPricingCards, Minherosection, Logo, AnimatedHero, MinFeature, Minfaqsection, Minfaqitem, BlogCategoriesNav, About3, Awards1, Banner1, Blogpost1, Careers4, Casestudies2, Casestudy8, Changelog1, Codeexample1, Community1, Compare7, Compliance1, Contact7, Content1, Cta10, Cta11, Download2, Experience1, Experience5, Faq1, Feature1, Feature2, Feature13, Feature17, Feature43, Feature51, Feature72, Feature73, Feature166, Feature197, Footer2, Gallery6, Hero1, Hero3, Hero7, Hero45, Hero47, Hero115, Integration3, List2, Login1, Logos8, Pricing2, Pricing4, Pricing6, Process1, Project1, Ratecard2, Resource1, Service1, Services4, Signup1, Stats8, Team1, Testimonial10, Timeline9, Waitlist1, Qrcodegenerator, TextEditor, Tickets, ToDo, Table, TaskList, Taskboard, Tasks, StatsCard, StatsSimple, StatsSimpleGrid, StatsWithDescription, Stacked, SidebarDetails, Settings, SettingsScreenSidebar, SettingsScreenStacked, Settings1, Settings2, Settings3, Settings4, Settings5, Settings6, Settings7, SectionHeadingWithDescription, SectionHeadingWithInputGroup, Scheduler, ScreenLock, PageNav, MobileNav, Mail, LockInScreen, Json, Kanban, Home, HomeScreenStacked, FuturisticDash, FilterDrawer, FilterDrawer3, FilterDrawer1, FilterDrawer2, FileManager, FileManager1, FeedComponents, FeedListMultipleItemTypes, FeedLists, CalendarV1, Drawer, DrawerDialogDragAndDrop, DescriptionList, DescriptionListNarrow, Dashboard, DashboardSidebar, CardHeadingWithDescription, ContentCentered, ContentSplitWithImage, ContentTwoColumnWithScreenshot, CollarabtiveCanvas, FormBlock, RoadmapBlock, PricingBlock, Hero2, WidgetCard, Calculator, Cards, UserOnboarding, Verification, Verification1, VerticalNav, UpdateUserModal, SignUp, SignUp1, SignUp2, Register, RemixAuthLogin, RemixAuthLogout, RemixAuthResetPassword, RemixAuthSignup, ResetPassword, ResetPassword1, OtpLogin, OtpLogout, OtpMagicLink, OtpVerify, OtpSignup, ForgotPassword, Login, Login2, Login4, Login5, Login6, Login7, Login8, Login9, Login10, PageHeadingsSection, PickerWithInput, DateOfBirth, Categorypage, Checkoutpage, Editproductpage, Orderdetailspage, Orderhistorypage, Pricingpage, Productpage, Productpage2, Shoppingcartpage, Storefront, PricingComparison, PricingPage1, PricingSectionCards, PricingSectionCards1, PricingSinglePriceDetails, PricingThreeTiersAndFeatureComparison, ProductDesecription, ProductListBorderGrid, ProductListFullDetails, ProductListSupportingText, ProductListTallImages, ProductListsSimple, ProductListsWInlinePrice, ProductOverviewsGalleryExpandable, ProductOverviewsTabs, ProductOverviewsTieredImages, ProductPage, ProductPage1, ProductPricing, ProductPricing1, ProductPricing2, ProductPricing3, Products, Products1, Products2, Products3, Products4, Products5, Products6, ProductCategory, ProductCategory1, ProductCategory2, ProductCategory3, ProductCategory4, ProductCategory5, ProductCategory6, ProductComparison, ProductComparison1, ProductDetails, ProductDetails1, ProductDetails2, ProductDetails3, ProductDetails4, ProductEdit, OrderDetailsPage2, OrderHistoryPage, OrderHistory1, OrderHistory6, OrderSummariesWSplitImage, OrderSummary, CheckoutCancel, CheckoutForm1, CheckoutForm2, CheckoutForm3, CheckoutForm4, CheckoutForm5, CheckoutForm6, CheckoutForm7, CheckoutSuccess, CheckoutVarious, PaymentForm, PaymentForm1, PaymentForm2, PaymentForm3, PaymentForm4, PaymentForm5, PaymentForm6, PaymentForm7, PaymentForm8, PaymentForm9, ShoppingCartExtendedSummary, ShoppingCartPage, ShoppingCartPage1, ShoppingCartSingleColumn, ShoppingCartTwoColumn, ShoppingCart1, ShoppingCart2, ShoppingCart3, Invoice, Invoice1, Invoice2, IncentivesBanner, IncentivesCard, IncentivesFeature, IncentivesSimple, Receipt, StoreFront, StoreFrontPage, StoreFront1, StoreFront2, StoreFront3, StoreNavImageGrid, StoreNavSection, StoreShowFunctionAndCode, CategoriesNavigation, CategoryFiltersSection, CategoryFiltersSectionCentered, CategoryFiltersSidebar, CategoryPage1, CategoryPreviewScrollingCards, CategoryPreviewSplitImages, CategoryPreviewThreeColumn, Access, Account, AccountblocksV1, AppleNotesClone, BankV1, Bank, BloombergTerminal, BookmarkHub, ActivityGoal, CarService, Imchat, ChatQuoteInterface, Config, Cyberpunk, Detail, DotMatrixGlobe, DynamicRain, DynamicTodo, FontPairingTool, FrostedGlass, GlassmorphicRichTextEditor, GlimmeringMap, GnattChart, Hoodie, LoanApp, MacosWidget, Music, Note, PageTransitions, Parallax, Playground, RotatingEarth, ScrollMotion, ServiceRepairForm, ServiceRepairForm1, ServiceRepairForm2, ServiceRepairForm3, Stripe, Strip2, Travel, Tsx, Usage, UsageSectionNoDash, VoiceWaveform, WebScraper, ThreeDCard, AsciiConverter, BentoPortfolioDesign, CardStock, Curriculum, FeatureVoting, LinearCardInteraction, NewLandingPage, Nexorasim, ParticleAnimation, SnakeGame, Webcamcircles, ColumnButtonInputCombo, AiChatUiDesign, Aiartgallery, ModernChatbot, AiChatV1, AiChatV2, AiChat, ConversationActions, ConversationAvatars, ConversationPromptInput, ConversationScrollBottom, FullChatApp, FullConversation, PromptAutocompleteHighlight, PromptInputActions, PromptInputSuggestions, SidebarChatHistory
|
|
3181
|
+
} from "~/components/catalyst-ui";
|
|
3182
|
+
|
|
3183
|
+
// Create scope for React Live
|
|
3184
|
+
const reactLiveScope = {
|
|
3185
|
+
React, useState, useEffect, useRef, useCallback, useMemo, useContext, useReducer,
|
|
3186
|
+
|
|
3187
|
+
Particles, Vortex, SparklesCore, RetroGrid, InteractiveGridPattern, HexagonBackground, BackgroundGradient, OrbitingCircles, AnimatedBeam, BackgroundPaths, FlickeringGrid, DotPattern, DottedMap, Rating1,Ratingbutton1, Themetogglebutton,Usethemetransition, ThemeSwitcher, TextRevealButton, RippleButton, Rate,Ratingbutton, LiquidButton, Inputbutton,Inputbuttonprovider,Inputbuttonaction,Inputbuttonsubmit,Inputbuttoninput, CopyButton, FlipButton, ShimmerButton, AnimatedThemeToggler, AttractButton, SlideButton, CommandButton, HoldButton, ParticleButton, SocialButton, SwitchButton, Buttongroup,Connectedbuttongroup, Floatbutton,Floatbuttongroup, TooltipButton, SplitButton, Burger,Burgerbutton,Burgernavigation,Burgermenudemo, CopyText, ExportFile, FormButton, ToggleButton, Enhancedchart,Enhancedchartdemo, Terminal,Animatedspan,Typinganimation, Sandboxtabs2,Sandboxtabslist2,Sandboxtabstrigger2,Sandboxtabscontent2,Sandboxfileexplorer2,Sandboxcodeeditor2,Sandboxpreview2,Sandboxconsole2, CodeComparison, Sandboxtabs,Sandboxtabslist,Sandboxtabstrigger,Sandboxtabscontent,Sandboxcodeeditor,Sandboxconsole,Sandboxfileexplorer,Sandboxlayout,Sandboxpreview,Sandboxprovider, Codeblocksection,Codeblock,Codeblockheader,Codeblockselect,Codeblockselecttrigger,Codeblockselectvalue,Codeblockselectcontent,Codeblockselectitem,Codeblockcopybutton,Codeblockbody,Codeblockitem,Codeblockcontent, Codeeditor,Copybutton, CodeSection, CssSection, HtmlSection, DisplayInstallCode, DisplayInstallCodeArray, DisplayGithubInstall, JsonSection, Propscode,Propscopybutton,Propscopybuttongroup,Allprops,Basicallprops, TerminalCode, TsxSection, SlidingNumber, Counter, Threedcard,Cardbody,Carditem, Badge1,Badgewrapper1,Badgevariants,Badgewrappervariants, Iphone15Pro, Safari, Android, NumberTicker, Tweetcard1,Tweetskeleton1,Tweetnotfound1,Magictweet1,Tweetheader1,Tweetbody1,Tweetmedia1, Tags,Tagstrigger,Tagsvalue,Tagscontent,Tagsinput,Tagslist,Tagsempty,Tagsgroup,Tagsitem, Pill,Pillavatar,Pillbutton,Pillstatus,Pillindicator,Pilldelta,Pillicon,Pillavatargroup, TweetCard, CardStack, ChatBubble, DeviceMockup, Checkabletag,Tag, Comment, CardFlip, FlyoutMenu, ActivityCard, MagicCard, Commandwcombobox, Combobox2,Comboboxtrigger2,Comboboxcontent2,Comboboxinput2,Comboboxlist2,Comboboxempty2,Comboboxgroup2,Comboboxitem2,Comboboxseparator2,Comboboxcreatenew2, AnimatedHero1, Creditcard,Creditcardflipper,Creditcardfront,Creditcardback,Creditcardname,Creditcardnumber,Creditcardexpiry,Creditcardcvv,Creditcardchip,Creditcardlogo,Creditcardserviceprovider,Creditcardmagstripe, Ticker,Tickericon,Tickersymbol,Tickerprice,Tickerpricechange, Meter, Diff,Diffdemo,Diffusage, TimelineV1, Feed, Stat, Treeview,Treeviewlabel,Treeviewtree,Treeviewbranchcontrol,Treeviewbranchtext,Treeviewbranchindicator,Treeviewitem,Treeviewitemtext,Treeviewnode,Treeviewvariants,Treeitemvariants, Timeline, Faq, Highlight, Datalist,datalistitem,datalistlabel,datalistvalue,datalistkeyvalue,datalistrow,datalistactions,datalistactionmenu, DescriptionLists, Stats, OrderList, TransferList, Colorpicker3,Colorpickeralpha,Colorpickereyedropper,Colorpickerformat,Colorpickerhue,Colorpickeroutput,Colorpickerselection, ColorPicker1, ColorPicker, Choicebox,Choiceboxitem,Choiceboxitemheader,Choiceboxitemtitle,Choiceboxitemsubtitle,Choiceboxitemdescription,Choiceboxitemcontent,Choiceboxitemindicator, AutoResizingTextarea, Textareav2, PasswordInput, DebouncedInput, KeyFilter, InputMask, Inputtext, LabelVariant, InputGroup, FloatingLabel, FloatLabel, StepFormWizard, FormWizard, Fieldset,fieldsetcontent,fieldsetfooter, Forms, MultiCascadeTree, Multicascader,Multicascaderdemo, Checktree,Checktreedemo, CheckTreePicker, CascadeTree, Cascader, TreePicker, ProfileDropdown, ActionSearchBar, MultiSelect, Listbox, Combobox0, ComboboxV1, MultiCombobox, Combobox, NestedCombobox, NestedCommandDialog, NestedCommand, CommandV2, FilterCombobox, Autocomplete,
|
|
3188
|
+
FuseSearchInput, FuzzyFilter, FuzzySort, SearchInput, Toggleclass, CheckboxCard, CheckboxMultistate, CheckboxTristate, TriStateCheckbox, SelectButton, Radiotile,Radiotilegroup, CheckboxCardV1, CheckboxV1, TagsInput, PillsInput, PinInput, Rating, Creditcardinput,Expiryinput,Cvvinput,Creditcardinputdemo, JsonInput, Inplace, InlineEdit, InputIcon, ActionPanel, ActionBar, Iconfield, Banner2,Bannericon2,Bannertitle2,Banneraction2,Bannerclose2, Banner, Announcement, DotLoader, Status, Toast, Alertv1,Alertdescription,Alerttitle, Indicator, Alert, CallOut, EmptyState, SpinnerV4, SpinnerV3, SpinnerV2, Spinnerv1, Empty, InsufficientPermissions, Dimmer, RatingDemoExample, Underconstruction, Unauthorized, Notification, Error, Spinner, LoadErrorPage, Loading, LoadingPage, EditEmployeeSchedule, EmployeeSchedule, ViewPunchClock, PunchClock, CardHeadings, PageHeading, SectionHeadings, PinList, Tree,Folder,File,Collapsebutton, Listprovider,Listgroup,Listheader,Listitems,Listitem, StackedLists, Item, Rail, Feeds, GridLists, Datatable,Simpletabledemo,Cardtabledemo,Borderedtabledemo,Fullwidthtabledemo,Darktabledemo, MultiColumnLayouts, StackedLayout, SidebarLayout, Bentogrid,Bentocard, CollapsibleSection, Panel, Group, Bentogrid,Bentogriditem, Stack, Layout,Header,Content,Footer,Sidebar, Grid,Row,Col, For, Flexboxgrid,Flexboxgriditem, Container, Center, Box, AbsoluteCenter, Card, List, MediaObject, Bentogrid1,Bentocard1, PlaceholderCodeSection, HeroVideoDialog, Scaffolding, Contactsection,Contact, Content, Team, Navbar1, Navbar2, Navbar3, Navbar4, Navbar5, Navbar6, Navbar7, Navbar8, Navbar9, Navbar10, Navbar11, Navbar12, Navbar13, Navbar14, Navbar15, Navbar16, Navbar17, Navbar18, MenuDock, MessageDock, LimelightNav, Fab, FabMenu, EFab, Dock2,Dock2icon, Toolbar,Toolbargroup,Toolbarseparator,Toolbarbutton,Toolbarsearch, SmoothTab, Actionbar,Actionbarcontent,Actionbardescription, Affix, Kbd, TabMenu, ThemeSelector, Tabview,Tabpanel, SpeedDial, Remixlink,Remixnavlink,Remixlinktext,Remixnavlinktext, PanelMenu, Menu, MegaMenu, Dock,Dockvariants,Dockitemvariants,TypeDockprops,TypeDockitem, Steps, Anchor, HeaderNav, Menubar,Menubarcontent,Menubaritem,Menubarmenu,Menubarseparator,Menubarshortcut,Menubartrigger,Menubarportal,Menubargroup,Menubarlabel,Menubarcheckboxitem,Menubarradioitem,Menubarradiogroup,Menubarsub,Menubarsubtrigger,Menubarsubcontent, Pageactions,Pageheader,Pageheaderdescription,Pageheaderheading, PaginationWrapper, PaginationButton, SiteHeader, ScriptsEditor, ScriptsViewer, CalendarForSidebar, DrawerDatePicker, Calendarprovider,Calendardate,Calendardatepicker,Calendarmonthpicker,Calendaryearpicker,Calendardatepagination,Calendarheader,Calendarbody,Calendaritem,Usecalendarmonth,Usecalendaryear,Monthsforlocale,Daysforlocale, Relativetime,Relativetimezone,Relativetimezonedisplay,Relativetimezonedate,Relativetimezonelabel, Minicalendar,Minicalendarnavigation,Minicalendardays,Minicalendarday, TimePicker, PopoverDateInput, ModalDateInput, Dockeddatepicker,Dockeddatepickertrigger, TimePickerInput, TimePickerDial, CategoryFilters, CategoryPreviews, CheckoutForms, Incentives, OrderHistory, OrderSummaries, ProductCard, ProductFeatures, ProductLists, ProductOverview, ProductQuickviews, PromoSections, Reviews, ShoppingCarts, StoreNavigation, PromotionEngine, PromotionsManager, CashTillManager, CashDrawerWizard, UseCopyToClipboard, UseLocalStorageAutoSave, UseExpandable, UseGoogleFont, UseDocumentTitle, UseEventCallback, UseIsClient, UseIsomorphicLayoutEffect, UseReadLocalStorage, UseResizeObserver, UseScript, UseScreen, UseScrollLock, UseOnClickOutside, UseSecFetchParser, UseTimer, UseApiKey, UseBreakpoint, UseExternalScripts, UseSlideIn, UseStream, DebouncedFetcherAndSubmit, PrefetchAnchors,
|
|
3189
|
+
DelegateAnchorsToRemixUsedelegatedanchors, UseShouldHydrate, UseLocales, UseGlobalLoadingState, UseGlobalSubmittingState, UseGlobalPendingState, UseGlobalNavigationState, UseEventListener, UseExportMarkdown, UseHydrated, UseFocusWithin, UseFocus, UsePress, UseLongPress, UseKeyboard, UseHover, UseMove, UseMountEffect, UseUpdateEffect, UseUnmountEffect, UseOverlayListener, UseOverlayScrollListener, UseFavicon, UseResizeListener, UseMobile, UseMounted, UseMutationObserver, UseExportTsx, UseFuzzySearch, UseFuseSearch, UseDebouncedFuseSearch, UseMediaQuery, UseLocalStorage, UseSessionStorage, UseDebounce, UseThrottle, UsePrevious, UseToggle, UseCounter, UseInterval, UseTimeout, UseClickOutside, UseKeyPress, UseOnlineStatus, UseWindowSize, UseScrollPosition, UseIntersectionObserver, UseAsync, UseFetch, UseForm, Scrollvelocitycontainer,Scrollvelocityrow,Wrap, Lens, Pointer, SmoothCursor, Motionhighlight,Motionhighlightitem,Usemotionhighlight, Magnetic, Kanbanprovider,Kanbanboard,Kanbanheader,Kanbancards,Kanbancard, Ganttprovider,Gantttimeline,Ganttheader,Ganttsidebar,Ganttsidebargroup,Ganttsidebaritem,Ganttfeaturelist,Ganttfeaturelistgroup,Ganttfeaturerow,Ganttfeatureitem,Gantttoday,Ganttmarker,Ganttcreatemarkertrigger,Useganttdragging,Useganttscrollx, Dropzone,Dropzonecontent,Dropzoneemptystate, Cursorprovider,Cursor,Cursorfollow,Usecursor, Pincontainer,Pinperspective, Cardcontainer,Cardbody,Carditem, Spoiler, Sticky, InPlace, ActionSheet, FixedMarker, Ripple, IconCloud, Tour1, Tour, MouseEffectCard, CurrencyTransfer, FileUploadV1, FileSaver, ExcelExport, FileUpload, Pdfgenerator,Pdfgeneratordemo, PdfSignature, Pdfsignature,Pdfviewer, Signature, Aiprompt,Aipromptview,Aipromptoutputview,Aipromptcommandsview, Drawing, Drawingsurface,Drawingtoolbar,Drawingv2, DropZone, Draggable,Draggablecard, Taskboard,Taskcolumn,Taskcard, Sortable,Sortableitem,Sortablehandle, Spreadsheet, ColorSwatch, DropZoneExternal, Terminal, About, Navbutton, Navbuttonstytled, Hero, Exportfile, Verticalnavigation, Emptystate, Flyoutmenu, Logoclouds, Editor, Buttonicon, Buttonlink, Buttonloading, Buttongroup, Calendarforsidebar, CalendarmultidayLofi, Copytext, Debouncedinput, AccountForm, Atom, AlertDialog, Accordian, AspectRatio, Authenticator, Avatar, Badge, BannerLofi, BentoGrid, Blog, ButtonLofi, Breadcrumb, Calendar, CardHeader, CardHeading, Carousel, Cart, CategoryFilter, CategoryPage, Checkbox, CheckoutForm, CheckoutPage, CheckoutPage2, ClientOnly, Collapsible, Component, Columns, ContactSection, ContentSection, CookieSettings, CtaSection, Data, Descriptionlists, DataTable, DatePicker, DetailsSection, Dropdown, Dialog, Formlayouts, DisplayCode, DropdownMenu, FaqSection, Feature, FeatureSection, FeedList, Footer, Form, Header, HomeScreen, Hooks, HoverCard, Icons, Image, Input, Listlofi, Label, LandingPage, Menubar, Multicolumnlayouts, Newsletter, Notifications, OrderDetailsPage, Pagenav, Pagination, PaymentMethod, Pricing, PricingPage, Prisma, ProductGallery, ProductList, ProductsFeatured, Progress, PromoSection, RadioGroup, ReportIssue, Review, ReviewsSection, ScrollBar, Select, SettingsSection, Sectionheadings, ShoppingCart, Sidebar, Skeleton, Slider, StackedLayouts, StoreFrontPages, StoreNav, Switch, Tabs, Tailwind, Team2, Toggle, Templatepage, Testimonial, Textarea, Tooltip, Usehydrated, AboutLoFi, AccessLoFi, AccountLoFi, ActionBarLoFi, ActivityGoalLoFi, AiChatLoFi, AipromptLoFi, AlertV, AspectRatioLoFi, AuthProviderLoFi, AuthSystemLoFi, AutoCompleteV, BankLoFi, BarcodeLoFi, BasicAuthMiddlewareLoFi, BatcherMiddlewareLoFi, BlockQuoteLoFi, BlocksLoFi, BloFi, BlogEditorLoFi, BlogListLoFi, BlogSidebarLoFi, BoxLoFi, CrmsidebarCalendarLoFi, CalendarLoFi, CallOutLoFi, CardsLoFi, CarouselHeroLoFi, CarServiceLoFi, CascadeTreeLoFi, CascaderLoFi, CategoriesNavigationLoFi, CategoryFiltersSectionCenteredLoFi, CategoryFiltersSectionLoFi, CategoryFiltersSidebarLoFi, ChangelogSectionLoFi, ChatBubbleLoFi, ChatLoFi, CheckTreeLoFi, CheckTreePickerLoFi, CheckboxCardV, CheckboxV, CheckboxMultistateLoFi, CheckboxTristateLoFi, CheckListLoFi, CheckoutCancelLoFi, CheckoutFormLoFi, CheckoutSuccessLoFi, CheckoutVariousLoFi, ClientOnlyMermaidLoFi, ClientOnlyLoFi, CnLoFi, CodeSectionLoFi, CollapsesToIconsLoFi, CollapsibleFileTreeLoFi, ColorPickerLoFi, ComboboxV, ConfigSectionLoFi, ConfirmPopupLoFi, ContactLoFi, ContainerLoFi, ContextStorageMiddlewareLoFi, CookieSettingsLoFi, CoreLoFi, CorsmiddlewareLoFi, CreateAccountLoFi, CreditCardInputLoFi, CssloFi, DashboardLoFi, DashboardSidebarLoFi, DebouncedFetcherAndSubmitLoFi, DebouncedInputLoFi, DefaultStyledLoFi, DeferredContentLoFi, DelegateAnchorsToRemixLoFi, DetailLoFi, DeviceMockupLoFi, DiffLoFi, DisplayCodeLoFi, DockLoFi, DragAndDropLoFi, DrawerLoFi, DrawingLoFi, DrawingV, DropZoneLoFi, EcommerceLoFi, EmbedLoFi, EmblaCarouselLoFi, EmblaCarouselSnapLoFi, EnhancedChartLoFi, ErrorLoFi, ExerciseMinutesLoFi, FabloFi, FaqLoFi, FeatureSectionLoFi, FeedLoFi, FileManagerLoFi, FilterComboboxLoFi, FilterDrawerLoFi, FilterTanStackTableLoFi, FixedMarkerLoFi, FlexboxGridLoFi, FloatingLabelLoFi, FloatingSidebarWithSubmenusLoFi, FooterLoFi, ForgotPasswordLoFi, ForLoFi, FormWizardLoFi, FormsLoFi, Four, FunctionalLeftRightSidebarLoFi, FuseSearchInputLoFi, FuzzyFilterLoFi, FuzzySortLoFi, GalleriaLoFi, GnattChartLoFi, GridLoFi, H, HeaderNavLoFi, HelpLoFi, HeroLoFi, HeroV, HighlightLoFi, HighlightV, HomeLoFi, HoneypotMiddlewareLoFi, IbloFi, IloFi, ImageLoFi, ImageSectionLoFi, InAdialogLoFi, IncentivesCardLoFi, IncIdLoFi, IndicatorLoFi, InlineEditLoFi, InplaceLoFi, InputMaskLoFi, InsetSidebarSecondaryNavLoFi, InstallCodeArraySectionLoFi, InstallCodeSectionLoFi, InstallGithubSectionLoFi, InsufficientPermissionsLoFi, InvoiceLoFi, JsonInputLoFi, JwkauthMiddlewareLoFi, LandingLoFi, LayoutLoFi, LoadErrorPageLoFi, LoadingLoFi, LoadingOverlayLoFi, LoadingPageLoFi, LoginLoFi, MailLoFi, MarketingLoFi, MegaMenuLoFi, MenuLoFi, MessageLoFi, MeterLoFi, MobileNavLoFi, ModalIntegrationsLoFi, ModalV, MultiCascadeTreeLoFi, MultiCascaderLoFi, MultiComboboxLoFi, MusicLoFi, NavShoppingCartLoFi, NavMainLoFi, NavProjectsLoFi, NavTreeViewLoFi, NavUserLoFi, NestedComboboxLoFi, NestedCommandDialogLoFi, NestedCommandLoFi, NoteSectionLoFi, NotFoundLoFi, NotificationLoFi, OnTheRightLoFi, OrderedListLoFi, OrderHistoryLoFi, OrderListLoFi, OrderSummaryLoFi, OtpLoFi, OverlayPanelLoFi, PageHeaderLoFi, PageHeadingsSectionLoFi, PaginationButtonLoFi, PaginationWrapperLoFi, PanelLoFi, PanelMenuLoFi, PasswordInputLoFi, PaymentFormLoFi, PaymentMethodLoFi, PaymentsLoFi, PdfgeneratorLoFi, PdfSignatureLoFi, PdfViewerLoFi, PinInputLoFi, PlaceholderCodeLoFi, PlaygroundLoFi, PmloFi, PopconfirmLoFi, PrefetchAnchorsLoFi, PrismaClientExtensionLoFi, ProductCategoryLoFi, ProductComparisonLoFi, ProductDetailsLoFi, ProductEditLoFi, ProductListLoFi, ProductPricingLoFi, ProductsLoFi, ProfileCreateLoFi, ProfileListLoFi, ProfileLoFi, ProgressLoFi, ProseLoFi, QaDiscussionLoFi, QaForumLoFi, QrcodeLoFi, RailLoFi, RatingLoFi, ReactHooksDocsLoFi, ReceiptLoFi, RedirectBadRequestsLoFi, RegisterLoFi, RemixAuthLoFi, RemixLinkLoFi, ReportIssueLoFi, RequestIdmiddlewareLoFi, ResetPasswordLoFi, ResponsiveLinkLoFi, RightSidebarLoFi, SaasLoFi, ScaffoldingLoFi, SchedulerLoFi, ScrolltopLoFi, SecFetchParserLoFi, SecureHeadersMiddlewareLoFi, SelectButtonLoFi, ServerTimingMiddlewareLoFi, ServiceRepairFormLoFi, SessionLoFi, SettingsLoFi, ShareLoFi, ShoppingCartLoFi, SidebarAgnosticLoFi, SidebarDetailsLoFi, SidebarInApopoverLoFi, SidebarLoFi, SidebarNavLoFi, SidebarReactRouterLoFi, SidebarStylisticDefaultLoFi, SidebarStylisticDefaultWrightLoFi, SidebarWithSubmenusLoFi, SignatureLoFi, SignUpLoFi, SingletonMiddlewareLoFi, SiteHeaderLoFi, SmallTableLoFi, SpeedDialLoFi, SpinLoFi, SpinnerLoFi, StackedListsLoFi, StackedLoFi, StackLoFi, StateChangeLoFi, StatsLoFi, StatusLoFi, StepFormWizardLoFi, StepsLoFi, StoreFrontLoFi, StoreNavSectionLoFi, StripeLoFi, StyleProviderLoFi, TableLoFi, TabViewLoFi, TagLoFi, TagsInputLoFi, TailwindcssTxtLoFi, TaskboardLoFi, TaskListLoFi, TasksLoFi, TeamMembersLoFi, TerminalLoFi, AutoResizingTextareaLoFi, TextareaV, TextEditorLoFi, ThemeSelectorLoFi, TicketsLoFi, TimelineLoFi, TimelineV, TitleSectionLoFi, ToDoLoFi, ToggleClassLoFi, ToolbarLoFi, TourLoFi, TransferListLoFi, TransitionablePortalLoFi, TransitionLoFi, TravelLoFi, TreeViewLoFi, TriStateCheckboxLoFi, TstableLoFi, TstableV1, TstableV2, TsxsectionLoFi, UnderConstructionLoFi, UsageSectionLoFi, UsageSectionNoDashLoFi, UseAsyncLoFi, UseClickOutsideLoFi, UseCopyToClipboardLoFi, UseCounterLoFi, UseDebouncedFuseSearchLoFi, UseDebounceLoFi, UseEventListenerLoFi, UseExportMarkdownLoFi, UseExportTsxLoFi, UseExternalScriptsLoFi, UseFaviconLoFi, UseFetchLoFi, UseFocusLoFi, UseFocusWithinLoFi, UseFormLoFi, UseFuseSearchLoFi, UseFuzzySearchLoFi, UseGlobalLoadingStateLoFi, UseGlobalNavigationStateLoFi, UseGlobalPendingStateLoFi, UseGlobalSubmittingStateLoFi, UseHoverLoFi, UseHydratedLoFi, UseIntersectionObserverLoFi, UseIntervalLoFi, UseKeyboardLoFi, UseKeyPressLoFi, UseLocalesLoFi, UseLocalStorageLoFi, UseLongPressLoFi, UseMediaQueryLoFi, UseMobileLoFi, UseMountedLoFi, UseMountEffectLoFi, UseMoveLoFi, UseMutationObserverLoFi, UseOnlineStatusLoFi, UseOverlayListenerLoFi,
|
|
3190
|
+
UseOverlayScrollListenerLoFi, UsePressLoFi, UsePreviousLoFi, UserBasedAccessRulesLoFi, UseResizeListenerLoFi, UserLoFi, UserOnboardingLoFi, UseScrollPositionLoFi, UseSessionStorageLoFi, UseShouldHydrateLoFi, UseSlideInLoFi, UseStreamLoFi, UseThrottleLoFi, UseTimeoutLoFi, UseToggleLoFi, UseUnmountEffectLoFi, UseUpdateEffectLoFi, UseWindowSizeLoFi, VerificationLoFi, VirtualizerLoFi, WatermarkLoFi, WithAcalendarLoFi, WithAshoppingCartLoFi, WithAtreeViewLoFi, WithCollapsibleNestedSidebarsLoFi, WithCollapsibleSectionsLoFi, WithCollapsibleSubmenusLoFi, WithCookieMiddlewareLoFi, WithInitialLoadingStateLoFi, WithLoadingNavStateChangesLoFi, WithNavigationGroupedBySectionLoFi, WithSubmenusAsDropdownsLoFi, AnimatedTestimonials, Headers1, TestimonialCarousel, PricingCarousel, FeatureCarousel, PricingCarouselV2, FeatureShowcase, PricingCardSingle, BlogEditor, BlogPost, Cta, LogoClouds, NewsLetter, Carousel2,Carouselitem2,Carouselvariants,Carouselcontentvariants,Carouselitemvariants, Interactiveiconcloud,Cloudprops,Rendercustomicon, Marquee1, PixelImage, Marquee, Imagecrop,Imagecropcontent,Imagecropapply,Imagecropreset,Cropper, ImageZoom, Comparison,Comparisonitem,Comparisonhandle, Carousel,Carouselitem, Avatargroup,Avatargrouptooltip, Threedmarquee,Gridlinehorizontal,Gridlinevertical, Logo,Logoimage,Logotext, Iframe,Iframevariants, Embed, Globe, BlurFade, AvatarCircles, Googlemap,Mapmarker, Carouselv1, InfiniteScroll, Galleria, CarouselWithIndicator, EmblaCarousel, CarouselHero, CarouselSimple, Animatedmodal,Animatedmodalbody,Animatedmodalcontent,Animatedmodalfooter,Animatedmodaltrigger,Animatedmodalclosebutton,Animatedmodalsuccessbutton,Usemodal, Useds,Dsleftrail,Dsrightrail,Dsheader,Dscontent,Dsfooter,Dsavatar,Dsavatarimage,Dsavatarfallback,Dsgroup,Dsgroupaction,Dsgroupcontent,Dsgrouplabel,Dsinput,Dsmenu,Dsmenuaction,Dsmenubadge,Dsmenubutton,Dsmenuitem,Dsmenuskeleton,Dsmenusub,Dsmenusubbutton,Dsmenusubitem,Dsseparator,Dsmenuanchor,Dsmenulink,Dsloading,Usedstheme,Dsthemeselector,TypeDstheme,Dsthemeprovider,Dsprovider,Dsinset,Dstrigger,Dsleft,Dslefticon,Dsright,Dsrighticon,Dsd,Dsdbottom,Dsdtrigger,Dsdportal,Dsdclose,Dsdoverlay,Dsdcontent,Dsdheader,Dsdfooter,Dsdtitle,Dsddescription,Dsdm,Dsdmportal,Dsdmtrigger,Dsdmcontent,Dsdmgroup,Dsdmlabel,Dsdmitem,Dsdmcheckboxitem,Dsdmradiogroup,Dsdmradioitem,Dsdmseparator,Dsdmshortcut,Dsdmsub,Dsdmsubtrigger,Dsdmsubcontent,Dsdmanchor,Dsc,Dsctrigger,Dsccontent, Sidebar,Sidebarcontent,Sidebarfooter,Sidebargroup,Sidebargroupaction,Sidebargroupcontent,Sidebargrouplabel,Sidebarheader,Sidebarinput,Sidebarinset,Sidebarmenu,Sidebarmenuaction,Sidebarmenubadge,Sidebarmenubutton,Sidebarmenuitem,Sidebarmenuskeleton,Sidebarmenusub,Sidebarmenusubbutton,Sidebarmenusubitem,Sidebarprovider,Sidebarrail,Sidebarseparator,Sidebartrigger,Usesidebar, Modalv1, TransitionablePortal, ModalIntegrations, LoadingOverlay, OverlayPanel, ConfirmPopup, Popconfirm, Dialogstack,Dialogstacktrigger,Dialogstackoverlay,Dialogstackbody,Dialogstackcontent,Dialogstackheader,Dialogstacktitle,Dialogstackdescription,Dialogstackfooter,Dialogstacknext,Dialogstackprevious, AnimatedTooltip, PdfAction, GenerateCustomPdf, GeneratePdf, PdfGenerator, PdfSender, PdfSigner, PrintPdf, TemplateBuilder, Playscansound,Barcodescanner, Cashdrawerservice,Validateapppath,Validatecommandargs,Validateexecution,Usecashdrawer, Table,Tableheader,Tablebody,Tablefooter,Tablehead,Tablerow,Tablecell,Tablecaption, Item,Itemmedia,Itemcontent,Itemactions,Itemgroup,Itemseparator,Itemtitle,Itemdescription,Itemheader,Itemfooter, Pagination,Paginationcontent,Paginationellipsis,Paginationitem,Paginationlink,Paginationnext,Paginationprevious,Paginationwithhrefs,TypePaginationprops,TypePaginationlinkprops, Field,Fieldlabel,Fielddescription,Fielderror, Chartcontainer,Charttooltip,Charttooltipcontent,Chartlegend,Chartlegendcontent,Chartstyle, Badge,Badgevariants, Avatar,Avatarimage,Avatarfallback, Resizablehandle,Resizablepanel,Resizablepanelgroup, Breadcrumb,Breadcrumblist,Breadcrumbitem,Breadcrumblink,Breadcrumbpage,Breadcrumbseparator,Breadcrumbellipsis, Inputotp,Inputotpgroup,Inputotpslot,Inputotpseparator, CalendarTailwindV4, Navigationmenu,Navigationmenulist,Navigationmenuitem,Navigationmenucontent,Navigationmenutrigger,Navigationmenulink,Navigationmenuindicator,Navigationmenuviewport,Navigationmenutriggerstyle, Contextmenu,Contextmenutrigger,Contextmenucontent,Contextmenuitem,Contextmenucheckboxitem,Contextmenuradioitem,Contextmenulabel,Contextmenuseparator,Contextmenushortcut,Contextmenugroup,Contextmenuportal,Contextmenusub,Contextmenusubcontent,Contextmenusubtrigger,Contextmenuradiogroup, Tabs,Tabslist,Tabstrigger,Tabscontent, Virtualizer,Virtualizerdemo,Virtualizerusage, Accordion,Accordionitem,Accordiontrigger,Accordioncontent, Button,Buttonvariants, Command,Commanddialog,Commandempty,Commandgroup,Commandinput,Commanditem,Commandlist,Commandseparator,Commandshortcut, Radiogroup,Radiogroupitem, Togglegroup,Togglegroupitem, Card,Cardheader,Cardfooter,Cardtitle,Carddescription,Cardcontent, Collapsible,Collapsiblecontent,Collapsibletrigger, Separator, Dropdownmenu,Dropdownmenucontent,Dropdownmenugroup,Dropdownmenuitem,Dropdownmenulabel,Dropdownmenuportal,Dropdownmenuseparator,Dropdownmenushortcut,Dropdownmenusub,Dropdownmenusubcontent,Dropdownmenusubtrigger,Dropdownmenutrigger, Select,Selectcontent,Selectitem,Selecttrigger,Selectvalue, Alertdialog,Alertdialogportal,Alertdialogoverlay,Alertdialogtrigger,Alertdialogcontent,Alertdialogheader,Alertdialogfooter,Alertdialogtitle,Alertdialogdescription,Alertdialogaction,Alertdialogcancel, Dialog,Dialogclose,Dialogcontent,Dialogdescription,Dialogfooter,Dialogheader,Dialogoverlay,Dialogportal,Dialogtitle,Dialogtrigger, Drawer,Drawerportal,Draweroverlay,Drawertrigger,Drawerclose,Drawercontent,Drawerheader,Drawerfooter,Drawertitle,Drawerdescription, Hovercard,Hovercardtrigger,Hovercardcontent, Popover,Popovertrigger,Popovercontent,Popoverclose,Popoverheader,Popoverfooter,Popovertitle,Popoverdescription,Popoveranchor, Tooltipprovider,Tooltip,Tooltiptrigger,Tooltipcontent, Sheet,Sheetportal,Sheetoverlay,Sheettrigger,Sheetclose,Sheetcontent,Sheetheader,Sheetfooter,Sheettitle,Sheetdescription,TypeSheetcontentprops, AiInputSearch, Ailoadingstate,Aitextloading, AiPromptInput, AiVoice, Inputbyok,Getopenaiapikey, Chainofthought,Chainofthoughtstep,Chainofthoughttrigger,Chainofthoughtcontent,Chainofthoughtitem, Chatcontainerroot,Chatcontainercontent,Chatcontainerscrollanchor, Codeblock,Codeblockcode,Codeblockgroup, Fileupload,Fileuploadtrigger,Fileuploadcontent, JsxPreview, Loader,Circularloader,Classicloader,Pulseloader,Pulsedotloader,Dotsloader,Typingloader,Waveloader,Barsloader,Terminalloader,Textblinkloader,Textshimmerloader,Textdotsloader, Markdown, Message,Messageavatar,Messagecontent,Messageactions,Messageaction, Promptinput,Promptinputtextarea,Promptinputactions,Promptinputaction, Promptsuggestion, Reasoning,Reasoningtrigger,Reasoningcontent, Responsestream,Usetextstream, Scrollbutton, Source,Sourcetrigger,Sourcecontent, Steps,Stepsitem,Stepstrigger,Stepscontent,Stepsbar, Systemmessage, Tool, Conversationpromptinput,Messagecomponent,Loadingmessage,Errormessage, Toolcallingchatbot,Messagecomponent,Loadingmessage,Errormessage, DevListSidebar, AppSidebar, NavQuickActions, NavAppointments, Messenger, ActiveToc, AnalogClock, Calendars, DigitalClock, LoadingSidebar, NavActions, NavAutoSearch, NavFavorites, NavHeader, NavMain, NavMessenger, NavProjects, NavSecondary, NavShoppingCart, NavShoppingCartcatlstui, NavTreeView, NavUser, NavWorkspaces, NavigationThemeSelector, OptInForm, PageHeader, SearchCommand, SearchForm, SidebarDialog, TeamSwitcher, Toc, Tree, VersionSwitcher, Wishlist, FilterTanstackTable,DefaultColumnHeader, Dtable,Draggabletableheader, PropsTable, LexicalEditor, IconAliases, CodeHighlightPlugin, Colorwheel,Colorthemes, MdRenderGenie, MonacoEditor, ScriptEditor, ScriptViewer, ColorWheel, DualEditor, Loader,Meta, MarkdownEditor, MarkdownRenderer, MdRenderer, MonacoSidebar, Cellcontext,Tablecontext,Inserttabledialog,Tableplugin, TailwindConverter, ThemeBuilder, ToolbarPlugin, LineShadowText, TextAnimate, TextHighlighter, TextReveal, WordRotate, TypingAnimation, VideoText, HyperText, ComicText, Textmorph, Scrolltext,Scrolltextword,Scrolltextletter, Typewriter,Typewriteronce,Typewriterword, SwooshText, SlicedText, ShimmerText, MatrixText, GlitchText, DynamicText, Highlight,Highlightdemo,Highlightusage, Prose, H5, H4, H3, Typography, OrderedList, P, Pm, UnorderedList, BlockQuote, CheckList, Div, H1, H2, B, I, Ib, Keyboardshortcut,Keyboardshortcutsprovider,Usekeyboardshortcut, QrCode1, Null, Barcode, Watermark, Transition, Scrolltop, Scrollxy, Scrolly, Scrollx, Scroll, ClientOnlyMermaid, Cn, Timeout, Ripple,Ripple, FormHoneypot, RespondtoForContentNegotiation, JsonHashResponse, SafeRedirects, PreloadRouteAssets, NamedActions, RollingCookie, ServerSentEvents, CreateTypedCookie, CreateTypedSessionStorage, Responses, IsPrefetch, GetHeaders, GetClientLocales, GetClientIpAddress, ExternalScriptsHandle, Cors, ServerOnly, CacheAssets, Promise, UserBasedAccessRules, PrismaClientExtension, BasicAuthMiddleware, BatcherMiddleware, ContextStorageMiddleware, Corsmiddleware, HoneypotMiddleware, JwkauthMiddleware, RequestIdmiddleware, SecFetchParser, SecureHeadersMiddleware, ServerTimingMiddleware, SingletonMiddleware, WithCookieMiddleware, Options, Incid, ExistingSearchParams, GetFetcherType, FetcherContext, AuthProvider, Styleprovider,Usestyles,Usestyleupdater,Getstyle,Styled,Createstylehook,Usepagestyle,Usecontainerstyle,Useheaderstyle,Usecardstyle,Useimagestyle,Useparagraphstyle,Usegridstyle,Usespacingstyle,Usepaddingstyle,Usemarginstyle,Pagediv,Containerdiv,Headerdiv,Carddiv,Imagediv,Paragraphdiv,Titleh1,Titleh2,Titleh3,Titleh4,Subtitlep,Flexcenter,Flexbetween,Flexcol,Appwithstyleprovider,Styleproviderdemo,Dynamicstyledemo, Usenavigationcontext,Navigationprovider, DynamicLinks, Deferredcontent,Deferredimage,Deferredtable,Deferredcard, Tailwindcss.txt, FilenameIconMap, RemixAuth, OtpAuthSession, OtpClientAuth, Sendemail,Sendauthemail, Authsessionstorage,Getauthsession,Clientsession,Redirectsessionstorage,Customersession,Sidebarsessionstorage, PrismaClient, BuildPackageJson, DbLocal, DbRemote, AccountBilling, AccountActiveSessions, AccountActivityLog, AccountApiKeys, AccountAppearanceSettings, AccountAvatarUpload, AccountBackupCodes, AccountBasicInformationForm, AccountChangePassword, AccountConnectedAccounts, AccountDangerZone, AccountEmailPreferences, AccountNotificationInbox, AccountNotificationPrefrences, AccountPrivacySettings, AccountReferralProgram, AccountSecuritySettings, AccountStorageManagement, AccountTeamMembers, AccountThirdPartyIntegrations, AccountTwoFactorAuth, AccountUsageAndAnalytics, AccountWebhooks, BlogCardsLoadMore, BlogCompactList, BlogFeaturedPosts, BlogGridWSearch, BlogHeroFeaturedPost, BlogLargePreview, BlogNewsletterSignup, BlogPostsWTags, BlogRectangularLayout, BlogSimpleCards, BlogWFilterChips, BlogWPagination, BlogWSidebar, ContactCallbackRequest, ContactFormWMap, ContactHeroSection, ContactMinimalForm, ContactMultiStepForm, ContactMultipleLocations, ContactSectionsWCard, ContactSectionsWImage, ContactSupportOptions, ContactTeamMembers, ContactWDarkCard, ContactWFaq, ContactWFileUpload, ContactWNewsletter, CrudActivityFeed, CrudAdvancedFilters, CrudBulkEditProducts, CrudCreateBlogPost, CrudDataTable, CrudDeleteConfirmationDialog, CrudDuplicateRecord, CrudEditProductForm, CrudEditUserProfile, CrudImportExportData, CrudInlineEditTable, CrudKanbanBoard, CrudManageRelationships, CrudProductDetailView, CrudSettingsForm, CrudStatusWorkflow, CrudUserListManagement, FooterCentered, FooterCompany, FooterMinimal, FooterMultiColumnFooter, FooterNewletter, FooterSimple, FooterWCta, FooterWLinks, FooterWLocalization, FooterWUpgradeCta, PromptCompactPrompt, PromptFullFeaturedPrompt, PromptInputAndModelSelector, PromptInput, TablesColumnVisbility, TablesDensityToggle, TablesExpandableRows, TablesExportOptions, TablesFilterableDataTable, TablesGroupedRows, TablesInlineEditing, TablesPageNavigation, TablesQuickFilters, TablesRowMenu, TablesRowSelection, TablesSortableColumns, TablesStickyHeader, TablesSummaryFooter, TablesWActions, TestimonialsBento, TestimonialsCentered, TestimonialsCompany, TestimonialsDarkCarousel, TestimonialsGridWAdd, TestimonialsImageCarousel, TestimonialsLargeQuote, TestimonialsMarquee, TestimonialsMasonry, TestimonialsMinimalSlider, TestimonialsSimple, TestimonialsSplit, TestimonialsVideo, TestimonialsWCards, TestimonialsWStats, TestimonialsWall, ScrollExpanseHero, PricingSectionWithComparison, MinWorldMap, MinTimeline, MinTestimonialsColumns, MinPricing, MinPricingTable, MinLayoutGrid, MinFeatureSection, MinCarousel, MinBentoGrid, MinActivityCard, InteractiveCheckout, ImagesSlider, HeroWImageTextAndTwoButtons, HeroGalleryScrollAnimation, HeroFashion, GlareCard, Gallery4, FullscreenCalendar, FocusCards, FeatureWImageCarousel, FeatureSectionWithGrid, FeatureSectionWHoverEffects, ExpandableCard, CircularTestimonials, ContainerScrollAnimation, ChatCard, MinPricingSection, MinPricingCards, Minherosection,Logo, AnimatedHero, MinFeature, Minfaqsection,Minfaqitem, BlogCategoriesNav, About3, Awards1, Banner1, Blogpost1, Careers4, Casestudies2, Casestudy8, Changelog1, Codeexample1, Community1, Compare7, Compliance1, Contact7, Content1, Cta10, Cta11, Download2, Experience1, Experience5, Faq1, Feature1, Feature2, Feature13, Feature17, Feature43, Feature51, Feature72, Feature73, Feature166, Feature197, Footer2, Gallery6, Hero1, Hero3, Hero7, Hero45, Hero47, Hero115, Integration3, List2, Login1, Logos8, Pricing2, Pricing4, Pricing6, Process1, Project1, Ratecard2, Resource1, Service1, Services4, Signup1, Stats8, Team1, Testimonial10, Timeline9, Waitlist1, Qrcodegenerator, TextEditor, Tickets, ToDo, Table, TaskList, Taskboard, Tasks, StatsCard, StatsSimple, StatsSimpleGrid, StatsWithDescription, Stacked, SidebarDetails, Settings, SettingsScreenSidebar, SettingsScreenStacked, Settings1, Settings2, Settings3, Settings4, Settings5, Settings6, Settings7, SectionHeadingWithDescription, SectionHeadingWithInputGroup, Scheduler, ScreenLock, PageNav, MobileNav, Mail, LockInScreen, Json, Kanban, Home, HomeScreenStacked, FuturisticDash, FilterDrawer, FilterDrawer3, FilterDrawer1, FilterDrawer2, FileManager, FileManager1, FeedComponents, FeedListMultipleItemTypes, FeedLists, CalendarV1, Drawer, DrawerDialogDragAndDrop, DescriptionList, DescriptionListNarrow, Dashboard, DashboardSidebar, CardHeadingWithDescription, ContentCentered, ContentSplitWithImage, ContentTwoColumnWithScreenshot, CollarabtiveCanvas, FormBlock, RoadmapBlock, PricingBlock, Hero2, WidgetCard, Calculator, Cards, UserOnboarding, Verification, Verification1, VerticalNav, UpdateUserModal, SignUp, SignUp1, SignUp2, Register, RemixAuthLogin, RemixAuthLogout, RemixAuthResetPassword, RemixAuthSignup, ResetPassword, ResetPassword1, OtpLogin, OtpLogout, OtpMagicLink, OtpVerify, OtpSignup, ForgotPassword, Login, Login2, Login4, Login5, Login6, Login7, Login8, Login9, Login10, PageHeadingsSection, PickerWithInput, DateOfBirth, Categorypage, Checkoutpage, Editproductpage, Orderdetailspage, Orderhistorypage, Pricingpage, Productpage, Productpage2, Shoppingcartpage, Storefront, PricingComparison, PricingPage1, PricingSectionCards, PricingSectionCards1, PricingSinglePriceDetails,
|
|
3191
|
+
PricingThreeTiersAndFeatureComparison, ProductDesecription, ProductListBorderGrid, ProductListFullDetails, ProductListSupportingText, ProductListTallImages, ProductListsSimple, ProductListsWInlinePrice, ProductOverviewsGalleryExpandable, ProductOverviewsTabs, ProductOverviewsTieredImages, ProductPage, ProductPage1, ProductPricing, ProductPricing1, ProductPricing2, ProductPricing3, Products, Products1, Products2, Products3, Products4, Products5, Products6, ProductCategory, ProductCategory1, ProductCategory2, ProductCategory3, ProductCategory4, ProductCategory5, ProductCategory6, ProductComparison, ProductComparison1, ProductDetails, ProductDetails1, ProductDetails2, ProductDetails3, ProductDetails4, ProductEdit, OrderDetailsPage2, OrderHistoryPage, OrderHistory1, OrderHistory6, OrderSummariesWSplitImage, OrderSummary, CheckoutCancel, CheckoutForm1, CheckoutForm2, CheckoutForm3, CheckoutForm4, CheckoutForm5, CheckoutForm6, CheckoutForm7, CheckoutSuccess, CheckoutVarious, PaymentForm, PaymentForm1, PaymentForm2, PaymentForm3, PaymentForm4, PaymentForm5, PaymentForm6, PaymentForm7, PaymentForm8, PaymentForm9, ShoppingCartExtendedSummary, ShoppingCartPage, ShoppingCartPage1, ShoppingCartSingleColumn, ShoppingCartTwoColumn, ShoppingCart1, ShoppingCart2, ShoppingCart3, Invoice, Invoice1, Invoice2, IncentivesBanner, IncentivesCard, IncentivesFeature, IncentivesSimple, Receipt, StoreFront, StoreFrontPage, StoreFront1, StoreFront2, StoreFront3, StoreNavImageGrid, StoreNavSection, StoreShowFunctionAndCode, CategoriesNavigation, CategoryFiltersSection, CategoryFiltersSectionCentered, CategoryFiltersSidebar, CategoryPage1, CategoryPreviewScrollingCards, CategoryPreviewSplitImages, CategoryPreviewThreeColumn, Access, Account, AccountblocksV1, AppleNotesClone, BankV1, Bank, BloombergTerminal, BookmarkHub, ActivityGoal, CarService, Imchat, ChatQuoteInterface, Config, Cyberpunk, Detail, DotMatrixGlobe, DynamicRain, DynamicTodo, FontPairingTool, FrostedGlass, GlassmorphicRichTextEditor, GlimmeringMap, GnattChart, Hoodie, LoanApp, MacosWidget, Music, Note, PageTransitions, Parallax, Playground, RotatingEarth, ScrollMotion, ServiceRepairForm, ServiceRepairForm1, ServiceRepairForm2, ServiceRepairForm3, Stripe, Strip2, Travel, Tsx, Usage, UsageSectionNoDash, VoiceWaveform, WebScraper, ThreeDCard, AsciiConverter, BentoPortfolioDesign, CardStock, Curriculum, FeatureVoting, LinearCardInteraction, NewLandingPage, Nexorasim, ParticleAnimation, SnakeGame, Webcamcircles, ColumnButtonInputCombo, AiChatUiDesign, Aiartgallery, ModernChatbot, AiChatV1, AiChatV2, AiChat, ConversationActions, ConversationAvatars, ConversationPromptInput, ConversationScrollBottom, FullChatApp, FullConversation, PromptAutocompleteHighlight, PromptInputActions, PromptInputSuggestions, SidebarChatHistory
|
|
3192
|
+
|
|
3193
|
+
|
|
3194
|
+
} */
|