kigumi 0.19.2 → 0.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2836) hide show
  1. package/README.md +13 -13
  2. package/dist/bin.js +1 -1
  3. package/dist/bin.js.map +1 -1
  4. package/dist/chunk-F52T5BFP.js +260 -0
  5. package/dist/chunk-F52T5BFP.js.map +1 -0
  6. package/dist/chunk-L52LAS37.js +1978 -0
  7. package/dist/chunk-L52LAS37.js.map +1 -0
  8. package/dist/chunk-MIPVTLNR.js +260 -0
  9. package/dist/chunk-MIPVTLNR.js.map +1 -0
  10. package/dist/index.js +1190 -1176
  11. package/dist/index.js.map +1 -1
  12. package/dist/install-ATX2D4AO.js +114 -0
  13. package/dist/install-ATX2D4AO.js.map +1 -0
  14. package/dist/project-config-D3FYPYTX.js +16 -0
  15. package/dist/tier-W7HBBSNP.js +15 -0
  16. package/dist/tier-W7HBBSNP.js.map +1 -0
  17. package/package.json +54 -14
  18. package/templates/AGENTS.md +223 -89
  19. package/templates/angular/AnimatedImage/animated-image.component.css +14 -0
  20. package/templates/angular/AnimatedImage/animated-image.component.spec.ts +26 -0
  21. package/templates/angular/AnimatedImage/animated-image.component.ts +85 -0
  22. package/templates/angular/Animation/animation.component.spec.ts +26 -0
  23. package/templates/angular/Animation/animation.component.ts +130 -0
  24. package/templates/angular/Avatar/avatar.component.css +15 -0
  25. package/templates/angular/Avatar/avatar.component.spec.ts +26 -0
  26. package/templates/angular/Avatar/avatar.component.ts +87 -0
  27. package/templates/angular/Badge/badge.component.css +15 -0
  28. package/templates/angular/Badge/badge.component.spec.ts +26 -0
  29. package/templates/angular/Badge/badge.component.ts +69 -0
  30. package/templates/angular/BarChart/bar-chart.component.css +27 -0
  31. package/templates/angular/BarChart/bar-chart.component.spec.ts +26 -0
  32. package/templates/angular/BarChart/bar-chart.component.ts +105 -0
  33. package/templates/angular/Breadcrumb/breadcrumb.component.css +10 -0
  34. package/templates/angular/Breadcrumb/breadcrumb.component.spec.ts +26 -0
  35. package/templates/angular/Breadcrumb/breadcrumb.component.ts +57 -0
  36. package/templates/angular/BreadcrumbItem/breadcrumb-item.component.css +13 -0
  37. package/templates/angular/BreadcrumbItem/breadcrumb-item.component.spec.ts +26 -0
  38. package/templates/angular/BreadcrumbItem/breadcrumb-item.component.ts +66 -0
  39. package/templates/angular/BubbleChart/bubble-chart.component.css +27 -0
  40. package/templates/angular/BubbleChart/bubble-chart.component.spec.ts +26 -0
  41. package/templates/angular/BubbleChart/bubble-chart.component.ts +102 -0
  42. package/templates/angular/Button/button.component.css +15 -0
  43. package/templates/angular/Button/button.component.spec.ts +26 -0
  44. package/templates/angular/Button/button.component.ts +184 -0
  45. package/templates/angular/ButtonGroup/button-group.component.css +10 -0
  46. package/templates/angular/ButtonGroup/button-group.component.spec.ts +26 -0
  47. package/templates/angular/ButtonGroup/button-group.component.ts +63 -0
  48. package/templates/angular/Callout/callout.component.css +11 -0
  49. package/templates/angular/Callout/callout.component.spec.ts +26 -0
  50. package/templates/angular/Callout/callout.component.ts +71 -0
  51. package/templates/angular/Card/card.component.css +16 -0
  52. package/templates/angular/Card/card.component.spec.ts +26 -0
  53. package/templates/angular/Card/card.component.ts +77 -0
  54. package/templates/angular/Carousel/carousel.component.css +23 -0
  55. package/templates/angular/Carousel/carousel.component.spec.ts +26 -0
  56. package/templates/angular/Carousel/carousel.component.ts +124 -0
  57. package/templates/angular/CarouselItem/carousel-item.component.css +10 -0
  58. package/templates/angular/CarouselItem/carousel-item.component.spec.ts +26 -0
  59. package/templates/angular/CarouselItem/carousel-item.component.ts +53 -0
  60. package/templates/angular/Chart/chart.component.css +27 -0
  61. package/templates/angular/Chart/chart.component.spec.ts +26 -0
  62. package/templates/angular/Chart/chart.component.ts +113 -0
  63. package/templates/angular/Checkbox/checkbox.component.css +19 -0
  64. package/templates/angular/Checkbox/checkbox.component.spec.ts +26 -0
  65. package/templates/angular/Checkbox/checkbox.component.ts +203 -0
  66. package/templates/angular/ColorPicker/color-picker.component.css +42 -0
  67. package/templates/angular/ColorPicker/color-picker.component.spec.ts +26 -0
  68. package/templates/angular/ColorPicker/color-picker.component.ts +303 -0
  69. package/templates/angular/Combobox/combobox.component.css +30 -0
  70. package/templates/angular/Combobox/combobox.component.spec.ts +26 -0
  71. package/templates/angular/Combobox/combobox.component.ts +300 -0
  72. package/templates/angular/Comparison/comparison.component.css +18 -0
  73. package/templates/angular/Comparison/comparison.component.spec.ts +26 -0
  74. package/templates/angular/Comparison/comparison.component.ts +72 -0
  75. package/templates/angular/CopyButton/copy-button.component.css +17 -0
  76. package/templates/angular/CopyButton/copy-button.component.spec.ts +26 -0
  77. package/templates/angular/CopyButton/copy-button.component.ts +100 -0
  78. package/templates/angular/Details/details.component.css +19 -0
  79. package/templates/angular/Details/details.component.spec.ts +26 -0
  80. package/templates/angular/Details/details.component.ts +117 -0
  81. package/templates/angular/Dialog/dialog.component.css +23 -0
  82. package/templates/angular/Dialog/dialog.component.spec.ts +26 -0
  83. package/templates/angular/Dialog/dialog.component.ts +102 -0
  84. package/templates/angular/Divider/divider.component.css +12 -0
  85. package/templates/angular/Divider/divider.component.spec.ts +26 -0
  86. package/templates/angular/Divider/divider.component.ts +57 -0
  87. package/templates/angular/DoughnutChart/doughnut-chart.component.css +27 -0
  88. package/templates/angular/DoughnutChart/doughnut-chart.component.spec.ts +26 -0
  89. package/templates/angular/DoughnutChart/doughnut-chart.component.ts +81 -0
  90. package/templates/angular/Drawer/drawer.component.css +23 -0
  91. package/templates/angular/Drawer/drawer.component.spec.ts +26 -0
  92. package/templates/angular/Drawer/drawer.component.ts +105 -0
  93. package/templates/angular/Dropdown/dropdown.component.css +15 -0
  94. package/templates/angular/Dropdown/dropdown.component.spec.ts +26 -0
  95. package/templates/angular/Dropdown/dropdown.component.ts +128 -0
  96. package/templates/angular/DropdownItem/dropdown-item.component.css +15 -0
  97. package/templates/angular/DropdownItem/dropdown-item.component.spec.ts +26 -0
  98. package/templates/angular/DropdownItem/dropdown-item.component.ts +105 -0
  99. package/templates/angular/FileInput/file-input.component.css +24 -0
  100. package/templates/angular/FileInput/file-input.component.spec.ts +26 -0
  101. package/templates/angular/FileInput/file-input.component.ts +196 -0
  102. package/templates/angular/FormatBytes/format-bytes.component.spec.ts +26 -0
  103. package/templates/angular/FormatBytes/format-bytes.component.ts +69 -0
  104. package/templates/angular/FormatDate/format-date.component.spec.ts +26 -0
  105. package/templates/angular/FormatDate/format-date.component.ts +96 -0
  106. package/templates/angular/FormatNumber/format-number.component.spec.ts +26 -0
  107. package/templates/angular/FormatNumber/format-number.component.ts +90 -0
  108. package/templates/angular/Icon/icon.component.css +38 -0
  109. package/templates/angular/Icon/icon.component.spec.ts +26 -0
  110. package/templates/angular/Icon/icon.component.ts +109 -0
  111. package/templates/angular/Include/include.component.spec.ts +26 -0
  112. package/templates/angular/Include/include.component.ts +88 -0
  113. package/templates/angular/Input/input.component.css +17 -0
  114. package/templates/angular/Input/input.component.spec.ts +26 -0
  115. package/templates/angular/Input/input.component.ts +344 -0
  116. package/templates/angular/IntersectionObserver/intersection-observer.component.spec.ts +26 -0
  117. package/templates/angular/IntersectionObserver/intersection-observer.component.ts +89 -0
  118. package/templates/angular/LineChart/line-chart.component.css +27 -0
  119. package/templates/angular/LineChart/line-chart.component.spec.ts +26 -0
  120. package/templates/angular/LineChart/line-chart.component.ts +102 -0
  121. package/templates/angular/Markdown/markdown.component.spec.ts +26 -0
  122. package/templates/angular/Markdown/markdown.component.ts +65 -0
  123. package/templates/angular/MutationObserver/mutation-observer.component.spec.ts +26 -0
  124. package/templates/angular/MutationObserver/mutation-observer.component.ts +95 -0
  125. package/templates/angular/NumberInput/number-input.component.css +19 -0
  126. package/templates/angular/NumberInput/number-input.component.spec.ts +26 -0
  127. package/templates/angular/NumberInput/number-input.component.ts +226 -0
  128. package/templates/angular/Option/option.component.css +13 -0
  129. package/templates/angular/Option/option.component.spec.ts +26 -0
  130. package/templates/angular/Option/option.component.ts +69 -0
  131. package/templates/angular/Page/page.component.css +36 -0
  132. package/templates/angular/Page/page.component.spec.ts +26 -0
  133. package/templates/angular/Page/page.component.ts +97 -0
  134. package/templates/angular/PieChart/pie-chart.component.css +27 -0
  135. package/templates/angular/PieChart/pie-chart.component.spec.ts +26 -0
  136. package/templates/angular/PieChart/pie-chart.component.ts +81 -0
  137. package/templates/angular/PolarAreaChart/polar-area-chart.component.css +27 -0
  138. package/templates/angular/PolarAreaChart/polar-area-chart.component.spec.ts +26 -0
  139. package/templates/angular/PolarAreaChart/polar-area-chart.component.ts +81 -0
  140. package/templates/angular/Popover/popover.component.css +20 -0
  141. package/templates/angular/Popover/popover.component.spec.ts +26 -0
  142. package/templates/angular/Popover/popover.component.ts +138 -0
  143. package/templates/angular/Popup/popup.component.css +21 -0
  144. package/templates/angular/Popup/popup.component.spec.ts +26 -0
  145. package/templates/angular/Popup/popup.component.ts +147 -0
  146. package/templates/angular/ProgressBar/progress-bar.component.css +17 -0
  147. package/templates/angular/ProgressBar/progress-bar.component.spec.ts +26 -0
  148. package/templates/angular/ProgressBar/progress-bar.component.ts +66 -0
  149. package/templates/angular/ProgressRing/progress-ring.component.css +21 -0
  150. package/templates/angular/ProgressRing/progress-ring.component.spec.ts +26 -0
  151. package/templates/angular/ProgressRing/progress-ring.component.ts +59 -0
  152. package/templates/angular/QrCode/qr-code.component.css +10 -0
  153. package/templates/angular/QrCode/qr-code.component.spec.ts +26 -0
  154. package/templates/angular/QrCode/qr-code.component.ts +78 -0
  155. package/templates/angular/RadarChart/radar-chart.component.css +27 -0
  156. package/templates/angular/RadarChart/radar-chart.component.spec.ts +26 -0
  157. package/templates/angular/RadarChart/radar-chart.component.ts +93 -0
  158. package/templates/angular/Radio/radio.component.css +16 -0
  159. package/templates/angular/Radio/radio.component.spec.ts +26 -0
  160. package/templates/angular/Radio/radio.component.ts +114 -0
  161. package/templates/angular/RadioGroup/radio-group.component.css +14 -0
  162. package/templates/angular/RadioGroup/radio-group.component.spec.ts +26 -0
  163. package/templates/angular/RadioGroup/radio-group.component.ts +194 -0
  164. package/templates/angular/Rating/rating.component.css +15 -0
  165. package/templates/angular/Rating/rating.component.spec.ts +26 -0
  166. package/templates/angular/Rating/rating.component.ts +182 -0
  167. package/templates/angular/RelativeTime/relative-time.component.spec.ts +26 -0
  168. package/templates/angular/RelativeTime/relative-time.component.ts +72 -0
  169. package/templates/angular/ResizeObserver/resize-observer.component.spec.ts +26 -0
  170. package/templates/angular/ResizeObserver/resize-observer.component.ts +72 -0
  171. package/templates/angular/ScatterChart/scatter-chart.component.css +27 -0
  172. package/templates/angular/ScatterChart/scatter-chart.component.spec.ts +26 -0
  173. package/templates/angular/ScatterChart/scatter-chart.component.ts +96 -0
  174. package/templates/angular/Scroller/scroller.component.css +14 -0
  175. package/templates/angular/Scroller/scroller.component.spec.ts +26 -0
  176. package/templates/angular/Scroller/scroller.component.ts +69 -0
  177. package/templates/angular/Select/select.component.css +30 -0
  178. package/templates/angular/Select/select.component.spec.ts +26 -0
  179. package/templates/angular/Select/select.component.ts +264 -0
  180. package/templates/angular/Skeleton/skeleton.component.css +14 -0
  181. package/templates/angular/Skeleton/skeleton.component.spec.ts +26 -0
  182. package/templates/angular/Skeleton/skeleton.component.ts +57 -0
  183. package/templates/angular/Slider/slider.component.css +31 -0
  184. package/templates/angular/Slider/slider.component.spec.ts +26 -0
  185. package/templates/angular/Slider/slider.component.ts +226 -0
  186. package/templates/angular/Sparkline/sparkline.component.css +17 -0
  187. package/templates/angular/Sparkline/sparkline.component.spec.ts +26 -0
  188. package/templates/angular/Sparkline/sparkline.component.ts +72 -0
  189. package/templates/angular/Spinner/spinner.component.css +16 -0
  190. package/templates/angular/Spinner/spinner.component.spec.ts +26 -0
  191. package/templates/angular/Spinner/spinner.component.ts +53 -0
  192. package/templates/angular/SplitPanel/split-panel.component.css +19 -0
  193. package/templates/angular/SplitPanel/split-panel.component.spec.ts +26 -0
  194. package/templates/angular/SplitPanel/split-panel.component.ts +96 -0
  195. package/templates/angular/Switch/switch.component.css +19 -0
  196. package/templates/angular/Switch/switch.component.spec.ts +26 -0
  197. package/templates/angular/Switch/switch.component.ts +200 -0
  198. package/templates/angular/Tab/tab.component.css +10 -0
  199. package/templates/angular/Tab/tab.component.spec.ts +26 -0
  200. package/templates/angular/Tab/tab.component.ts +59 -0
  201. package/templates/angular/TabGroup/tab-group.component.css +22 -0
  202. package/templates/angular/TabGroup/tab-group.component.spec.ts +26 -0
  203. package/templates/angular/TabGroup/tab-group.component.ts +92 -0
  204. package/templates/angular/TabPanel/tab-panel.component.css +13 -0
  205. package/templates/angular/TabPanel/tab-panel.component.spec.ts +26 -0
  206. package/templates/angular/TabPanel/tab-panel.component.ts +59 -0
  207. package/templates/angular/Tag/tag.component.css +13 -0
  208. package/templates/angular/Tag/tag.component.spec.ts +26 -0
  209. package/templates/angular/Tag/tag.component.ts +87 -0
  210. package/templates/angular/Textarea/textarea.component.css +15 -0
  211. package/templates/angular/Textarea/textarea.component.spec.ts +26 -0
  212. package/templates/angular/Textarea/textarea.component.ts +267 -0
  213. package/templates/angular/Toast/toast.component.css +14 -0
  214. package/templates/angular/Toast/toast.component.spec.ts +26 -0
  215. package/templates/angular/Toast/toast.component.ts +72 -0
  216. package/templates/angular/ToastItem/toast-item.component.css +26 -0
  217. package/templates/angular/ToastItem/toast-item.component.spec.ts +26 -0
  218. package/templates/angular/ToastItem/toast-item.component.ts +103 -0
  219. package/templates/angular/Tooltip/tooltip.component.css +16 -0
  220. package/templates/angular/Tooltip/tooltip.component.spec.ts +26 -0
  221. package/templates/angular/Tooltip/tooltip.component.ts +141 -0
  222. package/templates/angular/Tree/tree.component.css +17 -0
  223. package/templates/angular/Tree/tree.component.spec.ts +26 -0
  224. package/templates/angular/Tree/tree.component.ts +75 -0
  225. package/templates/angular/TreeItem/tree-item.component.css +27 -0
  226. package/templates/angular/TreeItem/tree-item.component.spec.ts +26 -0
  227. package/templates/angular/TreeItem/tree-item.component.ts +125 -0
  228. package/templates/angular/ZoomableFrame/zoomable-frame.component.css +13 -0
  229. package/templates/angular/ZoomableFrame/zoomable-frame.component.spec.ts +26 -0
  230. package/templates/angular/ZoomableFrame/zoomable-frame.component.ts +117 -0
  231. package/templates/angular/tsconfig.json +23 -0
  232. package/templates/react/AnimatedImage/AnimatedImage.css +14 -0
  233. package/templates/react/AnimatedImage/AnimatedImage.jsx +70 -0
  234. package/templates/react/AnimatedImage/AnimatedImage.test.tsx +29 -0
  235. package/templates/react/AnimatedImage/AnimatedImage.tsx +112 -0
  236. package/templates/react/Animation/Animation.jsx +112 -0
  237. package/templates/react/Animation/Animation.test.tsx +16 -0
  238. package/templates/react/Animation/Animation.tsx +170 -0
  239. package/templates/react/Avatar/Avatar.css +15 -0
  240. package/templates/react/Avatar/Avatar.jsx +67 -0
  241. package/templates/react/Avatar/Avatar.test.tsx +24 -0
  242. package/templates/react/Avatar/Avatar.tsx +109 -0
  243. package/templates/react/Badge/Badge.css +15 -0
  244. package/templates/react/Badge/Badge.jsx +61 -0
  245. package/templates/react/Badge/Badge.test.tsx +16 -0
  246. package/templates/react/Badge/Badge.tsx +87 -0
  247. package/templates/react/BarChart/BarChart.css +28 -0
  248. package/templates/react/BarChart/BarChart.jsx +76 -0
  249. package/templates/react/BarChart/BarChart.test.tsx +16 -0
  250. package/templates/react/BarChart/BarChart.tsx +120 -0
  251. package/templates/react/Breadcrumb/Breadcrumb.css +13 -0
  252. package/templates/react/Breadcrumb/Breadcrumb.jsx +57 -0
  253. package/templates/react/Breadcrumb/Breadcrumb.test.tsx +16 -0
  254. package/templates/react/Breadcrumb/Breadcrumb.tsx +81 -0
  255. package/templates/react/BreadcrumbItem/BreadcrumbItem.css +16 -0
  256. package/templates/react/BreadcrumbItem/BreadcrumbItem.jsx +68 -0
  257. package/templates/react/BreadcrumbItem/BreadcrumbItem.test.tsx +16 -0
  258. package/templates/react/BreadcrumbItem/BreadcrumbItem.tsx +88 -0
  259. package/templates/react/BubbleChart/BubbleChart.css +28 -0
  260. package/templates/react/BubbleChart/BubbleChart.jsx +71 -0
  261. package/templates/react/BubbleChart/BubbleChart.test.tsx +16 -0
  262. package/templates/react/BubbleChart/BubbleChart.tsx +117 -0
  263. package/templates/react/Button/Button.css +18 -0
  264. package/templates/react/Button/Button.jsx +124 -0
  265. package/templates/react/Button/Button.test.tsx +16 -0
  266. package/templates/react/Button/Button.tsx +247 -0
  267. package/templates/react/ButtonGroup/ButtonGroup.css +13 -0
  268. package/templates/react/ButtonGroup/ButtonGroup.jsx +61 -0
  269. package/templates/react/ButtonGroup/ButtonGroup.test.tsx +16 -0
  270. package/templates/react/ButtonGroup/ButtonGroup.tsx +84 -0
  271. package/templates/react/Callout/Callout.css +14 -0
  272. package/templates/react/Callout/Callout.jsx +34 -0
  273. package/templates/react/Callout/Callout.test.jsx +27 -0
  274. package/templates/react/Callout/Callout.test.tsx +16 -0
  275. package/templates/react/Callout/Callout.tsx +84 -0
  276. package/templates/react/Card/Card.css +16 -0
  277. package/templates/react/Card/Card.jsx +44 -0
  278. package/templates/react/Card/Card.test.tsx +16 -0
  279. package/templates/react/Card/Card.tsx +90 -0
  280. package/templates/react/Carousel/Carousel.css +23 -0
  281. package/templates/react/Carousel/Carousel.jsx +87 -0
  282. package/templates/react/Carousel/Carousel.test.tsx +16 -0
  283. package/templates/react/Carousel/Carousel.tsx +157 -0
  284. package/templates/react/CarouselItem/CarouselItem.css +11 -0
  285. package/templates/react/CarouselItem/CarouselItem.jsx +41 -0
  286. package/templates/react/CarouselItem/CarouselItem.test.tsx +16 -0
  287. package/templates/react/CarouselItem/CarouselItem.tsx +78 -0
  288. package/templates/react/Chart/Chart.css +28 -0
  289. package/templates/react/Chart/Chart.jsx +73 -0
  290. package/templates/react/Chart/Chart.test.tsx +16 -0
  291. package/templates/react/Chart/Chart.tsx +125 -0
  292. package/templates/react/Checkbox/Checkbox.css +19 -0
  293. package/templates/react/Checkbox/Checkbox.jsx +86 -0
  294. package/templates/react/Checkbox/Checkbox.test.tsx +16 -0
  295. package/templates/react/Checkbox/Checkbox.tsx +244 -0
  296. package/templates/react/ColorPicker/ColorPicker.css +42 -0
  297. package/templates/react/ColorPicker/ColorPicker.jsx +91 -0
  298. package/templates/react/ColorPicker/ColorPicker.test.tsx +16 -0
  299. package/templates/react/ColorPicker/ColorPicker.tsx +404 -0
  300. package/templates/react/Combobox/Combobox.css +30 -0
  301. package/templates/react/Combobox/Combobox.jsx +118 -0
  302. package/templates/react/Combobox/Combobox.test.tsx +16 -0
  303. package/templates/react/Combobox/Combobox.tsx +395 -0
  304. package/templates/react/Comparison/Comparison.css +18 -0
  305. package/templates/react/Comparison/Comparison.jsx +36 -0
  306. package/templates/react/Comparison/Comparison.test.tsx +16 -0
  307. package/templates/react/Comparison/Comparison.tsx +97 -0
  308. package/templates/react/CopyButton/CopyButton.css +20 -0
  309. package/templates/react/CopyButton/CopyButton.jsx +59 -0
  310. package/templates/react/CopyButton/CopyButton.test.jsx +18 -0
  311. package/templates/react/CopyButton/CopyButton.test.tsx +16 -0
  312. package/templates/react/CopyButton/CopyButton.tsx +127 -0
  313. package/templates/react/Details/Details.css +19 -0
  314. package/templates/react/Details/Details.jsx +75 -0
  315. package/templates/react/Details/Details.test.jsx +25 -0
  316. package/templates/react/Details/Details.test.tsx +16 -0
  317. package/templates/react/Details/Details.tsx +167 -0
  318. package/templates/react/Dialog/Dialog.css +23 -0
  319. package/templates/react/Dialog/Dialog.jsx +120 -0
  320. package/templates/react/Dialog/Dialog.test.jsx +33 -0
  321. package/templates/react/Dialog/Dialog.test.tsx +24 -0
  322. package/templates/react/Dialog/Dialog.tsx +136 -0
  323. package/templates/react/Divider/Divider.css +13 -0
  324. package/templates/react/Divider/Divider.jsx +33 -0
  325. package/templates/react/Divider/Divider.test.jsx +19 -0
  326. package/templates/react/Divider/Divider.test.tsx +16 -0
  327. package/templates/react/Divider/Divider.tsx +78 -0
  328. package/templates/react/DoughnutChart/DoughnutChart.css +28 -0
  329. package/templates/react/DoughnutChart/DoughnutChart.jsx +65 -0
  330. package/templates/react/DoughnutChart/DoughnutChart.test.tsx +16 -0
  331. package/templates/react/DoughnutChart/DoughnutChart.tsx +96 -0
  332. package/templates/react/Drawer/Drawer.css +23 -0
  333. package/templates/react/Drawer/Drawer.jsx +124 -0
  334. package/templates/react/Drawer/Drawer.test.jsx +23 -0
  335. package/templates/react/Drawer/Drawer.test.tsx +16 -0
  336. package/templates/react/Drawer/Drawer.tsx +139 -0
  337. package/templates/react/Dropdown/Dropdown.css +15 -0
  338. package/templates/react/Dropdown/Dropdown.jsx +97 -0
  339. package/templates/react/Dropdown/Dropdown.test.tsx +16 -0
  340. package/templates/react/Dropdown/Dropdown.tsx +178 -0
  341. package/templates/react/DropdownItem/DropdownItem.css +18 -0
  342. package/templates/react/DropdownItem/DropdownItem.jsx +50 -0
  343. package/templates/react/DropdownItem/DropdownItem.test.tsx +16 -0
  344. package/templates/react/DropdownItem/DropdownItem.tsx +146 -0
  345. package/templates/react/FileInput/FileInput.css +27 -0
  346. package/templates/react/FileInput/FileInput.jsx +126 -0
  347. package/templates/react/FileInput/FileInput.test.tsx +16 -0
  348. package/templates/react/FileInput/FileInput.tsx +230 -0
  349. package/templates/react/FormatBytes/FormatBytes.jsx +32 -0
  350. package/templates/react/FormatBytes/FormatBytes.test.jsx +19 -0
  351. package/templates/react/FormatBytes/FormatBytes.test.tsx +16 -0
  352. package/templates/react/FormatBytes/FormatBytes.tsx +90 -0
  353. package/templates/react/FormatDate/FormatDate.jsx +25 -0
  354. package/templates/react/FormatDate/FormatDate.test.tsx +16 -0
  355. package/templates/react/FormatDate/FormatDate.tsx +117 -0
  356. package/templates/react/FormatNumber/FormatNumber.jsx +25 -0
  357. package/templates/react/FormatNumber/FormatNumber.test.jsx +19 -0
  358. package/templates/react/FormatNumber/FormatNumber.test.tsx +16 -0
  359. package/templates/react/FormatNumber/FormatNumber.tsx +111 -0
  360. package/templates/react/Icon/Icon.css +38 -0
  361. package/templates/react/Icon/Icon.jsx +88 -0
  362. package/templates/react/Icon/Icon.test.jsx +37 -0
  363. package/templates/react/Icon/Icon.test.tsx +16 -0
  364. package/templates/react/Icon/Icon.tsx +136 -0
  365. package/templates/react/Include/Include.jsx +46 -0
  366. package/templates/react/Include/Include.test.jsx +19 -0
  367. package/templates/react/Include/Include.test.tsx +16 -0
  368. package/templates/react/Include/Include.tsx +112 -0
  369. package/templates/react/Input/Input.css +20 -0
  370. package/templates/react/Input/Input.jsx +158 -0
  371. package/templates/react/Input/Input.test.tsx +16 -0
  372. package/templates/react/Input/Input.tsx +417 -0
  373. package/templates/react/IntersectionObserver/IntersectionObserver.jsx +44 -0
  374. package/templates/react/IntersectionObserver/IntersectionObserver.test.jsx +17 -0
  375. package/templates/react/IntersectionObserver/IntersectionObserver.test.tsx +18 -0
  376. package/templates/react/IntersectionObserver/IntersectionObserver.tsx +113 -0
  377. package/templates/react/LineChart/LineChart.css +28 -0
  378. package/templates/react/LineChart/LineChart.jsx +75 -0
  379. package/templates/react/LineChart/LineChart.test.tsx +16 -0
  380. package/templates/react/LineChart/LineChart.tsx +117 -0
  381. package/templates/react/Markdown/Markdown.css +11 -0
  382. package/templates/react/Markdown/Markdown.jsx +25 -0
  383. package/templates/react/Markdown/Markdown.test.tsx +16 -0
  384. package/templates/react/Markdown/Markdown.tsx +95 -0
  385. package/templates/react/MutationObserver/MutationObserver.jsx +44 -0
  386. package/templates/react/MutationObserver/MutationObserver.test.tsx +16 -0
  387. package/templates/react/MutationObserver/MutationObserver.tsx +119 -0
  388. package/templates/react/NumberInput/NumberInput.css +22 -0
  389. package/templates/react/NumberInput/NumberInput.jsx +148 -0
  390. package/templates/react/NumberInput/NumberInput.test.tsx +16 -0
  391. package/templates/react/NumberInput/NumberInput.tsx +279 -0
  392. package/templates/react/Option/Option.css +16 -0
  393. package/templates/react/Option/Option.jsx +25 -0
  394. package/templates/react/Option/Option.test.tsx +16 -0
  395. package/templates/react/Option/Option.tsx +87 -0
  396. package/templates/react/Page/Page.css +36 -0
  397. package/templates/react/Page/Page.jsx +133 -0
  398. package/templates/react/Page/Page.test.tsx +16 -0
  399. package/templates/react/Page/Page.tsx +138 -0
  400. package/templates/react/PieChart/PieChart.css +28 -0
  401. package/templates/react/PieChart/PieChart.jsx +65 -0
  402. package/templates/react/PieChart/PieChart.test.tsx +16 -0
  403. package/templates/react/PieChart/PieChart.tsx +96 -0
  404. package/templates/react/PolarAreaChart/PolarAreaChart.css +28 -0
  405. package/templates/react/PolarAreaChart/PolarAreaChart.jsx +65 -0
  406. package/templates/react/PolarAreaChart/PolarAreaChart.test.tsx +16 -0
  407. package/templates/react/PolarAreaChart/PolarAreaChart.tsx +97 -0
  408. package/templates/react/Popover/Popover.css +20 -0
  409. package/templates/react/Popover/Popover.jsx +86 -0
  410. package/templates/react/Popover/Popover.test.tsx +16 -0
  411. package/templates/react/Popover/Popover.tsx +188 -0
  412. package/templates/react/Popup/Popup.css +21 -0
  413. package/templates/react/Popup/Popup.jsx +47 -0
  414. package/templates/react/Popup/Popup.test.tsx +16 -0
  415. package/templates/react/Popup/Popup.tsx +174 -0
  416. package/templates/react/ProgressBar/ProgressBar.css +17 -0
  417. package/templates/react/ProgressBar/ProgressBar.jsx +29 -0
  418. package/templates/react/ProgressBar/ProgressBar.test.jsx +19 -0
  419. package/templates/react/ProgressBar/ProgressBar.test.tsx +16 -0
  420. package/templates/react/ProgressBar/ProgressBar.tsx +87 -0
  421. package/templates/react/ProgressRing/ProgressRing.css +21 -0
  422. package/templates/react/ProgressRing/ProgressRing.jsx +29 -0
  423. package/templates/react/ProgressRing/ProgressRing.test.jsx +19 -0
  424. package/templates/react/ProgressRing/ProgressRing.test.tsx +16 -0
  425. package/templates/react/ProgressRing/ProgressRing.tsx +84 -0
  426. package/templates/react/QrCode/QrCode.css +13 -0
  427. package/templates/react/QrCode/QrCode.jsx +19 -0
  428. package/templates/react/QrCode/QrCode.test.tsx +16 -0
  429. package/templates/react/QrCode/QrCode.tsx +96 -0
  430. package/templates/react/RadarChart/RadarChart.css +28 -0
  431. package/templates/react/RadarChart/RadarChart.jsx +72 -0
  432. package/templates/react/RadarChart/RadarChart.test.tsx +16 -0
  433. package/templates/react/RadarChart/RadarChart.tsx +108 -0
  434. package/templates/react/Radio/Radio.css +16 -0
  435. package/templates/react/Radio/Radio.jsx +25 -0
  436. package/templates/react/Radio/Radio.test.tsx +16 -0
  437. package/templates/react/Radio/Radio.tsx +160 -0
  438. package/templates/react/RadioGroup/RadioGroup.css +17 -0
  439. package/templates/react/RadioGroup/RadioGroup.jsx +55 -0
  440. package/templates/react/RadioGroup/RadioGroup.test.tsx +16 -0
  441. package/templates/react/RadioGroup/RadioGroup.tsx +198 -0
  442. package/templates/react/Rating/Rating.css +15 -0
  443. package/templates/react/Rating/Rating.jsx +50 -0
  444. package/templates/react/Rating/Rating.test.tsx +16 -0
  445. package/templates/react/Rating/Rating.tsx +184 -0
  446. package/templates/react/RelativeTime/RelativeTime.jsx +25 -0
  447. package/templates/react/RelativeTime/RelativeTime.test.tsx +16 -0
  448. package/templates/react/RelativeTime/RelativeTime.tsx +93 -0
  449. package/templates/react/ResizeObserver/ResizeObserver.jsx +44 -0
  450. package/templates/react/ResizeObserver/ResizeObserver.test.tsx +16 -0
  451. package/templates/react/ResizeObserver/ResizeObserver.tsx +98 -0
  452. package/templates/react/ScatterChart/ScatterChart.css +28 -0
  453. package/templates/react/ScatterChart/ScatterChart.jsx +69 -0
  454. package/templates/react/ScatterChart/ScatterChart.test.tsx +16 -0
  455. package/templates/react/ScatterChart/ScatterChart.tsx +111 -0
  456. package/templates/react/Scroller/Scroller.css +14 -0
  457. package/templates/react/Scroller/Scroller.jsx +25 -0
  458. package/templates/react/Scroller/Scroller.test.tsx +16 -0
  459. package/templates/react/Scroller/Scroller.tsx +90 -0
  460. package/templates/react/Select/Select.css +30 -0
  461. package/templates/react/Select/Select.jsx +104 -0
  462. package/templates/react/Select/Select.test.tsx +16 -0
  463. package/templates/react/Select/Select.tsx +356 -0
  464. package/templates/react/Skeleton/Skeleton.css +14 -0
  465. package/templates/react/Skeleton/Skeleton.jsx +21 -0
  466. package/templates/react/Skeleton/Skeleton.test.tsx +16 -0
  467. package/templates/react/Skeleton/Skeleton.tsx +81 -0
  468. package/templates/react/Slider/Slider.css +31 -0
  469. package/templates/react/Slider/Slider.jsx +52 -0
  470. package/templates/react/Slider/Slider.test.tsx +16 -0
  471. package/templates/react/Slider/Slider.tsx +278 -0
  472. package/templates/react/Sparkline/Sparkline.css +17 -0
  473. package/templates/react/Sparkline/Sparkline.jsx +70 -0
  474. package/templates/react/Sparkline/Sparkline.test.jsx +17 -0
  475. package/templates/react/Sparkline/Sparkline.test.tsx +16 -0
  476. package/templates/react/Sparkline/Sparkline.tsx +93 -0
  477. package/templates/react/Spinner/Spinner.css +16 -0
  478. package/templates/react/Spinner/Spinner.jsx +19 -0
  479. package/templates/react/Spinner/Spinner.test.tsx +16 -0
  480. package/templates/react/Spinner/Spinner.tsx +78 -0
  481. package/templates/react/SplitPanel/SplitPanel.css +19 -0
  482. package/templates/react/SplitPanel/SplitPanel.jsx +44 -0
  483. package/templates/react/SplitPanel/SplitPanel.test.tsx +16 -0
  484. package/templates/react/SplitPanel/SplitPanel.tsx +115 -0
  485. package/templates/react/Switch/Switch.css +19 -0
  486. package/templates/react/Switch/Switch.jsx +53 -0
  487. package/templates/react/Switch/Switch.test.tsx +16 -0
  488. package/templates/react/Switch/Switch.tsx +241 -0
  489. package/templates/react/Tab/Tab.css +13 -0
  490. package/templates/react/Tab/Tab.jsx +25 -0
  491. package/templates/react/Tab/Tab.test.tsx +16 -0
  492. package/templates/react/Tab/Tab.tsx +81 -0
  493. package/templates/react/TabGroup/TabGroup.css +22 -0
  494. package/templates/react/TabGroup/TabGroup.jsx +48 -0
  495. package/templates/react/TabGroup/TabGroup.test.tsx +16 -0
  496. package/templates/react/TabGroup/TabGroup.tsx +115 -0
  497. package/templates/react/TabPanel/TabPanel.css +13 -0
  498. package/templates/react/TabPanel/TabPanel.jsx +25 -0
  499. package/templates/react/TabPanel/TabPanel.test.tsx +16 -0
  500. package/templates/react/TabPanel/TabPanel.tsx +84 -0
  501. package/templates/react/Tag/Tag.css +16 -0
  502. package/templates/react/Tag/Tag.jsx +47 -0
  503. package/templates/react/Tag/Tag.test.tsx +16 -0
  504. package/templates/react/Tag/Tag.tsx +109 -0
  505. package/templates/react/Textarea/Textarea.css +18 -0
  506. package/templates/react/Textarea/Textarea.jsx +76 -0
  507. package/templates/react/Textarea/Textarea.test.tsx +16 -0
  508. package/templates/react/Textarea/Textarea.tsx +328 -0
  509. package/templates/react/Toast/Toast.css +14 -0
  510. package/templates/react/Toast/Toast.jsx +62 -0
  511. package/templates/react/Toast/Toast.test.tsx +16 -0
  512. package/templates/react/Toast/Toast.tsx +100 -0
  513. package/templates/react/ToastItem/ToastItem.css +26 -0
  514. package/templates/react/ToastItem/ToastItem.jsx +91 -0
  515. package/templates/react/ToastItem/ToastItem.test.jsx +17 -0
  516. package/templates/react/ToastItem/ToastItem.test.tsx +16 -0
  517. package/templates/react/ToastItem/ToastItem.tsx +147 -0
  518. package/templates/react/Tooltip/Tooltip.css +16 -0
  519. package/templates/react/Tooltip/Tooltip.jsx +85 -0
  520. package/templates/react/Tooltip/Tooltip.test.tsx +16 -0
  521. package/templates/react/Tooltip/Tooltip.tsx +191 -0
  522. package/templates/react/Tree/Tree.css +17 -0
  523. package/templates/react/Tree/Tree.jsx +47 -0
  524. package/templates/react/Tree/Tree.test.tsx +16 -0
  525. package/templates/react/Tree/Tree.tsx +97 -0
  526. package/templates/react/TreeItem/TreeItem.css +27 -0
  527. package/templates/react/TreeItem/TreeItem.jsx +88 -0
  528. package/templates/react/TreeItem/TreeItem.test.tsx +16 -0
  529. package/templates/react/TreeItem/TreeItem.tsx +191 -0
  530. package/templates/react/ZoomableFrame/ZoomableFrame.css +16 -0
  531. package/templates/react/ZoomableFrame/ZoomableFrame.jsx +62 -0
  532. package/templates/react/ZoomableFrame/ZoomableFrame.test.tsx +16 -0
  533. package/templates/react/ZoomableFrame/ZoomableFrame.tsx +158 -0
  534. package/templates/react/tsconfig.json +32 -0
  535. package/templates/vue/AnimatedImage/AnimatedImage.css +14 -0
  536. package/templates/vue/AnimatedImage/AnimatedImage.js.vue +72 -0
  537. package/templates/vue/AnimatedImage/AnimatedImage.test.js +10 -0
  538. package/templates/vue/AnimatedImage/AnimatedImage.test.ts +10 -0
  539. package/templates/vue/AnimatedImage/AnimatedImage.vue +77 -0
  540. package/templates/vue/Animation/Animation.js.vue +81 -0
  541. package/templates/vue/Animation/Animation.test.js +10 -0
  542. package/templates/vue/Animation/Animation.test.ts +10 -0
  543. package/templates/vue/Animation/Animation.vue +87 -0
  544. package/templates/vue/Avatar/Avatar.css +15 -0
  545. package/templates/vue/Avatar/Avatar.js.vue +67 -0
  546. package/templates/vue/Avatar/Avatar.test.js +10 -0
  547. package/templates/vue/Avatar/Avatar.test.ts +10 -0
  548. package/templates/vue/Avatar/Avatar.vue +71 -0
  549. package/templates/vue/Badge/Badge.css +15 -0
  550. package/templates/vue/Badge/Badge.js.vue +50 -0
  551. package/templates/vue/Badge/Badge.test.js +10 -0
  552. package/templates/vue/Badge/Badge.test.ts +10 -0
  553. package/templates/vue/Badge/Badge.vue +54 -0
  554. package/templates/vue/BarChart/BarChart.css +28 -0
  555. package/templates/vue/BarChart/BarChart.js.vue +60 -0
  556. package/templates/vue/BarChart/BarChart.test.js +10 -0
  557. package/templates/vue/BarChart/BarChart.test.ts +10 -0
  558. package/templates/vue/BarChart/BarChart.vue +64 -0
  559. package/templates/vue/Breadcrumb/Breadcrumb.css +13 -0
  560. package/templates/vue/Breadcrumb/Breadcrumb.js.vue +47 -0
  561. package/templates/vue/Breadcrumb/Breadcrumb.test.js +10 -0
  562. package/templates/vue/Breadcrumb/Breadcrumb.test.ts +10 -0
  563. package/templates/vue/Breadcrumb/Breadcrumb.vue +51 -0
  564. package/templates/vue/BreadcrumbItem/BreadcrumbItem.css +16 -0
  565. package/templates/vue/BreadcrumbItem/BreadcrumbItem.js.vue +53 -0
  566. package/templates/vue/BreadcrumbItem/BreadcrumbItem.test.js +10 -0
  567. package/templates/vue/BreadcrumbItem/BreadcrumbItem.test.ts +10 -0
  568. package/templates/vue/BreadcrumbItem/BreadcrumbItem.vue +57 -0
  569. package/templates/vue/BubbleChart/BubbleChart.css +28 -0
  570. package/templates/vue/BubbleChart/BubbleChart.js.vue +59 -0
  571. package/templates/vue/BubbleChart/BubbleChart.test.js +10 -0
  572. package/templates/vue/BubbleChart/BubbleChart.test.ts +10 -0
  573. package/templates/vue/BubbleChart/BubbleChart.vue +63 -0
  574. package/templates/vue/Button/Button.css +18 -0
  575. package/templates/vue/Button/Button.js.vue +95 -0
  576. package/templates/vue/Button/Button.test.js +10 -0
  577. package/templates/vue/Button/Button.test.ts +10 -0
  578. package/templates/vue/Button/Button.vue +103 -0
  579. package/templates/vue/ButtonGroup/ButtonGroup.css +13 -0
  580. package/templates/vue/ButtonGroup/ButtonGroup.js.vue +48 -0
  581. package/templates/vue/ButtonGroup/ButtonGroup.test.js +10 -0
  582. package/templates/vue/ButtonGroup/ButtonGroup.test.ts +10 -0
  583. package/templates/vue/ButtonGroup/ButtonGroup.vue +52 -0
  584. package/templates/vue/Callout/Callout.css +14 -0
  585. package/templates/vue/Callout/Callout.js.vue +49 -0
  586. package/templates/vue/Callout/Callout.test.js +10 -0
  587. package/templates/vue/Callout/Callout.test.ts +10 -0
  588. package/templates/vue/Callout/Callout.vue +53 -0
  589. package/templates/vue/Card/Card.css +16 -0
  590. package/templates/vue/Card/Card.js.vue +51 -0
  591. package/templates/vue/Card/Card.test.js +10 -0
  592. package/templates/vue/Card/Card.test.ts +10 -0
  593. package/templates/vue/Card/Card.vue +55 -0
  594. package/templates/vue/Carousel/Carousel.css +23 -0
  595. package/templates/vue/Carousel/Carousel.js.vue +75 -0
  596. package/templates/vue/Carousel/Carousel.test.js +10 -0
  597. package/templates/vue/Carousel/Carousel.test.ts +10 -0
  598. package/templates/vue/Carousel/Carousel.vue +82 -0
  599. package/templates/vue/CarouselItem/CarouselItem.css +11 -0
  600. package/templates/vue/CarouselItem/CarouselItem.js.vue +49 -0
  601. package/templates/vue/CarouselItem/CarouselItem.test.js +10 -0
  602. package/templates/vue/CarouselItem/CarouselItem.test.ts +10 -0
  603. package/templates/vue/CarouselItem/CarouselItem.vue +53 -0
  604. package/templates/vue/Chart/Chart.css +28 -0
  605. package/templates/vue/Chart/Chart.js.vue +60 -0
  606. package/templates/vue/Chart/Chart.test.js +10 -0
  607. package/templates/vue/Chart/Chart.test.ts +10 -0
  608. package/templates/vue/Chart/Chart.vue +72 -0
  609. package/templates/vue/Checkbox/Checkbox.css +19 -0
  610. package/templates/vue/Checkbox/Checkbox.js.vue +104 -0
  611. package/templates/vue/Checkbox/Checkbox.test.js +10 -0
  612. package/templates/vue/Checkbox/Checkbox.test.ts +10 -0
  613. package/templates/vue/Checkbox/Checkbox.vue +114 -0
  614. package/templates/vue/ColorPicker/ColorPicker.css +42 -0
  615. package/templates/vue/ColorPicker/ColorPicker.js.vue +138 -0
  616. package/templates/vue/ColorPicker/ColorPicker.test.js +10 -0
  617. package/templates/vue/ColorPicker/ColorPicker.test.ts +10 -0
  618. package/templates/vue/ColorPicker/ColorPicker.vue +166 -0
  619. package/templates/vue/Combobox/Combobox.css +30 -0
  620. package/templates/vue/Combobox/Combobox.js.vue +149 -0
  621. package/templates/vue/Combobox/Combobox.test.js +10 -0
  622. package/templates/vue/Combobox/Combobox.test.ts +10 -0
  623. package/templates/vue/Combobox/Combobox.vue +168 -0
  624. package/templates/vue/Comparison/Comparison.css +18 -0
  625. package/templates/vue/Comparison/Comparison.js.vue +63 -0
  626. package/templates/vue/Comparison/Comparison.test.js +10 -0
  627. package/templates/vue/Comparison/Comparison.test.ts +10 -0
  628. package/templates/vue/Comparison/Comparison.vue +67 -0
  629. package/templates/vue/CopyButton/CopyButton.css +20 -0
  630. package/templates/vue/CopyButton/CopyButton.js.vue +73 -0
  631. package/templates/vue/CopyButton/CopyButton.test.js +10 -0
  632. package/templates/vue/CopyButton/CopyButton.test.ts +10 -0
  633. package/templates/vue/CopyButton/CopyButton.vue +78 -0
  634. package/templates/vue/Details/Details.css +19 -0
  635. package/templates/vue/Details/Details.js.vue +101 -0
  636. package/templates/vue/Details/Details.test.js +10 -0
  637. package/templates/vue/Details/Details.test.ts +10 -0
  638. package/templates/vue/Details/Details.vue +103 -0
  639. package/templates/vue/Dialog/Dialog.css +23 -0
  640. package/templates/vue/Dialog/Dialog.js.vue +99 -0
  641. package/templates/vue/Dialog/Dialog.test.js +10 -0
  642. package/templates/vue/Dialog/Dialog.test.ts +10 -0
  643. package/templates/vue/Dialog/Dialog.vue +101 -0
  644. package/templates/vue/Divider/Divider.css +13 -0
  645. package/templates/vue/Divider/Divider.js.vue +47 -0
  646. package/templates/vue/Divider/Divider.test.js +10 -0
  647. package/templates/vue/Divider/Divider.test.ts +10 -0
  648. package/templates/vue/Divider/Divider.vue +51 -0
  649. package/templates/vue/DoughnutChart/DoughnutChart.css +28 -0
  650. package/templates/vue/DoughnutChart/DoughnutChart.js.vue +56 -0
  651. package/templates/vue/DoughnutChart/DoughnutChart.test.js +10 -0
  652. package/templates/vue/DoughnutChart/DoughnutChart.test.ts +10 -0
  653. package/templates/vue/DoughnutChart/DoughnutChart.vue +60 -0
  654. package/templates/vue/Drawer/Drawer.css +23 -0
  655. package/templates/vue/Drawer/Drawer.js.vue +100 -0
  656. package/templates/vue/Drawer/Drawer.test.js +10 -0
  657. package/templates/vue/Drawer/Drawer.test.ts +10 -0
  658. package/templates/vue/Drawer/Drawer.vue +102 -0
  659. package/templates/vue/Dropdown/Dropdown.css +15 -0
  660. package/templates/vue/Dropdown/Dropdown.js.vue +105 -0
  661. package/templates/vue/Dropdown/Dropdown.test.js +10 -0
  662. package/templates/vue/Dropdown/Dropdown.test.ts +10 -0
  663. package/templates/vue/Dropdown/Dropdown.vue +119 -0
  664. package/templates/vue/DropdownItem/DropdownItem.css +18 -0
  665. package/templates/vue/DropdownItem/DropdownItem.js.vue +77 -0
  666. package/templates/vue/DropdownItem/DropdownItem.test.js +10 -0
  667. package/templates/vue/DropdownItem/DropdownItem.test.ts +10 -0
  668. package/templates/vue/DropdownItem/DropdownItem.vue +82 -0
  669. package/templates/vue/FileInput/FileInput.css +27 -0
  670. package/templates/vue/FileInput/FileInput.js.vue +88 -0
  671. package/templates/vue/FileInput/FileInput.test.js +10 -0
  672. package/templates/vue/FileInput/FileInput.test.ts +10 -0
  673. package/templates/vue/FileInput/FileInput.vue +98 -0
  674. package/templates/vue/FormatBytes/FormatBytes.js.vue +50 -0
  675. package/templates/vue/FormatBytes/FormatBytes.test.js +10 -0
  676. package/templates/vue/FormatBytes/FormatBytes.test.ts +10 -0
  677. package/templates/vue/FormatBytes/FormatBytes.vue +54 -0
  678. package/templates/vue/FormatDate/FormatDate.js.vue +59 -0
  679. package/templates/vue/FormatDate/FormatDate.test.js +10 -0
  680. package/templates/vue/FormatDate/FormatDate.test.ts +10 -0
  681. package/templates/vue/FormatDate/FormatDate.vue +63 -0
  682. package/templates/vue/FormatNumber/FormatNumber.js.vue +61 -0
  683. package/templates/vue/FormatNumber/FormatNumber.test.js +10 -0
  684. package/templates/vue/FormatNumber/FormatNumber.test.ts +10 -0
  685. package/templates/vue/FormatNumber/FormatNumber.vue +65 -0
  686. package/templates/vue/Icon/Icon.css +38 -0
  687. package/templates/vue/Icon/Icon.js.vue +76 -0
  688. package/templates/vue/Icon/Icon.test.js +10 -0
  689. package/templates/vue/Icon/Icon.test.ts +10 -0
  690. package/templates/vue/Icon/Icon.vue +81 -0
  691. package/templates/vue/Include/Include.js.vue +68 -0
  692. package/templates/vue/Include/Include.test.js +10 -0
  693. package/templates/vue/Include/Include.test.ts +10 -0
  694. package/templates/vue/Include/Include.vue +74 -0
  695. package/templates/vue/Input/Input.css +20 -0
  696. package/templates/vue/Input/Input.js.vue +145 -0
  697. package/templates/vue/Input/Input.test.js +10 -0
  698. package/templates/vue/Input/Input.test.ts +10 -0
  699. package/templates/vue/Input/Input.vue +186 -0
  700. package/templates/vue/IntersectionObserver/IntersectionObserver.js.vue +71 -0
  701. package/templates/vue/IntersectionObserver/IntersectionObserver.test.js +10 -0
  702. package/templates/vue/IntersectionObserver/IntersectionObserver.test.ts +10 -0
  703. package/templates/vue/IntersectionObserver/IntersectionObserver.vue +75 -0
  704. package/templates/vue/LineChart/LineChart.css +28 -0
  705. package/templates/vue/LineChart/LineChart.js.vue +59 -0
  706. package/templates/vue/LineChart/LineChart.test.js +10 -0
  707. package/templates/vue/LineChart/LineChart.test.ts +10 -0
  708. package/templates/vue/LineChart/LineChart.vue +63 -0
  709. package/templates/vue/Markdown/Markdown.css +11 -0
  710. package/templates/vue/Markdown/Markdown.js.vue +50 -0
  711. package/templates/vue/Markdown/Markdown.test.js +10 -0
  712. package/templates/vue/Markdown/Markdown.test.ts +10 -0
  713. package/templates/vue/Markdown/Markdown.vue +54 -0
  714. package/templates/vue/MutationObserver/MutationObserver.js.vue +73 -0
  715. package/templates/vue/MutationObserver/MutationObserver.test.js +10 -0
  716. package/templates/vue/MutationObserver/MutationObserver.test.ts +10 -0
  717. package/templates/vue/MutationObserver/MutationObserver.vue +77 -0
  718. package/templates/vue/NumberInput/NumberInput.css +22 -0
  719. package/templates/vue/NumberInput/NumberInput.js.vue +110 -0
  720. package/templates/vue/NumberInput/NumberInput.test.js +10 -0
  721. package/templates/vue/NumberInput/NumberInput.test.ts +10 -0
  722. package/templates/vue/NumberInput/NumberInput.vue +120 -0
  723. package/templates/vue/Option/Option.css +16 -0
  724. package/templates/vue/Option/Option.js.vue +50 -0
  725. package/templates/vue/Option/Option.test.js +10 -0
  726. package/templates/vue/Option/Option.test.ts +10 -0
  727. package/templates/vue/Option/Option.vue +54 -0
  728. package/templates/vue/Page/Page.css +36 -0
  729. package/templates/vue/Page/Page.js.vue +60 -0
  730. package/templates/vue/Page/Page.test.js +10 -0
  731. package/templates/vue/Page/Page.test.ts +10 -0
  732. package/templates/vue/Page/Page.vue +60 -0
  733. package/templates/vue/PieChart/PieChart.css +28 -0
  734. package/templates/vue/PieChart/PieChart.js.vue +52 -0
  735. package/templates/vue/PieChart/PieChart.test.js +10 -0
  736. package/templates/vue/PieChart/PieChart.test.ts +10 -0
  737. package/templates/vue/PieChart/PieChart.vue +56 -0
  738. package/templates/vue/PolarAreaChart/PolarAreaChart.css +28 -0
  739. package/templates/vue/PolarAreaChart/PolarAreaChart.js.vue +56 -0
  740. package/templates/vue/PolarAreaChart/PolarAreaChart.test.js +10 -0
  741. package/templates/vue/PolarAreaChart/PolarAreaChart.test.ts +10 -0
  742. package/templates/vue/PolarAreaChart/PolarAreaChart.vue +60 -0
  743. package/templates/vue/Popover/Popover.css +20 -0
  744. package/templates/vue/Popover/Popover.js.vue +104 -0
  745. package/templates/vue/Popover/Popover.test.js +10 -0
  746. package/templates/vue/Popover/Popover.test.ts +10 -0
  747. package/templates/vue/Popover/Popover.vue +118 -0
  748. package/templates/vue/Popup/Popup.css +21 -0
  749. package/templates/vue/Popup/Popup.js.vue +85 -0
  750. package/templates/vue/Popup/Popup.test.js +10 -0
  751. package/templates/vue/Popup/Popup.test.ts +10 -0
  752. package/templates/vue/Popup/Popup.vue +98 -0
  753. package/templates/vue/ProgressBar/ProgressBar.css +17 -0
  754. package/templates/vue/ProgressBar/ProgressBar.js.vue +49 -0
  755. package/templates/vue/ProgressBar/ProgressBar.test.js +10 -0
  756. package/templates/vue/ProgressBar/ProgressBar.test.ts +10 -0
  757. package/templates/vue/ProgressBar/ProgressBar.vue +53 -0
  758. package/templates/vue/ProgressRing/ProgressRing.css +21 -0
  759. package/templates/vue/ProgressRing/ProgressRing.js.vue +52 -0
  760. package/templates/vue/ProgressRing/ProgressRing.test.js +10 -0
  761. package/templates/vue/ProgressRing/ProgressRing.test.ts +10 -0
  762. package/templates/vue/ProgressRing/ProgressRing.vue +56 -0
  763. package/templates/vue/QrCode/QrCode.css +13 -0
  764. package/templates/vue/QrCode/QrCode.js.vue +53 -0
  765. package/templates/vue/QrCode/QrCode.test.js +10 -0
  766. package/templates/vue/QrCode/QrCode.test.ts +10 -0
  767. package/templates/vue/QrCode/QrCode.vue +57 -0
  768. package/templates/vue/RadarChart/RadarChart.css +28 -0
  769. package/templates/vue/RadarChart/RadarChart.js.vue +56 -0
  770. package/templates/vue/RadarChart/RadarChart.test.js +10 -0
  771. package/templates/vue/RadarChart/RadarChart.test.ts +10 -0
  772. package/templates/vue/RadarChart/RadarChart.vue +60 -0
  773. package/templates/vue/Radio/Radio.css +16 -0
  774. package/templates/vue/Radio/Radio.js.vue +74 -0
  775. package/templates/vue/Radio/Radio.test.js +10 -0
  776. package/templates/vue/Radio/Radio.test.ts +10 -0
  777. package/templates/vue/Radio/Radio.vue +81 -0
  778. package/templates/vue/RadioGroup/RadioGroup.css +17 -0
  779. package/templates/vue/RadioGroup/RadioGroup.js.vue +98 -0
  780. package/templates/vue/RadioGroup/RadioGroup.test.js +10 -0
  781. package/templates/vue/RadioGroup/RadioGroup.test.ts +10 -0
  782. package/templates/vue/RadioGroup/RadioGroup.vue +106 -0
  783. package/templates/vue/Rating/Rating.css +15 -0
  784. package/templates/vue/Rating/Rating.js.vue +96 -0
  785. package/templates/vue/Rating/Rating.test.js +10 -0
  786. package/templates/vue/Rating/Rating.test.ts +10 -0
  787. package/templates/vue/Rating/Rating.vue +104 -0
  788. package/templates/vue/RelativeTime/RelativeTime.js.vue +55 -0
  789. package/templates/vue/RelativeTime/RelativeTime.test.js +10 -0
  790. package/templates/vue/RelativeTime/RelativeTime.test.ts +10 -0
  791. package/templates/vue/RelativeTime/RelativeTime.vue +59 -0
  792. package/templates/vue/ResizeObserver/ResizeObserver.js.vue +67 -0
  793. package/templates/vue/ResizeObserver/ResizeObserver.test.js +10 -0
  794. package/templates/vue/ResizeObserver/ResizeObserver.test.ts +10 -0
  795. package/templates/vue/ResizeObserver/ResizeObserver.vue +71 -0
  796. package/templates/vue/ScatterChart/ScatterChart.css +28 -0
  797. package/templates/vue/ScatterChart/ScatterChart.js.vue +61 -0
  798. package/templates/vue/ScatterChart/ScatterChart.test.js +10 -0
  799. package/templates/vue/ScatterChart/ScatterChart.test.ts +10 -0
  800. package/templates/vue/ScatterChart/ScatterChart.vue +65 -0
  801. package/templates/vue/Scroller/Scroller.css +14 -0
  802. package/templates/vue/Scroller/Scroller.js.vue +50 -0
  803. package/templates/vue/Scroller/Scroller.test.js +10 -0
  804. package/templates/vue/Scroller/Scroller.test.ts +10 -0
  805. package/templates/vue/Scroller/Scroller.vue +54 -0
  806. package/templates/vue/Select/Select.css +30 -0
  807. package/templates/vue/Select/Select.js.vue +141 -0
  808. package/templates/vue/Select/Select.test.js +10 -0
  809. package/templates/vue/Select/Select.test.ts +10 -0
  810. package/templates/vue/Select/Select.vue +145 -0
  811. package/templates/vue/Skeleton/Skeleton.css +14 -0
  812. package/templates/vue/Skeleton/Skeleton.js.vue +47 -0
  813. package/templates/vue/Skeleton/Skeleton.test.js +10 -0
  814. package/templates/vue/Skeleton/Skeleton.test.ts +10 -0
  815. package/templates/vue/Skeleton/Skeleton.vue +51 -0
  816. package/templates/vue/Slider/Slider.css +31 -0
  817. package/templates/vue/Slider/Slider.js.vue +112 -0
  818. package/templates/vue/Slider/Slider.test.js +10 -0
  819. package/templates/vue/Slider/Slider.test.ts +10 -0
  820. package/templates/vue/Slider/Slider.vue +122 -0
  821. package/templates/vue/Sparkline/Sparkline.css +17 -0
  822. package/templates/vue/Sparkline/Sparkline.js.vue +51 -0
  823. package/templates/vue/Sparkline/Sparkline.test.js +10 -0
  824. package/templates/vue/Sparkline/Sparkline.test.ts +10 -0
  825. package/templates/vue/Sparkline/Sparkline.vue +55 -0
  826. package/templates/vue/Spinner/Spinner.css +16 -0
  827. package/templates/vue/Spinner/Spinner.js.vue +45 -0
  828. package/templates/vue/Spinner/Spinner.test.js +10 -0
  829. package/templates/vue/Spinner/Spinner.test.ts +10 -0
  830. package/templates/vue/Spinner/Spinner.vue +49 -0
  831. package/templates/vue/SplitPanel/SplitPanel.css +19 -0
  832. package/templates/vue/SplitPanel/SplitPanel.js.vue +69 -0
  833. package/templates/vue/SplitPanel/SplitPanel.test.js +10 -0
  834. package/templates/vue/SplitPanel/SplitPanel.test.ts +10 -0
  835. package/templates/vue/SplitPanel/SplitPanel.vue +74 -0
  836. package/templates/vue/Switch/Switch.css +19 -0
  837. package/templates/vue/Switch/Switch.js.vue +103 -0
  838. package/templates/vue/Switch/Switch.test.js +10 -0
  839. package/templates/vue/Switch/Switch.test.ts +10 -0
  840. package/templates/vue/Switch/Switch.vue +113 -0
  841. package/templates/vue/Tab/Tab.css +13 -0
  842. package/templates/vue/Tab/Tab.js.vue +48 -0
  843. package/templates/vue/Tab/Tab.test.js +10 -0
  844. package/templates/vue/Tab/Tab.test.ts +10 -0
  845. package/templates/vue/Tab/Tab.vue +52 -0
  846. package/templates/vue/TabGroup/TabGroup.css +22 -0
  847. package/templates/vue/TabGroup/TabGroup.js.vue +69 -0
  848. package/templates/vue/TabGroup/TabGroup.test.js +10 -0
  849. package/templates/vue/TabGroup/TabGroup.test.ts +10 -0
  850. package/templates/vue/TabGroup/TabGroup.vue +74 -0
  851. package/templates/vue/TabPanel/TabPanel.css +13 -0
  852. package/templates/vue/TabPanel/TabPanel.js.vue +48 -0
  853. package/templates/vue/TabPanel/TabPanel.test.js +10 -0
  854. package/templates/vue/TabPanel/TabPanel.test.ts +10 -0
  855. package/templates/vue/TabPanel/TabPanel.vue +52 -0
  856. package/templates/vue/Tag/Tag.css +16 -0
  857. package/templates/vue/Tag/Tag.js.vue +67 -0
  858. package/templates/vue/Tag/Tag.test.js +10 -0
  859. package/templates/vue/Tag/Tag.test.ts +10 -0
  860. package/templates/vue/Tag/Tag.vue +71 -0
  861. package/templates/vue/Textarea/Textarea.css +18 -0
  862. package/templates/vue/Textarea/Textarea.js.vue +121 -0
  863. package/templates/vue/Textarea/Textarea.test.js +10 -0
  864. package/templates/vue/Textarea/Textarea.test.ts +10 -0
  865. package/templates/vue/Textarea/Textarea.vue +146 -0
  866. package/templates/vue/Toast/Toast.css +14 -0
  867. package/templates/vue/Toast/Toast.js.vue +48 -0
  868. package/templates/vue/Toast/Toast.test.js +10 -0
  869. package/templates/vue/Toast/Toast.test.ts +10 -0
  870. package/templates/vue/Toast/Toast.vue +60 -0
  871. package/templates/vue/ToastItem/ToastItem.css +26 -0
  872. package/templates/vue/ToastItem/ToastItem.js.vue +80 -0
  873. package/templates/vue/ToastItem/ToastItem.test.js +10 -0
  874. package/templates/vue/ToastItem/ToastItem.test.ts +10 -0
  875. package/templates/vue/ToastItem/ToastItem.vue +82 -0
  876. package/templates/vue/Tooltip/Tooltip.css +16 -0
  877. package/templates/vue/Tooltip/Tooltip.js.vue +105 -0
  878. package/templates/vue/Tooltip/Tooltip.test.js +10 -0
  879. package/templates/vue/Tooltip/Tooltip.test.ts +10 -0
  880. package/templates/vue/Tooltip/Tooltip.vue +119 -0
  881. package/templates/vue/Tree/Tree.css +17 -0
  882. package/templates/vue/Tree/Tree.js.vue +63 -0
  883. package/templates/vue/Tree/Tree.test.js +10 -0
  884. package/templates/vue/Tree/Tree.test.ts +10 -0
  885. package/templates/vue/Tree/Tree.vue +68 -0
  886. package/templates/vue/TreeItem/TreeItem.css +27 -0
  887. package/templates/vue/TreeItem/TreeItem.js.vue +89 -0
  888. package/templates/vue/TreeItem/TreeItem.test.js +10 -0
  889. package/templates/vue/TreeItem/TreeItem.test.ts +10 -0
  890. package/templates/vue/TreeItem/TreeItem.vue +95 -0
  891. package/templates/vue/ZoomableFrame/ZoomableFrame.css +16 -0
  892. package/templates/vue/ZoomableFrame/ZoomableFrame.js.vue +85 -0
  893. package/templates/vue/ZoomableFrame/ZoomableFrame.test.js +10 -0
  894. package/templates/vue/ZoomableFrame/ZoomableFrame.test.ts +10 -0
  895. package/templates/vue/ZoomableFrame/ZoomableFrame.vue +86 -0
  896. package/templates/vue/tsconfig.json +25 -0
  897. package/dist/-KKAC4XOR.js +0 -10054
  898. package/dist/-KKAC4XOR.js.map +0 -1
  899. package/dist/chunk-M3CQQOFK.js +0 -1490
  900. package/dist/chunk-M3CQQOFK.js.map +0 -1
  901. package/dist/chunk-SV7IPLRK.js +0 -255
  902. package/dist/chunk-SV7IPLRK.js.map +0 -1
  903. package/dist/install-CA2HI23T.js +0 -111
  904. package/dist/install-CA2HI23T.js.map +0 -1
  905. package/dist/llms.txt +0 -2151
  906. package/dist/project-config-IZOQXACR.js +0 -249
  907. package/dist/project-config-IZOQXACR.js.map +0 -1
  908. package/dist/templates/AGENTS.md +0 -265
  909. package/dist/templates/angular/AnimatedImage/animated-image.component.css.hbs +0 -7
  910. package/dist/templates/angular/AnimatedImage/animated-image.component.spec.ts.hbs +0 -26
  911. package/dist/templates/angular/AnimatedImage/animated-image.component.ts.hbs +0 -67
  912. package/dist/templates/angular/Animation/animation.component.spec.ts.hbs +0 -26
  913. package/dist/templates/angular/Animation/animation.component.ts.hbs +0 -102
  914. package/dist/templates/angular/Avatar/avatar.component.css.hbs +0 -7
  915. package/dist/templates/angular/Avatar/avatar.component.spec.ts.hbs +0 -26
  916. package/dist/templates/angular/Avatar/avatar.component.ts.hbs +0 -69
  917. package/dist/templates/angular/Badge/badge.component.css.hbs +0 -7
  918. package/dist/templates/angular/Badge/badge.component.spec.ts.hbs +0 -26
  919. package/dist/templates/angular/Badge/badge.component.ts.hbs +0 -54
  920. package/dist/templates/angular/BarChart/bar-chart.component.css.hbs +0 -7
  921. package/dist/templates/angular/BarChart/bar-chart.component.spec.ts.hbs +0 -26
  922. package/dist/templates/angular/BarChart/bar-chart.component.ts.hbs +0 -84
  923. package/dist/templates/angular/Breadcrumb/breadcrumb.component.css.hbs +0 -7
  924. package/dist/templates/angular/Breadcrumb/breadcrumb.component.spec.ts.hbs +0 -26
  925. package/dist/templates/angular/Breadcrumb/breadcrumb.component.ts.hbs +0 -45
  926. package/dist/templates/angular/BreadcrumbItem/breadcrumb-item.component.css.hbs +0 -7
  927. package/dist/templates/angular/BreadcrumbItem/breadcrumb-item.component.spec.ts.hbs +0 -26
  928. package/dist/templates/angular/BreadcrumbItem/breadcrumb-item.component.ts.hbs +0 -51
  929. package/dist/templates/angular/BubbleChart/bubble-chart.component.css.hbs +0 -7
  930. package/dist/templates/angular/BubbleChart/bubble-chart.component.spec.ts.hbs +0 -26
  931. package/dist/templates/angular/BubbleChart/bubble-chart.component.ts.hbs +0 -81
  932. package/dist/templates/angular/Button/button.component.css.hbs +0 -7
  933. package/dist/templates/angular/Button/button.component.spec.ts.hbs +0 -26
  934. package/dist/templates/angular/Button/button.component.ts.hbs +0 -138
  935. package/dist/templates/angular/ButtonGroup/button-group.component.css.hbs +0 -7
  936. package/dist/templates/angular/ButtonGroup/button-group.component.spec.ts.hbs +0 -26
  937. package/dist/templates/angular/ButtonGroup/button-group.component.ts.hbs +0 -48
  938. package/dist/templates/angular/Callout/callout.component.css.hbs +0 -7
  939. package/dist/templates/angular/Callout/callout.component.spec.ts.hbs +0 -26
  940. package/dist/templates/angular/Callout/callout.component.ts.hbs +0 -51
  941. package/dist/templates/angular/Card/card.component.css.hbs +0 -7
  942. package/dist/templates/angular/Card/card.component.spec.ts.hbs +0 -26
  943. package/dist/templates/angular/Card/card.component.ts.hbs +0 -57
  944. package/dist/templates/angular/Carousel/carousel.component.css.hbs +0 -7
  945. package/dist/templates/angular/Carousel/carousel.component.spec.ts.hbs +0 -26
  946. package/dist/templates/angular/Carousel/carousel.component.ts.hbs +0 -91
  947. package/dist/templates/angular/CarouselItem/carousel-item.component.css.hbs +0 -7
  948. package/dist/templates/angular/CarouselItem/carousel-item.component.spec.ts.hbs +0 -26
  949. package/dist/templates/angular/CarouselItem/carousel-item.component.ts.hbs +0 -42
  950. package/dist/templates/angular/Chart/chart.component.css.hbs +0 -7
  951. package/dist/templates/angular/Chart/chart.component.spec.ts.hbs +0 -26
  952. package/dist/templates/angular/Chart/chart.component.ts.hbs +0 -84
  953. package/dist/templates/angular/Checkbox/checkbox.component.css.hbs +0 -7
  954. package/dist/templates/angular/Checkbox/checkbox.component.spec.ts.hbs +0 -26
  955. package/dist/templates/angular/Checkbox/checkbox.component.ts.hbs +0 -151
  956. package/dist/templates/angular/ColorPicker/color-picker.component.css.hbs +0 -7
  957. package/dist/templates/angular/ColorPicker/color-picker.component.spec.ts.hbs +0 -26
  958. package/dist/templates/angular/ColorPicker/color-picker.component.ts.hbs +0 -200
  959. package/dist/templates/angular/Combobox/combobox.component.css.hbs +0 -7
  960. package/dist/templates/angular/Combobox/combobox.component.spec.ts.hbs +0 -26
  961. package/dist/templates/angular/Combobox/combobox.component.ts.hbs +0 -220
  962. package/dist/templates/angular/Comparison/comparison.component.css.hbs +0 -7
  963. package/dist/templates/angular/Comparison/comparison.component.spec.ts.hbs +0 -26
  964. package/dist/templates/angular/Comparison/comparison.component.ts.hbs +0 -57
  965. package/dist/templates/angular/CopyButton/copy-button.component.css.hbs +0 -7
  966. package/dist/templates/angular/CopyButton/copy-button.component.spec.ts.hbs +0 -26
  967. package/dist/templates/angular/CopyButton/copy-button.component.ts.hbs +0 -82
  968. package/dist/templates/angular/Details/details.component.css.hbs +0 -7
  969. package/dist/templates/angular/Details/details.component.spec.ts.hbs +0 -26
  970. package/dist/templates/angular/Details/details.component.ts.hbs +0 -91
  971. package/dist/templates/angular/Dialog/dialog.component.css.hbs +0 -7
  972. package/dist/templates/angular/Dialog/dialog.component.spec.ts.hbs +0 -26
  973. package/dist/templates/angular/Dialog/dialog.component.ts.hbs +0 -85
  974. package/dist/templates/angular/Divider/divider.component.css.hbs +0 -7
  975. package/dist/templates/angular/Divider/divider.component.spec.ts.hbs +0 -26
  976. package/dist/templates/angular/Divider/divider.component.ts.hbs +0 -45
  977. package/dist/templates/angular/DoughnutChart/doughnut-chart.component.css.hbs +0 -7
  978. package/dist/templates/angular/DoughnutChart/doughnut-chart.component.spec.ts.hbs +0 -26
  979. package/dist/templates/angular/DoughnutChart/doughnut-chart.component.ts.hbs +0 -60
  980. package/dist/templates/angular/Drawer/drawer.component.css.hbs +0 -7
  981. package/dist/templates/angular/Drawer/drawer.component.spec.ts.hbs +0 -26
  982. package/dist/templates/angular/Drawer/drawer.component.ts.hbs +0 -88
  983. package/dist/templates/angular/Dropdown/dropdown.component.css.hbs +0 -7
  984. package/dist/templates/angular/Dropdown/dropdown.component.spec.ts.hbs +0 -26
  985. package/dist/templates/angular/Dropdown/dropdown.component.ts.hbs +0 -94
  986. package/dist/templates/angular/DropdownItem/dropdown-item.component.css.hbs +0 -7
  987. package/dist/templates/angular/DropdownItem/dropdown-item.component.spec.ts.hbs +0 -26
  988. package/dist/templates/angular/DropdownItem/dropdown-item.component.ts.hbs +0 -83
  989. package/dist/templates/angular/FileInput/file-input.component.css.hbs +0 -7
  990. package/dist/templates/angular/FileInput/file-input.component.spec.ts.hbs +0 -26
  991. package/dist/templates/angular/FileInput/file-input.component.ts.hbs +0 -145
  992. package/dist/templates/angular/FormatBytes/format-bytes.component.spec.ts.hbs +0 -26
  993. package/dist/templates/angular/FormatBytes/format-bytes.component.ts.hbs +0 -54
  994. package/dist/templates/angular/FormatDate/format-date.component.spec.ts.hbs +0 -26
  995. package/dist/templates/angular/FormatDate/format-date.component.ts.hbs +0 -81
  996. package/dist/templates/angular/FormatNumber/format-number.component.spec.ts.hbs +0 -26
  997. package/dist/templates/angular/FormatNumber/format-number.component.ts.hbs +0 -75
  998. package/dist/templates/angular/Icon/icon.component.css.hbs +0 -7
  999. package/dist/templates/angular/Icon/icon.component.spec.ts.hbs +0 -26
  1000. package/dist/templates/angular/Icon/icon.component.ts.hbs +0 -91
  1001. package/dist/templates/angular/Include/include.component.spec.ts.hbs +0 -26
  1002. package/dist/templates/angular/Include/include.component.ts.hbs +0 -67
  1003. package/dist/templates/angular/Input/input.component.css.hbs +0 -7
  1004. package/dist/templates/angular/Input/input.component.spec.ts.hbs +0 -26
  1005. package/dist/templates/angular/Input/input.component.ts.hbs +0 -230
  1006. package/dist/templates/angular/IntersectionObserver/intersection-observer.component.spec.ts.hbs +0 -26
  1007. package/dist/templates/angular/IntersectionObserver/intersection-observer.component.ts.hbs +0 -69
  1008. package/dist/templates/angular/LineChart/line-chart.component.css.hbs +0 -7
  1009. package/dist/templates/angular/LineChart/line-chart.component.spec.ts.hbs +0 -26
  1010. package/dist/templates/angular/LineChart/line-chart.component.ts.hbs +0 -81
  1011. package/dist/templates/angular/Markdown/markdown.component.spec.ts.hbs +0 -26
  1012. package/dist/templates/angular/Markdown/markdown.component.ts.hbs +0 -61
  1013. package/dist/templates/angular/MutationObserver/mutation-observer.component.spec.ts.hbs +0 -26
  1014. package/dist/templates/angular/MutationObserver/mutation-observer.component.ts.hbs +0 -75
  1015. package/dist/templates/angular/NumberInput/number-input.component.css.hbs +0 -7
  1016. package/dist/templates/angular/NumberInput/number-input.component.spec.ts.hbs +0 -26
  1017. package/dist/templates/angular/NumberInput/number-input.component.ts.hbs +0 -169
  1018. package/dist/templates/angular/Option/option.component.css.hbs +0 -7
  1019. package/dist/templates/angular/Option/option.component.spec.ts.hbs +0 -26
  1020. package/dist/templates/angular/Option/option.component.ts.hbs +0 -54
  1021. package/dist/templates/angular/Page/page.component.css.hbs +0 -7
  1022. package/dist/templates/angular/Page/page.component.spec.ts.hbs +0 -26
  1023. package/dist/templates/angular/Page/page.component.ts.hbs +0 -70
  1024. package/dist/templates/angular/PieChart/pie-chart.component.css.hbs +0 -7
  1025. package/dist/templates/angular/PieChart/pie-chart.component.spec.ts.hbs +0 -26
  1026. package/dist/templates/angular/PieChart/pie-chart.component.ts.hbs +0 -60
  1027. package/dist/templates/angular/PolarAreaChart/polar-area-chart.component.css.hbs +0 -7
  1028. package/dist/templates/angular/PolarAreaChart/polar-area-chart.component.spec.ts.hbs +0 -26
  1029. package/dist/templates/angular/PolarAreaChart/polar-area-chart.component.ts.hbs +0 -60
  1030. package/dist/templates/angular/Popover/popover.component.css.hbs +0 -7
  1031. package/dist/templates/angular/Popover/popover.component.spec.ts.hbs +0 -26
  1032. package/dist/templates/angular/Popover/popover.component.ts.hbs +0 -100
  1033. package/dist/templates/angular/Popup/popup.component.css.hbs +0 -7
  1034. package/dist/templates/angular/Popup/popup.component.spec.ts.hbs +0 -26
  1035. package/dist/templates/angular/Popup/popup.component.ts.hbs +0 -112
  1036. package/dist/templates/angular/ProgressBar/progress-bar.component.css.hbs +0 -7
  1037. package/dist/templates/angular/ProgressBar/progress-bar.component.spec.ts.hbs +0 -26
  1038. package/dist/templates/angular/ProgressBar/progress-bar.component.ts.hbs +0 -51
  1039. package/dist/templates/angular/ProgressRing/progress-ring.component.css.hbs +0 -7
  1040. package/dist/templates/angular/ProgressRing/progress-ring.component.spec.ts.hbs +0 -26
  1041. package/dist/templates/angular/ProgressRing/progress-ring.component.ts.hbs +0 -48
  1042. package/dist/templates/angular/QrCode/qr-code.component.css.hbs +0 -7
  1043. package/dist/templates/angular/QrCode/qr-code.component.spec.ts.hbs +0 -26
  1044. package/dist/templates/angular/QrCode/qr-code.component.ts.hbs +0 -63
  1045. package/dist/templates/angular/RadarChart/radar-chart.component.css.hbs +0 -7
  1046. package/dist/templates/angular/RadarChart/radar-chart.component.spec.ts.hbs +0 -26
  1047. package/dist/templates/angular/RadarChart/radar-chart.component.ts.hbs +0 -72
  1048. package/dist/templates/angular/Radio/radio.component.css.hbs +0 -7
  1049. package/dist/templates/angular/Radio/radio.component.spec.ts.hbs +0 -26
  1050. package/dist/templates/angular/Radio/radio.component.ts.hbs +0 -80
  1051. package/dist/templates/angular/RadioGroup/radio-group.component.css.hbs +0 -7
  1052. package/dist/templates/angular/RadioGroup/radio-group.component.spec.ts.hbs +0 -26
  1053. package/dist/templates/angular/RadioGroup/radio-group.component.ts.hbs +0 -143
  1054. package/dist/templates/angular/Rating/rating.component.css.hbs +0 -7
  1055. package/dist/templates/angular/Rating/rating.component.spec.ts.hbs +0 -26
  1056. package/dist/templates/angular/Rating/rating.component.ts.hbs +0 -137
  1057. package/dist/templates/angular/RelativeTime/relative-time.component.spec.ts.hbs +0 -26
  1058. package/dist/templates/angular/RelativeTime/relative-time.component.ts.hbs +0 -57
  1059. package/dist/templates/angular/ResizeObserver/resize-observer.component.spec.ts.hbs +0 -26
  1060. package/dist/templates/angular/ResizeObserver/resize-observer.component.ts.hbs +0 -57
  1061. package/dist/templates/angular/ScatterChart/scatter-chart.component.css.hbs +0 -7
  1062. package/dist/templates/angular/ScatterChart/scatter-chart.component.spec.ts.hbs +0 -26
  1063. package/dist/templates/angular/ScatterChart/scatter-chart.component.ts.hbs +0 -75
  1064. package/dist/templates/angular/Scroller/scroller.component.css.hbs +0 -7
  1065. package/dist/templates/angular/Scroller/scroller.component.spec.ts.hbs +0 -26
  1066. package/dist/templates/angular/Scroller/scroller.component.ts.hbs +0 -54
  1067. package/dist/templates/angular/Select/select.component.css.hbs +0 -7
  1068. package/dist/templates/angular/Select/select.component.spec.ts.hbs +0 -26
  1069. package/dist/templates/angular/Select/select.component.ts.hbs +0 -204
  1070. package/dist/templates/angular/Skeleton/skeleton.component.css.hbs +0 -7
  1071. package/dist/templates/angular/Skeleton/skeleton.component.spec.ts.hbs +0 -26
  1072. package/dist/templates/angular/Skeleton/skeleton.component.ts.hbs +0 -45
  1073. package/dist/templates/angular/Slider/slider.component.css.hbs +0 -7
  1074. package/dist/templates/angular/Slider/slider.component.spec.ts.hbs +0 -26
  1075. package/dist/templates/angular/Slider/slider.component.ts.hbs +0 -175
  1076. package/dist/templates/angular/Sparkline/sparkline.component.css.hbs +0 -7
  1077. package/dist/templates/angular/Sparkline/sparkline.component.spec.ts.hbs +0 -26
  1078. package/dist/templates/angular/Sparkline/sparkline.component.ts.hbs +0 -57
  1079. package/dist/templates/angular/Spinner/spinner.component.css.hbs +0 -7
  1080. package/dist/templates/angular/Spinner/spinner.component.spec.ts.hbs +0 -26
  1081. package/dist/templates/angular/Spinner/spinner.component.ts.hbs +0 -42
  1082. package/dist/templates/angular/SplitPanel/split-panel.component.css.hbs +0 -7
  1083. package/dist/templates/angular/SplitPanel/split-panel.component.spec.ts.hbs +0 -26
  1084. package/dist/templates/angular/SplitPanel/split-panel.component.ts.hbs +0 -75
  1085. package/dist/templates/angular/Switch/switch.component.css.hbs +0 -7
  1086. package/dist/templates/angular/Switch/switch.component.spec.ts.hbs +0 -26
  1087. package/dist/templates/angular/Switch/switch.component.ts.hbs +0 -148
  1088. package/dist/templates/angular/Tab/tab.component.css.hbs +0 -7
  1089. package/dist/templates/angular/Tab/tab.component.spec.ts.hbs +0 -26
  1090. package/dist/templates/angular/Tab/tab.component.ts.hbs +0 -48
  1091. package/dist/templates/angular/TabGroup/tab-group.component.css.hbs +0 -7
  1092. package/dist/templates/angular/TabGroup/tab-group.component.spec.ts.hbs +0 -26
  1093. package/dist/templates/angular/TabGroup/tab-group.component.ts.hbs +0 -70
  1094. package/dist/templates/angular/TabPanel/tab-panel.component.css.hbs +0 -7
  1095. package/dist/templates/angular/TabPanel/tab-panel.component.spec.ts.hbs +0 -26
  1096. package/dist/templates/angular/TabPanel/tab-panel.component.ts.hbs +0 -48
  1097. package/dist/templates/angular/Tag/tag.component.css.hbs +0 -7
  1098. package/dist/templates/angular/Tag/tag.component.spec.ts.hbs +0 -26
  1099. package/dist/templates/angular/Tag/tag.component.ts.hbs +0 -69
  1100. package/dist/templates/angular/Textarea/textarea.component.css.hbs +0 -7
  1101. package/dist/templates/angular/Textarea/textarea.component.spec.ts.hbs +0 -26
  1102. package/dist/templates/angular/Textarea/textarea.component.ts.hbs +0 -184
  1103. package/dist/templates/angular/Toast/toast.component.css.hbs +0 -7
  1104. package/dist/templates/angular/Toast/toast.component.spec.ts.hbs +0 -26
  1105. package/dist/templates/angular/Toast/toast.component.ts.hbs +0 -49
  1106. package/dist/templates/angular/ToastItem/toast-item.component.css.hbs +0 -7
  1107. package/dist/templates/angular/ToastItem/toast-item.component.spec.ts.hbs +0 -26
  1108. package/dist/templates/angular/ToastItem/toast-item.component.ts.hbs +0 -79
  1109. package/dist/templates/angular/Tooltip/tooltip.component.css.hbs +0 -7
  1110. package/dist/templates/angular/Tooltip/tooltip.component.spec.ts.hbs +0 -26
  1111. package/dist/templates/angular/Tooltip/tooltip.component.ts.hbs +0 -103
  1112. package/dist/templates/angular/Tree/tree.component.css.hbs +0 -7
  1113. package/dist/templates/angular/Tree/tree.component.spec.ts.hbs +0 -26
  1114. package/dist/templates/angular/Tree/tree.component.ts.hbs +0 -57
  1115. package/dist/templates/angular/TreeItem/tree-item.component.css.hbs +0 -7
  1116. package/dist/templates/angular/TreeItem/tree-item.component.spec.ts.hbs +0 -26
  1117. package/dist/templates/angular/TreeItem/tree-item.component.ts.hbs +0 -91
  1118. package/dist/templates/angular/ZoomableFrame/zoomable-frame.component.css.hbs +0 -7
  1119. package/dist/templates/angular/ZoomableFrame/zoomable-frame.component.spec.ts.hbs +0 -26
  1120. package/dist/templates/angular/ZoomableFrame/zoomable-frame.component.ts.hbs +0 -95
  1121. package/dist/templates/react/AnimatedImage/AnimatedImage.css.hbs +0 -14
  1122. package/dist/templates/react/AnimatedImage/AnimatedImage.jsx.hbs +0 -64
  1123. package/dist/templates/react/AnimatedImage/AnimatedImage.test.tsx.hbs +0 -10
  1124. package/dist/templates/react/AnimatedImage/AnimatedImage.tsx.hbs +0 -91
  1125. package/dist/templates/react/Animation/Animation.css.hbs +0 -7
  1126. package/dist/templates/react/Animation/Animation.jsx.hbs +0 -100
  1127. package/dist/templates/react/Animation/Animation.test.tsx.hbs +0 -10
  1128. package/dist/templates/react/Animation/Animation.tsx.hbs +0 -144
  1129. package/dist/templates/react/Avatar/Avatar.css.hbs +0 -15
  1130. package/dist/templates/react/Avatar/Avatar.jsx.hbs +0 -65
  1131. package/dist/templates/react/Avatar/Avatar.test.tsx.hbs +0 -10
  1132. package/dist/templates/react/Avatar/Avatar.tsx.hbs +0 -88
  1133. package/dist/templates/react/Badge/Badge.css.hbs +0 -13
  1134. package/dist/templates/react/Badge/Badge.jsx.hbs +0 -52
  1135. package/dist/templates/react/Badge/Badge.test.tsx.hbs +0 -10
  1136. package/dist/templates/react/Badge/Badge.tsx.hbs +0 -71
  1137. package/dist/templates/react/BarChart/BarChart.css.hbs +0 -15
  1138. package/dist/templates/react/BarChart/BarChart.jsx.hbs +0 -67
  1139. package/dist/templates/react/BarChart/BarChart.test.tsx.hbs +0 -10
  1140. package/dist/templates/react/BarChart/BarChart.tsx.hbs +0 -101
  1141. package/dist/templates/react/Breadcrumb/Breadcrumb.css.hbs +0 -10
  1142. package/dist/templates/react/Breadcrumb/Breadcrumb.jsx.hbs +0 -48
  1143. package/dist/templates/react/Breadcrumb/Breadcrumb.test.tsx.hbs +0 -10
  1144. package/dist/templates/react/Breadcrumb/Breadcrumb.tsx.hbs +0 -57
  1145. package/dist/templates/react/BreadcrumbItem/BreadcrumbItem.css.hbs +0 -13
  1146. package/dist/templates/react/BreadcrumbItem/BreadcrumbItem.jsx.hbs +0 -55
  1147. package/dist/templates/react/BreadcrumbItem/BreadcrumbItem.test.tsx.hbs +0 -10
  1148. package/dist/templates/react/BreadcrumbItem/BreadcrumbItem.tsx.hbs +0 -63
  1149. package/dist/templates/react/BubbleChart/BubbleChart.css.hbs +0 -15
  1150. package/dist/templates/react/BubbleChart/BubbleChart.jsx.hbs +0 -62
  1151. package/dist/templates/react/BubbleChart/BubbleChart.test.tsx.hbs +0 -10
  1152. package/dist/templates/react/BubbleChart/BubbleChart.tsx.hbs +0 -94
  1153. package/dist/templates/react/Button/Button.css.hbs +0 -15
  1154. package/dist/templates/react/Button/Button.jsx.hbs +0 -113
  1155. package/dist/templates/react/Button/Button.test.tsx.hbs +0 -10
  1156. package/dist/templates/react/Button/Button.tsx.hbs +0 -176
  1157. package/dist/templates/react/ButtonGroup/ButtonGroup.css.hbs +0 -10
  1158. package/dist/templates/react/ButtonGroup/ButtonGroup.jsx.hbs +0 -48
  1159. package/dist/templates/react/ButtonGroup/ButtonGroup.test.tsx.hbs +0 -10
  1160. package/dist/templates/react/ButtonGroup/ButtonGroup.tsx.hbs +0 -60
  1161. package/dist/templates/react/Callout/Callout.css.hbs +0 -11
  1162. package/dist/templates/react/Callout/Callout.jsx.hbs +0 -29
  1163. package/dist/templates/react/Callout/Callout.test.jsx.hbs +0 -27
  1164. package/dist/templates/react/Callout/Callout.test.tsx.hbs +0 -10
  1165. package/dist/templates/react/Callout/Callout.tsx.hbs +0 -63
  1166. package/dist/templates/react/Card/Card.css.hbs +0 -16
  1167. package/dist/templates/react/Card/Card.jsx.hbs +0 -33
  1168. package/dist/templates/react/Card/Card.test.tsx.hbs +0 -10
  1169. package/dist/templates/react/Card/Card.tsx.hbs +0 -69
  1170. package/dist/templates/react/Carousel/Carousel.css.hbs +0 -23
  1171. package/dist/templates/react/Carousel/Carousel.jsx.hbs +0 -81
  1172. package/dist/templates/react/Carousel/Carousel.test.tsx.hbs +0 -10
  1173. package/dist/templates/react/Carousel/Carousel.tsx.hbs +0 -128
  1174. package/dist/templates/react/CarouselItem/CarouselItem.css.hbs +0 -10
  1175. package/dist/templates/react/CarouselItem/CarouselItem.jsx.hbs +0 -28
  1176. package/dist/templates/react/CarouselItem/CarouselItem.test.tsx.hbs +0 -10
  1177. package/dist/templates/react/CarouselItem/CarouselItem.tsx.hbs +0 -53
  1178. package/dist/templates/react/Chart/Chart.css.hbs +0 -17
  1179. package/dist/templates/react/Chart/Chart.jsx.hbs +0 -68
  1180. package/dist/templates/react/Chart/Chart.test.tsx.hbs +0 -10
  1181. package/dist/templates/react/Chart/Chart.tsx.hbs +0 -102
  1182. package/dist/templates/react/Checkbox/Checkbox.css.hbs +0 -19
  1183. package/dist/templates/react/Checkbox/Checkbox.jsx.hbs +0 -80
  1184. package/dist/templates/react/Checkbox/Checkbox.test.tsx.hbs +0 -10
  1185. package/dist/templates/react/Checkbox/Checkbox.tsx.hbs +0 -161
  1186. package/dist/templates/react/ColorPicker/ColorPicker.css.hbs +0 -32
  1187. package/dist/templates/react/ColorPicker/ColorPicker.jsx.hbs +0 -72
  1188. package/dist/templates/react/ColorPicker/ColorPicker.test.tsx.hbs +0 -10
  1189. package/dist/templates/react/ColorPicker/ColorPicker.tsx.hbs +0 -252
  1190. package/dist/templates/react/Combobox/Combobox.css.hbs +0 -29
  1191. package/dist/templates/react/Combobox/Combobox.jsx.hbs +0 -82
  1192. package/dist/templates/react/Combobox/Combobox.test.tsx.hbs +0 -10
  1193. package/dist/templates/react/Combobox/Combobox.tsx.hbs +0 -266
  1194. package/dist/templates/react/Comparison/Comparison.css.hbs +0 -18
  1195. package/dist/templates/react/Comparison/Comparison.jsx.hbs +0 -27
  1196. package/dist/templates/react/Comparison/Comparison.test.tsx.hbs +0 -10
  1197. package/dist/templates/react/Comparison/Comparison.tsx.hbs +0 -76
  1198. package/dist/templates/react/CopyButton/CopyButton.css.hbs +0 -17
  1199. package/dist/templates/react/CopyButton/CopyButton.jsx.hbs +0 -49
  1200. package/dist/templates/react/CopyButton/CopyButton.test.jsx.hbs +0 -16
  1201. package/dist/templates/react/CopyButton/CopyButton.test.tsx.hbs +0 -10
  1202. package/dist/templates/react/CopyButton/CopyButton.tsx.hbs +0 -106
  1203. package/dist/templates/react/Details/Details.css.hbs +0 -19
  1204. package/dist/templates/react/Details/Details.jsx.hbs +0 -66
  1205. package/dist/templates/react/Details/Details.test.jsx.hbs +0 -27
  1206. package/dist/templates/react/Details/Details.test.tsx.hbs +0 -10
  1207. package/dist/templates/react/Details/Details.tsx.hbs +0 -138
  1208. package/dist/templates/react/Dialog/Dialog.css.hbs +0 -23
  1209. package/dist/templates/react/Dialog/Dialog.jsx.hbs +0 -106
  1210. package/dist/templates/react/Dialog/Dialog.test.jsx.hbs +0 -29
  1211. package/dist/templates/react/Dialog/Dialog.test.tsx.hbs +0 -10
  1212. package/dist/templates/react/Dialog/Dialog.tsx.hbs +0 -153
  1213. package/dist/templates/react/Divider/Divider.css.hbs +0 -12
  1214. package/dist/templates/react/Divider/Divider.jsx.hbs +0 -24
  1215. package/dist/templates/react/Divider/Divider.test.jsx.hbs +0 -16
  1216. package/dist/templates/react/Divider/Divider.test.tsx.hbs +0 -10
  1217. package/dist/templates/react/Divider/Divider.tsx.hbs +0 -64
  1218. package/dist/templates/react/DoughnutChart/DoughnutChart.css.hbs +0 -12
  1219. package/dist/templates/react/DoughnutChart/DoughnutChart.jsx.hbs +0 -56
  1220. package/dist/templates/react/DoughnutChart/DoughnutChart.test.tsx.hbs +0 -10
  1221. package/dist/templates/react/DoughnutChart/DoughnutChart.tsx.hbs +0 -74
  1222. package/dist/templates/react/Drawer/Drawer.css.hbs +0 -23
  1223. package/dist/templates/react/Drawer/Drawer.jsx.hbs +0 -104
  1224. package/dist/templates/react/Drawer/Drawer.test.jsx.hbs +0 -27
  1225. package/dist/templates/react/Drawer/Drawer.test.tsx.hbs +0 -10
  1226. package/dist/templates/react/Drawer/Drawer.tsx.hbs +0 -144
  1227. package/dist/templates/react/Dropdown/Dropdown.css.hbs +0 -15
  1228. package/dist/templates/react/Dropdown/Dropdown.jsx.hbs +0 -78
  1229. package/dist/templates/react/Dropdown/Dropdown.test.tsx.hbs +0 -10
  1230. package/dist/templates/react/Dropdown/Dropdown.tsx.hbs +0 -133
  1231. package/dist/templates/react/DropdownItem/DropdownItem.css.hbs +0 -15
  1232. package/dist/templates/react/DropdownItem/DropdownItem.jsx.hbs +0 -41
  1233. package/dist/templates/react/DropdownItem/DropdownItem.test.tsx.hbs +0 -10
  1234. package/dist/templates/react/DropdownItem/DropdownItem.tsx.hbs +0 -120
  1235. package/dist/templates/react/FileInput/FileInput.css.hbs +0 -24
  1236. package/dist/templates/react/FileInput/FileInput.jsx.hbs +0 -111
  1237. package/dist/templates/react/FileInput/FileInput.test.tsx.hbs +0 -10
  1238. package/dist/templates/react/FileInput/FileInput.tsx.hbs +0 -151
  1239. package/dist/templates/react/FormatBytes/FormatBytes.css.hbs +0 -7
  1240. package/dist/templates/react/FormatBytes/FormatBytes.jsx.hbs +0 -25
  1241. package/dist/templates/react/FormatBytes/FormatBytes.test.jsx.hbs +0 -16
  1242. package/dist/templates/react/FormatBytes/FormatBytes.test.tsx.hbs +0 -10
  1243. package/dist/templates/react/FormatBytes/FormatBytes.tsx.hbs +0 -73
  1244. package/dist/templates/react/FormatDate/FormatDate.css.hbs +0 -7
  1245. package/dist/templates/react/FormatDate/FormatDate.jsx.hbs +0 -18
  1246. package/dist/templates/react/FormatDate/FormatDate.test.tsx.hbs +0 -10
  1247. package/dist/templates/react/FormatDate/FormatDate.tsx.hbs +0 -102
  1248. package/dist/templates/react/FormatNumber/FormatNumber.css.hbs +0 -7
  1249. package/dist/templates/react/FormatNumber/FormatNumber.jsx.hbs +0 -18
  1250. package/dist/templates/react/FormatNumber/FormatNumber.test.jsx.hbs +0 -16
  1251. package/dist/templates/react/FormatNumber/FormatNumber.test.tsx.hbs +0 -10
  1252. package/dist/templates/react/FormatNumber/FormatNumber.tsx.hbs +0 -94
  1253. package/dist/templates/react/Icon/Icon.css.hbs +0 -38
  1254. package/dist/templates/react/Icon/Icon.jsx.hbs +0 -86
  1255. package/dist/templates/react/Icon/Icon.test.jsx.hbs +0 -35
  1256. package/dist/templates/react/Icon/Icon.test.tsx.hbs +0 -10
  1257. package/dist/templates/react/Icon/Icon.tsx.hbs +0 -115
  1258. package/dist/templates/react/Include/Include.css.hbs +0 -7
  1259. package/dist/templates/react/Include/Include.jsx.hbs +0 -40
  1260. package/dist/templates/react/Include/Include.test.jsx.hbs +0 -16
  1261. package/dist/templates/react/Include/Include.test.tsx.hbs +0 -10
  1262. package/dist/templates/react/Include/Include.tsx.hbs +0 -91
  1263. package/dist/templates/react/Input/Input.css.hbs +0 -17
  1264. package/dist/templates/react/Input/Input.jsx.hbs +0 -144
  1265. package/dist/templates/react/Input/Input.test.tsx.hbs +0 -10
  1266. package/dist/templates/react/Input/Input.tsx.hbs +0 -270
  1267. package/dist/templates/react/IntersectionObserver/IntersectionObserver.css.hbs +0 -7
  1268. package/dist/templates/react/IntersectionObserver/IntersectionObserver.jsx.hbs +0 -38
  1269. package/dist/templates/react/IntersectionObserver/IntersectionObserver.test.jsx.hbs +0 -15
  1270. package/dist/templates/react/IntersectionObserver/IntersectionObserver.test.tsx.hbs +0 -10
  1271. package/dist/templates/react/IntersectionObserver/IntersectionObserver.tsx.hbs +0 -88
  1272. package/dist/templates/react/LineChart/LineChart.css.hbs +0 -15
  1273. package/dist/templates/react/LineChart/LineChart.jsx.hbs +0 -66
  1274. package/dist/templates/react/LineChart/LineChart.test.tsx.hbs +0 -10
  1275. package/dist/templates/react/LineChart/LineChart.tsx.hbs +0 -98
  1276. package/dist/templates/react/Markdown/Markdown.css.hbs +0 -10
  1277. package/dist/templates/react/Markdown/Markdown.jsx.hbs +0 -20
  1278. package/dist/templates/react/Markdown/Markdown.test.tsx.hbs +0 -10
  1279. package/dist/templates/react/Markdown/Markdown.tsx.hbs +0 -86
  1280. package/dist/templates/react/MutationObserver/MutationObserver.css.hbs +0 -7
  1281. package/dist/templates/react/MutationObserver/MutationObserver.jsx.hbs +0 -38
  1282. package/dist/templates/react/MutationObserver/MutationObserver.test.tsx.hbs +0 -10
  1283. package/dist/templates/react/MutationObserver/MutationObserver.tsx.hbs +0 -94
  1284. package/dist/templates/react/NumberInput/NumberInput.css.hbs +0 -19
  1285. package/dist/templates/react/NumberInput/NumberInput.jsx.hbs +0 -127
  1286. package/dist/templates/react/NumberInput/NumberInput.test.tsx.hbs +0 -10
  1287. package/dist/templates/react/NumberInput/NumberInput.tsx.hbs +0 -189
  1288. package/dist/templates/react/Option/Option.css.hbs +0 -13
  1289. package/dist/templates/react/Option/Option.jsx.hbs +0 -20
  1290. package/dist/templates/react/Option/Option.test.tsx.hbs +0 -10
  1291. package/dist/templates/react/Option/Option.tsx.hbs +0 -66
  1292. package/dist/templates/react/Page/Page.css.hbs +0 -36
  1293. package/dist/templates/react/Page/Page.jsx.hbs +0 -117
  1294. package/dist/templates/react/Page/Page.test.tsx.hbs +0 -10
  1295. package/dist/templates/react/Page/Page.tsx.hbs +0 -106
  1296. package/dist/templates/react/PieChart/PieChart.css.hbs +0 -12
  1297. package/dist/templates/react/PieChart/PieChart.jsx.hbs +0 -56
  1298. package/dist/templates/react/PieChart/PieChart.test.tsx.hbs +0 -10
  1299. package/dist/templates/react/PieChart/PieChart.tsx.hbs +0 -74
  1300. package/dist/templates/react/PolarAreaChart/PolarAreaChart.css.hbs +0 -13
  1301. package/dist/templates/react/PolarAreaChart/PolarAreaChart.jsx.hbs +0 -56
  1302. package/dist/templates/react/PolarAreaChart/PolarAreaChart.test.tsx.hbs +0 -10
  1303. package/dist/templates/react/PolarAreaChart/PolarAreaChart.tsx.hbs +0 -74
  1304. package/dist/templates/react/Popover/Popover.css.hbs +0 -20
  1305. package/dist/templates/react/Popover/Popover.jsx.hbs +0 -68
  1306. package/dist/templates/react/Popover/Popover.test.tsx.hbs +0 -10
  1307. package/dist/templates/react/Popover/Popover.tsx.hbs +0 -151
  1308. package/dist/templates/react/Popup/Popup.css.hbs +0 -21
  1309. package/dist/templates/react/Popup/Popup.jsx.hbs +0 -45
  1310. package/dist/templates/react/Popup/Popup.test.tsx.hbs +0 -10
  1311. package/dist/templates/react/Popup/Popup.tsx.hbs +0 -139
  1312. package/dist/templates/react/ProgressBar/ProgressBar.css.hbs +0 -17
  1313. package/dist/templates/react/ProgressBar/ProgressBar.jsx.hbs +0 -20
  1314. package/dist/templates/react/ProgressBar/ProgressBar.test.jsx.hbs +0 -16
  1315. package/dist/templates/react/ProgressBar/ProgressBar.test.tsx.hbs +0 -10
  1316. package/dist/templates/react/ProgressBar/ProgressBar.tsx.hbs +0 -63
  1317. package/dist/templates/react/ProgressRing/ProgressRing.css.hbs +0 -21
  1318. package/dist/templates/react/ProgressRing/ProgressRing.jsx.hbs +0 -20
  1319. package/dist/templates/react/ProgressRing/ProgressRing.test.jsx.hbs +0 -16
  1320. package/dist/templates/react/ProgressRing/ProgressRing.test.tsx.hbs +0 -10
  1321. package/dist/templates/react/ProgressRing/ProgressRing.tsx.hbs +0 -60
  1322. package/dist/templates/react/QrCode/QrCode.css.hbs +0 -10
  1323. package/dist/templates/react/QrCode/QrCode.jsx.hbs +0 -18
  1324. package/dist/templates/react/QrCode/QrCode.test.tsx.hbs +0 -10
  1325. package/dist/templates/react/QrCode/QrCode.tsx.hbs +0 -75
  1326. package/dist/templates/react/RadarChart/RadarChart.css.hbs +0 -14
  1327. package/dist/templates/react/RadarChart/RadarChart.jsx.hbs +0 -63
  1328. package/dist/templates/react/RadarChart/RadarChart.test.tsx.hbs +0 -10
  1329. package/dist/templates/react/RadarChart/RadarChart.tsx.hbs +0 -89
  1330. package/dist/templates/react/Radio/Radio.css.hbs +0 -16
  1331. package/dist/templates/react/Radio/Radio.jsx.hbs +0 -20
  1332. package/dist/templates/react/Radio/Radio.test.tsx.hbs +0 -10
  1333. package/dist/templates/react/Radio/Radio.tsx.hbs +0 -94
  1334. package/dist/templates/react/RadioGroup/RadioGroup.css.hbs +0 -14
  1335. package/dist/templates/react/RadioGroup/RadioGroup.jsx.hbs +0 -49
  1336. package/dist/templates/react/RadioGroup/RadioGroup.test.tsx.hbs +0 -10
  1337. package/dist/templates/react/RadioGroup/RadioGroup.tsx.hbs +0 -133
  1338. package/dist/templates/react/Rating/Rating.css.hbs +0 -15
  1339. package/dist/templates/react/Rating/Rating.jsx.hbs +0 -48
  1340. package/dist/templates/react/Rating/Rating.test.tsx.hbs +0 -10
  1341. package/dist/templates/react/Rating/Rating.tsx.hbs +0 -138
  1342. package/dist/templates/react/RelativeTime/RelativeTime.css.hbs +0 -7
  1343. package/dist/templates/react/RelativeTime/RelativeTime.jsx.hbs +0 -18
  1344. package/dist/templates/react/RelativeTime/RelativeTime.test.tsx.hbs +0 -10
  1345. package/dist/templates/react/RelativeTime/RelativeTime.tsx.hbs +0 -74
  1346. package/dist/templates/react/ResizeObserver/ResizeObserver.css.hbs +0 -7
  1347. package/dist/templates/react/ResizeObserver/ResizeObserver.jsx.hbs +0 -38
  1348. package/dist/templates/react/ResizeObserver/ResizeObserver.test.tsx.hbs +0 -10
  1349. package/dist/templates/react/ResizeObserver/ResizeObserver.tsx.hbs +0 -76
  1350. package/dist/templates/react/ScatterChart/ScatterChart.css.hbs +0 -14
  1351. package/dist/templates/react/ScatterChart/ScatterChart.jsx.hbs +0 -60
  1352. package/dist/templates/react/ScatterChart/ScatterChart.test.tsx.hbs +0 -10
  1353. package/dist/templates/react/ScatterChart/ScatterChart.tsx.hbs +0 -88
  1354. package/dist/templates/react/Scroller/Scroller.css.hbs +0 -14
  1355. package/dist/templates/react/Scroller/Scroller.jsx.hbs +0 -20
  1356. package/dist/templates/react/Scroller/Scroller.test.tsx.hbs +0 -10
  1357. package/dist/templates/react/Scroller/Scroller.tsx.hbs +0 -66
  1358. package/dist/templates/react/Select/Select.css.hbs +0 -29
  1359. package/dist/templates/react/Select/Select.jsx.hbs +0 -79
  1360. package/dist/templates/react/Select/Select.test.tsx.hbs +0 -10
  1361. package/dist/templates/react/Select/Select.tsx.hbs +0 -244
  1362. package/dist/templates/react/Skeleton/Skeleton.css.hbs +0 -14
  1363. package/dist/templates/react/Skeleton/Skeleton.jsx.hbs +0 -18
  1364. package/dist/templates/react/Skeleton/Skeleton.test.tsx.hbs +0 -10
  1365. package/dist/templates/react/Skeleton/Skeleton.tsx.hbs +0 -57
  1366. package/dist/templates/react/Slider/Slider.css.hbs +0 -31
  1367. package/dist/templates/react/Slider/Slider.jsx.hbs +0 -50
  1368. package/dist/templates/react/Slider/Slider.test.tsx.hbs +0 -10
  1369. package/dist/templates/react/Slider/Slider.tsx.hbs +0 -189
  1370. package/dist/templates/react/Sparkline/Sparkline.css.hbs +0 -17
  1371. package/dist/templates/react/Sparkline/Sparkline.jsx.hbs +0 -61
  1372. package/dist/templates/react/Sparkline/Sparkline.test.jsx.hbs +0 -15
  1373. package/dist/templates/react/Sparkline/Sparkline.test.tsx.hbs +0 -10
  1374. package/dist/templates/react/Sparkline/Sparkline.tsx.hbs +0 -73
  1375. package/dist/templates/react/Spinner/Spinner.css.hbs +0 -16
  1376. package/dist/templates/react/Spinner/Spinner.jsx.hbs +0 -18
  1377. package/dist/templates/react/Spinner/Spinner.test.tsx.hbs +0 -10
  1378. package/dist/templates/react/Spinner/Spinner.tsx.hbs +0 -53
  1379. package/dist/templates/react/SplitPanel/SplitPanel.css.hbs +0 -19
  1380. package/dist/templates/react/SplitPanel/SplitPanel.jsx.hbs +0 -38
  1381. package/dist/templates/react/SplitPanel/SplitPanel.test.tsx.hbs +0 -10
  1382. package/dist/templates/react/SplitPanel/SplitPanel.tsx.hbs +0 -94
  1383. package/dist/templates/react/Switch/Switch.css.hbs +0 -19
  1384. package/dist/templates/react/Switch/Switch.jsx.hbs +0 -51
  1385. package/dist/templates/react/Switch/Switch.test.tsx.hbs +0 -10
  1386. package/dist/templates/react/Switch/Switch.tsx.hbs +0 -158
  1387. package/dist/templates/react/Tab/Tab.css.hbs +0 -10
  1388. package/dist/templates/react/Tab/Tab.jsx.hbs +0 -20
  1389. package/dist/templates/react/Tab/Tab.test.tsx.hbs +0 -10
  1390. package/dist/templates/react/Tab/Tab.tsx.hbs +0 -60
  1391. package/dist/templates/react/TabGroup/TabGroup.css.hbs +0 -22
  1392. package/dist/templates/react/TabGroup/TabGroup.jsx.hbs +0 -42
  1393. package/dist/templates/react/TabGroup/TabGroup.test.tsx.hbs +0 -10
  1394. package/dist/templates/react/TabGroup/TabGroup.tsx.hbs +0 -94
  1395. package/dist/templates/react/TabPanel/TabPanel.css.hbs +0 -13
  1396. package/dist/templates/react/TabPanel/TabPanel.jsx.hbs +0 -20
  1397. package/dist/templates/react/TabPanel/TabPanel.test.tsx.hbs +0 -10
  1398. package/dist/templates/react/TabPanel/TabPanel.tsx.hbs +0 -60
  1399. package/dist/templates/react/Tag/Tag.css.hbs +0 -13
  1400. package/dist/templates/react/Tag/Tag.jsx.hbs +0 -41
  1401. package/dist/templates/react/Tag/Tag.test.tsx.hbs +0 -10
  1402. package/dist/templates/react/Tag/Tag.tsx.hbs +0 -95
  1403. package/dist/templates/react/Textarea/Textarea.css.hbs +0 -14
  1404. package/dist/templates/react/Textarea/Textarea.jsx.hbs +0 -58
  1405. package/dist/templates/react/Textarea/Textarea.test.tsx.hbs +0 -10
  1406. package/dist/templates/react/Textarea/Textarea.tsx.hbs +0 -209
  1407. package/dist/templates/react/Toast/Toast.css.hbs +0 -14
  1408. package/dist/templates/react/Toast/Toast.jsx.hbs +0 -57
  1409. package/dist/templates/react/Toast/Toast.test.tsx.hbs +0 -10
  1410. package/dist/templates/react/Toast/Toast.tsx.hbs +0 -67
  1411. package/dist/templates/react/ToastItem/ToastItem.css.hbs +0 -21
  1412. package/dist/templates/react/ToastItem/ToastItem.jsx.hbs +0 -82
  1413. package/dist/templates/react/ToastItem/ToastItem.test.jsx.hbs +0 -15
  1414. package/dist/templates/react/ToastItem/ToastItem.test.tsx.hbs +0 -10
  1415. package/dist/templates/react/ToastItem/ToastItem.tsx.hbs +0 -111
  1416. package/dist/templates/react/Tooltip/Tooltip.css.hbs +0 -16
  1417. package/dist/templates/react/Tooltip/Tooltip.jsx.hbs +0 -63
  1418. package/dist/templates/react/Tooltip/Tooltip.test.tsx.hbs +0 -10
  1419. package/dist/templates/react/Tooltip/Tooltip.tsx.hbs +0 -150
  1420. package/dist/templates/react/Tree/Tree.css.hbs +0 -17
  1421. package/dist/templates/react/Tree/Tree.jsx.hbs +0 -41
  1422. package/dist/templates/react/Tree/Tree.test.tsx.hbs +0 -10
  1423. package/dist/templates/react/Tree/Tree.tsx.hbs +0 -76
  1424. package/dist/templates/react/TreeItem/TreeItem.css.hbs +0 -27
  1425. package/dist/templates/react/TreeItem/TreeItem.jsx.hbs +0 -57
  1426. package/dist/templates/react/TreeItem/TreeItem.test.tsx.hbs +0 -10
  1427. package/dist/templates/react/TreeItem/TreeItem.tsx.hbs +0 -142
  1428. package/dist/templates/react/ZoomableFrame/ZoomableFrame.css.hbs +0 -11
  1429. package/dist/templates/react/ZoomableFrame/ZoomableFrame.jsx.hbs +0 -52
  1430. package/dist/templates/react/ZoomableFrame/ZoomableFrame.test.tsx.hbs +0 -10
  1431. package/dist/templates/react/ZoomableFrame/ZoomableFrame.tsx.hbs +0 -147
  1432. package/dist/templates/react/vite-env.d.ts.hbs +0 -21
  1433. package/dist/templates/vue/AnimatedImage/AnimatedImage.css.hbs +0 -11
  1434. package/dist/templates/vue/AnimatedImage/AnimatedImage.js.vue.hbs +0 -60
  1435. package/dist/templates/vue/AnimatedImage/AnimatedImage.test.js.hbs +0 -10
  1436. package/dist/templates/vue/AnimatedImage/AnimatedImage.test.ts.hbs +0 -10
  1437. package/dist/templates/vue/AnimatedImage/AnimatedImage.vue.hbs +0 -66
  1438. package/dist/templates/vue/Animation/Animation.js.vue.hbs +0 -73
  1439. package/dist/templates/vue/Animation/Animation.test.js.hbs +0 -10
  1440. package/dist/templates/vue/Animation/Animation.test.ts.hbs +0 -10
  1441. package/dist/templates/vue/Animation/Animation.vue.hbs +0 -80
  1442. package/dist/templates/vue/Avatar/Avatar.css.hbs +0 -11
  1443. package/dist/templates/vue/Avatar/Avatar.js.vue.hbs +0 -59
  1444. package/dist/templates/vue/Avatar/Avatar.test.js.hbs +0 -10
  1445. package/dist/templates/vue/Avatar/Avatar.test.ts.hbs +0 -10
  1446. package/dist/templates/vue/Avatar/Avatar.vue.hbs +0 -64
  1447. package/dist/templates/vue/Badge/Badge.css.hbs +0 -11
  1448. package/dist/templates/vue/Badge/Badge.js.vue.hbs +0 -42
  1449. package/dist/templates/vue/Badge/Badge.test.js.hbs +0 -10
  1450. package/dist/templates/vue/Badge/Badge.test.ts.hbs +0 -10
  1451. package/dist/templates/vue/Badge/Badge.vue.hbs +0 -43
  1452. package/dist/templates/vue/BarChart/BarChart.css.hbs +0 -11
  1453. package/dist/templates/vue/BarChart/BarChart.js.vue.hbs +0 -52
  1454. package/dist/templates/vue/BarChart/BarChart.test.js.hbs +0 -10
  1455. package/dist/templates/vue/BarChart/BarChart.test.ts.hbs +0 -10
  1456. package/dist/templates/vue/BarChart/BarChart.vue.hbs +0 -53
  1457. package/dist/templates/vue/Breadcrumb/Breadcrumb.css.hbs +0 -11
  1458. package/dist/templates/vue/Breadcrumb/Breadcrumb.js.vue.hbs +0 -39
  1459. package/dist/templates/vue/Breadcrumb/Breadcrumb.test.js.hbs +0 -10
  1460. package/dist/templates/vue/Breadcrumb/Breadcrumb.test.ts.hbs +0 -10
  1461. package/dist/templates/vue/Breadcrumb/Breadcrumb.vue.hbs +0 -40
  1462. package/dist/templates/vue/BreadcrumbItem/BreadcrumbItem.css.hbs +0 -11
  1463. package/dist/templates/vue/BreadcrumbItem/BreadcrumbItem.js.vue.hbs +0 -41
  1464. package/dist/templates/vue/BreadcrumbItem/BreadcrumbItem.test.js.hbs +0 -10
  1465. package/dist/templates/vue/BreadcrumbItem/BreadcrumbItem.test.ts.hbs +0 -10
  1466. package/dist/templates/vue/BreadcrumbItem/BreadcrumbItem.vue.hbs +0 -42
  1467. package/dist/templates/vue/BubbleChart/BubbleChart.css.hbs +0 -11
  1468. package/dist/templates/vue/BubbleChart/BubbleChart.js.vue.hbs +0 -51
  1469. package/dist/templates/vue/BubbleChart/BubbleChart.test.js.hbs +0 -10
  1470. package/dist/templates/vue/BubbleChart/BubbleChart.test.ts.hbs +0 -10
  1471. package/dist/templates/vue/BubbleChart/BubbleChart.vue.hbs +0 -52
  1472. package/dist/templates/vue/Button/Button.css.hbs +0 -20
  1473. package/dist/templates/vue/Button/Button.js.vue.hbs +0 -85
  1474. package/dist/templates/vue/Button/Button.test.js.hbs +0 -10
  1475. package/dist/templates/vue/Button/Button.test.ts.hbs +0 -10
  1476. package/dist/templates/vue/Button/Button.vue.hbs +0 -92
  1477. package/dist/templates/vue/ButtonGroup/ButtonGroup.css.hbs +0 -11
  1478. package/dist/templates/vue/ButtonGroup/ButtonGroup.js.vue.hbs +0 -40
  1479. package/dist/templates/vue/ButtonGroup/ButtonGroup.test.js.hbs +0 -10
  1480. package/dist/templates/vue/ButtonGroup/ButtonGroup.test.ts.hbs +0 -10
  1481. package/dist/templates/vue/ButtonGroup/ButtonGroup.vue.hbs +0 -41
  1482. package/dist/templates/vue/Callout/Callout.css.hbs +0 -11
  1483. package/dist/templates/vue/Callout/Callout.js.vue.hbs +0 -41
  1484. package/dist/templates/vue/Callout/Callout.test.js.hbs +0 -10
  1485. package/dist/templates/vue/Callout/Callout.test.ts.hbs +0 -10
  1486. package/dist/templates/vue/Callout/Callout.vue.hbs +0 -42
  1487. package/dist/templates/vue/Card/Card.css.hbs +0 -17
  1488. package/dist/templates/vue/Card/Card.js.vue.hbs +0 -43
  1489. package/dist/templates/vue/Card/Card.test.js.hbs +0 -10
  1490. package/dist/templates/vue/Card/Card.test.ts.hbs +0 -10
  1491. package/dist/templates/vue/Card/Card.vue.hbs +0 -44
  1492. package/dist/templates/vue/Carousel/Carousel.css.hbs +0 -11
  1493. package/dist/templates/vue/Carousel/Carousel.js.vue.hbs +0 -66
  1494. package/dist/templates/vue/Carousel/Carousel.test.js.hbs +0 -10
  1495. package/dist/templates/vue/Carousel/Carousel.test.ts.hbs +0 -10
  1496. package/dist/templates/vue/Carousel/Carousel.vue.hbs +0 -71
  1497. package/dist/templates/vue/CarouselItem/CarouselItem.css.hbs +0 -11
  1498. package/dist/templates/vue/CarouselItem/CarouselItem.js.vue.hbs +0 -39
  1499. package/dist/templates/vue/CarouselItem/CarouselItem.test.js.hbs +0 -10
  1500. package/dist/templates/vue/CarouselItem/CarouselItem.test.ts.hbs +0 -10
  1501. package/dist/templates/vue/CarouselItem/CarouselItem.vue.hbs +0 -40
  1502. package/dist/templates/vue/Chart/Chart.css.hbs +0 -11
  1503. package/dist/templates/vue/Chart/Chart.js.vue.hbs +0 -52
  1504. package/dist/templates/vue/Chart/Chart.test.js.hbs +0 -10
  1505. package/dist/templates/vue/Chart/Chart.test.ts.hbs +0 -10
  1506. package/dist/templates/vue/Chart/Chart.vue.hbs +0 -53
  1507. package/dist/templates/vue/Checkbox/Checkbox.css.hbs +0 -11
  1508. package/dist/templates/vue/Checkbox/Checkbox.js.vue.hbs +0 -87
  1509. package/dist/templates/vue/Checkbox/Checkbox.test.js.hbs +0 -10
  1510. package/dist/templates/vue/Checkbox/Checkbox.test.ts.hbs +0 -10
  1511. package/dist/templates/vue/Checkbox/Checkbox.vue.hbs +0 -96
  1512. package/dist/templates/vue/ColorPicker/ColorPicker.css.hbs +0 -11
  1513. package/dist/templates/vue/ColorPicker/ColorPicker.js.vue.hbs +0 -110
  1514. package/dist/templates/vue/ColorPicker/ColorPicker.test.js.hbs +0 -10
  1515. package/dist/templates/vue/ColorPicker/ColorPicker.test.ts.hbs +0 -10
  1516. package/dist/templates/vue/ColorPicker/ColorPicker.vue.hbs +0 -123
  1517. package/dist/templates/vue/Combobox/Combobox.css.hbs +0 -11
  1518. package/dist/templates/vue/Combobox/Combobox.js.vue.hbs +0 -120
  1519. package/dist/templates/vue/Combobox/Combobox.test.js.hbs +0 -10
  1520. package/dist/templates/vue/Combobox/Combobox.test.ts.hbs +0 -10
  1521. package/dist/templates/vue/Combobox/Combobox.vue.hbs +0 -136
  1522. package/dist/templates/vue/Comparison/Comparison.css.hbs +0 -11
  1523. package/dist/templates/vue/Comparison/Comparison.js.vue.hbs +0 -55
  1524. package/dist/templates/vue/Comparison/Comparison.test.js.hbs +0 -10
  1525. package/dist/templates/vue/Comparison/Comparison.test.ts.hbs +0 -10
  1526. package/dist/templates/vue/Comparison/Comparison.vue.hbs +0 -60
  1527. package/dist/templates/vue/CopyButton/CopyButton.css.hbs +0 -11
  1528. package/dist/templates/vue/CopyButton/CopyButton.js.vue.hbs +0 -65
  1529. package/dist/templates/vue/CopyButton/CopyButton.test.js.hbs +0 -10
  1530. package/dist/templates/vue/CopyButton/CopyButton.test.ts.hbs +0 -10
  1531. package/dist/templates/vue/CopyButton/CopyButton.vue.hbs +0 -71
  1532. package/dist/templates/vue/Details/Details.css.hbs +0 -11
  1533. package/dist/templates/vue/Details/Details.js.vue.hbs +0 -81
  1534. package/dist/templates/vue/Details/Details.test.js.hbs +0 -10
  1535. package/dist/templates/vue/Details/Details.test.ts.hbs +0 -10
  1536. package/dist/templates/vue/Details/Details.vue.hbs +0 -89
  1537. package/dist/templates/vue/Dialog/Dialog.css.hbs +0 -23
  1538. package/dist/templates/vue/Dialog/Dialog.js.vue.hbs +0 -79
  1539. package/dist/templates/vue/Dialog/Dialog.test.js.hbs +0 -10
  1540. package/dist/templates/vue/Dialog/Dialog.test.ts.hbs +0 -10
  1541. package/dist/templates/vue/Dialog/Dialog.vue.hbs +0 -94
  1542. package/dist/templates/vue/Divider/Divider.css.hbs +0 -11
  1543. package/dist/templates/vue/Divider/Divider.js.vue.hbs +0 -39
  1544. package/dist/templates/vue/Divider/Divider.test.js.hbs +0 -10
  1545. package/dist/templates/vue/Divider/Divider.test.ts.hbs +0 -10
  1546. package/dist/templates/vue/Divider/Divider.vue.hbs +0 -40
  1547. package/dist/templates/vue/DoughnutChart/DoughnutChart.css.hbs +0 -11
  1548. package/dist/templates/vue/DoughnutChart/DoughnutChart.js.vue.hbs +0 -44
  1549. package/dist/templates/vue/DoughnutChart/DoughnutChart.test.js.hbs +0 -10
  1550. package/dist/templates/vue/DoughnutChart/DoughnutChart.test.ts.hbs +0 -10
  1551. package/dist/templates/vue/DoughnutChart/DoughnutChart.vue.hbs +0 -45
  1552. package/dist/templates/vue/Drawer/Drawer.css.hbs +0 -11
  1553. package/dist/templates/vue/Drawer/Drawer.js.vue.hbs +0 -73
  1554. package/dist/templates/vue/Drawer/Drawer.test.js.hbs +0 -10
  1555. package/dist/templates/vue/Drawer/Drawer.test.ts.hbs +0 -10
  1556. package/dist/templates/vue/Drawer/Drawer.vue.hbs +0 -81
  1557. package/dist/templates/vue/Dropdown/Dropdown.css.hbs +0 -11
  1558. package/dist/templates/vue/Dropdown/Dropdown.js.vue.hbs +0 -84
  1559. package/dist/templates/vue/Dropdown/Dropdown.test.js.hbs +0 -10
  1560. package/dist/templates/vue/Dropdown/Dropdown.test.ts.hbs +0 -10
  1561. package/dist/templates/vue/Dropdown/Dropdown.vue.hbs +0 -98
  1562. package/dist/templates/vue/DropdownItem/DropdownItem.css.hbs +0 -11
  1563. package/dist/templates/vue/DropdownItem/DropdownItem.js.vue.hbs +0 -65
  1564. package/dist/templates/vue/DropdownItem/DropdownItem.test.js.hbs +0 -10
  1565. package/dist/templates/vue/DropdownItem/DropdownItem.test.ts.hbs +0 -10
  1566. package/dist/templates/vue/DropdownItem/DropdownItem.vue.hbs +0 -71
  1567. package/dist/templates/vue/FileInput/FileInput.css.hbs +0 -19
  1568. package/dist/templates/vue/FileInput/FileInput.js.vue.hbs +0 -78
  1569. package/dist/templates/vue/FileInput/FileInput.test.js.hbs +0 -10
  1570. package/dist/templates/vue/FileInput/FileInput.test.ts.hbs +0 -10
  1571. package/dist/templates/vue/FileInput/FileInput.vue.hbs +0 -88
  1572. package/dist/templates/vue/FormatBytes/FormatBytes.js.vue.hbs +0 -42
  1573. package/dist/templates/vue/FormatBytes/FormatBytes.test.js.hbs +0 -10
  1574. package/dist/templates/vue/FormatBytes/FormatBytes.test.ts.hbs +0 -10
  1575. package/dist/templates/vue/FormatBytes/FormatBytes.vue.hbs +0 -43
  1576. package/dist/templates/vue/FormatDate/FormatDate.js.vue.hbs +0 -51
  1577. package/dist/templates/vue/FormatDate/FormatDate.test.js.hbs +0 -10
  1578. package/dist/templates/vue/FormatDate/FormatDate.test.ts.hbs +0 -10
  1579. package/dist/templates/vue/FormatDate/FormatDate.vue.hbs +0 -52
  1580. package/dist/templates/vue/FormatNumber/FormatNumber.js.vue.hbs +0 -49
  1581. package/dist/templates/vue/FormatNumber/FormatNumber.test.js.hbs +0 -10
  1582. package/dist/templates/vue/FormatNumber/FormatNumber.test.ts.hbs +0 -10
  1583. package/dist/templates/vue/FormatNumber/FormatNumber.vue.hbs +0 -50
  1584. package/dist/templates/vue/Icon/Icon.css.hbs +0 -11
  1585. package/dist/templates/vue/Icon/Icon.js.vue.hbs +0 -68
  1586. package/dist/templates/vue/Icon/Icon.test.js.hbs +0 -10
  1587. package/dist/templates/vue/Icon/Icon.test.ts.hbs +0 -10
  1588. package/dist/templates/vue/Icon/Icon.vue.hbs +0 -74
  1589. package/dist/templates/vue/Include/Include.js.vue.hbs +0 -60
  1590. package/dist/templates/vue/Include/Include.test.js.hbs +0 -10
  1591. package/dist/templates/vue/Include/Include.test.ts.hbs +0 -10
  1592. package/dist/templates/vue/Include/Include.vue.hbs +0 -66
  1593. package/dist/templates/vue/Input/Input.css.hbs +0 -24
  1594. package/dist/templates/vue/Input/Input.js.vue.hbs +0 -115
  1595. package/dist/templates/vue/Input/Input.test.js.hbs +0 -10
  1596. package/dist/templates/vue/Input/Input.test.ts.hbs +0 -10
  1597. package/dist/templates/vue/Input/Input.vue.hbs +0 -125
  1598. package/dist/templates/vue/IntersectionObserver/IntersectionObserver.js.vue.hbs +0 -59
  1599. package/dist/templates/vue/IntersectionObserver/IntersectionObserver.test.js.hbs +0 -10
  1600. package/dist/templates/vue/IntersectionObserver/IntersectionObserver.test.ts.hbs +0 -10
  1601. package/dist/templates/vue/IntersectionObserver/IntersectionObserver.vue.hbs +0 -64
  1602. package/dist/templates/vue/LineChart/LineChart.css.hbs +0 -11
  1603. package/dist/templates/vue/LineChart/LineChart.js.vue.hbs +0 -51
  1604. package/dist/templates/vue/LineChart/LineChart.test.js.hbs +0 -10
  1605. package/dist/templates/vue/LineChart/LineChart.test.ts.hbs +0 -10
  1606. package/dist/templates/vue/LineChart/LineChart.vue.hbs +0 -52
  1607. package/dist/templates/vue/Markdown/Markdown.css.hbs +0 -10
  1608. package/dist/templates/vue/Markdown/Markdown.js.vue.hbs +0 -40
  1609. package/dist/templates/vue/Markdown/Markdown.test.js.hbs +0 -10
  1610. package/dist/templates/vue/Markdown/Markdown.test.ts.hbs +0 -10
  1611. package/dist/templates/vue/Markdown/Markdown.vue.hbs +0 -49
  1612. package/dist/templates/vue/MutationObserver/MutationObserver.js.vue.hbs +0 -61
  1613. package/dist/templates/vue/MutationObserver/MutationObserver.test.js.hbs +0 -10
  1614. package/dist/templates/vue/MutationObserver/MutationObserver.test.ts.hbs +0 -10
  1615. package/dist/templates/vue/MutationObserver/MutationObserver.vue.hbs +0 -66
  1616. package/dist/templates/vue/NumberInput/NumberInput.css.hbs +0 -19
  1617. package/dist/templates/vue/NumberInput/NumberInput.js.vue.hbs +0 -93
  1618. package/dist/templates/vue/NumberInput/NumberInput.test.js.hbs +0 -10
  1619. package/dist/templates/vue/NumberInput/NumberInput.test.ts.hbs +0 -10
  1620. package/dist/templates/vue/NumberInput/NumberInput.vue.hbs +0 -102
  1621. package/dist/templates/vue/Option/Option.css.hbs +0 -11
  1622. package/dist/templates/vue/Option/Option.js.vue.hbs +0 -42
  1623. package/dist/templates/vue/Option/Option.test.js.hbs +0 -10
  1624. package/dist/templates/vue/Option/Option.test.ts.hbs +0 -10
  1625. package/dist/templates/vue/Option/Option.vue.hbs +0 -43
  1626. package/dist/templates/vue/Page/Page.css.hbs +0 -11
  1627. package/dist/templates/vue/Page/Page.js.vue.hbs +0 -47
  1628. package/dist/templates/vue/Page/Page.test.js.hbs +0 -10
  1629. package/dist/templates/vue/Page/Page.test.ts.hbs +0 -10
  1630. package/dist/templates/vue/Page/Page.vue.hbs +0 -48
  1631. package/dist/templates/vue/PieChart/PieChart.css.hbs +0 -11
  1632. package/dist/templates/vue/PieChart/PieChart.js.vue.hbs +0 -44
  1633. package/dist/templates/vue/PieChart/PieChart.test.js.hbs +0 -10
  1634. package/dist/templates/vue/PieChart/PieChart.test.ts.hbs +0 -10
  1635. package/dist/templates/vue/PieChart/PieChart.vue.hbs +0 -45
  1636. package/dist/templates/vue/PolarAreaChart/PolarAreaChart.css.hbs +0 -11
  1637. package/dist/templates/vue/PolarAreaChart/PolarAreaChart.js.vue.hbs +0 -44
  1638. package/dist/templates/vue/PolarAreaChart/PolarAreaChart.test.js.hbs +0 -10
  1639. package/dist/templates/vue/PolarAreaChart/PolarAreaChart.test.ts.hbs +0 -10
  1640. package/dist/templates/vue/PolarAreaChart/PolarAreaChart.vue.hbs +0 -45
  1641. package/dist/templates/vue/Popover/Popover.css.hbs +0 -11
  1642. package/dist/templates/vue/Popover/Popover.js.vue.hbs +0 -84
  1643. package/dist/templates/vue/Popover/Popover.test.js.hbs +0 -10
  1644. package/dist/templates/vue/Popover/Popover.test.ts.hbs +0 -10
  1645. package/dist/templates/vue/Popover/Popover.vue.hbs +0 -92
  1646. package/dist/templates/vue/Popup/Popup.css.hbs +0 -11
  1647. package/dist/templates/vue/Popup/Popup.js.vue.hbs +0 -73
  1648. package/dist/templates/vue/Popup/Popup.test.js.hbs +0 -10
  1649. package/dist/templates/vue/Popup/Popup.test.ts.hbs +0 -10
  1650. package/dist/templates/vue/Popup/Popup.vue.hbs +0 -78
  1651. package/dist/templates/vue/ProgressBar/ProgressBar.css.hbs +0 -11
  1652. package/dist/templates/vue/ProgressBar/ProgressBar.js.vue.hbs +0 -41
  1653. package/dist/templates/vue/ProgressBar/ProgressBar.test.js.hbs +0 -10
  1654. package/dist/templates/vue/ProgressBar/ProgressBar.test.ts.hbs +0 -10
  1655. package/dist/templates/vue/ProgressBar/ProgressBar.vue.hbs +0 -42
  1656. package/dist/templates/vue/ProgressRing/ProgressRing.css.hbs +0 -11
  1657. package/dist/templates/vue/ProgressRing/ProgressRing.js.vue.hbs +0 -40
  1658. package/dist/templates/vue/ProgressRing/ProgressRing.test.js.hbs +0 -10
  1659. package/dist/templates/vue/ProgressRing/ProgressRing.test.ts.hbs +0 -10
  1660. package/dist/templates/vue/ProgressRing/ProgressRing.vue.hbs +0 -41
  1661. package/dist/templates/vue/QrCode/QrCode.css.hbs +0 -11
  1662. package/dist/templates/vue/QrCode/QrCode.js.vue.hbs +0 -45
  1663. package/dist/templates/vue/QrCode/QrCode.test.js.hbs +0 -10
  1664. package/dist/templates/vue/QrCode/QrCode.test.ts.hbs +0 -10
  1665. package/dist/templates/vue/QrCode/QrCode.vue.hbs +0 -46
  1666. package/dist/templates/vue/RadarChart/RadarChart.css.hbs +0 -11
  1667. package/dist/templates/vue/RadarChart/RadarChart.js.vue.hbs +0 -48
  1668. package/dist/templates/vue/RadarChart/RadarChart.test.js.hbs +0 -10
  1669. package/dist/templates/vue/RadarChart/RadarChart.test.ts.hbs +0 -10
  1670. package/dist/templates/vue/RadarChart/RadarChart.vue.hbs +0 -49
  1671. package/dist/templates/vue/Radio/Radio.css.hbs +0 -11
  1672. package/dist/templates/vue/Radio/Radio.js.vue.hbs +0 -64
  1673. package/dist/templates/vue/Radio/Radio.test.js.hbs +0 -10
  1674. package/dist/templates/vue/Radio/Radio.test.ts.hbs +0 -10
  1675. package/dist/templates/vue/Radio/Radio.vue.hbs +0 -70
  1676. package/dist/templates/vue/RadioGroup/RadioGroup.css.hbs +0 -11
  1677. package/dist/templates/vue/RadioGroup/RadioGroup.js.vue.hbs +0 -81
  1678. package/dist/templates/vue/RadioGroup/RadioGroup.test.js.hbs +0 -10
  1679. package/dist/templates/vue/RadioGroup/RadioGroup.test.ts.hbs +0 -10
  1680. package/dist/templates/vue/RadioGroup/RadioGroup.vue.hbs +0 -88
  1681. package/dist/templates/vue/Rating/Rating.css.hbs +0 -11
  1682. package/dist/templates/vue/Rating/Rating.js.vue.hbs +0 -78
  1683. package/dist/templates/vue/Rating/Rating.test.js.hbs +0 -10
  1684. package/dist/templates/vue/Rating/Rating.test.ts.hbs +0 -10
  1685. package/dist/templates/vue/Rating/Rating.vue.hbs +0 -85
  1686. package/dist/templates/vue/RelativeTime/RelativeTime.js.vue.hbs +0 -43
  1687. package/dist/templates/vue/RelativeTime/RelativeTime.test.js.hbs +0 -10
  1688. package/dist/templates/vue/RelativeTime/RelativeTime.test.ts.hbs +0 -10
  1689. package/dist/templates/vue/RelativeTime/RelativeTime.vue.hbs +0 -44
  1690. package/dist/templates/vue/ResizeObserver/ResizeObserver.js.vue.hbs +0 -55
  1691. package/dist/templates/vue/ResizeObserver/ResizeObserver.test.js.hbs +0 -10
  1692. package/dist/templates/vue/ResizeObserver/ResizeObserver.test.ts.hbs +0 -10
  1693. package/dist/templates/vue/ResizeObserver/ResizeObserver.vue.hbs +0 -60
  1694. package/dist/templates/vue/ScatterChart/ScatterChart.css.hbs +0 -11
  1695. package/dist/templates/vue/ScatterChart/ScatterChart.js.vue.hbs +0 -49
  1696. package/dist/templates/vue/ScatterChart/ScatterChart.test.js.hbs +0 -10
  1697. package/dist/templates/vue/ScatterChart/ScatterChart.test.ts.hbs +0 -10
  1698. package/dist/templates/vue/ScatterChart/ScatterChart.vue.hbs +0 -50
  1699. package/dist/templates/vue/Scroller/Scroller.css.hbs +0 -11
  1700. package/dist/templates/vue/Scroller/Scroller.js.vue.hbs +0 -42
  1701. package/dist/templates/vue/Scroller/Scroller.test.js.hbs +0 -10
  1702. package/dist/templates/vue/Scroller/Scroller.test.ts.hbs +0 -10
  1703. package/dist/templates/vue/Scroller/Scroller.vue.hbs +0 -43
  1704. package/dist/templates/vue/Select/Select.css.hbs +0 -11
  1705. package/dist/templates/vue/Select/Select.js.vue.hbs +0 -113
  1706. package/dist/templates/vue/Select/Select.test.js.hbs +0 -10
  1707. package/dist/templates/vue/Select/Select.test.ts.hbs +0 -10
  1708. package/dist/templates/vue/Select/Select.vue.hbs +0 -127
  1709. package/dist/templates/vue/Skeleton/Skeleton.css.hbs +0 -11
  1710. package/dist/templates/vue/Skeleton/Skeleton.js.vue.hbs +0 -39
  1711. package/dist/templates/vue/Skeleton/Skeleton.test.js.hbs +0 -10
  1712. package/dist/templates/vue/Skeleton/Skeleton.test.ts.hbs +0 -10
  1713. package/dist/templates/vue/Skeleton/Skeleton.vue.hbs +0 -40
  1714. package/dist/templates/vue/Slider/Slider.css.hbs +0 -11
  1715. package/dist/templates/vue/Slider/Slider.js.vue.hbs +0 -95
  1716. package/dist/templates/vue/Slider/Slider.test.js.hbs +0 -10
  1717. package/dist/templates/vue/Slider/Slider.test.ts.hbs +0 -10
  1718. package/dist/templates/vue/Slider/Slider.vue.hbs +0 -104
  1719. package/dist/templates/vue/Sparkline/Sparkline.css.hbs +0 -14
  1720. package/dist/templates/vue/Sparkline/Sparkline.js.vue.hbs +0 -43
  1721. package/dist/templates/vue/Sparkline/Sparkline.test.js.hbs +0 -10
  1722. package/dist/templates/vue/Sparkline/Sparkline.test.ts.hbs +0 -10
  1723. package/dist/templates/vue/Sparkline/Sparkline.vue.hbs +0 -44
  1724. package/dist/templates/vue/Spinner/Spinner.css.hbs +0 -11
  1725. package/dist/templates/vue/Spinner/Spinner.js.vue.hbs +0 -39
  1726. package/dist/templates/vue/Spinner/Spinner.test.js.hbs +0 -10
  1727. package/dist/templates/vue/Spinner/Spinner.test.ts.hbs +0 -10
  1728. package/dist/templates/vue/Spinner/Spinner.vue.hbs +0 -40
  1729. package/dist/templates/vue/SplitPanel/SplitPanel.css.hbs +0 -11
  1730. package/dist/templates/vue/SplitPanel/SplitPanel.js.vue.hbs +0 -61
  1731. package/dist/templates/vue/SplitPanel/SplitPanel.test.js.hbs +0 -10
  1732. package/dist/templates/vue/SplitPanel/SplitPanel.test.ts.hbs +0 -10
  1733. package/dist/templates/vue/SplitPanel/SplitPanel.vue.hbs +0 -66
  1734. package/dist/templates/vue/Switch/Switch.css.hbs +0 -11
  1735. package/dist/templates/vue/Switch/Switch.js.vue.hbs +0 -86
  1736. package/dist/templates/vue/Switch/Switch.test.js.hbs +0 -10
  1737. package/dist/templates/vue/Switch/Switch.test.ts.hbs +0 -10
  1738. package/dist/templates/vue/Switch/Switch.vue.hbs +0 -95
  1739. package/dist/templates/vue/Tab/Tab.css.hbs +0 -11
  1740. package/dist/templates/vue/Tab/Tab.js.vue.hbs +0 -40
  1741. package/dist/templates/vue/Tab/Tab.test.js.hbs +0 -10
  1742. package/dist/templates/vue/Tab/Tab.test.ts.hbs +0 -10
  1743. package/dist/templates/vue/Tab/Tab.vue.hbs +0 -41
  1744. package/dist/templates/vue/TabGroup/TabGroup.css.hbs +0 -11
  1745. package/dist/templates/vue/TabGroup/TabGroup.js.vue.hbs +0 -61
  1746. package/dist/templates/vue/TabGroup/TabGroup.test.js.hbs +0 -10
  1747. package/dist/templates/vue/TabGroup/TabGroup.test.ts.hbs +0 -10
  1748. package/dist/templates/vue/TabGroup/TabGroup.vue.hbs +0 -67
  1749. package/dist/templates/vue/TabPanel/TabPanel.css.hbs +0 -11
  1750. package/dist/templates/vue/TabPanel/TabPanel.js.vue.hbs +0 -40
  1751. package/dist/templates/vue/TabPanel/TabPanel.test.js.hbs +0 -10
  1752. package/dist/templates/vue/TabPanel/TabPanel.test.ts.hbs +0 -10
  1753. package/dist/templates/vue/TabPanel/TabPanel.vue.hbs +0 -41
  1754. package/dist/templates/vue/Tag/Tag.css.hbs +0 -11
  1755. package/dist/templates/vue/Tag/Tag.js.vue.hbs +0 -59
  1756. package/dist/templates/vue/Tag/Tag.test.js.hbs +0 -10
  1757. package/dist/templates/vue/Tag/Tag.test.ts.hbs +0 -10
  1758. package/dist/templates/vue/Tag/Tag.vue.hbs +0 -64
  1759. package/dist/templates/vue/Textarea/Textarea.css.hbs +0 -11
  1760. package/dist/templates/vue/Textarea/Textarea.js.vue.hbs +0 -98
  1761. package/dist/templates/vue/Textarea/Textarea.test.js.hbs +0 -10
  1762. package/dist/templates/vue/Textarea/Textarea.test.ts.hbs +0 -10
  1763. package/dist/templates/vue/Textarea/Textarea.vue.hbs +0 -107
  1764. package/dist/templates/vue/Toast/Toast.css.hbs +0 -11
  1765. package/dist/templates/vue/Toast/Toast.js.vue.hbs +0 -40
  1766. package/dist/templates/vue/Toast/Toast.test.js.hbs +0 -10
  1767. package/dist/templates/vue/Toast/Toast.test.ts.hbs +0 -10
  1768. package/dist/templates/vue/Toast/Toast.vue.hbs +0 -41
  1769. package/dist/templates/vue/ToastItem/ToastItem.css.hbs +0 -11
  1770. package/dist/templates/vue/ToastItem/ToastItem.js.vue.hbs +0 -67
  1771. package/dist/templates/vue/ToastItem/ToastItem.test.js.hbs +0 -10
  1772. package/dist/templates/vue/ToastItem/ToastItem.test.ts.hbs +0 -10
  1773. package/dist/templates/vue/ToastItem/ToastItem.vue.hbs +0 -75
  1774. package/dist/templates/vue/Tooltip/Tooltip.css.hbs +0 -11
  1775. package/dist/templates/vue/Tooltip/Tooltip.js.vue.hbs +0 -85
  1776. package/dist/templates/vue/Tooltip/Tooltip.test.js.hbs +0 -10
  1777. package/dist/templates/vue/Tooltip/Tooltip.test.ts.hbs +0 -10
  1778. package/dist/templates/vue/Tooltip/Tooltip.vue.hbs +0 -93
  1779. package/dist/templates/vue/Tree/Tree.css.hbs +0 -11
  1780. package/dist/templates/vue/Tree/Tree.js.vue.hbs +0 -55
  1781. package/dist/templates/vue/Tree/Tree.test.js.hbs +0 -10
  1782. package/dist/templates/vue/Tree/Tree.test.ts.hbs +0 -10
  1783. package/dist/templates/vue/Tree/Tree.vue.hbs +0 -60
  1784. package/dist/templates/vue/TreeItem/TreeItem.css.hbs +0 -11
  1785. package/dist/templates/vue/TreeItem/TreeItem.js.vue.hbs +0 -77
  1786. package/dist/templates/vue/TreeItem/TreeItem.test.js.hbs +0 -10
  1787. package/dist/templates/vue/TreeItem/TreeItem.test.ts.hbs +0 -10
  1788. package/dist/templates/vue/TreeItem/TreeItem.vue.hbs +0 -87
  1789. package/dist/templates/vue/ZoomableFrame/ZoomableFrame.css.hbs +0 -11
  1790. package/dist/templates/vue/ZoomableFrame/ZoomableFrame.js.vue.hbs +0 -69
  1791. package/dist/templates/vue/ZoomableFrame/ZoomableFrame.test.js.hbs +0 -10
  1792. package/dist/templates/vue/ZoomableFrame/ZoomableFrame.test.ts.hbs +0 -10
  1793. package/dist/templates/vue/ZoomableFrame/ZoomableFrame.vue.hbs +0 -75
  1794. package/dist/tier-4FZLELBX.js +0 -13
  1795. package/templates/angular/AnimatedImage/animated-image.component.css.hbs +0 -7
  1796. package/templates/angular/AnimatedImage/animated-image.component.spec.ts.hbs +0 -26
  1797. package/templates/angular/AnimatedImage/animated-image.component.ts.hbs +0 -67
  1798. package/templates/angular/Animation/animation.component.css.hbs +0 -7
  1799. package/templates/angular/Animation/animation.component.spec.ts.hbs +0 -26
  1800. package/templates/angular/Animation/animation.component.ts.hbs +0 -102
  1801. package/templates/angular/Avatar/avatar.component.css.hbs +0 -7
  1802. package/templates/angular/Avatar/avatar.component.spec.ts.hbs +0 -26
  1803. package/templates/angular/Avatar/avatar.component.ts.hbs +0 -69
  1804. package/templates/angular/Badge/badge.component.css.hbs +0 -7
  1805. package/templates/angular/Badge/badge.component.spec.ts.hbs +0 -26
  1806. package/templates/angular/Badge/badge.component.ts.hbs +0 -54
  1807. package/templates/angular/BarChart/bar-chart.component.css.hbs +0 -7
  1808. package/templates/angular/BarChart/bar-chart.component.spec.ts.hbs +0 -26
  1809. package/templates/angular/BarChart/bar-chart.component.ts.hbs +0 -84
  1810. package/templates/angular/Breadcrumb/breadcrumb.component.css.hbs +0 -7
  1811. package/templates/angular/Breadcrumb/breadcrumb.component.spec.ts.hbs +0 -26
  1812. package/templates/angular/Breadcrumb/breadcrumb.component.ts.hbs +0 -45
  1813. package/templates/angular/BreadcrumbItem/breadcrumb-item.component.css.hbs +0 -7
  1814. package/templates/angular/BreadcrumbItem/breadcrumb-item.component.spec.ts.hbs +0 -26
  1815. package/templates/angular/BreadcrumbItem/breadcrumb-item.component.ts.hbs +0 -51
  1816. package/templates/angular/BubbleChart/bubble-chart.component.css.hbs +0 -7
  1817. package/templates/angular/BubbleChart/bubble-chart.component.spec.ts.hbs +0 -26
  1818. package/templates/angular/BubbleChart/bubble-chart.component.ts.hbs +0 -81
  1819. package/templates/angular/Button/button.component.css.hbs +0 -7
  1820. package/templates/angular/Button/button.component.spec.ts.hbs +0 -26
  1821. package/templates/angular/Button/button.component.ts.hbs +0 -138
  1822. package/templates/angular/ButtonGroup/button-group.component.css.hbs +0 -7
  1823. package/templates/angular/ButtonGroup/button-group.component.spec.ts.hbs +0 -26
  1824. package/templates/angular/ButtonGroup/button-group.component.ts.hbs +0 -48
  1825. package/templates/angular/Callout/callout.component.css.hbs +0 -7
  1826. package/templates/angular/Callout/callout.component.spec.ts.hbs +0 -26
  1827. package/templates/angular/Callout/callout.component.ts.hbs +0 -51
  1828. package/templates/angular/Card/card.component.css.hbs +0 -7
  1829. package/templates/angular/Card/card.component.spec.ts.hbs +0 -26
  1830. package/templates/angular/Card/card.component.ts.hbs +0 -57
  1831. package/templates/angular/Carousel/carousel.component.css.hbs +0 -7
  1832. package/templates/angular/Carousel/carousel.component.spec.ts.hbs +0 -26
  1833. package/templates/angular/Carousel/carousel.component.ts.hbs +0 -91
  1834. package/templates/angular/CarouselItem/carousel-item.component.css.hbs +0 -7
  1835. package/templates/angular/CarouselItem/carousel-item.component.spec.ts.hbs +0 -26
  1836. package/templates/angular/CarouselItem/carousel-item.component.ts.hbs +0 -42
  1837. package/templates/angular/Chart/chart.component.css.hbs +0 -7
  1838. package/templates/angular/Chart/chart.component.spec.ts.hbs +0 -26
  1839. package/templates/angular/Chart/chart.component.ts.hbs +0 -84
  1840. package/templates/angular/Checkbox/checkbox.component.css.hbs +0 -7
  1841. package/templates/angular/Checkbox/checkbox.component.spec.ts.hbs +0 -26
  1842. package/templates/angular/Checkbox/checkbox.component.ts.hbs +0 -151
  1843. package/templates/angular/ColorPicker/color-picker.component.css.hbs +0 -7
  1844. package/templates/angular/ColorPicker/color-picker.component.spec.ts.hbs +0 -26
  1845. package/templates/angular/ColorPicker/color-picker.component.ts.hbs +0 -200
  1846. package/templates/angular/Combobox/combobox.component.css.hbs +0 -7
  1847. package/templates/angular/Combobox/combobox.component.spec.ts.hbs +0 -26
  1848. package/templates/angular/Combobox/combobox.component.ts.hbs +0 -220
  1849. package/templates/angular/Comparison/comparison.component.css.hbs +0 -7
  1850. package/templates/angular/Comparison/comparison.component.spec.ts.hbs +0 -26
  1851. package/templates/angular/Comparison/comparison.component.ts.hbs +0 -57
  1852. package/templates/angular/CopyButton/copy-button.component.css.hbs +0 -7
  1853. package/templates/angular/CopyButton/copy-button.component.spec.ts.hbs +0 -26
  1854. package/templates/angular/CopyButton/copy-button.component.ts.hbs +0 -82
  1855. package/templates/angular/Details/details.component.css.hbs +0 -7
  1856. package/templates/angular/Details/details.component.spec.ts.hbs +0 -26
  1857. package/templates/angular/Details/details.component.ts.hbs +0 -91
  1858. package/templates/angular/Dialog/dialog.component.css.hbs +0 -7
  1859. package/templates/angular/Dialog/dialog.component.spec.ts.hbs +0 -26
  1860. package/templates/angular/Dialog/dialog.component.ts.hbs +0 -85
  1861. package/templates/angular/Divider/divider.component.css.hbs +0 -7
  1862. package/templates/angular/Divider/divider.component.spec.ts.hbs +0 -26
  1863. package/templates/angular/Divider/divider.component.ts.hbs +0 -45
  1864. package/templates/angular/DoughnutChart/doughnut-chart.component.css.hbs +0 -7
  1865. package/templates/angular/DoughnutChart/doughnut-chart.component.spec.ts.hbs +0 -26
  1866. package/templates/angular/DoughnutChart/doughnut-chart.component.ts.hbs +0 -60
  1867. package/templates/angular/Drawer/drawer.component.css.hbs +0 -7
  1868. package/templates/angular/Drawer/drawer.component.spec.ts.hbs +0 -26
  1869. package/templates/angular/Drawer/drawer.component.ts.hbs +0 -88
  1870. package/templates/angular/Dropdown/dropdown.component.css.hbs +0 -7
  1871. package/templates/angular/Dropdown/dropdown.component.spec.ts.hbs +0 -26
  1872. package/templates/angular/Dropdown/dropdown.component.ts.hbs +0 -94
  1873. package/templates/angular/DropdownItem/dropdown-item.component.css.hbs +0 -7
  1874. package/templates/angular/DropdownItem/dropdown-item.component.spec.ts.hbs +0 -26
  1875. package/templates/angular/DropdownItem/dropdown-item.component.ts.hbs +0 -83
  1876. package/templates/angular/FileInput/file-input.component.css.hbs +0 -7
  1877. package/templates/angular/FileInput/file-input.component.spec.ts.hbs +0 -26
  1878. package/templates/angular/FileInput/file-input.component.ts.hbs +0 -145
  1879. package/templates/angular/FormatBytes/format-bytes.component.css.hbs +0 -7
  1880. package/templates/angular/FormatBytes/format-bytes.component.spec.ts.hbs +0 -26
  1881. package/templates/angular/FormatBytes/format-bytes.component.ts.hbs +0 -54
  1882. package/templates/angular/FormatDate/format-date.component.css.hbs +0 -7
  1883. package/templates/angular/FormatDate/format-date.component.spec.ts.hbs +0 -26
  1884. package/templates/angular/FormatDate/format-date.component.ts.hbs +0 -81
  1885. package/templates/angular/FormatNumber/format-number.component.css.hbs +0 -7
  1886. package/templates/angular/FormatNumber/format-number.component.spec.ts.hbs +0 -26
  1887. package/templates/angular/FormatNumber/format-number.component.ts.hbs +0 -75
  1888. package/templates/angular/Icon/icon.component.css.hbs +0 -7
  1889. package/templates/angular/Icon/icon.component.spec.ts.hbs +0 -26
  1890. package/templates/angular/Icon/icon.component.ts.hbs +0 -91
  1891. package/templates/angular/Include/include.component.css.hbs +0 -7
  1892. package/templates/angular/Include/include.component.spec.ts.hbs +0 -26
  1893. package/templates/angular/Include/include.component.ts.hbs +0 -67
  1894. package/templates/angular/Input/input.component.css.hbs +0 -7
  1895. package/templates/angular/Input/input.component.spec.ts.hbs +0 -26
  1896. package/templates/angular/Input/input.component.ts.hbs +0 -230
  1897. package/templates/angular/IntersectionObserver/intersection-observer.component.css.hbs +0 -7
  1898. package/templates/angular/IntersectionObserver/intersection-observer.component.spec.ts.hbs +0 -26
  1899. package/templates/angular/IntersectionObserver/intersection-observer.component.ts.hbs +0 -69
  1900. package/templates/angular/LineChart/line-chart.component.css.hbs +0 -7
  1901. package/templates/angular/LineChart/line-chart.component.spec.ts.hbs +0 -26
  1902. package/templates/angular/LineChart/line-chart.component.ts.hbs +0 -81
  1903. package/templates/angular/Markdown/markdown.component.css.hbs +0 -7
  1904. package/templates/angular/Markdown/markdown.component.spec.ts.hbs +0 -26
  1905. package/templates/angular/Markdown/markdown.component.ts.hbs +0 -61
  1906. package/templates/angular/MutationObserver/mutation-observer.component.css.hbs +0 -7
  1907. package/templates/angular/MutationObserver/mutation-observer.component.spec.ts.hbs +0 -26
  1908. package/templates/angular/MutationObserver/mutation-observer.component.ts.hbs +0 -75
  1909. package/templates/angular/NumberInput/number-input.component.css.hbs +0 -7
  1910. package/templates/angular/NumberInput/number-input.component.spec.ts.hbs +0 -26
  1911. package/templates/angular/NumberInput/number-input.component.ts.hbs +0 -169
  1912. package/templates/angular/Option/option.component.css.hbs +0 -7
  1913. package/templates/angular/Option/option.component.spec.ts.hbs +0 -26
  1914. package/templates/angular/Option/option.component.ts.hbs +0 -54
  1915. package/templates/angular/Page/page.component.css.hbs +0 -7
  1916. package/templates/angular/Page/page.component.spec.ts.hbs +0 -26
  1917. package/templates/angular/Page/page.component.ts.hbs +0 -70
  1918. package/templates/angular/PieChart/pie-chart.component.css.hbs +0 -7
  1919. package/templates/angular/PieChart/pie-chart.component.spec.ts.hbs +0 -26
  1920. package/templates/angular/PieChart/pie-chart.component.ts.hbs +0 -60
  1921. package/templates/angular/PolarAreaChart/polar-area-chart.component.css.hbs +0 -7
  1922. package/templates/angular/PolarAreaChart/polar-area-chart.component.spec.ts.hbs +0 -26
  1923. package/templates/angular/PolarAreaChart/polar-area-chart.component.ts.hbs +0 -60
  1924. package/templates/angular/Popover/popover.component.css.hbs +0 -7
  1925. package/templates/angular/Popover/popover.component.spec.ts.hbs +0 -26
  1926. package/templates/angular/Popover/popover.component.ts.hbs +0 -100
  1927. package/templates/angular/Popup/popup.component.css.hbs +0 -7
  1928. package/templates/angular/Popup/popup.component.spec.ts.hbs +0 -26
  1929. package/templates/angular/Popup/popup.component.ts.hbs +0 -112
  1930. package/templates/angular/ProgressBar/progress-bar.component.css.hbs +0 -7
  1931. package/templates/angular/ProgressBar/progress-bar.component.spec.ts.hbs +0 -26
  1932. package/templates/angular/ProgressBar/progress-bar.component.ts.hbs +0 -51
  1933. package/templates/angular/ProgressRing/progress-ring.component.css.hbs +0 -7
  1934. package/templates/angular/ProgressRing/progress-ring.component.spec.ts.hbs +0 -26
  1935. package/templates/angular/ProgressRing/progress-ring.component.ts.hbs +0 -48
  1936. package/templates/angular/QrCode/qr-code.component.css.hbs +0 -7
  1937. package/templates/angular/QrCode/qr-code.component.spec.ts.hbs +0 -26
  1938. package/templates/angular/QrCode/qr-code.component.ts.hbs +0 -63
  1939. package/templates/angular/RadarChart/radar-chart.component.css.hbs +0 -7
  1940. package/templates/angular/RadarChart/radar-chart.component.spec.ts.hbs +0 -26
  1941. package/templates/angular/RadarChart/radar-chart.component.ts.hbs +0 -72
  1942. package/templates/angular/Radio/radio.component.css.hbs +0 -7
  1943. package/templates/angular/Radio/radio.component.spec.ts.hbs +0 -26
  1944. package/templates/angular/Radio/radio.component.ts.hbs +0 -80
  1945. package/templates/angular/RadioGroup/radio-group.component.css.hbs +0 -7
  1946. package/templates/angular/RadioGroup/radio-group.component.spec.ts.hbs +0 -26
  1947. package/templates/angular/RadioGroup/radio-group.component.ts.hbs +0 -143
  1948. package/templates/angular/Rating/rating.component.css.hbs +0 -7
  1949. package/templates/angular/Rating/rating.component.spec.ts.hbs +0 -26
  1950. package/templates/angular/Rating/rating.component.ts.hbs +0 -137
  1951. package/templates/angular/RelativeTime/relative-time.component.css.hbs +0 -7
  1952. package/templates/angular/RelativeTime/relative-time.component.spec.ts.hbs +0 -26
  1953. package/templates/angular/RelativeTime/relative-time.component.ts.hbs +0 -57
  1954. package/templates/angular/ResizeObserver/resize-observer.component.css.hbs +0 -7
  1955. package/templates/angular/ResizeObserver/resize-observer.component.spec.ts.hbs +0 -26
  1956. package/templates/angular/ResizeObserver/resize-observer.component.ts.hbs +0 -57
  1957. package/templates/angular/ScatterChart/scatter-chart.component.css.hbs +0 -7
  1958. package/templates/angular/ScatterChart/scatter-chart.component.spec.ts.hbs +0 -26
  1959. package/templates/angular/ScatterChart/scatter-chart.component.ts.hbs +0 -75
  1960. package/templates/angular/Scroller/scroller.component.css.hbs +0 -7
  1961. package/templates/angular/Scroller/scroller.component.spec.ts.hbs +0 -26
  1962. package/templates/angular/Scroller/scroller.component.ts.hbs +0 -54
  1963. package/templates/angular/Select/select.component.css.hbs +0 -7
  1964. package/templates/angular/Select/select.component.spec.ts.hbs +0 -26
  1965. package/templates/angular/Select/select.component.ts.hbs +0 -204
  1966. package/templates/angular/Skeleton/skeleton.component.css.hbs +0 -7
  1967. package/templates/angular/Skeleton/skeleton.component.spec.ts.hbs +0 -26
  1968. package/templates/angular/Skeleton/skeleton.component.ts.hbs +0 -45
  1969. package/templates/angular/Slider/slider.component.css.hbs +0 -7
  1970. package/templates/angular/Slider/slider.component.spec.ts.hbs +0 -26
  1971. package/templates/angular/Slider/slider.component.ts.hbs +0 -175
  1972. package/templates/angular/Sparkline/sparkline.component.css.hbs +0 -7
  1973. package/templates/angular/Sparkline/sparkline.component.spec.ts.hbs +0 -26
  1974. package/templates/angular/Sparkline/sparkline.component.ts.hbs +0 -57
  1975. package/templates/angular/Spinner/spinner.component.css.hbs +0 -7
  1976. package/templates/angular/Spinner/spinner.component.spec.ts.hbs +0 -26
  1977. package/templates/angular/Spinner/spinner.component.ts.hbs +0 -42
  1978. package/templates/angular/SplitPanel/split-panel.component.css.hbs +0 -7
  1979. package/templates/angular/SplitPanel/split-panel.component.spec.ts.hbs +0 -26
  1980. package/templates/angular/SplitPanel/split-panel.component.ts.hbs +0 -75
  1981. package/templates/angular/Switch/switch.component.css.hbs +0 -7
  1982. package/templates/angular/Switch/switch.component.spec.ts.hbs +0 -26
  1983. package/templates/angular/Switch/switch.component.ts.hbs +0 -148
  1984. package/templates/angular/Tab/tab.component.css.hbs +0 -7
  1985. package/templates/angular/Tab/tab.component.spec.ts.hbs +0 -26
  1986. package/templates/angular/Tab/tab.component.ts.hbs +0 -48
  1987. package/templates/angular/TabGroup/tab-group.component.css.hbs +0 -7
  1988. package/templates/angular/TabGroup/tab-group.component.spec.ts.hbs +0 -26
  1989. package/templates/angular/TabGroup/tab-group.component.ts.hbs +0 -70
  1990. package/templates/angular/TabPanel/tab-panel.component.css.hbs +0 -7
  1991. package/templates/angular/TabPanel/tab-panel.component.spec.ts.hbs +0 -26
  1992. package/templates/angular/TabPanel/tab-panel.component.ts.hbs +0 -48
  1993. package/templates/angular/Tag/tag.component.css.hbs +0 -7
  1994. package/templates/angular/Tag/tag.component.spec.ts.hbs +0 -26
  1995. package/templates/angular/Tag/tag.component.ts.hbs +0 -69
  1996. package/templates/angular/Textarea/textarea.component.css.hbs +0 -7
  1997. package/templates/angular/Textarea/textarea.component.spec.ts.hbs +0 -26
  1998. package/templates/angular/Textarea/textarea.component.ts.hbs +0 -184
  1999. package/templates/angular/Toast/toast.component.css.hbs +0 -7
  2000. package/templates/angular/Toast/toast.component.spec.ts.hbs +0 -26
  2001. package/templates/angular/Toast/toast.component.ts.hbs +0 -49
  2002. package/templates/angular/ToastItem/toast-item.component.css.hbs +0 -7
  2003. package/templates/angular/ToastItem/toast-item.component.spec.ts.hbs +0 -26
  2004. package/templates/angular/ToastItem/toast-item.component.ts.hbs +0 -79
  2005. package/templates/angular/Tooltip/tooltip.component.css.hbs +0 -7
  2006. package/templates/angular/Tooltip/tooltip.component.spec.ts.hbs +0 -26
  2007. package/templates/angular/Tooltip/tooltip.component.ts.hbs +0 -103
  2008. package/templates/angular/Tree/tree.component.css.hbs +0 -7
  2009. package/templates/angular/Tree/tree.component.spec.ts.hbs +0 -26
  2010. package/templates/angular/Tree/tree.component.ts.hbs +0 -57
  2011. package/templates/angular/TreeItem/tree-item.component.css.hbs +0 -7
  2012. package/templates/angular/TreeItem/tree-item.component.spec.ts.hbs +0 -26
  2013. package/templates/angular/TreeItem/tree-item.component.ts.hbs +0 -91
  2014. package/templates/angular/ZoomableFrame/zoomable-frame.component.css.hbs +0 -7
  2015. package/templates/angular/ZoomableFrame/zoomable-frame.component.spec.ts.hbs +0 -26
  2016. package/templates/angular/ZoomableFrame/zoomable-frame.component.ts.hbs +0 -95
  2017. package/templates/react/AnimatedImage/AnimatedImage.css.hbs +0 -14
  2018. package/templates/react/AnimatedImage/AnimatedImage.jsx.hbs +0 -64
  2019. package/templates/react/AnimatedImage/AnimatedImage.test.jsx.hbs +0 -29
  2020. package/templates/react/AnimatedImage/AnimatedImage.test.tsx.hbs +0 -10
  2021. package/templates/react/AnimatedImage/AnimatedImage.tsx.hbs +0 -91
  2022. package/templates/react/Animation/Animation.css.hbs +0 -7
  2023. package/templates/react/Animation/Animation.jsx.hbs +0 -100
  2024. package/templates/react/Animation/Animation.test.jsx.hbs +0 -37
  2025. package/templates/react/Animation/Animation.test.tsx.hbs +0 -10
  2026. package/templates/react/Animation/Animation.tsx.hbs +0 -144
  2027. package/templates/react/Avatar/Avatar.css.hbs +0 -15
  2028. package/templates/react/Avatar/Avatar.jsx.hbs +0 -65
  2029. package/templates/react/Avatar/Avatar.test.jsx.hbs +0 -33
  2030. package/templates/react/Avatar/Avatar.test.tsx.hbs +0 -10
  2031. package/templates/react/Avatar/Avatar.tsx.hbs +0 -88
  2032. package/templates/react/Badge/Badge.css.hbs +0 -13
  2033. package/templates/react/Badge/Badge.jsx.hbs +0 -52
  2034. package/templates/react/Badge/Badge.test.jsx.hbs +0 -28
  2035. package/templates/react/Badge/Badge.test.tsx.hbs +0 -10
  2036. package/templates/react/Badge/Badge.tsx.hbs +0 -71
  2037. package/templates/react/BarChart/BarChart.css.hbs +0 -15
  2038. package/templates/react/BarChart/BarChart.jsx.hbs +0 -67
  2039. package/templates/react/BarChart/BarChart.test.jsx.hbs +0 -15
  2040. package/templates/react/BarChart/BarChart.test.tsx.hbs +0 -10
  2041. package/templates/react/BarChart/BarChart.tsx.hbs +0 -101
  2042. package/templates/react/Breadcrumb/Breadcrumb.css.hbs +0 -10
  2043. package/templates/react/Breadcrumb/Breadcrumb.jsx.hbs +0 -48
  2044. package/templates/react/Breadcrumb/Breadcrumb.test.jsx.hbs +0 -34
  2045. package/templates/react/Breadcrumb/Breadcrumb.test.tsx.hbs +0 -10
  2046. package/templates/react/Breadcrumb/Breadcrumb.tsx.hbs +0 -57
  2047. package/templates/react/BreadcrumbItem/BreadcrumbItem.css.hbs +0 -13
  2048. package/templates/react/BreadcrumbItem/BreadcrumbItem.jsx.hbs +0 -55
  2049. package/templates/react/BreadcrumbItem/BreadcrumbItem.test.jsx.hbs +0 -36
  2050. package/templates/react/BreadcrumbItem/BreadcrumbItem.test.tsx.hbs +0 -10
  2051. package/templates/react/BreadcrumbItem/BreadcrumbItem.tsx.hbs +0 -63
  2052. package/templates/react/BubbleChart/BubbleChart.css.hbs +0 -15
  2053. package/templates/react/BubbleChart/BubbleChart.jsx.hbs +0 -62
  2054. package/templates/react/BubbleChart/BubbleChart.test.jsx.hbs +0 -15
  2055. package/templates/react/BubbleChart/BubbleChart.test.tsx.hbs +0 -10
  2056. package/templates/react/BubbleChart/BubbleChart.tsx.hbs +0 -94
  2057. package/templates/react/Button/Button.css.hbs +0 -15
  2058. package/templates/react/Button/Button.jsx.hbs +0 -113
  2059. package/templates/react/Button/Button.test.jsx.hbs +0 -23
  2060. package/templates/react/Button/Button.test.tsx.hbs +0 -10
  2061. package/templates/react/Button/Button.tsx.hbs +0 -176
  2062. package/templates/react/ButtonGroup/ButtonGroup.css.hbs +0 -10
  2063. package/templates/react/ButtonGroup/ButtonGroup.jsx.hbs +0 -48
  2064. package/templates/react/ButtonGroup/ButtonGroup.test.jsx.hbs +0 -44
  2065. package/templates/react/ButtonGroup/ButtonGroup.test.tsx.hbs +0 -10
  2066. package/templates/react/ButtonGroup/ButtonGroup.tsx.hbs +0 -60
  2067. package/templates/react/Callout/Callout.css.hbs +0 -11
  2068. package/templates/react/Callout/Callout.jsx.hbs +0 -29
  2069. package/templates/react/Callout/Callout.test.jsx.hbs +0 -27
  2070. package/templates/react/Callout/Callout.test.tsx.hbs +0 -10
  2071. package/templates/react/Callout/Callout.tsx.hbs +0 -63
  2072. package/templates/react/Card/Card.css.hbs +0 -16
  2073. package/templates/react/Card/Card.jsx.hbs +0 -33
  2074. package/templates/react/Card/Card.test.jsx.hbs +0 -23
  2075. package/templates/react/Card/Card.test.tsx.hbs +0 -10
  2076. package/templates/react/Card/Card.tsx.hbs +0 -69
  2077. package/templates/react/Carousel/Carousel.css.hbs +0 -23
  2078. package/templates/react/Carousel/Carousel.jsx.hbs +0 -81
  2079. package/templates/react/Carousel/Carousel.test.jsx.hbs +0 -25
  2080. package/templates/react/Carousel/Carousel.test.tsx.hbs +0 -10
  2081. package/templates/react/Carousel/Carousel.tsx.hbs +0 -128
  2082. package/templates/react/CarouselItem/CarouselItem.css.hbs +0 -10
  2083. package/templates/react/CarouselItem/CarouselItem.jsx.hbs +0 -28
  2084. package/templates/react/CarouselItem/CarouselItem.test.jsx.hbs +0 -21
  2085. package/templates/react/CarouselItem/CarouselItem.test.tsx.hbs +0 -10
  2086. package/templates/react/CarouselItem/CarouselItem.tsx.hbs +0 -53
  2087. package/templates/react/Chart/Chart.css.hbs +0 -17
  2088. package/templates/react/Chart/Chart.jsx.hbs +0 -68
  2089. package/templates/react/Chart/Chart.test.jsx.hbs +0 -15
  2090. package/templates/react/Chart/Chart.test.tsx.hbs +0 -10
  2091. package/templates/react/Chart/Chart.tsx.hbs +0 -102
  2092. package/templates/react/Checkbox/Checkbox.css.hbs +0 -19
  2093. package/templates/react/Checkbox/Checkbox.jsx.hbs +0 -80
  2094. package/templates/react/Checkbox/Checkbox.test.jsx.hbs +0 -25
  2095. package/templates/react/Checkbox/Checkbox.test.tsx.hbs +0 -10
  2096. package/templates/react/Checkbox/Checkbox.tsx.hbs +0 -161
  2097. package/templates/react/ColorPicker/ColorPicker.css.hbs +0 -32
  2098. package/templates/react/ColorPicker/ColorPicker.jsx.hbs +0 -72
  2099. package/templates/react/ColorPicker/ColorPicker.test.jsx.hbs +0 -25
  2100. package/templates/react/ColorPicker/ColorPicker.test.tsx.hbs +0 -10
  2101. package/templates/react/ColorPicker/ColorPicker.tsx.hbs +0 -252
  2102. package/templates/react/Combobox/Combobox.css.hbs +0 -29
  2103. package/templates/react/Combobox/Combobox.jsx.hbs +0 -82
  2104. package/templates/react/Combobox/Combobox.test.jsx.hbs +0 -19
  2105. package/templates/react/Combobox/Combobox.test.tsx.hbs +0 -10
  2106. package/templates/react/Combobox/Combobox.tsx.hbs +0 -266
  2107. package/templates/react/Comparison/Comparison.css.hbs +0 -18
  2108. package/templates/react/Comparison/Comparison.jsx.hbs +0 -27
  2109. package/templates/react/Comparison/Comparison.test.jsx.hbs +0 -27
  2110. package/templates/react/Comparison/Comparison.test.tsx.hbs +0 -10
  2111. package/templates/react/Comparison/Comparison.tsx.hbs +0 -76
  2112. package/templates/react/CopyButton/CopyButton.css.hbs +0 -17
  2113. package/templates/react/CopyButton/CopyButton.jsx.hbs +0 -49
  2114. package/templates/react/CopyButton/CopyButton.test.jsx.hbs +0 -16
  2115. package/templates/react/CopyButton/CopyButton.test.tsx.hbs +0 -10
  2116. package/templates/react/CopyButton/CopyButton.tsx.hbs +0 -106
  2117. package/templates/react/Details/Details.css.hbs +0 -19
  2118. package/templates/react/Details/Details.jsx.hbs +0 -66
  2119. package/templates/react/Details/Details.test.jsx.hbs +0 -27
  2120. package/templates/react/Details/Details.test.tsx.hbs +0 -10
  2121. package/templates/react/Details/Details.tsx.hbs +0 -138
  2122. package/templates/react/Dialog/Dialog.css.hbs +0 -23
  2123. package/templates/react/Dialog/Dialog.jsx.hbs +0 -106
  2124. package/templates/react/Dialog/Dialog.test.jsx.hbs +0 -29
  2125. package/templates/react/Dialog/Dialog.test.tsx.hbs +0 -10
  2126. package/templates/react/Dialog/Dialog.tsx.hbs +0 -153
  2127. package/templates/react/Divider/Divider.css.hbs +0 -12
  2128. package/templates/react/Divider/Divider.jsx.hbs +0 -24
  2129. package/templates/react/Divider/Divider.test.jsx.hbs +0 -16
  2130. package/templates/react/Divider/Divider.test.tsx.hbs +0 -10
  2131. package/templates/react/Divider/Divider.tsx.hbs +0 -64
  2132. package/templates/react/DoughnutChart/DoughnutChart.css.hbs +0 -12
  2133. package/templates/react/DoughnutChart/DoughnutChart.jsx.hbs +0 -56
  2134. package/templates/react/DoughnutChart/DoughnutChart.test.jsx.hbs +0 -15
  2135. package/templates/react/DoughnutChart/DoughnutChart.test.tsx.hbs +0 -10
  2136. package/templates/react/DoughnutChart/DoughnutChart.tsx.hbs +0 -74
  2137. package/templates/react/Drawer/Drawer.css.hbs +0 -23
  2138. package/templates/react/Drawer/Drawer.jsx.hbs +0 -104
  2139. package/templates/react/Drawer/Drawer.test.jsx.hbs +0 -27
  2140. package/templates/react/Drawer/Drawer.test.tsx.hbs +0 -10
  2141. package/templates/react/Drawer/Drawer.tsx.hbs +0 -144
  2142. package/templates/react/Dropdown/Dropdown.css.hbs +0 -15
  2143. package/templates/react/Dropdown/Dropdown.jsx.hbs +0 -78
  2144. package/templates/react/Dropdown/Dropdown.test.jsx.hbs +0 -18
  2145. package/templates/react/Dropdown/Dropdown.test.tsx.hbs +0 -10
  2146. package/templates/react/Dropdown/Dropdown.tsx.hbs +0 -133
  2147. package/templates/react/DropdownItem/DropdownItem.css.hbs +0 -15
  2148. package/templates/react/DropdownItem/DropdownItem.jsx.hbs +0 -41
  2149. package/templates/react/DropdownItem/DropdownItem.test.jsx.hbs +0 -18
  2150. package/templates/react/DropdownItem/DropdownItem.test.tsx.hbs +0 -10
  2151. package/templates/react/DropdownItem/DropdownItem.tsx.hbs +0 -120
  2152. package/templates/react/FileInput/FileInput.css.hbs +0 -24
  2153. package/templates/react/FileInput/FileInput.jsx.hbs +0 -111
  2154. package/templates/react/FileInput/FileInput.test.jsx.hbs +0 -15
  2155. package/templates/react/FileInput/FileInput.test.tsx.hbs +0 -10
  2156. package/templates/react/FileInput/FileInput.tsx.hbs +0 -151
  2157. package/templates/react/FormatBytes/FormatBytes.css.hbs +0 -7
  2158. package/templates/react/FormatBytes/FormatBytes.jsx.hbs +0 -25
  2159. package/templates/react/FormatBytes/FormatBytes.test.jsx.hbs +0 -16
  2160. package/templates/react/FormatBytes/FormatBytes.test.tsx.hbs +0 -10
  2161. package/templates/react/FormatBytes/FormatBytes.tsx.hbs +0 -73
  2162. package/templates/react/FormatDate/FormatDate.css.hbs +0 -7
  2163. package/templates/react/FormatDate/FormatDate.jsx.hbs +0 -18
  2164. package/templates/react/FormatDate/FormatDate.test.jsx.hbs +0 -11
  2165. package/templates/react/FormatDate/FormatDate.test.tsx.hbs +0 -10
  2166. package/templates/react/FormatDate/FormatDate.tsx.hbs +0 -102
  2167. package/templates/react/FormatNumber/FormatNumber.css.hbs +0 -7
  2168. package/templates/react/FormatNumber/FormatNumber.jsx.hbs +0 -18
  2169. package/templates/react/FormatNumber/FormatNumber.test.jsx.hbs +0 -16
  2170. package/templates/react/FormatNumber/FormatNumber.test.tsx.hbs +0 -10
  2171. package/templates/react/FormatNumber/FormatNumber.tsx.hbs +0 -94
  2172. package/templates/react/Icon/Icon.css.hbs +0 -38
  2173. package/templates/react/Icon/Icon.jsx.hbs +0 -86
  2174. package/templates/react/Icon/Icon.test.jsx.hbs +0 -35
  2175. package/templates/react/Icon/Icon.test.tsx.hbs +0 -10
  2176. package/templates/react/Icon/Icon.tsx.hbs +0 -115
  2177. package/templates/react/Include/Include.css.hbs +0 -7
  2178. package/templates/react/Include/Include.jsx.hbs +0 -40
  2179. package/templates/react/Include/Include.test.jsx.hbs +0 -16
  2180. package/templates/react/Include/Include.test.tsx.hbs +0 -10
  2181. package/templates/react/Include/Include.tsx.hbs +0 -91
  2182. package/templates/react/Input/Input.css.hbs +0 -17
  2183. package/templates/react/Input/Input.jsx.hbs +0 -144
  2184. package/templates/react/Input/Input.test.jsx.hbs +0 -23
  2185. package/templates/react/Input/Input.test.tsx.hbs +0 -10
  2186. package/templates/react/Input/Input.tsx.hbs +0 -270
  2187. package/templates/react/IntersectionObserver/IntersectionObserver.css.hbs +0 -7
  2188. package/templates/react/IntersectionObserver/IntersectionObserver.jsx.hbs +0 -38
  2189. package/templates/react/IntersectionObserver/IntersectionObserver.test.jsx.hbs +0 -15
  2190. package/templates/react/IntersectionObserver/IntersectionObserver.test.tsx.hbs +0 -10
  2191. package/templates/react/IntersectionObserver/IntersectionObserver.tsx.hbs +0 -88
  2192. package/templates/react/LineChart/LineChart.css.hbs +0 -15
  2193. package/templates/react/LineChart/LineChart.jsx.hbs +0 -66
  2194. package/templates/react/LineChart/LineChart.test.jsx.hbs +0 -15
  2195. package/templates/react/LineChart/LineChart.test.tsx.hbs +0 -10
  2196. package/templates/react/LineChart/LineChart.tsx.hbs +0 -98
  2197. package/templates/react/Markdown/Markdown.css.hbs +0 -10
  2198. package/templates/react/Markdown/Markdown.jsx.hbs +0 -20
  2199. package/templates/react/Markdown/Markdown.test.jsx.hbs +0 -11
  2200. package/templates/react/Markdown/Markdown.test.tsx.hbs +0 -10
  2201. package/templates/react/Markdown/Markdown.tsx.hbs +0 -86
  2202. package/templates/react/MutationObserver/MutationObserver.css.hbs +0 -7
  2203. package/templates/react/MutationObserver/MutationObserver.jsx.hbs +0 -38
  2204. package/templates/react/MutationObserver/MutationObserver.test.jsx.hbs +0 -15
  2205. package/templates/react/MutationObserver/MutationObserver.test.tsx.hbs +0 -10
  2206. package/templates/react/MutationObserver/MutationObserver.tsx.hbs +0 -94
  2207. package/templates/react/NumberInput/NumberInput.css.hbs +0 -19
  2208. package/templates/react/NumberInput/NumberInput.jsx.hbs +0 -127
  2209. package/templates/react/NumberInput/NumberInput.test.jsx.hbs +0 -15
  2210. package/templates/react/NumberInput/NumberInput.test.tsx.hbs +0 -10
  2211. package/templates/react/NumberInput/NumberInput.tsx.hbs +0 -189
  2212. package/templates/react/Option/Option.css.hbs +0 -13
  2213. package/templates/react/Option/Option.jsx.hbs +0 -20
  2214. package/templates/react/Option/Option.test.jsx.hbs +0 -11
  2215. package/templates/react/Option/Option.test.tsx.hbs +0 -10
  2216. package/templates/react/Option/Option.tsx.hbs +0 -66
  2217. package/templates/react/Page/Page.css.hbs +0 -36
  2218. package/templates/react/Page/Page.jsx.hbs +0 -117
  2219. package/templates/react/Page/Page.test.jsx.hbs +0 -51
  2220. package/templates/react/Page/Page.test.tsx.hbs +0 -10
  2221. package/templates/react/Page/Page.tsx.hbs +0 -106
  2222. package/templates/react/PieChart/PieChart.css.hbs +0 -12
  2223. package/templates/react/PieChart/PieChart.jsx.hbs +0 -56
  2224. package/templates/react/PieChart/PieChart.test.jsx.hbs +0 -15
  2225. package/templates/react/PieChart/PieChart.test.tsx.hbs +0 -10
  2226. package/templates/react/PieChart/PieChart.tsx.hbs +0 -74
  2227. package/templates/react/PolarAreaChart/PolarAreaChart.css.hbs +0 -13
  2228. package/templates/react/PolarAreaChart/PolarAreaChart.jsx.hbs +0 -56
  2229. package/templates/react/PolarAreaChart/PolarAreaChart.test.jsx.hbs +0 -15
  2230. package/templates/react/PolarAreaChart/PolarAreaChart.test.tsx.hbs +0 -10
  2231. package/templates/react/PolarAreaChart/PolarAreaChart.tsx.hbs +0 -74
  2232. package/templates/react/Popover/Popover.css.hbs +0 -20
  2233. package/templates/react/Popover/Popover.jsx.hbs +0 -68
  2234. package/templates/react/Popover/Popover.test.jsx.hbs +0 -18
  2235. package/templates/react/Popover/Popover.test.tsx.hbs +0 -10
  2236. package/templates/react/Popover/Popover.tsx.hbs +0 -151
  2237. package/templates/react/Popup/Popup.css.hbs +0 -21
  2238. package/templates/react/Popup/Popup.jsx.hbs +0 -45
  2239. package/templates/react/Popup/Popup.test.jsx.hbs +0 -17
  2240. package/templates/react/Popup/Popup.test.tsx.hbs +0 -10
  2241. package/templates/react/Popup/Popup.tsx.hbs +0 -139
  2242. package/templates/react/ProgressBar/ProgressBar.css.hbs +0 -17
  2243. package/templates/react/ProgressBar/ProgressBar.jsx.hbs +0 -20
  2244. package/templates/react/ProgressBar/ProgressBar.test.jsx.hbs +0 -16
  2245. package/templates/react/ProgressBar/ProgressBar.test.tsx.hbs +0 -10
  2246. package/templates/react/ProgressBar/ProgressBar.tsx.hbs +0 -63
  2247. package/templates/react/ProgressRing/ProgressRing.css.hbs +0 -21
  2248. package/templates/react/ProgressRing/ProgressRing.jsx.hbs +0 -20
  2249. package/templates/react/ProgressRing/ProgressRing.test.jsx.hbs +0 -16
  2250. package/templates/react/ProgressRing/ProgressRing.test.tsx.hbs +0 -10
  2251. package/templates/react/ProgressRing/ProgressRing.tsx.hbs +0 -60
  2252. package/templates/react/QrCode/QrCode.css.hbs +0 -10
  2253. package/templates/react/QrCode/QrCode.jsx.hbs +0 -18
  2254. package/templates/react/QrCode/QrCode.test.jsx.hbs +0 -11
  2255. package/templates/react/QrCode/QrCode.test.tsx.hbs +0 -10
  2256. package/templates/react/QrCode/QrCode.tsx.hbs +0 -75
  2257. package/templates/react/RadarChart/RadarChart.css.hbs +0 -14
  2258. package/templates/react/RadarChart/RadarChart.jsx.hbs +0 -63
  2259. package/templates/react/RadarChart/RadarChart.test.jsx.hbs +0 -15
  2260. package/templates/react/RadarChart/RadarChart.test.tsx.hbs +0 -10
  2261. package/templates/react/RadarChart/RadarChart.tsx.hbs +0 -89
  2262. package/templates/react/Radio/Radio.css.hbs +0 -16
  2263. package/templates/react/Radio/Radio.jsx.hbs +0 -20
  2264. package/templates/react/Radio/Radio.test.jsx.hbs +0 -11
  2265. package/templates/react/Radio/Radio.test.tsx.hbs +0 -10
  2266. package/templates/react/Radio/Radio.tsx.hbs +0 -94
  2267. package/templates/react/RadioGroup/RadioGroup.css.hbs +0 -14
  2268. package/templates/react/RadioGroup/RadioGroup.jsx.hbs +0 -49
  2269. package/templates/react/RadioGroup/RadioGroup.test.jsx.hbs +0 -17
  2270. package/templates/react/RadioGroup/RadioGroup.test.tsx.hbs +0 -10
  2271. package/templates/react/RadioGroup/RadioGroup.tsx.hbs +0 -133
  2272. package/templates/react/Rating/Rating.css.hbs +0 -15
  2273. package/templates/react/Rating/Rating.jsx.hbs +0 -48
  2274. package/templates/react/Rating/Rating.test.jsx.hbs +0 -18
  2275. package/templates/react/Rating/Rating.test.tsx.hbs +0 -10
  2276. package/templates/react/Rating/Rating.tsx.hbs +0 -138
  2277. package/templates/react/RelativeTime/RelativeTime.css.hbs +0 -7
  2278. package/templates/react/RelativeTime/RelativeTime.jsx.hbs +0 -18
  2279. package/templates/react/RelativeTime/RelativeTime.test.jsx.hbs +0 -11
  2280. package/templates/react/RelativeTime/RelativeTime.test.tsx.hbs +0 -10
  2281. package/templates/react/RelativeTime/RelativeTime.tsx.hbs +0 -74
  2282. package/templates/react/ResizeObserver/ResizeObserver.css.hbs +0 -7
  2283. package/templates/react/ResizeObserver/ResizeObserver.jsx.hbs +0 -38
  2284. package/templates/react/ResizeObserver/ResizeObserver.test.jsx.hbs +0 -15
  2285. package/templates/react/ResizeObserver/ResizeObserver.test.tsx.hbs +0 -10
  2286. package/templates/react/ResizeObserver/ResizeObserver.tsx.hbs +0 -76
  2287. package/templates/react/ScatterChart/ScatterChart.css.hbs +0 -14
  2288. package/templates/react/ScatterChart/ScatterChart.jsx.hbs +0 -60
  2289. package/templates/react/ScatterChart/ScatterChart.test.jsx.hbs +0 -15
  2290. package/templates/react/ScatterChart/ScatterChart.test.tsx.hbs +0 -10
  2291. package/templates/react/ScatterChart/ScatterChart.tsx.hbs +0 -88
  2292. package/templates/react/Scroller/Scroller.css.hbs +0 -14
  2293. package/templates/react/Scroller/Scroller.jsx.hbs +0 -20
  2294. package/templates/react/Scroller/Scroller.test.jsx.hbs +0 -11
  2295. package/templates/react/Scroller/Scroller.test.tsx.hbs +0 -10
  2296. package/templates/react/Scroller/Scroller.tsx.hbs +0 -66
  2297. package/templates/react/Select/Select.css.hbs +0 -29
  2298. package/templates/react/Select/Select.jsx.hbs +0 -79
  2299. package/templates/react/Select/Select.test.jsx.hbs +0 -20
  2300. package/templates/react/Select/Select.test.tsx.hbs +0 -10
  2301. package/templates/react/Select/Select.tsx.hbs +0 -244
  2302. package/templates/react/Skeleton/Skeleton.css.hbs +0 -14
  2303. package/templates/react/Skeleton/Skeleton.jsx.hbs +0 -18
  2304. package/templates/react/Skeleton/Skeleton.test.jsx.hbs +0 -11
  2305. package/templates/react/Skeleton/Skeleton.test.tsx.hbs +0 -10
  2306. package/templates/react/Skeleton/Skeleton.tsx.hbs +0 -57
  2307. package/templates/react/Slider/Slider.css.hbs +0 -31
  2308. package/templates/react/Slider/Slider.jsx.hbs +0 -50
  2309. package/templates/react/Slider/Slider.test.jsx.hbs +0 -19
  2310. package/templates/react/Slider/Slider.test.tsx.hbs +0 -10
  2311. package/templates/react/Slider/Slider.tsx.hbs +0 -189
  2312. package/templates/react/Sparkline/Sparkline.css.hbs +0 -17
  2313. package/templates/react/Sparkline/Sparkline.jsx.hbs +0 -61
  2314. package/templates/react/Sparkline/Sparkline.test.jsx.hbs +0 -15
  2315. package/templates/react/Sparkline/Sparkline.test.tsx.hbs +0 -10
  2316. package/templates/react/Sparkline/Sparkline.tsx.hbs +0 -73
  2317. package/templates/react/Spinner/Spinner.css.hbs +0 -16
  2318. package/templates/react/Spinner/Spinner.jsx.hbs +0 -18
  2319. package/templates/react/Spinner/Spinner.test.jsx.hbs +0 -11
  2320. package/templates/react/Spinner/Spinner.test.tsx.hbs +0 -10
  2321. package/templates/react/Spinner/Spinner.tsx.hbs +0 -53
  2322. package/templates/react/SplitPanel/SplitPanel.css.hbs +0 -19
  2323. package/templates/react/SplitPanel/SplitPanel.jsx.hbs +0 -38
  2324. package/templates/react/SplitPanel/SplitPanel.test.jsx.hbs +0 -16
  2325. package/templates/react/SplitPanel/SplitPanel.test.tsx.hbs +0 -10
  2326. package/templates/react/SplitPanel/SplitPanel.tsx.hbs +0 -94
  2327. package/templates/react/Switch/Switch.css.hbs +0 -19
  2328. package/templates/react/Switch/Switch.jsx.hbs +0 -51
  2329. package/templates/react/Switch/Switch.test.jsx.hbs +0 -19
  2330. package/templates/react/Switch/Switch.test.tsx.hbs +0 -10
  2331. package/templates/react/Switch/Switch.tsx.hbs +0 -158
  2332. package/templates/react/Tab/Tab.css.hbs +0 -10
  2333. package/templates/react/Tab/Tab.jsx.hbs +0 -20
  2334. package/templates/react/Tab/Tab.test.jsx.hbs +0 -11
  2335. package/templates/react/Tab/Tab.test.tsx.hbs +0 -10
  2336. package/templates/react/Tab/Tab.tsx.hbs +0 -60
  2337. package/templates/react/TabGroup/TabGroup.css.hbs +0 -22
  2338. package/templates/react/TabGroup/TabGroup.jsx.hbs +0 -42
  2339. package/templates/react/TabGroup/TabGroup.test.jsx.hbs +0 -11
  2340. package/templates/react/TabGroup/TabGroup.test.tsx.hbs +0 -10
  2341. package/templates/react/TabGroup/TabGroup.tsx.hbs +0 -94
  2342. package/templates/react/TabPanel/TabPanel.css.hbs +0 -13
  2343. package/templates/react/TabPanel/TabPanel.jsx.hbs +0 -20
  2344. package/templates/react/TabPanel/TabPanel.test.jsx.hbs +0 -11
  2345. package/templates/react/TabPanel/TabPanel.test.tsx.hbs +0 -10
  2346. package/templates/react/TabPanel/TabPanel.tsx.hbs +0 -60
  2347. package/templates/react/Tag/Tag.css.hbs +0 -13
  2348. package/templates/react/Tag/Tag.jsx.hbs +0 -41
  2349. package/templates/react/Tag/Tag.test.jsx.hbs +0 -11
  2350. package/templates/react/Tag/Tag.test.tsx.hbs +0 -10
  2351. package/templates/react/Tag/Tag.tsx.hbs +0 -95
  2352. package/templates/react/Textarea/Textarea.css.hbs +0 -14
  2353. package/templates/react/Textarea/Textarea.jsx.hbs +0 -58
  2354. package/templates/react/Textarea/Textarea.test.jsx.hbs +0 -11
  2355. package/templates/react/Textarea/Textarea.test.tsx.hbs +0 -10
  2356. package/templates/react/Textarea/Textarea.tsx.hbs +0 -209
  2357. package/templates/react/Toast/Toast.css.hbs +0 -14
  2358. package/templates/react/Toast/Toast.jsx.hbs +0 -57
  2359. package/templates/react/Toast/Toast.test.jsx.hbs +0 -10
  2360. package/templates/react/Toast/Toast.test.tsx.hbs +0 -10
  2361. package/templates/react/Toast/Toast.tsx.hbs +0 -67
  2362. package/templates/react/ToastItem/ToastItem.css.hbs +0 -21
  2363. package/templates/react/ToastItem/ToastItem.jsx.hbs +0 -82
  2364. package/templates/react/ToastItem/ToastItem.test.jsx.hbs +0 -15
  2365. package/templates/react/ToastItem/ToastItem.test.tsx.hbs +0 -10
  2366. package/templates/react/ToastItem/ToastItem.tsx.hbs +0 -111
  2367. package/templates/react/Tooltip/Tooltip.css.hbs +0 -16
  2368. package/templates/react/Tooltip/Tooltip.jsx.hbs +0 -63
  2369. package/templates/react/Tooltip/Tooltip.test.jsx.hbs +0 -15
  2370. package/templates/react/Tooltip/Tooltip.test.tsx.hbs +0 -10
  2371. package/templates/react/Tooltip/Tooltip.tsx.hbs +0 -150
  2372. package/templates/react/Tree/Tree.css.hbs +0 -17
  2373. package/templates/react/Tree/Tree.jsx.hbs +0 -41
  2374. package/templates/react/Tree/Tree.test.jsx.hbs +0 -11
  2375. package/templates/react/Tree/Tree.test.tsx.hbs +0 -10
  2376. package/templates/react/Tree/Tree.tsx.hbs +0 -76
  2377. package/templates/react/TreeItem/TreeItem.css.hbs +0 -27
  2378. package/templates/react/TreeItem/TreeItem.jsx.hbs +0 -57
  2379. package/templates/react/TreeItem/TreeItem.test.jsx.hbs +0 -11
  2380. package/templates/react/TreeItem/TreeItem.test.tsx.hbs +0 -10
  2381. package/templates/react/TreeItem/TreeItem.tsx.hbs +0 -142
  2382. package/templates/react/ZoomableFrame/ZoomableFrame.css.hbs +0 -11
  2383. package/templates/react/ZoomableFrame/ZoomableFrame.jsx.hbs +0 -52
  2384. package/templates/react/ZoomableFrame/ZoomableFrame.test.jsx.hbs +0 -11
  2385. package/templates/react/ZoomableFrame/ZoomableFrame.test.tsx.hbs +0 -10
  2386. package/templates/react/ZoomableFrame/ZoomableFrame.tsx.hbs +0 -147
  2387. package/templates/react/vite-env.d.ts.hbs +0 -21
  2388. package/templates/vue/AnimatedImage/AnimatedImage.css.hbs +0 -11
  2389. package/templates/vue/AnimatedImage/AnimatedImage.js.vue.hbs +0 -60
  2390. package/templates/vue/AnimatedImage/AnimatedImage.test.js.hbs +0 -10
  2391. package/templates/vue/AnimatedImage/AnimatedImage.test.ts.hbs +0 -10
  2392. package/templates/vue/AnimatedImage/AnimatedImage.vue.hbs +0 -66
  2393. package/templates/vue/Animation/Animation.js.vue.hbs +0 -73
  2394. package/templates/vue/Animation/Animation.test.js.hbs +0 -10
  2395. package/templates/vue/Animation/Animation.test.ts.hbs +0 -10
  2396. package/templates/vue/Animation/Animation.vue.hbs +0 -80
  2397. package/templates/vue/Avatar/Avatar.css.hbs +0 -11
  2398. package/templates/vue/Avatar/Avatar.js.vue.hbs +0 -59
  2399. package/templates/vue/Avatar/Avatar.test.js.hbs +0 -10
  2400. package/templates/vue/Avatar/Avatar.test.ts.hbs +0 -10
  2401. package/templates/vue/Avatar/Avatar.vue.hbs +0 -64
  2402. package/templates/vue/Badge/Badge.css.hbs +0 -11
  2403. package/templates/vue/Badge/Badge.js.vue.hbs +0 -42
  2404. package/templates/vue/Badge/Badge.test.js.hbs +0 -10
  2405. package/templates/vue/Badge/Badge.test.ts.hbs +0 -10
  2406. package/templates/vue/Badge/Badge.vue.hbs +0 -43
  2407. package/templates/vue/BarChart/BarChart.css.hbs +0 -11
  2408. package/templates/vue/BarChart/BarChart.js.vue.hbs +0 -52
  2409. package/templates/vue/BarChart/BarChart.test.js.hbs +0 -10
  2410. package/templates/vue/BarChart/BarChart.test.ts.hbs +0 -10
  2411. package/templates/vue/BarChart/BarChart.vue.hbs +0 -53
  2412. package/templates/vue/Breadcrumb/Breadcrumb.css.hbs +0 -11
  2413. package/templates/vue/Breadcrumb/Breadcrumb.js.vue.hbs +0 -39
  2414. package/templates/vue/Breadcrumb/Breadcrumb.test.js.hbs +0 -10
  2415. package/templates/vue/Breadcrumb/Breadcrumb.test.ts.hbs +0 -10
  2416. package/templates/vue/Breadcrumb/Breadcrumb.vue.hbs +0 -40
  2417. package/templates/vue/BreadcrumbItem/BreadcrumbItem.css.hbs +0 -11
  2418. package/templates/vue/BreadcrumbItem/BreadcrumbItem.js.vue.hbs +0 -41
  2419. package/templates/vue/BreadcrumbItem/BreadcrumbItem.test.js.hbs +0 -10
  2420. package/templates/vue/BreadcrumbItem/BreadcrumbItem.test.ts.hbs +0 -10
  2421. package/templates/vue/BreadcrumbItem/BreadcrumbItem.vue.hbs +0 -42
  2422. package/templates/vue/BubbleChart/BubbleChart.css.hbs +0 -11
  2423. package/templates/vue/BubbleChart/BubbleChart.js.vue.hbs +0 -51
  2424. package/templates/vue/BubbleChart/BubbleChart.test.js.hbs +0 -10
  2425. package/templates/vue/BubbleChart/BubbleChart.test.ts.hbs +0 -10
  2426. package/templates/vue/BubbleChart/BubbleChart.vue.hbs +0 -52
  2427. package/templates/vue/Button/Button.css.hbs +0 -20
  2428. package/templates/vue/Button/Button.js.vue.hbs +0 -85
  2429. package/templates/vue/Button/Button.test.js.hbs +0 -10
  2430. package/templates/vue/Button/Button.test.ts.hbs +0 -10
  2431. package/templates/vue/Button/Button.vue.hbs +0 -92
  2432. package/templates/vue/ButtonGroup/ButtonGroup.css.hbs +0 -11
  2433. package/templates/vue/ButtonGroup/ButtonGroup.js.vue.hbs +0 -40
  2434. package/templates/vue/ButtonGroup/ButtonGroup.test.js.hbs +0 -10
  2435. package/templates/vue/ButtonGroup/ButtonGroup.test.ts.hbs +0 -10
  2436. package/templates/vue/ButtonGroup/ButtonGroup.vue.hbs +0 -41
  2437. package/templates/vue/Callout/Callout.css.hbs +0 -11
  2438. package/templates/vue/Callout/Callout.js.vue.hbs +0 -41
  2439. package/templates/vue/Callout/Callout.test.js.hbs +0 -10
  2440. package/templates/vue/Callout/Callout.test.ts.hbs +0 -10
  2441. package/templates/vue/Callout/Callout.vue.hbs +0 -42
  2442. package/templates/vue/Card/Card.css.hbs +0 -17
  2443. package/templates/vue/Card/Card.js.vue.hbs +0 -43
  2444. package/templates/vue/Card/Card.test.js.hbs +0 -10
  2445. package/templates/vue/Card/Card.test.ts.hbs +0 -10
  2446. package/templates/vue/Card/Card.vue.hbs +0 -44
  2447. package/templates/vue/Carousel/Carousel.css.hbs +0 -11
  2448. package/templates/vue/Carousel/Carousel.js.vue.hbs +0 -66
  2449. package/templates/vue/Carousel/Carousel.test.js.hbs +0 -10
  2450. package/templates/vue/Carousel/Carousel.test.ts.hbs +0 -10
  2451. package/templates/vue/Carousel/Carousel.vue.hbs +0 -71
  2452. package/templates/vue/CarouselItem/CarouselItem.css.hbs +0 -11
  2453. package/templates/vue/CarouselItem/CarouselItem.js.vue.hbs +0 -39
  2454. package/templates/vue/CarouselItem/CarouselItem.test.js.hbs +0 -10
  2455. package/templates/vue/CarouselItem/CarouselItem.test.ts.hbs +0 -10
  2456. package/templates/vue/CarouselItem/CarouselItem.vue.hbs +0 -40
  2457. package/templates/vue/Chart/Chart.css.hbs +0 -11
  2458. package/templates/vue/Chart/Chart.js.vue.hbs +0 -52
  2459. package/templates/vue/Chart/Chart.test.js.hbs +0 -10
  2460. package/templates/vue/Chart/Chart.test.ts.hbs +0 -10
  2461. package/templates/vue/Chart/Chart.vue.hbs +0 -53
  2462. package/templates/vue/Checkbox/Checkbox.css.hbs +0 -11
  2463. package/templates/vue/Checkbox/Checkbox.js.vue.hbs +0 -87
  2464. package/templates/vue/Checkbox/Checkbox.test.js.hbs +0 -10
  2465. package/templates/vue/Checkbox/Checkbox.test.ts.hbs +0 -10
  2466. package/templates/vue/Checkbox/Checkbox.vue.hbs +0 -96
  2467. package/templates/vue/ColorPicker/ColorPicker.css.hbs +0 -11
  2468. package/templates/vue/ColorPicker/ColorPicker.js.vue.hbs +0 -110
  2469. package/templates/vue/ColorPicker/ColorPicker.test.js.hbs +0 -10
  2470. package/templates/vue/ColorPicker/ColorPicker.test.ts.hbs +0 -10
  2471. package/templates/vue/ColorPicker/ColorPicker.vue.hbs +0 -123
  2472. package/templates/vue/Combobox/Combobox.css.hbs +0 -11
  2473. package/templates/vue/Combobox/Combobox.js.vue.hbs +0 -120
  2474. package/templates/vue/Combobox/Combobox.test.js.hbs +0 -10
  2475. package/templates/vue/Combobox/Combobox.test.ts.hbs +0 -10
  2476. package/templates/vue/Combobox/Combobox.vue.hbs +0 -136
  2477. package/templates/vue/Comparison/Comparison.css.hbs +0 -11
  2478. package/templates/vue/Comparison/Comparison.js.vue.hbs +0 -55
  2479. package/templates/vue/Comparison/Comparison.test.js.hbs +0 -10
  2480. package/templates/vue/Comparison/Comparison.test.ts.hbs +0 -10
  2481. package/templates/vue/Comparison/Comparison.vue.hbs +0 -60
  2482. package/templates/vue/CopyButton/CopyButton.css.hbs +0 -11
  2483. package/templates/vue/CopyButton/CopyButton.js.vue.hbs +0 -65
  2484. package/templates/vue/CopyButton/CopyButton.test.js.hbs +0 -10
  2485. package/templates/vue/CopyButton/CopyButton.test.ts.hbs +0 -10
  2486. package/templates/vue/CopyButton/CopyButton.vue.hbs +0 -71
  2487. package/templates/vue/Details/Details.css.hbs +0 -11
  2488. package/templates/vue/Details/Details.js.vue.hbs +0 -81
  2489. package/templates/vue/Details/Details.test.js.hbs +0 -10
  2490. package/templates/vue/Details/Details.test.ts.hbs +0 -10
  2491. package/templates/vue/Details/Details.vue.hbs +0 -89
  2492. package/templates/vue/Dialog/Dialog.css.hbs +0 -23
  2493. package/templates/vue/Dialog/Dialog.js.vue.hbs +0 -79
  2494. package/templates/vue/Dialog/Dialog.test.js.hbs +0 -10
  2495. package/templates/vue/Dialog/Dialog.test.ts.hbs +0 -10
  2496. package/templates/vue/Dialog/Dialog.vue.hbs +0 -94
  2497. package/templates/vue/Divider/Divider.css.hbs +0 -11
  2498. package/templates/vue/Divider/Divider.js.vue.hbs +0 -39
  2499. package/templates/vue/Divider/Divider.test.js.hbs +0 -10
  2500. package/templates/vue/Divider/Divider.test.ts.hbs +0 -10
  2501. package/templates/vue/Divider/Divider.vue.hbs +0 -40
  2502. package/templates/vue/DoughnutChart/DoughnutChart.css.hbs +0 -11
  2503. package/templates/vue/DoughnutChart/DoughnutChart.js.vue.hbs +0 -44
  2504. package/templates/vue/DoughnutChart/DoughnutChart.test.js.hbs +0 -10
  2505. package/templates/vue/DoughnutChart/DoughnutChart.test.ts.hbs +0 -10
  2506. package/templates/vue/DoughnutChart/DoughnutChart.vue.hbs +0 -45
  2507. package/templates/vue/Drawer/Drawer.css.hbs +0 -11
  2508. package/templates/vue/Drawer/Drawer.js.vue.hbs +0 -73
  2509. package/templates/vue/Drawer/Drawer.test.js.hbs +0 -10
  2510. package/templates/vue/Drawer/Drawer.test.ts.hbs +0 -10
  2511. package/templates/vue/Drawer/Drawer.vue.hbs +0 -81
  2512. package/templates/vue/Dropdown/Dropdown.css.hbs +0 -11
  2513. package/templates/vue/Dropdown/Dropdown.js.vue.hbs +0 -84
  2514. package/templates/vue/Dropdown/Dropdown.test.js.hbs +0 -10
  2515. package/templates/vue/Dropdown/Dropdown.test.ts.hbs +0 -10
  2516. package/templates/vue/Dropdown/Dropdown.vue.hbs +0 -98
  2517. package/templates/vue/DropdownItem/DropdownItem.css.hbs +0 -11
  2518. package/templates/vue/DropdownItem/DropdownItem.js.vue.hbs +0 -65
  2519. package/templates/vue/DropdownItem/DropdownItem.test.js.hbs +0 -10
  2520. package/templates/vue/DropdownItem/DropdownItem.test.ts.hbs +0 -10
  2521. package/templates/vue/DropdownItem/DropdownItem.vue.hbs +0 -71
  2522. package/templates/vue/FileInput/FileInput.css.hbs +0 -19
  2523. package/templates/vue/FileInput/FileInput.js.vue.hbs +0 -78
  2524. package/templates/vue/FileInput/FileInput.test.js.hbs +0 -10
  2525. package/templates/vue/FileInput/FileInput.test.ts.hbs +0 -10
  2526. package/templates/vue/FileInput/FileInput.vue.hbs +0 -88
  2527. package/templates/vue/FormatBytes/FormatBytes.js.vue.hbs +0 -42
  2528. package/templates/vue/FormatBytes/FormatBytes.test.js.hbs +0 -10
  2529. package/templates/vue/FormatBytes/FormatBytes.test.ts.hbs +0 -10
  2530. package/templates/vue/FormatBytes/FormatBytes.vue.hbs +0 -43
  2531. package/templates/vue/FormatDate/FormatDate.js.vue.hbs +0 -51
  2532. package/templates/vue/FormatDate/FormatDate.test.js.hbs +0 -10
  2533. package/templates/vue/FormatDate/FormatDate.test.ts.hbs +0 -10
  2534. package/templates/vue/FormatDate/FormatDate.vue.hbs +0 -52
  2535. package/templates/vue/FormatNumber/FormatNumber.js.vue.hbs +0 -49
  2536. package/templates/vue/FormatNumber/FormatNumber.test.js.hbs +0 -10
  2537. package/templates/vue/FormatNumber/FormatNumber.test.ts.hbs +0 -10
  2538. package/templates/vue/FormatNumber/FormatNumber.vue.hbs +0 -50
  2539. package/templates/vue/Icon/Icon.css.hbs +0 -11
  2540. package/templates/vue/Icon/Icon.js.vue.hbs +0 -68
  2541. package/templates/vue/Icon/Icon.test.js.hbs +0 -10
  2542. package/templates/vue/Icon/Icon.test.ts.hbs +0 -10
  2543. package/templates/vue/Icon/Icon.vue.hbs +0 -74
  2544. package/templates/vue/Include/Include.js.vue.hbs +0 -60
  2545. package/templates/vue/Include/Include.test.js.hbs +0 -10
  2546. package/templates/vue/Include/Include.test.ts.hbs +0 -10
  2547. package/templates/vue/Include/Include.vue.hbs +0 -66
  2548. package/templates/vue/Input/Input.css.hbs +0 -24
  2549. package/templates/vue/Input/Input.js.vue.hbs +0 -115
  2550. package/templates/vue/Input/Input.test.js.hbs +0 -10
  2551. package/templates/vue/Input/Input.test.ts.hbs +0 -10
  2552. package/templates/vue/Input/Input.vue.hbs +0 -125
  2553. package/templates/vue/IntersectionObserver/IntersectionObserver.js.vue.hbs +0 -59
  2554. package/templates/vue/IntersectionObserver/IntersectionObserver.test.js.hbs +0 -10
  2555. package/templates/vue/IntersectionObserver/IntersectionObserver.test.ts.hbs +0 -10
  2556. package/templates/vue/IntersectionObserver/IntersectionObserver.vue.hbs +0 -64
  2557. package/templates/vue/LineChart/LineChart.css.hbs +0 -11
  2558. package/templates/vue/LineChart/LineChart.js.vue.hbs +0 -51
  2559. package/templates/vue/LineChart/LineChart.test.js.hbs +0 -10
  2560. package/templates/vue/LineChart/LineChart.test.ts.hbs +0 -10
  2561. package/templates/vue/LineChart/LineChart.vue.hbs +0 -52
  2562. package/templates/vue/Markdown/Markdown.css.hbs +0 -10
  2563. package/templates/vue/Markdown/Markdown.js.vue.hbs +0 -40
  2564. package/templates/vue/Markdown/Markdown.test.js.hbs +0 -10
  2565. package/templates/vue/Markdown/Markdown.test.ts.hbs +0 -10
  2566. package/templates/vue/Markdown/Markdown.vue.hbs +0 -49
  2567. package/templates/vue/MutationObserver/MutationObserver.js.vue.hbs +0 -61
  2568. package/templates/vue/MutationObserver/MutationObserver.test.js.hbs +0 -10
  2569. package/templates/vue/MutationObserver/MutationObserver.test.ts.hbs +0 -10
  2570. package/templates/vue/MutationObserver/MutationObserver.vue.hbs +0 -66
  2571. package/templates/vue/NumberInput/NumberInput.css.hbs +0 -19
  2572. package/templates/vue/NumberInput/NumberInput.js.vue.hbs +0 -93
  2573. package/templates/vue/NumberInput/NumberInput.test.js.hbs +0 -10
  2574. package/templates/vue/NumberInput/NumberInput.test.ts.hbs +0 -10
  2575. package/templates/vue/NumberInput/NumberInput.vue.hbs +0 -102
  2576. package/templates/vue/Option/Option.css.hbs +0 -11
  2577. package/templates/vue/Option/Option.js.vue.hbs +0 -42
  2578. package/templates/vue/Option/Option.test.js.hbs +0 -10
  2579. package/templates/vue/Option/Option.test.ts.hbs +0 -10
  2580. package/templates/vue/Option/Option.vue.hbs +0 -43
  2581. package/templates/vue/Page/Page.css.hbs +0 -11
  2582. package/templates/vue/Page/Page.js.vue.hbs +0 -47
  2583. package/templates/vue/Page/Page.test.js.hbs +0 -10
  2584. package/templates/vue/Page/Page.test.ts.hbs +0 -10
  2585. package/templates/vue/Page/Page.vue.hbs +0 -48
  2586. package/templates/vue/PieChart/PieChart.css.hbs +0 -11
  2587. package/templates/vue/PieChart/PieChart.js.vue.hbs +0 -44
  2588. package/templates/vue/PieChart/PieChart.test.js.hbs +0 -10
  2589. package/templates/vue/PieChart/PieChart.test.ts.hbs +0 -10
  2590. package/templates/vue/PieChart/PieChart.vue.hbs +0 -45
  2591. package/templates/vue/PolarAreaChart/PolarAreaChart.css.hbs +0 -11
  2592. package/templates/vue/PolarAreaChart/PolarAreaChart.js.vue.hbs +0 -44
  2593. package/templates/vue/PolarAreaChart/PolarAreaChart.test.js.hbs +0 -10
  2594. package/templates/vue/PolarAreaChart/PolarAreaChart.test.ts.hbs +0 -10
  2595. package/templates/vue/PolarAreaChart/PolarAreaChart.vue.hbs +0 -45
  2596. package/templates/vue/Popover/Popover.css.hbs +0 -11
  2597. package/templates/vue/Popover/Popover.js.vue.hbs +0 -84
  2598. package/templates/vue/Popover/Popover.test.js.hbs +0 -10
  2599. package/templates/vue/Popover/Popover.test.ts.hbs +0 -10
  2600. package/templates/vue/Popover/Popover.vue.hbs +0 -92
  2601. package/templates/vue/Popup/Popup.css.hbs +0 -11
  2602. package/templates/vue/Popup/Popup.js.vue.hbs +0 -73
  2603. package/templates/vue/Popup/Popup.test.js.hbs +0 -10
  2604. package/templates/vue/Popup/Popup.test.ts.hbs +0 -10
  2605. package/templates/vue/Popup/Popup.vue.hbs +0 -78
  2606. package/templates/vue/ProgressBar/ProgressBar.css.hbs +0 -11
  2607. package/templates/vue/ProgressBar/ProgressBar.js.vue.hbs +0 -41
  2608. package/templates/vue/ProgressBar/ProgressBar.test.js.hbs +0 -10
  2609. package/templates/vue/ProgressBar/ProgressBar.test.ts.hbs +0 -10
  2610. package/templates/vue/ProgressBar/ProgressBar.vue.hbs +0 -42
  2611. package/templates/vue/ProgressRing/ProgressRing.css.hbs +0 -11
  2612. package/templates/vue/ProgressRing/ProgressRing.js.vue.hbs +0 -40
  2613. package/templates/vue/ProgressRing/ProgressRing.test.js.hbs +0 -10
  2614. package/templates/vue/ProgressRing/ProgressRing.test.ts.hbs +0 -10
  2615. package/templates/vue/ProgressRing/ProgressRing.vue.hbs +0 -41
  2616. package/templates/vue/QrCode/QrCode.css.hbs +0 -11
  2617. package/templates/vue/QrCode/QrCode.js.vue.hbs +0 -45
  2618. package/templates/vue/QrCode/QrCode.test.js.hbs +0 -10
  2619. package/templates/vue/QrCode/QrCode.test.ts.hbs +0 -10
  2620. package/templates/vue/QrCode/QrCode.vue.hbs +0 -46
  2621. package/templates/vue/RadarChart/RadarChart.css.hbs +0 -11
  2622. package/templates/vue/RadarChart/RadarChart.js.vue.hbs +0 -48
  2623. package/templates/vue/RadarChart/RadarChart.test.js.hbs +0 -10
  2624. package/templates/vue/RadarChart/RadarChart.test.ts.hbs +0 -10
  2625. package/templates/vue/RadarChart/RadarChart.vue.hbs +0 -49
  2626. package/templates/vue/Radio/Radio.css.hbs +0 -11
  2627. package/templates/vue/Radio/Radio.js.vue.hbs +0 -64
  2628. package/templates/vue/Radio/Radio.test.js.hbs +0 -10
  2629. package/templates/vue/Radio/Radio.test.ts.hbs +0 -10
  2630. package/templates/vue/Radio/Radio.vue.hbs +0 -70
  2631. package/templates/vue/RadioGroup/RadioGroup.css.hbs +0 -11
  2632. package/templates/vue/RadioGroup/RadioGroup.js.vue.hbs +0 -81
  2633. package/templates/vue/RadioGroup/RadioGroup.test.js.hbs +0 -10
  2634. package/templates/vue/RadioGroup/RadioGroup.test.ts.hbs +0 -10
  2635. package/templates/vue/RadioGroup/RadioGroup.vue.hbs +0 -88
  2636. package/templates/vue/Rating/Rating.css.hbs +0 -11
  2637. package/templates/vue/Rating/Rating.js.vue.hbs +0 -78
  2638. package/templates/vue/Rating/Rating.test.js.hbs +0 -10
  2639. package/templates/vue/Rating/Rating.test.ts.hbs +0 -10
  2640. package/templates/vue/Rating/Rating.vue.hbs +0 -85
  2641. package/templates/vue/RelativeTime/RelativeTime.js.vue.hbs +0 -43
  2642. package/templates/vue/RelativeTime/RelativeTime.test.js.hbs +0 -10
  2643. package/templates/vue/RelativeTime/RelativeTime.test.ts.hbs +0 -10
  2644. package/templates/vue/RelativeTime/RelativeTime.vue.hbs +0 -44
  2645. package/templates/vue/ResizeObserver/ResizeObserver.js.vue.hbs +0 -55
  2646. package/templates/vue/ResizeObserver/ResizeObserver.test.js.hbs +0 -10
  2647. package/templates/vue/ResizeObserver/ResizeObserver.test.ts.hbs +0 -10
  2648. package/templates/vue/ResizeObserver/ResizeObserver.vue.hbs +0 -60
  2649. package/templates/vue/ScatterChart/ScatterChart.css.hbs +0 -11
  2650. package/templates/vue/ScatterChart/ScatterChart.js.vue.hbs +0 -49
  2651. package/templates/vue/ScatterChart/ScatterChart.test.js.hbs +0 -10
  2652. package/templates/vue/ScatterChart/ScatterChart.test.ts.hbs +0 -10
  2653. package/templates/vue/ScatterChart/ScatterChart.vue.hbs +0 -50
  2654. package/templates/vue/Scroller/Scroller.css.hbs +0 -11
  2655. package/templates/vue/Scroller/Scroller.js.vue.hbs +0 -42
  2656. package/templates/vue/Scroller/Scroller.test.js.hbs +0 -10
  2657. package/templates/vue/Scroller/Scroller.test.ts.hbs +0 -10
  2658. package/templates/vue/Scroller/Scroller.vue.hbs +0 -43
  2659. package/templates/vue/Select/Select.css.hbs +0 -11
  2660. package/templates/vue/Select/Select.js.vue.hbs +0 -113
  2661. package/templates/vue/Select/Select.test.js.hbs +0 -10
  2662. package/templates/vue/Select/Select.test.ts.hbs +0 -10
  2663. package/templates/vue/Select/Select.vue.hbs +0 -127
  2664. package/templates/vue/Skeleton/Skeleton.css.hbs +0 -11
  2665. package/templates/vue/Skeleton/Skeleton.js.vue.hbs +0 -39
  2666. package/templates/vue/Skeleton/Skeleton.test.js.hbs +0 -10
  2667. package/templates/vue/Skeleton/Skeleton.test.ts.hbs +0 -10
  2668. package/templates/vue/Skeleton/Skeleton.vue.hbs +0 -40
  2669. package/templates/vue/Slider/Slider.css.hbs +0 -11
  2670. package/templates/vue/Slider/Slider.js.vue.hbs +0 -95
  2671. package/templates/vue/Slider/Slider.test.js.hbs +0 -10
  2672. package/templates/vue/Slider/Slider.test.ts.hbs +0 -10
  2673. package/templates/vue/Slider/Slider.vue.hbs +0 -104
  2674. package/templates/vue/Sparkline/Sparkline.css.hbs +0 -14
  2675. package/templates/vue/Sparkline/Sparkline.js.vue.hbs +0 -43
  2676. package/templates/vue/Sparkline/Sparkline.test.js.hbs +0 -10
  2677. package/templates/vue/Sparkline/Sparkline.test.ts.hbs +0 -10
  2678. package/templates/vue/Sparkline/Sparkline.vue.hbs +0 -44
  2679. package/templates/vue/Spinner/Spinner.css.hbs +0 -11
  2680. package/templates/vue/Spinner/Spinner.js.vue.hbs +0 -39
  2681. package/templates/vue/Spinner/Spinner.test.js.hbs +0 -10
  2682. package/templates/vue/Spinner/Spinner.test.ts.hbs +0 -10
  2683. package/templates/vue/Spinner/Spinner.vue.hbs +0 -40
  2684. package/templates/vue/SplitPanel/SplitPanel.css.hbs +0 -11
  2685. package/templates/vue/SplitPanel/SplitPanel.js.vue.hbs +0 -61
  2686. package/templates/vue/SplitPanel/SplitPanel.test.js.hbs +0 -10
  2687. package/templates/vue/SplitPanel/SplitPanel.test.ts.hbs +0 -10
  2688. package/templates/vue/SplitPanel/SplitPanel.vue.hbs +0 -66
  2689. package/templates/vue/Switch/Switch.css.hbs +0 -11
  2690. package/templates/vue/Switch/Switch.js.vue.hbs +0 -86
  2691. package/templates/vue/Switch/Switch.test.js.hbs +0 -10
  2692. package/templates/vue/Switch/Switch.test.ts.hbs +0 -10
  2693. package/templates/vue/Switch/Switch.vue.hbs +0 -95
  2694. package/templates/vue/Tab/Tab.css.hbs +0 -11
  2695. package/templates/vue/Tab/Tab.js.vue.hbs +0 -40
  2696. package/templates/vue/Tab/Tab.test.js.hbs +0 -10
  2697. package/templates/vue/Tab/Tab.test.ts.hbs +0 -10
  2698. package/templates/vue/Tab/Tab.vue.hbs +0 -41
  2699. package/templates/vue/TabGroup/TabGroup.css.hbs +0 -11
  2700. package/templates/vue/TabGroup/TabGroup.js.vue.hbs +0 -61
  2701. package/templates/vue/TabGroup/TabGroup.test.js.hbs +0 -10
  2702. package/templates/vue/TabGroup/TabGroup.test.ts.hbs +0 -10
  2703. package/templates/vue/TabGroup/TabGroup.vue.hbs +0 -67
  2704. package/templates/vue/TabPanel/TabPanel.css.hbs +0 -11
  2705. package/templates/vue/TabPanel/TabPanel.js.vue.hbs +0 -40
  2706. package/templates/vue/TabPanel/TabPanel.test.js.hbs +0 -10
  2707. package/templates/vue/TabPanel/TabPanel.test.ts.hbs +0 -10
  2708. package/templates/vue/TabPanel/TabPanel.vue.hbs +0 -41
  2709. package/templates/vue/Tag/Tag.css.hbs +0 -11
  2710. package/templates/vue/Tag/Tag.js.vue.hbs +0 -59
  2711. package/templates/vue/Tag/Tag.test.js.hbs +0 -10
  2712. package/templates/vue/Tag/Tag.test.ts.hbs +0 -10
  2713. package/templates/vue/Tag/Tag.vue.hbs +0 -64
  2714. package/templates/vue/Textarea/Textarea.css.hbs +0 -11
  2715. package/templates/vue/Textarea/Textarea.js.vue.hbs +0 -98
  2716. package/templates/vue/Textarea/Textarea.test.js.hbs +0 -10
  2717. package/templates/vue/Textarea/Textarea.test.ts.hbs +0 -10
  2718. package/templates/vue/Textarea/Textarea.vue.hbs +0 -107
  2719. package/templates/vue/Toast/Toast.css.hbs +0 -11
  2720. package/templates/vue/Toast/Toast.js.vue.hbs +0 -40
  2721. package/templates/vue/Toast/Toast.test.js.hbs +0 -10
  2722. package/templates/vue/Toast/Toast.test.ts.hbs +0 -10
  2723. package/templates/vue/Toast/Toast.vue.hbs +0 -41
  2724. package/templates/vue/ToastItem/ToastItem.css.hbs +0 -11
  2725. package/templates/vue/ToastItem/ToastItem.js.vue.hbs +0 -67
  2726. package/templates/vue/ToastItem/ToastItem.test.js.hbs +0 -10
  2727. package/templates/vue/ToastItem/ToastItem.test.ts.hbs +0 -10
  2728. package/templates/vue/ToastItem/ToastItem.vue.hbs +0 -75
  2729. package/templates/vue/Tooltip/Tooltip.css.hbs +0 -11
  2730. package/templates/vue/Tooltip/Tooltip.js.vue.hbs +0 -85
  2731. package/templates/vue/Tooltip/Tooltip.test.js.hbs +0 -10
  2732. package/templates/vue/Tooltip/Tooltip.test.ts.hbs +0 -10
  2733. package/templates/vue/Tooltip/Tooltip.vue.hbs +0 -93
  2734. package/templates/vue/Tree/Tree.css.hbs +0 -11
  2735. package/templates/vue/Tree/Tree.js.vue.hbs +0 -55
  2736. package/templates/vue/Tree/Tree.test.js.hbs +0 -10
  2737. package/templates/vue/Tree/Tree.test.ts.hbs +0 -10
  2738. package/templates/vue/Tree/Tree.vue.hbs +0 -60
  2739. package/templates/vue/TreeItem/TreeItem.css.hbs +0 -11
  2740. package/templates/vue/TreeItem/TreeItem.js.vue.hbs +0 -77
  2741. package/templates/vue/TreeItem/TreeItem.test.js.hbs +0 -10
  2742. package/templates/vue/TreeItem/TreeItem.test.ts.hbs +0 -10
  2743. package/templates/vue/TreeItem/TreeItem.vue.hbs +0 -87
  2744. package/templates/vue/ZoomableFrame/ZoomableFrame.css.hbs +0 -11
  2745. package/templates/vue/ZoomableFrame/ZoomableFrame.js.vue.hbs +0 -69
  2746. package/templates/vue/ZoomableFrame/ZoomableFrame.test.js.hbs +0 -10
  2747. package/templates/vue/ZoomableFrame/ZoomableFrame.test.ts.hbs +0 -10
  2748. package/templates/vue/ZoomableFrame/ZoomableFrame.vue.hbs +0 -75
  2749. /package/dist/{tier-4FZLELBX.js.map → project-config-D3FYPYTX.js.map} +0 -0
  2750. /package/{dist/templates/angular/Animation/animation.component.css.hbs → templates/angular/Animation/animation.component.css} +0 -0
  2751. /package/{dist/templates/angular/FormatBytes/format-bytes.component.css.hbs → templates/angular/FormatBytes/format-bytes.component.css} +0 -0
  2752. /package/{dist/templates/angular/FormatDate/format-date.component.css.hbs → templates/angular/FormatDate/format-date.component.css} +0 -0
  2753. /package/{dist/templates/angular/FormatNumber/format-number.component.css.hbs → templates/angular/FormatNumber/format-number.component.css} +0 -0
  2754. /package/{dist/templates/angular/Include/include.component.css.hbs → templates/angular/Include/include.component.css} +0 -0
  2755. /package/{dist/templates/angular/IntersectionObserver/intersection-observer.component.css.hbs → templates/angular/IntersectionObserver/intersection-observer.component.css} +0 -0
  2756. /package/{dist/templates/angular/Markdown/markdown.component.css.hbs → templates/angular/Markdown/markdown.component.css} +0 -0
  2757. /package/{dist/templates/angular/MutationObserver/mutation-observer.component.css.hbs → templates/angular/MutationObserver/mutation-observer.component.css} +0 -0
  2758. /package/{dist/templates/angular/RelativeTime/relative-time.component.css.hbs → templates/angular/RelativeTime/relative-time.component.css} +0 -0
  2759. /package/{dist/templates/angular/ResizeObserver/resize-observer.component.css.hbs → templates/angular/ResizeObserver/resize-observer.component.css} +0 -0
  2760. /package/{dist/templates/react/AnimatedImage/AnimatedImage.test.jsx.hbs → templates/react/AnimatedImage/AnimatedImage.test.jsx} +0 -0
  2761. /package/{dist/templates/vue/Animation/Animation.css.hbs → templates/react/Animation/Animation.css} +0 -0
  2762. /package/{dist/templates/react/Animation/Animation.test.jsx.hbs → templates/react/Animation/Animation.test.jsx} +0 -0
  2763. /package/{dist/templates/react/Avatar/Avatar.test.jsx.hbs → templates/react/Avatar/Avatar.test.jsx} +0 -0
  2764. /package/{dist/templates/react/Badge/Badge.test.jsx.hbs → templates/react/Badge/Badge.test.jsx} +0 -0
  2765. /package/{dist/templates/react/BarChart/BarChart.test.jsx.hbs → templates/react/BarChart/BarChart.test.jsx} +0 -0
  2766. /package/{dist/templates/react/Breadcrumb/Breadcrumb.test.jsx.hbs → templates/react/Breadcrumb/Breadcrumb.test.jsx} +0 -0
  2767. /package/{dist/templates/react/BreadcrumbItem/BreadcrumbItem.test.jsx.hbs → templates/react/BreadcrumbItem/BreadcrumbItem.test.jsx} +0 -0
  2768. /package/{dist/templates/react/BubbleChart/BubbleChart.test.jsx.hbs → templates/react/BubbleChart/BubbleChart.test.jsx} +0 -0
  2769. /package/{dist/templates/react/Button/Button.test.jsx.hbs → templates/react/Button/Button.test.jsx} +0 -0
  2770. /package/{dist/templates/react/ButtonGroup/ButtonGroup.test.jsx.hbs → templates/react/ButtonGroup/ButtonGroup.test.jsx} +0 -0
  2771. /package/{dist/templates/react/Card/Card.test.jsx.hbs → templates/react/Card/Card.test.jsx} +0 -0
  2772. /package/{dist/templates/react/Carousel/Carousel.test.jsx.hbs → templates/react/Carousel/Carousel.test.jsx} +0 -0
  2773. /package/{dist/templates/react/CarouselItem/CarouselItem.test.jsx.hbs → templates/react/CarouselItem/CarouselItem.test.jsx} +0 -0
  2774. /package/{dist/templates/react/Chart/Chart.test.jsx.hbs → templates/react/Chart/Chart.test.jsx} +0 -0
  2775. /package/{dist/templates/react/Checkbox/Checkbox.test.jsx.hbs → templates/react/Checkbox/Checkbox.test.jsx} +0 -0
  2776. /package/{dist/templates/react/ColorPicker/ColorPicker.test.jsx.hbs → templates/react/ColorPicker/ColorPicker.test.jsx} +0 -0
  2777. /package/{dist/templates/react/Combobox/Combobox.test.jsx.hbs → templates/react/Combobox/Combobox.test.jsx} +0 -0
  2778. /package/{dist/templates/react/Comparison/Comparison.test.jsx.hbs → templates/react/Comparison/Comparison.test.jsx} +0 -0
  2779. /package/{dist/templates/react/DoughnutChart/DoughnutChart.test.jsx.hbs → templates/react/DoughnutChart/DoughnutChart.test.jsx} +0 -0
  2780. /package/{dist/templates/react/Dropdown/Dropdown.test.jsx.hbs → templates/react/Dropdown/Dropdown.test.jsx} +0 -0
  2781. /package/{dist/templates/react/DropdownItem/DropdownItem.test.jsx.hbs → templates/react/DropdownItem/DropdownItem.test.jsx} +0 -0
  2782. /package/{dist/templates/react/FileInput/FileInput.test.jsx.hbs → templates/react/FileInput/FileInput.test.jsx} +0 -0
  2783. /package/{dist/templates/vue/FormatBytes/FormatBytes.css.hbs → templates/react/FormatBytes/FormatBytes.css} +0 -0
  2784. /package/{dist/templates/vue/FormatDate/FormatDate.css.hbs → templates/react/FormatDate/FormatDate.css} +0 -0
  2785. /package/{dist/templates/react/FormatDate/FormatDate.test.jsx.hbs → templates/react/FormatDate/FormatDate.test.jsx} +0 -0
  2786. /package/{dist/templates/vue/FormatNumber/FormatNumber.css.hbs → templates/react/FormatNumber/FormatNumber.css} +0 -0
  2787. /package/{dist/templates/vue/Include/Include.css.hbs → templates/react/Include/Include.css} +0 -0
  2788. /package/{dist/templates/react/Input/Input.test.jsx.hbs → templates/react/Input/Input.test.jsx} +0 -0
  2789. /package/{dist/templates/vue/IntersectionObserver/IntersectionObserver.css.hbs → templates/react/IntersectionObserver/IntersectionObserver.css} +0 -0
  2790. /package/{dist/templates/react/LineChart/LineChart.test.jsx.hbs → templates/react/LineChart/LineChart.test.jsx} +0 -0
  2791. /package/{dist/templates/react/Markdown/Markdown.test.jsx.hbs → templates/react/Markdown/Markdown.test.jsx} +0 -0
  2792. /package/{dist/templates/vue/MutationObserver/MutationObserver.css.hbs → templates/react/MutationObserver/MutationObserver.css} +0 -0
  2793. /package/{dist/templates/react/MutationObserver/MutationObserver.test.jsx.hbs → templates/react/MutationObserver/MutationObserver.test.jsx} +0 -0
  2794. /package/{dist/templates/react/NumberInput/NumberInput.test.jsx.hbs → templates/react/NumberInput/NumberInput.test.jsx} +0 -0
  2795. /package/{dist/templates/react/Option/Option.test.jsx.hbs → templates/react/Option/Option.test.jsx} +0 -0
  2796. /package/{dist/templates/react/Page/Page.test.jsx.hbs → templates/react/Page/Page.test.jsx} +0 -0
  2797. /package/{dist/templates/react/PieChart/PieChart.test.jsx.hbs → templates/react/PieChart/PieChart.test.jsx} +0 -0
  2798. /package/{dist/templates/react/PolarAreaChart/PolarAreaChart.test.jsx.hbs → templates/react/PolarAreaChart/PolarAreaChart.test.jsx} +0 -0
  2799. /package/{dist/templates/react/Popover/Popover.test.jsx.hbs → templates/react/Popover/Popover.test.jsx} +0 -0
  2800. /package/{dist/templates/react/Popup/Popup.test.jsx.hbs → templates/react/Popup/Popup.test.jsx} +0 -0
  2801. /package/{dist/templates/react/QrCode/QrCode.test.jsx.hbs → templates/react/QrCode/QrCode.test.jsx} +0 -0
  2802. /package/{dist/templates/react/RadarChart/RadarChart.test.jsx.hbs → templates/react/RadarChart/RadarChart.test.jsx} +0 -0
  2803. /package/{dist/templates/react/Radio/Radio.test.jsx.hbs → templates/react/Radio/Radio.test.jsx} +0 -0
  2804. /package/{dist/templates/react/RadioGroup/RadioGroup.test.jsx.hbs → templates/react/RadioGroup/RadioGroup.test.jsx} +0 -0
  2805. /package/{dist/templates/react/Rating/Rating.test.jsx.hbs → templates/react/Rating/Rating.test.jsx} +0 -0
  2806. /package/{dist/templates/vue/RelativeTime/RelativeTime.css.hbs → templates/react/RelativeTime/RelativeTime.css} +0 -0
  2807. /package/{dist/templates/react/RelativeTime/RelativeTime.test.jsx.hbs → templates/react/RelativeTime/RelativeTime.test.jsx} +0 -0
  2808. /package/{dist/templates/vue/ResizeObserver/ResizeObserver.css.hbs → templates/react/ResizeObserver/ResizeObserver.css} +0 -0
  2809. /package/{dist/templates/react/ResizeObserver/ResizeObserver.test.jsx.hbs → templates/react/ResizeObserver/ResizeObserver.test.jsx} +0 -0
  2810. /package/{dist/templates/react/ScatterChart/ScatterChart.test.jsx.hbs → templates/react/ScatterChart/ScatterChart.test.jsx} +0 -0
  2811. /package/{dist/templates/react/Scroller/Scroller.test.jsx.hbs → templates/react/Scroller/Scroller.test.jsx} +0 -0
  2812. /package/{dist/templates/react/Select/Select.test.jsx.hbs → templates/react/Select/Select.test.jsx} +0 -0
  2813. /package/{dist/templates/react/Skeleton/Skeleton.test.jsx.hbs → templates/react/Skeleton/Skeleton.test.jsx} +0 -0
  2814. /package/{dist/templates/react/Slider/Slider.test.jsx.hbs → templates/react/Slider/Slider.test.jsx} +0 -0
  2815. /package/{dist/templates/react/Spinner/Spinner.test.jsx.hbs → templates/react/Spinner/Spinner.test.jsx} +0 -0
  2816. /package/{dist/templates/react/SplitPanel/SplitPanel.test.jsx.hbs → templates/react/SplitPanel/SplitPanel.test.jsx} +0 -0
  2817. /package/{dist/templates/react/Switch/Switch.test.jsx.hbs → templates/react/Switch/Switch.test.jsx} +0 -0
  2818. /package/{dist/templates/react/Tab/Tab.test.jsx.hbs → templates/react/Tab/Tab.test.jsx} +0 -0
  2819. /package/{dist/templates/react/TabGroup/TabGroup.test.jsx.hbs → templates/react/TabGroup/TabGroup.test.jsx} +0 -0
  2820. /package/{dist/templates/react/TabPanel/TabPanel.test.jsx.hbs → templates/react/TabPanel/TabPanel.test.jsx} +0 -0
  2821. /package/{dist/templates/react/Tag/Tag.test.jsx.hbs → templates/react/Tag/Tag.test.jsx} +0 -0
  2822. /package/{dist/templates/react/Textarea/Textarea.test.jsx.hbs → templates/react/Textarea/Textarea.test.jsx} +0 -0
  2823. /package/{dist/templates/react/Toast/Toast.test.jsx.hbs → templates/react/Toast/Toast.test.jsx} +0 -0
  2824. /package/{dist/templates/react/Tooltip/Tooltip.test.jsx.hbs → templates/react/Tooltip/Tooltip.test.jsx} +0 -0
  2825. /package/{dist/templates/react/Tree/Tree.test.jsx.hbs → templates/react/Tree/Tree.test.jsx} +0 -0
  2826. /package/{dist/templates/react/TreeItem/TreeItem.test.jsx.hbs → templates/react/TreeItem/TreeItem.test.jsx} +0 -0
  2827. /package/{dist/templates/react/ZoomableFrame/ZoomableFrame.test.jsx.hbs → templates/react/ZoomableFrame/ZoomableFrame.test.jsx} +0 -0
  2828. /package/templates/vue/Animation/{Animation.css.hbs → Animation.css} +0 -0
  2829. /package/templates/vue/FormatBytes/{FormatBytes.css.hbs → FormatBytes.css} +0 -0
  2830. /package/templates/vue/FormatDate/{FormatDate.css.hbs → FormatDate.css} +0 -0
  2831. /package/templates/vue/FormatNumber/{FormatNumber.css.hbs → FormatNumber.css} +0 -0
  2832. /package/templates/vue/Include/{Include.css.hbs → Include.css} +0 -0
  2833. /package/templates/vue/IntersectionObserver/{IntersectionObserver.css.hbs → IntersectionObserver.css} +0 -0
  2834. /package/templates/vue/MutationObserver/{MutationObserver.css.hbs → MutationObserver.css} +0 -0
  2835. /package/templates/vue/RelativeTime/{RelativeTime.css.hbs → RelativeTime.css} +0 -0
  2836. /package/templates/vue/ResizeObserver/{ResizeObserver.css.hbs → ResizeObserver.css} +0 -0
@@ -0,0 +1,1978 @@
1
+ import {
2
+ CLI_VERSION,
3
+ DEFAULT_WEBAWESOME_VERSION,
4
+ GITHUB_ISSUES_URL,
5
+ GITHUB_RAW_BASE_URL,
6
+ GITHUB_REPO_URL,
7
+ WEB_AWESOME_FREE_PACKAGE,
8
+ WEB_AWESOME_PRO_PACKAGE,
9
+ detectTierSync,
10
+ getWebAwesomePackage
11
+ } from "./chunk-F52T5BFP.js";
12
+ import {
13
+ toKigumiAlias
14
+ } from "./chunk-MIPVTLNR.js";
15
+
16
+ // src/prompts/index.ts
17
+ import * as clack from "@clack/prompts";
18
+ var registered = null;
19
+ function getPrompts() {
20
+ return registered ?? clack;
21
+ }
22
+ var confirm = (...args) => getPrompts().confirm(...args);
23
+ var intro = (...args) => getPrompts().intro(...args);
24
+ var outro = (...args) => getPrompts().outro(...args);
25
+ var note = (...args) => getPrompts().note(...args);
26
+ var select = (opts) => getPrompts().select(opts);
27
+ var text = (...args) => getPrompts().text(...args);
28
+ var multiselect = (opts) => getPrompts().multiselect(opts);
29
+ var spinner = (...args) => getPrompts().spinner(...args);
30
+ var isCancel = ((value) => getPrompts().isCancel(value));
31
+ var log = {
32
+ info: (...args) => getPrompts().log.info(...args),
33
+ success: (...args) => getPrompts().log.success(...args),
34
+ warning: (...args) => getPrompts().log.warning(...args),
35
+ warn: (...args) => getPrompts().log.warn(...args),
36
+ error: (...args) => getPrompts().log.error(...args),
37
+ message: (...args) => getPrompts().log.message(...args),
38
+ step: (...args) => getPrompts().log.step(...args)
39
+ };
40
+
41
+ // src/output/console.ts
42
+ import pc from "picocolors";
43
+ var ClackSpinner = class {
44
+ spinner;
45
+ constructor(message) {
46
+ this.spinner = spinner();
47
+ this.spinner.start(message);
48
+ }
49
+ start(message) {
50
+ if (message) {
51
+ this.spinner.start(message);
52
+ }
53
+ }
54
+ message(text2) {
55
+ this.spinner.message(text2);
56
+ }
57
+ stop(message) {
58
+ this.spinner.stop(message || "Done");
59
+ }
60
+ error(message) {
61
+ this.spinner.stop(message || "Failed");
62
+ }
63
+ };
64
+ var ConsoleOutput = class {
65
+ intro(message) {
66
+ intro(pc.bgCyan(pc.black(` ${message} `)));
67
+ }
68
+ outro(message) {
69
+ outro(message);
70
+ }
71
+ info(message) {
72
+ log.info(message);
73
+ }
74
+ success(message) {
75
+ log.success(pc.green(message));
76
+ }
77
+ warning(message) {
78
+ log.warning(pc.yellow(message));
79
+ }
80
+ warn(message) {
81
+ this.warning(message);
82
+ }
83
+ error(message, error) {
84
+ if (error) {
85
+ if (error && typeof error === "object" && "format" in error && typeof error.format === "function") {
86
+ const formatted = error.format();
87
+ log.error(pc.red(formatted));
88
+ } else {
89
+ log.error(pc.red(message));
90
+ if (error.message) {
91
+ log.error(pc.dim(error.message));
92
+ }
93
+ }
94
+ } else {
95
+ log.error(pc.red(message));
96
+ }
97
+ }
98
+ note(title, message) {
99
+ note(message, title);
100
+ }
101
+ spinner(message) {
102
+ return new ClackSpinner(message);
103
+ }
104
+ log(message) {
105
+ if (process.env.DEBUG) {
106
+ log.message(message);
107
+ }
108
+ }
109
+ };
110
+ function getOutput() {
111
+ return new ConsoleOutput();
112
+ }
113
+
114
+ // src/output/index.ts
115
+ var registeredOutput = null;
116
+ function getOutput2() {
117
+ return registeredOutput ?? getOutput();
118
+ }
119
+
120
+ // src/checks/runner.ts
121
+ var CheckRunner = class {
122
+ checks = [];
123
+ options;
124
+ constructor(options = {}) {
125
+ this.options = {
126
+ stopOnError: options.stopOnError ?? true,
127
+ parallel: options.parallel ?? false
128
+ };
129
+ }
130
+ /**
131
+ * Add a check to the runner
132
+ *
133
+ * @param check - Check to add
134
+ * @returns This runner (for chaining)
135
+ */
136
+ add(check) {
137
+ this.checks.push(check);
138
+ return this;
139
+ }
140
+ /**
141
+ * Add multiple checks
142
+ *
143
+ * @param checks - Checks to add
144
+ * @returns This runner (for chaining)
145
+ */
146
+ addAll(checks) {
147
+ this.checks.push(...checks);
148
+ return this;
149
+ }
150
+ /**
151
+ * Run all checks
152
+ *
153
+ * @param context - Check context
154
+ * @returns Array of check results
155
+ */
156
+ async run(context) {
157
+ if (this.checks.length === 0) {
158
+ return [];
159
+ }
160
+ if (this.options.parallel) {
161
+ return this.runParallel(context);
162
+ }
163
+ return this.runSequential(context);
164
+ }
165
+ /**
166
+ * Run checks sequentially
167
+ */
168
+ async runSequential(context) {
169
+ const results = [];
170
+ for (const check of this.checks) {
171
+ try {
172
+ const result = await check.run(context);
173
+ results.push(result);
174
+ if (this.options.stopOnError && !result.passed && result.severity === "error" /* ERROR */) {
175
+ break;
176
+ }
177
+ } catch (error) {
178
+ results.push({
179
+ passed: false,
180
+ severity: "error" /* ERROR */,
181
+ message: `Check "${check.name}" failed with error: ${error instanceof Error ? error.message : String(error)}`,
182
+ suggestion: ["Check the logs for more details"]
183
+ });
184
+ if (this.options.stopOnError) {
185
+ break;
186
+ }
187
+ }
188
+ }
189
+ return results;
190
+ }
191
+ /**
192
+ * Run checks in parallel
193
+ */
194
+ async runParallel(context) {
195
+ const promises = this.checks.map(async (check) => {
196
+ try {
197
+ return await check.run(context);
198
+ } catch (error) {
199
+ return {
200
+ passed: false,
201
+ severity: "error" /* ERROR */,
202
+ message: `Check "${check.name}" failed with error: ${error instanceof Error ? error.message : String(error)}`,
203
+ suggestion: ["Check the logs for more details"]
204
+ };
205
+ }
206
+ });
207
+ return Promise.all(promises);
208
+ }
209
+ /**
210
+ * Check if there are any errors in results
211
+ *
212
+ * @param results - Check results
213
+ * @returns True if there are errors
214
+ */
215
+ hasErrors(results) {
216
+ return results.some((r) => !r.passed && r.severity === "error" /* ERROR */);
217
+ }
218
+ /**
219
+ * Check if there are any warnings in results
220
+ *
221
+ * @param results - Check results
222
+ * @returns True if there are warnings
223
+ */
224
+ hasWarnings(results) {
225
+ return results.some(
226
+ (r) => !r.passed && r.severity === "warning" /* WARNING */
227
+ );
228
+ }
229
+ /**
230
+ * Get all errors from results
231
+ *
232
+ * @param results - Check results
233
+ * @returns Array of error results
234
+ */
235
+ getErrors(results) {
236
+ return results.filter(
237
+ (r) => !r.passed && r.severity === "error" /* ERROR */
238
+ );
239
+ }
240
+ /**
241
+ * Get all warnings from results
242
+ *
243
+ * @param results - Check results
244
+ * @returns Array of warning results
245
+ */
246
+ getWarnings(results) {
247
+ return results.filter(
248
+ (r) => !r.passed && r.severity === "warning" /* WARNING */
249
+ );
250
+ }
251
+ /**
252
+ * Format results as string
253
+ *
254
+ * @param results - Check results
255
+ * @returns Formatted string
256
+ */
257
+ formatResults(results) {
258
+ const errors = this.getErrors(results);
259
+ const warnings = this.getWarnings(results);
260
+ const parts = [];
261
+ if (errors.length > 0) {
262
+ parts.push(`Errors (${errors.length}):`);
263
+ errors.forEach((error) => {
264
+ parts.push(` \u2717 ${error.message}`);
265
+ });
266
+ }
267
+ if (warnings.length > 0) {
268
+ if (parts.length > 0) parts.push("");
269
+ parts.push(`Warnings (${warnings.length}):`);
270
+ warnings.forEach((warning) => {
271
+ parts.push(` \u26A0 ${warning.message}`);
272
+ });
273
+ }
274
+ return parts.join("\n");
275
+ }
276
+ /**
277
+ * Clear all checks
278
+ */
279
+ clear() {
280
+ this.checks = [];
281
+ }
282
+ };
283
+
284
+ // src/errors/base.ts
285
+ var KigumiError = class extends Error {
286
+ code;
287
+ context;
288
+ suggestions;
289
+ exitCode;
290
+ constructor(code, message, details, suggestions = [], cause) {
291
+ super(message);
292
+ this.name = this.constructor.name;
293
+ this.code = code;
294
+ this.exitCode = this.getExitCode(code);
295
+ this.context = {
296
+ code,
297
+ message,
298
+ details,
299
+ cause
300
+ };
301
+ this.suggestions = suggestions;
302
+ if (Error.captureStackTrace) {
303
+ Error.captureStackTrace(this, this.constructor);
304
+ }
305
+ }
306
+ /**
307
+ * Map error code to semantic exit code
308
+ *
309
+ * Exit codes:
310
+ * - 0: User cancelled (not an error)
311
+ * - 1: Configuration error
312
+ * - 2: Validation error
313
+ * - 3: Tier restriction error
314
+ * - 4: File system error
315
+ * - 5: Network/dependency error
316
+ * - 6: Pre-flight check error
317
+ */
318
+ getExitCode(code) {
319
+ if (code === 0 /* USER_CANCELLED */) return 0;
320
+ if (code >= 100 && code < 200) return 1;
321
+ if (code >= 200 && code < 300) return 2;
322
+ if (code >= 300 && code < 400) return 3;
323
+ if (code >= 400 && code < 500) return 4;
324
+ if (code >= 500 && code < 600) return 5;
325
+ if (code >= 600 && code < 700) return 6;
326
+ if (code >= 700 && code < 800) return 7;
327
+ return 1;
328
+ }
329
+ /**
330
+ * Format error for display to user
331
+ *
332
+ * Each error subclass can override this to provide custom formatting,
333
+ * but the default implementation provides a consistent format.
334
+ */
335
+ format() {
336
+ const parts = [];
337
+ parts.push(this.message);
338
+ if (this.context.details && Object.keys(this.context.details).length > 0) {
339
+ parts.push("");
340
+ parts.push("Details:");
341
+ for (const [key, value] of Object.entries(this.context.details)) {
342
+ parts.push(` ${key}: ${JSON.stringify(value)}`);
343
+ }
344
+ }
345
+ if (this.context.cause) {
346
+ parts.push("");
347
+ parts.push(`Caused by: ${this.context.cause.message}`);
348
+ }
349
+ return parts.join("\n");
350
+ }
351
+ /**
352
+ * Get formatted suggestions
353
+ */
354
+ formatSuggestions() {
355
+ if (this.suggestions.length === 0) {
356
+ return "";
357
+ }
358
+ return this.suggestions.map((suggestion) => {
359
+ const steps = suggestion.steps.map((step, i) => ` ${i + 1}. ${step}`).join("\n");
360
+ return `${suggestion.title}:
361
+ ${steps}`;
362
+ }).join("\n\n");
363
+ }
364
+ /**
365
+ * Convert to JSON for logging/telemetry
366
+ */
367
+ toJSON() {
368
+ return {
369
+ name: this.name,
370
+ code: this.code,
371
+ exitCode: this.exitCode,
372
+ message: this.message,
373
+ context: this.context,
374
+ suggestions: this.suggestions,
375
+ stack: this.stack
376
+ };
377
+ }
378
+ };
379
+ var UserCancelledError = class extends KigumiError {
380
+ constructor(message = "Operation cancelled by user") {
381
+ super(0 /* USER_CANCELLED */, message);
382
+ }
383
+ };
384
+ var UnknownError = class _UnknownError extends KigumiError {
385
+ constructor(message, cause) {
386
+ super(
387
+ 999 /* UNKNOWN */,
388
+ message,
389
+ { originalError: cause?.message },
390
+ [
391
+ {
392
+ title: "This is an unexpected error",
393
+ steps: [
394
+ `Please report this issue at: ${GITHUB_ISSUES_URL}`,
395
+ "Include the full error message and stack trace"
396
+ ]
397
+ }
398
+ ],
399
+ cause
400
+ );
401
+ }
402
+ /**
403
+ * Wrap any error with KigumiError structure
404
+ */
405
+ static from(error) {
406
+ if (error instanceof KigumiError) {
407
+ return error;
408
+ }
409
+ if (error instanceof Error) {
410
+ return new _UnknownError(
411
+ `An unexpected error occurred: ${error.message}`,
412
+ error
413
+ );
414
+ }
415
+ return new _UnknownError(`An unexpected error occurred: ${String(error)}`);
416
+ }
417
+ };
418
+
419
+ // src/errors/config.ts
420
+ var ConfigNotFoundError = class extends KigumiError {
421
+ constructor(cwd) {
422
+ const suggestions = [
423
+ {
424
+ title: "Initialize kigumi in your project",
425
+ steps: [
426
+ "Run: kigumi init",
427
+ "Follow the prompts to configure your project",
428
+ "This will create kigumi.config.json"
429
+ ]
430
+ },
431
+ {
432
+ title: "Or create the config file manually",
433
+ steps: [
434
+ "Create kigumi.config.json in your project root",
435
+ "Add the required configuration fields",
436
+ `See: ${GITHUB_REPO_URL}#configuration`
437
+ ]
438
+ }
439
+ ];
440
+ super(
441
+ 100 /* CONFIG_NOT_FOUND */,
442
+ "Configuration file not found",
443
+ { cwd, searchedFiles: ["kigumi.config.json", "kigumi.json"] },
444
+ suggestions
445
+ );
446
+ }
447
+ };
448
+ var ConfigInvalidError = class extends KigumiError {
449
+ constructor(errors, filePath) {
450
+ const suggestions = [
451
+ {
452
+ title: "Fix the configuration errors",
453
+ steps: [
454
+ ...errors.map((err) => `Fix: ${err}`),
455
+ "Ensure all required fields are present",
456
+ "Check that values match the expected types"
457
+ ]
458
+ },
459
+ {
460
+ title: "Or reinitialize the project",
461
+ steps: [
462
+ "Backup your current config",
463
+ "Run: kigumi init",
464
+ "Reconfigure with correct values"
465
+ ]
466
+ }
467
+ ];
468
+ super(
469
+ 101 /* CONFIG_INVALID */,
470
+ "Configuration file is invalid",
471
+ { errors, filePath },
472
+ suggestions
473
+ );
474
+ }
475
+ format() {
476
+ const errors = this.context.details?.errors || [];
477
+ return `Configuration file is invalid:
478
+
479
+ ${errors.map((e) => ` - ${e}`).join("\n")}`;
480
+ }
481
+ };
482
+
483
+ // src/utils/config.ts
484
+ import { cosmiconfigSync } from "cosmiconfig";
485
+ import fs from "fs-extra";
486
+ import path from "path";
487
+
488
+ // src/schemas/config.ts
489
+ import { z } from "zod";
490
+ var FRAMEWORKS = ["react", "vue", "angular"];
491
+ var frameworkSchema = z.enum(FRAMEWORKS, {
492
+ error: () => `Must be one of: ${FRAMEWORKS.join(", ")}`
493
+ });
494
+ var themeConfigSchema = z.object({
495
+ selected: z.string().min(1, "Theme name cannot be empty"),
496
+ palette: z.string().min(1, "Palette name cannot be empty"),
497
+ brandColor: z.string().min(1, "Brand color cannot be empty")
498
+ }).strict();
499
+ var webAwesomeConfigSchema = z.object({
500
+ version: z.string().optional()
501
+ }).strict();
502
+ var registrySourceSchema = z.object({
503
+ /** GitHub URL of the registry */
504
+ url: z.string().url("Must be a valid URL"),
505
+ /** Friendly name (auto-derived from repo if not set) */
506
+ name: z.string().optional()
507
+ });
508
+ var installedComponentSchema = z.object({
509
+ source: z.enum(["builtin", "community"]),
510
+ registryUrl: z.string().optional(),
511
+ registryVersion: z.string().optional(),
512
+ installedAt: z.string().optional(),
513
+ /** Kigumi CLI version that generated this component */
514
+ kigumiVersion: z.string().optional()
515
+ });
516
+ var installedThemeSchema = z.object({
517
+ source: z.enum(["builtin", "community"]),
518
+ registryUrl: z.string().optional(),
519
+ registryVersion: z.string().optional()
520
+ });
521
+ var kigumiConfigSchema = z.object({
522
+ framework: frameworkSchema,
523
+ typescript: z.boolean({
524
+ error: () => "Must be a boolean (true or false)"
525
+ }),
526
+ componentsDir: z.string().min(1, "Components directory cannot be empty"),
527
+ utilsDir: z.string().min(1, "Utils directory cannot be empty"),
528
+ stylesDir: z.string().min(1, "Styles directory cannot be empty"),
529
+ theme: themeConfigSchema,
530
+ webAwesome: webAwesomeConfigSchema.optional(),
531
+ /** Community registry sources */
532
+ registries: z.array(registrySourceSchema).optional(),
533
+ /** Provenance tracking for installed components */
534
+ installedComponents: z.record(z.string(), installedComponentSchema).optional(),
535
+ /** Provenance tracking for installed themes */
536
+ installedThemes: z.record(z.string(), installedThemeSchema).optional(),
537
+ /** Kigumi CLI version that initialized/last upgraded this project */
538
+ kigumiVersion: z.string().optional()
539
+ }).strict();
540
+ var DEFAULT_CONFIG = {
541
+ framework: "react",
542
+ typescript: true,
543
+ componentsDir: "src/components/ui",
544
+ utilsDir: "src/lib",
545
+ stylesDir: "src/styles",
546
+ theme: {
547
+ selected: "default",
548
+ palette: "default",
549
+ brandColor: "blue"
550
+ },
551
+ webAwesome: {
552
+ version: DEFAULT_WEBAWESOME_VERSION
553
+ }
554
+ };
555
+ var LEGACY_TOP_LEVEL_KEYS = ["aliases"];
556
+ var LEGACY_WEB_AWESOME_KEYS = ["cdnUrl"];
557
+ function stripLegacyKeys(raw) {
558
+ const cleaned = { ...raw };
559
+ for (const key of LEGACY_TOP_LEVEL_KEYS) {
560
+ delete cleaned[key];
561
+ }
562
+ if (cleaned.webAwesome && typeof cleaned.webAwesome === "object") {
563
+ const wa = { ...cleaned.webAwesome };
564
+ for (const key of LEGACY_WEB_AWESOME_KEYS) {
565
+ delete wa[key];
566
+ }
567
+ cleaned.webAwesome = wa;
568
+ }
569
+ return cleaned;
570
+ }
571
+ function mergeWithDefaults(config) {
572
+ const stripped = stripLegacyKeys(
573
+ config
574
+ );
575
+ const merged = {
576
+ ...DEFAULT_CONFIG,
577
+ ...stripped,
578
+ theme: {
579
+ ...DEFAULT_CONFIG.theme,
580
+ ...stripped.theme
581
+ },
582
+ webAwesome: {
583
+ ...DEFAULT_CONFIG.webAwesome,
584
+ ...stripped.webAwesome
585
+ }
586
+ };
587
+ const result = kigumiConfigSchema.safeParse(merged);
588
+ if (!result.success) {
589
+ const errors = result.error.issues.map((err) => {
590
+ const issuePath = err.path.join(".");
591
+ return issuePath ? `${issuePath}: ${err.message}` : err.message;
592
+ });
593
+ throw new ConfigInvalidError(errors);
594
+ }
595
+ return result.data;
596
+ }
597
+
598
+ // src/utils/config.ts
599
+ var SEARCH_PLACES = [
600
+ "kigumi.config.json",
601
+ "kigumi-components.json",
602
+ "kigumi.json",
603
+ ".kigumirc",
604
+ ".kigumirc.json",
605
+ "package.json"
606
+ ];
607
+ function loadConfig(cwd = process.cwd()) {
608
+ const explorer = cosmiconfigSync("kigumi", {
609
+ searchPlaces: [...SEARCH_PLACES],
610
+ stopDir: cwd
611
+ });
612
+ const result = explorer.search(cwd);
613
+ if (!result) return null;
614
+ return { config: result.config, filepath: result.filepath };
615
+ }
616
+ function getSearchPlaces() {
617
+ return SEARCH_PLACES;
618
+ }
619
+ function getConfig(cwd = process.cwd()) {
620
+ const loaded = loadConfig(cwd);
621
+ if (!loaded) {
622
+ throw new ConfigNotFoundError(cwd);
623
+ }
624
+ return mergeWithDefaults(loaded.config);
625
+ }
626
+ function mergePatch(onDisk, patch) {
627
+ const next = { ...onDisk, ...patch };
628
+ if (patch.theme) {
629
+ const existingTheme = onDisk.theme ?? {};
630
+ next.theme = { ...existingTheme, ...patch.theme };
631
+ }
632
+ if (patch.webAwesome) {
633
+ const existingWa = onDisk.webAwesome ?? {};
634
+ next.webAwesome = { ...existingWa, ...patch.webAwesome };
635
+ }
636
+ return next;
637
+ }
638
+ async function writePackageJsonKey(filepath, key, value) {
639
+ const pkg = await fs.readJson(filepath);
640
+ pkg[key] = value;
641
+ await fs.writeJson(filepath, pkg, { spaces: 2 });
642
+ }
643
+ async function saveConfig(patch, cwd = process.cwd()) {
644
+ const loaded = loadConfig(cwd);
645
+ if (!loaded) {
646
+ throw new ConfigNotFoundError(cwd);
647
+ }
648
+ const onDisk = loaded.config ?? {};
649
+ const next = mergePatch(onDisk, patch);
650
+ if (path.basename(loaded.filepath) === "package.json") {
651
+ await writePackageJsonKey(loaded.filepath, "kigumi", next);
652
+ } else {
653
+ await fs.writeJson(loaded.filepath, next, { spaces: 2 });
654
+ }
655
+ }
656
+
657
+ // src/checks/config-checks.ts
658
+ import fs2 from "fs-extra";
659
+ import path2 from "path";
660
+ var ConfigExistsCheck = class {
661
+ id = "config-exists";
662
+ name = "Configuration File Exists";
663
+ description = "Check if a kigumi config file exists at any supported path";
664
+ async run(context) {
665
+ const loaded = loadConfig(context.cwd);
666
+ if (!loaded) {
667
+ return {
668
+ passed: false,
669
+ severity: "error" /* ERROR */,
670
+ message: "Configuration file not found",
671
+ suggestion: ["Run: kigumi init", "This will create kigumi.config.json"],
672
+ details: {
673
+ searched: [...getSearchPlaces()],
674
+ cwd: context.cwd
675
+ }
676
+ };
677
+ }
678
+ return {
679
+ passed: true,
680
+ severity: "info" /* INFO */,
681
+ message: `Configuration loaded from ${path2.basename(loaded.filepath)}`,
682
+ details: { filepath: loaded.filepath }
683
+ };
684
+ }
685
+ };
686
+ var PackageJsonExistsCheck = class {
687
+ id = "package-json-exists";
688
+ name = "Package.json Exists";
689
+ description = "Check if package.json exists in project";
690
+ async run(context) {
691
+ const packageJsonPath = path2.join(context.cwd, "package.json");
692
+ const exists = await fs2.pathExists(packageJsonPath);
693
+ if (!exists) {
694
+ return {
695
+ passed: false,
696
+ severity: "error" /* ERROR */,
697
+ message: "package.json not found",
698
+ suggestion: [
699
+ "Initialize npm project: npm init",
700
+ "Or ensure you are in the correct directory"
701
+ ],
702
+ details: {
703
+ path: packageJsonPath
704
+ }
705
+ };
706
+ }
707
+ return {
708
+ passed: true,
709
+ severity: "info" /* INFO */,
710
+ message: "package.json exists"
711
+ };
712
+ }
713
+ };
714
+
715
+ // src/checks/dependency-checks.ts
716
+ import fs3 from "fs-extra";
717
+
718
+ // src/errors/community-registry.ts
719
+ var CommunityRegistryNotFoundError = class extends KigumiError {
720
+ constructor(url, cause) {
721
+ const suggestions = [
722
+ {
723
+ title: "Registry not found",
724
+ steps: [
725
+ `Could not find registry.json at: ${url}`,
726
+ "Verify the URL points to a valid GitHub repository",
727
+ "Check that the repository contains a registry.json file at its root",
728
+ "Ensure the repository is public or you have provided a GitHub token"
729
+ ]
730
+ }
731
+ ];
732
+ super(
733
+ 504 /* REGISTRY_ERROR */,
734
+ `Community registry not found: ${url}`,
735
+ { url, error: cause?.message },
736
+ suggestions,
737
+ cause
738
+ );
739
+ }
740
+ };
741
+ var CommunityRegistryInvalidError = class extends KigumiError {
742
+ constructor(url, errors) {
743
+ const suggestions = [
744
+ {
745
+ title: "Registry validation failed",
746
+ steps: [
747
+ "The registry.json file has validation errors:",
748
+ ...errors.map((e) => ` - ${e}`),
749
+ 'Run "kigumi registry validate" in the registry repo to fix'
750
+ ]
751
+ }
752
+ ];
753
+ super(
754
+ 504 /* REGISTRY_ERROR */,
755
+ `Invalid community registry: ${url}`,
756
+ { url, errors },
757
+ suggestions
758
+ );
759
+ }
760
+ };
761
+ var CommunityComponentNotFoundError = class extends KigumiError {
762
+ constructor(componentName, registryName, available) {
763
+ const suggestions = [
764
+ {
765
+ title: "Component not found",
766
+ steps: available.length > 0 ? [
767
+ `Component "${componentName}" is not in registry "${registryName}"`,
768
+ `Available components: ${available.join(", ")}`
769
+ ] : [
770
+ `Component "${componentName}" is not in registry "${registryName}"`,
771
+ "This registry has no components"
772
+ ]
773
+ }
774
+ ];
775
+ super(
776
+ 202 /* INVALID_COMPONENT */,
777
+ `Component "${componentName}" not found in registry "${registryName}"`,
778
+ { componentName, registryName, available },
779
+ suggestions
780
+ );
781
+ }
782
+ };
783
+ var FrameworkMismatchError = class extends KigumiError {
784
+ constructor(registryName, registryFrameworks, userFramework) {
785
+ const suggestions = [
786
+ {
787
+ title: "Framework mismatch",
788
+ steps: [
789
+ `Your project uses: ${userFramework}`,
790
+ `This registry supports: ${registryFrameworks.join(", ")}`,
791
+ "Look for a registry that supports your framework",
792
+ "OR re-run with --cross-framework to fetch the source-framework files into .kigumi/foreign/ for an agent-driven conversion"
793
+ ]
794
+ }
795
+ ];
796
+ super(
797
+ 201 /* INVALID_FRAMEWORK */,
798
+ `Registry "${registryName}" does not support ${userFramework}`,
799
+ { registryName, registryFrameworks, userFramework },
800
+ suggestions
801
+ );
802
+ }
803
+ };
804
+ var CircularDependencyError = class extends KigumiError {
805
+ constructor(cycle) {
806
+ const cycleStr = cycle.join(" \u2192 ");
807
+ const suggestions = [
808
+ {
809
+ title: "Circular dependency",
810
+ steps: [
811
+ `Dependency cycle detected: ${cycleStr}`,
812
+ "Remove one of the dependencies to break the cycle",
813
+ 'Run "kigumi registry validate" to check for issues'
814
+ ]
815
+ }
816
+ ];
817
+ super(
818
+ 200 /* VALIDATION_FAILED */,
819
+ `Circular dependency detected: ${cycleStr}`,
820
+ { cycle },
821
+ suggestions
822
+ );
823
+ }
824
+ };
825
+ var PathTraversalError = class extends KigumiError {
826
+ constructor(filePath, registryRoot, cause) {
827
+ const suggestions = [
828
+ {
829
+ title: "Path traversal blocked",
830
+ steps: [
831
+ `File path "${filePath}" resolves outside the registry root`,
832
+ "Only paths within the registry directory are permitted"
833
+ ]
834
+ }
835
+ ];
836
+ super(
837
+ 504 /* REGISTRY_ERROR */,
838
+ `Path traversal attempt: "${filePath}" escapes registry root "${registryRoot}"`,
839
+ { filePath, registryRoot },
840
+ suggestions,
841
+ cause
842
+ );
843
+ }
844
+ };
845
+
846
+ // src/errors/preflight.ts
847
+ var PreFlightCheckError = class extends KigumiError {
848
+ constructor(checkResults) {
849
+ const failedChecks = checkResults.filter((r) => !r.passed);
850
+ const errorChecks = failedChecks.filter(
851
+ (r) => r.severity === "error" /* ERROR */
852
+ );
853
+ const warningChecks = failedChecks.filter(
854
+ (r) => r.severity === "warning" /* WARNING */
855
+ );
856
+ const suggestions = [];
857
+ for (const check of errorChecks) {
858
+ if (check.suggestion && check.suggestion.length > 0) {
859
+ suggestions.push({
860
+ title: check.message,
861
+ steps: check.suggestion
862
+ });
863
+ }
864
+ }
865
+ if (suggestions.length === 0) {
866
+ suggestions.push({
867
+ title: "Fix the issues and try again",
868
+ steps: failedChecks.map((c) => c.message)
869
+ });
870
+ }
871
+ super(
872
+ 600 /* PREFLIGHT_CHECK_FAILED */,
873
+ "Pre-flight checks failed",
874
+ {
875
+ totalChecks: checkResults.length,
876
+ failedChecks: failedChecks.length,
877
+ errors: errorChecks.length,
878
+ warnings: warningChecks.length,
879
+ checks: failedChecks
880
+ },
881
+ suggestions
882
+ );
883
+ }
884
+ format() {
885
+ const {
886
+ errors: _errors,
887
+ warnings: _warnings,
888
+ checks
889
+ } = this.context.details || {};
890
+ const failedChecks = checks || [];
891
+ const parts = ["Pre-flight checks failed:"];
892
+ parts.push("");
893
+ const errorChecks = failedChecks.filter(
894
+ (c) => c.severity === "error" /* ERROR */
895
+ );
896
+ if (errorChecks.length > 0) {
897
+ parts.push(`Errors (${errorChecks.length}):`);
898
+ errorChecks.forEach((check) => {
899
+ parts.push(` \u2717 ${check.message}`);
900
+ });
901
+ parts.push("");
902
+ }
903
+ const warningChecks = failedChecks.filter(
904
+ (c) => c.severity === "warning" /* WARNING */
905
+ );
906
+ if (warningChecks.length > 0) {
907
+ parts.push(`Warnings (${warningChecks.length}):`);
908
+ warningChecks.forEach((check) => {
909
+ parts.push(` \u26A0 ${check.message}`);
910
+ });
911
+ }
912
+ return parts.join("\n");
913
+ }
914
+ };
915
+
916
+ // src/errors/validation.ts
917
+ var ValidationError = class extends KigumiError {
918
+ constructor(field, value, validValues, zodError) {
919
+ const errorMessages = zodError?.issues.map((err) => {
920
+ return `${err.path.join(".")}: ${err.message}`;
921
+ }) || [];
922
+ const suggestions = [
923
+ {
924
+ title: "Provide a valid value",
925
+ steps: [
926
+ `The value "${value}" is not valid for: ${field}`,
927
+ ...validValues ? [
928
+ `Valid values: ${validValues.map((v) => JSON.stringify(v)).join(", ")}`
929
+ ] : [],
930
+ ...errorMessages.map((msg) => `Error: ${msg}`),
931
+ "Check the command documentation for valid options"
932
+ ]
933
+ }
934
+ ];
935
+ super(
936
+ 200 /* VALIDATION_FAILED */,
937
+ `Validation failed for: ${field}`,
938
+ { field, value, validValues, zodErrors: errorMessages },
939
+ suggestions
940
+ );
941
+ }
942
+ format() {
943
+ const { field, value, validValues } = this.context.details || {};
944
+ const parts = [`Validation failed for: ${field}`];
945
+ parts.push(` Received: ${JSON.stringify(value)}`);
946
+ if (validValues && Array.isArray(validValues)) {
947
+ parts.push(
948
+ ` Valid values: ${validValues.map((v) => JSON.stringify(v)).join(", ")}`
949
+ );
950
+ }
951
+ const zodErrors = this.context.details?.zodErrors;
952
+ if (zodErrors && zodErrors.length > 0) {
953
+ parts.push("");
954
+ parts.push("Validation errors:");
955
+ zodErrors.forEach((err) => parts.push(` - ${err}`));
956
+ }
957
+ return parts.join("\n");
958
+ }
959
+ };
960
+
961
+ // src/errors/tier.ts
962
+ var TierRestrictionError = class extends KigumiError {
963
+ constructor(feature, requiredTier, currentTier) {
964
+ const suggestions = [
965
+ {
966
+ title: "Upgrade to Pro tier",
967
+ steps: [
968
+ `"${feature}" requires Web Awesome Pro`,
969
+ "Visit: https://webawesome.com/pro",
970
+ "Sign up for a Pro account",
971
+ 'Update your configuration: tier: "pro"',
972
+ "Add your Pro token to .env: WEBAWESOME_NPM_TOKEN=your-token"
973
+ ]
974
+ },
975
+ {
976
+ title: "Or use a free alternative",
977
+ steps: [
978
+ "Check available free tier features",
979
+ "Run: kigumi list to see all components"
980
+ ]
981
+ }
982
+ ];
983
+ super(
984
+ 300 /* TIER_RESTRICTION */,
985
+ `Feature requires Pro tier: ${feature}`,
986
+ { feature, requiredTier, currentTier },
987
+ suggestions
988
+ );
989
+ }
990
+ };
991
+ var ProThemeRequiredError = class extends KigumiError {
992
+ constructor(themeName, freeThemes) {
993
+ const suggestions = [
994
+ {
995
+ title: "Upgrade to Pro tier",
996
+ steps: [
997
+ `Theme "${themeName}" requires Web Awesome Pro`,
998
+ "Visit: https://webawesome.com/pro",
999
+ "Sign up for a Pro account",
1000
+ 'Update kigumi.config.json: "tier": "pro"',
1001
+ "Add your Pro token to .env: WEBAWESOME_NPM_TOKEN=your-token"
1002
+ ]
1003
+ },
1004
+ {
1005
+ title: "Or use a free theme",
1006
+ steps: ["Free tier themes:", ...freeThemes.map((t) => ` - ${t}`)]
1007
+ }
1008
+ ];
1009
+ super(
1010
+ 302 /* PRO_THEME_REQUIRED */,
1011
+ `Theme requires Pro tier: ${themeName}`,
1012
+ { themeName, freeThemes },
1013
+ suggestions
1014
+ );
1015
+ }
1016
+ };
1017
+
1018
+ // src/errors/layers-css.ts
1019
+ var LayersCssRewriteError = class extends KigumiError {
1020
+ constructor(filePath, currentPackage, targetPackage, themeName) {
1021
+ const suggestions = [
1022
+ {
1023
+ title: "Update the imports manually",
1024
+ steps: [
1025
+ `Open ${filePath}`,
1026
+ `Replace: @import '${currentPackage}/dist/styles/webawesome.css' ...`,
1027
+ `With: @import '${targetPackage}/dist/styles/webawesome.css' ...`,
1028
+ `Replace: @import '${currentPackage}/dist/styles/themes/${themeName}.css' ...`,
1029
+ `With: @import '${targetPackage}/dist/styles/themes/${themeName}.css' ...`,
1030
+ "Save the file and restart your dev server"
1031
+ ]
1032
+ },
1033
+ {
1034
+ title: "Or restore the default layers.css",
1035
+ steps: [
1036
+ `See the reference implementation at:`,
1037
+ `${GITHUB_REPO_URL}/blob/main/src/utils/regenerate.ts`,
1038
+ `Look for the "generateLayersCSS" function`,
1039
+ "Copy its template output into your layers.css",
1040
+ "Then re-run migration"
1041
+ ]
1042
+ }
1043
+ ];
1044
+ super(
1045
+ 405 /* MIGRATION_PARSE_ERROR */,
1046
+ `Cannot migrate layers.css automatically: expected @import pattern not found in ${filePath}`,
1047
+ { filePath, currentPackage, targetPackage, themeName },
1048
+ suggestions
1049
+ );
1050
+ }
1051
+ };
1052
+
1053
+ // src/errors/network.ts
1054
+ var DependencyInstallError = class extends KigumiError {
1055
+ constructor(packageName, packageManager, cause, statusCode) {
1056
+ const isAuthError = statusCode === 401 || statusCode === 403;
1057
+ const isNotFoundError = statusCode === 404;
1058
+ const errorMessage = cause?.message || "";
1059
+ const isRegistryMismatch = errorMessage.includes("ERR_PNPM_REGISTRIES_MISMATCH") || errorMessage.includes("REGISTRIES_MISMATCH");
1060
+ const suggestions = [];
1061
+ if (isRegistryMismatch) {
1062
+ suggestions.push({
1063
+ title: "Registry configuration mismatch detected",
1064
+ steps: [
1065
+ "Your package manager detected a registry URL change",
1066
+ "This happens when .npmrc was updated after packages were installed",
1067
+ `Run: rm -rf node_modules ${packageManager === "pnpm" ? "pnpm-lock.yaml" : packageManager === "yarn" ? "yarn.lock" : "package-lock.json"}`,
1068
+ `Then run: ${packageManager} install`,
1069
+ "This will recreate the lockfile with the new registry configuration"
1070
+ ]
1071
+ });
1072
+ } else if (isAuthError) {
1073
+ suggestions.push({
1074
+ title: "Authentication required",
1075
+ steps: [
1076
+ `Failed to install ${packageName} - authentication failed`,
1077
+ "This package requires a Pro tier token",
1078
+ "Get your token from: https://webawesome.com/pro",
1079
+ "Add to .env file: WEBAWESOME_NPM_TOKEN=your-token-here",
1080
+ "The .npmrc file is already configured for you"
1081
+ ]
1082
+ });
1083
+ } else if (isNotFoundError) {
1084
+ suggestions.push({
1085
+ title: "Package not found",
1086
+ steps: [
1087
+ `Package "${packageName}" not found`,
1088
+ "Verify the package name is correct",
1089
+ "Check if the package exists in the registry",
1090
+ "Ensure you have access to the package"
1091
+ ]
1092
+ });
1093
+ } else {
1094
+ suggestions.push({
1095
+ title: "Installation failed",
1096
+ steps: [
1097
+ `Failed to install: ${packageName}`,
1098
+ "Check the error message above for specific details",
1099
+ "Verify you have internet connectivity",
1100
+ "Try running the command again"
1101
+ ]
1102
+ });
1103
+ suggestions.push({
1104
+ title: "Try manual installation",
1105
+ steps: [
1106
+ `Run: ${packageManager} ${packageManager === "npm" ? "install" : "add"} ${packageName}`,
1107
+ "Check the error output for specific issues",
1108
+ "Resolve any conflicts or version mismatches"
1109
+ ]
1110
+ });
1111
+ }
1112
+ super(
1113
+ 500 /* DEPENDENCY_INSTALL_FAILED */,
1114
+ `Failed to install dependency: ${packageName}`,
1115
+ { packageName, packageManager, statusCode, error: cause?.message },
1116
+ suggestions,
1117
+ cause
1118
+ );
1119
+ }
1120
+ };
1121
+
1122
+ // src/errors/version.ts
1123
+ var VersionMismatchError = class extends KigumiError {
1124
+ constructor(configVersion, cliVersion) {
1125
+ super(
1126
+ 700 /* VERSION_MISMATCH */,
1127
+ `CLI version ${cliVersion} does not match project version ${configVersion}`,
1128
+ { configVersion, cliVersion },
1129
+ [
1130
+ {
1131
+ title: "Use the matching CLI version",
1132
+ steps: [`npx kigumi@${configVersion} add <component>`]
1133
+ },
1134
+ {
1135
+ title: "Or upgrade your project to the current CLI version",
1136
+ steps: [`npx kigumi@${cliVersion} upgrade`]
1137
+ }
1138
+ ]
1139
+ );
1140
+ this.configVersion = configVersion;
1141
+ this.cliVersion = cliVersion;
1142
+ }
1143
+ };
1144
+
1145
+ // src/errors/index.ts
1146
+ function handleError(error, output) {
1147
+ const kigumiError = error instanceof KigumiError ? error : UnknownError.from(error);
1148
+ if (output && typeof output.error === "function") {
1149
+ output.error(kigumiError.format(), kigumiError);
1150
+ const suggestions = kigumiError.formatSuggestions();
1151
+ if (suggestions) {
1152
+ output.note("How to fix", suggestions);
1153
+ }
1154
+ } else {
1155
+ console.error(kigumiError.format());
1156
+ const suggestions = kigumiError.formatSuggestions();
1157
+ if (suggestions) {
1158
+ console.error("\nHow to fix:");
1159
+ console.error(suggestions);
1160
+ }
1161
+ }
1162
+ process.exit(kigumiError.exitCode);
1163
+ }
1164
+
1165
+ // src/utils/regenerate.ts
1166
+ import fs5 from "fs-extra";
1167
+ import path4 from "path";
1168
+
1169
+ // src/utils/detect-framework.ts
1170
+ import fs4 from "fs-extra";
1171
+ import path3 from "path";
1172
+ async function detectFramework(cwd = process.cwd()) {
1173
+ const packageJsonPath = path3.join(cwd, "package.json");
1174
+ if (!await fs4.pathExists(packageJsonPath)) {
1175
+ return "unknown";
1176
+ }
1177
+ const packageJson = await fs4.readJson(packageJsonPath);
1178
+ const deps = {
1179
+ ...packageJson.dependencies,
1180
+ ...packageJson.devDependencies
1181
+ };
1182
+ if (deps.react || deps["@types/react"]) {
1183
+ return "react";
1184
+ }
1185
+ if (deps.vue || deps["@vue/cli-service"]) {
1186
+ return "vue";
1187
+ }
1188
+ if (deps["@angular/core"]) {
1189
+ return "angular";
1190
+ }
1191
+ return "unknown";
1192
+ }
1193
+ async function detectTypeScript(cwd = process.cwd()) {
1194
+ const tsconfigPath = path3.join(cwd, "tsconfig.json");
1195
+ const packageJsonPath = path3.join(cwd, "package.json");
1196
+ if (await fs4.pathExists(tsconfigPath)) {
1197
+ return true;
1198
+ }
1199
+ if (await fs4.pathExists(packageJsonPath)) {
1200
+ const packageJson = await fs4.readJson(packageJsonPath);
1201
+ const deps = {
1202
+ ...packageJson.dependencies,
1203
+ ...packageJson.devDependencies
1204
+ };
1205
+ return !!deps.typescript;
1206
+ }
1207
+ return false;
1208
+ }
1209
+ async function detectPackageManager(cwd = process.cwd()) {
1210
+ if (await fs4.pathExists(path3.join(cwd, "pnpm-lock.yaml"))) {
1211
+ return "pnpm";
1212
+ }
1213
+ if (await fs4.pathExists(path3.join(cwd, "yarn.lock"))) {
1214
+ return "yarn";
1215
+ }
1216
+ if (await fs4.pathExists(path3.join(cwd, "bun.lockb"))) {
1217
+ return "bun";
1218
+ }
1219
+ return "npm";
1220
+ }
1221
+ async function isNextProject(cwd = process.cwd()) {
1222
+ const packageJsonPath = path3.join(cwd, "package.json");
1223
+ if (await fs4.pathExists(packageJsonPath)) {
1224
+ try {
1225
+ const packageJson = await fs4.readJson(packageJsonPath);
1226
+ const deps = {
1227
+ ...packageJson.dependencies,
1228
+ ...packageJson.devDependencies
1229
+ };
1230
+ if (deps.next) {
1231
+ return true;
1232
+ }
1233
+ } catch (_error) {
1234
+ }
1235
+ }
1236
+ for (const name of [
1237
+ "next.config.js",
1238
+ "next.config.mjs",
1239
+ "next.config.ts",
1240
+ "next.config.cjs"
1241
+ ]) {
1242
+ if (await fs4.pathExists(path3.join(cwd, name))) {
1243
+ return true;
1244
+ }
1245
+ }
1246
+ return false;
1247
+ }
1248
+ async function detectNextRouter(cwd = process.cwd()) {
1249
+ for (const rel of ["src/app", "app"]) {
1250
+ if (await fs4.pathExists(path3.join(cwd, rel))) {
1251
+ return "app";
1252
+ }
1253
+ }
1254
+ for (const rel of ["src/pages", "pages"]) {
1255
+ if (await fs4.pathExists(path3.join(cwd, rel))) {
1256
+ return "pages";
1257
+ }
1258
+ }
1259
+ return "unknown";
1260
+ }
1261
+ async function detectSourceLayout(cwd = process.cwd()) {
1262
+ const srcMarkers = [
1263
+ "src/app",
1264
+ "src/pages",
1265
+ "src/main.ts",
1266
+ "src/main.tsx",
1267
+ "src/main.js",
1268
+ "src/main.jsx",
1269
+ "src/index.ts",
1270
+ "src/index.tsx"
1271
+ ];
1272
+ for (const rel of srcMarkers) {
1273
+ if (await fs4.pathExists(path3.join(cwd, rel))) {
1274
+ return "src";
1275
+ }
1276
+ }
1277
+ return "root";
1278
+ }
1279
+ async function getProjectInfo(cwd = process.cwd()) {
1280
+ const framework = await detectFramework(cwd);
1281
+ const typescript = await detectTypeScript(cwd);
1282
+ const packageManager = await detectPackageManager(cwd);
1283
+ const isNext = await isNextProject(cwd);
1284
+ const nextRouter = isNext ? await detectNextRouter(cwd) : void 0;
1285
+ const sourceLayout = await detectSourceLayout(cwd);
1286
+ const packageJsonPath = path3.join(cwd, "package.json");
1287
+ let hasVite = false;
1288
+ if (await fs4.pathExists(packageJsonPath)) {
1289
+ const packageJson = await fs4.readJson(packageJsonPath);
1290
+ const deps = {
1291
+ ...packageJson.dependencies,
1292
+ ...packageJson.devDependencies
1293
+ };
1294
+ hasVite = !!deps.vite;
1295
+ }
1296
+ return {
1297
+ framework,
1298
+ typescript,
1299
+ packageManager,
1300
+ hasVite,
1301
+ isNext,
1302
+ nextRouter,
1303
+ sourceLayout
1304
+ };
1305
+ }
1306
+
1307
+ // src/utils/regenerate.ts
1308
+ async function regenerateKigumiSetup(cwd, config, utilsDir, tierOverride, options, isNextOverride, nextRouterOverride) {
1309
+ const tier = tierOverride || detectTierSync(cwd);
1310
+ const packageName = getWebAwesomePackage(tier);
1311
+ const stylesDir = config.stylesDir;
1312
+ const stylesAlias = toKigumiAlias(stylesDir);
1313
+ const isNext = isNextOverride ?? await isNextProject(cwd);
1314
+ const nextRouter = isNext ? nextRouterOverride ?? await detectNextRouter(cwd) : void 0;
1315
+ const skipLayersImport = nextRouter === "pages";
1316
+ const layersPath = path4.join(cwd, stylesDir, "layers.css");
1317
+ const layersExists = await fs5.pathExists(layersPath);
1318
+ let layersPreserved = false;
1319
+ if (options?.preserveLayersCSS && layersExists) {
1320
+ layersPreserved = true;
1321
+ } else {
1322
+ const isCommunityTheme = config.installedThemes?.[config.theme.selected]?.source === "community";
1323
+ const layersContent = await generateLayersCSS(
1324
+ packageName,
1325
+ config.theme.selected,
1326
+ stylesDir,
1327
+ isCommunityTheme,
1328
+ nextRouter
1329
+ );
1330
+ await fs5.writeFile(layersPath, layersContent);
1331
+ }
1332
+ const themeClasses = config.theme.selected !== "none" ? generateThemeClassesScript(config) : "";
1333
+ const layersImportLine = skipLayersImport ? `// Pages Router: layers.css must be imported from pages/_app.tsx
1334
+ // directly \u2014 Next forbids global CSS imports from lib/.` : `import '${stylesAlias}/layers.css';`;
1335
+ const setupFileContent = `/**
1336
+ * Kigumi Setup
1337
+ *
1338
+ * This file is auto-generated by Kigumi CLI.
1339
+ * It imports Web Awesome styles with cascade layers and applies theme classes.
1340
+ *
1341
+ * Current theme: ${config.theme.selected}
1342
+ * Current palette: ${config.theme.palette}
1343
+ * Current brand: ${config.theme.brandColor}
1344
+ *
1345
+ * To change themes, use: kigumi theme <name>
1346
+ * To change brand color, use: kigumi brand <color>
1347
+ */
1348
+
1349
+ // Prevent duplicate custom-element registrations when Web Awesome components
1350
+ // share internal dependencies (e.g. toast-item internally uses progress-ring)
1351
+ if (typeof customElements !== 'undefined') {
1352
+ const _ceDefine = customElements.define.bind(customElements);
1353
+ customElements.define = function (name: string, ctor: CustomElementConstructor, options?: ElementDefinitionOptions) {
1354
+ if (!customElements.get(name)) _ceDefine(name, ctor, options);
1355
+ };
1356
+ }
1357
+
1358
+ // Import Web Awesome CSS with cascade layers for predictable specificity control
1359
+ ${layersImportLine}
1360
+ ${themeClasses}
1361
+ export {};
1362
+ `;
1363
+ const finalSetupFileContent = isNext ? `'use client';
1364
+
1365
+ ${setupFileContent}` : setupFileContent;
1366
+ const setupFilePath = path4.join(cwd, utilsDir, "kigumi.ts");
1367
+ await fs5.writeFile(setupFilePath, finalSetupFileContent);
1368
+ return { layersPreserved };
1369
+ }
1370
+ function generateThemeClassesScript(config) {
1371
+ return `
1372
+ // Apply theme classes to <html> element
1373
+ if (typeof document !== 'undefined') {
1374
+ const html = document.documentElement;
1375
+
1376
+ // Remove old theme classes (for hot reload)
1377
+ html.className = html.className
1378
+ .replace(/\\bwa-theme-\\S+/g, '')
1379
+ .replace(/\\bwa-palette-\\S+/g, '')
1380
+ .replace(/\\bwa-brand-\\S+/g, '');
1381
+
1382
+ // Add new theme classes
1383
+ html.classList.add('wa-theme-${config.theme.selected}');
1384
+ html.classList.add('wa-palette-${config.theme.palette}');
1385
+ html.classList.add('wa-brand-${config.theme.brandColor}');
1386
+ }
1387
+ `;
1388
+ }
1389
+ async function generateLayersCSS(packageName, themeName, _stylesDir, isCommunityTheme = false, nextRouter) {
1390
+ const themeImport = isCommunityTheme ? `./community-themes/${themeName}.css` : `${packageName}/dist/styles/themes/${themeName}.css`;
1391
+ const usePlainImports = nextRouter === "pages";
1392
+ const baseLayer = usePlainImports ? "" : " layer(base)";
1393
+ const themeLayer = usePlainImports ? "" : " layer(theme)";
1394
+ return `/**
1395
+ * Web Awesome CSS Cascade Layers
1396
+ *
1397
+ * This file is auto-generated by Kigumi CLI.
1398
+ * It wraps Web Awesome CSS in cascade layers for predictable specificity control.
1399
+ *
1400
+ * Layer hierarchy (earlier = lower priority):
1401
+ * 1. base - Web Awesome foundation + theme styles
1402
+ * 2. theme - Your custom CSS overrides (theme.css)
1403
+ *
1404
+ * Learn more: https://developer.mozilla.org/en-US/docs/Web/CSS/@layer
1405
+ */
1406
+
1407
+ /* Define layer order */
1408
+ @layer base, theme;
1409
+
1410
+ /* Layer 1: Web Awesome base styles */
1411
+ @import '${packageName}/dist/styles/webawesome.css'${baseLayer};
1412
+
1413
+ /* Layer 1: Web Awesome theme styles */
1414
+ @import '${themeImport}'${baseLayer};
1415
+
1416
+ /* Layer 2: Your custom CSS overrides (sibling of layers.css) */
1417
+ @import './theme.css'${themeLayer};
1418
+ `;
1419
+ }
1420
+ async function surgicalRewriteLayersCss(filePath, targetPackage, themeName) {
1421
+ const content = await fs5.readFile(filePath, "utf-8");
1422
+ const basePattern = /@import\s+['"](@awesome\.me\/webawesome(?:-pro)?)\/dist\/styles\/webawesome\.css['"]/;
1423
+ const basePatternGlobal = new RegExp(basePattern.source, "g");
1424
+ const themePattern = /@import\s+['"](@awesome\.me\/webawesome(?:-pro)?)\/dist\/styles\/themes\/([a-z][a-z0-9-]*)\.css['"]/;
1425
+ const themePatternGlobal = new RegExp(themePattern.source, "g");
1426
+ const hasBase = basePattern.test(content);
1427
+ const hasTheme = themePattern.test(content);
1428
+ if (!hasBase && !hasTheme) {
1429
+ const currentPackage = content.includes(WEB_AWESOME_PRO_PACKAGE) ? WEB_AWESOME_PRO_PACKAGE : WEB_AWESOME_FREE_PACKAGE;
1430
+ throw new LayersCssRewriteError(
1431
+ filePath,
1432
+ currentPackage,
1433
+ targetPackage,
1434
+ themeName
1435
+ );
1436
+ }
1437
+ let next = content;
1438
+ if (hasBase) {
1439
+ next = next.replace(
1440
+ basePatternGlobal,
1441
+ `@import '${targetPackage}/dist/styles/webawesome.css'`
1442
+ );
1443
+ }
1444
+ if (hasTheme) {
1445
+ next = next.replace(
1446
+ themePatternGlobal,
1447
+ (_match, _pkg, theme) => `@import '${targetPackage}/dist/styles/themes/${theme}.css'`
1448
+ );
1449
+ }
1450
+ if (next === content) {
1451
+ return { changed: false };
1452
+ }
1453
+ await fs5.writeFile(filePath, next);
1454
+ return { changed: true };
1455
+ }
1456
+ async function generateViteEnvDts(cwd, srcDir, waPackage = WEB_AWESOME_FREE_PACKAGE) {
1457
+ const viteEnvContent = `/// <reference types="vite/client" />
1458
+
1459
+ /**
1460
+ * Web Awesome JSX Types
1461
+ *
1462
+ * This extends React's JSX.IntrinsicElements with Web Awesome custom elements.
1463
+ * Uses the official types from the ${waPackage} package.
1464
+ *
1465
+ * IMPORTANT: Uses 'declare global' to extend JSX without overwriting React module.
1466
+ *
1467
+ * @see https://webawesome.com/docs/#react-users
1468
+ */
1469
+
1470
+ import type {
1471
+ CustomElements,
1472
+ CustomCssProperties,
1473
+ } from '${waPackage}/dist/custom-elements-jsx.d.ts';
1474
+
1475
+ declare global {
1476
+ namespace JSX {
1477
+ // eslint-disable-next-line @typescript-eslint/no-empty-object-type
1478
+ interface IntrinsicElements extends CustomElements {}
1479
+ }
1480
+ }
1481
+
1482
+ declare module 'react' {
1483
+ // eslint-disable-next-line @typescript-eslint/no-empty-object-type
1484
+ interface CSSProperties extends CustomCssProperties {}
1485
+ }
1486
+
1487
+ export {};
1488
+ `;
1489
+ const viteEnvPath = path4.join(cwd, srcDir, "vite-env.d.ts");
1490
+ await fs5.writeFile(viteEnvPath, viteEnvContent);
1491
+ }
1492
+ async function generateNextEnvDts(cwd, srcDir, waPackage = WEB_AWESOME_FREE_PACKAGE) {
1493
+ const dtsContent = `/**
1494
+ * Web Awesome JSX Types
1495
+ *
1496
+ * This extends React's JSX.IntrinsicElements with Web Awesome custom elements.
1497
+ * Uses the official types from the ${waPackage} package.
1498
+ *
1499
+ * IMPORTANT: Uses 'declare global' to extend JSX without overwriting React module.
1500
+ *
1501
+ * @see https://webawesome.com/docs/#react-users
1502
+ */
1503
+
1504
+ import type {
1505
+ CustomElements,
1506
+ CustomCssProperties,
1507
+ } from '${waPackage}/dist/custom-elements-jsx.d.ts';
1508
+
1509
+ declare global {
1510
+ namespace JSX {
1511
+ // eslint-disable-next-line @typescript-eslint/no-empty-object-type
1512
+ interface IntrinsicElements extends CustomElements {}
1513
+ }
1514
+ }
1515
+
1516
+ declare module 'react' {
1517
+ // eslint-disable-next-line @typescript-eslint/no-empty-object-type
1518
+ interface CSSProperties extends CustomCssProperties {}
1519
+ }
1520
+
1521
+ export {};
1522
+ `;
1523
+ const dtsPath = path4.join(cwd, srcDir, "web-awesome.d.ts");
1524
+ await fs5.writeFile(dtsPath, dtsContent);
1525
+ }
1526
+ async function generateThemeCSS() {
1527
+ return `/**
1528
+ * Web Awesome Theme Customization
1529
+ *
1530
+ * This file is for your custom CSS overrides.
1531
+ * Web Awesome base and theme imports are handled in layers.css.
1532
+ *
1533
+ * This file is imported into the 'theme' cascade layer,
1534
+ * which has higher priority than Web Awesome base styles.
1535
+ * This means your customizations will always override Web Awesome defaults.
1536
+ *
1537
+ * Learn more:
1538
+ * Customizing: https://webawesome.com/docs/customizing
1539
+ * Design Tokens: https://webawesome.com/docs/tokens
1540
+ * CSS Cascade Layers: https://developer.mozilla.org/en-US/docs/Web/CSS/@layer
1541
+ */
1542
+
1543
+ :root {
1544
+ /* Your custom CSS variable overrides here */
1545
+ /* Example: --wa-color-brand-60: #6366f1; */
1546
+ }
1547
+ `;
1548
+ }
1549
+ async function generateGitIgnore(cwd) {
1550
+ const gitignorePath = path4.join(cwd, ".gitignore");
1551
+ const exists = await fs5.pathExists(gitignorePath);
1552
+ const essentialEntries = [
1553
+ "# Dependencies",
1554
+ "node_modules/",
1555
+ "",
1556
+ "# Environment variables",
1557
+ ".env",
1558
+ ".env.local",
1559
+ ".env.*.local",
1560
+ "",
1561
+ "# Build outputs",
1562
+ "dist/",
1563
+ "build/",
1564
+ "",
1565
+ "# Kigumi cross-framework staging (transient cache for agent conversion)",
1566
+ ".kigumi/foreign/",
1567
+ "",
1568
+ "# Kigumi registry cache (transient)",
1569
+ ".kigumi/cache/"
1570
+ ];
1571
+ if (!exists) {
1572
+ const content2 = essentialEntries.join("\n") + "\n";
1573
+ await fs5.writeFile(gitignorePath, content2);
1574
+ return;
1575
+ }
1576
+ let content = await fs5.readFile(gitignorePath, "utf-8");
1577
+ if (!content.includes(".env")) {
1578
+ content += "\n# Environment variables\n.env\n.env.local\n.env.*.local\n";
1579
+ }
1580
+ if (!/^\.kigumi\/foreign\/$/m.test(content)) {
1581
+ if (!content.endsWith("\n")) {
1582
+ content += "\n";
1583
+ }
1584
+ content += "\n# Kigumi cross-framework staging (transient cache for agent conversion)\n.kigumi/foreign/\n";
1585
+ }
1586
+ if (!/^\.kigumi\/cache\/$/m.test(content)) {
1587
+ if (!content.endsWith("\n")) {
1588
+ content += "\n";
1589
+ }
1590
+ content += "\n# Kigumi registry cache (transient)\n.kigumi/cache/\n";
1591
+ }
1592
+ await fs5.writeFile(gitignorePath, content);
1593
+ }
1594
+
1595
+ // src/utils/github-fetcher.ts
1596
+ import os from "os";
1597
+ import path5 from "path";
1598
+ import fs6 from "fs-extra";
1599
+
1600
+ // src/schemas/community-registry.ts
1601
+ import semver from "semver";
1602
+ import { z as z2 } from "zod";
1603
+ var safePathSchema = z2.string().min(1).refine(
1604
+ (value) => {
1605
+ if (value.startsWith("/")) return false;
1606
+ if (value.includes("\\")) return false;
1607
+ return value.split("/").every(
1608
+ (segment) => segment !== ".." && segment !== "." && segment !== ""
1609
+ );
1610
+ },
1611
+ {
1612
+ message: "Path may not be absolute, contain '.', '..', empty segments, or backslashes"
1613
+ }
1614
+ );
1615
+ var componentFilesSchema = z2.object({
1616
+ /** Path to main component file, relative to registry root */
1617
+ component: safePathSchema,
1618
+ /** Path to CSS file */
1619
+ css: safePathSchema.optional(),
1620
+ /** Path to test file */
1621
+ test: safePathSchema.optional(),
1622
+ /** Additional files (utils, hooks, types) */
1623
+ extras: z2.array(safePathSchema).default([])
1624
+ });
1625
+ var communityComponentSchema = z2.object({
1626
+ name: z2.string().min(1),
1627
+ description: z2.string().optional(),
1628
+ category: z2.string().optional(),
1629
+ /** Keys of other components in this registry that this component depends on */
1630
+ dependencies: z2.array(z2.string()).default([]),
1631
+ /** Framework-specific file paths (keyed by framework name) */
1632
+ files: z2.record(z2.string(), componentFilesSchema).refine(
1633
+ (files) => {
1634
+ const validFrameworks = ["react", "vue", "angular"];
1635
+ return Object.keys(files).every((k) => validFrameworks.includes(k));
1636
+ },
1637
+ {
1638
+ message: "File keys must be valid framework names (react, vue, angular)"
1639
+ }
1640
+ ),
1641
+ /** npm packages this component needs (not Web Awesome packages) */
1642
+ peerDependencies: z2.record(z2.string(), z2.string()).optional()
1643
+ });
1644
+ var communityThemeSchema = z2.object({
1645
+ name: z2.string().min(1),
1646
+ description: z2.string().optional(),
1647
+ /** URL to a preview screenshot */
1648
+ preview: z2.string().url().optional(),
1649
+ /** Theme files */
1650
+ files: z2.object({
1651
+ /** Main theme CSS file */
1652
+ css: z2.string().min(1),
1653
+ /** Optional CSS variables file */
1654
+ variables: z2.string().optional()
1655
+ }),
1656
+ /** Built-in theme this extends */
1657
+ extends: z2.string().optional()
1658
+ });
1659
+ var communityRegistrySchema = z2.object({
1660
+ /** JSON Schema URL for editor support */
1661
+ $schema: z2.string().optional(),
1662
+ /** Registry name */
1663
+ name: z2.string().min(1),
1664
+ /** Registry description */
1665
+ description: z2.string().optional(),
1666
+ /** Author name or handle */
1667
+ author: z2.string().optional(),
1668
+ /** License identifier */
1669
+ license: z2.string().optional(),
1670
+ /** Homepage URL */
1671
+ homepage: z2.string().url().optional(),
1672
+ /** Semver version (no ranges); pre-release and build metadata permitted */
1673
+ version: z2.string().refine((value) => semver.valid(value) !== null, {
1674
+ message: "Must be a valid semver version (e.g., 1.0.0 or 1.0.0-beta.1)"
1675
+ }),
1676
+ /** Frameworks this registry provides components for */
1677
+ frameworks: z2.array(frameworkSchema).min(1),
1678
+ /** Minimum Kigumi CLI version required (semver, no ranges) */
1679
+ kigumiVersion: z2.string().refine((value) => semver.valid(value) !== null, {
1680
+ message: "kigumiVersion must be a valid semver string (e.g., 0.19.0 or 1.0.0-beta.1)"
1681
+ }).optional(),
1682
+ /** Component definitions keyed by slug */
1683
+ components: z2.record(z2.string(), communityComponentSchema).optional().default({}),
1684
+ /** Theme definitions keyed by slug */
1685
+ themes: z2.record(z2.string(), communityThemeSchema).optional().default({})
1686
+ });
1687
+ function validateCommunityRegistry(data, url) {
1688
+ const result = communityRegistrySchema.safeParse(data);
1689
+ if (!result.success) {
1690
+ const errors = result.error.issues.map((issue) => {
1691
+ const path6 = issue.path.join(".");
1692
+ return path6 ? `${path6}: ${issue.message}` : issue.message;
1693
+ });
1694
+ throw new CommunityRegistryInvalidError(url, errors);
1695
+ }
1696
+ return result.data;
1697
+ }
1698
+ function validateRegistryDependencies(registry) {
1699
+ const errors = [];
1700
+ const componentKeys = new Set(Object.keys(registry.components));
1701
+ for (const [key, component] of Object.entries(registry.components)) {
1702
+ for (const dep of component.dependencies) {
1703
+ if (!componentKeys.has(dep)) {
1704
+ errors.push(
1705
+ `Component "${key}" depends on "${dep}" which is not defined in this registry`
1706
+ );
1707
+ }
1708
+ }
1709
+ }
1710
+ return errors;
1711
+ }
1712
+
1713
+ // src/utils/version-check.ts
1714
+ import semver2 from "semver";
1715
+ function parseSemver(version) {
1716
+ const match = version.match(/^(\d+)\.(\d+)\.(\d+)/);
1717
+ if (!match) return null;
1718
+ return {
1719
+ major: parseInt(match[1], 10),
1720
+ minor: parseInt(match[2], 10),
1721
+ patch: parseInt(match[3], 10)
1722
+ };
1723
+ }
1724
+ function checkVersionCompatibility(configVersion, cliVersion) {
1725
+ if (!configVersion) {
1726
+ return { status: "no-pin" };
1727
+ }
1728
+ const parsedConfig = parseSemver(configVersion);
1729
+ const parsedCli = parseSemver(cliVersion);
1730
+ if (!parsedConfig || !parsedCli) {
1731
+ return { status: "match" };
1732
+ }
1733
+ if (parsedConfig.major !== parsedCli.major) {
1734
+ return {
1735
+ status: "major-mismatch",
1736
+ configVersion,
1737
+ cliVersion
1738
+ };
1739
+ }
1740
+ if (parsedConfig.minor !== parsedCli.minor) {
1741
+ return {
1742
+ status: "minor-mismatch",
1743
+ configVersion,
1744
+ cliVersion
1745
+ };
1746
+ }
1747
+ return { status: "match" };
1748
+ }
1749
+ function satisfiesMinimum(version, minimum) {
1750
+ if (!semver2.valid(version) || !semver2.valid(minimum)) return false;
1751
+ return semver2.satisfies(version, `>=${minimum}`, { includePrerelease: true });
1752
+ }
1753
+
1754
+ // src/utils/github-fetcher.ts
1755
+ function isLocalPathInput(input) {
1756
+ const trimmed = input.trim();
1757
+ return trimmed.startsWith("./") || trimmed.startsWith("../") || trimmed.startsWith("/") || trimmed === "." || trimmed === ".." || trimmed.startsWith("~/") || trimmed === "~";
1758
+ }
1759
+ function resolveLocalPath(input, baseDir) {
1760
+ const trimmed = input.trim();
1761
+ if (trimmed === "~" || trimmed.startsWith("~/")) {
1762
+ const rest = trimmed === "~" ? "" : trimmed.slice(2);
1763
+ return path5.join(os.homedir(), rest);
1764
+ }
1765
+ if (path5.isAbsolute(trimmed)) {
1766
+ return trimmed;
1767
+ }
1768
+ return path5.resolve(baseDir ?? process.cwd(), trimmed);
1769
+ }
1770
+ function parseRegistrySource(input, options) {
1771
+ if (isLocalPathInput(input)) {
1772
+ const absolutePath = resolveLocalPath(input, options?.baseDir);
1773
+ return {
1774
+ kind: "local",
1775
+ url: absolutePath,
1776
+ absolutePath
1777
+ };
1778
+ }
1779
+ return parseGitHubUrl(input);
1780
+ }
1781
+ function parseGitHubUrl(url) {
1782
+ let normalized = url.trim();
1783
+ if (!normalized.startsWith("http")) {
1784
+ normalized = `https://${normalized}`;
1785
+ }
1786
+ normalized = normalized.replace(/\/+$/, "");
1787
+ let parsed;
1788
+ try {
1789
+ parsed = new URL(normalized);
1790
+ } catch (error) {
1791
+ throw new Error(`Invalid URL: ${url}`, { cause: error });
1792
+ }
1793
+ if (parsed.hostname !== "github.com") {
1794
+ throw new Error(`Only GitHub URLs are supported. Got: ${parsed.hostname}`);
1795
+ }
1796
+ const pathParts = parsed.pathname.split("/").filter(Boolean);
1797
+ if (pathParts.length < 2) {
1798
+ throw new Error(
1799
+ `Invalid GitHub repository URL: ${url}. Expected format: https://github.com/owner/repo`
1800
+ );
1801
+ }
1802
+ const owner = pathParts[0];
1803
+ const repo = pathParts[1];
1804
+ let branch = "main";
1805
+ if (pathParts.length >= 4 && pathParts[2] === "tree") {
1806
+ branch = pathParts.slice(3).join("/");
1807
+ }
1808
+ return {
1809
+ kind: "github",
1810
+ url: `https://github.com/${owner}/${repo}`,
1811
+ owner,
1812
+ repo,
1813
+ branch
1814
+ };
1815
+ }
1816
+ function buildRawUrl(source, filePath) {
1817
+ const cleanPath = filePath.replace(/^\//, "");
1818
+ return `${GITHUB_RAW_BASE_URL}/${source.owner}/${source.repo}/${source.branch}/${cleanPath}`;
1819
+ }
1820
+ async function fetchFile(source, filePath) {
1821
+ if (source.kind === "local") {
1822
+ const cleanPath = filePath.replace(/^\//, "");
1823
+ const absoluteFilePath = path5.resolve(source.absolutePath, cleanPath);
1824
+ if (absoluteFilePath !== source.absolutePath && !absoluteFilePath.startsWith(source.absolutePath + path5.sep)) {
1825
+ throw new PathTraversalError(filePath, source.absolutePath);
1826
+ }
1827
+ try {
1828
+ return await fs6.readFile(absoluteFilePath, "utf-8");
1829
+ } catch (error) {
1830
+ const errno = error;
1831
+ if (errno.code === "ENOENT") {
1832
+ throw new Error(
1833
+ `File not found: ${filePath} in ${source.absolutePath}`,
1834
+ { cause: error }
1835
+ );
1836
+ }
1837
+ throw new Error(
1838
+ `Failed to read ${filePath} from ${source.absolutePath}: ${errno.message}`,
1839
+ { cause: error }
1840
+ );
1841
+ }
1842
+ }
1843
+ const url = buildRawUrl(source, filePath);
1844
+ const headers = {
1845
+ "User-Agent": "kigumi-cli"
1846
+ };
1847
+ if (source.token) {
1848
+ headers["Authorization"] = `token ${source.token}`;
1849
+ }
1850
+ const response = await fetch(url, { headers });
1851
+ if (!response.ok) {
1852
+ if (response.status === 404) {
1853
+ throw new Error(`File not found: ${filePath} in ${source.url}`);
1854
+ }
1855
+ if (response.status === 401 || response.status === 403) {
1856
+ throw new Error(
1857
+ `Authentication failed for ${source.url}. Provide a GitHub token for private repositories.`
1858
+ );
1859
+ }
1860
+ throw new Error(
1861
+ `Failed to fetch ${filePath} from ${source.url}: ${response.status} ${response.statusText}`
1862
+ );
1863
+ }
1864
+ return response.text();
1865
+ }
1866
+ async function fetchRegistryJson(source, output) {
1867
+ const content = await fetchFile(source, "registry.json");
1868
+ let data;
1869
+ try {
1870
+ data = JSON.parse(content);
1871
+ } catch (error) {
1872
+ throw new Error(`Invalid JSON in registry.json from ${source.url}`, {
1873
+ cause: error
1874
+ });
1875
+ }
1876
+ const registry = validateCommunityRegistry(data, source.url);
1877
+ if (registry.kigumiVersion && output) {
1878
+ if (!satisfiesMinimum(CLI_VERSION, registry.kigumiVersion)) {
1879
+ output.warn(
1880
+ `Registry "${registry.name}" requires kigumi >= ${registry.kigumiVersion}, you have ${CLI_VERSION}. Some features may not work correctly.`
1881
+ );
1882
+ }
1883
+ }
1884
+ return registry;
1885
+ }
1886
+
1887
+ // src/utils/github-token.ts
1888
+ import { execa } from "execa";
1889
+ async function getGitHubToken() {
1890
+ const githubToken = process.env.GITHUB_TOKEN;
1891
+ if (githubToken?.trim()) {
1892
+ return githubToken.trim();
1893
+ }
1894
+ const kigumiToken = process.env.KIGUMI_GITHUB_TOKEN;
1895
+ if (kigumiToken?.trim()) {
1896
+ return kigumiToken.trim();
1897
+ }
1898
+ try {
1899
+ const { stdout } = await execa("gh", ["auth", "token"]);
1900
+ const token = stdout.trim();
1901
+ if (token) {
1902
+ return token;
1903
+ }
1904
+ } catch (_error) {
1905
+ }
1906
+ return void 0;
1907
+ }
1908
+
1909
+ // src/utils/registry-resolver.ts
1910
+ function resolveRegistrySource(from, config) {
1911
+ if (from.includes("/") || from.includes(".")) {
1912
+ return from;
1913
+ }
1914
+ const registries = config.registries || [];
1915
+ const match = registries.find(
1916
+ (r) => r.name?.toLowerCase() === from.toLowerCase()
1917
+ );
1918
+ if (!match) {
1919
+ const available = registries.map((r) => r.name).filter(Boolean).join(", ");
1920
+ throw new Error(
1921
+ `Registry "${from}" not found.` + (available ? ` Connected registries: ${available}` : ' Run "kigumi registry connect <url>" to connect one.')
1922
+ );
1923
+ }
1924
+ return match.url;
1925
+ }
1926
+
1927
+ export {
1928
+ confirm,
1929
+ select,
1930
+ text,
1931
+ multiselect,
1932
+ isCancel,
1933
+ getOutput2 as getOutput,
1934
+ CheckRunner,
1935
+ UserCancelledError,
1936
+ ConfigNotFoundError,
1937
+ ConfigInvalidError,
1938
+ FRAMEWORKS,
1939
+ frameworkSchema,
1940
+ kigumiConfigSchema,
1941
+ DEFAULT_CONFIG,
1942
+ loadConfig,
1943
+ getConfig,
1944
+ saveConfig,
1945
+ ConfigExistsCheck,
1946
+ PackageJsonExistsCheck,
1947
+ ValidationError,
1948
+ TierRestrictionError,
1949
+ ProThemeRequiredError,
1950
+ LayersCssRewriteError,
1951
+ DependencyInstallError,
1952
+ CommunityRegistryNotFoundError,
1953
+ CommunityComponentNotFoundError,
1954
+ FrameworkMismatchError,
1955
+ CircularDependencyError,
1956
+ PreFlightCheckError,
1957
+ VersionMismatchError,
1958
+ handleError,
1959
+ communityRegistrySchema,
1960
+ validateRegistryDependencies,
1961
+ isNextProject,
1962
+ detectNextRouter,
1963
+ getProjectInfo,
1964
+ regenerateKigumiSetup,
1965
+ surgicalRewriteLayersCss,
1966
+ generateViteEnvDts,
1967
+ generateNextEnvDts,
1968
+ generateThemeCSS,
1969
+ generateGitIgnore,
1970
+ checkVersionCompatibility,
1971
+ parseRegistrySource,
1972
+ parseGitHubUrl,
1973
+ fetchFile,
1974
+ fetchRegistryJson,
1975
+ getGitHubToken,
1976
+ resolveRegistrySource
1977
+ };
1978
+ //# sourceMappingURL=chunk-L52LAS37.js.map