@kiva/kv-components 4.8.6 → 5.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (999) hide show
  1. package/build/copyFlags.js +11 -0
  2. package/dist/_virtual/_plugin-vue_export-helper.js +9 -0
  3. package/dist/data/ne_110m_admin_0_countries.json.js +9 -0
  4. package/dist/index.js +181 -0
  5. package/dist/node_modules/aria-hidden/dist/es2015/index.js +52 -0
  6. package/dist/node_modules/embla-carousel/esm/embla-carousel.esm.js +1204 -0
  7. package/dist/node_modules/embla-carousel-autoplay/esm/embla-carousel-autoplay.esm.js +126 -0
  8. package/dist/node_modules/embla-carousel-fade/esm/embla-carousel-fade.esm.js +143 -0
  9. package/dist/node_modules/popper.js/dist/esm/popper.js +1037 -0
  10. package/dist/utils/Alea.js +31 -7
  11. package/dist/utils/attrs.js +17 -5
  12. package/dist/utils/carousels.js +96 -6
  13. package/dist/utils/expander.js +34 -7
  14. package/dist/utils/imageUtils.js +20 -7
  15. package/dist/utils/loanCard.js +122 -7
  16. package/dist/utils/loanUtils.js +78 -21
  17. package/dist/utils/mapUtils.js +177 -13
  18. package/dist/utils/printing.js +8 -7
  19. package/dist/utils/scrollLock.js +16 -11
  20. package/dist/utils/themeUtils.js +13 -0
  21. package/dist/utils/throttle.js +8 -5
  22. package/dist/utils/touchEvents.js +16 -9
  23. package/dist/utils/treemap.js +59 -5
  24. package/dist/vue/KvAccordionItem.js +95 -0
  25. package/dist/vue/KvActivityRow.js +36 -0
  26. package/dist/vue/KvBorrowerImage.js +140 -0
  27. package/dist/vue/KvButton.js +184 -0
  28. package/dist/vue/KvCarousel.css +1 -0
  29. package/dist/vue/KvCarousel.js +246 -0
  30. package/dist/vue/KvCartModal.css +1 -0
  31. package/dist/vue/KvCartModal.js +235 -0
  32. package/dist/vue/KvCheckbox.js +134 -0
  33. package/dist/vue/KvChip.js +43 -0
  34. package/dist/vue/KvClassicLoanCard.css +1 -0
  35. package/dist/vue/KvClassicLoanCard.js +464 -0
  36. package/dist/vue/KvCommentsAdd.css +1 -0
  37. package/dist/vue/KvCommentsAdd.js +106 -0
  38. package/dist/vue/KvCommentsContainer.js +80 -0
  39. package/dist/vue/KvCommentsHeartButton.css +1 -0
  40. package/dist/vue/KvCommentsHeartButton.js +62 -0
  41. package/dist/vue/KvCommentsList.js +65 -0
  42. package/dist/vue/KvCommentsListItem.js +221 -0
  43. package/dist/vue/KvCommentsReplyButton.css +1 -0
  44. package/dist/vue/KvCommentsReplyButton.js +42 -0
  45. package/dist/vue/KvContentfulImg.js +196 -0
  46. package/dist/vue/KvCountdownTimer.js +31 -0
  47. package/dist/vue/KvExpandable.js +65 -0
  48. package/dist/vue/KvExpandableQuestion.js +99 -0
  49. package/dist/vue/KvFlag.css +1 -0
  50. package/dist/vue/KvFlag.js +628 -0
  51. package/dist/vue/KvGrid.js +26 -0
  52. package/dist/vue/KvImpactDashboardHeader.css +1 -0
  53. package/dist/vue/KvImpactDashboardHeader.js +31 -0
  54. package/dist/vue/KvInlineActivityCard.css +1 -0
  55. package/dist/vue/KvInlineActivityCard.js +53 -0
  56. package/dist/vue/KvInlineActivityFeed.css +1 -0
  57. package/dist/vue/KvInlineActivityFeed.js +30 -0
  58. package/dist/vue/KvIntroductionLoanCard.css +1 -0
  59. package/dist/vue/KvIntroductionLoanCard.js +387 -0
  60. package/dist/vue/KvLendAmountButton.js +60 -0
  61. package/dist/vue/KvLendCta.css +1 -0
  62. package/dist/vue/KvLendCta.js +490 -0
  63. package/dist/vue/KvLightbox.js +195 -0
  64. package/dist/vue/KvLineGraph.js +74 -0
  65. package/dist/vue/KvLoadingPlaceholder.css +1 -0
  66. package/dist/vue/KvLoadingPlaceholder.js +11 -0
  67. package/dist/vue/KvLoadingSpinner.js +49 -0
  68. package/dist/vue/KvLoanActivities.css +1 -0
  69. package/dist/vue/KvLoanActivities.js +211 -0
  70. package/dist/vue/KvLoanBookmark.js +41 -0
  71. package/dist/vue/KvLoanCallouts.css +1 -0
  72. package/dist/vue/KvLoanCallouts.js +30 -0
  73. package/dist/vue/KvLoanProgressGroup.css +1 -0
  74. package/dist/vue/KvLoanProgressGroup.js +68 -0
  75. package/dist/vue/KvLoanTag.js +88 -0
  76. package/dist/vue/KvLoanTeamPick.js +12 -0
  77. package/dist/vue/KvLoanUse.js +73 -0
  78. package/dist/vue/KvMap.css +1 -0
  79. package/dist/vue/KvMap.js +372 -0
  80. package/dist/vue/KvMaterialIcon.js +34 -0
  81. package/dist/vue/KvPageContainer.js +15 -0
  82. package/dist/vue/KvPagination.js +163 -0
  83. package/dist/vue/KvPieChart.css +1 -0
  84. package/dist/vue/KvPieChart.js +166 -0
  85. package/dist/vue/KvPopper.js +132 -0
  86. package/dist/vue/KvProgressBar.js +118 -0
  87. package/dist/vue/KvRadio.js +130 -0
  88. package/dist/vue/KvSelect.js +92 -0
  89. package/dist/vue/KvSideSheet.js +159 -0
  90. package/dist/vue/KvSwitch.js +88 -0
  91. package/dist/vue/KvTab.js +67 -0
  92. package/dist/vue/KvTabPanel.js +56 -0
  93. package/dist/vue/KvTabs.js +86 -0
  94. package/dist/vue/KvTextInput.js +185 -0
  95. package/dist/vue/KvTextLink.js +93 -0
  96. package/dist/vue/KvThemeProvider.css +1 -0
  97. package/dist/vue/KvThemeProvider.js +65 -0
  98. package/dist/vue/KvToast.js +123 -0
  99. package/dist/vue/KvTooltip.css +1 -0
  100. package/dist/vue/KvTooltip.js +91 -0
  101. package/dist/vue/KvTreeMapChart.css +1 -0
  102. package/dist/vue/KvTreeMapChart.js +177 -0
  103. package/dist/vue/KvUserAvatar.js +99 -0
  104. package/dist/vue/KvVerticalCarousel.js +175 -0
  105. package/dist/vue/KvVotingCard.css +1 -0
  106. package/dist/vue/KvVotingCard.js +131 -0
  107. package/dist/vue/KvVotingCardV2.css +1 -0
  108. package/dist/vue/KvVotingCardV2.js +120 -0
  109. package/dist/vue/KvWideLoanCard.css +1 -0
  110. package/dist/vue/KvWideLoanCard.js +367 -0
  111. package/dist/vue/flags/1x1/ad.svg.js +4 -0
  112. package/dist/vue/flags/1x1/ae.svg.js +4 -0
  113. package/dist/vue/flags/1x1/af.svg.js +4 -0
  114. package/dist/vue/flags/1x1/ag.svg.js +4 -0
  115. package/dist/vue/flags/1x1/ai.svg.js +4 -0
  116. package/dist/vue/flags/1x1/al.svg.js +4 -0
  117. package/dist/vue/flags/1x1/am.svg.js +4 -0
  118. package/dist/vue/flags/1x1/ao.svg.js +4 -0
  119. package/dist/vue/flags/1x1/aq.svg.js +4 -0
  120. package/dist/vue/flags/1x1/ar.svg.js +4 -0
  121. package/dist/vue/flags/1x1/arab.svg.js +4 -0
  122. package/dist/vue/flags/1x1/as.svg.js +4 -0
  123. package/dist/vue/flags/1x1/at.svg.js +4 -0
  124. package/dist/vue/flags/1x1/au.svg.js +4 -0
  125. package/dist/vue/flags/1x1/aw.svg.js +4 -0
  126. package/dist/vue/flags/1x1/ax.svg.js +4 -0
  127. package/dist/vue/flags/1x1/az.svg.js +4 -0
  128. package/dist/vue/flags/1x1/ba.svg.js +4 -0
  129. package/dist/vue/flags/1x1/bb.svg.js +4 -0
  130. package/dist/vue/flags/1x1/bd.svg.js +4 -0
  131. package/dist/vue/flags/1x1/be.svg.js +4 -0
  132. package/dist/vue/flags/1x1/bf.svg.js +4 -0
  133. package/dist/vue/flags/1x1/bg.svg.js +4 -0
  134. package/dist/vue/flags/1x1/bh.svg.js +4 -0
  135. package/dist/vue/flags/1x1/bi.svg.js +4 -0
  136. package/dist/vue/flags/1x1/bj.svg.js +4 -0
  137. package/dist/vue/flags/1x1/bl.svg.js +4 -0
  138. package/dist/vue/flags/1x1/bm.svg.js +4 -0
  139. package/dist/vue/flags/1x1/bn.svg.js +4 -0
  140. package/dist/vue/flags/1x1/bo.svg.js +4 -0
  141. package/dist/vue/flags/1x1/bq.svg.js +4 -0
  142. package/dist/vue/flags/1x1/br.svg.js +4 -0
  143. package/dist/vue/flags/1x1/bs.svg.js +4 -0
  144. package/dist/vue/flags/1x1/bt.svg.js +4 -0
  145. package/dist/vue/flags/1x1/bv.svg.js +4 -0
  146. package/dist/vue/flags/1x1/bw.svg.js +4 -0
  147. package/dist/vue/flags/1x1/by.svg.js +4 -0
  148. package/dist/vue/flags/1x1/bz.svg.js +4 -0
  149. package/dist/vue/flags/1x1/ca.svg.js +4 -0
  150. package/dist/vue/flags/1x1/cc.svg.js +4 -0
  151. package/dist/vue/flags/1x1/cd.svg.js +4 -0
  152. package/dist/vue/flags/1x1/cefta.svg.js +4 -0
  153. package/dist/vue/flags/1x1/cf.svg.js +4 -0
  154. package/dist/vue/flags/1x1/cg.svg.js +4 -0
  155. package/dist/vue/flags/1x1/ch.svg.js +4 -0
  156. package/dist/vue/flags/1x1/ci.svg.js +4 -0
  157. package/dist/vue/flags/1x1/ck.svg.js +4 -0
  158. package/dist/vue/flags/1x1/cl.svg.js +4 -0
  159. package/dist/vue/flags/1x1/cm.svg.js +4 -0
  160. package/dist/vue/flags/1x1/cn.svg.js +4 -0
  161. package/dist/vue/flags/1x1/co.svg.js +4 -0
  162. package/dist/vue/flags/1x1/cp.svg.js +4 -0
  163. package/dist/vue/flags/1x1/cr.svg.js +4 -0
  164. package/dist/vue/flags/1x1/cu.svg.js +4 -0
  165. package/dist/vue/flags/1x1/cv.svg.js +4 -0
  166. package/dist/vue/flags/1x1/cw.svg.js +4 -0
  167. package/dist/vue/flags/1x1/cx.svg.js +4 -0
  168. package/dist/vue/flags/1x1/cy.svg.js +4 -0
  169. package/dist/vue/flags/1x1/cz.svg.js +4 -0
  170. package/dist/vue/flags/1x1/de.svg.js +4 -0
  171. package/dist/vue/flags/1x1/dg.svg.js +4 -0
  172. package/dist/vue/flags/1x1/dj.svg.js +4 -0
  173. package/dist/vue/flags/1x1/dk.svg.js +4 -0
  174. package/dist/vue/flags/1x1/dm.svg.js +4 -0
  175. package/dist/vue/flags/1x1/do.svg.js +4 -0
  176. package/dist/vue/flags/1x1/dz.svg.js +4 -0
  177. package/dist/vue/flags/1x1/eac.svg.js +4 -0
  178. package/dist/vue/flags/1x1/ec.svg.js +4 -0
  179. package/dist/vue/flags/1x1/ee.svg.js +4 -0
  180. package/dist/vue/flags/1x1/eg.svg.js +4 -0
  181. package/dist/vue/flags/1x1/eh.svg.js +4 -0
  182. package/dist/vue/flags/1x1/er.svg.js +4 -0
  183. package/dist/vue/flags/1x1/es-ct.svg.js +4 -0
  184. package/dist/vue/flags/1x1/es-ga.svg.js +4 -0
  185. package/dist/vue/flags/1x1/es-pv.svg.js +4 -0
  186. package/dist/vue/flags/1x1/es.svg.js +4 -0
  187. package/dist/vue/flags/1x1/et.svg.js +4 -0
  188. package/dist/vue/flags/1x1/eu.svg.js +4 -0
  189. package/dist/vue/flags/1x1/fi.svg.js +4 -0
  190. package/dist/vue/flags/1x1/fj.svg.js +4 -0
  191. package/dist/vue/flags/1x1/fk.svg.js +4 -0
  192. package/dist/vue/flags/1x1/fm.svg.js +4 -0
  193. package/dist/vue/flags/1x1/fo.svg.js +4 -0
  194. package/dist/vue/flags/1x1/fr.svg.js +4 -0
  195. package/dist/vue/flags/1x1/ga.svg.js +4 -0
  196. package/dist/vue/flags/1x1/gb-eng.svg.js +4 -0
  197. package/dist/vue/flags/1x1/gb-nir.svg.js +4 -0
  198. package/dist/vue/flags/1x1/gb-sct.svg.js +4 -0
  199. package/dist/vue/flags/1x1/gb-wls.svg.js +4 -0
  200. package/dist/vue/flags/1x1/gb.svg.js +4 -0
  201. package/dist/vue/flags/1x1/gd.svg.js +4 -0
  202. package/dist/vue/flags/1x1/ge.svg.js +4 -0
  203. package/dist/vue/flags/1x1/gf.svg.js +4 -0
  204. package/dist/vue/flags/1x1/gg.svg.js +4 -0
  205. package/dist/vue/flags/1x1/gh.svg.js +4 -0
  206. package/dist/vue/flags/1x1/gi.svg.js +4 -0
  207. package/dist/vue/flags/1x1/gl.svg.js +4 -0
  208. package/dist/vue/flags/1x1/gm.svg.js +4 -0
  209. package/dist/vue/flags/1x1/gn.svg.js +4 -0
  210. package/dist/vue/flags/1x1/gp.svg.js +4 -0
  211. package/dist/vue/flags/1x1/gq.svg.js +4 -0
  212. package/dist/vue/flags/1x1/gr.svg.js +4 -0
  213. package/dist/vue/flags/1x1/gs.svg.js +4 -0
  214. package/dist/vue/flags/1x1/gt.svg.js +4 -0
  215. package/dist/vue/flags/1x1/gu.svg.js +4 -0
  216. package/dist/vue/flags/1x1/gw.svg.js +4 -0
  217. package/dist/vue/flags/1x1/gy.svg.js +4 -0
  218. package/dist/vue/flags/1x1/hk.svg.js +4 -0
  219. package/dist/vue/flags/1x1/hm.svg.js +4 -0
  220. package/dist/vue/flags/1x1/hn.svg.js +4 -0
  221. package/dist/vue/flags/1x1/hr.svg.js +4 -0
  222. package/dist/vue/flags/1x1/ht.svg.js +4 -0
  223. package/dist/vue/flags/1x1/hu.svg.js +4 -0
  224. package/dist/vue/flags/1x1/ic.svg.js +4 -0
  225. package/dist/vue/flags/1x1/id.svg.js +4 -0
  226. package/dist/vue/flags/1x1/ie.svg.js +4 -0
  227. package/dist/vue/flags/1x1/il.svg.js +4 -0
  228. package/dist/vue/flags/1x1/im.svg.js +4 -0
  229. package/dist/vue/flags/1x1/in.svg.js +4 -0
  230. package/dist/vue/flags/1x1/io.svg.js +4 -0
  231. package/dist/vue/flags/1x1/iq.svg.js +4 -0
  232. package/dist/vue/flags/1x1/ir.svg.js +4 -0
  233. package/dist/vue/flags/1x1/is.svg.js +4 -0
  234. package/dist/vue/flags/1x1/it.svg.js +4 -0
  235. package/dist/vue/flags/1x1/je.svg.js +4 -0
  236. package/dist/vue/flags/1x1/jm.svg.js +4 -0
  237. package/dist/vue/flags/1x1/jo.svg.js +4 -0
  238. package/dist/vue/flags/1x1/jp.svg.js +4 -0
  239. package/dist/vue/flags/1x1/ke.svg.js +4 -0
  240. package/dist/vue/flags/1x1/kg.svg.js +4 -0
  241. package/dist/vue/flags/1x1/kh.svg.js +4 -0
  242. package/dist/vue/flags/1x1/ki.svg.js +4 -0
  243. package/dist/vue/flags/1x1/km.svg.js +4 -0
  244. package/dist/vue/flags/1x1/kn.svg.js +4 -0
  245. package/dist/vue/flags/1x1/kp.svg.js +4 -0
  246. package/dist/vue/flags/1x1/kr.svg.js +4 -0
  247. package/dist/vue/flags/1x1/kw.svg.js +4 -0
  248. package/dist/vue/flags/1x1/ky.svg.js +4 -0
  249. package/dist/vue/flags/1x1/kz.svg.js +4 -0
  250. package/dist/vue/flags/1x1/la.svg.js +4 -0
  251. package/dist/vue/flags/1x1/lb.svg.js +4 -0
  252. package/dist/vue/flags/1x1/lc.svg.js +4 -0
  253. package/dist/vue/flags/1x1/li.svg.js +4 -0
  254. package/dist/vue/flags/1x1/lk.svg.js +4 -0
  255. package/dist/vue/flags/1x1/lr.svg.js +4 -0
  256. package/dist/vue/flags/1x1/ls.svg.js +4 -0
  257. package/dist/vue/flags/1x1/lt.svg.js +4 -0
  258. package/dist/vue/flags/1x1/lu.svg.js +4 -0
  259. package/dist/vue/flags/1x1/lv.svg.js +4 -0
  260. package/dist/vue/flags/1x1/ly.svg.js +4 -0
  261. package/dist/vue/flags/1x1/ma.svg.js +4 -0
  262. package/dist/vue/flags/1x1/mc.svg.js +4 -0
  263. package/dist/vue/flags/1x1/md.svg.js +4 -0
  264. package/dist/vue/flags/1x1/me.svg.js +4 -0
  265. package/dist/vue/flags/1x1/mf.svg.js +4 -0
  266. package/dist/vue/flags/1x1/mg.svg.js +4 -0
  267. package/dist/vue/flags/1x1/mh.svg.js +4 -0
  268. package/dist/vue/flags/1x1/mk.svg.js +4 -0
  269. package/dist/vue/flags/1x1/ml.svg.js +4 -0
  270. package/dist/vue/flags/1x1/mm.svg.js +4 -0
  271. package/dist/vue/flags/1x1/mn.svg.js +4 -0
  272. package/dist/vue/flags/1x1/mo.svg.js +4 -0
  273. package/dist/vue/flags/1x1/mp.svg.js +4 -0
  274. package/dist/vue/flags/1x1/mq.svg.js +4 -0
  275. package/dist/vue/flags/1x1/mr.svg.js +4 -0
  276. package/dist/vue/flags/1x1/ms.svg.js +4 -0
  277. package/dist/vue/flags/1x1/mt.svg.js +4 -0
  278. package/dist/vue/flags/1x1/mu.svg.js +4 -0
  279. package/dist/vue/flags/1x1/mv.svg.js +4 -0
  280. package/dist/vue/flags/1x1/mw.svg.js +4 -0
  281. package/dist/vue/flags/1x1/mx.svg.js +4 -0
  282. package/dist/vue/flags/1x1/my.svg.js +4 -0
  283. package/dist/vue/flags/1x1/mz.svg.js +4 -0
  284. package/dist/vue/flags/1x1/na.svg.js +4 -0
  285. package/dist/vue/flags/1x1/nc.svg.js +4 -0
  286. package/dist/vue/flags/1x1/ne.svg.js +4 -0
  287. package/dist/vue/flags/1x1/nf.svg.js +4 -0
  288. package/dist/vue/flags/1x1/ng.svg.js +4 -0
  289. package/dist/vue/flags/1x1/ni.svg.js +4 -0
  290. package/dist/vue/flags/1x1/nl.svg.js +4 -0
  291. package/dist/vue/flags/1x1/no.svg.js +4 -0
  292. package/dist/vue/flags/1x1/np.svg.js +4 -0
  293. package/dist/vue/flags/1x1/nr.svg.js +4 -0
  294. package/dist/vue/flags/1x1/nu.svg.js +4 -0
  295. package/dist/vue/flags/1x1/nz.svg.js +4 -0
  296. package/dist/vue/flags/1x1/om.svg.js +4 -0
  297. package/dist/vue/flags/1x1/pa.svg.js +4 -0
  298. package/dist/vue/flags/1x1/pc.svg.js +4 -0
  299. package/dist/vue/flags/1x1/pe.svg.js +4 -0
  300. package/dist/vue/flags/1x1/pf.svg.js +4 -0
  301. package/dist/vue/flags/1x1/pg.svg.js +4 -0
  302. package/dist/vue/flags/1x1/ph.svg.js +4 -0
  303. package/dist/vue/flags/1x1/pk.svg.js +4 -0
  304. package/dist/vue/flags/1x1/pl.svg.js +4 -0
  305. package/dist/vue/flags/1x1/pm.svg.js +4 -0
  306. package/dist/vue/flags/1x1/pn.svg.js +4 -0
  307. package/dist/vue/flags/1x1/pr.svg.js +4 -0
  308. package/dist/vue/flags/1x1/ps.svg.js +4 -0
  309. package/dist/vue/flags/1x1/pt.svg.js +4 -0
  310. package/dist/vue/flags/1x1/pw.svg.js +4 -0
  311. package/dist/vue/flags/1x1/py.svg.js +4 -0
  312. package/dist/vue/flags/1x1/qa.svg.js +4 -0
  313. package/dist/vue/flags/1x1/re.svg.js +4 -0
  314. package/dist/vue/flags/1x1/ro.svg.js +4 -0
  315. package/dist/vue/flags/1x1/rs.svg.js +4 -0
  316. package/dist/vue/flags/1x1/ru.svg.js +4 -0
  317. package/dist/vue/flags/1x1/rw.svg.js +4 -0
  318. package/dist/vue/flags/1x1/sa.svg.js +4 -0
  319. package/dist/vue/flags/1x1/sb.svg.js +4 -0
  320. package/dist/vue/flags/1x1/sc.svg.js +4 -0
  321. package/dist/vue/flags/1x1/sd.svg.js +4 -0
  322. package/dist/vue/flags/1x1/se.svg.js +4 -0
  323. package/dist/vue/flags/1x1/sg.svg.js +4 -0
  324. package/dist/vue/flags/1x1/sh-ac.svg.js +4 -0
  325. package/dist/vue/flags/1x1/sh-hl.svg.js +4 -0
  326. package/dist/vue/flags/1x1/sh-ta.svg.js +4 -0
  327. package/dist/vue/flags/1x1/sh.svg.js +4 -0
  328. package/dist/vue/flags/1x1/si.svg.js +4 -0
  329. package/dist/vue/flags/1x1/sj.svg.js +4 -0
  330. package/dist/vue/flags/1x1/sk.svg.js +4 -0
  331. package/dist/vue/flags/1x1/sl.svg.js +4 -0
  332. package/dist/vue/flags/1x1/sm.svg.js +4 -0
  333. package/dist/vue/flags/1x1/sn.svg.js +4 -0
  334. package/dist/vue/flags/1x1/so.svg.js +4 -0
  335. package/dist/vue/flags/1x1/sr.svg.js +4 -0
  336. package/dist/vue/flags/1x1/ss.svg.js +4 -0
  337. package/dist/vue/flags/1x1/st.svg.js +4 -0
  338. package/dist/vue/flags/1x1/sv.svg.js +4 -0
  339. package/dist/vue/flags/1x1/sx.svg.js +4 -0
  340. package/dist/vue/flags/1x1/sy.svg.js +4 -0
  341. package/dist/vue/flags/1x1/sz.svg.js +4 -0
  342. package/dist/vue/flags/1x1/tc.svg.js +4 -0
  343. package/dist/vue/flags/1x1/td.svg.js +4 -0
  344. package/dist/vue/flags/1x1/tf.svg.js +4 -0
  345. package/dist/vue/flags/1x1/tg.svg.js +4 -0
  346. package/dist/vue/flags/1x1/th.svg.js +4 -0
  347. package/dist/vue/flags/1x1/tj.svg.js +4 -0
  348. package/dist/vue/flags/1x1/tk.svg.js +4 -0
  349. package/dist/vue/flags/1x1/tl.svg.js +4 -0
  350. package/dist/vue/flags/1x1/tm.svg.js +4 -0
  351. package/dist/vue/flags/1x1/tn.svg.js +4 -0
  352. package/dist/vue/flags/1x1/to.svg.js +4 -0
  353. package/dist/vue/flags/1x1/tr.svg.js +4 -0
  354. package/dist/vue/flags/1x1/tt.svg.js +4 -0
  355. package/dist/vue/flags/1x1/tv.svg.js +4 -0
  356. package/dist/vue/flags/1x1/tw.svg.js +4 -0
  357. package/dist/vue/flags/1x1/tz.svg.js +4 -0
  358. package/dist/vue/flags/1x1/ua.svg.js +4 -0
  359. package/dist/vue/flags/1x1/ug.svg.js +4 -0
  360. package/dist/vue/flags/1x1/um.svg.js +4 -0
  361. package/dist/vue/flags/1x1/un.svg.js +4 -0
  362. package/dist/vue/flags/1x1/us.svg.js +4 -0
  363. package/dist/vue/flags/1x1/uy.svg.js +4 -0
  364. package/dist/vue/flags/1x1/uz.svg.js +4 -0
  365. package/dist/vue/flags/1x1/va.svg.js +4 -0
  366. package/dist/vue/flags/1x1/vc.svg.js +4 -0
  367. package/dist/vue/flags/1x1/ve.svg.js +4 -0
  368. package/dist/vue/flags/1x1/vg.svg.js +4 -0
  369. package/dist/vue/flags/1x1/vi.svg.js +4 -0
  370. package/dist/vue/flags/1x1/vn.svg.js +4 -0
  371. package/dist/vue/flags/1x1/vu.svg.js +4 -0
  372. package/dist/vue/flags/1x1/wf.svg.js +4 -0
  373. package/dist/vue/flags/1x1/ws.svg.js +4 -0
  374. package/dist/vue/flags/1x1/xk.svg.js +4 -0
  375. package/dist/vue/flags/1x1/xx.svg.js +4 -0
  376. package/dist/vue/flags/1x1/ye.svg.js +4 -0
  377. package/dist/vue/flags/1x1/yt.svg.js +4 -0
  378. package/dist/vue/flags/1x1/za.svg.js +4 -0
  379. package/dist/vue/flags/1x1/zm.svg.js +4 -0
  380. package/dist/vue/flags/1x1/zw.svg.js +4 -0
  381. package/dist/vue/flags/4x3/ad.svg.js +4 -0
  382. package/dist/vue/flags/4x3/ae.svg.js +4 -0
  383. package/dist/vue/flags/4x3/af.svg.js +4 -0
  384. package/dist/vue/flags/4x3/ag.svg.js +4 -0
  385. package/dist/vue/flags/4x3/ai.svg.js +4 -0
  386. package/dist/vue/flags/4x3/al.svg.js +4 -0
  387. package/dist/vue/flags/4x3/am.svg.js +4 -0
  388. package/dist/vue/flags/4x3/ao.svg.js +4 -0
  389. package/dist/vue/flags/4x3/aq.svg.js +4 -0
  390. package/dist/vue/flags/4x3/ar.svg.js +4 -0
  391. package/dist/vue/flags/4x3/arab.svg.js +4 -0
  392. package/dist/vue/flags/4x3/as.svg.js +4 -0
  393. package/dist/vue/flags/4x3/at.svg.js +4 -0
  394. package/dist/vue/flags/4x3/au.svg.js +4 -0
  395. package/dist/vue/flags/4x3/aw.svg.js +4 -0
  396. package/dist/vue/flags/4x3/ax.svg.js +4 -0
  397. package/dist/vue/flags/4x3/az.svg.js +4 -0
  398. package/dist/vue/flags/4x3/ba.svg.js +4 -0
  399. package/dist/vue/flags/4x3/bb.svg.js +4 -0
  400. package/dist/vue/flags/4x3/bd.svg.js +4 -0
  401. package/dist/vue/flags/4x3/be.svg.js +4 -0
  402. package/dist/vue/flags/4x3/bf.svg.js +4 -0
  403. package/dist/vue/flags/4x3/bg.svg.js +4 -0
  404. package/dist/vue/flags/4x3/bh.svg.js +4 -0
  405. package/dist/vue/flags/4x3/bi.svg.js +4 -0
  406. package/dist/vue/flags/4x3/bj.svg.js +4 -0
  407. package/dist/vue/flags/4x3/bl.svg.js +4 -0
  408. package/dist/vue/flags/4x3/bm.svg.js +4 -0
  409. package/dist/vue/flags/4x3/bn.svg.js +4 -0
  410. package/dist/vue/flags/4x3/bo.svg.js +4 -0
  411. package/dist/vue/flags/4x3/bq.svg.js +4 -0
  412. package/dist/vue/flags/4x3/br.svg.js +4 -0
  413. package/dist/vue/flags/4x3/bs.svg.js +4 -0
  414. package/dist/vue/flags/4x3/bt.svg.js +4 -0
  415. package/dist/vue/flags/4x3/bv.svg.js +4 -0
  416. package/dist/vue/flags/4x3/bw.svg.js +4 -0
  417. package/dist/vue/flags/4x3/by.svg.js +4 -0
  418. package/dist/vue/flags/4x3/bz.svg.js +4 -0
  419. package/dist/vue/flags/4x3/ca.svg.js +4 -0
  420. package/dist/vue/flags/4x3/cc.svg.js +4 -0
  421. package/dist/vue/flags/4x3/cd.svg.js +4 -0
  422. package/dist/vue/flags/4x3/cefta.svg.js +4 -0
  423. package/dist/vue/flags/4x3/cf.svg.js +4 -0
  424. package/dist/vue/flags/4x3/cg.svg.js +4 -0
  425. package/dist/vue/flags/4x3/ch.svg.js +4 -0
  426. package/dist/vue/flags/4x3/ci.svg.js +4 -0
  427. package/dist/vue/flags/4x3/ck.svg.js +4 -0
  428. package/dist/vue/flags/4x3/cl.svg.js +4 -0
  429. package/dist/vue/flags/4x3/cm.svg.js +4 -0
  430. package/dist/vue/flags/4x3/cn.svg.js +4 -0
  431. package/dist/vue/flags/4x3/co.svg.js +4 -0
  432. package/dist/vue/flags/4x3/cp.svg.js +4 -0
  433. package/dist/vue/flags/4x3/cr.svg.js +4 -0
  434. package/dist/vue/flags/4x3/cu.svg.js +4 -0
  435. package/dist/vue/flags/4x3/cv.svg.js +4 -0
  436. package/dist/vue/flags/4x3/cw.svg.js +4 -0
  437. package/dist/vue/flags/4x3/cx.svg.js +4 -0
  438. package/dist/vue/flags/4x3/cy.svg.js +4 -0
  439. package/dist/vue/flags/4x3/cz.svg.js +4 -0
  440. package/dist/vue/flags/4x3/de.svg.js +4 -0
  441. package/dist/vue/flags/4x3/dg.svg.js +4 -0
  442. package/dist/vue/flags/4x3/dj.svg.js +4 -0
  443. package/dist/vue/flags/4x3/dk.svg.js +4 -0
  444. package/dist/vue/flags/4x3/dm.svg.js +4 -0
  445. package/dist/vue/flags/4x3/do.svg.js +4 -0
  446. package/dist/vue/flags/4x3/dz.svg.js +4 -0
  447. package/dist/vue/flags/4x3/eac.svg.js +4 -0
  448. package/dist/vue/flags/4x3/ec.svg.js +4 -0
  449. package/dist/vue/flags/4x3/ee.svg.js +4 -0
  450. package/dist/vue/flags/4x3/eg.svg.js +4 -0
  451. package/dist/vue/flags/4x3/eh.svg.js +4 -0
  452. package/dist/vue/flags/4x3/er.svg.js +4 -0
  453. package/dist/vue/flags/4x3/es-ct.svg.js +4 -0
  454. package/dist/vue/flags/4x3/es-ga.svg.js +4 -0
  455. package/dist/vue/flags/4x3/es-pv.svg.js +4 -0
  456. package/dist/vue/flags/4x3/es.svg.js +4 -0
  457. package/dist/vue/flags/4x3/et.svg.js +4 -0
  458. package/dist/vue/flags/4x3/eu.svg.js +4 -0
  459. package/dist/vue/flags/4x3/fi.svg.js +4 -0
  460. package/dist/vue/flags/4x3/fj.svg.js +4 -0
  461. package/dist/vue/flags/4x3/fk.svg.js +4 -0
  462. package/dist/vue/flags/4x3/fm.svg.js +4 -0
  463. package/dist/vue/flags/4x3/fo.svg.js +4 -0
  464. package/dist/vue/flags/4x3/fr.svg.js +4 -0
  465. package/dist/vue/flags/4x3/ga.svg.js +4 -0
  466. package/dist/vue/flags/4x3/gb-eng.svg.js +4 -0
  467. package/dist/vue/flags/4x3/gb-nir.svg.js +4 -0
  468. package/dist/vue/flags/4x3/gb-sct.svg.js +4 -0
  469. package/dist/vue/flags/4x3/gb-wls.svg.js +4 -0
  470. package/dist/vue/flags/4x3/gb.svg.js +4 -0
  471. package/dist/vue/flags/4x3/gd.svg.js +4 -0
  472. package/dist/vue/flags/4x3/ge.svg.js +4 -0
  473. package/dist/vue/flags/4x3/gf.svg.js +4 -0
  474. package/dist/vue/flags/4x3/gg.svg.js +4 -0
  475. package/dist/vue/flags/4x3/gh.svg.js +4 -0
  476. package/dist/vue/flags/4x3/gi.svg.js +4 -0
  477. package/dist/vue/flags/4x3/gl.svg.js +4 -0
  478. package/dist/vue/flags/4x3/gm.svg.js +4 -0
  479. package/dist/vue/flags/4x3/gn.svg.js +4 -0
  480. package/dist/vue/flags/4x3/gp.svg.js +4 -0
  481. package/dist/vue/flags/4x3/gq.svg.js +4 -0
  482. package/dist/vue/flags/4x3/gr.svg.js +4 -0
  483. package/dist/vue/flags/4x3/gs.svg.js +4 -0
  484. package/dist/vue/flags/4x3/gt.svg.js +4 -0
  485. package/dist/vue/flags/4x3/gu.svg.js +4 -0
  486. package/dist/vue/flags/4x3/gw.svg.js +4 -0
  487. package/dist/vue/flags/4x3/gy.svg.js +4 -0
  488. package/dist/vue/flags/4x3/hk.svg.js +4 -0
  489. package/dist/vue/flags/4x3/hm.svg.js +4 -0
  490. package/dist/vue/flags/4x3/hn.svg.js +4 -0
  491. package/dist/vue/flags/4x3/hr.svg.js +4 -0
  492. package/dist/vue/flags/4x3/ht.svg.js +4 -0
  493. package/dist/vue/flags/4x3/hu.svg.js +4 -0
  494. package/dist/vue/flags/4x3/ic.svg.js +4 -0
  495. package/dist/vue/flags/4x3/id.svg.js +4 -0
  496. package/dist/vue/flags/4x3/ie.svg.js +4 -0
  497. package/dist/vue/flags/4x3/il.svg.js +4 -0
  498. package/dist/vue/flags/4x3/im.svg.js +4 -0
  499. package/dist/vue/flags/4x3/in.svg.js +4 -0
  500. package/dist/vue/flags/4x3/io.svg.js +4 -0
  501. package/dist/vue/flags/4x3/iq.svg.js +4 -0
  502. package/dist/vue/flags/4x3/ir.svg.js +4 -0
  503. package/dist/vue/flags/4x3/is.svg.js +4 -0
  504. package/dist/vue/flags/4x3/it.svg.js +4 -0
  505. package/dist/vue/flags/4x3/je.svg.js +4 -0
  506. package/dist/vue/flags/4x3/jm.svg.js +4 -0
  507. package/dist/vue/flags/4x3/jo.svg.js +4 -0
  508. package/dist/vue/flags/4x3/jp.svg.js +4 -0
  509. package/dist/vue/flags/4x3/ke.svg.js +4 -0
  510. package/dist/vue/flags/4x3/kg.svg.js +4 -0
  511. package/dist/vue/flags/4x3/kh.svg.js +4 -0
  512. package/dist/vue/flags/4x3/ki.svg.js +4 -0
  513. package/dist/vue/flags/4x3/km.svg.js +4 -0
  514. package/dist/vue/flags/4x3/kn.svg.js +4 -0
  515. package/dist/vue/flags/4x3/kp.svg.js +4 -0
  516. package/dist/vue/flags/4x3/kr.svg.js +4 -0
  517. package/dist/vue/flags/4x3/kw.svg.js +4 -0
  518. package/dist/vue/flags/4x3/ky.svg.js +4 -0
  519. package/dist/vue/flags/4x3/kz.svg.js +4 -0
  520. package/dist/vue/flags/4x3/la.svg.js +4 -0
  521. package/dist/vue/flags/4x3/lb.svg.js +4 -0
  522. package/dist/vue/flags/4x3/lc.svg.js +4 -0
  523. package/dist/vue/flags/4x3/li.svg.js +4 -0
  524. package/dist/vue/flags/4x3/lk.svg.js +4 -0
  525. package/dist/vue/flags/4x3/lr.svg.js +4 -0
  526. package/dist/vue/flags/4x3/ls.svg.js +4 -0
  527. package/dist/vue/flags/4x3/lt.svg.js +4 -0
  528. package/dist/vue/flags/4x3/lu.svg.js +4 -0
  529. package/dist/vue/flags/4x3/lv.svg.js +4 -0
  530. package/dist/vue/flags/4x3/ly.svg.js +4 -0
  531. package/dist/vue/flags/4x3/ma.svg.js +4 -0
  532. package/dist/vue/flags/4x3/mc.svg.js +4 -0
  533. package/dist/vue/flags/4x3/md.svg.js +4 -0
  534. package/dist/vue/flags/4x3/me.svg.js +4 -0
  535. package/dist/vue/flags/4x3/mf.svg.js +4 -0
  536. package/dist/vue/flags/4x3/mg.svg.js +4 -0
  537. package/dist/vue/flags/4x3/mh.svg.js +4 -0
  538. package/dist/vue/flags/4x3/mk.svg.js +4 -0
  539. package/dist/vue/flags/4x3/ml.svg.js +4 -0
  540. package/dist/vue/flags/4x3/mm.svg.js +4 -0
  541. package/dist/vue/flags/4x3/mn.svg.js +4 -0
  542. package/dist/vue/flags/4x3/mo.svg.js +4 -0
  543. package/dist/vue/flags/4x3/mp.svg.js +4 -0
  544. package/dist/vue/flags/4x3/mq.svg.js +4 -0
  545. package/dist/vue/flags/4x3/mr.svg.js +4 -0
  546. package/dist/vue/flags/4x3/ms.svg.js +4 -0
  547. package/dist/vue/flags/4x3/mt.svg.js +4 -0
  548. package/dist/vue/flags/4x3/mu.svg.js +4 -0
  549. package/dist/vue/flags/4x3/mv.svg.js +4 -0
  550. package/dist/vue/flags/4x3/mw.svg.js +4 -0
  551. package/dist/vue/flags/4x3/mx.svg.js +4 -0
  552. package/dist/vue/flags/4x3/my.svg.js +4 -0
  553. package/dist/vue/flags/4x3/mz.svg.js +4 -0
  554. package/dist/vue/flags/4x3/na.svg.js +4 -0
  555. package/dist/vue/flags/4x3/nc.svg.js +4 -0
  556. package/dist/vue/flags/4x3/ne.svg.js +4 -0
  557. package/dist/vue/flags/4x3/nf.svg.js +4 -0
  558. package/dist/vue/flags/4x3/ng.svg.js +4 -0
  559. package/dist/vue/flags/4x3/ni.svg.js +4 -0
  560. package/dist/vue/flags/4x3/nl.svg.js +4 -0
  561. package/dist/vue/flags/4x3/no.svg.js +4 -0
  562. package/dist/vue/flags/4x3/np.svg.js +4 -0
  563. package/dist/vue/flags/4x3/nr.svg.js +4 -0
  564. package/dist/vue/flags/4x3/nu.svg.js +4 -0
  565. package/dist/vue/flags/4x3/nz.svg.js +4 -0
  566. package/dist/vue/flags/4x3/om.svg.js +4 -0
  567. package/dist/vue/flags/4x3/pa.svg.js +4 -0
  568. package/dist/vue/flags/4x3/pc.svg.js +4 -0
  569. package/dist/vue/flags/4x3/pe.svg.js +4 -0
  570. package/dist/vue/flags/4x3/pf.svg.js +4 -0
  571. package/dist/vue/flags/4x3/pg.svg.js +4 -0
  572. package/dist/vue/flags/4x3/ph.svg.js +4 -0
  573. package/dist/vue/flags/4x3/pk.svg.js +4 -0
  574. package/dist/vue/flags/4x3/pl.svg.js +4 -0
  575. package/dist/vue/flags/4x3/pm.svg.js +4 -0
  576. package/dist/vue/flags/4x3/pn.svg.js +4 -0
  577. package/dist/vue/flags/4x3/pr.svg.js +4 -0
  578. package/dist/vue/flags/4x3/ps.svg.js +4 -0
  579. package/dist/vue/flags/4x3/pt.svg.js +4 -0
  580. package/dist/vue/flags/4x3/pw.svg.js +4 -0
  581. package/dist/vue/flags/4x3/py.svg.js +4 -0
  582. package/dist/vue/flags/4x3/qa.svg.js +4 -0
  583. package/dist/vue/flags/4x3/re.svg.js +4 -0
  584. package/dist/vue/flags/4x3/ro.svg.js +4 -0
  585. package/dist/vue/flags/4x3/rs.svg.js +4 -0
  586. package/dist/vue/flags/4x3/ru.svg.js +4 -0
  587. package/dist/vue/flags/4x3/rw.svg.js +4 -0
  588. package/dist/vue/flags/4x3/sa.svg.js +4 -0
  589. package/dist/vue/flags/4x3/sb.svg.js +4 -0
  590. package/dist/vue/flags/4x3/sc.svg.js +4 -0
  591. package/dist/vue/flags/4x3/sd.svg.js +4 -0
  592. package/dist/vue/flags/4x3/se.svg.js +4 -0
  593. package/dist/vue/flags/4x3/sg.svg.js +4 -0
  594. package/dist/vue/flags/4x3/sh-ac.svg.js +4 -0
  595. package/dist/vue/flags/4x3/sh-hl.svg.js +4 -0
  596. package/dist/vue/flags/4x3/sh-ta.svg.js +4 -0
  597. package/dist/vue/flags/4x3/sh.svg.js +4 -0
  598. package/dist/vue/flags/4x3/si.svg.js +4 -0
  599. package/dist/vue/flags/4x3/sj.svg.js +4 -0
  600. package/dist/vue/flags/4x3/sk.svg.js +4 -0
  601. package/dist/vue/flags/4x3/sl.svg.js +4 -0
  602. package/dist/vue/flags/4x3/sm.svg.js +4 -0
  603. package/dist/vue/flags/4x3/sn.svg.js +4 -0
  604. package/dist/vue/flags/4x3/so.svg.js +4 -0
  605. package/dist/vue/flags/4x3/sr.svg.js +4 -0
  606. package/dist/vue/flags/4x3/ss.svg.js +4 -0
  607. package/dist/vue/flags/4x3/st.svg.js +4 -0
  608. package/dist/vue/flags/4x3/sv.svg.js +4 -0
  609. package/dist/vue/flags/4x3/sx.svg.js +4 -0
  610. package/dist/vue/flags/4x3/sy.svg.js +4 -0
  611. package/dist/vue/flags/4x3/sz.svg.js +4 -0
  612. package/dist/vue/flags/4x3/tc.svg.js +4 -0
  613. package/dist/vue/flags/4x3/td.svg.js +4 -0
  614. package/dist/vue/flags/4x3/tf.svg.js +4 -0
  615. package/dist/vue/flags/4x3/tg.svg.js +4 -0
  616. package/dist/vue/flags/4x3/th.svg.js +4 -0
  617. package/dist/vue/flags/4x3/tj.svg.js +4 -0
  618. package/dist/vue/flags/4x3/tk.svg.js +4 -0
  619. package/dist/vue/flags/4x3/tl.svg.js +4 -0
  620. package/dist/vue/flags/4x3/tm.svg.js +4 -0
  621. package/dist/vue/flags/4x3/tn.svg.js +4 -0
  622. package/dist/vue/flags/4x3/to.svg.js +4 -0
  623. package/dist/vue/flags/4x3/tr.svg.js +4 -0
  624. package/dist/vue/flags/4x3/tt.svg.js +4 -0
  625. package/dist/vue/flags/4x3/tv.svg.js +4 -0
  626. package/dist/vue/flags/4x3/tw.svg.js +4 -0
  627. package/dist/vue/flags/4x3/tz.svg.js +4 -0
  628. package/dist/vue/flags/4x3/ua.svg.js +4 -0
  629. package/dist/vue/flags/4x3/ug.svg.js +4 -0
  630. package/dist/vue/flags/4x3/um.svg.js +4 -0
  631. package/dist/vue/flags/4x3/un.svg.js +4 -0
  632. package/dist/vue/flags/4x3/us.svg.js +4 -0
  633. package/dist/vue/flags/4x3/uy.svg.js +4 -0
  634. package/dist/vue/flags/4x3/uz.svg.js +4 -0
  635. package/dist/vue/flags/4x3/va.svg.js +4 -0
  636. package/dist/vue/flags/4x3/vc.svg.js +4 -0
  637. package/dist/vue/flags/4x3/ve.svg.js +4 -0
  638. package/dist/vue/flags/4x3/vg.svg.js +4 -0
  639. package/dist/vue/flags/4x3/vi.svg.js +4 -0
  640. package/dist/vue/flags/4x3/vn.svg.js +4 -0
  641. package/dist/vue/flags/4x3/vu.svg.js +4 -0
  642. package/dist/vue/flags/4x3/wf.svg.js +4 -0
  643. package/dist/vue/flags/4x3/ws.svg.js +4 -0
  644. package/dist/vue/flags/4x3/xk.svg.js +4 -0
  645. package/dist/vue/flags/4x3/xx.svg.js +4 -0
  646. package/dist/vue/flags/4x3/ye.svg.js +4 -0
  647. package/dist/vue/flags/4x3/yt.svg.js +4 -0
  648. package/dist/vue/flags/4x3/za.svg.js +4 -0
  649. package/dist/vue/flags/4x3/zm.svg.js +4 -0
  650. package/dist/vue/flags/4x3/zw.svg.js +4 -0
  651. package/package.json +60 -52
  652. package/.eslintrc.cjs +0 -23
  653. package/CHANGELOG.md +0 -3615
  654. package/__mocks__/ResizeObserver.js +0 -13
  655. package/babel.config.cjs +0 -12
  656. package/data/countries-borders.json +0 -1
  657. package/data/ne_110m_admin_0_countries.json +0 -1
  658. package/dist/components/.storybook/main.js +0 -88
  659. package/dist/components/.storybook/package.json +0 -3
  660. package/dist/components/.storybook/preview.js +0 -53
  661. package/dist/components/.storybook/tailwind.css +0 -5
  662. package/dist/components/KvAccordionItem.vue +0 -130
  663. package/dist/components/KvActivityRow.vue +0 -33
  664. package/dist/components/KvBorrowerImage.vue +0 -179
  665. package/dist/components/KvButton.vue +0 -288
  666. package/dist/components/KvCarousel.vue +0 -314
  667. package/dist/components/KvCartModal.vue +0 -365
  668. package/dist/components/KvCheckbox.vue +0 -203
  669. package/dist/components/KvChip.vue +0 -54
  670. package/dist/components/KvClassicLoanCard.vue +0 -527
  671. package/dist/components/KvCommentsAdd.vue +0 -135
  672. package/dist/components/KvCommentsContainer.vue +0 -84
  673. package/dist/components/KvCommentsHeartButton.vue +0 -70
  674. package/dist/components/KvCommentsList.vue +0 -68
  675. package/dist/components/KvCommentsListItem.vue +0 -241
  676. package/dist/components/KvCommentsReplyButton.vue +0 -52
  677. package/dist/components/KvContentfulImg.vue +0 -273
  678. package/dist/components/KvCountdownTimer.vue +0 -59
  679. package/dist/components/KvExpandable.vue +0 -84
  680. package/dist/components/KvExpandableQuestion.vue +0 -120
  681. package/dist/components/KvFlag.vue +0 -120
  682. package/dist/components/KvGrid.vue +0 -28
  683. package/dist/components/KvImpactDashboardHeader.vue +0 -40
  684. package/dist/components/KvInlineActivityCard.vue +0 -55
  685. package/dist/components/KvInlineActivityFeed.vue +0 -38
  686. package/dist/components/KvIntroductionLoanCard.vue +0 -449
  687. package/dist/components/KvLendAmountButton.vue +0 -65
  688. package/dist/components/KvLendCta.vue +0 -589
  689. package/dist/components/KvLightbox.vue +0 -334
  690. package/dist/components/KvLineGraph.vue +0 -128
  691. package/dist/components/KvLoadingPlaceholder.vue +0 -38
  692. package/dist/components/KvLoadingSpinner.vue +0 -81
  693. package/dist/components/KvLoanActivities.vue +0 -268
  694. package/dist/components/KvLoanBookmark.vue +0 -39
  695. package/dist/components/KvLoanCallouts.vue +0 -53
  696. package/dist/components/KvLoanProgressGroup.vue +0 -76
  697. package/dist/components/KvLoanTag.vue +0 -88
  698. package/dist/components/KvLoanTeamPick.vue +0 -44
  699. package/dist/components/KvLoanUse.vue +0 -92
  700. package/dist/components/KvMap.vue +0 -599
  701. package/dist/components/KvMaterialIcon.vue +0 -47
  702. package/dist/components/KvPageContainer.vue +0 -15
  703. package/dist/components/KvPagination.vue +0 -198
  704. package/dist/components/KvPieChart.vue +0 -257
  705. package/dist/components/KvPopper.vue +0 -178
  706. package/dist/components/KvProgressBar.vue +0 -149
  707. package/dist/components/KvRadio.vue +0 -198
  708. package/dist/components/KvSelect.vue +0 -114
  709. package/dist/components/KvSideSheet.vue +0 -196
  710. package/dist/components/KvSwitch.vue +0 -143
  711. package/dist/components/KvTab.vue +0 -90
  712. package/dist/components/KvTabPanel.vue +0 -64
  713. package/dist/components/KvTabs.vue +0 -182
  714. package/dist/components/KvTextInput.vue +0 -250
  715. package/dist/components/KvTextLink.vue +0 -138
  716. package/dist/components/KvThemeProvider.vue +0 -122
  717. package/dist/components/KvToast.vue +0 -221
  718. package/dist/components/KvTooltip.vue +0 -168
  719. package/dist/components/KvTreeMapChart.vue +0 -229
  720. package/dist/components/KvUserAvatar.vue +0 -132
  721. package/dist/components/KvVerticalCarousel.vue +0 -219
  722. package/dist/components/KvVotingCard.vue +0 -160
  723. package/dist/components/KvVotingCardV2.vue +0 -154
  724. package/dist/components/KvWideLoanCard.vue +0 -433
  725. package/dist/components/stories/Forms.stories.js +0 -62
  726. package/dist/components/stories/KvAccordionItem.stories.js +0 -24
  727. package/dist/components/stories/KvActivityRow.stories.js +0 -27
  728. package/dist/components/stories/KvBorrowerImage.stories.js +0 -62
  729. package/dist/components/stories/KvButton.stories.js +0 -142
  730. package/dist/components/stories/KvCarousel.stories.js +0 -489
  731. package/dist/components/stories/KvCartModal.stories.js +0 -51
  732. package/dist/components/stories/KvCheckbox.stories.js +0 -163
  733. package/dist/components/stories/KvChip.stories.js +0 -43
  734. package/dist/components/stories/KvClassicLoanCard.stories.js +0 -458
  735. package/dist/components/stories/KvCommentsAdd.stories.js +0 -32
  736. package/dist/components/stories/KvCommentsContainer.stories.js +0 -42
  737. package/dist/components/stories/KvCommentsHeartButton.stories.js +0 -25
  738. package/dist/components/stories/KvCommentsList.stories.js +0 -39
  739. package/dist/components/stories/KvCommentsListItem.stories.js +0 -45
  740. package/dist/components/stories/KvCommentsReplyButton.stories.js +0 -21
  741. package/dist/components/stories/KvContentfulImg.stories.js +0 -173
  742. package/dist/components/stories/KvCountdownTimer.stories.js +0 -31
  743. package/dist/components/stories/KvExpandableQuestion.stories.js +0 -129
  744. package/dist/components/stories/KvFlag.stories.js +0 -38
  745. package/dist/components/stories/KvGrid.stories.js +0 -97
  746. package/dist/components/stories/KvImpactDashboardHeader.stories.js +0 -22
  747. package/dist/components/stories/KvInlineActivityCard.stories.js +0 -69
  748. package/dist/components/stories/KvInlineActivityFeed.stories.js +0 -76
  749. package/dist/components/stories/KvIntroductionLoanCard.stories.js +0 -204
  750. package/dist/components/stories/KvLendAmountButton.stories.js +0 -31
  751. package/dist/components/stories/KvLendCta.stories.js +0 -332
  752. package/dist/components/stories/KvLightbox.stories.js +0 -308
  753. package/dist/components/stories/KvLineGraph.stories.js +0 -53
  754. package/dist/components/stories/KvLoadingPlaceholder.stories.js +0 -17
  755. package/dist/components/stories/KvLoadingSpinner.stories.js +0 -50
  756. package/dist/components/stories/KvLoanActivities.stories.js +0 -103
  757. package/dist/components/stories/KvLoanBookmark.stories.js +0 -23
  758. package/dist/components/stories/KvLoanCallouts.stories.js +0 -23
  759. package/dist/components/stories/KvLoanProgressGroup.stories.js +0 -29
  760. package/dist/components/stories/KvLoanTag.stories.js +0 -62
  761. package/dist/components/stories/KvLoanTeamPick.stories.js +0 -20
  762. package/dist/components/stories/KvLoanUse.stories.js +0 -54
  763. package/dist/components/stories/KvMap.stories.js +0 -108
  764. package/dist/components/stories/KvMaterialIcon.stories.js +0 -210
  765. package/dist/components/stories/KvPageContainer.stories.js +0 -50
  766. package/dist/components/stories/KvPagination.stories.js +0 -66
  767. package/dist/components/stories/KvPieChart.stories.js +0 -47
  768. package/dist/components/stories/KvProgressBar.stories.js +0 -48
  769. package/dist/components/stories/KvRadio.stories.js +0 -140
  770. package/dist/components/stories/KvSelect.stories.js +0 -125
  771. package/dist/components/stories/KvSideSheet.stories.js +0 -68
  772. package/dist/components/stories/KvSwitch.stories.js +0 -66
  773. package/dist/components/stories/KvTabs.stories.js +0 -106
  774. package/dist/components/stories/KvTextInput.stories.js +0 -194
  775. package/dist/components/stories/KvTextLink.stories.js +0 -51
  776. package/dist/components/stories/KvThemeProvider.stories.js +0 -212
  777. package/dist/components/stories/KvToast.stories.js +0 -111
  778. package/dist/components/stories/KvTooltip.stories.js +0 -26
  779. package/dist/components/stories/KvTreeMapChart.stories.js +0 -42
  780. package/dist/components/stories/KvUserAvatar.stories.js +0 -47
  781. package/dist/components/stories/KvVerticalCarousel.stories.js +0 -294
  782. package/dist/components/stories/KvVotingCard.stories.js +0 -33
  783. package/dist/components/stories/KvVotingCardV2.stories.js +0 -89
  784. package/dist/components/stories/KvWideLoanCard.stories.js +0 -278
  785. package/dist/components/stories/StyleguidePrimitives.stories.js +0 -498
  786. package/dist/components/stories/StyleguideProse.stories.js +0 -271
  787. package/dist/data/countries-borders.json +0 -1
  788. package/dist/data/ne_110m_admin_0_countries.json +0 -1
  789. package/dist/utils/Alea.cjs +0 -87
  790. package/dist/utils/attrs.cjs +0 -50
  791. package/dist/utils/carousels.cjs +0 -220
  792. package/dist/utils/chunk-3HK4G4NT.js +0 -27
  793. package/dist/utils/chunk-55HF2ORX.js +0 -201
  794. package/dist/utils/chunk-AY3PR5S4.js +0 -54
  795. package/dist/utils/chunk-B5J5WLAH.js +0 -18
  796. package/dist/utils/chunk-GPSH6OPA.js +0 -64
  797. package/dist/utils/chunk-HIY5IW65.js +0 -28
  798. package/dist/utils/chunk-HV3AUBFT.js +0 -15
  799. package/dist/utils/chunk-MSMZIN54.js +0 -110
  800. package/dist/utils/chunk-OXJCCNNW.js +0 -30
  801. package/dist/utils/chunk-S3MABILA.js +0 -22
  802. package/dist/utils/chunk-TR3NWLTZ.js +0 -184
  803. package/dist/utils/chunk-VIGEMAKO.js +0 -249
  804. package/dist/utils/chunk-YCNMJ4YV.js +0 -37
  805. package/dist/utils/chunk-YFEC5ODJ.js +0 -129
  806. package/dist/utils/expander.cjs +0 -78
  807. package/dist/utils/imageUtils.cjs +0 -54
  808. package/dist/utils/index.cjs +0 -1154
  809. package/dist/utils/index.js +0 -166
  810. package/dist/utils/loanCard.cjs +0 -222
  811. package/dist/utils/loanUtils.cjs +0 -170
  812. package/dist/utils/mapUtils.cjs +0 -276
  813. package/dist/utils/printing.cjs +0 -42
  814. package/dist/utils/scrollLock.cjs +0 -54
  815. package/dist/utils/throttle.cjs +0 -38
  816. package/dist/utils/touchEvents.cjs +0 -47
  817. package/dist/utils/treemap.cjs +0 -133
  818. package/jest.config.cjs +0 -47
  819. package/postcss.config.cjs +0 -6
  820. package/tailwind.config.cjs +0 -64
  821. package/tests/fixtures/mockCommentsData.js +0 -36
  822. package/tests/fixtures/mockLenderCountries.js +0 -674
  823. package/tests/unit/.eslintrc +0 -5
  824. package/tests/unit/jest-setup.js +0 -5
  825. package/tests/unit/specs/components/KvButton.spec.js +0 -92
  826. package/tests/unit/specs/components/KvCarousel.spec.js +0 -78
  827. package/tests/unit/specs/components/KvCheckbox.spec.js +0 -109
  828. package/tests/unit/specs/components/KvClassicLoanCard.spec.js +0 -201
  829. package/tests/unit/specs/components/KvCommentsAdd.spec.js +0 -108
  830. package/tests/unit/specs/components/KvCommentsContainer.spec.js +0 -40
  831. package/tests/unit/specs/components/KvCommentsHeartButton.spec.js +0 -32
  832. package/tests/unit/specs/components/KvCommentsList.spec.js +0 -83
  833. package/tests/unit/specs/components/KvCommentsListItem.spec.js +0 -120
  834. package/tests/unit/specs/components/KvCommentsReplyButton.spec.js +0 -23
  835. package/tests/unit/specs/components/KvExpandableQuestion.spec.js +0 -55
  836. package/tests/unit/specs/components/KvLendAmountButton.spec.js +0 -36
  837. package/tests/unit/specs/components/KvLightbox.spec.js +0 -14
  838. package/tests/unit/specs/components/KvLineGraph.spec.js +0 -58
  839. package/tests/unit/specs/components/KvLoanProgressGroup.spec.js +0 -50
  840. package/tests/unit/specs/components/KvPagination.spec.js +0 -132
  841. package/tests/unit/specs/components/KvProgressBar.spec.js +0 -11
  842. package/tests/unit/specs/components/KvRadio.spec.js +0 -184
  843. package/tests/unit/specs/components/KvSelect.spec.js +0 -113
  844. package/tests/unit/specs/components/KvSwitch.spec.js +0 -120
  845. package/tests/unit/specs/components/KvTabPanel.spec.js +0 -32
  846. package/tests/unit/specs/components/KvTabs.spec.js +0 -167
  847. package/tests/unit/specs/components/KvTextInput.spec.js +0 -151
  848. package/tests/unit/specs/components/KvTextLink.spec.js +0 -53
  849. package/tests/unit/specs/components/KvToast.spec.js +0 -11
  850. package/tests/unit/specs/components/KvWideLoanCard.spec.js +0 -136
  851. package/tests/unit/specs/utils/imageUtils.spec.js +0 -29
  852. package/tests/unit/specs/utils/loanUtils.spec.js +0 -437
  853. package/tests/unit/specs/utils/mapUtils.spec.js +0 -72
  854. package/tests/unit/specs/utils/treemap.spec.js +0 -248
  855. package/tests/unit/utils/addVueRouter.js +0 -18
  856. package/utils/Alea.js +0 -92
  857. package/utils/attrs.js +0 -62
  858. package/utils/carousels.js +0 -252
  859. package/utils/expander.js +0 -72
  860. package/utils/imageUtils.js +0 -43
  861. package/utils/index.js +0 -14
  862. package/utils/loanCard.js +0 -204
  863. package/utils/loanUtils.js +0 -209
  864. package/utils/mapUtils.js +0 -360
  865. package/utils/printing.js +0 -13
  866. package/utils/scrollLock.js +0 -25
  867. package/utils/themeUtils.cjs +0 -29
  868. package/utils/throttle.js +0 -11
  869. package/utils/touchEvents.js +0 -22
  870. package/utils/treemap.js +0 -138
  871. package/vue/.storybook/main.js +0 -88
  872. package/vue/.storybook/package.json +0 -3
  873. package/vue/.storybook/preview.js +0 -53
  874. package/vue/.storybook/tailwind.css +0 -5
  875. package/vue/KvAccordionItem.vue +0 -130
  876. package/vue/KvActivityRow.vue +0 -33
  877. package/vue/KvBorrowerImage.vue +0 -179
  878. package/vue/KvButton.vue +0 -288
  879. package/vue/KvCarousel.vue +0 -314
  880. package/vue/KvCartModal.vue +0 -365
  881. package/vue/KvCheckbox.vue +0 -203
  882. package/vue/KvChip.vue +0 -54
  883. package/vue/KvClassicLoanCard.vue +0 -527
  884. package/vue/KvCommentsAdd.vue +0 -135
  885. package/vue/KvCommentsContainer.vue +0 -84
  886. package/vue/KvCommentsHeartButton.vue +0 -70
  887. package/vue/KvCommentsList.vue +0 -68
  888. package/vue/KvCommentsListItem.vue +0 -241
  889. package/vue/KvCommentsReplyButton.vue +0 -52
  890. package/vue/KvContentfulImg.vue +0 -273
  891. package/vue/KvCountdownTimer.vue +0 -59
  892. package/vue/KvExpandable.vue +0 -84
  893. package/vue/KvExpandableQuestion.vue +0 -120
  894. package/vue/KvFlag.vue +0 -120
  895. package/vue/KvGrid.vue +0 -28
  896. package/vue/KvImpactDashboardHeader.vue +0 -40
  897. package/vue/KvInlineActivityCard.vue +0 -55
  898. package/vue/KvInlineActivityFeed.vue +0 -38
  899. package/vue/KvIntroductionLoanCard.vue +0 -449
  900. package/vue/KvLendAmountButton.vue +0 -65
  901. package/vue/KvLendCta.vue +0 -589
  902. package/vue/KvLightbox.vue +0 -334
  903. package/vue/KvLineGraph.vue +0 -128
  904. package/vue/KvLoadingPlaceholder.vue +0 -38
  905. package/vue/KvLoadingSpinner.vue +0 -81
  906. package/vue/KvLoanActivities.vue +0 -268
  907. package/vue/KvLoanBookmark.vue +0 -39
  908. package/vue/KvLoanCallouts.vue +0 -53
  909. package/vue/KvLoanProgressGroup.vue +0 -76
  910. package/vue/KvLoanTag.vue +0 -88
  911. package/vue/KvLoanTeamPick.vue +0 -44
  912. package/vue/KvLoanUse.vue +0 -92
  913. package/vue/KvMap.vue +0 -599
  914. package/vue/KvMaterialIcon.vue +0 -47
  915. package/vue/KvPageContainer.vue +0 -15
  916. package/vue/KvPagination.vue +0 -198
  917. package/vue/KvPieChart.vue +0 -257
  918. package/vue/KvPopper.vue +0 -178
  919. package/vue/KvProgressBar.vue +0 -149
  920. package/vue/KvRadio.vue +0 -198
  921. package/vue/KvSelect.vue +0 -114
  922. package/vue/KvSideSheet.vue +0 -196
  923. package/vue/KvSwitch.vue +0 -143
  924. package/vue/KvTab.vue +0 -90
  925. package/vue/KvTabPanel.vue +0 -64
  926. package/vue/KvTabs.vue +0 -182
  927. package/vue/KvTextInput.vue +0 -250
  928. package/vue/KvTextLink.vue +0 -138
  929. package/vue/KvThemeProvider.vue +0 -122
  930. package/vue/KvToast.vue +0 -221
  931. package/vue/KvTooltip.vue +0 -168
  932. package/vue/KvTreeMapChart.vue +0 -229
  933. package/vue/KvUserAvatar.vue +0 -132
  934. package/vue/KvVerticalCarousel.vue +0 -219
  935. package/vue/KvVotingCard.vue +0 -160
  936. package/vue/KvVotingCardV2.vue +0 -154
  937. package/vue/KvWideLoanCard.vue +0 -433
  938. package/vue/stories/Forms.stories.js +0 -62
  939. package/vue/stories/KvAccordionItem.stories.js +0 -24
  940. package/vue/stories/KvActivityRow.stories.js +0 -27
  941. package/vue/stories/KvBorrowerImage.stories.js +0 -62
  942. package/vue/stories/KvButton.stories.js +0 -142
  943. package/vue/stories/KvCarousel.stories.js +0 -489
  944. package/vue/stories/KvCartModal.stories.js +0 -51
  945. package/vue/stories/KvCheckbox.stories.js +0 -163
  946. package/vue/stories/KvChip.stories.js +0 -43
  947. package/vue/stories/KvClassicLoanCard.stories.js +0 -458
  948. package/vue/stories/KvCommentsAdd.stories.js +0 -32
  949. package/vue/stories/KvCommentsContainer.stories.js +0 -42
  950. package/vue/stories/KvCommentsHeartButton.stories.js +0 -25
  951. package/vue/stories/KvCommentsList.stories.js +0 -39
  952. package/vue/stories/KvCommentsListItem.stories.js +0 -45
  953. package/vue/stories/KvCommentsReplyButton.stories.js +0 -21
  954. package/vue/stories/KvContentfulImg.stories.js +0 -173
  955. package/vue/stories/KvCountdownTimer.stories.js +0 -31
  956. package/vue/stories/KvExpandableQuestion.stories.js +0 -129
  957. package/vue/stories/KvFlag.stories.js +0 -38
  958. package/vue/stories/KvGrid.stories.js +0 -97
  959. package/vue/stories/KvImpactDashboardHeader.stories.js +0 -22
  960. package/vue/stories/KvInlineActivityCard.stories.js +0 -69
  961. package/vue/stories/KvInlineActivityFeed.stories.js +0 -76
  962. package/vue/stories/KvIntroductionLoanCard.stories.js +0 -204
  963. package/vue/stories/KvLendAmountButton.stories.js +0 -31
  964. package/vue/stories/KvLendCta.stories.js +0 -332
  965. package/vue/stories/KvLightbox.stories.js +0 -308
  966. package/vue/stories/KvLineGraph.stories.js +0 -53
  967. package/vue/stories/KvLoadingPlaceholder.stories.js +0 -17
  968. package/vue/stories/KvLoadingSpinner.stories.js +0 -50
  969. package/vue/stories/KvLoanActivities.stories.js +0 -103
  970. package/vue/stories/KvLoanBookmark.stories.js +0 -23
  971. package/vue/stories/KvLoanCallouts.stories.js +0 -23
  972. package/vue/stories/KvLoanProgressGroup.stories.js +0 -29
  973. package/vue/stories/KvLoanTag.stories.js +0 -62
  974. package/vue/stories/KvLoanTeamPick.stories.js +0 -20
  975. package/vue/stories/KvLoanUse.stories.js +0 -54
  976. package/vue/stories/KvMap.stories.js +0 -108
  977. package/vue/stories/KvMaterialIcon.stories.js +0 -210
  978. package/vue/stories/KvPageContainer.stories.js +0 -50
  979. package/vue/stories/KvPagination.stories.js +0 -66
  980. package/vue/stories/KvPieChart.stories.js +0 -47
  981. package/vue/stories/KvProgressBar.stories.js +0 -48
  982. package/vue/stories/KvRadio.stories.js +0 -140
  983. package/vue/stories/KvSelect.stories.js +0 -125
  984. package/vue/stories/KvSideSheet.stories.js +0 -68
  985. package/vue/stories/KvSwitch.stories.js +0 -66
  986. package/vue/stories/KvTabs.stories.js +0 -106
  987. package/vue/stories/KvTextInput.stories.js +0 -194
  988. package/vue/stories/KvTextLink.stories.js +0 -51
  989. package/vue/stories/KvThemeProvider.stories.js +0 -212
  990. package/vue/stories/KvToast.stories.js +0 -111
  991. package/vue/stories/KvTooltip.stories.js +0 -26
  992. package/vue/stories/KvTreeMapChart.stories.js +0 -42
  993. package/vue/stories/KvUserAvatar.stories.js +0 -47
  994. package/vue/stories/KvVerticalCarousel.stories.js +0 -294
  995. package/vue/stories/KvVotingCard.stories.js +0 -33
  996. package/vue/stories/KvVotingCardV2.stories.js +0 -89
  997. package/vue/stories/KvWideLoanCard.stories.js +0 -278
  998. package/vue/stories/StyleguidePrimitives.stories.js +0 -498
  999. package/vue/stories/StyleguideProse.stories.js +0 -271
@@ -0,0 +1,1204 @@
1
+ function Tt(t) {
2
+ return typeof t == "number";
3
+ }
4
+ function Lt(t) {
5
+ return typeof t == "string";
6
+ }
7
+ function gt(t) {
8
+ return typeof t == "boolean";
9
+ }
10
+ function Nt(t) {
11
+ return Object.prototype.toString.call(t) === "[object Object]";
12
+ }
13
+ function P(t) {
14
+ return Math.abs(t);
15
+ }
16
+ function It(t) {
17
+ return Math.sign(t);
18
+ }
19
+ function ft(t, n) {
20
+ return P(t - n);
21
+ }
22
+ function _t(t, n) {
23
+ if (t === 0 || n === 0 || P(t) <= P(n)) return 0;
24
+ const r = ft(P(t), P(n));
25
+ return P(r / t);
26
+ }
27
+ function Jt(t) {
28
+ return Math.round(t * 100) / 100;
29
+ }
30
+ function at(t) {
31
+ return lt(t).map(Number);
32
+ }
33
+ function k(t) {
34
+ return t[pt(t)];
35
+ }
36
+ function pt(t) {
37
+ return Math.max(0, t.length - 1);
38
+ }
39
+ function vt(t, n) {
40
+ return n === pt(t);
41
+ }
42
+ function Vt(t, n = 0) {
43
+ return Array.from(Array(t), (r, s) => n + s);
44
+ }
45
+ function lt(t) {
46
+ return Object.keys(t);
47
+ }
48
+ function zt(t, n) {
49
+ return [t, n].reduce((r, s) => (lt(s).forEach((c) => {
50
+ const o = r[c], e = s[c], f = Nt(o) && Nt(e);
51
+ r[c] = f ? zt(o, e) : e;
52
+ }), r), {});
53
+ }
54
+ function Et(t, n) {
55
+ return typeof n.MouseEvent < "u" && t instanceof n.MouseEvent;
56
+ }
57
+ function Zt(t, n) {
58
+ const r = {
59
+ start: s,
60
+ center: c,
61
+ end: o
62
+ };
63
+ function s() {
64
+ return 0;
65
+ }
66
+ function c(i) {
67
+ return o(i) / 2;
68
+ }
69
+ function o(i) {
70
+ return n - i;
71
+ }
72
+ function e(i, u) {
73
+ return Lt(t) ? r[t](i) : t(n, i, u);
74
+ }
75
+ return {
76
+ measure: e
77
+ };
78
+ }
79
+ function dt() {
80
+ let t = [];
81
+ function n(c, o, e, f = {
82
+ passive: !0
83
+ }) {
84
+ let i;
85
+ if ("addEventListener" in c)
86
+ c.addEventListener(o, e, f), i = () => c.removeEventListener(o, e, f);
87
+ else {
88
+ const u = c;
89
+ u.addListener(e), i = () => u.removeListener(e);
90
+ }
91
+ return t.push(i), s;
92
+ }
93
+ function r() {
94
+ t = t.filter((c) => c());
95
+ }
96
+ const s = {
97
+ add: n,
98
+ clear: r
99
+ };
100
+ return s;
101
+ }
102
+ function Wt(t, n, r, s) {
103
+ const c = dt(), o = 1e3 / 60;
104
+ let e = null, f = 0, i = 0;
105
+ function u() {
106
+ c.add(t, "visibilitychange", () => {
107
+ t.hidden && l();
108
+ });
109
+ }
110
+ function h() {
111
+ b(), c.clear();
112
+ }
113
+ function d(g) {
114
+ if (!i) return;
115
+ e || (e = g, r(), r());
116
+ const a = g - e;
117
+ for (e = g, f += a; f >= o; )
118
+ r(), f -= o;
119
+ const S = f / o;
120
+ s(S), i && (i = n.requestAnimationFrame(d));
121
+ }
122
+ function p() {
123
+ i || (i = n.requestAnimationFrame(d));
124
+ }
125
+ function b() {
126
+ n.cancelAnimationFrame(i), e = null, f = 0, i = 0;
127
+ }
128
+ function l() {
129
+ e = null, f = 0;
130
+ }
131
+ return {
132
+ init: u,
133
+ destroy: h,
134
+ start: p,
135
+ stop: b,
136
+ update: r,
137
+ render: s
138
+ };
139
+ }
140
+ function tn(t, n) {
141
+ const r = n === "rtl", s = t === "y", c = s ? "y" : "x", o = s ? "x" : "y", e = !s && r ? -1 : 1, f = h(), i = d();
142
+ function u(l) {
143
+ const {
144
+ height: m,
145
+ width: g
146
+ } = l;
147
+ return s ? m : g;
148
+ }
149
+ function h() {
150
+ return s ? "top" : r ? "right" : "left";
151
+ }
152
+ function d() {
153
+ return s ? "bottom" : r ? "left" : "right";
154
+ }
155
+ function p(l) {
156
+ return l * e;
157
+ }
158
+ return {
159
+ scroll: c,
160
+ cross: o,
161
+ startEdge: f,
162
+ endEdge: i,
163
+ measureSize: u,
164
+ direction: p
165
+ };
166
+ }
167
+ function tt(t = 0, n = 0) {
168
+ const r = P(t - n);
169
+ function s(u) {
170
+ return u < t;
171
+ }
172
+ function c(u) {
173
+ return u > n;
174
+ }
175
+ function o(u) {
176
+ return s(u) || c(u);
177
+ }
178
+ function e(u) {
179
+ return o(u) ? s(u) ? t : n : u;
180
+ }
181
+ function f(u) {
182
+ return r ? u - r * Math.ceil((u - n) / r) : u;
183
+ }
184
+ return {
185
+ length: r,
186
+ max: n,
187
+ min: t,
188
+ constrain: e,
189
+ reachedAny: o,
190
+ reachedMax: c,
191
+ reachedMin: s,
192
+ removeOffset: f
193
+ };
194
+ }
195
+ function Bt(t, n, r) {
196
+ const {
197
+ constrain: s
198
+ } = tt(0, t), c = t + 1;
199
+ let o = e(n);
200
+ function e(p) {
201
+ return r ? P((c + p) % c) : s(p);
202
+ }
203
+ function f() {
204
+ return o;
205
+ }
206
+ function i(p) {
207
+ return o = e(p), d;
208
+ }
209
+ function u(p) {
210
+ return h().set(f() + p);
211
+ }
212
+ function h() {
213
+ return Bt(t, f(), r);
214
+ }
215
+ const d = {
216
+ get: f,
217
+ set: i,
218
+ add: u,
219
+ clone: h
220
+ };
221
+ return d;
222
+ }
223
+ function nn(t, n, r, s, c, o, e, f, i, u, h, d, p, b, l, m, g, a, S) {
224
+ const {
225
+ cross: x,
226
+ direction: T
227
+ } = t, A = ["INPUT", "SELECT", "TEXTAREA"], I = {
228
+ passive: !1
229
+ }, L = dt(), E = dt(), v = tt(50, 225).constrain(b.measure(20)), C = {
230
+ mouse: 300,
231
+ touch: 400
232
+ }, D = {
233
+ mouse: 500,
234
+ touch: 600
235
+ }, V = l ? 43 : 25;
236
+ let G = !1, H = 0, j = 0, J = !1, Y = !1, U = !1, $ = !1;
237
+ function rt(y) {
238
+ if (!S) return;
239
+ function M(N) {
240
+ (gt(S) || S(y, N)) && it(N);
241
+ }
242
+ const O = n;
243
+ L.add(O, "dragstart", (N) => N.preventDefault(), I).add(O, "touchmove", () => {
244
+ }, I).add(O, "touchend", () => {
245
+ }).add(O, "touchstart", M).add(O, "mousedown", M).add(O, "touchcancel", w).add(O, "contextmenu", w).add(O, "click", K, !0);
246
+ }
247
+ function R() {
248
+ L.clear(), E.clear();
249
+ }
250
+ function nt() {
251
+ const y = $ ? r : n;
252
+ E.add(y, "touchmove", z, I).add(y, "touchend", w).add(y, "mousemove", z, I).add(y, "mouseup", w);
253
+ }
254
+ function et(y) {
255
+ const M = y.nodeName || "";
256
+ return A.includes(M);
257
+ }
258
+ function Q() {
259
+ return (l ? D : C)[$ ? "mouse" : "touch"];
260
+ }
261
+ function st(y, M) {
262
+ const O = d.add(It(y) * -1), N = h.byDistance(y, !l).distance;
263
+ return l || P(y) < v ? N : g && M ? N * 0.5 : h.byIndex(O.get(), 0).distance;
264
+ }
265
+ function it(y) {
266
+ const M = Et(y, s);
267
+ $ = M, U = l && M && !y.buttons && G, G = ft(c.get(), e.get()) >= 2, !(M && y.button !== 0) && (et(y.target) || (J = !0, o.pointerDown(y), u.useFriction(0).useDuration(0), c.set(e), nt(), H = o.readPoint(y), j = o.readPoint(y, x), p.emit("pointerDown")));
268
+ }
269
+ function z(y) {
270
+ if (!Et(y, s) && y.touches.length >= 2) return w(y);
271
+ const O = o.readPoint(y), N = o.readPoint(y, x), q = ft(O, H), X = ft(N, j);
272
+ if (!Y && !$ && (!y.cancelable || (Y = q > X, !Y)))
273
+ return w(y);
274
+ const Z = o.pointerMove(y);
275
+ q > m && (U = !0), u.useFriction(0.3).useDuration(0.75), f.start(), c.add(T(Z)), y.preventDefault();
276
+ }
277
+ function w(y) {
278
+ const O = h.byDistance(0, !1).index !== d.get(), N = o.pointerUp(y) * Q(), q = st(T(N), O), X = _t(N, q), Z = V - 10 * X, _ = a + X / 50;
279
+ Y = !1, J = !1, E.clear(), u.useDuration(Z).useFriction(_), i.distance(q, !l), $ = !1, p.emit("pointerUp");
280
+ }
281
+ function K(y) {
282
+ U && (y.stopPropagation(), y.preventDefault(), U = !1);
283
+ }
284
+ function B() {
285
+ return J;
286
+ }
287
+ return {
288
+ init: rt,
289
+ destroy: R,
290
+ pointerDown: B
291
+ };
292
+ }
293
+ function en(t, n) {
294
+ let s, c;
295
+ function o(d) {
296
+ return d.timeStamp;
297
+ }
298
+ function e(d, p) {
299
+ const l = `client${(p || t.scroll) === "x" ? "X" : "Y"}`;
300
+ return (Et(d, n) ? d : d.touches[0])[l];
301
+ }
302
+ function f(d) {
303
+ return s = d, c = d, e(d);
304
+ }
305
+ function i(d) {
306
+ const p = e(d) - e(c), b = o(d) - o(s) > 170;
307
+ return c = d, b && (s = d), p;
308
+ }
309
+ function u(d) {
310
+ if (!s || !c) return 0;
311
+ const p = e(c) - e(s), b = o(d) - o(s), l = o(d) - o(c) > 170, m = p / b;
312
+ return b && !l && P(m) > 0.1 ? m : 0;
313
+ }
314
+ return {
315
+ pointerDown: f,
316
+ pointerMove: i,
317
+ pointerUp: u,
318
+ readPoint: e
319
+ };
320
+ }
321
+ function on() {
322
+ function t(r) {
323
+ const {
324
+ offsetTop: s,
325
+ offsetLeft: c,
326
+ offsetWidth: o,
327
+ offsetHeight: e
328
+ } = r;
329
+ return {
330
+ top: s,
331
+ right: c + o,
332
+ bottom: s + e,
333
+ left: c,
334
+ width: o,
335
+ height: e
336
+ };
337
+ }
338
+ return {
339
+ measure: t
340
+ };
341
+ }
342
+ function rn(t) {
343
+ function n(s) {
344
+ return t * (s / 100);
345
+ }
346
+ return {
347
+ measure: n
348
+ };
349
+ }
350
+ function sn(t, n, r, s, c, o, e) {
351
+ const f = [t].concat(s);
352
+ let i, u, h = [], d = !1;
353
+ function p(g) {
354
+ return c.measureSize(e.measure(g));
355
+ }
356
+ function b(g) {
357
+ if (!o) return;
358
+ u = p(t), h = s.map(p);
359
+ function a(S) {
360
+ for (const x of S) {
361
+ if (d) return;
362
+ const T = x.target === t, A = s.indexOf(x.target), I = T ? u : h[A], L = p(T ? t : s[A]);
363
+ if (P(L - I) >= 0.5) {
364
+ g.reInit(), n.emit("resize");
365
+ break;
366
+ }
367
+ }
368
+ }
369
+ i = new ResizeObserver((S) => {
370
+ (gt(o) || o(g, S)) && a(S);
371
+ }), r.requestAnimationFrame(() => {
372
+ f.forEach((S) => i.observe(S));
373
+ });
374
+ }
375
+ function l() {
376
+ d = !0, i && i.disconnect();
377
+ }
378
+ return {
379
+ init: b,
380
+ destroy: l
381
+ };
382
+ }
383
+ function cn(t, n, r, s, c, o) {
384
+ let e = 0, f = 0, i = c, u = o, h = t.get(), d = 0;
385
+ function p() {
386
+ const I = s.get() - t.get(), L = !i;
387
+ let E = 0;
388
+ return L ? (e = 0, r.set(s), t.set(s), E = I) : (r.set(t), e += I / i, e *= u, h += e, t.add(e), E = h - d), f = It(E), d = h, A;
389
+ }
390
+ function b() {
391
+ const I = s.get() - n.get();
392
+ return P(I) < 1e-3;
393
+ }
394
+ function l() {
395
+ return i;
396
+ }
397
+ function m() {
398
+ return f;
399
+ }
400
+ function g() {
401
+ return e;
402
+ }
403
+ function a() {
404
+ return x(c);
405
+ }
406
+ function S() {
407
+ return T(o);
408
+ }
409
+ function x(I) {
410
+ return i = I, A;
411
+ }
412
+ function T(I) {
413
+ return u = I, A;
414
+ }
415
+ const A = {
416
+ direction: m,
417
+ duration: l,
418
+ velocity: g,
419
+ seek: p,
420
+ settled: b,
421
+ useBaseFriction: S,
422
+ useBaseDuration: a,
423
+ useFriction: T,
424
+ useDuration: x
425
+ };
426
+ return A;
427
+ }
428
+ function un(t, n, r, s, c) {
429
+ const o = c.measure(10), e = c.measure(50), f = tt(0.1, 0.99);
430
+ let i = !1;
431
+ function u() {
432
+ return !(i || !t.reachedAny(r.get()) || !t.reachedAny(n.get()));
433
+ }
434
+ function h(b) {
435
+ if (!u()) return;
436
+ const l = t.reachedMin(n.get()) ? "min" : "max", m = P(t[l] - n.get()), g = r.get() - n.get(), a = f.constrain(m / e);
437
+ r.subtract(g * a), !b && P(g) < o && (r.set(t.constrain(r.get())), s.useDuration(25).useBaseFriction());
438
+ }
439
+ function d(b) {
440
+ i = !b;
441
+ }
442
+ return {
443
+ shouldConstrain: u,
444
+ constrain: h,
445
+ toggleActive: d
446
+ };
447
+ }
448
+ function fn(t, n, r, s, c) {
449
+ const o = tt(-n + t, 0), e = d(), f = h(), i = p();
450
+ function u(l, m) {
451
+ return ft(l, m) <= 1;
452
+ }
453
+ function h() {
454
+ const l = e[0], m = k(e), g = e.lastIndexOf(l), a = e.indexOf(m) + 1;
455
+ return tt(g, a);
456
+ }
457
+ function d() {
458
+ return r.map((l, m) => {
459
+ const {
460
+ min: g,
461
+ max: a
462
+ } = o, S = o.constrain(l), x = !m, T = vt(r, m);
463
+ return x ? a : T || u(g, S) ? g : u(a, S) ? a : S;
464
+ }).map((l) => parseFloat(l.toFixed(3)));
465
+ }
466
+ function p() {
467
+ if (n <= t + c) return [o.max];
468
+ if (s === "keepSnaps") return e;
469
+ const {
470
+ min: l,
471
+ max: m
472
+ } = f;
473
+ return e.slice(l, m);
474
+ }
475
+ return {
476
+ snapsContained: i,
477
+ scrollContainLimit: f
478
+ };
479
+ }
480
+ function an(t, n, r) {
481
+ const s = n[0], c = r ? s - t : k(n);
482
+ return {
483
+ limit: tt(c, s)
484
+ };
485
+ }
486
+ function ln(t, n, r, s) {
487
+ const o = n.min + 0.1, e = n.max + 0.1, {
488
+ reachedMin: f,
489
+ reachedMax: i
490
+ } = tt(o, e);
491
+ function u(p) {
492
+ return p === 1 ? i(r.get()) : p === -1 ? f(r.get()) : !1;
493
+ }
494
+ function h(p) {
495
+ if (!u(p)) return;
496
+ const b = t * (p * -1);
497
+ s.forEach((l) => l.add(b));
498
+ }
499
+ return {
500
+ loop: h
501
+ };
502
+ }
503
+ function dn(t) {
504
+ const {
505
+ max: n,
506
+ length: r
507
+ } = t;
508
+ function s(o) {
509
+ const e = o - n;
510
+ return r ? e / -r : 0;
511
+ }
512
+ return {
513
+ get: s
514
+ };
515
+ }
516
+ function pn(t, n, r, s, c) {
517
+ const {
518
+ startEdge: o,
519
+ endEdge: e
520
+ } = t, {
521
+ groupSlides: f
522
+ } = c, i = d().map(n.measure), u = p(), h = b();
523
+ function d() {
524
+ return f(s).map((m) => k(m)[e] - m[0][o]).map(P);
525
+ }
526
+ function p() {
527
+ return s.map((m) => r[o] - m[o]).map((m) => -P(m));
528
+ }
529
+ function b() {
530
+ return f(u).map((m) => m[0]).map((m, g) => m + i[g]);
531
+ }
532
+ return {
533
+ snaps: u,
534
+ snapsAligned: h
535
+ };
536
+ }
537
+ function mn(t, n, r, s, c, o) {
538
+ const {
539
+ groupSlides: e
540
+ } = c, {
541
+ min: f,
542
+ max: i
543
+ } = s, u = h();
544
+ function h() {
545
+ const p = e(o), b = !t || n === "keepSnaps";
546
+ return r.length === 1 ? [o] : b ? p : p.slice(f, i).map((l, m, g) => {
547
+ const a = !m, S = vt(g, m);
548
+ if (a) {
549
+ const x = k(g[0]) + 1;
550
+ return Vt(x);
551
+ }
552
+ if (S) {
553
+ const x = pt(o) - k(g)[0] + 1;
554
+ return Vt(x, k(g)[0]);
555
+ }
556
+ return l;
557
+ });
558
+ }
559
+ return {
560
+ slideRegistry: u
561
+ };
562
+ }
563
+ function gn(t, n, r, s, c) {
564
+ const {
565
+ reachedAny: o,
566
+ removeOffset: e,
567
+ constrain: f
568
+ } = s;
569
+ function i(l) {
570
+ return l.concat().sort((m, g) => P(m) - P(g))[0];
571
+ }
572
+ function u(l) {
573
+ const m = t ? e(l) : f(l), g = n.map((S, x) => ({
574
+ diff: h(S - m, 0),
575
+ index: x
576
+ })).sort((S, x) => P(S.diff) - P(x.diff)), {
577
+ index: a
578
+ } = g[0];
579
+ return {
580
+ index: a,
581
+ distance: m
582
+ };
583
+ }
584
+ function h(l, m) {
585
+ const g = [l, l + r, l - r];
586
+ if (!t) return l;
587
+ if (!m) return i(g);
588
+ const a = g.filter((S) => It(S) === m);
589
+ return a.length ? i(a) : k(g) - r;
590
+ }
591
+ function d(l, m) {
592
+ const g = n[l] - c.get(), a = h(g, m);
593
+ return {
594
+ index: l,
595
+ distance: a
596
+ };
597
+ }
598
+ function p(l, m) {
599
+ const g = c.get() + l, {
600
+ index: a,
601
+ distance: S
602
+ } = u(g), x = !t && o(g);
603
+ if (!m || x) return {
604
+ index: a,
605
+ distance: l
606
+ };
607
+ const T = n[a] - S, A = l + h(T, 0);
608
+ return {
609
+ index: a,
610
+ distance: A
611
+ };
612
+ }
613
+ return {
614
+ byDistance: p,
615
+ byIndex: d,
616
+ shortcut: h
617
+ };
618
+ }
619
+ function hn(t, n, r, s, c, o, e) {
620
+ function f(d) {
621
+ const p = d.distance, b = d.index !== n.get();
622
+ o.add(p), p && (s.duration() ? t.start() : (t.update(), t.render(1), t.update())), b && (r.set(n.get()), n.set(d.index), e.emit("select"));
623
+ }
624
+ function i(d, p) {
625
+ const b = c.byDistance(d, p);
626
+ f(b);
627
+ }
628
+ function u(d, p) {
629
+ const b = n.clone().set(d), l = c.byIndex(b.get(), p);
630
+ f(l);
631
+ }
632
+ return {
633
+ distance: i,
634
+ index: u
635
+ };
636
+ }
637
+ function Sn(t, n, r, s, c, o, e, f) {
638
+ const i = {
639
+ passive: !0,
640
+ capture: !0
641
+ };
642
+ let u = 0;
643
+ function h(b) {
644
+ if (!f) return;
645
+ function l(m) {
646
+ if ((/* @__PURE__ */ new Date()).getTime() - u > 10) return;
647
+ e.emit("slideFocusStart"), t.scrollLeft = 0;
648
+ const S = r.findIndex((x) => x.includes(m));
649
+ Tt(S) && (c.useDuration(0), s.index(S, 0), e.emit("slideFocus"));
650
+ }
651
+ o.add(document, "keydown", d, !1), n.forEach((m, g) => {
652
+ o.add(m, "focus", (a) => {
653
+ (gt(f) || f(b, a)) && l(g);
654
+ }, i);
655
+ });
656
+ }
657
+ function d(b) {
658
+ b.code === "Tab" && (u = (/* @__PURE__ */ new Date()).getTime());
659
+ }
660
+ return {
661
+ init: h
662
+ };
663
+ }
664
+ function ut(t) {
665
+ let n = t;
666
+ function r() {
667
+ return n;
668
+ }
669
+ function s(i) {
670
+ n = e(i);
671
+ }
672
+ function c(i) {
673
+ n += e(i);
674
+ }
675
+ function o(i) {
676
+ n -= e(i);
677
+ }
678
+ function e(i) {
679
+ return Tt(i) ? i : i.get();
680
+ }
681
+ return {
682
+ get: r,
683
+ set: s,
684
+ add: c,
685
+ subtract: o
686
+ };
687
+ }
688
+ function kt(t, n) {
689
+ const r = t.scroll === "x" ? e : f, s = n.style;
690
+ let c = null, o = !1;
691
+ function e(p) {
692
+ return `translate3d(${p}px,0px,0px)`;
693
+ }
694
+ function f(p) {
695
+ return `translate3d(0px,${p}px,0px)`;
696
+ }
697
+ function i(p) {
698
+ if (o) return;
699
+ const b = Jt(t.direction(p));
700
+ b !== c && (s.transform = r(b), c = b);
701
+ }
702
+ function u(p) {
703
+ o = !p;
704
+ }
705
+ function h() {
706
+ o || (s.transform = "", n.getAttribute("style") || n.removeAttribute("style"));
707
+ }
708
+ return {
709
+ clear: h,
710
+ to: i,
711
+ toggleActive: u
712
+ };
713
+ }
714
+ function yn(t, n, r, s, c, o, e, f, i) {
715
+ const h = at(c), d = at(c).reverse(), p = a().concat(S());
716
+ function b(L, E) {
717
+ return L.reduce((v, C) => v - c[C], E);
718
+ }
719
+ function l(L, E) {
720
+ return L.reduce((v, C) => b(v, E) > 0 ? v.concat([C]) : v, []);
721
+ }
722
+ function m(L) {
723
+ return o.map((E, v) => ({
724
+ start: E - s[v] + 0.5 + L,
725
+ end: E + n - 0.5 + L
726
+ }));
727
+ }
728
+ function g(L, E, v) {
729
+ const C = m(E);
730
+ return L.map((D) => {
731
+ const V = v ? 0 : -r, G = v ? r : 0, H = v ? "end" : "start", j = C[D][H];
732
+ return {
733
+ index: D,
734
+ loopPoint: j,
735
+ slideLocation: ut(-1),
736
+ translate: kt(t, i[D]),
737
+ target: () => f.get() > j ? V : G
738
+ };
739
+ });
740
+ }
741
+ function a() {
742
+ const L = e[0], E = l(d, L);
743
+ return g(E, r, !1);
744
+ }
745
+ function S() {
746
+ const L = n - e[0] - 1, E = l(h, L);
747
+ return g(E, -r, !0);
748
+ }
749
+ function x() {
750
+ return p.every(({
751
+ index: L
752
+ }) => {
753
+ const E = h.filter((v) => v !== L);
754
+ return b(E, n) <= 0.1;
755
+ });
756
+ }
757
+ function T() {
758
+ p.forEach((L) => {
759
+ const {
760
+ target: E,
761
+ translate: v,
762
+ slideLocation: C
763
+ } = L, D = E();
764
+ D !== C.get() && (v.to(D), C.set(D));
765
+ });
766
+ }
767
+ function A() {
768
+ p.forEach((L) => L.translate.clear());
769
+ }
770
+ return {
771
+ canLoop: x,
772
+ clear: A,
773
+ loop: T,
774
+ loopPoints: p
775
+ };
776
+ }
777
+ function bn(t, n, r) {
778
+ let s, c = !1;
779
+ function o(i) {
780
+ if (!r) return;
781
+ function u(h) {
782
+ for (const d of h)
783
+ if (d.type === "childList") {
784
+ i.reInit(), n.emit("slidesChanged");
785
+ break;
786
+ }
787
+ }
788
+ s = new MutationObserver((h) => {
789
+ c || (gt(r) || r(i, h)) && u(h);
790
+ }), s.observe(t, {
791
+ childList: !0
792
+ });
793
+ }
794
+ function e() {
795
+ s && s.disconnect(), c = !0;
796
+ }
797
+ return {
798
+ init: o,
799
+ destroy: e
800
+ };
801
+ }
802
+ function xn(t, n, r, s) {
803
+ const c = {};
804
+ let o = null, e = null, f, i = !1;
805
+ function u() {
806
+ f = new IntersectionObserver((l) => {
807
+ i || (l.forEach((m) => {
808
+ const g = n.indexOf(m.target);
809
+ c[g] = m;
810
+ }), o = null, e = null, r.emit("slidesInView"));
811
+ }, {
812
+ root: t.parentElement,
813
+ threshold: s
814
+ }), n.forEach((l) => f.observe(l));
815
+ }
816
+ function h() {
817
+ f && f.disconnect(), i = !0;
818
+ }
819
+ function d(l) {
820
+ return lt(c).reduce((m, g) => {
821
+ const a = parseInt(g), {
822
+ isIntersecting: S
823
+ } = c[a];
824
+ return (l && S || !l && !S) && m.push(a), m;
825
+ }, []);
826
+ }
827
+ function p(l = !0) {
828
+ if (l && o) return o;
829
+ if (!l && e) return e;
830
+ const m = d(l);
831
+ return l && (o = m), l || (e = m), m;
832
+ }
833
+ return {
834
+ init: u,
835
+ destroy: h,
836
+ get: p
837
+ };
838
+ }
839
+ function Ln(t, n, r, s, c, o) {
840
+ const {
841
+ measureSize: e,
842
+ startEdge: f,
843
+ endEdge: i
844
+ } = t, u = r[0] && c, h = l(), d = m(), p = r.map(e), b = g();
845
+ function l() {
846
+ if (!u) return 0;
847
+ const S = r[0];
848
+ return P(n[f] - S[f]);
849
+ }
850
+ function m() {
851
+ if (!u) return 0;
852
+ const S = o.getComputedStyle(k(s));
853
+ return parseFloat(S.getPropertyValue(`margin-${i}`));
854
+ }
855
+ function g() {
856
+ return r.map((S, x, T) => {
857
+ const A = !x, I = vt(T, x);
858
+ return A ? p[x] + h : I ? p[x] + d : T[x + 1][f] - S[f];
859
+ }).map(P);
860
+ }
861
+ return {
862
+ slideSizes: p,
863
+ slideSizesWithGaps: b,
864
+ startGap: h,
865
+ endGap: d
866
+ };
867
+ }
868
+ function En(t, n, r, s, c, o, e, f, i) {
869
+ const {
870
+ startEdge: u,
871
+ endEdge: h,
872
+ direction: d
873
+ } = t, p = Tt(r);
874
+ function b(a, S) {
875
+ return at(a).filter((x) => x % S === 0).map((x) => a.slice(x, x + S));
876
+ }
877
+ function l(a) {
878
+ return a.length ? at(a).reduce((S, x, T) => {
879
+ const A = k(S) || 0, I = A === 0, L = x === pt(a), E = c[u] - o[A][u], v = c[u] - o[x][h], C = !s && I ? d(e) : 0, D = !s && L ? d(f) : 0, V = P(v - D - (E + C));
880
+ return T && V > n + i && S.push(x), L && S.push(a.length), S;
881
+ }, []).map((S, x, T) => {
882
+ const A = Math.max(T[x - 1] || 0);
883
+ return a.slice(A, S);
884
+ }) : [];
885
+ }
886
+ function m(a) {
887
+ return p ? b(a, r) : l(a);
888
+ }
889
+ return {
890
+ groupSlides: m
891
+ };
892
+ }
893
+ function Tn(t, n, r, s, c, o, e) {
894
+ const {
895
+ align: f,
896
+ axis: i,
897
+ direction: u,
898
+ startIndex: h,
899
+ loop: d,
900
+ duration: p,
901
+ dragFree: b,
902
+ dragThreshold: l,
903
+ inViewThreshold: m,
904
+ slidesToScroll: g,
905
+ skipSnaps: a,
906
+ containScroll: S,
907
+ watchResize: x,
908
+ watchSlides: T,
909
+ watchDrag: A,
910
+ watchFocus: I
911
+ } = o, L = 2, E = on(), v = E.measure(n), C = r.map(E.measure), D = tn(i, u), V = D.measureSize(v), G = rn(V), H = Zt(f, V), j = !d && !!S, J = d || !!S, {
912
+ slideSizes: Y,
913
+ slideSizesWithGaps: U,
914
+ startGap: $,
915
+ endGap: rt
916
+ } = Ln(D, v, C, r, J, c), R = En(D, V, g, d, v, C, $, rt, L), {
917
+ snaps: nt,
918
+ snapsAligned: et
919
+ } = pn(D, H, v, C, R), Q = -k(nt) + k(U), {
920
+ snapsContained: st,
921
+ scrollContainLimit: it
922
+ } = fn(V, Q, et, S, L), z = j ? st : et, {
923
+ limit: w
924
+ } = an(Q, z, d), K = Bt(pt(z), h, d), B = K.clone(), F = at(r), y = ({
925
+ dragHandler: ot,
926
+ scrollBody: bt,
927
+ scrollBounds: xt,
928
+ options: {
929
+ loop: mt
930
+ }
931
+ }) => {
932
+ mt || xt.constrain(ot.pointerDown()), bt.seek();
933
+ }, M = ({
934
+ scrollBody: ot,
935
+ translate: bt,
936
+ location: xt,
937
+ offsetLocation: mt,
938
+ previousLocation: Rt,
939
+ scrollLooper: qt,
940
+ slideLooper: Ut,
941
+ dragHandler: $t,
942
+ animation: Qt,
943
+ eventHandler: Ft,
944
+ scrollBounds: Kt,
945
+ options: {
946
+ loop: Pt
947
+ }
948
+ }, Ct) => {
949
+ const Ot = ot.settled(), Xt = !Kt.shouldConstrain(), wt = Pt ? Ot : Ot && Xt;
950
+ wt && !$t.pointerDown() && (Qt.stop(), Ft.emit("settle")), wt || Ft.emit("scroll");
951
+ const Yt = xt.get() * Ct + Rt.get() * (1 - Ct);
952
+ mt.set(Yt), Pt && (qt.loop(ot.direction()), Ut.loop()), bt.to(mt.get());
953
+ }, O = Wt(s, c, () => y(yt), (ot) => M(yt, ot)), N = 0.68, q = z[K.get()], X = ut(q), Z = ut(q), _ = ut(q), W = ut(q), ct = cn(X, _, Z, W, p, N), ht = gn(d, z, Q, w, W), St = hn(O, K, B, ct, ht, W, e), Dt = dn(w), Mt = dt(), Ht = xn(n, r, e, m), {
954
+ slideRegistry: At
955
+ } = mn(j, S, z, it, R, F), jt = Sn(t, r, At, St, ct, Mt, e, I), yt = {
956
+ ownerDocument: s,
957
+ ownerWindow: c,
958
+ eventHandler: e,
959
+ containerRect: v,
960
+ slideRects: C,
961
+ animation: O,
962
+ axis: D,
963
+ dragHandler: nn(D, t, s, c, W, en(D, c), X, O, St, ct, ht, K, e, G, b, l, a, N, A),
964
+ eventStore: Mt,
965
+ percentOfView: G,
966
+ index: K,
967
+ indexPrevious: B,
968
+ limit: w,
969
+ location: X,
970
+ offsetLocation: _,
971
+ previousLocation: Z,
972
+ options: o,
973
+ resizeHandler: sn(n, e, c, r, D, x, E),
974
+ scrollBody: ct,
975
+ scrollBounds: un(w, _, W, ct, G),
976
+ scrollLooper: ln(Q, w, _, [X, _, Z, W]),
977
+ scrollProgress: Dt,
978
+ scrollSnapList: z.map(Dt.get),
979
+ scrollSnaps: z,
980
+ scrollTarget: ht,
981
+ scrollTo: St,
982
+ slideLooper: yn(D, V, Q, Y, U, nt, z, _, r),
983
+ slideFocus: jt,
984
+ slidesHandler: bn(n, e, T),
985
+ slidesInView: Ht,
986
+ slideIndexes: F,
987
+ slideRegistry: At,
988
+ slidesToScroll: R,
989
+ target: W,
990
+ translate: kt(D, n)
991
+ };
992
+ return yt;
993
+ }
994
+ function In() {
995
+ let t = {}, n;
996
+ function r(u) {
997
+ n = u;
998
+ }
999
+ function s(u) {
1000
+ return t[u] || [];
1001
+ }
1002
+ function c(u) {
1003
+ return s(u).forEach((h) => h(n, u)), i;
1004
+ }
1005
+ function o(u, h) {
1006
+ return t[u] = s(u).concat([h]), i;
1007
+ }
1008
+ function e(u, h) {
1009
+ return t[u] = s(u).filter((d) => d !== h), i;
1010
+ }
1011
+ function f() {
1012
+ t = {};
1013
+ }
1014
+ const i = {
1015
+ init: r,
1016
+ emit: c,
1017
+ off: e,
1018
+ on: o,
1019
+ clear: f
1020
+ };
1021
+ return i;
1022
+ }
1023
+ const vn = {
1024
+ align: "center",
1025
+ axis: "x",
1026
+ container: null,
1027
+ slides: null,
1028
+ containScroll: "trimSnaps",
1029
+ direction: "ltr",
1030
+ slidesToScroll: 1,
1031
+ inViewThreshold: 0,
1032
+ breakpoints: {},
1033
+ dragFree: !1,
1034
+ dragThreshold: 10,
1035
+ loop: !1,
1036
+ skipSnaps: !1,
1037
+ duration: 25,
1038
+ startIndex: 0,
1039
+ active: !0,
1040
+ watchDrag: !0,
1041
+ watchResize: !0,
1042
+ watchSlides: !0,
1043
+ watchFocus: !0
1044
+ };
1045
+ function Dn(t) {
1046
+ function n(o, e) {
1047
+ return zt(o, e || {});
1048
+ }
1049
+ function r(o) {
1050
+ const e = o.breakpoints || {}, f = lt(e).filter((i) => t.matchMedia(i).matches).map((i) => e[i]).reduce((i, u) => n(i, u), {});
1051
+ return n(o, f);
1052
+ }
1053
+ function s(o) {
1054
+ return o.map((e) => lt(e.breakpoints || {})).reduce((e, f) => e.concat(f), []).map(t.matchMedia);
1055
+ }
1056
+ return {
1057
+ mergeOptions: n,
1058
+ optionsAtMedia: r,
1059
+ optionsMediaQueries: s
1060
+ };
1061
+ }
1062
+ function Mn(t) {
1063
+ let n = [];
1064
+ function r(o, e) {
1065
+ return n = e.filter(({
1066
+ options: f
1067
+ }) => t.optionsAtMedia(f).active !== !1), n.forEach((f) => f.init(o, t)), e.reduce((f, i) => Object.assign(f, {
1068
+ [i.name]: i
1069
+ }), {});
1070
+ }
1071
+ function s() {
1072
+ n = n.filter((o) => o.destroy());
1073
+ }
1074
+ return {
1075
+ init: r,
1076
+ destroy: s
1077
+ };
1078
+ }
1079
+ function Gt(t, n, r) {
1080
+ const s = t.ownerDocument, c = s.defaultView, o = Dn(c), e = Mn(o), f = dt(), i = In(), {
1081
+ mergeOptions: u,
1082
+ optionsAtMedia: h,
1083
+ optionsMediaQueries: d
1084
+ } = o, {
1085
+ on: p,
1086
+ off: b,
1087
+ emit: l
1088
+ } = i, m = D;
1089
+ let g = !1, a, S = u(vn, Gt.globalOptions), x = u(S), T = [], A, I, L;
1090
+ function E() {
1091
+ const {
1092
+ container: F,
1093
+ slides: y
1094
+ } = x;
1095
+ I = (Lt(F) ? t.querySelector(F) : F) || t.children[0];
1096
+ const O = Lt(y) ? I.querySelectorAll(y) : y;
1097
+ L = [].slice.call(O || I.children);
1098
+ }
1099
+ function v(F) {
1100
+ const y = Tn(t, I, L, s, c, F, i);
1101
+ if (F.loop && !y.slideLooper.canLoop()) {
1102
+ const M = Object.assign({}, F, {
1103
+ loop: !1
1104
+ });
1105
+ return v(M);
1106
+ }
1107
+ return y;
1108
+ }
1109
+ function C(F, y) {
1110
+ g || (S = u(S, F), x = h(S), T = y || T, E(), a = v(x), d([S, ...T.map(({
1111
+ options: M
1112
+ }) => M)]).forEach((M) => f.add(M, "change", D)), x.active && (a.translate.to(a.location.get()), a.animation.init(), a.slidesInView.init(), a.slideFocus.init(B), a.eventHandler.init(B), a.resizeHandler.init(B), a.slidesHandler.init(B), a.options.loop && a.slideLooper.loop(), I.offsetParent && L.length && a.dragHandler.init(B), A = e.init(B, T)));
1113
+ }
1114
+ function D(F, y) {
1115
+ const M = R();
1116
+ V(), C(u({
1117
+ startIndex: M
1118
+ }, F), y), i.emit("reInit");
1119
+ }
1120
+ function V() {
1121
+ a.dragHandler.destroy(), a.eventStore.clear(), a.translate.clear(), a.slideLooper.clear(), a.resizeHandler.destroy(), a.slidesHandler.destroy(), a.slidesInView.destroy(), a.animation.destroy(), e.destroy(), f.clear();
1122
+ }
1123
+ function G() {
1124
+ g || (g = !0, f.clear(), V(), i.emit("destroy"), i.clear());
1125
+ }
1126
+ function H(F, y, M) {
1127
+ !x.active || g || (a.scrollBody.useBaseFriction().useDuration(y === !0 ? 0 : x.duration), a.scrollTo.index(F, M || 0));
1128
+ }
1129
+ function j(F) {
1130
+ const y = a.index.add(1).get();
1131
+ H(y, F, -1);
1132
+ }
1133
+ function J(F) {
1134
+ const y = a.index.add(-1).get();
1135
+ H(y, F, 1);
1136
+ }
1137
+ function Y() {
1138
+ return a.index.add(1).get() !== R();
1139
+ }
1140
+ function U() {
1141
+ return a.index.add(-1).get() !== R();
1142
+ }
1143
+ function $() {
1144
+ return a.scrollSnapList;
1145
+ }
1146
+ function rt() {
1147
+ return a.scrollProgress.get(a.location.get());
1148
+ }
1149
+ function R() {
1150
+ return a.index.get();
1151
+ }
1152
+ function nt() {
1153
+ return a.indexPrevious.get();
1154
+ }
1155
+ function et() {
1156
+ return a.slidesInView.get();
1157
+ }
1158
+ function Q() {
1159
+ return a.slidesInView.get(!1);
1160
+ }
1161
+ function st() {
1162
+ return A;
1163
+ }
1164
+ function it() {
1165
+ return a;
1166
+ }
1167
+ function z() {
1168
+ return t;
1169
+ }
1170
+ function w() {
1171
+ return I;
1172
+ }
1173
+ function K() {
1174
+ return L;
1175
+ }
1176
+ const B = {
1177
+ canScrollNext: Y,
1178
+ canScrollPrev: U,
1179
+ containerNode: w,
1180
+ internalEngine: it,
1181
+ destroy: G,
1182
+ off: b,
1183
+ on: p,
1184
+ emit: l,
1185
+ plugins: st,
1186
+ previousScrollSnap: nt,
1187
+ reInit: m,
1188
+ rootNode: z,
1189
+ scrollNext: j,
1190
+ scrollPrev: J,
1191
+ scrollProgress: rt,
1192
+ scrollSnapList: $,
1193
+ scrollTo: H,
1194
+ selectedScrollSnap: R,
1195
+ slideNodes: K,
1196
+ slidesInView: et,
1197
+ slidesNotInView: Q
1198
+ };
1199
+ return C(n, r), setTimeout(() => i.emit("init"), 0), B;
1200
+ }
1201
+ Gt.globalOptions = void 0;
1202
+ export {
1203
+ Gt as default
1204
+ };