@hanzo/ui 5.0.0 → 5.0.1

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.
Files changed (685) hide show
  1. package/README.md +192 -185
  2. package/assets/ai-icons.tsx +207 -0
  3. package/assets/crypto.tsx +33 -0
  4. package/assets/file-type-icon.tsx +66 -0
  5. package/assets/file.tsx +45 -0
  6. package/assets/general.tsx +2318 -0
  7. package/assets/hanzo-logo.svg +9 -0
  8. package/assets/hanzo-logo.tsx +17 -0
  9. package/assets/index.ts +122 -0
  10. package/assets/index.tsx +4 -0
  11. package/assets/llm-provider.tsx +1094 -0
  12. package/bin/cli.js +100 -0
  13. package/bin/create-registry.js +108 -0
  14. package/bin/mcp.js +403 -0
  15. package/bin/npx-registry-mcp.js +15 -0
  16. package/bin/registry-mcp-wrapper.sh +19 -0
  17. package/bin/registry-mcp.js +100 -0
  18. package/bin/start-mcp-server.sh +22 -0
  19. package/bin/test-mcp.sh +52 -0
  20. package/bin/update-registry.js +196 -0
  21. package/blocks/auth/index.ts +6 -0
  22. package/blocks/auth/login-2fa.tsx +165 -0
  23. package/blocks/auth/login-basic.tsx +94 -0
  24. package/blocks/auth/login-social.tsx +148 -0
  25. package/blocks/auth/magic-link.tsx +129 -0
  26. package/blocks/auth/password-reset.tsx +97 -0
  27. package/blocks/auth/signup.tsx +157 -0
  28. package/blocks/components/accordian-block.tsx +48 -0
  29. package/blocks/components/block-component-props.ts +11 -0
  30. package/blocks/components/bullet-cards-block.tsx +46 -0
  31. package/blocks/components/card-block/index.tsx +171 -0
  32. package/blocks/components/card-block/link-out-button.tsx +20 -0
  33. package/blocks/components/card-block/util.ts +28 -0
  34. package/blocks/components/carte-blanche-block/index.tsx +127 -0
  35. package/blocks/components/carte-blanche-block/variant-content-left.tsx +49 -0
  36. package/blocks/components/content.tsx +70 -0
  37. package/blocks/components/cta-block.tsx +115 -0
  38. package/blocks/components/enh-heading-block.tsx +204 -0
  39. package/blocks/components/grid-block/grid-block-mutator.ts +12 -0
  40. package/blocks/components/grid-block/index.tsx +83 -0
  41. package/blocks/components/grid-block/mutator-registry.ts +10 -0
  42. package/blocks/components/grid-block/table-borders.mutator.ts +47 -0
  43. package/blocks/components/group-block.tsx +83 -0
  44. package/blocks/components/heading-block.tsx +88 -0
  45. package/blocks/components/image-block.tsx +111 -0
  46. package/blocks/components/index.ts +30 -0
  47. package/blocks/components/screenful-block/content.tsx +123 -0
  48. package/blocks/components/screenful-block/index.tsx +107 -0
  49. package/blocks/components/screenful-block/poster-background.tsx +34 -0
  50. package/blocks/components/screenful-block/video-background.tsx +45 -0
  51. package/blocks/components/space-block.tsx +66 -0
  52. package/blocks/components/video-block.tsx +138 -0
  53. package/blocks/data-display/activity-feed.tsx +242 -0
  54. package/blocks/data-display/data-table.tsx +235 -0
  55. package/blocks/data-display/stats-grid.tsx +194 -0
  56. package/blocks/def/accordian-block.ts +14 -0
  57. package/blocks/def/block.ts +7 -0
  58. package/blocks/def/bullet-cards-block.ts +22 -0
  59. package/blocks/def/card-block.ts +22 -0
  60. package/blocks/def/carte-blanche-block.ts +21 -0
  61. package/blocks/def/cta-block.ts +19 -0
  62. package/blocks/def/element-block.ts +11 -0
  63. package/blocks/def/enh-heading-block.ts +44 -0
  64. package/blocks/def/grid-block.ts +16 -0
  65. package/blocks/def/group-block.ts +11 -0
  66. package/blocks/def/heading-block.ts +15 -0
  67. package/blocks/def/image-block.ts +31 -0
  68. package/blocks/def/index.ts +35 -0
  69. package/blocks/def/screenful-block.ts +54 -0
  70. package/blocks/def/space-block.ts +64 -0
  71. package/blocks/def/video-block.ts +9 -0
  72. package/blocks/ecommerce/checkout.tsx +242 -0
  73. package/blocks/ecommerce/index.ts +7 -0
  74. package/blocks/ecommerce/product-detail.tsx +257 -0
  75. package/blocks/ecommerce/product-grid.tsx +148 -0
  76. package/blocks/ecommerce/shopping-cart.tsx +181 -0
  77. package/blocks/index.ts +2 -0
  78. package/blocks/marketing/cta-section.tsx +207 -0
  79. package/blocks/marketing/faq.tsx +159 -0
  80. package/blocks/marketing/features-grid.tsx +156 -0
  81. package/blocks/marketing/hero-section.tsx +192 -0
  82. package/blocks/marketing/index.ts +6 -0
  83. package/blocks/marketing/pricing-table.tsx +121 -0
  84. package/blocks/marketing/testimonials.tsx +196 -0
  85. package/components/index.ts +9 -0
  86. package/dist/index.js +9070 -1089
  87. package/dist/index.js.map +1 -1
  88. package/dist/index.mjs +8695 -45
  89. package/dist/index.mjs.map +1 -1
  90. package/dist/tailwind.js +2025 -0
  91. package/dist/tailwind.js.map +1 -0
  92. package/dist/tailwind.mjs +2013 -0
  93. package/dist/tailwind.mjs.map +1 -0
  94. package/dist/types.js +59 -0
  95. package/dist/types.js.map +1 -0
  96. package/dist/types.mjs +53 -0
  97. package/dist/types.mjs.map +1 -0
  98. package/dist/utils.js +30 -0
  99. package/dist/utils.js.map +1 -0
  100. package/dist/utils.mjs +26 -0
  101. package/dist/utils.mjs.map +1 -0
  102. package/frameworks/core/index.ts +6 -0
  103. package/frameworks/core/utils/index.ts +64 -0
  104. package/frameworks/react/components/button.tsx +26 -0
  105. package/frameworks/react/components/index.ts +5 -0
  106. package/frameworks/react/hooks/index.ts +5 -0
  107. package/frameworks/react/index.ts +9 -0
  108. package/frameworks/react/package.json +8 -0
  109. package/frameworks/react/utils/index.ts +2 -0
  110. package/frameworks/react-native/index.ts +9 -0
  111. package/frameworks/react-native/package.json +8 -0
  112. package/frameworks/registry.json +371 -0
  113. package/frameworks/setup.sh +69 -0
  114. package/frameworks/svelte/index.ts +9 -0
  115. package/frameworks/svelte/package.json +8 -0
  116. package/frameworks/tracker.json +1854 -0
  117. package/frameworks/vue/index.ts +9 -0
  118. package/frameworks/vue/package.json +8 -0
  119. package/helpers/file.ts +33 -0
  120. package/helpers/memoization.ts +40 -0
  121. package/package.json +272 -153
  122. package/primitives/accordion.tsx +74 -0
  123. package/primitives/action-button.tsx +42 -0
  124. package/primitives/alert-dialog.tsx +185 -0
  125. package/primitives/alert.tsx +74 -0
  126. package/primitives/apply-typography.tsx +55 -0
  127. package/primitives/aspect-ratio.tsx +5 -0
  128. package/primitives/avatar.tsx +57 -0
  129. package/primitives/background-beams.tsx +142 -0
  130. package/primitives/badge.tsx +45 -0
  131. package/primitives/breadcrumb.tsx +130 -0
  132. package/primitives/breakpoint-indicator.tsx +19 -0
  133. package/primitives/button.tsx +72 -0
  134. package/primitives/calendar.tsx +72 -0
  135. package/primitives/card.tsx +97 -0
  136. package/primitives/carousel.tsx +238 -0
  137. package/primitives/chat/chat-input-area.tsx +88 -0
  138. package/primitives/chat/chat-input.tsx +71 -0
  139. package/primitives/chat/files-preview.tsx +331 -0
  140. package/primitives/chat/index.ts +6 -0
  141. package/primitives/chat/json-form.tsx +8 -0
  142. package/primitives/chat/message-list.tsx +308 -0
  143. package/primitives/chat/message.tsx +569 -0
  144. package/primitives/chat/sqlite-preview.tsx +215 -0
  145. package/primitives/checkbox.tsx +32 -0
  146. package/primitives/collapsible.tsx +9 -0
  147. package/primitives/combobox.tsx +239 -0
  148. package/primitives/command.tsx +151 -0
  149. package/primitives/context-menu.tsx +206 -0
  150. package/primitives/copy-to-clipboard-icon.tsx +60 -0
  151. package/primitives/dialog-video-controller.tsx +38 -0
  152. package/primitives/dialog.tsx +128 -0
  153. package/primitives/dot-pattern.tsx +57 -0
  154. package/primitives/dots-loader.tsx +13 -0
  155. package/primitives/drawer.tsx +113 -0
  156. package/primitives/dropdown-menu.tsx +199 -0
  157. package/primitives/error-message.tsx +19 -0
  158. package/primitives/file-uploader.tsx +203 -0
  159. package/primitives/form.tsx +185 -0
  160. package/primitives/hover-card.tsx +28 -0
  161. package/primitives/icons/github.tsx +14 -0
  162. package/primitives/icons/index.ts +18 -0
  163. package/primitives/icons/youtube-logo.tsx +59 -0
  164. package/primitives/index-client.ts +4 -0
  165. package/primitives/index-common.ts +304 -0
  166. package/primitives/index-next.ts +4 -0
  167. package/primitives/input-otp.tsx +65 -0
  168. package/primitives/input.tsx +128 -0
  169. package/primitives/label.tsx +21 -0
  170. package/primitives/list-adaptor.ts +12 -0
  171. package/primitives/list-box.tsx +74 -0
  172. package/primitives/loading-spinner.tsx +33 -0
  173. package/primitives/markdown-preview.tsx +612 -0
  174. package/primitives/mermaid.tsx +191 -0
  175. package/primitives/navigation-menu.tsx +147 -0
  176. package/primitives/next/image.tsx +91 -0
  177. package/primitives/next/index.ts +7 -0
  178. package/primitives/next/inline-icon.tsx +36 -0
  179. package/primitives/next/link-element.tsx +109 -0
  180. package/primitives/next/mdx-link.tsx +22 -0
  181. package/primitives/next/media-stack.tsx +52 -0
  182. package/primitives/next/nav-items.tsx +45 -0
  183. package/primitives/next/youtube-embed.tsx +83 -0
  184. package/primitives/pagination.tsx +117 -0
  185. package/primitives/popover.tsx +34 -0
  186. package/primitives/pretty-json-print.tsx +28 -0
  187. package/primitives/progress.tsx +27 -0
  188. package/primitives/prompt-textarea.tsx +72 -0
  189. package/primitives/qr-code.tsx +112 -0
  190. package/primitives/radio-group.tsx +42 -0
  191. package/primitives/resizable.tsx +47 -0
  192. package/primitives/scroll-area.tsx +57 -0
  193. package/primitives/search-input.tsx +66 -0
  194. package/primitives/select.tsx +122 -0
  195. package/primitives/separator.tsx +26 -0
  196. package/primitives/sheet.tsx +139 -0
  197. package/primitives/skeleton.tsx +18 -0
  198. package/primitives/slider.tsx +63 -0
  199. package/primitives/sonner.tsx +35 -0
  200. package/primitives/step-indicator.tsx +69 -0
  201. package/primitives/stepper.tsx +272 -0
  202. package/primitives/switch.tsx +27 -0
  203. package/primitives/table.tsx +105 -0
  204. package/primitives/tabs.tsx +50 -0
  205. package/primitives/text-area.tsx +26 -0
  206. package/primitives/text-link.tsx +27 -0
  207. package/primitives/textarea.tsx +64 -0
  208. package/primitives/textfield.tsx +78 -0
  209. package/primitives/toast.tsx +30 -0
  210. package/primitives/toggle-group.tsx +63 -0
  211. package/primitives/toggle.tsx +44 -0
  212. package/primitives/tooltip.tsx +47 -0
  213. package/primitives/video-player.tsx +23 -0
  214. package/src/button.ts +1 -0
  215. package/src/hooks/index.ts +7 -0
  216. package/src/hooks/use-click-away.ts +31 -0
  217. package/src/hooks/use-combined-refs.ts +22 -0
  218. package/src/hooks/use-copy-clipboard.ts +30 -0
  219. package/src/hooks/use-debounce.ts +17 -0
  220. package/src/hooks/use-fill-ids.ts +25 -0
  221. package/src/hooks/use-map.ts +26 -0
  222. package/src/hooks/use-measure.ts +42 -0
  223. package/src/hooks/use-reverse-video-playback.ts +43 -0
  224. package/src/hooks/use-scroll-restoration.ts +50 -0
  225. package/src/index-lean.ts +87 -0
  226. package/src/index.ts +54 -0
  227. package/src/mcp/README.md +141 -0
  228. package/src/mcp/enhanced-server.ts +1208 -0
  229. package/src/mcp/index.ts +518 -0
  230. package/src/mcp/package.json +10 -0
  231. package/src/registry/api.ts +164 -0
  232. package/src/registry/index.ts +60 -0
  233. package/src/registry/package.json +10 -0
  234. package/src/utils.ts +19 -0
  235. package/style/drawer.css +163 -0
  236. package/style/globals.css +13 -0
  237. package/style/hanzo-common.css +31 -0
  238. package/style/hanzo-default-colors.css +82 -0
  239. package/style/theme-provider.tsx +20 -0
  240. package/tailwind/colors.tailwind.js +53 -0
  241. package/tailwind/fontFamily.tailwind.ts +7 -0
  242. package/tailwind/fontSize.tailwind.ts +13 -0
  243. package/tailwind/index.ts +7 -0
  244. package/tailwind/safelist.tailwind.js +26 -0
  245. package/tailwind/screens.tailwind.js +8 -0
  246. package/tailwind/spacing.tailwind.js +65 -0
  247. package/tailwind/tailwind.config.hanzo-preset.d.ts +5 -0
  248. package/tailwind/tailwind.config.hanzo-preset.js +915 -0
  249. package/tailwind/tw-font-desc.ts +15 -0
  250. package/tailwind/typo-plugin/get-plugin-styles.js +679 -0
  251. package/tailwind/typo-plugin/index.d.ts +9 -0
  252. package/tailwind/typo-plugin/index.js +141 -0
  253. package/tailwind/typo-plugin/utils.js +60 -0
  254. package/tailwind/typography-test.mdx +35 -0
  255. package/tailwind/z-index.tailwind.js +71 -0
  256. package/types/animation-def.ts +3 -0
  257. package/types/breakpoints.ts +11 -0
  258. package/types/bullet-item.ts +10 -0
  259. package/types/button-def.ts +39 -0
  260. package/types/dimensions.ts +8 -0
  261. package/types/grid-def.ts +56 -0
  262. package/types/image-def.ts +32 -0
  263. package/types/index.ts +30 -0
  264. package/types/link-def.ts +56 -0
  265. package/types/media-stack-def.ts +31 -0
  266. package/types/t-shirt-size.ts +5 -0
  267. package/types/tshirt-dimensions.ts +20 -0
  268. package/types/video-def.ts +25 -0
  269. package/util/blob.ts +33 -0
  270. package/util/copy-to-clipboard.ts +17 -0
  271. package/util/create-shadow-root.ts +22 -0
  272. package/util/date.ts +84 -0
  273. package/util/debounce.ts +11 -0
  274. package/util/file.ts +15 -0
  275. package/util/format-and-abbreviate-as-currency.ts +125 -0
  276. package/util/format-text.ts +34 -0
  277. package/util/format-to-max-char.ts +68 -0
  278. package/util/index-client.ts +3 -0
  279. package/util/index.ts +112 -0
  280. package/util/number-abbreviate.ts +49 -0
  281. package/util/specifier.ts +43 -0
  282. package/util/spread-to-transform.ts +25 -0
  283. package/util/step-animation.ts +90 -0
  284. package/util/timing.ts +3 -0
  285. package/util/toasts.tsx +17 -0
  286. package/util/two-way-map.ts +19 -0
  287. package/CHANGELOG.md +0 -184
  288. package/LICENSE +0 -21
  289. package/dist/ai/index.js +0 -53
  290. package/dist/ai/index.js.map +0 -1
  291. package/dist/ai/index.mjs +0 -4
  292. package/dist/ai/index.mjs.map +0 -1
  293. package/dist/blocks/index.js +0 -983
  294. package/dist/blocks/index.js.map +0 -1
  295. package/dist/blocks/index.mjs +0 -945
  296. package/dist/blocks/index.mjs.map +0 -1
  297. package/dist/calendar/index.js +0 -14
  298. package/dist/calendar/index.js.map +0 -1
  299. package/dist/calendar/index.mjs +0 -5
  300. package/dist/calendar/index.mjs.map +0 -1
  301. package/dist/carousel/index.js +0 -220
  302. package/dist/carousel/index.js.map +0 -1
  303. package/dist/carousel/index.mjs +0 -191
  304. package/dist/carousel/index.mjs.map +0 -1
  305. package/dist/charts/index.js +0 -945
  306. package/dist/charts/index.js.map +0 -1
  307. package/dist/charts/index.mjs +0 -901
  308. package/dist/charts/index.mjs.map +0 -1
  309. package/dist/chunk-26T4V5QU.mjs +0 -111
  310. package/dist/chunk-26T4V5QU.mjs.map +0 -1
  311. package/dist/chunk-2A5KXDLJ.js +0 -22
  312. package/dist/chunk-2A5KXDLJ.js.map +0 -1
  313. package/dist/chunk-2CJ4HMF4.js +0 -79
  314. package/dist/chunk-2CJ4HMF4.js.map +0 -1
  315. package/dist/chunk-2OIQKC5E.js +0 -236
  316. package/dist/chunk-2OIQKC5E.js.map +0 -1
  317. package/dist/chunk-2X3KSYBN.js +0 -44
  318. package/dist/chunk-2X3KSYBN.js.map +0 -1
  319. package/dist/chunk-3PBQGYR7.mjs +0 -100
  320. package/dist/chunk-3PBQGYR7.mjs.map +0 -1
  321. package/dist/chunk-3POQQ6L7.js +0 -62
  322. package/dist/chunk-3POQQ6L7.js.map +0 -1
  323. package/dist/chunk-4B47GITH.mjs +0 -28
  324. package/dist/chunk-4B47GITH.mjs.map +0 -1
  325. package/dist/chunk-4BC2OH6B.js +0 -129
  326. package/dist/chunk-4BC2OH6B.js.map +0 -1
  327. package/dist/chunk-5AQSGH4R.js +0 -130
  328. package/dist/chunk-5AQSGH4R.js.map +0 -1
  329. package/dist/chunk-5IHRJFOO.mjs +0 -102
  330. package/dist/chunk-5IHRJFOO.mjs.map +0 -1
  331. package/dist/chunk-5LDGR7YN.mjs +0 -28
  332. package/dist/chunk-5LDGR7YN.mjs.map +0 -1
  333. package/dist/chunk-5MCN3VYM.mjs +0 -23
  334. package/dist/chunk-5MCN3VYM.mjs.map +0 -1
  335. package/dist/chunk-6AVAMRMB.mjs +0 -47
  336. package/dist/chunk-6AVAMRMB.mjs.map +0 -1
  337. package/dist/chunk-6H62JRNM.mjs +0 -120
  338. package/dist/chunk-6H62JRNM.mjs.map +0 -1
  339. package/dist/chunk-6KCII3F6.mjs +0 -126
  340. package/dist/chunk-6KCII3F6.mjs.map +0 -1
  341. package/dist/chunk-7EHB43BJ.js +0 -155
  342. package/dist/chunk-7EHB43BJ.js.map +0 -1
  343. package/dist/chunk-7LRD23Q5.js +0 -191
  344. package/dist/chunk-7LRD23Q5.js.map +0 -1
  345. package/dist/chunk-7SAHKOJG.mjs +0 -45
  346. package/dist/chunk-7SAHKOJG.mjs.map +0 -1
  347. package/dist/chunk-A3D2YZK3.js +0 -50
  348. package/dist/chunk-A3D2YZK3.js.map +0 -1
  349. package/dist/chunk-AL4QFH7V.js +0 -63
  350. package/dist/chunk-AL4QFH7V.js.map +0 -1
  351. package/dist/chunk-B3WFEG6U.js +0 -69
  352. package/dist/chunk-B3WFEG6U.js.map +0 -1
  353. package/dist/chunk-BDZQJ6GK.js +0 -242
  354. package/dist/chunk-BDZQJ6GK.js.map +0 -1
  355. package/dist/chunk-BRWFYRGX.js +0 -61
  356. package/dist/chunk-BRWFYRGX.js.map +0 -1
  357. package/dist/chunk-C5DNTLBO.js +0 -53
  358. package/dist/chunk-C5DNTLBO.js.map +0 -1
  359. package/dist/chunk-CRALRACO.js +0 -54
  360. package/dist/chunk-CRALRACO.js.map +0 -1
  361. package/dist/chunk-CVACQJRM.js +0 -149
  362. package/dist/chunk-CVACQJRM.js.map +0 -1
  363. package/dist/chunk-DEIUKFPZ.mjs +0 -63
  364. package/dist/chunk-DEIUKFPZ.mjs.map +0 -1
  365. package/dist/chunk-DN2AEEA2.js +0 -13
  366. package/dist/chunk-DN2AEEA2.js.map +0 -1
  367. package/dist/chunk-DTNRWU4B.mjs +0 -35
  368. package/dist/chunk-DTNRWU4B.mjs.map +0 -1
  369. package/dist/chunk-DXIUEWRJ.mjs +0 -31
  370. package/dist/chunk-DXIUEWRJ.mjs.map +0 -1
  371. package/dist/chunk-DYFV66JX.mjs +0 -54
  372. package/dist/chunk-DYFV66JX.mjs.map +0 -1
  373. package/dist/chunk-F3WMAHXV.mjs +0 -86
  374. package/dist/chunk-F3WMAHXV.mjs.map +0 -1
  375. package/dist/chunk-F4RWPBBB.js +0 -79
  376. package/dist/chunk-F4RWPBBB.js.map +0 -1
  377. package/dist/chunk-FEGAPM6U.js +0 -194
  378. package/dist/chunk-FEGAPM6U.js.map +0 -1
  379. package/dist/chunk-G5TS56PW.mjs +0 -160
  380. package/dist/chunk-G5TS56PW.mjs.map +0 -1
  381. package/dist/chunk-GG6VGOEN.mjs +0 -590
  382. package/dist/chunk-GG6VGOEN.mjs.map +0 -1
  383. package/dist/chunk-GLAMGK32.mjs +0 -54
  384. package/dist/chunk-GLAMGK32.mjs.map +0 -1
  385. package/dist/chunk-GNMMUJXD.mjs +0 -200
  386. package/dist/chunk-GNMMUJXD.mjs.map +0 -1
  387. package/dist/chunk-GNPBULLS.mjs +0 -600
  388. package/dist/chunk-GNPBULLS.mjs.map +0 -1
  389. package/dist/chunk-GTE2DELE.js +0 -65
  390. package/dist/chunk-GTE2DELE.js.map +0 -1
  391. package/dist/chunk-GUQAFFTH.js +0 -94
  392. package/dist/chunk-GUQAFFTH.js.map +0 -1
  393. package/dist/chunk-H5VOYZHT.mjs +0 -34
  394. package/dist/chunk-H5VOYZHT.mjs.map +0 -1
  395. package/dist/chunk-HR6PBOGG.mjs +0 -59
  396. package/dist/chunk-HR6PBOGG.mjs.map +0 -1
  397. package/dist/chunk-HROONQS3.js +0 -55
  398. package/dist/chunk-HROONQS3.js.map +0 -1
  399. package/dist/chunk-IAO7SOQ3.mjs +0 -56
  400. package/dist/chunk-IAO7SOQ3.mjs.map +0 -1
  401. package/dist/chunk-K2QKU3K6.mjs +0 -40
  402. package/dist/chunk-K2QKU3K6.mjs.map +0 -1
  403. package/dist/chunk-KEUZZCCP.js +0 -53
  404. package/dist/chunk-KEUZZCCP.js.map +0 -1
  405. package/dist/chunk-KJXSLTG7.mjs +0 -73
  406. package/dist/chunk-KJXSLTG7.mjs.map +0 -1
  407. package/dist/chunk-L5AFUCVH.mjs +0 -26
  408. package/dist/chunk-L5AFUCVH.mjs.map +0 -1
  409. package/dist/chunk-LB3I52KZ.mjs +0 -42
  410. package/dist/chunk-LB3I52KZ.mjs.map +0 -1
  411. package/dist/chunk-LN75MJQ2.js +0 -71
  412. package/dist/chunk-LN75MJQ2.js.map +0 -1
  413. package/dist/chunk-LRBOFJUV.js +0 -60
  414. package/dist/chunk-LRBOFJUV.js.map +0 -1
  415. package/dist/chunk-MMNYRBOU.js +0 -157
  416. package/dist/chunk-MMNYRBOU.js.map +0 -1
  417. package/dist/chunk-MO65YF6P.js +0 -236
  418. package/dist/chunk-MO65YF6P.js.map +0 -1
  419. package/dist/chunk-N4KHP5FC.mjs +0 -33
  420. package/dist/chunk-N4KHP5FC.mjs.map +0 -1
  421. package/dist/chunk-NP2J7AB7.mjs +0 -121
  422. package/dist/chunk-NP2J7AB7.mjs.map +0 -1
  423. package/dist/chunk-OLR6SGYO.js +0 -57
  424. package/dist/chunk-OLR6SGYO.js.map +0 -1
  425. package/dist/chunk-ON7NQ4DY.js +0 -21
  426. package/dist/chunk-ON7NQ4DY.js.map +0 -1
  427. package/dist/chunk-PE3VFRLV.mjs +0 -198
  428. package/dist/chunk-PE3VFRLV.mjs.map +0 -1
  429. package/dist/chunk-Q7LOOIE5.mjs +0 -8
  430. package/dist/chunk-Q7LOOIE5.mjs.map +0 -1
  431. package/dist/chunk-QFA6U75G.mjs +0 -51
  432. package/dist/chunk-QFA6U75G.mjs.map +0 -1
  433. package/dist/chunk-QJQPT4WX.js +0 -638
  434. package/dist/chunk-QJQPT4WX.js.map +0 -1
  435. package/dist/chunk-QKHQPBSR.mjs +0 -20
  436. package/dist/chunk-QKHQPBSR.mjs.map +0 -1
  437. package/dist/chunk-SJD4XRFJ.mjs +0 -141
  438. package/dist/chunk-SJD4XRFJ.mjs.map +0 -1
  439. package/dist/chunk-SOOJLU4C.mjs +0 -19
  440. package/dist/chunk-SOOJLU4C.mjs.map +0 -1
  441. package/dist/chunk-T66B5IM5.js +0 -51
  442. package/dist/chunk-T66B5IM5.js.map +0 -1
  443. package/dist/chunk-T7RPZDO4.js +0 -645
  444. package/dist/chunk-T7RPZDO4.js.map +0 -1
  445. package/dist/chunk-TGRMDGTV.mjs +0 -38
  446. package/dist/chunk-TGRMDGTV.mjs.map +0 -1
  447. package/dist/chunk-TH2UKMCO.mjs +0 -11
  448. package/dist/chunk-TH2UKMCO.mjs.map +0 -1
  449. package/dist/chunk-TMV45OKE.mjs +0 -113
  450. package/dist/chunk-TMV45OKE.mjs.map +0 -1
  451. package/dist/chunk-TUJ7EVEK.js +0 -171
  452. package/dist/chunk-TUJ7EVEK.js.map +0 -1
  453. package/dist/chunk-ULNWDOI7.js +0 -122
  454. package/dist/chunk-ULNWDOI7.js.map +0 -1
  455. package/dist/chunk-UNUTTHCH.mjs +0 -210
  456. package/dist/chunk-UNUTTHCH.mjs.map +0 -1
  457. package/dist/chunk-VJMI6BG4.mjs +0 -10
  458. package/dist/chunk-VJMI6BG4.mjs.map +0 -1
  459. package/dist/chunk-VZVOB5MG.mjs +0 -26
  460. package/dist/chunk-VZVOB5MG.mjs.map +0 -1
  461. package/dist/chunk-WD67O22C.js +0 -50
  462. package/dist/chunk-WD67O22C.js.map +0 -1
  463. package/dist/chunk-WYPMLIJN.js +0 -53
  464. package/dist/chunk-WYPMLIJN.js.map +0 -1
  465. package/dist/chunk-X32I34NH.js +0 -109
  466. package/dist/chunk-X32I34NH.js.map +0 -1
  467. package/dist/chunk-X5MOZ3YL.js +0 -65
  468. package/dist/chunk-X5MOZ3YL.js.map +0 -1
  469. package/dist/chunk-Y4JVIPQZ.mjs +0 -31
  470. package/dist/chunk-Y4JVIPQZ.mjs.map +0 -1
  471. package/dist/chunk-Y6WOV2LZ.js +0 -95
  472. package/dist/chunk-Y6WOV2LZ.js.map +0 -1
  473. package/dist/chunk-YAEN5SCU.mjs +0 -41
  474. package/dist/chunk-YAEN5SCU.mjs.map +0 -1
  475. package/dist/chunk-YH6XDF3N.js +0 -121
  476. package/dist/chunk-YH6XDF3N.js.map +0 -1
  477. package/dist/chunk-YJKA4D75.mjs +0 -124
  478. package/dist/chunk-YJKA4D75.mjs.map +0 -1
  479. package/dist/chunk-ZANAF7WB.js +0 -88
  480. package/dist/chunk-ZANAF7WB.js.map +0 -1
  481. package/dist/chunk-ZDBWNPLO.js +0 -30
  482. package/dist/chunk-ZDBWNPLO.js.map +0 -1
  483. package/dist/chunk-ZDT2IOK2.js +0 -56
  484. package/dist/chunk-ZDT2IOK2.js.map +0 -1
  485. package/dist/chunk-ZKGVLTSI.js +0 -25
  486. package/dist/chunk-ZKGVLTSI.js.map +0 -1
  487. package/dist/chunk-ZLELESO7.js +0 -34
  488. package/dist/chunk-ZLELESO7.js.map +0 -1
  489. package/dist/chunk-ZUFUEQTX.mjs +0 -157
  490. package/dist/chunk-ZUFUEQTX.mjs.map +0 -1
  491. package/dist/chunk-ZZZWRQQE.mjs +0 -42
  492. package/dist/chunk-ZZZWRQQE.mjs.map +0 -1
  493. package/dist/command/index.js +0 -138
  494. package/dist/command/index.js.map +0 -1
  495. package/dist/command/index.mjs +0 -128
  496. package/dist/command/index.mjs.map +0 -1
  497. package/dist/components/accordion.js +0 -25
  498. package/dist/components/accordion.js.map +0 -1
  499. package/dist/components/accordion.mjs +0 -4
  500. package/dist/components/accordion.mjs.map +0 -1
  501. package/dist/components/alert.js +0 -21
  502. package/dist/components/alert.js.map +0 -1
  503. package/dist/components/alert.mjs +0 -4
  504. package/dist/components/alert.mjs.map +0 -1
  505. package/dist/components/aspect-ratio.js +0 -12
  506. package/dist/components/aspect-ratio.js.map +0 -1
  507. package/dist/components/aspect-ratio.mjs +0 -3
  508. package/dist/components/aspect-ratio.mjs.map +0 -1
  509. package/dist/components/avatar.js +0 -21
  510. package/dist/components/avatar.js.map +0 -1
  511. package/dist/components/avatar.mjs +0 -4
  512. package/dist/components/avatar.mjs.map +0 -1
  513. package/dist/components/badge.js +0 -17
  514. package/dist/components/badge.js.map +0 -1
  515. package/dist/components/badge.mjs +0 -4
  516. package/dist/components/badge.mjs.map +0 -1
  517. package/dist/components/breadcrumb.js +0 -37
  518. package/dist/components/breadcrumb.js.map +0 -1
  519. package/dist/components/breadcrumb.mjs +0 -4
  520. package/dist/components/breadcrumb.mjs.map +0 -1
  521. package/dist/components/button.js +0 -17
  522. package/dist/components/button.js.map +0 -1
  523. package/dist/components/button.mjs +0 -4
  524. package/dist/components/button.mjs.map +0 -1
  525. package/dist/components/card.js +0 -37
  526. package/dist/components/card.js.map +0 -1
  527. package/dist/components/card.mjs +0 -4
  528. package/dist/components/card.mjs.map +0 -1
  529. package/dist/components/checkbox.js +0 -13
  530. package/dist/components/checkbox.js.map +0 -1
  531. package/dist/components/checkbox.mjs +0 -4
  532. package/dist/components/checkbox.mjs.map +0 -1
  533. package/dist/components/collapsible.js +0 -20
  534. package/dist/components/collapsible.js.map +0 -1
  535. package/dist/components/collapsible.mjs +0 -3
  536. package/dist/components/collapsible.mjs.map +0 -1
  537. package/dist/components/context-menu.js +0 -69
  538. package/dist/components/context-menu.js.map +0 -1
  539. package/dist/components/context-menu.mjs +0 -4
  540. package/dist/components/context-menu.mjs.map +0 -1
  541. package/dist/components/dialog.js +0 -49
  542. package/dist/components/dialog.js.map +0 -1
  543. package/dist/components/dialog.mjs +0 -4
  544. package/dist/components/dialog.mjs.map +0 -1
  545. package/dist/components/drawer.js +0 -49
  546. package/dist/components/drawer.js.map +0 -1
  547. package/dist/components/drawer.mjs +0 -4
  548. package/dist/components/drawer.mjs.map +0 -1
  549. package/dist/components/dropdown-menu.js +0 -69
  550. package/dist/components/dropdown-menu.js.map +0 -1
  551. package/dist/components/dropdown-menu.mjs +0 -4
  552. package/dist/components/dropdown-menu.mjs.map +0 -1
  553. package/dist/components/form.js +0 -42
  554. package/dist/components/form.js.map +0 -1
  555. package/dist/components/form.mjs +0 -5
  556. package/dist/components/form.mjs.map +0 -1
  557. package/dist/components/hover-card.js +0 -21
  558. package/dist/components/hover-card.js.map +0 -1
  559. package/dist/components/hover-card.mjs +0 -4
  560. package/dist/components/hover-card.mjs.map +0 -1
  561. package/dist/components/index.js +0 -1047
  562. package/dist/components/index.js.map +0 -1
  563. package/dist/components/index.mjs +0 -46
  564. package/dist/components/index.mjs.map +0 -1
  565. package/dist/components/input-otp.js +0 -25
  566. package/dist/components/input-otp.js.map +0 -1
  567. package/dist/components/input-otp.mjs +0 -4
  568. package/dist/components/input-otp.mjs.map +0 -1
  569. package/dist/components/input.js +0 -13
  570. package/dist/components/input.js.map +0 -1
  571. package/dist/components/input.mjs +0 -4
  572. package/dist/components/input.mjs.map +0 -1
  573. package/dist/components/label.js +0 -13
  574. package/dist/components/label.js.map +0 -1
  575. package/dist/components/label.mjs +0 -4
  576. package/dist/components/label.mjs.map +0 -1
  577. package/dist/components/menubar.js +0 -73
  578. package/dist/components/menubar.js.map +0 -1
  579. package/dist/components/menubar.mjs +0 -4
  580. package/dist/components/menubar.mjs.map +0 -1
  581. package/dist/components/navigation-menu.js +0 -45
  582. package/dist/components/navigation-menu.js.map +0 -1
  583. package/dist/components/navigation-menu.mjs +0 -4
  584. package/dist/components/navigation-menu.mjs.map +0 -1
  585. package/dist/components/pagination.js +0 -38
  586. package/dist/components/pagination.js.map +0 -1
  587. package/dist/components/pagination.mjs +0 -5
  588. package/dist/components/pagination.mjs.map +0 -1
  589. package/dist/components/popover.js +0 -25
  590. package/dist/components/popover.js.map +0 -1
  591. package/dist/components/popover.mjs +0 -4
  592. package/dist/components/popover.mjs.map +0 -1
  593. package/dist/components/progress.js +0 -13
  594. package/dist/components/progress.js.map +0 -1
  595. package/dist/components/progress.mjs +0 -4
  596. package/dist/components/progress.mjs.map +0 -1
  597. package/dist/components/radio-group.js +0 -17
  598. package/dist/components/radio-group.js.map +0 -1
  599. package/dist/components/radio-group.mjs +0 -4
  600. package/dist/components/radio-group.mjs.map +0 -1
  601. package/dist/components/resizable.js +0 -21
  602. package/dist/components/resizable.js.map +0 -1
  603. package/dist/components/resizable.mjs +0 -4
  604. package/dist/components/resizable.mjs.map +0 -1
  605. package/dist/components/scroll-area.js +0 -17
  606. package/dist/components/scroll-area.js.map +0 -1
  607. package/dist/components/scroll-area.mjs +0 -4
  608. package/dist/components/scroll-area.mjs.map +0 -1
  609. package/dist/components/select.js +0 -49
  610. package/dist/components/select.js.map +0 -1
  611. package/dist/components/select.mjs +0 -4
  612. package/dist/components/select.mjs.map +0 -1
  613. package/dist/components/separator.js +0 -13
  614. package/dist/components/separator.js.map +0 -1
  615. package/dist/components/separator.mjs +0 -4
  616. package/dist/components/separator.mjs.map +0 -1
  617. package/dist/components/sheet.js +0 -49
  618. package/dist/components/sheet.js.map +0 -1
  619. package/dist/components/sheet.mjs +0 -4
  620. package/dist/components/sheet.mjs.map +0 -1
  621. package/dist/components/sidebar.js +0 -111
  622. package/dist/components/sidebar.js.map +0 -1
  623. package/dist/components/sidebar.mjs +0 -10
  624. package/dist/components/sidebar.mjs.map +0 -1
  625. package/dist/components/skeleton.js +0 -13
  626. package/dist/components/skeleton.js.map +0 -1
  627. package/dist/components/skeleton.mjs +0 -4
  628. package/dist/components/skeleton.mjs.map +0 -1
  629. package/dist/components/slider.js +0 -13
  630. package/dist/components/slider.js.map +0 -1
  631. package/dist/components/slider.mjs +0 -4
  632. package/dist/components/slider.mjs.map +0 -1
  633. package/dist/components/switch.js +0 -13
  634. package/dist/components/switch.js.map +0 -1
  635. package/dist/components/switch.mjs +0 -4
  636. package/dist/components/switch.mjs.map +0 -1
  637. package/dist/components/table.js +0 -41
  638. package/dist/components/table.js.map +0 -1
  639. package/dist/components/table.mjs +0 -4
  640. package/dist/components/table.mjs.map +0 -1
  641. package/dist/components/tabs.js +0 -25
  642. package/dist/components/tabs.js.map +0 -1
  643. package/dist/components/tabs.mjs +0 -4
  644. package/dist/components/tabs.mjs.map +0 -1
  645. package/dist/components/textarea.js +0 -13
  646. package/dist/components/textarea.js.map +0 -1
  647. package/dist/components/textarea.mjs +0 -4
  648. package/dist/components/textarea.mjs.map +0 -1
  649. package/dist/components/toast.js +0 -37
  650. package/dist/components/toast.js.map +0 -1
  651. package/dist/components/toast.mjs +0 -4
  652. package/dist/components/toast.mjs.map +0 -1
  653. package/dist/components/toggle-group.js +0 -18
  654. package/dist/components/toggle-group.js.map +0 -1
  655. package/dist/components/toggle-group.mjs +0 -5
  656. package/dist/components/toggle-group.mjs.map +0 -1
  657. package/dist/components/toggle.js +0 -17
  658. package/dist/components/toggle.js.map +0 -1
  659. package/dist/components/toggle.mjs +0 -4
  660. package/dist/components/toggle.mjs.map +0 -1
  661. package/dist/components/tooltip.js +0 -25
  662. package/dist/components/tooltip.js.map +0 -1
  663. package/dist/components/tooltip.mjs +0 -4
  664. package/dist/components/tooltip.mjs.map +0 -1
  665. package/dist/effects/index.js +0 -162
  666. package/dist/effects/index.js.map +0 -1
  667. package/dist/effects/index.mjs +0 -156
  668. package/dist/effects/index.mjs.map +0 -1
  669. package/dist/lib/utils.js +0 -12
  670. package/dist/lib/utils.js.map +0 -1
  671. package/dist/lib/utils.mjs +0 -3
  672. package/dist/lib/utils.mjs.map +0 -1
  673. package/dist/markdown/index.js +0 -669
  674. package/dist/markdown/index.js.map +0 -1
  675. package/dist/markdown/index.mjs +0 -635
  676. package/dist/markdown/index.mjs.map +0 -1
  677. package/dist/qr/index.js +0 -101
  678. package/dist/qr/index.js.map +0 -1
  679. package/dist/qr/index.mjs +0 -98
  680. package/dist/qr/index.mjs.map +0 -1
  681. package/dist/upload/index.js +0 -166
  682. package/dist/upload/index.js.map +0 -1
  683. package/dist/upload/index.mjs +0 -163
  684. package/dist/upload/index.mjs.map +0 -1
  685. package/publish.sh +0 -27
@@ -0,0 +1,1854 @@
1
+ {
2
+ "version": "1.0.0",
3
+ "lastUpdated": "2025-09-19T00:18:50.245Z",
4
+ "frameworks": [
5
+ "react",
6
+ "svelte",
7
+ "vue",
8
+ "react-native"
9
+ ],
10
+ "coverage": {
11
+ "react": {
12
+ "implemented": 45,
13
+ "total": 70,
14
+ "percentage": 64
15
+ },
16
+ "svelte": {
17
+ "implemented": 49,
18
+ "total": 70,
19
+ "percentage": 70
20
+ },
21
+ "vue": {
22
+ "implemented": 57,
23
+ "total": 70,
24
+ "percentage": 81
25
+ },
26
+ "react-native": {
27
+ "implemented": 30,
28
+ "total": 70,
29
+ "percentage": 43
30
+ }
31
+ },
32
+ "components": {
33
+ "accordion": {
34
+ "react": {
35
+ "status": "complete",
36
+ "version": "1.0.0",
37
+ "path": "frameworks/react/accordion..tsx",
38
+ "native": true
39
+ },
40
+ "svelte": {
41
+ "status": "complete",
42
+ "version": "1.0.0",
43
+ "path": "frameworks/svelte/accordion..svelte",
44
+ "native": true
45
+ },
46
+ "vue": {
47
+ "status": "complete",
48
+ "version": "1.0.0",
49
+ "path": "frameworks/vue/accordion..vue",
50
+ "native": true
51
+ },
52
+ "react-native": {
53
+ "status": "complete",
54
+ "version": "1.0.0",
55
+ "path": "frameworks/react-native/accordion..tsx",
56
+ "native": true
57
+ }
58
+ },
59
+ "alert": {
60
+ "react": {
61
+ "status": "complete",
62
+ "version": "1.0.0",
63
+ "path": "frameworks/react/alert..tsx",
64
+ "native": true
65
+ },
66
+ "svelte": {
67
+ "status": "complete",
68
+ "version": "1.0.0",
69
+ "path": "frameworks/svelte/alert..svelte",
70
+ "native": true
71
+ },
72
+ "vue": {
73
+ "status": "complete",
74
+ "version": "1.0.0",
75
+ "path": "frameworks/vue/alert..vue",
76
+ "native": true
77
+ },
78
+ "react-native": {
79
+ "status": "complete",
80
+ "version": "1.0.0",
81
+ "path": "frameworks/react-native/alert..tsx",
82
+ "native": true
83
+ }
84
+ },
85
+ "alert-dialog": {
86
+ "react": {
87
+ "status": "missing",
88
+ "version": null,
89
+ "path": null,
90
+ "native": false
91
+ },
92
+ "svelte": {
93
+ "status": "complete",
94
+ "version": "1.0.0",
95
+ "path": "frameworks/svelte/alert-dialog..svelte",
96
+ "native": true
97
+ },
98
+ "vue": {
99
+ "status": "complete",
100
+ "version": "1.0.0",
101
+ "path": "frameworks/vue/alert-dialog..vue",
102
+ "native": true
103
+ },
104
+ "react-native": {
105
+ "status": "missing",
106
+ "version": null,
107
+ "path": null,
108
+ "native": false
109
+ }
110
+ },
111
+ "aspect": {
112
+ "react": {
113
+ "status": "complete",
114
+ "version": "1.0.0",
115
+ "path": "frameworks/react/aspect..tsx",
116
+ "native": true
117
+ },
118
+ "svelte": {
119
+ "status": "missing",
120
+ "version": null,
121
+ "path": null,
122
+ "native": false
123
+ },
124
+ "vue": {
125
+ "status": "missing",
126
+ "version": null,
127
+ "path": null,
128
+ "native": false
129
+ },
130
+ "react-native": {
131
+ "status": "complete",
132
+ "version": "1.0.0",
133
+ "path": "frameworks/react-native/aspect..tsx",
134
+ "native": true
135
+ }
136
+ },
137
+ "aspect-ratio": {
138
+ "react": {
139
+ "status": "missing",
140
+ "version": null,
141
+ "path": null,
142
+ "native": false
143
+ },
144
+ "svelte": {
145
+ "status": "complete",
146
+ "version": "1.0.0",
147
+ "path": "frameworks/svelte/aspect-ratio..svelte",
148
+ "native": true
149
+ },
150
+ "vue": {
151
+ "status": "complete",
152
+ "version": "1.0.0",
153
+ "path": "frameworks/vue/aspect-ratio..vue",
154
+ "native": true
155
+ },
156
+ "react-native": {
157
+ "status": "missing",
158
+ "version": null,
159
+ "path": null,
160
+ "native": false
161
+ }
162
+ },
163
+ "auto-form": {
164
+ "react": {
165
+ "status": "missing",
166
+ "version": null,
167
+ "path": null,
168
+ "native": false
169
+ },
170
+ "svelte": {
171
+ "status": "missing",
172
+ "version": null,
173
+ "path": null,
174
+ "native": false
175
+ },
176
+ "vue": {
177
+ "status": "complete",
178
+ "version": "1.0.0",
179
+ "path": "frameworks/vue/auto-form..vue",
180
+ "native": true
181
+ },
182
+ "react-native": {
183
+ "status": "missing",
184
+ "version": null,
185
+ "path": null,
186
+ "native": false
187
+ }
188
+ },
189
+ "avatar": {
190
+ "react": {
191
+ "status": "complete",
192
+ "version": "1.0.0",
193
+ "path": "frameworks/react/avatar..tsx",
194
+ "native": true
195
+ },
196
+ "svelte": {
197
+ "status": "complete",
198
+ "version": "1.0.0",
199
+ "path": "frameworks/svelte/avatar..svelte",
200
+ "native": true
201
+ },
202
+ "vue": {
203
+ "status": "complete",
204
+ "version": "1.0.0",
205
+ "path": "frameworks/vue/avatar..vue",
206
+ "native": true
207
+ },
208
+ "react-native": {
209
+ "status": "complete",
210
+ "version": "1.0.0",
211
+ "path": "frameworks/react-native/avatar..tsx",
212
+ "native": true
213
+ }
214
+ },
215
+ "badge": {
216
+ "react": {
217
+ "status": "complete",
218
+ "version": "1.0.0",
219
+ "path": "frameworks/react/badge..tsx",
220
+ "native": true
221
+ },
222
+ "svelte": {
223
+ "status": "complete",
224
+ "version": "1.0.0",
225
+ "path": "frameworks/svelte/badge..svelte",
226
+ "native": true
227
+ },
228
+ "vue": {
229
+ "status": "complete",
230
+ "version": "1.0.0",
231
+ "path": "frameworks/vue/badge..vue",
232
+ "native": true
233
+ },
234
+ "react-native": {
235
+ "status": "complete",
236
+ "version": "1.0.0",
237
+ "path": "frameworks/react-native/badge..tsx",
238
+ "native": true
239
+ }
240
+ },
241
+ "breadcrumb": {
242
+ "react": {
243
+ "status": "complete",
244
+ "version": "1.0.0",
245
+ "path": "frameworks/react/breadcrumb..tsx",
246
+ "native": true
247
+ },
248
+ "svelte": {
249
+ "status": "complete",
250
+ "version": "1.0.0",
251
+ "path": "frameworks/svelte/breadcrumb..svelte",
252
+ "native": true
253
+ },
254
+ "vue": {
255
+ "status": "complete",
256
+ "version": "1.0.0",
257
+ "path": "frameworks/vue/breadcrumb..vue",
258
+ "native": true
259
+ },
260
+ "react-native": {
261
+ "status": "missing",
262
+ "version": null,
263
+ "path": null,
264
+ "native": false
265
+ }
266
+ },
267
+ "button": {
268
+ "react": {
269
+ "status": "complete",
270
+ "version": "1.0.0",
271
+ "path": "frameworks/react/button..tsx",
272
+ "native": true
273
+ },
274
+ "svelte": {
275
+ "status": "complete",
276
+ "version": "1.0.0",
277
+ "path": "frameworks/svelte/button..svelte",
278
+ "native": true
279
+ },
280
+ "vue": {
281
+ "status": "complete",
282
+ "version": "1.0.0",
283
+ "path": "frameworks/vue/button..vue",
284
+ "native": true
285
+ },
286
+ "react-native": {
287
+ "status": "complete",
288
+ "version": "1.0.0",
289
+ "path": "frameworks/react-native/button..tsx",
290
+ "native": true
291
+ }
292
+ },
293
+ "calendar": {
294
+ "react": {
295
+ "status": "complete",
296
+ "version": "1.0.0",
297
+ "path": "frameworks/react/calendar..tsx",
298
+ "native": true
299
+ },
300
+ "svelte": {
301
+ "status": "complete",
302
+ "version": "1.0.0",
303
+ "path": "frameworks/svelte/calendar..svelte",
304
+ "native": true
305
+ },
306
+ "vue": {
307
+ "status": "complete",
308
+ "version": "1.0.0",
309
+ "path": "frameworks/vue/calendar..vue",
310
+ "native": true
311
+ },
312
+ "react-native": {
313
+ "status": "missing",
314
+ "version": null,
315
+ "path": null,
316
+ "native": false
317
+ }
318
+ },
319
+ "card": {
320
+ "react": {
321
+ "status": "complete",
322
+ "version": "1.0.0",
323
+ "path": "frameworks/react/card..tsx",
324
+ "native": true
325
+ },
326
+ "svelte": {
327
+ "status": "complete",
328
+ "version": "1.0.0",
329
+ "path": "frameworks/svelte/card..svelte",
330
+ "native": true
331
+ },
332
+ "vue": {
333
+ "status": "complete",
334
+ "version": "1.0.0",
335
+ "path": "frameworks/vue/card..vue",
336
+ "native": true
337
+ },
338
+ "react-native": {
339
+ "status": "complete",
340
+ "version": "1.0.0",
341
+ "path": "frameworks/react-native/card..tsx",
342
+ "native": true
343
+ }
344
+ },
345
+ "carousel": {
346
+ "react": {
347
+ "status": "complete",
348
+ "version": "1.0.0",
349
+ "path": "frameworks/react/carousel..tsx",
350
+ "native": true
351
+ },
352
+ "svelte": {
353
+ "status": "complete",
354
+ "version": "1.0.0",
355
+ "path": "frameworks/svelte/carousel..svelte",
356
+ "native": true
357
+ },
358
+ "vue": {
359
+ "status": "complete",
360
+ "version": "1.0.0",
361
+ "path": "frameworks/vue/carousel..vue",
362
+ "native": true
363
+ },
364
+ "react-native": {
365
+ "status": "missing",
366
+ "version": null,
367
+ "path": null,
368
+ "native": false
369
+ }
370
+ },
371
+ "chart": {
372
+ "react": {
373
+ "status": "complete",
374
+ "version": "1.0.0",
375
+ "path": "frameworks/react/chart..tsx",
376
+ "native": true
377
+ },
378
+ "svelte": {
379
+ "status": "complete",
380
+ "version": "1.0.0",
381
+ "path": "frameworks/svelte/chart..svelte",
382
+ "native": true
383
+ },
384
+ "vue": {
385
+ "status": "complete",
386
+ "version": "1.0.0",
387
+ "path": "frameworks/vue/chart..vue",
388
+ "native": true
389
+ },
390
+ "react-native": {
391
+ "status": "missing",
392
+ "version": null,
393
+ "path": null,
394
+ "native": false
395
+ }
396
+ },
397
+ "chart-area": {
398
+ "react": {
399
+ "status": "missing",
400
+ "version": null,
401
+ "path": null,
402
+ "native": false
403
+ },
404
+ "svelte": {
405
+ "status": "missing",
406
+ "version": null,
407
+ "path": null,
408
+ "native": false
409
+ },
410
+ "vue": {
411
+ "status": "complete",
412
+ "version": "1.0.0",
413
+ "path": "frameworks/vue/chart-area..vue",
414
+ "native": true
415
+ },
416
+ "react-native": {
417
+ "status": "missing",
418
+ "version": null,
419
+ "path": null,
420
+ "native": false
421
+ }
422
+ },
423
+ "chart-bar": {
424
+ "react": {
425
+ "status": "missing",
426
+ "version": null,
427
+ "path": null,
428
+ "native": false
429
+ },
430
+ "svelte": {
431
+ "status": "missing",
432
+ "version": null,
433
+ "path": null,
434
+ "native": false
435
+ },
436
+ "vue": {
437
+ "status": "complete",
438
+ "version": "1.0.0",
439
+ "path": "frameworks/vue/chart-bar..vue",
440
+ "native": true
441
+ },
442
+ "react-native": {
443
+ "status": "missing",
444
+ "version": null,
445
+ "path": null,
446
+ "native": false
447
+ }
448
+ },
449
+ "chart-donut": {
450
+ "react": {
451
+ "status": "missing",
452
+ "version": null,
453
+ "path": null,
454
+ "native": false
455
+ },
456
+ "svelte": {
457
+ "status": "missing",
458
+ "version": null,
459
+ "path": null,
460
+ "native": false
461
+ },
462
+ "vue": {
463
+ "status": "complete",
464
+ "version": "1.0.0",
465
+ "path": "frameworks/vue/chart-donut..vue",
466
+ "native": true
467
+ },
468
+ "react-native": {
469
+ "status": "missing",
470
+ "version": null,
471
+ "path": null,
472
+ "native": false
473
+ }
474
+ },
475
+ "chart-line": {
476
+ "react": {
477
+ "status": "missing",
478
+ "version": null,
479
+ "path": null,
480
+ "native": false
481
+ },
482
+ "svelte": {
483
+ "status": "missing",
484
+ "version": null,
485
+ "path": null,
486
+ "native": false
487
+ },
488
+ "vue": {
489
+ "status": "complete",
490
+ "version": "1.0.0",
491
+ "path": "frameworks/vue/chart-line..vue",
492
+ "native": true
493
+ },
494
+ "react-native": {
495
+ "status": "missing",
496
+ "version": null,
497
+ "path": null,
498
+ "native": false
499
+ }
500
+ },
501
+ "checkbox": {
502
+ "react": {
503
+ "status": "complete",
504
+ "version": "1.0.0",
505
+ "path": "frameworks/react/checkbox..tsx",
506
+ "native": true
507
+ },
508
+ "svelte": {
509
+ "status": "complete",
510
+ "version": "1.0.0",
511
+ "path": "frameworks/svelte/checkbox..svelte",
512
+ "native": true
513
+ },
514
+ "vue": {
515
+ "status": "complete",
516
+ "version": "1.0.0",
517
+ "path": "frameworks/vue/checkbox..vue",
518
+ "native": true
519
+ },
520
+ "react-native": {
521
+ "status": "complete",
522
+ "version": "1.0.0",
523
+ "path": "frameworks/react-native/checkbox..tsx",
524
+ "native": true
525
+ }
526
+ },
527
+ "collapsible": {
528
+ "react": {
529
+ "status": "complete",
530
+ "version": "1.0.0",
531
+ "path": "frameworks/react/collapsible..tsx",
532
+ "native": true
533
+ },
534
+ "svelte": {
535
+ "status": "complete",
536
+ "version": "1.0.0",
537
+ "path": "frameworks/svelte/collapsible..svelte",
538
+ "native": true
539
+ },
540
+ "vue": {
541
+ "status": "complete",
542
+ "version": "1.0.0",
543
+ "path": "frameworks/vue/collapsible..vue",
544
+ "native": true
545
+ },
546
+ "react-native": {
547
+ "status": "complete",
548
+ "version": "1.0.0",
549
+ "path": "frameworks/react-native/collapsible..tsx",
550
+ "native": true
551
+ }
552
+ },
553
+ "combobox": {
554
+ "react": {
555
+ "status": "missing",
556
+ "version": null,
557
+ "path": null,
558
+ "native": false
559
+ },
560
+ "svelte": {
561
+ "status": "missing",
562
+ "version": null,
563
+ "path": null,
564
+ "native": false
565
+ },
566
+ "vue": {
567
+ "status": "complete",
568
+ "version": "1.0.0",
569
+ "path": "frameworks/vue/combobox..vue",
570
+ "native": true
571
+ },
572
+ "react-native": {
573
+ "status": "missing",
574
+ "version": null,
575
+ "path": null,
576
+ "native": false
577
+ }
578
+ },
579
+ "command": {
580
+ "react": {
581
+ "status": "complete",
582
+ "version": "1.0.0",
583
+ "path": "frameworks/react/command..tsx",
584
+ "native": true
585
+ },
586
+ "svelte": {
587
+ "status": "complete",
588
+ "version": "1.0.0",
589
+ "path": "frameworks/svelte/command..svelte",
590
+ "native": true
591
+ },
592
+ "vue": {
593
+ "status": "complete",
594
+ "version": "1.0.0",
595
+ "path": "frameworks/vue/command..vue",
596
+ "native": true
597
+ },
598
+ "react-native": {
599
+ "status": "missing",
600
+ "version": null,
601
+ "path": null,
602
+ "native": false
603
+ }
604
+ },
605
+ "context": {
606
+ "react": {
607
+ "status": "complete",
608
+ "version": "1.0.0",
609
+ "path": "frameworks/react/context..tsx",
610
+ "native": true
611
+ },
612
+ "svelte": {
613
+ "status": "missing",
614
+ "version": null,
615
+ "path": null,
616
+ "native": false
617
+ },
618
+ "vue": {
619
+ "status": "missing",
620
+ "version": null,
621
+ "path": null,
622
+ "native": false
623
+ },
624
+ "react-native": {
625
+ "status": "complete",
626
+ "version": "1.0.0",
627
+ "path": "frameworks/react-native/context..tsx",
628
+ "native": true
629
+ }
630
+ },
631
+ "context-menu": {
632
+ "react": {
633
+ "status": "missing",
634
+ "version": null,
635
+ "path": null,
636
+ "native": false
637
+ },
638
+ "svelte": {
639
+ "status": "complete",
640
+ "version": "1.0.0",
641
+ "path": "frameworks/svelte/context-menu..svelte",
642
+ "native": true
643
+ },
644
+ "vue": {
645
+ "status": "complete",
646
+ "version": "1.0.0",
647
+ "path": "frameworks/vue/context-menu..vue",
648
+ "native": true
649
+ },
650
+ "react-native": {
651
+ "status": "missing",
652
+ "version": null,
653
+ "path": null,
654
+ "native": false
655
+ }
656
+ },
657
+ "data-table": {
658
+ "react": {
659
+ "status": "missing",
660
+ "version": null,
661
+ "path": null,
662
+ "native": false
663
+ },
664
+ "svelte": {
665
+ "status": "complete",
666
+ "version": "1.0.0",
667
+ "path": "frameworks/svelte/data-table..svelte",
668
+ "native": true
669
+ },
670
+ "vue": {
671
+ "status": "missing",
672
+ "version": null,
673
+ "path": null,
674
+ "native": false
675
+ },
676
+ "react-native": {
677
+ "status": "missing",
678
+ "version": null,
679
+ "path": null,
680
+ "native": false
681
+ }
682
+ },
683
+ "dialog": {
684
+ "react": {
685
+ "status": "complete",
686
+ "version": "1.0.0",
687
+ "path": "frameworks/react/dialog..tsx",
688
+ "native": true
689
+ },
690
+ "svelte": {
691
+ "status": "complete",
692
+ "version": "1.0.0",
693
+ "path": "frameworks/svelte/dialog..svelte",
694
+ "native": true
695
+ },
696
+ "vue": {
697
+ "status": "complete",
698
+ "version": "1.0.0",
699
+ "path": "frameworks/vue/dialog..vue",
700
+ "native": true
701
+ },
702
+ "react-native": {
703
+ "status": "complete",
704
+ "version": "1.0.0",
705
+ "path": "frameworks/react-native/dialog..tsx",
706
+ "native": true
707
+ }
708
+ },
709
+ "drawer": {
710
+ "react": {
711
+ "status": "complete",
712
+ "version": "1.0.0",
713
+ "path": "frameworks/react/drawer..tsx",
714
+ "native": true
715
+ },
716
+ "svelte": {
717
+ "status": "complete",
718
+ "version": "1.0.0",
719
+ "path": "frameworks/svelte/drawer..svelte",
720
+ "native": true
721
+ },
722
+ "vue": {
723
+ "status": "complete",
724
+ "version": "1.0.0",
725
+ "path": "frameworks/vue/drawer..vue",
726
+ "native": true
727
+ },
728
+ "react-native": {
729
+ "status": "missing",
730
+ "version": null,
731
+ "path": null,
732
+ "native": false
733
+ }
734
+ },
735
+ "dropdown": {
736
+ "react": {
737
+ "status": "complete",
738
+ "version": "1.0.0",
739
+ "path": "frameworks/react/dropdown..tsx",
740
+ "native": true
741
+ },
742
+ "svelte": {
743
+ "status": "missing",
744
+ "version": null,
745
+ "path": null,
746
+ "native": false
747
+ },
748
+ "vue": {
749
+ "status": "missing",
750
+ "version": null,
751
+ "path": null,
752
+ "native": false
753
+ },
754
+ "react-native": {
755
+ "status": "complete",
756
+ "version": "1.0.0",
757
+ "path": "frameworks/react-native/dropdown..tsx",
758
+ "native": true
759
+ }
760
+ },
761
+ "dropdown-menu": {
762
+ "react": {
763
+ "status": "missing",
764
+ "version": null,
765
+ "path": null,
766
+ "native": false
767
+ },
768
+ "svelte": {
769
+ "status": "complete",
770
+ "version": "1.0.0",
771
+ "path": "frameworks/svelte/dropdown-menu..svelte",
772
+ "native": true
773
+ },
774
+ "vue": {
775
+ "status": "complete",
776
+ "version": "1.0.0",
777
+ "path": "frameworks/vue/dropdown-menu..vue",
778
+ "native": true
779
+ },
780
+ "react-native": {
781
+ "status": "missing",
782
+ "version": null,
783
+ "path": null,
784
+ "native": false
785
+ }
786
+ },
787
+ "form": {
788
+ "react": {
789
+ "status": "complete",
790
+ "version": "1.0.0",
791
+ "path": "frameworks/react/form..tsx",
792
+ "native": true
793
+ },
794
+ "svelte": {
795
+ "status": "complete",
796
+ "version": "1.0.0",
797
+ "path": "frameworks/svelte/form..svelte",
798
+ "native": true
799
+ },
800
+ "vue": {
801
+ "status": "complete",
802
+ "version": "1.0.0",
803
+ "path": "frameworks/vue/form..vue",
804
+ "native": true
805
+ },
806
+ "react-native": {
807
+ "status": "missing",
808
+ "version": null,
809
+ "path": null,
810
+ "native": false
811
+ }
812
+ },
813
+ "hover": {
814
+ "react": {
815
+ "status": "complete",
816
+ "version": "1.0.0",
817
+ "path": "frameworks/react/hover..tsx",
818
+ "native": true
819
+ },
820
+ "svelte": {
821
+ "status": "missing",
822
+ "version": null,
823
+ "path": null,
824
+ "native": false
825
+ },
826
+ "vue": {
827
+ "status": "missing",
828
+ "version": null,
829
+ "path": null,
830
+ "native": false
831
+ },
832
+ "react-native": {
833
+ "status": "complete",
834
+ "version": "1.0.0",
835
+ "path": "frameworks/react-native/hover..tsx",
836
+ "native": true
837
+ }
838
+ },
839
+ "hover-card": {
840
+ "react": {
841
+ "status": "missing",
842
+ "version": null,
843
+ "path": null,
844
+ "native": false
845
+ },
846
+ "svelte": {
847
+ "status": "complete",
848
+ "version": "1.0.0",
849
+ "path": "frameworks/svelte/hover-card..svelte",
850
+ "native": true
851
+ },
852
+ "vue": {
853
+ "status": "complete",
854
+ "version": "1.0.0",
855
+ "path": "frameworks/vue/hover-card..vue",
856
+ "native": true
857
+ },
858
+ "react-native": {
859
+ "status": "missing",
860
+ "version": null,
861
+ "path": null,
862
+ "native": false
863
+ }
864
+ },
865
+ "icon": {
866
+ "react": {
867
+ "status": "missing",
868
+ "version": null,
869
+ "path": null,
870
+ "native": false
871
+ },
872
+ "svelte": {
873
+ "status": "missing",
874
+ "version": null,
875
+ "path": null,
876
+ "native": false
877
+ },
878
+ "vue": {
879
+ "status": "missing",
880
+ "version": null,
881
+ "path": null,
882
+ "native": false
883
+ },
884
+ "react-native": {
885
+ "status": "complete",
886
+ "version": "1.0.0",
887
+ "path": "frameworks/react-native/icon..tsx",
888
+ "native": true
889
+ }
890
+ },
891
+ "input": {
892
+ "react": {
893
+ "status": "complete",
894
+ "version": "1.0.0",
895
+ "path": "frameworks/react/input..tsx",
896
+ "native": true
897
+ },
898
+ "svelte": {
899
+ "status": "complete",
900
+ "version": "1.0.0",
901
+ "path": "frameworks/svelte/input..svelte",
902
+ "native": true
903
+ },
904
+ "vue": {
905
+ "status": "complete",
906
+ "version": "1.0.0",
907
+ "path": "frameworks/vue/input..vue",
908
+ "native": true
909
+ },
910
+ "react-native": {
911
+ "status": "complete",
912
+ "version": "1.0.0",
913
+ "path": "frameworks/react-native/input..tsx",
914
+ "native": true
915
+ }
916
+ },
917
+ "input-otp": {
918
+ "react": {
919
+ "status": "missing",
920
+ "version": null,
921
+ "path": null,
922
+ "native": false
923
+ },
924
+ "svelte": {
925
+ "status": "complete",
926
+ "version": "1.0.0",
927
+ "path": "frameworks/svelte/input-otp..svelte",
928
+ "native": true
929
+ },
930
+ "vue": {
931
+ "status": "missing",
932
+ "version": null,
933
+ "path": null,
934
+ "native": false
935
+ },
936
+ "react-native": {
937
+ "status": "missing",
938
+ "version": null,
939
+ "path": null,
940
+ "native": false
941
+ }
942
+ },
943
+ "label": {
944
+ "react": {
945
+ "status": "complete",
946
+ "version": "1.0.0",
947
+ "path": "frameworks/react/label..tsx",
948
+ "native": true
949
+ },
950
+ "svelte": {
951
+ "status": "complete",
952
+ "version": "1.0.0",
953
+ "path": "frameworks/svelte/label..svelte",
954
+ "native": true
955
+ },
956
+ "vue": {
957
+ "status": "complete",
958
+ "version": "1.0.0",
959
+ "path": "frameworks/vue/label..vue",
960
+ "native": true
961
+ },
962
+ "react-native": {
963
+ "status": "complete",
964
+ "version": "1.0.0",
965
+ "path": "frameworks/react-native/label..tsx",
966
+ "native": true
967
+ }
968
+ },
969
+ "menubar": {
970
+ "react": {
971
+ "status": "complete",
972
+ "version": "1.0.0",
973
+ "path": "frameworks/react/menubar..tsx",
974
+ "native": true
975
+ },
976
+ "svelte": {
977
+ "status": "complete",
978
+ "version": "1.0.0",
979
+ "path": "frameworks/svelte/menubar..svelte",
980
+ "native": true
981
+ },
982
+ "vue": {
983
+ "status": "complete",
984
+ "version": "1.0.0",
985
+ "path": "frameworks/vue/menubar..vue",
986
+ "native": true
987
+ },
988
+ "react-native": {
989
+ "status": "complete",
990
+ "version": "1.0.0",
991
+ "path": "frameworks/react-native/menubar..tsx",
992
+ "native": true
993
+ }
994
+ },
995
+ "native": {
996
+ "react": {
997
+ "status": "missing",
998
+ "version": null,
999
+ "path": null,
1000
+ "native": false
1001
+ },
1002
+ "svelte": {
1003
+ "status": "missing",
1004
+ "version": null,
1005
+ "path": null,
1006
+ "native": false
1007
+ },
1008
+ "vue": {
1009
+ "status": "missing",
1010
+ "version": null,
1011
+ "path": null,
1012
+ "native": false
1013
+ },
1014
+ "react-native": {
1015
+ "status": "complete",
1016
+ "version": "1.0.0",
1017
+ "path": "frameworks/react-native/native..tsx",
1018
+ "native": true
1019
+ }
1020
+ },
1021
+ "navigation": {
1022
+ "react": {
1023
+ "status": "complete",
1024
+ "version": "1.0.0",
1025
+ "path": "frameworks/react/navigation..tsx",
1026
+ "native": true
1027
+ },
1028
+ "svelte": {
1029
+ "status": "missing",
1030
+ "version": null,
1031
+ "path": null,
1032
+ "native": false
1033
+ },
1034
+ "vue": {
1035
+ "status": "missing",
1036
+ "version": null,
1037
+ "path": null,
1038
+ "native": false
1039
+ },
1040
+ "react-native": {
1041
+ "status": "missing",
1042
+ "version": null,
1043
+ "path": null,
1044
+ "native": false
1045
+ }
1046
+ },
1047
+ "navigation-menu": {
1048
+ "react": {
1049
+ "status": "missing",
1050
+ "version": null,
1051
+ "path": null,
1052
+ "native": false
1053
+ },
1054
+ "svelte": {
1055
+ "status": "complete",
1056
+ "version": "1.0.0",
1057
+ "path": "frameworks/svelte/navigation-menu..svelte",
1058
+ "native": true
1059
+ },
1060
+ "vue": {
1061
+ "status": "complete",
1062
+ "version": "1.0.0",
1063
+ "path": "frameworks/vue/navigation-menu..vue",
1064
+ "native": true
1065
+ },
1066
+ "react-native": {
1067
+ "status": "missing",
1068
+ "version": null,
1069
+ "path": null,
1070
+ "native": false
1071
+ }
1072
+ },
1073
+ "number-field": {
1074
+ "react": {
1075
+ "status": "missing",
1076
+ "version": null,
1077
+ "path": null,
1078
+ "native": false
1079
+ },
1080
+ "svelte": {
1081
+ "status": "missing",
1082
+ "version": null,
1083
+ "path": null,
1084
+ "native": false
1085
+ },
1086
+ "vue": {
1087
+ "status": "complete",
1088
+ "version": "1.0.0",
1089
+ "path": "frameworks/vue/number-field..vue",
1090
+ "native": true
1091
+ },
1092
+ "react-native": {
1093
+ "status": "missing",
1094
+ "version": null,
1095
+ "path": null,
1096
+ "native": false
1097
+ }
1098
+ },
1099
+ "pagination": {
1100
+ "react": {
1101
+ "status": "complete",
1102
+ "version": "1.0.0",
1103
+ "path": "frameworks/react/pagination..tsx",
1104
+ "native": true
1105
+ },
1106
+ "svelte": {
1107
+ "status": "complete",
1108
+ "version": "1.0.0",
1109
+ "path": "frameworks/svelte/pagination..svelte",
1110
+ "native": true
1111
+ },
1112
+ "vue": {
1113
+ "status": "complete",
1114
+ "version": "1.0.0",
1115
+ "path": "frameworks/vue/pagination..vue",
1116
+ "native": true
1117
+ },
1118
+ "react-native": {
1119
+ "status": "missing",
1120
+ "version": null,
1121
+ "path": null,
1122
+ "native": false
1123
+ }
1124
+ },
1125
+ "pin-input": {
1126
+ "react": {
1127
+ "status": "missing",
1128
+ "version": null,
1129
+ "path": null,
1130
+ "native": false
1131
+ },
1132
+ "svelte": {
1133
+ "status": "missing",
1134
+ "version": null,
1135
+ "path": null,
1136
+ "native": false
1137
+ },
1138
+ "vue": {
1139
+ "status": "complete",
1140
+ "version": "1.0.0",
1141
+ "path": "frameworks/vue/pin-input..vue",
1142
+ "native": true
1143
+ },
1144
+ "react-native": {
1145
+ "status": "missing",
1146
+ "version": null,
1147
+ "path": null,
1148
+ "native": false
1149
+ }
1150
+ },
1151
+ "popover": {
1152
+ "react": {
1153
+ "status": "complete",
1154
+ "version": "1.0.0",
1155
+ "path": "frameworks/react/popover..tsx",
1156
+ "native": true
1157
+ },
1158
+ "svelte": {
1159
+ "status": "complete",
1160
+ "version": "1.0.0",
1161
+ "path": "frameworks/svelte/popover..svelte",
1162
+ "native": true
1163
+ },
1164
+ "vue": {
1165
+ "status": "complete",
1166
+ "version": "1.0.0",
1167
+ "path": "frameworks/vue/popover..vue",
1168
+ "native": true
1169
+ },
1170
+ "react-native": {
1171
+ "status": "complete",
1172
+ "version": "1.0.0",
1173
+ "path": "frameworks/react-native/popover..tsx",
1174
+ "native": true
1175
+ }
1176
+ },
1177
+ "progress": {
1178
+ "react": {
1179
+ "status": "complete",
1180
+ "version": "1.0.0",
1181
+ "path": "frameworks/react/progress..tsx",
1182
+ "native": true
1183
+ },
1184
+ "svelte": {
1185
+ "status": "complete",
1186
+ "version": "1.0.0",
1187
+ "path": "frameworks/svelte/progress..svelte",
1188
+ "native": true
1189
+ },
1190
+ "vue": {
1191
+ "status": "complete",
1192
+ "version": "1.0.0",
1193
+ "path": "frameworks/vue/progress..vue",
1194
+ "native": true
1195
+ },
1196
+ "react-native": {
1197
+ "status": "complete",
1198
+ "version": "1.0.0",
1199
+ "path": "frameworks/react-native/progress..tsx",
1200
+ "native": true
1201
+ }
1202
+ },
1203
+ "radio": {
1204
+ "react": {
1205
+ "status": "complete",
1206
+ "version": "1.0.0",
1207
+ "path": "frameworks/react/radio..tsx",
1208
+ "native": true
1209
+ },
1210
+ "svelte": {
1211
+ "status": "missing",
1212
+ "version": null,
1213
+ "path": null,
1214
+ "native": false
1215
+ },
1216
+ "vue": {
1217
+ "status": "missing",
1218
+ "version": null,
1219
+ "path": null,
1220
+ "native": false
1221
+ },
1222
+ "react-native": {
1223
+ "status": "complete",
1224
+ "version": "1.0.0",
1225
+ "path": "frameworks/react-native/radio..tsx",
1226
+ "native": true
1227
+ }
1228
+ },
1229
+ "radio-group": {
1230
+ "react": {
1231
+ "status": "missing",
1232
+ "version": null,
1233
+ "path": null,
1234
+ "native": false
1235
+ },
1236
+ "svelte": {
1237
+ "status": "complete",
1238
+ "version": "1.0.0",
1239
+ "path": "frameworks/svelte/radio-group..svelte",
1240
+ "native": true
1241
+ },
1242
+ "vue": {
1243
+ "status": "complete",
1244
+ "version": "1.0.0",
1245
+ "path": "frameworks/vue/radio-group..vue",
1246
+ "native": true
1247
+ },
1248
+ "react-native": {
1249
+ "status": "missing",
1250
+ "version": null,
1251
+ "path": null,
1252
+ "native": false
1253
+ }
1254
+ },
1255
+ "range-calendar": {
1256
+ "react": {
1257
+ "status": "missing",
1258
+ "version": null,
1259
+ "path": null,
1260
+ "native": false
1261
+ },
1262
+ "svelte": {
1263
+ "status": "complete",
1264
+ "version": "1.0.0",
1265
+ "path": "frameworks/svelte/range-calendar..svelte",
1266
+ "native": true
1267
+ },
1268
+ "vue": {
1269
+ "status": "complete",
1270
+ "version": "1.0.0",
1271
+ "path": "frameworks/vue/range-calendar..vue",
1272
+ "native": true
1273
+ },
1274
+ "react-native": {
1275
+ "status": "missing",
1276
+ "version": null,
1277
+ "path": null,
1278
+ "native": false
1279
+ }
1280
+ },
1281
+ "resizable": {
1282
+ "react": {
1283
+ "status": "complete",
1284
+ "version": "1.0.0",
1285
+ "path": "frameworks/react/resizable..tsx",
1286
+ "native": true
1287
+ },
1288
+ "svelte": {
1289
+ "status": "complete",
1290
+ "version": "1.0.0",
1291
+ "path": "frameworks/svelte/resizable..svelte",
1292
+ "native": true
1293
+ },
1294
+ "vue": {
1295
+ "status": "complete",
1296
+ "version": "1.0.0",
1297
+ "path": "frameworks/vue/resizable..vue",
1298
+ "native": true
1299
+ },
1300
+ "react-native": {
1301
+ "status": "missing",
1302
+ "version": null,
1303
+ "path": null,
1304
+ "native": false
1305
+ }
1306
+ },
1307
+ "scroll": {
1308
+ "react": {
1309
+ "status": "complete",
1310
+ "version": "1.0.0",
1311
+ "path": "frameworks/react/scroll..tsx",
1312
+ "native": true
1313
+ },
1314
+ "svelte": {
1315
+ "status": "missing",
1316
+ "version": null,
1317
+ "path": null,
1318
+ "native": false
1319
+ },
1320
+ "vue": {
1321
+ "status": "missing",
1322
+ "version": null,
1323
+ "path": null,
1324
+ "native": false
1325
+ },
1326
+ "react-native": {
1327
+ "status": "missing",
1328
+ "version": null,
1329
+ "path": null,
1330
+ "native": false
1331
+ }
1332
+ },
1333
+ "scroll-area": {
1334
+ "react": {
1335
+ "status": "missing",
1336
+ "version": null,
1337
+ "path": null,
1338
+ "native": false
1339
+ },
1340
+ "svelte": {
1341
+ "status": "complete",
1342
+ "version": "1.0.0",
1343
+ "path": "frameworks/svelte/scroll-area..svelte",
1344
+ "native": true
1345
+ },
1346
+ "vue": {
1347
+ "status": "complete",
1348
+ "version": "1.0.0",
1349
+ "path": "frameworks/vue/scroll-area..vue",
1350
+ "native": true
1351
+ },
1352
+ "react-native": {
1353
+ "status": "missing",
1354
+ "version": null,
1355
+ "path": null,
1356
+ "native": false
1357
+ }
1358
+ },
1359
+ "select": {
1360
+ "react": {
1361
+ "status": "complete",
1362
+ "version": "1.0.0",
1363
+ "path": "frameworks/react/select..tsx",
1364
+ "native": true
1365
+ },
1366
+ "svelte": {
1367
+ "status": "complete",
1368
+ "version": "1.0.0",
1369
+ "path": "frameworks/svelte/select..svelte",
1370
+ "native": true
1371
+ },
1372
+ "vue": {
1373
+ "status": "complete",
1374
+ "version": "1.0.0",
1375
+ "path": "frameworks/vue/select..vue",
1376
+ "native": true
1377
+ },
1378
+ "react-native": {
1379
+ "status": "complete",
1380
+ "version": "1.0.0",
1381
+ "path": "frameworks/react-native/select..tsx",
1382
+ "native": true
1383
+ }
1384
+ },
1385
+ "separator": {
1386
+ "react": {
1387
+ "status": "complete",
1388
+ "version": "1.0.0",
1389
+ "path": "frameworks/react/separator..tsx",
1390
+ "native": true
1391
+ },
1392
+ "svelte": {
1393
+ "status": "complete",
1394
+ "version": "1.0.0",
1395
+ "path": "frameworks/svelte/separator..svelte",
1396
+ "native": true
1397
+ },
1398
+ "vue": {
1399
+ "status": "complete",
1400
+ "version": "1.0.0",
1401
+ "path": "frameworks/vue/separator..vue",
1402
+ "native": true
1403
+ },
1404
+ "react-native": {
1405
+ "status": "complete",
1406
+ "version": "1.0.0",
1407
+ "path": "frameworks/react-native/separator..tsx",
1408
+ "native": true
1409
+ }
1410
+ },
1411
+ "sheet": {
1412
+ "react": {
1413
+ "status": "complete",
1414
+ "version": "1.0.0",
1415
+ "path": "frameworks/react/sheet..tsx",
1416
+ "native": true
1417
+ },
1418
+ "svelte": {
1419
+ "status": "complete",
1420
+ "version": "1.0.0",
1421
+ "path": "frameworks/svelte/sheet..svelte",
1422
+ "native": true
1423
+ },
1424
+ "vue": {
1425
+ "status": "complete",
1426
+ "version": "1.0.0",
1427
+ "path": "frameworks/vue/sheet..vue",
1428
+ "native": true
1429
+ },
1430
+ "react-native": {
1431
+ "status": "missing",
1432
+ "version": null,
1433
+ "path": null,
1434
+ "native": false
1435
+ }
1436
+ },
1437
+ "sidebar": {
1438
+ "react": {
1439
+ "status": "complete",
1440
+ "version": "1.0.0",
1441
+ "path": "frameworks/react/sidebar..tsx",
1442
+ "native": true
1443
+ },
1444
+ "svelte": {
1445
+ "status": "complete",
1446
+ "version": "1.0.0",
1447
+ "path": "frameworks/svelte/sidebar..svelte",
1448
+ "native": true
1449
+ },
1450
+ "vue": {
1451
+ "status": "complete",
1452
+ "version": "1.0.0",
1453
+ "path": "frameworks/vue/sidebar..vue",
1454
+ "native": true
1455
+ },
1456
+ "react-native": {
1457
+ "status": "missing",
1458
+ "version": null,
1459
+ "path": null,
1460
+ "native": false
1461
+ }
1462
+ },
1463
+ "skeleton": {
1464
+ "react": {
1465
+ "status": "complete",
1466
+ "version": "1.0.0",
1467
+ "path": "frameworks/react/skeleton..tsx",
1468
+ "native": true
1469
+ },
1470
+ "svelte": {
1471
+ "status": "complete",
1472
+ "version": "1.0.0",
1473
+ "path": "frameworks/svelte/skeleton..svelte",
1474
+ "native": true
1475
+ },
1476
+ "vue": {
1477
+ "status": "complete",
1478
+ "version": "1.0.0",
1479
+ "path": "frameworks/vue/skeleton..vue",
1480
+ "native": true
1481
+ },
1482
+ "react-native": {
1483
+ "status": "complete",
1484
+ "version": "1.0.0",
1485
+ "path": "frameworks/react-native/skeleton..tsx",
1486
+ "native": true
1487
+ }
1488
+ },
1489
+ "slider": {
1490
+ "react": {
1491
+ "status": "complete",
1492
+ "version": "1.0.0",
1493
+ "path": "frameworks/react/slider..tsx",
1494
+ "native": true
1495
+ },
1496
+ "svelte": {
1497
+ "status": "complete",
1498
+ "version": "1.0.0",
1499
+ "path": "frameworks/svelte/slider..svelte",
1500
+ "native": true
1501
+ },
1502
+ "vue": {
1503
+ "status": "complete",
1504
+ "version": "1.0.0",
1505
+ "path": "frameworks/vue/slider..vue",
1506
+ "native": true
1507
+ },
1508
+ "react-native": {
1509
+ "status": "missing",
1510
+ "version": null,
1511
+ "path": null,
1512
+ "native": false
1513
+ }
1514
+ },
1515
+ "sonner": {
1516
+ "react": {
1517
+ "status": "complete",
1518
+ "version": "1.0.0",
1519
+ "path": "frameworks/react/sonner..tsx",
1520
+ "native": true
1521
+ },
1522
+ "svelte": {
1523
+ "status": "complete",
1524
+ "version": "1.0.0",
1525
+ "path": "frameworks/svelte/sonner..svelte",
1526
+ "native": true
1527
+ },
1528
+ "vue": {
1529
+ "status": "complete",
1530
+ "version": "1.0.0",
1531
+ "path": "frameworks/vue/sonner..vue",
1532
+ "native": true
1533
+ },
1534
+ "react-native": {
1535
+ "status": "missing",
1536
+ "version": null,
1537
+ "path": null,
1538
+ "native": false
1539
+ }
1540
+ },
1541
+ "stepper": {
1542
+ "react": {
1543
+ "status": "missing",
1544
+ "version": null,
1545
+ "path": null,
1546
+ "native": false
1547
+ },
1548
+ "svelte": {
1549
+ "status": "complete",
1550
+ "version": "1.0.0",
1551
+ "path": "frameworks/svelte/stepper..svelte",
1552
+ "native": true
1553
+ },
1554
+ "vue": {
1555
+ "status": "complete",
1556
+ "version": "1.0.0",
1557
+ "path": "frameworks/vue/stepper..vue",
1558
+ "native": true
1559
+ },
1560
+ "react-native": {
1561
+ "status": "missing",
1562
+ "version": null,
1563
+ "path": null,
1564
+ "native": false
1565
+ }
1566
+ },
1567
+ "switch": {
1568
+ "react": {
1569
+ "status": "complete",
1570
+ "version": "1.0.0",
1571
+ "path": "frameworks/react/switch..tsx",
1572
+ "native": true
1573
+ },
1574
+ "svelte": {
1575
+ "status": "complete",
1576
+ "version": "1.0.0",
1577
+ "path": "frameworks/svelte/switch..svelte",
1578
+ "native": true
1579
+ },
1580
+ "vue": {
1581
+ "status": "complete",
1582
+ "version": "1.0.0",
1583
+ "path": "frameworks/vue/switch..vue",
1584
+ "native": true
1585
+ },
1586
+ "react-native": {
1587
+ "status": "complete",
1588
+ "version": "1.0.0",
1589
+ "path": "frameworks/react-native/switch..tsx",
1590
+ "native": true
1591
+ }
1592
+ },
1593
+ "table": {
1594
+ "react": {
1595
+ "status": "complete",
1596
+ "version": "1.0.0",
1597
+ "path": "frameworks/react/table..tsx",
1598
+ "native": true
1599
+ },
1600
+ "svelte": {
1601
+ "status": "complete",
1602
+ "version": "1.0.0",
1603
+ "path": "frameworks/svelte/table..svelte",
1604
+ "native": true
1605
+ },
1606
+ "vue": {
1607
+ "status": "complete",
1608
+ "version": "1.0.0",
1609
+ "path": "frameworks/vue/table..vue",
1610
+ "native": true
1611
+ },
1612
+ "react-native": {
1613
+ "status": "missing",
1614
+ "version": null,
1615
+ "path": null,
1616
+ "native": false
1617
+ }
1618
+ },
1619
+ "tabs": {
1620
+ "react": {
1621
+ "status": "complete",
1622
+ "version": "1.0.0",
1623
+ "path": "frameworks/react/tabs..tsx",
1624
+ "native": true
1625
+ },
1626
+ "svelte": {
1627
+ "status": "complete",
1628
+ "version": "1.0.0",
1629
+ "path": "frameworks/svelte/tabs..svelte",
1630
+ "native": true
1631
+ },
1632
+ "vue": {
1633
+ "status": "complete",
1634
+ "version": "1.0.0",
1635
+ "path": "frameworks/vue/tabs..vue",
1636
+ "native": true
1637
+ },
1638
+ "react-native": {
1639
+ "status": "complete",
1640
+ "version": "1.0.0",
1641
+ "path": "frameworks/react-native/tabs..tsx",
1642
+ "native": true
1643
+ }
1644
+ },
1645
+ "tags-input": {
1646
+ "react": {
1647
+ "status": "missing",
1648
+ "version": null,
1649
+ "path": null,
1650
+ "native": false
1651
+ },
1652
+ "svelte": {
1653
+ "status": "missing",
1654
+ "version": null,
1655
+ "path": null,
1656
+ "native": false
1657
+ },
1658
+ "vue": {
1659
+ "status": "complete",
1660
+ "version": "1.0.0",
1661
+ "path": "frameworks/vue/tags-input..vue",
1662
+ "native": true
1663
+ },
1664
+ "react-native": {
1665
+ "status": "missing",
1666
+ "version": null,
1667
+ "path": null,
1668
+ "native": false
1669
+ }
1670
+ },
1671
+ "text": {
1672
+ "react": {
1673
+ "status": "missing",
1674
+ "version": null,
1675
+ "path": null,
1676
+ "native": false
1677
+ },
1678
+ "svelte": {
1679
+ "status": "missing",
1680
+ "version": null,
1681
+ "path": null,
1682
+ "native": false
1683
+ },
1684
+ "vue": {
1685
+ "status": "missing",
1686
+ "version": null,
1687
+ "path": null,
1688
+ "native": false
1689
+ },
1690
+ "react-native": {
1691
+ "status": "complete",
1692
+ "version": "1.0.0",
1693
+ "path": "frameworks/react-native/text..tsx",
1694
+ "native": true
1695
+ }
1696
+ },
1697
+ "textarea": {
1698
+ "react": {
1699
+ "status": "complete",
1700
+ "version": "1.0.0",
1701
+ "path": "frameworks/react/textarea..tsx",
1702
+ "native": true
1703
+ },
1704
+ "svelte": {
1705
+ "status": "complete",
1706
+ "version": "1.0.0",
1707
+ "path": "frameworks/svelte/textarea..svelte",
1708
+ "native": true
1709
+ },
1710
+ "vue": {
1711
+ "status": "complete",
1712
+ "version": "1.0.0",
1713
+ "path": "frameworks/vue/textarea..vue",
1714
+ "native": true
1715
+ },
1716
+ "react-native": {
1717
+ "status": "complete",
1718
+ "version": "1.0.0",
1719
+ "path": "frameworks/react-native/textarea..tsx",
1720
+ "native": true
1721
+ }
1722
+ },
1723
+ "toast": {
1724
+ "react": {
1725
+ "status": "complete",
1726
+ "version": "1.0.0",
1727
+ "path": "frameworks/react/toast..tsx",
1728
+ "native": true
1729
+ },
1730
+ "svelte": {
1731
+ "status": "missing",
1732
+ "version": null,
1733
+ "path": null,
1734
+ "native": false
1735
+ },
1736
+ "vue": {
1737
+ "status": "complete",
1738
+ "version": "1.0.0",
1739
+ "path": "frameworks/vue/toast..vue",
1740
+ "native": true
1741
+ },
1742
+ "react-native": {
1743
+ "status": "missing",
1744
+ "version": null,
1745
+ "path": null,
1746
+ "native": false
1747
+ }
1748
+ },
1749
+ "toaster": {
1750
+ "react": {
1751
+ "status": "complete",
1752
+ "version": "1.0.0",
1753
+ "path": "frameworks/react/toaster..tsx",
1754
+ "native": true
1755
+ },
1756
+ "svelte": {
1757
+ "status": "missing",
1758
+ "version": null,
1759
+ "path": null,
1760
+ "native": false
1761
+ },
1762
+ "vue": {
1763
+ "status": "missing",
1764
+ "version": null,
1765
+ "path": null,
1766
+ "native": false
1767
+ },
1768
+ "react-native": {
1769
+ "status": "missing",
1770
+ "version": null,
1771
+ "path": null,
1772
+ "native": false
1773
+ }
1774
+ },
1775
+ "toggle": {
1776
+ "react": {
1777
+ "status": "complete",
1778
+ "version": "1.0.0",
1779
+ "path": "frameworks/react/toggle..tsx",
1780
+ "native": true
1781
+ },
1782
+ "svelte": {
1783
+ "status": "complete",
1784
+ "version": "1.0.0",
1785
+ "path": "frameworks/svelte/toggle..svelte",
1786
+ "native": true
1787
+ },
1788
+ "vue": {
1789
+ "status": "complete",
1790
+ "version": "1.0.0",
1791
+ "path": "frameworks/vue/toggle..vue",
1792
+ "native": true
1793
+ },
1794
+ "react-native": {
1795
+ "status": "complete",
1796
+ "version": "1.0.0",
1797
+ "path": "frameworks/react-native/toggle..tsx",
1798
+ "native": true
1799
+ }
1800
+ },
1801
+ "toggle-group": {
1802
+ "react": {
1803
+ "status": "missing",
1804
+ "version": null,
1805
+ "path": null,
1806
+ "native": false
1807
+ },
1808
+ "svelte": {
1809
+ "status": "complete",
1810
+ "version": "1.0.0",
1811
+ "path": "frameworks/svelte/toggle-group..svelte",
1812
+ "native": true
1813
+ },
1814
+ "vue": {
1815
+ "status": "complete",
1816
+ "version": "1.0.0",
1817
+ "path": "frameworks/vue/toggle-group..vue",
1818
+ "native": true
1819
+ },
1820
+ "react-native": {
1821
+ "status": "missing",
1822
+ "version": null,
1823
+ "path": null,
1824
+ "native": false
1825
+ }
1826
+ },
1827
+ "tooltip": {
1828
+ "react": {
1829
+ "status": "complete",
1830
+ "version": "1.0.0",
1831
+ "path": "frameworks/react/tooltip..tsx",
1832
+ "native": true
1833
+ },
1834
+ "svelte": {
1835
+ "status": "complete",
1836
+ "version": "1.0.0",
1837
+ "path": "frameworks/svelte/tooltip..svelte",
1838
+ "native": true
1839
+ },
1840
+ "vue": {
1841
+ "status": "complete",
1842
+ "version": "1.0.0",
1843
+ "path": "frameworks/vue/tooltip..vue",
1844
+ "native": true
1845
+ },
1846
+ "react-native": {
1847
+ "status": "complete",
1848
+ "version": "1.0.0",
1849
+ "path": "frameworks/react-native/tooltip..tsx",
1850
+ "native": true
1851
+ }
1852
+ }
1853
+ }
1854
+ }