@antify/ui-module 1.1.3

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 (336) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +74 -0
  3. package/dist/module.cjs +5 -0
  4. package/dist/module.d.mts +131 -0
  5. package/dist/module.d.ts +131 -0
  6. package/dist/module.json +5 -0
  7. package/dist/module.mjs +339 -0
  8. package/dist/runtime/assets/tailwind.css +1 -0
  9. package/dist/runtime/components/AntAccordion.vue +59 -0
  10. package/dist/runtime/components/AntAccordionItem.vue +66 -0
  11. package/dist/runtime/components/AntAlert.vue +137 -0
  12. package/dist/runtime/components/AntDropdown.vue +79 -0
  13. package/dist/runtime/components/AntIcon.vue +51 -0
  14. package/dist/runtime/components/AntKeycap.vue +24 -0
  15. package/dist/runtime/components/AntListGroup.vue +24 -0
  16. package/dist/runtime/components/AntListGroupItem.vue +81 -0
  17. package/dist/runtime/components/AntModal.vue +87 -0
  18. package/dist/runtime/components/AntPagination.vue +201 -0
  19. package/dist/runtime/components/AntPopover.vue +112 -0
  20. package/dist/runtime/components/AntSkeleton.vue +38 -0
  21. package/dist/runtime/components/AntSpinner.vue +95 -0
  22. package/dist/runtime/components/AntTag.vue +79 -0
  23. package/dist/runtime/components/AntToast.vue +109 -0
  24. package/dist/runtime/components/AntToaster.vue +46 -0
  25. package/dist/runtime/components/AntTooltip.vue +165 -0
  26. package/dist/runtime/components/Main.stories.mdx +10 -0
  27. package/dist/runtime/components/__stories/AntAccordion.stories.d.ts +9 -0
  28. package/dist/runtime/components/__stories/AntAccordion.stories.mjs +97 -0
  29. package/dist/runtime/components/__stories/AntAlert.stories.d.ts +10 -0
  30. package/dist/runtime/components/__stories/AntAlert.stories.mjs +75 -0
  31. package/dist/runtime/components/__stories/AntDropdown.stories.d.ts +6 -0
  32. package/dist/runtime/components/__stories/AntDropdown.stories.mjs +52 -0
  33. package/dist/runtime/components/__stories/AntIcon.stories.d.ts +8 -0
  34. package/dist/runtime/components/__stories/AntIcon.stories.mjs +90 -0
  35. package/dist/runtime/components/__stories/AntKeycap.stories.d.ts +9 -0
  36. package/dist/runtime/components/__stories/AntKeycap.stories.mjs +59 -0
  37. package/dist/runtime/components/__stories/AntListGroup.stories.d.ts +7 -0
  38. package/dist/runtime/components/__stories/AntListGroup.stories.mjs +36 -0
  39. package/dist/runtime/components/__stories/AntListGroupItem.stories.d.ts +10 -0
  40. package/dist/runtime/components/__stories/AntListGroupItem.stories.mjs +62 -0
  41. package/dist/runtime/components/__stories/AntModal.stories.d.ts +7 -0
  42. package/dist/runtime/components/__stories/AntModal.stories.mjs +78 -0
  43. package/dist/runtime/components/__stories/AntPagination.stories.d.ts +8 -0
  44. package/dist/runtime/components/__stories/AntPagination.stories.mjs +39 -0
  45. package/dist/runtime/components/__stories/AntPopover.stories.d.ts +6 -0
  46. package/dist/runtime/components/__stories/AntPopover.stories.mjs +47 -0
  47. package/dist/runtime/components/__stories/AntSkeleton.stories.d.ts +8 -0
  48. package/dist/runtime/components/__stories/AntSkeleton.stories.mjs +43 -0
  49. package/dist/runtime/components/__stories/AntSpinner.stories.d.ts +6 -0
  50. package/dist/runtime/components/__stories/AntSpinner.stories.mjs +34 -0
  51. package/dist/runtime/components/__stories/AntTag.stories.d.ts +7 -0
  52. package/dist/runtime/components/__stories/AntTag.stories.mjs +44 -0
  53. package/dist/runtime/components/__stories/AntToast.stories.d.ts +8 -0
  54. package/dist/runtime/components/__stories/AntToast.stories.mjs +66 -0
  55. package/dist/runtime/components/__stories/AntToaster.stories.d.ts +34 -0
  56. package/dist/runtime/components/__stories/AntToaster.stories.mjs +42 -0
  57. package/dist/runtime/components/__stories/AntTooltip.stories.d.ts +6 -0
  58. package/dist/runtime/components/__stories/AntTooltip.stories.mjs +43 -0
  59. package/dist/runtime/components/__types/Accordion.types.d.ts +4 -0
  60. package/dist/runtime/components/__types/Accordion.types.mjs +5 -0
  61. package/dist/runtime/components/__types/AntIcon.types.d.ts +5 -0
  62. package/dist/runtime/components/__types/AntIcon.types.mjs +6 -0
  63. package/dist/runtime/components/__types/AntToaster.types.d.ts +8 -0
  64. package/dist/runtime/components/__types/AntToaster.types.mjs +0 -0
  65. package/dist/runtime/components/__types/index.d.ts +2 -0
  66. package/dist/runtime/components/__types/index.mjs +2 -0
  67. package/dist/runtime/components/buttons/AntButton.vue +227 -0
  68. package/dist/runtime/components/buttons/AntCreateButton.vue +32 -0
  69. package/dist/runtime/components/buttons/AntDeleteButton.vue +32 -0
  70. package/dist/runtime/components/buttons/AntSaveAndNewButton.vue +32 -0
  71. package/dist/runtime/components/buttons/AntSaveButton.vue +31 -0
  72. package/dist/runtime/components/buttons/__stories/AntButton.stories.d.ts +15 -0
  73. package/dist/runtime/components/buttons/__stories/AntButton.stories.mjs +272 -0
  74. package/dist/runtime/components/buttons/__stories/AntCreateButton.stories.d.ts +10 -0
  75. package/dist/runtime/components/buttons/__stories/AntCreateButton.stories.mjs +57 -0
  76. package/dist/runtime/components/buttons/__stories/AntDeleteButton.stories.d.ts +10 -0
  77. package/dist/runtime/components/buttons/__stories/AntDeleteButton.stories.mjs +57 -0
  78. package/dist/runtime/components/buttons/__stories/AntSaveAndNewButton.stories.d.ts +10 -0
  79. package/dist/runtime/components/buttons/__stories/AntSaveAndNewButton.stories.mjs +57 -0
  80. package/dist/runtime/components/buttons/__stories/AntSaveButton.stories.d.ts +10 -0
  81. package/dist/runtime/components/buttons/__stories/AntSaveButton.stories.mjs +57 -0
  82. package/dist/runtime/components/buttons/__types/AntButton.type.d.ts +4 -0
  83. package/dist/runtime/components/buttons/__types/AntButton.type.mjs +5 -0
  84. package/dist/runtime/components/buttons/__types/index.d.ts +1 -0
  85. package/dist/runtime/components/buttons/__types/index.mjs +1 -0
  86. package/dist/runtime/components/crud/AntCrud.vue +42 -0
  87. package/dist/runtime/components/crud/AntCrudDetail.vue +11 -0
  88. package/dist/runtime/components/crud/AntCrudDetailActions.vue +51 -0
  89. package/dist/runtime/components/crud/AntCrudDetailNav.vue +51 -0
  90. package/dist/runtime/components/crud/AntCrudTableFilter.vue +120 -0
  91. package/dist/runtime/components/crud/AntCrudTableNav.vue +129 -0
  92. package/dist/runtime/components/crud/__stories/AntCrud.stories.d.ts +6 -0
  93. package/dist/runtime/components/crud/__stories/AntCrud.stories.mjs +126 -0
  94. package/dist/runtime/components/crud/__stories/AntCrudDetail.stories.d.ts +7 -0
  95. package/dist/runtime/components/crud/__stories/AntCrudDetail.stories.mjs +80 -0
  96. package/dist/runtime/components/crud/__stories/AntCrudDetailActions.stories.d.ts +6 -0
  97. package/dist/runtime/components/crud/__stories/AntCrudDetailActions.stories.mjs +25 -0
  98. package/dist/runtime/components/crud/__stories/AntCrudDetailNav.stories.d.ts +6 -0
  99. package/dist/runtime/components/crud/__stories/AntCrudDetailNav.stories.mjs +41 -0
  100. package/dist/runtime/components/crud/__stories/AntCrudTableFilter.stories.d.ts +6 -0
  101. package/dist/runtime/components/crud/__stories/AntCrudTableFilter.stories.mjs +25 -0
  102. package/dist/runtime/components/crud/__stories/AntCrudTableNav.stories.d.ts +8 -0
  103. package/dist/runtime/components/crud/__stories/AntCrudTableNav.stories.mjs +56 -0
  104. package/dist/runtime/components/dialogs/AntDeleteDialog.vue +29 -0
  105. package/dist/runtime/components/dialogs/AntDialog.vue +147 -0
  106. package/dist/runtime/components/dialogs/__stories/AndDeleteDialog.stories.d.ts +6 -0
  107. package/dist/runtime/components/dialogs/__stories/AndDeleteDialog.stories.mjs +30 -0
  108. package/dist/runtime/components/dialogs/__stories/AntDialog.stories.d.ts +6 -0
  109. package/dist/runtime/components/dialogs/__stories/AntDialog.stories.mjs +60 -0
  110. package/dist/runtime/components/form/AntCheckboxWidget/AntCheckbox.vue +145 -0
  111. package/dist/runtime/components/form/AntCheckboxWidget/AntCheckboxGroup.vue +91 -0
  112. package/dist/runtime/components/form/AntCheckboxWidget/__stories/AntCheckbox.stories.d.ts +8 -0
  113. package/dist/runtime/components/form/AntCheckboxWidget/__stories/AntCheckbox.stories.mjs +286 -0
  114. package/dist/runtime/components/form/AntCheckboxWidget/__stories/AntCheckboxGroup.stories.d.ts +7 -0
  115. package/dist/runtime/components/form/AntCheckboxWidget/__stories/AntCheckboxGroup.stories.mjs +96 -0
  116. package/dist/runtime/components/form/AntCheckboxWidget/__types/AntCheckbox.d.ts +6 -0
  117. package/dist/runtime/components/form/AntCheckboxWidget/__types/AntCheckbox.mjs +0 -0
  118. package/dist/runtime/components/form/AntFormGroup.vue +21 -0
  119. package/dist/runtime/components/form/AntFormGroupLabel.vue +5 -0
  120. package/dist/runtime/components/form/AntNumberInput.vue +170 -0
  121. package/dist/runtime/components/form/AntRadioWidget/AntRadio.vue +139 -0
  122. package/dist/runtime/components/form/AntRadioWidget/AntRadioGroup.vue +80 -0
  123. package/dist/runtime/components/form/AntRadioWidget/__stories/AntRadio.stories.d.ts +8 -0
  124. package/dist/runtime/components/form/AntRadioWidget/__stories/AntRadio.stories.mjs +79 -0
  125. package/dist/runtime/components/form/AntRadioWidget/__stories/AntRadioGroup.stories.d.ts +8 -0
  126. package/dist/runtime/components/form/AntRadioWidget/__stories/AntRadioGroup.stories.mjs +125 -0
  127. package/dist/runtime/components/form/AntRadioWidget/__types/AntRadio.type.d.ts +9 -0
  128. package/dist/runtime/components/form/AntRadioWidget/__types/AntRadio.type.mjs +0 -0
  129. package/dist/runtime/components/form/AntRangeSlider.vue +81 -0
  130. package/dist/runtime/components/form/AntRichTextEditor.vue +237 -0
  131. package/dist/runtime/components/form/AntSearch.vue +76 -0
  132. package/dist/runtime/components/form/AntSelect.vue +346 -0
  133. package/dist/runtime/components/form/AntSwitch.vue +145 -0
  134. package/dist/runtime/components/form/AntSwitcher.vue +184 -0
  135. package/dist/runtime/components/form/AntTextInput.vue +73 -0
  136. package/dist/runtime/components/form/AntTextarea.vue +170 -0
  137. package/dist/runtime/components/form/AntUnitInput.vue +99 -0
  138. package/dist/runtime/components/form/Elements/AntBaseInput.vue +216 -0
  139. package/dist/runtime/components/form/Elements/AntDropDown.vue +160 -0
  140. package/dist/runtime/components/form/Elements/AntField.vue +102 -0
  141. package/dist/runtime/components/form/Elements/AntInputDescription.vue +55 -0
  142. package/dist/runtime/components/form/Elements/AntInputLabel.vue +55 -0
  143. package/dist/runtime/components/form/Elements/AntInputLimiter.vue +55 -0
  144. package/dist/runtime/components/form/Elements/__stories/AntBaseInput.stories.d.ts +9 -0
  145. package/dist/runtime/components/form/Elements/__stories/AntBaseInput.stories.mjs +168 -0
  146. package/dist/runtime/components/form/Elements/__stories/AntField.stories.d.ts +6 -0
  147. package/dist/runtime/components/form/Elements/__stories/AntField.stories.mjs +80 -0
  148. package/dist/runtime/components/form/Elements/__stories/AntInputDescription.stories.d.ts +6 -0
  149. package/dist/runtime/components/form/Elements/__stories/AntInputDescription.stories.mjs +34 -0
  150. package/dist/runtime/components/form/Elements/__stories/AntInputLabel.stories.d.ts +7 -0
  151. package/dist/runtime/components/form/Elements/__stories/AntInputLabel.stories.mjs +46 -0
  152. package/dist/runtime/components/form/Elements/__stories/AntInputLimiter.stories.d.ts +6 -0
  153. package/dist/runtime/components/form/Elements/__stories/AntInputLimiter.stories.mjs +37 -0
  154. package/dist/runtime/components/form/Elements/__types/AntBaseInput.type.d.ts +16 -0
  155. package/dist/runtime/components/form/Elements/__types/AntBaseInput.type.mjs +17 -0
  156. package/dist/runtime/components/form/Elements/__types/index.d.ts +1 -0
  157. package/dist/runtime/components/form/Elements/__types/index.mjs +1 -0
  158. package/dist/runtime/components/form/Elements/index.d.ts +6 -0
  159. package/dist/runtime/components/form/Elements/index.mjs +12 -0
  160. package/dist/runtime/components/form/__stories/AntFormGroup.stories.d.ts +6 -0
  161. package/dist/runtime/components/form/__stories/AntFormGroup.stories.mjs +33 -0
  162. package/dist/runtime/components/form/__stories/AntFormGroupLabel.stories.d.ts +6 -0
  163. package/dist/runtime/components/form/__stories/AntFormGroupLabel.stories.mjs +20 -0
  164. package/dist/runtime/components/form/__stories/AntNumberInput.stories.d.ts +7 -0
  165. package/dist/runtime/components/form/__stories/AntNumberInput.stories.mjs +67 -0
  166. package/dist/runtime/components/form/__stories/AntRangeSlider.stories.d.ts +6 -0
  167. package/dist/runtime/components/form/__stories/AntRangeSlider.stories.mjs +40 -0
  168. package/dist/runtime/components/form/__stories/AntRichTextEditor.stories-old.d.ts +0 -0
  169. package/dist/runtime/components/form/__stories/AntRichTextEditor.stories-old.mjs +0 -0
  170. package/dist/runtime/components/form/__stories/AntSearch.stories.d.ts +6 -0
  171. package/dist/runtime/components/form/__stories/AntSearch.stories.mjs +43 -0
  172. package/dist/runtime/components/form/__stories/AntSelect.stories.d.ts +13 -0
  173. package/dist/runtime/components/form/__stories/AntSelect.stories.mjs +220 -0
  174. package/dist/runtime/components/form/__stories/AntSwitch.stories.d.ts +8 -0
  175. package/dist/runtime/components/form/__stories/AntSwitch.stories.mjs +215 -0
  176. package/dist/runtime/components/form/__stories/AntSwitcher.stories.d.ts +8 -0
  177. package/dist/runtime/components/form/__stories/AntSwitcher.stories.mjs +225 -0
  178. package/dist/runtime/components/form/__stories/AntTextInput.stories.d.ts +7 -0
  179. package/dist/runtime/components/form/__stories/AntTextInput.stories.mjs +68 -0
  180. package/dist/runtime/components/form/__stories/AntTextarea.stories.d.ts +8 -0
  181. package/dist/runtime/components/form/__stories/AntTextarea.stories.mjs +128 -0
  182. package/dist/runtime/components/form/__stories/AntUnitInput.stories.d.ts +8 -0
  183. package/dist/runtime/components/form/__stories/AntUnitInput.stories.mjs +84 -0
  184. package/dist/runtime/components/form/__types/AntSelect.type.d.ts +4 -0
  185. package/dist/runtime/components/form/__types/AntSelect.type.mjs +0 -0
  186. package/dist/runtime/components/form/__types/AntSwitcher.type.d.ts +4 -0
  187. package/dist/runtime/components/form/__types/AntSwitcher.type.mjs +0 -0
  188. package/dist/runtime/components/form/__types/AntTextInput.type.d.ts +7 -0
  189. package/dist/runtime/components/form/__types/AntTextInput.type.mjs +8 -0
  190. package/dist/runtime/components/form/__types/index.d.ts +3 -0
  191. package/dist/runtime/components/form/__types/index.mjs +3 -0
  192. package/dist/runtime/components/form/index.d.ts +11 -0
  193. package/dist/runtime/components/form/index.mjs +22 -0
  194. package/dist/runtime/components/index.d.ts +22 -0
  195. package/dist/runtime/components/index.mjs +41 -0
  196. package/dist/runtime/components/layouts/AntNavLeftLayout.vue +36 -0
  197. package/dist/runtime/components/layouts/__stories/AntNavLeftLayout.stories.d.ts +7 -0
  198. package/dist/runtime/components/layouts/__stories/AntNavLeftLayout.stories.mjs +68 -0
  199. package/dist/runtime/components/navbar/AntNavbar.vue +25 -0
  200. package/dist/runtime/components/navbar/AntNavbarItem.vue +78 -0
  201. package/dist/runtime/components/navbar/__stories/AntNavbar.stories.d.ts +6 -0
  202. package/dist/runtime/components/navbar/__stories/AntNavbar.stories.mjs +66 -0
  203. package/dist/runtime/components/navbar/__types/NavbarItem.d.ts +10 -0
  204. package/dist/runtime/components/navbar/__types/NavbarItem.mjs +0 -0
  205. package/dist/runtime/components/table/AntTable.vue +192 -0
  206. package/dist/runtime/components/table/AntTableSortButton.vue +26 -0
  207. package/dist/runtime/components/table/AntTd.vue +70 -0
  208. package/dist/runtime/components/table/AntTh.vue +67 -0
  209. package/dist/runtime/components/table/__stories/AntTable.stories.d.ts +9 -0
  210. package/dist/runtime/components/table/__stories/AntTable.stories.mjs +274 -0
  211. package/dist/runtime/components/table/__types/TableHeader.type.d.ts +31 -0
  212. package/dist/runtime/components/table/__types/TableHeader.type.mjs +19 -0
  213. package/dist/runtime/components/tabs/AntTabItem.vue +115 -0
  214. package/dist/runtime/components/tabs/AntTabs.vue +47 -0
  215. package/dist/runtime/components/tabs/__stories/AntTabItem.stories.d.ts +6 -0
  216. package/dist/runtime/components/tabs/__stories/AntTabItem.stories.mjs +32 -0
  217. package/dist/runtime/components/tabs/__stories/AntTabs.stories.d.ts +9 -0
  218. package/dist/runtime/components/tabs/__stories/AntTabs.stories.mjs +173 -0
  219. package/dist/runtime/components/tabs/__types/AntTabItem.types.d.ts +17 -0
  220. package/dist/runtime/components/tabs/__types/AntTabItem.types.mjs +6 -0
  221. package/dist/runtime/components/transitions/AntTransitionCollapseHeight.vue +92 -0
  222. package/dist/runtime/composables/useUi.d.ts +20 -0
  223. package/dist/runtime/composables/useUi.mjs +31 -0
  224. package/dist/runtime/composables/useUiClient.d.ts +34 -0
  225. package/dist/runtime/composables/useUiClient.mjs +61 -0
  226. package/dist/runtime/composables/useValidator.d.ts +1 -0
  227. package/dist/runtime/composables/useValidator.mjs +1 -0
  228. package/dist/runtime/enums/ColorType.enum.d.ts +16 -0
  229. package/dist/runtime/enums/ColorType.enum.mjs +18 -0
  230. package/dist/runtime/enums/Direction.enum.d.ts +4 -0
  231. package/dist/runtime/enums/Direction.enum.mjs +5 -0
  232. package/dist/runtime/enums/Grouped.enum.d.ts +6 -0
  233. package/dist/runtime/enums/Grouped.enum.mjs +7 -0
  234. package/dist/runtime/enums/Position.enum.d.ts +12 -0
  235. package/dist/runtime/enums/Position.enum.mjs +14 -0
  236. package/dist/runtime/enums/Size.enum.d.ts +4 -0
  237. package/dist/runtime/enums/Size.enum.mjs +5 -0
  238. package/dist/runtime/enums/index.d.ts +4 -0
  239. package/dist/runtime/enums/index.mjs +4 -0
  240. package/dist/runtime/env.d.ts +8 -0
  241. package/dist/runtime/handler.d.ts +1 -0
  242. package/dist/runtime/handler.mjs +5 -0
  243. package/dist/runtime/plugins/toaster.d.ts +22 -0
  244. package/dist/runtime/plugins/toaster.mjs +53 -0
  245. package/dist/runtime/plugins/ui-module.d.ts +2 -0
  246. package/dist/runtime/plugins/ui-module.mjs +13 -0
  247. package/dist/runtime/shims/vue.d.ts +5 -0
  248. package/dist/runtime/tailwind.config.d.ts +182 -0
  249. package/dist/runtime/tailwind.config.mjs +196 -0
  250. package/dist/runtime/types/AntListGroupItem.type.d.ts +11 -0
  251. package/dist/runtime/types/AntListGroupItem.type.mjs +12 -0
  252. package/dist/runtime/types/AntTag.type.d.ts +8 -0
  253. package/dist/runtime/types/AntTag.type.mjs +9 -0
  254. package/dist/runtime/types/Checkbox.type.d.ts +8 -0
  255. package/dist/runtime/types/Checkbox.type.mjs +0 -0
  256. package/dist/runtime/types/NavItem.type.d.ts +9 -0
  257. package/dist/runtime/types/NavItem.type.mjs +0 -0
  258. package/dist/runtime/types/RadioButton.type.d.ts +5 -0
  259. package/dist/runtime/types/RadioButton.type.mjs +0 -0
  260. package/dist/runtime/types/Tabs.type.d.ts +6 -0
  261. package/dist/runtime/types/Tabs.type.mjs +0 -0
  262. package/dist/runtime/types/Toaster.type.d.ts +6 -0
  263. package/dist/runtime/types/Toaster.type.mjs +0 -0
  264. package/dist/runtime/types/index.d.ts +7 -0
  265. package/dist/runtime/types/index.mjs +7 -0
  266. package/dist/runtime/types.d.ts +7 -0
  267. package/dist/runtime/types.mjs +7 -0
  268. package/dist/runtime/utils/helper.d.ts +4 -0
  269. package/dist/runtime/utils/helper.mjs +12 -0
  270. package/dist/runtime/utils.d.ts +14 -0
  271. package/dist/runtime/utils.mjs +20 -0
  272. package/dist/types.d.mts +8 -0
  273. package/dist/types.d.ts +8 -0
  274. package/package.json +81 -0
  275. package/src/runtime/components/AntAccordion.vue +59 -0
  276. package/src/runtime/components/AntAccordionItem.vue +104 -0
  277. package/src/runtime/components/AntAlert.vue +137 -0
  278. package/src/runtime/components/AntDropdown.vue +100 -0
  279. package/src/runtime/components/AntIcon.vue +51 -0
  280. package/src/runtime/components/AntKeycap.vue +24 -0
  281. package/src/runtime/components/AntListGroup.vue +24 -0
  282. package/src/runtime/components/AntListGroupItem.vue +81 -0
  283. package/src/runtime/components/AntModal.vue +129 -0
  284. package/src/runtime/components/AntPagination.vue +201 -0
  285. package/src/runtime/components/AntPopover.vue +133 -0
  286. package/src/runtime/components/AntSkeleton.vue +38 -0
  287. package/src/runtime/components/AntSpinner.vue +95 -0
  288. package/src/runtime/components/AntTag.vue +79 -0
  289. package/src/runtime/components/AntToast.vue +109 -0
  290. package/src/runtime/components/AntToaster.vue +71 -0
  291. package/src/runtime/components/AntTooltip.vue +165 -0
  292. package/src/runtime/components/buttons/AntButton.vue +227 -0
  293. package/src/runtime/components/buttons/AntCreateButton.vue +32 -0
  294. package/src/runtime/components/buttons/AntDeleteButton.vue +32 -0
  295. package/src/runtime/components/buttons/AntSaveAndNewButton.vue +32 -0
  296. package/src/runtime/components/buttons/AntSaveButton.vue +31 -0
  297. package/src/runtime/components/crud/AntCrud.vue +66 -0
  298. package/src/runtime/components/crud/AntCrudDetail.vue +11 -0
  299. package/src/runtime/components/crud/AntCrudDetailActions.vue +51 -0
  300. package/src/runtime/components/crud/AntCrudDetailNav.vue +51 -0
  301. package/src/runtime/components/crud/AntCrudTableFilter.vue +120 -0
  302. package/src/runtime/components/crud/AntCrudTableNav.vue +129 -0
  303. package/src/runtime/components/dialogs/AntDeleteDialog.vue +29 -0
  304. package/src/runtime/components/dialogs/AntDialog.vue +181 -0
  305. package/src/runtime/components/form/AntCheckboxWidget/AntCheckbox.vue +167 -0
  306. package/src/runtime/components/form/AntCheckboxWidget/AntCheckboxGroup.vue +91 -0
  307. package/src/runtime/components/form/AntFormGroup.vue +21 -0
  308. package/src/runtime/components/form/AntFormGroupLabel.vue +5 -0
  309. package/src/runtime/components/form/AntNumberInput.vue +170 -0
  310. package/src/runtime/components/form/AntRadioWidget/AntRadio.vue +164 -0
  311. package/src/runtime/components/form/AntRadioWidget/AntRadioGroup.vue +80 -0
  312. package/src/runtime/components/form/AntRangeSlider.vue +101 -0
  313. package/src/runtime/components/form/AntRichTextEditor.vue +237 -0
  314. package/src/runtime/components/form/AntSearch.vue +76 -0
  315. package/src/runtime/components/form/AntSelect.vue +346 -0
  316. package/src/runtime/components/form/AntSwitch.vue +145 -0
  317. package/src/runtime/components/form/AntSwitcher.vue +200 -0
  318. package/src/runtime/components/form/AntTextInput.vue +73 -0
  319. package/src/runtime/components/form/AntTextarea.vue +170 -0
  320. package/src/runtime/components/form/AntUnitInput.vue +99 -0
  321. package/src/runtime/components/form/Elements/AntBaseInput.vue +247 -0
  322. package/src/runtime/components/form/Elements/AntDropDown.vue +160 -0
  323. package/src/runtime/components/form/Elements/AntField.vue +102 -0
  324. package/src/runtime/components/form/Elements/AntInputDescription.vue +55 -0
  325. package/src/runtime/components/form/Elements/AntInputLabel.vue +55 -0
  326. package/src/runtime/components/form/Elements/AntInputLimiter.vue +55 -0
  327. package/src/runtime/components/layouts/AntNavLeftLayout.vue +36 -0
  328. package/src/runtime/components/navbar/AntNavbar.vue +25 -0
  329. package/src/runtime/components/navbar/AntNavbarItem.vue +78 -0
  330. package/src/runtime/components/table/AntTable.vue +192 -0
  331. package/src/runtime/components/table/AntTableSortButton.vue +26 -0
  332. package/src/runtime/components/table/AntTd.vue +70 -0
  333. package/src/runtime/components/table/AntTh.vue +67 -0
  334. package/src/runtime/components/tabs/AntTabItem.vue +115 -0
  335. package/src/runtime/components/tabs/AntTabs.vue +47 -0
  336. package/src/runtime/components/transitions/AntTransitionCollapseHeight.vue +96 -0
@@ -0,0 +1,346 @@
1
+ <script lang="ts" setup>
2
+ /**
3
+ * This select is a custom component instead of a native <select> because the dropdown is not good
4
+ * customizable with css.
5
+ *
6
+ * Known problem using a custom select instead of a native one:
7
+ * - Label tags does not trigger the custom select by containing the select input or using the for attribute.
8
+ * This means, this select is not usable in a custom field with multiple elements in there.
9
+ * If the user clicks on the label, this select will not be focused.
10
+ *
11
+ * TODO:: add screen reader support
12
+ * Fix overflow bug (See Ellipsis Text story)
13
+ * TODO:: if the dropdown is open and the user types something, the element with a matching value should be focused.
14
+ */
15
+ import AntField from './Elements/AntField.vue';
16
+ import {type SelectOption} from './__types/AntSelect.type';
17
+ import {computed, onMounted, ref, watch, nextTick} from 'vue';
18
+ import {Size} from '../../enums/Size.enum';
19
+ import {FieldValidator} from '@antify/validate';
20
+ import {handleEnumValidation} from '../../handler';
21
+ import {Grouped} from '../../enums/Grouped.enum';
22
+ import AntIcon from '../AntIcon.vue';
23
+ import {faChevronDown, faChevronUp, faMultiply} from '@fortawesome/free-solid-svg-icons';
24
+ import AntSkeleton from '../AntSkeleton.vue';
25
+ import {vOnClickOutside} from '@vueuse/components';
26
+ import AntButton from '../buttons/AntButton.vue';
27
+ import {ColorType, InputColorType} from '../../enums';
28
+ import {IconSize} from '../__types';
29
+ import AntDropDown from './Elements/AntDropDown.vue';
30
+
31
+ defineOptions({ inheritAttrs: false });
32
+ const props = withDefaults(
33
+ defineProps<{
34
+ modelValue: string | number | null;
35
+ options: SelectOption[];
36
+ label?: string;
37
+ description?: string;
38
+ placeholder?: string;
39
+ size?: Size;
40
+ colorType?: InputColorType;
41
+ disabled?: boolean;
42
+ skeleton?: boolean;
43
+ validator?: FieldValidator;
44
+ nullable?: boolean;
45
+ grouped?: Grouped;
46
+ name?: string;
47
+ wrapperClass?: string | Record<string, boolean>;
48
+ showMessageOnError?: boolean;
49
+ expanded?: boolean;
50
+ }>(), {
51
+ colorType: InputColorType.base,
52
+ grouped: Grouped.none,
53
+ size: Size.md,
54
+ disabled: false,
55
+ skeleton: false,
56
+ nullable: false,
57
+ showMessageOnError: true,
58
+ expanded: true
59
+ }
60
+ );
61
+ const emit = defineEmits(['update:modelValue']);
62
+ const isOpen = ref(false);
63
+ const _modelValue = computed({
64
+ get: () => props.modelValue,
65
+ set: (val: string | number | null) => {
66
+ props.validator?.validate(val);
67
+ emit('update:modelValue', val);
68
+ },
69
+ });
70
+ const valueLabel = computed(() => props.options.find(option => option.value === _modelValue.value)?.label || null);
71
+ const inputClasses = computed(() => {
72
+ const variants: Record<InputColorType, string> = {
73
+ [InputColorType.base]: 'outline-neutral-300 focus:outline-primary-500 bg-neutral-50 focus:ring-primary/25',
74
+ [InputColorType.success]: 'outline-success-500 focus:outline-success-500 bg-success-100 focus:ring-success/25',
75
+ [InputColorType.info]: 'outline-info-500 focus:outline-info-500 bg-info-100 focus:ring-info/25',
76
+ [InputColorType.warning]: 'outline-warning-500 focus:outline-warning-500 bg-warning-100 focus:ring-warning/25',
77
+ [InputColorType.danger]: 'outline-danger-500 focus:outline-danger-500 bg-danger-100 focus:ring-danger/25',
78
+ };
79
+
80
+ return {
81
+ 'flex items-center transition-colors border-none outline relative focus:z-10': true,
82
+ 'outline-offset-[-1px] outline-1 focus:outline-offset-[-1px] focus:outline-1': true,
83
+ [variants[_colorType.value]]: true,
84
+ // Skeleton
85
+ 'invisible': props.skeleton,
86
+ // Disabled
87
+ 'disabled:opacity-50 disabled:cursor-not-allowed': true,
88
+ // Size
89
+ 'focus:ring-2 p-1.5 gap-1.5 text-xs': props.size === Size.sm,
90
+ 'focus:ring-4 p-2.5 gap-2.5 text-sm': props.size === Size.md,
91
+ // Grouped
92
+ 'rounded-tl-md rounded-bl-md rounded-tr-none rounded-br-none': props.grouped === Grouped.left,
93
+ 'rounded-tl-none rounded-bl-none rounded-tr-md rounded-br-md': props.grouped === Grouped.right,
94
+ 'rounded-none': props.grouped === Grouped.center,
95
+ 'rounded-md': props.grouped === Grouped.none,
96
+ 'rounded-tr-none rounded-br-none': props.nullable && _modelValue.value !== null,
97
+ 'rounded-bl-none rounded-br-none': isOpen.value,
98
+ // Open
99
+ 'shadow-md': isOpen.value,
100
+ // Disabled
101
+ 'opacity-50 cursor-not-allowed': props.disabled,
102
+ };
103
+ });
104
+ const placeholderClasses = computed(() => {
105
+ const variants: Record<InputColorType, string> = {
106
+ [InputColorType.base]: 'text-neutral-500',
107
+ [InputColorType.success]: 'text-success-700',
108
+ [InputColorType.info]: 'text-info-700',
109
+ [InputColorType.warning]: 'text-warning-700',
110
+ [InputColorType.danger]: 'text-danger-700',
111
+ };
112
+
113
+ return {
114
+ 'select-none text-ellipsis overflow-hidden whitespace-nowrap w-full': true,
115
+ [variants[_colorType.value]]: true,
116
+ };
117
+ });
118
+ const inputValueClasses = computed(() => {
119
+ const variants: Record<InputColorType, string> = {
120
+ [InputColorType.base]: 'text-neutral-50-font',
121
+ [InputColorType.success]: 'text-success-100-font',
122
+ [InputColorType.info]: 'text-info-100-font',
123
+ [InputColorType.warning]: 'text-warning-100-font',
124
+ [InputColorType.danger]: 'text-danger-100-font',
125
+ };
126
+ return {
127
+ 'select-none text-ellipsis overflow-hidden whitespace-nowrap w-full': true,
128
+ [variants[_colorType.value]]: true,
129
+ };
130
+ });
131
+ const arrowClasses = computed(() => {
132
+ const variants: Record<InputColorType, string> = {
133
+ [InputColorType.base]: 'text-neutral-50-font',
134
+ [InputColorType.success]: 'text-success-100-font',
135
+ [InputColorType.info]: 'text-info-100-font',
136
+ [InputColorType.warning]: 'text-warning-100-font',
137
+ [InputColorType.danger]: 'text-danger-100-font',
138
+ };
139
+
140
+ return {[variants[_colorType.value]]: true};
141
+ });
142
+ const _colorType = computed(() => props.validator?.hasErrors() ? InputColorType.danger : props.colorType);
143
+ const skeletonGrouped = computed(() => {
144
+ if (!props.nullable || (props.nullable && _modelValue.value === null)) {
145
+ return props.grouped;
146
+ }
147
+
148
+ if (props.grouped === Grouped.right || props.grouped === Grouped.center) {
149
+ return Grouped.center;
150
+ } else {
151
+ return Grouped.left;
152
+ }
153
+ });
154
+ const inputRef = ref<HTMLElement | null>(null);
155
+ const dropDownRef = ref<HTMLElement | null>(null);
156
+ const focusedDropDownItem = ref<string | number | null>(null);
157
+
158
+ onMounted(() => {
159
+ handleEnumValidation(props.size, Size, 'size');
160
+ handleEnumValidation(props.colorType, InputColorType, 'colorType');
161
+ handleEnumValidation(props.grouped, Grouped, 'grouped');
162
+
163
+ props.validator?.validate(_modelValue.value);
164
+
165
+ focusedDropDownItem.value = _modelValue.value;
166
+ });
167
+ watch(isOpen, (val) => {
168
+ nextTick(() => {
169
+ if (val) {
170
+ dropDownRef.value?.focus();
171
+ }
172
+ });
173
+ });
174
+
175
+ function onClickOutside() {
176
+ if (!isOpen.value) {
177
+ return;
178
+ }
179
+
180
+ isOpen.value = false;
181
+ inputRef.value?.focus();
182
+ }
183
+
184
+ function onKeyDownInput(e: KeyboardEvent) {
185
+ if (e.key === 'Enter') {
186
+ isOpen.value = true;
187
+ inputRef.value?.blur();
188
+ }
189
+
190
+ if (e.key === 'Escape') {
191
+ isOpen.value = false;
192
+ inputRef.value?.focus();
193
+ }
194
+
195
+ if (e.key === 'ArrowDown' || e.key === 'ArrowRight') {
196
+ const index = props.options.findIndex(option => option.value === _modelValue.value);
197
+ const option = props.options[index + 1];
198
+
199
+ if (index === -1) {
200
+ _modelValue.value = props.options[0].value;
201
+ } else if (option !== undefined) {
202
+ _modelValue.value = option.value;
203
+ }
204
+ }
205
+
206
+ if (e.key === 'ArrowUp' || e.key === 'ArrowLeft') {
207
+ const index = props.options.findIndex(option => option.value === _modelValue.value);
208
+ const option = props.options[index - 1];
209
+
210
+ if (option !== undefined) {
211
+ _modelValue.value = option.value;
212
+ }
213
+ }
214
+ }
215
+
216
+ function onFocusInInput() {
217
+ inputRef.value?.addEventListener('keydown', onKeyDownInput);
218
+ }
219
+
220
+ function onFocusOutInput(e: FocusEvent) {
221
+ e.preventDefault();
222
+ inputRef.value?.removeEventListener('keydown', onKeyDownInput);
223
+ }
224
+
225
+ function onClickSelectInput(e: MouseEvent) {
226
+ e.preventDefault();
227
+
228
+ if (props.disabled) {
229
+ return;
230
+ }
231
+
232
+ if (isOpen.value) {
233
+ inputRef.value?.focus()
234
+ }
235
+
236
+ isOpen.value = !isOpen.value;
237
+ }
238
+
239
+ function onClickRemoveButton() {
240
+ inputRef.value?.focus();
241
+ _modelValue.value = null;
242
+ }
243
+ </script>
244
+
245
+ <template>
246
+ <AntField
247
+ :label="label"
248
+ :size="size"
249
+ :skeleton="skeleton"
250
+ :description="description"
251
+ :color-type="colorType"
252
+ :validator="validator"
253
+ :class="wrapperClass"
254
+ :show-message-on-error="showMessageOnError"
255
+ :expanded="expanded"
256
+ label-for="noop"
257
+ data-e2e="select"
258
+ @clickLabel="() => inputRef?.focus()"
259
+ >
260
+ <div
261
+ class="h-fit flex flex-row w-full"
262
+ >
263
+ <div
264
+ class="relative w-full"
265
+ :class="{'cursor-pointer': !skeleton}"
266
+ v-on-click-outside="onClickOutside"
267
+ >
268
+ <AntSkeleton
269
+ v-if="skeleton"
270
+ absolute
271
+ rounded
272
+ :grouped="skeletonGrouped"
273
+ />
274
+
275
+ <input type="hidden" :name="name" v-model="_modelValue">
276
+
277
+ <!-- Input -->
278
+ <div
279
+ :class="inputClasses"
280
+ ref="inputRef"
281
+ :tabindex="disabled ? undefined : 0"
282
+ @mousedown="onClickSelectInput"
283
+ @focusin="onFocusInInput"
284
+ @focusout="onFocusOutInput"
285
+ v-bind="$attrs"
286
+ >
287
+ <div
288
+ v-if="_modelValue === null && placeholder !== undefined"
289
+ :class="placeholderClasses"
290
+ >
291
+ {{ placeholder }}
292
+ </div>
293
+
294
+ <div
295
+ v-else-if="_modelValue === null && label !== undefined"
296
+ :class="placeholderClasses"
297
+ >
298
+ {{ label }}
299
+ </div>
300
+
301
+ <div
302
+ v-else
303
+ :class="inputValueClasses"
304
+ >
305
+ {{ valueLabel }}
306
+ </div>
307
+
308
+ <AntIcon
309
+ v-if="isOpen"
310
+ :icon="faChevronUp"
311
+ :size="size as unknown as IconSize"
312
+ :class="arrowClasses"
313
+ />
314
+
315
+ <AntIcon
316
+ v-else
317
+ :icon="faChevronDown"
318
+ :size="size as unknown as IconSize"
319
+ :class="arrowClasses"
320
+ />
321
+ </div>
322
+
323
+ <!-- Dropdown -->
324
+ <AntDropDown
325
+ v-model="_modelValue"
326
+ v-model:open="isOpen"
327
+ ref="dropDownRef"
328
+ :options="options"
329
+ :input-ref="inputRef"
330
+ :size="size"
331
+ :color-type="_colorType"
332
+ />
333
+ </div>
334
+
335
+ <AntButton
336
+ v-if="nullable && _modelValue !== null"
337
+ :icon-left="faMultiply"
338
+ :color-type="_colorType as unknown as ColorType"
339
+ :grouped="[Grouped.left, Grouped.center].some(item => item === grouped) ? Grouped.center : Grouped.right"
340
+ :size="size"
341
+ :skeleton="skeleton"
342
+ @click="onClickRemoveButton"
343
+ />
344
+ </div>
345
+ </AntField>
346
+ </template>
@@ -0,0 +1,145 @@
1
+ <script setup lang="ts">
2
+ import AntField from './Elements/AntField.vue';
3
+ import { useVModel } from '@vueuse/core';
4
+ import { computed, type Ref } from 'vue';
5
+ import { FieldValidator } from '@antify/validate';
6
+ import AntSkeleton from '../AntSkeleton.vue';
7
+ import { InputColorType, Size } from '../../enums';
8
+
9
+ const emits = defineEmits([ 'update:modelValue' ]);
10
+ const props = withDefaults(defineProps<{
11
+ modelValue: boolean;
12
+ label?: string;
13
+ value?: string;
14
+ description?: string;
15
+ skeleton?: boolean;
16
+ readonly?: boolean;
17
+ disabled?: boolean;
18
+ validator?: FieldValidator;
19
+ size?: Size;
20
+ colorType?: InputColorType
21
+ }>(), {
22
+ size: Size.md,
23
+ colorType: InputColorType.base
24
+ });
25
+
26
+ const _value = useVModel(props, 'modelValue', emits);
27
+ const hasAction = computed(() => (!props.skeleton && !props.readonly && !props.disabled))
28
+ const _colorType: Ref<InputColorType> = computed(() => props.validator?.hasErrors() ? InputColorType.danger : props.colorType);
29
+
30
+ const buttonClasses = computed(() => {
31
+ const classes: { [key: string]: boolean } = {
32
+ 'relative inline-flex flex-shrink-0': true,
33
+ 'focus:outline-none': true,
34
+ 'rounded-full transition-colors ease-in-out duration-200': true,
35
+ 'focus-within:ring-2': props.size === Size.sm && hasAction.value,
36
+ 'focus-within:ring-4': props.size === Size.md && hasAction.value,
37
+ 'h-4 w-[30px]': props.size === Size.sm,
38
+ 'h-5 w-9': props.size === Size.md,
39
+ 'bg-neutral-300': !_value.value,
40
+ 'invisible': props.skeleton,
41
+ // Disabled
42
+ 'opacity-50 cursor-not-allowed': props.disabled,
43
+ 'cursor-default': props.readonly
44
+ };
45
+
46
+ const colorVariant = {
47
+ [InputColorType.base]: 'focus-within:ring-primary-100',
48
+ [InputColorType.danger]: 'focus-within:ring-danger-100',
49
+ [InputColorType.info]: 'focus-within:ring-info-100',
50
+ [InputColorType.success]: 'focus-within:ring-success-100',
51
+ [InputColorType.warning]: 'focus-within:ring-warning-100',
52
+ };
53
+ const activeColorVariant = {
54
+ [InputColorType.base]: 'bg-primary-500',
55
+ [InputColorType.danger]: 'bg-danger-500',
56
+ [InputColorType.info]: 'bg-info-500',
57
+ [InputColorType.success]: 'bg-success-500',
58
+ [InputColorType.warning]: 'bg-warning-500',
59
+ };
60
+
61
+ classes[colorVariant[_colorType.value]] = hasAction.value;
62
+ classes[activeColorVariant[_colorType.value]] = _value.value;
63
+
64
+ return classes;
65
+ })
66
+
67
+ const ballClasses = computed(() => ({
68
+ 'pointer-events-none inline-block rounded-full bg-neutral-100 shadow transform ring-0 transition ease-in-out duration-200': true,
69
+ 'h-4 w-4 translate-y-0.5': props.size === Size.md,
70
+ 'h-3.5 w-3.5 translate-y-[1px]': props.size === Size.sm,
71
+ 'translate-x-[1.125rem]': _value.value && props.size === Size.md,
72
+ 'translate-x-0.5': !_value.value && props.size === Size.md,
73
+ 'translate-x-[.925rem]': _value.value && props.size === Size.sm,
74
+ 'translate-x-[1px]': !_value.value && props.size === Size.sm,
75
+ 'invisible': props.skeleton
76
+ }));
77
+
78
+ const valueClasses = computed(() => {
79
+ const classes = {
80
+ 'text-neutral-50-font': true,
81
+ 'text-sm': props.size === Size.sm,
82
+ 'text-md': props.size === Size.md,
83
+ 'opacity-50 cursor-not-allowed': props.disabled
84
+ }
85
+
86
+ return classes;
87
+ })
88
+
89
+ function changeValue() {
90
+ if (!props.readonly && !props.disabled) {
91
+ _value.value = !_value.value
92
+ }
93
+ }
94
+ </script>
95
+
96
+ <template>
97
+ <AntField
98
+ :label="label"
99
+ :size="size"
100
+ :description="description"
101
+ :skeleton="skeleton"
102
+ :validator="validator"
103
+ :color-type="colorType"
104
+ >
105
+ <div class="relative w-fit flex items-center gap-1.5">
106
+ <div class="relative w-fit flex items-center">
107
+ <button
108
+ v-bind="$attrs"
109
+ type="button"
110
+ :class="buttonClasses"
111
+ role="switch"
112
+ :aria-checked="_value"
113
+ @click="changeValue"
114
+ @blur="validator?.validate(_value)"
115
+ :disabled="disabled"
116
+ :tabindex="readonly ? -1 : 1"
117
+ >
118
+ <span
119
+ aria-hidden="true"
120
+ :class="ballClasses"
121
+ >
122
+ <slot name="icon"></slot>
123
+ </span>
124
+ </button>
125
+
126
+ <AntSkeleton
127
+ v-if="skeleton"
128
+ absolute
129
+ rounded-full
130
+ ></AntSkeleton>
131
+ </div>
132
+
133
+ <div v-if="value" class="relative">
134
+ <span :class="valueClasses">{{ value }}</span>
135
+
136
+ <AntSkeleton
137
+ v-if="skeleton"
138
+ absolute
139
+ rounded
140
+ class="l-1.5"
141
+ ></AntSkeleton>
142
+ </div>
143
+ </div>
144
+ </AntField>
145
+ </template>
@@ -0,0 +1,200 @@
1
+ <script setup lang="ts">
2
+ import AntField from './Elements/AntField.vue';
3
+ import AntButton from '../buttons/AntButton.vue';
4
+ import { faChevronLeft, faChevronRight } from '@fortawesome/free-solid-svg-icons';
5
+ import AntSkeleton from '../AntSkeleton.vue';
6
+ import { FieldValidator } from '@antify/validate';
7
+ import { type SwitcherOption } from './__types/AntSwitcher.type';
8
+ import { ColorType, InputColorType } from '../../enums';
9
+ import { Grouped, Size } from '../../enums';
10
+ import { computed, onMounted, watch } from 'vue';
11
+
12
+ const emits = defineEmits([ 'update:modelValue' ]);
13
+ const props = withDefaults(defineProps<{
14
+ modelValue: string;
15
+ options: string[] | SwitcherOption[];
16
+ label?: string;
17
+ description?: string;
18
+ skeleton?: boolean;
19
+ readonly?: boolean;
20
+ disabled?: boolean;
21
+ colorType?: InputColorType;
22
+ validator?: FieldValidator;
23
+ size?: Size,
24
+ }>(), {
25
+ colorType: InputColorType.base,
26
+ size: Size.md
27
+ });
28
+
29
+ const _value = computed({
30
+ get() {
31
+ const found = props.options.find((option: string | SwitcherOption) => typeof option === 'string' ? option === props.modelValue : option.value === props.modelValue);
32
+
33
+ if (!found) {
34
+ return props.options[0];
35
+ }
36
+
37
+ return found;
38
+ },
39
+ set(val: string | SwitcherOption) {
40
+ emits('update:modelValue', typeof val === 'string' ? val : val.value);
41
+ }
42
+ });
43
+
44
+ const hasAction = computed(() => (!props.skeleton && !props.readonly && !props.disabled))
45
+ const _colorType = computed(() => props.validator?.hasErrors() ? InputColorType.danger : props.colorType);
46
+
47
+ watch(_value, () => props.validator?.validate(_value.value));
48
+
49
+ onMounted(() => {
50
+ props.validator?.validate(_value.value);
51
+ });
52
+
53
+ const containerClasses = computed(() => {
54
+ const classes: { [key: string]: boolean } = {
55
+ 'flex relative ring-primary/25 rounded-md outline-none': true,
56
+ 'focus-within:ring-2': (props.size as Size) === Size.sm && hasAction.value,
57
+ 'focus-within:ring-4': (props.size as Size) === Size.md && hasAction.value,
58
+ };
59
+ const colorVariant = {
60
+ [InputColorType.base]: 'focus-within:ring-primary-100',
61
+ [InputColorType.danger]: 'focus-within:ring-danger-100',
62
+ [InputColorType.info]: 'focus-within:ring-info-100',
63
+ [InputColorType.success]: 'focus-within:ring-success-100',
64
+ [InputColorType.warning]: 'focus-within:ring-warning-100',
65
+ };
66
+
67
+ classes[colorVariant[_colorType.value]] = true;
68
+
69
+ return classes;
70
+ });
71
+
72
+ const itemClasses = computed(() => {
73
+ const classes: { [key: string]: boolean } = {
74
+ 'grow text-center': true,
75
+ 'p-2.5 text-sm ': (props.size as Size) === Size.md,
76
+ 'p-1.5 text-xs ': (props.size as Size) === Size.sm,
77
+ 'invisible': props.skeleton,
78
+ 'opacity-50 cursor-not-allowed': props.disabled,
79
+ };
80
+
81
+ const colorVariant = {
82
+ [InputColorType.base]: 'border-neutral-300 bg-neutral-50 text-neutral-50-font',
83
+ [InputColorType.danger]: 'border-danger-500 bg-danger-100 text-danger-100-font',
84
+ [InputColorType.info]: 'border-info-500 bg-info-100 text-info-100-font',
85
+ [InputColorType.success]: 'border-success-500 bg-success-100 text-success-100-font',
86
+ [InputColorType.warning]: 'border-warning-500 bg-warning-100 text-warning-100-font',
87
+ };
88
+
89
+ classes[colorVariant[_colorType.value]] = true;
90
+
91
+ return classes;
92
+ });
93
+
94
+ function prevOption() {
95
+ if (props.readonly || props.disabled) {
96
+ return;
97
+ }
98
+
99
+ const index = props.options.findIndex((option) => option === _value.value);
100
+
101
+ if (index !== -1 && props.options[index - 1]) {
102
+ _value.value = props.options[index - 1];
103
+ } else {
104
+ _value.value = props.options[props.options.length - 1];
105
+ }
106
+ }
107
+
108
+ function nextOption() {
109
+ if (props.readonly || props.disabled) {
110
+ return;
111
+ }
112
+
113
+ const index = props.options.findIndex((option) => option === _value.value);
114
+
115
+ if (index !== -1 && props.options[index + 1]) {
116
+ _value.value = props.options[index + 1];
117
+ } else {
118
+ _value.value = props.options[0];
119
+ }
120
+ }
121
+ </script>
122
+
123
+ <template>
124
+ <AntField
125
+ :label="label"
126
+ :size="size"
127
+ :skeleton="skeleton"
128
+ :description="description"
129
+ :colorType="colorType"
130
+ :validator="validator"
131
+ label-for="noop"
132
+ >
133
+ <div
134
+ :class="containerClasses"
135
+ tabindex="0"
136
+ @keydown.left.prevent="prevOption()"
137
+ @keydown.right.prevent="nextOption()"
138
+ >
139
+ <AntButton
140
+ :icon-left="faChevronLeft"
141
+ :grouped="Grouped.left"
142
+ no-focus
143
+ @click="prevOption"
144
+ :color-type="_colorType as unknown as ColorType"
145
+ :size="size"
146
+ :skeleton="skeleton"
147
+ :readonly="readonly"
148
+ :disabled="disabled"
149
+ />
150
+
151
+ <div class="grow relative">
152
+ <div
153
+ :class="itemClasses"
154
+ class="switcher-content"
155
+ >
156
+ {{ typeof _value === 'string' ? _value : _value.label }}
157
+ </div>
158
+
159
+ <AntSkeleton
160
+ v-if="skeleton"
161
+ absolute
162
+ :grouped="Grouped.center"
163
+ rounded
164
+ />
165
+ </div>
166
+
167
+ <AntButton
168
+ :icon-left="faChevronRight"
169
+ :grouped="Grouped.right"
170
+ no-focus
171
+ @click="nextOption"
172
+ :color-type="_colorType as unknown as ColorType"
173
+ :size="size"
174
+ :skeleton="skeleton"
175
+ :readonly="readonly"
176
+ :disabled="disabled"
177
+ />
178
+ </div>
179
+ </AntField>
180
+ </template>
181
+
182
+ <style scoped>
183
+ .switcher-content {
184
+ position: relative;
185
+ }
186
+
187
+ .switcher-content:before {
188
+ content: '';
189
+
190
+ position: absolute;
191
+
192
+ inset: 0;
193
+
194
+ border-top: 1px;
195
+ border-bottom: 1px;
196
+ border-style: solid;
197
+
198
+ border-color: inherit;
199
+ }
200
+ </style>