love-ui 1.2.14 → 1.2.17

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 (2932) hide show
  1. package/README.md +13 -5
  2. package/dist/index.js +141 -8
  3. package/dist/mcp-server.js +1 -1
  4. package/package.json +12 -18
  5. package/registry/__index__.tsx +590 -0
  6. package/registry/default/examples/accordion-controlled.tsx +56 -0
  7. package/registry/default/examples/accordion-demo.tsx +39 -0
  8. package/registry/default/examples/accordion-multiple.tsx +35 -0
  9. package/registry/default/examples/accordion-product-faq.tsx +25 -0
  10. package/registry/default/examples/accordion-single.tsx +35 -0
  11. package/registry/default/examples/alert-billing-notice.tsx +19 -0
  12. package/registry/default/examples/alert-demo.tsx +16 -0
  13. package/registry/default/examples/alert-dialog-demo.tsx +38 -0
  14. package/registry/default/examples/alert-error.tsx +19 -0
  15. package/registry/default/examples/alert-info.tsx +19 -0
  16. package/registry/default/examples/alert-success.tsx +20 -0
  17. package/registry/default/examples/alert-warning.tsx +19 -0
  18. package/registry/default/examples/alert-with-icon-action.tsx +27 -0
  19. package/registry/default/examples/alert-with-icon.tsx +19 -0
  20. package/registry/default/examples/autocomplete-async.tsx +134 -0
  21. package/registry/default/examples/autocomplete-autohighlight.tsx +44 -0
  22. package/registry/default/examples/autocomplete-demo.tsx +44 -0
  23. package/registry/default/examples/autocomplete-disabled.tsx +44 -0
  24. package/registry/default/examples/autocomplete-form.tsx +69 -0
  25. package/registry/default/examples/autocomplete-grouped.tsx +112 -0
  26. package/registry/default/examples/autocomplete-inline.tsx +44 -0
  27. package/registry/default/examples/autocomplete-lg.tsx +45 -0
  28. package/registry/default/examples/autocomplete-limit.tsx +83 -0
  29. package/registry/default/examples/autocomplete-members.tsx +38 -0
  30. package/registry/default/examples/autocomplete-sm.tsx +45 -0
  31. package/registry/default/examples/autocomplete-with-clear.tsx +45 -0
  32. package/registry/default/examples/autocomplete-with-label.tsx +52 -0
  33. package/registry/default/examples/autocomplete-with-trigger-clear.tsx +46 -0
  34. package/registry/default/examples/avatar-demo.tsx +17 -0
  35. package/registry/default/examples/avatar-fallback.tsx +9 -0
  36. package/registry/default/examples/avatar-group.tsx +33 -0
  37. package/registry/default/examples/avatar-radius.tsx +33 -0
  38. package/registry/default/examples/avatar-size.tsx +33 -0
  39. package/registry/default/examples/avatar-team-stack.tsx +27 -0
  40. package/registry/default/examples/badge-demo.tsx +5 -0
  41. package/registry/default/examples/badge-destructive.tsx +5 -0
  42. package/registry/default/examples/badge-error.tsx +5 -0
  43. package/registry/default/examples/badge-info.tsx +5 -0
  44. package/registry/default/examples/badge-lg.tsx +5 -0
  45. package/registry/default/examples/badge-outline.tsx +5 -0
  46. package/registry/default/examples/badge-release-status.tsx +16 -0
  47. package/registry/default/examples/badge-secondary.tsx +5 -0
  48. package/registry/default/examples/badge-sm.tsx +5 -0
  49. package/registry/default/examples/badge-success.tsx +5 -0
  50. package/registry/default/examples/badge-warning.tsx +5 -0
  51. package/registry/default/examples/badge-with-icon.tsx +12 -0
  52. package/registry/default/examples/badge-with-link.tsx +7 -0
  53. package/registry/default/examples/breadcrumb-compact-path.tsx +22 -0
  54. package/registry/default/examples/breadcrumb-custom-separator.tsx +34 -0
  55. package/registry/default/examples/breadcrumb-demo.tsx +60 -0
  56. package/registry/default/examples/breadcrumb-with-ellipsis.tsx +25 -0
  57. package/registry/default/examples/breadcrumb-workspace-path.tsx +28 -0
  58. package/registry/default/examples/button-command-bar.tsx +18 -0
  59. package/registry/default/examples/button-demo.tsx +5 -0
  60. package/registry/default/examples/button-destructive-outline.tsx +5 -0
  61. package/registry/default/examples/button-destructive.tsx +5 -0
  62. package/registry/default/examples/button-disabled.tsx +5 -0
  63. package/registry/default/examples/button-ghost.tsx +5 -0
  64. package/registry/default/examples/button-icon-lg.tsx +11 -0
  65. package/registry/default/examples/button-icon-sm.tsx +11 -0
  66. package/registry/default/examples/button-icon.tsx +11 -0
  67. package/registry/default/examples/button-lg.tsx +5 -0
  68. package/registry/default/examples/button-link.tsx +5 -0
  69. package/registry/default/examples/button-loading.tsx +12 -0
  70. package/registry/default/examples/button-outline.tsx +5 -0
  71. package/registry/default/examples/button-secondary.tsx +5 -0
  72. package/registry/default/examples/button-sm.tsx +5 -0
  73. package/registry/default/examples/button-with-icon.tsx +12 -0
  74. package/registry/default/examples/button-with-link.tsx +7 -0
  75. package/registry/default/examples/button-xl.tsx +5 -0
  76. package/registry/default/examples/button-xs.tsx +5 -0
  77. package/registry/default/examples/card-billing-plan.tsx +26 -0
  78. package/registry/default/examples/card-demo.tsx +71 -0
  79. package/registry/default/examples/card-metric-summary.tsx +29 -0
  80. package/registry/default/examples/card-team-member.tsx +34 -0
  81. package/registry/default/examples/checkbox-card.tsx +16 -0
  82. package/registry/default/examples/checkbox-demo.tsx +11 -0
  83. package/registry/default/examples/checkbox-disabled.tsx +11 -0
  84. package/registry/default/examples/checkbox-form.tsx +39 -0
  85. package/registry/default/examples/checkbox-group-demo.tsx +25 -0
  86. package/registry/default/examples/checkbox-group-disabled.tsx +25 -0
  87. package/registry/default/examples/checkbox-group-form.tsx +54 -0
  88. package/registry/default/examples/checkbox-group-nested-parent.tsx +90 -0
  89. package/registry/default/examples/checkbox-group-parent.tsx +38 -0
  90. package/registry/default/examples/checkbox-notification-row.tsx +17 -0
  91. package/registry/default/examples/checkbox-with-description.tsx +21 -0
  92. package/registry/default/examples/code-block-diff.tsx +42 -0
  93. package/registry/default/examples/code-block-focus.tsx +28 -0
  94. package/registry/default/examples/code-block-headless.tsx +19 -0
  95. package/registry/default/examples/code-block-highlight-line.tsx +28 -0
  96. package/registry/default/examples/code-block-highlight-word.tsx +28 -0
  97. package/registry/default/examples/code-block-no-highlighting.tsx +34 -0
  98. package/registry/default/examples/code-block-numberless.tsx +34 -0
  99. package/registry/default/examples/code-block-shared/index.tsx +2 -0
  100. package/registry/default/examples/code-block-shared.tsx +33 -0
  101. package/registry/default/examples/code-block-theme.tsx +36 -0
  102. package/registry/default/examples/code-block.tsx +34 -0
  103. package/registry/default/examples/collapsible-checklist.tsx +26 -0
  104. package/registry/default/examples/collapsible-command-help.tsx +16 -0
  105. package/registry/default/examples/collapsible-demo.tsx +31 -0
  106. package/registry/default/examples/collapsible-release-notes.tsx +21 -0
  107. package/registry/default/examples/combobox-assignee.tsx +34 -0
  108. package/registry/default/examples/combobox-autohighlight.tsx +44 -0
  109. package/registry/default/examples/combobox-demo.tsx +44 -0
  110. package/registry/default/examples/combobox-disabled.tsx +44 -0
  111. package/registry/default/examples/combobox-form.tsx +68 -0
  112. package/registry/default/examples/combobox-grouped.tsx +112 -0
  113. package/registry/default/examples/combobox-lg.tsx +45 -0
  114. package/registry/default/examples/combobox-multiple-form.tsx +94 -0
  115. package/registry/default/examples/combobox-multiple.tsx +60 -0
  116. package/registry/default/examples/combobox-sm.tsx +45 -0
  117. package/registry/default/examples/combobox-with-clear.tsx +45 -0
  118. package/registry/default/examples/combobox-with-inner-input.tsx +880 -0
  119. package/registry/default/examples/combobox-with-label.tsx +52 -0
  120. package/registry/default/examples/dialog-close-confirmation.tsx +112 -0
  121. package/registry/default/examples/dialog-demo.tsx +50 -0
  122. package/registry/default/examples/dialog-from-menu.tsx +53 -0
  123. package/registry/default/examples/dialog-invite-member.tsx +34 -0
  124. package/registry/default/examples/dialog-nested.tsx +71 -0
  125. package/registry/default/examples/empty-demo.tsx +36 -0
  126. package/registry/default/examples/empty-filtered-results.tsx +24 -0
  127. package/registry/default/examples/empty-inbox-zero.tsx +21 -0
  128. package/registry/default/examples/empty-upload-queue.tsx +24 -0
  129. package/registry/default/examples/field-autocomplete.tsx +53 -0
  130. package/registry/default/examples/field-checkbox-group.tsx +38 -0
  131. package/registry/default/examples/field-checkbox.tsx +13 -0
  132. package/registry/default/examples/field-combobox-multiple.tsx +69 -0
  133. package/registry/default/examples/field-combobox.tsx +53 -0
  134. package/registry/default/examples/field-complete-form.tsx +113 -0
  135. package/registry/default/examples/field-demo.tsx +16 -0
  136. package/registry/default/examples/field-disabled.tsx +22 -0
  137. package/registry/default/examples/field-error.tsx +16 -0
  138. package/registry/default/examples/field-number-field.tsx +27 -0
  139. package/registry/default/examples/field-password.tsx +11 -0
  140. package/registry/default/examples/field-radio.tsx +37 -0
  141. package/registry/default/examples/field-required.tsx +22 -0
  142. package/registry/default/examples/field-select.tsx +41 -0
  143. package/registry/default/examples/field-slider.tsx +16 -0
  144. package/registry/default/examples/field-switch.tsx +13 -0
  145. package/registry/default/examples/field-textarea.tsx +25 -0
  146. package/registry/default/examples/field-validity.tsx +37 -0
  147. package/registry/default/examples/fieldset-billing-address.tsx +12 -0
  148. package/registry/default/examples/fieldset-danger-zone.tsx +15 -0
  149. package/registry/default/examples/fieldset-demo.tsx +33 -0
  150. package/registry/default/examples/fieldset-notification-settings.tsx +14 -0
  151. package/registry/default/examples/form-demo.tsx +43 -0
  152. package/registry/default/examples/form-newsletter.tsx +16 -0
  153. package/registry/default/examples/form-profile-card.tsx +13 -0
  154. package/registry/default/examples/form-zod.tsx +84 -0
  155. package/registry/default/examples/form.tsx +318 -0
  156. package/registry/default/examples/frame-analytics-panel.tsx +16 -0
  157. package/registry/default/examples/frame-code-output.tsx +11 -0
  158. package/registry/default/examples/frame-demo.tsx +26 -0
  159. package/registry/default/examples/frame-device-preview.tsx +14 -0
  160. package/registry/default/examples/gooey-toast-demo.tsx +104 -0
  161. package/registry/default/examples/gooey-toast-position.tsx +36 -0
  162. package/registry/default/examples/gooey-toast-promise.tsx +31 -0
  163. package/registry/default/examples/gooey-toast-states.tsx +76 -0
  164. package/registry/default/examples/gooey-toast-with-button.tsx +34 -0
  165. package/registry/default/examples/group-demo.tsx +28 -0
  166. package/registry/default/examples/group-filter-actions.tsx +14 -0
  167. package/registry/default/examples/group-segmented-filters.tsx +12 -0
  168. package/registry/default/examples/group-toolbar-actions.tsx +14 -0
  169. package/registry/default/examples/group-with-input.tsx +23 -0
  170. package/registry/default/examples/input-demo.tsx +7 -0
  171. package/registry/default/examples/input-disabled.tsx +11 -0
  172. package/registry/default/examples/input-file.tsx +5 -0
  173. package/registry/default/examples/input-lg.tsx +11 -0
  174. package/registry/default/examples/input-search-inline.tsx +12 -0
  175. package/registry/default/examples/input-sm.tsx +11 -0
  176. package/registry/default/examples/input-with-button.tsx +15 -0
  177. package/registry/default/examples/input-with-label.tsx +19 -0
  178. package/registry/default/examples/label-password-field.tsx +11 -0
  179. package/registry/default/examples/menu-checkbox.tsx +21 -0
  180. package/registry/default/examples/menu-close-on-click.tsx +22 -0
  181. package/registry/default/examples/menu-demo.tsx +102 -0
  182. package/registry/default/examples/menu-group-labels.tsx +27 -0
  183. package/registry/default/examples/menu-hover.tsx +21 -0
  184. package/registry/default/examples/menu-link.tsx +25 -0
  185. package/registry/default/examples/menu-nested.tsx +31 -0
  186. package/registry/default/examples/menu-project-actions.tsx +17 -0
  187. package/registry/default/examples/menu-radio-group.tsx +25 -0
  188. package/registry/default/examples/meter-demo.tsx +21 -0
  189. package/registry/default/examples/meter-simple.tsx +5 -0
  190. package/registry/default/examples/meter-storage-quota.tsx +13 -0
  191. package/registry/default/examples/meter-with-formatted-value.tsx +23 -0
  192. package/registry/default/examples/meter-with-range.tsx +23 -0
  193. package/registry/default/examples/number-field-demo.tsx +19 -0
  194. package/registry/default/examples/number-field-disabled.tsx +19 -0
  195. package/registry/default/examples/number-field-form.tsx +75 -0
  196. package/registry/default/examples/number-field-lg.tsx +19 -0
  197. package/registry/default/examples/number-field-sm.tsx +19 -0
  198. package/registry/default/examples/number-field-ticket-count.tsx +19 -0
  199. package/registry/default/examples/number-field-with-formatted-value.tsx +22 -0
  200. package/registry/default/examples/number-field-with-label.tsx +26 -0
  201. package/registry/default/examples/number-field-with-range.tsx +19 -0
  202. package/registry/default/examples/number-field-with-scrub.tsx +21 -0
  203. package/registry/default/examples/number-field-with-step.tsx +31 -0
  204. package/registry/default/examples/pagination-compact.tsx +13 -0
  205. package/registry/default/examples/pagination-demo.tsx +38 -0
  206. package/registry/default/examples/pagination-mini.tsx +12 -0
  207. package/registry/default/examples/pagination-results.tsx +22 -0
  208. package/registry/default/examples/popover-account-summary.tsx +14 -0
  209. package/registry/default/examples/popover-color-swatch.tsx +20 -0
  210. package/registry/default/examples/popover-demo.tsx +41 -0
  211. package/registry/default/examples/popover-with-close.tsx +38 -0
  212. package/registry/default/examples/preview-card-demo.tsx +46 -0
  213. package/registry/default/examples/preview-card-product.tsx +18 -0
  214. package/registry/default/examples/preview-card-profile.tsx +17 -0
  215. package/registry/default/examples/preview-card-repository.tsx +19 -0
  216. package/registry/default/examples/progress-demo.tsx +20 -0
  217. package/registry/default/examples/progress-onboarding.tsx +10 -0
  218. package/registry/default/examples/progress-with-formatted-value.tsx +23 -0
  219. package/registry/default/examples/progress-with-label-value.tsx +21 -0
  220. package/registry/default/examples/radio-group-card.tsx +27 -0
  221. package/registry/default/examples/radio-group-delivery.tsx +16 -0
  222. package/registry/default/examples/radio-group-demo.tsx +18 -0
  223. package/registry/default/examples/radio-group-disabled.tsx +18 -0
  224. package/registry/default/examples/radio-group-form.tsx +50 -0
  225. package/registry/default/examples/radio-group-with-description.tsx +27 -0
  226. package/registry/default/examples/scroll-area-activity.tsx +13 -0
  227. package/registry/default/examples/scroll-area-both.tsx +24 -0
  228. package/registry/default/examples/scroll-area-demo.tsx +20 -0
  229. package/registry/default/examples/scroll-area-horizontal.tsx +18 -0
  230. package/registry/default/examples/select-demo.tsx +31 -0
  231. package/registry/default/examples/select-disabled.tsx +31 -0
  232. package/registry/default/examples/select-form.tsx +64 -0
  233. package/registry/default/examples/select-lg.tsx +31 -0
  234. package/registry/default/examples/select-multiple.tsx +54 -0
  235. package/registry/default/examples/select-sm.tsx +31 -0
  236. package/registry/default/examples/select-timezone.tsx +16 -0
  237. package/registry/default/examples/select-with-groups.tsx +56 -0
  238. package/registry/default/examples/select-without-alignment.tsx +31 -0
  239. package/registry/default/examples/separator-demo.tsx +25 -0
  240. package/registry/default/examples/separator-section-label.tsx +11 -0
  241. package/registry/default/examples/separator-timeline.tsx +13 -0
  242. package/registry/default/examples/separator-vertical-stack.tsx +13 -0
  243. package/registry/default/examples/sheet-checkout-summary.tsx +19 -0
  244. package/registry/default/examples/sheet-demo.tsx +60 -0
  245. package/registry/default/examples/sheet-position.tsx +82 -0
  246. package/registry/default/examples/sheet-profile-editor.tsx +19 -0
  247. package/registry/default/examples/skeleton-chat-list.tsx +14 -0
  248. package/registry/default/examples/skeleton-dashboard-card.tsx +15 -0
  249. package/registry/default/examples/skeleton-demo.tsx +112 -0
  250. package/registry/default/examples/skeleton-only.tsx +17 -0
  251. package/registry/default/examples/slider-demo.tsx +5 -0
  252. package/registry/default/examples/slider-form.tsx +46 -0
  253. package/registry/default/examples/slider-opacity.tsx +12 -0
  254. package/registry/default/examples/slider-range.tsx +5 -0
  255. package/registry/default/examples/slider-vertical.tsx +5 -0
  256. package/registry/default/examples/slider-with-label-value.tsx +13 -0
  257. package/registry/default/examples/switch-card.tsx +23 -0
  258. package/registry/default/examples/switch-demo.tsx +11 -0
  259. package/registry/default/examples/switch-disabled.tsx +11 -0
  260. package/registry/default/examples/switch-form.tsx +38 -0
  261. package/registry/default/examples/switch-privacy-mode.tsx +12 -0
  262. package/registry/default/examples/switch-with-description.tsx +20 -0
  263. package/registry/default/examples/table-demo.tsx +123 -0
  264. package/registry/default/examples/table-framed.tsx +132 -0
  265. package/registry/default/examples/table-invoice-list.tsx +14 -0
  266. package/registry/default/examples/table-user-roles.tsx +12 -0
  267. package/registry/default/examples/table.tsx +170 -0
  268. package/registry/default/examples/tabs-demo.tsx +28 -0
  269. package/registry/default/examples/tabs-settings.tsx +11 -0
  270. package/registry/default/examples/tabs-underline-vertical.tsx +34 -0
  271. package/registry/default/examples/tabs-underline.tsx +30 -0
  272. package/registry/default/examples/tabs-vertical.tsx +28 -0
  273. package/registry/default/examples/textarea-demo.tsx +5 -0
  274. package/registry/default/examples/textarea-disabled.tsx +5 -0
  275. package/registry/default/examples/textarea-feedback.tsx +5 -0
  276. package/registry/default/examples/textarea-form.tsx +44 -0
  277. package/registry/default/examples/textarea-lg.tsx +5 -0
  278. package/registry/default/examples/textarea-sm.tsx +5 -0
  279. package/registry/default/examples/textarea-with-label.tsx +14 -0
  280. package/registry/default/examples/toast-demo.tsx +20 -0
  281. package/registry/default/examples/toast-heights.tsx +32 -0
  282. package/registry/default/examples/toast-loading.tsx +21 -0
  283. package/registry/default/examples/toast-promise.tsx +42 -0
  284. package/registry/default/examples/toast-sync-complete.tsx +15 -0
  285. package/registry/default/examples/toast-with-action.tsx +33 -0
  286. package/registry/default/examples/toast-with-status.tsx +60 -0
  287. package/registry/default/examples/toggle-demo.tsx +5 -0
  288. package/registry/default/examples/toggle-disabled.tsx +9 -0
  289. package/registry/default/examples/toggle-group-demo.tsx +19 -0
  290. package/registry/default/examples/toggle-group-disabled.tsx +19 -0
  291. package/registry/default/examples/toggle-group-lg.tsx +19 -0
  292. package/registry/default/examples/toggle-group-multiple.tsx +19 -0
  293. package/registry/default/examples/toggle-group-outline-with-separator.tsx +25 -0
  294. package/registry/default/examples/toggle-group-outline.tsx +19 -0
  295. package/registry/default/examples/toggle-group-sm.tsx +19 -0
  296. package/registry/default/examples/toggle-group-with-disabled-item.tsx +19 -0
  297. package/registry/default/examples/toggle-icon-group.tsx +19 -0
  298. package/registry/default/examples/toggle-lg.tsx +9 -0
  299. package/registry/default/examples/toggle-outline.tsx +5 -0
  300. package/registry/default/examples/toggle-sm.tsx +9 -0
  301. package/registry/default/examples/toggle-view-mode.tsx +12 -0
  302. package/registry/default/examples/toggle-with-icon.tsx +11 -0
  303. package/registry/default/examples/toolbar-canvas-controls.tsx +17 -0
  304. package/registry/default/examples/toolbar-demo.tsx +155 -0
  305. package/registry/default/examples/toolbar-density-controls.tsx +17 -0
  306. package/registry/default/examples/toolbar-media-controls.tsx +16 -0
  307. package/registry/default/examples/tooltip-demo.tsx +17 -0
  308. package/registry/default/examples/tooltip-grouped.tsx +46 -0
  309. package/registry/default/examples/tooltip-icon-row.tsx +13 -0
  310. package/registry/default/examples/tooltip-keyboard-hints.tsx +11 -0
  311. package/registry/default/ui/accordion.tsx +66 -0
  312. package/registry/default/ui/alert-dialog.tsx +16 -0
  313. package/registry/default/ui/alert.tsx +215 -0
  314. package/registry/default/ui/autocomplete.tsx +282 -0
  315. package/registry/default/ui/avatar.tsx +46 -0
  316. package/registry/default/ui/badge.tsx +57 -0
  317. package/registry/default/ui/breadcrumb.tsx +109 -0
  318. package/registry/default/ui/button.tsx +85 -0
  319. package/registry/default/ui/card.tsx +113 -0
  320. package/registry/default/ui/checkbox-group.tsx +3 -0
  321. package/registry/default/ui/checkbox.tsx +71 -0
  322. package/registry/default/ui/collapsible.tsx +45 -0
  323. package/registry/default/ui/combobox.tsx +355 -0
  324. package/registry/default/ui/dialog.tsx +134 -0
  325. package/registry/default/ui/empty.tsx +127 -0
  326. package/registry/default/ui/field.tsx +128 -0
  327. package/registry/default/ui/fieldset.tsx +29 -0
  328. package/registry/default/ui/form.tsx +14 -0
  329. package/registry/default/ui/frame.tsx +81 -0
  330. package/registry/default/ui/group.tsx +62 -0
  331. package/registry/default/ui/input.tsx +41 -0
  332. package/registry/default/ui/label.tsx +15 -0
  333. package/registry/default/ui/menu.tsx +254 -0
  334. package/registry/default/ui/meter.tsx +67 -0
  335. package/registry/default/ui/number-field.tsx +160 -0
  336. package/registry/default/ui/pagination.tsx +147 -0
  337. package/registry/default/ui/popover.tsx +86 -0
  338. package/registry/default/ui/preview-card.tsx +55 -0
  339. package/registry/default/ui/progress.tsx +81 -0
  340. package/registry/default/ui/radio-group.tsx +36 -0
  341. package/registry/default/ui/scroll-area.tsx +62 -0
  342. package/registry/default/ui/select.tsx +187 -0
  343. package/registry/default/ui/separator.tsx +23 -0
  344. package/registry/default/ui/sheet.tsx +134 -0
  345. package/registry/default/ui/skeleton.tsx +18 -0
  346. package/registry/default/ui/slider.tsx +77 -0
  347. package/registry/default/ui/switch.tsx +27 -0
  348. package/registry/default/ui/table.tsx +127 -0
  349. package/registry/default/ui/tabs.tsx +90 -0
  350. package/registry/default/ui/textarea.tsx +35 -0
  351. package/registry/default/ui/toast-gooey-renderer.tsx +614 -0
  352. package/registry/default/ui/toast-gooey.tsx +445 -0
  353. package/registry/default/ui/toast.tsx +351 -0
  354. package/registry/default/ui/toggle-group.tsx +9 -0
  355. package/registry/default/ui/toggle.tsx +105 -0
  356. package/registry/default/ui/toolbar.tsx +83 -0
  357. package/registry/default/ui/tooltip.tsx +57 -0
  358. package/skills/loveui-skills/SKILL.md +170 -0
  359. package/skills/loveui-skills/references/accessibility-baseline.md +32 -0
  360. package/skills/loveui-skills/references/component-api-and-naming.md +30 -0
  361. package/skills/loveui-skills/references/content-ux-writing.md +33 -0
  362. package/skills/loveui-skills/references/forms-and-validation.md +30 -0
  363. package/skills/loveui-skills/references/frontend-architecture.md +30 -0
  364. package/skills/loveui-skills/references/interaction-heuristics.md +45 -0
  365. package/skills/loveui-skills/references/motion-and-feedback.md +31 -0
  366. package/skills/loveui-skills/references/navigation-and-information-architecture.md +30 -0
  367. package/skills/loveui-skills/references/screenshot-translation-protocol.md +52 -0
  368. package/skills/loveui-skills/references/structural-cleanliness.md +37 -0
  369. package/skills/loveui-skills/references/testing-and-quality-strategy.md +33 -0
  370. package/skills/loveui-skills/references/visual-primitives.md +42 -0
  371. package/skills/loveui-skills/skills/adapt/SKILL.md +199 -0
  372. package/skills/loveui-skills/skills/animate/SKILL.md +190 -0
  373. package/skills/loveui-skills/skills/audit/SKILL.md +127 -0
  374. package/skills/loveui-skills/skills/bolder/SKILL.md +132 -0
  375. package/skills/loveui-skills/skills/clarify/SKILL.md +180 -0
  376. package/skills/loveui-skills/skills/colorize/SKILL.md +158 -0
  377. package/skills/loveui-skills/skills/critique/SKILL.md +118 -0
  378. package/skills/loveui-skills/skills/delight/SKILL.md +317 -0
  379. package/skills/loveui-skills/skills/distill/SKILL.md +137 -0
  380. package/skills/loveui-skills/skills/extract/SKILL.md +95 -0
  381. package/skills/loveui-skills/skills/frontend-design/SKILL.md +127 -0
  382. package/skills/loveui-skills/skills/frontend-design/reference/color-and-contrast.md +132 -0
  383. package/skills/loveui-skills/skills/frontend-design/reference/interaction-design.md +123 -0
  384. package/skills/loveui-skills/skills/frontend-design/reference/motion-design.md +99 -0
  385. package/skills/loveui-skills/skills/frontend-design/reference/responsive-design.md +114 -0
  386. package/skills/loveui-skills/skills/frontend-design/reference/spatial-design.md +100 -0
  387. package/skills/loveui-skills/skills/frontend-design/reference/typography.md +131 -0
  388. package/skills/loveui-skills/skills/frontend-design/reference/ux-writing.md +107 -0
  389. package/skills/loveui-skills/skills/harden/SKILL.md +358 -0
  390. package/skills/loveui-skills/skills/normalize/SKILL.md +67 -0
  391. package/skills/loveui-skills/skills/onboard/SKILL.md +243 -0
  392. package/skills/loveui-skills/skills/optimize/SKILL.md +269 -0
  393. package/skills/loveui-skills/skills/polish/SKILL.md +202 -0
  394. package/skills/loveui-skills/skills/quieter/SKILL.md +118 -0
  395. package/skills/loveui-skills/skills/teach-loveui/SKILL.md +69 -0
  396. package/dist/index.d.ts +0 -4
  397. package/dist/mcp-server.d.ts +0 -1
  398. package/packages/announcement/index.tsx +0 -53
  399. package/packages/announcement/package.json +0 -23
  400. package/packages/announcement/tsconfig.json +0 -13
  401. package/packages/avatar-stack/index.tsx +0 -51
  402. package/packages/avatar-stack/package.json +0 -23
  403. package/packages/avatar-stack/tsconfig.json +0 -13
  404. package/packages/banner/index.tsx +0 -143
  405. package/packages/banner/package.json +0 -25
  406. package/packages/banner/tsconfig.json +0 -13
  407. package/packages/calendar/index.tsx +0 -496
  408. package/packages/calendar/package.json +0 -26
  409. package/packages/calendar/tsconfig.json +0 -13
  410. package/packages/choicebox/index.tsx +0 -113
  411. package/packages/choicebox/package.json +0 -25
  412. package/packages/choicebox/tsconfig.json +0 -13
  413. package/packages/code-block/README.md +0 -62
  414. package/packages/code-block/components.json +0 -21
  415. package/packages/code-block/package.json +0 -52
  416. package/packages/code-block/src/components/code-block/blocks/copy-with-select-package-manager.tsx +0 -146
  417. package/packages/code-block/src/components/code-block/blocks/copy-with-tabs-package-manager.tsx +0 -110
  418. package/packages/code-block/src/components/code-block/blocks/inline-code.tsx +0 -28
  419. package/packages/code-block/src/components/code-block/blocks/multi-tabs.tsx +0 -118
  420. package/packages/code-block/src/components/code-block/client/shiki.tsx +0 -139
  421. package/packages/code-block/src/components/code-block/client/sugar-high.tsx +0 -38
  422. package/packages/code-block/src/components/code-block/code-block.tsx +0 -113
  423. package/packages/code-block/src/components/code-block/copy-button.tsx +0 -59
  424. package/packages/code-block/src/components/code-block/mdx/pre-shiki.tsx +0 -42
  425. package/packages/code-block/src/components/code-block/mdx/pre-sugar-high.tsx +0 -37
  426. package/packages/code-block/src/components/ui/dropdown-menu.tsx +0 -103
  427. package/packages/code-block/src/components/ui/tabs.tsx +0 -84
  428. package/packages/code-block/src/index.ts +0 -35
  429. package/packages/code-block/src/stores/packageManager.ts +0 -24
  430. package/packages/code-block/src/styles/globals.css +0 -79
  431. package/packages/code-block/src/styles/shiki.css +0 -95
  432. package/packages/code-block/src/styles/sugar-high.css +0 -48
  433. package/packages/code-block/src/utils/cn.ts +0 -6
  434. package/packages/code-block/src/utils/copy.ts +0 -9
  435. package/packages/code-block/src/utils/react-to-text.ts +0 -34
  436. package/packages/code-block/src/utils/shiki/highlight.ts +0 -47
  437. package/packages/code-block/src/utils/sugar-high/highlight.ts +0 -12
  438. package/packages/code-block/tsconfig.json +0 -17
  439. package/packages/color-picker/index.tsx +0 -467
  440. package/packages/color-picker/package.json +0 -27
  441. package/packages/color-picker/tsconfig.json +0 -13
  442. package/packages/combobox/index.tsx +0 -309
  443. package/packages/combobox/package.json +0 -25
  444. package/packages/combobox/tsconfig.json +0 -13
  445. package/packages/comparison/index.tsx +0 -209
  446. package/packages/comparison/package.json +0 -25
  447. package/packages/comparison/tsconfig.json +0 -13
  448. package/packages/contribution-graph/index.tsx +0 -517
  449. package/packages/contribution-graph/package.json +0 -24
  450. package/packages/contribution-graph/tsconfig.json +0 -13
  451. package/packages/credit-card/index.tsx +0 -348
  452. package/packages/credit-card/package.json +0 -24
  453. package/packages/credit-card/tsconfig.json +0 -13
  454. package/packages/cursor/index.tsx +0 -62
  455. package/packages/cursor/package.json +0 -23
  456. package/packages/cursor/tsconfig.json +0 -13
  457. package/packages/deck/index.tsx +0 -297
  458. package/packages/deck/package.json +0 -26
  459. package/packages/deck/tsconfig.json +0 -13
  460. package/packages/dialog-stack/index.tsx +0 -484
  461. package/packages/dialog-stack/package.json +0 -25
  462. package/packages/dialog-stack/tsconfig.json +0 -13
  463. package/packages/dropzone/index.tsx +0 -202
  464. package/packages/dropzone/package.json +0 -25
  465. package/packages/dropzone/tsconfig.json +0 -13
  466. package/packages/editor/index.tsx +0 -1996
  467. package/packages/editor/package.json +0 -41
  468. package/packages/editor/tsconfig.json +0 -13
  469. package/packages/eslint-config/base.js +0 -32
  470. package/packages/eslint-config/next.js +0 -49
  471. package/packages/eslint-config/package.json +0 -33
  472. package/packages/eslint-config/react-internal.js +0 -39
  473. package/packages/ether/README.md +0 -39
  474. package/packages/ether/index.tsx +0 -1297
  475. package/packages/ether/package.json +0 -59
  476. package/packages/ether/tsconfig.json +0 -18
  477. package/packages/gantt/index.tsx +0 -1469
  478. package/packages/gantt/package.json +0 -31
  479. package/packages/gantt/tsconfig.json +0 -13
  480. package/packages/glimpse/index.tsx +0 -67
  481. package/packages/glimpse/package.json +0 -23
  482. package/packages/glimpse/server.tsx +0 -21
  483. package/packages/glimpse/tsconfig.json +0 -13
  484. package/packages/gooey-toast/package.json +0 -28
  485. package/packages/gooey-toast/src/gooey.tsx +0 -614
  486. package/packages/gooey-toast/src/index.ts +0 -10
  487. package/packages/gooey-toast/src/toast.tsx +0 -444
  488. package/packages/gooey-toast/tsconfig.json +0 -13
  489. package/packages/gradiant-blinds/README.md +0 -39
  490. package/packages/gradiant-blinds/index.tsx +0 -390
  491. package/packages/gradiant-blinds/package.json +0 -60
  492. package/packages/gradiant-blinds/tsconfig.json +0 -18
  493. package/packages/gradient-mesh/index.tsx +0 -236
  494. package/packages/gradient-mesh/package.json +0 -62
  495. package/packages/gradient-mesh/tsconfig.json +0 -10
  496. package/packages/image-crop/index.tsx +0 -368
  497. package/packages/image-crop/package.json +0 -26
  498. package/packages/image-crop/tsconfig.json +0 -13
  499. package/packages/image-zoom/index.tsx +0 -52
  500. package/packages/image-zoom/package.json +0 -24
  501. package/packages/image-zoom/tsconfig.json +0 -13
  502. package/packages/kanban/index.tsx +0 -338
  503. package/packages/kanban/package.json +0 -27
  504. package/packages/kanban/tsconfig.json +0 -13
  505. package/packages/list/index.tsx +0 -152
  506. package/packages/list/package.json +0 -25
  507. package/packages/list/tsconfig.json +0 -13
  508. package/packages/love-ui/components.json +0 -20
  509. package/packages/love-ui/eslint.config.js +0 -4
  510. package/packages/love-ui/index.ts +0 -3
  511. package/packages/love-ui/package.json +0 -60
  512. package/packages/love-ui/postcss.config.mjs +0 -6
  513. package/packages/love-ui/src/components/code-block.tsx +0 -38
  514. package/packages/love-ui/src/components/copy-button.tsx +0 -59
  515. package/packages/love-ui/src/components/icons.tsx +0 -207
  516. package/packages/love-ui/src/components/mobile-nav.tsx +0 -123
  517. package/packages/love-ui/src/components/mode-switcher.tsx +0 -42
  518. package/packages/love-ui/src/components/page-header.tsx +0 -43
  519. package/packages/love-ui/src/components/product-label.tsx +0 -61
  520. package/packages/love-ui/src/components/products-dropdown.tsx +0 -81
  521. package/packages/love-ui/src/components/site-cta.tsx +0 -19
  522. package/packages/love-ui/src/components/site-footer.tsx +0 -13
  523. package/packages/love-ui/src/components/site-header.tsx +0 -56
  524. package/packages/love-ui/src/components/theme-provider.tsx +0 -22
  525. package/packages/love-ui/src/hooks/use-copy-to-clipboard.ts +0 -38
  526. package/packages/love-ui/src/hooks/use-media.tsx +0 -22
  527. package/packages/love-ui/src/lib/config.ts +0 -20
  528. package/packages/love-ui/src/lib/highlight-code.ts +0 -86
  529. package/packages/love-ui/src/lib/utils.ts +0 -10
  530. package/packages/love-ui/src/styles/globals.css +0 -349
  531. package/packages/love-ui/src/ui/accordion.tsx +0 -66
  532. package/packages/love-ui/src/ui/alert-dialog.tsx +0 -136
  533. package/packages/love-ui/src/ui/alert.tsx +0 -81
  534. package/packages/love-ui/src/ui/autocomplete.tsx +0 -282
  535. package/packages/love-ui/src/ui/avatar.tsx +0 -46
  536. package/packages/love-ui/src/ui/badge.tsx +0 -57
  537. package/packages/love-ui/src/ui/breadcrumb.tsx +0 -110
  538. package/packages/love-ui/src/ui/button.tsx +0 -85
  539. package/packages/love-ui/src/ui/card.tsx +0 -114
  540. package/packages/love-ui/src/ui/chart.tsx +0 -367
  541. package/packages/love-ui/src/ui/checkbox-group.tsx +0 -16
  542. package/packages/love-ui/src/ui/checkbox.tsx +0 -67
  543. package/packages/love-ui/src/ui/collapsible.tsx +0 -45
  544. package/packages/love-ui/src/ui/combobox.tsx +0 -355
  545. package/packages/love-ui/src/ui/command.tsx +0 -185
  546. package/packages/love-ui/src/ui/dialog.tsx +0 -135
  547. package/packages/love-ui/src/ui/empty.tsx +0 -128
  548. package/packages/love-ui/src/ui/field.tsx +0 -96
  549. package/packages/love-ui/src/ui/fieldset.tsx +0 -29
  550. package/packages/love-ui/src/ui/form.tsx +0 -17
  551. package/packages/love-ui/src/ui/frame.tsx +0 -82
  552. package/packages/love-ui/src/ui/group.tsx +0 -62
  553. package/packages/love-ui/src/ui/input.tsx +0 -41
  554. package/packages/love-ui/src/ui/kbd.tsx +0 -27
  555. package/packages/love-ui/src/ui/label.tsx +0 -16
  556. package/packages/love-ui/src/ui/menu.tsx +0 -255
  557. package/packages/love-ui/src/ui/meter.tsx +0 -67
  558. package/packages/love-ui/src/ui/number-field.tsx +0 -161
  559. package/packages/love-ui/src/ui/pagination.tsx +0 -136
  560. package/packages/love-ui/src/ui/popover.tsx +0 -158
  561. package/packages/love-ui/src/ui/preview-card.tsx +0 -55
  562. package/packages/love-ui/src/ui/progress.tsx +0 -81
  563. package/packages/love-ui/src/ui/radio-group.tsx +0 -36
  564. package/packages/love-ui/src/ui/scroll-area.tsx +0 -62
  565. package/packages/love-ui/src/ui/select.tsx +0 -186
  566. package/packages/love-ui/src/ui/separator.tsx +0 -23
  567. package/packages/love-ui/src/ui/sheet.tsx +0 -135
  568. package/packages/love-ui/src/ui/skeleton.tsx +0 -18
  569. package/packages/love-ui/src/ui/slider.tsx +0 -76
  570. package/packages/love-ui/src/ui/switch.tsx +0 -27
  571. package/packages/love-ui/src/ui/table.tsx +0 -127
  572. package/packages/love-ui/src/ui/tabs.tsx +0 -90
  573. package/packages/love-ui/src/ui/textarea.tsx +0 -36
  574. package/packages/love-ui/src/ui/toast.tsx +0 -169
  575. package/packages/love-ui/src/ui/toggle-group.tsx +0 -84
  576. package/packages/love-ui/src/ui/toggle.tsx +0 -45
  577. package/packages/love-ui/src/ui/toolbar.tsx +0 -83
  578. package/packages/love-ui/src/ui/tooltip.tsx +0 -57
  579. package/packages/love-ui/tsconfig.json +0 -11
  580. package/packages/love-ui/tsconfig.lint.json +0 -8
  581. package/packages/loveui-skills/SKILL.md +0 -99
  582. package/packages/loveui-skills/agents/openai.yaml +0 -11
  583. package/packages/marquee/index.tsx +0 -59
  584. package/packages/marquee/package.json +0 -24
  585. package/packages/marquee/tsconfig.json +0 -13
  586. package/packages/mini-calendar/index.tsx +0 -230
  587. package/packages/mini-calendar/package.json +0 -27
  588. package/packages/mini-calendar/tsconfig.json +0 -13
  589. package/packages/patterns/accordion/form/accordion-form-1.tsx +0 -83
  590. package/packages/patterns/accordion/form/accordion-form-2.tsx +0 -89
  591. package/packages/patterns/accordion/multi-level/accordion-multi-level-1.tsx +0 -83
  592. package/packages/patterns/accordion/multi-level/accordion-multi-level-2.tsx +0 -92
  593. package/packages/patterns/accordion/multi-level/accordion-multi-level-3.tsx +0 -89
  594. package/packages/patterns/accordion/multi-level/accordion-multi-level-4.tsx +0 -89
  595. package/packages/patterns/accordion/standard/accordion-standard-1.tsx +0 -43
  596. package/packages/patterns/accordion/standard/accordion-standard-2.tsx +0 -45
  597. package/packages/patterns/accordion/standard/accordion-standard-3.tsx +0 -52
  598. package/packages/patterns/accordion/standard/accordion-standard-4.tsx +0 -52
  599. package/packages/patterns/accordion/standard/accordion-standard-5.tsx +0 -59
  600. package/packages/patterns/accordion/standard/accordion-standard-6.tsx +0 -72
  601. package/packages/patterns/accordion/standard/accordion-standard-7.tsx +0 -79
  602. package/packages/patterns/accordion/subtitle/accordion-subtitle-1.tsx +0 -56
  603. package/packages/patterns/accordion/subtitle/accordion-subtitle-2.tsx +0 -66
  604. package/packages/patterns/accordion/subtitle/accordion-subtitle-3.tsx +0 -63
  605. package/packages/patterns/accordion/subtitle/accordion-subtitle-4.tsx +0 -66
  606. package/packages/patterns/accordion/tabs/accordion-tabs-1.tsx +0 -52
  607. package/packages/patterns/accordion/tabs/accordion-tabs-2.tsx +0 -43
  608. package/packages/patterns/accordion/tabs/accordion-tabs-3.tsx +0 -52
  609. package/packages/patterns/accordion/tabs/accordion-tabs-4.tsx +0 -45
  610. package/packages/patterns/alert/error/alert-error-1.tsx +0 -11
  611. package/packages/patterns/alert/error/alert-error-2.tsx +0 -14
  612. package/packages/patterns/alert/error/alert-error-3.tsx +0 -22
  613. package/packages/patterns/alert/error/alert-error-4.tsx +0 -27
  614. package/packages/patterns/alert/error/alert-error-5.tsx +0 -29
  615. package/packages/patterns/alert/info/alert-info-1.tsx +0 -11
  616. package/packages/patterns/alert/info/alert-info-2.tsx +0 -14
  617. package/packages/patterns/alert/info/alert-info-3.tsx +0 -26
  618. package/packages/patterns/alert/info/alert-info-4.tsx +0 -31
  619. package/packages/patterns/alert/info/alert-info-5.tsx +0 -34
  620. package/packages/patterns/alert/standard/alert-standard-1.tsx +0 -11
  621. package/packages/patterns/alert/standard/alert-standard-2.tsx +0 -14
  622. package/packages/patterns/alert/standard/alert-standard-3.tsx +0 -22
  623. package/packages/patterns/alert/standard/alert-standard-4.tsx +0 -27
  624. package/packages/patterns/alert/standard/alert-standard-5.tsx +0 -29
  625. package/packages/patterns/alert/success/alert-success-1.tsx +0 -11
  626. package/packages/patterns/alert/success/alert-success-2.tsx +0 -14
  627. package/packages/patterns/alert/success/alert-success-3.tsx +0 -26
  628. package/packages/patterns/alert/success/alert-success-4.tsx +0 -31
  629. package/packages/patterns/alert/success/alert-success-5.tsx +0 -33
  630. package/packages/patterns/alert/warning/alert-warning-1.tsx +0 -11
  631. package/packages/patterns/alert/warning/alert-warning-2.tsx +0 -14
  632. package/packages/patterns/alert/warning/alert-warning-3.tsx +0 -26
  633. package/packages/patterns/alert/warning/alert-warning-4.tsx +0 -32
  634. package/packages/patterns/alert/warning/alert-warning-5.tsx +0 -33
  635. package/packages/patterns/alert-dialog/confirmation/alert-dialog-confirmation-1.tsx +0 -37
  636. package/packages/patterns/alert-dialog/confirmation/alert-dialog-confirmation-2.tsx +0 -41
  637. package/packages/patterns/alert-dialog/confirmation/alert-dialog-confirmation-3.tsx +0 -43
  638. package/packages/patterns/alert-dialog/confirmation/alert-dialog-confirmation-4.tsx +0 -37
  639. package/packages/patterns/alert-dialog/confirmation/alert-dialog-confirmation-5.tsx +0 -36
  640. package/packages/patterns/alert-dialog/confirmation/alert-dialog-confirmation-6.tsx +0 -40
  641. package/packages/patterns/alert-dialog/custom-actions/alert-dialog-custom-actions-1.tsx +0 -41
  642. package/packages/patterns/alert-dialog/custom-actions/alert-dialog-custom-actions-2.tsx +0 -42
  643. package/packages/patterns/alert-dialog/custom-actions/alert-dialog-custom-actions-3.tsx +0 -41
  644. package/packages/patterns/alert-dialog/custom-actions/alert-dialog-custom-actions-4.tsx +0 -54
  645. package/packages/patterns/alert-dialog/custom-actions/alert-dialog-custom-actions-5.tsx +0 -40
  646. package/packages/patterns/alert-dialog/destructive/alert-dialog-destructive-1.tsx +0 -39
  647. package/packages/patterns/alert-dialog/destructive/alert-dialog-destructive-2.tsx +0 -43
  648. package/packages/patterns/alert-dialog/destructive/alert-dialog-destructive-3.tsx +0 -51
  649. package/packages/patterns/alert-dialog/destructive/alert-dialog-destructive-4.tsx +0 -46
  650. package/packages/patterns/alert-dialog/destructive/alert-dialog-destructive-5.tsx +0 -46
  651. package/packages/patterns/alert-dialog/destructive/alert-dialog-destructive-6.tsx +0 -46
  652. package/packages/patterns/alert-dialog/destructive/alert-dialog-destructive-7.tsx +0 -43
  653. package/packages/patterns/alert-dialog/form/alert-dialog-form-1.tsx +0 -47
  654. package/packages/patterns/alert-dialog/form/alert-dialog-form-2.tsx +0 -53
  655. package/packages/patterns/alert-dialog/form/alert-dialog-form-3.tsx +0 -64
  656. package/packages/patterns/alert-dialog/form/alert-dialog-form-4.tsx +0 -47
  657. package/packages/patterns/alert-dialog/form/alert-dialog-form-5.tsx +0 -55
  658. package/packages/patterns/alert-dialog/form/alert-dialog-form-6.tsx +0 -69
  659. package/packages/patterns/alert-dialog/form/alert-dialog-form-7.tsx +0 -73
  660. package/packages/patterns/alert-dialog/informational/alert-dialog-informational-1.tsx +0 -35
  661. package/packages/patterns/alert-dialog/informational/alert-dialog-informational-2.tsx +0 -39
  662. package/packages/patterns/alert-dialog/informational/alert-dialog-informational-3.tsx +0 -48
  663. package/packages/patterns/alert-dialog/informational/alert-dialog-informational-4.tsx +0 -41
  664. package/packages/patterns/alert-dialog/informational/alert-dialog-informational-5.tsx +0 -42
  665. package/packages/patterns/alert-dialog/informational/alert-dialog-informational-6.tsx +0 -43
  666. package/packages/patterns/alert-dialog/informational/alert-dialog-informational-7.tsx +0 -58
  667. package/packages/patterns/alert-dialog/success/alert-dialog-success-1.tsx +0 -34
  668. package/packages/patterns/alert-dialog/success/alert-dialog-success-2.tsx +0 -39
  669. package/packages/patterns/alert-dialog/success/alert-dialog-success-3.tsx +0 -39
  670. package/packages/patterns/alert-dialog/success/alert-dialog-success-4.tsx +0 -52
  671. package/packages/patterns/alert-dialog/success/alert-dialog-success-5.tsx +0 -50
  672. package/packages/patterns/alert-dialog/success/alert-dialog-success-6.tsx +0 -41
  673. package/packages/patterns/alert-dialog/success/alert-dialog-success-7.tsx +0 -44
  674. package/packages/patterns/aspect-ratio/standard/aspect-ratio-standard-1.tsx +0 -15
  675. package/packages/patterns/aspect-ratio/standard/aspect-ratio-standard-2.tsx +0 -15
  676. package/packages/patterns/aspect-ratio/standard/aspect-ratio-standard-3.tsx +0 -15
  677. package/packages/patterns/aspect-ratio/standard/aspect-ratio-standard-4.tsx +0 -15
  678. package/packages/patterns/aspect-ratio/standard/aspect-ratio-standard-5.tsx +0 -15
  679. package/packages/patterns/aspect-ratio/standard/aspect-ratio-standard-6.tsx +0 -15
  680. package/packages/patterns/aspect-ratio/standard/aspect-ratio-standard-7.tsx +0 -15
  681. package/packages/patterns/avatar/square/avatar-square-1.tsx +0 -15
  682. package/packages/patterns/avatar/square/avatar-square-2.tsx +0 -11
  683. package/packages/patterns/avatar/square/avatar-square-3.tsx +0 -14
  684. package/packages/patterns/avatar/square/avatar-square-4.tsx +0 -18
  685. package/packages/patterns/avatar/square/avatar-square-5.tsx +0 -18
  686. package/packages/patterns/avatar/square/avatar-square-6.tsx +0 -21
  687. package/packages/patterns/avatar/square/avatar-square-7.tsx +0 -20
  688. package/packages/patterns/avatar/standard/avatar-standard-1.tsx +0 -15
  689. package/packages/patterns/avatar/standard/avatar-standard-2.tsx +0 -11
  690. package/packages/patterns/avatar/standard/avatar-standard-3.tsx +0 -14
  691. package/packages/patterns/avatar/standard/avatar-standard-4.tsx +0 -18
  692. package/packages/patterns/avatar/standard/avatar-standard-5.tsx +0 -18
  693. package/packages/patterns/avatar/standard/avatar-standard-6.tsx +0 -21
  694. package/packages/patterns/avatar/standard/avatar-standard-7.tsx +0 -20
  695. package/packages/patterns/badge/destructive/badge-destructive-1.tsx +0 -7
  696. package/packages/patterns/badge/destructive/badge-destructive-2.tsx +0 -13
  697. package/packages/patterns/badge/destructive/badge-destructive-3.tsx +0 -13
  698. package/packages/patterns/badge/destructive/badge-destructive-4.tsx +0 -13
  699. package/packages/patterns/badge/destructive/badge-destructive-5.tsx +0 -14
  700. package/packages/patterns/badge/outline/badge-outline-1.tsx +0 -7
  701. package/packages/patterns/badge/outline/badge-outline-2.tsx +0 -13
  702. package/packages/patterns/badge/outline/badge-outline-3.tsx +0 -13
  703. package/packages/patterns/badge/outline/badge-outline-4.tsx +0 -13
  704. package/packages/patterns/badge/outline/badge-outline-5.tsx +0 -14
  705. package/packages/patterns/badge/secondary/badge-secondary-1.tsx +0 -7
  706. package/packages/patterns/badge/secondary/badge-secondary-2.tsx +0 -13
  707. package/packages/patterns/badge/secondary/badge-secondary-3.tsx +0 -13
  708. package/packages/patterns/badge/secondary/badge-secondary-4.tsx +0 -13
  709. package/packages/patterns/badge/secondary/badge-secondary-5.tsx +0 -14
  710. package/packages/patterns/badge/standard/badge-standard-1.tsx +0 -7
  711. package/packages/patterns/badge/standard/badge-standard-2.tsx +0 -13
  712. package/packages/patterns/badge/standard/badge-standard-3.tsx +0 -13
  713. package/packages/patterns/badge/standard/badge-standard-4.tsx +0 -13
  714. package/packages/patterns/badge/standard/badge-standard-5.tsx +0 -11
  715. package/packages/patterns/breadcrumb/home-icon/breadcrumb-home-icon-1.tsx +0 -38
  716. package/packages/patterns/breadcrumb/home-icon/breadcrumb-home-icon-2.tsx +0 -52
  717. package/packages/patterns/breadcrumb/home-icon/breadcrumb-home-icon-3.tsx +0 -42
  718. package/packages/patterns/breadcrumb/home-icon/breadcrumb-home-icon-4.tsx +0 -33
  719. package/packages/patterns/breadcrumb/home-icon/breadcrumb-home-icon-5.tsx +0 -33
  720. package/packages/patterns/breadcrumb/home-icon/breadcrumb-home-icon-6.tsx +0 -37
  721. package/packages/patterns/breadcrumb/home-icon/breadcrumb-home-icon-7.tsx +0 -49
  722. package/packages/patterns/breadcrumb/standard/breadcrumb-standard-1.tsx +0 -35
  723. package/packages/patterns/breadcrumb/standard/breadcrumb-standard-2.tsx +0 -50
  724. package/packages/patterns/breadcrumb/standard/breadcrumb-standard-3.tsx +0 -43
  725. package/packages/patterns/breadcrumb/standard/breadcrumb-standard-4.tsx +0 -30
  726. package/packages/patterns/breadcrumb/standard/breadcrumb-standard-5.tsx +0 -30
  727. package/packages/patterns/breadcrumb/standard/breadcrumb-standard-6.tsx +0 -35
  728. package/packages/patterns/breadcrumb/standard/breadcrumb-standard-7.tsx +0 -46
  729. package/packages/patterns/button/destructive/button-destructive-1.tsx +0 -7
  730. package/packages/patterns/button/destructive/button-destructive-2.tsx +0 -13
  731. package/packages/patterns/button/destructive/button-destructive-3.tsx +0 -13
  732. package/packages/patterns/button/destructive/button-destructive-4.tsx +0 -11
  733. package/packages/patterns/button/destructive/button-destructive-5.tsx +0 -13
  734. package/packages/patterns/button/destructive/button-destructive-6.tsx +0 -15
  735. package/packages/patterns/button/destructive/button-destructive-7.tsx +0 -13
  736. package/packages/patterns/button/link/button-link-1.tsx +0 -7
  737. package/packages/patterns/button/link/button-link-2.tsx +0 -13
  738. package/packages/patterns/button/link/button-link-3.tsx +0 -13
  739. package/packages/patterns/button/link/button-link-4.tsx +0 -11
  740. package/packages/patterns/button/link/button-link-5.tsx +0 -13
  741. package/packages/patterns/button/link/button-link-6.tsx +0 -15
  742. package/packages/patterns/button/link/button-link-7.tsx +0 -13
  743. package/packages/patterns/button/outline/button-outline-1.tsx +0 -7
  744. package/packages/patterns/button/outline/button-outline-2.tsx +0 -13
  745. package/packages/patterns/button/outline/button-outline-3.tsx +0 -13
  746. package/packages/patterns/button/outline/button-outline-4.tsx +0 -11
  747. package/packages/patterns/button/outline/button-outline-5.tsx +0 -13
  748. package/packages/patterns/button/outline/button-outline-6.tsx +0 -15
  749. package/packages/patterns/button/outline/button-outline-7.tsx +0 -13
  750. package/packages/patterns/button/secondary/button-secondary-1.tsx +0 -7
  751. package/packages/patterns/button/secondary/button-secondary-2.tsx +0 -13
  752. package/packages/patterns/button/secondary/button-secondary-3.tsx +0 -13
  753. package/packages/patterns/button/secondary/button-secondary-4.tsx +0 -11
  754. package/packages/patterns/button/secondary/button-secondary-5.tsx +0 -13
  755. package/packages/patterns/button/secondary/button-secondary-6.tsx +0 -15
  756. package/packages/patterns/button/secondary/button-secondary-7.tsx +0 -13
  757. package/packages/patterns/button/standard/button-standard-1.tsx +0 -7
  758. package/packages/patterns/button/standard/button-standard-2.tsx +0 -13
  759. package/packages/patterns/button/standard/button-standard-3.tsx +0 -13
  760. package/packages/patterns/button/standard/button-standard-4.tsx +0 -7
  761. package/packages/patterns/button/standard/button-standard-5.tsx +0 -13
  762. package/packages/patterns/button/standard/button-standard-6.tsx +0 -15
  763. package/packages/patterns/button/standard/button-standard-7.tsx +0 -13
  764. package/packages/patterns/button-group/actions/button-group-actions-1.tsx +0 -37
  765. package/packages/patterns/button-group/actions/button-group-actions-2.tsx +0 -44
  766. package/packages/patterns/button-group/actions/button-group-actions-3.tsx +0 -46
  767. package/packages/patterns/button-group/actions/button-group-actions-4.tsx +0 -41
  768. package/packages/patterns/button-group/advanced/button-group-advanced-1.tsx +0 -54
  769. package/packages/patterns/button-group/advanced/button-group-advanced-2.tsx +0 -49
  770. package/packages/patterns/button-group/advanced/button-group-advanced-3.tsx +0 -55
  771. package/packages/patterns/button-group/advanced/button-group-advanced-4.tsx +0 -78
  772. package/packages/patterns/button-group/badges/button-group-badges-1.tsx +0 -28
  773. package/packages/patterns/button-group/badges/button-group-badges-2.tsx +0 -32
  774. package/packages/patterns/button-group/badges/button-group-badges-3.tsx +0 -32
  775. package/packages/patterns/button-group/badges/button-group-badges-4.tsx +0 -39
  776. package/packages/patterns/button-group/display/button-group-display-1.tsx +0 -68
  777. package/packages/patterns/button-group/display/button-group-display-2.tsx +0 -67
  778. package/packages/patterns/button-group/display/button-group-display-3.tsx +0 -85
  779. package/packages/patterns/button-group/display/button-group-display-4.tsx +0 -78
  780. package/packages/patterns/button-group/forms/button-group-forms-1.tsx +0 -78
  781. package/packages/patterns/button-group/forms/button-group-forms-2.tsx +0 -78
  782. package/packages/patterns/button-group/forms/button-group-forms-3.tsx +0 -71
  783. package/packages/patterns/button-group/forms/button-group-forms-4.tsx +0 -60
  784. package/packages/patterns/button-group/interactive/button-group-interactive-1.tsx +0 -68
  785. package/packages/patterns/button-group/interactive/button-group-interactive-2.tsx +0 -79
  786. package/packages/patterns/button-group/interactive/button-group-interactive-3.tsx +0 -82
  787. package/packages/patterns/button-group/interactive/button-group-interactive-4.tsx +0 -79
  788. package/packages/patterns/button-group/media/button-group-media-1.tsx +0 -66
  789. package/packages/patterns/button-group/media/button-group-media-2.tsx +0 -62
  790. package/packages/patterns/button-group/media/button-group-media-3.tsx +0 -67
  791. package/packages/patterns/button-group/media/button-group-media-4.tsx +0 -62
  792. package/packages/patterns/button-group/navigation/button-group-navigation-1.tsx +0 -76
  793. package/packages/patterns/button-group/navigation/button-group-navigation-2.tsx +0 -70
  794. package/packages/patterns/button-group/navigation/button-group-navigation-3.tsx +0 -73
  795. package/packages/patterns/button-group/patterns/button-group-patterns-1.tsx +0 -73
  796. package/packages/patterns/button-group/patterns/button-group-patterns-2.tsx +0 -60
  797. package/packages/patterns/button-group/patterns/button-group-patterns-3.tsx +0 -79
  798. package/packages/patterns/button-group/patterns/button-group-patterns-4.tsx +0 -53
  799. package/packages/patterns/button-group/standard/button-group-standard-1.tsx +0 -32
  800. package/packages/patterns/button-group/standard/button-group-standard-2.tsx +0 -30
  801. package/packages/patterns/button-group/standard/button-group-standard-3.tsx +0 -20
  802. package/packages/patterns/button-group/standard/button-group-standard-4.tsx +0 -39
  803. package/packages/patterns/calendar/dialog/calendar-dialog-1.tsx +0 -58
  804. package/packages/patterns/calendar/dialog/calendar-dialog-2.tsx +0 -97
  805. package/packages/patterns/calendar/dialog/calendar-dialog-3.tsx +0 -78
  806. package/packages/patterns/calendar/dialog/calendar-dialog-4.tsx +0 -62
  807. package/packages/patterns/calendar/dialog/calendar-dialog-5.tsx +0 -82
  808. package/packages/patterns/calendar/dialog/calendar-dialog-6.tsx +0 -63
  809. package/packages/patterns/calendar/dialog/calendar-dialog-7.tsx +0 -59
  810. package/packages/patterns/calendar/dialog/calendar-dialog-8.tsx +0 -78
  811. package/packages/patterns/calendar/standard/calendar-standard-1.tsx +0 -40
  812. package/packages/patterns/calendar/standard/calendar-standard-2.tsx +0 -77
  813. package/packages/patterns/calendar/standard/calendar-standard-3.tsx +0 -59
  814. package/packages/patterns/calendar/standard/calendar-standard-4.tsx +0 -44
  815. package/packages/patterns/calendar/standard/calendar-standard-5.tsx +0 -65
  816. package/packages/patterns/calendar/standard/calendar-standard-6.tsx +0 -45
  817. package/packages/patterns/calendar/standard/calendar-standard-7.tsx +0 -41
  818. package/packages/patterns/calendar/standard/calendar-standard-8.tsx +0 -60
  819. package/packages/patterns/card/standard/card-standard-1.tsx +0 -29
  820. package/packages/patterns/card/standard/card-standard-2.tsx +0 -72
  821. package/packages/patterns/card/standard/card-standard-3.tsx +0 -57
  822. package/packages/patterns/card/standard/card-standard-4.tsx +0 -56
  823. package/packages/patterns/carousel/standard/carousel-standard-1.tsx +0 -35
  824. package/packages/patterns/carousel/standard/carousel-standard-2.tsx +0 -65
  825. package/packages/patterns/carousel/standard/carousel-standard-3.tsx +0 -80
  826. package/packages/patterns/carousel/standard/carousel-standard-4.tsx +0 -50
  827. package/packages/patterns/chart/area/chart-area-axes.tsx +0 -76
  828. package/packages/patterns/chart/area/chart-area-default.tsx +0 -65
  829. package/packages/patterns/chart/area/chart-area-gradient.tsx +0 -101
  830. package/packages/patterns/chart/area/chart-area-icons.tsx +0 -84
  831. package/packages/patterns/chart/area/chart-area-interactive.tsx +0 -206
  832. package/packages/patterns/chart/area/chart-area-legend.tsx +0 -81
  833. package/packages/patterns/chart/area/chart-area-linear.tsx +0 -64
  834. package/packages/patterns/chart/area/chart-area-stacked-expand.tsx +0 -92
  835. package/packages/patterns/chart/area/chart-area-stacked.tsx +0 -78
  836. package/packages/patterns/chart/area/chart-area-step.tsx +0 -67
  837. package/packages/patterns/chart/bar/chart-bar-active.tsx +0 -86
  838. package/packages/patterns/chart/bar/chart-bar-default.tsx +0 -52
  839. package/packages/patterns/chart/bar/chart-bar-horizontal.tsx +0 -60
  840. package/packages/patterns/chart/bar/chart-bar-interactive.tsx +0 -176
  841. package/packages/patterns/chart/bar/chart-bar-label-custom.tsx +0 -96
  842. package/packages/patterns/chart/bar/chart-bar-label.tsx +0 -65
  843. package/packages/patterns/chart/bar/chart-bar-mixed.tsx +0 -80
  844. package/packages/patterns/chart/bar/chart-bar-multiple.tsx +0 -57
  845. package/packages/patterns/chart/bar/chart-bar-negative.tsx +0 -52
  846. package/packages/patterns/chart/bar/chart-bar-stacked.tsx +0 -67
  847. package/packages/patterns/chart/line/chart-line-default.tsx +0 -65
  848. package/packages/patterns/chart/line/chart-line-dots-colors.tsx +0 -93
  849. package/packages/patterns/chart/line/chart-line-dots-custom.tsx +0 -83
  850. package/packages/patterns/chart/line/chart-line-dots.tsx +0 -74
  851. package/packages/patterns/chart/line/chart-line-interactive.tsx +0 -182
  852. package/packages/patterns/chart/line/chart-line-label-custom.tsx +0 -100
  853. package/packages/patterns/chart/line/chart-line-label.tsx +0 -82
  854. package/packages/patterns/chart/line/chart-line-linear.tsx +0 -65
  855. package/packages/patterns/chart/line/chart-line-multiple.tsx +0 -73
  856. package/packages/patterns/chart/line/chart-line-step.tsx +0 -65
  857. package/packages/patterns/chart/pie/chart-pie-donut-active.tsx +0 -76
  858. package/packages/patterns/chart/pie/chart-pie-donut-text.tsx +0 -101
  859. package/packages/patterns/chart/pie/chart-pie-donut.tsx +0 -70
  860. package/packages/patterns/chart/pie/chart-pie-interactive.tsx +0 -125
  861. package/packages/patterns/chart/pie/chart-pie-label-custom.tsx +0 -82
  862. package/packages/patterns/chart/pie/chart-pie-label-list.tsx +0 -74
  863. package/packages/patterns/chart/pie/chart-pie-label.tsx +0 -62
  864. package/packages/patterns/chart/pie/chart-pie-legend.tsx +0 -65
  865. package/packages/patterns/chart/pie/chart-pie-separator-none.tsx +0 -65
  866. package/packages/patterns/chart/pie/chart-pie-simple.tsx +0 -65
  867. package/packages/patterns/chart/pie/chart-pie-stacked.tsx +0 -94
  868. package/packages/patterns/chart/radar/chart-radar-default.tsx +0 -50
  869. package/packages/patterns/chart/radar/chart-radar-dots.tsx +0 -54
  870. package/packages/patterns/chart/radar/chart-radar-grid-circle-fill.tsx +0 -53
  871. package/packages/patterns/chart/radar/chart-radar-grid-circle-no-lines.tsx +0 -57
  872. package/packages/patterns/chart/radar/chart-radar-grid-circle.tsx +0 -57
  873. package/packages/patterns/chart/radar/chart-radar-grid-custom.tsx +0 -53
  874. package/packages/patterns/chart/radar/chart-radar-grid-fill.tsx +0 -53
  875. package/packages/patterns/chart/radar/chart-radar-grid-none.tsx +0 -56
  876. package/packages/patterns/chart/radar/chart-radar-icons.tsx +0 -70
  877. package/packages/patterns/chart/radar/chart-radar-label-custom.tsx +0 -95
  878. package/packages/patterns/chart/radar/chart-radar-legend.tsx +0 -67
  879. package/packages/patterns/chart/radar/chart-radar-lines-only.tsx +0 -66
  880. package/packages/patterns/chart/radar/chart-radar-multiple.tsx +0 -58
  881. package/packages/patterns/chart/radar/chart-radar-radius.tsx +0 -63
  882. package/packages/patterns/chart/radial/chart-radial-grid.tsx +0 -66
  883. package/packages/patterns/chart/radial/chart-radial-label.tsx +0 -78
  884. package/packages/patterns/chart/radial/chart-radial-shape.tsx +0 -85
  885. package/packages/patterns/chart/radial/chart-radial-simple.tsx +0 -65
  886. package/packages/patterns/chart/radial/chart-radial-stacked.tsx +0 -88
  887. package/packages/patterns/chart/radial/chart-radial-text.tsx +0 -86
  888. package/packages/patterns/chart/tooltip/chart-tooltip-advanced.tsx +0 -107
  889. package/packages/patterns/chart/tooltip/chart-tooltip-default.tsx +0 -74
  890. package/packages/patterns/chart/tooltip/chart-tooltip-formatter.tsx +0 -86
  891. package/packages/patterns/chart/tooltip/chart-tooltip-icons.tsx +0 -74
  892. package/packages/patterns/chart/tooltip/chart-tooltip-indicator-line.tsx +0 -74
  893. package/packages/patterns/chart/tooltip/chart-tooltip-indicator-none.tsx +0 -71
  894. package/packages/patterns/chart/tooltip/chart-tooltip-label-custom.tsx +0 -76
  895. package/packages/patterns/chart/tooltip/chart-tooltip-label-formatter.tsx +0 -81
  896. package/packages/patterns/chart/tooltip/chart-tooltip-label-none.tsx +0 -71
  897. package/packages/patterns/checkbox/standard/checkbox-standard-1.tsx +0 -13
  898. package/packages/patterns/checkbox/standard/checkbox-standard-11.tsx +0 -18
  899. package/packages/patterns/checkbox/standard/checkbox-standard-12.tsx +0 -22
  900. package/packages/patterns/checkbox/standard/checkbox-standard-13.tsx +0 -64
  901. package/packages/patterns/checkbox/standard/checkbox-standard-2.tsx +0 -26
  902. package/packages/patterns/checkbox/standard/checkbox-standard-3.tsx +0 -16
  903. package/packages/patterns/checkbox/standard/checkbox-standard-4.tsx +0 -23
  904. package/packages/patterns/checkbox/standard/checkbox-standard-5.tsx +0 -33
  905. package/packages/patterns/checkbox/standard/checkbox-standard-6.tsx +0 -19
  906. package/packages/patterns/checkbox/standard/checkbox-standard-7.tsx +0 -25
  907. package/packages/patterns/checkbox/standard/checkbox-standard-8.tsx +0 -25
  908. package/packages/patterns/checkbox/standard/checkbox-standard-9.tsx +0 -23
  909. package/packages/patterns/collapsible/card/collapsible-card-1.tsx +0 -26
  910. package/packages/patterns/collapsible/card/collapsible-card-2.tsx +0 -27
  911. package/packages/patterns/collapsible/card/collapsible-card-3.tsx +0 -33
  912. package/packages/patterns/collapsible/card/collapsible-card-4.tsx +0 -27
  913. package/packages/patterns/collapsible/card/collapsible-card-5.tsx +0 -24
  914. package/packages/patterns/collapsible/faq/collapsible-faq-1.tsx +0 -26
  915. package/packages/patterns/collapsible/faq/collapsible-faq-2.tsx +0 -25
  916. package/packages/patterns/collapsible/faq/collapsible-faq-3.tsx +0 -23
  917. package/packages/patterns/collapsible/faq/collapsible-faq-4.tsx +0 -26
  918. package/packages/patterns/collapsible/faq/collapsible-faq-5.tsx +0 -30
  919. package/packages/patterns/collapsible/outline/collapsible-outline-1.tsx +0 -32
  920. package/packages/patterns/collapsible/outline/collapsible-outline-2.tsx +0 -30
  921. package/packages/patterns/collapsible/outline/collapsible-outline-3.tsx +0 -25
  922. package/packages/patterns/collapsible/outline/collapsible-outline-4.tsx +0 -30
  923. package/packages/patterns/collapsible/sidebar/collapsible-sidebar-1.tsx +0 -39
  924. package/packages/patterns/collapsible/sidebar/collapsible-sidebar-2.tsx +0 -40
  925. package/packages/patterns/collapsible/sidebar/collapsible-sidebar-3.tsx +0 -35
  926. package/packages/patterns/collapsible/sidebar/collapsible-sidebar-4.tsx +0 -32
  927. package/packages/patterns/collapsible/standard/collapsible-standard-1.tsx +0 -26
  928. package/packages/patterns/collapsible/standard/collapsible-standard-2.tsx +0 -23
  929. package/packages/patterns/collapsible/standard/collapsible-standard-3.tsx +0 -28
  930. package/packages/patterns/collapsible/standard/collapsible-standard-4.tsx +0 -25
  931. package/packages/patterns/collapsible/standard/collapsible-standard-5.tsx +0 -35
  932. package/packages/patterns/combobox/custom-actions/combobox-custom-actions-1.tsx +0 -108
  933. package/packages/patterns/combobox/custom-actions/combobox-custom-actions-2.tsx +0 -95
  934. package/packages/patterns/combobox/custom-actions/combobox-custom-actions-3.tsx +0 -115
  935. package/packages/patterns/combobox/custom-actions/combobox-custom-actions-4.tsx +0 -119
  936. package/packages/patterns/combobox/custom-actions/combobox-custom-actions-5.tsx +0 -118
  937. package/packages/patterns/combobox/custom-actions/combobox-custom-actions-6.tsx +0 -88
  938. package/packages/patterns/combobox/custom-actions/combobox-custom-actions-7.tsx +0 -94
  939. package/packages/patterns/combobox/grouped/combobox-grouped-1.tsx +0 -109
  940. package/packages/patterns/combobox/grouped/combobox-grouped-2.tsx +0 -134
  941. package/packages/patterns/combobox/grouped/combobox-grouped-3.tsx +0 -97
  942. package/packages/patterns/combobox/grouped/combobox-grouped-4.tsx +0 -105
  943. package/packages/patterns/combobox/grouped/combobox-grouped-5.tsx +0 -118
  944. package/packages/patterns/combobox/grouped/combobox-grouped-6.tsx +0 -117
  945. package/packages/patterns/combobox/grouped/combobox-grouped-7.tsx +0 -116
  946. package/packages/patterns/combobox/multi-select/combobox-multi-select-1.tsx +0 -117
  947. package/packages/patterns/combobox/multi-select/combobox-multi-select-2.tsx +0 -109
  948. package/packages/patterns/combobox/multi-select/combobox-multi-select-3.tsx +0 -96
  949. package/packages/patterns/combobox/multi-select/combobox-multi-select-4.tsx +0 -83
  950. package/packages/patterns/combobox/multi-select/combobox-multi-select-5.tsx +0 -104
  951. package/packages/patterns/combobox/multi-select/combobox-multi-select-6.tsx +0 -109
  952. package/packages/patterns/combobox/multi-select/combobox-multi-select-7.tsx +0 -102
  953. package/packages/patterns/combobox/rich-content/combobox-rich-content-1.tsx +0 -114
  954. package/packages/patterns/combobox/rich-content/combobox-rich-content-2.tsx +0 -98
  955. package/packages/patterns/combobox/rich-content/combobox-rich-content-3.tsx +0 -94
  956. package/packages/patterns/combobox/rich-content/combobox-rich-content-4.tsx +0 -112
  957. package/packages/patterns/combobox/rich-content/combobox-rich-content-5.tsx +0 -102
  958. package/packages/patterns/combobox/rich-content/combobox-rich-content-6.tsx +0 -95
  959. package/packages/patterns/combobox/rich-content/combobox-rich-content-7.tsx +0 -114
  960. package/packages/patterns/combobox/standard/combobox-standard-1.tsx +0 -82
  961. package/packages/patterns/combobox/standard/combobox-standard-2.tsx +0 -82
  962. package/packages/patterns/combobox/standard/combobox-standard-3.tsx +0 -96
  963. package/packages/patterns/combobox/standard/combobox-standard-4.tsx +0 -85
  964. package/packages/patterns/combobox/standard/combobox-standard-5.tsx +0 -85
  965. package/packages/patterns/combobox/standard/combobox-standard-6.tsx +0 -81
  966. package/packages/patterns/combobox/standard/combobox-standard-7.tsx +0 -84
  967. package/packages/patterns/combobox/with-states/combobox-with-states-1.tsx +0 -91
  968. package/packages/patterns/combobox/with-states/combobox-with-states-2.tsx +0 -100
  969. package/packages/patterns/combobox/with-states/combobox-with-states-3.tsx +0 -95
  970. package/packages/patterns/combobox/with-states/combobox-with-states-4.tsx +0 -84
  971. package/packages/patterns/combobox/with-states/combobox-with-states-5.tsx +0 -89
  972. package/packages/patterns/combobox/with-states/combobox-with-states-6.tsx +0 -86
  973. package/packages/patterns/combobox/with-states/combobox-with-states-7.tsx +0 -29
  974. package/packages/patterns/command/dialog/command-dialog-1.tsx +0 -37
  975. package/packages/patterns/command/dialog/command-dialog-2.tsx +0 -72
  976. package/packages/patterns/command/dialog/command-dialog-3.tsx +0 -66
  977. package/packages/patterns/command/dialog/command-dialog-4.tsx +0 -64
  978. package/packages/patterns/command/dialog/command-dialog-5.tsx +0 -65
  979. package/packages/patterns/command/dialog/command-dialog-6.tsx +0 -68
  980. package/packages/patterns/command/dialog/command-dialog-7.tsx +0 -62
  981. package/packages/patterns/command/popover/command-popover-1.tsx +0 -39
  982. package/packages/patterns/command/popover/command-popover-2.tsx +0 -74
  983. package/packages/patterns/command/popover/command-popover-3.tsx +0 -68
  984. package/packages/patterns/command/popover/command-popover-4.tsx +0 -66
  985. package/packages/patterns/command/popover/command-popover-5.tsx +0 -67
  986. package/packages/patterns/command/popover/command-popover-6.tsx +0 -70
  987. package/packages/patterns/command/popover/command-popover-7.tsx +0 -64
  988. package/packages/patterns/command/standard/command-standard-1.tsx +0 -26
  989. package/packages/patterns/command/standard/command-standard-2.tsx +0 -61
  990. package/packages/patterns/command/standard/command-standard-3.tsx +0 -55
  991. package/packages/patterns/command/standard/command-standard-4.tsx +0 -53
  992. package/packages/patterns/command/standard/command-standard-5.tsx +0 -54
  993. package/packages/patterns/command/standard/command-standard-6.tsx +0 -57
  994. package/packages/patterns/command/standard/command-standard-7.tsx +0 -43
  995. package/packages/patterns/context-menu/canvas/context-menu-canvas-1.tsx +0 -49
  996. package/packages/patterns/context-menu/canvas/context-menu-canvas-2.tsx +0 -78
  997. package/packages/patterns/context-menu/canvas/context-menu-canvas-3.tsx +0 -44
  998. package/packages/patterns/context-menu/canvas/context-menu-canvas-4.tsx +0 -46
  999. package/packages/patterns/context-menu/canvas/context-menu-canvas-5.tsx +0 -57
  1000. package/packages/patterns/context-menu/file/context-menu-file-1.tsx +0 -45
  1001. package/packages/patterns/context-menu/file/context-menu-file-2.tsx +0 -47
  1002. package/packages/patterns/context-menu/file/context-menu-file-3.tsx +0 -56
  1003. package/packages/patterns/context-menu/file/context-menu-file-4.tsx +0 -56
  1004. package/packages/patterns/context-menu/file/context-menu-file-5.tsx +0 -42
  1005. package/packages/patterns/context-menu/standard/context-menu-standard-1.tsx +0 -24
  1006. package/packages/patterns/context-menu/standard/context-menu-standard-2.tsx +0 -47
  1007. package/packages/patterns/context-menu/standard/context-menu-standard-3.tsx +0 -44
  1008. package/packages/patterns/context-menu/standard/context-menu-standard-4.tsx +0 -45
  1009. package/packages/patterns/context-menu/standard/context-menu-standard-5.tsx +0 -49
  1010. package/packages/patterns/context-menu/standard/context-menu-standard-6.tsx +0 -38
  1011. package/packages/patterns/context-menu/standard/context-menu-standard-7.tsx +0 -79
  1012. package/packages/patterns/context-menu/table/context-menu-table-1.tsx +0 -32
  1013. package/packages/patterns/context-menu/table/context-menu-table-2.tsx +0 -46
  1014. package/packages/patterns/context-menu/table/context-menu-table-3.tsx +0 -56
  1015. package/packages/patterns/context-menu/table/context-menu-table-4.tsx +0 -49
  1016. package/packages/patterns/context-menu/table/context-menu-table-5.tsx +0 -56
  1017. package/packages/patterns/context-menu/text/context-menu-text-1.tsx +0 -40
  1018. package/packages/patterns/context-menu/text/context-menu-text-2.tsx +0 -45
  1019. package/packages/patterns/context-menu/text/context-menu-text-3.tsx +0 -54
  1020. package/packages/patterns/context-menu/text/context-menu-text-4.tsx +0 -40
  1021. package/packages/patterns/context-menu/text/context-menu-text-5.tsx +0 -63
  1022. package/packages/patterns/data-table/advanced/data-table-advanced-1.tsx +0 -201
  1023. package/packages/patterns/data-table/advanced/data-table-advanced-2.tsx +0 -212
  1024. package/packages/patterns/data-table/advanced/data-table-advanced-3.tsx +0 -191
  1025. package/packages/patterns/data-table/advanced/data-table-advanced-4.tsx +0 -189
  1026. package/packages/patterns/data-table/standard/data-table-standard-1.tsx +0 -183
  1027. package/packages/patterns/data-table/standard/data-table-standard-2.tsx +0 -180
  1028. package/packages/patterns/data-table/standard/data-table-standard-3.tsx +0 -205
  1029. package/packages/patterns/data-table/standard/data-table-standard-4.tsx +0 -212
  1030. package/packages/patterns/date-picker/standard/date-picker-standard-1.tsx +0 -75
  1031. package/packages/patterns/date-picker/standard/date-picker-standard-2.tsx +0 -103
  1032. package/packages/patterns/date-picker/standard/date-picker-standard-3.tsx +0 -91
  1033. package/packages/patterns/date-picker/standard/date-picker-standard-4.tsx +0 -73
  1034. package/packages/patterns/date-picker/standard/date-picker-standard-5.tsx +0 -89
  1035. package/packages/patterns/date-picker/standard/date-picker-standard-6.tsx +0 -69
  1036. package/packages/patterns/date-picker/standard/date-picker-standard-7.tsx +0 -64
  1037. package/packages/patterns/date-picker/standard/date-picker-standard-8.tsx +0 -84
  1038. package/packages/patterns/dialog/standard/dialog-standard-1.tsx +0 -47
  1039. package/packages/patterns/dialog/standard/dialog-standard-10.tsx +0 -84
  1040. package/packages/patterns/dialog/standard/dialog-standard-11.tsx +0 -63
  1041. package/packages/patterns/dialog/standard/dialog-standard-12.tsx +0 -70
  1042. package/packages/patterns/dialog/standard/dialog-standard-13.tsx +0 -65
  1043. package/packages/patterns/dialog/standard/dialog-standard-14.tsx +0 -109
  1044. package/packages/patterns/dialog/standard/dialog-standard-15.tsx +0 -113
  1045. package/packages/patterns/dialog/standard/dialog-standard-16.tsx +0 -127
  1046. package/packages/patterns/dialog/standard/dialog-standard-17.tsx +0 -116
  1047. package/packages/patterns/dialog/standard/dialog-standard-2.tsx +0 -72
  1048. package/packages/patterns/dialog/standard/dialog-standard-3.tsx +0 -78
  1049. package/packages/patterns/dialog/standard/dialog-standard-4.tsx +0 -98
  1050. package/packages/patterns/dialog/standard/dialog-standard-5.tsx +0 -65
  1051. package/packages/patterns/dialog/standard/dialog-standard-6.tsx +0 -42
  1052. package/packages/patterns/dialog/standard/dialog-standard-7.tsx +0 -46
  1053. package/packages/patterns/dialog/standard/dialog-standard-8.tsx +0 -84
  1054. package/packages/patterns/dialog/standard/dialog-standard-9.tsx +0 -70
  1055. package/packages/patterns/drawer/bottom/drawer-bottom-1.tsx +0 -44
  1056. package/packages/patterns/drawer/bottom/drawer-bottom-2.tsx +0 -55
  1057. package/packages/patterns/drawer/bottom/drawer-bottom-3.tsx +0 -68
  1058. package/packages/patterns/drawer/bottom/drawer-bottom-4.tsx +0 -49
  1059. package/packages/patterns/drawer/bottom/drawer-bottom-5.tsx +0 -72
  1060. package/packages/patterns/drawer/bottom/drawer-bottom-6.tsx +0 -40
  1061. package/packages/patterns/drawer/bottom/drawer-bottom-7.tsx +0 -69
  1062. package/packages/patterns/drawer/left/drawer-left-1.tsx +0 -46
  1063. package/packages/patterns/drawer/left/drawer-left-2.tsx +0 -53
  1064. package/packages/patterns/drawer/left/drawer-left-3.tsx +0 -123
  1065. package/packages/patterns/drawer/left/drawer-left-4.tsx +0 -58
  1066. package/packages/patterns/drawer/left/drawer-left-5.tsx +0 -131
  1067. package/packages/patterns/drawer/right/drawer-right-1.tsx +0 -45
  1068. package/packages/patterns/drawer/right/drawer-right-2.tsx +0 -107
  1069. package/packages/patterns/drawer/right/drawer-right-3.tsx +0 -84
  1070. package/packages/patterns/drawer/right/drawer-right-4.tsx +0 -98
  1071. package/packages/patterns/drawer/right/drawer-right-5.tsx +0 -108
  1072. package/packages/patterns/drawer/top/drawer-top-1.tsx +0 -44
  1073. package/packages/patterns/drawer/top/drawer-top-2.tsx +0 -62
  1074. package/packages/patterns/drawer/top/drawer-top-3.tsx +0 -50
  1075. package/packages/patterns/drawer/top/drawer-top-4.tsx +0 -63
  1076. package/packages/patterns/drawer/top/drawer-top-5.tsx +0 -59
  1077. package/packages/patterns/dropdown-menu/actions/dropdown-menu-actions-1.tsx +0 -63
  1078. package/packages/patterns/dropdown-menu/actions/dropdown-menu-actions-2.tsx +0 -61
  1079. package/packages/patterns/dropdown-menu/actions/dropdown-menu-actions-3.tsx +0 -83
  1080. package/packages/patterns/dropdown-menu/actions/dropdown-menu-actions-4.tsx +0 -68
  1081. package/packages/patterns/dropdown-menu/actions/dropdown-menu-actions-5.tsx +0 -78
  1082. package/packages/patterns/dropdown-menu/editor/dropdown-menu-editor-1.tsx +0 -61
  1083. package/packages/patterns/dropdown-menu/editor/dropdown-menu-editor-2.tsx +0 -81
  1084. package/packages/patterns/dropdown-menu/editor/dropdown-menu-editor-3.tsx +0 -58
  1085. package/packages/patterns/dropdown-menu/editor/dropdown-menu-editor-4.tsx +0 -53
  1086. package/packages/patterns/dropdown-menu/editor/dropdown-menu-editor-5.tsx +0 -65
  1087. package/packages/patterns/dropdown-menu/profile/dropdown-menu-profile-1.tsx +0 -61
  1088. package/packages/patterns/dropdown-menu/profile/dropdown-menu-profile-2.tsx +0 -75
  1089. package/packages/patterns/dropdown-menu/profile/dropdown-menu-profile-3.tsx +0 -99
  1090. package/packages/patterns/dropdown-menu/profile/dropdown-menu-profile-4.tsx +0 -87
  1091. package/packages/patterns/dropdown-menu/profile/dropdown-menu-profile-5.tsx +0 -85
  1092. package/packages/patterns/dropdown-menu/settings/dropdown-menu-settings-1.tsx +0 -50
  1093. package/packages/patterns/dropdown-menu/settings/dropdown-menu-settings-2.tsx +0 -75
  1094. package/packages/patterns/dropdown-menu/settings/dropdown-menu-settings-3.tsx +0 -70
  1095. package/packages/patterns/dropdown-menu/settings/dropdown-menu-settings-4.tsx +0 -82
  1096. package/packages/patterns/dropdown-menu/settings/dropdown-menu-settings-5.tsx +0 -74
  1097. package/packages/patterns/dropdown-menu/standard/dropdown-menu-standard-1.tsx +0 -48
  1098. package/packages/patterns/dropdown-menu/standard/dropdown-menu-standard-2.tsx +0 -71
  1099. package/packages/patterns/dropdown-menu/standard/dropdown-menu-standard-3.tsx +0 -68
  1100. package/packages/patterns/dropdown-menu/standard/dropdown-menu-standard-4.tsx +0 -56
  1101. package/packages/patterns/dropdown-menu/standard/dropdown-menu-standard-5.tsx +0 -43
  1102. package/packages/patterns/dropdown-menu/standard/dropdown-menu-standard-6.tsx +0 -72
  1103. package/packages/patterns/dropdown-menu/standard/dropdown-menu-standard-7.tsx +0 -99
  1104. package/packages/patterns/dropdown-menu/support/dropdown-menu-support-1.tsx +0 -52
  1105. package/packages/patterns/dropdown-menu/support/dropdown-menu-support-2.tsx +0 -64
  1106. package/packages/patterns/dropdown-menu/support/dropdown-menu-support-3.tsx +0 -77
  1107. package/packages/patterns/empty/actions/empty-actions-1.tsx +0 -36
  1108. package/packages/patterns/empty/actions/empty-actions-2.tsx +0 -42
  1109. package/packages/patterns/empty/actions/empty-actions-3.tsx +0 -36
  1110. package/packages/patterns/empty/actions/empty-actions-4.tsx +0 -37
  1111. package/packages/patterns/empty/actions/empty-actions-5.tsx +0 -40
  1112. package/packages/patterns/empty/data/empty-data-1.tsx +0 -37
  1113. package/packages/patterns/empty/data/empty-data-2.tsx +0 -29
  1114. package/packages/patterns/empty/data/empty-data-3.tsx +0 -28
  1115. package/packages/patterns/empty/data/empty-data-4.tsx +0 -36
  1116. package/packages/patterns/empty/data/empty-data-5.tsx +0 -43
  1117. package/packages/patterns/empty/search/empty-search-1.tsx +0 -28
  1118. package/packages/patterns/empty/search/empty-search-2.tsx +0 -33
  1119. package/packages/patterns/empty/search/empty-search-3.tsx +0 -33
  1120. package/packages/patterns/empty/search/empty-search-4.tsx +0 -29
  1121. package/packages/patterns/empty/search/empty-search-5.tsx +0 -40
  1122. package/packages/patterns/empty/standard/empty-standard-1.tsx +0 -24
  1123. package/packages/patterns/empty/standard/empty-standard-2.tsx +0 -28
  1124. package/packages/patterns/empty/standard/empty-standard-3.tsx +0 -29
  1125. package/packages/patterns/empty/standard/empty-standard-4.tsx +0 -28
  1126. package/packages/patterns/empty/standard/empty-standard-5.tsx +0 -31
  1127. package/packages/patterns/empty/standard/empty-standard-6.tsx +0 -23
  1128. package/packages/patterns/empty/standard/empty-standard-7.tsx +0 -29
  1129. package/packages/patterns/field/advanced/field-advanced-1.tsx +0 -32
  1130. package/packages/patterns/field/advanced/field-advanced-2.tsx +0 -34
  1131. package/packages/patterns/field/advanced/field-advanced-3.tsx +0 -53
  1132. package/packages/patterns/field/advanced/field-advanced-4.tsx +0 -55
  1133. package/packages/patterns/field/advanced/field-advanced-5.tsx +0 -57
  1134. package/packages/patterns/field/advanced/field-advanced-6.tsx +0 -71
  1135. package/packages/patterns/field/advanced/field-advanced-7.tsx +0 -59
  1136. package/packages/patterns/field/basic-inputs/field-basic-inputs-1.tsx +0 -20
  1137. package/packages/patterns/field/basic-inputs/field-basic-inputs-2.tsx +0 -23
  1138. package/packages/patterns/field/basic-inputs/field-basic-inputs-3.tsx +0 -21
  1139. package/packages/patterns/field/basic-inputs/field-basic-inputs-4.tsx +0 -42
  1140. package/packages/patterns/field/basic-inputs/field-basic-inputs-5.tsx +0 -22
  1141. package/packages/patterns/field/layouts/field-layouts-1.tsx +0 -41
  1142. package/packages/patterns/field/layouts/field-layouts-2.tsx +0 -44
  1143. package/packages/patterns/field/layouts/field-layouts-3.tsx +0 -33
  1144. package/packages/patterns/field/layouts/field-layouts-4.tsx +0 -62
  1145. package/packages/patterns/field/layouts/field-layouts-5.tsx +0 -64
  1146. package/packages/patterns/field/layouts/field-layouts-6.tsx +0 -51
  1147. package/packages/patterns/field/selects/field-selects-1.tsx +0 -32
  1148. package/packages/patterns/field/selects/field-selects-2.tsx +0 -36
  1149. package/packages/patterns/field/selects/field-selects-3.tsx +0 -43
  1150. package/packages/patterns/field/selects/field-selects-4.tsx +0 -49
  1151. package/packages/patterns/field/selects/field-selects-5.tsx +0 -34
  1152. package/packages/patterns/field/selects/field-selects-6.tsx +0 -30
  1153. package/packages/patterns/field/selects/field-selects-7.tsx +0 -32
  1154. package/packages/patterns/field/text-areas/field-text-areas-1.tsx +0 -19
  1155. package/packages/patterns/field/text-areas/field-text-areas-2.tsx +0 -23
  1156. package/packages/patterns/field/text-areas/field-text-areas-3.tsx +0 -34
  1157. package/packages/patterns/field/text-areas/field-text-areas-4.tsx +0 -23
  1158. package/packages/patterns/field/text-areas/field-text-areas-5.tsx +0 -42
  1159. package/packages/patterns/field/text-areas/field-text-areas-6.tsx +0 -24
  1160. package/packages/patterns/field/toggles/field-toggles-1.tsx +0 -17
  1161. package/packages/patterns/field/toggles/field-toggles-2.tsx +0 -50
  1162. package/packages/patterns/field/toggles/field-toggles-3.tsx +0 -40
  1163. package/packages/patterns/field/toggles/field-toggles-4.tsx +0 -42
  1164. package/packages/patterns/field/toggles/field-toggles-5.tsx +0 -15
  1165. package/packages/patterns/field/toggles/field-toggles-6.tsx +0 -26
  1166. package/packages/patterns/field/toggles/field-toggles-7.tsx +0 -28
  1167. package/packages/patterns/form/advanced/form-advanced-1.tsx +0 -83
  1168. package/packages/patterns/form/advanced/form-advanced-2.tsx +0 -75
  1169. package/packages/patterns/form/advanced/form-advanced-3.tsx +0 -114
  1170. package/packages/patterns/form/advanced/form-advanced-4.tsx +0 -91
  1171. package/packages/patterns/form/advanced/form-advanced-5.tsx +0 -121
  1172. package/packages/patterns/form/advanced/form-advanced-6.tsx +0 -163
  1173. package/packages/patterns/form/advanced/form-advanced-7.tsx +0 -182
  1174. package/packages/patterns/form/basic-forms/form-basic-forms-1.tsx +0 -69
  1175. package/packages/patterns/form/basic-forms/form-basic-forms-2.tsx +0 -70
  1176. package/packages/patterns/form/basic-forms/form-basic-forms-3.tsx +0 -70
  1177. package/packages/patterns/form/basic-forms/form-basic-forms-4.tsx +0 -75
  1178. package/packages/patterns/form/basic-forms/form-basic-forms-5.tsx +0 -70
  1179. package/packages/patterns/form/basic-forms/form-basic-forms-6.tsx +0 -70
  1180. package/packages/patterns/form/basic-forms/form-basic-forms-7.tsx +0 -70
  1181. package/packages/patterns/form/layouts/form-layouts-1.tsx +0 -113
  1182. package/packages/patterns/form/layouts/form-layouts-2.tsx +0 -89
  1183. package/packages/patterns/form/layouts/form-layouts-3.tsx +0 -166
  1184. package/packages/patterns/form/layouts/form-layouts-4.tsx +0 -129
  1185. package/packages/patterns/form/layouts/form-layouts-5.tsx +0 -69
  1186. package/packages/patterns/form/layouts/form-layouts-6.tsx +0 -85
  1187. package/packages/patterns/form/layouts/form-layouts-7.tsx +0 -166
  1188. package/packages/patterns/form/multi-field/form-multi-field-1.tsx +0 -90
  1189. package/packages/patterns/form/multi-field/form-multi-field-2.tsx +0 -114
  1190. package/packages/patterns/form/multi-field/form-multi-field-3.tsx +0 -132
  1191. package/packages/patterns/form/multi-field/form-multi-field-4.tsx +0 -131
  1192. package/packages/patterns/form/multi-field/form-multi-field-5.tsx +0 -154
  1193. package/packages/patterns/form/multi-field/form-multi-field-6.tsx +0 -159
  1194. package/packages/patterns/form/multi-field/form-multi-field-7.tsx +0 -232
  1195. package/packages/patterns/form/patterns/form-patterns-1.tsx +0 -110
  1196. package/packages/patterns/form/patterns/form-patterns-2.tsx +0 -160
  1197. package/packages/patterns/form/patterns/form-patterns-3.tsx +0 -160
  1198. package/packages/patterns/form/patterns/form-patterns-4.tsx +0 -159
  1199. package/packages/patterns/form/patterns/form-patterns-5.tsx +0 -222
  1200. package/packages/patterns/form/patterns/form-patterns-6.tsx +0 -258
  1201. package/packages/patterns/form/patterns/form-patterns-7.tsx +0 -249
  1202. package/packages/patterns/form/validation/form-validation-1.tsx +0 -94
  1203. package/packages/patterns/form/validation/form-validation-2.tsx +0 -93
  1204. package/packages/patterns/form/validation/form-validation-3.tsx +0 -100
  1205. package/packages/patterns/form/validation/form-validation-4.tsx +0 -106
  1206. package/packages/patterns/form/validation/form-validation-5.tsx +0 -126
  1207. package/packages/patterns/form/validation/form-validation-6.tsx +0 -126
  1208. package/packages/patterns/form/validation/form-validation-7.tsx +0 -96
  1209. package/packages/patterns/hover-card/info/hover-card-info-1.tsx +0 -29
  1210. package/packages/patterns/hover-card/info/hover-card-info-2.tsx +0 -35
  1211. package/packages/patterns/hover-card/info/hover-card-info-3.tsx +0 -38
  1212. package/packages/patterns/hover-card/info/hover-card-info-4.tsx +0 -37
  1213. package/packages/patterns/hover-card/info/hover-card-info-5.tsx +0 -46
  1214. package/packages/patterns/hover-card/preview/hover-card-preview-1.tsx +0 -44
  1215. package/packages/patterns/hover-card/preview/hover-card-preview-2.tsx +0 -48
  1216. package/packages/patterns/hover-card/preview/hover-card-preview-3.tsx +0 -40
  1217. package/packages/patterns/hover-card/preview/hover-card-preview-4.tsx +0 -51
  1218. package/packages/patterns/hover-card/preview/hover-card-preview-5.tsx +0 -48
  1219. package/packages/patterns/hover-card/profile/hover-card-profile-1.tsx +0 -36
  1220. package/packages/patterns/hover-card/profile/hover-card-profile-2.tsx +0 -50
  1221. package/packages/patterns/hover-card/profile/hover-card-profile-3.tsx +0 -45
  1222. package/packages/patterns/hover-card/profile/hover-card-profile-4.tsx +0 -50
  1223. package/packages/patterns/hover-card/profile/hover-card-profile-5.tsx +0 -54
  1224. package/packages/patterns/hover-card/stats/hover-card-stats-1.tsx +0 -45
  1225. package/packages/patterns/hover-card/stats/hover-card-stats-2.tsx +0 -50
  1226. package/packages/patterns/hover-card/stats/hover-card-stats-3.tsx +0 -53
  1227. package/packages/patterns/hover-card/stats/hover-card-stats-4.tsx +0 -56
  1228. package/packages/patterns/hover-card/stats/hover-card-stats-5.tsx +0 -54
  1229. package/packages/patterns/input/special/input-special-1.tsx +0 -65
  1230. package/packages/patterns/input/special/input-special-2.tsx +0 -19
  1231. package/packages/patterns/input/special/input-special-3.tsx +0 -35
  1232. package/packages/patterns/input/special/input-special-4.tsx +0 -24
  1233. package/packages/patterns/input/special/input-special-5.tsx +0 -27
  1234. package/packages/patterns/input/standard/input-standard-1.tsx +0 -15
  1235. package/packages/patterns/input/standard/input-standard-2.tsx +0 -18
  1236. package/packages/patterns/input/standard/input-standard-3.tsx +0 -23
  1237. package/packages/patterns/input/standard/input-standard-4.tsx +0 -23
  1238. package/packages/patterns/input/standard/input-standard-5.tsx +0 -24
  1239. package/packages/patterns/input/standard/input-standard-6.tsx +0 -33
  1240. package/packages/patterns/input/standard/input-standard-7.tsx +0 -22
  1241. package/packages/patterns/input/types/input-types-1.tsx +0 -24
  1242. package/packages/patterns/input/types/input-types-2.tsx +0 -42
  1243. package/packages/patterns/input/types/input-types-3.tsx +0 -47
  1244. package/packages/patterns/input/types/input-types-4.tsx +0 -24
  1245. package/packages/patterns/input/types/input-types-5.tsx +0 -19
  1246. package/packages/patterns/input/types/input-types-6.tsx +0 -25
  1247. package/packages/patterns/input/types/input-types-7.tsx +0 -25
  1248. package/packages/patterns/input/validation/input-validation-1.tsx +0 -27
  1249. package/packages/patterns/input/validation/input-validation-2.tsx +0 -25
  1250. package/packages/patterns/input/validation/input-validation-3.tsx +0 -26
  1251. package/packages/patterns/input/validation/input-validation-4.tsx +0 -37
  1252. package/packages/patterns/input/validation/input-validation-5.tsx +0 -54
  1253. package/packages/patterns/input-group/ai/input-group-ai-1.tsx +0 -68
  1254. package/packages/patterns/input-group/ai/input-group-ai-2.tsx +0 -42
  1255. package/packages/patterns/input-group/ai/input-group-ai-3.tsx +0 -60
  1256. package/packages/patterns/input-group/ai/input-group-ai-4.tsx +0 -61
  1257. package/packages/patterns/input-group/buttons/input-group-buttons-1.tsx +0 -34
  1258. package/packages/patterns/input-group/buttons/input-group-buttons-2.tsx +0 -39
  1259. package/packages/patterns/input-group/buttons/input-group-buttons-3.tsx +0 -23
  1260. package/packages/patterns/input-group/buttons/input-group-buttons-4.tsx +0 -42
  1261. package/packages/patterns/input-group/custom/input-group-custom-1.tsx +0 -24
  1262. package/packages/patterns/input-group/custom/input-group-custom-2.tsx +0 -31
  1263. package/packages/patterns/input-group/custom/input-group-custom-3.tsx +0 -38
  1264. package/packages/patterns/input-group/custom/input-group-custom-4.tsx +0 -33
  1265. package/packages/patterns/input-group/dropdown/input-group-dropdown-1.tsx +0 -37
  1266. package/packages/patterns/input-group/dropdown/input-group-dropdown-2.tsx +0 -37
  1267. package/packages/patterns/input-group/dropdown/input-group-dropdown-3.tsx +0 -56
  1268. package/packages/patterns/input-group/dropdown/input-group-dropdown-4.tsx +0 -45
  1269. package/packages/patterns/input-group/icons/input-group-icons-1.tsx +0 -19
  1270. package/packages/patterns/input-group/icons/input-group-icons-2.tsx +0 -27
  1271. package/packages/patterns/input-group/icons/input-group-icons-3.tsx +0 -33
  1272. package/packages/patterns/input-group/icons/input-group-icons-4.tsx +0 -36
  1273. package/packages/patterns/input-group/label/input-group-label-1.tsx +0 -27
  1274. package/packages/patterns/input-group/label/input-group-label-2.tsx +0 -43
  1275. package/packages/patterns/input-group/label/input-group-label-3.tsx +0 -36
  1276. package/packages/patterns/input-group/label/input-group-label-4.tsx +0 -23
  1277. package/packages/patterns/input-group/spinner/input-group-spinner-1.tsx +0 -27
  1278. package/packages/patterns/input-group/spinner/input-group-spinner-2.tsx +0 -21
  1279. package/packages/patterns/input-group/spinner/input-group-spinner-3.tsx +0 -25
  1280. package/packages/patterns/input-group/spinner/input-group-spinner-4.tsx +0 -32
  1281. package/packages/patterns/input-group/text/input-group-text-1.tsx +0 -33
  1282. package/packages/patterns/input-group/text/input-group-text-2.tsx +0 -22
  1283. package/packages/patterns/input-group/text/input-group-text-3.tsx +0 -19
  1284. package/packages/patterns/input-group/text/input-group-text-4.tsx +0 -19
  1285. package/packages/patterns/input-group/textarea/input-group-textarea-1.tsx +0 -37
  1286. package/packages/patterns/input-group/textarea/input-group-textarea-2.tsx +0 -23
  1287. package/packages/patterns/input-group/textarea/input-group-textarea-3.tsx +0 -43
  1288. package/packages/patterns/input-group/textarea/input-group-textarea-4.tsx +0 -31
  1289. package/packages/patterns/input-group/tooltip/input-group-tooltip-1.tsx +0 -54
  1290. package/packages/patterns/input-group/tooltip/input-group-tooltip-2.tsx +0 -34
  1291. package/packages/patterns/input-group/tooltip/input-group-tooltip-3.tsx +0 -34
  1292. package/packages/patterns/input-otp/behavior/input-otp-behavior-1.tsx +0 -90
  1293. package/packages/patterns/input-otp/behavior/input-otp-behavior-2.tsx +0 -46
  1294. package/packages/patterns/input-otp/behavior/input-otp-behavior-3.tsx +0 -59
  1295. package/packages/patterns/input-otp/behavior/input-otp-behavior-4.tsx +0 -70
  1296. package/packages/patterns/input-otp/standard/input-otp-standard-1.tsx +0 -26
  1297. package/packages/patterns/input-otp/standard/input-otp-standard-2.tsx +0 -25
  1298. package/packages/patterns/input-otp/standard/input-otp-standard-3.tsx +0 -29
  1299. package/packages/patterns/input-otp/standard/input-otp-standard-4.tsx +0 -42
  1300. package/packages/patterns/input-otp/standard/input-otp-standard-5.tsx +0 -83
  1301. package/packages/patterns/input-otp/states/input-otp-states-1.tsx +0 -29
  1302. package/packages/patterns/input-otp/states/input-otp-states-2.tsx +0 -54
  1303. package/packages/patterns/input-otp/states/input-otp-states-3.tsx +0 -51
  1304. package/packages/patterns/input-otp/states/input-otp-states-4.tsx +0 -59
  1305. package/packages/patterns/input-otp/use-cases/input-otp-use-cases-1.tsx +0 -106
  1306. package/packages/patterns/input-otp/use-cases/input-otp-use-cases-2.tsx +0 -137
  1307. package/packages/patterns/input-otp/use-cases/input-otp-use-cases-3.tsx +0 -128
  1308. package/packages/patterns/input-otp/use-cases/input-otp-use-cases-4.tsx +0 -115
  1309. package/packages/patterns/input-otp/variants/input-otp-variants-1.tsx +0 -34
  1310. package/packages/patterns/input-otp/variants/input-otp-variants-2.tsx +0 -58
  1311. package/packages/patterns/input-otp/variants/input-otp-variants-3.tsx +0 -60
  1312. package/packages/patterns/item/interactive/item-interactive-1.tsx +0 -43
  1313. package/packages/patterns/item/interactive/item-interactive-2.tsx +0 -70
  1314. package/packages/patterns/item/layout/item-layout-1.tsx +0 -45
  1315. package/packages/patterns/item/layout/item-layout-2.tsx +0 -65
  1316. package/packages/patterns/item/layout/item-layout-3.tsx +0 -55
  1317. package/packages/patterns/item/media/item-media-1.tsx +0 -35
  1318. package/packages/patterns/item/media/item-media-2.tsx +0 -42
  1319. package/packages/patterns/item/media/item-media-3.tsx +0 -71
  1320. package/packages/patterns/item/standard/item-standard-1.tsx +0 -30
  1321. package/packages/patterns/item/standard/item-standard-2.tsx +0 -30
  1322. package/packages/patterns/kbd/arrow-keys/kbd-arrow-keys-1.tsx +0 -18
  1323. package/packages/patterns/kbd/arrow-keys/kbd-arrow-keys-2.tsx +0 -14
  1324. package/packages/patterns/kbd/arrow-keys/kbd-arrow-keys-3.tsx +0 -18
  1325. package/packages/patterns/kbd/arrow-keys/kbd-arrow-keys-4.tsx +0 -16
  1326. package/packages/patterns/kbd/function-keys/kbd-function-keys-1.tsx +0 -11
  1327. package/packages/patterns/kbd/function-keys/kbd-function-keys-2.tsx +0 -11
  1328. package/packages/patterns/kbd/function-keys/kbd-function-keys-3.tsx +0 -15
  1329. package/packages/patterns/kbd/function-keys/kbd-function-keys-4.tsx +0 -15
  1330. package/packages/patterns/kbd/function-keys/kbd-function-keys-5.tsx +0 -15
  1331. package/packages/patterns/kbd/function-keys/kbd-function-keys-6.tsx +0 -16
  1332. package/packages/patterns/kbd/platform-specific/kbd-platform-specific-1.tsx +0 -14
  1333. package/packages/patterns/kbd/platform-specific/kbd-platform-specific-2.tsx +0 -14
  1334. package/packages/patterns/kbd/platform-specific/kbd-platform-specific-3.tsx +0 -14
  1335. package/packages/patterns/kbd/platform-specific/kbd-platform-specific-4.tsx +0 -22
  1336. package/packages/patterns/kbd/platform-specific/kbd-platform-specific-5.tsx +0 -14
  1337. package/packages/patterns/kbd/pressed-state/kbd-pressed-state-1.tsx +0 -14
  1338. package/packages/patterns/kbd/pressed-state/kbd-pressed-state-2.tsx +0 -11
  1339. package/packages/patterns/kbd/pressed-state/kbd-pressed-state-3.tsx +0 -16
  1340. package/packages/patterns/kbd/pressed-state/kbd-pressed-state-4.tsx +0 -14
  1341. package/packages/patterns/kbd/pressed-state/kbd-pressed-state-5.tsx +0 -18
  1342. package/packages/patterns/kbd/sequence/kbd-sequence-1.tsx +0 -18
  1343. package/packages/patterns/kbd/sequence/kbd-sequence-2.tsx +0 -15
  1344. package/packages/patterns/kbd/sequence/kbd-sequence-3.tsx +0 -21
  1345. package/packages/patterns/kbd/sequence/kbd-sequence-4.tsx +0 -15
  1346. package/packages/patterns/kbd/shortcut/kbd-shortcut-1.tsx +0 -14
  1347. package/packages/patterns/kbd/shortcut/kbd-shortcut-2.tsx +0 -14
  1348. package/packages/patterns/kbd/shortcut/kbd-shortcut-3.tsx +0 -14
  1349. package/packages/patterns/kbd/shortcut/kbd-shortcut-4.tsx +0 -15
  1350. package/packages/patterns/kbd/shortcut/kbd-shortcut-5.tsx +0 -14
  1351. package/packages/patterns/kbd/sizes/kbd-sizes-1.tsx +0 -14
  1352. package/packages/patterns/kbd/sizes/kbd-sizes-2.tsx +0 -14
  1353. package/packages/patterns/kbd/sizes/kbd-sizes-3.tsx +0 -14
  1354. package/packages/patterns/kbd/sizes/kbd-sizes-4.tsx +0 -13
  1355. package/packages/patterns/kbd/sizes/kbd-sizes-5.tsx +0 -14
  1356. package/packages/patterns/kbd/with-icons/kbd-with-icons-1.tsx +0 -17
  1357. package/packages/patterns/kbd/with-icons/kbd-with-icons-2.tsx +0 -17
  1358. package/packages/patterns/kbd/with-icons/kbd-with-icons-3.tsx +0 -25
  1359. package/packages/patterns/kbd/with-icons/kbd-with-icons-4.tsx +0 -17
  1360. package/packages/patterns/kbd/with-icons/kbd-with-icons-5.tsx +0 -15
  1361. package/packages/patterns/label/standard/label-standard-1.tsx +0 -11
  1362. package/packages/patterns/label/standard/label-standard-2.tsx +0 -14
  1363. package/packages/patterns/label/standard/label-standard-3.tsx +0 -26
  1364. package/packages/patterns/label/standard/label-standard-4.tsx +0 -15
  1365. package/packages/patterns/label/standard/label-standard-5.tsx +0 -12
  1366. package/packages/patterns/label/standard/label-standard-6.tsx +0 -12
  1367. package/packages/patterns/label/standard/label-standard-7.tsx +0 -12
  1368. package/packages/patterns/label/standard/label-standard-8.tsx +0 -9
  1369. package/packages/patterns/menubar/standard/menubar-standard-1.tsx +0 -24
  1370. package/packages/patterns/menubar/standard/menubar-standard-10.tsx +0 -26
  1371. package/packages/patterns/menubar/standard/menubar-standard-2.tsx +0 -34
  1372. package/packages/patterns/menubar/standard/menubar-standard-3.tsx +0 -34
  1373. package/packages/patterns/menubar/standard/menubar-standard-4.tsx +0 -24
  1374. package/packages/patterns/menubar/standard/menubar-standard-5.tsx +0 -29
  1375. package/packages/patterns/menubar/standard/menubar-standard-6.tsx +0 -34
  1376. package/packages/patterns/menubar/standard/menubar-standard-7.tsx +0 -27
  1377. package/packages/patterns/menubar/standard/menubar-standard-8.tsx +0 -63
  1378. package/packages/patterns/menubar/standard/menubar-standard-9.tsx +0 -31
  1379. package/packages/patterns/navigation-menu/complex/navigation-menu-complex-1.tsx +0 -238
  1380. package/packages/patterns/navigation-menu/complex/navigation-menu-complex-2.tsx +0 -100
  1381. package/packages/patterns/navigation-menu/complex/navigation-menu-complex-3.tsx +0 -151
  1382. package/packages/patterns/navigation-menu/complex/navigation-menu-complex-4.tsx +0 -187
  1383. package/packages/patterns/navigation-menu/complex/navigation-menu-complex-5.tsx +0 -168
  1384. package/packages/patterns/navigation-menu/features/navigation-menu-features-1.tsx +0 -92
  1385. package/packages/patterns/navigation-menu/features/navigation-menu-features-2.tsx +0 -118
  1386. package/packages/patterns/navigation-menu/features/navigation-menu-features-3.tsx +0 -122
  1387. package/packages/patterns/navigation-menu/features/navigation-menu-features-4.tsx +0 -101
  1388. package/packages/patterns/navigation-menu/features/navigation-menu-features-5.tsx +0 -176
  1389. package/packages/patterns/navigation-menu/marketing/navigation-menu-marketing-1.tsx +0 -107
  1390. package/packages/patterns/navigation-menu/marketing/navigation-menu-marketing-2.tsx +0 -116
  1391. package/packages/patterns/navigation-menu/marketing/navigation-menu-marketing-3.tsx +0 -119
  1392. package/packages/patterns/navigation-menu/marketing/navigation-menu-marketing-4.tsx +0 -140
  1393. package/packages/patterns/navigation-menu/marketing/navigation-menu-marketing-5.tsx +0 -107
  1394. package/packages/patterns/navigation-menu/standard/navigation-menu-standard-1.tsx +0 -73
  1395. package/packages/patterns/navigation-menu/standard/navigation-menu-standard-2.tsx +0 -51
  1396. package/packages/patterns/navigation-menu/standard/navigation-menu-standard-3.tsx +0 -68
  1397. package/packages/patterns/navigation-menu/standard/navigation-menu-standard-4.tsx +0 -60
  1398. package/packages/patterns/navigation-menu/standard/navigation-menu-standard-5.tsx +0 -82
  1399. package/packages/patterns/package.json +0 -32
  1400. package/packages/patterns/pagination/advanced/pagination-advanced-1.tsx +0 -43
  1401. package/packages/patterns/pagination/advanced/pagination-advanced-2.tsx +0 -43
  1402. package/packages/patterns/pagination/advanced/pagination-advanced-3.tsx +0 -49
  1403. package/packages/patterns/pagination/advanced/pagination-advanced-4.tsx +0 -24
  1404. package/packages/patterns/pagination/advanced/pagination-advanced-5.tsx +0 -39
  1405. package/packages/patterns/pagination/basic/pagination-basic-1.tsx +0 -28
  1406. package/packages/patterns/pagination/basic/pagination-basic-2.tsx +0 -34
  1407. package/packages/patterns/pagination/basic/pagination-basic-3.tsx +0 -36
  1408. package/packages/patterns/pagination/basic/pagination-basic-4.tsx +0 -35
  1409. package/packages/patterns/pagination/basic/pagination-basic-5.tsx +0 -43
  1410. package/packages/patterns/pagination/navigation/pagination-navigation-1.tsx +0 -24
  1411. package/packages/patterns/pagination/navigation/pagination-navigation-2.tsx +0 -27
  1412. package/packages/patterns/pagination/navigation/pagination-navigation-3.tsx +0 -32
  1413. package/packages/patterns/pagination/navigation/pagination-navigation-4.tsx +0 -40
  1414. package/packages/patterns/pagination/sizes/pagination-sizes-1.tsx +0 -40
  1415. package/packages/patterns/pagination/sizes/pagination-sizes-2.tsx +0 -36
  1416. package/packages/patterns/pagination/sizes/pagination-sizes-3.tsx +0 -40
  1417. package/packages/patterns/pagination/sizes/pagination-sizes-4.tsx +0 -28
  1418. package/packages/patterns/pagination/sizes/pagination-sizes-5.tsx +0 -28
  1419. package/packages/patterns/popover/standard/popover-standard-1.tsx +0 -21
  1420. package/packages/patterns/popover/standard/popover-standard-10.tsx +0 -30
  1421. package/packages/patterns/popover/standard/popover-standard-11.tsx +0 -54
  1422. package/packages/patterns/popover/standard/popover-standard-12.tsx +0 -51
  1423. package/packages/patterns/popover/standard/popover-standard-13.tsx +0 -52
  1424. package/packages/patterns/popover/standard/popover-standard-14.tsx +0 -49
  1425. package/packages/patterns/popover/standard/popover-standard-15.tsx +0 -35
  1426. package/packages/patterns/popover/standard/popover-standard-2.tsx +0 -24
  1427. package/packages/patterns/popover/standard/popover-standard-3.tsx +0 -29
  1428. package/packages/patterns/popover/standard/popover-standard-4.tsx +0 -26
  1429. package/packages/patterns/popover/standard/popover-standard-5.tsx +0 -24
  1430. package/packages/patterns/popover/standard/popover-standard-6.tsx +0 -25
  1431. package/packages/patterns/popover/standard/popover-standard-7.tsx +0 -25
  1432. package/packages/patterns/popover/standard/popover-standard-8.tsx +0 -26
  1433. package/packages/patterns/popover/standard/popover-standard-9.tsx +0 -23
  1434. package/packages/patterns/progress/basic/progress-basic-1.tsx +0 -7
  1435. package/packages/patterns/progress/basic/progress-basic-2.tsx +0 -7
  1436. package/packages/patterns/progress/basic/progress-basic-3.tsx +0 -7
  1437. package/packages/patterns/progress/basic/progress-basic-4.tsx +0 -7
  1438. package/packages/patterns/progress/basic/progress-basic-5.tsx +0 -7
  1439. package/packages/patterns/progress/colored/progress-colored-1.tsx +0 -12
  1440. package/packages/patterns/progress/colored/progress-colored-2.tsx +0 -12
  1441. package/packages/patterns/progress/colored/progress-colored-3.tsx +0 -12
  1442. package/packages/patterns/progress/colored/progress-colored-4.tsx +0 -12
  1443. package/packages/patterns/progress/colored/progress-colored-5.tsx +0 -12
  1444. package/packages/patterns/progress/sizes/progress-sizes-1.tsx +0 -7
  1445. package/packages/patterns/progress/sizes/progress-sizes-2.tsx +0 -7
  1446. package/packages/patterns/progress/sizes/progress-sizes-3.tsx +0 -7
  1447. package/packages/patterns/progress/sizes/progress-sizes-4.tsx +0 -7
  1448. package/packages/patterns/progress/sizes/progress-sizes-5.tsx +0 -7
  1449. package/packages/patterns/progress/with-label/progress-with-label-1.tsx +0 -18
  1450. package/packages/patterns/progress/with-label/progress-with-label-2.tsx +0 -15
  1451. package/packages/patterns/progress/with-label/progress-with-label-3.tsx +0 -15
  1452. package/packages/patterns/progress/with-label/progress-with-label-4.tsx +0 -23
  1453. package/packages/patterns/progress/with-label/progress-with-label-5.tsx +0 -23
  1454. package/packages/patterns/radio-group/advanced/radio-group-advanced-1.tsx +0 -39
  1455. package/packages/patterns/radio-group/advanced/radio-group-advanced-2.tsx +0 -71
  1456. package/packages/patterns/radio-group/form/radio-group-form-1.tsx +0 -83
  1457. package/packages/patterns/radio-group/form/radio-group-form-2.tsx +0 -52
  1458. package/packages/patterns/radio-group/layout/radio-group-layout-1.tsx +0 -23
  1459. package/packages/patterns/radio-group/layout/radio-group-layout-2.tsx +0 -44
  1460. package/packages/patterns/radio-group/layout/radio-group-layout-3.tsx +0 -35
  1461. package/packages/patterns/radio-group/standard/radio-group-standard-1.tsx +0 -23
  1462. package/packages/patterns/radio-group/standard/radio-group-standard-2.tsx +0 -38
  1463. package/packages/patterns/scroll-area/advanced/scroll-area-advanced-1.tsx +0 -54
  1464. package/packages/patterns/scroll-area/advanced/scroll-area-advanced-2.tsx +0 -54
  1465. package/packages/patterns/scroll-area/advanced/scroll-area-advanced-3.tsx +0 -89
  1466. package/packages/patterns/scroll-area/layout/scroll-area-layout-1.tsx +0 -37
  1467. package/packages/patterns/scroll-area/layout/scroll-area-layout-2.tsx +0 -45
  1468. package/packages/patterns/scroll-area/layout/scroll-area-layout-3.tsx +0 -99
  1469. package/packages/patterns/scroll-area/standard/scroll-area-standard-1.tsx +0 -52
  1470. package/packages/patterns/scroll-area/standard/scroll-area-standard-2.tsx +0 -56
  1471. package/packages/patterns/separator/basic/separator-basic-1.tsx +0 -13
  1472. package/packages/patterns/separator/basic/separator-basic-2.tsx +0 -15
  1473. package/packages/patterns/separator/basic/separator-basic-3.tsx +0 -21
  1474. package/packages/patterns/separator/basic/separator-basic-4.tsx +0 -19
  1475. package/packages/patterns/separator/basic/separator-basic-5.tsx +0 -7
  1476. package/packages/patterns/separator/spacing/separator-spacing-1.tsx +0 -13
  1477. package/packages/patterns/separator/spacing/separator-spacing-2.tsx +0 -13
  1478. package/packages/patterns/separator/spacing/separator-spacing-3.tsx +0 -13
  1479. package/packages/patterns/separator/spacing/separator-spacing-4.tsx +0 -13
  1480. package/packages/patterns/separator/spacing/separator-spacing-5.tsx +0 -13
  1481. package/packages/patterns/separator/styled/separator-styled-1.tsx +0 -13
  1482. package/packages/patterns/separator/styled/separator-styled-2.tsx +0 -13
  1483. package/packages/patterns/separator/styled/separator-styled-3.tsx +0 -13
  1484. package/packages/patterns/separator/styled/separator-styled-4.tsx +0 -11
  1485. package/packages/patterns/separator/styled/separator-styled-5.tsx +0 -16
  1486. package/packages/patterns/separator/with-text/separator-with-text-1.tsx +0 -17
  1487. package/packages/patterns/separator/with-text/separator-with-text-2.tsx +0 -16
  1488. package/packages/patterns/separator/with-text/separator-with-text-3.tsx +0 -14
  1489. package/packages/patterns/sheet/details/sheet-details-1.tsx +0 -51
  1490. package/packages/patterns/sheet/details/sheet-details-2.tsx +0 -56
  1491. package/packages/patterns/sheet/details/sheet-details-3.tsx +0 -65
  1492. package/packages/patterns/sheet/details/sheet-details-4.tsx +0 -45
  1493. package/packages/patterns/sheet/details/sheet-details-5.tsx +0 -114
  1494. package/packages/patterns/sheet/form/sheet-form-1.tsx +0 -46
  1495. package/packages/patterns/sheet/form/sheet-form-2.tsx +0 -45
  1496. package/packages/patterns/sheet/form/sheet-form-3.tsx +0 -60
  1497. package/packages/patterns/sheet/form/sheet-form-4.tsx +0 -50
  1498. package/packages/patterns/sheet/form/sheet-form-5.tsx +0 -50
  1499. package/packages/patterns/sheet/multi-section/sheet-multi-section-1.tsx +0 -42
  1500. package/packages/patterns/sheet/multi-section/sheet-multi-section-2.tsx +0 -79
  1501. package/packages/patterns/sheet/multi-section/sheet-multi-section-3.tsx +0 -42
  1502. package/packages/patterns/sheet/multi-section/sheet-multi-section-4.tsx +0 -50
  1503. package/packages/patterns/sheet/multi-section/sheet-multi-section-5.tsx +0 -66
  1504. package/packages/patterns/sheet/navigation/sheet-navigation-1.tsx +0 -39
  1505. package/packages/patterns/sheet/navigation/sheet-navigation-2.tsx +0 -57
  1506. package/packages/patterns/sheet/navigation/sheet-navigation-3.tsx +0 -73
  1507. package/packages/patterns/sheet/navigation/sheet-navigation-4.tsx +0 -55
  1508. package/packages/patterns/sheet/navigation/sheet-navigation-5.tsx +0 -46
  1509. package/packages/patterns/sheet/settings/sheet-settings-1.tsx +0 -47
  1510. package/packages/patterns/sheet/settings/sheet-settings-2.tsx +0 -47
  1511. package/packages/patterns/sheet/settings/sheet-settings-3.tsx +0 -55
  1512. package/packages/patterns/sheet/settings/sheet-settings-4.tsx +0 -62
  1513. package/packages/patterns/sheet/settings/sheet-settings-5.tsx +0 -52
  1514. package/packages/patterns/sheet/standard/sheet-standard-1.tsx +0 -29
  1515. package/packages/patterns/sheet/standard/sheet-standard-2.tsx +0 -30
  1516. package/packages/patterns/sheet/standard/sheet-standard-3.tsx +0 -29
  1517. package/packages/patterns/sheet/standard/sheet-standard-4.tsx +0 -29
  1518. package/packages/patterns/skeleton/card/skeleton-card-1.tsx +0 -13
  1519. package/packages/patterns/skeleton/card/skeleton-card-2.tsx +0 -20
  1520. package/packages/patterns/skeleton/card/skeleton-card-3.tsx +0 -21
  1521. package/packages/patterns/skeleton/card/skeleton-card-4.tsx +0 -21
  1522. package/packages/patterns/skeleton/card/skeleton-card-5.tsx +0 -20
  1523. package/packages/patterns/skeleton/content/skeleton-content-1.tsx +0 -26
  1524. package/packages/patterns/skeleton/content/skeleton-content-2.tsx +0 -30
  1525. package/packages/patterns/skeleton/content/skeleton-content-3.tsx +0 -27
  1526. package/packages/patterns/skeleton/content/skeleton-content-4.tsx +0 -31
  1527. package/packages/patterns/skeleton/content/skeleton-content-5.tsx +0 -41
  1528. package/packages/patterns/skeleton/form/skeleton-form-1.tsx +0 -22
  1529. package/packages/patterns/skeleton/form/skeleton-form-2.tsx +0 -27
  1530. package/packages/patterns/skeleton/form/skeleton-form-3.tsx +0 -35
  1531. package/packages/patterns/skeleton/form/skeleton-form-4.tsx +0 -37
  1532. package/packages/patterns/skeleton/form/skeleton-form-5.tsx +0 -28
  1533. package/packages/patterns/skeleton/list/skeleton-list-1.tsx +0 -16
  1534. package/packages/patterns/skeleton/list/skeleton-list-2.tsx +0 -19
  1535. package/packages/patterns/skeleton/list/skeleton-list-3.tsx +0 -20
  1536. package/packages/patterns/skeleton/list/skeleton-list-4.tsx +0 -21
  1537. package/packages/patterns/skeleton/list/skeleton-list-5.tsx +0 -30
  1538. package/packages/patterns/skeleton/profile/skeleton-profile-1.tsx +0 -19
  1539. package/packages/patterns/skeleton/profile/skeleton-profile-2.tsx +0 -33
  1540. package/packages/patterns/skeleton/profile/skeleton-profile-3.tsx +0 -27
  1541. package/packages/patterns/skeleton/profile/skeleton-profile-4.tsx +0 -33
  1542. package/packages/patterns/skeleton/profile/skeleton-profile-5.tsx +0 -22
  1543. package/packages/patterns/skeleton/table/skeleton-table-1.tsx +0 -24
  1544. package/packages/patterns/skeleton/table/skeleton-table-2.tsx +0 -29
  1545. package/packages/patterns/skeleton/table/skeleton-table-3.tsx +0 -27
  1546. package/packages/patterns/skeleton/table/skeleton-table-4.tsx +0 -42
  1547. package/packages/patterns/skeleton/table/skeleton-table-5.tsx +0 -36
  1548. package/packages/patterns/slider/interactive/slider-interactive-1.tsx +0 -38
  1549. package/packages/patterns/slider/interactive/slider-interactive-2.tsx +0 -46
  1550. package/packages/patterns/slider/interactive/slider-interactive-3.tsx +0 -38
  1551. package/packages/patterns/slider/interactive/slider-interactive-4.tsx +0 -34
  1552. package/packages/patterns/slider/interactive/slider-interactive-5.tsx +0 -33
  1553. package/packages/patterns/slider/range/slider-range-1.tsx +0 -26
  1554. package/packages/patterns/slider/range/slider-range-2.tsx +0 -30
  1555. package/packages/patterns/slider/range/slider-range-3.tsx +0 -31
  1556. package/packages/patterns/slider/range/slider-range-4.tsx +0 -39
  1557. package/packages/patterns/slider/range/slider-range-5.tsx +0 -36
  1558. package/packages/patterns/slider/settings/slider-settings-1.tsx +0 -27
  1559. package/packages/patterns/slider/settings/slider-settings-2.tsx +0 -32
  1560. package/packages/patterns/slider/settings/slider-settings-3.tsx +0 -38
  1561. package/packages/patterns/slider/settings/slider-settings-4.tsx +0 -43
  1562. package/packages/patterns/slider/standard/slider-standard-1.tsx +0 -18
  1563. package/packages/patterns/slider/standard/slider-standard-2.tsx +0 -20
  1564. package/packages/patterns/slider/standard/slider-standard-3.tsx +0 -23
  1565. package/packages/patterns/slider/standard/slider-standard-4.tsx +0 -30
  1566. package/packages/patterns/slider/standard/slider-standard-5.tsx +0 -37
  1567. package/packages/patterns/slider/styled/slider-styled-1.tsx +0 -28
  1568. package/packages/patterns/slider/styled/slider-styled-2.tsx +0 -28
  1569. package/packages/patterns/slider/styled/slider-styled-3.tsx +0 -28
  1570. package/packages/patterns/slider/styled/slider-styled-4.tsx +0 -28
  1571. package/packages/patterns/slider/styled/slider-styled-5.tsx +0 -28
  1572. package/packages/patterns/slider/vertical/slider-vertical-1.tsx +0 -27
  1573. package/packages/patterns/slider/vertical/slider-vertical-2.tsx +0 -29
  1574. package/packages/patterns/slider/vertical/slider-vertical-3.tsx +0 -36
  1575. package/packages/patterns/slider/vertical/slider-vertical-4.tsx +0 -31
  1576. package/packages/patterns/slider/vertical/slider-vertical-5.tsx +0 -37
  1577. package/packages/patterns/sonner/content/sonner-content-1.tsx +0 -21
  1578. package/packages/patterns/sonner/content/sonner-content-2.tsx +0 -23
  1579. package/packages/patterns/sonner/content/sonner-content-3.tsx +0 -21
  1580. package/packages/patterns/sonner/content/sonner-content-4.tsx +0 -22
  1581. package/packages/patterns/sonner/content/sonner-content-5.tsx +0 -35
  1582. package/packages/patterns/sonner/interactive/sonner-interactive-1.tsx +0 -24
  1583. package/packages/patterns/sonner/interactive/sonner-interactive-2.tsx +0 -24
  1584. package/packages/patterns/sonner/interactive/sonner-interactive-3.tsx +0 -28
  1585. package/packages/patterns/sonner/interactive/sonner-interactive-4.tsx +0 -22
  1586. package/packages/patterns/sonner/position/sonner-position-1.tsx +0 -21
  1587. package/packages/patterns/sonner/position/sonner-position-2.tsx +0 -21
  1588. package/packages/patterns/sonner/position/sonner-position-3.tsx +0 -21
  1589. package/packages/patterns/sonner/position/sonner-position-4.tsx +0 -21
  1590. package/packages/patterns/sonner/position/sonner-position-5.tsx +0 -21
  1591. package/packages/patterns/sonner/position/sonner-position-6.tsx +0 -21
  1592. package/packages/patterns/sonner/promise/sonner-promise-1.tsx +0 -28
  1593. package/packages/patterns/sonner/promise/sonner-promise-2.tsx +0 -28
  1594. package/packages/patterns/sonner/promise/sonner-promise-3.tsx +0 -28
  1595. package/packages/patterns/sonner/promise/sonner-promise-4.tsx +0 -20
  1596. package/packages/patterns/sonner/standard/sonner-standard-1.tsx +0 -14
  1597. package/packages/patterns/sonner/standard/sonner-standard-2.tsx +0 -17
  1598. package/packages/patterns/sonner/standard/sonner-standard-3.tsx +0 -14
  1599. package/packages/patterns/sonner/standard/sonner-standard-4.tsx +0 -17
  1600. package/packages/patterns/sonner/standard/sonner-standard-5.tsx +0 -17
  1601. package/packages/patterns/spinner/applications/spinner-applications-1.tsx +0 -38
  1602. package/packages/patterns/spinner/applications/spinner-applications-2.tsx +0 -34
  1603. package/packages/patterns/spinner/applications/spinner-applications-3.tsx +0 -33
  1604. package/packages/patterns/spinner/button/spinner-button-1.tsx +0 -13
  1605. package/packages/patterns/spinner/button/spinner-button-2.tsx +0 -13
  1606. package/packages/patterns/spinner/button/spinner-button-3.tsx +0 -12
  1607. package/packages/patterns/spinner/button/spinner-button-4.tsx +0 -13
  1608. package/packages/patterns/spinner/button/spinner-button-5.tsx +0 -13
  1609. package/packages/patterns/spinner/inline/spinner-inline-1.tsx +0 -12
  1610. package/packages/patterns/spinner/inline/spinner-inline-2.tsx +0 -12
  1611. package/packages/patterns/spinner/inline/spinner-inline-3.tsx +0 -12
  1612. package/packages/patterns/spinner/inline/spinner-inline-4.tsx +0 -21
  1613. package/packages/patterns/spinner/standard/spinner-standard-1.tsx +0 -7
  1614. package/packages/patterns/spinner/standard/spinner-standard-2.tsx +0 -7
  1615. package/packages/patterns/spinner/standard/spinner-standard-3.tsx +0 -7
  1616. package/packages/patterns/spinner/standard/spinner-standard-4.tsx +0 -7
  1617. package/packages/patterns/spinner/standard/spinner-standard-5.tsx +0 -7
  1618. package/packages/patterns/switch/cards/switch-cards-1.tsx +0 -27
  1619. package/packages/patterns/switch/cards/switch-cards-2.tsx +0 -28
  1620. package/packages/patterns/switch/cards/switch-cards-3.tsx +0 -35
  1621. package/packages/patterns/switch/cards/switch-cards-4.tsx +0 -25
  1622. package/packages/patterns/switch/icons/switch-icons-1.tsx +0 -16
  1623. package/packages/patterns/switch/icons/switch-icons-2.tsx +0 -19
  1624. package/packages/patterns/switch/icons/switch-icons-3.tsx +0 -16
  1625. package/packages/patterns/switch/labeled/switch-labeled-1.tsx +0 -15
  1626. package/packages/patterns/switch/labeled/switch-labeled-2.tsx +0 -14
  1627. package/packages/patterns/switch/labeled/switch-labeled-3.tsx +0 -22
  1628. package/packages/patterns/switch/labeled/switch-labeled-4.tsx +0 -20
  1629. package/packages/patterns/switch/square/switch-square-1.tsx +0 -14
  1630. package/packages/patterns/switch/square/switch-square-2.tsx +0 -36
  1631. package/packages/patterns/switch/square/switch-square-3.tsx +0 -20
  1632. package/packages/patterns/switch/square/switch-square-4.tsx +0 -27
  1633. package/packages/patterns/switch/standard/switch-standard-1.tsx +0 -9
  1634. package/packages/patterns/switch/standard/switch-standard-2.tsx +0 -9
  1635. package/packages/patterns/switch/standard/switch-standard-3.tsx +0 -9
  1636. package/packages/patterns/switch/standard/switch-standard-4.tsx +0 -9
  1637. package/packages/patterns/table/advanced/table-advanced-1.tsx +0 -66
  1638. package/packages/patterns/table/advanced/table-advanced-2.tsx +0 -86
  1639. package/packages/patterns/table/advanced/table-advanced-3.tsx +0 -42
  1640. package/packages/patterns/table/advanced/table-advanced-4.tsx +0 -114
  1641. package/packages/patterns/table/standard/table-standard-1.tsx +0 -70
  1642. package/packages/patterns/table/standard/table-standard-2.tsx +0 -75
  1643. package/packages/patterns/table/standard/table-standard-3.tsx +0 -64
  1644. package/packages/patterns/table/standard/table-standard-4.tsx +0 -73
  1645. package/packages/patterns/tabs/advanced/tabs-advanced-1.tsx +0 -101
  1646. package/packages/patterns/tabs/advanced/tabs-advanced-2.tsx +0 -118
  1647. package/packages/patterns/tabs/advanced/tabs-advanced-3.tsx +0 -187
  1648. package/packages/patterns/tabs/content/tabs-content-1.tsx +0 -85
  1649. package/packages/patterns/tabs/content/tabs-content-2.tsx +0 -105
  1650. package/packages/patterns/tabs/content/tabs-content-3.tsx +0 -149
  1651. package/packages/patterns/tabs/layout/tabs-layout-1.tsx +0 -62
  1652. package/packages/patterns/tabs/layout/tabs-layout-2.tsx +0 -60
  1653. package/packages/patterns/tabs/layout/tabs-layout-3.tsx +0 -61
  1654. package/packages/patterns/tabs/standard/tabs-standard-1.tsx +0 -52
  1655. package/packages/patterns/tabs/standard/tabs-standard-2.tsx +0 -105
  1656. package/packages/patterns/textarea/form/textarea-form-1.tsx +0 -20
  1657. package/packages/patterns/textarea/form/textarea-form-2.tsx +0 -20
  1658. package/packages/patterns/textarea/form/textarea-form-3.tsx +0 -22
  1659. package/packages/patterns/textarea/form/textarea-form-4.tsx +0 -20
  1660. package/packages/patterns/textarea/form/textarea-form-5.tsx +0 -31
  1661. package/packages/patterns/textarea/labeled/textarea-labeled-1.tsx +0 -17
  1662. package/packages/patterns/textarea/labeled/textarea-labeled-2.tsx +0 -18
  1663. package/packages/patterns/textarea/labeled/textarea-labeled-3.tsx +0 -30
  1664. package/packages/patterns/textarea/labeled/textarea-labeled-4.tsx +0 -20
  1665. package/packages/patterns/textarea/standard/textarea-standard-1.tsx +0 -12
  1666. package/packages/patterns/textarea/standard/textarea-standard-2.tsx +0 -13
  1667. package/packages/patterns/textarea/standard/textarea-standard-3.tsx +0 -14
  1668. package/packages/patterns/textarea/standard/textarea-standard-4.tsx +0 -13
  1669. package/packages/patterns/toggle/sizes/toggle-sizes-1.tsx +0 -14
  1670. package/packages/patterns/toggle/sizes/toggle-sizes-2.tsx +0 -14
  1671. package/packages/patterns/toggle/sizes/toggle-sizes-3.tsx +0 -14
  1672. package/packages/patterns/toggle/standard/toggle-standard-1.tsx +0 -14
  1673. package/packages/patterns/toggle/standard/toggle-standard-2.tsx +0 -14
  1674. package/packages/patterns/toggle/standard/toggle-standard-3.tsx +0 -14
  1675. package/packages/patterns/toggle/standard/toggle-standard-4.tsx +0 -15
  1676. package/packages/patterns/toggle-group/sizes/toggle-group-sizes-1.tsx +0 -22
  1677. package/packages/patterns/toggle-group/sizes/toggle-group-sizes-2.tsx +0 -22
  1678. package/packages/patterns/toggle-group/sizes/toggle-group-sizes-3.tsx +0 -22
  1679. package/packages/patterns/toggle-group/standard/toggle-group-standard-1.tsx +0 -22
  1680. package/packages/patterns/toggle-group/standard/toggle-group-standard-2.tsx +0 -22
  1681. package/packages/patterns/toggle-group/standard/toggle-group-standard-3.tsx +0 -22
  1682. package/packages/patterns/toggle-group/standard/toggle-group-standard-4.tsx +0 -22
  1683. package/packages/patterns/tooltip/content/tooltip-content-1.tsx +0 -28
  1684. package/packages/patterns/tooltip/content/tooltip-content-2.tsx +0 -27
  1685. package/packages/patterns/tooltip/content/tooltip-content-3.tsx +0 -27
  1686. package/packages/patterns/tooltip/content/tooltip-content-4.tsx +0 -36
  1687. package/packages/patterns/tooltip/standard/tooltip-standard-1.tsx +0 -23
  1688. package/packages/patterns/tooltip/standard/tooltip-standard-2.tsx +0 -49
  1689. package/packages/patterns/tooltip/standard/tooltip-standard-3.tsx +0 -26
  1690. package/packages/patterns/tooltip/standard/tooltip-standard-4.tsx +0 -25
  1691. package/packages/patterns/tsconfig.json +0 -13
  1692. package/packages/pill/index.tsx +0 -166
  1693. package/packages/pill/package.json +0 -24
  1694. package/packages/pill/tsconfig.json +0 -13
  1695. package/packages/qr-code/index.tsx +0 -88
  1696. package/packages/qr-code/package.json +0 -27
  1697. package/packages/qr-code/server.tsx +0 -42
  1698. package/packages/qr-code/tsconfig.json +0 -13
  1699. package/packages/rating/index.tsx +0 -243
  1700. package/packages/rating/package.json +0 -25
  1701. package/packages/rating/tsconfig.json +0 -13
  1702. package/packages/reel/index.tsx +0 -748
  1703. package/packages/reel/package.json +0 -26
  1704. package/packages/reel/reel-controlled.tsx +0 -327
  1705. package/packages/reel/tsconfig.json +0 -13
  1706. package/packages/relative-time/index.tsx +0 -181
  1707. package/packages/relative-time/package.json +0 -24
  1708. package/packages/relative-time/tsconfig.json +0 -13
  1709. package/packages/sandbox/index.tsx +0 -251
  1710. package/packages/sandbox/package.json +0 -24
  1711. package/packages/sandbox/tsconfig.json +0 -13
  1712. package/packages/shadcn-ui/components/ui/accordion.tsx +0 -66
  1713. package/packages/shadcn-ui/components/ui/alert-dialog.tsx +0 -157
  1714. package/packages/shadcn-ui/components/ui/alert.tsx +0 -66
  1715. package/packages/shadcn-ui/components/ui/aspect-ratio.tsx +0 -11
  1716. package/packages/shadcn-ui/components/ui/avatar.tsx +0 -53
  1717. package/packages/shadcn-ui/components/ui/badge.tsx +0 -46
  1718. package/packages/shadcn-ui/components/ui/breadcrumb.tsx +0 -109
  1719. package/packages/shadcn-ui/components/ui/button-group.tsx +0 -83
  1720. package/packages/shadcn-ui/components/ui/button.tsx +0 -60
  1721. package/packages/shadcn-ui/components/ui/calendar.tsx +0 -213
  1722. package/packages/shadcn-ui/components/ui/card.tsx +0 -112
  1723. package/packages/shadcn-ui/components/ui/carousel.tsx +0 -241
  1724. package/packages/shadcn-ui/components/ui/chart.tsx +0 -357
  1725. package/packages/shadcn-ui/components/ui/checkbox.tsx +0 -32
  1726. package/packages/shadcn-ui/components/ui/collapsible.tsx +0 -33
  1727. package/packages/shadcn-ui/components/ui/command.tsx +0 -184
  1728. package/packages/shadcn-ui/components/ui/context-menu.tsx +0 -252
  1729. package/packages/shadcn-ui/components/ui/dialog.tsx +0 -143
  1730. package/packages/shadcn-ui/components/ui/drawer.tsx +0 -135
  1731. package/packages/shadcn-ui/components/ui/dropdown-menu.tsx +0 -257
  1732. package/packages/shadcn-ui/components/ui/empty.tsx +0 -104
  1733. package/packages/shadcn-ui/components/ui/field.tsx +0 -244
  1734. package/packages/shadcn-ui/components/ui/form.tsx +0 -167
  1735. package/packages/shadcn-ui/components/ui/hover-card.tsx +0 -44
  1736. package/packages/shadcn-ui/components/ui/input-group.tsx +0 -170
  1737. package/packages/shadcn-ui/components/ui/input-otp.tsx +0 -77
  1738. package/packages/shadcn-ui/components/ui/input.tsx +0 -21
  1739. package/packages/shadcn-ui/components/ui/item.tsx +0 -193
  1740. package/packages/shadcn-ui/components/ui/kbd.tsx +0 -28
  1741. package/packages/shadcn-ui/components/ui/label.tsx +0 -24
  1742. package/packages/shadcn-ui/components/ui/menubar.tsx +0 -276
  1743. package/packages/shadcn-ui/components/ui/navigation-menu.tsx +0 -168
  1744. package/packages/shadcn-ui/components/ui/pagination.tsx +0 -127
  1745. package/packages/shadcn-ui/components/ui/popover.tsx +0 -48
  1746. package/packages/shadcn-ui/components/ui/progress.tsx +0 -31
  1747. package/packages/shadcn-ui/components/ui/radio-group.tsx +0 -45
  1748. package/packages/shadcn-ui/components/ui/resizable.tsx +0 -56
  1749. package/packages/shadcn-ui/components/ui/scroll-area.tsx +0 -58
  1750. package/packages/shadcn-ui/components/ui/select.tsx +0 -187
  1751. package/packages/shadcn-ui/components/ui/separator.tsx +0 -28
  1752. package/packages/shadcn-ui/components/ui/sheet.tsx +0 -139
  1753. package/packages/shadcn-ui/components/ui/sidebar.tsx +0 -726
  1754. package/packages/shadcn-ui/components/ui/skeleton.tsx +0 -13
  1755. package/packages/shadcn-ui/components/ui/slider.tsx +0 -63
  1756. package/packages/shadcn-ui/components/ui/sonner.tsx +0 -25
  1757. package/packages/shadcn-ui/components/ui/spinner.tsx +0 -16
  1758. package/packages/shadcn-ui/components/ui/switch.tsx +0 -31
  1759. package/packages/shadcn-ui/components/ui/table.tsx +0 -116
  1760. package/packages/shadcn-ui/components/ui/tabs.tsx +0 -66
  1761. package/packages/shadcn-ui/components/ui/textarea.tsx +0 -18
  1762. package/packages/shadcn-ui/components/ui/toast.tsx +0 -128
  1763. package/packages/shadcn-ui/components/ui/toaster.tsx +0 -35
  1764. package/packages/shadcn-ui/components/ui/toggle-group.tsx +0 -73
  1765. package/packages/shadcn-ui/components/ui/toggle.tsx +0 -47
  1766. package/packages/shadcn-ui/components/ui/tooltip.tsx +0 -61
  1767. package/packages/shadcn-ui/components.json +0 -21
  1768. package/packages/shadcn-ui/hooks/use-mobile.ts +0 -19
  1769. package/packages/shadcn-ui/hooks/use-mobile.tsx +0 -19
  1770. package/packages/shadcn-ui/hooks/use-toast.ts +0 -194
  1771. package/packages/shadcn-ui/lib/utils.ts +0 -6
  1772. package/packages/shadcn-ui/package.json +0 -39
  1773. package/packages/shadcn-ui/tsconfig.json +0 -17
  1774. package/packages/shader-ripple/index.tsx +0 -303
  1775. package/packages/shader-ripple/package.json +0 -60
  1776. package/packages/shader-ripple/tsconfig.json +0 -18
  1777. package/packages/silk/README.md +0 -40
  1778. package/packages/silk/index.tsx +0 -170
  1779. package/packages/silk/package.json +0 -61
  1780. package/packages/silk/tsconfig.json +0 -18
  1781. package/packages/silk/types.d.ts +0 -23
  1782. package/packages/snippet/index.tsx +0 -123
  1783. package/packages/snippet/package.json +0 -23
  1784. package/packages/snippet/tsconfig.json +0 -13
  1785. package/packages/spinner/index.tsx +0 -271
  1786. package/packages/spinner/package.json +0 -24
  1787. package/packages/spinner/tsconfig.json +0 -13
  1788. package/packages/status/index.tsx +0 -62
  1789. package/packages/status/package.json +0 -23
  1790. package/packages/status/tsconfig.json +0 -13
  1791. package/packages/stories/index.tsx +0 -232
  1792. package/packages/stories/package.json +0 -23
  1793. package/packages/stories/tsconfig.json +0 -13
  1794. package/packages/table/index.tsx +0 -246
  1795. package/packages/table/package.json +0 -26
  1796. package/packages/table/tsconfig.json +0 -13
  1797. package/packages/tags/index.tsx +0 -221
  1798. package/packages/tags/package.json +0 -23
  1799. package/packages/tags/tsconfig.json +0 -13
  1800. package/packages/theme-switcher/index.tsx +0 -99
  1801. package/packages/theme-switcher/package.json +0 -26
  1802. package/packages/theme-switcher/tsconfig.json +0 -13
  1803. package/packages/ticker/index.tsx +0 -195
  1804. package/packages/ticker/package.json +0 -23
  1805. package/packages/ticker/tsconfig.json +0 -13
  1806. package/packages/tree/index.tsx +0 -445
  1807. package/packages/tree/package.json +0 -25
  1808. package/packages/tree/tsconfig.json +0 -13
  1809. package/packages/typescript-config/base.json +0 -27
  1810. package/packages/typescript-config/nextjs.json +0 -13
  1811. package/packages/typescript-config/package.json +0 -15
  1812. package/packages/typescript-config/react-library.json +0 -8
  1813. package/packages/typescript-config/types/minimatch/index.d.ts +0 -26
  1814. package/packages/typography/package.json +0 -26
  1815. package/packages/typography/styles.css +0 -326
  1816. package/packages/typography/tsconfig.json +0 -13
  1817. package/packages/video-player/index.tsx +0 -125
  1818. package/packages/video-player/package.json +0 -24
  1819. package/packages/video-player/tsconfig.json +0 -13
  1820. package/public/r/accordion-controlled.json +0 -20
  1821. package/public/r/accordion-demo.json +0 -19
  1822. package/public/r/accordion-multiple.json +0 -19
  1823. package/public/r/accordion-single.json +0 -19
  1824. package/public/r/accordion.json +0 -15
  1825. package/public/r/alert-demo.json +0 -19
  1826. package/public/r/alert-dialog-demo.json +0 -20
  1827. package/public/r/alert-dialog.json +0 -15
  1828. package/public/r/alert-error.json +0 -20
  1829. package/public/r/alert-info.json +0 -20
  1830. package/public/r/alert-success.json +0 -20
  1831. package/public/r/alert-warning.json +0 -20
  1832. package/public/r/alert-with-icon-action.json +0 -20
  1833. package/public/r/alert-with-icon.json +0 -19
  1834. package/public/r/alert.json +0 -32
  1835. package/public/r/announcement-tagless.json +0 -21
  1836. package/public/r/announcement-themes.json +0 -21
  1837. package/public/r/announcement.json +0 -20
  1838. package/public/r/autocomplete-async.json +0 -21
  1839. package/public/r/autocomplete-autohighlight.json +0 -20
  1840. package/public/r/autocomplete-demo.json +0 -20
  1841. package/public/r/autocomplete-disabled.json +0 -21
  1842. package/public/r/autocomplete-form.json +0 -23
  1843. package/public/r/autocomplete-grouped.json +0 -20
  1844. package/public/r/autocomplete-inline.json +0 -20
  1845. package/public/r/autocomplete-lg.json +0 -20
  1846. package/public/r/autocomplete-limit.json +0 -20
  1847. package/public/r/autocomplete-sm.json +0 -20
  1848. package/public/r/autocomplete-with-clear.json +0 -20
  1849. package/public/r/autocomplete-with-label.json +0 -21
  1850. package/public/r/autocomplete-with-trigger-clear.json +0 -20
  1851. package/public/r/autocomplete.json +0 -19
  1852. package/public/r/avatar-demo.json +0 -19
  1853. package/public/r/avatar-fallback.json +0 -19
  1854. package/public/r/avatar-group.json +0 -20
  1855. package/public/r/avatar-radius.json +0 -19
  1856. package/public/r/avatar-size.json +0 -19
  1857. package/public/r/avatar-stack-hover.json +0 -22
  1858. package/public/r/avatar-stack.json +0 -21
  1859. package/public/r/avatar.json +0 -15
  1860. package/public/r/badge-demo.json +0 -19
  1861. package/public/r/badge-destructive.json +0 -21
  1862. package/public/r/badge-error.json +0 -20
  1863. package/public/r/badge-info.json +0 -20
  1864. package/public/r/badge-lg.json +0 -19
  1865. package/public/r/badge-outline.json +0 -19
  1866. package/public/r/badge-secondary.json +0 -19
  1867. package/public/r/badge-sm.json +0 -19
  1868. package/public/r/badge-success.json +0 -20
  1869. package/public/r/badge-warning.json +0 -20
  1870. package/public/r/badge-with-icon.json +0 -19
  1871. package/public/r/badge-with-link.json +0 -19
  1872. package/public/r/badge.json +0 -35
  1873. package/public/r/banner-inset.json +0 -21
  1874. package/public/r/banner-themes.json +0 -21
  1875. package/public/r/banner.json +0 -20
  1876. package/public/r/bookmarks.json +0 -206
  1877. package/public/r/breadcrumb-custom-separator.json +0 -19
  1878. package/public/r/breadcrumb-demo.json +0 -21
  1879. package/public/r/breadcrumb.json +0 -15
  1880. package/public/r/button-demo.json +0 -19
  1881. package/public/r/button-destructive-outline.json +0 -20
  1882. package/public/r/button-destructive.json +0 -21
  1883. package/public/r/button-disabled.json +0 -20
  1884. package/public/r/button-ghost.json +0 -19
  1885. package/public/r/button-icon-lg.json +0 -19
  1886. package/public/r/button-icon-sm.json +0 -19
  1887. package/public/r/button-icon.json +0 -19
  1888. package/public/r/button-lg.json +0 -19
  1889. package/public/r/button-link.json +0 -19
  1890. package/public/r/button-loading.json +0 -20
  1891. package/public/r/button-outline.json +0 -19
  1892. package/public/r/button-secondary.json +0 -19
  1893. package/public/r/button-sm.json +0 -19
  1894. package/public/r/button-with-icon.json +0 -19
  1895. package/public/r/button-with-link.json +0 -19
  1896. package/public/r/button-xl.json +0 -19
  1897. package/public/r/button-xs.json +0 -19
  1898. package/public/r/button.json +0 -23
  1899. package/public/r/calendar-headless.json +0 -22
  1900. package/public/r/calendar-rac.json +0 -16
  1901. package/public/r/calendar.json +0 -21
  1902. package/public/r/card-demo.json +0 -28
  1903. package/public/r/card.json +0 -13
  1904. package/public/r/chart.json +0 -15
  1905. package/public/r/checkbox-card.json +0 -22
  1906. package/public/r/checkbox-demo.json +0 -21
  1907. package/public/r/checkbox-disabled.json +0 -22
  1908. package/public/r/checkbox-form.json +0 -25
  1909. package/public/r/checkbox-group-demo.json +0 -22
  1910. package/public/r/checkbox-group-disabled.json +0 -23
  1911. package/public/r/checkbox-group-form.json +0 -29
  1912. package/public/r/checkbox-group-nested-parent.json +0 -23
  1913. package/public/r/checkbox-group-parent.json +0 -23
  1914. package/public/r/checkbox-group.json +0 -15
  1915. package/public/r/checkbox-tree.json +0 -12
  1916. package/public/r/checkbox-with-description.json +0 -23
  1917. package/public/r/checkbox.json +0 -15
  1918. package/public/r/choicebox-inline.json +0 -20
  1919. package/public/r/choicebox.json +0 -20
  1920. package/public/r/code-block-diff.json +0 -21
  1921. package/public/r/code-block-focus.json +0 -20
  1922. package/public/r/code-block-headless.json +0 -21
  1923. package/public/r/code-block-highlight-line.json +0 -21
  1924. package/public/r/code-block-highlight-word.json +0 -21
  1925. package/public/r/code-block-no-highlighting.json +0 -20
  1926. package/public/r/code-block-numberless.json +0 -20
  1927. package/public/r/code-block-theme.json +0 -21
  1928. package/public/r/code-block.json +0 -20
  1929. package/public/r/codebase.json +0 -19
  1930. package/public/r/collaborative-canvas.json +0 -19
  1931. package/public/r/collapsible-demo.json +0 -19
  1932. package/public/r/collapsible.json +0 -15
  1933. package/public/r/color-picker.json +0 -21
  1934. package/public/r/colors-zinc.json +0 -61
  1935. package/public/r/combobox-autohighlight.json +0 -20
  1936. package/public/r/combobox-controlled.json +0 -21
  1937. package/public/r/combobox-create-new.json +0 -21
  1938. package/public/r/combobox-demo.json +0 -20
  1939. package/public/r/combobox-disabled.json +0 -21
  1940. package/public/r/combobox-fixed-width.json +0 -20
  1941. package/public/r/combobox-form.json +0 -24
  1942. package/public/r/combobox-grouped.json +0 -20
  1943. package/public/r/combobox-lg.json +0 -20
  1944. package/public/r/combobox-multiple-form.json +0 -25
  1945. package/public/r/combobox-multiple.json +0 -20
  1946. package/public/r/combobox-sm.json +0 -20
  1947. package/public/r/combobox-with-clear.json +0 -20
  1948. package/public/r/combobox-with-inner-input.json +0 -21
  1949. package/public/r/combobox-with-label.json +0 -21
  1950. package/public/r/combobox.json +0 -19
  1951. package/public/r/command.json +0 -18
  1952. package/public/r/comp-01.json +0 -22
  1953. package/public/r/comp-02.json +0 -23
  1954. package/public/r/comp-03.json +0 -23
  1955. package/public/r/comp-04.json +0 -23
  1956. package/public/r/comp-05.json +0 -22
  1957. package/public/r/comp-06.json +0 -23
  1958. package/public/r/comp-07.json +0 -22
  1959. package/public/r/comp-08.json +0 -23
  1960. package/public/r/comp-09.json +0 -22
  1961. package/public/r/comp-10.json +0 -22
  1962. package/public/r/comp-100.json +0 -23
  1963. package/public/r/comp-101.json +0 -23
  1964. package/public/r/comp-102.json +0 -23
  1965. package/public/r/comp-103.json +0 -23
  1966. package/public/r/comp-104.json +0 -23
  1967. package/public/r/comp-105.json +0 -23
  1968. package/public/r/comp-106.json +0 -22
  1969. package/public/r/comp-107.json +0 -22
  1970. package/public/r/comp-108.json +0 -23
  1971. package/public/r/comp-109.json +0 -22
  1972. package/public/r/comp-11.json +0 -22
  1973. package/public/r/comp-110.json +0 -22
  1974. package/public/r/comp-111.json +0 -21
  1975. package/public/r/comp-112.json +0 -21
  1976. package/public/r/comp-113.json +0 -22
  1977. package/public/r/comp-114.json +0 -23
  1978. package/public/r/comp-115.json +0 -22
  1979. package/public/r/comp-116.json +0 -22
  1980. package/public/r/comp-117.json +0 -23
  1981. package/public/r/comp-118.json +0 -23
  1982. package/public/r/comp-119.json +0 -27
  1983. package/public/r/comp-12.json +0 -22
  1984. package/public/r/comp-120.json +0 -27
  1985. package/public/r/comp-121.json +0 -27
  1986. package/public/r/comp-122.json +0 -27
  1987. package/public/r/comp-123.json +0 -22
  1988. package/public/r/comp-124.json +0 -22
  1989. package/public/r/comp-125.json +0 -31
  1990. package/public/r/comp-126.json +0 -31
  1991. package/public/r/comp-127.json +0 -21
  1992. package/public/r/comp-128.json +0 -21
  1993. package/public/r/comp-129.json +0 -24
  1994. package/public/r/comp-13.json +0 -22
  1995. package/public/r/comp-130.json +0 -23
  1996. package/public/r/comp-131.json +0 -23
  1997. package/public/r/comp-132.json +0 -23
  1998. package/public/r/comp-133.json +0 -23
  1999. package/public/r/comp-134.json +0 -23
  2000. package/public/r/comp-135.json +0 -24
  2001. package/public/r/comp-136.json +0 -23
  2002. package/public/r/comp-137.json +0 -23
  2003. package/public/r/comp-138.json +0 -25
  2004. package/public/r/comp-139.json +0 -23
  2005. package/public/r/comp-14.json +0 -22
  2006. package/public/r/comp-140.json +0 -23
  2007. package/public/r/comp-141.json +0 -23
  2008. package/public/r/comp-142.json +0 -25
  2009. package/public/r/comp-143.json +0 -23
  2010. package/public/r/comp-144.json +0 -24
  2011. package/public/r/comp-145.json +0 -24
  2012. package/public/r/comp-146.json +0 -24
  2013. package/public/r/comp-147.json +0 -24
  2014. package/public/r/comp-148.json +0 -25
  2015. package/public/r/comp-149.json +0 -24
  2016. package/public/r/comp-15.json +0 -22
  2017. package/public/r/comp-150.json +0 -21
  2018. package/public/r/comp-151.json +0 -23
  2019. package/public/r/comp-152.json +0 -23
  2020. package/public/r/comp-153.json +0 -23
  2021. package/public/r/comp-154.json +0 -23
  2022. package/public/r/comp-155.json +0 -23
  2023. package/public/r/comp-156.json +0 -25
  2024. package/public/r/comp-157.json +0 -27
  2025. package/public/r/comp-158.json +0 -24
  2026. package/public/r/comp-159.json +0 -24
  2027. package/public/r/comp-16.json +0 -22
  2028. package/public/r/comp-160.json +0 -24
  2029. package/public/r/comp-161.json +0 -24
  2030. package/public/r/comp-162.json +0 -24
  2031. package/public/r/comp-163.json +0 -28
  2032. package/public/r/comp-164.json +0 -24
  2033. package/public/r/comp-165.json +0 -24
  2034. package/public/r/comp-166.json +0 -25
  2035. package/public/r/comp-167.json +0 -24
  2036. package/public/r/comp-168.json +0 -24
  2037. package/public/r/comp-169.json +0 -23
  2038. package/public/r/comp-17.json +0 -25
  2039. package/public/r/comp-170.json +0 -25
  2040. package/public/r/comp-171.json +0 -28
  2041. package/public/r/comp-172.json +0 -23
  2042. package/public/r/comp-173.json +0 -23
  2043. package/public/r/comp-174.json +0 -23
  2044. package/public/r/comp-175.json +0 -23
  2045. package/public/r/comp-176.json +0 -23
  2046. package/public/r/comp-177.json +0 -23
  2047. package/public/r/comp-178.json +0 -23
  2048. package/public/r/comp-179.json +0 -24
  2049. package/public/r/comp-18.json +0 -25
  2050. package/public/r/comp-180.json +0 -23
  2051. package/public/r/comp-181.json +0 -25
  2052. package/public/r/comp-182.json +0 -24
  2053. package/public/r/comp-183.json +0 -25
  2054. package/public/r/comp-184.json +0 -25
  2055. package/public/r/comp-185.json +0 -24
  2056. package/public/r/comp-186.json +0 -25
  2057. package/public/r/comp-187.json +0 -25
  2058. package/public/r/comp-188.json +0 -25
  2059. package/public/r/comp-189.json +0 -23
  2060. package/public/r/comp-19.json +0 -23
  2061. package/public/r/comp-190.json +0 -23
  2062. package/public/r/comp-191.json +0 -24
  2063. package/public/r/comp-192.json +0 -23
  2064. package/public/r/comp-193.json +0 -23
  2065. package/public/r/comp-194.json +0 -24
  2066. package/public/r/comp-195.json +0 -23
  2067. package/public/r/comp-196.json +0 -24
  2068. package/public/r/comp-197.json +0 -23
  2069. package/public/r/comp-198.json +0 -23
  2070. package/public/r/comp-199.json +0 -23
  2071. package/public/r/comp-20.json +0 -23
  2072. package/public/r/comp-200.json +0 -25
  2073. package/public/r/comp-201.json +0 -22
  2074. package/public/r/comp-202.json +0 -22
  2075. package/public/r/comp-203.json +0 -23
  2076. package/public/r/comp-204.json +0 -23
  2077. package/public/r/comp-205.json +0 -23
  2078. package/public/r/comp-206.json +0 -24
  2079. package/public/r/comp-207.json +0 -23
  2080. package/public/r/comp-208.json +0 -23
  2081. package/public/r/comp-209.json +0 -23
  2082. package/public/r/comp-21.json +0 -23
  2083. package/public/r/comp-210.json +0 -24
  2084. package/public/r/comp-211.json +0 -24
  2085. package/public/r/comp-212.json +0 -23
  2086. package/public/r/comp-213.json +0 -23
  2087. package/public/r/comp-214.json +0 -23
  2088. package/public/r/comp-215.json +0 -24
  2089. package/public/r/comp-216.json +0 -22
  2090. package/public/r/comp-217.json +0 -22
  2091. package/public/r/comp-218.json +0 -25
  2092. package/public/r/comp-219.json +0 -23
  2093. package/public/r/comp-22.json +0 -23
  2094. package/public/r/comp-220.json +0 -24
  2095. package/public/r/comp-221.json +0 -23
  2096. package/public/r/comp-222.json +0 -26
  2097. package/public/r/comp-223.json +0 -26
  2098. package/public/r/comp-224.json +0 -23
  2099. package/public/r/comp-225.json +0 -24
  2100. package/public/r/comp-226.json +0 -26
  2101. package/public/r/comp-227.json +0 -26
  2102. package/public/r/comp-228.json +0 -26
  2103. package/public/r/comp-229.json +0 -30
  2104. package/public/r/comp-23.json +0 -24
  2105. package/public/r/comp-230.json +0 -30
  2106. package/public/r/comp-231.json +0 -32
  2107. package/public/r/comp-232.json +0 -31
  2108. package/public/r/comp-233.json +0 -30
  2109. package/public/r/comp-234.json +0 -28
  2110. package/public/r/comp-235.json +0 -28
  2111. package/public/r/comp-236.json +0 -24
  2112. package/public/r/comp-237.json +0 -26
  2113. package/public/r/comp-238.json +0 -26
  2114. package/public/r/comp-239.json +0 -26
  2115. package/public/r/comp-24.json +0 -23
  2116. package/public/r/comp-240.json +0 -23
  2117. package/public/r/comp-241.json +0 -24
  2118. package/public/r/comp-242.json +0 -23
  2119. package/public/r/comp-243.json +0 -23
  2120. package/public/r/comp-244.json +0 -23
  2121. package/public/r/comp-245.json +0 -23
  2122. package/public/r/comp-246.json +0 -23
  2123. package/public/r/comp-247.json +0 -23
  2124. package/public/r/comp-248.json +0 -23
  2125. package/public/r/comp-249.json +0 -24
  2126. package/public/r/comp-25.json +0 -24
  2127. package/public/r/comp-250.json +0 -25
  2128. package/public/r/comp-251.json +0 -25
  2129. package/public/r/comp-252.json +0 -25
  2130. package/public/r/comp-253.json +0 -25
  2131. package/public/r/comp-254.json +0 -35
  2132. package/public/r/comp-255.json +0 -30
  2133. package/public/r/comp-256.json +0 -25
  2134. package/public/r/comp-257.json +0 -25
  2135. package/public/r/comp-258.json +0 -32
  2136. package/public/r/comp-259.json +0 -26
  2137. package/public/r/comp-26.json +0 -24
  2138. package/public/r/comp-260.json +0 -26
  2139. package/public/r/comp-261.json +0 -24
  2140. package/public/r/comp-262.json +0 -31
  2141. package/public/r/comp-263.json +0 -25
  2142. package/public/r/comp-264.json +0 -33
  2143. package/public/r/comp-265.json +0 -32
  2144. package/public/r/comp-266.json +0 -24
  2145. package/public/r/comp-267.json +0 -19
  2146. package/public/r/comp-268.json +0 -19
  2147. package/public/r/comp-269.json +0 -19
  2148. package/public/r/comp-27.json +0 -24
  2149. package/public/r/comp-270.json +0 -19
  2150. package/public/r/comp-271.json +0 -19
  2151. package/public/r/comp-272.json +0 -19
  2152. package/public/r/comp-273.json +0 -19
  2153. package/public/r/comp-274.json +0 -19
  2154. package/public/r/comp-275.json +0 -19
  2155. package/public/r/comp-276.json +0 -19
  2156. package/public/r/comp-277.json +0 -21
  2157. package/public/r/comp-278.json +0 -21
  2158. package/public/r/comp-279.json +0 -23
  2159. package/public/r/comp-28.json +0 -24
  2160. package/public/r/comp-280.json +0 -23
  2161. package/public/r/comp-281.json +0 -23
  2162. package/public/r/comp-282.json +0 -23
  2163. package/public/r/comp-283.json +0 -23
  2164. package/public/r/comp-284.json +0 -23
  2165. package/public/r/comp-285.json +0 -23
  2166. package/public/r/comp-286.json +0 -23
  2167. package/public/r/comp-287.json +0 -24
  2168. package/public/r/comp-288.json +0 -23
  2169. package/public/r/comp-289.json +0 -24
  2170. package/public/r/comp-29.json +0 -24
  2171. package/public/r/comp-290.json +0 -24
  2172. package/public/r/comp-291.json +0 -24
  2173. package/public/r/comp-292.json +0 -24
  2174. package/public/r/comp-293.json +0 -26
  2175. package/public/r/comp-294.json +0 -24
  2176. package/public/r/comp-295.json +0 -23
  2177. package/public/r/comp-296.json +0 -23
  2178. package/public/r/comp-297.json +0 -30
  2179. package/public/r/comp-298.json +0 -26
  2180. package/public/r/comp-299.json +0 -28
  2181. package/public/r/comp-30.json +0 -23
  2182. package/public/r/comp-300.json +0 -29
  2183. package/public/r/comp-301.json +0 -24
  2184. package/public/r/comp-302.json +0 -18
  2185. package/public/r/comp-303.json +0 -18
  2186. package/public/r/comp-304.json +0 -18
  2187. package/public/r/comp-305.json +0 -21
  2188. package/public/r/comp-306.json +0 -21
  2189. package/public/r/comp-307.json +0 -21
  2190. package/public/r/comp-308.json +0 -21
  2191. package/public/r/comp-309.json +0 -21
  2192. package/public/r/comp-31.json +0 -21
  2193. package/public/r/comp-310.json +0 -23
  2194. package/public/r/comp-311.json +0 -20
  2195. package/public/r/comp-312.json +0 -21
  2196. package/public/r/comp-313.json +0 -26
  2197. package/public/r/comp-314.json +0 -26
  2198. package/public/r/comp-315.json +0 -24
  2199. package/public/r/comp-316.json +0 -25
  2200. package/public/r/comp-317.json +0 -24
  2201. package/public/r/comp-318.json +0 -24
  2202. package/public/r/comp-319.json +0 -24
  2203. package/public/r/comp-32.json +0 -21
  2204. package/public/r/comp-320.json +0 -27
  2205. package/public/r/comp-321.json +0 -28
  2206. package/public/r/comp-322.json +0 -27
  2207. package/public/r/comp-323.json +0 -30
  2208. package/public/r/comp-324.json +0 -28
  2209. package/public/r/comp-325.json +0 -29
  2210. package/public/r/comp-326.json +0 -30
  2211. package/public/r/comp-327.json +0 -30
  2212. package/public/r/comp-328.json +0 -37
  2213. package/public/r/comp-329.json +0 -38
  2214. package/public/r/comp-33.json +0 -18
  2215. package/public/r/comp-330.json +0 -27
  2216. package/public/r/comp-331.json +0 -42
  2217. package/public/r/comp-332.json +0 -25
  2218. package/public/r/comp-333.json +0 -29
  2219. package/public/r/comp-334.json +0 -22
  2220. package/public/r/comp-335.json +0 -22
  2221. package/public/r/comp-336.json +0 -22
  2222. package/public/r/comp-337.json +0 -22
  2223. package/public/r/comp-338.json +0 -22
  2224. package/public/r/comp-339.json +0 -22
  2225. package/public/r/comp-34.json +0 -27
  2226. package/public/r/comp-340.json +0 -22
  2227. package/public/r/comp-341.json +0 -22
  2228. package/public/r/comp-342.json +0 -22
  2229. package/public/r/comp-343.json +0 -22
  2230. package/public/r/comp-344.json +0 -22
  2231. package/public/r/comp-345.json +0 -22
  2232. package/public/r/comp-346.json +0 -22
  2233. package/public/r/comp-347.json +0 -22
  2234. package/public/r/comp-348.json +0 -22
  2235. package/public/r/comp-349.json +0 -22
  2236. package/public/r/comp-35.json +0 -27
  2237. package/public/r/comp-350.json +0 -22
  2238. package/public/r/comp-351.json +0 -22
  2239. package/public/r/comp-352.json +0 -24
  2240. package/public/r/comp-353.json +0 -24
  2241. package/public/r/comp-354.json +0 -23
  2242. package/public/r/comp-355.json +0 -23
  2243. package/public/r/comp-356.json +0 -23
  2244. package/public/r/comp-357.json +0 -23
  2245. package/public/r/comp-358.json +0 -23
  2246. package/public/r/comp-359.json +0 -24
  2247. package/public/r/comp-36.json +0 -26
  2248. package/public/r/comp-360.json +0 -25
  2249. package/public/r/comp-361.json +0 -23
  2250. package/public/r/comp-362.json +0 -24
  2251. package/public/r/comp-363.json +0 -27
  2252. package/public/r/comp-364.json +0 -26
  2253. package/public/r/comp-365.json +0 -24
  2254. package/public/r/comp-366.json +0 -23
  2255. package/public/r/comp-367.json +0 -23
  2256. package/public/r/comp-368.json +0 -23
  2257. package/public/r/comp-369.json +0 -23
  2258. package/public/r/comp-37.json +0 -23
  2259. package/public/r/comp-370.json +0 -23
  2260. package/public/r/comp-371.json +0 -24
  2261. package/public/r/comp-372.json +0 -24
  2262. package/public/r/comp-373.json +0 -25
  2263. package/public/r/comp-374.json +0 -26
  2264. package/public/r/comp-375.json +0 -25
  2265. package/public/r/comp-376.json +0 -26
  2266. package/public/r/comp-377.json +0 -27
  2267. package/public/r/comp-378.json +0 -24
  2268. package/public/r/comp-379.json +0 -24
  2269. package/public/r/comp-38.json +0 -23
  2270. package/public/r/comp-380.json +0 -24
  2271. package/public/r/comp-381.json +0 -26
  2272. package/public/r/comp-382.json +0 -25
  2273. package/public/r/comp-383.json +0 -26
  2274. package/public/r/comp-384.json +0 -24
  2275. package/public/r/comp-385.json +0 -24
  2276. package/public/r/comp-386.json +0 -24
  2277. package/public/r/comp-387.json +0 -28
  2278. package/public/r/comp-388.json +0 -26
  2279. package/public/r/comp-389.json +0 -24
  2280. package/public/r/comp-39.json +0 -23
  2281. package/public/r/comp-390.json +0 -23
  2282. package/public/r/comp-391.json +0 -23
  2283. package/public/r/comp-392.json +0 -23
  2284. package/public/r/comp-393.json +0 -23
  2285. package/public/r/comp-394.json +0 -24
  2286. package/public/r/comp-395.json +0 -24
  2287. package/public/r/comp-396.json +0 -24
  2288. package/public/r/comp-397.json +0 -25
  2289. package/public/r/comp-398.json +0 -26
  2290. package/public/r/comp-399.json +0 -26
  2291. package/public/r/comp-40.json +0 -23
  2292. package/public/r/comp-400.json +0 -20
  2293. package/public/r/comp-401.json +0 -19
  2294. package/public/r/comp-402.json +0 -19
  2295. package/public/r/comp-403.json +0 -19
  2296. package/public/r/comp-404.json +0 -19
  2297. package/public/r/comp-405.json +0 -19
  2298. package/public/r/comp-406.json +0 -19
  2299. package/public/r/comp-407.json +0 -19
  2300. package/public/r/comp-408.json +0 -19
  2301. package/public/r/comp-409.json +0 -22
  2302. package/public/r/comp-41.json +0 -29
  2303. package/public/r/comp-410.json +0 -22
  2304. package/public/r/comp-411.json +0 -22
  2305. package/public/r/comp-412.json +0 -19
  2306. package/public/r/comp-413.json +0 -22
  2307. package/public/r/comp-414.json +0 -22
  2308. package/public/r/comp-415.json +0 -22
  2309. package/public/r/comp-416.json +0 -23
  2310. package/public/r/comp-417.json +0 -22
  2311. package/public/r/comp-418.json +0 -23
  2312. package/public/r/comp-419.json +0 -23
  2313. package/public/r/comp-42.json +0 -30
  2314. package/public/r/comp-420.json +0 -23
  2315. package/public/r/comp-421.json +0 -23
  2316. package/public/r/comp-422.json +0 -23
  2317. package/public/r/comp-423.json +0 -24
  2318. package/public/r/comp-424.json +0 -22
  2319. package/public/r/comp-425.json +0 -23
  2320. package/public/r/comp-426.json +0 -23
  2321. package/public/r/comp-427.json +0 -23
  2322. package/public/r/comp-428.json +0 -23
  2323. package/public/r/comp-429.json +0 -23
  2324. package/public/r/comp-43.json +0 -32
  2325. package/public/r/comp-430.json +0 -23
  2326. package/public/r/comp-431.json +0 -23
  2327. package/public/r/comp-432.json +0 -23
  2328. package/public/r/comp-433.json +0 -24
  2329. package/public/r/comp-434.json +0 -24
  2330. package/public/r/comp-435.json +0 -24
  2331. package/public/r/comp-436.json +0 -24
  2332. package/public/r/comp-437.json +0 -25
  2333. package/public/r/comp-438.json +0 -23
  2334. package/public/r/comp-439.json +0 -24
  2335. package/public/r/comp-44.json +0 -25
  2336. package/public/r/comp-440.json +0 -25
  2337. package/public/r/comp-441.json +0 -25
  2338. package/public/r/comp-442.json +0 -24
  2339. package/public/r/comp-443.json +0 -24
  2340. package/public/r/comp-444.json +0 -24
  2341. package/public/r/comp-445.json +0 -24
  2342. package/public/r/comp-446.json +0 -24
  2343. package/public/r/comp-447.json +0 -25
  2344. package/public/r/comp-448.json +0 -23
  2345. package/public/r/comp-449.json +0 -23
  2346. package/public/r/comp-45.json +0 -25
  2347. package/public/r/comp-450.json +0 -23
  2348. package/public/r/comp-451.json +0 -23
  2349. package/public/r/comp-452.json +0 -23
  2350. package/public/r/comp-453.json +0 -25
  2351. package/public/r/comp-454.json +0 -22
  2352. package/public/r/comp-455.json +0 -22
  2353. package/public/r/comp-456.json +0 -22
  2354. package/public/r/comp-457.json +0 -21
  2355. package/public/r/comp-458.json +0 -22
  2356. package/public/r/comp-459.json +0 -26
  2357. package/public/r/comp-46.json +0 -26
  2358. package/public/r/comp-460.json +0 -26
  2359. package/public/r/comp-461.json +0 -27
  2360. package/public/r/comp-462.json +0 -27
  2361. package/public/r/comp-463.json +0 -30
  2362. package/public/r/comp-464.json +0 -29
  2363. package/public/r/comp-465.json +0 -29
  2364. package/public/r/comp-466.json +0 -21
  2365. package/public/r/comp-467.json +0 -23
  2366. package/public/r/comp-468.json +0 -21
  2367. package/public/r/comp-469.json +0 -21
  2368. package/public/r/comp-47.json +0 -32
  2369. package/public/r/comp-470.json +0 -21
  2370. package/public/r/comp-471.json +0 -21
  2371. package/public/r/comp-472.json +0 -23
  2372. package/public/r/comp-473.json +0 -24
  2373. package/public/r/comp-474.json +0 -22
  2374. package/public/r/comp-475.json +0 -22
  2375. package/public/r/comp-476.json +0 -21
  2376. package/public/r/comp-477.json +0 -31
  2377. package/public/r/comp-478.json +0 -36
  2378. package/public/r/comp-479.json +0 -28
  2379. package/public/r/comp-48.json +0 -32
  2380. package/public/r/comp-480.json +0 -30
  2381. package/public/r/comp-481.json +0 -34
  2382. package/public/r/comp-482.json +0 -33
  2383. package/public/r/comp-483.json +0 -37
  2384. package/public/r/comp-484.json +0 -41
  2385. package/public/r/comp-485.json +0 -43
  2386. package/public/r/comp-486.json +0 -23
  2387. package/public/r/comp-487.json +0 -26
  2388. package/public/r/comp-488.json +0 -27
  2389. package/public/r/comp-489.json +0 -28
  2390. package/public/r/comp-49.json +0 -32
  2391. package/public/r/comp-490.json +0 -23
  2392. package/public/r/comp-491.json +0 -24
  2393. package/public/r/comp-492.json +0 -25
  2394. package/public/r/comp-493.json +0 -23
  2395. package/public/r/comp-494.json +0 -23
  2396. package/public/r/comp-495.json +0 -24
  2397. package/public/r/comp-496.json +0 -23
  2398. package/public/r/comp-497.json +0 -24
  2399. package/public/r/comp-498.json +0 -24
  2400. package/public/r/comp-499.json +0 -24
  2401. package/public/r/comp-50.json +0 -32
  2402. package/public/r/comp-500.json +0 -25
  2403. package/public/r/comp-501.json +0 -25
  2404. package/public/r/comp-502.json +0 -26
  2405. package/public/r/comp-503.json +0 -27
  2406. package/public/r/comp-504.json +0 -28
  2407. package/public/r/comp-505.json +0 -28
  2408. package/public/r/comp-506.json +0 -26
  2409. package/public/r/comp-507.json +0 -27
  2410. package/public/r/comp-508.json +0 -25
  2411. package/public/r/comp-509.json +0 -25
  2412. package/public/r/comp-51.json +0 -23
  2413. package/public/r/comp-510.json +0 -24
  2414. package/public/r/comp-511.json +0 -27
  2415. package/public/r/comp-512.json +0 -27
  2416. package/public/r/comp-513.json +0 -21
  2417. package/public/r/comp-514.json +0 -21
  2418. package/public/r/comp-515.json +0 -21
  2419. package/public/r/comp-516.json +0 -22
  2420. package/public/r/comp-517.json +0 -22
  2421. package/public/r/comp-518.json +0 -21
  2422. package/public/r/comp-519.json +0 -21
  2423. package/public/r/comp-52.json +0 -23
  2424. package/public/r/comp-520.json +0 -22
  2425. package/public/r/comp-521.json +0 -22
  2426. package/public/r/comp-522.json +0 -21
  2427. package/public/r/comp-523.json +0 -21
  2428. package/public/r/comp-524.json +0 -21
  2429. package/public/r/comp-525.json +0 -21
  2430. package/public/r/comp-526.json +0 -22
  2431. package/public/r/comp-527.json +0 -23
  2432. package/public/r/comp-528.json +0 -22
  2433. package/public/r/comp-529.json +0 -22
  2434. package/public/r/comp-53.json +0 -24
  2435. package/public/r/comp-530.json +0 -22
  2436. package/public/r/comp-531.json +0 -22
  2437. package/public/r/comp-532.json +0 -22
  2438. package/public/r/comp-533.json +0 -22
  2439. package/public/r/comp-534.json +0 -22
  2440. package/public/r/comp-535.json +0 -22
  2441. package/public/r/comp-536.json +0 -22
  2442. package/public/r/comp-537.json +0 -22
  2443. package/public/r/comp-538.json +0 -22
  2444. package/public/r/comp-539.json +0 -22
  2445. package/public/r/comp-54.json +0 -26
  2446. package/public/r/comp-540.json +0 -21
  2447. package/public/r/comp-541.json +0 -21
  2448. package/public/r/comp-542.json +0 -124
  2449. package/public/r/comp-543.json +0 -29
  2450. package/public/r/comp-544.json +0 -26
  2451. package/public/r/comp-545.json +0 -29
  2452. package/public/r/comp-546.json +0 -29
  2453. package/public/r/comp-547.json +0 -29
  2454. package/public/r/comp-548.json +0 -29
  2455. package/public/r/comp-549.json +0 -29
  2456. package/public/r/comp-55.json +0 -27
  2457. package/public/r/comp-550.json +0 -29
  2458. package/public/r/comp-551.json +0 -30
  2459. package/public/r/comp-552.json +0 -29
  2460. package/public/r/comp-553.json +0 -29
  2461. package/public/r/comp-554.json +0 -36
  2462. package/public/r/comp-555.json +0 -23
  2463. package/public/r/comp-556.json +0 -23
  2464. package/public/r/comp-557.json +0 -23
  2465. package/public/r/comp-558.json +0 -23
  2466. package/public/r/comp-559.json +0 -23
  2467. package/public/r/comp-56.json +0 -26
  2468. package/public/r/comp-560.json +0 -23
  2469. package/public/r/comp-561.json +0 -25
  2470. package/public/r/comp-562.json +0 -23
  2471. package/public/r/comp-563.json +0 -23
  2472. package/public/r/comp-564.json +0 -24
  2473. package/public/r/comp-565.json +0 -20
  2474. package/public/r/comp-566.json +0 -20
  2475. package/public/r/comp-567.json +0 -20
  2476. package/public/r/comp-568.json +0 -20
  2477. package/public/r/comp-569.json +0 -20
  2478. package/public/r/comp-57.json +0 -26
  2479. package/public/r/comp-570.json +0 -20
  2480. package/public/r/comp-571.json +0 -23
  2481. package/public/r/comp-572.json +0 -23
  2482. package/public/r/comp-573.json +0 -20
  2483. package/public/r/comp-574.json +0 -22
  2484. package/public/r/comp-575.json +0 -20
  2485. package/public/r/comp-576.json +0 -21
  2486. package/public/r/comp-577.json +0 -23
  2487. package/public/r/comp-578.json +0 -28
  2488. package/public/r/comp-579.json +0 -28
  2489. package/public/r/comp-58.json +0 -25
  2490. package/public/r/comp-580.json +0 -29
  2491. package/public/r/comp-581.json +0 -45
  2492. package/public/r/comp-582.json +0 -42
  2493. package/public/r/comp-583.json +0 -41
  2494. package/public/r/comp-584.json +0 -41
  2495. package/public/r/comp-585.json +0 -41
  2496. package/public/r/comp-586.json +0 -34
  2497. package/public/r/comp-587.json +0 -29
  2498. package/public/r/comp-588.json +0 -33
  2499. package/public/r/comp-589.json +0 -37
  2500. package/public/r/comp-59.json +0 -22
  2501. package/public/r/comp-590.json +0 -40
  2502. package/public/r/comp-591.json +0 -29
  2503. package/public/r/comp-592.json +0 -41
  2504. package/public/r/comp-593.json +0 -36
  2505. package/public/r/comp-594.json +0 -33
  2506. package/public/r/comp-595.json +0 -22
  2507. package/public/r/comp-596.json +0 -26
  2508. package/public/r/comp-597.json +0 -22
  2509. package/public/r/comp-598.json +0 -22
  2510. package/public/r/comp-599.json +0 -22
  2511. package/public/r/comp-60.json +0 -23
  2512. package/public/r/comp-600.json +0 -17
  2513. package/public/r/comp-601.json +0 -20
  2514. package/public/r/comp-602.json +0 -17
  2515. package/public/r/comp-603.json +0 -20
  2516. package/public/r/comp-604.json +0 -17
  2517. package/public/r/comp-605.json +0 -17
  2518. package/public/r/comp-606.json +0 -20
  2519. package/public/r/comp-607.json +0 -20
  2520. package/public/r/comp-608.json +0 -20
  2521. package/public/r/comp-609.json +0 -20
  2522. package/public/r/comp-61.json +0 -23
  2523. package/public/r/comp-610.json +0 -23
  2524. package/public/r/comp-611.json +0 -23
  2525. package/public/r/comp-612.json +0 -17
  2526. package/public/r/comp-613.json +0 -20
  2527. package/public/r/comp-614.json +0 -17
  2528. package/public/r/comp-615.json +0 -26
  2529. package/public/r/comp-616.json +0 -26
  2530. package/public/r/comp-617.json +0 -26
  2531. package/public/r/comp-62.json +0 -23
  2532. package/public/r/comp-63.json +0 -22
  2533. package/public/r/comp-64.json +0 -23
  2534. package/public/r/comp-65.json +0 -22
  2535. package/public/r/comp-66.json +0 -22
  2536. package/public/r/comp-67.json +0 -23
  2537. package/public/r/comp-68.json +0 -24
  2538. package/public/r/comp-69.json +0 -24
  2539. package/public/r/comp-70.json +0 -24
  2540. package/public/r/comp-71.json +0 -22
  2541. package/public/r/comp-72.json +0 -21
  2542. package/public/r/comp-73.json +0 -18
  2543. package/public/r/comp-74.json +0 -27
  2544. package/public/r/comp-75.json +0 -22
  2545. package/public/r/comp-76.json +0 -23
  2546. package/public/r/comp-77.json +0 -22
  2547. package/public/r/comp-78.json +0 -21
  2548. package/public/r/comp-79.json +0 -22
  2549. package/public/r/comp-80.json +0 -21
  2550. package/public/r/comp-81.json +0 -21
  2551. package/public/r/comp-82.json +0 -22
  2552. package/public/r/comp-83.json +0 -21
  2553. package/public/r/comp-84.json +0 -21
  2554. package/public/r/comp-85.json +0 -22
  2555. package/public/r/comp-86.json +0 -22
  2556. package/public/r/comp-87.json +0 -21
  2557. package/public/r/comp-88.json +0 -22
  2558. package/public/r/comp-89.json +0 -21
  2559. package/public/r/comp-90.json +0 -22
  2560. package/public/r/comp-91.json +0 -22
  2561. package/public/r/comp-92.json +0 -22
  2562. package/public/r/comp-93.json +0 -22
  2563. package/public/r/comp-94.json +0 -24
  2564. package/public/r/comp-95.json +0 -26
  2565. package/public/r/comp-96.json +0 -21
  2566. package/public/r/comp-97.json +0 -21
  2567. package/public/r/comp-98.json +0 -22
  2568. package/public/r/comp-99.json +0 -23
  2569. package/public/r/comparison-event-handlers.json +0 -22
  2570. package/public/r/comparison-hover.json +0 -22
  2571. package/public/r/comparison.json +0 -21
  2572. package/public/r/context-menu.json +0 -16
  2573. package/public/r/contribution-graph-custom-blocks.json +0 -23
  2574. package/public/r/contribution-graph-custom-footer.json +0 -23
  2575. package/public/r/contribution-graph-custom-theme.json +0 -23
  2576. package/public/r/contribution-graph-minimal.json +0 -22
  2577. package/public/r/contribution-graph-size.json +0 -23
  2578. package/public/r/contribution-graph-tooltip.json +0 -23
  2579. package/public/r/contribution-graph.json +0 -22
  2580. package/public/r/credit-card-apple.json +0 -20
  2581. package/public/r/credit-card-back.json +0 -20
  2582. package/public/r/credit-card.json +0 -20
  2583. package/public/r/cropper.json +0 -15
  2584. package/public/r/cursor-color.json +0 -20
  2585. package/public/r/cursor-message.json +0 -20
  2586. package/public/r/cursor-name-message.json +0 -21
  2587. package/public/r/cursor-name.json +0 -20
  2588. package/public/r/cursor-only.json +0 -19
  2589. package/public/r/cursor.json +0 -20
  2590. package/public/r/dashboard-1.json +0 -263
  2591. package/public/r/dashboard-2.json +0 -264
  2592. package/public/r/dashboard-3.json +0 -225
  2593. package/public/r/datefield-rac.json +0 -15
  2594. package/public/r/deck-controlled.json +0 -22
  2595. package/public/r/deck-product-cards.json +0 -22
  2596. package/public/r/deck.json +0 -20
  2597. package/public/r/dialog-close-confirmation.json +0 -29
  2598. package/public/r/dialog-demo.json +0 -25
  2599. package/public/r/dialog-from-menu.json +0 -23
  2600. package/public/r/dialog-nested.json +0 -23
  2601. package/public/r/dialog-stack-controlled.json +0 -22
  2602. package/public/r/dialog-stack-navigation.json +0 -22
  2603. package/public/r/dialog-stack-six.json +0 -22
  2604. package/public/r/dialog-stack.json +0 -22
  2605. package/public/r/dialog.json +0 -15
  2606. package/public/r/dropdown-menu.json +0 -15
  2607. package/public/r/dropzone-accept.json +0 -20
  2608. package/public/r/dropzone-custom-empty-state.json +0 -21
  2609. package/public/r/dropzone-image-preview.json +0 -21
  2610. package/public/r/dropzone-min-max.json +0 -20
  2611. package/public/r/dropzone-multiple.json +0 -21
  2612. package/public/r/dropzone.json +0 -21
  2613. package/public/r/editor.json +0 -21
  2614. package/public/r/emails.json +0 -243
  2615. package/public/r/empty-demo.json +0 -20
  2616. package/public/r/empty.json +0 -12
  2617. package/public/r/ether.json +0 -15
  2618. package/public/r/example-app-calendar.json +0 -323
  2619. package/public/r/field-2.json +0 -19
  2620. package/public/r/field-autocomplete.json +0 -23
  2621. package/public/r/field-checkbox-group.json +0 -26
  2622. package/public/r/field-checkbox.json +0 -22
  2623. package/public/r/field-combobox-multiple.json +0 -24
  2624. package/public/r/field-combobox.json +0 -23
  2625. package/public/r/field-complete-form.json +0 -30
  2626. package/public/r/field-demo.json +0 -22
  2627. package/public/r/field-disabled.json +0 -23
  2628. package/public/r/field-error.json +0 -21
  2629. package/public/r/field-number-field.json +0 -25
  2630. package/public/r/field-radio.json +0 -26
  2631. package/public/r/field-required.json +0 -21
  2632. package/public/r/field-select.json +0 -24
  2633. package/public/r/field-slider.json +0 -24
  2634. package/public/r/field-switch.json +0 -22
  2635. package/public/r/field-textarea.json +0 -24
  2636. package/public/r/field-validity.json +0 -19
  2637. package/public/r/field.json +0 -23
  2638. package/public/r/fieldset-demo.json +0 -24
  2639. package/public/r/fieldset.json +0 -15
  2640. package/public/r/files.json +0 -195
  2641. package/public/r/form-demo.json +0 -24
  2642. package/public/r/form-zod.json +0 -29
  2643. package/public/r/form.json +0 -20
  2644. package/public/r/frame-demo.json +0 -19
  2645. package/public/r/frame.json +0 -12
  2646. package/public/r/gantt-lanes.json +0 -23
  2647. package/public/r/gantt-no-sidebar.json +0 -22
  2648. package/public/r/gantt-read-only.json +0 -22
  2649. package/public/r/gantt.json +0 -22
  2650. package/public/r/glimpse-custom.json +0 -21
  2651. package/public/r/glimpse.json +0 -20
  2652. package/public/r/gooey-toast-demo.json +0 -23
  2653. package/public/r/gooey-toast-position.json +0 -20
  2654. package/public/r/gooey-toast-promise.json +0 -20
  2655. package/public/r/gooey-toast-states.json +0 -20
  2656. package/public/r/gooey-toast-with-button.json +0 -20
  2657. package/public/r/gradient-blinds.json +0 -15
  2658. package/public/r/group-demo.json +0 -20
  2659. package/public/r/group-with-input.json +0 -21
  2660. package/public/r/group.json +0 -18
  2661. package/public/r/hero.json +0 -24
  2662. package/public/r/hover-card.json +0 -15
  2663. package/public/r/image-crop-circular.json +0 -23
  2664. package/public/r/image-crop-custom.json +0 -24
  2665. package/public/r/image-crop.json +0 -23
  2666. package/public/r/image-zoom-background.json +0 -22
  2667. package/public/r/image-zoom-margin.json +0 -21
  2668. package/public/r/image-zoom.json +0 -21
  2669. package/public/r/input-demo.json +0 -19
  2670. package/public/r/input-disabled.json +0 -20
  2671. package/public/r/input-file.json +0 -20
  2672. package/public/r/input-group.json +0 -20
  2673. package/public/r/input-lg.json +0 -19
  2674. package/public/r/input-sm.json +0 -19
  2675. package/public/r/input-with-button.json +0 -21
  2676. package/public/r/input-with-label.json +0 -21
  2677. package/public/r/input.json +0 -15
  2678. package/public/r/kanban-simple.json +0 -21
  2679. package/public/r/kanban.json +0 -21
  2680. package/public/r/kbd.json +0 -12
  2681. package/public/r/label.json +0 -15
  2682. package/public/r/leads.json +0 -271
  2683. package/public/r/list-simple.json +0 -21
  2684. package/public/r/list.json +0 -21
  2685. package/public/r/maps.json +0 -188
  2686. package/public/r/marquee-no-fade.json +0 -20
  2687. package/public/r/marquee-raw.json +0 -21
  2688. package/public/r/marquee-spacing.json +0 -21
  2689. package/public/r/marquee.json +0 -20
  2690. package/public/r/menu-checkbox.json +0 -21
  2691. package/public/r/menu-close-on-click.json +0 -20
  2692. package/public/r/menu-demo.json +0 -20
  2693. package/public/r/menu-group-labels.json +0 -21
  2694. package/public/r/menu-hover.json +0 -20
  2695. package/public/r/menu-link.json +0 -21
  2696. package/public/r/menu-nested.json +0 -20
  2697. package/public/r/menu-radio-group.json +0 -21
  2698. package/public/r/menu.json +0 -23
  2699. package/public/r/meter-demo.json +0 -19
  2700. package/public/r/meter-simple.json +0 -19
  2701. package/public/r/meter-with-formatted-value.json +0 -19
  2702. package/public/r/meter-with-range.json +0 -19
  2703. package/public/r/meter.json +0 -15
  2704. package/public/r/mini-calendar-controlled.json +0 -21
  2705. package/public/r/mini-calendar-custom.json +0 -21
  2706. package/public/r/mini-calendar-days.json +0 -20
  2707. package/public/r/mini-calendar.json +0 -20
  2708. package/public/r/multiselect.json +0 -15
  2709. package/public/r/navigation-menu.json +0 -12
  2710. package/public/r/number-field-demo.json +0 -19
  2711. package/public/r/number-field-disabled.json +0 -21
  2712. package/public/r/number-field-form.json +0 -25
  2713. package/public/r/number-field-lg.json +0 -19
  2714. package/public/r/number-field-sm.json +0 -19
  2715. package/public/r/number-field-with-formatted-value.json +0 -19
  2716. package/public/r/number-field-with-label.json +0 -24
  2717. package/public/r/number-field-with-range.json +0 -20
  2718. package/public/r/number-field-with-scrub.json +0 -19
  2719. package/public/r/number-field-with-step.json +0 -19
  2720. package/public/r/number-field.json +0 -15
  2721. package/public/r/pagination-demo.json +0 -19
  2722. package/public/r/pagination.json +0 -18
  2723. package/public/r/particle-bu-1.json +0 -22
  2724. package/public/r/particle-bu-2.json +0 -22
  2725. package/public/r/particle-bu-3.json +0 -22
  2726. package/public/r/particle-bu-4.json +0 -22
  2727. package/public/r/particle-bu-5.json +0 -22
  2728. package/public/r/particle-bu-6.json +0 -22
  2729. package/public/r/particle-bu-7.json +0 -22
  2730. package/public/r/particle-fr-1.json +0 -25
  2731. package/public/r/particle-pa-1.json +0 -19
  2732. package/public/r/particle-pa-2.json +0 -21
  2733. package/public/r/pill-avatar-group.json +0 -21
  2734. package/public/r/pill-avatar.json +0 -21
  2735. package/public/r/pill-button.json +0 -20
  2736. package/public/r/pill-delta.json +0 -21
  2737. package/public/r/pill-icon.json +0 -21
  2738. package/public/r/pill-indicator.json +0 -20
  2739. package/public/r/pill-status.json +0 -21
  2740. package/public/r/pill.json +0 -20
  2741. package/public/r/popover-demo.json +0 -27
  2742. package/public/r/popover-with-close.json +0 -21
  2743. package/public/r/popover.json +0 -15
  2744. package/public/r/preview-card-demo.json +0 -21
  2745. package/public/r/preview-card.json +0 -15
  2746. package/public/r/pricing.json +0 -24
  2747. package/public/r/progress-demo.json +0 -19
  2748. package/public/r/progress-with-formatted-value.json +0 -19
  2749. package/public/r/progress-with-label-value.json +0 -20
  2750. package/public/r/progress.json +0 -15
  2751. package/public/r/qr-code-robust.json +0 -21
  2752. package/public/r/qr-code-server.json +0 -21
  2753. package/public/r/qr-code-styling.json +0 -21
  2754. package/public/r/qr-code.json +0 -20
  2755. package/public/r/radio-group-card.json +0 -21
  2756. package/public/r/radio-group-demo.json +0 -21
  2757. package/public/r/radio-group-disabled.json +0 -21
  2758. package/public/r/radio-group-form.json +0 -27
  2759. package/public/r/radio-group-with-description.json +0 -23
  2760. package/public/r/radio-group.json +0 -15
  2761. package/public/r/rating-colors.json +0 -21
  2762. package/public/r/rating-controlled.json +0 -21
  2763. package/public/r/rating-icon.json +0 -21
  2764. package/public/r/rating-size.json +0 -20
  2765. package/public/r/rating.json +0 -20
  2766. package/public/r/reel-custom.json +0 -22
  2767. package/public/r/reel-images.json +0 -21
  2768. package/public/r/reel-minimal.json +0 -20
  2769. package/public/r/reel.json +0 -21
  2770. package/public/r/registry.json +0 -26204
  2771. package/public/r/relative-time-controlled.json +0 -21
  2772. package/public/r/relative-time-format-date.json +0 -20
  2773. package/public/r/relative-time-format-time.json +0 -20
  2774. package/public/r/relative-time.json +0 -20
  2775. package/public/r/rentals.json +0 -187
  2776. package/public/r/roadmap.json +0 -28
  2777. package/public/r/sandbox-no-file-explorer.json +0 -21
  2778. package/public/r/sandbox.json +0 -21
  2779. package/public/r/scroll-area-both.json +0 -19
  2780. package/public/r/scroll-area-demo.json +0 -19
  2781. package/public/r/scroll-area-horizontal.json +0 -19
  2782. package/public/r/scroll-area.json +0 -15
  2783. package/public/r/select-demo.json +0 -19
  2784. package/public/r/select-disabled.json +0 -20
  2785. package/public/r/select-form.json +0 -26
  2786. package/public/r/select-lg.json +0 -19
  2787. package/public/r/select-multiple.json +0 -19
  2788. package/public/r/select-native.json +0 -12
  2789. package/public/r/select-sm.json +0 -19
  2790. package/public/r/select-with-groups.json +0 -19
  2791. package/public/r/select-without-alignment.json +0 -19
  2792. package/public/r/select.json +0 -15
  2793. package/public/r/separator-demo.json +0 -19
  2794. package/public/r/separator.json +0 -15
  2795. package/public/r/sheet-demo.json +0 -23
  2796. package/public/r/sheet-position.json +0 -20
  2797. package/public/r/sheet.json +0 -18
  2798. package/public/r/sidebar-nav.json +0 -22
  2799. package/public/r/silk.json +0 -16
  2800. package/public/r/skeleton-demo.json +0 -21
  2801. package/public/r/skeleton-only.json +0 -19
  2802. package/public/r/skeleton.json +0 -24
  2803. package/public/r/slider-demo.json +0 -19
  2804. package/public/r/slider-form.json +0 -27
  2805. package/public/r/slider-range.json +0 -20
  2806. package/public/r/slider-vertical.json +0 -20
  2807. package/public/r/slider-with-label-value.json +0 -21
  2808. package/public/r/slider.json +0 -15
  2809. package/public/r/snippet-npm.json +0 -22
  2810. package/public/r/snippet.json +0 -21
  2811. package/public/r/sonner.json +0 -16
  2812. package/public/r/spinner-customization.json +0 -21
  2813. package/public/r/spinner-variants.json +0 -21
  2814. package/public/r/spinner.json +0 -20
  2815. package/public/r/stats-card.json +0 -22
  2816. package/public/r/status-custom.json +0 -21
  2817. package/public/r/status.json +0 -20
  2818. package/public/r/stepper.json +0 -15
  2819. package/public/r/stories-avatars.json +0 -21
  2820. package/public/r/stories-images.json +0 -21
  2821. package/public/r/stories.json +0 -21
  2822. package/public/r/switch-card.json +0 -22
  2823. package/public/r/switch-demo.json +0 -21
  2824. package/public/r/switch-disabled.json +0 -22
  2825. package/public/r/switch-form.json +0 -25
  2826. package/public/r/switch-with-description.json +0 -23
  2827. package/public/r/switch.json +0 -15
  2828. package/public/r/table-demo.json +0 -21
  2829. package/public/r/table-framed.json +0 -23
  2830. package/public/r/table-simple.json +0 -21
  2831. package/public/r/table.json +0 -21
  2832. package/public/r/tabs-demo.json +0 -19
  2833. package/public/r/tabs-underline-vertical.json +0 -20
  2834. package/public/r/tabs-underline.json +0 -19
  2835. package/public/r/tabs-vertical.json +0 -20
  2836. package/public/r/tabs.json +0 -15
  2837. package/public/r/tags-create.json +0 -21
  2838. package/public/r/tags-filter.json +0 -21
  2839. package/public/r/tags.json +0 -20
  2840. package/public/r/template-auth-eight.json +0 -28
  2841. package/public/r/template-auth-five.json +0 -28
  2842. package/public/r/template-auth-four.json +0 -29
  2843. package/public/r/template-auth-nine.json +0 -28
  2844. package/public/r/template-auth-one.json +0 -49
  2845. package/public/r/template-auth-seven.json +0 -29
  2846. package/public/r/template-auth-six.json +0 -28
  2847. package/public/r/template-auth-three.json +0 -49
  2848. package/public/r/template-auth-two.json +0 -44
  2849. package/public/r/template-hero-eight.json +0 -83
  2850. package/public/r/template-hero-eleven.json +0 -29
  2851. package/public/r/template-hero-five.json +0 -35
  2852. package/public/r/template-hero-four.json +0 -35
  2853. package/public/r/template-hero-fourteen.json +0 -101
  2854. package/public/r/template-hero-nine.json +0 -74
  2855. package/public/r/template-hero-one.json +0 -90
  2856. package/public/r/template-hero-seven.json +0 -83
  2857. package/public/r/template-hero-six.json +0 -83
  2858. package/public/r/template-hero-ten.json +0 -77
  2859. package/public/r/template-hero-thirteen.json +0 -101
  2860. package/public/r/template-hero-three.json +0 -35
  2861. package/public/r/template-hero-twelve.json +0 -30
  2862. package/public/r/template-hero-two.json +0 -96
  2863. package/public/r/template-logo-cloud-five.json +0 -68
  2864. package/public/r/template-logo-cloud-four.json +0 -71
  2865. package/public/r/template-logo-cloud-one.json +0 -89
  2866. package/public/r/template-logo-cloud-three.json +0 -71
  2867. package/public/r/template-logo-cloud-two.json +0 -74
  2868. package/public/r/textarea-demo.json +0 -19
  2869. package/public/r/textarea-disabled.json +0 -20
  2870. package/public/r/textarea-form.json +0 -25
  2871. package/public/r/textarea-lg.json +0 -19
  2872. package/public/r/textarea-sm.json +0 -19
  2873. package/public/r/textarea-with-label.json +0 -22
  2874. package/public/r/textarea.json +0 -15
  2875. package/public/r/theme-switcher-uncontrolled.json +0 -21
  2876. package/public/r/theme-switcher.json +0 -21
  2877. package/public/r/ticker-currency.json +0 -20
  2878. package/public/r/ticker-inline.json +0 -20
  2879. package/public/r/ticker-percent.json +0 -20
  2880. package/public/r/ticker.json +0 -20
  2881. package/public/r/timeline.json +0 -15
  2882. package/public/r/toast-demo.json +0 -20
  2883. package/public/r/toast-heights.json +0 -19
  2884. package/public/r/toast-loading.json +0 -21
  2885. package/public/r/toast-promise.json +0 -20
  2886. package/public/r/toast-with-action.json +0 -20
  2887. package/public/r/toast-with-status.json +0 -20
  2888. package/public/r/toast.json +0 -18
  2889. package/public/r/toggle-demo.json +0 -19
  2890. package/public/r/toggle-disabled.json +0 -20
  2891. package/public/r/toggle-group-demo.json +0 -20
  2892. package/public/r/toggle-group-disabled.json +0 -21
  2893. package/public/r/toggle-group-lg.json +0 -20
  2894. package/public/r/toggle-group-multiple.json +0 -20
  2895. package/public/r/toggle-group-outline-with-separator.json +0 -20
  2896. package/public/r/toggle-group-outline.json +0 -20
  2897. package/public/r/toggle-group-sm.json +0 -20
  2898. package/public/r/toggle-group-with-disabled-item.json +0 -21
  2899. package/public/r/toggle-group.json +0 -19
  2900. package/public/r/toggle-icon-group.json +0 -19
  2901. package/public/r/toggle-lg.json +0 -19
  2902. package/public/r/toggle-outline.json +0 -19
  2903. package/public/r/toggle-sm.json +0 -19
  2904. package/public/r/toggle-with-icon.json +0 -19
  2905. package/public/r/toggle.json +0 -15
  2906. package/public/r/toolbar-demo.json +0 -27
  2907. package/public/r/toolbar.json +0 -15
  2908. package/public/r/tooltip-demo.json +0 -21
  2909. package/public/r/tooltip-grouped.json +0 -22
  2910. package/public/r/tooltip.json +0 -15
  2911. package/public/r/tree-controlled.json +0 -21
  2912. package/public/r/tree-custom-icons.json +0 -21
  2913. package/public/r/tree-no-lines.json +0 -20
  2914. package/public/r/tree-simple.json +0 -20
  2915. package/public/r/tree.json +0 -20
  2916. package/public/r/typography.json +0 -21
  2917. package/public/r/ui.json +0 -57
  2918. package/public/r/use-character-limit.json +0 -12
  2919. package/public/r/use-file-upload.json +0 -12
  2920. package/public/r/use-pagination.json +0 -12
  2921. package/public/r/use-slider-with-input.json +0 -12
  2922. package/public/r/use-toast.json +0 -12
  2923. package/public/r/utils.json +0 -16
  2924. package/public/r/video-player.json +0 -21
  2925. package/tsup.config.ts +0 -11
  2926. /package/{packages/gooey-toast/src/icons.tsx → registry/default/ui/toast-gooey-icons.tsx} +0 -0
  2927. /package/{packages/gooey-toast/src/types.ts → registry/default/ui/toast-gooey-types.ts} +0 -0
  2928. /package/{packages/gooey-toast/src/styles.css → registry/default/ui/toast-gooey.css} +0 -0
  2929. /package/{packages → skills}/loveui-skills/references/design-directions.md +0 -0
  2930. /package/{packages → skills}/loveui-skills/references/mcp-catalog-workflow.md +0 -0
  2931. /package/{packages → skills}/loveui-skills/references/page-blueprints.md +0 -0
  2932. /package/{packages → skills}/loveui-skills/references/quality-gates.md +0 -0
@@ -0,0 +1,170 @@
1
+ ---
2
+ name: loveui-skills
3
+ description: Build beautiful, professional software interfaces and websites with LoveUI. Use when users ask to create, redesign, or polish web apps, pages, dashboards, landing pages, SaaS UI, or multi-page product experiences with high visual quality, responsive behavior, and production-ready code.
4
+ ---
5
+
6
+ # LoveUI Skills
7
+
8
+ Follow this skill to design and implement polished, production-ready UI in LoveUI projects.
9
+
10
+ ## Reference System (Read in Every UI Task)
11
+
12
+ - Read `references/visual-primitives.md` to set non-negotiable visual constraints.
13
+ - Read `references/interaction-heuristics.md` to define interaction behavior and state handling.
14
+ - Read `references/structural-cleanliness.md` to enforce semantic, reusable, responsive architecture.
15
+ - Use `references/quality-gates.md` as the final ship checklist.
16
+
17
+ ## Extended References (Read Based on Scope)
18
+
19
+ - Read `references/accessibility-baseline.md` for accessibility requirements (contrast, keyboard, ARIA, touch targets).
20
+ - Read `references/content-ux-writing.md` for microcopy, error language, and destructive action wording.
21
+ - Read `references/forms-and-validation.md` for form architecture, validation timing, and async validation behavior.
22
+ - Read `references/motion-and-feedback.md` for motion timing, feedback primitives, skeleton/spinner decisions.
23
+ - Read `references/navigation-and-information-architecture.md` for navigation hierarchy, wayfinding, and URL state.
24
+ - Read `references/screenshot-translation-protocol.md` when implementing from screenshots, mockups, or visual references.
25
+ - Read `references/component-api-and-naming.md` for prop/API quality, composition patterns, and naming.
26
+ - Read `references/frontend-architecture.md` for state boundaries, data flow, side-effect placement, and feature structure.
27
+ - Read `references/testing-and-quality-strategy.md` for test scope, visual regression, and release quality gates.
28
+
29
+ ## Skill Pack Discovery (Required)
30
+
31
+ This repository is a multi-skill pack. In addition to this root skill, the agent must treat every `skills/*/SKILL.md` file as an available specialized skill when this pack is installed.
32
+
33
+ Before implementation work, scan the `skills/` directory and select the best matching specialist skill(s) for the request.
34
+
35
+ ### Available Specialist Skills
36
+
37
+ - `skills/adapt/SKILL.md`
38
+ - `skills/animate/SKILL.md`
39
+ - `skills/audit/SKILL.md`
40
+ - `skills/bolder/SKILL.md`
41
+ - `skills/clarify/SKILL.md`
42
+ - `skills/colorize/SKILL.md`
43
+ - `skills/critique/SKILL.md`
44
+ - `skills/delight/SKILL.md`
45
+ - `skills/distill/SKILL.md`
46
+ - `skills/extract/SKILL.md`
47
+ - `skills/frontend-design/SKILL.md`
48
+ - `skills/harden/SKILL.md`
49
+ - `skills/normalize/SKILL.md`
50
+ - `skills/onboard/SKILL.md`
51
+ - `skills/optimize/SKILL.md`
52
+ - `skills/polish/SKILL.md`
53
+ - `skills/quieter/SKILL.md`
54
+ - `skills/teach-loveui/SKILL.md`
55
+
56
+ ### Routing Rule
57
+
58
+ - Prefer the most specific specialist skill over generic guidance when one clearly matches the task.
59
+ - If multiple specialist skills apply, use one primary skill and at most one supporting skill to avoid conflicting directives.
60
+ - If no specialist skill applies, continue with this root skill and the `references/*` system.
61
+
62
+ ## Required Tooling
63
+
64
+ - Use the `loveui` MCP server as the authoritative source for LoveUI registry knowledge.
65
+ - Use MCP `resources/list` to discover all available registry items.
66
+ - Use MCP tool `get-loveui-package` to fetch exact registry JSON for selected items.
67
+ - Treat MCP results as the source of truth for UI components, building blocks, examples, templates, and related registry entries.
68
+
69
+ ## Core Rules
70
+
71
+ - Start by extracting constraints: product type, audience, framework, existing design system, and timeline.
72
+ - Choose one visual direction before coding. Avoid generic default layouts.
73
+ - Build a coherent token system first: spacing, typography, colors, radius, shadows.
74
+ - Enforce visual rules from `references/visual-primitives.md` before component assembly.
75
+ - Enforce interaction/state rules from `references/interaction-heuristics.md` for every interactive surface.
76
+ - Enforce semantic and reuse rules from `references/structural-cleanliness.md` when defining components/layouts.
77
+ - Design desktop and mobile together.
78
+ - Define loading, empty, error, and success states for core surfaces.
79
+ - Preserve existing visual patterns when working in an established codebase.
80
+ - For LoveUI installs, use `npx love-ui add <component>` only.
81
+ - Never install internal packages directly (`@loveui/*`, `@love-ui/*`, `@repo/*`).
82
+ - Do not guess component availability from memory when MCP is available.
83
+
84
+ ## Agent UX Contract (Non-Negotiables)
85
+
86
+ When the UI includes an agent, automation, or “apply changes” workflow, the implementation MUST include:
87
+
88
+ ### Plan → Preview → Apply
89
+
90
+ - **Plan:** 1–3 bullets: what will change, why, what won’t change.
91
+ - **Preview:** diffs/screenshots/structured change summary BEFORE commit.
92
+ - **Apply:** execution state + completion summary.
93
+
94
+ ### Undo & History are first‑class
95
+
96
+ - **Undo** in the success toast for reversible actions.
97
+ - **History** panel with restore points for high‑impact operations.
98
+ - High‑risk actions require confirmation + preview.
99
+
100
+ ### Choice Architecture
101
+
102
+ - Default surface shows **3–5** primary actions max.
103
+ - Use progressive disclosure: “More…”, “Advanced”, context menus.
104
+ - Prefer a command palette with context-valid actions (keyboard-first).
105
+
106
+ ### Trust & Explainability Primitives
107
+
108
+ - “Why this?” drawer for suggestions (short, plain-language).
109
+ - Source/provenance pill (e.g., “From LoveUI registry” / “From MCP item X”).
110
+ - Risk labeling: Low (styling), Medium (layout), High (data/auth/routing).
111
+ - No dead ends: every empty/error state offers a next action.
112
+
113
+ ## Workflow
114
+
115
+ 1. Define scope and screens.
116
+ - List exact pages/views and core user actions for each.
117
+ - For agent surfaces, define the Plan/Preview/Apply flow and the rollback strategy.
118
+
119
+ 2. Set constraints from references.
120
+ - Read `references/visual-primitives.md` and commit to visual constraints (color, type, spacing, depth).
121
+ - Read `references/interaction-heuristics.md` and list required states/interactions per core action.
122
+ - Read `references/structural-cleanliness.md` and define component boundaries + semantic landmarks.
123
+ - If scope includes forms, read `references/forms-and-validation.md`.
124
+ - If scope includes content or system messaging, read `references/content-ux-writing.md`.
125
+ - If scope includes navigation changes, read `references/navigation-and-information-architecture.md`.
126
+ - If scope includes motion/feedback patterns, read `references/motion-and-feedback.md`.
127
+ - If user provides screenshots or mockups, read `references/screenshot-translation-protocol.md` and report preserve/normalize/invent decisions.
128
+ - For all production work, read `references/accessibility-baseline.md`, `references/component-api-and-naming.md`, `references/frontend-architecture.md`, and `references/testing-and-quality-strategy.md`.
129
+
130
+ 3. Build live LoveUI catalog context with MCP.
131
+ - Read `references/mcp-catalog-workflow.md`.
132
+ - Call `resources/list` and map candidate registry items for the requested UI.
133
+ - Call `get-loveui-package` for each selected item before implementation.
134
+
135
+ 4. Choose visual direction.
136
+ - Read `references/design-directions.md`.
137
+ - Commit to one direction for the implementation.
138
+
139
+ 5. Choose layout blueprint.
140
+ - Read `references/page-blueprints.md`.
141
+ - Start from the closest blueprint and adapt.
142
+
143
+ 6. Implement foundations.
144
+ - Set design tokens and section rhythm first.
145
+ - Confirm consistent container widths and breakpoints.
146
+
147
+ 7. Build reusable UI and compose pages.
148
+ - Build reusable components before page assembly.
149
+ - Keep APIs variant-driven and minimal.
150
+ - Ensure semantics and keyboard support.
151
+ - For agent UIs, prefer an “Agent UI Kit” set of blocks:
152
+ - command palette, plan/preview/apply panel, diff viewer, run log/timeline, history/restore, inspector.
153
+
154
+ 8. Apply quality gates.
155
+ - Read `references/quality-gates.md`.
156
+ - Verify visual primitives, interaction heuristics, and structural cleanliness checks passed.
157
+ - Verify accessibility, copy quality, navigation clarity, component API cleanliness, architecture boundaries, and testing gates passed when applicable.
158
+ - Fix all failing checks before finalizing.
159
+
160
+ ## Output Contract
161
+
162
+ Always provide:
163
+
164
+ - The chosen visual direction and brief rationale.
165
+ - Confirmation that `visual-primitives`, `interaction-heuristics`, and `structural-cleanliness` constraints were applied.
166
+ - Any additional references used (accessibility/forms/content/motion/navigation/architecture/testing) and how they influenced decisions.
167
+ - For screenshot-driven tasks, include what was preserved, normalized, and invented.
168
+ - Files created/updated.
169
+ - Commands run.
170
+ - Any remaining gaps or tradeoffs.
@@ -0,0 +1,32 @@
1
+ # Accessibility Baseline (WCAG-Focused)
2
+
3
+ Accessibility is not an enhancement; it is a foundational requirement for all LoveUI components. Every interface must be universally usable by default.
4
+
5
+ ## 1. Contrast and Visual Legibility
6
+ - **Text Contrast:** All normal-sized text must strictly meet WCAG AA standards (minimum 4.5:1 contrast ratio against its background). Large text (18pt and above) must meet a 3:1 ratio.
7
+ - **Non-Text Contrast:** Essential UI components, such as input borders, icons, and focus rings, must maintain a 3:1 contrast ratio against adjacent colors to ensure they are perceivable.
8
+
9
+ ## 2. Keyboard Navigation & Focus Order
10
+ - **Focus Indicators:** Every interactive element must have a highly visible focus ring. Never remove the default outline unless replacing it with a more prominent, brand-aligned focus state.
11
+ - **Logical Flow:** Focus must travel predictably from top-to-bottom, left-to-right. The DOM order must match the visual order.
12
+ - **No Traps:** A user must be able to navigate into and out of any component (like a modal or complex widget) using only the `Tab` and `Shift+Tab` keys.
13
+
14
+ ## 3. ARIA Rules of Engagement
15
+ - **First Rule of ARIA:** No ARIA is better than bad ARIA. Always use native semantic HTML elements (`nav`, `button`, `dialog`) before reaching for ARIA roles.
16
+ - **State Management:** Use `aria-expanded`, `aria-pressed`, and `aria-invalid` to programmatically communicate the live state of interactive components to screen readers.
17
+ - **Hidden Elements:** Ensure decorative icons or redundant visual elements are hidden from screen readers to reduce auditory clutter.
18
+
19
+ ## 4. Screen Reader Context
20
+ - **Actionable Labels:** Icon-only buttons (like a trash can or a magnifying glass) must have explicit, visually hidden text labels explaining their exact function.
21
+ - **Contextual Announcements:** Dynamic page changes, such as a successful form submission or a new error appearing, must be announced to assistive technologies via live regions.
22
+
23
+ ## 5. Reduced Motion & Touch Targets
24
+ - **Motion Preferences:** All decorative animations and continuous motion must be disabled if the user's operating system requests reduced motion.
25
+ - **Touch Targets:** Any interactive element on a touch device must have a minimum interactive area of 44x44 pixels, even if the visual element (like a small icon) is smaller.
26
+
27
+ ## 6. Accessibility Verification Checklist
28
+ - **Keyboard Pass:** Navigate core flows with keyboard only (`Tab`, `Shift+Tab`, `Enter`, `Space`, `Esc`) and verify no blocked step.
29
+ - **Screen Reader Labels:** Validate that icon-only controls, form inputs, and landmark regions have meaningful announced names.
30
+ - **Focus Visibility:** Confirm focus ring remains visible on all interactive controls in both light and dark themes.
31
+ - **Contrast Spot Checks:** Validate primary text, muted text, and controls against their backgrounds.
32
+ - **Dynamic Announcements:** Verify success/error/status updates are announced when content changes asynchronously.
@@ -0,0 +1,30 @@
1
+ # Component API and Naming Conventions
2
+
3
+ UI components are the internal building blocks of the product. Their APIs must be predictable, tightly scoped, and self-documenting to prevent architectural rot.
4
+
5
+ ## 1. Prop Naming Conventions
6
+ - **Event Handlers:** All callback properties must start with `on` followed by an explicit verb-noun pairing describing the event trigger (e.g., `onConfirm`, `onDrawerClose`).
7
+ - **State Declarations:** Boolean properties that describe the component's state must be phrased as questions or assertions (e.g., `isLoading`, `hasError`, `isExpanded`).
8
+
9
+ ## 2. The Anti-Pattern of Boolean Explosion
10
+ - **Variants Over Booleans:** Never use multiple overlapping boolean properties to dictate a component's appearance. Instead of having separate flags for `isPrimary`, `isDestructive`, and `isGhost`, use a single, explicit `variant` property that accepts specific string values.
11
+
12
+ ## 3. Composition Over Configuration
13
+ - **The "Mega Prop" Ban:** A component should never accept a massive data object that dictates its entire internal layout.
14
+ - **Slot Architecture:** Build complex components using modular slots or child compositions. A complex layout should be built by nesting modular sub-components (like Header, Body, and Footer structural elements) rather than passing all data through one monolithic property.
15
+
16
+ ## 4. File and Concept Naming
17
+ - **Domain-Driven:** File and component names must describe *what* the component represents within the business logic, not *how* it looks.
18
+ - **Case Consistency:** Enforce strict naming conventions. Use PascalCase for structural component files and kebab-case for utility or conceptual files.
19
+
20
+ ## 5. API Surface Discipline
21
+ - **Minimal Public API:** Expose only props needed by real callers; remove speculative options.
22
+ - **Stable Defaults:** Prefer sensible defaults so call sites stay short and consistent.
23
+ - **Controlled vs Uncontrolled:** If a component can be controlled, define `value` + `onChange` clearly and document fallback behavior.
24
+ - **No Leaky Abstractions:** Avoid exposing internal implementation details (DOM shape, internal state flags) through public props.
25
+
26
+ ## 6. Component Definition of Done
27
+ - Prop names are explicit and consistent with project conventions.
28
+ - Variant model replaces overlapping visual booleans.
29
+ - Composition patterns are preferred over mega-config props.
30
+ - Component API remains small, predictable, and documented by usage.
@@ -0,0 +1,33 @@
1
+ # Content and UX Writing
2
+
3
+ Words are the most critical interface layer. LoveUI relies on crisp, predictable, and plain-language microcopy to guide users without cognitive friction.
4
+
5
+ ## 1. Action-Oriented Button Labels
6
+ - **Verb-Led:** Buttons must always start with a strong, unambiguous verb that describes the exact outcome of the click (e.g., "Create Project", "Delete Account", "Save Changes").
7
+ - **Avoid Vagueness:** Never use generic labels like "Submit", "Click Here", or "Go" for primary workflows.
8
+
9
+ ## 2. Empty, Error, and Loading States
10
+ - **Empty States:** An empty screen is a missed opportunity. Empty state copy must explain what the space is for, why it is currently empty, and provide a clear primary action to populate it.
11
+ - **Error Copy:** Never blame the user. Error messages must explicitly state what went wrong in plain language and provide a direct path to resolution. Avoid technical jargon or error codes in the user-facing text.
12
+ - **Loading Copy:** For operations taking longer than two seconds, provide context on what the system is doing (e.g., "Analyzing your dataset..." rather than just "Loading...").
13
+
14
+ ## 3. Confirmation and Destructive Language
15
+ - **High-Friction Language:** Destructive actions must use explicitly cautious language. The confirmation button must match the severity of the action (e.g., "Yes, Delete Organization").
16
+ - **Double Confirmation:** For irreversible, high-impact actions, require the user to manually type the name of the object being deleted to confirm intent.
17
+
18
+ ## 4. Tone Consistency and Plain Language
19
+ - **Professional but Human:** The tone should be helpful, direct, and encouraging. Avoid overly robotic phrasing, but do not use forced humor, slang, or emojis in system-level messaging.
20
+ - **Reading Level:** Write interface copy at an eighth-grade reading level. Prioritize clarity over cleverness.
21
+
22
+ ## 5. Copy Templates (Default Patterns)
23
+ - **Empty state:** `"[Resource] appears here. [One-line benefit]. [Primary action]."`
24
+ - **Error state:** `"We couldn't [action]. [Likely reason if known]. [Next step]."`
25
+ - **Success toast:** `"[Action] complete."` plus `Undo` for reversible operations.
26
+ - **Destructive confirm title:** `"Delete [object]?"`
27
+ - **Destructive confirm body:** `"This will [consequence]. This action [is/is not] reversible."`
28
+
29
+ ## 6. UX Writing Definition of Done
30
+ - Labels, helper text, and validation messages use consistent terminology.
31
+ - Every empty/error/loading/success state includes clear next-step guidance.
32
+ - Destructive actions communicate consequence and reversibility explicitly.
33
+ - Primary actions use specific verb-led labels, not generic wording.
@@ -0,0 +1,30 @@
1
+ # Forms and Validation Architecture
2
+
3
+ Forms are the primary engine of data collection. Their design must minimize anxiety and maximize completion rates through logical flow and intelligent feedback.
4
+
5
+ ## 1. Cognitive Grouping
6
+ - **Chunking:** Break long forms into logical, thematic sections using clear headings or multi-step wizards. A user should never face a wall of inputs.
7
+ - **Single Column Layouts:** Default to single-column forms. Users read forms top-to-bottom; multi-column layouts disrupt the visual scanning path and increase cognitive load.
8
+
9
+ ## 2. Required vs. Optional Conventions
10
+ - **Assume Required:** In modern SaaS, most form fields should be required. Instead of marking every field with a red asterisk, explicitly mark the rare optional fields with an "(optional)" text label next to the field name.
11
+
12
+ ## 3. Inline Validation Timing
13
+ - **Reward Early, Punish Late:** Never show an error while the user is actively typing in a field for the first time.
14
+ - **On Blur:** Validate a field and display errors only after the user has finished typing and moved away from the input (on blur).
15
+ - **Error Recovery:** Once an error is displayed, switch to aggressive validation. Clear the error immediately as the user types the correct input (on change) to provide instant positive reinforcement.
16
+
17
+ ## 4. Asynchronous Validation
18
+ - **Immediate Feedback:** For fields that require server-side checks (like username availability or complex data formatting), display a subtle, inline loading indicator within the input field to communicate that the system is checking.
19
+
20
+ ## 5. Submission and Error Summary
21
+ - **Preserve Input:** Never clear user-entered values after validation failures.
22
+ - **First Error Focus:** On submit failure, move focus to the first invalid field and keep inline errors visible.
23
+ - **Error Summary:** For long forms, show a top-level summary linking to invalid fields.
24
+ - **Pending State:** Disable duplicate submit attempts while request is in flight and show explicit progress text.
25
+
26
+ ## 6. Form Definition of Done
27
+ - Required vs optional fields are unambiguous.
28
+ - Inline validation timing follows on-blur first, then on-change recovery.
29
+ - Async validation has visible pending, success, and failure states.
30
+ - Failed submits preserve values and provide clear correction path.
@@ -0,0 +1,30 @@
1
+ # Frontend Architecture Philosophy
2
+
3
+ The boundary between interface rendering and data logic must be impenetrable. A clean architecture ensures the UI remains fast, scalable, and easy to debug.
4
+
5
+ ## 1. State and Data Boundaries
6
+ - **Local vs. Global:** Default to keeping state strictly local to the component that needs it. Only elevate state to a global context if it is required by multiple, disconnected regions of the application (like user authentication status or global theme settings).
7
+ - **Derived State:** Never store data in the state if it can be mathematically derived or filtered from existing data on the fly.
8
+
9
+ ## 2. Server vs. Client Logic Separation
10
+ - **Dumb Components:** Visual interface components must be entirely unaware of how data is fetched or mutated. They should simply receive data, render it beautifully, and emit events when the user interacts.
11
+ - **Smart Wrappers:** All data fetching, caching, and server mutation logic must be abstracted into dedicated container modules or custom hooks that wrap the visual components.
12
+
13
+ ## 3. API Conventions and Side Effects
14
+ - **Predictable Mutations:** Side effects (like submitting data to a server) must be highly localized and traceable.
15
+ - **Optimistic UI:** When a user takes a highly predictable action (like starring an item), update the visual interface instantly to assume success, while handling the actual server request silently in the background. If the request fails, cleanly revert the interface and show an error.
16
+
17
+ ## 4. Folder Structure Logic
18
+ - **Feature-Centric:** Organize the architecture by feature domain (e.g., "Authentication", "Billing", "Projects") rather than by file type (e.g., putting all global components in one massive folder). This ensures that deleting a feature completely removes its associated logic and interface elements.
19
+
20
+ ## 5. Data and Side-Effect Boundaries
21
+ - **One Mutation Path:** Each write action should have one clear pathway (action/hook/service), not duplicated request logic across components.
22
+ - **Fetch Ownership:** Data fetching responsibility should be explicit per route/feature to prevent duplicate requests and race conditions.
23
+ - **Error Normalization:** Normalize server errors into predictable shapes before they reach presentation components.
24
+ - **Caching Rules:** Define stale/refresh behavior intentionally for each high-traffic surface.
25
+
26
+ ## 6. Architecture Definition of Done
27
+ - Local, shared, and global state boundaries are justified and documented by usage.
28
+ - Presentational components remain data-source agnostic.
29
+ - Side effects are traceable and concentrated in predictable modules.
30
+ - Feature folders encapsulate UI, state, and behavior coherently.
@@ -0,0 +1,45 @@
1
+ # Interaction & UX Heuristics
2
+
3
+ A beautiful interface is useless if it feels static or overwhelming. This document dictates the behavioral expectations and user experience rules for all LoveUI elements.
4
+
5
+ ## 1. Mandatory Micro-Interactions
6
+ Every interactive element on the screen must provide immediate visual feedback to the user.
7
+ - **Hover States:** Any clickable element must visibly react when a cursor passes over it, typically through a subtle background color shift or a slight change in opacity.
8
+ - **Focus Rings:** Accessibility is non-negotiable. All inputs and buttons must display a crisp, highly visible focus ring when navigated via keyboard.
9
+ - **Disabled States:** Elements that are currently inactive must be visually muted (lowered opacity) and visually communicate that they cannot be interacted with.
10
+
11
+ ## 2. Progressive Disclosure
12
+ Interfaces must respect the user's cognitive load. Do not present every possible action or piece of data at once.
13
+ - **Primary vs. Secondary:** A screen or panel should have exactly one clear primary action.
14
+ - **Hiding Complexity:** If a surface requires more than four or five actions, the secondary and tertiary actions must be nested behind a context menu, an "Advanced" toggle, or a "More options" dropdown. Keep the default view pristine.
15
+
16
+ ## 3. Predictable Alignment
17
+ The human eye scans for patterns. Breakages in alignment create subconscious friction.
18
+ - **Text and Data:** Default to left-alignment for almost all text, forms, and data tables. Numbers in tables should be right-aligned for easy comparison.
19
+ - **Centering:** Reserve center-alignment strictly for standalone elements like marketing hero headers or empty-state messaging. Do not center-align paragraphs of text or form fields.
20
+ - **Structural Integrity:** Ensure that the edges of containers, typography bounding boxes, and image assets align perfectly on a vertical axis down the page.
21
+
22
+ ## 4. State Management Visibility
23
+ The user must never guess what the system is doing.
24
+ - **Transitional States:** Define clear visual states for when data is loading (e.g., subtle pulsing skeletons instead of disruptive spinners).
25
+ - **Empty States:** When a data table or list is empty, never leave a blank screen. Always provide a beautifully formatted empty state that explains what belongs there and offers a primary action to populate it.
26
+
27
+ ## 5. Feedback Timing & Motion Restraint
28
+ Motion should communicate cause-and-effect, never decorate.
29
+ - **Timing:** Keep most transitions between 120-220ms; avoid slow, dramatic easing for core actions.
30
+ - **Consistency:** Reuse the same interaction timing/easing tokens across buttons, menus, drawers, and toasts.
31
+ - **Reduced Motion:** Respect reduced-motion preferences by minimizing or disabling non-essential movement.
32
+
33
+ ## 6. Action Safety & Recovery
34
+ Users need confidence when actions can change real state.
35
+ - **Risk Signaling:** Label risky actions with clear severity and consequence language before execution.
36
+ - **Confirmation:** Require confirm + preview for destructive or high-impact changes.
37
+ - **Recovery:** Success feedback should include Undo when the action is reversible.
38
+ - **Error Recovery:** Error states must present at least one clear next action (retry, edit input, or open details).
39
+
40
+ ## 7. Definition of Done (Interaction)
41
+ - Every interactive element has visible hover, focus, and disabled states.
42
+ - Primary action is obvious in each major screen/panel.
43
+ - Loading, empty, error, and success states are implemented for key workflows.
44
+ - Keyboard navigation and focus order are coherent for primary flows.
45
+ - Complex action sets are progressively disclosed rather than front-loaded.
@@ -0,0 +1,31 @@
1
+ # Motion and System Feedback
2
+
3
+ Animation in LoveUI is strictly functional. It exists to explain state changes, establish spatial relationships, and focus attention—never for mere decoration.
4
+
5
+ ## 1. The Timing and Easing System
6
+ - **Speed Constraints:** Interface animations should be virtually imperceptible, serving only to smooth transitions. Default to ultra-fast durations for micro-interactions and slightly longer durations for structural page shifts.
7
+ - **Easing Curves:** Never use linear animations. Use snappy, decelerating easing curves for elements entering the screen (starting fast, ending slow) and accelerating curves for elements exiting.
8
+
9
+ ## 2. Purpose-Driven Animation
10
+ - **When to Animate:** Animate to show an object's origin (like a modal expanding from a button), to highlight a change in status, or to smooth the transition between layout changes.
11
+ - **When to Remain Static:** Do not animate standard data rendering, typography loads, or static structural borders.
12
+
13
+ ## 3. Skeletons vs. Spinners
14
+ - **Skeletons for Known Layouts:** If the structural layout of the incoming data is known (like a list of cards or a table), use pulsing skeleton loaders to establish the spatial expectation before the data arrives.
15
+ - **Spinners for Unknowns:** Reserve circular loading spinners strictly for localized, unpredictable actions (like a button processing a payment) or full-page blank-slate loads.
16
+
17
+ ## 4. Toasts and Banners
18
+ - **Transient Toasts:** Use small, auto-dismissing toast notifications strictly for low-priority, successful system confirmations (e.g., "Link copied to clipboard").
19
+ - **Persistent Banners:** Use full-width, non-dismissible (or manually dismissible) banners for high-priority, contextual warnings that affect the user's current workflow (e.g., "Your trial expires in 2 days").
20
+
21
+ ## 5. Timing Defaults
22
+ - **Micro interactions:** 120-180ms.
23
+ - **Panel open/close:** 180-240ms.
24
+ - **Page/route transitions:** 200-300ms, only when they improve orientation.
25
+ - **Staggering:** Avoid multi-element staggers unless the sequence communicates order or priority.
26
+
27
+ ## 6. Motion Definition of Done
28
+ - Motion explains state or spatial change; no decorative animation loops.
29
+ - Reduced-motion preference is respected for non-essential transitions.
30
+ - Feedback primitive selection is intentional (skeleton vs spinner, toast vs banner).
31
+ - Success, warning, and error feedback are visually and semantically distinct.
@@ -0,0 +1,30 @@
1
+ # Navigation and Information Architecture
2
+
3
+ Users should never feel lost. Navigation must act as a reliable map, heavily favoring explicit wayfinding over hidden menus.
4
+
5
+ ## 1. Navigation Depth and Hierarchy
6
+ - **The Three-Click Rule:** A user should be able to reach any core functional area of the application within three interactions.
7
+ - **Flat Over Deep:** Avoid deep nesting. If an architecture requires four levels of folders or menus, the top-level categorization must be re-evaluated and flattened.
8
+
9
+ ## 2. Wayfinding and Context
10
+ - **Active States:** The current location must always be explicitly highlighted in the primary and secondary navigation menus using bold typography, distinct background colors, or structural indicators.
11
+ - **Breadcrumbs:** Utilize breadcrumbs for any view that is two or more levels deep. Breadcrumbs provide immediate context and an easy escape hatch to higher-level directories.
12
+
13
+ ## 3. URL as the Source of Truth
14
+ - **State in the URL:** Any significant UI state change—such as opening a specific tab, applying a data filter, or opening a detail drawer—must be reflected in the URL parameters.
15
+ - **Shareability:** A user should be able to copy the URL at any exact moment, send it to a colleague, and have the interface load in the exact same state, including active filters and open views.
16
+
17
+ ## 4. Mobile Navigation Grace
18
+ - **Bottom vs. Top:** On mobile, place primary navigation items in a highly accessible bottom bar. Reserve "hamburger" menus strictly for secondary settings, billing, and account management, never for core daily workflows.
19
+
20
+ ## 5. IA and Navigation Guardrails
21
+ - **Single Primary Nav Model:** Use one primary navigation pattern per app area; avoid mixing unrelated paradigms in the same workspace.
22
+ - **Stable Labels:** Keep navigation labels consistent across screens and releases unless a migration is intentional and documented.
23
+ - **Back Behavior:** Browser back/forward should restore prior view state (filters, selected tab, pagination) when feasible.
24
+ - **Escalation Path:** Deep detail views should always offer an obvious route back to the parent context.
25
+
26
+ ## 6. Navigation Definition of Done
27
+ - Users can reach any core area quickly without hidden detours.
28
+ - Active context is visible in nav and page-level heading hierarchy.
29
+ - URL reflects meaningful state for sharing and restoring context.
30
+ - Mobile navigation keeps core actions in thumb-reachable zones.
@@ -0,0 +1,52 @@
1
+ # Screenshot Translation Protocol
2
+
3
+ When provided with a static screenshot, mockup, or reference image, the goal is not to blindly duplicate pixels. The goal is to deconstruct the image's intent and reconstruct it using LoveUI's strict architectural and visual constraints. A static image is an incomplete blueprint; you must infer the missing systemic rules.
4
+
5
+ ## 1. Visual Deconstruction and The Grid
6
+ Before analyzing any specific element, deconstruct the macro-layout of the provided image into a strict mathematical grid.
7
+ - **Identify the Skeleton:** Map the image into core structural landmarks (e.g., Sidebars, Navigation Rails, Primary Canvas, Context Panels). Do not proceed until the overarching grid or flexbox architecture is conceptually defined.
8
+ - **Normalize to the 8pt System:** Reference images often contain arbitrary or messy spacing. You must aggressively normalize all observed margins, paddings, and gaps into strict multiples of 4px or 8px. If a screenshot shows a 17px gap, correct it to 16px.
9
+ - **Alignment Enforcement:** Identify the primary alignment axes in the image. If elements in the screenshot are slightly misaligned, assume it is a human error in the mockup and enforce mathematically perfect horizontal and vertical alignment in the reconstruction.
10
+
11
+ ## 2. Token Extraction and System Mapping
12
+ Do not sample exact hex codes or font sizes from the image if they violate LoveUI core principles. Translate the image's aesthetic into your predefined system tokens.
13
+ - **Color Translation:** Strip away any gradients or excessive color usage found in the screenshot. Map the dominant background and surface colors to the closest LoveUI monochromatic tokens (Slate, Zinc, etc.). Identify the single primary action color in the screenshot and map it to the LoveUI accent token.
14
+ - **Typography Standardization:** Ignore the specific font family in the screenshot. Map the visual hierarchy (massive headers, readable body text, muted metadata) strictly to the established LoveUI typographic scale. Enforce readability over stylistic quirks.
15
+ - **Containment Rules:** If the screenshot utilizes heavy drop shadows or thick borders for containment, downgrade them. Translate these boundaries into LoveUI's ultra-subtle 1px borders or the softest available elevation tokens.
16
+
17
+ ## 3. Component Identification and Modularization
18
+ Never build a single, monolithic interface just because the screenshot looks like one flat image.
19
+ - **Pattern Recognition:** Scan the screenshot for repeating visual patterns (e.g., a list of similar items, a row of metric cards). Extract these into conceptual, reusable sub-components rather than repeating the structural logic.
20
+ - **Semantic Mapping:** Identify visual elements and assign them their correct semantic intent. If a visual block looks like a button but acts as a navigation link, structure it semantically as an anchor, regardless of its visual presentation.
21
+
22
+ ## 4. Inferring the Invisible (State and Interaction)
23
+ A screenshot only represents a single moment in time (usually the "happy path"). You are strictly required to invent and implement the missing interactive dimensions.
24
+ - **Mandatory Micro-Interactions:** Even if not pictured, you must define and apply logical `hover`, `focus`, and `disabled` states for every interactive element identified in the image.
25
+ - **Edge Case Extrapolation:** The screenshot likely shows perfect data. You must design how the UI behaves when the data is imperfect. Define the text-truncation rules for long strings, the wrapping behavior for flex layouts, and the empty states if the visible data were to be removed.
26
+
27
+ ## 5. Viewport Adaptation
28
+ A screenshot represents exactly one screen width. You must immediately define how this layout expands and contracts.
29
+ - **Degradation Strategy:** Determine the mobile behavior for the desktop screenshot. Decide which columns will stack, which sidebars will become off-canvas drawers, and which secondary elements will be hidden behind progressive disclosure menus on smaller screens.
30
+
31
+ ## 6. Translation Workflow (Execution Order)
32
+ 1. **Classify source:** identify whether input is dashboard, marketing, workspace, settings, docs, or agent workspace.
33
+ 2. **Select blueprint:** map to `references/page-blueprints.md` and note any deviations.
34
+ 3. **Token-map visuals:** translate typography, spacing, color, radius, border, and elevation into LoveUI tokens.
35
+ 4. **Extract components:** list reusable blocks before coding repeated patterns.
36
+ 5. **Define states:** add hover/focus/disabled + loading/empty/error/success behavior.
37
+ 6. **Adapt responsively:** define desktop/tablet/mobile layout transitions.
38
+ 7. **Validate gates:** run `references/quality-gates.md` and accessibility checks before final output.
39
+
40
+ ## 7. Output Requirements for Screenshot Tasks
41
+ When implementing from screenshots, always report:
42
+ - **What was preserved:** hierarchy, information zoning, and key interaction model.
43
+ - **What was normalized:** spacing alignment, token choices, contrast, and semantics.
44
+ - **What was invented:** missing states, edge-case behavior, and mobile adaptations.
45
+ - **Risk notes:** areas where screenshot ambiguity required assumptions.
46
+
47
+ ## 8. Definition of Done (Screenshot Translation)
48
+ - Layout is mathematically aligned and normalized to 4/8 spacing increments.
49
+ - Visual style conforms to LoveUI primitives rather than raw pixel copying.
50
+ - Repeated patterns are componentized with reusable APIs.
51
+ - Interaction states and non-happy-path states are explicitly implemented.
52
+ - Result is responsive and passes quality + accessibility gates.
@@ -0,0 +1,37 @@
1
+ # Structural Cleanliness & Architecture
2
+
3
+ This document outlines the philosophy for constructing the underlying framework of the UI. Even though the end user does not see the structure, a messy foundation leads to a disjointed visual output.
4
+
5
+ ## 1. Absolute Semantic Accuracy
6
+ The structural tags used to build the interface must describe their exact purpose.
7
+ - **Landmarks:** The interface must be divided logically into headers, main content areas, navigation rails, sidebars, and footers using the correct descriptive syntax.
8
+ - **Interactive Semantics:** Only use button structures for actions that trigger events, and anchor structures for actions that navigate to new views. Do not mix their visual representations with their functional realities.
9
+
10
+ ## 2. Abstraction and Reusability
11
+ Do not build monolithic, endlessly scrolling structures.
12
+ - **Granularity:** Break complex interfaces down into the smallest possible logical pieces. A data dashboard should be composed of distinct, reusable card structures, list structures, and chart structures.
13
+ - **Utility Discipline:** When utilizing styling systems, avoid repeating long strings of visual definitions. If a specific combination of visual rules (like a standard card container with specific padding and borders) appears more than twice, it must be abstracted into a single, reusable concept.
14
+
15
+ ## 3. Responsive Grace
16
+ The interface must degrade beautifully, not just functionally, as screen sizes change.
17
+ - **Fluid Layouts:** Rely on flexible grid and column systems that naturally reflow content.
18
+ - **Mobile Realities:** On narrow viewports, complex multi-column layouts must stack logically. Ensure that touch targets become slightly larger to accommodate fingers, and that critical navigation actions remain permanently accessible without excessive scrolling.
19
+
20
+ ## 4. Information Hierarchy Integrity
21
+ Structure should make meaning obvious without visual decoration.
22
+ - **Heading Order:** Use a strict, logical heading sequence; do not skip levels in long-form or dashboard sections.
23
+ - **Chunking:** Group related controls/content into explicit sections with concise section labels.
24
+ - **Reading Flow:** Keep primary content before secondary utilities in the DOM when possible.
25
+
26
+ ## 5. Component and File Boundaries
27
+ Maintain a clean implementation surface as UI complexity grows.
28
+ - **Single Responsibility:** Each component should own one clear job (layout shell, card, table, filter bar, etc.).
29
+ - **Composition First:** Favor composition of smaller primitives over deeply configurable mega-components.
30
+ - **Locality:** Keep styles, tests, and stories/examples near components when project conventions allow.
31
+
32
+ ## 6. Definition of Done (Structure)
33
+ - Landmarks and semantic elements match the page intent.
34
+ - Buttons trigger actions; links navigate; semantics are never mixed for convenience.
35
+ - Repeated UI patterns are abstracted into reusable components/tokens.
36
+ - Mobile stacking preserves task flow and keeps critical actions reachable.
37
+ - File and component naming remain consistent and predictable.
@@ -0,0 +1,33 @@
1
+ # Testing and Quality Strategy
2
+
3
+ A beautiful interface is fragile without a rigorous quality safety net. Quality must be enforced systematically before any design reaches production.
4
+
5
+ ## 1. The Testing Pyramid
6
+ - **Unit Testing:** Focus unit tests strictly on complex, isolated mathematical logic, data formatting utilities, and pure state transformations. Do not write brittle unit tests that verify simple CSS class names.
7
+ - **Integration Testing:** Prioritize integration tests that verify the exact connections between smart data wrappers and the dumb visual components.
8
+ - **End-to-End (E2E):** Reserve heavy E2E tests for the absolute critical business paths (e.g., user signup, payment flows, core object creation).
9
+
10
+ ## 2. Visual Regression Policy
11
+ - **Automated Eyes:** Any change to a core UI component must automatically trigger a visual regression check against established baselines. This prevents a spacing tweak in a button from cascading and breaking navigation headers across the platform.
12
+
13
+ ## 3. Accessibility Quality Gates
14
+ - **Automated Audits:** The continuous integration pipeline must automatically block any code that introduces standard WCAG violations (like missing form labels, severe contrast failures, or missing ARIA roles).
15
+
16
+ ## 4. The Definition of Done
17
+ A feature or UI update is strictly not considered complete until:
18
+ - It functions flawlessly on desktop, tablet, and mobile breakpoints.
19
+ - It can be fully operated using only a keyboard.
20
+ - All loading, empty, and error states have been explicitly designed and implemented.
21
+ - It adheres completely to the LoveUI visual primitives and spatial grid constraints.
22
+
23
+ ## 5. Minimum Test Matrix (Per Feature)
24
+ - **Happy path integration test:** verifies primary user objective end-to-end within the feature boundary.
25
+ - **Failure path integration test:** verifies user-visible recovery for at least one realistic backend/client failure.
26
+ - **Accessibility smoke test:** keyboard traversal + basic a11y assertions for primary controls.
27
+ - **Visual snapshot(s):** stable snapshots for default, loading, and error/empty states where layout risk exists.
28
+
29
+ ## 6. Release Gate Checklist
30
+ - Critical flows pass on target browsers/devices.
31
+ - No unresolved high-severity accessibility or UX regressions.
32
+ - New or changed components include regression coverage at the right layer.
33
+ - Quality-gate references (`visual-primitives`, `interaction-heuristics`, `structural-cleanliness`) are satisfied.
@@ -0,0 +1,42 @@
1
+ # Visual Primitives & Aesthetic Constraints
2
+
3
+ This document defines the strict visual boundaries for all LoveUI generations. The goal is an ultra-clean, minimalist, and highly professional aesthetic. You must adhere to these foundational design rules before assembling any layout.
4
+
5
+ ## 1. The Zero-Gradient Mandate
6
+ Under no circumstances should gradients be applied to backgrounds, typography, borders, or buttons unless explicitly requested by the user. Gradients introduce unnecessary visual noise. Rely entirely on flat, solid colors to establish depth and hierarchy.
7
+
8
+ ## 2. Monochromatic Dominance & Singular Accent
9
+ The color system must be strictly disciplined.
10
+ - **Base Palette:** Ninety percent of the interface must utilize a neutral, monochromatic scale (e.g., pure grays, slates, or zincs).
11
+ - **Accent Application:** Select exactly one primary brand color. This color must be reserved exclusively for primary actions, active states, and critical data highlights. Never use the accent color for decorative backgrounds or structural borders.
12
+ - **Backgrounds:** Default to a pure white or an ultra-light gray for light mode, and a pure black or ultra-dark gray for dark mode. Avoid mid-tones for main structural backgrounds.
13
+
14
+ ## 3. Topographic Typography
15
+ Typography must do the heavy lifting for the interface's structural hierarchy.
16
+ - **Font Selection:** Always default to a clean, modern, sans-serif system typeface.
17
+ - **Scale and Weight:** Enforce a strict typographic scale. Page titles must be large and bold; section headings should be medium and semibold; body text must be legible and regular weight.
18
+ - **Subordinate Text:** Metadata, timestamps, and secondary descriptions must utilize a smaller font size and a muted text color to recede visually.
19
+
20
+ ## 4. The Spatial Grid
21
+ Whitespace is the primary tool for organizing information.
22
+ - **Strict Multiples:** All margins, padding, and positional values must adhere to a strict base-8 (or base-4 for micro-spacing) mathematical scale.
23
+ - **Breathing Room:** Never crowd elements. Elements that belong to the same logical group should be closer together, while distinct sections must be separated by generous, mathematically consistent whitespace.
24
+
25
+ ## 5. Depth and Containment
26
+ Avoid heavy drop shadows and thick borders.
27
+ - **Separation:** Use ultra-subtle, one-pixel borders in a very light gray to separate panels and sections.
28
+ - **Elevation:** If shadows are necessary to indicate a floating element (like a dropdown menu or modal), use the softest, most diffused, and smallest shadow available. The interface should feel flat and crisp, not raised and heavy.
29
+
30
+ ## 6. Implementation Defaults (Use Unless User Overrides)
31
+ - **Spacing Scale:** `4, 8, 12, 16, 24, 32, 40, 48, 64`.
32
+ - **Radius Scale:** `6` (inputs/buttons), `10` (cards), `14` (modals/drawers), avoid mixing many radii.
33
+ - **Border Color:** one neutral border token for most surfaces, one stronger border token for focus/active grouping.
34
+ - **Shadow Policy:** no persistent heavy shadows; one subtle shadow token for floating layers only.
35
+ - **Accent Budget:** one accent hue, with at most two intensity steps for hover/active states.
36
+
37
+ ## 7. Definition of Done (Visual)
38
+ - No gradients unless explicitly requested.
39
+ - Accent color appears only on primary actions, active states, and critical highlights.
40
+ - Typography hierarchy is clear at a glance (title, section, body, metadata).
41
+ - Spacing values snap to the defined scale and are consistent between similar sections.
42
+ - Borders/shadows are subtle, sparse, and purposeful.