kigumi 0.19.2 → 0.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2836) hide show
  1. package/README.md +13 -13
  2. package/dist/bin.js +1 -1
  3. package/dist/bin.js.map +1 -1
  4. package/dist/chunk-F52T5BFP.js +260 -0
  5. package/dist/chunk-F52T5BFP.js.map +1 -0
  6. package/dist/chunk-L52LAS37.js +1978 -0
  7. package/dist/chunk-L52LAS37.js.map +1 -0
  8. package/dist/chunk-MIPVTLNR.js +260 -0
  9. package/dist/chunk-MIPVTLNR.js.map +1 -0
  10. package/dist/index.js +1190 -1176
  11. package/dist/index.js.map +1 -1
  12. package/dist/install-ATX2D4AO.js +114 -0
  13. package/dist/install-ATX2D4AO.js.map +1 -0
  14. package/dist/project-config-D3FYPYTX.js +16 -0
  15. package/dist/tier-W7HBBSNP.js +15 -0
  16. package/dist/tier-W7HBBSNP.js.map +1 -0
  17. package/package.json +54 -14
  18. package/templates/AGENTS.md +223 -89
  19. package/templates/angular/AnimatedImage/animated-image.component.css +14 -0
  20. package/templates/angular/AnimatedImage/animated-image.component.spec.ts +26 -0
  21. package/templates/angular/AnimatedImage/animated-image.component.ts +85 -0
  22. package/templates/angular/Animation/animation.component.spec.ts +26 -0
  23. package/templates/angular/Animation/animation.component.ts +130 -0
  24. package/templates/angular/Avatar/avatar.component.css +15 -0
  25. package/templates/angular/Avatar/avatar.component.spec.ts +26 -0
  26. package/templates/angular/Avatar/avatar.component.ts +87 -0
  27. package/templates/angular/Badge/badge.component.css +15 -0
  28. package/templates/angular/Badge/badge.component.spec.ts +26 -0
  29. package/templates/angular/Badge/badge.component.ts +69 -0
  30. package/templates/angular/BarChart/bar-chart.component.css +27 -0
  31. package/templates/angular/BarChart/bar-chart.component.spec.ts +26 -0
  32. package/templates/angular/BarChart/bar-chart.component.ts +105 -0
  33. package/templates/angular/Breadcrumb/breadcrumb.component.css +10 -0
  34. package/templates/angular/Breadcrumb/breadcrumb.component.spec.ts +26 -0
  35. package/templates/angular/Breadcrumb/breadcrumb.component.ts +57 -0
  36. package/templates/angular/BreadcrumbItem/breadcrumb-item.component.css +13 -0
  37. package/templates/angular/BreadcrumbItem/breadcrumb-item.component.spec.ts +26 -0
  38. package/templates/angular/BreadcrumbItem/breadcrumb-item.component.ts +66 -0
  39. package/templates/angular/BubbleChart/bubble-chart.component.css +27 -0
  40. package/templates/angular/BubbleChart/bubble-chart.component.spec.ts +26 -0
  41. package/templates/angular/BubbleChart/bubble-chart.component.ts +102 -0
  42. package/templates/angular/Button/button.component.css +15 -0
  43. package/templates/angular/Button/button.component.spec.ts +26 -0
  44. package/templates/angular/Button/button.component.ts +184 -0
  45. package/templates/angular/ButtonGroup/button-group.component.css +10 -0
  46. package/templates/angular/ButtonGroup/button-group.component.spec.ts +26 -0
  47. package/templates/angular/ButtonGroup/button-group.component.ts +63 -0
  48. package/templates/angular/Callout/callout.component.css +11 -0
  49. package/templates/angular/Callout/callout.component.spec.ts +26 -0
  50. package/templates/angular/Callout/callout.component.ts +71 -0
  51. package/templates/angular/Card/card.component.css +16 -0
  52. package/templates/angular/Card/card.component.spec.ts +26 -0
  53. package/templates/angular/Card/card.component.ts +77 -0
  54. package/templates/angular/Carousel/carousel.component.css +23 -0
  55. package/templates/angular/Carousel/carousel.component.spec.ts +26 -0
  56. package/templates/angular/Carousel/carousel.component.ts +124 -0
  57. package/templates/angular/CarouselItem/carousel-item.component.css +10 -0
  58. package/templates/angular/CarouselItem/carousel-item.component.spec.ts +26 -0
  59. package/templates/angular/CarouselItem/carousel-item.component.ts +53 -0
  60. package/templates/angular/Chart/chart.component.css +27 -0
  61. package/templates/angular/Chart/chart.component.spec.ts +26 -0
  62. package/templates/angular/Chart/chart.component.ts +113 -0
  63. package/templates/angular/Checkbox/checkbox.component.css +19 -0
  64. package/templates/angular/Checkbox/checkbox.component.spec.ts +26 -0
  65. package/templates/angular/Checkbox/checkbox.component.ts +203 -0
  66. package/templates/angular/ColorPicker/color-picker.component.css +42 -0
  67. package/templates/angular/ColorPicker/color-picker.component.spec.ts +26 -0
  68. package/templates/angular/ColorPicker/color-picker.component.ts +303 -0
  69. package/templates/angular/Combobox/combobox.component.css +30 -0
  70. package/templates/angular/Combobox/combobox.component.spec.ts +26 -0
  71. package/templates/angular/Combobox/combobox.component.ts +300 -0
  72. package/templates/angular/Comparison/comparison.component.css +18 -0
  73. package/templates/angular/Comparison/comparison.component.spec.ts +26 -0
  74. package/templates/angular/Comparison/comparison.component.ts +72 -0
  75. package/templates/angular/CopyButton/copy-button.component.css +17 -0
  76. package/templates/angular/CopyButton/copy-button.component.spec.ts +26 -0
  77. package/templates/angular/CopyButton/copy-button.component.ts +100 -0
  78. package/templates/angular/Details/details.component.css +19 -0
  79. package/templates/angular/Details/details.component.spec.ts +26 -0
  80. package/templates/angular/Details/details.component.ts +117 -0
  81. package/templates/angular/Dialog/dialog.component.css +23 -0
  82. package/templates/angular/Dialog/dialog.component.spec.ts +26 -0
  83. package/templates/angular/Dialog/dialog.component.ts +102 -0
  84. package/templates/angular/Divider/divider.component.css +12 -0
  85. package/templates/angular/Divider/divider.component.spec.ts +26 -0
  86. package/templates/angular/Divider/divider.component.ts +57 -0
  87. package/templates/angular/DoughnutChart/doughnut-chart.component.css +27 -0
  88. package/templates/angular/DoughnutChart/doughnut-chart.component.spec.ts +26 -0
  89. package/templates/angular/DoughnutChart/doughnut-chart.component.ts +81 -0
  90. package/templates/angular/Drawer/drawer.component.css +23 -0
  91. package/templates/angular/Drawer/drawer.component.spec.ts +26 -0
  92. package/templates/angular/Drawer/drawer.component.ts +105 -0
  93. package/templates/angular/Dropdown/dropdown.component.css +15 -0
  94. package/templates/angular/Dropdown/dropdown.component.spec.ts +26 -0
  95. package/templates/angular/Dropdown/dropdown.component.ts +128 -0
  96. package/templates/angular/DropdownItem/dropdown-item.component.css +15 -0
  97. package/templates/angular/DropdownItem/dropdown-item.component.spec.ts +26 -0
  98. package/templates/angular/DropdownItem/dropdown-item.component.ts +105 -0
  99. package/templates/angular/FileInput/file-input.component.css +24 -0
  100. package/templates/angular/FileInput/file-input.component.spec.ts +26 -0
  101. package/templates/angular/FileInput/file-input.component.ts +196 -0
  102. package/templates/angular/FormatBytes/format-bytes.component.spec.ts +26 -0
  103. package/templates/angular/FormatBytes/format-bytes.component.ts +69 -0
  104. package/templates/angular/FormatDate/format-date.component.spec.ts +26 -0
  105. package/templates/angular/FormatDate/format-date.component.ts +96 -0
  106. package/templates/angular/FormatNumber/format-number.component.spec.ts +26 -0
  107. package/templates/angular/FormatNumber/format-number.component.ts +90 -0
  108. package/templates/angular/Icon/icon.component.css +38 -0
  109. package/templates/angular/Icon/icon.component.spec.ts +26 -0
  110. package/templates/angular/Icon/icon.component.ts +109 -0
  111. package/templates/angular/Include/include.component.spec.ts +26 -0
  112. package/templates/angular/Include/include.component.ts +88 -0
  113. package/templates/angular/Input/input.component.css +17 -0
  114. package/templates/angular/Input/input.component.spec.ts +26 -0
  115. package/templates/angular/Input/input.component.ts +344 -0
  116. package/templates/angular/IntersectionObserver/intersection-observer.component.spec.ts +26 -0
  117. package/templates/angular/IntersectionObserver/intersection-observer.component.ts +89 -0
  118. package/templates/angular/LineChart/line-chart.component.css +27 -0
  119. package/templates/angular/LineChart/line-chart.component.spec.ts +26 -0
  120. package/templates/angular/LineChart/line-chart.component.ts +102 -0
  121. package/templates/angular/Markdown/markdown.component.spec.ts +26 -0
  122. package/templates/angular/Markdown/markdown.component.ts +65 -0
  123. package/templates/angular/MutationObserver/mutation-observer.component.spec.ts +26 -0
  124. package/templates/angular/MutationObserver/mutation-observer.component.ts +95 -0
  125. package/templates/angular/NumberInput/number-input.component.css +19 -0
  126. package/templates/angular/NumberInput/number-input.component.spec.ts +26 -0
  127. package/templates/angular/NumberInput/number-input.component.ts +226 -0
  128. package/templates/angular/Option/option.component.css +13 -0
  129. package/templates/angular/Option/option.component.spec.ts +26 -0
  130. package/templates/angular/Option/option.component.ts +69 -0
  131. package/templates/angular/Page/page.component.css +36 -0
  132. package/templates/angular/Page/page.component.spec.ts +26 -0
  133. package/templates/angular/Page/page.component.ts +97 -0
  134. package/templates/angular/PieChart/pie-chart.component.css +27 -0
  135. package/templates/angular/PieChart/pie-chart.component.spec.ts +26 -0
  136. package/templates/angular/PieChart/pie-chart.component.ts +81 -0
  137. package/templates/angular/PolarAreaChart/polar-area-chart.component.css +27 -0
  138. package/templates/angular/PolarAreaChart/polar-area-chart.component.spec.ts +26 -0
  139. package/templates/angular/PolarAreaChart/polar-area-chart.component.ts +81 -0
  140. package/templates/angular/Popover/popover.component.css +20 -0
  141. package/templates/angular/Popover/popover.component.spec.ts +26 -0
  142. package/templates/angular/Popover/popover.component.ts +138 -0
  143. package/templates/angular/Popup/popup.component.css +21 -0
  144. package/templates/angular/Popup/popup.component.spec.ts +26 -0
  145. package/templates/angular/Popup/popup.component.ts +147 -0
  146. package/templates/angular/ProgressBar/progress-bar.component.css +17 -0
  147. package/templates/angular/ProgressBar/progress-bar.component.spec.ts +26 -0
  148. package/templates/angular/ProgressBar/progress-bar.component.ts +66 -0
  149. package/templates/angular/ProgressRing/progress-ring.component.css +21 -0
  150. package/templates/angular/ProgressRing/progress-ring.component.spec.ts +26 -0
  151. package/templates/angular/ProgressRing/progress-ring.component.ts +59 -0
  152. package/templates/angular/QrCode/qr-code.component.css +10 -0
  153. package/templates/angular/QrCode/qr-code.component.spec.ts +26 -0
  154. package/templates/angular/QrCode/qr-code.component.ts +78 -0
  155. package/templates/angular/RadarChart/radar-chart.component.css +27 -0
  156. package/templates/angular/RadarChart/radar-chart.component.spec.ts +26 -0
  157. package/templates/angular/RadarChart/radar-chart.component.ts +93 -0
  158. package/templates/angular/Radio/radio.component.css +16 -0
  159. package/templates/angular/Radio/radio.component.spec.ts +26 -0
  160. package/templates/angular/Radio/radio.component.ts +114 -0
  161. package/templates/angular/RadioGroup/radio-group.component.css +14 -0
  162. package/templates/angular/RadioGroup/radio-group.component.spec.ts +26 -0
  163. package/templates/angular/RadioGroup/radio-group.component.ts +194 -0
  164. package/templates/angular/Rating/rating.component.css +15 -0
  165. package/templates/angular/Rating/rating.component.spec.ts +26 -0
  166. package/templates/angular/Rating/rating.component.ts +182 -0
  167. package/templates/angular/RelativeTime/relative-time.component.spec.ts +26 -0
  168. package/templates/angular/RelativeTime/relative-time.component.ts +72 -0
  169. package/templates/angular/ResizeObserver/resize-observer.component.spec.ts +26 -0
  170. package/templates/angular/ResizeObserver/resize-observer.component.ts +72 -0
  171. package/templates/angular/ScatterChart/scatter-chart.component.css +27 -0
  172. package/templates/angular/ScatterChart/scatter-chart.component.spec.ts +26 -0
  173. package/templates/angular/ScatterChart/scatter-chart.component.ts +96 -0
  174. package/templates/angular/Scroller/scroller.component.css +14 -0
  175. package/templates/angular/Scroller/scroller.component.spec.ts +26 -0
  176. package/templates/angular/Scroller/scroller.component.ts +69 -0
  177. package/templates/angular/Select/select.component.css +30 -0
  178. package/templates/angular/Select/select.component.spec.ts +26 -0
  179. package/templates/angular/Select/select.component.ts +264 -0
  180. package/templates/angular/Skeleton/skeleton.component.css +14 -0
  181. package/templates/angular/Skeleton/skeleton.component.spec.ts +26 -0
  182. package/templates/angular/Skeleton/skeleton.component.ts +57 -0
  183. package/templates/angular/Slider/slider.component.css +31 -0
  184. package/templates/angular/Slider/slider.component.spec.ts +26 -0
  185. package/templates/angular/Slider/slider.component.ts +226 -0
  186. package/templates/angular/Sparkline/sparkline.component.css +17 -0
  187. package/templates/angular/Sparkline/sparkline.component.spec.ts +26 -0
  188. package/templates/angular/Sparkline/sparkline.component.ts +72 -0
  189. package/templates/angular/Spinner/spinner.component.css +16 -0
  190. package/templates/angular/Spinner/spinner.component.spec.ts +26 -0
  191. package/templates/angular/Spinner/spinner.component.ts +53 -0
  192. package/templates/angular/SplitPanel/split-panel.component.css +19 -0
  193. package/templates/angular/SplitPanel/split-panel.component.spec.ts +26 -0
  194. package/templates/angular/SplitPanel/split-panel.component.ts +96 -0
  195. package/templates/angular/Switch/switch.component.css +19 -0
  196. package/templates/angular/Switch/switch.component.spec.ts +26 -0
  197. package/templates/angular/Switch/switch.component.ts +200 -0
  198. package/templates/angular/Tab/tab.component.css +10 -0
  199. package/templates/angular/Tab/tab.component.spec.ts +26 -0
  200. package/templates/angular/Tab/tab.component.ts +59 -0
  201. package/templates/angular/TabGroup/tab-group.component.css +22 -0
  202. package/templates/angular/TabGroup/tab-group.component.spec.ts +26 -0
  203. package/templates/angular/TabGroup/tab-group.component.ts +92 -0
  204. package/templates/angular/TabPanel/tab-panel.component.css +13 -0
  205. package/templates/angular/TabPanel/tab-panel.component.spec.ts +26 -0
  206. package/templates/angular/TabPanel/tab-panel.component.ts +59 -0
  207. package/templates/angular/Tag/tag.component.css +13 -0
  208. package/templates/angular/Tag/tag.component.spec.ts +26 -0
  209. package/templates/angular/Tag/tag.component.ts +87 -0
  210. package/templates/angular/Textarea/textarea.component.css +15 -0
  211. package/templates/angular/Textarea/textarea.component.spec.ts +26 -0
  212. package/templates/angular/Textarea/textarea.component.ts +267 -0
  213. package/templates/angular/Toast/toast.component.css +14 -0
  214. package/templates/angular/Toast/toast.component.spec.ts +26 -0
  215. package/templates/angular/Toast/toast.component.ts +72 -0
  216. package/templates/angular/ToastItem/toast-item.component.css +26 -0
  217. package/templates/angular/ToastItem/toast-item.component.spec.ts +26 -0
  218. package/templates/angular/ToastItem/toast-item.component.ts +103 -0
  219. package/templates/angular/Tooltip/tooltip.component.css +16 -0
  220. package/templates/angular/Tooltip/tooltip.component.spec.ts +26 -0
  221. package/templates/angular/Tooltip/tooltip.component.ts +141 -0
  222. package/templates/angular/Tree/tree.component.css +17 -0
  223. package/templates/angular/Tree/tree.component.spec.ts +26 -0
  224. package/templates/angular/Tree/tree.component.ts +75 -0
  225. package/templates/angular/TreeItem/tree-item.component.css +27 -0
  226. package/templates/angular/TreeItem/tree-item.component.spec.ts +26 -0
  227. package/templates/angular/TreeItem/tree-item.component.ts +125 -0
  228. package/templates/angular/ZoomableFrame/zoomable-frame.component.css +13 -0
  229. package/templates/angular/ZoomableFrame/zoomable-frame.component.spec.ts +26 -0
  230. package/templates/angular/ZoomableFrame/zoomable-frame.component.ts +117 -0
  231. package/templates/angular/tsconfig.json +23 -0
  232. package/templates/react/AnimatedImage/AnimatedImage.css +14 -0
  233. package/templates/react/AnimatedImage/AnimatedImage.jsx +70 -0
  234. package/templates/react/AnimatedImage/AnimatedImage.test.tsx +29 -0
  235. package/templates/react/AnimatedImage/AnimatedImage.tsx +112 -0
  236. package/templates/react/Animation/Animation.jsx +112 -0
  237. package/templates/react/Animation/Animation.test.tsx +16 -0
  238. package/templates/react/Animation/Animation.tsx +170 -0
  239. package/templates/react/Avatar/Avatar.css +15 -0
  240. package/templates/react/Avatar/Avatar.jsx +67 -0
  241. package/templates/react/Avatar/Avatar.test.tsx +24 -0
  242. package/templates/react/Avatar/Avatar.tsx +109 -0
  243. package/templates/react/Badge/Badge.css +15 -0
  244. package/templates/react/Badge/Badge.jsx +61 -0
  245. package/templates/react/Badge/Badge.test.tsx +16 -0
  246. package/templates/react/Badge/Badge.tsx +87 -0
  247. package/templates/react/BarChart/BarChart.css +28 -0
  248. package/templates/react/BarChart/BarChart.jsx +76 -0
  249. package/templates/react/BarChart/BarChart.test.tsx +16 -0
  250. package/templates/react/BarChart/BarChart.tsx +120 -0
  251. package/templates/react/Breadcrumb/Breadcrumb.css +13 -0
  252. package/templates/react/Breadcrumb/Breadcrumb.jsx +57 -0
  253. package/templates/react/Breadcrumb/Breadcrumb.test.tsx +16 -0
  254. package/templates/react/Breadcrumb/Breadcrumb.tsx +81 -0
  255. package/templates/react/BreadcrumbItem/BreadcrumbItem.css +16 -0
  256. package/templates/react/BreadcrumbItem/BreadcrumbItem.jsx +68 -0
  257. package/templates/react/BreadcrumbItem/BreadcrumbItem.test.tsx +16 -0
  258. package/templates/react/BreadcrumbItem/BreadcrumbItem.tsx +88 -0
  259. package/templates/react/BubbleChart/BubbleChart.css +28 -0
  260. package/templates/react/BubbleChart/BubbleChart.jsx +71 -0
  261. package/templates/react/BubbleChart/BubbleChart.test.tsx +16 -0
  262. package/templates/react/BubbleChart/BubbleChart.tsx +117 -0
  263. package/templates/react/Button/Button.css +18 -0
  264. package/templates/react/Button/Button.jsx +124 -0
  265. package/templates/react/Button/Button.test.tsx +16 -0
  266. package/templates/react/Button/Button.tsx +247 -0
  267. package/templates/react/ButtonGroup/ButtonGroup.css +13 -0
  268. package/templates/react/ButtonGroup/ButtonGroup.jsx +61 -0
  269. package/templates/react/ButtonGroup/ButtonGroup.test.tsx +16 -0
  270. package/templates/react/ButtonGroup/ButtonGroup.tsx +84 -0
  271. package/templates/react/Callout/Callout.css +14 -0
  272. package/templates/react/Callout/Callout.jsx +34 -0
  273. package/templates/react/Callout/Callout.test.jsx +27 -0
  274. package/templates/react/Callout/Callout.test.tsx +16 -0
  275. package/templates/react/Callout/Callout.tsx +84 -0
  276. package/templates/react/Card/Card.css +16 -0
  277. package/templates/react/Card/Card.jsx +44 -0
  278. package/templates/react/Card/Card.test.tsx +16 -0
  279. package/templates/react/Card/Card.tsx +90 -0
  280. package/templates/react/Carousel/Carousel.css +23 -0
  281. package/templates/react/Carousel/Carousel.jsx +87 -0
  282. package/templates/react/Carousel/Carousel.test.tsx +16 -0
  283. package/templates/react/Carousel/Carousel.tsx +157 -0
  284. package/templates/react/CarouselItem/CarouselItem.css +11 -0
  285. package/templates/react/CarouselItem/CarouselItem.jsx +41 -0
  286. package/templates/react/CarouselItem/CarouselItem.test.tsx +16 -0
  287. package/templates/react/CarouselItem/CarouselItem.tsx +78 -0
  288. package/templates/react/Chart/Chart.css +28 -0
  289. package/templates/react/Chart/Chart.jsx +73 -0
  290. package/templates/react/Chart/Chart.test.tsx +16 -0
  291. package/templates/react/Chart/Chart.tsx +125 -0
  292. package/templates/react/Checkbox/Checkbox.css +19 -0
  293. package/templates/react/Checkbox/Checkbox.jsx +86 -0
  294. package/templates/react/Checkbox/Checkbox.test.tsx +16 -0
  295. package/templates/react/Checkbox/Checkbox.tsx +244 -0
  296. package/templates/react/ColorPicker/ColorPicker.css +42 -0
  297. package/templates/react/ColorPicker/ColorPicker.jsx +91 -0
  298. package/templates/react/ColorPicker/ColorPicker.test.tsx +16 -0
  299. package/templates/react/ColorPicker/ColorPicker.tsx +404 -0
  300. package/templates/react/Combobox/Combobox.css +30 -0
  301. package/templates/react/Combobox/Combobox.jsx +118 -0
  302. package/templates/react/Combobox/Combobox.test.tsx +16 -0
  303. package/templates/react/Combobox/Combobox.tsx +395 -0
  304. package/templates/react/Comparison/Comparison.css +18 -0
  305. package/templates/react/Comparison/Comparison.jsx +36 -0
  306. package/templates/react/Comparison/Comparison.test.tsx +16 -0
  307. package/templates/react/Comparison/Comparison.tsx +97 -0
  308. package/templates/react/CopyButton/CopyButton.css +20 -0
  309. package/templates/react/CopyButton/CopyButton.jsx +59 -0
  310. package/templates/react/CopyButton/CopyButton.test.jsx +18 -0
  311. package/templates/react/CopyButton/CopyButton.test.tsx +16 -0
  312. package/templates/react/CopyButton/CopyButton.tsx +127 -0
  313. package/templates/react/Details/Details.css +19 -0
  314. package/templates/react/Details/Details.jsx +75 -0
  315. package/templates/react/Details/Details.test.jsx +25 -0
  316. package/templates/react/Details/Details.test.tsx +16 -0
  317. package/templates/react/Details/Details.tsx +167 -0
  318. package/templates/react/Dialog/Dialog.css +23 -0
  319. package/templates/react/Dialog/Dialog.jsx +120 -0
  320. package/templates/react/Dialog/Dialog.test.jsx +33 -0
  321. package/templates/react/Dialog/Dialog.test.tsx +24 -0
  322. package/templates/react/Dialog/Dialog.tsx +136 -0
  323. package/templates/react/Divider/Divider.css +13 -0
  324. package/templates/react/Divider/Divider.jsx +33 -0
  325. package/templates/react/Divider/Divider.test.jsx +19 -0
  326. package/templates/react/Divider/Divider.test.tsx +16 -0
  327. package/templates/react/Divider/Divider.tsx +78 -0
  328. package/templates/react/DoughnutChart/DoughnutChart.css +28 -0
  329. package/templates/react/DoughnutChart/DoughnutChart.jsx +65 -0
  330. package/templates/react/DoughnutChart/DoughnutChart.test.tsx +16 -0
  331. package/templates/react/DoughnutChart/DoughnutChart.tsx +96 -0
  332. package/templates/react/Drawer/Drawer.css +23 -0
  333. package/templates/react/Drawer/Drawer.jsx +124 -0
  334. package/templates/react/Drawer/Drawer.test.jsx +23 -0
  335. package/templates/react/Drawer/Drawer.test.tsx +16 -0
  336. package/templates/react/Drawer/Drawer.tsx +139 -0
  337. package/templates/react/Dropdown/Dropdown.css +15 -0
  338. package/templates/react/Dropdown/Dropdown.jsx +97 -0
  339. package/templates/react/Dropdown/Dropdown.test.tsx +16 -0
  340. package/templates/react/Dropdown/Dropdown.tsx +178 -0
  341. package/templates/react/DropdownItem/DropdownItem.css +18 -0
  342. package/templates/react/DropdownItem/DropdownItem.jsx +50 -0
  343. package/templates/react/DropdownItem/DropdownItem.test.tsx +16 -0
  344. package/templates/react/DropdownItem/DropdownItem.tsx +146 -0
  345. package/templates/react/FileInput/FileInput.css +27 -0
  346. package/templates/react/FileInput/FileInput.jsx +126 -0
  347. package/templates/react/FileInput/FileInput.test.tsx +16 -0
  348. package/templates/react/FileInput/FileInput.tsx +230 -0
  349. package/templates/react/FormatBytes/FormatBytes.jsx +32 -0
  350. package/templates/react/FormatBytes/FormatBytes.test.jsx +19 -0
  351. package/templates/react/FormatBytes/FormatBytes.test.tsx +16 -0
  352. package/templates/react/FormatBytes/FormatBytes.tsx +90 -0
  353. package/templates/react/FormatDate/FormatDate.jsx +25 -0
  354. package/templates/react/FormatDate/FormatDate.test.tsx +16 -0
  355. package/templates/react/FormatDate/FormatDate.tsx +117 -0
  356. package/templates/react/FormatNumber/FormatNumber.jsx +25 -0
  357. package/templates/react/FormatNumber/FormatNumber.test.jsx +19 -0
  358. package/templates/react/FormatNumber/FormatNumber.test.tsx +16 -0
  359. package/templates/react/FormatNumber/FormatNumber.tsx +111 -0
  360. package/templates/react/Icon/Icon.css +38 -0
  361. package/templates/react/Icon/Icon.jsx +88 -0
  362. package/templates/react/Icon/Icon.test.jsx +37 -0
  363. package/templates/react/Icon/Icon.test.tsx +16 -0
  364. package/templates/react/Icon/Icon.tsx +136 -0
  365. package/templates/react/Include/Include.jsx +46 -0
  366. package/templates/react/Include/Include.test.jsx +19 -0
  367. package/templates/react/Include/Include.test.tsx +16 -0
  368. package/templates/react/Include/Include.tsx +112 -0
  369. package/templates/react/Input/Input.css +20 -0
  370. package/templates/react/Input/Input.jsx +158 -0
  371. package/templates/react/Input/Input.test.tsx +16 -0
  372. package/templates/react/Input/Input.tsx +417 -0
  373. package/templates/react/IntersectionObserver/IntersectionObserver.jsx +44 -0
  374. package/templates/react/IntersectionObserver/IntersectionObserver.test.jsx +17 -0
  375. package/templates/react/IntersectionObserver/IntersectionObserver.test.tsx +18 -0
  376. package/templates/react/IntersectionObserver/IntersectionObserver.tsx +113 -0
  377. package/templates/react/LineChart/LineChart.css +28 -0
  378. package/templates/react/LineChart/LineChart.jsx +75 -0
  379. package/templates/react/LineChart/LineChart.test.tsx +16 -0
  380. package/templates/react/LineChart/LineChart.tsx +117 -0
  381. package/templates/react/Markdown/Markdown.css +11 -0
  382. package/templates/react/Markdown/Markdown.jsx +25 -0
  383. package/templates/react/Markdown/Markdown.test.tsx +16 -0
  384. package/templates/react/Markdown/Markdown.tsx +95 -0
  385. package/templates/react/MutationObserver/MutationObserver.jsx +44 -0
  386. package/templates/react/MutationObserver/MutationObserver.test.tsx +16 -0
  387. package/templates/react/MutationObserver/MutationObserver.tsx +119 -0
  388. package/templates/react/NumberInput/NumberInput.css +22 -0
  389. package/templates/react/NumberInput/NumberInput.jsx +148 -0
  390. package/templates/react/NumberInput/NumberInput.test.tsx +16 -0
  391. package/templates/react/NumberInput/NumberInput.tsx +279 -0
  392. package/templates/react/Option/Option.css +16 -0
  393. package/templates/react/Option/Option.jsx +25 -0
  394. package/templates/react/Option/Option.test.tsx +16 -0
  395. package/templates/react/Option/Option.tsx +87 -0
  396. package/templates/react/Page/Page.css +36 -0
  397. package/templates/react/Page/Page.jsx +133 -0
  398. package/templates/react/Page/Page.test.tsx +16 -0
  399. package/templates/react/Page/Page.tsx +138 -0
  400. package/templates/react/PieChart/PieChart.css +28 -0
  401. package/templates/react/PieChart/PieChart.jsx +65 -0
  402. package/templates/react/PieChart/PieChart.test.tsx +16 -0
  403. package/templates/react/PieChart/PieChart.tsx +96 -0
  404. package/templates/react/PolarAreaChart/PolarAreaChart.css +28 -0
  405. package/templates/react/PolarAreaChart/PolarAreaChart.jsx +65 -0
  406. package/templates/react/PolarAreaChart/PolarAreaChart.test.tsx +16 -0
  407. package/templates/react/PolarAreaChart/PolarAreaChart.tsx +97 -0
  408. package/templates/react/Popover/Popover.css +20 -0
  409. package/templates/react/Popover/Popover.jsx +86 -0
  410. package/templates/react/Popover/Popover.test.tsx +16 -0
  411. package/templates/react/Popover/Popover.tsx +188 -0
  412. package/templates/react/Popup/Popup.css +21 -0
  413. package/templates/react/Popup/Popup.jsx +47 -0
  414. package/templates/react/Popup/Popup.test.tsx +16 -0
  415. package/templates/react/Popup/Popup.tsx +174 -0
  416. package/templates/react/ProgressBar/ProgressBar.css +17 -0
  417. package/templates/react/ProgressBar/ProgressBar.jsx +29 -0
  418. package/templates/react/ProgressBar/ProgressBar.test.jsx +19 -0
  419. package/templates/react/ProgressBar/ProgressBar.test.tsx +16 -0
  420. package/templates/react/ProgressBar/ProgressBar.tsx +87 -0
  421. package/templates/react/ProgressRing/ProgressRing.css +21 -0
  422. package/templates/react/ProgressRing/ProgressRing.jsx +29 -0
  423. package/templates/react/ProgressRing/ProgressRing.test.jsx +19 -0
  424. package/templates/react/ProgressRing/ProgressRing.test.tsx +16 -0
  425. package/templates/react/ProgressRing/ProgressRing.tsx +84 -0
  426. package/templates/react/QrCode/QrCode.css +13 -0
  427. package/templates/react/QrCode/QrCode.jsx +19 -0
  428. package/templates/react/QrCode/QrCode.test.tsx +16 -0
  429. package/templates/react/QrCode/QrCode.tsx +96 -0
  430. package/templates/react/RadarChart/RadarChart.css +28 -0
  431. package/templates/react/RadarChart/RadarChart.jsx +72 -0
  432. package/templates/react/RadarChart/RadarChart.test.tsx +16 -0
  433. package/templates/react/RadarChart/RadarChart.tsx +108 -0
  434. package/templates/react/Radio/Radio.css +16 -0
  435. package/templates/react/Radio/Radio.jsx +25 -0
  436. package/templates/react/Radio/Radio.test.tsx +16 -0
  437. package/templates/react/Radio/Radio.tsx +160 -0
  438. package/templates/react/RadioGroup/RadioGroup.css +17 -0
  439. package/templates/react/RadioGroup/RadioGroup.jsx +55 -0
  440. package/templates/react/RadioGroup/RadioGroup.test.tsx +16 -0
  441. package/templates/react/RadioGroup/RadioGroup.tsx +198 -0
  442. package/templates/react/Rating/Rating.css +15 -0
  443. package/templates/react/Rating/Rating.jsx +50 -0
  444. package/templates/react/Rating/Rating.test.tsx +16 -0
  445. package/templates/react/Rating/Rating.tsx +184 -0
  446. package/templates/react/RelativeTime/RelativeTime.jsx +25 -0
  447. package/templates/react/RelativeTime/RelativeTime.test.tsx +16 -0
  448. package/templates/react/RelativeTime/RelativeTime.tsx +93 -0
  449. package/templates/react/ResizeObserver/ResizeObserver.jsx +44 -0
  450. package/templates/react/ResizeObserver/ResizeObserver.test.tsx +16 -0
  451. package/templates/react/ResizeObserver/ResizeObserver.tsx +98 -0
  452. package/templates/react/ScatterChart/ScatterChart.css +28 -0
  453. package/templates/react/ScatterChart/ScatterChart.jsx +69 -0
  454. package/templates/react/ScatterChart/ScatterChart.test.tsx +16 -0
  455. package/templates/react/ScatterChart/ScatterChart.tsx +111 -0
  456. package/templates/react/Scroller/Scroller.css +14 -0
  457. package/templates/react/Scroller/Scroller.jsx +25 -0
  458. package/templates/react/Scroller/Scroller.test.tsx +16 -0
  459. package/templates/react/Scroller/Scroller.tsx +90 -0
  460. package/templates/react/Select/Select.css +30 -0
  461. package/templates/react/Select/Select.jsx +104 -0
  462. package/templates/react/Select/Select.test.tsx +16 -0
  463. package/templates/react/Select/Select.tsx +356 -0
  464. package/templates/react/Skeleton/Skeleton.css +14 -0
  465. package/templates/react/Skeleton/Skeleton.jsx +21 -0
  466. package/templates/react/Skeleton/Skeleton.test.tsx +16 -0
  467. package/templates/react/Skeleton/Skeleton.tsx +81 -0
  468. package/templates/react/Slider/Slider.css +31 -0
  469. package/templates/react/Slider/Slider.jsx +52 -0
  470. package/templates/react/Slider/Slider.test.tsx +16 -0
  471. package/templates/react/Slider/Slider.tsx +278 -0
  472. package/templates/react/Sparkline/Sparkline.css +17 -0
  473. package/templates/react/Sparkline/Sparkline.jsx +70 -0
  474. package/templates/react/Sparkline/Sparkline.test.jsx +17 -0
  475. package/templates/react/Sparkline/Sparkline.test.tsx +16 -0
  476. package/templates/react/Sparkline/Sparkline.tsx +93 -0
  477. package/templates/react/Spinner/Spinner.css +16 -0
  478. package/templates/react/Spinner/Spinner.jsx +19 -0
  479. package/templates/react/Spinner/Spinner.test.tsx +16 -0
  480. package/templates/react/Spinner/Spinner.tsx +78 -0
  481. package/templates/react/SplitPanel/SplitPanel.css +19 -0
  482. package/templates/react/SplitPanel/SplitPanel.jsx +44 -0
  483. package/templates/react/SplitPanel/SplitPanel.test.tsx +16 -0
  484. package/templates/react/SplitPanel/SplitPanel.tsx +115 -0
  485. package/templates/react/Switch/Switch.css +19 -0
  486. package/templates/react/Switch/Switch.jsx +53 -0
  487. package/templates/react/Switch/Switch.test.tsx +16 -0
  488. package/templates/react/Switch/Switch.tsx +241 -0
  489. package/templates/react/Tab/Tab.css +13 -0
  490. package/templates/react/Tab/Tab.jsx +25 -0
  491. package/templates/react/Tab/Tab.test.tsx +16 -0
  492. package/templates/react/Tab/Tab.tsx +81 -0
  493. package/templates/react/TabGroup/TabGroup.css +22 -0
  494. package/templates/react/TabGroup/TabGroup.jsx +48 -0
  495. package/templates/react/TabGroup/TabGroup.test.tsx +16 -0
  496. package/templates/react/TabGroup/TabGroup.tsx +115 -0
  497. package/templates/react/TabPanel/TabPanel.css +13 -0
  498. package/templates/react/TabPanel/TabPanel.jsx +25 -0
  499. package/templates/react/TabPanel/TabPanel.test.tsx +16 -0
  500. package/templates/react/TabPanel/TabPanel.tsx +84 -0
  501. package/templates/react/Tag/Tag.css +16 -0
  502. package/templates/react/Tag/Tag.jsx +47 -0
  503. package/templates/react/Tag/Tag.test.tsx +16 -0
  504. package/templates/react/Tag/Tag.tsx +109 -0
  505. package/templates/react/Textarea/Textarea.css +18 -0
  506. package/templates/react/Textarea/Textarea.jsx +76 -0
  507. package/templates/react/Textarea/Textarea.test.tsx +16 -0
  508. package/templates/react/Textarea/Textarea.tsx +328 -0
  509. package/templates/react/Toast/Toast.css +14 -0
  510. package/templates/react/Toast/Toast.jsx +62 -0
  511. package/templates/react/Toast/Toast.test.tsx +16 -0
  512. package/templates/react/Toast/Toast.tsx +100 -0
  513. package/templates/react/ToastItem/ToastItem.css +26 -0
  514. package/templates/react/ToastItem/ToastItem.jsx +91 -0
  515. package/templates/react/ToastItem/ToastItem.test.jsx +17 -0
  516. package/templates/react/ToastItem/ToastItem.test.tsx +16 -0
  517. package/templates/react/ToastItem/ToastItem.tsx +147 -0
  518. package/templates/react/Tooltip/Tooltip.css +16 -0
  519. package/templates/react/Tooltip/Tooltip.jsx +85 -0
  520. package/templates/react/Tooltip/Tooltip.test.tsx +16 -0
  521. package/templates/react/Tooltip/Tooltip.tsx +191 -0
  522. package/templates/react/Tree/Tree.css +17 -0
  523. package/templates/react/Tree/Tree.jsx +47 -0
  524. package/templates/react/Tree/Tree.test.tsx +16 -0
  525. package/templates/react/Tree/Tree.tsx +97 -0
  526. package/templates/react/TreeItem/TreeItem.css +27 -0
  527. package/templates/react/TreeItem/TreeItem.jsx +88 -0
  528. package/templates/react/TreeItem/TreeItem.test.tsx +16 -0
  529. package/templates/react/TreeItem/TreeItem.tsx +191 -0
  530. package/templates/react/ZoomableFrame/ZoomableFrame.css +16 -0
  531. package/templates/react/ZoomableFrame/ZoomableFrame.jsx +62 -0
  532. package/templates/react/ZoomableFrame/ZoomableFrame.test.tsx +16 -0
  533. package/templates/react/ZoomableFrame/ZoomableFrame.tsx +158 -0
  534. package/templates/react/tsconfig.json +32 -0
  535. package/templates/vue/AnimatedImage/AnimatedImage.css +14 -0
  536. package/templates/vue/AnimatedImage/AnimatedImage.js.vue +72 -0
  537. package/templates/vue/AnimatedImage/AnimatedImage.test.js +10 -0
  538. package/templates/vue/AnimatedImage/AnimatedImage.test.ts +10 -0
  539. package/templates/vue/AnimatedImage/AnimatedImage.vue +77 -0
  540. package/templates/vue/Animation/Animation.js.vue +81 -0
  541. package/templates/vue/Animation/Animation.test.js +10 -0
  542. package/templates/vue/Animation/Animation.test.ts +10 -0
  543. package/templates/vue/Animation/Animation.vue +87 -0
  544. package/templates/vue/Avatar/Avatar.css +15 -0
  545. package/templates/vue/Avatar/Avatar.js.vue +67 -0
  546. package/templates/vue/Avatar/Avatar.test.js +10 -0
  547. package/templates/vue/Avatar/Avatar.test.ts +10 -0
  548. package/templates/vue/Avatar/Avatar.vue +71 -0
  549. package/templates/vue/Badge/Badge.css +15 -0
  550. package/templates/vue/Badge/Badge.js.vue +50 -0
  551. package/templates/vue/Badge/Badge.test.js +10 -0
  552. package/templates/vue/Badge/Badge.test.ts +10 -0
  553. package/templates/vue/Badge/Badge.vue +54 -0
  554. package/templates/vue/BarChart/BarChart.css +28 -0
  555. package/templates/vue/BarChart/BarChart.js.vue +60 -0
  556. package/templates/vue/BarChart/BarChart.test.js +10 -0
  557. package/templates/vue/BarChart/BarChart.test.ts +10 -0
  558. package/templates/vue/BarChart/BarChart.vue +64 -0
  559. package/templates/vue/Breadcrumb/Breadcrumb.css +13 -0
  560. package/templates/vue/Breadcrumb/Breadcrumb.js.vue +47 -0
  561. package/templates/vue/Breadcrumb/Breadcrumb.test.js +10 -0
  562. package/templates/vue/Breadcrumb/Breadcrumb.test.ts +10 -0
  563. package/templates/vue/Breadcrumb/Breadcrumb.vue +51 -0
  564. package/templates/vue/BreadcrumbItem/BreadcrumbItem.css +16 -0
  565. package/templates/vue/BreadcrumbItem/BreadcrumbItem.js.vue +53 -0
  566. package/templates/vue/BreadcrumbItem/BreadcrumbItem.test.js +10 -0
  567. package/templates/vue/BreadcrumbItem/BreadcrumbItem.test.ts +10 -0
  568. package/templates/vue/BreadcrumbItem/BreadcrumbItem.vue +57 -0
  569. package/templates/vue/BubbleChart/BubbleChart.css +28 -0
  570. package/templates/vue/BubbleChart/BubbleChart.js.vue +59 -0
  571. package/templates/vue/BubbleChart/BubbleChart.test.js +10 -0
  572. package/templates/vue/BubbleChart/BubbleChart.test.ts +10 -0
  573. package/templates/vue/BubbleChart/BubbleChart.vue +63 -0
  574. package/templates/vue/Button/Button.css +18 -0
  575. package/templates/vue/Button/Button.js.vue +95 -0
  576. package/templates/vue/Button/Button.test.js +10 -0
  577. package/templates/vue/Button/Button.test.ts +10 -0
  578. package/templates/vue/Button/Button.vue +103 -0
  579. package/templates/vue/ButtonGroup/ButtonGroup.css +13 -0
  580. package/templates/vue/ButtonGroup/ButtonGroup.js.vue +48 -0
  581. package/templates/vue/ButtonGroup/ButtonGroup.test.js +10 -0
  582. package/templates/vue/ButtonGroup/ButtonGroup.test.ts +10 -0
  583. package/templates/vue/ButtonGroup/ButtonGroup.vue +52 -0
  584. package/templates/vue/Callout/Callout.css +14 -0
  585. package/templates/vue/Callout/Callout.js.vue +49 -0
  586. package/templates/vue/Callout/Callout.test.js +10 -0
  587. package/templates/vue/Callout/Callout.test.ts +10 -0
  588. package/templates/vue/Callout/Callout.vue +53 -0
  589. package/templates/vue/Card/Card.css +16 -0
  590. package/templates/vue/Card/Card.js.vue +51 -0
  591. package/templates/vue/Card/Card.test.js +10 -0
  592. package/templates/vue/Card/Card.test.ts +10 -0
  593. package/templates/vue/Card/Card.vue +55 -0
  594. package/templates/vue/Carousel/Carousel.css +23 -0
  595. package/templates/vue/Carousel/Carousel.js.vue +75 -0
  596. package/templates/vue/Carousel/Carousel.test.js +10 -0
  597. package/templates/vue/Carousel/Carousel.test.ts +10 -0
  598. package/templates/vue/Carousel/Carousel.vue +82 -0
  599. package/templates/vue/CarouselItem/CarouselItem.css +11 -0
  600. package/templates/vue/CarouselItem/CarouselItem.js.vue +49 -0
  601. package/templates/vue/CarouselItem/CarouselItem.test.js +10 -0
  602. package/templates/vue/CarouselItem/CarouselItem.test.ts +10 -0
  603. package/templates/vue/CarouselItem/CarouselItem.vue +53 -0
  604. package/templates/vue/Chart/Chart.css +28 -0
  605. package/templates/vue/Chart/Chart.js.vue +60 -0
  606. package/templates/vue/Chart/Chart.test.js +10 -0
  607. package/templates/vue/Chart/Chart.test.ts +10 -0
  608. package/templates/vue/Chart/Chart.vue +72 -0
  609. package/templates/vue/Checkbox/Checkbox.css +19 -0
  610. package/templates/vue/Checkbox/Checkbox.js.vue +104 -0
  611. package/templates/vue/Checkbox/Checkbox.test.js +10 -0
  612. package/templates/vue/Checkbox/Checkbox.test.ts +10 -0
  613. package/templates/vue/Checkbox/Checkbox.vue +114 -0
  614. package/templates/vue/ColorPicker/ColorPicker.css +42 -0
  615. package/templates/vue/ColorPicker/ColorPicker.js.vue +138 -0
  616. package/templates/vue/ColorPicker/ColorPicker.test.js +10 -0
  617. package/templates/vue/ColorPicker/ColorPicker.test.ts +10 -0
  618. package/templates/vue/ColorPicker/ColorPicker.vue +166 -0
  619. package/templates/vue/Combobox/Combobox.css +30 -0
  620. package/templates/vue/Combobox/Combobox.js.vue +149 -0
  621. package/templates/vue/Combobox/Combobox.test.js +10 -0
  622. package/templates/vue/Combobox/Combobox.test.ts +10 -0
  623. package/templates/vue/Combobox/Combobox.vue +168 -0
  624. package/templates/vue/Comparison/Comparison.css +18 -0
  625. package/templates/vue/Comparison/Comparison.js.vue +63 -0
  626. package/templates/vue/Comparison/Comparison.test.js +10 -0
  627. package/templates/vue/Comparison/Comparison.test.ts +10 -0
  628. package/templates/vue/Comparison/Comparison.vue +67 -0
  629. package/templates/vue/CopyButton/CopyButton.css +20 -0
  630. package/templates/vue/CopyButton/CopyButton.js.vue +73 -0
  631. package/templates/vue/CopyButton/CopyButton.test.js +10 -0
  632. package/templates/vue/CopyButton/CopyButton.test.ts +10 -0
  633. package/templates/vue/CopyButton/CopyButton.vue +78 -0
  634. package/templates/vue/Details/Details.css +19 -0
  635. package/templates/vue/Details/Details.js.vue +101 -0
  636. package/templates/vue/Details/Details.test.js +10 -0
  637. package/templates/vue/Details/Details.test.ts +10 -0
  638. package/templates/vue/Details/Details.vue +103 -0
  639. package/templates/vue/Dialog/Dialog.css +23 -0
  640. package/templates/vue/Dialog/Dialog.js.vue +99 -0
  641. package/templates/vue/Dialog/Dialog.test.js +10 -0
  642. package/templates/vue/Dialog/Dialog.test.ts +10 -0
  643. package/templates/vue/Dialog/Dialog.vue +101 -0
  644. package/templates/vue/Divider/Divider.css +13 -0
  645. package/templates/vue/Divider/Divider.js.vue +47 -0
  646. package/templates/vue/Divider/Divider.test.js +10 -0
  647. package/templates/vue/Divider/Divider.test.ts +10 -0
  648. package/templates/vue/Divider/Divider.vue +51 -0
  649. package/templates/vue/DoughnutChart/DoughnutChart.css +28 -0
  650. package/templates/vue/DoughnutChart/DoughnutChart.js.vue +56 -0
  651. package/templates/vue/DoughnutChart/DoughnutChart.test.js +10 -0
  652. package/templates/vue/DoughnutChart/DoughnutChart.test.ts +10 -0
  653. package/templates/vue/DoughnutChart/DoughnutChart.vue +60 -0
  654. package/templates/vue/Drawer/Drawer.css +23 -0
  655. package/templates/vue/Drawer/Drawer.js.vue +100 -0
  656. package/templates/vue/Drawer/Drawer.test.js +10 -0
  657. package/templates/vue/Drawer/Drawer.test.ts +10 -0
  658. package/templates/vue/Drawer/Drawer.vue +102 -0
  659. package/templates/vue/Dropdown/Dropdown.css +15 -0
  660. package/templates/vue/Dropdown/Dropdown.js.vue +105 -0
  661. package/templates/vue/Dropdown/Dropdown.test.js +10 -0
  662. package/templates/vue/Dropdown/Dropdown.test.ts +10 -0
  663. package/templates/vue/Dropdown/Dropdown.vue +119 -0
  664. package/templates/vue/DropdownItem/DropdownItem.css +18 -0
  665. package/templates/vue/DropdownItem/DropdownItem.js.vue +77 -0
  666. package/templates/vue/DropdownItem/DropdownItem.test.js +10 -0
  667. package/templates/vue/DropdownItem/DropdownItem.test.ts +10 -0
  668. package/templates/vue/DropdownItem/DropdownItem.vue +82 -0
  669. package/templates/vue/FileInput/FileInput.css +27 -0
  670. package/templates/vue/FileInput/FileInput.js.vue +88 -0
  671. package/templates/vue/FileInput/FileInput.test.js +10 -0
  672. package/templates/vue/FileInput/FileInput.test.ts +10 -0
  673. package/templates/vue/FileInput/FileInput.vue +98 -0
  674. package/templates/vue/FormatBytes/FormatBytes.js.vue +50 -0
  675. package/templates/vue/FormatBytes/FormatBytes.test.js +10 -0
  676. package/templates/vue/FormatBytes/FormatBytes.test.ts +10 -0
  677. package/templates/vue/FormatBytes/FormatBytes.vue +54 -0
  678. package/templates/vue/FormatDate/FormatDate.js.vue +59 -0
  679. package/templates/vue/FormatDate/FormatDate.test.js +10 -0
  680. package/templates/vue/FormatDate/FormatDate.test.ts +10 -0
  681. package/templates/vue/FormatDate/FormatDate.vue +63 -0
  682. package/templates/vue/FormatNumber/FormatNumber.js.vue +61 -0
  683. package/templates/vue/FormatNumber/FormatNumber.test.js +10 -0
  684. package/templates/vue/FormatNumber/FormatNumber.test.ts +10 -0
  685. package/templates/vue/FormatNumber/FormatNumber.vue +65 -0
  686. package/templates/vue/Icon/Icon.css +38 -0
  687. package/templates/vue/Icon/Icon.js.vue +76 -0
  688. package/templates/vue/Icon/Icon.test.js +10 -0
  689. package/templates/vue/Icon/Icon.test.ts +10 -0
  690. package/templates/vue/Icon/Icon.vue +81 -0
  691. package/templates/vue/Include/Include.js.vue +68 -0
  692. package/templates/vue/Include/Include.test.js +10 -0
  693. package/templates/vue/Include/Include.test.ts +10 -0
  694. package/templates/vue/Include/Include.vue +74 -0
  695. package/templates/vue/Input/Input.css +20 -0
  696. package/templates/vue/Input/Input.js.vue +145 -0
  697. package/templates/vue/Input/Input.test.js +10 -0
  698. package/templates/vue/Input/Input.test.ts +10 -0
  699. package/templates/vue/Input/Input.vue +186 -0
  700. package/templates/vue/IntersectionObserver/IntersectionObserver.js.vue +71 -0
  701. package/templates/vue/IntersectionObserver/IntersectionObserver.test.js +10 -0
  702. package/templates/vue/IntersectionObserver/IntersectionObserver.test.ts +10 -0
  703. package/templates/vue/IntersectionObserver/IntersectionObserver.vue +75 -0
  704. package/templates/vue/LineChart/LineChart.css +28 -0
  705. package/templates/vue/LineChart/LineChart.js.vue +59 -0
  706. package/templates/vue/LineChart/LineChart.test.js +10 -0
  707. package/templates/vue/LineChart/LineChart.test.ts +10 -0
  708. package/templates/vue/LineChart/LineChart.vue +63 -0
  709. package/templates/vue/Markdown/Markdown.css +11 -0
  710. package/templates/vue/Markdown/Markdown.js.vue +50 -0
  711. package/templates/vue/Markdown/Markdown.test.js +10 -0
  712. package/templates/vue/Markdown/Markdown.test.ts +10 -0
  713. package/templates/vue/Markdown/Markdown.vue +54 -0
  714. package/templates/vue/MutationObserver/MutationObserver.js.vue +73 -0
  715. package/templates/vue/MutationObserver/MutationObserver.test.js +10 -0
  716. package/templates/vue/MutationObserver/MutationObserver.test.ts +10 -0
  717. package/templates/vue/MutationObserver/MutationObserver.vue +77 -0
  718. package/templates/vue/NumberInput/NumberInput.css +22 -0
  719. package/templates/vue/NumberInput/NumberInput.js.vue +110 -0
  720. package/templates/vue/NumberInput/NumberInput.test.js +10 -0
  721. package/templates/vue/NumberInput/NumberInput.test.ts +10 -0
  722. package/templates/vue/NumberInput/NumberInput.vue +120 -0
  723. package/templates/vue/Option/Option.css +16 -0
  724. package/templates/vue/Option/Option.js.vue +50 -0
  725. package/templates/vue/Option/Option.test.js +10 -0
  726. package/templates/vue/Option/Option.test.ts +10 -0
  727. package/templates/vue/Option/Option.vue +54 -0
  728. package/templates/vue/Page/Page.css +36 -0
  729. package/templates/vue/Page/Page.js.vue +60 -0
  730. package/templates/vue/Page/Page.test.js +10 -0
  731. package/templates/vue/Page/Page.test.ts +10 -0
  732. package/templates/vue/Page/Page.vue +60 -0
  733. package/templates/vue/PieChart/PieChart.css +28 -0
  734. package/templates/vue/PieChart/PieChart.js.vue +52 -0
  735. package/templates/vue/PieChart/PieChart.test.js +10 -0
  736. package/templates/vue/PieChart/PieChart.test.ts +10 -0
  737. package/templates/vue/PieChart/PieChart.vue +56 -0
  738. package/templates/vue/PolarAreaChart/PolarAreaChart.css +28 -0
  739. package/templates/vue/PolarAreaChart/PolarAreaChart.js.vue +56 -0
  740. package/templates/vue/PolarAreaChart/PolarAreaChart.test.js +10 -0
  741. package/templates/vue/PolarAreaChart/PolarAreaChart.test.ts +10 -0
  742. package/templates/vue/PolarAreaChart/PolarAreaChart.vue +60 -0
  743. package/templates/vue/Popover/Popover.css +20 -0
  744. package/templates/vue/Popover/Popover.js.vue +104 -0
  745. package/templates/vue/Popover/Popover.test.js +10 -0
  746. package/templates/vue/Popover/Popover.test.ts +10 -0
  747. package/templates/vue/Popover/Popover.vue +118 -0
  748. package/templates/vue/Popup/Popup.css +21 -0
  749. package/templates/vue/Popup/Popup.js.vue +85 -0
  750. package/templates/vue/Popup/Popup.test.js +10 -0
  751. package/templates/vue/Popup/Popup.test.ts +10 -0
  752. package/templates/vue/Popup/Popup.vue +98 -0
  753. package/templates/vue/ProgressBar/ProgressBar.css +17 -0
  754. package/templates/vue/ProgressBar/ProgressBar.js.vue +49 -0
  755. package/templates/vue/ProgressBar/ProgressBar.test.js +10 -0
  756. package/templates/vue/ProgressBar/ProgressBar.test.ts +10 -0
  757. package/templates/vue/ProgressBar/ProgressBar.vue +53 -0
  758. package/templates/vue/ProgressRing/ProgressRing.css +21 -0
  759. package/templates/vue/ProgressRing/ProgressRing.js.vue +52 -0
  760. package/templates/vue/ProgressRing/ProgressRing.test.js +10 -0
  761. package/templates/vue/ProgressRing/ProgressRing.test.ts +10 -0
  762. package/templates/vue/ProgressRing/ProgressRing.vue +56 -0
  763. package/templates/vue/QrCode/QrCode.css +13 -0
  764. package/templates/vue/QrCode/QrCode.js.vue +53 -0
  765. package/templates/vue/QrCode/QrCode.test.js +10 -0
  766. package/templates/vue/QrCode/QrCode.test.ts +10 -0
  767. package/templates/vue/QrCode/QrCode.vue +57 -0
  768. package/templates/vue/RadarChart/RadarChart.css +28 -0
  769. package/templates/vue/RadarChart/RadarChart.js.vue +56 -0
  770. package/templates/vue/RadarChart/RadarChart.test.js +10 -0
  771. package/templates/vue/RadarChart/RadarChart.test.ts +10 -0
  772. package/templates/vue/RadarChart/RadarChart.vue +60 -0
  773. package/templates/vue/Radio/Radio.css +16 -0
  774. package/templates/vue/Radio/Radio.js.vue +74 -0
  775. package/templates/vue/Radio/Radio.test.js +10 -0
  776. package/templates/vue/Radio/Radio.test.ts +10 -0
  777. package/templates/vue/Radio/Radio.vue +81 -0
  778. package/templates/vue/RadioGroup/RadioGroup.css +17 -0
  779. package/templates/vue/RadioGroup/RadioGroup.js.vue +98 -0
  780. package/templates/vue/RadioGroup/RadioGroup.test.js +10 -0
  781. package/templates/vue/RadioGroup/RadioGroup.test.ts +10 -0
  782. package/templates/vue/RadioGroup/RadioGroup.vue +106 -0
  783. package/templates/vue/Rating/Rating.css +15 -0
  784. package/templates/vue/Rating/Rating.js.vue +96 -0
  785. package/templates/vue/Rating/Rating.test.js +10 -0
  786. package/templates/vue/Rating/Rating.test.ts +10 -0
  787. package/templates/vue/Rating/Rating.vue +104 -0
  788. package/templates/vue/RelativeTime/RelativeTime.js.vue +55 -0
  789. package/templates/vue/RelativeTime/RelativeTime.test.js +10 -0
  790. package/templates/vue/RelativeTime/RelativeTime.test.ts +10 -0
  791. package/templates/vue/RelativeTime/RelativeTime.vue +59 -0
  792. package/templates/vue/ResizeObserver/ResizeObserver.js.vue +67 -0
  793. package/templates/vue/ResizeObserver/ResizeObserver.test.js +10 -0
  794. package/templates/vue/ResizeObserver/ResizeObserver.test.ts +10 -0
  795. package/templates/vue/ResizeObserver/ResizeObserver.vue +71 -0
  796. package/templates/vue/ScatterChart/ScatterChart.css +28 -0
  797. package/templates/vue/ScatterChart/ScatterChart.js.vue +61 -0
  798. package/templates/vue/ScatterChart/ScatterChart.test.js +10 -0
  799. package/templates/vue/ScatterChart/ScatterChart.test.ts +10 -0
  800. package/templates/vue/ScatterChart/ScatterChart.vue +65 -0
  801. package/templates/vue/Scroller/Scroller.css +14 -0
  802. package/templates/vue/Scroller/Scroller.js.vue +50 -0
  803. package/templates/vue/Scroller/Scroller.test.js +10 -0
  804. package/templates/vue/Scroller/Scroller.test.ts +10 -0
  805. package/templates/vue/Scroller/Scroller.vue +54 -0
  806. package/templates/vue/Select/Select.css +30 -0
  807. package/templates/vue/Select/Select.js.vue +141 -0
  808. package/templates/vue/Select/Select.test.js +10 -0
  809. package/templates/vue/Select/Select.test.ts +10 -0
  810. package/templates/vue/Select/Select.vue +145 -0
  811. package/templates/vue/Skeleton/Skeleton.css +14 -0
  812. package/templates/vue/Skeleton/Skeleton.js.vue +47 -0
  813. package/templates/vue/Skeleton/Skeleton.test.js +10 -0
  814. package/templates/vue/Skeleton/Skeleton.test.ts +10 -0
  815. package/templates/vue/Skeleton/Skeleton.vue +51 -0
  816. package/templates/vue/Slider/Slider.css +31 -0
  817. package/templates/vue/Slider/Slider.js.vue +112 -0
  818. package/templates/vue/Slider/Slider.test.js +10 -0
  819. package/templates/vue/Slider/Slider.test.ts +10 -0
  820. package/templates/vue/Slider/Slider.vue +122 -0
  821. package/templates/vue/Sparkline/Sparkline.css +17 -0
  822. package/templates/vue/Sparkline/Sparkline.js.vue +51 -0
  823. package/templates/vue/Sparkline/Sparkline.test.js +10 -0
  824. package/templates/vue/Sparkline/Sparkline.test.ts +10 -0
  825. package/templates/vue/Sparkline/Sparkline.vue +55 -0
  826. package/templates/vue/Spinner/Spinner.css +16 -0
  827. package/templates/vue/Spinner/Spinner.js.vue +45 -0
  828. package/templates/vue/Spinner/Spinner.test.js +10 -0
  829. package/templates/vue/Spinner/Spinner.test.ts +10 -0
  830. package/templates/vue/Spinner/Spinner.vue +49 -0
  831. package/templates/vue/SplitPanel/SplitPanel.css +19 -0
  832. package/templates/vue/SplitPanel/SplitPanel.js.vue +69 -0
  833. package/templates/vue/SplitPanel/SplitPanel.test.js +10 -0
  834. package/templates/vue/SplitPanel/SplitPanel.test.ts +10 -0
  835. package/templates/vue/SplitPanel/SplitPanel.vue +74 -0
  836. package/templates/vue/Switch/Switch.css +19 -0
  837. package/templates/vue/Switch/Switch.js.vue +103 -0
  838. package/templates/vue/Switch/Switch.test.js +10 -0
  839. package/templates/vue/Switch/Switch.test.ts +10 -0
  840. package/templates/vue/Switch/Switch.vue +113 -0
  841. package/templates/vue/Tab/Tab.css +13 -0
  842. package/templates/vue/Tab/Tab.js.vue +48 -0
  843. package/templates/vue/Tab/Tab.test.js +10 -0
  844. package/templates/vue/Tab/Tab.test.ts +10 -0
  845. package/templates/vue/Tab/Tab.vue +52 -0
  846. package/templates/vue/TabGroup/TabGroup.css +22 -0
  847. package/templates/vue/TabGroup/TabGroup.js.vue +69 -0
  848. package/templates/vue/TabGroup/TabGroup.test.js +10 -0
  849. package/templates/vue/TabGroup/TabGroup.test.ts +10 -0
  850. package/templates/vue/TabGroup/TabGroup.vue +74 -0
  851. package/templates/vue/TabPanel/TabPanel.css +13 -0
  852. package/templates/vue/TabPanel/TabPanel.js.vue +48 -0
  853. package/templates/vue/TabPanel/TabPanel.test.js +10 -0
  854. package/templates/vue/TabPanel/TabPanel.test.ts +10 -0
  855. package/templates/vue/TabPanel/TabPanel.vue +52 -0
  856. package/templates/vue/Tag/Tag.css +16 -0
  857. package/templates/vue/Tag/Tag.js.vue +67 -0
  858. package/templates/vue/Tag/Tag.test.js +10 -0
  859. package/templates/vue/Tag/Tag.test.ts +10 -0
  860. package/templates/vue/Tag/Tag.vue +71 -0
  861. package/templates/vue/Textarea/Textarea.css +18 -0
  862. package/templates/vue/Textarea/Textarea.js.vue +121 -0
  863. package/templates/vue/Textarea/Textarea.test.js +10 -0
  864. package/templates/vue/Textarea/Textarea.test.ts +10 -0
  865. package/templates/vue/Textarea/Textarea.vue +146 -0
  866. package/templates/vue/Toast/Toast.css +14 -0
  867. package/templates/vue/Toast/Toast.js.vue +48 -0
  868. package/templates/vue/Toast/Toast.test.js +10 -0
  869. package/templates/vue/Toast/Toast.test.ts +10 -0
  870. package/templates/vue/Toast/Toast.vue +60 -0
  871. package/templates/vue/ToastItem/ToastItem.css +26 -0
  872. package/templates/vue/ToastItem/ToastItem.js.vue +80 -0
  873. package/templates/vue/ToastItem/ToastItem.test.js +10 -0
  874. package/templates/vue/ToastItem/ToastItem.test.ts +10 -0
  875. package/templates/vue/ToastItem/ToastItem.vue +82 -0
  876. package/templates/vue/Tooltip/Tooltip.css +16 -0
  877. package/templates/vue/Tooltip/Tooltip.js.vue +105 -0
  878. package/templates/vue/Tooltip/Tooltip.test.js +10 -0
  879. package/templates/vue/Tooltip/Tooltip.test.ts +10 -0
  880. package/templates/vue/Tooltip/Tooltip.vue +119 -0
  881. package/templates/vue/Tree/Tree.css +17 -0
  882. package/templates/vue/Tree/Tree.js.vue +63 -0
  883. package/templates/vue/Tree/Tree.test.js +10 -0
  884. package/templates/vue/Tree/Tree.test.ts +10 -0
  885. package/templates/vue/Tree/Tree.vue +68 -0
  886. package/templates/vue/TreeItem/TreeItem.css +27 -0
  887. package/templates/vue/TreeItem/TreeItem.js.vue +89 -0
  888. package/templates/vue/TreeItem/TreeItem.test.js +10 -0
  889. package/templates/vue/TreeItem/TreeItem.test.ts +10 -0
  890. package/templates/vue/TreeItem/TreeItem.vue +95 -0
  891. package/templates/vue/ZoomableFrame/ZoomableFrame.css +16 -0
  892. package/templates/vue/ZoomableFrame/ZoomableFrame.js.vue +85 -0
  893. package/templates/vue/ZoomableFrame/ZoomableFrame.test.js +10 -0
  894. package/templates/vue/ZoomableFrame/ZoomableFrame.test.ts +10 -0
  895. package/templates/vue/ZoomableFrame/ZoomableFrame.vue +86 -0
  896. package/templates/vue/tsconfig.json +25 -0
  897. package/dist/-KKAC4XOR.js +0 -10054
  898. package/dist/-KKAC4XOR.js.map +0 -1
  899. package/dist/chunk-M3CQQOFK.js +0 -1490
  900. package/dist/chunk-M3CQQOFK.js.map +0 -1
  901. package/dist/chunk-SV7IPLRK.js +0 -255
  902. package/dist/chunk-SV7IPLRK.js.map +0 -1
  903. package/dist/install-CA2HI23T.js +0 -111
  904. package/dist/install-CA2HI23T.js.map +0 -1
  905. package/dist/llms.txt +0 -2151
  906. package/dist/project-config-IZOQXACR.js +0 -249
  907. package/dist/project-config-IZOQXACR.js.map +0 -1
  908. package/dist/templates/AGENTS.md +0 -265
  909. package/dist/templates/angular/AnimatedImage/animated-image.component.css.hbs +0 -7
  910. package/dist/templates/angular/AnimatedImage/animated-image.component.spec.ts.hbs +0 -26
  911. package/dist/templates/angular/AnimatedImage/animated-image.component.ts.hbs +0 -67
  912. package/dist/templates/angular/Animation/animation.component.spec.ts.hbs +0 -26
  913. package/dist/templates/angular/Animation/animation.component.ts.hbs +0 -102
  914. package/dist/templates/angular/Avatar/avatar.component.css.hbs +0 -7
  915. package/dist/templates/angular/Avatar/avatar.component.spec.ts.hbs +0 -26
  916. package/dist/templates/angular/Avatar/avatar.component.ts.hbs +0 -69
  917. package/dist/templates/angular/Badge/badge.component.css.hbs +0 -7
  918. package/dist/templates/angular/Badge/badge.component.spec.ts.hbs +0 -26
  919. package/dist/templates/angular/Badge/badge.component.ts.hbs +0 -54
  920. package/dist/templates/angular/BarChart/bar-chart.component.css.hbs +0 -7
  921. package/dist/templates/angular/BarChart/bar-chart.component.spec.ts.hbs +0 -26
  922. package/dist/templates/angular/BarChart/bar-chart.component.ts.hbs +0 -84
  923. package/dist/templates/angular/Breadcrumb/breadcrumb.component.css.hbs +0 -7
  924. package/dist/templates/angular/Breadcrumb/breadcrumb.component.spec.ts.hbs +0 -26
  925. package/dist/templates/angular/Breadcrumb/breadcrumb.component.ts.hbs +0 -45
  926. package/dist/templates/angular/BreadcrumbItem/breadcrumb-item.component.css.hbs +0 -7
  927. package/dist/templates/angular/BreadcrumbItem/breadcrumb-item.component.spec.ts.hbs +0 -26
  928. package/dist/templates/angular/BreadcrumbItem/breadcrumb-item.component.ts.hbs +0 -51
  929. package/dist/templates/angular/BubbleChart/bubble-chart.component.css.hbs +0 -7
  930. package/dist/templates/angular/BubbleChart/bubble-chart.component.spec.ts.hbs +0 -26
  931. package/dist/templates/angular/BubbleChart/bubble-chart.component.ts.hbs +0 -81
  932. package/dist/templates/angular/Button/button.component.css.hbs +0 -7
  933. package/dist/templates/angular/Button/button.component.spec.ts.hbs +0 -26
  934. package/dist/templates/angular/Button/button.component.ts.hbs +0 -138
  935. package/dist/templates/angular/ButtonGroup/button-group.component.css.hbs +0 -7
  936. package/dist/templates/angular/ButtonGroup/button-group.component.spec.ts.hbs +0 -26
  937. package/dist/templates/angular/ButtonGroup/button-group.component.ts.hbs +0 -48
  938. package/dist/templates/angular/Callout/callout.component.css.hbs +0 -7
  939. package/dist/templates/angular/Callout/callout.component.spec.ts.hbs +0 -26
  940. package/dist/templates/angular/Callout/callout.component.ts.hbs +0 -51
  941. package/dist/templates/angular/Card/card.component.css.hbs +0 -7
  942. package/dist/templates/angular/Card/card.component.spec.ts.hbs +0 -26
  943. package/dist/templates/angular/Card/card.component.ts.hbs +0 -57
  944. package/dist/templates/angular/Carousel/carousel.component.css.hbs +0 -7
  945. package/dist/templates/angular/Carousel/carousel.component.spec.ts.hbs +0 -26
  946. package/dist/templates/angular/Carousel/carousel.component.ts.hbs +0 -91
  947. package/dist/templates/angular/CarouselItem/carousel-item.component.css.hbs +0 -7
  948. package/dist/templates/angular/CarouselItem/carousel-item.component.spec.ts.hbs +0 -26
  949. package/dist/templates/angular/CarouselItem/carousel-item.component.ts.hbs +0 -42
  950. package/dist/templates/angular/Chart/chart.component.css.hbs +0 -7
  951. package/dist/templates/angular/Chart/chart.component.spec.ts.hbs +0 -26
  952. package/dist/templates/angular/Chart/chart.component.ts.hbs +0 -84
  953. package/dist/templates/angular/Checkbox/checkbox.component.css.hbs +0 -7
  954. package/dist/templates/angular/Checkbox/checkbox.component.spec.ts.hbs +0 -26
  955. package/dist/templates/angular/Checkbox/checkbox.component.ts.hbs +0 -151
  956. package/dist/templates/angular/ColorPicker/color-picker.component.css.hbs +0 -7
  957. package/dist/templates/angular/ColorPicker/color-picker.component.spec.ts.hbs +0 -26
  958. package/dist/templates/angular/ColorPicker/color-picker.component.ts.hbs +0 -200
  959. package/dist/templates/angular/Combobox/combobox.component.css.hbs +0 -7
  960. package/dist/templates/angular/Combobox/combobox.component.spec.ts.hbs +0 -26
  961. package/dist/templates/angular/Combobox/combobox.component.ts.hbs +0 -220
  962. package/dist/templates/angular/Comparison/comparison.component.css.hbs +0 -7
  963. package/dist/templates/angular/Comparison/comparison.component.spec.ts.hbs +0 -26
  964. package/dist/templates/angular/Comparison/comparison.component.ts.hbs +0 -57
  965. package/dist/templates/angular/CopyButton/copy-button.component.css.hbs +0 -7
  966. package/dist/templates/angular/CopyButton/copy-button.component.spec.ts.hbs +0 -26
  967. package/dist/templates/angular/CopyButton/copy-button.component.ts.hbs +0 -82
  968. package/dist/templates/angular/Details/details.component.css.hbs +0 -7
  969. package/dist/templates/angular/Details/details.component.spec.ts.hbs +0 -26
  970. package/dist/templates/angular/Details/details.component.ts.hbs +0 -91
  971. package/dist/templates/angular/Dialog/dialog.component.css.hbs +0 -7
  972. package/dist/templates/angular/Dialog/dialog.component.spec.ts.hbs +0 -26
  973. package/dist/templates/angular/Dialog/dialog.component.ts.hbs +0 -85
  974. package/dist/templates/angular/Divider/divider.component.css.hbs +0 -7
  975. package/dist/templates/angular/Divider/divider.component.spec.ts.hbs +0 -26
  976. package/dist/templates/angular/Divider/divider.component.ts.hbs +0 -45
  977. package/dist/templates/angular/DoughnutChart/doughnut-chart.component.css.hbs +0 -7
  978. package/dist/templates/angular/DoughnutChart/doughnut-chart.component.spec.ts.hbs +0 -26
  979. package/dist/templates/angular/DoughnutChart/doughnut-chart.component.ts.hbs +0 -60
  980. package/dist/templates/angular/Drawer/drawer.component.css.hbs +0 -7
  981. package/dist/templates/angular/Drawer/drawer.component.spec.ts.hbs +0 -26
  982. package/dist/templates/angular/Drawer/drawer.component.ts.hbs +0 -88
  983. package/dist/templates/angular/Dropdown/dropdown.component.css.hbs +0 -7
  984. package/dist/templates/angular/Dropdown/dropdown.component.spec.ts.hbs +0 -26
  985. package/dist/templates/angular/Dropdown/dropdown.component.ts.hbs +0 -94
  986. package/dist/templates/angular/DropdownItem/dropdown-item.component.css.hbs +0 -7
  987. package/dist/templates/angular/DropdownItem/dropdown-item.component.spec.ts.hbs +0 -26
  988. package/dist/templates/angular/DropdownItem/dropdown-item.component.ts.hbs +0 -83
  989. package/dist/templates/angular/FileInput/file-input.component.css.hbs +0 -7
  990. package/dist/templates/angular/FileInput/file-input.component.spec.ts.hbs +0 -26
  991. package/dist/templates/angular/FileInput/file-input.component.ts.hbs +0 -145
  992. package/dist/templates/angular/FormatBytes/format-bytes.component.spec.ts.hbs +0 -26
  993. package/dist/templates/angular/FormatBytes/format-bytes.component.ts.hbs +0 -54
  994. package/dist/templates/angular/FormatDate/format-date.component.spec.ts.hbs +0 -26
  995. package/dist/templates/angular/FormatDate/format-date.component.ts.hbs +0 -81
  996. package/dist/templates/angular/FormatNumber/format-number.component.spec.ts.hbs +0 -26
  997. package/dist/templates/angular/FormatNumber/format-number.component.ts.hbs +0 -75
  998. package/dist/templates/angular/Icon/icon.component.css.hbs +0 -7
  999. package/dist/templates/angular/Icon/icon.component.spec.ts.hbs +0 -26
  1000. package/dist/templates/angular/Icon/icon.component.ts.hbs +0 -91
  1001. package/dist/templates/angular/Include/include.component.spec.ts.hbs +0 -26
  1002. package/dist/templates/angular/Include/include.component.ts.hbs +0 -67
  1003. package/dist/templates/angular/Input/input.component.css.hbs +0 -7
  1004. package/dist/templates/angular/Input/input.component.spec.ts.hbs +0 -26
  1005. package/dist/templates/angular/Input/input.component.ts.hbs +0 -230
  1006. package/dist/templates/angular/IntersectionObserver/intersection-observer.component.spec.ts.hbs +0 -26
  1007. package/dist/templates/angular/IntersectionObserver/intersection-observer.component.ts.hbs +0 -69
  1008. package/dist/templates/angular/LineChart/line-chart.component.css.hbs +0 -7
  1009. package/dist/templates/angular/LineChart/line-chart.component.spec.ts.hbs +0 -26
  1010. package/dist/templates/angular/LineChart/line-chart.component.ts.hbs +0 -81
  1011. package/dist/templates/angular/Markdown/markdown.component.spec.ts.hbs +0 -26
  1012. package/dist/templates/angular/Markdown/markdown.component.ts.hbs +0 -61
  1013. package/dist/templates/angular/MutationObserver/mutation-observer.component.spec.ts.hbs +0 -26
  1014. package/dist/templates/angular/MutationObserver/mutation-observer.component.ts.hbs +0 -75
  1015. package/dist/templates/angular/NumberInput/number-input.component.css.hbs +0 -7
  1016. package/dist/templates/angular/NumberInput/number-input.component.spec.ts.hbs +0 -26
  1017. package/dist/templates/angular/NumberInput/number-input.component.ts.hbs +0 -169
  1018. package/dist/templates/angular/Option/option.component.css.hbs +0 -7
  1019. package/dist/templates/angular/Option/option.component.spec.ts.hbs +0 -26
  1020. package/dist/templates/angular/Option/option.component.ts.hbs +0 -54
  1021. package/dist/templates/angular/Page/page.component.css.hbs +0 -7
  1022. package/dist/templates/angular/Page/page.component.spec.ts.hbs +0 -26
  1023. package/dist/templates/angular/Page/page.component.ts.hbs +0 -70
  1024. package/dist/templates/angular/PieChart/pie-chart.component.css.hbs +0 -7
  1025. package/dist/templates/angular/PieChart/pie-chart.component.spec.ts.hbs +0 -26
  1026. package/dist/templates/angular/PieChart/pie-chart.component.ts.hbs +0 -60
  1027. package/dist/templates/angular/PolarAreaChart/polar-area-chart.component.css.hbs +0 -7
  1028. package/dist/templates/angular/PolarAreaChart/polar-area-chart.component.spec.ts.hbs +0 -26
  1029. package/dist/templates/angular/PolarAreaChart/polar-area-chart.component.ts.hbs +0 -60
  1030. package/dist/templates/angular/Popover/popover.component.css.hbs +0 -7
  1031. package/dist/templates/angular/Popover/popover.component.spec.ts.hbs +0 -26
  1032. package/dist/templates/angular/Popover/popover.component.ts.hbs +0 -100
  1033. package/dist/templates/angular/Popup/popup.component.css.hbs +0 -7
  1034. package/dist/templates/angular/Popup/popup.component.spec.ts.hbs +0 -26
  1035. package/dist/templates/angular/Popup/popup.component.ts.hbs +0 -112
  1036. package/dist/templates/angular/ProgressBar/progress-bar.component.css.hbs +0 -7
  1037. package/dist/templates/angular/ProgressBar/progress-bar.component.spec.ts.hbs +0 -26
  1038. package/dist/templates/angular/ProgressBar/progress-bar.component.ts.hbs +0 -51
  1039. package/dist/templates/angular/ProgressRing/progress-ring.component.css.hbs +0 -7
  1040. package/dist/templates/angular/ProgressRing/progress-ring.component.spec.ts.hbs +0 -26
  1041. package/dist/templates/angular/ProgressRing/progress-ring.component.ts.hbs +0 -48
  1042. package/dist/templates/angular/QrCode/qr-code.component.css.hbs +0 -7
  1043. package/dist/templates/angular/QrCode/qr-code.component.spec.ts.hbs +0 -26
  1044. package/dist/templates/angular/QrCode/qr-code.component.ts.hbs +0 -63
  1045. package/dist/templates/angular/RadarChart/radar-chart.component.css.hbs +0 -7
  1046. package/dist/templates/angular/RadarChart/radar-chart.component.spec.ts.hbs +0 -26
  1047. package/dist/templates/angular/RadarChart/radar-chart.component.ts.hbs +0 -72
  1048. package/dist/templates/angular/Radio/radio.component.css.hbs +0 -7
  1049. package/dist/templates/angular/Radio/radio.component.spec.ts.hbs +0 -26
  1050. package/dist/templates/angular/Radio/radio.component.ts.hbs +0 -80
  1051. package/dist/templates/angular/RadioGroup/radio-group.component.css.hbs +0 -7
  1052. package/dist/templates/angular/RadioGroup/radio-group.component.spec.ts.hbs +0 -26
  1053. package/dist/templates/angular/RadioGroup/radio-group.component.ts.hbs +0 -143
  1054. package/dist/templates/angular/Rating/rating.component.css.hbs +0 -7
  1055. package/dist/templates/angular/Rating/rating.component.spec.ts.hbs +0 -26
  1056. package/dist/templates/angular/Rating/rating.component.ts.hbs +0 -137
  1057. package/dist/templates/angular/RelativeTime/relative-time.component.spec.ts.hbs +0 -26
  1058. package/dist/templates/angular/RelativeTime/relative-time.component.ts.hbs +0 -57
  1059. package/dist/templates/angular/ResizeObserver/resize-observer.component.spec.ts.hbs +0 -26
  1060. package/dist/templates/angular/ResizeObserver/resize-observer.component.ts.hbs +0 -57
  1061. package/dist/templates/angular/ScatterChart/scatter-chart.component.css.hbs +0 -7
  1062. package/dist/templates/angular/ScatterChart/scatter-chart.component.spec.ts.hbs +0 -26
  1063. package/dist/templates/angular/ScatterChart/scatter-chart.component.ts.hbs +0 -75
  1064. package/dist/templates/angular/Scroller/scroller.component.css.hbs +0 -7
  1065. package/dist/templates/angular/Scroller/scroller.component.spec.ts.hbs +0 -26
  1066. package/dist/templates/angular/Scroller/scroller.component.ts.hbs +0 -54
  1067. package/dist/templates/angular/Select/select.component.css.hbs +0 -7
  1068. package/dist/templates/angular/Select/select.component.spec.ts.hbs +0 -26
  1069. package/dist/templates/angular/Select/select.component.ts.hbs +0 -204
  1070. package/dist/templates/angular/Skeleton/skeleton.component.css.hbs +0 -7
  1071. package/dist/templates/angular/Skeleton/skeleton.component.spec.ts.hbs +0 -26
  1072. package/dist/templates/angular/Skeleton/skeleton.component.ts.hbs +0 -45
  1073. package/dist/templates/angular/Slider/slider.component.css.hbs +0 -7
  1074. package/dist/templates/angular/Slider/slider.component.spec.ts.hbs +0 -26
  1075. package/dist/templates/angular/Slider/slider.component.ts.hbs +0 -175
  1076. package/dist/templates/angular/Sparkline/sparkline.component.css.hbs +0 -7
  1077. package/dist/templates/angular/Sparkline/sparkline.component.spec.ts.hbs +0 -26
  1078. package/dist/templates/angular/Sparkline/sparkline.component.ts.hbs +0 -57
  1079. package/dist/templates/angular/Spinner/spinner.component.css.hbs +0 -7
  1080. package/dist/templates/angular/Spinner/spinner.component.spec.ts.hbs +0 -26
  1081. package/dist/templates/angular/Spinner/spinner.component.ts.hbs +0 -42
  1082. package/dist/templates/angular/SplitPanel/split-panel.component.css.hbs +0 -7
  1083. package/dist/templates/angular/SplitPanel/split-panel.component.spec.ts.hbs +0 -26
  1084. package/dist/templates/angular/SplitPanel/split-panel.component.ts.hbs +0 -75
  1085. package/dist/templates/angular/Switch/switch.component.css.hbs +0 -7
  1086. package/dist/templates/angular/Switch/switch.component.spec.ts.hbs +0 -26
  1087. package/dist/templates/angular/Switch/switch.component.ts.hbs +0 -148
  1088. package/dist/templates/angular/Tab/tab.component.css.hbs +0 -7
  1089. package/dist/templates/angular/Tab/tab.component.spec.ts.hbs +0 -26
  1090. package/dist/templates/angular/Tab/tab.component.ts.hbs +0 -48
  1091. package/dist/templates/angular/TabGroup/tab-group.component.css.hbs +0 -7
  1092. package/dist/templates/angular/TabGroup/tab-group.component.spec.ts.hbs +0 -26
  1093. package/dist/templates/angular/TabGroup/tab-group.component.ts.hbs +0 -70
  1094. package/dist/templates/angular/TabPanel/tab-panel.component.css.hbs +0 -7
  1095. package/dist/templates/angular/TabPanel/tab-panel.component.spec.ts.hbs +0 -26
  1096. package/dist/templates/angular/TabPanel/tab-panel.component.ts.hbs +0 -48
  1097. package/dist/templates/angular/Tag/tag.component.css.hbs +0 -7
  1098. package/dist/templates/angular/Tag/tag.component.spec.ts.hbs +0 -26
  1099. package/dist/templates/angular/Tag/tag.component.ts.hbs +0 -69
  1100. package/dist/templates/angular/Textarea/textarea.component.css.hbs +0 -7
  1101. package/dist/templates/angular/Textarea/textarea.component.spec.ts.hbs +0 -26
  1102. package/dist/templates/angular/Textarea/textarea.component.ts.hbs +0 -184
  1103. package/dist/templates/angular/Toast/toast.component.css.hbs +0 -7
  1104. package/dist/templates/angular/Toast/toast.component.spec.ts.hbs +0 -26
  1105. package/dist/templates/angular/Toast/toast.component.ts.hbs +0 -49
  1106. package/dist/templates/angular/ToastItem/toast-item.component.css.hbs +0 -7
  1107. package/dist/templates/angular/ToastItem/toast-item.component.spec.ts.hbs +0 -26
  1108. package/dist/templates/angular/ToastItem/toast-item.component.ts.hbs +0 -79
  1109. package/dist/templates/angular/Tooltip/tooltip.component.css.hbs +0 -7
  1110. package/dist/templates/angular/Tooltip/tooltip.component.spec.ts.hbs +0 -26
  1111. package/dist/templates/angular/Tooltip/tooltip.component.ts.hbs +0 -103
  1112. package/dist/templates/angular/Tree/tree.component.css.hbs +0 -7
  1113. package/dist/templates/angular/Tree/tree.component.spec.ts.hbs +0 -26
  1114. package/dist/templates/angular/Tree/tree.component.ts.hbs +0 -57
  1115. package/dist/templates/angular/TreeItem/tree-item.component.css.hbs +0 -7
  1116. package/dist/templates/angular/TreeItem/tree-item.component.spec.ts.hbs +0 -26
  1117. package/dist/templates/angular/TreeItem/tree-item.component.ts.hbs +0 -91
  1118. package/dist/templates/angular/ZoomableFrame/zoomable-frame.component.css.hbs +0 -7
  1119. package/dist/templates/angular/ZoomableFrame/zoomable-frame.component.spec.ts.hbs +0 -26
  1120. package/dist/templates/angular/ZoomableFrame/zoomable-frame.component.ts.hbs +0 -95
  1121. package/dist/templates/react/AnimatedImage/AnimatedImage.css.hbs +0 -14
  1122. package/dist/templates/react/AnimatedImage/AnimatedImage.jsx.hbs +0 -64
  1123. package/dist/templates/react/AnimatedImage/AnimatedImage.test.tsx.hbs +0 -10
  1124. package/dist/templates/react/AnimatedImage/AnimatedImage.tsx.hbs +0 -91
  1125. package/dist/templates/react/Animation/Animation.css.hbs +0 -7
  1126. package/dist/templates/react/Animation/Animation.jsx.hbs +0 -100
  1127. package/dist/templates/react/Animation/Animation.test.tsx.hbs +0 -10
  1128. package/dist/templates/react/Animation/Animation.tsx.hbs +0 -144
  1129. package/dist/templates/react/Avatar/Avatar.css.hbs +0 -15
  1130. package/dist/templates/react/Avatar/Avatar.jsx.hbs +0 -65
  1131. package/dist/templates/react/Avatar/Avatar.test.tsx.hbs +0 -10
  1132. package/dist/templates/react/Avatar/Avatar.tsx.hbs +0 -88
  1133. package/dist/templates/react/Badge/Badge.css.hbs +0 -13
  1134. package/dist/templates/react/Badge/Badge.jsx.hbs +0 -52
  1135. package/dist/templates/react/Badge/Badge.test.tsx.hbs +0 -10
  1136. package/dist/templates/react/Badge/Badge.tsx.hbs +0 -71
  1137. package/dist/templates/react/BarChart/BarChart.css.hbs +0 -15
  1138. package/dist/templates/react/BarChart/BarChart.jsx.hbs +0 -67
  1139. package/dist/templates/react/BarChart/BarChart.test.tsx.hbs +0 -10
  1140. package/dist/templates/react/BarChart/BarChart.tsx.hbs +0 -101
  1141. package/dist/templates/react/Breadcrumb/Breadcrumb.css.hbs +0 -10
  1142. package/dist/templates/react/Breadcrumb/Breadcrumb.jsx.hbs +0 -48
  1143. package/dist/templates/react/Breadcrumb/Breadcrumb.test.tsx.hbs +0 -10
  1144. package/dist/templates/react/Breadcrumb/Breadcrumb.tsx.hbs +0 -57
  1145. package/dist/templates/react/BreadcrumbItem/BreadcrumbItem.css.hbs +0 -13
  1146. package/dist/templates/react/BreadcrumbItem/BreadcrumbItem.jsx.hbs +0 -55
  1147. package/dist/templates/react/BreadcrumbItem/BreadcrumbItem.test.tsx.hbs +0 -10
  1148. package/dist/templates/react/BreadcrumbItem/BreadcrumbItem.tsx.hbs +0 -63
  1149. package/dist/templates/react/BubbleChart/BubbleChart.css.hbs +0 -15
  1150. package/dist/templates/react/BubbleChart/BubbleChart.jsx.hbs +0 -62
  1151. package/dist/templates/react/BubbleChart/BubbleChart.test.tsx.hbs +0 -10
  1152. package/dist/templates/react/BubbleChart/BubbleChart.tsx.hbs +0 -94
  1153. package/dist/templates/react/Button/Button.css.hbs +0 -15
  1154. package/dist/templates/react/Button/Button.jsx.hbs +0 -113
  1155. package/dist/templates/react/Button/Button.test.tsx.hbs +0 -10
  1156. package/dist/templates/react/Button/Button.tsx.hbs +0 -176
  1157. package/dist/templates/react/ButtonGroup/ButtonGroup.css.hbs +0 -10
  1158. package/dist/templates/react/ButtonGroup/ButtonGroup.jsx.hbs +0 -48
  1159. package/dist/templates/react/ButtonGroup/ButtonGroup.test.tsx.hbs +0 -10
  1160. package/dist/templates/react/ButtonGroup/ButtonGroup.tsx.hbs +0 -60
  1161. package/dist/templates/react/Callout/Callout.css.hbs +0 -11
  1162. package/dist/templates/react/Callout/Callout.jsx.hbs +0 -29
  1163. package/dist/templates/react/Callout/Callout.test.jsx.hbs +0 -27
  1164. package/dist/templates/react/Callout/Callout.test.tsx.hbs +0 -10
  1165. package/dist/templates/react/Callout/Callout.tsx.hbs +0 -63
  1166. package/dist/templates/react/Card/Card.css.hbs +0 -16
  1167. package/dist/templates/react/Card/Card.jsx.hbs +0 -33
  1168. package/dist/templates/react/Card/Card.test.tsx.hbs +0 -10
  1169. package/dist/templates/react/Card/Card.tsx.hbs +0 -69
  1170. package/dist/templates/react/Carousel/Carousel.css.hbs +0 -23
  1171. package/dist/templates/react/Carousel/Carousel.jsx.hbs +0 -81
  1172. package/dist/templates/react/Carousel/Carousel.test.tsx.hbs +0 -10
  1173. package/dist/templates/react/Carousel/Carousel.tsx.hbs +0 -128
  1174. package/dist/templates/react/CarouselItem/CarouselItem.css.hbs +0 -10
  1175. package/dist/templates/react/CarouselItem/CarouselItem.jsx.hbs +0 -28
  1176. package/dist/templates/react/CarouselItem/CarouselItem.test.tsx.hbs +0 -10
  1177. package/dist/templates/react/CarouselItem/CarouselItem.tsx.hbs +0 -53
  1178. package/dist/templates/react/Chart/Chart.css.hbs +0 -17
  1179. package/dist/templates/react/Chart/Chart.jsx.hbs +0 -68
  1180. package/dist/templates/react/Chart/Chart.test.tsx.hbs +0 -10
  1181. package/dist/templates/react/Chart/Chart.tsx.hbs +0 -102
  1182. package/dist/templates/react/Checkbox/Checkbox.css.hbs +0 -19
  1183. package/dist/templates/react/Checkbox/Checkbox.jsx.hbs +0 -80
  1184. package/dist/templates/react/Checkbox/Checkbox.test.tsx.hbs +0 -10
  1185. package/dist/templates/react/Checkbox/Checkbox.tsx.hbs +0 -161
  1186. package/dist/templates/react/ColorPicker/ColorPicker.css.hbs +0 -32
  1187. package/dist/templates/react/ColorPicker/ColorPicker.jsx.hbs +0 -72
  1188. package/dist/templates/react/ColorPicker/ColorPicker.test.tsx.hbs +0 -10
  1189. package/dist/templates/react/ColorPicker/ColorPicker.tsx.hbs +0 -252
  1190. package/dist/templates/react/Combobox/Combobox.css.hbs +0 -29
  1191. package/dist/templates/react/Combobox/Combobox.jsx.hbs +0 -82
  1192. package/dist/templates/react/Combobox/Combobox.test.tsx.hbs +0 -10
  1193. package/dist/templates/react/Combobox/Combobox.tsx.hbs +0 -266
  1194. package/dist/templates/react/Comparison/Comparison.css.hbs +0 -18
  1195. package/dist/templates/react/Comparison/Comparison.jsx.hbs +0 -27
  1196. package/dist/templates/react/Comparison/Comparison.test.tsx.hbs +0 -10
  1197. package/dist/templates/react/Comparison/Comparison.tsx.hbs +0 -76
  1198. package/dist/templates/react/CopyButton/CopyButton.css.hbs +0 -17
  1199. package/dist/templates/react/CopyButton/CopyButton.jsx.hbs +0 -49
  1200. package/dist/templates/react/CopyButton/CopyButton.test.jsx.hbs +0 -16
  1201. package/dist/templates/react/CopyButton/CopyButton.test.tsx.hbs +0 -10
  1202. package/dist/templates/react/CopyButton/CopyButton.tsx.hbs +0 -106
  1203. package/dist/templates/react/Details/Details.css.hbs +0 -19
  1204. package/dist/templates/react/Details/Details.jsx.hbs +0 -66
  1205. package/dist/templates/react/Details/Details.test.jsx.hbs +0 -27
  1206. package/dist/templates/react/Details/Details.test.tsx.hbs +0 -10
  1207. package/dist/templates/react/Details/Details.tsx.hbs +0 -138
  1208. package/dist/templates/react/Dialog/Dialog.css.hbs +0 -23
  1209. package/dist/templates/react/Dialog/Dialog.jsx.hbs +0 -106
  1210. package/dist/templates/react/Dialog/Dialog.test.jsx.hbs +0 -29
  1211. package/dist/templates/react/Dialog/Dialog.test.tsx.hbs +0 -10
  1212. package/dist/templates/react/Dialog/Dialog.tsx.hbs +0 -153
  1213. package/dist/templates/react/Divider/Divider.css.hbs +0 -12
  1214. package/dist/templates/react/Divider/Divider.jsx.hbs +0 -24
  1215. package/dist/templates/react/Divider/Divider.test.jsx.hbs +0 -16
  1216. package/dist/templates/react/Divider/Divider.test.tsx.hbs +0 -10
  1217. package/dist/templates/react/Divider/Divider.tsx.hbs +0 -64
  1218. package/dist/templates/react/DoughnutChart/DoughnutChart.css.hbs +0 -12
  1219. package/dist/templates/react/DoughnutChart/DoughnutChart.jsx.hbs +0 -56
  1220. package/dist/templates/react/DoughnutChart/DoughnutChart.test.tsx.hbs +0 -10
  1221. package/dist/templates/react/DoughnutChart/DoughnutChart.tsx.hbs +0 -74
  1222. package/dist/templates/react/Drawer/Drawer.css.hbs +0 -23
  1223. package/dist/templates/react/Drawer/Drawer.jsx.hbs +0 -104
  1224. package/dist/templates/react/Drawer/Drawer.test.jsx.hbs +0 -27
  1225. package/dist/templates/react/Drawer/Drawer.test.tsx.hbs +0 -10
  1226. package/dist/templates/react/Drawer/Drawer.tsx.hbs +0 -144
  1227. package/dist/templates/react/Dropdown/Dropdown.css.hbs +0 -15
  1228. package/dist/templates/react/Dropdown/Dropdown.jsx.hbs +0 -78
  1229. package/dist/templates/react/Dropdown/Dropdown.test.tsx.hbs +0 -10
  1230. package/dist/templates/react/Dropdown/Dropdown.tsx.hbs +0 -133
  1231. package/dist/templates/react/DropdownItem/DropdownItem.css.hbs +0 -15
  1232. package/dist/templates/react/DropdownItem/DropdownItem.jsx.hbs +0 -41
  1233. package/dist/templates/react/DropdownItem/DropdownItem.test.tsx.hbs +0 -10
  1234. package/dist/templates/react/DropdownItem/DropdownItem.tsx.hbs +0 -120
  1235. package/dist/templates/react/FileInput/FileInput.css.hbs +0 -24
  1236. package/dist/templates/react/FileInput/FileInput.jsx.hbs +0 -111
  1237. package/dist/templates/react/FileInput/FileInput.test.tsx.hbs +0 -10
  1238. package/dist/templates/react/FileInput/FileInput.tsx.hbs +0 -151
  1239. package/dist/templates/react/FormatBytes/FormatBytes.css.hbs +0 -7
  1240. package/dist/templates/react/FormatBytes/FormatBytes.jsx.hbs +0 -25
  1241. package/dist/templates/react/FormatBytes/FormatBytes.test.jsx.hbs +0 -16
  1242. package/dist/templates/react/FormatBytes/FormatBytes.test.tsx.hbs +0 -10
  1243. package/dist/templates/react/FormatBytes/FormatBytes.tsx.hbs +0 -73
  1244. package/dist/templates/react/FormatDate/FormatDate.css.hbs +0 -7
  1245. package/dist/templates/react/FormatDate/FormatDate.jsx.hbs +0 -18
  1246. package/dist/templates/react/FormatDate/FormatDate.test.tsx.hbs +0 -10
  1247. package/dist/templates/react/FormatDate/FormatDate.tsx.hbs +0 -102
  1248. package/dist/templates/react/FormatNumber/FormatNumber.css.hbs +0 -7
  1249. package/dist/templates/react/FormatNumber/FormatNumber.jsx.hbs +0 -18
  1250. package/dist/templates/react/FormatNumber/FormatNumber.test.jsx.hbs +0 -16
  1251. package/dist/templates/react/FormatNumber/FormatNumber.test.tsx.hbs +0 -10
  1252. package/dist/templates/react/FormatNumber/FormatNumber.tsx.hbs +0 -94
  1253. package/dist/templates/react/Icon/Icon.css.hbs +0 -38
  1254. package/dist/templates/react/Icon/Icon.jsx.hbs +0 -86
  1255. package/dist/templates/react/Icon/Icon.test.jsx.hbs +0 -35
  1256. package/dist/templates/react/Icon/Icon.test.tsx.hbs +0 -10
  1257. package/dist/templates/react/Icon/Icon.tsx.hbs +0 -115
  1258. package/dist/templates/react/Include/Include.css.hbs +0 -7
  1259. package/dist/templates/react/Include/Include.jsx.hbs +0 -40
  1260. package/dist/templates/react/Include/Include.test.jsx.hbs +0 -16
  1261. package/dist/templates/react/Include/Include.test.tsx.hbs +0 -10
  1262. package/dist/templates/react/Include/Include.tsx.hbs +0 -91
  1263. package/dist/templates/react/Input/Input.css.hbs +0 -17
  1264. package/dist/templates/react/Input/Input.jsx.hbs +0 -144
  1265. package/dist/templates/react/Input/Input.test.tsx.hbs +0 -10
  1266. package/dist/templates/react/Input/Input.tsx.hbs +0 -270
  1267. package/dist/templates/react/IntersectionObserver/IntersectionObserver.css.hbs +0 -7
  1268. package/dist/templates/react/IntersectionObserver/IntersectionObserver.jsx.hbs +0 -38
  1269. package/dist/templates/react/IntersectionObserver/IntersectionObserver.test.jsx.hbs +0 -15
  1270. package/dist/templates/react/IntersectionObserver/IntersectionObserver.test.tsx.hbs +0 -10
  1271. package/dist/templates/react/IntersectionObserver/IntersectionObserver.tsx.hbs +0 -88
  1272. package/dist/templates/react/LineChart/LineChart.css.hbs +0 -15
  1273. package/dist/templates/react/LineChart/LineChart.jsx.hbs +0 -66
  1274. package/dist/templates/react/LineChart/LineChart.test.tsx.hbs +0 -10
  1275. package/dist/templates/react/LineChart/LineChart.tsx.hbs +0 -98
  1276. package/dist/templates/react/Markdown/Markdown.css.hbs +0 -10
  1277. package/dist/templates/react/Markdown/Markdown.jsx.hbs +0 -20
  1278. package/dist/templates/react/Markdown/Markdown.test.tsx.hbs +0 -10
  1279. package/dist/templates/react/Markdown/Markdown.tsx.hbs +0 -86
  1280. package/dist/templates/react/MutationObserver/MutationObserver.css.hbs +0 -7
  1281. package/dist/templates/react/MutationObserver/MutationObserver.jsx.hbs +0 -38
  1282. package/dist/templates/react/MutationObserver/MutationObserver.test.tsx.hbs +0 -10
  1283. package/dist/templates/react/MutationObserver/MutationObserver.tsx.hbs +0 -94
  1284. package/dist/templates/react/NumberInput/NumberInput.css.hbs +0 -19
  1285. package/dist/templates/react/NumberInput/NumberInput.jsx.hbs +0 -127
  1286. package/dist/templates/react/NumberInput/NumberInput.test.tsx.hbs +0 -10
  1287. package/dist/templates/react/NumberInput/NumberInput.tsx.hbs +0 -189
  1288. package/dist/templates/react/Option/Option.css.hbs +0 -13
  1289. package/dist/templates/react/Option/Option.jsx.hbs +0 -20
  1290. package/dist/templates/react/Option/Option.test.tsx.hbs +0 -10
  1291. package/dist/templates/react/Option/Option.tsx.hbs +0 -66
  1292. package/dist/templates/react/Page/Page.css.hbs +0 -36
  1293. package/dist/templates/react/Page/Page.jsx.hbs +0 -117
  1294. package/dist/templates/react/Page/Page.test.tsx.hbs +0 -10
  1295. package/dist/templates/react/Page/Page.tsx.hbs +0 -106
  1296. package/dist/templates/react/PieChart/PieChart.css.hbs +0 -12
  1297. package/dist/templates/react/PieChart/PieChart.jsx.hbs +0 -56
  1298. package/dist/templates/react/PieChart/PieChart.test.tsx.hbs +0 -10
  1299. package/dist/templates/react/PieChart/PieChart.tsx.hbs +0 -74
  1300. package/dist/templates/react/PolarAreaChart/PolarAreaChart.css.hbs +0 -13
  1301. package/dist/templates/react/PolarAreaChart/PolarAreaChart.jsx.hbs +0 -56
  1302. package/dist/templates/react/PolarAreaChart/PolarAreaChart.test.tsx.hbs +0 -10
  1303. package/dist/templates/react/PolarAreaChart/PolarAreaChart.tsx.hbs +0 -74
  1304. package/dist/templates/react/Popover/Popover.css.hbs +0 -20
  1305. package/dist/templates/react/Popover/Popover.jsx.hbs +0 -68
  1306. package/dist/templates/react/Popover/Popover.test.tsx.hbs +0 -10
  1307. package/dist/templates/react/Popover/Popover.tsx.hbs +0 -151
  1308. package/dist/templates/react/Popup/Popup.css.hbs +0 -21
  1309. package/dist/templates/react/Popup/Popup.jsx.hbs +0 -45
  1310. package/dist/templates/react/Popup/Popup.test.tsx.hbs +0 -10
  1311. package/dist/templates/react/Popup/Popup.tsx.hbs +0 -139
  1312. package/dist/templates/react/ProgressBar/ProgressBar.css.hbs +0 -17
  1313. package/dist/templates/react/ProgressBar/ProgressBar.jsx.hbs +0 -20
  1314. package/dist/templates/react/ProgressBar/ProgressBar.test.jsx.hbs +0 -16
  1315. package/dist/templates/react/ProgressBar/ProgressBar.test.tsx.hbs +0 -10
  1316. package/dist/templates/react/ProgressBar/ProgressBar.tsx.hbs +0 -63
  1317. package/dist/templates/react/ProgressRing/ProgressRing.css.hbs +0 -21
  1318. package/dist/templates/react/ProgressRing/ProgressRing.jsx.hbs +0 -20
  1319. package/dist/templates/react/ProgressRing/ProgressRing.test.jsx.hbs +0 -16
  1320. package/dist/templates/react/ProgressRing/ProgressRing.test.tsx.hbs +0 -10
  1321. package/dist/templates/react/ProgressRing/ProgressRing.tsx.hbs +0 -60
  1322. package/dist/templates/react/QrCode/QrCode.css.hbs +0 -10
  1323. package/dist/templates/react/QrCode/QrCode.jsx.hbs +0 -18
  1324. package/dist/templates/react/QrCode/QrCode.test.tsx.hbs +0 -10
  1325. package/dist/templates/react/QrCode/QrCode.tsx.hbs +0 -75
  1326. package/dist/templates/react/RadarChart/RadarChart.css.hbs +0 -14
  1327. package/dist/templates/react/RadarChart/RadarChart.jsx.hbs +0 -63
  1328. package/dist/templates/react/RadarChart/RadarChart.test.tsx.hbs +0 -10
  1329. package/dist/templates/react/RadarChart/RadarChart.tsx.hbs +0 -89
  1330. package/dist/templates/react/Radio/Radio.css.hbs +0 -16
  1331. package/dist/templates/react/Radio/Radio.jsx.hbs +0 -20
  1332. package/dist/templates/react/Radio/Radio.test.tsx.hbs +0 -10
  1333. package/dist/templates/react/Radio/Radio.tsx.hbs +0 -94
  1334. package/dist/templates/react/RadioGroup/RadioGroup.css.hbs +0 -14
  1335. package/dist/templates/react/RadioGroup/RadioGroup.jsx.hbs +0 -49
  1336. package/dist/templates/react/RadioGroup/RadioGroup.test.tsx.hbs +0 -10
  1337. package/dist/templates/react/RadioGroup/RadioGroup.tsx.hbs +0 -133
  1338. package/dist/templates/react/Rating/Rating.css.hbs +0 -15
  1339. package/dist/templates/react/Rating/Rating.jsx.hbs +0 -48
  1340. package/dist/templates/react/Rating/Rating.test.tsx.hbs +0 -10
  1341. package/dist/templates/react/Rating/Rating.tsx.hbs +0 -138
  1342. package/dist/templates/react/RelativeTime/RelativeTime.css.hbs +0 -7
  1343. package/dist/templates/react/RelativeTime/RelativeTime.jsx.hbs +0 -18
  1344. package/dist/templates/react/RelativeTime/RelativeTime.test.tsx.hbs +0 -10
  1345. package/dist/templates/react/RelativeTime/RelativeTime.tsx.hbs +0 -74
  1346. package/dist/templates/react/ResizeObserver/ResizeObserver.css.hbs +0 -7
  1347. package/dist/templates/react/ResizeObserver/ResizeObserver.jsx.hbs +0 -38
  1348. package/dist/templates/react/ResizeObserver/ResizeObserver.test.tsx.hbs +0 -10
  1349. package/dist/templates/react/ResizeObserver/ResizeObserver.tsx.hbs +0 -76
  1350. package/dist/templates/react/ScatterChart/ScatterChart.css.hbs +0 -14
  1351. package/dist/templates/react/ScatterChart/ScatterChart.jsx.hbs +0 -60
  1352. package/dist/templates/react/ScatterChart/ScatterChart.test.tsx.hbs +0 -10
  1353. package/dist/templates/react/ScatterChart/ScatterChart.tsx.hbs +0 -88
  1354. package/dist/templates/react/Scroller/Scroller.css.hbs +0 -14
  1355. package/dist/templates/react/Scroller/Scroller.jsx.hbs +0 -20
  1356. package/dist/templates/react/Scroller/Scroller.test.tsx.hbs +0 -10
  1357. package/dist/templates/react/Scroller/Scroller.tsx.hbs +0 -66
  1358. package/dist/templates/react/Select/Select.css.hbs +0 -29
  1359. package/dist/templates/react/Select/Select.jsx.hbs +0 -79
  1360. package/dist/templates/react/Select/Select.test.tsx.hbs +0 -10
  1361. package/dist/templates/react/Select/Select.tsx.hbs +0 -244
  1362. package/dist/templates/react/Skeleton/Skeleton.css.hbs +0 -14
  1363. package/dist/templates/react/Skeleton/Skeleton.jsx.hbs +0 -18
  1364. package/dist/templates/react/Skeleton/Skeleton.test.tsx.hbs +0 -10
  1365. package/dist/templates/react/Skeleton/Skeleton.tsx.hbs +0 -57
  1366. package/dist/templates/react/Slider/Slider.css.hbs +0 -31
  1367. package/dist/templates/react/Slider/Slider.jsx.hbs +0 -50
  1368. package/dist/templates/react/Slider/Slider.test.tsx.hbs +0 -10
  1369. package/dist/templates/react/Slider/Slider.tsx.hbs +0 -189
  1370. package/dist/templates/react/Sparkline/Sparkline.css.hbs +0 -17
  1371. package/dist/templates/react/Sparkline/Sparkline.jsx.hbs +0 -61
  1372. package/dist/templates/react/Sparkline/Sparkline.test.jsx.hbs +0 -15
  1373. package/dist/templates/react/Sparkline/Sparkline.test.tsx.hbs +0 -10
  1374. package/dist/templates/react/Sparkline/Sparkline.tsx.hbs +0 -73
  1375. package/dist/templates/react/Spinner/Spinner.css.hbs +0 -16
  1376. package/dist/templates/react/Spinner/Spinner.jsx.hbs +0 -18
  1377. package/dist/templates/react/Spinner/Spinner.test.tsx.hbs +0 -10
  1378. package/dist/templates/react/Spinner/Spinner.tsx.hbs +0 -53
  1379. package/dist/templates/react/SplitPanel/SplitPanel.css.hbs +0 -19
  1380. package/dist/templates/react/SplitPanel/SplitPanel.jsx.hbs +0 -38
  1381. package/dist/templates/react/SplitPanel/SplitPanel.test.tsx.hbs +0 -10
  1382. package/dist/templates/react/SplitPanel/SplitPanel.tsx.hbs +0 -94
  1383. package/dist/templates/react/Switch/Switch.css.hbs +0 -19
  1384. package/dist/templates/react/Switch/Switch.jsx.hbs +0 -51
  1385. package/dist/templates/react/Switch/Switch.test.tsx.hbs +0 -10
  1386. package/dist/templates/react/Switch/Switch.tsx.hbs +0 -158
  1387. package/dist/templates/react/Tab/Tab.css.hbs +0 -10
  1388. package/dist/templates/react/Tab/Tab.jsx.hbs +0 -20
  1389. package/dist/templates/react/Tab/Tab.test.tsx.hbs +0 -10
  1390. package/dist/templates/react/Tab/Tab.tsx.hbs +0 -60
  1391. package/dist/templates/react/TabGroup/TabGroup.css.hbs +0 -22
  1392. package/dist/templates/react/TabGroup/TabGroup.jsx.hbs +0 -42
  1393. package/dist/templates/react/TabGroup/TabGroup.test.tsx.hbs +0 -10
  1394. package/dist/templates/react/TabGroup/TabGroup.tsx.hbs +0 -94
  1395. package/dist/templates/react/TabPanel/TabPanel.css.hbs +0 -13
  1396. package/dist/templates/react/TabPanel/TabPanel.jsx.hbs +0 -20
  1397. package/dist/templates/react/TabPanel/TabPanel.test.tsx.hbs +0 -10
  1398. package/dist/templates/react/TabPanel/TabPanel.tsx.hbs +0 -60
  1399. package/dist/templates/react/Tag/Tag.css.hbs +0 -13
  1400. package/dist/templates/react/Tag/Tag.jsx.hbs +0 -41
  1401. package/dist/templates/react/Tag/Tag.test.tsx.hbs +0 -10
  1402. package/dist/templates/react/Tag/Tag.tsx.hbs +0 -95
  1403. package/dist/templates/react/Textarea/Textarea.css.hbs +0 -14
  1404. package/dist/templates/react/Textarea/Textarea.jsx.hbs +0 -58
  1405. package/dist/templates/react/Textarea/Textarea.test.tsx.hbs +0 -10
  1406. package/dist/templates/react/Textarea/Textarea.tsx.hbs +0 -209
  1407. package/dist/templates/react/Toast/Toast.css.hbs +0 -14
  1408. package/dist/templates/react/Toast/Toast.jsx.hbs +0 -57
  1409. package/dist/templates/react/Toast/Toast.test.tsx.hbs +0 -10
  1410. package/dist/templates/react/Toast/Toast.tsx.hbs +0 -67
  1411. package/dist/templates/react/ToastItem/ToastItem.css.hbs +0 -21
  1412. package/dist/templates/react/ToastItem/ToastItem.jsx.hbs +0 -82
  1413. package/dist/templates/react/ToastItem/ToastItem.test.jsx.hbs +0 -15
  1414. package/dist/templates/react/ToastItem/ToastItem.test.tsx.hbs +0 -10
  1415. package/dist/templates/react/ToastItem/ToastItem.tsx.hbs +0 -111
  1416. package/dist/templates/react/Tooltip/Tooltip.css.hbs +0 -16
  1417. package/dist/templates/react/Tooltip/Tooltip.jsx.hbs +0 -63
  1418. package/dist/templates/react/Tooltip/Tooltip.test.tsx.hbs +0 -10
  1419. package/dist/templates/react/Tooltip/Tooltip.tsx.hbs +0 -150
  1420. package/dist/templates/react/Tree/Tree.css.hbs +0 -17
  1421. package/dist/templates/react/Tree/Tree.jsx.hbs +0 -41
  1422. package/dist/templates/react/Tree/Tree.test.tsx.hbs +0 -10
  1423. package/dist/templates/react/Tree/Tree.tsx.hbs +0 -76
  1424. package/dist/templates/react/TreeItem/TreeItem.css.hbs +0 -27
  1425. package/dist/templates/react/TreeItem/TreeItem.jsx.hbs +0 -57
  1426. package/dist/templates/react/TreeItem/TreeItem.test.tsx.hbs +0 -10
  1427. package/dist/templates/react/TreeItem/TreeItem.tsx.hbs +0 -142
  1428. package/dist/templates/react/ZoomableFrame/ZoomableFrame.css.hbs +0 -11
  1429. package/dist/templates/react/ZoomableFrame/ZoomableFrame.jsx.hbs +0 -52
  1430. package/dist/templates/react/ZoomableFrame/ZoomableFrame.test.tsx.hbs +0 -10
  1431. package/dist/templates/react/ZoomableFrame/ZoomableFrame.tsx.hbs +0 -147
  1432. package/dist/templates/react/vite-env.d.ts.hbs +0 -21
  1433. package/dist/templates/vue/AnimatedImage/AnimatedImage.css.hbs +0 -11
  1434. package/dist/templates/vue/AnimatedImage/AnimatedImage.js.vue.hbs +0 -60
  1435. package/dist/templates/vue/AnimatedImage/AnimatedImage.test.js.hbs +0 -10
  1436. package/dist/templates/vue/AnimatedImage/AnimatedImage.test.ts.hbs +0 -10
  1437. package/dist/templates/vue/AnimatedImage/AnimatedImage.vue.hbs +0 -66
  1438. package/dist/templates/vue/Animation/Animation.js.vue.hbs +0 -73
  1439. package/dist/templates/vue/Animation/Animation.test.js.hbs +0 -10
  1440. package/dist/templates/vue/Animation/Animation.test.ts.hbs +0 -10
  1441. package/dist/templates/vue/Animation/Animation.vue.hbs +0 -80
  1442. package/dist/templates/vue/Avatar/Avatar.css.hbs +0 -11
  1443. package/dist/templates/vue/Avatar/Avatar.js.vue.hbs +0 -59
  1444. package/dist/templates/vue/Avatar/Avatar.test.js.hbs +0 -10
  1445. package/dist/templates/vue/Avatar/Avatar.test.ts.hbs +0 -10
  1446. package/dist/templates/vue/Avatar/Avatar.vue.hbs +0 -64
  1447. package/dist/templates/vue/Badge/Badge.css.hbs +0 -11
  1448. package/dist/templates/vue/Badge/Badge.js.vue.hbs +0 -42
  1449. package/dist/templates/vue/Badge/Badge.test.js.hbs +0 -10
  1450. package/dist/templates/vue/Badge/Badge.test.ts.hbs +0 -10
  1451. package/dist/templates/vue/Badge/Badge.vue.hbs +0 -43
  1452. package/dist/templates/vue/BarChart/BarChart.css.hbs +0 -11
  1453. package/dist/templates/vue/BarChart/BarChart.js.vue.hbs +0 -52
  1454. package/dist/templates/vue/BarChart/BarChart.test.js.hbs +0 -10
  1455. package/dist/templates/vue/BarChart/BarChart.test.ts.hbs +0 -10
  1456. package/dist/templates/vue/BarChart/BarChart.vue.hbs +0 -53
  1457. package/dist/templates/vue/Breadcrumb/Breadcrumb.css.hbs +0 -11
  1458. package/dist/templates/vue/Breadcrumb/Breadcrumb.js.vue.hbs +0 -39
  1459. package/dist/templates/vue/Breadcrumb/Breadcrumb.test.js.hbs +0 -10
  1460. package/dist/templates/vue/Breadcrumb/Breadcrumb.test.ts.hbs +0 -10
  1461. package/dist/templates/vue/Breadcrumb/Breadcrumb.vue.hbs +0 -40
  1462. package/dist/templates/vue/BreadcrumbItem/BreadcrumbItem.css.hbs +0 -11
  1463. package/dist/templates/vue/BreadcrumbItem/BreadcrumbItem.js.vue.hbs +0 -41
  1464. package/dist/templates/vue/BreadcrumbItem/BreadcrumbItem.test.js.hbs +0 -10
  1465. package/dist/templates/vue/BreadcrumbItem/BreadcrumbItem.test.ts.hbs +0 -10
  1466. package/dist/templates/vue/BreadcrumbItem/BreadcrumbItem.vue.hbs +0 -42
  1467. package/dist/templates/vue/BubbleChart/BubbleChart.css.hbs +0 -11
  1468. package/dist/templates/vue/BubbleChart/BubbleChart.js.vue.hbs +0 -51
  1469. package/dist/templates/vue/BubbleChart/BubbleChart.test.js.hbs +0 -10
  1470. package/dist/templates/vue/BubbleChart/BubbleChart.test.ts.hbs +0 -10
  1471. package/dist/templates/vue/BubbleChart/BubbleChart.vue.hbs +0 -52
  1472. package/dist/templates/vue/Button/Button.css.hbs +0 -20
  1473. package/dist/templates/vue/Button/Button.js.vue.hbs +0 -85
  1474. package/dist/templates/vue/Button/Button.test.js.hbs +0 -10
  1475. package/dist/templates/vue/Button/Button.test.ts.hbs +0 -10
  1476. package/dist/templates/vue/Button/Button.vue.hbs +0 -92
  1477. package/dist/templates/vue/ButtonGroup/ButtonGroup.css.hbs +0 -11
  1478. package/dist/templates/vue/ButtonGroup/ButtonGroup.js.vue.hbs +0 -40
  1479. package/dist/templates/vue/ButtonGroup/ButtonGroup.test.js.hbs +0 -10
  1480. package/dist/templates/vue/ButtonGroup/ButtonGroup.test.ts.hbs +0 -10
  1481. package/dist/templates/vue/ButtonGroup/ButtonGroup.vue.hbs +0 -41
  1482. package/dist/templates/vue/Callout/Callout.css.hbs +0 -11
  1483. package/dist/templates/vue/Callout/Callout.js.vue.hbs +0 -41
  1484. package/dist/templates/vue/Callout/Callout.test.js.hbs +0 -10
  1485. package/dist/templates/vue/Callout/Callout.test.ts.hbs +0 -10
  1486. package/dist/templates/vue/Callout/Callout.vue.hbs +0 -42
  1487. package/dist/templates/vue/Card/Card.css.hbs +0 -17
  1488. package/dist/templates/vue/Card/Card.js.vue.hbs +0 -43
  1489. package/dist/templates/vue/Card/Card.test.js.hbs +0 -10
  1490. package/dist/templates/vue/Card/Card.test.ts.hbs +0 -10
  1491. package/dist/templates/vue/Card/Card.vue.hbs +0 -44
  1492. package/dist/templates/vue/Carousel/Carousel.css.hbs +0 -11
  1493. package/dist/templates/vue/Carousel/Carousel.js.vue.hbs +0 -66
  1494. package/dist/templates/vue/Carousel/Carousel.test.js.hbs +0 -10
  1495. package/dist/templates/vue/Carousel/Carousel.test.ts.hbs +0 -10
  1496. package/dist/templates/vue/Carousel/Carousel.vue.hbs +0 -71
  1497. package/dist/templates/vue/CarouselItem/CarouselItem.css.hbs +0 -11
  1498. package/dist/templates/vue/CarouselItem/CarouselItem.js.vue.hbs +0 -39
  1499. package/dist/templates/vue/CarouselItem/CarouselItem.test.js.hbs +0 -10
  1500. package/dist/templates/vue/CarouselItem/CarouselItem.test.ts.hbs +0 -10
  1501. package/dist/templates/vue/CarouselItem/CarouselItem.vue.hbs +0 -40
  1502. package/dist/templates/vue/Chart/Chart.css.hbs +0 -11
  1503. package/dist/templates/vue/Chart/Chart.js.vue.hbs +0 -52
  1504. package/dist/templates/vue/Chart/Chart.test.js.hbs +0 -10
  1505. package/dist/templates/vue/Chart/Chart.test.ts.hbs +0 -10
  1506. package/dist/templates/vue/Chart/Chart.vue.hbs +0 -53
  1507. package/dist/templates/vue/Checkbox/Checkbox.css.hbs +0 -11
  1508. package/dist/templates/vue/Checkbox/Checkbox.js.vue.hbs +0 -87
  1509. package/dist/templates/vue/Checkbox/Checkbox.test.js.hbs +0 -10
  1510. package/dist/templates/vue/Checkbox/Checkbox.test.ts.hbs +0 -10
  1511. package/dist/templates/vue/Checkbox/Checkbox.vue.hbs +0 -96
  1512. package/dist/templates/vue/ColorPicker/ColorPicker.css.hbs +0 -11
  1513. package/dist/templates/vue/ColorPicker/ColorPicker.js.vue.hbs +0 -110
  1514. package/dist/templates/vue/ColorPicker/ColorPicker.test.js.hbs +0 -10
  1515. package/dist/templates/vue/ColorPicker/ColorPicker.test.ts.hbs +0 -10
  1516. package/dist/templates/vue/ColorPicker/ColorPicker.vue.hbs +0 -123
  1517. package/dist/templates/vue/Combobox/Combobox.css.hbs +0 -11
  1518. package/dist/templates/vue/Combobox/Combobox.js.vue.hbs +0 -120
  1519. package/dist/templates/vue/Combobox/Combobox.test.js.hbs +0 -10
  1520. package/dist/templates/vue/Combobox/Combobox.test.ts.hbs +0 -10
  1521. package/dist/templates/vue/Combobox/Combobox.vue.hbs +0 -136
  1522. package/dist/templates/vue/Comparison/Comparison.css.hbs +0 -11
  1523. package/dist/templates/vue/Comparison/Comparison.js.vue.hbs +0 -55
  1524. package/dist/templates/vue/Comparison/Comparison.test.js.hbs +0 -10
  1525. package/dist/templates/vue/Comparison/Comparison.test.ts.hbs +0 -10
  1526. package/dist/templates/vue/Comparison/Comparison.vue.hbs +0 -60
  1527. package/dist/templates/vue/CopyButton/CopyButton.css.hbs +0 -11
  1528. package/dist/templates/vue/CopyButton/CopyButton.js.vue.hbs +0 -65
  1529. package/dist/templates/vue/CopyButton/CopyButton.test.js.hbs +0 -10
  1530. package/dist/templates/vue/CopyButton/CopyButton.test.ts.hbs +0 -10
  1531. package/dist/templates/vue/CopyButton/CopyButton.vue.hbs +0 -71
  1532. package/dist/templates/vue/Details/Details.css.hbs +0 -11
  1533. package/dist/templates/vue/Details/Details.js.vue.hbs +0 -81
  1534. package/dist/templates/vue/Details/Details.test.js.hbs +0 -10
  1535. package/dist/templates/vue/Details/Details.test.ts.hbs +0 -10
  1536. package/dist/templates/vue/Details/Details.vue.hbs +0 -89
  1537. package/dist/templates/vue/Dialog/Dialog.css.hbs +0 -23
  1538. package/dist/templates/vue/Dialog/Dialog.js.vue.hbs +0 -79
  1539. package/dist/templates/vue/Dialog/Dialog.test.js.hbs +0 -10
  1540. package/dist/templates/vue/Dialog/Dialog.test.ts.hbs +0 -10
  1541. package/dist/templates/vue/Dialog/Dialog.vue.hbs +0 -94
  1542. package/dist/templates/vue/Divider/Divider.css.hbs +0 -11
  1543. package/dist/templates/vue/Divider/Divider.js.vue.hbs +0 -39
  1544. package/dist/templates/vue/Divider/Divider.test.js.hbs +0 -10
  1545. package/dist/templates/vue/Divider/Divider.test.ts.hbs +0 -10
  1546. package/dist/templates/vue/Divider/Divider.vue.hbs +0 -40
  1547. package/dist/templates/vue/DoughnutChart/DoughnutChart.css.hbs +0 -11
  1548. package/dist/templates/vue/DoughnutChart/DoughnutChart.js.vue.hbs +0 -44
  1549. package/dist/templates/vue/DoughnutChart/DoughnutChart.test.js.hbs +0 -10
  1550. package/dist/templates/vue/DoughnutChart/DoughnutChart.test.ts.hbs +0 -10
  1551. package/dist/templates/vue/DoughnutChart/DoughnutChart.vue.hbs +0 -45
  1552. package/dist/templates/vue/Drawer/Drawer.css.hbs +0 -11
  1553. package/dist/templates/vue/Drawer/Drawer.js.vue.hbs +0 -73
  1554. package/dist/templates/vue/Drawer/Drawer.test.js.hbs +0 -10
  1555. package/dist/templates/vue/Drawer/Drawer.test.ts.hbs +0 -10
  1556. package/dist/templates/vue/Drawer/Drawer.vue.hbs +0 -81
  1557. package/dist/templates/vue/Dropdown/Dropdown.css.hbs +0 -11
  1558. package/dist/templates/vue/Dropdown/Dropdown.js.vue.hbs +0 -84
  1559. package/dist/templates/vue/Dropdown/Dropdown.test.js.hbs +0 -10
  1560. package/dist/templates/vue/Dropdown/Dropdown.test.ts.hbs +0 -10
  1561. package/dist/templates/vue/Dropdown/Dropdown.vue.hbs +0 -98
  1562. package/dist/templates/vue/DropdownItem/DropdownItem.css.hbs +0 -11
  1563. package/dist/templates/vue/DropdownItem/DropdownItem.js.vue.hbs +0 -65
  1564. package/dist/templates/vue/DropdownItem/DropdownItem.test.js.hbs +0 -10
  1565. package/dist/templates/vue/DropdownItem/DropdownItem.test.ts.hbs +0 -10
  1566. package/dist/templates/vue/DropdownItem/DropdownItem.vue.hbs +0 -71
  1567. package/dist/templates/vue/FileInput/FileInput.css.hbs +0 -19
  1568. package/dist/templates/vue/FileInput/FileInput.js.vue.hbs +0 -78
  1569. package/dist/templates/vue/FileInput/FileInput.test.js.hbs +0 -10
  1570. package/dist/templates/vue/FileInput/FileInput.test.ts.hbs +0 -10
  1571. package/dist/templates/vue/FileInput/FileInput.vue.hbs +0 -88
  1572. package/dist/templates/vue/FormatBytes/FormatBytes.js.vue.hbs +0 -42
  1573. package/dist/templates/vue/FormatBytes/FormatBytes.test.js.hbs +0 -10
  1574. package/dist/templates/vue/FormatBytes/FormatBytes.test.ts.hbs +0 -10
  1575. package/dist/templates/vue/FormatBytes/FormatBytes.vue.hbs +0 -43
  1576. package/dist/templates/vue/FormatDate/FormatDate.js.vue.hbs +0 -51
  1577. package/dist/templates/vue/FormatDate/FormatDate.test.js.hbs +0 -10
  1578. package/dist/templates/vue/FormatDate/FormatDate.test.ts.hbs +0 -10
  1579. package/dist/templates/vue/FormatDate/FormatDate.vue.hbs +0 -52
  1580. package/dist/templates/vue/FormatNumber/FormatNumber.js.vue.hbs +0 -49
  1581. package/dist/templates/vue/FormatNumber/FormatNumber.test.js.hbs +0 -10
  1582. package/dist/templates/vue/FormatNumber/FormatNumber.test.ts.hbs +0 -10
  1583. package/dist/templates/vue/FormatNumber/FormatNumber.vue.hbs +0 -50
  1584. package/dist/templates/vue/Icon/Icon.css.hbs +0 -11
  1585. package/dist/templates/vue/Icon/Icon.js.vue.hbs +0 -68
  1586. package/dist/templates/vue/Icon/Icon.test.js.hbs +0 -10
  1587. package/dist/templates/vue/Icon/Icon.test.ts.hbs +0 -10
  1588. package/dist/templates/vue/Icon/Icon.vue.hbs +0 -74
  1589. package/dist/templates/vue/Include/Include.js.vue.hbs +0 -60
  1590. package/dist/templates/vue/Include/Include.test.js.hbs +0 -10
  1591. package/dist/templates/vue/Include/Include.test.ts.hbs +0 -10
  1592. package/dist/templates/vue/Include/Include.vue.hbs +0 -66
  1593. package/dist/templates/vue/Input/Input.css.hbs +0 -24
  1594. package/dist/templates/vue/Input/Input.js.vue.hbs +0 -115
  1595. package/dist/templates/vue/Input/Input.test.js.hbs +0 -10
  1596. package/dist/templates/vue/Input/Input.test.ts.hbs +0 -10
  1597. package/dist/templates/vue/Input/Input.vue.hbs +0 -125
  1598. package/dist/templates/vue/IntersectionObserver/IntersectionObserver.js.vue.hbs +0 -59
  1599. package/dist/templates/vue/IntersectionObserver/IntersectionObserver.test.js.hbs +0 -10
  1600. package/dist/templates/vue/IntersectionObserver/IntersectionObserver.test.ts.hbs +0 -10
  1601. package/dist/templates/vue/IntersectionObserver/IntersectionObserver.vue.hbs +0 -64
  1602. package/dist/templates/vue/LineChart/LineChart.css.hbs +0 -11
  1603. package/dist/templates/vue/LineChart/LineChart.js.vue.hbs +0 -51
  1604. package/dist/templates/vue/LineChart/LineChart.test.js.hbs +0 -10
  1605. package/dist/templates/vue/LineChart/LineChart.test.ts.hbs +0 -10
  1606. package/dist/templates/vue/LineChart/LineChart.vue.hbs +0 -52
  1607. package/dist/templates/vue/Markdown/Markdown.css.hbs +0 -10
  1608. package/dist/templates/vue/Markdown/Markdown.js.vue.hbs +0 -40
  1609. package/dist/templates/vue/Markdown/Markdown.test.js.hbs +0 -10
  1610. package/dist/templates/vue/Markdown/Markdown.test.ts.hbs +0 -10
  1611. package/dist/templates/vue/Markdown/Markdown.vue.hbs +0 -49
  1612. package/dist/templates/vue/MutationObserver/MutationObserver.js.vue.hbs +0 -61
  1613. package/dist/templates/vue/MutationObserver/MutationObserver.test.js.hbs +0 -10
  1614. package/dist/templates/vue/MutationObserver/MutationObserver.test.ts.hbs +0 -10
  1615. package/dist/templates/vue/MutationObserver/MutationObserver.vue.hbs +0 -66
  1616. package/dist/templates/vue/NumberInput/NumberInput.css.hbs +0 -19
  1617. package/dist/templates/vue/NumberInput/NumberInput.js.vue.hbs +0 -93
  1618. package/dist/templates/vue/NumberInput/NumberInput.test.js.hbs +0 -10
  1619. package/dist/templates/vue/NumberInput/NumberInput.test.ts.hbs +0 -10
  1620. package/dist/templates/vue/NumberInput/NumberInput.vue.hbs +0 -102
  1621. package/dist/templates/vue/Option/Option.css.hbs +0 -11
  1622. package/dist/templates/vue/Option/Option.js.vue.hbs +0 -42
  1623. package/dist/templates/vue/Option/Option.test.js.hbs +0 -10
  1624. package/dist/templates/vue/Option/Option.test.ts.hbs +0 -10
  1625. package/dist/templates/vue/Option/Option.vue.hbs +0 -43
  1626. package/dist/templates/vue/Page/Page.css.hbs +0 -11
  1627. package/dist/templates/vue/Page/Page.js.vue.hbs +0 -47
  1628. package/dist/templates/vue/Page/Page.test.js.hbs +0 -10
  1629. package/dist/templates/vue/Page/Page.test.ts.hbs +0 -10
  1630. package/dist/templates/vue/Page/Page.vue.hbs +0 -48
  1631. package/dist/templates/vue/PieChart/PieChart.css.hbs +0 -11
  1632. package/dist/templates/vue/PieChart/PieChart.js.vue.hbs +0 -44
  1633. package/dist/templates/vue/PieChart/PieChart.test.js.hbs +0 -10
  1634. package/dist/templates/vue/PieChart/PieChart.test.ts.hbs +0 -10
  1635. package/dist/templates/vue/PieChart/PieChart.vue.hbs +0 -45
  1636. package/dist/templates/vue/PolarAreaChart/PolarAreaChart.css.hbs +0 -11
  1637. package/dist/templates/vue/PolarAreaChart/PolarAreaChart.js.vue.hbs +0 -44
  1638. package/dist/templates/vue/PolarAreaChart/PolarAreaChart.test.js.hbs +0 -10
  1639. package/dist/templates/vue/PolarAreaChart/PolarAreaChart.test.ts.hbs +0 -10
  1640. package/dist/templates/vue/PolarAreaChart/PolarAreaChart.vue.hbs +0 -45
  1641. package/dist/templates/vue/Popover/Popover.css.hbs +0 -11
  1642. package/dist/templates/vue/Popover/Popover.js.vue.hbs +0 -84
  1643. package/dist/templates/vue/Popover/Popover.test.js.hbs +0 -10
  1644. package/dist/templates/vue/Popover/Popover.test.ts.hbs +0 -10
  1645. package/dist/templates/vue/Popover/Popover.vue.hbs +0 -92
  1646. package/dist/templates/vue/Popup/Popup.css.hbs +0 -11
  1647. package/dist/templates/vue/Popup/Popup.js.vue.hbs +0 -73
  1648. package/dist/templates/vue/Popup/Popup.test.js.hbs +0 -10
  1649. package/dist/templates/vue/Popup/Popup.test.ts.hbs +0 -10
  1650. package/dist/templates/vue/Popup/Popup.vue.hbs +0 -78
  1651. package/dist/templates/vue/ProgressBar/ProgressBar.css.hbs +0 -11
  1652. package/dist/templates/vue/ProgressBar/ProgressBar.js.vue.hbs +0 -41
  1653. package/dist/templates/vue/ProgressBar/ProgressBar.test.js.hbs +0 -10
  1654. package/dist/templates/vue/ProgressBar/ProgressBar.test.ts.hbs +0 -10
  1655. package/dist/templates/vue/ProgressBar/ProgressBar.vue.hbs +0 -42
  1656. package/dist/templates/vue/ProgressRing/ProgressRing.css.hbs +0 -11
  1657. package/dist/templates/vue/ProgressRing/ProgressRing.js.vue.hbs +0 -40
  1658. package/dist/templates/vue/ProgressRing/ProgressRing.test.js.hbs +0 -10
  1659. package/dist/templates/vue/ProgressRing/ProgressRing.test.ts.hbs +0 -10
  1660. package/dist/templates/vue/ProgressRing/ProgressRing.vue.hbs +0 -41
  1661. package/dist/templates/vue/QrCode/QrCode.css.hbs +0 -11
  1662. package/dist/templates/vue/QrCode/QrCode.js.vue.hbs +0 -45
  1663. package/dist/templates/vue/QrCode/QrCode.test.js.hbs +0 -10
  1664. package/dist/templates/vue/QrCode/QrCode.test.ts.hbs +0 -10
  1665. package/dist/templates/vue/QrCode/QrCode.vue.hbs +0 -46
  1666. package/dist/templates/vue/RadarChart/RadarChart.css.hbs +0 -11
  1667. package/dist/templates/vue/RadarChart/RadarChart.js.vue.hbs +0 -48
  1668. package/dist/templates/vue/RadarChart/RadarChart.test.js.hbs +0 -10
  1669. package/dist/templates/vue/RadarChart/RadarChart.test.ts.hbs +0 -10
  1670. package/dist/templates/vue/RadarChart/RadarChart.vue.hbs +0 -49
  1671. package/dist/templates/vue/Radio/Radio.css.hbs +0 -11
  1672. package/dist/templates/vue/Radio/Radio.js.vue.hbs +0 -64
  1673. package/dist/templates/vue/Radio/Radio.test.js.hbs +0 -10
  1674. package/dist/templates/vue/Radio/Radio.test.ts.hbs +0 -10
  1675. package/dist/templates/vue/Radio/Radio.vue.hbs +0 -70
  1676. package/dist/templates/vue/RadioGroup/RadioGroup.css.hbs +0 -11
  1677. package/dist/templates/vue/RadioGroup/RadioGroup.js.vue.hbs +0 -81
  1678. package/dist/templates/vue/RadioGroup/RadioGroup.test.js.hbs +0 -10
  1679. package/dist/templates/vue/RadioGroup/RadioGroup.test.ts.hbs +0 -10
  1680. package/dist/templates/vue/RadioGroup/RadioGroup.vue.hbs +0 -88
  1681. package/dist/templates/vue/Rating/Rating.css.hbs +0 -11
  1682. package/dist/templates/vue/Rating/Rating.js.vue.hbs +0 -78
  1683. package/dist/templates/vue/Rating/Rating.test.js.hbs +0 -10
  1684. package/dist/templates/vue/Rating/Rating.test.ts.hbs +0 -10
  1685. package/dist/templates/vue/Rating/Rating.vue.hbs +0 -85
  1686. package/dist/templates/vue/RelativeTime/RelativeTime.js.vue.hbs +0 -43
  1687. package/dist/templates/vue/RelativeTime/RelativeTime.test.js.hbs +0 -10
  1688. package/dist/templates/vue/RelativeTime/RelativeTime.test.ts.hbs +0 -10
  1689. package/dist/templates/vue/RelativeTime/RelativeTime.vue.hbs +0 -44
  1690. package/dist/templates/vue/ResizeObserver/ResizeObserver.js.vue.hbs +0 -55
  1691. package/dist/templates/vue/ResizeObserver/ResizeObserver.test.js.hbs +0 -10
  1692. package/dist/templates/vue/ResizeObserver/ResizeObserver.test.ts.hbs +0 -10
  1693. package/dist/templates/vue/ResizeObserver/ResizeObserver.vue.hbs +0 -60
  1694. package/dist/templates/vue/ScatterChart/ScatterChart.css.hbs +0 -11
  1695. package/dist/templates/vue/ScatterChart/ScatterChart.js.vue.hbs +0 -49
  1696. package/dist/templates/vue/ScatterChart/ScatterChart.test.js.hbs +0 -10
  1697. package/dist/templates/vue/ScatterChart/ScatterChart.test.ts.hbs +0 -10
  1698. package/dist/templates/vue/ScatterChart/ScatterChart.vue.hbs +0 -50
  1699. package/dist/templates/vue/Scroller/Scroller.css.hbs +0 -11
  1700. package/dist/templates/vue/Scroller/Scroller.js.vue.hbs +0 -42
  1701. package/dist/templates/vue/Scroller/Scroller.test.js.hbs +0 -10
  1702. package/dist/templates/vue/Scroller/Scroller.test.ts.hbs +0 -10
  1703. package/dist/templates/vue/Scroller/Scroller.vue.hbs +0 -43
  1704. package/dist/templates/vue/Select/Select.css.hbs +0 -11
  1705. package/dist/templates/vue/Select/Select.js.vue.hbs +0 -113
  1706. package/dist/templates/vue/Select/Select.test.js.hbs +0 -10
  1707. package/dist/templates/vue/Select/Select.test.ts.hbs +0 -10
  1708. package/dist/templates/vue/Select/Select.vue.hbs +0 -127
  1709. package/dist/templates/vue/Skeleton/Skeleton.css.hbs +0 -11
  1710. package/dist/templates/vue/Skeleton/Skeleton.js.vue.hbs +0 -39
  1711. package/dist/templates/vue/Skeleton/Skeleton.test.js.hbs +0 -10
  1712. package/dist/templates/vue/Skeleton/Skeleton.test.ts.hbs +0 -10
  1713. package/dist/templates/vue/Skeleton/Skeleton.vue.hbs +0 -40
  1714. package/dist/templates/vue/Slider/Slider.css.hbs +0 -11
  1715. package/dist/templates/vue/Slider/Slider.js.vue.hbs +0 -95
  1716. package/dist/templates/vue/Slider/Slider.test.js.hbs +0 -10
  1717. package/dist/templates/vue/Slider/Slider.test.ts.hbs +0 -10
  1718. package/dist/templates/vue/Slider/Slider.vue.hbs +0 -104
  1719. package/dist/templates/vue/Sparkline/Sparkline.css.hbs +0 -14
  1720. package/dist/templates/vue/Sparkline/Sparkline.js.vue.hbs +0 -43
  1721. package/dist/templates/vue/Sparkline/Sparkline.test.js.hbs +0 -10
  1722. package/dist/templates/vue/Sparkline/Sparkline.test.ts.hbs +0 -10
  1723. package/dist/templates/vue/Sparkline/Sparkline.vue.hbs +0 -44
  1724. package/dist/templates/vue/Spinner/Spinner.css.hbs +0 -11
  1725. package/dist/templates/vue/Spinner/Spinner.js.vue.hbs +0 -39
  1726. package/dist/templates/vue/Spinner/Spinner.test.js.hbs +0 -10
  1727. package/dist/templates/vue/Spinner/Spinner.test.ts.hbs +0 -10
  1728. package/dist/templates/vue/Spinner/Spinner.vue.hbs +0 -40
  1729. package/dist/templates/vue/SplitPanel/SplitPanel.css.hbs +0 -11
  1730. package/dist/templates/vue/SplitPanel/SplitPanel.js.vue.hbs +0 -61
  1731. package/dist/templates/vue/SplitPanel/SplitPanel.test.js.hbs +0 -10
  1732. package/dist/templates/vue/SplitPanel/SplitPanel.test.ts.hbs +0 -10
  1733. package/dist/templates/vue/SplitPanel/SplitPanel.vue.hbs +0 -66
  1734. package/dist/templates/vue/Switch/Switch.css.hbs +0 -11
  1735. package/dist/templates/vue/Switch/Switch.js.vue.hbs +0 -86
  1736. package/dist/templates/vue/Switch/Switch.test.js.hbs +0 -10
  1737. package/dist/templates/vue/Switch/Switch.test.ts.hbs +0 -10
  1738. package/dist/templates/vue/Switch/Switch.vue.hbs +0 -95
  1739. package/dist/templates/vue/Tab/Tab.css.hbs +0 -11
  1740. package/dist/templates/vue/Tab/Tab.js.vue.hbs +0 -40
  1741. package/dist/templates/vue/Tab/Tab.test.js.hbs +0 -10
  1742. package/dist/templates/vue/Tab/Tab.test.ts.hbs +0 -10
  1743. package/dist/templates/vue/Tab/Tab.vue.hbs +0 -41
  1744. package/dist/templates/vue/TabGroup/TabGroup.css.hbs +0 -11
  1745. package/dist/templates/vue/TabGroup/TabGroup.js.vue.hbs +0 -61
  1746. package/dist/templates/vue/TabGroup/TabGroup.test.js.hbs +0 -10
  1747. package/dist/templates/vue/TabGroup/TabGroup.test.ts.hbs +0 -10
  1748. package/dist/templates/vue/TabGroup/TabGroup.vue.hbs +0 -67
  1749. package/dist/templates/vue/TabPanel/TabPanel.css.hbs +0 -11
  1750. package/dist/templates/vue/TabPanel/TabPanel.js.vue.hbs +0 -40
  1751. package/dist/templates/vue/TabPanel/TabPanel.test.js.hbs +0 -10
  1752. package/dist/templates/vue/TabPanel/TabPanel.test.ts.hbs +0 -10
  1753. package/dist/templates/vue/TabPanel/TabPanel.vue.hbs +0 -41
  1754. package/dist/templates/vue/Tag/Tag.css.hbs +0 -11
  1755. package/dist/templates/vue/Tag/Tag.js.vue.hbs +0 -59
  1756. package/dist/templates/vue/Tag/Tag.test.js.hbs +0 -10
  1757. package/dist/templates/vue/Tag/Tag.test.ts.hbs +0 -10
  1758. package/dist/templates/vue/Tag/Tag.vue.hbs +0 -64
  1759. package/dist/templates/vue/Textarea/Textarea.css.hbs +0 -11
  1760. package/dist/templates/vue/Textarea/Textarea.js.vue.hbs +0 -98
  1761. package/dist/templates/vue/Textarea/Textarea.test.js.hbs +0 -10
  1762. package/dist/templates/vue/Textarea/Textarea.test.ts.hbs +0 -10
  1763. package/dist/templates/vue/Textarea/Textarea.vue.hbs +0 -107
  1764. package/dist/templates/vue/Toast/Toast.css.hbs +0 -11
  1765. package/dist/templates/vue/Toast/Toast.js.vue.hbs +0 -40
  1766. package/dist/templates/vue/Toast/Toast.test.js.hbs +0 -10
  1767. package/dist/templates/vue/Toast/Toast.test.ts.hbs +0 -10
  1768. package/dist/templates/vue/Toast/Toast.vue.hbs +0 -41
  1769. package/dist/templates/vue/ToastItem/ToastItem.css.hbs +0 -11
  1770. package/dist/templates/vue/ToastItem/ToastItem.js.vue.hbs +0 -67
  1771. package/dist/templates/vue/ToastItem/ToastItem.test.js.hbs +0 -10
  1772. package/dist/templates/vue/ToastItem/ToastItem.test.ts.hbs +0 -10
  1773. package/dist/templates/vue/ToastItem/ToastItem.vue.hbs +0 -75
  1774. package/dist/templates/vue/Tooltip/Tooltip.css.hbs +0 -11
  1775. package/dist/templates/vue/Tooltip/Tooltip.js.vue.hbs +0 -85
  1776. package/dist/templates/vue/Tooltip/Tooltip.test.js.hbs +0 -10
  1777. package/dist/templates/vue/Tooltip/Tooltip.test.ts.hbs +0 -10
  1778. package/dist/templates/vue/Tooltip/Tooltip.vue.hbs +0 -93
  1779. package/dist/templates/vue/Tree/Tree.css.hbs +0 -11
  1780. package/dist/templates/vue/Tree/Tree.js.vue.hbs +0 -55
  1781. package/dist/templates/vue/Tree/Tree.test.js.hbs +0 -10
  1782. package/dist/templates/vue/Tree/Tree.test.ts.hbs +0 -10
  1783. package/dist/templates/vue/Tree/Tree.vue.hbs +0 -60
  1784. package/dist/templates/vue/TreeItem/TreeItem.css.hbs +0 -11
  1785. package/dist/templates/vue/TreeItem/TreeItem.js.vue.hbs +0 -77
  1786. package/dist/templates/vue/TreeItem/TreeItem.test.js.hbs +0 -10
  1787. package/dist/templates/vue/TreeItem/TreeItem.test.ts.hbs +0 -10
  1788. package/dist/templates/vue/TreeItem/TreeItem.vue.hbs +0 -87
  1789. package/dist/templates/vue/ZoomableFrame/ZoomableFrame.css.hbs +0 -11
  1790. package/dist/templates/vue/ZoomableFrame/ZoomableFrame.js.vue.hbs +0 -69
  1791. package/dist/templates/vue/ZoomableFrame/ZoomableFrame.test.js.hbs +0 -10
  1792. package/dist/templates/vue/ZoomableFrame/ZoomableFrame.test.ts.hbs +0 -10
  1793. package/dist/templates/vue/ZoomableFrame/ZoomableFrame.vue.hbs +0 -75
  1794. package/dist/tier-4FZLELBX.js +0 -13
  1795. package/templates/angular/AnimatedImage/animated-image.component.css.hbs +0 -7
  1796. package/templates/angular/AnimatedImage/animated-image.component.spec.ts.hbs +0 -26
  1797. package/templates/angular/AnimatedImage/animated-image.component.ts.hbs +0 -67
  1798. package/templates/angular/Animation/animation.component.css.hbs +0 -7
  1799. package/templates/angular/Animation/animation.component.spec.ts.hbs +0 -26
  1800. package/templates/angular/Animation/animation.component.ts.hbs +0 -102
  1801. package/templates/angular/Avatar/avatar.component.css.hbs +0 -7
  1802. package/templates/angular/Avatar/avatar.component.spec.ts.hbs +0 -26
  1803. package/templates/angular/Avatar/avatar.component.ts.hbs +0 -69
  1804. package/templates/angular/Badge/badge.component.css.hbs +0 -7
  1805. package/templates/angular/Badge/badge.component.spec.ts.hbs +0 -26
  1806. package/templates/angular/Badge/badge.component.ts.hbs +0 -54
  1807. package/templates/angular/BarChart/bar-chart.component.css.hbs +0 -7
  1808. package/templates/angular/BarChart/bar-chart.component.spec.ts.hbs +0 -26
  1809. package/templates/angular/BarChart/bar-chart.component.ts.hbs +0 -84
  1810. package/templates/angular/Breadcrumb/breadcrumb.component.css.hbs +0 -7
  1811. package/templates/angular/Breadcrumb/breadcrumb.component.spec.ts.hbs +0 -26
  1812. package/templates/angular/Breadcrumb/breadcrumb.component.ts.hbs +0 -45
  1813. package/templates/angular/BreadcrumbItem/breadcrumb-item.component.css.hbs +0 -7
  1814. package/templates/angular/BreadcrumbItem/breadcrumb-item.component.spec.ts.hbs +0 -26
  1815. package/templates/angular/BreadcrumbItem/breadcrumb-item.component.ts.hbs +0 -51
  1816. package/templates/angular/BubbleChart/bubble-chart.component.css.hbs +0 -7
  1817. package/templates/angular/BubbleChart/bubble-chart.component.spec.ts.hbs +0 -26
  1818. package/templates/angular/BubbleChart/bubble-chart.component.ts.hbs +0 -81
  1819. package/templates/angular/Button/button.component.css.hbs +0 -7
  1820. package/templates/angular/Button/button.component.spec.ts.hbs +0 -26
  1821. package/templates/angular/Button/button.component.ts.hbs +0 -138
  1822. package/templates/angular/ButtonGroup/button-group.component.css.hbs +0 -7
  1823. package/templates/angular/ButtonGroup/button-group.component.spec.ts.hbs +0 -26
  1824. package/templates/angular/ButtonGroup/button-group.component.ts.hbs +0 -48
  1825. package/templates/angular/Callout/callout.component.css.hbs +0 -7
  1826. package/templates/angular/Callout/callout.component.spec.ts.hbs +0 -26
  1827. package/templates/angular/Callout/callout.component.ts.hbs +0 -51
  1828. package/templates/angular/Card/card.component.css.hbs +0 -7
  1829. package/templates/angular/Card/card.component.spec.ts.hbs +0 -26
  1830. package/templates/angular/Card/card.component.ts.hbs +0 -57
  1831. package/templates/angular/Carousel/carousel.component.css.hbs +0 -7
  1832. package/templates/angular/Carousel/carousel.component.spec.ts.hbs +0 -26
  1833. package/templates/angular/Carousel/carousel.component.ts.hbs +0 -91
  1834. package/templates/angular/CarouselItem/carousel-item.component.css.hbs +0 -7
  1835. package/templates/angular/CarouselItem/carousel-item.component.spec.ts.hbs +0 -26
  1836. package/templates/angular/CarouselItem/carousel-item.component.ts.hbs +0 -42
  1837. package/templates/angular/Chart/chart.component.css.hbs +0 -7
  1838. package/templates/angular/Chart/chart.component.spec.ts.hbs +0 -26
  1839. package/templates/angular/Chart/chart.component.ts.hbs +0 -84
  1840. package/templates/angular/Checkbox/checkbox.component.css.hbs +0 -7
  1841. package/templates/angular/Checkbox/checkbox.component.spec.ts.hbs +0 -26
  1842. package/templates/angular/Checkbox/checkbox.component.ts.hbs +0 -151
  1843. package/templates/angular/ColorPicker/color-picker.component.css.hbs +0 -7
  1844. package/templates/angular/ColorPicker/color-picker.component.spec.ts.hbs +0 -26
  1845. package/templates/angular/ColorPicker/color-picker.component.ts.hbs +0 -200
  1846. package/templates/angular/Combobox/combobox.component.css.hbs +0 -7
  1847. package/templates/angular/Combobox/combobox.component.spec.ts.hbs +0 -26
  1848. package/templates/angular/Combobox/combobox.component.ts.hbs +0 -220
  1849. package/templates/angular/Comparison/comparison.component.css.hbs +0 -7
  1850. package/templates/angular/Comparison/comparison.component.spec.ts.hbs +0 -26
  1851. package/templates/angular/Comparison/comparison.component.ts.hbs +0 -57
  1852. package/templates/angular/CopyButton/copy-button.component.css.hbs +0 -7
  1853. package/templates/angular/CopyButton/copy-button.component.spec.ts.hbs +0 -26
  1854. package/templates/angular/CopyButton/copy-button.component.ts.hbs +0 -82
  1855. package/templates/angular/Details/details.component.css.hbs +0 -7
  1856. package/templates/angular/Details/details.component.spec.ts.hbs +0 -26
  1857. package/templates/angular/Details/details.component.ts.hbs +0 -91
  1858. package/templates/angular/Dialog/dialog.component.css.hbs +0 -7
  1859. package/templates/angular/Dialog/dialog.component.spec.ts.hbs +0 -26
  1860. package/templates/angular/Dialog/dialog.component.ts.hbs +0 -85
  1861. package/templates/angular/Divider/divider.component.css.hbs +0 -7
  1862. package/templates/angular/Divider/divider.component.spec.ts.hbs +0 -26
  1863. package/templates/angular/Divider/divider.component.ts.hbs +0 -45
  1864. package/templates/angular/DoughnutChart/doughnut-chart.component.css.hbs +0 -7
  1865. package/templates/angular/DoughnutChart/doughnut-chart.component.spec.ts.hbs +0 -26
  1866. package/templates/angular/DoughnutChart/doughnut-chart.component.ts.hbs +0 -60
  1867. package/templates/angular/Drawer/drawer.component.css.hbs +0 -7
  1868. package/templates/angular/Drawer/drawer.component.spec.ts.hbs +0 -26
  1869. package/templates/angular/Drawer/drawer.component.ts.hbs +0 -88
  1870. package/templates/angular/Dropdown/dropdown.component.css.hbs +0 -7
  1871. package/templates/angular/Dropdown/dropdown.component.spec.ts.hbs +0 -26
  1872. package/templates/angular/Dropdown/dropdown.component.ts.hbs +0 -94
  1873. package/templates/angular/DropdownItem/dropdown-item.component.css.hbs +0 -7
  1874. package/templates/angular/DropdownItem/dropdown-item.component.spec.ts.hbs +0 -26
  1875. package/templates/angular/DropdownItem/dropdown-item.component.ts.hbs +0 -83
  1876. package/templates/angular/FileInput/file-input.component.css.hbs +0 -7
  1877. package/templates/angular/FileInput/file-input.component.spec.ts.hbs +0 -26
  1878. package/templates/angular/FileInput/file-input.component.ts.hbs +0 -145
  1879. package/templates/angular/FormatBytes/format-bytes.component.css.hbs +0 -7
  1880. package/templates/angular/FormatBytes/format-bytes.component.spec.ts.hbs +0 -26
  1881. package/templates/angular/FormatBytes/format-bytes.component.ts.hbs +0 -54
  1882. package/templates/angular/FormatDate/format-date.component.css.hbs +0 -7
  1883. package/templates/angular/FormatDate/format-date.component.spec.ts.hbs +0 -26
  1884. package/templates/angular/FormatDate/format-date.component.ts.hbs +0 -81
  1885. package/templates/angular/FormatNumber/format-number.component.css.hbs +0 -7
  1886. package/templates/angular/FormatNumber/format-number.component.spec.ts.hbs +0 -26
  1887. package/templates/angular/FormatNumber/format-number.component.ts.hbs +0 -75
  1888. package/templates/angular/Icon/icon.component.css.hbs +0 -7
  1889. package/templates/angular/Icon/icon.component.spec.ts.hbs +0 -26
  1890. package/templates/angular/Icon/icon.component.ts.hbs +0 -91
  1891. package/templates/angular/Include/include.component.css.hbs +0 -7
  1892. package/templates/angular/Include/include.component.spec.ts.hbs +0 -26
  1893. package/templates/angular/Include/include.component.ts.hbs +0 -67
  1894. package/templates/angular/Input/input.component.css.hbs +0 -7
  1895. package/templates/angular/Input/input.component.spec.ts.hbs +0 -26
  1896. package/templates/angular/Input/input.component.ts.hbs +0 -230
  1897. package/templates/angular/IntersectionObserver/intersection-observer.component.css.hbs +0 -7
  1898. package/templates/angular/IntersectionObserver/intersection-observer.component.spec.ts.hbs +0 -26
  1899. package/templates/angular/IntersectionObserver/intersection-observer.component.ts.hbs +0 -69
  1900. package/templates/angular/LineChart/line-chart.component.css.hbs +0 -7
  1901. package/templates/angular/LineChart/line-chart.component.spec.ts.hbs +0 -26
  1902. package/templates/angular/LineChart/line-chart.component.ts.hbs +0 -81
  1903. package/templates/angular/Markdown/markdown.component.css.hbs +0 -7
  1904. package/templates/angular/Markdown/markdown.component.spec.ts.hbs +0 -26
  1905. package/templates/angular/Markdown/markdown.component.ts.hbs +0 -61
  1906. package/templates/angular/MutationObserver/mutation-observer.component.css.hbs +0 -7
  1907. package/templates/angular/MutationObserver/mutation-observer.component.spec.ts.hbs +0 -26
  1908. package/templates/angular/MutationObserver/mutation-observer.component.ts.hbs +0 -75
  1909. package/templates/angular/NumberInput/number-input.component.css.hbs +0 -7
  1910. package/templates/angular/NumberInput/number-input.component.spec.ts.hbs +0 -26
  1911. package/templates/angular/NumberInput/number-input.component.ts.hbs +0 -169
  1912. package/templates/angular/Option/option.component.css.hbs +0 -7
  1913. package/templates/angular/Option/option.component.spec.ts.hbs +0 -26
  1914. package/templates/angular/Option/option.component.ts.hbs +0 -54
  1915. package/templates/angular/Page/page.component.css.hbs +0 -7
  1916. package/templates/angular/Page/page.component.spec.ts.hbs +0 -26
  1917. package/templates/angular/Page/page.component.ts.hbs +0 -70
  1918. package/templates/angular/PieChart/pie-chart.component.css.hbs +0 -7
  1919. package/templates/angular/PieChart/pie-chart.component.spec.ts.hbs +0 -26
  1920. package/templates/angular/PieChart/pie-chart.component.ts.hbs +0 -60
  1921. package/templates/angular/PolarAreaChart/polar-area-chart.component.css.hbs +0 -7
  1922. package/templates/angular/PolarAreaChart/polar-area-chart.component.spec.ts.hbs +0 -26
  1923. package/templates/angular/PolarAreaChart/polar-area-chart.component.ts.hbs +0 -60
  1924. package/templates/angular/Popover/popover.component.css.hbs +0 -7
  1925. package/templates/angular/Popover/popover.component.spec.ts.hbs +0 -26
  1926. package/templates/angular/Popover/popover.component.ts.hbs +0 -100
  1927. package/templates/angular/Popup/popup.component.css.hbs +0 -7
  1928. package/templates/angular/Popup/popup.component.spec.ts.hbs +0 -26
  1929. package/templates/angular/Popup/popup.component.ts.hbs +0 -112
  1930. package/templates/angular/ProgressBar/progress-bar.component.css.hbs +0 -7
  1931. package/templates/angular/ProgressBar/progress-bar.component.spec.ts.hbs +0 -26
  1932. package/templates/angular/ProgressBar/progress-bar.component.ts.hbs +0 -51
  1933. package/templates/angular/ProgressRing/progress-ring.component.css.hbs +0 -7
  1934. package/templates/angular/ProgressRing/progress-ring.component.spec.ts.hbs +0 -26
  1935. package/templates/angular/ProgressRing/progress-ring.component.ts.hbs +0 -48
  1936. package/templates/angular/QrCode/qr-code.component.css.hbs +0 -7
  1937. package/templates/angular/QrCode/qr-code.component.spec.ts.hbs +0 -26
  1938. package/templates/angular/QrCode/qr-code.component.ts.hbs +0 -63
  1939. package/templates/angular/RadarChart/radar-chart.component.css.hbs +0 -7
  1940. package/templates/angular/RadarChart/radar-chart.component.spec.ts.hbs +0 -26
  1941. package/templates/angular/RadarChart/radar-chart.component.ts.hbs +0 -72
  1942. package/templates/angular/Radio/radio.component.css.hbs +0 -7
  1943. package/templates/angular/Radio/radio.component.spec.ts.hbs +0 -26
  1944. package/templates/angular/Radio/radio.component.ts.hbs +0 -80
  1945. package/templates/angular/RadioGroup/radio-group.component.css.hbs +0 -7
  1946. package/templates/angular/RadioGroup/radio-group.component.spec.ts.hbs +0 -26
  1947. package/templates/angular/RadioGroup/radio-group.component.ts.hbs +0 -143
  1948. package/templates/angular/Rating/rating.component.css.hbs +0 -7
  1949. package/templates/angular/Rating/rating.component.spec.ts.hbs +0 -26
  1950. package/templates/angular/Rating/rating.component.ts.hbs +0 -137
  1951. package/templates/angular/RelativeTime/relative-time.component.css.hbs +0 -7
  1952. package/templates/angular/RelativeTime/relative-time.component.spec.ts.hbs +0 -26
  1953. package/templates/angular/RelativeTime/relative-time.component.ts.hbs +0 -57
  1954. package/templates/angular/ResizeObserver/resize-observer.component.css.hbs +0 -7
  1955. package/templates/angular/ResizeObserver/resize-observer.component.spec.ts.hbs +0 -26
  1956. package/templates/angular/ResizeObserver/resize-observer.component.ts.hbs +0 -57
  1957. package/templates/angular/ScatterChart/scatter-chart.component.css.hbs +0 -7
  1958. package/templates/angular/ScatterChart/scatter-chart.component.spec.ts.hbs +0 -26
  1959. package/templates/angular/ScatterChart/scatter-chart.component.ts.hbs +0 -75
  1960. package/templates/angular/Scroller/scroller.component.css.hbs +0 -7
  1961. package/templates/angular/Scroller/scroller.component.spec.ts.hbs +0 -26
  1962. package/templates/angular/Scroller/scroller.component.ts.hbs +0 -54
  1963. package/templates/angular/Select/select.component.css.hbs +0 -7
  1964. package/templates/angular/Select/select.component.spec.ts.hbs +0 -26
  1965. package/templates/angular/Select/select.component.ts.hbs +0 -204
  1966. package/templates/angular/Skeleton/skeleton.component.css.hbs +0 -7
  1967. package/templates/angular/Skeleton/skeleton.component.spec.ts.hbs +0 -26
  1968. package/templates/angular/Skeleton/skeleton.component.ts.hbs +0 -45
  1969. package/templates/angular/Slider/slider.component.css.hbs +0 -7
  1970. package/templates/angular/Slider/slider.component.spec.ts.hbs +0 -26
  1971. package/templates/angular/Slider/slider.component.ts.hbs +0 -175
  1972. package/templates/angular/Sparkline/sparkline.component.css.hbs +0 -7
  1973. package/templates/angular/Sparkline/sparkline.component.spec.ts.hbs +0 -26
  1974. package/templates/angular/Sparkline/sparkline.component.ts.hbs +0 -57
  1975. package/templates/angular/Spinner/spinner.component.css.hbs +0 -7
  1976. package/templates/angular/Spinner/spinner.component.spec.ts.hbs +0 -26
  1977. package/templates/angular/Spinner/spinner.component.ts.hbs +0 -42
  1978. package/templates/angular/SplitPanel/split-panel.component.css.hbs +0 -7
  1979. package/templates/angular/SplitPanel/split-panel.component.spec.ts.hbs +0 -26
  1980. package/templates/angular/SplitPanel/split-panel.component.ts.hbs +0 -75
  1981. package/templates/angular/Switch/switch.component.css.hbs +0 -7
  1982. package/templates/angular/Switch/switch.component.spec.ts.hbs +0 -26
  1983. package/templates/angular/Switch/switch.component.ts.hbs +0 -148
  1984. package/templates/angular/Tab/tab.component.css.hbs +0 -7
  1985. package/templates/angular/Tab/tab.component.spec.ts.hbs +0 -26
  1986. package/templates/angular/Tab/tab.component.ts.hbs +0 -48
  1987. package/templates/angular/TabGroup/tab-group.component.css.hbs +0 -7
  1988. package/templates/angular/TabGroup/tab-group.component.spec.ts.hbs +0 -26
  1989. package/templates/angular/TabGroup/tab-group.component.ts.hbs +0 -70
  1990. package/templates/angular/TabPanel/tab-panel.component.css.hbs +0 -7
  1991. package/templates/angular/TabPanel/tab-panel.component.spec.ts.hbs +0 -26
  1992. package/templates/angular/TabPanel/tab-panel.component.ts.hbs +0 -48
  1993. package/templates/angular/Tag/tag.component.css.hbs +0 -7
  1994. package/templates/angular/Tag/tag.component.spec.ts.hbs +0 -26
  1995. package/templates/angular/Tag/tag.component.ts.hbs +0 -69
  1996. package/templates/angular/Textarea/textarea.component.css.hbs +0 -7
  1997. package/templates/angular/Textarea/textarea.component.spec.ts.hbs +0 -26
  1998. package/templates/angular/Textarea/textarea.component.ts.hbs +0 -184
  1999. package/templates/angular/Toast/toast.component.css.hbs +0 -7
  2000. package/templates/angular/Toast/toast.component.spec.ts.hbs +0 -26
  2001. package/templates/angular/Toast/toast.component.ts.hbs +0 -49
  2002. package/templates/angular/ToastItem/toast-item.component.css.hbs +0 -7
  2003. package/templates/angular/ToastItem/toast-item.component.spec.ts.hbs +0 -26
  2004. package/templates/angular/ToastItem/toast-item.component.ts.hbs +0 -79
  2005. package/templates/angular/Tooltip/tooltip.component.css.hbs +0 -7
  2006. package/templates/angular/Tooltip/tooltip.component.spec.ts.hbs +0 -26
  2007. package/templates/angular/Tooltip/tooltip.component.ts.hbs +0 -103
  2008. package/templates/angular/Tree/tree.component.css.hbs +0 -7
  2009. package/templates/angular/Tree/tree.component.spec.ts.hbs +0 -26
  2010. package/templates/angular/Tree/tree.component.ts.hbs +0 -57
  2011. package/templates/angular/TreeItem/tree-item.component.css.hbs +0 -7
  2012. package/templates/angular/TreeItem/tree-item.component.spec.ts.hbs +0 -26
  2013. package/templates/angular/TreeItem/tree-item.component.ts.hbs +0 -91
  2014. package/templates/angular/ZoomableFrame/zoomable-frame.component.css.hbs +0 -7
  2015. package/templates/angular/ZoomableFrame/zoomable-frame.component.spec.ts.hbs +0 -26
  2016. package/templates/angular/ZoomableFrame/zoomable-frame.component.ts.hbs +0 -95
  2017. package/templates/react/AnimatedImage/AnimatedImage.css.hbs +0 -14
  2018. package/templates/react/AnimatedImage/AnimatedImage.jsx.hbs +0 -64
  2019. package/templates/react/AnimatedImage/AnimatedImage.test.jsx.hbs +0 -29
  2020. package/templates/react/AnimatedImage/AnimatedImage.test.tsx.hbs +0 -10
  2021. package/templates/react/AnimatedImage/AnimatedImage.tsx.hbs +0 -91
  2022. package/templates/react/Animation/Animation.css.hbs +0 -7
  2023. package/templates/react/Animation/Animation.jsx.hbs +0 -100
  2024. package/templates/react/Animation/Animation.test.jsx.hbs +0 -37
  2025. package/templates/react/Animation/Animation.test.tsx.hbs +0 -10
  2026. package/templates/react/Animation/Animation.tsx.hbs +0 -144
  2027. package/templates/react/Avatar/Avatar.css.hbs +0 -15
  2028. package/templates/react/Avatar/Avatar.jsx.hbs +0 -65
  2029. package/templates/react/Avatar/Avatar.test.jsx.hbs +0 -33
  2030. package/templates/react/Avatar/Avatar.test.tsx.hbs +0 -10
  2031. package/templates/react/Avatar/Avatar.tsx.hbs +0 -88
  2032. package/templates/react/Badge/Badge.css.hbs +0 -13
  2033. package/templates/react/Badge/Badge.jsx.hbs +0 -52
  2034. package/templates/react/Badge/Badge.test.jsx.hbs +0 -28
  2035. package/templates/react/Badge/Badge.test.tsx.hbs +0 -10
  2036. package/templates/react/Badge/Badge.tsx.hbs +0 -71
  2037. package/templates/react/BarChart/BarChart.css.hbs +0 -15
  2038. package/templates/react/BarChart/BarChart.jsx.hbs +0 -67
  2039. package/templates/react/BarChart/BarChart.test.jsx.hbs +0 -15
  2040. package/templates/react/BarChart/BarChart.test.tsx.hbs +0 -10
  2041. package/templates/react/BarChart/BarChart.tsx.hbs +0 -101
  2042. package/templates/react/Breadcrumb/Breadcrumb.css.hbs +0 -10
  2043. package/templates/react/Breadcrumb/Breadcrumb.jsx.hbs +0 -48
  2044. package/templates/react/Breadcrumb/Breadcrumb.test.jsx.hbs +0 -34
  2045. package/templates/react/Breadcrumb/Breadcrumb.test.tsx.hbs +0 -10
  2046. package/templates/react/Breadcrumb/Breadcrumb.tsx.hbs +0 -57
  2047. package/templates/react/BreadcrumbItem/BreadcrumbItem.css.hbs +0 -13
  2048. package/templates/react/BreadcrumbItem/BreadcrumbItem.jsx.hbs +0 -55
  2049. package/templates/react/BreadcrumbItem/BreadcrumbItem.test.jsx.hbs +0 -36
  2050. package/templates/react/BreadcrumbItem/BreadcrumbItem.test.tsx.hbs +0 -10
  2051. package/templates/react/BreadcrumbItem/BreadcrumbItem.tsx.hbs +0 -63
  2052. package/templates/react/BubbleChart/BubbleChart.css.hbs +0 -15
  2053. package/templates/react/BubbleChart/BubbleChart.jsx.hbs +0 -62
  2054. package/templates/react/BubbleChart/BubbleChart.test.jsx.hbs +0 -15
  2055. package/templates/react/BubbleChart/BubbleChart.test.tsx.hbs +0 -10
  2056. package/templates/react/BubbleChart/BubbleChart.tsx.hbs +0 -94
  2057. package/templates/react/Button/Button.css.hbs +0 -15
  2058. package/templates/react/Button/Button.jsx.hbs +0 -113
  2059. package/templates/react/Button/Button.test.jsx.hbs +0 -23
  2060. package/templates/react/Button/Button.test.tsx.hbs +0 -10
  2061. package/templates/react/Button/Button.tsx.hbs +0 -176
  2062. package/templates/react/ButtonGroup/ButtonGroup.css.hbs +0 -10
  2063. package/templates/react/ButtonGroup/ButtonGroup.jsx.hbs +0 -48
  2064. package/templates/react/ButtonGroup/ButtonGroup.test.jsx.hbs +0 -44
  2065. package/templates/react/ButtonGroup/ButtonGroup.test.tsx.hbs +0 -10
  2066. package/templates/react/ButtonGroup/ButtonGroup.tsx.hbs +0 -60
  2067. package/templates/react/Callout/Callout.css.hbs +0 -11
  2068. package/templates/react/Callout/Callout.jsx.hbs +0 -29
  2069. package/templates/react/Callout/Callout.test.jsx.hbs +0 -27
  2070. package/templates/react/Callout/Callout.test.tsx.hbs +0 -10
  2071. package/templates/react/Callout/Callout.tsx.hbs +0 -63
  2072. package/templates/react/Card/Card.css.hbs +0 -16
  2073. package/templates/react/Card/Card.jsx.hbs +0 -33
  2074. package/templates/react/Card/Card.test.jsx.hbs +0 -23
  2075. package/templates/react/Card/Card.test.tsx.hbs +0 -10
  2076. package/templates/react/Card/Card.tsx.hbs +0 -69
  2077. package/templates/react/Carousel/Carousel.css.hbs +0 -23
  2078. package/templates/react/Carousel/Carousel.jsx.hbs +0 -81
  2079. package/templates/react/Carousel/Carousel.test.jsx.hbs +0 -25
  2080. package/templates/react/Carousel/Carousel.test.tsx.hbs +0 -10
  2081. package/templates/react/Carousel/Carousel.tsx.hbs +0 -128
  2082. package/templates/react/CarouselItem/CarouselItem.css.hbs +0 -10
  2083. package/templates/react/CarouselItem/CarouselItem.jsx.hbs +0 -28
  2084. package/templates/react/CarouselItem/CarouselItem.test.jsx.hbs +0 -21
  2085. package/templates/react/CarouselItem/CarouselItem.test.tsx.hbs +0 -10
  2086. package/templates/react/CarouselItem/CarouselItem.tsx.hbs +0 -53
  2087. package/templates/react/Chart/Chart.css.hbs +0 -17
  2088. package/templates/react/Chart/Chart.jsx.hbs +0 -68
  2089. package/templates/react/Chart/Chart.test.jsx.hbs +0 -15
  2090. package/templates/react/Chart/Chart.test.tsx.hbs +0 -10
  2091. package/templates/react/Chart/Chart.tsx.hbs +0 -102
  2092. package/templates/react/Checkbox/Checkbox.css.hbs +0 -19
  2093. package/templates/react/Checkbox/Checkbox.jsx.hbs +0 -80
  2094. package/templates/react/Checkbox/Checkbox.test.jsx.hbs +0 -25
  2095. package/templates/react/Checkbox/Checkbox.test.tsx.hbs +0 -10
  2096. package/templates/react/Checkbox/Checkbox.tsx.hbs +0 -161
  2097. package/templates/react/ColorPicker/ColorPicker.css.hbs +0 -32
  2098. package/templates/react/ColorPicker/ColorPicker.jsx.hbs +0 -72
  2099. package/templates/react/ColorPicker/ColorPicker.test.jsx.hbs +0 -25
  2100. package/templates/react/ColorPicker/ColorPicker.test.tsx.hbs +0 -10
  2101. package/templates/react/ColorPicker/ColorPicker.tsx.hbs +0 -252
  2102. package/templates/react/Combobox/Combobox.css.hbs +0 -29
  2103. package/templates/react/Combobox/Combobox.jsx.hbs +0 -82
  2104. package/templates/react/Combobox/Combobox.test.jsx.hbs +0 -19
  2105. package/templates/react/Combobox/Combobox.test.tsx.hbs +0 -10
  2106. package/templates/react/Combobox/Combobox.tsx.hbs +0 -266
  2107. package/templates/react/Comparison/Comparison.css.hbs +0 -18
  2108. package/templates/react/Comparison/Comparison.jsx.hbs +0 -27
  2109. package/templates/react/Comparison/Comparison.test.jsx.hbs +0 -27
  2110. package/templates/react/Comparison/Comparison.test.tsx.hbs +0 -10
  2111. package/templates/react/Comparison/Comparison.tsx.hbs +0 -76
  2112. package/templates/react/CopyButton/CopyButton.css.hbs +0 -17
  2113. package/templates/react/CopyButton/CopyButton.jsx.hbs +0 -49
  2114. package/templates/react/CopyButton/CopyButton.test.jsx.hbs +0 -16
  2115. package/templates/react/CopyButton/CopyButton.test.tsx.hbs +0 -10
  2116. package/templates/react/CopyButton/CopyButton.tsx.hbs +0 -106
  2117. package/templates/react/Details/Details.css.hbs +0 -19
  2118. package/templates/react/Details/Details.jsx.hbs +0 -66
  2119. package/templates/react/Details/Details.test.jsx.hbs +0 -27
  2120. package/templates/react/Details/Details.test.tsx.hbs +0 -10
  2121. package/templates/react/Details/Details.tsx.hbs +0 -138
  2122. package/templates/react/Dialog/Dialog.css.hbs +0 -23
  2123. package/templates/react/Dialog/Dialog.jsx.hbs +0 -106
  2124. package/templates/react/Dialog/Dialog.test.jsx.hbs +0 -29
  2125. package/templates/react/Dialog/Dialog.test.tsx.hbs +0 -10
  2126. package/templates/react/Dialog/Dialog.tsx.hbs +0 -153
  2127. package/templates/react/Divider/Divider.css.hbs +0 -12
  2128. package/templates/react/Divider/Divider.jsx.hbs +0 -24
  2129. package/templates/react/Divider/Divider.test.jsx.hbs +0 -16
  2130. package/templates/react/Divider/Divider.test.tsx.hbs +0 -10
  2131. package/templates/react/Divider/Divider.tsx.hbs +0 -64
  2132. package/templates/react/DoughnutChart/DoughnutChart.css.hbs +0 -12
  2133. package/templates/react/DoughnutChart/DoughnutChart.jsx.hbs +0 -56
  2134. package/templates/react/DoughnutChart/DoughnutChart.test.jsx.hbs +0 -15
  2135. package/templates/react/DoughnutChart/DoughnutChart.test.tsx.hbs +0 -10
  2136. package/templates/react/DoughnutChart/DoughnutChart.tsx.hbs +0 -74
  2137. package/templates/react/Drawer/Drawer.css.hbs +0 -23
  2138. package/templates/react/Drawer/Drawer.jsx.hbs +0 -104
  2139. package/templates/react/Drawer/Drawer.test.jsx.hbs +0 -27
  2140. package/templates/react/Drawer/Drawer.test.tsx.hbs +0 -10
  2141. package/templates/react/Drawer/Drawer.tsx.hbs +0 -144
  2142. package/templates/react/Dropdown/Dropdown.css.hbs +0 -15
  2143. package/templates/react/Dropdown/Dropdown.jsx.hbs +0 -78
  2144. package/templates/react/Dropdown/Dropdown.test.jsx.hbs +0 -18
  2145. package/templates/react/Dropdown/Dropdown.test.tsx.hbs +0 -10
  2146. package/templates/react/Dropdown/Dropdown.tsx.hbs +0 -133
  2147. package/templates/react/DropdownItem/DropdownItem.css.hbs +0 -15
  2148. package/templates/react/DropdownItem/DropdownItem.jsx.hbs +0 -41
  2149. package/templates/react/DropdownItem/DropdownItem.test.jsx.hbs +0 -18
  2150. package/templates/react/DropdownItem/DropdownItem.test.tsx.hbs +0 -10
  2151. package/templates/react/DropdownItem/DropdownItem.tsx.hbs +0 -120
  2152. package/templates/react/FileInput/FileInput.css.hbs +0 -24
  2153. package/templates/react/FileInput/FileInput.jsx.hbs +0 -111
  2154. package/templates/react/FileInput/FileInput.test.jsx.hbs +0 -15
  2155. package/templates/react/FileInput/FileInput.test.tsx.hbs +0 -10
  2156. package/templates/react/FileInput/FileInput.tsx.hbs +0 -151
  2157. package/templates/react/FormatBytes/FormatBytes.css.hbs +0 -7
  2158. package/templates/react/FormatBytes/FormatBytes.jsx.hbs +0 -25
  2159. package/templates/react/FormatBytes/FormatBytes.test.jsx.hbs +0 -16
  2160. package/templates/react/FormatBytes/FormatBytes.test.tsx.hbs +0 -10
  2161. package/templates/react/FormatBytes/FormatBytes.tsx.hbs +0 -73
  2162. package/templates/react/FormatDate/FormatDate.css.hbs +0 -7
  2163. package/templates/react/FormatDate/FormatDate.jsx.hbs +0 -18
  2164. package/templates/react/FormatDate/FormatDate.test.jsx.hbs +0 -11
  2165. package/templates/react/FormatDate/FormatDate.test.tsx.hbs +0 -10
  2166. package/templates/react/FormatDate/FormatDate.tsx.hbs +0 -102
  2167. package/templates/react/FormatNumber/FormatNumber.css.hbs +0 -7
  2168. package/templates/react/FormatNumber/FormatNumber.jsx.hbs +0 -18
  2169. package/templates/react/FormatNumber/FormatNumber.test.jsx.hbs +0 -16
  2170. package/templates/react/FormatNumber/FormatNumber.test.tsx.hbs +0 -10
  2171. package/templates/react/FormatNumber/FormatNumber.tsx.hbs +0 -94
  2172. package/templates/react/Icon/Icon.css.hbs +0 -38
  2173. package/templates/react/Icon/Icon.jsx.hbs +0 -86
  2174. package/templates/react/Icon/Icon.test.jsx.hbs +0 -35
  2175. package/templates/react/Icon/Icon.test.tsx.hbs +0 -10
  2176. package/templates/react/Icon/Icon.tsx.hbs +0 -115
  2177. package/templates/react/Include/Include.css.hbs +0 -7
  2178. package/templates/react/Include/Include.jsx.hbs +0 -40
  2179. package/templates/react/Include/Include.test.jsx.hbs +0 -16
  2180. package/templates/react/Include/Include.test.tsx.hbs +0 -10
  2181. package/templates/react/Include/Include.tsx.hbs +0 -91
  2182. package/templates/react/Input/Input.css.hbs +0 -17
  2183. package/templates/react/Input/Input.jsx.hbs +0 -144
  2184. package/templates/react/Input/Input.test.jsx.hbs +0 -23
  2185. package/templates/react/Input/Input.test.tsx.hbs +0 -10
  2186. package/templates/react/Input/Input.tsx.hbs +0 -270
  2187. package/templates/react/IntersectionObserver/IntersectionObserver.css.hbs +0 -7
  2188. package/templates/react/IntersectionObserver/IntersectionObserver.jsx.hbs +0 -38
  2189. package/templates/react/IntersectionObserver/IntersectionObserver.test.jsx.hbs +0 -15
  2190. package/templates/react/IntersectionObserver/IntersectionObserver.test.tsx.hbs +0 -10
  2191. package/templates/react/IntersectionObserver/IntersectionObserver.tsx.hbs +0 -88
  2192. package/templates/react/LineChart/LineChart.css.hbs +0 -15
  2193. package/templates/react/LineChart/LineChart.jsx.hbs +0 -66
  2194. package/templates/react/LineChart/LineChart.test.jsx.hbs +0 -15
  2195. package/templates/react/LineChart/LineChart.test.tsx.hbs +0 -10
  2196. package/templates/react/LineChart/LineChart.tsx.hbs +0 -98
  2197. package/templates/react/Markdown/Markdown.css.hbs +0 -10
  2198. package/templates/react/Markdown/Markdown.jsx.hbs +0 -20
  2199. package/templates/react/Markdown/Markdown.test.jsx.hbs +0 -11
  2200. package/templates/react/Markdown/Markdown.test.tsx.hbs +0 -10
  2201. package/templates/react/Markdown/Markdown.tsx.hbs +0 -86
  2202. package/templates/react/MutationObserver/MutationObserver.css.hbs +0 -7
  2203. package/templates/react/MutationObserver/MutationObserver.jsx.hbs +0 -38
  2204. package/templates/react/MutationObserver/MutationObserver.test.jsx.hbs +0 -15
  2205. package/templates/react/MutationObserver/MutationObserver.test.tsx.hbs +0 -10
  2206. package/templates/react/MutationObserver/MutationObserver.tsx.hbs +0 -94
  2207. package/templates/react/NumberInput/NumberInput.css.hbs +0 -19
  2208. package/templates/react/NumberInput/NumberInput.jsx.hbs +0 -127
  2209. package/templates/react/NumberInput/NumberInput.test.jsx.hbs +0 -15
  2210. package/templates/react/NumberInput/NumberInput.test.tsx.hbs +0 -10
  2211. package/templates/react/NumberInput/NumberInput.tsx.hbs +0 -189
  2212. package/templates/react/Option/Option.css.hbs +0 -13
  2213. package/templates/react/Option/Option.jsx.hbs +0 -20
  2214. package/templates/react/Option/Option.test.jsx.hbs +0 -11
  2215. package/templates/react/Option/Option.test.tsx.hbs +0 -10
  2216. package/templates/react/Option/Option.tsx.hbs +0 -66
  2217. package/templates/react/Page/Page.css.hbs +0 -36
  2218. package/templates/react/Page/Page.jsx.hbs +0 -117
  2219. package/templates/react/Page/Page.test.jsx.hbs +0 -51
  2220. package/templates/react/Page/Page.test.tsx.hbs +0 -10
  2221. package/templates/react/Page/Page.tsx.hbs +0 -106
  2222. package/templates/react/PieChart/PieChart.css.hbs +0 -12
  2223. package/templates/react/PieChart/PieChart.jsx.hbs +0 -56
  2224. package/templates/react/PieChart/PieChart.test.jsx.hbs +0 -15
  2225. package/templates/react/PieChart/PieChart.test.tsx.hbs +0 -10
  2226. package/templates/react/PieChart/PieChart.tsx.hbs +0 -74
  2227. package/templates/react/PolarAreaChart/PolarAreaChart.css.hbs +0 -13
  2228. package/templates/react/PolarAreaChart/PolarAreaChart.jsx.hbs +0 -56
  2229. package/templates/react/PolarAreaChart/PolarAreaChart.test.jsx.hbs +0 -15
  2230. package/templates/react/PolarAreaChart/PolarAreaChart.test.tsx.hbs +0 -10
  2231. package/templates/react/PolarAreaChart/PolarAreaChart.tsx.hbs +0 -74
  2232. package/templates/react/Popover/Popover.css.hbs +0 -20
  2233. package/templates/react/Popover/Popover.jsx.hbs +0 -68
  2234. package/templates/react/Popover/Popover.test.jsx.hbs +0 -18
  2235. package/templates/react/Popover/Popover.test.tsx.hbs +0 -10
  2236. package/templates/react/Popover/Popover.tsx.hbs +0 -151
  2237. package/templates/react/Popup/Popup.css.hbs +0 -21
  2238. package/templates/react/Popup/Popup.jsx.hbs +0 -45
  2239. package/templates/react/Popup/Popup.test.jsx.hbs +0 -17
  2240. package/templates/react/Popup/Popup.test.tsx.hbs +0 -10
  2241. package/templates/react/Popup/Popup.tsx.hbs +0 -139
  2242. package/templates/react/ProgressBar/ProgressBar.css.hbs +0 -17
  2243. package/templates/react/ProgressBar/ProgressBar.jsx.hbs +0 -20
  2244. package/templates/react/ProgressBar/ProgressBar.test.jsx.hbs +0 -16
  2245. package/templates/react/ProgressBar/ProgressBar.test.tsx.hbs +0 -10
  2246. package/templates/react/ProgressBar/ProgressBar.tsx.hbs +0 -63
  2247. package/templates/react/ProgressRing/ProgressRing.css.hbs +0 -21
  2248. package/templates/react/ProgressRing/ProgressRing.jsx.hbs +0 -20
  2249. package/templates/react/ProgressRing/ProgressRing.test.jsx.hbs +0 -16
  2250. package/templates/react/ProgressRing/ProgressRing.test.tsx.hbs +0 -10
  2251. package/templates/react/ProgressRing/ProgressRing.tsx.hbs +0 -60
  2252. package/templates/react/QrCode/QrCode.css.hbs +0 -10
  2253. package/templates/react/QrCode/QrCode.jsx.hbs +0 -18
  2254. package/templates/react/QrCode/QrCode.test.jsx.hbs +0 -11
  2255. package/templates/react/QrCode/QrCode.test.tsx.hbs +0 -10
  2256. package/templates/react/QrCode/QrCode.tsx.hbs +0 -75
  2257. package/templates/react/RadarChart/RadarChart.css.hbs +0 -14
  2258. package/templates/react/RadarChart/RadarChart.jsx.hbs +0 -63
  2259. package/templates/react/RadarChart/RadarChart.test.jsx.hbs +0 -15
  2260. package/templates/react/RadarChart/RadarChart.test.tsx.hbs +0 -10
  2261. package/templates/react/RadarChart/RadarChart.tsx.hbs +0 -89
  2262. package/templates/react/Radio/Radio.css.hbs +0 -16
  2263. package/templates/react/Radio/Radio.jsx.hbs +0 -20
  2264. package/templates/react/Radio/Radio.test.jsx.hbs +0 -11
  2265. package/templates/react/Radio/Radio.test.tsx.hbs +0 -10
  2266. package/templates/react/Radio/Radio.tsx.hbs +0 -94
  2267. package/templates/react/RadioGroup/RadioGroup.css.hbs +0 -14
  2268. package/templates/react/RadioGroup/RadioGroup.jsx.hbs +0 -49
  2269. package/templates/react/RadioGroup/RadioGroup.test.jsx.hbs +0 -17
  2270. package/templates/react/RadioGroup/RadioGroup.test.tsx.hbs +0 -10
  2271. package/templates/react/RadioGroup/RadioGroup.tsx.hbs +0 -133
  2272. package/templates/react/Rating/Rating.css.hbs +0 -15
  2273. package/templates/react/Rating/Rating.jsx.hbs +0 -48
  2274. package/templates/react/Rating/Rating.test.jsx.hbs +0 -18
  2275. package/templates/react/Rating/Rating.test.tsx.hbs +0 -10
  2276. package/templates/react/Rating/Rating.tsx.hbs +0 -138
  2277. package/templates/react/RelativeTime/RelativeTime.css.hbs +0 -7
  2278. package/templates/react/RelativeTime/RelativeTime.jsx.hbs +0 -18
  2279. package/templates/react/RelativeTime/RelativeTime.test.jsx.hbs +0 -11
  2280. package/templates/react/RelativeTime/RelativeTime.test.tsx.hbs +0 -10
  2281. package/templates/react/RelativeTime/RelativeTime.tsx.hbs +0 -74
  2282. package/templates/react/ResizeObserver/ResizeObserver.css.hbs +0 -7
  2283. package/templates/react/ResizeObserver/ResizeObserver.jsx.hbs +0 -38
  2284. package/templates/react/ResizeObserver/ResizeObserver.test.jsx.hbs +0 -15
  2285. package/templates/react/ResizeObserver/ResizeObserver.test.tsx.hbs +0 -10
  2286. package/templates/react/ResizeObserver/ResizeObserver.tsx.hbs +0 -76
  2287. package/templates/react/ScatterChart/ScatterChart.css.hbs +0 -14
  2288. package/templates/react/ScatterChart/ScatterChart.jsx.hbs +0 -60
  2289. package/templates/react/ScatterChart/ScatterChart.test.jsx.hbs +0 -15
  2290. package/templates/react/ScatterChart/ScatterChart.test.tsx.hbs +0 -10
  2291. package/templates/react/ScatterChart/ScatterChart.tsx.hbs +0 -88
  2292. package/templates/react/Scroller/Scroller.css.hbs +0 -14
  2293. package/templates/react/Scroller/Scroller.jsx.hbs +0 -20
  2294. package/templates/react/Scroller/Scroller.test.jsx.hbs +0 -11
  2295. package/templates/react/Scroller/Scroller.test.tsx.hbs +0 -10
  2296. package/templates/react/Scroller/Scroller.tsx.hbs +0 -66
  2297. package/templates/react/Select/Select.css.hbs +0 -29
  2298. package/templates/react/Select/Select.jsx.hbs +0 -79
  2299. package/templates/react/Select/Select.test.jsx.hbs +0 -20
  2300. package/templates/react/Select/Select.test.tsx.hbs +0 -10
  2301. package/templates/react/Select/Select.tsx.hbs +0 -244
  2302. package/templates/react/Skeleton/Skeleton.css.hbs +0 -14
  2303. package/templates/react/Skeleton/Skeleton.jsx.hbs +0 -18
  2304. package/templates/react/Skeleton/Skeleton.test.jsx.hbs +0 -11
  2305. package/templates/react/Skeleton/Skeleton.test.tsx.hbs +0 -10
  2306. package/templates/react/Skeleton/Skeleton.tsx.hbs +0 -57
  2307. package/templates/react/Slider/Slider.css.hbs +0 -31
  2308. package/templates/react/Slider/Slider.jsx.hbs +0 -50
  2309. package/templates/react/Slider/Slider.test.jsx.hbs +0 -19
  2310. package/templates/react/Slider/Slider.test.tsx.hbs +0 -10
  2311. package/templates/react/Slider/Slider.tsx.hbs +0 -189
  2312. package/templates/react/Sparkline/Sparkline.css.hbs +0 -17
  2313. package/templates/react/Sparkline/Sparkline.jsx.hbs +0 -61
  2314. package/templates/react/Sparkline/Sparkline.test.jsx.hbs +0 -15
  2315. package/templates/react/Sparkline/Sparkline.test.tsx.hbs +0 -10
  2316. package/templates/react/Sparkline/Sparkline.tsx.hbs +0 -73
  2317. package/templates/react/Spinner/Spinner.css.hbs +0 -16
  2318. package/templates/react/Spinner/Spinner.jsx.hbs +0 -18
  2319. package/templates/react/Spinner/Spinner.test.jsx.hbs +0 -11
  2320. package/templates/react/Spinner/Spinner.test.tsx.hbs +0 -10
  2321. package/templates/react/Spinner/Spinner.tsx.hbs +0 -53
  2322. package/templates/react/SplitPanel/SplitPanel.css.hbs +0 -19
  2323. package/templates/react/SplitPanel/SplitPanel.jsx.hbs +0 -38
  2324. package/templates/react/SplitPanel/SplitPanel.test.jsx.hbs +0 -16
  2325. package/templates/react/SplitPanel/SplitPanel.test.tsx.hbs +0 -10
  2326. package/templates/react/SplitPanel/SplitPanel.tsx.hbs +0 -94
  2327. package/templates/react/Switch/Switch.css.hbs +0 -19
  2328. package/templates/react/Switch/Switch.jsx.hbs +0 -51
  2329. package/templates/react/Switch/Switch.test.jsx.hbs +0 -19
  2330. package/templates/react/Switch/Switch.test.tsx.hbs +0 -10
  2331. package/templates/react/Switch/Switch.tsx.hbs +0 -158
  2332. package/templates/react/Tab/Tab.css.hbs +0 -10
  2333. package/templates/react/Tab/Tab.jsx.hbs +0 -20
  2334. package/templates/react/Tab/Tab.test.jsx.hbs +0 -11
  2335. package/templates/react/Tab/Tab.test.tsx.hbs +0 -10
  2336. package/templates/react/Tab/Tab.tsx.hbs +0 -60
  2337. package/templates/react/TabGroup/TabGroup.css.hbs +0 -22
  2338. package/templates/react/TabGroup/TabGroup.jsx.hbs +0 -42
  2339. package/templates/react/TabGroup/TabGroup.test.jsx.hbs +0 -11
  2340. package/templates/react/TabGroup/TabGroup.test.tsx.hbs +0 -10
  2341. package/templates/react/TabGroup/TabGroup.tsx.hbs +0 -94
  2342. package/templates/react/TabPanel/TabPanel.css.hbs +0 -13
  2343. package/templates/react/TabPanel/TabPanel.jsx.hbs +0 -20
  2344. package/templates/react/TabPanel/TabPanel.test.jsx.hbs +0 -11
  2345. package/templates/react/TabPanel/TabPanel.test.tsx.hbs +0 -10
  2346. package/templates/react/TabPanel/TabPanel.tsx.hbs +0 -60
  2347. package/templates/react/Tag/Tag.css.hbs +0 -13
  2348. package/templates/react/Tag/Tag.jsx.hbs +0 -41
  2349. package/templates/react/Tag/Tag.test.jsx.hbs +0 -11
  2350. package/templates/react/Tag/Tag.test.tsx.hbs +0 -10
  2351. package/templates/react/Tag/Tag.tsx.hbs +0 -95
  2352. package/templates/react/Textarea/Textarea.css.hbs +0 -14
  2353. package/templates/react/Textarea/Textarea.jsx.hbs +0 -58
  2354. package/templates/react/Textarea/Textarea.test.jsx.hbs +0 -11
  2355. package/templates/react/Textarea/Textarea.test.tsx.hbs +0 -10
  2356. package/templates/react/Textarea/Textarea.tsx.hbs +0 -209
  2357. package/templates/react/Toast/Toast.css.hbs +0 -14
  2358. package/templates/react/Toast/Toast.jsx.hbs +0 -57
  2359. package/templates/react/Toast/Toast.test.jsx.hbs +0 -10
  2360. package/templates/react/Toast/Toast.test.tsx.hbs +0 -10
  2361. package/templates/react/Toast/Toast.tsx.hbs +0 -67
  2362. package/templates/react/ToastItem/ToastItem.css.hbs +0 -21
  2363. package/templates/react/ToastItem/ToastItem.jsx.hbs +0 -82
  2364. package/templates/react/ToastItem/ToastItem.test.jsx.hbs +0 -15
  2365. package/templates/react/ToastItem/ToastItem.test.tsx.hbs +0 -10
  2366. package/templates/react/ToastItem/ToastItem.tsx.hbs +0 -111
  2367. package/templates/react/Tooltip/Tooltip.css.hbs +0 -16
  2368. package/templates/react/Tooltip/Tooltip.jsx.hbs +0 -63
  2369. package/templates/react/Tooltip/Tooltip.test.jsx.hbs +0 -15
  2370. package/templates/react/Tooltip/Tooltip.test.tsx.hbs +0 -10
  2371. package/templates/react/Tooltip/Tooltip.tsx.hbs +0 -150
  2372. package/templates/react/Tree/Tree.css.hbs +0 -17
  2373. package/templates/react/Tree/Tree.jsx.hbs +0 -41
  2374. package/templates/react/Tree/Tree.test.jsx.hbs +0 -11
  2375. package/templates/react/Tree/Tree.test.tsx.hbs +0 -10
  2376. package/templates/react/Tree/Tree.tsx.hbs +0 -76
  2377. package/templates/react/TreeItem/TreeItem.css.hbs +0 -27
  2378. package/templates/react/TreeItem/TreeItem.jsx.hbs +0 -57
  2379. package/templates/react/TreeItem/TreeItem.test.jsx.hbs +0 -11
  2380. package/templates/react/TreeItem/TreeItem.test.tsx.hbs +0 -10
  2381. package/templates/react/TreeItem/TreeItem.tsx.hbs +0 -142
  2382. package/templates/react/ZoomableFrame/ZoomableFrame.css.hbs +0 -11
  2383. package/templates/react/ZoomableFrame/ZoomableFrame.jsx.hbs +0 -52
  2384. package/templates/react/ZoomableFrame/ZoomableFrame.test.jsx.hbs +0 -11
  2385. package/templates/react/ZoomableFrame/ZoomableFrame.test.tsx.hbs +0 -10
  2386. package/templates/react/ZoomableFrame/ZoomableFrame.tsx.hbs +0 -147
  2387. package/templates/react/vite-env.d.ts.hbs +0 -21
  2388. package/templates/vue/AnimatedImage/AnimatedImage.css.hbs +0 -11
  2389. package/templates/vue/AnimatedImage/AnimatedImage.js.vue.hbs +0 -60
  2390. package/templates/vue/AnimatedImage/AnimatedImage.test.js.hbs +0 -10
  2391. package/templates/vue/AnimatedImage/AnimatedImage.test.ts.hbs +0 -10
  2392. package/templates/vue/AnimatedImage/AnimatedImage.vue.hbs +0 -66
  2393. package/templates/vue/Animation/Animation.js.vue.hbs +0 -73
  2394. package/templates/vue/Animation/Animation.test.js.hbs +0 -10
  2395. package/templates/vue/Animation/Animation.test.ts.hbs +0 -10
  2396. package/templates/vue/Animation/Animation.vue.hbs +0 -80
  2397. package/templates/vue/Avatar/Avatar.css.hbs +0 -11
  2398. package/templates/vue/Avatar/Avatar.js.vue.hbs +0 -59
  2399. package/templates/vue/Avatar/Avatar.test.js.hbs +0 -10
  2400. package/templates/vue/Avatar/Avatar.test.ts.hbs +0 -10
  2401. package/templates/vue/Avatar/Avatar.vue.hbs +0 -64
  2402. package/templates/vue/Badge/Badge.css.hbs +0 -11
  2403. package/templates/vue/Badge/Badge.js.vue.hbs +0 -42
  2404. package/templates/vue/Badge/Badge.test.js.hbs +0 -10
  2405. package/templates/vue/Badge/Badge.test.ts.hbs +0 -10
  2406. package/templates/vue/Badge/Badge.vue.hbs +0 -43
  2407. package/templates/vue/BarChart/BarChart.css.hbs +0 -11
  2408. package/templates/vue/BarChart/BarChart.js.vue.hbs +0 -52
  2409. package/templates/vue/BarChart/BarChart.test.js.hbs +0 -10
  2410. package/templates/vue/BarChart/BarChart.test.ts.hbs +0 -10
  2411. package/templates/vue/BarChart/BarChart.vue.hbs +0 -53
  2412. package/templates/vue/Breadcrumb/Breadcrumb.css.hbs +0 -11
  2413. package/templates/vue/Breadcrumb/Breadcrumb.js.vue.hbs +0 -39
  2414. package/templates/vue/Breadcrumb/Breadcrumb.test.js.hbs +0 -10
  2415. package/templates/vue/Breadcrumb/Breadcrumb.test.ts.hbs +0 -10
  2416. package/templates/vue/Breadcrumb/Breadcrumb.vue.hbs +0 -40
  2417. package/templates/vue/BreadcrumbItem/BreadcrumbItem.css.hbs +0 -11
  2418. package/templates/vue/BreadcrumbItem/BreadcrumbItem.js.vue.hbs +0 -41
  2419. package/templates/vue/BreadcrumbItem/BreadcrumbItem.test.js.hbs +0 -10
  2420. package/templates/vue/BreadcrumbItem/BreadcrumbItem.test.ts.hbs +0 -10
  2421. package/templates/vue/BreadcrumbItem/BreadcrumbItem.vue.hbs +0 -42
  2422. package/templates/vue/BubbleChart/BubbleChart.css.hbs +0 -11
  2423. package/templates/vue/BubbleChart/BubbleChart.js.vue.hbs +0 -51
  2424. package/templates/vue/BubbleChart/BubbleChart.test.js.hbs +0 -10
  2425. package/templates/vue/BubbleChart/BubbleChart.test.ts.hbs +0 -10
  2426. package/templates/vue/BubbleChart/BubbleChart.vue.hbs +0 -52
  2427. package/templates/vue/Button/Button.css.hbs +0 -20
  2428. package/templates/vue/Button/Button.js.vue.hbs +0 -85
  2429. package/templates/vue/Button/Button.test.js.hbs +0 -10
  2430. package/templates/vue/Button/Button.test.ts.hbs +0 -10
  2431. package/templates/vue/Button/Button.vue.hbs +0 -92
  2432. package/templates/vue/ButtonGroup/ButtonGroup.css.hbs +0 -11
  2433. package/templates/vue/ButtonGroup/ButtonGroup.js.vue.hbs +0 -40
  2434. package/templates/vue/ButtonGroup/ButtonGroup.test.js.hbs +0 -10
  2435. package/templates/vue/ButtonGroup/ButtonGroup.test.ts.hbs +0 -10
  2436. package/templates/vue/ButtonGroup/ButtonGroup.vue.hbs +0 -41
  2437. package/templates/vue/Callout/Callout.css.hbs +0 -11
  2438. package/templates/vue/Callout/Callout.js.vue.hbs +0 -41
  2439. package/templates/vue/Callout/Callout.test.js.hbs +0 -10
  2440. package/templates/vue/Callout/Callout.test.ts.hbs +0 -10
  2441. package/templates/vue/Callout/Callout.vue.hbs +0 -42
  2442. package/templates/vue/Card/Card.css.hbs +0 -17
  2443. package/templates/vue/Card/Card.js.vue.hbs +0 -43
  2444. package/templates/vue/Card/Card.test.js.hbs +0 -10
  2445. package/templates/vue/Card/Card.test.ts.hbs +0 -10
  2446. package/templates/vue/Card/Card.vue.hbs +0 -44
  2447. package/templates/vue/Carousel/Carousel.css.hbs +0 -11
  2448. package/templates/vue/Carousel/Carousel.js.vue.hbs +0 -66
  2449. package/templates/vue/Carousel/Carousel.test.js.hbs +0 -10
  2450. package/templates/vue/Carousel/Carousel.test.ts.hbs +0 -10
  2451. package/templates/vue/Carousel/Carousel.vue.hbs +0 -71
  2452. package/templates/vue/CarouselItem/CarouselItem.css.hbs +0 -11
  2453. package/templates/vue/CarouselItem/CarouselItem.js.vue.hbs +0 -39
  2454. package/templates/vue/CarouselItem/CarouselItem.test.js.hbs +0 -10
  2455. package/templates/vue/CarouselItem/CarouselItem.test.ts.hbs +0 -10
  2456. package/templates/vue/CarouselItem/CarouselItem.vue.hbs +0 -40
  2457. package/templates/vue/Chart/Chart.css.hbs +0 -11
  2458. package/templates/vue/Chart/Chart.js.vue.hbs +0 -52
  2459. package/templates/vue/Chart/Chart.test.js.hbs +0 -10
  2460. package/templates/vue/Chart/Chart.test.ts.hbs +0 -10
  2461. package/templates/vue/Chart/Chart.vue.hbs +0 -53
  2462. package/templates/vue/Checkbox/Checkbox.css.hbs +0 -11
  2463. package/templates/vue/Checkbox/Checkbox.js.vue.hbs +0 -87
  2464. package/templates/vue/Checkbox/Checkbox.test.js.hbs +0 -10
  2465. package/templates/vue/Checkbox/Checkbox.test.ts.hbs +0 -10
  2466. package/templates/vue/Checkbox/Checkbox.vue.hbs +0 -96
  2467. package/templates/vue/ColorPicker/ColorPicker.css.hbs +0 -11
  2468. package/templates/vue/ColorPicker/ColorPicker.js.vue.hbs +0 -110
  2469. package/templates/vue/ColorPicker/ColorPicker.test.js.hbs +0 -10
  2470. package/templates/vue/ColorPicker/ColorPicker.test.ts.hbs +0 -10
  2471. package/templates/vue/ColorPicker/ColorPicker.vue.hbs +0 -123
  2472. package/templates/vue/Combobox/Combobox.css.hbs +0 -11
  2473. package/templates/vue/Combobox/Combobox.js.vue.hbs +0 -120
  2474. package/templates/vue/Combobox/Combobox.test.js.hbs +0 -10
  2475. package/templates/vue/Combobox/Combobox.test.ts.hbs +0 -10
  2476. package/templates/vue/Combobox/Combobox.vue.hbs +0 -136
  2477. package/templates/vue/Comparison/Comparison.css.hbs +0 -11
  2478. package/templates/vue/Comparison/Comparison.js.vue.hbs +0 -55
  2479. package/templates/vue/Comparison/Comparison.test.js.hbs +0 -10
  2480. package/templates/vue/Comparison/Comparison.test.ts.hbs +0 -10
  2481. package/templates/vue/Comparison/Comparison.vue.hbs +0 -60
  2482. package/templates/vue/CopyButton/CopyButton.css.hbs +0 -11
  2483. package/templates/vue/CopyButton/CopyButton.js.vue.hbs +0 -65
  2484. package/templates/vue/CopyButton/CopyButton.test.js.hbs +0 -10
  2485. package/templates/vue/CopyButton/CopyButton.test.ts.hbs +0 -10
  2486. package/templates/vue/CopyButton/CopyButton.vue.hbs +0 -71
  2487. package/templates/vue/Details/Details.css.hbs +0 -11
  2488. package/templates/vue/Details/Details.js.vue.hbs +0 -81
  2489. package/templates/vue/Details/Details.test.js.hbs +0 -10
  2490. package/templates/vue/Details/Details.test.ts.hbs +0 -10
  2491. package/templates/vue/Details/Details.vue.hbs +0 -89
  2492. package/templates/vue/Dialog/Dialog.css.hbs +0 -23
  2493. package/templates/vue/Dialog/Dialog.js.vue.hbs +0 -79
  2494. package/templates/vue/Dialog/Dialog.test.js.hbs +0 -10
  2495. package/templates/vue/Dialog/Dialog.test.ts.hbs +0 -10
  2496. package/templates/vue/Dialog/Dialog.vue.hbs +0 -94
  2497. package/templates/vue/Divider/Divider.css.hbs +0 -11
  2498. package/templates/vue/Divider/Divider.js.vue.hbs +0 -39
  2499. package/templates/vue/Divider/Divider.test.js.hbs +0 -10
  2500. package/templates/vue/Divider/Divider.test.ts.hbs +0 -10
  2501. package/templates/vue/Divider/Divider.vue.hbs +0 -40
  2502. package/templates/vue/DoughnutChart/DoughnutChart.css.hbs +0 -11
  2503. package/templates/vue/DoughnutChart/DoughnutChart.js.vue.hbs +0 -44
  2504. package/templates/vue/DoughnutChart/DoughnutChart.test.js.hbs +0 -10
  2505. package/templates/vue/DoughnutChart/DoughnutChart.test.ts.hbs +0 -10
  2506. package/templates/vue/DoughnutChart/DoughnutChart.vue.hbs +0 -45
  2507. package/templates/vue/Drawer/Drawer.css.hbs +0 -11
  2508. package/templates/vue/Drawer/Drawer.js.vue.hbs +0 -73
  2509. package/templates/vue/Drawer/Drawer.test.js.hbs +0 -10
  2510. package/templates/vue/Drawer/Drawer.test.ts.hbs +0 -10
  2511. package/templates/vue/Drawer/Drawer.vue.hbs +0 -81
  2512. package/templates/vue/Dropdown/Dropdown.css.hbs +0 -11
  2513. package/templates/vue/Dropdown/Dropdown.js.vue.hbs +0 -84
  2514. package/templates/vue/Dropdown/Dropdown.test.js.hbs +0 -10
  2515. package/templates/vue/Dropdown/Dropdown.test.ts.hbs +0 -10
  2516. package/templates/vue/Dropdown/Dropdown.vue.hbs +0 -98
  2517. package/templates/vue/DropdownItem/DropdownItem.css.hbs +0 -11
  2518. package/templates/vue/DropdownItem/DropdownItem.js.vue.hbs +0 -65
  2519. package/templates/vue/DropdownItem/DropdownItem.test.js.hbs +0 -10
  2520. package/templates/vue/DropdownItem/DropdownItem.test.ts.hbs +0 -10
  2521. package/templates/vue/DropdownItem/DropdownItem.vue.hbs +0 -71
  2522. package/templates/vue/FileInput/FileInput.css.hbs +0 -19
  2523. package/templates/vue/FileInput/FileInput.js.vue.hbs +0 -78
  2524. package/templates/vue/FileInput/FileInput.test.js.hbs +0 -10
  2525. package/templates/vue/FileInput/FileInput.test.ts.hbs +0 -10
  2526. package/templates/vue/FileInput/FileInput.vue.hbs +0 -88
  2527. package/templates/vue/FormatBytes/FormatBytes.js.vue.hbs +0 -42
  2528. package/templates/vue/FormatBytes/FormatBytes.test.js.hbs +0 -10
  2529. package/templates/vue/FormatBytes/FormatBytes.test.ts.hbs +0 -10
  2530. package/templates/vue/FormatBytes/FormatBytes.vue.hbs +0 -43
  2531. package/templates/vue/FormatDate/FormatDate.js.vue.hbs +0 -51
  2532. package/templates/vue/FormatDate/FormatDate.test.js.hbs +0 -10
  2533. package/templates/vue/FormatDate/FormatDate.test.ts.hbs +0 -10
  2534. package/templates/vue/FormatDate/FormatDate.vue.hbs +0 -52
  2535. package/templates/vue/FormatNumber/FormatNumber.js.vue.hbs +0 -49
  2536. package/templates/vue/FormatNumber/FormatNumber.test.js.hbs +0 -10
  2537. package/templates/vue/FormatNumber/FormatNumber.test.ts.hbs +0 -10
  2538. package/templates/vue/FormatNumber/FormatNumber.vue.hbs +0 -50
  2539. package/templates/vue/Icon/Icon.css.hbs +0 -11
  2540. package/templates/vue/Icon/Icon.js.vue.hbs +0 -68
  2541. package/templates/vue/Icon/Icon.test.js.hbs +0 -10
  2542. package/templates/vue/Icon/Icon.test.ts.hbs +0 -10
  2543. package/templates/vue/Icon/Icon.vue.hbs +0 -74
  2544. package/templates/vue/Include/Include.js.vue.hbs +0 -60
  2545. package/templates/vue/Include/Include.test.js.hbs +0 -10
  2546. package/templates/vue/Include/Include.test.ts.hbs +0 -10
  2547. package/templates/vue/Include/Include.vue.hbs +0 -66
  2548. package/templates/vue/Input/Input.css.hbs +0 -24
  2549. package/templates/vue/Input/Input.js.vue.hbs +0 -115
  2550. package/templates/vue/Input/Input.test.js.hbs +0 -10
  2551. package/templates/vue/Input/Input.test.ts.hbs +0 -10
  2552. package/templates/vue/Input/Input.vue.hbs +0 -125
  2553. package/templates/vue/IntersectionObserver/IntersectionObserver.js.vue.hbs +0 -59
  2554. package/templates/vue/IntersectionObserver/IntersectionObserver.test.js.hbs +0 -10
  2555. package/templates/vue/IntersectionObserver/IntersectionObserver.test.ts.hbs +0 -10
  2556. package/templates/vue/IntersectionObserver/IntersectionObserver.vue.hbs +0 -64
  2557. package/templates/vue/LineChart/LineChart.css.hbs +0 -11
  2558. package/templates/vue/LineChart/LineChart.js.vue.hbs +0 -51
  2559. package/templates/vue/LineChart/LineChart.test.js.hbs +0 -10
  2560. package/templates/vue/LineChart/LineChart.test.ts.hbs +0 -10
  2561. package/templates/vue/LineChart/LineChart.vue.hbs +0 -52
  2562. package/templates/vue/Markdown/Markdown.css.hbs +0 -10
  2563. package/templates/vue/Markdown/Markdown.js.vue.hbs +0 -40
  2564. package/templates/vue/Markdown/Markdown.test.js.hbs +0 -10
  2565. package/templates/vue/Markdown/Markdown.test.ts.hbs +0 -10
  2566. package/templates/vue/Markdown/Markdown.vue.hbs +0 -49
  2567. package/templates/vue/MutationObserver/MutationObserver.js.vue.hbs +0 -61
  2568. package/templates/vue/MutationObserver/MutationObserver.test.js.hbs +0 -10
  2569. package/templates/vue/MutationObserver/MutationObserver.test.ts.hbs +0 -10
  2570. package/templates/vue/MutationObserver/MutationObserver.vue.hbs +0 -66
  2571. package/templates/vue/NumberInput/NumberInput.css.hbs +0 -19
  2572. package/templates/vue/NumberInput/NumberInput.js.vue.hbs +0 -93
  2573. package/templates/vue/NumberInput/NumberInput.test.js.hbs +0 -10
  2574. package/templates/vue/NumberInput/NumberInput.test.ts.hbs +0 -10
  2575. package/templates/vue/NumberInput/NumberInput.vue.hbs +0 -102
  2576. package/templates/vue/Option/Option.css.hbs +0 -11
  2577. package/templates/vue/Option/Option.js.vue.hbs +0 -42
  2578. package/templates/vue/Option/Option.test.js.hbs +0 -10
  2579. package/templates/vue/Option/Option.test.ts.hbs +0 -10
  2580. package/templates/vue/Option/Option.vue.hbs +0 -43
  2581. package/templates/vue/Page/Page.css.hbs +0 -11
  2582. package/templates/vue/Page/Page.js.vue.hbs +0 -47
  2583. package/templates/vue/Page/Page.test.js.hbs +0 -10
  2584. package/templates/vue/Page/Page.test.ts.hbs +0 -10
  2585. package/templates/vue/Page/Page.vue.hbs +0 -48
  2586. package/templates/vue/PieChart/PieChart.css.hbs +0 -11
  2587. package/templates/vue/PieChart/PieChart.js.vue.hbs +0 -44
  2588. package/templates/vue/PieChart/PieChart.test.js.hbs +0 -10
  2589. package/templates/vue/PieChart/PieChart.test.ts.hbs +0 -10
  2590. package/templates/vue/PieChart/PieChart.vue.hbs +0 -45
  2591. package/templates/vue/PolarAreaChart/PolarAreaChart.css.hbs +0 -11
  2592. package/templates/vue/PolarAreaChart/PolarAreaChart.js.vue.hbs +0 -44
  2593. package/templates/vue/PolarAreaChart/PolarAreaChart.test.js.hbs +0 -10
  2594. package/templates/vue/PolarAreaChart/PolarAreaChart.test.ts.hbs +0 -10
  2595. package/templates/vue/PolarAreaChart/PolarAreaChart.vue.hbs +0 -45
  2596. package/templates/vue/Popover/Popover.css.hbs +0 -11
  2597. package/templates/vue/Popover/Popover.js.vue.hbs +0 -84
  2598. package/templates/vue/Popover/Popover.test.js.hbs +0 -10
  2599. package/templates/vue/Popover/Popover.test.ts.hbs +0 -10
  2600. package/templates/vue/Popover/Popover.vue.hbs +0 -92
  2601. package/templates/vue/Popup/Popup.css.hbs +0 -11
  2602. package/templates/vue/Popup/Popup.js.vue.hbs +0 -73
  2603. package/templates/vue/Popup/Popup.test.js.hbs +0 -10
  2604. package/templates/vue/Popup/Popup.test.ts.hbs +0 -10
  2605. package/templates/vue/Popup/Popup.vue.hbs +0 -78
  2606. package/templates/vue/ProgressBar/ProgressBar.css.hbs +0 -11
  2607. package/templates/vue/ProgressBar/ProgressBar.js.vue.hbs +0 -41
  2608. package/templates/vue/ProgressBar/ProgressBar.test.js.hbs +0 -10
  2609. package/templates/vue/ProgressBar/ProgressBar.test.ts.hbs +0 -10
  2610. package/templates/vue/ProgressBar/ProgressBar.vue.hbs +0 -42
  2611. package/templates/vue/ProgressRing/ProgressRing.css.hbs +0 -11
  2612. package/templates/vue/ProgressRing/ProgressRing.js.vue.hbs +0 -40
  2613. package/templates/vue/ProgressRing/ProgressRing.test.js.hbs +0 -10
  2614. package/templates/vue/ProgressRing/ProgressRing.test.ts.hbs +0 -10
  2615. package/templates/vue/ProgressRing/ProgressRing.vue.hbs +0 -41
  2616. package/templates/vue/QrCode/QrCode.css.hbs +0 -11
  2617. package/templates/vue/QrCode/QrCode.js.vue.hbs +0 -45
  2618. package/templates/vue/QrCode/QrCode.test.js.hbs +0 -10
  2619. package/templates/vue/QrCode/QrCode.test.ts.hbs +0 -10
  2620. package/templates/vue/QrCode/QrCode.vue.hbs +0 -46
  2621. package/templates/vue/RadarChart/RadarChart.css.hbs +0 -11
  2622. package/templates/vue/RadarChart/RadarChart.js.vue.hbs +0 -48
  2623. package/templates/vue/RadarChart/RadarChart.test.js.hbs +0 -10
  2624. package/templates/vue/RadarChart/RadarChart.test.ts.hbs +0 -10
  2625. package/templates/vue/RadarChart/RadarChart.vue.hbs +0 -49
  2626. package/templates/vue/Radio/Radio.css.hbs +0 -11
  2627. package/templates/vue/Radio/Radio.js.vue.hbs +0 -64
  2628. package/templates/vue/Radio/Radio.test.js.hbs +0 -10
  2629. package/templates/vue/Radio/Radio.test.ts.hbs +0 -10
  2630. package/templates/vue/Radio/Radio.vue.hbs +0 -70
  2631. package/templates/vue/RadioGroup/RadioGroup.css.hbs +0 -11
  2632. package/templates/vue/RadioGroup/RadioGroup.js.vue.hbs +0 -81
  2633. package/templates/vue/RadioGroup/RadioGroup.test.js.hbs +0 -10
  2634. package/templates/vue/RadioGroup/RadioGroup.test.ts.hbs +0 -10
  2635. package/templates/vue/RadioGroup/RadioGroup.vue.hbs +0 -88
  2636. package/templates/vue/Rating/Rating.css.hbs +0 -11
  2637. package/templates/vue/Rating/Rating.js.vue.hbs +0 -78
  2638. package/templates/vue/Rating/Rating.test.js.hbs +0 -10
  2639. package/templates/vue/Rating/Rating.test.ts.hbs +0 -10
  2640. package/templates/vue/Rating/Rating.vue.hbs +0 -85
  2641. package/templates/vue/RelativeTime/RelativeTime.js.vue.hbs +0 -43
  2642. package/templates/vue/RelativeTime/RelativeTime.test.js.hbs +0 -10
  2643. package/templates/vue/RelativeTime/RelativeTime.test.ts.hbs +0 -10
  2644. package/templates/vue/RelativeTime/RelativeTime.vue.hbs +0 -44
  2645. package/templates/vue/ResizeObserver/ResizeObserver.js.vue.hbs +0 -55
  2646. package/templates/vue/ResizeObserver/ResizeObserver.test.js.hbs +0 -10
  2647. package/templates/vue/ResizeObserver/ResizeObserver.test.ts.hbs +0 -10
  2648. package/templates/vue/ResizeObserver/ResizeObserver.vue.hbs +0 -60
  2649. package/templates/vue/ScatterChart/ScatterChart.css.hbs +0 -11
  2650. package/templates/vue/ScatterChart/ScatterChart.js.vue.hbs +0 -49
  2651. package/templates/vue/ScatterChart/ScatterChart.test.js.hbs +0 -10
  2652. package/templates/vue/ScatterChart/ScatterChart.test.ts.hbs +0 -10
  2653. package/templates/vue/ScatterChart/ScatterChart.vue.hbs +0 -50
  2654. package/templates/vue/Scroller/Scroller.css.hbs +0 -11
  2655. package/templates/vue/Scroller/Scroller.js.vue.hbs +0 -42
  2656. package/templates/vue/Scroller/Scroller.test.js.hbs +0 -10
  2657. package/templates/vue/Scroller/Scroller.test.ts.hbs +0 -10
  2658. package/templates/vue/Scroller/Scroller.vue.hbs +0 -43
  2659. package/templates/vue/Select/Select.css.hbs +0 -11
  2660. package/templates/vue/Select/Select.js.vue.hbs +0 -113
  2661. package/templates/vue/Select/Select.test.js.hbs +0 -10
  2662. package/templates/vue/Select/Select.test.ts.hbs +0 -10
  2663. package/templates/vue/Select/Select.vue.hbs +0 -127
  2664. package/templates/vue/Skeleton/Skeleton.css.hbs +0 -11
  2665. package/templates/vue/Skeleton/Skeleton.js.vue.hbs +0 -39
  2666. package/templates/vue/Skeleton/Skeleton.test.js.hbs +0 -10
  2667. package/templates/vue/Skeleton/Skeleton.test.ts.hbs +0 -10
  2668. package/templates/vue/Skeleton/Skeleton.vue.hbs +0 -40
  2669. package/templates/vue/Slider/Slider.css.hbs +0 -11
  2670. package/templates/vue/Slider/Slider.js.vue.hbs +0 -95
  2671. package/templates/vue/Slider/Slider.test.js.hbs +0 -10
  2672. package/templates/vue/Slider/Slider.test.ts.hbs +0 -10
  2673. package/templates/vue/Slider/Slider.vue.hbs +0 -104
  2674. package/templates/vue/Sparkline/Sparkline.css.hbs +0 -14
  2675. package/templates/vue/Sparkline/Sparkline.js.vue.hbs +0 -43
  2676. package/templates/vue/Sparkline/Sparkline.test.js.hbs +0 -10
  2677. package/templates/vue/Sparkline/Sparkline.test.ts.hbs +0 -10
  2678. package/templates/vue/Sparkline/Sparkline.vue.hbs +0 -44
  2679. package/templates/vue/Spinner/Spinner.css.hbs +0 -11
  2680. package/templates/vue/Spinner/Spinner.js.vue.hbs +0 -39
  2681. package/templates/vue/Spinner/Spinner.test.js.hbs +0 -10
  2682. package/templates/vue/Spinner/Spinner.test.ts.hbs +0 -10
  2683. package/templates/vue/Spinner/Spinner.vue.hbs +0 -40
  2684. package/templates/vue/SplitPanel/SplitPanel.css.hbs +0 -11
  2685. package/templates/vue/SplitPanel/SplitPanel.js.vue.hbs +0 -61
  2686. package/templates/vue/SplitPanel/SplitPanel.test.js.hbs +0 -10
  2687. package/templates/vue/SplitPanel/SplitPanel.test.ts.hbs +0 -10
  2688. package/templates/vue/SplitPanel/SplitPanel.vue.hbs +0 -66
  2689. package/templates/vue/Switch/Switch.css.hbs +0 -11
  2690. package/templates/vue/Switch/Switch.js.vue.hbs +0 -86
  2691. package/templates/vue/Switch/Switch.test.js.hbs +0 -10
  2692. package/templates/vue/Switch/Switch.test.ts.hbs +0 -10
  2693. package/templates/vue/Switch/Switch.vue.hbs +0 -95
  2694. package/templates/vue/Tab/Tab.css.hbs +0 -11
  2695. package/templates/vue/Tab/Tab.js.vue.hbs +0 -40
  2696. package/templates/vue/Tab/Tab.test.js.hbs +0 -10
  2697. package/templates/vue/Tab/Tab.test.ts.hbs +0 -10
  2698. package/templates/vue/Tab/Tab.vue.hbs +0 -41
  2699. package/templates/vue/TabGroup/TabGroup.css.hbs +0 -11
  2700. package/templates/vue/TabGroup/TabGroup.js.vue.hbs +0 -61
  2701. package/templates/vue/TabGroup/TabGroup.test.js.hbs +0 -10
  2702. package/templates/vue/TabGroup/TabGroup.test.ts.hbs +0 -10
  2703. package/templates/vue/TabGroup/TabGroup.vue.hbs +0 -67
  2704. package/templates/vue/TabPanel/TabPanel.css.hbs +0 -11
  2705. package/templates/vue/TabPanel/TabPanel.js.vue.hbs +0 -40
  2706. package/templates/vue/TabPanel/TabPanel.test.js.hbs +0 -10
  2707. package/templates/vue/TabPanel/TabPanel.test.ts.hbs +0 -10
  2708. package/templates/vue/TabPanel/TabPanel.vue.hbs +0 -41
  2709. package/templates/vue/Tag/Tag.css.hbs +0 -11
  2710. package/templates/vue/Tag/Tag.js.vue.hbs +0 -59
  2711. package/templates/vue/Tag/Tag.test.js.hbs +0 -10
  2712. package/templates/vue/Tag/Tag.test.ts.hbs +0 -10
  2713. package/templates/vue/Tag/Tag.vue.hbs +0 -64
  2714. package/templates/vue/Textarea/Textarea.css.hbs +0 -11
  2715. package/templates/vue/Textarea/Textarea.js.vue.hbs +0 -98
  2716. package/templates/vue/Textarea/Textarea.test.js.hbs +0 -10
  2717. package/templates/vue/Textarea/Textarea.test.ts.hbs +0 -10
  2718. package/templates/vue/Textarea/Textarea.vue.hbs +0 -107
  2719. package/templates/vue/Toast/Toast.css.hbs +0 -11
  2720. package/templates/vue/Toast/Toast.js.vue.hbs +0 -40
  2721. package/templates/vue/Toast/Toast.test.js.hbs +0 -10
  2722. package/templates/vue/Toast/Toast.test.ts.hbs +0 -10
  2723. package/templates/vue/Toast/Toast.vue.hbs +0 -41
  2724. package/templates/vue/ToastItem/ToastItem.css.hbs +0 -11
  2725. package/templates/vue/ToastItem/ToastItem.js.vue.hbs +0 -67
  2726. package/templates/vue/ToastItem/ToastItem.test.js.hbs +0 -10
  2727. package/templates/vue/ToastItem/ToastItem.test.ts.hbs +0 -10
  2728. package/templates/vue/ToastItem/ToastItem.vue.hbs +0 -75
  2729. package/templates/vue/Tooltip/Tooltip.css.hbs +0 -11
  2730. package/templates/vue/Tooltip/Tooltip.js.vue.hbs +0 -85
  2731. package/templates/vue/Tooltip/Tooltip.test.js.hbs +0 -10
  2732. package/templates/vue/Tooltip/Tooltip.test.ts.hbs +0 -10
  2733. package/templates/vue/Tooltip/Tooltip.vue.hbs +0 -93
  2734. package/templates/vue/Tree/Tree.css.hbs +0 -11
  2735. package/templates/vue/Tree/Tree.js.vue.hbs +0 -55
  2736. package/templates/vue/Tree/Tree.test.js.hbs +0 -10
  2737. package/templates/vue/Tree/Tree.test.ts.hbs +0 -10
  2738. package/templates/vue/Tree/Tree.vue.hbs +0 -60
  2739. package/templates/vue/TreeItem/TreeItem.css.hbs +0 -11
  2740. package/templates/vue/TreeItem/TreeItem.js.vue.hbs +0 -77
  2741. package/templates/vue/TreeItem/TreeItem.test.js.hbs +0 -10
  2742. package/templates/vue/TreeItem/TreeItem.test.ts.hbs +0 -10
  2743. package/templates/vue/TreeItem/TreeItem.vue.hbs +0 -87
  2744. package/templates/vue/ZoomableFrame/ZoomableFrame.css.hbs +0 -11
  2745. package/templates/vue/ZoomableFrame/ZoomableFrame.js.vue.hbs +0 -69
  2746. package/templates/vue/ZoomableFrame/ZoomableFrame.test.js.hbs +0 -10
  2747. package/templates/vue/ZoomableFrame/ZoomableFrame.test.ts.hbs +0 -10
  2748. package/templates/vue/ZoomableFrame/ZoomableFrame.vue.hbs +0 -75
  2749. /package/dist/{tier-4FZLELBX.js.map → project-config-D3FYPYTX.js.map} +0 -0
  2750. /package/{dist/templates/angular/Animation/animation.component.css.hbs → templates/angular/Animation/animation.component.css} +0 -0
  2751. /package/{dist/templates/angular/FormatBytes/format-bytes.component.css.hbs → templates/angular/FormatBytes/format-bytes.component.css} +0 -0
  2752. /package/{dist/templates/angular/FormatDate/format-date.component.css.hbs → templates/angular/FormatDate/format-date.component.css} +0 -0
  2753. /package/{dist/templates/angular/FormatNumber/format-number.component.css.hbs → templates/angular/FormatNumber/format-number.component.css} +0 -0
  2754. /package/{dist/templates/angular/Include/include.component.css.hbs → templates/angular/Include/include.component.css} +0 -0
  2755. /package/{dist/templates/angular/IntersectionObserver/intersection-observer.component.css.hbs → templates/angular/IntersectionObserver/intersection-observer.component.css} +0 -0
  2756. /package/{dist/templates/angular/Markdown/markdown.component.css.hbs → templates/angular/Markdown/markdown.component.css} +0 -0
  2757. /package/{dist/templates/angular/MutationObserver/mutation-observer.component.css.hbs → templates/angular/MutationObserver/mutation-observer.component.css} +0 -0
  2758. /package/{dist/templates/angular/RelativeTime/relative-time.component.css.hbs → templates/angular/RelativeTime/relative-time.component.css} +0 -0
  2759. /package/{dist/templates/angular/ResizeObserver/resize-observer.component.css.hbs → templates/angular/ResizeObserver/resize-observer.component.css} +0 -0
  2760. /package/{dist/templates/react/AnimatedImage/AnimatedImage.test.jsx.hbs → templates/react/AnimatedImage/AnimatedImage.test.jsx} +0 -0
  2761. /package/{dist/templates/vue/Animation/Animation.css.hbs → templates/react/Animation/Animation.css} +0 -0
  2762. /package/{dist/templates/react/Animation/Animation.test.jsx.hbs → templates/react/Animation/Animation.test.jsx} +0 -0
  2763. /package/{dist/templates/react/Avatar/Avatar.test.jsx.hbs → templates/react/Avatar/Avatar.test.jsx} +0 -0
  2764. /package/{dist/templates/react/Badge/Badge.test.jsx.hbs → templates/react/Badge/Badge.test.jsx} +0 -0
  2765. /package/{dist/templates/react/BarChart/BarChart.test.jsx.hbs → templates/react/BarChart/BarChart.test.jsx} +0 -0
  2766. /package/{dist/templates/react/Breadcrumb/Breadcrumb.test.jsx.hbs → templates/react/Breadcrumb/Breadcrumb.test.jsx} +0 -0
  2767. /package/{dist/templates/react/BreadcrumbItem/BreadcrumbItem.test.jsx.hbs → templates/react/BreadcrumbItem/BreadcrumbItem.test.jsx} +0 -0
  2768. /package/{dist/templates/react/BubbleChart/BubbleChart.test.jsx.hbs → templates/react/BubbleChart/BubbleChart.test.jsx} +0 -0
  2769. /package/{dist/templates/react/Button/Button.test.jsx.hbs → templates/react/Button/Button.test.jsx} +0 -0
  2770. /package/{dist/templates/react/ButtonGroup/ButtonGroup.test.jsx.hbs → templates/react/ButtonGroup/ButtonGroup.test.jsx} +0 -0
  2771. /package/{dist/templates/react/Card/Card.test.jsx.hbs → templates/react/Card/Card.test.jsx} +0 -0
  2772. /package/{dist/templates/react/Carousel/Carousel.test.jsx.hbs → templates/react/Carousel/Carousel.test.jsx} +0 -0
  2773. /package/{dist/templates/react/CarouselItem/CarouselItem.test.jsx.hbs → templates/react/CarouselItem/CarouselItem.test.jsx} +0 -0
  2774. /package/{dist/templates/react/Chart/Chart.test.jsx.hbs → templates/react/Chart/Chart.test.jsx} +0 -0
  2775. /package/{dist/templates/react/Checkbox/Checkbox.test.jsx.hbs → templates/react/Checkbox/Checkbox.test.jsx} +0 -0
  2776. /package/{dist/templates/react/ColorPicker/ColorPicker.test.jsx.hbs → templates/react/ColorPicker/ColorPicker.test.jsx} +0 -0
  2777. /package/{dist/templates/react/Combobox/Combobox.test.jsx.hbs → templates/react/Combobox/Combobox.test.jsx} +0 -0
  2778. /package/{dist/templates/react/Comparison/Comparison.test.jsx.hbs → templates/react/Comparison/Comparison.test.jsx} +0 -0
  2779. /package/{dist/templates/react/DoughnutChart/DoughnutChart.test.jsx.hbs → templates/react/DoughnutChart/DoughnutChart.test.jsx} +0 -0
  2780. /package/{dist/templates/react/Dropdown/Dropdown.test.jsx.hbs → templates/react/Dropdown/Dropdown.test.jsx} +0 -0
  2781. /package/{dist/templates/react/DropdownItem/DropdownItem.test.jsx.hbs → templates/react/DropdownItem/DropdownItem.test.jsx} +0 -0
  2782. /package/{dist/templates/react/FileInput/FileInput.test.jsx.hbs → templates/react/FileInput/FileInput.test.jsx} +0 -0
  2783. /package/{dist/templates/vue/FormatBytes/FormatBytes.css.hbs → templates/react/FormatBytes/FormatBytes.css} +0 -0
  2784. /package/{dist/templates/vue/FormatDate/FormatDate.css.hbs → templates/react/FormatDate/FormatDate.css} +0 -0
  2785. /package/{dist/templates/react/FormatDate/FormatDate.test.jsx.hbs → templates/react/FormatDate/FormatDate.test.jsx} +0 -0
  2786. /package/{dist/templates/vue/FormatNumber/FormatNumber.css.hbs → templates/react/FormatNumber/FormatNumber.css} +0 -0
  2787. /package/{dist/templates/vue/Include/Include.css.hbs → templates/react/Include/Include.css} +0 -0
  2788. /package/{dist/templates/react/Input/Input.test.jsx.hbs → templates/react/Input/Input.test.jsx} +0 -0
  2789. /package/{dist/templates/vue/IntersectionObserver/IntersectionObserver.css.hbs → templates/react/IntersectionObserver/IntersectionObserver.css} +0 -0
  2790. /package/{dist/templates/react/LineChart/LineChart.test.jsx.hbs → templates/react/LineChart/LineChart.test.jsx} +0 -0
  2791. /package/{dist/templates/react/Markdown/Markdown.test.jsx.hbs → templates/react/Markdown/Markdown.test.jsx} +0 -0
  2792. /package/{dist/templates/vue/MutationObserver/MutationObserver.css.hbs → templates/react/MutationObserver/MutationObserver.css} +0 -0
  2793. /package/{dist/templates/react/MutationObserver/MutationObserver.test.jsx.hbs → templates/react/MutationObserver/MutationObserver.test.jsx} +0 -0
  2794. /package/{dist/templates/react/NumberInput/NumberInput.test.jsx.hbs → templates/react/NumberInput/NumberInput.test.jsx} +0 -0
  2795. /package/{dist/templates/react/Option/Option.test.jsx.hbs → templates/react/Option/Option.test.jsx} +0 -0
  2796. /package/{dist/templates/react/Page/Page.test.jsx.hbs → templates/react/Page/Page.test.jsx} +0 -0
  2797. /package/{dist/templates/react/PieChart/PieChart.test.jsx.hbs → templates/react/PieChart/PieChart.test.jsx} +0 -0
  2798. /package/{dist/templates/react/PolarAreaChart/PolarAreaChart.test.jsx.hbs → templates/react/PolarAreaChart/PolarAreaChart.test.jsx} +0 -0
  2799. /package/{dist/templates/react/Popover/Popover.test.jsx.hbs → templates/react/Popover/Popover.test.jsx} +0 -0
  2800. /package/{dist/templates/react/Popup/Popup.test.jsx.hbs → templates/react/Popup/Popup.test.jsx} +0 -0
  2801. /package/{dist/templates/react/QrCode/QrCode.test.jsx.hbs → templates/react/QrCode/QrCode.test.jsx} +0 -0
  2802. /package/{dist/templates/react/RadarChart/RadarChart.test.jsx.hbs → templates/react/RadarChart/RadarChart.test.jsx} +0 -0
  2803. /package/{dist/templates/react/Radio/Radio.test.jsx.hbs → templates/react/Radio/Radio.test.jsx} +0 -0
  2804. /package/{dist/templates/react/RadioGroup/RadioGroup.test.jsx.hbs → templates/react/RadioGroup/RadioGroup.test.jsx} +0 -0
  2805. /package/{dist/templates/react/Rating/Rating.test.jsx.hbs → templates/react/Rating/Rating.test.jsx} +0 -0
  2806. /package/{dist/templates/vue/RelativeTime/RelativeTime.css.hbs → templates/react/RelativeTime/RelativeTime.css} +0 -0
  2807. /package/{dist/templates/react/RelativeTime/RelativeTime.test.jsx.hbs → templates/react/RelativeTime/RelativeTime.test.jsx} +0 -0
  2808. /package/{dist/templates/vue/ResizeObserver/ResizeObserver.css.hbs → templates/react/ResizeObserver/ResizeObserver.css} +0 -0
  2809. /package/{dist/templates/react/ResizeObserver/ResizeObserver.test.jsx.hbs → templates/react/ResizeObserver/ResizeObserver.test.jsx} +0 -0
  2810. /package/{dist/templates/react/ScatterChart/ScatterChart.test.jsx.hbs → templates/react/ScatterChart/ScatterChart.test.jsx} +0 -0
  2811. /package/{dist/templates/react/Scroller/Scroller.test.jsx.hbs → templates/react/Scroller/Scroller.test.jsx} +0 -0
  2812. /package/{dist/templates/react/Select/Select.test.jsx.hbs → templates/react/Select/Select.test.jsx} +0 -0
  2813. /package/{dist/templates/react/Skeleton/Skeleton.test.jsx.hbs → templates/react/Skeleton/Skeleton.test.jsx} +0 -0
  2814. /package/{dist/templates/react/Slider/Slider.test.jsx.hbs → templates/react/Slider/Slider.test.jsx} +0 -0
  2815. /package/{dist/templates/react/Spinner/Spinner.test.jsx.hbs → templates/react/Spinner/Spinner.test.jsx} +0 -0
  2816. /package/{dist/templates/react/SplitPanel/SplitPanel.test.jsx.hbs → templates/react/SplitPanel/SplitPanel.test.jsx} +0 -0
  2817. /package/{dist/templates/react/Switch/Switch.test.jsx.hbs → templates/react/Switch/Switch.test.jsx} +0 -0
  2818. /package/{dist/templates/react/Tab/Tab.test.jsx.hbs → templates/react/Tab/Tab.test.jsx} +0 -0
  2819. /package/{dist/templates/react/TabGroup/TabGroup.test.jsx.hbs → templates/react/TabGroup/TabGroup.test.jsx} +0 -0
  2820. /package/{dist/templates/react/TabPanel/TabPanel.test.jsx.hbs → templates/react/TabPanel/TabPanel.test.jsx} +0 -0
  2821. /package/{dist/templates/react/Tag/Tag.test.jsx.hbs → templates/react/Tag/Tag.test.jsx} +0 -0
  2822. /package/{dist/templates/react/Textarea/Textarea.test.jsx.hbs → templates/react/Textarea/Textarea.test.jsx} +0 -0
  2823. /package/{dist/templates/react/Toast/Toast.test.jsx.hbs → templates/react/Toast/Toast.test.jsx} +0 -0
  2824. /package/{dist/templates/react/Tooltip/Tooltip.test.jsx.hbs → templates/react/Tooltip/Tooltip.test.jsx} +0 -0
  2825. /package/{dist/templates/react/Tree/Tree.test.jsx.hbs → templates/react/Tree/Tree.test.jsx} +0 -0
  2826. /package/{dist/templates/react/TreeItem/TreeItem.test.jsx.hbs → templates/react/TreeItem/TreeItem.test.jsx} +0 -0
  2827. /package/{dist/templates/react/ZoomableFrame/ZoomableFrame.test.jsx.hbs → templates/react/ZoomableFrame/ZoomableFrame.test.jsx} +0 -0
  2828. /package/templates/vue/Animation/{Animation.css.hbs → Animation.css} +0 -0
  2829. /package/templates/vue/FormatBytes/{FormatBytes.css.hbs → FormatBytes.css} +0 -0
  2830. /package/templates/vue/FormatDate/{FormatDate.css.hbs → FormatDate.css} +0 -0
  2831. /package/templates/vue/FormatNumber/{FormatNumber.css.hbs → FormatNumber.css} +0 -0
  2832. /package/templates/vue/Include/{Include.css.hbs → Include.css} +0 -0
  2833. /package/templates/vue/IntersectionObserver/{IntersectionObserver.css.hbs → IntersectionObserver.css} +0 -0
  2834. /package/templates/vue/MutationObserver/{MutationObserver.css.hbs → MutationObserver.css} +0 -0
  2835. /package/templates/vue/RelativeTime/{RelativeTime.css.hbs → RelativeTime.css} +0 -0
  2836. /package/templates/vue/ResizeObserver/{ResizeObserver.css.hbs → ResizeObserver.css} +0 -0
@@ -0,0 +1,117 @@
1
+ import {
2
+ forwardRef,
3
+ useRef,
4
+ useCallback,
5
+ useImperativeHandle,
6
+ useEffect,
7
+ type HTMLAttributes,
8
+ } from 'react';
9
+ import clsx from 'clsx';
10
+ import type WaFormatDate from '@awesome.me/webawesome/dist/components/format-date/format-date.js';
11
+ import './FormatDate.css';
12
+
13
+ let loadPromise: Promise<unknown> | null = null;
14
+ function ensureLoaded() {
15
+ return (loadPromise ??=
16
+ import('@awesome.me/webawesome/dist/components/format-date/format-date.js'));
17
+ }
18
+
19
+ /**
20
+ * Formats a date/time using the Intl.DateTimeFormat API
21
+ *
22
+ * @example
23
+ * ```tsx
24
+ * // Basic usage
25
+ * <FormatDate />
26
+ *
27
+ * // With event handlers
28
+ * <FormatDate />
29
+ *
30
+ * ```
31
+ */
32
+ export interface FormatDateProps extends Omit<
33
+ HTMLAttributes<HTMLElement>,
34
+ 'dir'
35
+ > {
36
+ /** The date/time to format */
37
+ date?: string;
38
+
39
+ /** How to display the weekday */
40
+ weekday?: 'narrow' | 'short' | 'long';
41
+
42
+ /** How to display the era */
43
+ era?: 'narrow' | 'short' | 'long';
44
+
45
+ /** How to display the year */
46
+ year?: 'numeric' | '2-digit';
47
+
48
+ /** How to display the month */
49
+ month?: 'numeric' | '2-digit' | 'narrow' | 'short' | 'long';
50
+
51
+ /** How to display the day */
52
+ day?: 'numeric' | '2-digit';
53
+
54
+ /** How to display the hour */
55
+ hour?: 'numeric' | '2-digit';
56
+
57
+ /** How to display the minute */
58
+ minute?: 'numeric' | '2-digit';
59
+
60
+ /** How to display the second */
61
+ second?: 'numeric' | '2-digit';
62
+
63
+ /** 12 or 24 hour format */
64
+ 'hour-format'?: 'auto' | '12' | '24';
65
+
66
+ /** How to display the time zone */
67
+ 'time-zone-name'?: 'short' | 'long';
68
+
69
+ /** The time zone to use */
70
+ 'time-zone'?: string;
71
+
72
+ /** The locale to use when formatting */
73
+ lang?: string;
74
+ }
75
+
76
+ export interface FormatDateRef {
77
+ /** Reference to the underlying HTML element */
78
+ element: WaFormatDate | null;
79
+ }
80
+
81
+ export const FormatDate = forwardRef<FormatDateRef, FormatDateProps>(
82
+ ({ children, className, ...props }, ref) => {
83
+ const formatdateRef = useRef<WaFormatDate | null>(null);
84
+ const setFormatDateRef = useCallback((el: WaFormatDate | null) => {
85
+ formatdateRef.current = el;
86
+ }, []);
87
+
88
+ useImperativeHandle(
89
+ ref,
90
+ () => ({
91
+ get element() {
92
+ return formatdateRef.current;
93
+ },
94
+ }),
95
+ []
96
+ );
97
+
98
+ useEffect(() => {
99
+ ensureLoaded();
100
+ }, []);
101
+
102
+ return (
103
+ <wa-format-date
104
+ ref={setFormatDateRef}
105
+ class={clsx('FormatDate', className)}
106
+ {...({ suppressHydrationWarning: true, ...props } as Record<
107
+ string,
108
+ unknown
109
+ >)}
110
+ >
111
+ {children}
112
+ </wa-format-date>
113
+ );
114
+ }
115
+ );
116
+
117
+ FormatDate.displayName = 'FormatDate';
@@ -0,0 +1,25 @@
1
+ import React from 'react';
2
+ import clsx from 'clsx';
3
+ import './FormatNumber.css';
4
+
5
+ let loadPromise = null;
6
+ function ensureLoaded() {
7
+ return (loadPromise ??=
8
+ import('@awesome.me/webawesome/dist/components/format-number/format-number.js'));
9
+ }
10
+
11
+ export const FormatNumber = React.forwardRef(({ className, ...props }, ref) => {
12
+ React.useEffect(() => {
13
+ ensureLoaded();
14
+ }, []);
15
+
16
+ return (
17
+ <wa-format-number
18
+ ref={ref}
19
+ class={clsx('FormatNumber', className)}
20
+ {...props}
21
+ />
22
+ );
23
+ });
24
+
25
+ FormatNumber.displayName = 'FormatNumber';
@@ -0,0 +1,19 @@
1
+ import { describe, it, expect } from 'vitest';
2
+ import { render } from '@testing-library/react';
3
+ import React from 'react';
4
+ import { FormatNumber } from './FormatNumber';
5
+
6
+ describe('FormatNumber', () => {
7
+ it('renders without crashing', () => {
8
+ const { container } = render(<FormatNumber value={1000} />);
9
+ expect(container.querySelector('wa-format-number')).toBeInTheDocument();
10
+ });
11
+
12
+ it('applies value prop', () => {
13
+ const { container } = render(<FormatNumber value={2500} />);
14
+ expect(container.querySelector('wa-format-number')).toHaveAttribute(
15
+ 'value',
16
+ '2500'
17
+ );
18
+ });
19
+ });
@@ -0,0 +1,16 @@
1
+ import { describe, it, expect } from 'vitest';
2
+ import { render } from '@testing-library/react';
3
+ import { FormatNumber } from './FormatNumber';
4
+
5
+ describe('FormatNumber', () => {
6
+ it('renders without crashing', () => {
7
+ const { container } = render(<FormatNumber />);
8
+ expect(container.querySelector('wa-format-number')).toBeTruthy();
9
+ });
10
+
11
+ it('applies custom className to the underlying wa-format-number', () => {
12
+ const { container } = render(<FormatNumber className="custom-class" />);
13
+ const element = container.querySelector('wa-format-number');
14
+ expect(element?.getAttribute('class')).toContain('custom-class');
15
+ });
16
+ });
@@ -0,0 +1,111 @@
1
+ import {
2
+ forwardRef,
3
+ useRef,
4
+ useCallback,
5
+ useImperativeHandle,
6
+ useEffect,
7
+ type HTMLAttributes,
8
+ } from 'react';
9
+ import clsx from 'clsx';
10
+ import type WaFormatNumber from '@awesome.me/webawesome/dist/components/format-number/format-number.js';
11
+ import './FormatNumber.css';
12
+
13
+ let loadPromise: Promise<unknown> | null = null;
14
+ function ensureLoaded() {
15
+ return (loadPromise ??=
16
+ import('@awesome.me/webawesome/dist/components/format-number/format-number.js'));
17
+ }
18
+
19
+ /**
20
+ * Formats a number using the Intl.NumberFormat API
21
+ *
22
+ * @example
23
+ * ```tsx
24
+ * // Basic usage
25
+ * <FormatNumber />
26
+ *
27
+ * // With event handlers
28
+ * <FormatNumber />
29
+ *
30
+ * ```
31
+ */
32
+ export interface FormatNumberProps extends Omit<
33
+ HTMLAttributes<HTMLElement>,
34
+ 'dir'
35
+ > {
36
+ /** The number to format */
37
+ value?: number;
38
+
39
+ /** The formatting style */
40
+ type?: 'currency' | 'decimal' | 'percent';
41
+
42
+ /** The currency to use (ISO 4217) */
43
+ currency?: string;
44
+
45
+ /** How to display the currency */
46
+ 'currency-display'?: 'symbol' | 'narrowSymbol' | 'code' | 'name';
47
+
48
+ /** Minimum integer digits */
49
+ 'minimum-integer-digits'?: number;
50
+
51
+ /** Minimum fraction digits */
52
+ 'minimum-fraction-digits'?: number;
53
+
54
+ /** Maximum fraction digits */
55
+ 'maximum-fraction-digits'?: number;
56
+
57
+ /** Minimum significant digits */
58
+ 'minimum-significant-digits'?: number;
59
+
60
+ /** Maximum significant digits */
61
+ 'maximum-significant-digits'?: number;
62
+
63
+ /** Disables grouping separators */
64
+ 'without-grouping'?: boolean;
65
+
66
+ /** The locale to use when formatting */
67
+ lang?: string;
68
+ }
69
+
70
+ export interface FormatNumberRef {
71
+ /** Reference to the underlying HTML element */
72
+ element: WaFormatNumber | null;
73
+ }
74
+
75
+ export const FormatNumber = forwardRef<FormatNumberRef, FormatNumberProps>(
76
+ ({ children, className, ...props }, ref) => {
77
+ const formatnumberRef = useRef<WaFormatNumber | null>(null);
78
+ const setFormatNumberRef = useCallback((el: WaFormatNumber | null) => {
79
+ formatnumberRef.current = el;
80
+ }, []);
81
+
82
+ useImperativeHandle(
83
+ ref,
84
+ () => ({
85
+ get element() {
86
+ return formatnumberRef.current;
87
+ },
88
+ }),
89
+ []
90
+ );
91
+
92
+ useEffect(() => {
93
+ ensureLoaded();
94
+ }, []);
95
+
96
+ return (
97
+ <wa-format-number
98
+ ref={setFormatNumberRef}
99
+ class={clsx('FormatNumber', className)}
100
+ {...({ suppressHydrationWarning: true, ...props } as Record<
101
+ string,
102
+ unknown
103
+ >)}
104
+ >
105
+ {children}
106
+ </wa-format-number>
107
+ );
108
+ }
109
+ );
110
+
111
+ FormatNumber.displayName = 'FormatNumber';
@@ -0,0 +1,38 @@
1
+ /**
2
+ * Icon Component Styles
3
+ * Documentation: https://webawesome.com/docs/components/icon
4
+ *
5
+ * CSS Custom Properties:
6
+ * - --animation-delay: Sets when the animation will start. (default: 0)
7
+ * - --animation-direction: Defines whether or not the animation should play in reverse on alternate cycles. (default: normal)
8
+ * - --animation-duration: Defines the length of time that an animation takes to complete one cycle. (default: 1s)
9
+ * - --animation-iteration-count: Defines the number of times an animation cycle is played. (default: infinite)
10
+ * - --animation-timing: Describes how the animation will progress over one cycle of its duration.
11
+ * - --beat-fade-opacity: Set lowest opacity value an icon with `beat-fade` animation will fade to and from.
12
+ * - --beat-fade-scale: Set max value that an icon with `beat-fade` animation will scale.
13
+ * - --beat-scale: Set max value that an icon with `beat` animation will scale.
14
+ * - --bounce-height: Set the max height an icon with `bounce` animation will jump to when bouncing.
15
+ * - --bounce-jump-scale-x: Set the icon’s horizontal distortion (“squish”) at the top of the jump.
16
+ * - --bounce-jump-scale-y: Set the icon’s vertical distortion (“squish”) at the top of the jump.
17
+ * - --bounce-land-scale-x: Set the icon’s horizontal distortion (“squish”) when landing after the jump.
18
+ * - --bounce-land-scale-y: Set the icon’s vertical distortion (“squish”) when landing after the jump.
19
+ * - --bounce-rebound: Set the amount of rebound an icon with `bounce` animation has when landing after the jump.
20
+ * - --bounce-start-scale-x: Set the icon’s horizontal distortion (“squish”) when starting to bounce.
21
+ * - --bounce-start-scale-y: Set the icon’s vertical distortion (“squish”) when starting to bounce.
22
+ * - --fade-opacity: Set lowest opacity value an icon with `fade` animation will fade to and from.
23
+ * - --flip-angle: Set rotation angle of flip for an icon with `flip` animation. A positive angle denotes a clockwise rotation, a negative angle a counter-clockwise one.
24
+ * - --flip-x: Set x-coordinate of the vector denoting the axis of rotation (between 0 and 1) for an icon with `flip` animation.
25
+ * - --flip-y: Set y-coordinate of the vector denoting the axis of rotation (between 0 and 1) for an icon with `flip` animation.
26
+ * - --flip-z: Set z-coordinate of the vector denoting the axis of rotation (between 0 and 1) for an icon with `flip` animation.
27
+ * - --primary-color: Sets a duotone icon's primary color. (default: currentColor)
28
+ * - --primary-opacity: Sets a duotone icon's primary opacity. (default: 1)
29
+ * - --secondary-color: Sets a duotone icon's secondary color. (default: currentColor)
30
+ * - --secondary-opacity: Sets a duotone icon's secondary opacity. (default: 0.4)
31
+ *
32
+ * CSS Parts:
33
+ * - svg: The internal SVG element.
34
+ * - use: The `<use>` element generated when using `spriteSheet: true`
35
+ */
36
+ .Icon {
37
+ /* Add your custom styles here */
38
+ }
@@ -0,0 +1,88 @@
1
+ import React from 'react';
2
+ import clsx from 'clsx';
3
+ import './Icon.css';
4
+
5
+ let loadPromise = null;
6
+ function ensureLoaded() {
7
+ return (loadPromise ??=
8
+ import('@awesome.me/webawesome/dist/components/icon/icon.js'));
9
+ }
10
+
11
+ /**
12
+ * Icons are symbols that can be used to represent various options within an application
13
+ *
14
+ * @example
15
+ * ```jsx
16
+ * // Basic usage
17
+ * <Icon name="star" />
18
+ * <Icon name="heart" variant="solid" />
19
+ * <Icon name="github" family="brands" />
20
+ *
21
+ * // With label for accessibility
22
+ * <Icon name="star" label="Favorite" />
23
+ *
24
+ * // Sizing (use CSS or className for sizing)
25
+ * <Icon name="bell" className="icon-large" />
26
+ *
27
+ * // Custom icon
28
+ * <Icon src="/path/to/icon.svg" label="Custom icon" />
29
+ *
30
+ * // With event handlers
31
+ * <Icon
32
+ * name="image"
33
+ * onLoad={() => console.log('Icon loaded')}
34
+ * onError={() => console.log('Icon failed to load')}
35
+ * />
36
+ * ```
37
+ *
38
+ * @typedef {Object} IconProps
39
+ * @property {string} [name] - The name of the icon to draw
40
+ * @property {string} [library] - The name of a registered custom icon library
41
+ * @property {string} [src] - An external URL of an SVG file
42
+ * @property {string} [label] - An alternate description for assistive devices
43
+ * @property {string} [family] - The family of icons (classic, brands, sharp, duotone, sharp-duotone)
44
+ * @property {string} [variant] - The icon's variant (thin, light, regular, solid)
45
+ * @property {boolean} [auto-width] - Sets width to match SVG viewBox
46
+ * @property {boolean} [swap-opacity] - Swaps opacity of duotone icons
47
+ * @property {number} [rotate] - Rotate the icon by this many degrees
48
+ * @property {string} [flip] - Flip: horizontal | vertical | both
49
+ * @property {string} [animation] - Built-in animation name to apply
50
+ * @property {function} [onLoad] - Event fired when icon loads
51
+ * @property {function} [onError] - Event fired when icon fails to load
52
+ */
53
+
54
+ export const Icon = React.forwardRef(
55
+ ({ className, onLoad, onError, ...props }, ref) => {
56
+ const elementRef = React.useRef(null);
57
+
58
+ React.useImperativeHandle(ref, () => elementRef.current, []);
59
+
60
+ React.useEffect(() => {
61
+ ensureLoaded();
62
+ const el = elementRef.current;
63
+ if (!el) return;
64
+
65
+ const handleLoad = (e) => {
66
+ if (onLoad) onLoad(e);
67
+ };
68
+
69
+ const handleError = (e) => {
70
+ if (onError) onError(e);
71
+ };
72
+
73
+ el.addEventListener('wa-load', handleLoad);
74
+ el.addEventListener('wa-error', handleError);
75
+
76
+ return () => {
77
+ el.removeEventListener('wa-load', handleLoad);
78
+ el.removeEventListener('wa-error', handleError);
79
+ };
80
+ }, [onLoad, onError]);
81
+
82
+ return (
83
+ <wa-icon ref={elementRef} class={clsx('Icon', className)} {...props} />
84
+ );
85
+ }
86
+ );
87
+
88
+ Icon.displayName = 'Icon';
@@ -0,0 +1,37 @@
1
+ import { describe, it, expect } from 'vitest';
2
+ import { render } from '@testing-library/react';
3
+ import { Icon } from './Icon';
4
+
5
+ describe('Icon', () => {
6
+ it('renders without crashing', () => {
7
+ const { container } = render(<Icon name="star" />);
8
+ expect(container.querySelector('wa-icon')).toBeInTheDocument();
9
+ });
10
+
11
+ it('applies custom className', () => {
12
+ const { container } = render(<Icon name="star" className="custom-class" />);
13
+ const element = container.querySelector('wa-icon');
14
+ expect(element?.getAttribute('class')).toContain('custom-class');
15
+ });
16
+
17
+ it('passes name prop', () => {
18
+ const { container } = render(<Icon name="heart" />);
19
+ const element = container.querySelector('wa-icon');
20
+ expect(element?.getAttribute('name')).toBe('heart');
21
+ });
22
+
23
+ it('passes variant and family props', () => {
24
+ const { container } = render(
25
+ <Icon name="star" variant="solid" family="classic" />
26
+ );
27
+ const element = container.querySelector('wa-icon');
28
+ expect(element?.getAttribute('variant')).toBe('solid');
29
+ expect(element?.getAttribute('family')).toBe('classic');
30
+ });
31
+
32
+ it('passes label prop for accessibility', () => {
33
+ const { container } = render(<Icon name="star" label="Favorite" />);
34
+ const element = container.querySelector('wa-icon');
35
+ expect(element?.getAttribute('label')).toBe('Favorite');
36
+ });
37
+ });
@@ -0,0 +1,16 @@
1
+ import { describe, it, expect } from 'vitest';
2
+ import { render } from '@testing-library/react';
3
+ import { Icon } from './Icon';
4
+
5
+ describe('Icon', () => {
6
+ it('renders without crashing', () => {
7
+ const { container } = render(<Icon />);
8
+ expect(container.querySelector('wa-icon')).toBeTruthy();
9
+ });
10
+
11
+ it('applies custom className to the underlying wa-icon', () => {
12
+ const { container } = render(<Icon className="custom-class" />);
13
+ const element = container.querySelector('wa-icon');
14
+ expect(element?.getAttribute('class')).toContain('custom-class');
15
+ });
16
+ });
@@ -0,0 +1,136 @@
1
+ import {
2
+ forwardRef,
3
+ useRef,
4
+ useCallback,
5
+ useImperativeHandle,
6
+ useEffect,
7
+ type HTMLAttributes,
8
+ } from 'react';
9
+ import clsx from 'clsx';
10
+ import type WaIcon from '@awesome.me/webawesome/dist/components/icon/icon.js';
11
+ import './Icon.css';
12
+
13
+ let loadPromise: Promise<unknown> | null = null;
14
+ function ensureLoaded() {
15
+ return (loadPromise ??=
16
+ import('@awesome.me/webawesome/dist/components/icon/icon.js'));
17
+ }
18
+
19
+ /**
20
+ * Icons are symbols that can be used to represent various options within an application
21
+ *
22
+ * @example
23
+ * ```tsx
24
+ * // Basic usage
25
+ * <Icon />
26
+ *
27
+ * // With event handlers
28
+ * <Icon
29
+ * onLoad={(e) => console.log(e)} />
30
+ *
31
+ * ```
32
+ */
33
+ export interface IconProps extends Omit<
34
+ HTMLAttributes<HTMLElement>,
35
+ 'onLoad' | 'onError' | 'dir'
36
+ > {
37
+ /** The name of the icon to draw */
38
+ name?: string;
39
+
40
+ /** The name of a registered custom icon library */
41
+ library?: string;
42
+
43
+ /** An external URL of an SVG file */
44
+ src?: string;
45
+
46
+ /** An alternate description for assistive devices */
47
+ label?: string;
48
+
49
+ /** The family of icons (classic, brands, sharp, duotone, sharp-duotone) */
50
+ family?: string;
51
+
52
+ /** The icon's variant (thin, light, regular, solid) */
53
+ variant?: string;
54
+
55
+ /** Sets the width to match the cropped SVG viewBox */
56
+ 'auto-width'?: boolean;
57
+
58
+ /** Swaps the opacity of duotone icons */
59
+ 'swap-opacity'?: boolean;
60
+
61
+ /** Rotate the icon by this many degrees */
62
+ rotate?: number;
63
+
64
+ /** Flip the icon horizontally, vertically, or both */
65
+ flip?: 'horizontal' | 'vertical' | 'both';
66
+
67
+ /** The name of a built-in animation to apply */
68
+ animation?: string;
69
+
70
+ /** Emitted when the icon has loaded. When using `spriteSheet: true` this will not emit. */
71
+ onLoad?: (event: CustomEvent) => void;
72
+
73
+ /** Emitted when the icon fails to load due to an error. When using `spriteSheet: true` this will not emit. */
74
+ onError?: (event: CustomEvent) => void;
75
+ }
76
+
77
+ export interface IconRef {
78
+ /** Reference to the underlying HTML element */
79
+ element: WaIcon | null;
80
+ }
81
+
82
+ export const Icon = forwardRef<IconRef, IconProps>(
83
+ ({ children, className, onLoad, onError, ...props }, ref) => {
84
+ const iconRef = useRef<WaIcon | null>(null);
85
+ const setIconRef = useCallback((el: WaIcon | null) => {
86
+ iconRef.current = el;
87
+ }, []);
88
+
89
+ useImperativeHandle(
90
+ ref,
91
+ () => ({
92
+ get element() {
93
+ return iconRef.current;
94
+ },
95
+ }),
96
+ []
97
+ );
98
+
99
+ useEffect(() => {
100
+ ensureLoaded();
101
+ const el = iconRef.current;
102
+ if (!el) return;
103
+
104
+ const handleWaLoad = (e: Event) => {
105
+ if (onLoad) onLoad(e as CustomEvent);
106
+ };
107
+
108
+ const handleWaError = (e: Event) => {
109
+ if (onError) onError(e as CustomEvent);
110
+ };
111
+
112
+ el.addEventListener('wa-load', handleWaLoad);
113
+ el.addEventListener('wa-error', handleWaError);
114
+
115
+ return () => {
116
+ el.removeEventListener('wa-load', handleWaLoad);
117
+ el.removeEventListener('wa-error', handleWaError);
118
+ };
119
+ }, [onLoad, onError]);
120
+
121
+ return (
122
+ <wa-icon
123
+ ref={setIconRef}
124
+ class={clsx('Icon', className)}
125
+ {...({ suppressHydrationWarning: true, ...props } as Record<
126
+ string,
127
+ unknown
128
+ >)}
129
+ >
130
+ {children}
131
+ </wa-icon>
132
+ );
133
+ }
134
+ );
135
+
136
+ Icon.displayName = 'Icon';
@@ -0,0 +1,46 @@
1
+ import React from 'react';
2
+ import clsx from 'clsx';
3
+ import './Include.css';
4
+
5
+ let loadPromise = null;
6
+ function ensureLoaded() {
7
+ return (loadPromise ??=
8
+ import('@awesome.me/webawesome/dist/components/include/include.js'));
9
+ }
10
+
11
+ export const Include = React.forwardRef(
12
+ ({ className, onLoad, onIncludeError, ...props }, ref) => {
13
+ const includeRef = React.useRef(null);
14
+
15
+ React.useEffect(() => {
16
+ ensureLoaded();
17
+ const el = includeRef.current;
18
+ if (!el) return;
19
+
20
+ const handleLoad = (e) => onLoad?.(e);
21
+ const handleError = (e) => onIncludeError?.(e);
22
+
23
+ el.addEventListener('wa-load', handleLoad);
24
+ el.addEventListener('wa-include-error', handleError);
25
+
26
+ return () => {
27
+ el.removeEventListener('wa-load', handleLoad);
28
+ el.removeEventListener('wa-include-error', handleError);
29
+ };
30
+ }, [onLoad, onIncludeError]);
31
+
32
+ return (
33
+ <wa-include
34
+ ref={(node) => {
35
+ includeRef.current = node;
36
+ if (typeof ref === 'function') ref(node);
37
+ else if (ref) ref.current = node;
38
+ }}
39
+ class={clsx('Include', className)}
40
+ {...props}
41
+ />
42
+ );
43
+ }
44
+ );
45
+
46
+ Include.displayName = 'Include';
@@ -0,0 +1,19 @@
1
+ import { describe, it, expect } from 'vitest';
2
+ import { render } from '@testing-library/react';
3
+ import React from 'react';
4
+ import { Include } from './Include';
5
+
6
+ describe('Include', () => {
7
+ it('renders without crashing', () => {
8
+ const { container } = render(<Include />);
9
+ expect(container.querySelector('wa-include')).toBeInTheDocument();
10
+ });
11
+
12
+ it('applies src prop', () => {
13
+ const { container } = render(<Include src="/content.html" />);
14
+ expect(container.querySelector('wa-include')).toHaveAttribute(
15
+ 'src',
16
+ '/content.html'
17
+ );
18
+ });
19
+ });