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
package/README.md CHANGED
@@ -345,19 +345,19 @@ git push # Push to GitHub — done!
345
345
  }
346
346
  ```
347
347
 
348
- | Field | Required | Description |
349
- | -------------------------------------- | -------- | ------------------------------------------ |
350
- | `name` | Yes | Registry name |
351
- | `version` | Yes | Semver version (e.g. `1.0.0`) |
352
- | `frameworks` | Yes | Array: `react`, `vue`, `svelte`, `angular` |
353
- | `components[slug].files[fw].component` | Yes | Main component file path |
354
- | `components[slug].files[fw].css` | No | CSS file path |
355
- | `components[slug].files[fw].test` | No | Test file path |
356
- | `components[slug].files[fw].extras` | No | Additional files (hooks, utils) |
357
- | `components[slug].dependencies` | No | Other component slugs in this registry |
358
- | `themes[slug].files.css` | Yes | Main theme CSS file |
359
- | `themes[slug].files.variables` | No | CSS variables file |
360
- | `themes[slug].extends` | No | Built-in theme to extend |
348
+ | Field | Required | Description |
349
+ | -------------------------------------- | -------- | -------------------------------------- |
350
+ | `name` | Yes | Registry name |
351
+ | `version` | Yes | Semver version (e.g. `1.0.0`) |
352
+ | `frameworks` | Yes | Array: `react`, `vue`, `angular` |
353
+ | `components[slug].files[fw].component` | Yes | Main component file path |
354
+ | `components[slug].files[fw].css` | No | CSS file path |
355
+ | `components[slug].files[fw].test` | No | Test file path |
356
+ | `components[slug].files[fw].extras` | No | Additional files (hooks, utils) |
357
+ | `components[slug].dependencies` | No | Other component slugs in this registry |
358
+ | `themes[slug].files.css` | Yes | Main theme CSS file |
359
+ | `themes[slug].files.variables` | No | CSS variables file |
360
+ | `themes[slug].extends` | No | Built-in theme to extend |
361
361
 
362
362
  ## Global Options
363
363
 
package/dist/bin.js CHANGED
@@ -9,5 +9,5 @@ Please upgrade: https://nodejs.org`
9
9
  );
10
10
  process.exit(1);
11
11
  }
12
- await import("./-KKAC4XOR.js");
12
+ await import("./index.js");
13
13
  //# sourceMappingURL=bin.js.map
package/dist/bin.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/bin.ts"],"sourcesContent":["#!/usr/bin/env node\n\nexport {};\n\nconst major = parseInt(process.version.slice(1), 10);\n\nif (major < 20) {\n console.error(\n `kigumi requires Node.js 20 or later (detected ${process.version}).` +\n '\\nPlease upgrade: https://nodejs.org'\n );\n process.exit(1);\n}\n\nawait import('./index.js');\n"],"mappings":";;;AAIA,IAAM,QAAQ,SAAS,QAAQ,QAAQ,MAAM,CAAC,GAAG,EAAE;AAEnD,IAAI,QAAQ,IAAI;AACd,UAAQ;AAAA,IACN,iDAAiD,QAAQ,OAAO;AAAA;AAAA,EAElE;AACA,UAAQ,KAAK,CAAC;AAChB;AAEA,MAAM,OAAO,gBAAY;","names":[]}
1
+ {"version":3,"sources":["../src/bin.ts"],"sourcesContent":["#!/usr/bin/env node\n\nexport {};\n\nconst major = parseInt(process.version.slice(1), 10);\n\nif (major < 20) {\n console.error(\n `kigumi requires Node.js 20 or later (detected ${process.version}).` +\n '\\nPlease upgrade: https://nodejs.org'\n );\n process.exit(1);\n}\n\nawait import('./index.js');\n"],"mappings":";;;AAIA,IAAM,QAAQ,SAAS,QAAQ,QAAQ,MAAM,CAAC,GAAG,EAAE;AAEnD,IAAI,QAAQ,IAAI;AACd,UAAQ;AAAA,IACN,iDAAiD,QAAQ,OAAO;AAAA;AAAA,EAElE;AACA,UAAQ,KAAK,CAAC;AAChB;AAEA,MAAM,OAAO,YAAY;","names":[]}
@@ -0,0 +1,260 @@
1
+ // src/utils/tier.ts
2
+ import fs2 from "fs-extra";
3
+ import path2 from "path";
4
+ import { z } from "zod";
5
+
6
+ // src/constants.ts
7
+ import { readFileSync } from "fs";
8
+ import { dirname, join } from "path";
9
+ import { fileURLToPath } from "url";
10
+ var WEB_AWESOME_FREE_PACKAGE = "@awesome.me/webawesome";
11
+ var WEB_AWESOME_PRO_PACKAGE = "@awesome.me/webawesome-pro";
12
+ var WEB_AWESOME_SCOPE = "@awesome.me";
13
+ var ENV_TOKEN_KEY = "WEBAWESOME_NPM_TOKEN";
14
+ var MIN_TOKEN_LENGTH = 10;
15
+ var CONFIG_FILE_NAME = "kigumi.config.json";
16
+ var ENV_FILE_NAME = ".env";
17
+ var NPM_PUBLIC_REGISTRY = "https://registry.npmjs.org/";
18
+ var NPM_PRO_REGISTRY = "https://npm.cloudsmith.io/fortawesome/webawesome-pro";
19
+ var FREE_PACKAGE_REGEX = /@awesome\.me\/webawesome(?!-pro)/g;
20
+ var PRO_PACKAGE_REGEX = /@awesome\.me\/webawesome-pro/g;
21
+ var FREE_PACKAGE_PATTERN = /@awesome\.me\/webawesome(?!-pro)/;
22
+ var PRO_PACKAGE_PATTERN = /@awesome\.me\/webawesome-pro/;
23
+ var ENV_TOKEN_REGEX = /^\s*WEBAWESOME_NPM_TOKEN\s*=\s*(.+?)\s*$/m;
24
+ var DEFAULT_WEBAWESOME_VERSION = "^3.5.0";
25
+ var GITHUB_RAW_BASE_URL = "https://raw.githubusercontent.com";
26
+ var KIGUMI_CACHE_DIR = ".kigumi/cache";
27
+ var REGISTRY_CACHE_TTL_MS = 36e5;
28
+ var REGISTRY_FILE_NAME = "registry.json";
29
+ var NPM_REGISTRY_URL = "https://registry.npmjs.org/kigumi/latest";
30
+ var UPDATE_CHECK_CACHE_TTL_MS = 864e5;
31
+ var UPDATE_CHECK_TIMEOUT_MS = 3e3;
32
+ var UPDATE_CHECK_CACHE_FILE = "update-check.json";
33
+ var GITHUB_REPO_URL = "https://github.com/Siregar/kigumi-cli";
34
+ var GITHUB_ISSUES_URL = `${GITHUB_REPO_URL}/issues`;
35
+ var __constants_filename = fileURLToPath(import.meta.url);
36
+ var __constants_dirname = dirname(__constants_filename);
37
+ var __cliPackageJson = JSON.parse(
38
+ readFileSync(join(__constants_dirname, "..", "package.json"), "utf-8")
39
+ );
40
+ var CLI_VERSION = __cliPackageJson.version;
41
+
42
+ // src/utils/token.ts
43
+ import fs from "fs-extra";
44
+ import os from "os";
45
+ import path from "path";
46
+ async function detectProToken(cwd) {
47
+ const result = await detectProTokenWithSource(cwd);
48
+ return result.token;
49
+ }
50
+ function detectProTokenSync(cwd) {
51
+ const result = detectProTokenWithSourceSync(cwd);
52
+ return result.token;
53
+ }
54
+ function getTokenSourceSync(cwd) {
55
+ const result = detectProTokenWithSourceSync(cwd);
56
+ return result.source;
57
+ }
58
+ async function detectProTokenWithSource(cwd) {
59
+ const envToken = getTokenFromEnvVar();
60
+ if (envToken) {
61
+ return { token: envToken, source: "env" };
62
+ }
63
+ if (!process.env.KIGUMI_SKIP_GLOBAL_NPMRC) {
64
+ const npmrcToken = await getTokenFromGlobalNpmrc();
65
+ if (npmrcToken) {
66
+ return { token: npmrcToken, source: "npmrc" };
67
+ }
68
+ }
69
+ const dotenvToken = await getTokenFromDotenv(cwd);
70
+ if (dotenvToken) {
71
+ return { token: dotenvToken, source: "dotenv" };
72
+ }
73
+ return { token: null, source: null };
74
+ }
75
+ function detectProTokenWithSourceSync(cwd) {
76
+ const envToken = getTokenFromEnvVar();
77
+ if (envToken) {
78
+ return { token: envToken, source: "env" };
79
+ }
80
+ if (!process.env.KIGUMI_SKIP_GLOBAL_NPMRC) {
81
+ const npmrcToken = getTokenFromGlobalNpmrcSync();
82
+ if (npmrcToken) {
83
+ return { token: npmrcToken, source: "npmrc" };
84
+ }
85
+ }
86
+ const dotenvToken = getTokenFromDotenvSync(cwd);
87
+ if (dotenvToken) {
88
+ return { token: dotenvToken, source: "dotenv" };
89
+ }
90
+ return { token: null, source: null };
91
+ }
92
+ function getTokenFromEnvVar() {
93
+ const token = process.env[ENV_TOKEN_KEY];
94
+ if (token && token.length >= MIN_TOKEN_LENGTH) {
95
+ return token.trim();
96
+ }
97
+ return null;
98
+ }
99
+ async function getTokenFromGlobalNpmrc() {
100
+ const npmrcPath = path.join(os.homedir(), ".npmrc");
101
+ if (!await fs.pathExists(npmrcPath)) {
102
+ return null;
103
+ }
104
+ const content = await fs.readFile(npmrcPath, "utf-8");
105
+ return extractTokenFromNpmrc(content);
106
+ }
107
+ function getTokenFromGlobalNpmrcSync() {
108
+ const npmrcPath = path.join(os.homedir(), ".npmrc");
109
+ if (!fs.existsSync(npmrcPath)) {
110
+ return null;
111
+ }
112
+ const content = fs.readFileSync(npmrcPath, "utf-8");
113
+ return extractTokenFromNpmrc(content);
114
+ }
115
+ function extractTokenFromNpmrc(content) {
116
+ const registryHost = NPM_PRO_REGISTRY.replace("https://", "");
117
+ const patterns = [
118
+ new RegExp(`//${registryHost}/?:_authToken=(.+)`, "m"),
119
+ new RegExp(`${registryHost}/?:_authToken=(.+)`, "m")
120
+ ];
121
+ for (const pattern of patterns) {
122
+ const match = content.match(pattern);
123
+ if (match && match[1]) {
124
+ const token = match[1].trim();
125
+ if (token.length >= MIN_TOKEN_LENGTH) {
126
+ return token;
127
+ }
128
+ }
129
+ }
130
+ return null;
131
+ }
132
+ async function getTokenFromDotenv(cwd) {
133
+ const envPath = path.join(cwd, ENV_FILE_NAME);
134
+ if (!await fs.pathExists(envPath)) {
135
+ return null;
136
+ }
137
+ const content = await fs.readFile(envPath, "utf-8");
138
+ return extractTokenFromDotenv(content);
139
+ }
140
+ function getTokenFromDotenvSync(cwd) {
141
+ const envPath = path.join(cwd, ENV_FILE_NAME);
142
+ if (!fs.existsSync(envPath)) {
143
+ return null;
144
+ }
145
+ const content = fs.readFileSync(envPath, "utf-8");
146
+ return extractTokenFromDotenv(content);
147
+ }
148
+ function extractTokenFromDotenv(content) {
149
+ const match = content.match(ENV_TOKEN_REGEX);
150
+ if (match && match[1]) {
151
+ const token = match[1].trim();
152
+ if (token.length >= MIN_TOKEN_LENGTH) {
153
+ return token;
154
+ }
155
+ }
156
+ return null;
157
+ }
158
+ function describeTokenSource(source) {
159
+ switch (source) {
160
+ case "env":
161
+ return `environment variable ($${ENV_TOKEN_KEY})`;
162
+ case "npmrc":
163
+ return "global ~/.npmrc";
164
+ case "dotenv":
165
+ return "project .env file";
166
+ default:
167
+ return "unknown";
168
+ }
169
+ }
170
+
171
+ // src/utils/tier.ts
172
+ var tierSchema = z.enum(["free", "pro"], {
173
+ error: () => 'Must be either "free" or "pro"'
174
+ });
175
+ async function detectTier(cwd) {
176
+ const packageJsonPath = path2.join(cwd, "package.json");
177
+ if (await fs2.pathExists(packageJsonPath)) {
178
+ try {
179
+ const packageJson = await fs2.readJson(packageJsonPath);
180
+ const deps = {
181
+ ...packageJson.dependencies,
182
+ ...packageJson.devDependencies
183
+ };
184
+ if (deps[WEB_AWESOME_PRO_PACKAGE]) {
185
+ return "pro";
186
+ }
187
+ if (deps[WEB_AWESOME_FREE_PACKAGE]) {
188
+ return "free";
189
+ }
190
+ } catch (_error) {
191
+ }
192
+ }
193
+ const token = await detectProToken(cwd);
194
+ return token ? "pro" : "free";
195
+ }
196
+ function detectTierSync(cwd) {
197
+ const packageJsonPath = path2.join(cwd, "package.json");
198
+ if (fs2.pathExistsSync(packageJsonPath)) {
199
+ try {
200
+ const packageJson = fs2.readJsonSync(packageJsonPath);
201
+ const deps = {
202
+ ...packageJson.dependencies,
203
+ ...packageJson.devDependencies
204
+ };
205
+ if (deps[WEB_AWESOME_PRO_PACKAGE]) {
206
+ return "pro";
207
+ }
208
+ if (deps[WEB_AWESOME_FREE_PACKAGE]) {
209
+ return "free";
210
+ }
211
+ } catch (_error) {
212
+ }
213
+ }
214
+ const token = detectProTokenSync(cwd);
215
+ return token ? "pro" : "free";
216
+ }
217
+ async function getProToken(cwd) {
218
+ return detectProToken(cwd);
219
+ }
220
+ function getWebAwesomePackage(tier) {
221
+ return tier === "pro" ? WEB_AWESOME_PRO_PACKAGE : WEB_AWESOME_FREE_PACKAGE;
222
+ }
223
+
224
+ export {
225
+ WEB_AWESOME_FREE_PACKAGE,
226
+ WEB_AWESOME_PRO_PACKAGE,
227
+ WEB_AWESOME_SCOPE,
228
+ ENV_TOKEN_KEY,
229
+ MIN_TOKEN_LENGTH,
230
+ CONFIG_FILE_NAME,
231
+ ENV_FILE_NAME,
232
+ NPM_PUBLIC_REGISTRY,
233
+ NPM_PRO_REGISTRY,
234
+ FREE_PACKAGE_REGEX,
235
+ PRO_PACKAGE_REGEX,
236
+ FREE_PACKAGE_PATTERN,
237
+ PRO_PACKAGE_PATTERN,
238
+ ENV_TOKEN_REGEX,
239
+ DEFAULT_WEBAWESOME_VERSION,
240
+ GITHUB_RAW_BASE_URL,
241
+ KIGUMI_CACHE_DIR,
242
+ REGISTRY_CACHE_TTL_MS,
243
+ REGISTRY_FILE_NAME,
244
+ NPM_REGISTRY_URL,
245
+ UPDATE_CHECK_CACHE_TTL_MS,
246
+ UPDATE_CHECK_TIMEOUT_MS,
247
+ UPDATE_CHECK_CACHE_FILE,
248
+ GITHUB_REPO_URL,
249
+ GITHUB_ISSUES_URL,
250
+ CLI_VERSION,
251
+ detectProTokenSync,
252
+ getTokenSourceSync,
253
+ describeTokenSource,
254
+ tierSchema,
255
+ detectTier,
256
+ detectTierSync,
257
+ getProToken,
258
+ getWebAwesomePackage
259
+ };
260
+ //# sourceMappingURL=chunk-F52T5BFP.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/utils/tier.ts","../src/constants.ts","../src/utils/token.ts"],"sourcesContent":["/**\n * Tier Detection Utility\n *\n * PURPOSE: Determines Free vs Pro tier based on token availability.\n *\n * Token detection uses fallback chain (see src/utils/token.ts):\n * 1. $WEBAWESOME_NPM_TOKEN environment variable (CI/CD)\n * 2. Global ~/.npmrc (local development)\n * 3. Project .env file (backwards compatible)\n *\n * EXPORTS:\n * - detectTier() - Async tier detection (PREFERRED)\n * - detectTierSync() - Sync version (use only when absolutely necessary)\n * - getProToken() - Get token from any source\n * - getWebAwesomePackage() - Get npm package name for tier\n *\n * @see AGENTS.md Rule #8 for tier system architecture\n */\n\nimport fs from 'fs-extra';\nimport path from 'path';\nimport { z } from 'zod';\nimport {\n WEB_AWESOME_FREE_PACKAGE,\n WEB_AWESOME_PRO_PACKAGE,\n} from '../constants.js';\nimport { detectProToken, detectProTokenSync } from './token.js';\n\nexport const tierSchema = z.enum(['free', 'pro'], {\n error: () => 'Must be either \"free\" or \"pro\"',\n});\n\nexport type Tier = z.infer<typeof tierSchema>;\n\n/**\n * Detect tier based on installed package\n *\n * Checks package.json to see if @awesome.me/webawesome-pro is installed.\n * Falls back to token detection if package.json doesn't exist.\n *\n * @param cwd - Current working directory\n * @returns 'pro' if webawesome-pro is installed, 'free' otherwise\n */\nexport async function detectTier(cwd: string): Promise<Tier> {\n // First check package.json for installed package\n const packageJsonPath = path.join(cwd, 'package.json');\n if (await fs.pathExists(packageJsonPath)) {\n try {\n const packageJson = await fs.readJson(packageJsonPath);\n const deps = {\n ...packageJson.dependencies,\n ...packageJson.devDependencies,\n };\n\n // If webawesome-pro is installed, it's Pro tier\n if (deps[WEB_AWESOME_PRO_PACKAGE]) {\n return 'pro';\n }\n\n // If webawesome (free) is installed, it's Free tier\n if (deps[WEB_AWESOME_FREE_PACKAGE]) {\n return 'free';\n }\n } catch (_error) {\n // Ignore JSON parse errors, fall through to token detection\n }\n }\n\n // Fallback to token detection (for init command or if no package installed yet)\n const token = await detectProToken(cwd);\n return token ? 'pro' : 'free';\n}\n\n/**\n * Synchronous version of detectTier\n *\n * WHY: Some code paths (e.g., validators) need synchronous tier detection.\n * Prefer detectTier() when possible.\n */\nexport function detectTierSync(cwd: string): Tier {\n // First check package.json for installed package\n const packageJsonPath = path.join(cwd, 'package.json');\n if (fs.pathExistsSync(packageJsonPath)) {\n try {\n const packageJson = fs.readJsonSync(packageJsonPath);\n const deps = {\n ...packageJson.dependencies,\n ...packageJson.devDependencies,\n };\n\n // If webawesome-pro is installed, it's Pro tier\n if (deps[WEB_AWESOME_PRO_PACKAGE]) {\n return 'pro';\n }\n\n // If webawesome (free) is installed, it's Free tier\n if (deps[WEB_AWESOME_FREE_PACKAGE]) {\n return 'free';\n }\n } catch (_error) {\n // Ignore JSON parse errors, fall through to token detection\n }\n }\n\n // Fallback to token detection (for init command or if no package installed yet)\n const token = detectProTokenSync(cwd);\n return token ? 'pro' : 'free';\n}\n\n/**\n * Get Pro token from fallback chain\n *\n * @param cwd - Current working directory\n * @returns Token string if found, null otherwise\n */\nexport async function getProToken(cwd: string): Promise<string | null> {\n return detectProToken(cwd);\n}\n\n/**\n * Get package name based on tier\n *\n * @param tier - 'free' or 'pro'\n * @returns Full npm package name\n */\nexport function getWebAwesomePackage(tier: Tier): string {\n return tier === 'pro' ? WEB_AWESOME_PRO_PACKAGE : WEB_AWESOME_FREE_PACKAGE;\n}\n","/**\n * Central Constants for Kigumi CLI\n *\n * PURPOSE: Single source of truth for magic strings and configuration values.\n * Changes here propagate to the entire codebase.\n *\n * @see AGENTS.md for usage context\n */\n\n// =============================================================================\n// Package Names\n// =============================================================================\n\n/** Free tier npm package name */\nexport const WEB_AWESOME_FREE_PACKAGE = '@awesome.me/webawesome';\n\n/** Pro tier npm package name */\nexport const WEB_AWESOME_PRO_PACKAGE = '@awesome.me/webawesome-pro';\n\n/** Scope for Web Awesome packages */\nexport const WEB_AWESOME_SCOPE = '@awesome.me';\n\n// =============================================================================\n// Web Component Configuration\n// =============================================================================\n\n/** Prefix for all Web Awesome custom elements (e.g., wa-button, wa-card) */\nexport const WEB_COMPONENT_PREFIX = 'wa-';\n\n// =============================================================================\n// Environment Variables\n// =============================================================================\n\n/** Environment variable key for Pro tier authentication token */\nexport const ENV_TOKEN_KEY = 'WEBAWESOME_NPM_TOKEN';\n\n/**\n * Minimum valid token length for Pro tier\n *\n * WHY: Cloudsmith tokens are typically 40+ chars. 10 is a safety threshold\n * to avoid accepting malformed/empty values like \"=\" or \"token\".\n */\nexport const MIN_TOKEN_LENGTH = 10;\n\n// =============================================================================\n// File Names\n// =============================================================================\n\n/** Kigumi configuration file name */\nexport const CONFIG_FILE_NAME = 'kigumi.config.json';\n\n/** Environment variables file name */\nexport const ENV_FILE_NAME = '.env';\n\n/** NPM registry configuration file name */\nexport const NPMRC_FILE_NAME = '.npmrc';\n\n/** Kigumi setup file (generated) */\nexport const KIGUMI_SETUP_FILE = 'kigumi.ts';\n\n/** Theme CSS file (generated) */\nexport const THEME_CSS_FILE = 'theme.css';\n\n/** Vite environment types file */\nexport const VITE_ENV_DTS_FILE = 'vite-env.d.ts';\n\n// =============================================================================\n// NPM Registry URLs\n// =============================================================================\n\n/** Public npm registry for Free tier */\nexport const NPM_PUBLIC_REGISTRY = 'https://registry.npmjs.org/';\n\n/** Cloudsmith registry for Pro tier */\nexport const NPM_PRO_REGISTRY =\n 'https://npm.cloudsmith.io/fortawesome/webawesome-pro';\n\n// =============================================================================\n// Regex Patterns\n// =============================================================================\n\n/**\n * Regex to match Free package imports\n * WHY: Matches @awesome.me/webawesome but NOT @awesome.me/webawesome-pro\n */\nexport const FREE_PACKAGE_REGEX = /@awesome\\.me\\/webawesome(?!-pro)/g;\n\n/**\n * Regex to match Pro package imports\n */\nexport const PRO_PACKAGE_REGEX = /@awesome\\.me\\/webawesome-pro/g;\n\n/**\n * Non-global patterns for .test() usage in loops.\n * WHY: The /g flag on module-level singletons causes lastIndex state to\n * persist between calls, making every other file in a loop silently skip.\n * Use these for .test(); use FREE_PACKAGE_REGEX / PRO_PACKAGE_REGEX for .replace().\n */\nexport const FREE_PACKAGE_PATTERN = /@awesome\\.me\\/webawesome(?!-pro)/;\nexport const PRO_PACKAGE_PATTERN = /@awesome\\.me\\/webawesome-pro/;\n\n/**\n * Regex to extract token from .env file\n * WHY: Matches WEBAWESOME_NPM_TOKEN with optional whitespace around =\n */\nexport const ENV_TOKEN_REGEX = /^\\s*WEBAWESOME_NPM_TOKEN\\s*=\\s*(.+?)\\s*$/m;\n\n// =============================================================================\n// Default Paths\n// =============================================================================\n\n/** Default components directory */\nexport const DEFAULT_COMPONENTS_DIR = 'src/components/ui';\n\n/** Default utils/lib directory */\nexport const DEFAULT_UTILS_DIR = 'src/lib';\n\n/** Default styles directory */\nexport const DEFAULT_STYLES_DIR = 'src/styles';\n\n// =============================================================================\n// Exit Codes\n// =============================================================================\n\n/** Successful exit */\nexport const EXIT_SUCCESS = 0;\n\n/** Error exit */\nexport const EXIT_ERROR = 1;\n\n// =============================================================================\n// Timeouts\n// =============================================================================\n\n/** Install command timeout in milliseconds (5 minutes) */\nexport const INSTALL_TIMEOUT_MS = 300_000;\n\n// =============================================================================\n// Web Awesome Version\n// =============================================================================\n\n/** Default Web Awesome package version */\nexport const DEFAULT_WEBAWESOME_VERSION = '^3.5.0';\n\n// =============================================================================\n// Community Registry\n// =============================================================================\n\n/** GitHub raw content base URL */\nexport const GITHUB_RAW_BASE_URL = 'https://raw.githubusercontent.com';\n\n/** Kigumi cache directory (relative to home dir) */\nexport const KIGUMI_CACHE_DIR = '.kigumi/cache';\n\n/** Registry cache TTL in milliseconds (1 hour) */\nexport const REGISTRY_CACHE_TTL_MS = 3_600_000;\n\n/** Community registry file name */\nexport const REGISTRY_FILE_NAME = 'registry.json';\n\n// =============================================================================\n// Update Check\n// =============================================================================\n\n/** NPM registry URL for checking latest CLI version */\nexport const NPM_REGISTRY_URL = 'https://registry.npmjs.org/kigumi/latest';\n\n/** Update check cache TTL in milliseconds (24 hours) */\nexport const UPDATE_CHECK_CACHE_TTL_MS = 86_400_000;\n\n/** Update check fetch timeout in milliseconds (3 seconds) */\nexport const UPDATE_CHECK_TIMEOUT_MS = 3_000;\n\n/** Update check cache file name (within KIGUMI_CACHE_DIR) */\nexport const UPDATE_CHECK_CACHE_FILE = 'update-check.json';\n\n// =============================================================================\n// GitHub Repository\n// =============================================================================\n\n/** GitHub repository URL */\nexport const GITHUB_REPO_URL = 'https://github.com/Siregar/kigumi-cli';\n\n/** GitHub issues URL for bug reports */\nexport const GITHUB_ISSUES_URL = `${GITHUB_REPO_URL}/issues`;\n\n// =============================================================================\n// CLI Version\n// =============================================================================\n\nimport { readFileSync } from 'fs';\nimport { dirname, join } from 'path';\nimport { fileURLToPath } from 'url';\n\nconst __constants_filename = fileURLToPath(import.meta.url);\nconst __constants_dirname = dirname(__constants_filename);\nconst __cliPackageJson = JSON.parse(\n readFileSync(join(__constants_dirname, '..', 'package.json'), 'utf-8')\n);\n\n/** Current Kigumi CLI version (read from package.json) */\nexport const CLI_VERSION: string = __cliPackageJson.version;\n","/**\n * Token Detection Utility\n *\n * PURPOSE: Detects Web Awesome Pro token from multiple sources with fallback chain.\n *\n * FALLBACK CHAIN (in priority order):\n * 1. Environment Variable: $WEBAWESOME_NPM_TOKEN (for CI/CD)\n * 2. Global ~/.npmrc (recommended for local development)\n * 3. Project .env file (backwards compatible)\n *\n * EXPORTS:\n * - detectProToken() - Get token from any source\n * - detectProTokenSync() - Sync version\n * - getTokenSource() - Identify where token was found\n *\n * @see AGENTS.md for token handling architecture\n */\n\nimport fs from 'fs-extra';\nimport os from 'os';\nimport path from 'path';\nimport {\n ENV_FILE_NAME,\n ENV_TOKEN_KEY,\n ENV_TOKEN_REGEX,\n MIN_TOKEN_LENGTH,\n NPM_PRO_REGISTRY,\n} from '../constants.js';\n\nexport type TokenSource = 'env' | 'npmrc' | 'dotenv' | null;\n\ninterface TokenResult {\n token: string | null;\n source: TokenSource;\n}\n\n/**\n * Detect Pro token from fallback chain\n *\n * Priority:\n * 1. $WEBAWESOME_NPM_TOKEN environment variable\n * 2. Global ~/.npmrc (//npm.cloudsmith.io/.../webawesome-pro/:_authToken)\n * 3. Project .env file\n *\n * @param cwd - Current working directory (for .env lookup)\n * @returns Token string if found, null otherwise\n */\nexport async function detectProToken(cwd: string): Promise<string | null> {\n const result = await detectProTokenWithSource(cwd);\n return result.token;\n}\n\n/**\n * Synchronous version of detectProToken\n */\nexport function detectProTokenSync(cwd: string): string | null {\n const result = detectProTokenWithSourceSync(cwd);\n return result.token;\n}\n\n/**\n * Get token source without returning the actual token\n *\n * Useful for displaying where the token was found without exposing it.\n *\n * @param cwd - Current working directory\n * @returns Source identifier or null\n */\nexport async function getTokenSource(cwd: string): Promise<TokenSource> {\n const result = await detectProTokenWithSource(cwd);\n return result.source;\n}\n\n/**\n * Synchronous version of getTokenSource\n */\nexport function getTokenSourceSync(cwd: string): TokenSource {\n const result = detectProTokenWithSourceSync(cwd);\n return result.source;\n}\n\n/**\n * Internal: Detect token with source information (async)\n */\nasync function detectProTokenWithSource(cwd: string): Promise<TokenResult> {\n // 1. Check environment variable first (CI/CD priority)\n const envToken = getTokenFromEnvVar();\n if (envToken) {\n return { token: envToken, source: 'env' };\n }\n\n // 2. Check global ~/.npmrc (skip in tests if env var set)\n if (!process.env.KIGUMI_SKIP_GLOBAL_NPMRC) {\n const npmrcToken = await getTokenFromGlobalNpmrc();\n if (npmrcToken) {\n return { token: npmrcToken, source: 'npmrc' };\n }\n }\n\n // 3. Check project .env file (backwards compatible)\n const dotenvToken = await getTokenFromDotenv(cwd);\n if (dotenvToken) {\n return { token: dotenvToken, source: 'dotenv' };\n }\n\n return { token: null, source: null };\n}\n\n/**\n * Internal: Detect token with source information (sync)\n */\nfunction detectProTokenWithSourceSync(cwd: string): TokenResult {\n // 1. Check environment variable first\n const envToken = getTokenFromEnvVar();\n if (envToken) {\n return { token: envToken, source: 'env' };\n }\n\n // 2. Check global ~/.npmrc (skip in tests if env var set)\n if (!process.env.KIGUMI_SKIP_GLOBAL_NPMRC) {\n const npmrcToken = getTokenFromGlobalNpmrcSync();\n if (npmrcToken) {\n return { token: npmrcToken, source: 'npmrc' };\n }\n }\n\n // 3. Check project .env file\n const dotenvToken = getTokenFromDotenvSync(cwd);\n if (dotenvToken) {\n return { token: dotenvToken, source: 'dotenv' };\n }\n\n return { token: null, source: null };\n}\n\n/**\n * Get token from environment variable\n */\nfunction getTokenFromEnvVar(): string | null {\n const token = process.env[ENV_TOKEN_KEY];\n if (token && token.length >= MIN_TOKEN_LENGTH) {\n return token.trim();\n }\n return null;\n}\n\n/**\n * Get token from global ~/.npmrc (async)\n *\n * Looks for: //npm.cloudsmith.io/fortawesome/webawesome-pro/:_authToken=TOKEN\n */\nasync function getTokenFromGlobalNpmrc(): Promise<string | null> {\n const npmrcPath = path.join(os.homedir(), '.npmrc');\n\n if (!(await fs.pathExists(npmrcPath))) {\n return null;\n }\n\n const content = await fs.readFile(npmrcPath, 'utf-8');\n return extractTokenFromNpmrc(content);\n}\n\n/**\n * Get token from global ~/.npmrc (sync)\n */\nfunction getTokenFromGlobalNpmrcSync(): string | null {\n const npmrcPath = path.join(os.homedir(), '.npmrc');\n\n if (!fs.existsSync(npmrcPath)) {\n return null;\n }\n\n const content = fs.readFileSync(npmrcPath, 'utf-8');\n return extractTokenFromNpmrc(content);\n}\n\n/**\n * Extract auth token from npmrc content\n *\n * Matches patterns like:\n * - //npm.cloudsmith.io/fortawesome/webawesome-pro/:_authToken=TOKEN\n * - //npm.cloudsmith.io/fortawesome/webawesome-pro:_authToken=TOKEN\n */\nfunction extractTokenFromNpmrc(content: string): string | null {\n // Extract registry host from NPM_PRO_REGISTRY (remove https://)\n const registryHost = NPM_PRO_REGISTRY.replace('https://', '');\n\n // Match auth token for the Pro registry\n // Supports both //:_authToken and :_authToken patterns\n const patterns = [\n new RegExp(`//${registryHost}/?:_authToken=(.+)`, 'm'),\n new RegExp(`${registryHost}/?:_authToken=(.+)`, 'm'),\n ];\n\n for (const pattern of patterns) {\n const match = content.match(pattern);\n if (match && match[1]) {\n const token = match[1].trim();\n if (token.length >= MIN_TOKEN_LENGTH) {\n return token;\n }\n }\n }\n\n return null;\n}\n\n/**\n * Get token from project .env file (async)\n */\nasync function getTokenFromDotenv(cwd: string): Promise<string | null> {\n const envPath = path.join(cwd, ENV_FILE_NAME);\n\n if (!(await fs.pathExists(envPath))) {\n return null;\n }\n\n const content = await fs.readFile(envPath, 'utf-8');\n return extractTokenFromDotenv(content);\n}\n\n/**\n * Get token from project .env file (sync)\n */\nfunction getTokenFromDotenvSync(cwd: string): string | null {\n const envPath = path.join(cwd, ENV_FILE_NAME);\n\n if (!fs.existsSync(envPath)) {\n return null;\n }\n\n const content = fs.readFileSync(envPath, 'utf-8');\n return extractTokenFromDotenv(content);\n}\n\n/**\n * Extract token from .env content\n */\nfunction extractTokenFromDotenv(content: string): string | null {\n const match = content.match(ENV_TOKEN_REGEX);\n if (match && match[1]) {\n const token = match[1].trim();\n if (token.length >= MIN_TOKEN_LENGTH) {\n return token;\n }\n }\n return null;\n}\n\n/**\n * Get human-readable description of token source\n *\n * Useful for user-facing messages.\n */\nexport function describeTokenSource(source: TokenSource): string {\n switch (source) {\n case 'env':\n return `environment variable ($${ENV_TOKEN_KEY})`;\n case 'npmrc':\n return 'global ~/.npmrc';\n case 'dotenv':\n return 'project .env file';\n default:\n return 'unknown';\n }\n}\n"],"mappings":";AAmBA,OAAOA,SAAQ;AACf,OAAOC,WAAU;AACjB,SAAS,SAAS;;;ACyKlB,SAAS,oBAAoB;AAC7B,SAAS,SAAS,YAAY;AAC9B,SAAS,qBAAqB;AAlLvB,IAAM,2BAA2B;AAGjC,IAAM,0BAA0B;AAGhC,IAAM,oBAAoB;AAc1B,IAAM,gBAAgB;AAQtB,IAAM,mBAAmB;AAOzB,IAAM,mBAAmB;AAGzB,IAAM,gBAAgB;AAmBtB,IAAM,sBAAsB;AAG5B,IAAM,mBACX;AAUK,IAAM,qBAAqB;AAK3B,IAAM,oBAAoB;AAQ1B,IAAM,uBAAuB;AAC7B,IAAM,sBAAsB;AAM5B,IAAM,kBAAkB;AAqCxB,IAAM,6BAA6B;AAOnC,IAAM,sBAAsB;AAG5B,IAAM,mBAAmB;AAGzB,IAAM,wBAAwB;AAG9B,IAAM,qBAAqB;AAO3B,IAAM,mBAAmB;AAGzB,IAAM,4BAA4B;AAGlC,IAAM,0BAA0B;AAGhC,IAAM,0BAA0B;AAOhC,IAAM,kBAAkB;AAGxB,IAAM,oBAAoB,GAAG,eAAe;AAUnD,IAAM,uBAAuB,cAAc,YAAY,GAAG;AAC1D,IAAM,sBAAsB,QAAQ,oBAAoB;AACxD,IAAM,mBAAmB,KAAK;AAAA,EAC5B,aAAa,KAAK,qBAAqB,MAAM,cAAc,GAAG,OAAO;AACvE;AAGO,IAAM,cAAsB,iBAAiB;;;ACvLpD,OAAO,QAAQ;AACf,OAAO,QAAQ;AACf,OAAO,UAAU;AA2BjB,eAAsB,eAAe,KAAqC;AACxE,QAAM,SAAS,MAAM,yBAAyB,GAAG;AACjD,SAAO,OAAO;AAChB;AAKO,SAAS,mBAAmB,KAA4B;AAC7D,QAAM,SAAS,6BAA6B,GAAG;AAC/C,SAAO,OAAO;AAChB;AAkBO,SAAS,mBAAmB,KAA0B;AAC3D,QAAM,SAAS,6BAA6B,GAAG;AAC/C,SAAO,OAAO;AAChB;AAKA,eAAe,yBAAyB,KAAmC;AAEzE,QAAM,WAAW,mBAAmB;AACpC,MAAI,UAAU;AACZ,WAAO,EAAE,OAAO,UAAU,QAAQ,MAAM;AAAA,EAC1C;AAGA,MAAI,CAAC,QAAQ,IAAI,0BAA0B;AACzC,UAAM,aAAa,MAAM,wBAAwB;AACjD,QAAI,YAAY;AACd,aAAO,EAAE,OAAO,YAAY,QAAQ,QAAQ;AAAA,IAC9C;AAAA,EACF;AAGA,QAAM,cAAc,MAAM,mBAAmB,GAAG;AAChD,MAAI,aAAa;AACf,WAAO,EAAE,OAAO,aAAa,QAAQ,SAAS;AAAA,EAChD;AAEA,SAAO,EAAE,OAAO,MAAM,QAAQ,KAAK;AACrC;AAKA,SAAS,6BAA6B,KAA0B;AAE9D,QAAM,WAAW,mBAAmB;AACpC,MAAI,UAAU;AACZ,WAAO,EAAE,OAAO,UAAU,QAAQ,MAAM;AAAA,EAC1C;AAGA,MAAI,CAAC,QAAQ,IAAI,0BAA0B;AACzC,UAAM,aAAa,4BAA4B;AAC/C,QAAI,YAAY;AACd,aAAO,EAAE,OAAO,YAAY,QAAQ,QAAQ;AAAA,IAC9C;AAAA,EACF;AAGA,QAAM,cAAc,uBAAuB,GAAG;AAC9C,MAAI,aAAa;AACf,WAAO,EAAE,OAAO,aAAa,QAAQ,SAAS;AAAA,EAChD;AAEA,SAAO,EAAE,OAAO,MAAM,QAAQ,KAAK;AACrC;AAKA,SAAS,qBAAoC;AAC3C,QAAM,QAAQ,QAAQ,IAAI,aAAa;AACvC,MAAI,SAAS,MAAM,UAAU,kBAAkB;AAC7C,WAAO,MAAM,KAAK;AAAA,EACpB;AACA,SAAO;AACT;AAOA,eAAe,0BAAkD;AAC/D,QAAM,YAAY,KAAK,KAAK,GAAG,QAAQ,GAAG,QAAQ;AAElD,MAAI,CAAE,MAAM,GAAG,WAAW,SAAS,GAAI;AACrC,WAAO;AAAA,EACT;AAEA,QAAM,UAAU,MAAM,GAAG,SAAS,WAAW,OAAO;AACpD,SAAO,sBAAsB,OAAO;AACtC;AAKA,SAAS,8BAA6C;AACpD,QAAM,YAAY,KAAK,KAAK,GAAG,QAAQ,GAAG,QAAQ;AAElD,MAAI,CAAC,GAAG,WAAW,SAAS,GAAG;AAC7B,WAAO;AAAA,EACT;AAEA,QAAM,UAAU,GAAG,aAAa,WAAW,OAAO;AAClD,SAAO,sBAAsB,OAAO;AACtC;AASA,SAAS,sBAAsB,SAAgC;AAE7D,QAAM,eAAe,iBAAiB,QAAQ,YAAY,EAAE;AAI5D,QAAM,WAAW;AAAA,IACf,IAAI,OAAO,KAAK,YAAY,sBAAsB,GAAG;AAAA,IACrD,IAAI,OAAO,GAAG,YAAY,sBAAsB,GAAG;AAAA,EACrD;AAEA,aAAW,WAAW,UAAU;AAC9B,UAAM,QAAQ,QAAQ,MAAM,OAAO;AACnC,QAAI,SAAS,MAAM,CAAC,GAAG;AACrB,YAAM,QAAQ,MAAM,CAAC,EAAE,KAAK;AAC5B,UAAI,MAAM,UAAU,kBAAkB;AACpC,eAAO;AAAA,MACT;AAAA,IACF;AAAA,EACF;AAEA,SAAO;AACT;AAKA,eAAe,mBAAmB,KAAqC;AACrE,QAAM,UAAU,KAAK,KAAK,KAAK,aAAa;AAE5C,MAAI,CAAE,MAAM,GAAG,WAAW,OAAO,GAAI;AACnC,WAAO;AAAA,EACT;AAEA,QAAM,UAAU,MAAM,GAAG,SAAS,SAAS,OAAO;AAClD,SAAO,uBAAuB,OAAO;AACvC;AAKA,SAAS,uBAAuB,KAA4B;AAC1D,QAAM,UAAU,KAAK,KAAK,KAAK,aAAa;AAE5C,MAAI,CAAC,GAAG,WAAW,OAAO,GAAG;AAC3B,WAAO;AAAA,EACT;AAEA,QAAM,UAAU,GAAG,aAAa,SAAS,OAAO;AAChD,SAAO,uBAAuB,OAAO;AACvC;AAKA,SAAS,uBAAuB,SAAgC;AAC9D,QAAM,QAAQ,QAAQ,MAAM,eAAe;AAC3C,MAAI,SAAS,MAAM,CAAC,GAAG;AACrB,UAAM,QAAQ,MAAM,CAAC,EAAE,KAAK;AAC5B,QAAI,MAAM,UAAU,kBAAkB;AACpC,aAAO;AAAA,IACT;AAAA,EACF;AACA,SAAO;AACT;AAOO,SAAS,oBAAoB,QAA6B;AAC/D,UAAQ,QAAQ;AAAA,IACd,KAAK;AACH,aAAO,0BAA0B,aAAa;AAAA,IAChD,KAAK;AACH,aAAO;AAAA,IACT,KAAK;AACH,aAAO;AAAA,IACT;AACE,aAAO;AAAA,EACX;AACF;;;AF7OO,IAAM,aAAa,EAAE,KAAK,CAAC,QAAQ,KAAK,GAAG;AAAA,EAChD,OAAO,MAAM;AACf,CAAC;AAaD,eAAsB,WAAW,KAA4B;AAE3D,QAAM,kBAAkBC,MAAK,KAAK,KAAK,cAAc;AACrD,MAAI,MAAMC,IAAG,WAAW,eAAe,GAAG;AACxC,QAAI;AACF,YAAM,cAAc,MAAMA,IAAG,SAAS,eAAe;AACrD,YAAM,OAAO;AAAA,QACX,GAAG,YAAY;AAAA,QACf,GAAG,YAAY;AAAA,MACjB;AAGA,UAAI,KAAK,uBAAuB,GAAG;AACjC,eAAO;AAAA,MACT;AAGA,UAAI,KAAK,wBAAwB,GAAG;AAClC,eAAO;AAAA,MACT;AAAA,IACF,SAAS,QAAQ;AAAA,IAEjB;AAAA,EACF;AAGA,QAAM,QAAQ,MAAM,eAAe,GAAG;AACtC,SAAO,QAAQ,QAAQ;AACzB;AAQO,SAAS,eAAe,KAAmB;AAEhD,QAAM,kBAAkBD,MAAK,KAAK,KAAK,cAAc;AACrD,MAAIC,IAAG,eAAe,eAAe,GAAG;AACtC,QAAI;AACF,YAAM,cAAcA,IAAG,aAAa,eAAe;AACnD,YAAM,OAAO;AAAA,QACX,GAAG,YAAY;AAAA,QACf,GAAG,YAAY;AAAA,MACjB;AAGA,UAAI,KAAK,uBAAuB,GAAG;AACjC,eAAO;AAAA,MACT;AAGA,UAAI,KAAK,wBAAwB,GAAG;AAClC,eAAO;AAAA,MACT;AAAA,IACF,SAAS,QAAQ;AAAA,IAEjB;AAAA,EACF;AAGA,QAAM,QAAQ,mBAAmB,GAAG;AACpC,SAAO,QAAQ,QAAQ;AACzB;AAQA,eAAsB,YAAY,KAAqC;AACrE,SAAO,eAAe,GAAG;AAC3B;AAQO,SAAS,qBAAqB,MAAoB;AACvD,SAAO,SAAS,QAAQ,0BAA0B;AACpD;","names":["fs","path","path","fs"]}