ep-lib-ts 1.0.56 → 1.0.58

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 (656) hide show
  1. package/LICENSE +0 -0
  2. package/README.md +0 -0
  3. package/dist/{types/Answer.d.ts → Answer.d.ts} +0 -1
  4. package/dist/{types/Hierarchy.d.ts → Hierarchy.d.ts} +0 -1
  5. package/dist/_virtual/_plugin-vue_export-helper.js +9 -0
  6. package/dist/_virtual/dynamic-import-helper.js +9 -0
  7. package/dist/basics/EpAvatar.d.ts +21 -0
  8. package/dist/basics/EpAvatar.js +4 -0
  9. package/dist/basics/EpBadge.d.ts +6 -0
  10. package/dist/basics/EpBadge.js +4 -0
  11. package/dist/basics/EpBtn.d.ts +14 -0
  12. package/dist/basics/EpBtn.js +4 -0
  13. package/dist/basics/EpCard.d.ts +14 -0
  14. package/dist/basics/EpCard.js +4 -0
  15. package/dist/basics/EpChip.d.ts +10 -0
  16. package/dist/basics/EpChip.js +4 -0
  17. package/dist/basics/EpDivider.d.ts +8 -0
  18. package/dist/basics/EpDivider.js +4 -0
  19. package/dist/basics/EpFlex.d.ts +7 -0
  20. package/dist/basics/EpFlex.js +4 -0
  21. package/dist/basics/EpHover.d.ts +9 -0
  22. package/dist/basics/EpHover.js +4 -0
  23. package/dist/basics/EpHoverCard.d.ts +19 -0
  24. package/dist/basics/EpHoverCard.js +4 -0
  25. package/dist/basics/EpIcon.d.ts +6 -0
  26. package/dist/basics/EpIcon.js +4 -0
  27. package/dist/basics/EpImg.d.ts +17 -0
  28. package/dist/basics/EpImg.js +4 -0
  29. package/dist/basics/EpImgCarousel.d.ts +20 -0
  30. package/dist/basics/EpImgCarousel.js +4 -0
  31. package/dist/basics/EpList.d.ts +3 -0
  32. package/dist/basics/EpList.js +4 -0
  33. package/dist/basics/EpListItem.d.ts +7 -0
  34. package/dist/basics/EpListItem.js +4 -0
  35. package/dist/basics/EpSection.d.ts +13 -0
  36. package/dist/basics/EpSection.js +4 -0
  37. package/dist/basics/EpSectionCols.d.ts +17 -0
  38. package/dist/basics/EpSectionCols.js +4 -0
  39. package/dist/basics/EpSpinner.d.ts +6 -0
  40. package/dist/basics/EpSpinner.js +4 -0
  41. package/dist/basics/EpStackedList.d.ts +10 -0
  42. package/dist/basics/EpStackedList.js +4 -0
  43. package/dist/basics/EpTable.d.ts +5 -0
  44. package/dist/basics/EpTable.js +4 -0
  45. package/dist/basics/EpText.d.ts +11 -0
  46. package/dist/basics/EpText.js +4 -0
  47. package/dist/charts/EpBarChart.d.ts +30 -0
  48. package/dist/charts/EpBarChart.js +4 -0
  49. package/dist/charts/EpFunnelChart.d.ts +31 -0
  50. package/dist/charts/EpFunnelChart.js +4 -0
  51. package/dist/charts/EpLineChart.d.ts +28 -0
  52. package/dist/charts/EpLineChart.js +4 -0
  53. package/dist/charts/EpPieChart.d.ts +32 -0
  54. package/dist/charts/EpPieChart.js +4 -0
  55. package/dist/components/basics/EpAvatar.vue.js +32 -0
  56. package/dist/components/basics/EpAvatar.vue2.js +4 -0
  57. package/dist/components/basics/EpBadge.vue.js +22 -0
  58. package/dist/components/basics/EpBadge.vue2.js +4 -0
  59. package/dist/components/basics/EpBtn.vue.js +79 -0
  60. package/dist/components/basics/EpBtn.vue2.js +4 -0
  61. package/dist/components/basics/EpCard.vue.js +80 -0
  62. package/dist/components/basics/EpCard.vue2.js +4 -0
  63. package/dist/components/basics/EpChip.vue.js +49 -0
  64. package/dist/components/basics/EpChip.vue2.js +4 -0
  65. package/dist/components/basics/EpDivider.vue.js +21 -0
  66. package/dist/components/basics/EpDivider.vue2.js +4 -0
  67. package/dist/components/basics/EpFlex.vue.js +12 -0
  68. package/dist/components/basics/EpFlex.vue2.js +4 -0
  69. package/dist/components/basics/EpHover.vue.js +36 -0
  70. package/dist/components/basics/EpHover.vue2.js +4 -0
  71. package/dist/components/basics/EpHoverCard.vue.js +86 -0
  72. package/dist/components/basics/EpHoverCard.vue2.js +4 -0
  73. package/dist/components/basics/EpIcon.vue.js +26 -0
  74. package/dist/components/basics/EpIcon.vue2.js +4 -0
  75. package/dist/components/basics/EpImg.vue.js +184 -0
  76. package/dist/components/basics/EpImg.vue2.js +4 -0
  77. package/dist/components/basics/EpImgCarousel.vue.js +124 -0
  78. package/dist/components/basics/EpImgCarousel.vue2.js +4 -0
  79. package/dist/components/basics/EpList.vue.js +12 -0
  80. package/dist/components/basics/EpListItem.vue.js +35 -0
  81. package/dist/components/basics/EpListItem.vue2.js +4 -0
  82. package/dist/components/basics/EpSection.vue.js +74 -0
  83. package/dist/components/basics/EpSection.vue2.js +4 -0
  84. package/dist/components/basics/EpSectionCols.vue.js +94 -0
  85. package/dist/components/basics/EpSectionCols.vue2.js +4 -0
  86. package/dist/components/basics/EpSpinner.vue.js +122 -0
  87. package/dist/components/basics/EpSpinner.vue2.js +4 -0
  88. package/dist/components/basics/EpStackedList.vue.js +70 -0
  89. package/dist/components/basics/EpStackedList.vue2.js +4 -0
  90. package/dist/components/basics/EpTable.vue.js +49 -0
  91. package/dist/components/basics/EpTable.vue2.js +4 -0
  92. package/dist/components/basics/EpText.vue.js +83 -0
  93. package/dist/components/basics/EpText.vue2.js +4 -0
  94. package/dist/components/charts/EpBarChart.vue.js +78 -0
  95. package/dist/components/charts/EpBarChart.vue2.js +4 -0
  96. package/dist/components/charts/EpFunnelChart.vue.js +112 -0
  97. package/dist/components/charts/EpFunnelChart.vue2.js +4 -0
  98. package/dist/components/charts/EpLineChart.vue.js +91 -0
  99. package/dist/components/charts/EpLineChart.vue2.js +4 -0
  100. package/dist/components/charts/EpPieChart.vue.js +75 -0
  101. package/dist/components/charts/EpPieChart.vue2.js +4 -0
  102. package/dist/components/educationals/EpBranchingScenario.vue.js +7 -0
  103. package/dist/components/educationals/EpBranchingScenario.vue2.js +236 -0
  104. package/dist/components/educationals/EpCodeblock.vue.js +44 -0
  105. package/dist/components/educationals/EpCodeblock.vue3.js +5 -0
  106. package/dist/components/educationals/EpConclusion.vue.js +40 -0
  107. package/dist/components/educationals/EpConclusion.vue2.js +4 -0
  108. package/dist/components/educationals/EpDescription.vue.js +40 -0
  109. package/dist/components/educationals/EpDescription.vue2.js +4 -0
  110. package/dist/components/educationals/EpDocument.vue.js +99 -0
  111. package/dist/components/educationals/EpDocument.vue2.js +4 -0
  112. package/dist/components/educationals/EpEdu.vue.js +81 -0
  113. package/dist/components/educationals/EpEdu.vue2.js +4 -0
  114. package/dist/components/educationals/EpInstructions.vue.js +49 -0
  115. package/dist/components/educationals/EpInstructions.vue2.js +4 -0
  116. package/dist/components/educationals/EpIntroduction.vue.js +39 -0
  117. package/dist/components/educationals/EpIntroduction.vue2.js +4 -0
  118. package/dist/components/educationals/EpObjective.vue.js +39 -0
  119. package/dist/components/educationals/EpObjective.vue2.js +4 -0
  120. package/dist/components/educationals/EpReading.vue.js +307 -0
  121. package/dist/components/educationals/EpReading.vue2.js +4 -0
  122. package/dist/components/educationals/EpResource.vue.js +33 -0
  123. package/dist/components/educationals/EpResource.vue2.js +4 -0
  124. package/dist/components/educationals/EpScope.vue.js +25 -0
  125. package/dist/components/educationals/EpScope.vue2.js +4 -0
  126. package/dist/components/educationals/EpSpecificObjective.vue.js +37 -0
  127. package/dist/components/educationals/EpSpecificObjective.vue2.js +4 -0
  128. package/dist/components/forms/EpCheckbox.vue2.js +4 -0
  129. package/dist/components/forms/EpInput.vue.js +62 -0
  130. package/dist/components/forms/EpInput.vue2.js +4 -0
  131. package/dist/components/forms/EpRadio.vue.js +41 -0
  132. package/dist/components/forms/EpRadio.vue2.js +4 -0
  133. package/dist/components/forms/EpRadioSummative.vue.js +37 -0
  134. package/dist/components/forms/EpRadioSummative.vue2.js +4 -0
  135. package/dist/components/forms/EpSelect.vue2.js +4 -0
  136. package/dist/components/forms/EpSwitch.vue.js +48 -0
  137. package/dist/components/forms/EpSwitch.vue2.js +4 -0
  138. package/dist/{EpTextarea-VJ4pdPV_.js → components/forms/EpTextarea.vue.js} +6 -15
  139. package/dist/components/forms/EpTextarea.vue2.js +4 -0
  140. package/dist/{EpToggle-BTkTNVEz.js → components/forms/EpToggle.vue.js} +7 -16
  141. package/dist/components/forms/EpToggle.vue2.js +4 -0
  142. package/dist/{Ep360Image-T9Z_eSbf.js → components/interactions/Ep360Image.vue.js} +1 -1
  143. package/dist/components/interactions/Ep360Image.vue2.js +4 -0
  144. package/dist/{Ep360Video-CkVrfj8k.js → components/interactions/Ep360Video.vue.js} +1 -1
  145. package/dist/components/interactions/Ep360Video.vue2.js +4 -0
  146. package/dist/components/interactions/EpAccordeon.vue.js +7 -0
  147. package/dist/components/interactions/EpAccordeon.vue2.js +75 -0
  148. package/dist/components/interactions/EpContentSlider.vue.js +184 -0
  149. package/dist/components/interactions/EpContentSlider.vue2.js +4 -0
  150. package/dist/{EpDarkmode-CW-dKJx2.js → components/interactions/EpDarkMode.vue.js} +5 -5
  151. package/dist/components/interactions/EpDarkMode.vue2.js +4 -0
  152. package/dist/components/interactions/EpDraggable.vue.js +144 -0
  153. package/dist/components/interactions/EpDraggable.vue2.js +4 -0
  154. package/dist/{EpHotsPot-nT87sUMT.js → components/interactions/EpHotSpot.vue.js} +8 -8
  155. package/dist/components/interactions/EpHotSpot.vue2.js +4 -0
  156. package/dist/components/interactions/EpModal.vue.js +55 -0
  157. package/dist/components/interactions/EpModal.vue3.js +5 -0
  158. package/dist/components/interactions/EpQuestion.vue.js +175 -0
  159. package/dist/components/interactions/EpQuestion.vue2.js +4 -0
  160. package/dist/components/interactions/EpSummativeTable.vue.js +49 -0
  161. package/dist/components/interactions/EpSummativeTable.vue2.js +4 -0
  162. package/dist/components/interactions/EpSvgShow.vue.js +69 -0
  163. package/dist/components/interactions/EpSvgShow.vue2.js +4 -0
  164. package/dist/components/interactions/EpTabs.vue.js +12 -0
  165. package/dist/components/interactions/EpTooltip.vue.js +24 -0
  166. package/dist/components/interactions/EpTooltip.vue3.js +5 -0
  167. package/dist/components/medias/EpAudio.vue.js +76 -0
  168. package/dist/components/medias/EpAudio.vue2.js +4 -0
  169. package/dist/components/medias/EpCardLink.vue.js +65 -0
  170. package/dist/components/medias/EpCardLink.vue2.js +4 -0
  171. package/dist/components/medias/EpCarousel.vue.js +7 -0
  172. package/dist/components/medias/EpCarousel.vue2.js +162 -0
  173. package/dist/components/medias/EpHierarchy.vue.js +7 -0
  174. package/dist/components/medias/EpHierarchy.vue2.js +172 -0
  175. package/dist/components/medias/EpIframe.vue.js +53 -0
  176. package/dist/components/medias/EpIframe.vue2.js +4 -0
  177. package/dist/components/medias/EpKatex.vue.js +7 -0
  178. package/dist/components/medias/EpKatex.vue2.js +58 -0
  179. package/dist/components/medias/EpLink.vue.js +73 -0
  180. package/dist/components/medias/EpLink.vue2.js +4 -0
  181. package/dist/components/medias/EpLinkVersion.vue.js +34 -0
  182. package/dist/components/medias/EpLinkVersion.vue2.js +4 -0
  183. package/dist/components/medias/EpLottieSvg.vue.js +47 -0
  184. package/dist/components/medias/EpLottieSvg.vue2.js +4 -0
  185. package/dist/components/medias/EpSensibleImage.vue.js +7 -0
  186. package/dist/components/medias/EpSensibleImage.vue2.js +71 -0
  187. package/dist/components/medias/EpSoftware.vue.js +113 -0
  188. package/dist/components/medias/EpSoftware.vue2.js +4 -0
  189. package/dist/components/medias/EpSvg.vue.js +56 -0
  190. package/dist/components/medias/EpSvg.vue2.js +4 -0
  191. package/dist/components/medias/EpTerm.vue.js +144 -0
  192. package/dist/components/medias/EpTerm.vue2.js +4 -0
  193. package/dist/components/medias/EpTimeLine.vue.js +64 -0
  194. package/dist/components/medias/EpTimeLine.vue3.js +5 -0
  195. package/dist/components/medias/EpVideo.vue.js +83 -0
  196. package/dist/components/medias/EpVideo.vue2.js +4 -0
  197. package/dist/components/medias/EpVideoPanopto.vue.js +56 -0
  198. package/dist/components/medias/EpVideoPanopto.vue2.js +4 -0
  199. package/dist/components/medias/EpWordDef.vue.js +100 -0
  200. package/dist/components/medias/EpWordDef.vue2.js +4 -0
  201. package/dist/components/signages/EpAlert.vue.js +7 -0
  202. package/dist/components/signages/EpAlert.vue2.js +68 -0
  203. package/dist/components/signages/EpBadge.vue.js +32 -0
  204. package/dist/components/signages/EpBadge.vue2.js +4 -0
  205. package/dist/components/signages/EpHeader.vue.js +205 -0
  206. package/dist/components/signages/EpHeader.vue2.js +4 -0
  207. package/dist/components/signages/EpNothing.vue.js +10 -0
  208. package/dist/components/signages/EpQuote.vue.js +76 -0
  209. package/dist/components/signages/EpQuote.vue2.js +4 -0
  210. package/dist/components/signages/EpSkeleton.vue.js +34 -0
  211. package/dist/components/signages/EpSkeleton.vue3.js +5 -0
  212. package/dist/components/tools/BgAudio.vue.js +4 -0
  213. package/dist/components/tools/BgAudio.vue2.js +59 -0
  214. package/dist/components/tools/Details.vue.js +4 -0
  215. package/dist/components/tools/Details.vue2.js +55 -0
  216. package/dist/components/tools/DisplayBox.vue.js +5 -0
  217. package/dist/components/tools/DisplayBox.vue2.js +36 -0
  218. package/dist/components/tools/SvgFilter.vue.js +54 -0
  219. package/dist/components/tools/TextMedia.vue.js +4 -0
  220. package/dist/components/tools/TextMedia.vue2.js +41 -0
  221. package/dist/components/tools/TimelineItem.vue.js +7 -0
  222. package/dist/components/tools/TimelineItem.vue2.js +112 -0
  223. package/dist/components/tools/TwoColsMedia.vue.js +4 -0
  224. package/dist/components/tools/TwoColsMedia.vue2.js +50 -0
  225. package/dist/composables/isHtml.js +6 -0
  226. package/dist/composables/useColors.js +133 -0
  227. package/dist/composables/useComponent.js +40 -0
  228. package/dist/composables/useCreateUid.js +7 -0
  229. package/dist/composables/useIcons.js +32 -0
  230. package/dist/composables/useMarkdown.js +12 -0
  231. package/dist/composables/useRenderText.js +8 -0
  232. package/dist/educationals/EpBranchingScenario.d.ts +21 -0
  233. package/dist/educationals/EpBranchingScenario.js +4 -0
  234. package/dist/educationals/EpCodeblock.d.ts +12 -0
  235. package/dist/educationals/EpCodeblock.js +5 -0
  236. package/dist/educationals/EpConclusion.d.ts +5 -0
  237. package/dist/educationals/EpConclusion.js +4 -0
  238. package/dist/educationals/EpDescription.d.ts +5 -0
  239. package/dist/educationals/EpDescription.js +4 -0
  240. package/dist/educationals/EpDocument.d.ts +10 -0
  241. package/dist/educationals/EpDocument.js +4 -0
  242. package/dist/educationals/EpEdu.d.ts +13 -0
  243. package/dist/educationals/EpEdu.js +4 -0
  244. package/dist/educationals/EpInstructions.d.ts +13 -0
  245. package/dist/educationals/EpInstructions.js +4 -0
  246. package/dist/educationals/EpIntroduction.d.ts +5 -0
  247. package/dist/educationals/EpIntroduction.js +4 -0
  248. package/dist/educationals/EpObjective.d.ts +5 -0
  249. package/dist/educationals/EpObjective.js +4 -0
  250. package/dist/educationals/EpReading.d.ts +26 -0
  251. package/dist/educationals/EpReading.js +4 -0
  252. package/dist/educationals/EpResource.d.ts +8 -0
  253. package/dist/educationals/EpResource.js +4 -0
  254. package/dist/educationals/EpScope.d.ts +4 -0
  255. package/dist/educationals/EpScope.js +4 -0
  256. package/dist/educationals/EpSpecificObjective.d.ts +7 -0
  257. package/dist/educationals/EpSpecificObjective.js +4 -0
  258. package/dist/ep-lib-ts.css +1 -0
  259. package/dist/forms/EpCheckbox.d.ts +8 -0
  260. package/dist/forms/EpCheckbox.js +4 -0
  261. package/dist/forms/EpInput.d.ts +21 -0
  262. package/dist/forms/EpInput.js +4 -0
  263. package/dist/forms/EpRadio.d.ts +10 -0
  264. package/dist/forms/EpRadio.js +4 -0
  265. package/dist/forms/EpRadioSummative.d.ts +10 -0
  266. package/dist/forms/EpRadioSummative.js +4 -0
  267. package/dist/forms/EpSelect.d.ts +7 -0
  268. package/dist/forms/EpSelect.js +4 -0
  269. package/dist/forms/EpSwitch.d.ts +10 -0
  270. package/dist/forms/EpSwitch.js +4 -0
  271. package/dist/forms/EpTextarea.d.ts +23 -0
  272. package/dist/forms/EpTextarea.js +4 -0
  273. package/dist/forms/EpToggle.d.ts +13 -0
  274. package/dist/forms/EpToggle.js +4 -0
  275. package/dist/interactions/Ep360Image.d.ts +4 -0
  276. package/dist/interactions/Ep360Image.js +4 -0
  277. package/dist/interactions/Ep360Video.d.ts +3 -0
  278. package/dist/interactions/Ep360Video.js +4 -0
  279. package/dist/interactions/EpAccordeon.d.ts +9 -0
  280. package/dist/interactions/EpAccordeon.js +4 -0
  281. package/dist/interactions/EpContentSlider.d.ts +7 -0
  282. package/dist/interactions/EpContentSlider.js +4 -0
  283. package/dist/interactions/EpDarkMode.d.ts +1 -0
  284. package/dist/interactions/EpDarkMode.js +4 -0
  285. package/dist/interactions/EpDraggable.d.ts +6 -0
  286. package/dist/interactions/EpDraggable.js +4 -0
  287. package/dist/interactions/EpHotSpot.d.ts +17 -0
  288. package/dist/interactions/EpHotSpot.js +4 -0
  289. package/dist/interactions/EpModal.d.ts +10 -0
  290. package/dist/interactions/EpModal.js +5 -0
  291. package/dist/interactions/EpQuestion.d.ts +19 -0
  292. package/dist/interactions/EpQuestion.js +4 -0
  293. package/dist/interactions/EpSummativeTable.d.ts +6 -0
  294. package/dist/interactions/EpSummativeTable.js +4 -0
  295. package/dist/interactions/EpSvgShow.d.ts +5 -0
  296. package/dist/interactions/EpSvgShow.js +4 -0
  297. package/dist/interactions/EpTabs.d.ts +1 -0
  298. package/dist/interactions/EpTabs.js +4 -0
  299. package/dist/interactions/EpTooltip.d.ts +24 -0
  300. package/dist/interactions/EpTooltip.js +5 -0
  301. package/dist/medias/EpAudio.d.ts +13 -0
  302. package/dist/medias/EpAudio.js +4 -0
  303. package/dist/medias/EpCardLink.d.ts +19 -0
  304. package/dist/medias/EpCardLink.js +4 -0
  305. package/dist/medias/EpCarousel.d.ts +13 -0
  306. package/dist/medias/EpCarousel.js +4 -0
  307. package/dist/medias/EpHierarchy.d.ts +10 -0
  308. package/dist/medias/EpHierarchy.js +4 -0
  309. package/dist/medias/EpIframe.d.ts +13 -0
  310. package/dist/medias/EpIframe.js +4 -0
  311. package/dist/medias/EpKatex.d.ts +10 -0
  312. package/dist/medias/EpKatex.js +4 -0
  313. package/dist/medias/EpLink.d.ts +13 -0
  314. package/dist/medias/EpLink.js +4 -0
  315. package/dist/medias/EpLinkVersion.d.ts +18 -0
  316. package/dist/medias/EpLinkVersion.js +4 -0
  317. package/dist/medias/EpLottieSvg.d.ts +12 -0
  318. package/dist/medias/EpLottieSvg.js +4 -0
  319. package/dist/medias/EpSensibleImage.d.ts +11 -0
  320. package/dist/medias/EpSoftware.d.ts +16 -0
  321. package/dist/medias/EpSoftware.js +4 -0
  322. package/dist/medias/EpSvg.d.ts +12 -0
  323. package/dist/medias/EpSvg.js +4 -0
  324. package/dist/medias/EpTerm.d.ts +15 -0
  325. package/dist/medias/EpTerm.js +4 -0
  326. package/dist/medias/EpTimeLine.d.ts +13 -0
  327. package/dist/medias/EpTimeLine.js +5 -0
  328. package/dist/medias/EpVideo.d.ts +13 -0
  329. package/dist/medias/EpVideo.js +4 -0
  330. package/dist/medias/EpVideoPanopto.d.ts +13 -0
  331. package/dist/medias/EpVideoPanopto.js +4 -0
  332. package/dist/medias/EpWordDef.d.ts +25 -0
  333. package/dist/medias/EpWordDef.js +4 -0
  334. package/dist/signages/EpAlert.d.ts +16 -0
  335. package/dist/signages/EpAlert.js +4 -0
  336. package/dist/signages/EpBadge.d.ts +22 -0
  337. package/dist/signages/EpBadge.js +4 -0
  338. package/dist/signages/EpHeader.d.ts +28 -0
  339. package/dist/signages/EpHeader.js +4 -0
  340. package/dist/signages/EpNothing.d.ts +1 -0
  341. package/dist/signages/EpNothing.js +4 -0
  342. package/dist/signages/EpQuote.d.ts +6 -0
  343. package/dist/signages/EpQuote.js +4 -0
  344. package/dist/signages/EpSkeleton.d.ts +9 -0
  345. package/dist/signages/EpSkeleton.js +5 -0
  346. package/dist/testImg.jpg +0 -0
  347. package/dist/testMaria.jpg +0 -0
  348. package/dist/types/Accordeon.js +51 -0
  349. package/dist/types/Alert.js +75 -0
  350. package/dist/types/Avatar.js +20 -0
  351. package/dist/{EpBadge-CWIq_C51.js → types/Badge.js} +3 -33
  352. package/dist/types/Btn.js +50 -0
  353. package/dist/types/Card.js +8 -0
  354. package/dist/types/Chip.js +42 -0
  355. package/dist/types/Codeblock.js +79 -0
  356. package/dist/types/Cols.js +10 -0
  357. package/dist/types/Image.js +23 -0
  358. package/dist/types/Medias.js +14 -0
  359. package/dist/types/Radio.js +13 -0
  360. package/dist/types/StackedList.js +9 -0
  361. package/dist/types/Switch.js +13 -0
  362. package/dist/types/TimeLine.js +22 -0
  363. package/dist/{EpTooltip-J6UMMP3d.js → types/Tooltip.js} +3 -25
  364. package/dist/vite.svg +0 -0
  365. package/package.json +84 -60
  366. package/.vscode/extensions.json +0 -3
  367. package/dist/BgAudio-i5PTLf0N.js +0 -4
  368. package/dist/Details-CS8Nyb_l.js +0 -4
  369. package/dist/DisplayBox-DirIshZw.js +0 -4
  370. package/dist/EpAudio-D2jZ4_2i.js +0 -4
  371. package/dist/EpAvatar-M02jfvFI.js +0 -4
  372. package/dist/EpBadge-BF-0h8Dh.js +0 -4
  373. package/dist/EpBarChart-BXNhTphT.js +0 -4
  374. package/dist/EpBtn-BoYPhKqX.js +0 -4
  375. package/dist/EpCard-CqnilIcE.js +0 -4
  376. package/dist/EpCardLink--_rDAa_E.js +0 -4
  377. package/dist/EpChip-C0cD6KFV.js +0 -4
  378. package/dist/EpCodeblock-GIrYPq6y.js +0 -4
  379. package/dist/EpConclusion-CUK9mpAC.js +0 -4
  380. package/dist/EpContentSlider-BlEFJulk.js +0 -4
  381. package/dist/EpDescription-BgtOpi53.js +0 -4
  382. package/dist/EpDivider-Op2QoptS.js +0 -4
  383. package/dist/EpDocument-MlNE59Qa.js +0 -4
  384. package/dist/EpDraggable-xB2wuyS9.js +0 -1676
  385. package/dist/EpEdu-DVW8x_BG.js +0 -4
  386. package/dist/EpFlex-B8IJkl_8.js +0 -4
  387. package/dist/EpFunnelChart-D1ptPhFl.js +0 -4
  388. package/dist/EpHeader-CMjLr9JM.js +0 -4
  389. package/dist/EpHover-Bblofuek.js +0 -4
  390. package/dist/EpHoverCard-bjn3lnwj.js +0 -4
  391. package/dist/EpIcon-DhwQi6Au.js +0 -4
  392. package/dist/EpIframe-B6SRnvUu.js +0 -4
  393. package/dist/EpImg-DzvIdzyz.js +0 -4
  394. package/dist/EpImgCarousel-DBf1h-5X.js +0 -4
  395. package/dist/EpInput-C0CMBUXe.js +0 -1095
  396. package/dist/EpInstructions-BrGtuXF0.js +0 -4
  397. package/dist/EpIntroduction-CqZ-4NpR.js +0 -4
  398. package/dist/EpLineChart-C4d_gdV7.js +0 -4
  399. package/dist/EpLink-oaKKn4qV.js +0 -4
  400. package/dist/EpLinkVersion-sfPy24Q2.js +0 -4
  401. package/dist/EpList-WwXeYUBm.js +0 -12
  402. package/dist/EpListitem-DXh4Kniu.js +0 -37
  403. package/dist/EpLottieSvg-NNSQLDpl.js +0 -1971
  404. package/dist/EpModal-BFqQKJTz.js +0 -4
  405. package/dist/EpNothing-C7vQO8hI.js +0 -10
  406. package/dist/EpObjective-C-c4gSvJ.js +0 -4
  407. package/dist/EpPieChart-B2mmQPO0.js +0 -4
  408. package/dist/EpQuestion-BMaqguZl.js +0 -4
  409. package/dist/EpQuote-CmpgynGk.js +0 -4
  410. package/dist/EpRadio-CUCgpUd_.js +0 -4
  411. package/dist/EpRadioSummative-DZNPH8SS.js +0 -4
  412. package/dist/EpReading-C_Puu9TF.js +0 -4
  413. package/dist/EpResource-YGl2YYa7.js +0 -4
  414. package/dist/EpScope-Bp8GVIxi.js +0 -4
  415. package/dist/EpSection-BCWwtKzA.js +0 -4
  416. package/dist/EpSectionCols-B1jykYrm.js +0 -4
  417. package/dist/EpSkeleton-VIzyuHgV.js +0 -4
  418. package/dist/EpSoftware-DR-Xei3P.js +0 -4
  419. package/dist/EpSpecificObjective-BzXora8y.js +0 -4
  420. package/dist/EpSpinner-BdhlSybk.js +0 -4
  421. package/dist/EpStackedList-hI9ca8KS.js +0 -4
  422. package/dist/EpSummativeTable-uPZf61d-.js +0 -4
  423. package/dist/EpSvg-TMco7bdD.js +0 -4
  424. package/dist/EpSvgShow-BcbojKsh.js +0 -4
  425. package/dist/EpSwitch-DtQon_hm.js +0 -64
  426. package/dist/EpTable-D8hV58AR.js +0 -4
  427. package/dist/EpTerm-BEi5nmEU.js +0 -4
  428. package/dist/EpText-D5p3vydP.js +0 -4
  429. package/dist/EpTimeLine-sgB1Bt70.js +0 -4
  430. package/dist/EpVideo-CLG17rgW.js +0 -4
  431. package/dist/EpVideoPanopto-CkY4bRjs.js +0 -4
  432. package/dist/EpWordDef-CrYgSmrV.js +0 -4
  433. package/dist/TextMedia-CtH3oJ5E.js +0 -4
  434. package/dist/TwoColsMedia-Di0IhDFz.js +0 -48
  435. package/dist/components/basics/EpAvatar.vue.d.ts +0 -51
  436. package/dist/components/basics/EpBadge.vue.d.ts +0 -37
  437. package/dist/components/basics/EpBtn.vue.d.ts +0 -64
  438. package/dist/components/basics/EpCard.vue.d.ts +0 -78
  439. package/dist/components/basics/EpChip.vue.d.ts +0 -60
  440. package/dist/components/basics/EpDivider.vue.d.ts +0 -46
  441. package/dist/components/basics/EpFlex.vue.d.ts +0 -11
  442. package/dist/components/basics/EpHover.vue.d.ts +0 -53
  443. package/dist/components/basics/EpHoverCard.vue.d.ts +0 -86
  444. package/dist/components/basics/EpIcon.vue.d.ts +0 -34
  445. package/dist/components/basics/EpImg.vue.d.ts +0 -64
  446. package/dist/components/basics/EpImgCarousel.vue.d.ts +0 -77
  447. package/dist/components/basics/EpList.vue.d.ts +0 -11
  448. package/dist/components/basics/EpListitem.vue.d.ts +0 -45
  449. package/dist/components/basics/EpSection.vue.d.ts +0 -55
  450. package/dist/components/basics/EpSectionCols.vue.d.ts +0 -69
  451. package/dist/components/basics/EpSpinner.vue.d.ts +0 -40
  452. package/dist/components/basics/EpStackedList.vue.d.ts +0 -58
  453. package/dist/components/basics/EpTable.vue.d.ts +0 -24
  454. package/dist/components/basics/EpText.vue.d.ts +0 -51
  455. package/dist/components/charts/EpBarChart.vue.d.ts +0 -57
  456. package/dist/components/charts/EpFunnelChart.vue.d.ts +0 -61
  457. package/dist/components/charts/EpLineChart.vue.d.ts +0 -57
  458. package/dist/components/charts/EpPieChart.vue.d.ts +0 -62
  459. package/dist/components/educationals/EpBranchingScenario.vue.d.ts +0 -74
  460. package/dist/components/educationals/EpCodeblock.vue.d.ts +0 -48
  461. package/dist/components/educationals/EpConclusion.vue.d.ts +0 -39
  462. package/dist/components/educationals/EpDescription.vue.d.ts +0 -39
  463. package/dist/components/educationals/EpDocument.vue.d.ts +0 -44
  464. package/dist/components/educationals/EpEdu.vue.d.ts +0 -62
  465. package/dist/components/educationals/EpInstructions.vue.d.ts +0 -37
  466. package/dist/components/educationals/EpIntroduction.vue.d.ts +0 -39
  467. package/dist/components/educationals/EpObjective.vue.d.ts +0 -39
  468. package/dist/components/educationals/EpReading.vue.d.ts +0 -87
  469. package/dist/components/educationals/EpResource.vue.d.ts +0 -34
  470. package/dist/components/educationals/EpScope.vue.d.ts +0 -24
  471. package/dist/components/educationals/EpSpecificObjective.vue.d.ts +0 -35
  472. package/dist/components/forms/EpCheckbox.vue.d.ts +0 -52
  473. package/dist/components/forms/EpInput.vue.d.ts +0 -65
  474. package/dist/components/forms/EpRadio.vue.d.ts +0 -57
  475. package/dist/components/forms/EpRadioSummative.vue.d.ts +0 -57
  476. package/dist/components/forms/EpSelect.vue.d.ts +0 -28
  477. package/dist/components/forms/EpSwitch.vue.d.ts +0 -58
  478. package/dist/components/forms/EpTextarea.vue.d.ts +0 -76
  479. package/dist/components/forms/EpToggle.vue.d.ts +0 -72
  480. package/dist/components/interactions/Ep360Image.vue.d.ts +0 -2
  481. package/dist/components/interactions/Ep360Video.vue.d.ts +0 -2
  482. package/dist/components/interactions/EpAccordeon.vue.d.ts +0 -53
  483. package/dist/components/interactions/EpContentSlider.vue.d.ts +0 -39
  484. package/dist/components/interactions/EpDarkmode.vue.d.ts +0 -7
  485. package/dist/components/interactions/EpDraggable.vue.d.ts +0 -26
  486. package/dist/components/interactions/EpHotsPot.vue.d.ts +0 -47
  487. package/dist/components/interactions/EpModal.vue.d.ts +0 -67
  488. package/dist/components/interactions/EpQuestion.vue.d.ts +0 -65
  489. package/dist/components/interactions/EpSummativeTable.vue.d.ts +0 -32
  490. package/dist/components/interactions/EpSvgShow.vue.d.ts +0 -33
  491. package/dist/components/interactions/EpTabs.vue.d.ts +0 -2
  492. package/dist/components/interactions/EpTooltip.vue.d.ts +0 -51
  493. package/dist/components/medias/EpAudio.vue.d.ts +0 -48
  494. package/dist/components/medias/EpCardLink.vue.d.ts +0 -65
  495. package/dist/components/medias/EpCarousel.vue.d.ts +0 -57
  496. package/dist/components/medias/EpHierarchy.vue.d.ts +0 -51
  497. package/dist/components/medias/EpIframe.vue.d.ts +0 -45
  498. package/dist/components/medias/EpKatex.vue.d.ts +0 -36
  499. package/dist/components/medias/EpLink.vue.d.ts +0 -42
  500. package/dist/components/medias/EpLinkVersion.vue.d.ts +0 -50
  501. package/dist/components/medias/EpLottieSvg.vue.d.ts +0 -58
  502. package/dist/components/medias/EpSoftware.vue.d.ts +0 -59
  503. package/dist/components/medias/EpSvg.vue.d.ts +0 -38
  504. package/dist/components/medias/EpTerm.vue.d.ts +0 -72
  505. package/dist/components/medias/EpTimeLine.vue.d.ts +0 -32
  506. package/dist/components/medias/EpVideo.vue.d.ts +0 -45
  507. package/dist/components/medias/EpVideoPanopto.vue.d.ts +0 -45
  508. package/dist/components/medias/EpWordDef.vue.d.ts +0 -63
  509. package/dist/components/signages/EpAlert.vue.d.ts +0 -55
  510. package/dist/components/signages/EpBadge.vue.d.ts +0 -59
  511. package/dist/components/signages/EpHeader.vue.d.ts +0 -112
  512. package/dist/components/signages/EpNothing.vue.d.ts +0 -2
  513. package/dist/components/signages/EpQuote.vue.d.ts +0 -49
  514. package/dist/components/signages/EpSkeleton.vue.d.ts +0 -45
  515. package/dist/components/tools/BgAudio.vue.d.ts +0 -29
  516. package/dist/components/tools/Details.vue.d.ts +0 -36
  517. package/dist/components/tools/DisplayBox.vue.d.ts +0 -19
  518. package/dist/components/tools/SvgFilter.vue.d.ts +0 -2
  519. package/dist/components/tools/TextMedia.vue.d.ts +0 -27
  520. package/dist/components/tools/TimelineItem.vue.d.ts +0 -38
  521. package/dist/components/tools/TwoColsMedia.vue.d.ts +0 -27
  522. package/dist/composables/isHtml.d.ts +0 -1
  523. package/dist/composables/useColors.d.ts +0 -1
  524. package/dist/composables/useComponent.d.ts +0 -6
  525. package/dist/composables/useCreateUid.d.ts +0 -2
  526. package/dist/composables/useIcons.d.ts +0 -26
  527. package/dist/composables/useMarkdown.d.ts +0 -1
  528. package/dist/composables/useRenderText.d.ts +0 -1
  529. package/dist/ep-lib-ts.js +0 -61
  530. package/dist/ep-lib-ts.umd.cjs +0 -465
  531. package/dist/index-4g-JMv7A.js +0 -24658
  532. package/dist/index-CLaGcnM3.js +0 -49358
  533. package/dist/index-CO05CQPt.js +0 -3430
  534. package/dist/index.d.ts +0 -60
  535. package/dist/main.d.ts +0 -1
  536. package/dist/prism-B3HCGkuN.js +0 -1182
  537. package/dist/router.d.ts +0 -2
  538. package/dist/style.css +0 -1
  539. package/src/components/basics/EpAvatar.vue +0 -72
  540. package/src/components/basics/EpBadge.vue +0 -78
  541. package/src/components/basics/EpBtn.vue +0 -88
  542. package/src/components/basics/EpCard.vue +0 -125
  543. package/src/components/basics/EpChip.vue +0 -80
  544. package/src/components/basics/EpDivider.vue +0 -40
  545. package/src/components/basics/EpFlex.vue +0 -43
  546. package/src/components/basics/EpHover.vue +0 -61
  547. package/src/components/basics/EpHoverCard.vue +0 -125
  548. package/src/components/basics/EpIcon.vue +0 -25
  549. package/src/components/basics/EpImg.vue +0 -162
  550. package/src/components/basics/EpImgCarousel.vue +0 -145
  551. package/src/components/basics/EpList.vue +0 -10
  552. package/src/components/basics/EpListitem.vue +0 -52
  553. package/src/components/basics/EpSection.vue +0 -74
  554. package/src/components/basics/EpSectionCols.vue +0 -100
  555. package/src/components/basics/EpSpinner.vue +0 -57
  556. package/src/components/basics/EpStackedList.vue +0 -79
  557. package/src/components/basics/EpTable.vue +0 -33
  558. package/src/components/basics/EpText.vue +0 -148
  559. package/src/components/charts/EpBarChart.vue +0 -94
  560. package/src/components/charts/EpFunnelChart.vue +0 -135
  561. package/src/components/charts/EpLineChart.vue +0 -106
  562. package/src/components/charts/EpPieChart.vue +0 -102
  563. package/src/components/educationals/EpBranchingScenario.vue +0 -307
  564. package/src/components/educationals/EpCodeblock.vue +0 -74
  565. package/src/components/educationals/EpConclusion.vue +0 -38
  566. package/src/components/educationals/EpDescription.vue +0 -38
  567. package/src/components/educationals/EpDocument.vue +0 -92
  568. package/src/components/educationals/EpEdu.vue +0 -126
  569. package/src/components/educationals/EpInstructions.vue +0 -49
  570. package/src/components/educationals/EpIntroduction.vue +0 -38
  571. package/src/components/educationals/EpObjective.vue +0 -41
  572. package/src/components/educationals/EpReading.vue +0 -255
  573. package/src/components/educationals/EpResource.vue +0 -85
  574. package/src/components/educationals/EpScope.vue +0 -29
  575. package/src/components/educationals/EpSpecificObjective.vue +0 -37
  576. package/src/components/forms/EpCheckbox.vue +0 -47
  577. package/src/components/forms/EpInput.vue +0 -178
  578. package/src/components/forms/EpRadio.vue +0 -72
  579. package/src/components/forms/EpRadioSummative.vue +0 -53
  580. package/src/components/forms/EpSelect.vue +0 -30
  581. package/src/components/forms/EpSwitch.vue +0 -73
  582. package/src/components/forms/EpTextarea.vue +0 -87
  583. package/src/components/forms/EpToggle.vue +0 -96
  584. package/src/components/interactions/Ep360Image.vue +0 -338
  585. package/src/components/interactions/Ep360Video.vue +0 -356
  586. package/src/components/interactions/EpAccordeon.vue +0 -91
  587. package/src/components/interactions/EpContentSlider.vue +0 -177
  588. package/src/components/interactions/EpDarkmode.vue +0 -44
  589. package/src/components/interactions/EpDraggable.vue +0 -192
  590. package/src/components/interactions/EpHotsPot.vue +0 -86
  591. package/src/components/interactions/EpModal.vue +0 -119
  592. package/src/components/interactions/EpQuestion.vue +0 -188
  593. package/src/components/interactions/EpSummativeTable.vue +0 -59
  594. package/src/components/interactions/EpSvgShow.vue +0 -108
  595. package/src/components/interactions/EpTabs.vue +0 -10
  596. package/src/components/interactions/EpTooltip.vue +0 -164
  597. package/src/components/medias/EpAudio.vue +0 -97
  598. package/src/components/medias/EpCardLink.vue +0 -82
  599. package/src/components/medias/EpCarousel.vue +0 -190
  600. package/src/components/medias/EpHierarchy.vue +0 -368
  601. package/src/components/medias/EpIframe.vue +0 -73
  602. package/src/components/medias/EpKatex.vue +0 -76
  603. package/src/components/medias/EpLink.vue +0 -78
  604. package/src/components/medias/EpLinkVersion.vue +0 -48
  605. package/src/components/medias/EpLottieSvg.vue +0 -79
  606. package/src/components/medias/EpSoftware.vue +0 -92
  607. package/src/components/medias/EpSvg.vue +0 -66
  608. package/src/components/medias/EpTerm.vue +0 -174
  609. package/src/components/medias/EpTimeLine.vue +0 -109
  610. package/src/components/medias/EpVideo.vue +0 -130
  611. package/src/components/medias/EpVideoPanopto.vue +0 -71
  612. package/src/components/medias/EpWordDef.vue +0 -142
  613. package/src/components/signages/EpAlert.vue +0 -109
  614. package/src/components/signages/EpBadge.vue +0 -82
  615. package/src/components/signages/EpHeader.vue +0 -215
  616. package/src/components/signages/EpNothing.vue +0 -5
  617. package/src/components/signages/EpQuote.vue +0 -72
  618. package/src/components/signages/EpSkeleton.vue +0 -48
  619. package/src/components/tools/BgAudio.vue +0 -51
  620. package/src/components/tools/Details.vue +0 -47
  621. package/src/components/tools/DisplayBox.vue +0 -44
  622. package/src/components/tools/SvgFilter.vue +0 -220
  623. package/src/components/tools/TextMedia.vue +0 -44
  624. package/src/components/tools/TimelineItem.vue +0 -141
  625. package/src/components/tools/TwoColsMedia.vue +0 -52
  626. /package/dist/{types/Accordeon.d.ts → Accordeon.d.ts} +0 -0
  627. /package/dist/{types/Aframe.d.ts → Aframe.d.ts} +0 -0
  628. /package/dist/{types/Alert.d.ts → Alert.d.ts} +0 -0
  629. /package/dist/{types/Avatar.d.ts → Avatar.d.ts} +0 -0
  630. /package/dist/{types/Badge.d.ts → Badge.d.ts} +0 -0
  631. /package/dist/{types/Border.d.ts → Border.d.ts} +0 -0
  632. /package/dist/{types/Btn.d.ts → Btn.d.ts} +0 -0
  633. /package/dist/{types/Card.d.ts → Card.d.ts} +0 -0
  634. /package/dist/{types/Chip.d.ts → Chip.d.ts} +0 -0
  635. /package/dist/{types/Codeblock.d.ts → Codeblock.d.ts} +0 -0
  636. /package/dist/{types/Cols.d.ts → Cols.d.ts} +0 -0
  637. /package/dist/{types/Component.d.ts → Component.d.ts} +0 -0
  638. /package/dist/{types/Draggable.d.ts → Draggable.d.ts} +0 -0
  639. /package/dist/{types/GlossaryEntry.d.ts → GlossaryEntry.d.ts} +0 -0
  640. /package/dist/{types/Hover.d.ts → Hover.d.ts} +0 -0
  641. /package/dist/{types/Image.d.ts → Image.d.ts} +0 -0
  642. /package/dist/{types/MandateLevel.d.ts → MandateLevel.d.ts} +0 -0
  643. /package/dist/{types/MediaCarousel.d.ts → MediaCarousel.d.ts} +0 -0
  644. /package/dist/{types/Medias.d.ts → Medias.d.ts} +0 -0
  645. /package/dist/{types/Radio.d.ts → Radio.d.ts} +0 -0
  646. /package/dist/{types/Slides.d.ts → Slides.d.ts} +0 -0
  647. /package/dist/{types/StackedList.d.ts → StackedList.d.ts} +0 -0
  648. /package/dist/{types/SummativeTable.d.ts → SummativeTable.d.ts} +0 -0
  649. /package/dist/{types/Switch.d.ts → Switch.d.ts} +0 -0
  650. /package/dist/{types/Three.d.ts → Three.d.ts} +0 -0
  651. /package/dist/{types/TimeLine.d.ts → TimeLine.d.ts} +0 -0
  652. /package/dist/{types/Tooltip.d.ts → Tooltip.d.ts} +0 -0
  653. /package/dist/{EpCheckbox-D-AiG1k1.js → components/forms/EpCheckbox.vue.js} +0 -0
  654. /package/dist/{EpSelect-C10jbOyP.js → components/forms/EpSelect.vue.js} +0 -0
  655. /package/dist/{types/image360.d.ts → image360.d.ts} +0 -0
  656. /package/dist/{types/video360.d.ts → video360.d.ts} +0 -0
@@ -1,1095 +0,0 @@
1
- import { computed as C, toValue as g, unref as v, onMounted as Ye, getCurrentInstance as K, provide as Xe, isRef as ie, watch as U, onBeforeUnmount as He, inject as Qe, onUnmounted as Ze, ref as te, reactive as et, nextTick as tt, defineComponent as rt, toRefs as nt, toRef as ot, createElementBlock as ve, openBlock as pe, Fragment as it, createTextVNode as me, createElementVNode as P, toDisplayString as X, createVNode as lt, withDirectives as at, createCommentVNode as ut, vModelText as st } from "vue";
2
- import { d as dt, J as ct } from "./index-4g-JMv7A.js";
3
- /**
4
- * vee-validate v4.15.0
5
- * (c) 2024 Abdelrahman Awad
6
- * @license MIT
7
- */
8
- function I(e) {
9
- return typeof e == "function";
10
- }
11
- function ft(e) {
12
- return e == null;
13
- }
14
- const B = (e) => e !== null && !!e && typeof e == "object" && !Array.isArray(e);
15
- function Ae(e) {
16
- return Number(e) >= 0;
17
- }
18
- function vt(e) {
19
- const t = parseFloat(e);
20
- return isNaN(t) ? e : t;
21
- }
22
- function pt(e) {
23
- const t = e.split(".");
24
- if (!t.length)
25
- return "";
26
- let r = String(t[0]);
27
- for (let n = 1; n < t.length; n++) {
28
- if (Ae(t[n])) {
29
- r += `[${t[n]}]`;
30
- continue;
31
- }
32
- r += `.${t[n]}`;
33
- }
34
- return r;
35
- }
36
- const mt = {};
37
- function bt(e) {
38
- return mt[e];
39
- }
40
- function be(e, t, r) {
41
- typeof r.value == "object" && (r.value = T(r.value)), !r.enumerable || r.get || r.set || !r.configurable || !r.writable || t === "__proto__" ? Object.defineProperty(e, t, r) : e[t] = r.value;
42
- }
43
- function T(e) {
44
- if (typeof e != "object") return e;
45
- var t = 0, r, n, o, i = Object.prototype.toString.call(e);
46
- if (i === "[object Object]" ? o = Object.create(e.__proto__ || null) : i === "[object Array]" ? o = Array(e.length) : i === "[object Set]" ? (o = /* @__PURE__ */ new Set(), e.forEach(function(l) {
47
- o.add(T(l));
48
- })) : i === "[object Map]" ? (o = /* @__PURE__ */ new Map(), e.forEach(function(l, u) {
49
- o.set(T(u), T(l));
50
- })) : i === "[object Date]" ? o = /* @__PURE__ */ new Date(+e) : i === "[object RegExp]" ? o = new RegExp(e.source, e.flags) : i === "[object DataView]" ? o = new e.constructor(T(e.buffer)) : i === "[object ArrayBuffer]" ? o = e.slice(0) : i.slice(-6) === "Array]" && (o = new e.constructor(e)), o) {
51
- for (n = Object.getOwnPropertySymbols(e); t < n.length; t++)
52
- be(o, n[t], Object.getOwnPropertyDescriptor(e, n[t]));
53
- for (t = 0, n = Object.getOwnPropertyNames(e); t < n.length; t++)
54
- Object.hasOwnProperty.call(o, r = n[t]) && o[r] === e[r] || be(o, r, Object.getOwnPropertyDescriptor(e, r));
55
- }
56
- return o || e;
57
- }
58
- const je = Symbol("vee-validate-form"), ht = Symbol("vee-validate-field-instance"), he = Symbol("Default empty value"), ke = typeof window < "u";
59
- function re(e) {
60
- return I(e) && !!e.__locatorRef;
61
- }
62
- function q(e) {
63
- return !!e && I(e.parse) && e.__type === "VVTypedSchema";
64
- }
65
- function ne(e) {
66
- return !!e && I(e.validate);
67
- }
68
- function Ce(e) {
69
- return e === "checkbox" || e === "radio";
70
- }
71
- function yt(e) {
72
- return B(e) || Array.isArray(e);
73
- }
74
- function le(e) {
75
- return /^\[.+\]$/i.test(e);
76
- }
77
- function gt(e) {
78
- return Ee(e) && e.multiple;
79
- }
80
- function Ee(e) {
81
- return e.tagName === "SELECT";
82
- }
83
- function Vt(e) {
84
- return e ? !!(typeof Event < "u" && I(Event) && e instanceof Event || e && e.srcElement) : !1;
85
- }
86
- function k(e, t) {
87
- if (e === t)
88
- return !0;
89
- if (e && t && typeof e == "object" && typeof t == "object") {
90
- if (e.constructor !== t.constructor)
91
- return !1;
92
- var r, n, o;
93
- if (Array.isArray(e)) {
94
- if (r = e.length, r != t.length)
95
- return !1;
96
- for (n = r; n-- !== 0; )
97
- if (!k(e[n], t[n]))
98
- return !1;
99
- return !0;
100
- }
101
- if (e instanceof Map && t instanceof Map) {
102
- if (e.size !== t.size)
103
- return !1;
104
- for (n of e.entries())
105
- if (!t.has(n[0]))
106
- return !1;
107
- for (n of e.entries())
108
- if (!k(n[1], t.get(n[0])))
109
- return !1;
110
- return !0;
111
- }
112
- if (ge(e) && ge(t))
113
- return !(e.size !== t.size || e.name !== t.name || e.lastModified !== t.lastModified || e.type !== t.type);
114
- if (e instanceof Set && t instanceof Set) {
115
- if (e.size !== t.size)
116
- return !1;
117
- for (n of e.entries())
118
- if (!t.has(n[0]))
119
- return !1;
120
- return !0;
121
- }
122
- if (ArrayBuffer.isView(e) && ArrayBuffer.isView(t)) {
123
- if (r = e.length, r != t.length)
124
- return !1;
125
- for (n = r; n-- !== 0; )
126
- if (e[n] !== t[n])
127
- return !1;
128
- return !0;
129
- }
130
- if (e.constructor === RegExp)
131
- return e.source === t.source && e.flags === t.flags;
132
- if (e.valueOf !== Object.prototype.valueOf)
133
- return e.valueOf() === t.valueOf();
134
- if (e.toString !== Object.prototype.toString)
135
- return e.toString() === t.toString();
136
- if (o = Object.keys(e), r = o.length - ye(e, o), r !== Object.keys(t).length - ye(t, Object.keys(t)))
137
- return !1;
138
- for (n = r; n-- !== 0; )
139
- if (!Object.prototype.hasOwnProperty.call(t, o[n]))
140
- return !1;
141
- for (n = r; n-- !== 0; ) {
142
- var i = o[n];
143
- if (!k(e[i], t[i]))
144
- return !1;
145
- }
146
- return !0;
147
- }
148
- return e !== e && t !== t;
149
- }
150
- function ye(e, t) {
151
- let r = 0;
152
- for (let o = t.length; o-- !== 0; ) {
153
- var n = t[o];
154
- e[n] === void 0 && r++;
155
- }
156
- return r;
157
- }
158
- function ge(e) {
159
- return ke ? e instanceof File : !1;
160
- }
161
- function Ne(e) {
162
- return le(e) ? e.replace(/\[|\]/gi, "") : e;
163
- }
164
- function z(e, t, r) {
165
- return e ? le(t) ? e[Ne(t)] : (t || "").split(/\.|\[(\d+)\]/).filter(Boolean).reduce((o, i) => yt(o) && i in o ? o[i] : r, e) : r;
166
- }
167
- function Ot(e, t, r) {
168
- if (le(t)) {
169
- e[Ne(t)] = r;
170
- return;
171
- }
172
- const n = t.split(/\.|\[(\d+)\]/).filter(Boolean);
173
- let o = e;
174
- for (let i = 0; i < n.length; i++) {
175
- if (i === n.length - 1) {
176
- o[n[i]] = r;
177
- return;
178
- }
179
- (!(n[i] in o) || ft(o[n[i]])) && (o[n[i]] = Ae(n[i + 1]) ? [] : {}), o = o[n[i]];
180
- }
181
- }
182
- function xe(e) {
183
- return Object.keys(e);
184
- }
185
- function Ie(e, t = void 0) {
186
- const r = K();
187
- return (r == null ? void 0 : r.provides[e]) || Qe(e, t);
188
- }
189
- function _t(e, t, r) {
190
- if (Array.isArray(e)) {
191
- const n = [...e], o = n.findIndex((i) => k(i, t));
192
- return o >= 0 ? n.splice(o, 1) : n.push(t), n;
193
- }
194
- return k(e, t) ? r : t;
195
- }
196
- function St(e, t) {
197
- let r, n;
198
- return function(...o) {
199
- const i = this;
200
- return r || (r = !0, setTimeout(() => r = !1, t), n = e.apply(i, o)), n;
201
- };
202
- }
203
- function wt(e, t) {
204
- return B(t) && t.number ? vt(e) : e;
205
- }
206
- function Ve(e, t) {
207
- let r;
208
- return async function(...o) {
209
- const i = e(...o);
210
- r = i;
211
- const l = await i;
212
- return i !== r ? l : (r = void 0, t(l, o));
213
- };
214
- }
215
- function At(e) {
216
- return Array.isArray(e) ? e : e ? [e] : [];
217
- }
218
- function ee(e) {
219
- if (Fe(e))
220
- return e._value;
221
- }
222
- function Fe(e) {
223
- return "_value" in e;
224
- }
225
- function jt(e) {
226
- return e.type === "number" || e.type === "range" ? Number.isNaN(e.valueAsNumber) ? e.value : e.valueAsNumber : e.value;
227
- }
228
- function Pe(e) {
229
- if (!Vt(e))
230
- return e;
231
- const t = e.target;
232
- if (Ce(t.type) && Fe(t))
233
- return ee(t);
234
- if (t.type === "file" && t.files) {
235
- const r = Array.from(t.files);
236
- return t.multiple ? r : r[0];
237
- }
238
- if (gt(t))
239
- return Array.from(t.options).filter((r) => r.selected && !r.disabled).map(ee);
240
- if (Ee(t)) {
241
- const r = Array.from(t.options).find((n) => n.selected);
242
- return r ? ee(r) : t.value;
243
- }
244
- return jt(t);
245
- }
246
- function Te(e) {
247
- const t = {};
248
- return Object.defineProperty(t, "_$$isNormalized", {
249
- value: !0,
250
- writable: !1,
251
- enumerable: !1,
252
- configurable: !1
253
- }), e ? B(e) && e._$$isNormalized ? e : B(e) ? Object.keys(e).reduce((r, n) => {
254
- const o = kt(e[n]);
255
- return e[n] !== !1 && (r[n] = Oe(o)), r;
256
- }, t) : typeof e != "string" ? t : e.split("|").reduce((r, n) => {
257
- const o = Ct(n);
258
- return o.name && (r[o.name] = Oe(o.params)), r;
259
- }, t) : t;
260
- }
261
- function kt(e) {
262
- return e === !0 ? [] : Array.isArray(e) || B(e) ? e : [e];
263
- }
264
- function Oe(e) {
265
- const t = (r) => typeof r == "string" && r[0] === "@" ? Et(r.slice(1)) : r;
266
- return Array.isArray(e) ? e.map(t) : e instanceof RegExp ? [e] : Object.keys(e).reduce((r, n) => (r[n] = t(e[n]), r), {});
267
- }
268
- const Ct = (e) => {
269
- let t = [];
270
- const r = e.split(":")[0];
271
- return e.includes(":") && (t = e.split(":").slice(1).join(":").split(",")), { name: r, params: t };
272
- };
273
- function Et(e) {
274
- const t = (r) => {
275
- var n;
276
- return (n = z(r, e)) !== null && n !== void 0 ? n : r[e];
277
- };
278
- return t.__locatorRef = e, t;
279
- }
280
- function Nt(e) {
281
- return Array.isArray(e) ? e.filter(re) : xe(e).filter((t) => re(e[t])).map((t) => e[t]);
282
- }
283
- const xt = {
284
- generateMessage: ({ field: e }) => `${e} is not valid.`,
285
- bails: !0,
286
- validateOnBlur: !0,
287
- validateOnChange: !0,
288
- validateOnInput: !1,
289
- validateOnModelUpdate: !0
290
- };
291
- let It = Object.assign({}, xt);
292
- const Ft = () => It;
293
- async function Pt(e, t, r = {}) {
294
- const n = r == null ? void 0 : r.bails, o = {
295
- name: (r == null ? void 0 : r.name) || "{field}",
296
- rules: t,
297
- label: r == null ? void 0 : r.label,
298
- bails: n ?? !0,
299
- formData: (r == null ? void 0 : r.values) || {}
300
- }, i = await Tt(o, e);
301
- return Object.assign(Object.assign({}, i), { valid: !i.errors.length });
302
- }
303
- async function Tt(e, t) {
304
- const r = e.rules;
305
- if (q(r) || ne(r))
306
- return Mt(t, Object.assign(Object.assign({}, e), { rules: r }));
307
- if (I(r) || Array.isArray(r)) {
308
- const u = {
309
- field: e.label || e.name,
310
- name: e.name,
311
- label: e.label,
312
- form: e.formData,
313
- value: t
314
- }, s = Array.isArray(r) ? r : [r], d = s.length, h = [];
315
- for (let m = 0; m < d; m++) {
316
- const _ = s[m], f = await _(t, u);
317
- if (!(typeof f != "string" && !Array.isArray(f) && f)) {
318
- if (Array.isArray(f))
319
- h.push(...f);
320
- else {
321
- const N = typeof f == "string" ? f : De(u);
322
- h.push(N);
323
- }
324
- if (e.bails)
325
- return {
326
- errors: h
327
- };
328
- }
329
- }
330
- return {
331
- errors: h
332
- };
333
- }
334
- const n = Object.assign(Object.assign({}, e), { rules: Te(r) }), o = [], i = Object.keys(n.rules), l = i.length;
335
- for (let u = 0; u < l; u++) {
336
- const s = i[u], d = await Ut(n, t, {
337
- name: s,
338
- params: n.rules[s]
339
- });
340
- if (d.error && (o.push(d.error), e.bails))
341
- return {
342
- errors: o
343
- };
344
- }
345
- return {
346
- errors: o
347
- };
348
- }
349
- function Dt(e) {
350
- return !!e && e.name === "ValidationError";
351
- }
352
- function Rt(e) {
353
- return {
354
- __type: "VVTypedSchema",
355
- async parse(r, n) {
356
- var o;
357
- try {
358
- return {
359
- output: await e.validate(r, { abortEarly: !1, context: (n == null ? void 0 : n.formData) || {} }),
360
- errors: []
361
- };
362
- } catch (i) {
363
- if (!Dt(i))
364
- throw i;
365
- if (!(!((o = i.inner) === null || o === void 0) && o.length) && i.errors.length)
366
- return { errors: [{ path: i.path, errors: i.errors }] };
367
- const l = i.inner.reduce((u, s) => {
368
- const d = s.path || "";
369
- return u[d] || (u[d] = { errors: [], path: d }), u[d].errors.push(...s.errors), u;
370
- }, {});
371
- return { errors: Object.values(l) };
372
- }
373
- }
374
- };
375
- }
376
- async function Mt(e, t) {
377
- const n = await (q(t.rules) ? t.rules : Rt(t.rules)).parse(e, { formData: t.formData }), o = [];
378
- for (const i of n.errors)
379
- i.errors.length && o.push(...i.errors);
380
- return {
381
- value: n.value,
382
- errors: o
383
- };
384
- }
385
- async function Ut(e, t, r) {
386
- const n = bt(r.name);
387
- if (!n)
388
- throw new Error(`No such validator '${r.name}' exists.`);
389
- const o = Bt(r.params, e.formData), i = {
390
- field: e.label || e.name,
391
- name: e.name,
392
- label: e.label,
393
- value: t,
394
- form: e.formData,
395
- rule: Object.assign(Object.assign({}, r), { params: o })
396
- }, l = await n(t, o, i);
397
- return typeof l == "string" ? {
398
- error: l
399
- } : {
400
- error: l ? void 0 : De(i)
401
- };
402
- }
403
- function De(e) {
404
- const t = Ft().generateMessage;
405
- return t ? t(e) : "Field is invalid";
406
- }
407
- function Bt(e, t) {
408
- const r = (n) => re(n) ? n(t) : n;
409
- return Array.isArray(e) ? e.map(r) : Object.keys(e).reduce((n, o) => (n[o] = r(e[o]), n), {});
410
- }
411
- let _e = 0;
412
- function zt(e, t) {
413
- const { value: r, initialValue: n, setInitialValue: o } = $t(e, t.modelValue, t.form);
414
- if (!t.form) {
415
- let _ = function(f) {
416
- var S;
417
- "value" in f && (r.value = f.value), "errors" in f && d(f.errors), "touched" in f && (m.touched = (S = f.touched) !== null && S !== void 0 ? S : m.touched), "initialValue" in f && o(f.initialValue);
418
- };
419
- const { errors: s, setErrors: d } = Wt(), h = _e >= Number.MAX_SAFE_INTEGER ? 0 : ++_e, m = qt(r, n, s, t.schema);
420
- return {
421
- id: h,
422
- path: e,
423
- value: r,
424
- initialValue: n,
425
- meta: m,
426
- flags: { pendingUnmount: { [h]: !1 }, pendingReset: !1 },
427
- errors: s,
428
- setState: _
429
- };
430
- }
431
- const i = t.form.createPathState(e, {
432
- bails: t.bails,
433
- label: t.label,
434
- type: t.type,
435
- validate: t.validate,
436
- schema: t.schema
437
- }), l = C(() => i.errors);
438
- function u(s) {
439
- var d, h, m;
440
- "value" in s && (r.value = s.value), "errors" in s && ((d = t.form) === null || d === void 0 || d.setFieldError(v(e), s.errors)), "touched" in s && ((h = t.form) === null || h === void 0 || h.setFieldTouched(v(e), (m = s.touched) !== null && m !== void 0 ? m : !1)), "initialValue" in s && o(s.initialValue);
441
- }
442
- return {
443
- id: Array.isArray(i.id) ? i.id[i.id.length - 1] : i.id,
444
- path: e,
445
- value: r,
446
- errors: l,
447
- meta: i,
448
- initialValue: n,
449
- flags: i.__flags,
450
- setState: u
451
- };
452
- }
453
- function $t(e, t, r) {
454
- const n = te(v(t));
455
- function o() {
456
- return r ? z(r.initialValues.value, v(e), v(n)) : v(n);
457
- }
458
- function i(d) {
459
- if (!r) {
460
- n.value = d;
461
- return;
462
- }
463
- r.setFieldInitialValue(v(e), d, !0);
464
- }
465
- const l = C(o);
466
- if (!r)
467
- return {
468
- value: te(o()),
469
- initialValue: l,
470
- setInitialValue: i
471
- };
472
- const u = Lt(t, r, l, e);
473
- return r.stageInitialValue(v(e), u, !0), {
474
- value: C({
475
- get() {
476
- return z(r.values, v(e));
477
- },
478
- set(d) {
479
- r.setFieldValue(v(e), d, !1);
480
- }
481
- }),
482
- initialValue: l,
483
- setInitialValue: i
484
- };
485
- }
486
- function Lt(e, t, r, n) {
487
- return ie(e) ? v(e) : e !== void 0 ? e : z(t.values, v(n), v(r));
488
- }
489
- function qt(e, t, r, n) {
490
- const o = C(() => {
491
- var l, u, s;
492
- return (s = (u = (l = g(n)) === null || l === void 0 ? void 0 : l.describe) === null || u === void 0 ? void 0 : u.call(l).required) !== null && s !== void 0 ? s : !1;
493
- }), i = et({
494
- touched: !1,
495
- pending: !1,
496
- valid: !0,
497
- required: o,
498
- validated: !!v(r).length,
499
- initialValue: C(() => v(t)),
500
- dirty: C(() => !k(v(e), v(t)))
501
- });
502
- return U(r, (l) => {
503
- i.valid = !l.length;
504
- }, {
505
- immediate: !0,
506
- flush: "sync"
507
- }), i;
508
- }
509
- function Wt() {
510
- const e = te([]);
511
- return {
512
- errors: e,
513
- setErrors: (t) => {
514
- e.value = At(t);
515
- }
516
- };
517
- }
518
- const Re = {}, W = {}, J = "vee-validate-inspector", O = {
519
- error: 12405579,
520
- success: 448379,
521
- unknown: 5522283,
522
- white: 16777215,
523
- black: 0,
524
- blue: 218007,
525
- purple: 12157168,
526
- orange: 16099682,
527
- gray: 12304330
528
- };
529
- let y = null, x;
530
- async function Jt(e) {
531
- if (process.env.NODE_ENV !== "production") {
532
- if (!ke)
533
- return;
534
- (await import("./index-CO05CQPt.js")).setupDevtoolsPlugin({
535
- id: "vee-validate-devtools-plugin",
536
- label: "VeeValidate Plugin",
537
- packageName: "vee-validate",
538
- homepage: "https://vee-validate.logaretm.com/v4",
539
- app: e,
540
- logo: "https://vee-validate.logaretm.com/v4/logo.png"
541
- }, (r) => {
542
- x = r, r.addInspector({
543
- id: J,
544
- icon: "rule",
545
- label: "vee-validate",
546
- noSelectionText: "Select a vee-validate node to inspect",
547
- actions: [
548
- {
549
- icon: "done_outline",
550
- tooltip: "Validate selected item",
551
- action: async () => {
552
- if (!y) {
553
- console.error("There is not a valid selected vee-validate node or component");
554
- return;
555
- }
556
- if (y.type === "field") {
557
- await y.field.validate();
558
- return;
559
- }
560
- if (y.type === "form") {
561
- await y.form.validate();
562
- return;
563
- }
564
- y.type === "pathState" && await y.form.validateField(y.state.path);
565
- }
566
- },
567
- {
568
- icon: "delete_sweep",
569
- tooltip: "Clear validation state of the selected item",
570
- action: () => {
571
- if (!y) {
572
- console.error("There is not a valid selected vee-validate node or component");
573
- return;
574
- }
575
- if (y.type === "field") {
576
- y.field.resetField();
577
- return;
578
- }
579
- y.type === "form" && y.form.resetForm(), y.type === "pathState" && y.form.resetField(y.state.path);
580
- }
581
- }
582
- ]
583
- }), r.on.getInspectorTree((n) => {
584
- if (n.inspectorId !== J)
585
- return;
586
- const o = Object.values(Re), i = Object.values(W);
587
- n.rootNodes = [
588
- ...o.map(Gt),
589
- ...i.map((l) => Xt(l))
590
- ];
591
- }), r.on.getInspectorState((n) => {
592
- if (n.inspectorId !== J)
593
- return;
594
- const { form: o, field: i, state: l, type: u } = Ht(n.nodeId);
595
- if (r.unhighlightElement(), o && u === "form") {
596
- n.state = Qt(o), y = { type: "form", form: o }, r.highlightElement(o._vm);
597
- return;
598
- }
599
- if (l && u === "pathState" && o) {
600
- n.state = Se(l), y = { type: "pathState", state: l, form: o };
601
- return;
602
- }
603
- if (i && u === "field") {
604
- n.state = Se({
605
- errors: i.errors.value,
606
- dirty: i.meta.dirty,
607
- valid: i.meta.valid,
608
- touched: i.meta.touched,
609
- value: i.value.value,
610
- initialValue: i.meta.initialValue
611
- }), y = { field: i, type: "field" }, r.highlightElement(i._vm);
612
- return;
613
- }
614
- y = null, r.unhighlightElement();
615
- });
616
- });
617
- }
618
- }
619
- const oe = St(() => {
620
- setTimeout(async () => {
621
- await tt(), x == null || x.sendInspectorState(J), x == null || x.sendInspectorTree(J);
622
- }, 100);
623
- }, 100);
624
- function Kt(e) {
625
- const t = K();
626
- if (!x) {
627
- const r = t == null ? void 0 : t.appContext.app;
628
- if (!r)
629
- return;
630
- Jt(r);
631
- }
632
- W[e.id] = Object.assign({}, e), W[e.id]._vm = t, Ze(() => {
633
- delete W[e.id], oe();
634
- }), oe();
635
- }
636
- function Gt(e) {
637
- const { textColor: t, bgColor: r } = Ue(e.meta.value.valid), n = {};
638
- Object.values(e.getAllPathStates()).forEach((l) => {
639
- Ot(n, g(l.path), Yt(l, e));
640
- });
641
- function o(l, u = []) {
642
- const s = [...u].pop();
643
- return "id" in l ? Object.assign(Object.assign({}, l), { label: s || l.label }) : B(l) ? {
644
- id: `${u.join(".")}`,
645
- label: s || "",
646
- children: Object.keys(l).map((d) => o(l[d], [...u, d]))
647
- } : Array.isArray(l) ? {
648
- id: `${u.join(".")}`,
649
- label: `${s}[]`,
650
- children: l.map((d, h) => o(d, [...u, String(h)]))
651
- } : { id: "", label: "", children: [] };
652
- }
653
- const { children: i } = o(n);
654
- return {
655
- id: ae(e),
656
- label: e.name,
657
- children: i,
658
- tags: [
659
- {
660
- label: "Form",
661
- textColor: t,
662
- backgroundColor: r
663
- },
664
- {
665
- label: `${e.getAllPathStates().length} fields`,
666
- textColor: O.white,
667
- backgroundColor: O.unknown
668
- }
669
- ]
670
- };
671
- }
672
- function Yt(e, t) {
673
- return {
674
- id: ae(t, e),
675
- label: g(e.path),
676
- tags: Me(e.multiple, e.fieldsCount, e.type, e.valid, t)
677
- };
678
- }
679
- function Xt(e, t) {
680
- return {
681
- id: ae(t, e),
682
- label: v(e.name),
683
- tags: Me(!1, 1, e.type, e.meta.valid, t)
684
- };
685
- }
686
- function Me(e, t, r, n, o) {
687
- const { textColor: i, bgColor: l } = Ue(n);
688
- return [
689
- e ? void 0 : {
690
- label: "Field",
691
- textColor: i,
692
- backgroundColor: l
693
- },
694
- o ? void 0 : {
695
- label: "Standalone",
696
- textColor: O.black,
697
- backgroundColor: O.gray
698
- },
699
- r === "checkbox" ? {
700
- label: "Checkbox",
701
- textColor: O.white,
702
- backgroundColor: O.blue
703
- } : void 0,
704
- r === "radio" ? {
705
- label: "Radio",
706
- textColor: O.white,
707
- backgroundColor: O.purple
708
- } : void 0,
709
- e ? {
710
- label: "Multiple",
711
- textColor: O.black,
712
- backgroundColor: O.orange
713
- } : void 0
714
- ].filter(Boolean);
715
- }
716
- function ae(e, t) {
717
- const r = t ? "path" in t ? "pathState" : "field" : "form", n = t ? "path" in t ? t == null ? void 0 : t.path : g(t == null ? void 0 : t.name) : "", o = { f: e == null ? void 0 : e.formId, ff: (t == null ? void 0 : t.id) || n, type: r };
718
- return btoa(encodeURIComponent(JSON.stringify(o)));
719
- }
720
- function Ht(e) {
721
- try {
722
- const t = JSON.parse(decodeURIComponent(atob(e))), r = Re[t.f];
723
- if (!r && t.ff) {
724
- const o = W[t.ff];
725
- return o ? {
726
- type: t.type,
727
- field: o
728
- } : {};
729
- }
730
- if (!r)
731
- return {};
732
- const n = r.getPathState(t.ff);
733
- return {
734
- type: t.type,
735
- form: r,
736
- state: n
737
- };
738
- } catch {
739
- }
740
- return {};
741
- }
742
- function Se(e) {
743
- return {
744
- "Field state": [
745
- { key: "errors", value: e.errors },
746
- {
747
- key: "initialValue",
748
- value: e.initialValue
749
- },
750
- {
751
- key: "currentValue",
752
- value: e.value
753
- },
754
- {
755
- key: "touched",
756
- value: e.touched
757
- },
758
- {
759
- key: "dirty",
760
- value: e.dirty
761
- },
762
- {
763
- key: "valid",
764
- value: e.valid
765
- }
766
- ]
767
- };
768
- }
769
- function Qt(e) {
770
- const { errorBag: t, meta: r, values: n, isSubmitting: o, isValidating: i, submitCount: l } = e;
771
- return {
772
- "Form state": [
773
- {
774
- key: "submitCount",
775
- value: l.value
776
- },
777
- {
778
- key: "isSubmitting",
779
- value: o.value
780
- },
781
- {
782
- key: "isValidating",
783
- value: i.value
784
- },
785
- {
786
- key: "touched",
787
- value: r.value.touched
788
- },
789
- {
790
- key: "dirty",
791
- value: r.value.dirty
792
- },
793
- {
794
- key: "valid",
795
- value: r.value.valid
796
- },
797
- {
798
- key: "initialValues",
799
- value: r.value.initialValues
800
- },
801
- {
802
- key: "currentValues",
803
- value: n
804
- },
805
- {
806
- key: "errors",
807
- value: xe(t.value).reduce((u, s) => {
808
- var d;
809
- const h = (d = t.value[s]) === null || d === void 0 ? void 0 : d[0];
810
- return h && (u[s] = h), u;
811
- }, {})
812
- }
813
- ]
814
- };
815
- }
816
- function Ue(e) {
817
- return {
818
- bgColor: e ? O.success : O.error,
819
- textColor: e ? O.black : O.white
820
- };
821
- }
822
- function Zt(e, t, r) {
823
- return Ce(void 0) ? tr(e, t) : Be(e, t);
824
- }
825
- function Be(e, t, r) {
826
- const { initialValue: n, validateOnMount: o, bails: i, type: l, checkedValue: u, label: s, validateOnValueUpdate: d, uncheckedValue: h, controlled: m, keepValueOnUnmount: _, syncVModel: f, form: S } = er(), N = m ? Ie(je) : void 0, c = S || N, w = C(() => pt(g(e))), E = C(() => {
827
- if (g(c == null ? void 0 : c.schema))
828
- return;
829
- const p = v(t);
830
- return ne(p) || q(p) || I(p) || Array.isArray(p) ? p : Te(p);
831
- }), ze = !I(E.value) && q(g(t)), { id: H, value: $, initialValue: $e, meta: A, setState: G, errors: Q, flags: Y } = zt(w, {
832
- modelValue: n,
833
- form: c,
834
- bails: i,
835
- label: s,
836
- type: l,
837
- validate: E.value ? se : void 0,
838
- schema: ze ? t : void 0
839
- }), Le = C(() => Q.value[0]);
840
- f && rr({
841
- value: $,
842
- prop: f,
843
- handleChange: de,
844
- shouldValidate: () => d && !Y.pendingReset
845
- });
846
- const qe = (a, p = !1) => {
847
- A.touched = !0, p && D();
848
- };
849
- async function ue(a) {
850
- var p, V;
851
- if (c != null && c.validateSchema) {
852
- const { results: b } = await c.validateSchema(a);
853
- return (p = b[g(w)]) !== null && p !== void 0 ? p : { valid: !0, errors: [] };
854
- }
855
- return E.value ? Pt($.value, E.value, {
856
- name: g(w),
857
- label: g(s),
858
- values: (V = c == null ? void 0 : c.values) !== null && V !== void 0 ? V : {},
859
- bails: i
860
- }) : { valid: !0, errors: [] };
861
- }
862
- const D = Ve(async () => (A.pending = !0, A.validated = !0, ue("validated-only")), (a) => (Y.pendingUnmount[j.id] || (G({ errors: a.errors }), A.pending = !1, A.valid = a.valid), a)), R = Ve(async () => ue("silent"), (a) => (A.valid = a.valid, a));
863
- function se(a) {
864
- return (a == null ? void 0 : a.mode) === "silent" ? R() : D();
865
- }
866
- function de(a, p = !0) {
867
- const V = Pe(a);
868
- Z(V, p);
869
- }
870
- Ye(() => {
871
- if (o)
872
- return D();
873
- (!c || !c.validateSchema) && R();
874
- });
875
- function We(a) {
876
- A.touched = a;
877
- }
878
- function ce(a) {
879
- var p;
880
- const V = a && "value" in a ? a.value : $e.value;
881
- G({
882
- value: T(V),
883
- initialValue: T(V),
884
- touched: (p = a == null ? void 0 : a.touched) !== null && p !== void 0 ? p : !1,
885
- errors: (a == null ? void 0 : a.errors) || []
886
- }), A.pending = !1, A.validated = !1, R();
887
- }
888
- const fe = K();
889
- function Z(a, p = !0) {
890
- $.value = fe && f ? wt(a, fe.props.modelModifiers) : a, (p ? D : R)();
891
- }
892
- function Je(a) {
893
- G({ errors: Array.isArray(a) ? a : [a] });
894
- }
895
- const Ke = C({
896
- get() {
897
- return $.value;
898
- },
899
- set(a) {
900
- Z(a, d);
901
- }
902
- }), j = {
903
- id: H,
904
- name: w,
905
- label: s,
906
- value: Ke,
907
- meta: A,
908
- errors: Q,
909
- errorMessage: Le,
910
- type: l,
911
- checkedValue: u,
912
- uncheckedValue: h,
913
- bails: i,
914
- keepValueOnUnmount: _,
915
- resetField: ce,
916
- handleReset: () => ce(),
917
- validate: se,
918
- handleChange: de,
919
- handleBlur: qe,
920
- setState: G,
921
- setTouched: We,
922
- setErrors: Je,
923
- setValue: Z
924
- };
925
- if (Xe(ht, j), ie(t) && typeof v(t) != "function" && U(t, (a, p) => {
926
- k(a, p) || (A.validated ? D() : R());
927
- }, {
928
- deep: !0
929
- }), process.env.NODE_ENV !== "production" && (j._vm = K(), U(() => Object.assign(Object.assign({ errors: Q.value }, A), { value: $.value }), oe, {
930
- deep: !0
931
- }), c || Kt(j)), !c)
932
- return j;
933
- const Ge = C(() => {
934
- const a = E.value;
935
- return !a || I(a) || ne(a) || q(a) || Array.isArray(a) ? {} : Object.keys(a).reduce((p, V) => {
936
- const b = Nt(a[V]).map((L) => L.__locatorRef).reduce((L, M) => {
937
- const F = z(c.values, M) || c.values[M];
938
- return F !== void 0 && (L[M] = F), L;
939
- }, {});
940
- return Object.assign(p, b), p;
941
- }, {});
942
- });
943
- return U(Ge, (a, p) => {
944
- if (!Object.keys(a).length)
945
- return;
946
- !k(a, p) && (A.validated ? D() : R());
947
- }), He(() => {
948
- var a;
949
- const p = (a = g(j.keepValueOnUnmount)) !== null && a !== void 0 ? a : g(c.keepValuesOnUnmount), V = g(w);
950
- if (p || !c || Y.pendingUnmount[j.id]) {
951
- c == null || c.removePathState(V, H);
952
- return;
953
- }
954
- Y.pendingUnmount[j.id] = !0;
955
- const b = c.getPathState(V);
956
- if (Array.isArray(b == null ? void 0 : b.id) && (b != null && b.multiple) ? b != null && b.id.includes(j.id) : (b == null ? void 0 : b.id) === j.id) {
957
- if (b != null && b.multiple && Array.isArray(b.value)) {
958
- const M = b.value.findIndex((F) => k(F, g(j.checkedValue)));
959
- if (M > -1) {
960
- const F = [...b.value];
961
- F.splice(M, 1), c.setFieldValue(V, F);
962
- }
963
- Array.isArray(b.id) && b.id.splice(b.id.indexOf(j.id), 1);
964
- } else
965
- c.unsetPathValue(g(w));
966
- c.removePathState(V, H);
967
- }
968
- }), j;
969
- }
970
- function er(e) {
971
- return Object.assign(Object.assign({}, {
972
- initialValue: void 0,
973
- validateOnMount: !1,
974
- bails: !0,
975
- label: void 0,
976
- validateOnValueUpdate: !0,
977
- keepValueOnUnmount: void 0,
978
- syncVModel: !1,
979
- controlled: !0
980
- }), { initialValue: void 0 });
981
- }
982
- function tr(e, t, r) {
983
- const n = Ie(je), o = void 0, i = void 0;
984
- function l(u) {
985
- const s = u.handleChange, d = C(() => {
986
- const m = g(u.value), _ = g(o);
987
- return Array.isArray(m) ? m.findIndex((f) => k(f, _)) >= 0 : k(_, m);
988
- });
989
- function h(m, _ = !0) {
990
- var f, S;
991
- if (d.value === ((f = m == null ? void 0 : m.target) === null || f === void 0 ? void 0 : f.checked)) {
992
- _ && u.validate();
993
- return;
994
- }
995
- const N = g(e), c = n == null ? void 0 : n.getPathState(N), w = Pe(m);
996
- let E = (S = g(o)) !== null && S !== void 0 ? S : w;
997
- n && (c != null && c.multiple) && c.type === "checkbox" && (E = _t(z(n.values, N) || [], E, void 0)), s(E, _);
998
- }
999
- return Object.assign(Object.assign({}, u), {
1000
- checked: d,
1001
- checkedValue: o,
1002
- uncheckedValue: i,
1003
- handleChange: h
1004
- });
1005
- }
1006
- return l(Be(e, t));
1007
- }
1008
- function rr({ prop: e, value: t, handleChange: r, shouldValidate: n }) {
1009
- const o = K();
1010
- if (!o || !e) {
1011
- process.env.NODE_ENV !== "production" && console.warn("Failed to setup model events because `useField` was not called in setup.");
1012
- return;
1013
- }
1014
- const i = typeof e == "string" ? e : "modelValue", l = `update:${i}`;
1015
- i in o.props && (U(t, (u) => {
1016
- k(u, we(o, i)) || o.emit(l, u);
1017
- }), U(() => we(o, i), (u) => {
1018
- if (u === he && t.value === void 0)
1019
- return;
1020
- const s = u === he ? void 0 : u;
1021
- k(s, t.value) || r(s, n());
1022
- }));
1023
- }
1024
- function we(e, t) {
1025
- if (e)
1026
- return e.props[t];
1027
- }
1028
- const nr = { class: "w-72" }, or = { class: "relative h-10 w-full min-w-[200px]" }, ir = ["id", "type", "disabled"], lr = ["for"], ar = { class: "my-3" }, ur = ["name", "id"], sr = { key: 0 }, fr = /* @__PURE__ */ rt({
1029
- __name: "EpInput",
1030
- props: {
1031
- name: {},
1032
- id: { default: "0" },
1033
- label: { default: "label" },
1034
- modelValue: { default: "" },
1035
- type: { default: "text" },
1036
- placeholder: { default: "" },
1037
- iconPath: { default: "" },
1038
- iconSize: { default: "32" },
1039
- disabled: { type: Boolean, default: !1 },
1040
- readonly: { type: Boolean, default: !1 }
1041
- },
1042
- emits: ["update:modelValue"],
1043
- setup(e, { emit: t }) {
1044
- const r = e, {
1045
- id: n,
1046
- // name,
1047
- label: o,
1048
- type: i,
1049
- modelValue: l,
1050
- placeholder: u,
1051
- iconPath: s,
1052
- disabled: d,
1053
- readonly: h
1054
- } = nt(r), m = ot(r, "name");
1055
- function _(c) {
1056
- return c ? c.length < 8 ? "this field must contain at least 8 characters" : !0 : "this field is required";
1057
- }
1058
- const { value: f, errorMessage: S, meta: N } = Zt(m, _);
1059
- return (c, w) => (pe(), ve(it, null, [
1060
- me(X(v(N)) + " ", 1),
1061
- P("div", nr, [
1062
- P("div", or, [
1063
- w[1] || (w[1] = P("div", { class: "absolute top-2/4 right-3 grid h-5 w-5 -translate-y-2/4 place-items-center text-neutral-400" }, null, -1)),
1064
- P("input", {
1065
- id: v(n),
1066
- type: v(i),
1067
- class: "peer h-full w-full rounded-[7px] border border-blue-200 border-t-transparent bg-transparent px-3 py-2.5 !pr-9 font-sans text-sm font-normal text-neutral-700 outline outline-0 transition-all placeholder-shown:border placeholder-shown:border-neutral-200 placeholder-shown:border-t-neutral-200 focus:border-2 focus:border-blue-500 focus:border-t-transparent focus:outline-0 disabled:border-0 disabled:bg-neutral-100 disabled:cursor-not-allowed",
1068
- placeholder: " ",
1069
- disabled: v(d)
1070
- }, null, 8, ir),
1071
- P("label", {
1072
- for: v(n),
1073
- class: "before:content[' '] after:content[' '] pointer-events-none absolute left-0 -top-1.5 flex h-full w-full select-none text-[11px] font-normal leading-tight text-neutral-400 transition-all before:pointer-events-none before:mt-[6.5px] before:mr-1 before:box-border before:block before:h-1.5 before:w-2.5 before:rounded-tl-md before:border-t before:border-l before:border-blue-200 before:transition-all after:pointer-events-none after:mt-[6.5px] after:ml-1 after:box-border after:block after:h-1.5 after:w-2.5 after:flex-grow after:rounded-tr-md after:border-t after:border-r after:border-blue-200 after:transition-all peer-placeholder-shown:text-sm peer-placeholder-shown:leading-[3.75] peer-placeholder-shown:text-neutral-700 peer-placeholder-shown:before:border-transparent peer-placeholder-shown:after:border-transparent peer-focus:text-[11px] peer-focus:leading-tight peer-focus:text-blue-500 peer-focus:before:border-t-2 peer-focus:before:border-l-2 peer-focus:before:border-blue-500 peer-focus:after:border-t-2 peer-focus:after:border-r-2 peer-focus:after:border-blue-500 peer-disabled:text-transparent peer-disabled:before:border-transparent peer-disabled:after:border-transparent peer-disabled:peer-placeholder-shown:text-neutral-500"
1074
- }, X(v(o)), 9, lr),
1075
- lt(dt, { iconPath: v(ct) }, null, 8, ["iconPath"])
1076
- ])
1077
- ]),
1078
- P("div", ar, [
1079
- me(X(m.value) + " ", 1),
1080
- at(P("input", {
1081
- type: "text",
1082
- "onUpdate:modelValue": w[0] || (w[0] = (E) => ie(f) ? f.value = E : null),
1083
- name: m.value,
1084
- id: m.value
1085
- }, null, 8, ur), [
1086
- [st, v(f)]
1087
- ]),
1088
- v(S) ? (pe(), ve("div", sr, X(v(S)), 1)) : ut("", !0)
1089
- ])
1090
- ], 64));
1091
- }
1092
- });
1093
- export {
1094
- fr as default
1095
- };