@antify/ui-module 1.6.0 → 1.7.2

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 (343) hide show
  1. package/dist/module.d.mts +182 -51
  2. package/dist/module.d.ts +182 -51
  3. package/dist/module.json +1 -1
  4. package/dist/module.mjs +152 -49
  5. package/dist/runtime/components/AntAccordion.vue +10 -5
  6. package/dist/runtime/components/AntAccordionItem.vue +19 -7
  7. package/dist/runtime/components/AntAlert.vue +27 -27
  8. package/dist/runtime/components/AntCard.vue +34 -0
  9. package/dist/runtime/components/AntDropdown.vue +2 -2
  10. package/dist/runtime/components/AntIcon.vue +21 -16
  11. package/dist/runtime/components/AntKeycap.vue +26 -5
  12. package/dist/runtime/components/AntListGroupItem.vue +24 -28
  13. package/dist/runtime/components/AntModal.vue +5 -5
  14. package/dist/runtime/components/AntPagination.vue +45 -45
  15. package/dist/runtime/components/AntPopover.vue +3 -3
  16. package/dist/runtime/components/AntSpinner.vue +56 -50
  17. package/dist/runtime/components/AntTag.vue +75 -40
  18. package/dist/runtime/components/AntToast.vue +40 -31
  19. package/dist/runtime/components/AntToaster.vue +14 -9
  20. package/dist/runtime/components/AntTooltip.vue +75 -69
  21. package/dist/runtime/components/__stories/AntAccordion.stories.mjs +3 -2
  22. package/dist/runtime/components/__stories/AntAlert.stories.mjs +3 -3
  23. package/dist/runtime/components/__stories/AntCard.stories.d.ts +7 -0
  24. package/dist/runtime/components/__stories/AntCard.stories.mjs +87 -0
  25. package/dist/runtime/components/__stories/AntIcon.stories.mjs +7 -4
  26. package/dist/runtime/components/__stories/AntKeycap.stories.mjs +8 -1
  27. package/dist/runtime/components/__stories/AntListGroupItem.stories.mjs +3 -3
  28. package/dist/runtime/components/__stories/AntModal.stories.mjs +2 -2
  29. package/dist/runtime/components/__stories/AntSpinner.stories.mjs +7 -7
  30. package/dist/runtime/components/__stories/AntTag.stories.mjs +5 -6
  31. package/dist/runtime/components/__stories/AntToast.stories.mjs +3 -3
  32. package/dist/runtime/components/__stories/AntToaster.stories.d.ts +2 -2
  33. package/dist/runtime/components/__stories/AntToaster.stories.mjs +4 -4
  34. package/dist/runtime/components/__stories/AntTooltip.stories.d.ts +5 -0
  35. package/dist/runtime/components/__stories/AntTooltip.stories.mjs +35 -11
  36. package/dist/runtime/components/__types/AntIcon.types.d.ts +5 -3
  37. package/dist/runtime/components/__types/AntIcon.types.mjs +5 -3
  38. package/dist/runtime/components/__types/AntKeycap.types.d.ts +4 -0
  39. package/dist/runtime/components/__types/AntKeycap.types.mjs +5 -0
  40. package/dist/runtime/components/__types/AntListGroupItem.types.d.ts +9 -0
  41. package/dist/runtime/components/__types/AntListGroupItem.types.mjs +10 -0
  42. package/dist/runtime/components/__types/AntSpinner.types.d.ts +10 -0
  43. package/dist/runtime/components/__types/AntSpinner.types.mjs +11 -0
  44. package/dist/runtime/components/__types/AntTag.types.d.ts +17 -0
  45. package/dist/runtime/components/__types/AntTag.types.mjs +19 -0
  46. package/dist/runtime/components/__types/AntToaster.types.d.ts +2 -2
  47. package/dist/runtime/components/__types/index.d.ts +6 -1
  48. package/dist/runtime/components/__types/index.mjs +6 -1
  49. package/dist/runtime/components/buttons/AntActionButton.vue +26 -23
  50. package/dist/runtime/components/buttons/AntButton.vue +85 -75
  51. package/dist/runtime/components/buttons/AntCreateButton.vue +2 -2
  52. package/dist/runtime/components/buttons/AntDeleteButton.vue +2 -2
  53. package/dist/runtime/components/buttons/AntDuplicateButton.vue +2 -2
  54. package/dist/runtime/components/buttons/AntEditButton.vue +2 -2
  55. package/dist/runtime/components/buttons/AntSaveAndNewButton.vue +14 -13
  56. package/dist/runtime/components/buttons/AntSaveButton.vue +13 -12
  57. package/dist/runtime/components/buttons/__stories/AntActionButton.stories.mjs +15 -11
  58. package/dist/runtime/components/buttons/__stories/AntButton.stories.mjs +39 -36
  59. package/dist/runtime/components/buttons/__stories/AntCreateButton.stories.mjs +1 -1
  60. package/dist/runtime/components/buttons/__stories/AntDeleteButton.stories.mjs +1 -1
  61. package/dist/runtime/components/buttons/__stories/AntDuplicateButton.stories.mjs +1 -1
  62. package/dist/runtime/components/buttons/__stories/AntEditButton.stories.mjs +1 -1
  63. package/dist/runtime/components/buttons/__stories/AntSaveAndNewButton.stories.mjs +1 -1
  64. package/dist/runtime/components/buttons/__stories/AntSaveButton.stories.mjs +1 -1
  65. package/dist/runtime/components/buttons/__types/index.d.ts +1 -1
  66. package/dist/runtime/components/buttons/__types/index.mjs +1 -1
  67. package/dist/runtime/components/crud/AntCrudDetailActions.vue +2 -2
  68. package/dist/runtime/components/crud/AntCrudDetailNav.vue +10 -3
  69. package/dist/runtime/components/crud/AntCrudTableFilter.vue +14 -14
  70. package/dist/runtime/components/crud/AntCrudTableNav.vue +27 -27
  71. package/dist/runtime/components/crud/__stories/AntCrud.stories.mjs +1 -1
  72. package/dist/runtime/components/dialogs/AntDeleteDialog.vue +3 -3
  73. package/dist/runtime/components/dialogs/AntDialog.vue +23 -23
  74. package/dist/runtime/components/dialogs/__stories/AndDeleteDialog.stories.mjs +3 -1
  75. package/dist/runtime/components/dialogs/__stories/AntDialog.stories.mjs +4 -4
  76. package/dist/runtime/components/forms/AntField.vue +123 -0
  77. package/dist/runtime/components/forms/AntFormGroupLabel.vue +5 -0
  78. package/dist/runtime/components/{form/Elements → forms}/__stories/AntField.stories.mjs +15 -15
  79. package/dist/runtime/components/{form → forms}/__stories/AntFormGroup.stories.mjs +3 -3
  80. package/dist/runtime/components/{form → forms}/__stories/AntFormGroupLabel.stories.mjs +1 -1
  81. package/dist/runtime/components/index.d.ts +46 -6
  82. package/dist/runtime/components/index.mjs +90 -7
  83. package/dist/runtime/components/inputs/AntCheckbox.vue +183 -0
  84. package/dist/runtime/components/inputs/AntCheckboxGroup.vue +117 -0
  85. package/dist/runtime/components/inputs/AntDateInput.vue +97 -0
  86. package/{src/runtime/components/form → dist/runtime/components/inputs}/AntNumberInput.vue +28 -50
  87. package/dist/runtime/components/inputs/AntPasswordInput.vue +107 -0
  88. package/dist/runtime/components/inputs/AntRadio.vue +192 -0
  89. package/dist/runtime/components/inputs/AntRadioGroup.vue +116 -0
  90. package/dist/runtime/components/inputs/AntRangeSlider.vue +101 -0
  91. package/{src/runtime/components/form → dist/runtime/components/inputs}/AntSearch.vue +17 -21
  92. package/dist/runtime/components/{form → inputs}/AntSelect.vue +68 -60
  93. package/dist/runtime/components/inputs/AntSwitch.vue +192 -0
  94. package/dist/runtime/components/inputs/AntSwitcher.vue +196 -0
  95. package/{src/runtime/components/form → dist/runtime/components/inputs}/AntTagInput.vue +94 -69
  96. package/dist/runtime/components/inputs/AntTextInput.vue +72 -0
  97. package/dist/runtime/components/{form → inputs}/AntTextarea.vue +53 -41
  98. package/dist/runtime/components/{form → inputs}/AntUnitInput.vue +17 -23
  99. package/dist/runtime/components/inputs/Elements/AntBaseInput.vue +256 -0
  100. package/dist/runtime/components/{form → inputs}/Elements/AntDropDown.vue +29 -30
  101. package/dist/runtime/components/{form → inputs}/Elements/AntInputDescription.vue +17 -14
  102. package/dist/runtime/components/inputs/Elements/AntInputLabel.vue +65 -0
  103. package/dist/runtime/components/inputs/Elements/AntInputLimiter.vue +58 -0
  104. package/dist/runtime/components/{form → inputs}/Elements/__stories/AntBaseInput.stories.d.ts +2 -0
  105. package/dist/runtime/components/inputs/Elements/__stories/AntBaseInput.stories.mjs +234 -0
  106. package/dist/runtime/components/{form → inputs}/Elements/__stories/AntInputDescription.stories.mjs +5 -5
  107. package/dist/runtime/components/{form → inputs}/Elements/__stories/AntInputLabel.stories.mjs +3 -3
  108. package/dist/runtime/components/{form → inputs}/Elements/__stories/AntInputLimiter.stories.mjs +5 -5
  109. package/dist/runtime/components/inputs/Elements/__types/index.d.ts +1 -0
  110. package/dist/runtime/components/inputs/Elements/__types/index.mjs +1 -0
  111. package/dist/runtime/components/{form → inputs}/Elements/index.d.ts +1 -1
  112. package/dist/runtime/components/{form → inputs}/Elements/index.mjs +1 -1
  113. package/dist/runtime/components/inputs/__stories/AntCheckbox.stories.mjs +341 -0
  114. package/dist/runtime/components/{form/AntCheckboxWidget → inputs}/__stories/AntCheckboxGroup.stories.mjs +23 -34
  115. package/dist/runtime/components/inputs/__stories/AntDateInput.stories.d.ts +8 -0
  116. package/dist/runtime/components/inputs/__stories/AntDateInput.stories.mjs +193 -0
  117. package/dist/runtime/components/{form → inputs}/__stories/AntNumberInput.stories.d.ts +2 -1
  118. package/dist/runtime/components/inputs/__stories/AntNumberInput.stories.mjs +106 -0
  119. package/dist/runtime/components/inputs/__stories/AntPasswordInput.stories.d.ts +8 -0
  120. package/dist/runtime/components/inputs/__stories/AntPasswordInput.stories.mjs +156 -0
  121. package/dist/runtime/components/{form/AntRadioWidget → inputs}/__stories/AntRadioGroup.stories.d.ts +1 -1
  122. package/dist/runtime/components/inputs/__stories/AntRadioGroup.stories.mjs +243 -0
  123. package/dist/runtime/components/inputs/__stories/AntRangeSlider.stories.d.ts +7 -0
  124. package/dist/runtime/components/inputs/__stories/AntRangeSlider.stories.mjs +67 -0
  125. package/dist/runtime/components/{form → inputs}/__stories/AntSearch.stories.d.ts +1 -0
  126. package/dist/runtime/components/inputs/__stories/AntSearch.stories.mjs +103 -0
  127. package/dist/runtime/components/{form → inputs}/__stories/AntSelect.stories.mjs +78 -46
  128. package/dist/runtime/components/{form → inputs}/__stories/AntSwitch.stories.d.ts +1 -1
  129. package/dist/runtime/components/inputs/__stories/AntSwitch.stories.mjs +344 -0
  130. package/dist/runtime/components/{form → inputs}/__stories/AntSwitcher.stories.d.ts +1 -1
  131. package/dist/runtime/components/inputs/__stories/AntSwitcher.stories.mjs +235 -0
  132. package/dist/runtime/components/{form → inputs}/__stories/AntTagInput.stories.d.ts +3 -3
  133. package/dist/runtime/components/inputs/__stories/AntTagInput.stories.mjs +228 -0
  134. package/dist/runtime/components/{form → inputs}/__stories/AntTextInput.stories.d.ts +2 -0
  135. package/dist/runtime/components/inputs/__stories/AntTextInput.stories.mjs +225 -0
  136. package/dist/runtime/components/{form → inputs}/__stories/AntTextarea.stories.d.ts +1 -0
  137. package/dist/runtime/components/{form → inputs}/__stories/AntTextarea.stories.mjs +44 -31
  138. package/dist/runtime/components/{form → inputs}/__stories/AntUnitInput.stories.d.ts +1 -0
  139. package/dist/runtime/components/{form → inputs}/__stories/AntUnitInput.stories.mjs +49 -17
  140. package/dist/runtime/components/{form/AntCheckboxWidget/__types/AntCheckbox.d.ts → inputs/__types/AntCheckbox.types.d.ts} +4 -0
  141. package/dist/runtime/components/inputs/__types/AntCheckbox.types.mjs +5 -0
  142. package/dist/runtime/components/inputs/__types/AntDateInput.types.d.ts +7 -0
  143. package/dist/runtime/components/inputs/__types/AntDateInput.types.mjs +8 -0
  144. package/dist/runtime/components/inputs/__types/AntRadio.types.d.ts +13 -0
  145. package/dist/runtime/components/inputs/__types/AntRadio.types.mjs +5 -0
  146. package/dist/runtime/components/inputs/__types/AntTagInput.types.d.ts +5 -0
  147. package/dist/runtime/components/inputs/__types/AntTagInput.types.mjs +6 -0
  148. package/dist/runtime/components/{form/__types/AntTextInput.type.d.ts → inputs/__types/AntTextInput.types.d.ts} +0 -1
  149. package/dist/runtime/components/{form/__types/AntTextInput.type.mjs → inputs/__types/AntTextInput.types.mjs} +0 -1
  150. package/dist/runtime/components/inputs/__types/index.d.ts +7 -0
  151. package/dist/runtime/components/inputs/__types/index.mjs +7 -0
  152. package/dist/runtime/components/layouts/AntNavLeftLayout.vue +3 -3
  153. package/dist/runtime/components/navbar/AntNavbar.vue +10 -10
  154. package/dist/runtime/components/navbar/AntNavbarItem.vue +5 -5
  155. package/dist/runtime/components/navbar/__types/{NavbarItem.d.ts → NavbarItem.types.d.ts} +2 -2
  156. package/dist/runtime/components/navbar/__types/index.d.ts +1 -0
  157. package/dist/runtime/components/navbar/__types/index.mjs +1 -0
  158. package/dist/runtime/components/table/AntTable.vue +10 -6
  159. package/dist/runtime/components/table/AntTableSortButton.vue +37 -27
  160. package/dist/runtime/components/table/AntTd.vue +21 -10
  161. package/dist/runtime/components/table/AntTh.vue +21 -14
  162. package/dist/runtime/components/table/__stories/AntTable.stories.mjs +35 -36
  163. package/dist/runtime/components/table/__types/{TableHeader.type.d.ts → TableHeader.types.d.ts} +5 -0
  164. package/dist/runtime/components/table/__types/{TableHeader.type.mjs → TableHeader.types.mjs} +6 -0
  165. package/dist/runtime/components/table/__types/index.d.ts +1 -0
  166. package/dist/runtime/components/table/__types/index.mjs +1 -0
  167. package/dist/runtime/components/tabs/AntTabItem.vue +34 -34
  168. package/dist/runtime/components/tabs/__stories/AntTabItem.stories.mjs +4 -4
  169. package/dist/runtime/components/tabs/__stories/AntTabs.stories.mjs +3 -3
  170. package/dist/runtime/components/tabs/__types/AntTabItem.types.d.ts +2 -2
  171. package/dist/runtime/components/tabs/__types/AntTabItem.types.mjs +6 -6
  172. package/dist/runtime/components/tabs/__types/index.d.ts +1 -0
  173. package/dist/runtime/components/tabs/__types/index.mjs +1 -0
  174. package/dist/runtime/composables/useUi.d.ts +6 -6
  175. package/dist/runtime/composables/useUi.mjs +8 -8
  176. package/dist/runtime/enums/Size.enum.d.ts +4 -1
  177. package/dist/runtime/enums/Size.enum.mjs +4 -1
  178. package/dist/runtime/enums/{ColorType.enum.d.ts → State.enum.d.ts} +2 -2
  179. package/dist/runtime/enums/State.enum.mjs +18 -0
  180. package/dist/runtime/enums/index.d.ts +2 -1
  181. package/dist/runtime/enums/index.mjs +2 -1
  182. package/dist/runtime/plugins/toaster.d.ts +2 -2
  183. package/dist/runtime/plugins/toaster.mjs +5 -5
  184. package/dist/runtime/plugins/ui-module.mjs +1 -1
  185. package/dist/runtime/tailwind.config.d.ts +1 -181
  186. package/dist/runtime/tailwind.config.mjs +3 -0
  187. package/dist/runtime/types.d.ts +5 -4
  188. package/dist/runtime/types.mjs +5 -4
  189. package/dist/types.d.mts +1 -1
  190. package/dist/types.d.ts +1 -1
  191. package/package.json +1 -1
  192. package/src/runtime/components/AntAccordion.vue +10 -5
  193. package/src/runtime/components/AntAccordionItem.vue +19 -7
  194. package/src/runtime/components/AntAlert.vue +27 -27
  195. package/src/runtime/components/AntCard.vue +34 -0
  196. package/src/runtime/components/AntDropdown.vue +2 -2
  197. package/src/runtime/components/AntIcon.vue +21 -16
  198. package/src/runtime/components/AntKeycap.vue +26 -5
  199. package/src/runtime/components/AntListGroupItem.vue +24 -28
  200. package/src/runtime/components/AntModal.vue +5 -5
  201. package/src/runtime/components/AntPagination.vue +45 -45
  202. package/src/runtime/components/AntPopover.vue +3 -3
  203. package/src/runtime/components/AntSpinner.vue +56 -50
  204. package/src/runtime/components/AntTag.vue +75 -40
  205. package/src/runtime/components/AntToast.vue +40 -31
  206. package/src/runtime/components/AntToaster.vue +16 -17
  207. package/src/runtime/components/AntTooltip.vue +75 -69
  208. package/src/runtime/components/buttons/AntActionButton.vue +26 -23
  209. package/src/runtime/components/buttons/AntButton.vue +85 -75
  210. package/src/runtime/components/buttons/AntCreateButton.vue +2 -2
  211. package/src/runtime/components/buttons/AntDeleteButton.vue +2 -2
  212. package/src/runtime/components/buttons/AntDuplicateButton.vue +2 -2
  213. package/src/runtime/components/buttons/AntEditButton.vue +2 -2
  214. package/src/runtime/components/buttons/AntSaveAndNewButton.vue +14 -13
  215. package/src/runtime/components/buttons/AntSaveButton.vue +13 -12
  216. package/src/runtime/components/crud/AntCrudDetailActions.vue +2 -2
  217. package/src/runtime/components/crud/AntCrudDetailNav.vue +10 -3
  218. package/src/runtime/components/crud/AntCrudTableFilter.vue +14 -14
  219. package/src/runtime/components/crud/AntCrudTableNav.vue +27 -27
  220. package/src/runtime/components/dialogs/AntDeleteDialog.vue +3 -3
  221. package/src/runtime/components/dialogs/AntDialog.vue +23 -23
  222. package/src/runtime/components/forms/AntField.vue +123 -0
  223. package/src/runtime/components/forms/AntFormGroupLabel.vue +5 -0
  224. package/src/runtime/components/inputs/AntCheckbox.vue +202 -0
  225. package/src/runtime/components/inputs/AntCheckboxGroup.vue +117 -0
  226. package/src/runtime/components/inputs/AntDateInput.vue +97 -0
  227. package/{dist/runtime/components/form → src/runtime/components/inputs}/AntNumberInput.vue +28 -50
  228. package/src/runtime/components/inputs/AntPasswordInput.vue +107 -0
  229. package/src/runtime/components/inputs/AntRadio.vue +200 -0
  230. package/src/runtime/components/inputs/AntRadioGroup.vue +116 -0
  231. package/src/runtime/components/inputs/AntRangeSlider.vue +121 -0
  232. package/{dist/runtime/components/form → src/runtime/components/inputs}/AntSearch.vue +17 -21
  233. package/src/runtime/components/{form → inputs}/AntSelect.vue +68 -60
  234. package/src/runtime/components/inputs/AntSwitch.vue +192 -0
  235. package/src/runtime/components/inputs/AntSwitcher.vue +196 -0
  236. package/{dist/runtime/components/form → src/runtime/components/inputs}/AntTagInput.vue +94 -69
  237. package/src/runtime/components/inputs/AntTextInput.vue +72 -0
  238. package/src/runtime/components/{form → inputs}/AntTextarea.vue +53 -41
  239. package/src/runtime/components/{form → inputs}/AntUnitInput.vue +17 -23
  240. package/src/runtime/components/inputs/Elements/AntBaseInput.vue +304 -0
  241. package/src/runtime/components/{form → inputs}/Elements/AntDropDown.vue +29 -30
  242. package/src/runtime/components/{form → inputs}/Elements/AntInputDescription.vue +17 -14
  243. package/src/runtime/components/inputs/Elements/AntInputLabel.vue +65 -0
  244. package/src/runtime/components/inputs/Elements/AntInputLimiter.vue +58 -0
  245. package/src/runtime/components/layouts/AntNavLeftLayout.vue +3 -3
  246. package/src/runtime/components/navbar/AntNavbar.vue +10 -10
  247. package/src/runtime/components/navbar/AntNavbarItem.vue +5 -5
  248. package/src/runtime/components/table/AntTable.vue +10 -6
  249. package/src/runtime/components/table/AntTableSortButton.vue +37 -27
  250. package/src/runtime/components/table/AntTd.vue +21 -10
  251. package/src/runtime/components/table/AntTh.vue +21 -14
  252. package/src/runtime/components/tabs/AntTabItem.vue +34 -34
  253. package/dist/runtime/components/form/AntCheckboxWidget/AntCheckbox.vue +0 -144
  254. package/dist/runtime/components/form/AntCheckboxWidget/AntCheckboxGroup.vue +0 -91
  255. package/dist/runtime/components/form/AntCheckboxWidget/__stories/AntCheckbox.stories.mjs +0 -289
  256. package/dist/runtime/components/form/AntFormGroupLabel.vue +0 -5
  257. package/dist/runtime/components/form/AntRadioWidget/AntRadio.vue +0 -139
  258. package/dist/runtime/components/form/AntRadioWidget/AntRadioGroup.vue +0 -80
  259. package/dist/runtime/components/form/AntRadioWidget/__stories/AntRadio.stories.d.ts +0 -8
  260. package/dist/runtime/components/form/AntRadioWidget/__stories/AntRadio.stories.mjs +0 -79
  261. package/dist/runtime/components/form/AntRadioWidget/__stories/AntRadioGroup.stories.mjs +0 -125
  262. package/dist/runtime/components/form/AntRadioWidget/__types/AntRadio.type.d.ts +0 -9
  263. package/dist/runtime/components/form/AntRangeSlider.vue +0 -81
  264. package/dist/runtime/components/form/AntSwitch.vue +0 -153
  265. package/dist/runtime/components/form/AntSwitcher.vue +0 -184
  266. package/dist/runtime/components/form/AntTextInput.vue +0 -73
  267. package/dist/runtime/components/form/Elements/AntBaseInput.vue +0 -220
  268. package/dist/runtime/components/form/Elements/AntField.vue +0 -105
  269. package/dist/runtime/components/form/Elements/AntInputLabel.vue +0 -55
  270. package/dist/runtime/components/form/Elements/AntInputLimiter.vue +0 -55
  271. package/dist/runtime/components/form/Elements/__stories/AntBaseInput.stories.mjs +0 -171
  272. package/dist/runtime/components/form/Elements/__types/index.d.ts +0 -1
  273. package/dist/runtime/components/form/Elements/__types/index.mjs +0 -1
  274. package/dist/runtime/components/form/__stories/AntNumberInput.stories.mjs +0 -74
  275. package/dist/runtime/components/form/__stories/AntRangeSlider.stories.d.ts +0 -6
  276. package/dist/runtime/components/form/__stories/AntRangeSlider.stories.mjs +0 -40
  277. package/dist/runtime/components/form/__stories/AntSearch.stories.mjs +0 -43
  278. package/dist/runtime/components/form/__stories/AntSwitch.stories.mjs +0 -218
  279. package/dist/runtime/components/form/__stories/AntSwitcher.stories.mjs +0 -228
  280. package/dist/runtime/components/form/__stories/AntTagInput.stories.mjs +0 -106
  281. package/dist/runtime/components/form/__stories/AntTextInput.stories.mjs +0 -68
  282. package/dist/runtime/components/form/__types/AntSwitcher.type.mjs +0 -0
  283. package/dist/runtime/components/form/__types/index.d.ts +0 -3
  284. package/dist/runtime/components/form/__types/index.mjs +0 -3
  285. package/dist/runtime/components/form/index.d.ts +0 -12
  286. package/dist/runtime/components/form/index.mjs +0 -24
  287. package/dist/runtime/components/navbar/__types/NavbarItem.mjs +0 -0
  288. package/dist/runtime/enums/ColorType.enum.mjs +0 -18
  289. package/dist/runtime/types/AntListGroupItem.type.d.ts +0 -11
  290. package/dist/runtime/types/AntListGroupItem.type.mjs +0 -12
  291. package/dist/runtime/types/AntTag.type.d.ts +0 -7
  292. package/dist/runtime/types/AntTag.type.mjs +0 -8
  293. package/dist/runtime/types/Checkbox.type.d.ts +0 -8
  294. package/dist/runtime/types/Checkbox.type.mjs +0 -0
  295. package/dist/runtime/types/NavItem.type.d.ts +0 -9
  296. package/dist/runtime/types/NavItem.type.mjs +0 -0
  297. package/dist/runtime/types/RadioButton.type.d.ts +0 -5
  298. package/dist/runtime/types/RadioButton.type.mjs +0 -0
  299. package/dist/runtime/types/Tabs.type.d.ts +0 -6
  300. package/dist/runtime/types/Tabs.type.mjs +0 -0
  301. package/dist/runtime/types/Toaster.type.d.ts +0 -6
  302. package/dist/runtime/types/Toaster.type.mjs +0 -0
  303. package/dist/runtime/types/index.d.ts +0 -7
  304. package/dist/runtime/types/index.mjs +0 -7
  305. package/src/runtime/components/form/AntCheckboxWidget/AntCheckbox.vue +0 -166
  306. package/src/runtime/components/form/AntCheckboxWidget/AntCheckboxGroup.vue +0 -91
  307. package/src/runtime/components/form/AntFormGroupLabel.vue +0 -5
  308. package/src/runtime/components/form/AntRadioWidget/AntRadio.vue +0 -164
  309. package/src/runtime/components/form/AntRadioWidget/AntRadioGroup.vue +0 -80
  310. package/src/runtime/components/form/AntRangeSlider.vue +0 -101
  311. package/src/runtime/components/form/AntSwitch.vue +0 -153
  312. package/src/runtime/components/form/AntSwitcher.vue +0 -200
  313. package/src/runtime/components/form/AntTextInput.vue +0 -73
  314. package/src/runtime/components/form/Elements/AntBaseInput.vue +0 -251
  315. package/src/runtime/components/form/Elements/AntField.vue +0 -105
  316. package/src/runtime/components/form/Elements/AntInputLabel.vue +0 -55
  317. package/src/runtime/components/form/Elements/AntInputLimiter.vue +0 -55
  318. /package/dist/runtime/components/__types/{Accordion.types.d.ts → AntAccordion.types.d.ts} +0 -0
  319. /package/dist/runtime/components/__types/{Accordion.types.mjs → AntAccordion.types.mjs} +0 -0
  320. /package/dist/runtime/components/buttons/__types/{AntButton.type.d.ts → AntButton.types.d.ts} +0 -0
  321. /package/dist/runtime/components/buttons/__types/{AntButton.type.mjs → AntButton.types.mjs} +0 -0
  322. /package/dist/runtime/components/{form → forms}/AntFormGroup.vue +0 -0
  323. /package/dist/runtime/components/{form/Elements → forms}/__stories/AntField.stories.d.ts +0 -0
  324. /package/dist/runtime/components/{form → forms}/__stories/AntFormGroup.stories.d.ts +0 -0
  325. /package/dist/runtime/components/{form → forms}/__stories/AntFormGroupLabel.stories.d.ts +0 -0
  326. /package/dist/runtime/components/{form → inputs}/AntRichTextEditor.vue +0 -0
  327. /package/dist/runtime/components/{form → inputs}/Elements/__stories/AntInputDescription.stories.d.ts +0 -0
  328. /package/dist/runtime/components/{form → inputs}/Elements/__stories/AntInputLabel.stories.d.ts +0 -0
  329. /package/dist/runtime/components/{form → inputs}/Elements/__stories/AntInputLimiter.stories.d.ts +0 -0
  330. /package/dist/runtime/components/{form/Elements/__types/AntBaseInput.type.d.ts → inputs/Elements/__types/AntBaseInput.types.d.ts} +0 -0
  331. /package/dist/runtime/components/{form/Elements/__types/AntBaseInput.type.mjs → inputs/Elements/__types/AntBaseInput.types.mjs} +0 -0
  332. /package/dist/runtime/components/{form/AntCheckboxWidget → inputs}/__stories/AntCheckbox.stories.d.ts +0 -0
  333. /package/dist/runtime/components/{form/AntCheckboxWidget → inputs}/__stories/AntCheckboxGroup.stories.d.ts +0 -0
  334. /package/dist/runtime/components/{form → inputs}/__stories/AntRichTextEditor.stories-old.d.ts +0 -0
  335. /package/dist/runtime/components/{form → inputs}/__stories/AntRichTextEditor.stories-old.mjs +0 -0
  336. /package/dist/runtime/components/{form → inputs}/__stories/AntSelect.stories.d.ts +0 -0
  337. /package/dist/runtime/components/{form/__types/AntSelect.type.d.ts → inputs/__types/AntSelect.types.d.ts} +0 -0
  338. /package/dist/runtime/components/{form/AntCheckboxWidget/__types/AntCheckbox.mjs → inputs/__types/AntSelect.types.mjs} +0 -0
  339. /package/dist/runtime/components/{form/__types/AntSwitcher.type.d.ts → inputs/__types/AntSwitcher.types.d.ts} +0 -0
  340. /package/dist/runtime/components/{form/AntRadioWidget/__types/AntRadio.type.mjs → inputs/__types/AntSwitcher.types.mjs} +0 -0
  341. /package/dist/runtime/components/{form/__types/AntSelect.type.mjs → navbar/__types/NavbarItem.types.mjs} +0 -0
  342. /package/src/runtime/components/{form → forms}/AntFormGroup.vue +0 -0
  343. /package/src/runtime/components/{form → inputs}/AntRichTextEditor.vue +0 -0
@@ -1,60 +1,56 @@
1
1
  <script lang="ts" setup>
2
2
  import {computed, onMounted} from 'vue';
3
3
  import {type IconDefinition} from '@fortawesome/free-solid-svg-icons';
4
- import {ListGroupItemColorType} from '../types/AntListGroupItem.type';
4
+ import {ListGroupItemState} from './__types/AntListGroupItem.types';
5
5
  import {handleEnumValidation} from '../handler';
6
6
  import {type RouteLocationRaw} from 'vue-router';
7
7
  import AntIcon from './AntIcon.vue';
8
8
 
9
9
  const props = withDefaults(defineProps<{
10
10
  to?: RouteLocationRaw | string;
11
- colorType?: ListGroupItemColorType;
11
+ state?: ListGroupItemState;
12
12
  iconLeft?: IconDefinition;
13
13
  iconRight?: IconDefinition;
14
14
  }>(), {
15
- colorType: ListGroupItemColorType.neutral50,
15
+ state: ListGroupItemState.base,
16
16
  });
17
17
 
18
18
  const classes = computed(() => {
19
- const variants: Record<ListGroupItemColorType, string> = {
20
- [ListGroupItemColorType.danger]: 'bg-danger-500 text-danger-500-font',
21
- [ListGroupItemColorType.info]: 'bg-info-500 text-info-500-font',
22
- [ListGroupItemColorType.neutral700]: 'bg-neutral-700 text-neutral-700-font',
23
- [ListGroupItemColorType.neutral300]: 'bg-neutral-300 text-neutral-300-font',
24
- [ListGroupItemColorType.neutral50]: 'bg-white text-for-white-bg-font',
25
- [ListGroupItemColorType.primary]: 'bg-primary-500 text-primary-500-font',
26
- [ListGroupItemColorType.secondary]: 'bg-secondary-500 text-secondary-500-font',
27
- [ListGroupItemColorType.success]: 'bg-success-500 text-success-500-font',
28
- [ListGroupItemColorType.warning]: 'bg-warning-500 text-warning-500-font',
19
+ const variants: Record<ListGroupItemState, string> = {
20
+ [ListGroupItemState.danger]: 'bg-danger-500 text-danger-500-font hover:bg-danger-700',
21
+ [ListGroupItemState.info]: 'bg-info-500 text-info-500-font hover:bg-info-700',
22
+ [ListGroupItemState.base]: 'bg-white text-for-white-bg-font hover:bg-neutral-200',
23
+ [ListGroupItemState.primary]: 'bg-primary-500 text-primary-500-font hover:bg-primary-700',
24
+ [ListGroupItemState.secondary]: 'bg-secondary-500 text-secondary-500-font hover:bg-secondary-700',
25
+ [ListGroupItemState.success]: 'bg-success-500 text-success-500-font hover:bg-success-700',
26
+ [ListGroupItemState.warning]: 'bg-warning-500 text-warning-500-font hover:bg-warning-700',
29
27
  };
30
28
 
31
29
  return {
32
30
  'text-sm transition-colors inline-block w-full': true,
33
- [variants[props.colorType]]: true,
31
+ [variants[props.state]]: true,
34
32
  };
35
33
  });
36
34
  const contentWrapperClasses = computed(() => {
37
- const variants: Record<ListGroupItemColorType, string> = {
38
- [ListGroupItemColorType.danger]: 'text-danger-500-font',
39
- [ListGroupItemColorType.info]: 'text-info-500-font',
40
- [ListGroupItemColorType.neutral700]: 'text-neutral-700-font',
41
- [ListGroupItemColorType.neutral300]: 'text-neutral-300-font',
42
- [ListGroupItemColorType.neutral50]: 'text-for-white-bg-font',
43
- [ListGroupItemColorType.primary]: 'text-primary-500-font',
44
- [ListGroupItemColorType.secondary]: 'text-secondary-500-font',
45
- [ListGroupItemColorType.success]: 'text-success-500-font',
46
- [ListGroupItemColorType.warning]: 'text-warning-500-font',
35
+ const variants: Record<ListGroupItemState, string> = {
36
+ [ListGroupItemState.danger]: 'text-danger-500-font',
37
+ [ListGroupItemState.info]: 'text-info-500-font',
38
+ [ListGroupItemState.base]: 'text-for-white-bg-font',
39
+ [ListGroupItemState.primary]: 'text-primary-500-font',
40
+ [ListGroupItemState.secondary]: 'text-secondary-500-font',
41
+ [ListGroupItemState.success]: 'text-success-500-font',
42
+ [ListGroupItemState.warning]: 'text-warning-500-font',
47
43
  };
48
44
 
49
45
  return {
50
- 'w-full p-2.5 flex gap-2.5 items-center justify-between': true,
51
- 'hover:bg-neutral-950/25 cursor-pointer transition-colors': props.to !== undefined,
52
- [variants[props.colorType]]: props.to !== undefined
46
+ 'w-full p-2 flex gap-2 items-center justify-between': true,
47
+ 'cursor-pointer transition-colors': props.to !== undefined,
48
+ [variants[props.state]]: props.to !== undefined
53
49
  };
54
50
  });
55
51
 
56
52
  onMounted(() => {
57
- handleEnumValidation(props.colorType, ListGroupItemColorType, 'colorType');
53
+ handleEnumValidation(props.state, ListGroupItemState, 'state');
58
54
  });
59
55
  </script>
60
56
 
@@ -23,11 +23,11 @@ watch(() => props.open, (val) => {
23
23
 
24
24
  if (val) {
25
25
  openBackground.value = true;
26
- setTimeout(() => openModal.value = true, props.fullscreen ? 0 : 100)
26
+ setTimeout(() => openModal.value = true, props.fullscreen ? 0 : 100);
27
27
  document.addEventListener('keydown', onKeydown);
28
28
  } else {
29
29
  openModal.value = false;
30
- setTimeout(() => openBackground.value = false, props.fullscreen ? 0 : 100)
30
+ setTimeout(() => openBackground.value = false, props.fullscreen ? 0 : 100);
31
31
  document.removeEventListener('keydown', onKeydown);
32
32
  }
33
33
  });
@@ -53,7 +53,7 @@ function closeModal() {
53
53
  :class="{'w-full h-full': fullscreen, 'border border-neutral-300 rounded-md shadow-md': !fullscreen}"
54
54
  >
55
55
  <div
56
- class="bg-white p-2.5 flex items-center justify-between text-for-white-bg-font text-lg font-medium"
56
+ class="bg-white p-2 flex items-center justify-between text-for-white-bg-font text-lg font-medium"
57
57
  >
58
58
  <slot name="title">
59
59
  {{ title }}
@@ -67,13 +67,13 @@ function closeModal() {
67
67
  />
68
68
  </div>
69
69
 
70
- <div class="bg-white p-2.5 grow overflow-y-auto">
70
+ <div class="bg-white p-2 text-for-white-bg-font grow overflow-y-auto">
71
71
  <slot />
72
72
  </div>
73
73
 
74
74
  <div
75
75
  v-if="useSlots()['footer'] || false"
76
- class="bg-white p-2.5 text-for-white-bg-font"
76
+ class="bg-white p-2 text-for-white-bg-font"
77
77
  >
78
78
  <slot name="footer" />
79
79
  </div>
@@ -4,15 +4,15 @@
4
4
  * TODO:: test me in storybook through vue router
5
5
  * TODO:: Fix ts errors
6
6
  */
7
- import {useRouter, useRoute} from 'vue-router'
7
+ import {useRouter, useRoute} from 'vue-router';
8
8
  import {computed} from 'vue';
9
9
  import AntButton from './buttons/AntButton.vue';
10
10
  import {faChevronRight, faChevronLeft} from '@fortawesome/free-solid-svg-icons';
11
11
  import {Grouped} from '../enums/Grouped.enum';
12
12
  import AntSkeleton from './AntSkeleton.vue';
13
- import {ColorType} from '../enums';
13
+ import {State} from '../enums';
14
14
 
15
- const emit = defineEmits(['update:skeleton', 'input'])
15
+ const emit = defineEmits(['update:skeleton', 'input']);
16
16
  const props = withDefaults(
17
17
  defineProps<{
18
18
  pages: number,
@@ -30,33 +30,33 @@ const props = withDefaults(
30
30
  skeleton: false,
31
31
  lightVersion: false
32
32
  }
33
- )
34
- const router = useRouter()
35
- const route = useRoute()
33
+ );
34
+ const router = useRouter();
35
+ const route = useRoute();
36
36
  const page = computed({
37
37
  get() {
38
- const _page = route.query[props.pageQuery] >= 1 ? Number.parseInt(route.query[props.pageQuery]) : 1
38
+ const _page = route.query[props.pageQuery] >= 1 ? Number.parseInt(route.query[props.pageQuery]) : 1;
39
39
 
40
40
  if (_page <= 0 || _page > props.pages) {
41
- return 1
41
+ return 1;
42
42
  }
43
43
 
44
- return _page
44
+ return _page;
45
45
  },
46
46
  set(val) {
47
- const query = {...route.query}
47
+ const query = {...route.query};
48
48
  query[props.pageQuery] = val;
49
49
 
50
50
  (async () => {
51
51
  await router.push({
52
52
  ...route,
53
53
  query
54
- })
54
+ });
55
55
 
56
- emit('input', val)
57
- })()
56
+ emit('input', val);
57
+ })();
58
58
  }
59
- })
59
+ });
60
60
 
61
61
  /**
62
62
  * Build following constellations:
@@ -70,49 +70,49 @@ const page = computed({
70
70
  * 1 ... 8 9 [10]
71
71
  */
72
72
  const defaultPagination = computed(() => {
73
- const pagination = []
73
+ const pagination = [];
74
74
 
75
75
  if (page.value > 2 && props.pages > 3) {
76
- pagination.push(1)
76
+ pagination.push(1);
77
77
 
78
78
  if (page.value > 3) {
79
- pagination.push('...')
79
+ pagination.push('...');
80
80
  }
81
81
  }
82
82
 
83
83
  if (page.value === 1) {
84
- pagination.push(1)
84
+ pagination.push(1);
85
85
 
86
86
  if (props.pages >= 2) {
87
- pagination.push(2)
87
+ pagination.push(2);
88
88
  }
89
89
 
90
90
  if (props.pages >= 3) {
91
- pagination.push(3)
91
+ pagination.push(3);
92
92
  }
93
93
  } else if (page.value === props.pages) {
94
94
  if (props.pages - 2 >= 1) {
95
- pagination.push(props.pages - 2)
95
+ pagination.push(props.pages - 2);
96
96
  }
97
97
  if (props.pages - 1 >= 1) {
98
- pagination.push(props.pages - 1)
98
+ pagination.push(props.pages - 1);
99
99
  }
100
- pagination.push(props.pages)
100
+ pagination.push(props.pages);
101
101
  } else {
102
- pagination.push(page.value - 1)
103
- pagination.push(page.value)
104
- pagination.push(page.value + 1)
102
+ pagination.push(page.value - 1);
103
+ pagination.push(page.value);
104
+ pagination.push(page.value + 1);
105
105
  }
106
106
 
107
107
  if (page.value < props.pages - 1 && props.pages > 3) {
108
108
  if (page.value < props.pages - 2) {
109
- pagination.push('...')
109
+ pagination.push('...');
110
110
  }
111
- pagination.push(props.pages)
111
+ pagination.push(props.pages);
112
112
  }
113
113
 
114
- return pagination
115
- })
114
+ return pagination;
115
+ });
116
116
 
117
117
  /**
118
118
  * Build following constellations:
@@ -125,36 +125,36 @@ const defaultPagination = computed(() => {
125
125
  * 1 ... [10]
126
126
  */
127
127
  const lightPagination = computed(() => {
128
- const pagination = []
128
+ const pagination = [];
129
129
 
130
- pagination.push(1)
130
+ pagination.push(1);
131
131
 
132
132
  if (page.value > 2) {
133
- pagination.push('...')
133
+ pagination.push('...');
134
134
  }
135
135
 
136
136
  if (page.value > 1) {
137
- pagination.push(page.value)
137
+ pagination.push(page.value);
138
138
  }
139
139
 
140
140
  if (page.value < props.pages - 1) {
141
- pagination.push('...')
141
+ pagination.push('...');
142
142
  }
143
143
 
144
144
  if (page.value < props.pages) {
145
- pagination.push(props.pages)
145
+ pagination.push(props.pages);
146
146
  }
147
147
 
148
- return pagination
149
- })
148
+ return pagination;
149
+ });
150
150
 
151
151
  const pagination = computed(() => {
152
152
  if (props.lightVersion) {
153
- return lightPagination.value
153
+ return lightPagination.value;
154
154
  }
155
155
 
156
- return defaultPagination.value
157
- })
156
+ return defaultPagination.value;
157
+ });
158
158
  </script>
159
159
 
160
160
  <template>
@@ -176,18 +176,18 @@ const pagination = computed(() => {
176
176
  :disabled="page === 1"
177
177
  :icon-left="faChevronLeft"
178
178
  :grouped="Grouped.left"
179
- filled
179
+ :filled="false"
180
180
  @click="() => page = page - 1"
181
181
  />
182
182
 
183
183
  <AntButton
184
184
  v-for="(pageObj) in pagination"
185
185
  :key="`pagination-button-${pageObj}`"
186
- :color-type="pageObj === page ? ColorType.primary : ColorType.base"
186
+ :state="pageObj === page ? State.primary : State.base"
187
187
  :class="{'text-primary-500 z-10': pageObj === page}"
188
188
  :disabled="pageObj === '...'"
189
189
  :grouped="Grouped.center"
190
- :filled="pageObj !== page"
190
+ :filled="false"
191
191
  :readonly="pageObj === page"
192
192
  @click="() => page = pageObj"
193
193
  >
@@ -198,7 +198,7 @@ const pagination = computed(() => {
198
198
  :icon-left="faChevronRight"
199
199
  :grouped="Grouped.right"
200
200
  :disabled="page === pages"
201
- filled
201
+ :filled="false"
202
202
  @click="() => page = page + 1"
203
203
  />
204
204
  </div>
@@ -38,7 +38,7 @@ const itemContainerClasses = computed(() => ({
38
38
  }));
39
39
 
40
40
  onMounted(() => {
41
- handleEnumValidation(props.position, Position, 'Position')
41
+ handleEnumValidation(props.position, Position, 'Position');
42
42
  });
43
43
  </script>
44
44
 
@@ -92,13 +92,13 @@ onMounted(() => {
92
92
  </div>
93
93
 
94
94
  <div
95
- class="border-neutral-300 border-b p-2.5 bg-neutral-100 rounded-t-md border-t border-l border-r text-neutral-100-font font-semibold"
95
+ class="border-neutral-300 border-b p-2 bg-neutral-100 rounded-t-md border-t border-l border-r text-neutral-100-font font-semibold"
96
96
  >
97
97
  {{ title }}
98
98
  </div>
99
99
 
100
100
  <div
101
- class="p-2.5 rounded-b-md text-for-white-bg-font border-neutral-300 border-l border-b border-r bg-white"
101
+ class="p-2 rounded-b-md text-for-white-bg-font border-neutral-300 border-l border-b border-r bg-white"
102
102
  >
103
103
  <slot name="content" />
104
104
  </div>
@@ -1,76 +1,82 @@
1
1
  <script lang="ts" setup>
2
2
  import {computed, onMounted} from 'vue';
3
- import {Size} from '../enums/Size.enum'
3
+ import {AntSpinnerSize} from './__types/AntSpinner.types';
4
4
  import {handleEnumValidation} from '../handler';
5
- import {ColorType} from '../enums/ColorType.enum';
5
+ import {State} from '../enums/State.enum';
6
6
 
7
7
  const props = withDefaults(defineProps<{
8
- colorType?: ColorType,
9
- size?: Size;
8
+ state?: State,
9
+ size?: AntSpinnerSize;
10
10
  inverted?: boolean;
11
11
  }>(), {
12
- size: Size.md,
13
- colorType: ColorType.base,
12
+ size: AntSpinnerSize.md,
13
+ state: State.base,
14
14
  inverted: false
15
15
  });
16
16
 
17
17
  const classes = computed(() => ({
18
18
  'animate-spin': true,
19
- 'w-4 h-4': props.size === Size.sm,
20
- 'w-5 h-5': props.size === Size.md,
19
+ 'w-3 h-3': props.size === AntSpinnerSize.xs2,
20
+ 'w-4 h-4': props.size === AntSpinnerSize.xs,
21
+ 'w-5 h-5': props.size === AntSpinnerSize.sm,
22
+ 'w-6 h-6': props.size === AntSpinnerSize.md,
23
+ 'w-7 h-7': props.size === AntSpinnerSize.lg,
24
+ 'w-8 h-8': props.size === AntSpinnerSize.xl2,
25
+ 'w-9 h-9': props.size === AntSpinnerSize.xl3,
26
+ 'w-10 h-10': props.size === AntSpinnerSize.xl4,
21
27
  }));
22
28
  onMounted(() => {
23
- handleEnumValidation(props.size, Size, 'size');
24
- handleEnumValidation(props.colorType, ColorType, 'colorType');
29
+ handleEnumValidation(props.size, AntSpinnerSize, 'size');
30
+ handleEnumValidation(props.state, State, 'state');
25
31
  });
26
32
  const circleClass = computed(() => {
27
- const invertedVariants: Record<ColorType, string> = {
28
- [ColorType.base]: 'fill-neutral-500',
29
- [ColorType.primary]: 'fill-primary-700',
30
- [ColorType.secondary]: 'fill-secondary-700',
31
- [ColorType.danger]: 'fill-danger-700',
32
- [ColorType.info]: 'fill-info-700',
33
- [ColorType.success]: 'fill-success-700',
34
- [ColorType.warning]: 'fill-warning-700',
33
+ const invertedVariants: Record<State, string> = {
34
+ [State.base]: 'fill-neutral-500',
35
+ [State.primary]: 'fill-primary-700',
36
+ [State.secondary]: 'fill-secondary-700',
37
+ [State.danger]: 'fill-danger-700',
38
+ [State.info]: 'fill-info-700',
39
+ [State.success]: 'fill-success-700',
40
+ [State.warning]: 'fill-warning-700',
35
41
  };
36
- const notInvertedVariants: Record<ColorType, string> = {
37
- [ColorType.base]: 'fill-neutral-100',
38
- [ColorType.primary]: 'fill-primary-100',
39
- [ColorType.secondary]: 'fill-secondary-100',
40
- [ColorType.danger]: 'fill-danger-100',
41
- [ColorType.info]: 'fill-info-100',
42
- [ColorType.success]: 'fill-success-100',
43
- [ColorType.warning]: 'fill-warning-100',
42
+ const notInvertedVariants: Record<State, string> = {
43
+ [State.base]: 'fill-neutral-100',
44
+ [State.primary]: 'fill-primary-100',
45
+ [State.secondary]: 'fill-secondary-100',
46
+ [State.danger]: 'fill-danger-100',
47
+ [State.info]: 'fill-info-100',
48
+ [State.success]: 'fill-success-100',
49
+ [State.warning]: 'fill-warning-100',
44
50
  };
45
51
 
46
52
  return {
47
- [invertedVariants[props.colorType]]: props.inverted,
48
- [notInvertedVariants[props.colorType]]: !props.inverted,
53
+ [invertedVariants[props.state]]: props.inverted,
54
+ [notInvertedVariants[props.state]]: !props.inverted,
49
55
  };
50
56
  });
51
57
  const spinningElementClass = computed(() => {
52
- const invertedVariants: Record<ColorType, string> = {
53
- [ColorType.base]: 'fill-neutral-100',
54
- [ColorType.primary]: 'fill-primary-100',
55
- [ColorType.secondary]: 'fill-secondary-100',
56
- [ColorType.danger]: 'fill-danger-100',
57
- [ColorType.info]: 'fill-info-100',
58
- [ColorType.success]: 'fill-success-100',
59
- [ColorType.warning]: 'fill-warning-100',
58
+ const invertedVariants: Record<State, string> = {
59
+ [State.base]: 'fill-neutral-100',
60
+ [State.primary]: 'fill-primary-100',
61
+ [State.secondary]: 'fill-secondary-100',
62
+ [State.danger]: 'fill-danger-100',
63
+ [State.info]: 'fill-info-100',
64
+ [State.success]: 'fill-success-100',
65
+ [State.warning]: 'fill-warning-100',
60
66
  };
61
- const notInvertedVariants: Record<ColorType, string> = {
62
- [ColorType.base]: 'fill-neutral-500',
63
- [ColorType.primary]: 'fill-primary-500',
64
- [ColorType.secondary]: 'fill-secondary-500',
65
- [ColorType.danger]: 'fill-danger-500',
66
- [ColorType.info]: 'fill-info-500',
67
- [ColorType.success]: 'fill-success-500',
68
- [ColorType.warning]: 'fill-warning-500',
67
+ const notInvertedVariants: Record<State, string> = {
68
+ [State.base]: 'fill-neutral-500',
69
+ [State.primary]: 'fill-primary-500',
70
+ [State.secondary]: 'fill-secondary-500',
71
+ [State.danger]: 'fill-danger-500',
72
+ [State.info]: 'fill-info-500',
73
+ [State.success]: 'fill-success-500',
74
+ [State.warning]: 'fill-warning-500',
69
75
  };
70
76
 
71
77
  return {
72
- [invertedVariants[props.colorType]]: props.inverted,
73
- [notInvertedVariants[props.colorType]]: !props.inverted,
78
+ [invertedVariants[props.state]]: props.inverted,
79
+ [notInvertedVariants[props.state]]: !props.inverted,
74
80
  };
75
81
  });
76
82
  </script>
@@ -84,12 +90,12 @@ const spinningElementClass = computed(() => {
84
90
  data-e2e="spinner"
85
91
  >
86
92
  <path
87
- :class="circleClass"
88
- d="M8 16C12.4183 16 16 12.4183 16 8H14C14 11.5346 11.5346 14 8 14C4.46538 14 2 11.5346 2 8C2 4.46538 4.46538 2 8 2V0C3.58172 0 0 3.58172 0 8C0 12.4183 3.58172 16 8 16Z"
93
+ :class="circleClass"
94
+ d="M8 16C12.4183 16 16 12.4183 16 8H14C14 11.5346 11.5346 14 8 14C4.46538 14 2 11.5346 2 8C2 4.46538 4.46538 2 8 2V0C3.58172 0 0 3.58172 0 8C0 12.4183 3.58172 16 8 16Z"
89
95
  />
90
96
  <path
91
- :class="spinningElementClass"
92
- d="M16 8C16 6.94942 15.7931 5.90914 15.391 4.93853C14.989 3.96793 14.3997 3.08601 13.6569 2.34315C12.914 1.60028 12.0321 1.011 11.0615 0.608963C10.0909 0.206926 9.05057 -1.7116e-07 8 0L8 2C8.78793 2 9.56815 2.15519 10.2961 2.45672C11.0241 2.75825 11.6855 3.20021 12.2426 3.75736C12.7998 4.31451 13.2417 4.97595 13.5433 5.7039C13.8448 6.43185 14 7.21207 14 8H16Z"
97
+ :class="spinningElementClass"
98
+ d="M16 8C16 6.94942 15.7931 5.90914 15.391 4.93853C14.989 3.96793 14.3997 3.08601 13.6569 2.34315C12.914 1.60028 12.0321 1.011 11.0615 0.608963C10.0909 0.206926 9.05057 -1.7116e-07 8 0L8 2C8.78793 2 9.56815 2.15519 10.2961 2.45672C11.0241 2.75825 11.6855 3.20021 12.2426 3.75736C12.7998 4.31451 13.2417 4.97595 13.5433 5.7039C13.8448 6.43185 14 7.21207 14 8H16Z"
93
99
  />
94
100
  </svg>
95
101
  </template>
@@ -1,47 +1,79 @@
1
1
  <script lang="ts" setup>
2
2
  import {computed, onMounted} from 'vue';
3
- import {Size} from '../enums/Size.enum'
4
- import {TagColorType} from '../types/AntTag.type';
5
3
  import {handleEnumValidation} from '../handler';
6
- import {type IconDefinition} from '@fortawesome/free-solid-svg-icons';
7
- import {faCircleXmark} from '@fortawesome/free-solid-svg-icons';
4
+ import {faCircleXmark, type IconDefinition} from '@fortawesome/free-solid-svg-icons';
5
+ import {AntTagSize, TagState} from './__types/AntTag.types';
6
+ import AntIcon from './AntIcon.vue';
7
+ import {IconSize} from './__types/AntIcon.types';
8
8
 
9
9
  defineEmits(['close']);
10
10
  const props = withDefaults(defineProps<{
11
- colorType?: TagColorType,
12
- size?: Size;
11
+ state?: TagState,
12
+ size?: AntTagSize;
13
13
  iconLeft?: IconDefinition;
14
14
  dismiss?: boolean
15
15
  }>(), {
16
- size: Size.md,
17
- colorType: TagColorType.base,
16
+ size: AntTagSize.md,
17
+ state: TagState.base,
18
18
  dismiss: false
19
19
  });
20
20
 
21
21
  const classes = computed(() => {
22
- const variants: Record<TagColorType, string> = {
23
- [TagColorType.danger]: 'bg-danger-500 text-danger-500-font',
24
- [TagColorType.info]: 'bg-info-500 text-info-500-font',
25
- [TagColorType.base]: 'bg-neutral-300 text-neutral-300-font',
26
- [TagColorType.success]: 'bg-success-500 text-success-500-font',
27
- [TagColorType.warning]: 'bg-warning-500 text-warning-500-font',
22
+ const variants: Record<TagState, string> = {
23
+ [TagState.danger]: 'bg-danger-500 text-danger-500-font',
24
+ [TagState.info]: 'bg-info-500 text-info-500-font',
25
+ [TagState.primary]: 'bg-primary-500 text-primary-500-font',
26
+ [TagState.secondary]: 'bg-secondary-500 text-secondary-500-font',
27
+ [TagState.base]: 'bg-neutral-300 text-neutral-300-font',
28
+ [TagState.success]: 'bg-success-500 text-success-500-font',
29
+ [TagState.warning]: 'bg-warning-500 text-warning-500-font',
28
30
  };
29
-
30
31
  return {
31
32
  'rounded-md inline-flex items-center': true,
32
- 'px-1.5 py-1 text-sm gap-1.5': props.size === Size.md,
33
- 'px-1 py-0.5 text-xs gap-1': props.size === Size.sm,
34
- [variants[props.colorType]]: true,
33
+ 'px-1 py-0.5 text-xs gap-0.5': props.size === AntTagSize.xs3,
34
+ 'px-1.5 py-1 text-xs gap-1': props.size === AntTagSize.xs2,
35
+ 'px-2 py-1.5 text-xs gap-1.5': props.size === AntTagSize.xs,
36
+ 'px-2 py-1.5 text-sm gap-1.5': props.size === AntTagSize.sm,
37
+ 'px-2.5 py-2 text-sm gap-2': props.size === AntTagSize.md,
38
+ 'px-3 py-2.5 text-sm gap-2.5': props.size === AntTagSize.lg,
39
+ [variants[props.state]]: true,
40
+ };
41
+ });
42
+ const getIconSize = computed(() => {
43
+ if (props.size === AntTagSize.xs || props.size === AntTagSize.xs2 || props.size === AntTagSize.xs3) {
44
+ return IconSize.xs;
45
+ } else {
46
+ return IconSize.sm;
47
+ }
48
+ });
49
+ const iconState = computed(() => {
50
+ switch (props.state) {
51
+ case TagState.info:
52
+ return 'text-info-500-font';
53
+ case TagState.success:
54
+ return 'text-success-500-font';
55
+ case TagState.warning:
56
+ return 'text-warning-500-font';
57
+ case TagState.danger:
58
+ return 'text-danger-500-font';
59
+ case TagState.primary:
60
+ return 'text-primary-500-font';
61
+ case TagState.secondary:
62
+ return 'text-secondary-500-font';
63
+ default:
64
+ return 'text-neutral-300-font';
65
+ }
66
+ });
67
+ const iconWrapperClass = computed(() => {
68
+ return {
69
+ 'w-4 h-4': props.size === AntTagSize.xs2 || props.size === AntTagSize.xs,
70
+ 'w-5 h-5': props.size === AntTagSize.sm || props.size === AntTagSize.md || props.size === AntTagSize.lg
35
71
  };
36
72
  });
37
- const iconClasses = computed(() => ({
38
- 'h-3': props.size === Size.sm,
39
- 'h-4': props.size === Size.md,
40
- }));
41
73
 
42
74
  onMounted(() => {
43
- handleEnumValidation(props.size, Size, 'size');
44
- handleEnumValidation(props.colorType, TagColorType, 'colorType');
75
+ handleEnumValidation(props.size, AntTagSize, 'size');
76
+ handleEnumValidation(props.state, TagState, 'state');
45
77
  });
46
78
  </script>
47
79
 
@@ -51,28 +83,31 @@ onMounted(() => {
51
83
  data-e2e="tag"
52
84
  >
53
85
  <span
54
- v-if="iconLeft"
55
- class="inline-flex items-center justify-center"
56
- :class="{'w-4 h-4': props.size === Size.sm, 'w-5 h-5': props.size === Size.md}"
86
+ v-if="iconLeft"
87
+ class="inline-flex items-center justify-center"
88
+ :class="iconWrapperClass"
57
89
  >
58
- <fa-icon
59
- :icon="iconLeft"
60
- :class="iconClasses"
61
- />
90
+ <AntIcon
91
+ :icon="iconLeft"
92
+ :size="getIconSize"
93
+ :color="iconState"
94
+ >
95
+ </anticon>
62
96
  </span>
63
97
 
64
- <slot/>
98
+ <slot />
65
99
 
66
100
  <span
67
- v-if="dismiss"
68
- class="inline-flex items-center justify-center"
69
- :class="{'w-4 h-4': props.size === Size.sm, 'w-5 h-5': props.size === Size.md}"
101
+ v-if="dismiss"
102
+ class="inline-flex items-center justify-center"
103
+ :class="iconWrapperClass"
70
104
  >
71
- <fa-icon
72
- :icon="faCircleXmark"
73
- :class="iconClasses"
74
- class="cursor-pointer"
75
- @click="() => $emit('close')"
105
+ <AntIcon
106
+ :icon="faCircleXmark"
107
+ :size="getIconSize"
108
+ :color="iconState"
109
+ class="cursor-pointer"
110
+ @click="() => $emit('close')"
76
111
  />
77
112
  </span>
78
113
  </span>