@kiva/kv-components 4.8.6 → 5.0.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 +158 -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
package/CHANGELOG.md DELETED
@@ -1,3615 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ## [4.8.6](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.8.5...@kiva/kv-components@4.8.6) (2025-01-16)
7
-
8
-
9
- ### Bug Fixes
10
-
11
- * adjust modal position and remove scroll when visible ([af17714](https://github.com/kiva/kv-ui-elements/commit/af17714803c84ca2b4f3d9f1a9f7730303429530))
12
-
13
-
14
-
15
-
16
-
17
- ## [4.8.5](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.8.4...@kiva/kv-components@4.8.5) (2025-01-10)
18
-
19
-
20
- ### Bug Fixes
21
-
22
- * click events after removal of clickAllowed ([58388bb](https://github.com/kiva/kv-ui-elements/commit/58388bbfbf1b16a803a6f6e8a327babebb6393e2))
23
-
24
-
25
-
26
-
27
-
28
- ## [4.8.4](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.8.3...@kiva/kv-components@4.8.4) (2025-01-10)
29
-
30
-
31
- ### Bug Fixes
32
-
33
- * carousel autoplay issues ([ae1e7eb](https://github.com/kiva/kv-ui-elements/commit/ae1e7ebf82181b3c9fed505d3ad5afce41dcabba))
34
-
35
-
36
-
37
-
38
-
39
- ## [4.8.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.8.2...@kiva/kv-components@4.8.3) (2025-01-10)
40
-
41
-
42
- ### Bug Fixes
43
-
44
- * padding in preset buttons ([7ea60b0](https://github.com/kiva/kv-ui-elements/commit/7ea60b09571ae913f5ca7b363bf3d0ff027f04d6))
45
-
46
-
47
-
48
-
49
-
50
- ## [4.8.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.8.1...@kiva/kv-components@4.8.2) (2025-01-09)
51
-
52
-
53
- ### Bug Fixes
54
-
55
- * set full width for continue to basket state ([cacc5a2](https://github.com/kiva/kv-ui-elements/commit/cacc5a2ec697dd37466fc6b1b4ff4fef40edf5ef))
56
-
57
-
58
-
59
-
60
-
61
- ## [4.8.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.8.0...@kiva/kv-components@4.8.1) (2025-01-09)
62
-
63
- **Note:** Version bump only for package @kiva/kv-components
64
-
65
-
66
-
67
-
68
-
69
- # [4.8.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.7.1...@kiva/kv-components@4.8.0) (2025-01-09)
70
-
71
-
72
- ### Features
73
-
74
- * make sure autoplay stops on carousel interactions ([a973201](https://github.com/kiva/kv-ui-elements/commit/a97320125351e82ccdd946abd91507a2f619b1d3))
75
-
76
-
77
-
78
-
79
-
80
- ## [4.7.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.7.0...@kiva/kv-components@4.7.1) (2025-01-09)
81
-
82
-
83
- ### Bug Fixes
84
-
85
- * preset button was adding to basket because of type ([994a42f](https://github.com/kiva/kv-ui-elements/commit/994a42f36b2065c57994d1903c48ad9a14ad5c69))
86
-
87
-
88
-
89
-
90
-
91
- # [4.7.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.6.0...@kiva/kv-components@4.7.0) (2025-01-09)
92
-
93
-
94
- ### Features
95
-
96
- * add autoplay button if autoplay plugin is enabled ([8bebbe5](https://github.com/kiva/kv-ui-elements/commit/8bebbe5945dd4e34c922f9f511a4145564ae005a))
97
-
98
-
99
-
100
-
101
-
102
- # [4.6.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.5.1...@kiva/kv-components@4.6.0) (2025-01-08)
103
-
104
-
105
- ### Bug Fixes
106
-
107
- * case when unreserved amount is greater first dropdown option ([af7bac1](https://github.com/kiva/kv-ui-elements/commit/af7bac155c18e902c7fe9594d75bd74ee966564a))
108
- * edge cases for unreserved amount and select dropdown by default ([273e13f](https://github.com/kiva/kv-ui-elements/commit/273e13fa377277bf49684ea3032da56f0e5537ff))
109
- * new cases for unreserved amount ([2de1302](https://github.com/kiva/kv-ui-elements/commit/2de1302de738d0f2489f56721efc30d1f6ab448a))
110
- * remove lendCtaSelectedOption modification ([10c98d0](https://github.com/kiva/kv-ui-elements/commit/10c98d04bc72eba67591e6d7dbaf6347f5026bdf))
111
- * resolve comments and add new cases in stories ([310c152](https://github.com/kiva/kv-ui-elements/commit/310c15273d21e2610f7e7bd67c46e5c6d5bf32d5))
112
-
113
-
114
- ### Features
115
-
116
- * add enableHugeAmount option to preset buttons ([c07a4b1](https://github.com/kiva/kv-ui-elements/commit/c07a4b1f74532b57f15a7aef9337659462c57b2e))
117
- * new lendCta variant with preset options as buttons plus dropdown ([1e464a7](https://github.com/kiva/kv-ui-elements/commit/1e464a7518e77657deb59cadb90f78f1dc0db287))
118
- * new line for dropdown when huge amount flag is enabled ([c66a90e](https://github.com/kiva/kv-ui-elements/commit/c66a90e6ac0e7b4bdc15ca28f681a97eab43dfca))
119
-
120
-
121
-
122
-
123
-
124
- ## [4.5.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.5.0...@kiva/kv-components@4.5.1) (2025-01-04)
125
-
126
- **Note:** Version bump only for package @kiva/kv-components
127
-
128
-
129
-
130
-
131
-
132
- # [4.5.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.4.0...@kiva/kv-components@4.5.0) (2025-01-03)
133
-
134
-
135
- ### Features
136
-
137
- * add autoplay and fade plugin options for carousels ([b85b0c2](https://github.com/kiva/kv-ui-elements/commit/b85b0c20fbff52663c823a984db53fbb41baf0a4))
138
-
139
-
140
-
141
-
142
-
143
- # [4.4.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.3.3...@kiva/kv-components@4.4.0) (2025-01-02)
144
-
145
-
146
- ### Features
147
-
148
- * add browser API mocks to test embla carousel ([e4e8bd1](https://github.com/kiva/kv-ui-elements/commit/e4e8bd11812faf75ed12d7258cdaf7f024f86c45))
149
- * update embla to latest version ([6d37f77](https://github.com/kiva/kv-ui-elements/commit/6d37f7734072e595e6648592050b55027be537a5))
150
-
151
-
152
-
153
-
154
-
155
- ## [4.3.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.3.2...@kiva/kv-components@4.3.3) (2024-12-20)
156
-
157
-
158
- ### Bug Fixes
159
-
160
- * side sheet shouldn't be full height ([d7e680f](https://github.com/kiva/kv-ui-elements/commit/d7e680fe172a1776bd5cc97d99cbb32d988b7c55))
161
-
162
-
163
-
164
-
165
-
166
- ## [4.3.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.3.1...@kiva/kv-components@4.3.2) (2024-12-16)
167
-
168
-
169
- ### Bug Fixes
170
-
171
- * overflow fallback ([1cd05db](https://github.com/kiva/kv-ui-elements/commit/1cd05db96ccc96424e7c364fb49156acedb6d101))
172
- * smooth out side sheet animation ([d65df74](https://github.com/kiva/kv-ui-elements/commit/d65df74824ef936fdcfc3f07870107a0676d194e))
173
-
174
-
175
-
176
-
177
-
178
- ## [4.3.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.3.0...@kiva/kv-components@4.3.1) (2024-12-11)
179
-
180
-
181
- ### Bug Fixes
182
-
183
- * resolve issue when screen size is changed and opening behavior changes ([c51d62e](https://github.com/kiva/kv-ui-elements/commit/c51d62e6b2f4efaee4ddcb6efa33cfe9523fd69f))
184
-
185
-
186
-
187
-
188
-
189
- # [4.3.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.2.2...@kiva/kv-components@4.3.0) (2024-12-10)
190
-
191
-
192
- ### Features
193
-
194
- * scroll user to original position when sheet is opening in mobile ([0c783fa](https://github.com/kiva/kv-ui-elements/commit/0c783fae5f61cb2958fb6220baa284c4287bedac))
195
-
196
-
197
-
198
-
199
-
200
- ## [4.2.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.2.1...@kiva/kv-components@4.2.2) (2024-12-09)
201
-
202
-
203
- ### Bug Fixes
204
-
205
- * opacity-low left a white space when closing sidesheet ([5ac062e](https://github.com/kiva/kv-ui-elements/commit/5ac062ed16bf4ddba1fc8a64ada95084b271546f))
206
-
207
-
208
-
209
-
210
-
211
- ## [4.2.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.2.0...@kiva/kv-components@4.2.1) (2024-12-09)
212
-
213
-
214
- ### Bug Fixes
215
-
216
- * height modal and not necessary fixed position ([c922c7d](https://github.com/kiva/kv-ui-elements/commit/c922c7d9e3ff44ec498ed037bad6fc7c95240444))
217
-
218
-
219
-
220
-
221
-
222
- # [4.2.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.1.0...@kiva/kv-components@4.2.0) (2024-12-09)
223
-
224
-
225
- ### Bug Fixes
226
-
227
- * fix transition and remove unused code ([664b00e](https://github.com/kiva/kv-ui-elements/commit/664b00e1b27a6afd51ce9cc85069b9dd4f5dc5d7))
228
- * remove bg ([43c8a0d](https://github.com/kiva/kv-ui-elements/commit/43c8a0db295be4dd86b414a41145ebcc6e2606f8))
229
- * set default values for element ([c21852d](https://github.com/kiva/kv-ui-elements/commit/c21852d54e2c94f99098b5a234233addfe0a1ed2))
230
-
231
-
232
- ### Features
233
-
234
- * sidesheet expand effect ([4fbe553](https://github.com/kiva/kv-ui-elements/commit/4fbe5533d437af0d77b6d79b2f8ec8880f51c3dd))
235
-
236
-
237
-
238
-
239
-
240
- # [4.1.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.0.1...@kiva/kv-components@4.1.0) (2024-12-02)
241
-
242
-
243
- ### Features
244
-
245
- * adjust sidesheet for mobile and tablet views ([21a6e6c](https://github.com/kiva/kv-ui-elements/commit/21a6e6ce193be8e200a292de4625175105b2cd1a))
246
-
247
-
248
-
249
-
250
-
251
- ## [4.0.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.0.0...@kiva/kv-components@4.0.1) (2024-12-02)
252
-
253
-
254
- ### Bug Fixes
255
-
256
- * removing margin and fixed position ([7c6c8ea](https://github.com/kiva/kv-ui-elements/commit/7c6c8eac840359cbf22b9d36f01115db96305f55))
257
-
258
-
259
-
260
-
261
-
262
- # [4.0.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.109.4...@kiva/kv-components@4.0.0) (2024-11-27)
263
-
264
-
265
- ### Bug Fixes
266
-
267
- * additional story refactoring for vue3 storybook 8 ([af16665](https://github.com/kiva/kv-ui-elements/commit/af166656eed90ef1a49b23fb9fe5a08308c92cc4))
268
- * fix more stories for vue3 storybook 8 ([aeb19aa](https://github.com/kiva/kv-ui-elements/commit/aeb19aaec30263ab6524f739492f31441cd663ba))
269
- * fix more stories for vue3 storybook 8 ([6fa71f7](https://github.com/kiva/kv-ui-elements/commit/6fa71f7c752c2fcfdfdb322264fe1fe846299747))
270
- * fix primitives story for vue3 storybook 8 ([0c271cf](https://github.com/kiva/kv-ui-elements/commit/0c271cf18c1342179932df74229da3f708644bee))
271
- * jest imports from [@vueuse](https://github.com/vueuse) ([3465f4e](https://github.com/kiva/kv-ui-elements/commit/3465f4e98f5f86db9c85bac4d1a80d6d18b6eff9))
272
- * lock storybook package versions ([4e39c6d](https://github.com/kiva/kv-ui-elements/commit/4e39c6dbb9970f8037e0aa099533545e97ab49cd))
273
- * remove comment ([a3109d0](https://github.com/kiva/kv-ui-elements/commit/a3109d01569171ff004543ef5e7dbee197645674))
274
- * remove vue 2/3 testing, add test config to kv-components ([cb0ddf2](https://github.com/kiva/kv-ui-elements/commit/cb0ddf23c06de65eea6da48cb24c3b2775ab2216))
275
- * tests ([e67a114](https://github.com/kiva/kv-ui-elements/commit/e67a114bb821f99a491ca8c5b1a3d93b90464dae))
276
-
277
-
278
- ### Features
279
-
280
- * update to vue3 and storybook 8 ([51f609d](https://github.com/kiva/kv-ui-elements/commit/51f609df48b3643b90653e44b36d7c9028f08825))
281
-
282
-
283
- ### BREAKING CHANGES
284
-
285
- * Vue3 is now required
286
-
287
-
288
-
289
-
290
-
291
- ## [3.109.4](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.109.3...@kiva/kv-components@3.109.4) (2024-11-26)
292
-
293
-
294
- ### Bug Fixes
295
-
296
- * preventDefault from undefined with showViewLoan and showLoanDetails enabled ([6354931](https://github.com/kiva/kv-ui-elements/commit/63549310e55d3d058b29e4020c0ffaa174bbe1f0))
297
- * remove native on click ([e10bf2b](https://github.com/kiva/kv-ui-elements/commit/e10bf2b50060110bca6681deff215d49394dceda))
298
-
299
-
300
-
301
-
302
-
303
- ## [3.109.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.109.2...@kiva/kv-components@3.109.3) (2024-11-25)
304
-
305
- **Note:** Version bump only for package @kiva/kv-components
306
-
307
-
308
-
309
-
310
-
311
- ## [3.109.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.109.1...@kiva/kv-components@3.109.2) (2024-11-20)
312
-
313
- **Note:** Version bump only for package @kiva/kv-components
314
-
315
-
316
-
317
-
318
-
319
- ## [3.109.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.109.0...@kiva/kv-components@3.109.1) (2024-11-19)
320
-
321
-
322
- ### Bug Fixes
323
-
324
- * add tailwind config to kv-components exports ([74388fc](https://github.com/kiva/kv-ui-elements/commit/74388fc3f65f679e6cb7e16ea51d6f71b6d96412))
325
-
326
-
327
-
328
-
329
-
330
- # [3.109.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.108.0...@kiva/kv-components@3.109.0) (2024-11-18)
331
-
332
-
333
- ### Bug Fixes
334
-
335
- * storybook static directory should include all of /dist ([64a5b22](https://github.com/kiva/kv-ui-elements/commit/64a5b22d0f5e3bb9b02c8693dcdb59291b43061e))
336
-
337
-
338
- ### Features
339
-
340
- * serve static assets from kvui directory MP-544 ([840f6de](https://github.com/kiva/kv-ui-elements/commit/840f6de89f213143218d28e82a7ef0be1de319b6))
341
-
342
-
343
-
344
-
345
-
346
- # [3.108.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.107.2...@kiva/kv-components@3.108.0) (2024-11-15)
347
-
348
-
349
- ### Bug Fixes
350
-
351
- * change error text color for KvTextInput ([5dbf6ad](https://github.com/kiva/kv-ui-elements/commit/5dbf6ad72b436d7aabf868cf8bac0ed7f1439412))
352
- * color updates for default theme and KvButton ([e27b124](https://github.com/kiva/kv-ui-elements/commit/e27b1243e797322c95cf52f505787e6c9b5eceac))
353
- * handle underline styles for buttons and clickable loan cards ([ef4d19f](https://github.com/kiva/kv-ui-elements/commit/ef4d19f420b00201baf5e0c0dcd39194a2be970c))
354
- * more wip for ecosystem themes ([3fd83ab](https://github.com/kiva/kv-ui-elements/commit/3fd83ab38e0e9463c375a94fc84012fa38948cdb))
355
- * more wip work for new ecosystem themes ([90447d4](https://github.com/kiva/kv-ui-elements/commit/90447d471178b410637d8ba50d535180c8b03718))
356
- * secondary button styling ([4602efa](https://github.com/kiva/kv-ui-elements/commit/4602efac93b4755015b847090d1eb1e24d70c1d9))
357
- * switch vertical tab active color to action instead of action-highlight ([cc1e2d5](https://github.com/kiva/kv-ui-elements/commit/cc1e2d5b12f7981ffb7a8e724036c65bc0f60d6d))
358
-
359
-
360
- ### Features
361
-
362
- * update styling for KvTextInput error state ([361cdba](https://github.com/kiva/kv-ui-elements/commit/361cdbacd2f56e1f38e330efe7425b4922c89443))
363
- * use external file for heading underline svg MP-544 MP-545 ([fad8f16](https://github.com/kiva/kv-ui-elements/commit/fad8f16b5555916624c26a24828ff39dcbc5edbf))
364
- * use green-3 and stone-3 for bg-secondary in dark themes ([d13d63e](https://github.com/kiva/kv-ui-elements/commit/d13d63e08346b936a1bb2bc61c4d3fc6c5a4e8d0))
365
- * wip initial pass at ecosystem themes ([680dbbc](https://github.com/kiva/kv-ui-elements/commit/680dbbc7aab575f9db43d7b10bdcba9003fd589e))
366
-
367
-
368
-
369
-
370
-
371
- ## [3.107.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.107.1...@kiva/kv-components@3.107.2) (2024-11-05)
372
-
373
-
374
- ### Bug Fixes
375
-
376
- * add specifier for vue imports ([f62b249](https://github.com/kiva/kv-ui-elements/commit/f62b249e67deaf46a398c5ad59251990befe788d))
377
-
378
-
379
-
380
-
381
-
382
- ## [3.107.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.107.0...@kiva/kv-components@3.107.1) (2024-11-05)
383
-
384
-
385
- ### Bug Fixes
386
-
387
- * add components to dist folder as well ([0b20c69](https://github.com/kiva/kv-ui-elements/commit/0b20c69ed132a9a46da040523c559a6d900143d1))
388
-
389
-
390
-
391
-
392
-
393
- # [3.107.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.106.0...@kiva/kv-components@3.107.0) (2024-11-05)
394
-
395
-
396
- ### Features
397
-
398
- * compile kv-component utils ([7b41391](https://github.com/kiva/kv-ui-elements/commit/7b413912c3bcf2659e729072fe1705427a78c1ba))
399
-
400
-
401
-
402
-
403
-
404
- # [3.106.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.105.3...@kiva/kv-components@3.106.0) (2024-11-01)
405
-
406
-
407
- ### Features
408
-
409
- * basic vertical carousel ([6a40563](https://github.com/kiva/kv-ui-elements/commit/6a405637ee4186d3cb5a7dbf71f87d8a04d46d86))
410
-
411
-
412
-
413
-
414
-
415
- ## [3.105.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.105.2...@kiva/kv-components@3.105.3) (2024-10-28)
416
-
417
- **Note:** Version bump only for package @kiva/kv-components
418
-
419
-
420
-
421
-
422
-
423
- ## [3.105.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.105.1...@kiva/kv-components@3.105.2) (2024-10-25)
424
-
425
-
426
- ### Bug Fixes
427
-
428
- * swap updated map file for global loans map ([444d164](https://github.com/kiva/kv-ui-elements/commit/444d164ab313a864fb70ed754a41948e96d95315))
429
- * update data accessors to match new file letter casing ([a3dcf62](https://github.com/kiva/kv-ui-elements/commit/a3dcf62a3b696a1bde2046cc363671219aa41e6f))
430
-
431
-
432
-
433
-
434
-
435
- ## [3.105.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.105.0...@kiva/kv-components@3.105.1) (2024-10-24)
436
-
437
-
438
- ### Bug Fixes
439
-
440
- * add more complete kv-carousel render to test, update to stable source for placeholder images ([03ee704](https://github.com/kiva/kv-ui-elements/commit/03ee704cbbb8345d4129a6b4cc63c8adfc9d83a9))
441
-
442
-
443
-
444
-
445
-
446
- # [3.105.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.104.0...@kiva/kv-components@3.105.0) (2024-10-15)
447
-
448
-
449
- ### Features
450
-
451
- * vote card read more ([b7d2c74](https://github.com/kiva/kv-ui-elements/commit/b7d2c74dfa6c464e68b3a6a52298a4a37b11d184))
452
-
453
-
454
-
455
-
456
-
457
- # [3.104.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.103.0...@kiva/kv-components@3.104.0) (2024-10-09)
458
-
459
-
460
- ### Features
461
-
462
- * vertically align contents inside voting cards 2 to bottom ([828e24d](https://github.com/kiva/kv-ui-elements/commit/828e24dd12b40674fd2f5079b2741ebf0e014c03))
463
-
464
-
465
-
466
-
467
-
468
- # [3.103.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.102.5...@kiva/kv-components@3.103.0) (2024-10-08)
469
-
470
-
471
- ### Features
472
-
473
- * new voting card ([#466](https://github.com/kiva/kv-ui-elements/issues/466)) ([039bca4](https://github.com/kiva/kv-ui-elements/commit/039bca45ac0b8fa2f902f4623af04da5d55a0a88))
474
-
475
-
476
-
477
-
478
-
479
- ## [3.102.5](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.102.4...@kiva/kv-components@3.102.5) (2024-10-08)
480
-
481
-
482
- ### Bug Fixes
483
-
484
- * activeSlice value isn't comparable because it's a Proxy, use toRaw ([046a4c1](https://github.com/kiva/kv-ui-elements/commit/046a4c1518a751f8a6d47ff970a0fd6583655f59))
485
-
486
-
487
-
488
-
489
-
490
- ## [3.102.4](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.102.3...@kiva/kv-components@3.102.4) (2024-10-04)
491
-
492
-
493
- ### Bug Fixes
494
-
495
- * pie chart not animating in vue 3 ([c15efec](https://github.com/kiva/kv-ui-elements/commit/c15efec2cebf39fcafaa0eb533bd6ef8ffab2d6d))
496
-
497
-
498
-
499
-
500
-
501
- ## [3.102.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.102.2...@kiva/kv-components@3.102.3) (2024-09-30)
502
-
503
-
504
- ### Bug Fixes
505
-
506
- * width classes added to pie chart ([#463](https://github.com/kiva/kv-ui-elements/issues/463)) ([77715e2](https://github.com/kiva/kv-ui-elements/commit/77715e2d27a19bbb9c3cdd5239a037ae04ee5715))
507
-
508
-
509
-
510
-
511
-
512
- ## [3.102.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.102.1...@kiva/kv-components@3.102.2) (2024-09-26)
513
-
514
-
515
- ### Bug Fixes
516
-
517
- * change how model value is handled for select component ([5626a8f](https://github.com/kiva/kv-ui-elements/commit/5626a8fcb2a464d72abbda06968dec56496e4204))
518
-
519
-
520
-
521
-
522
-
523
- ## [3.102.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.102.0...@kiva/kv-components@3.102.1) (2024-09-23)
524
-
525
-
526
- ### Bug Fixes
527
-
528
- * pie chart not visible with only one value MP-791 ([6419cd8](https://github.com/kiva/kv-ui-elements/commit/6419cd8d0f348d32dddadd4170f87a6442bf1b29))
529
-
530
-
531
-
532
-
533
-
534
- # [3.102.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.101.3...@kiva/kv-components@3.102.0) (2024-09-16)
535
-
536
-
537
- ### Features
538
-
539
- * add underline styles for h3 ([#460](https://github.com/kiva/kv-ui-elements/issues/460)) ([b9ea2c4](https://github.com/kiva/kv-ui-elements/commit/b9ea2c4c56108064ad016f4c3c3376f2208f08dd))
540
-
541
-
542
-
543
-
544
-
545
- ## [3.101.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.101.2...@kiva/kv-components@3.101.3) (2024-09-13)
546
-
547
-
548
- ### Bug Fixes
549
-
550
- * remove computed from next tick ([cb7a1fb](https://github.com/kiva/kv-ui-elements/commit/cb7a1fb358799ab99a1a05707bc2fc0b9aa915b7))
551
-
552
-
553
-
554
-
555
-
556
- ## [3.101.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.101.1...@kiva/kv-components@3.101.2) (2024-09-06)
557
-
558
-
559
- ### Bug Fixes
560
-
561
- * handle slide scale instead of img ([8758b9e](https://github.com/kiva/kv-ui-elements/commit/8758b9efccd3d40bf7420a2f808901c6f396d260))
562
- * overflow ([59529e4](https://github.com/kiva/kv-ui-elements/commit/59529e4e8f8dbbf3b2a2ba413868911702bc95e9))
563
-
564
-
565
-
566
-
567
-
568
- ## [3.101.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.101.0...@kiva/kv-components@3.101.1) (2024-09-05)
569
-
570
-
571
- ### Bug Fixes
572
-
573
- * force primary color ([652370b](https://github.com/kiva/kv-ui-elements/commit/652370b54998b4fd9597f434c66c783448d0419e))
574
- * new loan card name wasn't clickable ([27603b7](https://github.com/kiva/kv-ui-elements/commit/27603b78f1c8d271baa23e93dfde2acc8e7e5727))
575
-
576
-
577
-
578
-
579
-
580
- # [3.101.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.100.0...@kiva/kv-components@3.101.0) (2024-09-05)
581
-
582
-
583
- ### Features
584
-
585
- * move treemap into repo ([e75bd3c](https://github.com/kiva/kv-ui-elements/commit/e75bd3c83d7ede41dc07196392bafdf941b0bcc3))
586
-
587
-
588
-
589
-
590
-
591
- # [3.100.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.99.0...@kiva/kv-components@3.100.0) (2024-09-04)
592
-
593
-
594
- ### Features
595
-
596
- * use kiva fork of treemap repo ([50cc510](https://github.com/kiva/kv-ui-elements/commit/50cc510199e37763512dfb3c8e244153835ab16d))
597
-
598
-
599
-
600
-
601
-
602
- # [3.99.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.98.1...@kiva/kv-components@3.99.0) (2024-09-04)
603
-
604
-
605
- ### Features
606
-
607
- * desktop side sheet component added to library ([#454](https://github.com/kiva/kv-ui-elements/issues/454)) ([5f140cb](https://github.com/kiva/kv-ui-elements/commit/5f140cbf2a05833e2c08bdf9dadb7ce9cbdb7194))
608
-
609
-
610
-
611
-
612
-
613
- ## [3.98.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.98.0...@kiva/kv-components@3.98.1) (2024-09-04)
614
-
615
-
616
- ### Bug Fixes
617
-
618
- * resolve chart issue with vue 3 ([93716c6](https://github.com/kiva/kv-ui-elements/commit/93716c61bebff132a6bb6bd8138a3ffab2336c0b))
619
-
620
-
621
-
622
-
623
-
624
- # [3.98.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.97.0...@kiva/kv-components@3.98.0) (2024-09-03)
625
-
626
-
627
- ### Features
628
-
629
- * add bookmark functionality to new loan card ([10ddade](https://github.com/kiva/kv-ui-elements/commit/10ddade2555770635b14272534791f6b6931d6d0))
630
-
631
-
632
-
633
-
634
-
635
- # [3.97.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.96.0...@kiva/kv-components@3.97.0) (2024-08-29)
636
-
637
-
638
- ### Features
639
-
640
- * emitted event added to pie chart component ([#452](https://github.com/kiva/kv-ui-elements/issues/452)) ([1d95611](https://github.com/kiva/kv-ui-elements/commit/1d95611471b25b3c2f5fb9e26431295bd1942a1f))
641
-
642
-
643
-
644
-
645
-
646
- # [3.96.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.95.1...@kiva/kv-components@3.96.0) (2024-08-28)
647
-
648
-
649
- ### Features
650
-
651
- * async countries border data import ([#451](https://github.com/kiva/kv-ui-elements/issues/451)) ([aa27135](https://github.com/kiva/kv-ui-elements/commit/aa2713540d61ad2cd780a0fdfbfd8249030d9cbd))
652
-
653
-
654
-
655
-
656
-
657
- ## [3.95.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.95.0...@kiva/kv-components@3.95.1) (2024-08-28)
658
-
659
-
660
- ### Bug Fixes
661
-
662
- * props usage removed reactivity ([6795042](https://github.com/kiva/kv-ui-elements/commit/6795042bfcc11e133781e2591eaee4035cfd7d63))
663
-
664
-
665
-
666
-
667
-
668
- # [3.95.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.94.0...@kiva/kv-components@3.95.0) (2024-08-28)
669
-
670
-
671
- ### Bug Fixes
672
-
673
- * add story for long borrower name ([da58fc9](https://github.com/kiva/kv-ui-elements/commit/da58fc9a078626577370eea41a0d9336edc2c74e))
674
- * allow new card to be pull width ([59488dc](https://github.com/kiva/kv-ui-elements/commit/59488dc7e9550d8df38f73fe0b859844e65c6576))
675
- * fully funded card ([17a9156](https://github.com/kiva/kv-ui-elements/commit/17a9156fc8003f2a19feb030cfe1e1ba369222dc))
676
- * general new loan card styling tweaks ([dac3bb1](https://github.com/kiva/kv-ui-elements/commit/dac3bb14d62c97b04e7979e0c512edc4c90634c8))
677
- * hide country for US loans ([5353e0f](https://github.com/kiva/kv-ui-elements/commit/5353e0f9b1678d013becf7775bb4c408cf72887a))
678
- * one more small styling change ([042da40](https://github.com/kiva/kv-ui-elements/commit/042da402e089805260f4e465c8d237baf6bfe642))
679
-
680
-
681
- ### Features
682
-
683
- * add emojis and colors to loan tags ([8d002c2](https://github.com/kiva/kv-ui-elements/commit/8d002c25a243c305fae5113305a604c2f34746e4))
684
-
685
-
686
-
687
-
688
-
689
- # [3.94.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.93.0...@kiva/kv-components@3.94.0) (2024-08-23)
690
-
691
-
692
- ### Features
693
-
694
- * charts added to library ([#447](https://github.com/kiva/kv-ui-elements/issues/447)) ([575bd80](https://github.com/kiva/kv-ui-elements/commit/575bd80fb1700a38732a2b8cafbeb5cc5374764b))
695
-
696
-
697
-
698
-
699
-
700
- # [3.93.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.92.1...@kiva/kv-components@3.93.0) (2024-08-22)
701
-
702
-
703
- ### Features
704
-
705
- * carousel circle effect ([c982be4](https://github.com/kiva/kv-ui-elements/commit/c982be4d088f18cb53b5d97b3071fa7dac72e1c6))
706
-
707
-
708
-
709
-
710
-
711
- ## [3.92.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.92.0...@kiva/kv-components@3.92.1) (2024-08-19)
712
-
713
-
714
- ### Bug Fixes
715
-
716
- * vite has some complications around importing json ([7a5ced1](https://github.com/kiva/kv-ui-elements/commit/7a5ced1172e319a83b12d674529c81977c95a993))
717
-
718
-
719
-
720
-
721
-
722
- # [3.92.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.91.1...@kiva/kv-components@3.92.0) (2024-08-16)
723
-
724
-
725
- ### Features
726
-
727
- * dotted version for carousel controls ([#444](https://github.com/kiva/kv-ui-elements/issues/444)) ([a719d75](https://github.com/kiva/kv-ui-elements/commit/a719d75ce7622695668fe1467bf1129d916800c2))
728
-
729
-
730
-
731
-
732
-
733
- ## [3.91.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.91.0...@kiva/kv-components@3.91.1) (2024-08-14)
734
-
735
-
736
- ### Bug Fixes
737
-
738
- * resolve issue found in ui vue migration ([0050e5e](https://github.com/kiva/kv-ui-elements/commit/0050e5e93cf189f18fda0c468a577546f5f1911c))
739
-
740
-
741
-
742
-
743
-
744
- # [3.91.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.90.5...@kiva/kv-components@3.91.0) (2024-08-14)
745
-
746
-
747
- ### Features
748
-
749
- * country layers added to leaflet map ([#441](https://github.com/kiva/kv-ui-elements/issues/441)) ([97c35b5](https://github.com/kiva/kv-ui-elements/commit/97c35b5cd79f8d53a48b879694d988acfb4823e6))
750
-
751
-
752
-
753
-
754
-
755
- ## [3.90.5](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.90.4...@kiva/kv-components@3.90.5) (2024-08-06)
756
-
757
-
758
- ### Bug Fixes
759
-
760
- * use TW class inline to make overwriting simpler ([3af651f](https://github.com/kiva/kv-ui-elements/commit/3af651fbf961d06a631381029daa43f02550546c))
761
-
762
-
763
-
764
-
765
-
766
- ## [3.90.4](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.90.3...@kiva/kv-components@3.90.4) (2024-08-06)
767
-
768
-
769
- ### Bug Fixes
770
-
771
- * use an image size we already have a retina size for ([109a303](https://github.com/kiva/kv-ui-elements/commit/109a303ba7ce6bd6830109e4323a9e25636556bf))
772
-
773
-
774
-
775
-
776
-
777
- ## [3.90.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.90.2...@kiva/kv-components@3.90.3) (2024-08-06)
778
-
779
-
780
- ### Bug Fixes
781
-
782
- * adjust new card styling ([875d701](https://github.com/kiva/kv-ui-elements/commit/875d701b951660444f8d00d7ae1596958df604f3))
783
-
784
-
785
-
786
-
787
-
788
- ## [3.90.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.90.1...@kiva/kv-components@3.90.2) (2024-08-05)
789
-
790
-
791
- ### Bug Fixes
792
-
793
- * relative node_modules path broke when imported into another app ([3bb1c5d](https://github.com/kiva/kv-ui-elements/commit/3bb1c5d5db0701c41691bcd588421e6b4dd0ea19))
794
-
795
-
796
-
797
-
798
-
799
- ## [3.90.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.90.0...@kiva/kv-components@3.90.1) (2024-08-02)
800
-
801
- **Note:** Version bump only for package @kiva/kv-components
802
-
803
-
804
-
805
-
806
-
807
- # [3.90.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.89.1...@kiva/kv-components@3.90.0) (2024-07-26)
808
-
809
-
810
- ### Bug Fixes
811
-
812
- * revert new loan card ([84ee01e](https://github.com/kiva/kv-ui-elements/commit/84ee01e11c23d45f41389c003acaba843b50d103))
813
-
814
-
815
- ### Features
816
-
817
- * remove clickable tags exp ([afba87d](https://github.com/kiva/kv-ui-elements/commit/afba87dd24a9123607ccf6d8a83e81efab2a2a34))
818
-
819
-
820
-
821
-
822
-
823
- ## [3.89.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.89.0...@kiva/kv-components@3.89.1) (2024-07-24)
824
-
825
-
826
- ### Bug Fixes
827
-
828
- * remove top margin from cart modal ([d789a53](https://github.com/kiva/kv-ui-elements/commit/d789a53b4ce498d1945d7160613af4d5e11431ab))
829
-
830
-
831
-
832
-
833
-
834
- # [3.89.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.88.1...@kiva/kv-components@3.89.0) (2024-07-23)
835
-
836
-
837
- ### Bug Fixes
838
-
839
- * flag-icons import ([0b58418](https://github.com/kiva/kv-ui-elements/commit/0b58418bf5aeb58cb8eefc265c228092e6e761e4))
840
- * indent, use kvFlag and some refactor ([4fbc11a](https://github.com/kiva/kv-ui-elements/commit/4fbc11a03fa2970e7d8c3cc340aa144b9da35c24))
841
- * line-clamp in loan use ([f4cf963](https://github.com/kiva/kv-ui-elements/commit/f4cf963a567adc6ba23349cbe0da1bc2d15f24d1))
842
- * loan name clickable ([18f63ca](https://github.com/kiva/kv-ui-elements/commit/18f63ca60d08f92e034cae73e3eb326b2a61f735))
843
- * loan use template ([4efe849](https://github.com/kiva/kv-ui-elements/commit/4efe8493ec1dce8a3edb73d17e47c1fb8e308be2))
844
- * remove class props for deep ([c6923dc](https://github.com/kiva/kv-ui-elements/commit/c6923dc3ff576be80efc69f72a9cf6d35974aef7))
845
- * remove kvflag from loan card ([1e2bba8](https://github.com/kiva/kv-ui-elements/commit/1e2bba8c726e7702aa52efb765651a138feb2220))
846
-
847
-
848
- ### Features
849
-
850
- * introduction card component and story ([7115800](https://github.com/kiva/kv-ui-elements/commit/71158004b0b9a18e9bf1ba8375c213c1c3ca251f))
851
- * kvflag component and new loan card for homepage ([8cf61bb](https://github.com/kiva/kv-ui-elements/commit/8cf61bb62820c6f9ce280d0f864f5b58d5279694))
852
- * toggle flag border ([2a782a1](https://github.com/kiva/kv-ui-elements/commit/2a782a1c9bec4ca9d0d3f60a7e9a6d44a310956c))
853
- * using flag emoticons ([159497b](https://github.com/kiva/kv-ui-elements/commit/159497b08bb1efb5989544df068624cca3c6929b))
854
-
855
-
856
-
857
-
858
-
859
- ## [3.88.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.88.0...@kiva/kv-components@3.88.1) (2024-07-22)
860
-
861
-
862
- ### Bug Fixes
863
-
864
- * remove margin in cart modal ([3f40f9a](https://github.com/kiva/kv-ui-elements/commit/3f40f9a1239af24eb7c00359c2825d2d55edefa9))
865
-
866
-
867
-
868
-
869
-
870
- # [3.88.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.87.4...@kiva/kv-components@3.88.0) (2024-07-19)
871
-
872
-
873
- ### Bug Fixes
874
-
875
- * adjust underline after review ([979d47c](https://github.com/kiva/kv-ui-elements/commit/979d47c6a96c22f4e49b799e57dba412e39e15db))
876
-
877
-
878
- ### Features
879
-
880
- * brush-stroke underline for headings mvp MP-348 ([6211527](https://github.com/kiva/kv-ui-elements/commit/621152741bd537da6026984569a7775767a2c3ec))
881
-
882
-
883
-
884
-
885
-
886
- ## [3.87.4](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.87.3...@kiva/kv-components@3.87.4) (2024-07-17)
887
-
888
-
889
- ### Bug Fixes
890
-
891
- * increase quality setting for small contentful images ([9a75d76](https://github.com/kiva/kv-ui-elements/commit/9a75d76837240dc7f07cd04097575677bd7cbdac))
892
-
893
-
894
-
895
-
896
-
897
- ## [3.87.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.87.2...@kiva/kv-components@3.87.3) (2024-07-16)
898
-
899
-
900
- ### Bug Fixes
901
-
902
- * set full width for cart modal in tablet ([e04445a](https://github.com/kiva/kv-ui-elements/commit/e04445a14cace3c6b3988a95dd2114b44bf7828b))
903
-
904
-
905
-
906
-
907
-
908
- ## [3.87.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.87.1...@kiva/kv-components@3.87.2) (2024-07-16)
909
-
910
- **Note:** Version bump only for package @kiva/kv-components
911
-
912
-
913
-
914
-
915
-
916
- ## [3.87.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.87.0...@kiva/kv-components@3.87.1) (2024-07-12)
917
-
918
-
919
- ### Bug Fixes
920
-
921
- * handle long names in cart modal ([a4a5afa](https://github.com/kiva/kv-ui-elements/commit/a4a5afa60b65fcdd18016af4e156eb0421c86fe3))
922
-
923
-
924
-
925
-
926
-
927
- # [3.87.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.86.2...@kiva/kv-components@3.87.0) (2024-07-12)
928
-
929
-
930
- ### Features
931
-
932
- * dark stone theme provider added ([#426](https://github.com/kiva/kv-ui-elements/issues/426)) ([8a8ea0a](https://github.com/kiva/kv-ui-elements/commit/8a8ea0aa548c9e0e125fa2219a53a2870cca289c))
933
-
934
-
935
-
936
-
937
-
938
- ## [3.86.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.86.1...@kiva/kv-components@3.86.2) (2024-07-12)
939
-
940
- **Note:** Version bump only for package @kiva/kv-components
941
-
942
-
943
-
944
-
945
-
946
- ## [3.86.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.86.0...@kiva/kv-components@3.86.1) (2024-07-12)
947
-
948
-
949
- ### Bug Fixes
950
-
951
- * modal size on desktop ([79edbb9](https://github.com/kiva/kv-ui-elements/commit/79edbb9127259d9883b93ba1b564b3627452d90a))
952
- * modal title ([69074c6](https://github.com/kiva/kv-ui-elements/commit/69074c67647fb873ea4eef703f5f8263544d1638))
953
-
954
-
955
-
956
-
957
-
958
- # [3.86.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.85.0...@kiva/kv-components@3.86.0) (2024-07-12)
959
-
960
-
961
- ### Bug Fixes
962
-
963
- * adding tracking info ([a666513](https://github.com/kiva/kv-ui-elements/commit/a6665130d65f350d119c5e5669b6dd45a7e0ddef))
964
- * lint ([a197c47](https://github.com/kiva/kv-ui-elements/commit/a197c47ea65c2927d4b60bb9f2533622dbae6f85))
965
- * missing js docs ([1370e81](https://github.com/kiva/kv-ui-elements/commit/1370e81d8baecf49e6b40b84cad527ea68779763))
966
- * remove unnecesary important in loan img ([014b48d](https://github.com/kiva/kv-ui-elements/commit/014b48d5506782fdcb6aa102ec3fc4d68f042012))
967
-
968
-
969
- ### Features
970
-
971
- * add secondary btn ([579c61a](https://github.com/kiva/kv-ui-elements/commit/579c61ad6d7c0b25cb0a6f7e01fb2da5c58c9c86))
972
- * create new cart modal component ([3719d2b](https://github.com/kiva/kv-ui-elements/commit/3719d2b3aaa47cb2f9b856c577aa1230619aab11))
973
-
974
-
975
-
976
-
977
-
978
- # [3.85.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.84.0...@kiva/kv-components@3.85.0) (2024-07-10)
979
-
980
-
981
- ### Features
982
-
983
- * carousel controls arrow added for aside version ([#423](https://github.com/kiva/kv-ui-elements/issues/423)) ([f1f8fb3](https://github.com/kiva/kv-ui-elements/commit/f1f8fb337b4a8ffb343e8341ce7a8d932805df1f))
984
-
985
-
986
-
987
-
988
-
989
- # [3.84.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.83.2...@kiva/kv-components@3.84.0) (2024-07-08)
990
-
991
-
992
- ### Features
993
-
994
- * aside controls variant added to carousel component ([#420](https://github.com/kiva/kv-ui-elements/issues/420)) ([d50ca9e](https://github.com/kiva/kv-ui-elements/commit/d50ca9eaa9023d437a5b9e385b95bfdecee7b122))
995
-
996
-
997
-
998
-
999
-
1000
- ## [3.83.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.83.1...@kiva/kv-components@3.83.2) (2024-06-25)
1001
-
1002
-
1003
- ### Bug Fixes
1004
-
1005
- * max dimensions on kvContentfulImg ([#419](https://github.com/kiva/kv-ui-elements/issues/419)) ([4496979](https://github.com/kiva/kv-ui-elements/commit/4496979544fa7d9d941111bff234aae58aa5ca16))
1006
-
1007
-
1008
-
1009
-
1010
-
1011
- ## [3.83.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.83.0...@kiva/kv-components@3.83.1) (2024-06-07)
1012
-
1013
-
1014
- ### Bug Fixes
1015
-
1016
- * event is firing twice ([#417](https://github.com/kiva/kv-ui-elements/issues/417)) ([3e30e40](https://github.com/kiva/kv-ui-elements/commit/3e30e4023c6d6af324fc99e805b0f10d36934c2e))
1017
-
1018
-
1019
-
1020
-
1021
-
1022
- # [3.83.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.82.1...@kiva/kv-components@3.83.0) (2024-06-07)
1023
-
1024
-
1025
- ### Features
1026
-
1027
- * implement custom loan details on loan card ([#416](https://github.com/kiva/kv-ui-elements/issues/416)) ([13a7a39](https://github.com/kiva/kv-ui-elements/commit/13a7a39ed9d073aa3ee7319b69c6b46f26d45d5b))
1028
-
1029
-
1030
-
1031
-
1032
-
1033
- ## [3.82.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.82.0...@kiva/kv-components@3.82.1) (2024-06-03)
1034
-
1035
-
1036
- ### Bug Fixes
1037
-
1038
- * loan card button secondary action and destination ([#411](https://github.com/kiva/kv-ui-elements/issues/411)) ([9cf20db](https://github.com/kiva/kv-ui-elements/commit/9cf20dbd9865a685ae19a5a4d553bb3345c680b8))
1039
-
1040
-
1041
-
1042
-
1043
-
1044
- # [3.82.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.81.0...@kiva/kv-components@3.82.0) (2024-06-03)
1045
-
1046
-
1047
- ### Features
1048
-
1049
- * remove amount lent activity feed ([#410](https://github.com/kiva/kv-ui-elements/issues/410)) ([82a2216](https://github.com/kiva/kv-ui-elements/commit/82a22166f70085ad5a725e3e58f2fb3dd7eafa78))
1050
-
1051
-
1052
-
1053
-
1054
-
1055
- # [3.81.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.80.1...@kiva/kv-components@3.81.0) (2024-05-29)
1056
-
1057
-
1058
- ### Bug Fixes
1059
-
1060
- * removed unneeded code ([15c19bb](https://github.com/kiva/kv-ui-elements/commit/15c19bb1cdd6ac65910117d077dff38d48fa9cb3))
1061
-
1062
-
1063
- ### Features
1064
-
1065
- * secondary handler remove default behavior if set ([bbf91f8](https://github.com/kiva/kv-ui-elements/commit/bbf91f8b77a79f8204b0050ef1c466573f63228a))
1066
-
1067
-
1068
-
1069
-
1070
-
1071
- ## [3.80.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.80.0...@kiva/kv-components@3.80.1) (2024-05-22)
1072
-
1073
-
1074
- ### Bug Fixes
1075
-
1076
- * left some unsaved changes out of the branch, adding those in ([a8498a3](https://github.com/kiva/kv-ui-elements/commit/a8498a3012abe50cf6254e3734a47df31314c473))
1077
-
1078
-
1079
-
1080
-
1081
-
1082
- # [3.80.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.79.0...@kiva/kv-components@3.80.0) (2024-05-22)
1083
-
1084
-
1085
- ### Bug Fixes
1086
-
1087
- * add showContributors condition ([2fe0be3](https://github.com/kiva/kv-ui-elements/commit/2fe0be34ea8cb18fdce37a0eba979d089a850426))
1088
-
1089
-
1090
- ### Features
1091
-
1092
- * show contributors section of loan card ([e65e80f](https://github.com/kiva/kv-ui-elements/commit/e65e80f1862c93e45b9f3a05a3a01d3585b4fc7c))
1093
-
1094
-
1095
-
1096
-
1097
-
1098
- # [3.79.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.78.2...@kiva/kv-components@3.79.0) (2024-05-21)
1099
-
1100
-
1101
- ### Bug Fixes
1102
-
1103
- * change cta2ButtonText to loanInBasketButtonText ([f052b7b](https://github.com/kiva/kv-ui-elements/commit/f052b7bdee874b5e2447b437cd90c7751ced4bce))
1104
- * remove button story edits ([9dfbf98](https://github.com/kiva/kv-ui-elements/commit/9dfbf981adc2f90384650044f35e6179dbbd851f))
1105
- * remove showSecondaryButton in favor of condition to make code more readable ([8223460](https://github.com/kiva/kv-ui-elements/commit/8223460d56480267b2d4f16e99c7becc1e72b40e))
1106
- * set consistent default values for buttons ([041fef2](https://github.com/kiva/kv-ui-elements/commit/041fef2cc21b11b4b4d11f342c8fb7a7dcee222f))
1107
-
1108
-
1109
- ### Features
1110
-
1111
- * loan card primary and secondary button customization options ([77ecb2e](https://github.com/kiva/kv-ui-elements/commit/77ecb2e90c1df81201029ba8906f217cf9f9d6b2))
1112
-
1113
-
1114
-
1115
-
1116
-
1117
- ## [3.78.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.78.1...@kiva/kv-components@3.78.2) (2024-05-20)
1118
-
1119
- **Note:** Version bump only for package @kiva/kv-components
1120
-
1121
-
1122
-
1123
-
1124
-
1125
- ## [3.78.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.78.0...@kiva/kv-components@3.78.1) (2024-05-15)
1126
-
1127
-
1128
- ### Bug Fixes
1129
-
1130
- * change activity copy in team pick loan ([190ea03](https://github.com/kiva/kv-ui-elements/commit/190ea03a93befc0fb60587a61b408c06a9f84be0))
1131
-
1132
-
1133
-
1134
-
1135
-
1136
- # [3.78.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.77.0...@kiva/kv-components@3.78.0) (2024-05-15)
1137
-
1138
-
1139
- ### Features
1140
-
1141
- * start index added to kvcarousel component ([#398](https://github.com/kiva/kv-ui-elements/issues/398)) ([0477155](https://github.com/kiva/kv-ui-elements/commit/0477155d8bb02cce80777dbb3d2296b63d146ea8))
1142
-
1143
-
1144
-
1145
-
1146
-
1147
- # [3.77.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.76.0...@kiva/kv-components@3.77.0) (2024-05-08)
1148
-
1149
-
1150
- ### Features
1151
-
1152
- * clickable activity tag ([#397](https://github.com/kiva/kv-ui-elements/issues/397)) ([0b808a5](https://github.com/kiva/kv-ui-elements/commit/0b808a591d1b6f43c12df8f6f54920cd77f59125))
1153
-
1154
-
1155
-
1156
-
1157
-
1158
- # [3.76.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.75.2...@kiva/kv-components@3.76.0) (2024-05-02)
1159
-
1160
-
1161
- ### Bug Fixes
1162
-
1163
- * removal of unnecessary classes, v-if, and added slot tag ([dd46624](https://github.com/kiva/kv-ui-elements/commit/dd46624bde0f99f3889d11cc0c68bf5b0eeab182))
1164
- * style classes -> Tailwinds classes ([920e364](https://github.com/kiva/kv-ui-elements/commit/920e364749d47a8e73770a3c43eb5c3e1a36df1d))
1165
- * tags within storybook component, also font for title ([23e6c0d](https://github.com/kiva/kv-ui-elements/commit/23e6c0d7c50d6c097960553356740aa10c9ffff2))
1166
-
1167
-
1168
- ### Features
1169
-
1170
- * newly created global chip component [CIT-1429] ([82cb335](https://github.com/kiva/kv-ui-elements/commit/82cb33538cadbc0c817501df70e36a37c21d5dd8))
1171
- * scss section removal, additional stories, new props + setup ([c7000d7](https://github.com/kiva/kv-ui-elements/commit/c7000d7f4d0e4446b40de0840805079aa863473a))
1172
-
1173
-
1174
-
1175
-
1176
-
1177
- ## [3.75.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.75.1...@kiva/kv-components@3.75.2) (2024-04-29)
1178
-
1179
-
1180
- ### Bug Fixes
1181
-
1182
- * category callouts were missing props to make them clickable ([6d7918b](https://github.com/kiva/kv-ui-elements/commit/6d7918bda0ddb8bff1dc38fa985409503c2d2616))
1183
-
1184
-
1185
-
1186
-
1187
-
1188
- ## [3.75.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.75.0...@kiva/kv-components@3.75.1) (2024-04-26)
1189
-
1190
-
1191
- ### Bug Fixes
1192
-
1193
- * activity removed from clickable tags ([#394](https://github.com/kiva/kv-ui-elements/issues/394)) ([e59496a](https://github.com/kiva/kv-ui-elements/commit/e59496afceb9b7964078452c57dd401cb6b2dab4))
1194
-
1195
-
1196
-
1197
-
1198
-
1199
- # [3.75.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.74.1...@kiva/kv-components@3.75.0) (2024-04-26)
1200
-
1201
-
1202
- ### Features
1203
-
1204
- * clickable tags added to classic loan card ([#393](https://github.com/kiva/kv-ui-elements/issues/393)) ([3677c91](https://github.com/kiva/kv-ui-elements/commit/3677c915855d68b125f71a0660d4fbb4628b8133))
1205
-
1206
-
1207
-
1208
-
1209
-
1210
- ## [3.74.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.74.0...@kiva/kv-components@3.74.1) (2024-04-25)
1211
-
1212
- **Note:** Version bump only for package @kiva/kv-components
1213
-
1214
-
1215
-
1216
-
1217
-
1218
- # [3.74.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.73.2...@kiva/kv-components@3.74.0) (2024-04-23)
1219
-
1220
-
1221
- ### Bug Fixes
1222
-
1223
- * adjusted comment ([e73e6a8](https://github.com/kiva/kv-ui-elements/commit/e73e6a842486ec5ce951a3130348cb1e3428288d))
1224
- * extracted CTA dropdown methods and added unit tests ([4ef99de](https://github.com/kiva/kv-ui-elements/commit/4ef99deb24399fcb619c41d20370ad79812f1b00))
1225
- * removed duplicate test ([838d6d4](https://github.com/kiva/kv-ui-elements/commit/838d6d48c85bbfd7759fd5266498219817e00cd7))
1226
-
1227
-
1228
- ### Features
1229
-
1230
- * $1000 lend CTA options ([4f89352](https://github.com/kiva/kv-ui-elements/commit/4f8935237acb9c1f1655b77cc604fe68b21ab077))
1231
-
1232
-
1233
-
1234
-
1235
-
1236
- ## [3.73.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.73.1...@kiva/kv-components@3.73.2) (2024-04-23)
1237
-
1238
-
1239
- ### Bug Fixes
1240
-
1241
- * add type stories for italics and font weight for serif ([1133777](https://github.com/kiva/kv-ui-elements/commit/11337774fcb8b12ecc93bd11943b11f66bdc53e6))
1242
- * testing baseline configs for including new dovetail webfont ([7079590](https://github.com/kiva/kv-ui-elements/commit/7079590f9b3ab0bbfb91b81ab6aa98fd4ae2f113))
1243
-
1244
-
1245
-
1246
-
1247
-
1248
- ## [3.73.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.73.0...@kiva/kv-components@3.73.1) (2024-04-17)
1249
-
1250
-
1251
- ### Bug Fixes
1252
-
1253
- * upgrade to latest vue-demi to support vue 2.7 ([c86ea1f](https://github.com/kiva/kv-ui-elements/commit/c86ea1f4d5a2cb56e813d0f1c2ee59e7cfcf0ca4))
1254
-
1255
-
1256
-
1257
-
1258
-
1259
- # [3.73.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.72.0...@kiva/kv-components@3.73.0) (2024-04-10)
1260
-
1261
-
1262
- ### Features
1263
-
1264
- * change voting card icon ([#388](https://github.com/kiva/kv-ui-elements/issues/388)) ([c7a5061](https://github.com/kiva/kv-ui-elements/commit/c7a50617a591e9734f996ad87e80d06b2292dc4d))
1265
-
1266
-
1267
-
1268
-
1269
-
1270
- # [3.72.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.71.2...@kiva/kv-components@3.72.0) (2024-04-05)
1271
-
1272
-
1273
- ### Features
1274
-
1275
- * huge lent amount added to lend cta dropdown ([#387](https://github.com/kiva/kv-ui-elements/issues/387)) ([0874f5c](https://github.com/kiva/kv-ui-elements/commit/0874f5c888bb388fc9e9f7dc857f2c92b919c78b))
1276
-
1277
-
1278
-
1279
-
1280
-
1281
- ## [3.71.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.71.1...@kiva/kv-components@3.71.2) (2024-04-03)
1282
-
1283
-
1284
- ### Bug Fixes
1285
-
1286
- * icon needs to be pulled to the right on voting card for small titles ([571d372](https://github.com/kiva/kv-ui-elements/commit/571d372d54c20c08203ef901cd8d55023e12477a))
1287
- * pinned title to top of area below image and vote + progress to bottom of card ([24f1609](https://github.com/kiva/kv-ui-elements/commit/24f1609f4ccc6211c02baef3530dba6bfe593271))
1288
-
1289
-
1290
-
1291
-
1292
-
1293
- ## [3.71.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.71.0...@kiva/kv-components@3.71.1) (2024-04-03)
1294
-
1295
-
1296
- ### Bug Fixes
1297
-
1298
- * fixed bug related to icon resizing in voting card ([7dc424c](https://github.com/kiva/kv-ui-elements/commit/7dc424ce0aa83f627240c50bb9925033f50c2cc2))
1299
-
1300
-
1301
-
1302
-
1303
-
1304
- # [3.71.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.70.0...@kiva/kv-components@3.71.0) (2024-04-02)
1305
-
1306
-
1307
- ### Features
1308
-
1309
- * pass error message to loan card and activity feed ([#384](https://github.com/kiva/kv-ui-elements/issues/384)) ([90f3ebc](https://github.com/kiva/kv-ui-elements/commit/90f3ebc45594ffbcacabe19d454b184573208257))
1310
-
1311
-
1312
-
1313
-
1314
-
1315
- # [3.70.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.69.1...@kiva/kv-components@3.70.0) (2024-04-01)
1316
-
1317
-
1318
- ### Features
1319
-
1320
- * activity feed added to loan card ([#383](https://github.com/kiva/kv-ui-elements/issues/383)) ([a7a3bfc](https://github.com/kiva/kv-ui-elements/commit/a7a3bfc600742b700eb221fa77d9951d793ca86b))
1321
-
1322
-
1323
-
1324
-
1325
-
1326
- ## [3.69.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.69.0...@kiva/kv-components@3.69.1) (2024-03-27)
1327
-
1328
-
1329
- ### Bug Fixes
1330
-
1331
- * remove reaction wasn't working ([4fa9d53](https://github.com/kiva/kv-ui-elements/commit/4fa9d5358da329c3bc4fcd49e4d0d6ef4d3d830c))
1332
-
1333
-
1334
-
1335
-
1336
-
1337
- # [3.69.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.68.1...@kiva/kv-components@3.69.0) (2024-03-27)
1338
-
1339
-
1340
- ### Features
1341
-
1342
- * adjust comment components for chat product ([077a8ff](https://github.com/kiva/kv-ui-elements/commit/077a8fffbd8df44ee91ce2cf97b7f460fdbc1b49))
1343
-
1344
-
1345
-
1346
-
1347
-
1348
- ## [3.68.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.68.0...@kiva/kv-components@3.68.1) (2024-03-26)
1349
-
1350
-
1351
- ### Bug Fixes
1352
-
1353
- * activity feed item bg should be white ([b60cc9d](https://github.com/kiva/kv-ui-elements/commit/b60cc9d25cd397836d805461f7795092e3a1d187))
1354
-
1355
-
1356
-
1357
-
1358
-
1359
- # [3.68.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.67.0...@kiva/kv-components@3.68.0) (2024-03-25)
1360
-
1361
-
1362
- ### Features
1363
-
1364
- * info icon added to voting card ([cd7eb7e](https://github.com/kiva/kv-ui-elements/commit/cd7eb7ed944637871c45bd0644b20f18b2184401))
1365
-
1366
-
1367
-
1368
-
1369
-
1370
- # [3.67.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.66.2...@kiva/kv-components@3.67.0) (2024-03-25)
1371
-
1372
-
1373
- ### Features
1374
-
1375
- * inline activity feed amount lent updated ([#376](https://github.com/kiva/kv-ui-elements/issues/376)) ([cdb52ec](https://github.com/kiva/kv-ui-elements/commit/cdb52ec5e85f258efbf5c5e44952523cb0dd454a))
1376
-
1377
-
1378
-
1379
-
1380
-
1381
- ## [3.66.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.66.1...@kiva/kv-components@3.66.2) (2024-03-22)
1382
-
1383
-
1384
- ### Bug Fixes
1385
-
1386
- * loan card bug fixed ([#375](https://github.com/kiva/kv-ui-elements/issues/375)) ([724be25](https://github.com/kiva/kv-ui-elements/commit/724be2519ed7ee176a6c1fbe8c47b4fb9a825dc7))
1387
-
1388
-
1389
-
1390
-
1391
-
1392
- ## [3.66.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.66.0...@kiva/kv-components@3.66.1) (2024-03-21)
1393
-
1394
-
1395
- ### Bug Fixes
1396
-
1397
- * adjust commenting components initially for chat data ([f821dcf](https://github.com/kiva/kv-ui-elements/commit/f821dcf7762f5a0e584a788a5e551fd5762032e6))
1398
- * adjust for new data type ([99a33fb](https://github.com/kiva/kv-ui-elements/commit/99a33fbf4de6e4cab2d5759a7b0b4f94f8a707eb))
1399
- * another data tweak ([770be92](https://github.com/kiva/kv-ui-elements/commit/770be9278f1017a553e5d3480dc530824567a4f1))
1400
-
1401
-
1402
-
1403
-
1404
-
1405
- # [3.66.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.65.2...@kiva/kv-components@3.66.0) (2024-03-20)
1406
-
1407
-
1408
- ### Features
1409
-
1410
- * collapsable replies list added to commenting component ([#373](https://github.com/kiva/kv-ui-elements/issues/373)) ([612a880](https://github.com/kiva/kv-ui-elements/commit/612a8806ffd74411a774f6bdf5efb30e877abaa1))
1411
-
1412
-
1413
-
1414
-
1415
-
1416
- ## [3.65.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.65.1...@kiva/kv-components@3.65.2) (2024-03-19)
1417
-
1418
-
1419
- ### Bug Fixes
1420
-
1421
- * revert level 3 reactions and more specific error src ([dc8acac](https://github.com/kiva/kv-ui-elements/commit/dc8acaca403b438d34daca49e85442627883b08f))
1422
-
1423
-
1424
-
1425
-
1426
-
1427
- ## [3.65.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.65.0...@kiva/kv-components@3.65.1) (2024-03-19)
1428
-
1429
-
1430
- ### Bug Fixes
1431
-
1432
- * allow heart on last comment level ([3e876ed](https://github.com/kiva/kv-ui-elements/commit/3e876ed7fa7d113acbbc24983ad8f5f90c29c3da))
1433
-
1434
-
1435
-
1436
-
1437
-
1438
- # [3.65.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.64.0...@kiva/kv-components@3.65.0) (2024-03-19)
1439
-
1440
-
1441
- ### Features
1442
-
1443
- * logged in feats for commenting components ([#370](https://github.com/kiva/kv-ui-elements/issues/370)) ([bee56c9](https://github.com/kiva/kv-ui-elements/commit/bee56c9fa3451ef91e89b3b64a5f7846840fedcf))
1444
-
1445
-
1446
-
1447
-
1448
-
1449
- # [3.64.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.63.1...@kiva/kv-components@3.64.0) (2024-03-18)
1450
-
1451
-
1452
- ### Features
1453
-
1454
- * team pick label added to loan card component ([#369](https://github.com/kiva/kv-ui-elements/issues/369)) ([76803bf](https://github.com/kiva/kv-ui-elements/commit/76803bfd7b81497f1d34e537c0435d7fa7dd3606))
1455
-
1456
-
1457
-
1458
-
1459
-
1460
- ## [3.63.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.63.0...@kiva/kv-components@3.63.1) (2024-03-12)
1461
-
1462
-
1463
- ### Bug Fixes
1464
-
1465
- * fix data reference for comment list item ([0955f28](https://github.com/kiva/kv-ui-elements/commit/0955f28b8deeb067e8d393c2365dbdcab79e92df))
1466
-
1467
-
1468
-
1469
-
1470
-
1471
- # [3.63.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.62.1...@kiva/kv-components@3.63.0) (2024-03-08)
1472
-
1473
-
1474
- ### Features
1475
-
1476
- * inline activity feed components added ([#367](https://github.com/kiva/kv-ui-elements/issues/367)) ([32c782a](https://github.com/kiva/kv-ui-elements/commit/32c782a39d39100dcf24a7a322488d5e25b86d8b))
1477
-
1478
-
1479
-
1480
-
1481
-
1482
- ## [3.62.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.62.0...@kiva/kv-components@3.62.1) (2024-03-07)
1483
-
1484
-
1485
- ### Bug Fixes
1486
-
1487
- * remove centering on voting card category ([fc0d036](https://github.com/kiva/kv-ui-elements/commit/fc0d03604bcdf6157b716a93d3e62d758e765aad))
1488
-
1489
-
1490
-
1491
-
1492
-
1493
- # [3.62.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.61.0...@kiva/kv-components@3.62.0) (2024-03-05)
1494
-
1495
-
1496
- ### Bug Fixes
1497
-
1498
- * add comment regarding inject ([7a98c3b](https://github.com/kiva/kv-ui-elements/commit/7a98c3b017c9472c14ef0a26fdad53864aaf3ada))
1499
- * add provide to commenting stories ([01c1e53](https://github.com/kiva/kv-ui-elements/commit/01c1e5305cda4d2885afa1c4a4784630e7a6047d))
1500
-
1501
-
1502
- ### Features
1503
-
1504
- * update reply to match other commenting buttons ([6ad68a3](https://github.com/kiva/kv-ui-elements/commit/6ad68a3ddcce48089d12bd473f8fa3bfd7c30b5f))
1505
-
1506
-
1507
-
1508
-
1509
-
1510
- # [3.61.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.60.0...@kiva/kv-components@3.61.0) (2024-03-04)
1511
-
1512
-
1513
- ### Features
1514
-
1515
- * fetchlenderinfo method injected to comment item component ([#362](https://github.com/kiva/kv-ui-elements/issues/362)) ([2aba5e0](https://github.com/kiva/kv-ui-elements/commit/2aba5e0837d57eec77f2d1bee48ca2c3c127c1d4))
1516
-
1517
-
1518
-
1519
-
1520
-
1521
- # [3.60.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.59.1...@kiva/kv-components@3.60.0) (2024-03-04)
1522
-
1523
-
1524
- ### Bug Fixes
1525
-
1526
- * unit test update ([e0e943b](https://github.com/kiva/kv-ui-elements/commit/e0e943bf51a9f7775f9b1279dc449787d7d05055))
1527
-
1528
-
1529
- ### Features
1530
-
1531
- * use new avatar in commenting components ([c707f71](https://github.com/kiva/kv-ui-elements/commit/c707f71e87661feb93486d3b900d4f0a77aff353))
1532
-
1533
-
1534
-
1535
-
1536
-
1537
- ## [3.59.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.59.0...@kiva/kv-components@3.59.1) (2024-03-04)
1538
-
1539
-
1540
- ### Bug Fixes
1541
-
1542
- * comments count fixed ([#360](https://github.com/kiva/kv-ui-elements/issues/360)) ([cdbaf2d](https://github.com/kiva/kv-ui-elements/commit/cdbaf2d6e19e556cfb769805307466c24021567e))
1543
-
1544
-
1545
-
1546
-
1547
-
1548
- # [3.59.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.58.0...@kiva/kv-components@3.59.0) (2024-03-04)
1549
-
1550
-
1551
- ### Features
1552
-
1553
- * replies count added to reply commenting button ([#359](https://github.com/kiva/kv-ui-elements/issues/359)) ([87e4b01](https://github.com/kiva/kv-ui-elements/commit/87e4b01022641e774203274a0b3a353d1b2a37bc))
1554
-
1555
-
1556
-
1557
-
1558
-
1559
- # [3.58.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.57.0...@kiva/kv-components@3.58.0) (2024-03-01)
1560
-
1561
-
1562
- ### Bug Fixes
1563
-
1564
- * fallback to kiva logo if no image or name ([74cdc90](https://github.com/kiva/kv-ui-elements/commit/74cdc900a8c1f9783771a7428f2722f59f5edf09))
1565
-
1566
-
1567
- ### Features
1568
-
1569
- * port avatar component from cps to cover different avatar situations ([036506f](https://github.com/kiva/kv-ui-elements/commit/036506f7680646c8e432af1842fb55851a5c6b2c))
1570
-
1571
-
1572
-
1573
-
1574
-
1575
- # [3.57.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.56.1...@kiva/kv-components@3.57.0) (2024-03-01)
1576
-
1577
-
1578
- ### Bug Fixes
1579
-
1580
- * test failed because of whitespaces in value ([4591e93](https://github.com/kiva/kv-ui-elements/commit/4591e932a9c785f97019f47a8d7899142b2c1204))
1581
-
1582
-
1583
- ### Features
1584
-
1585
- * show number of likes ([c088fae](https://github.com/kiva/kv-ui-elements/commit/c088fae443da391871ef1783e64712d306b84007))
1586
-
1587
-
1588
-
1589
-
1590
-
1591
- ## [3.56.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.56.0...@kiva/kv-components@3.56.1) (2024-03-01)
1592
-
1593
-
1594
- ### Bug Fixes
1595
-
1596
- * remove country from voting card ([fee3dcb](https://github.com/kiva/kv-ui-elements/commit/fee3dcb7af0fd103dedca70c14448cfab91c66eb))
1597
-
1598
-
1599
-
1600
-
1601
-
1602
- # [3.56.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.55.2...@kiva/kv-components@3.56.0) (2024-03-01)
1603
-
1604
-
1605
- ### Features
1606
-
1607
- * update vote card to be able to hide percentage portion of card ([11c15b8](https://github.com/kiva/kv-ui-elements/commit/11c15b84b939f1a1781c5a24a6dbfd2be378c096))
1608
-
1609
-
1610
-
1611
-
1612
-
1613
- ## [3.55.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.55.1...@kiva/kv-components@3.55.2) (2024-03-01)
1614
-
1615
-
1616
- ### Bug Fixes
1617
-
1618
- * remove const var import ([#352](https://github.com/kiva/kv-ui-elements/issues/352)) ([4c1ca6a](https://github.com/kiva/kv-ui-elements/commit/4c1ca6a2d518ce1b1b72933b5f5296513d352fa2))
1619
-
1620
-
1621
-
1622
-
1623
-
1624
- ## [3.55.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.55.0...@kiva/kv-components@3.55.1) (2024-02-29)
1625
-
1626
- **Note:** Version bump only for package @kiva/kv-components
1627
-
1628
-
1629
-
1630
-
1631
-
1632
- # [3.55.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.54.0...@kiva/kv-components@3.55.0) (2024-02-29)
1633
-
1634
-
1635
- ### Bug Fixes
1636
-
1637
- * input width ([2489339](https://github.com/kiva/kv-ui-elements/commit/2489339c622ac45739bcc1eefc0a69837f90b841))
1638
- * when to send hide event and test not recognizing vue3 ([c3941a7](https://github.com/kiva/kv-ui-elements/commit/c3941a7a73a439846e6abf16b6dd0b29fa0e36f7))
1639
-
1640
-
1641
- ### Features
1642
-
1643
- * adding input for comment reply ([b18edf0](https://github.com/kiva/kv-ui-elements/commit/b18edf0ecd300f622379d160237fd750cf117fa1))
1644
- * update tests and remove handleClick for emits ([fc3c586](https://github.com/kiva/kv-ui-elements/commit/fc3c58667248fb4e44bb0a7558f6c88f97f299b1))
1645
-
1646
-
1647
-
1648
-
1649
-
1650
- # [3.54.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.53.0...@kiva/kv-components@3.54.0) (2024-02-28)
1651
-
1652
-
1653
- ### Features
1654
-
1655
- * kvcommentsheartbutton added for comments stuff ([#346](https://github.com/kiva/kv-ui-elements/issues/346)) ([57303da](https://github.com/kiva/kv-ui-elements/commit/57303daec80222c199556b296d720462265e53ac))
1656
-
1657
-
1658
-
1659
-
1660
-
1661
- # [3.53.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.52.1...@kiva/kv-components@3.53.0) (2024-02-26)
1662
-
1663
-
1664
- ### Bug Fixes
1665
-
1666
- * indentation in item component ([30aee02](https://github.com/kiva/kv-ui-elements/commit/30aee02d3c2e58c7c98fe6a58689a9824f56ef60))
1667
- * optional chaining for comment object ([bac9ba1](https://github.com/kiva/kv-ui-elements/commit/bac9ba199970966564bfab7d6a2e64bb92fea286))
1668
- * revert profile image and small fixes ([fc8cf74](https://github.com/kiva/kv-ui-elements/commit/fc8cf7440fb355fbfee0e8acfb2a849dd6513a11))
1669
- * using more accurate data for components ([043f1c2](https://github.com/kiva/kv-ui-elements/commit/043f1c2d47a5d22157785b9d972246823572e4fd))
1670
-
1671
-
1672
- ### Features
1673
-
1674
- * provisional comment list and item components ([642745c](https://github.com/kiva/kv-ui-elements/commit/642745ce1359e5cc9e3d98d122f26728b3dffda0))
1675
-
1676
-
1677
-
1678
-
1679
-
1680
- ## [3.52.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.52.0...@kiva/kv-components@3.52.1) (2024-02-01)
1681
-
1682
-
1683
- ### Bug Fixes
1684
-
1685
- * add back in comments container ([36a8a97](https://github.com/kiva/kv-ui-elements/commit/36a8a979aac47c425e32d87cd13160ad68b913cf))
1686
- * another tweak to how events emitted ([029367a](https://github.com/kiva/kv-ui-elements/commit/029367aeb1f38151a7d36e0a2246b82b14489cb3))
1687
- * minor test fix ([c95c486](https://github.com/kiva/kv-ui-elements/commit/c95c4866d05b2e711e8895868d72ddc6bb5b7a43))
1688
- * remove unneeded comment container ([71365b0](https://github.com/kiva/kv-ui-elements/commit/71365b0f6628d1d280f9fbd2b0adbad8688fd57c))
1689
-
1690
-
1691
-
1692
-
1693
-
1694
- # [3.52.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.51.0...@kiva/kv-components@3.52.0) (2024-01-31)
1695
-
1696
-
1697
- ### Bug Fixes
1698
-
1699
- * added missing suppression classes ([5d04867](https://github.com/kiva/kv-ui-elements/commit/5d048672f078d2d229372e37b896c9be025457d9))
1700
-
1701
-
1702
- ### Features
1703
-
1704
- * add comments add component ([1bf5fc3](https://github.com/kiva/kv-ui-elements/commit/1bf5fc388fee61a63f49775a15b50728c140a569))
1705
-
1706
-
1707
-
1708
-
1709
-
1710
- # [3.51.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.50.0...@kiva/kv-components@3.51.0) (2024-01-25)
1711
-
1712
-
1713
- ### Features
1714
-
1715
- * add basic comments container for future comment work ([4f1b3ab](https://github.com/kiva/kv-ui-elements/commit/4f1b3aba7f78ead3cf53a955bbb1b1243c4b2cda))
1716
-
1717
-
1718
-
1719
-
1720
-
1721
- # [3.50.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.49.1...@kiva/kv-components@3.50.0) (2024-01-19)
1722
-
1723
-
1724
- ### Bug Fixes
1725
-
1726
- * change component to take in a slot ([a3b733c](https://github.com/kiva/kv-ui-elements/commit/a3b733c644c7a431fb592e1b159cd551bd5e0f3c))
1727
- * restore missing class ([6781e31](https://github.com/kiva/kv-ui-elements/commit/6781e31170c729cf484a0aff11ca544f8cca7aec))
1728
-
1729
-
1730
- ### Features
1731
-
1732
- * make the voting cards capable of using borrower image or direct url as img src ([cedc03c](https://github.com/kiva/kv-ui-elements/commit/cedc03ce887815ef133e29e61a9770b633493d8f))
1733
-
1734
-
1735
-
1736
-
1737
-
1738
- ## [3.49.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.49.0...@kiva/kv-components@3.49.1) (2024-01-17)
1739
-
1740
-
1741
- ### Bug Fixes
1742
-
1743
- * correcting mistake with wrong function call ([904d39d](https://github.com/kiva/kv-ui-elements/commit/904d39df4afa9d470fc91a96d7e76fe782898448))
1744
- * editing classes for country / name tag ([aaac1c5](https://github.com/kiva/kv-ui-elements/commit/aaac1c561a24a192031977c7ea5a365789228740))
1745
-
1746
-
1747
-
1748
-
1749
-
1750
- # [3.49.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.48.3...@kiva/kv-components@3.49.0) (2024-01-16)
1751
-
1752
-
1753
- ### Features
1754
-
1755
- * vote button variant ([d58fe0c](https://github.com/kiva/kv-ui-elements/commit/d58fe0c9d16b3139d36e7d61bc2c3b4fbb5d1f0d))
1756
- * voting category cards ([8938dff](https://github.com/kiva/kv-ui-elements/commit/8938dff740c79eaf09e8543ad384c97decee2634))
1757
-
1758
-
1759
-
1760
-
1761
-
1762
- ## [3.48.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.48.2...@kiva/kv-components@3.48.3) (2023-12-08)
1763
-
1764
-
1765
- ### Bug Fixes
1766
-
1767
- * p4 tag on loan card ([8513e93](https://github.com/kiva/kv-ui-elements/commit/8513e93addcb68f9f6f17f4eb52ee4d33f6af481))
1768
-
1769
-
1770
-
1771
-
1772
-
1773
- ## [3.48.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.48.1...@kiva/kv-components@3.48.2) (2023-12-06)
1774
-
1775
-
1776
- ### Bug Fixes
1777
-
1778
- * **KvLightbox:** allow focus on open alerts, clicks on browser extensions and outside lightbox ([969cf63](https://github.com/kiva/kv-ui-elements/commit/969cf638d27212052ade5e08e7de9786018bef9e))
1779
-
1780
-
1781
-
1782
-
1783
-
1784
- ## [3.48.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.48.0...@kiva/kv-components@3.48.1) (2023-11-29)
1785
-
1786
- **Note:** Version bump only for package @kiva/kv-components
1787
-
1788
-
1789
-
1790
-
1791
-
1792
- # [3.48.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.47.0...@kiva/kv-components@3.48.0) (2023-11-20)
1793
-
1794
-
1795
- ### Features
1796
-
1797
- * map mega animation ([#315](https://github.com/kiva/kv-ui-elements/issues/315)) ([5adfe9c](https://github.com/kiva/kv-ui-elements/commit/5adfe9c5d7db3b05efa23962025ba5440e8a2e4a))
1798
-
1799
-
1800
-
1801
-
1802
-
1803
- # [3.47.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.46.3...@kiva/kv-components@3.47.0) (2023-10-23)
1804
-
1805
-
1806
- ### Features
1807
-
1808
- * prioritizing matching text in loan tag component ([#308](https://github.com/kiva/kv-ui-elements/issues/308)) ([2ac6ec1](https://github.com/kiva/kv-ui-elements/commit/2ac6ec129733eccaeeca93edd32f8e76d8f8f906))
1809
-
1810
-
1811
-
1812
-
1813
-
1814
- ## [3.46.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.46.2...@kiva/kv-components@3.46.3) (2023-10-17)
1815
-
1816
-
1817
- ### Bug Fixes
1818
-
1819
- * kvcountdowtimer component updated to show the remaining hours correctly ([#307](https://github.com/kiva/kv-ui-elements/issues/307)) ([1ea593c](https://github.com/kiva/kv-ui-elements/commit/1ea593ce88339fff9e9bf2bcd1e33bed46a8b09a))
1820
-
1821
-
1822
-
1823
-
1824
-
1825
- ## [3.46.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.46.1...@kiva/kv-components@3.46.2) (2023-10-12)
1826
-
1827
- **Note:** Version bump only for package @kiva/kv-components
1828
-
1829
-
1830
-
1831
-
1832
-
1833
- ## [3.46.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.46.0...@kiva/kv-components@3.46.1) (2023-10-04)
1834
-
1835
-
1836
- ### Bug Fixes
1837
-
1838
- * bug fixed for lse loans when including eco friendly and single p… ([#304](https://github.com/kiva/kv-ui-elements/issues/304)) ([0afb6fc](https://github.com/kiva/kv-ui-elements/commit/0afb6fc7f362048f1ee76ac898a3dcb456d250d5))
1839
-
1840
-
1841
-
1842
-
1843
-
1844
- # [3.46.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.45.0...@kiva/kv-components@3.46.0) (2023-09-29)
1845
-
1846
-
1847
- ### Features
1848
-
1849
- * loan name wasn't being suppressed from hotjar ([998daef](https://github.com/kiva/kv-ui-elements/commit/998daefd75ebebbabde03f37be78d17469e34e00))
1850
-
1851
-
1852
-
1853
-
1854
-
1855
- # [3.45.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.44.2...@kiva/kv-components@3.45.0) (2023-09-29)
1856
-
1857
-
1858
- ### Bug Fixes
1859
-
1860
- * missed leading words ([1614ebd](https://github.com/kiva/kv-ui-elements/commit/1614ebd5ff3ceccc900a8db24624f5a40d9f17c6))
1861
-
1862
-
1863
- ### Features
1864
-
1865
- * add optional why special string to loan use ([99d20ec](https://github.com/kiva/kv-ui-elements/commit/99d20ecc8e2efd0b9a6de4890335f9f46daf8250))
1866
-
1867
-
1868
-
1869
-
1870
-
1871
- ## [3.44.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.44.1...@kiva/kv-components@3.44.2) (2023-09-25)
1872
-
1873
-
1874
- ### Bug Fixes
1875
-
1876
- * bookmark icon position fixed to avoid using z index property ([#301](https://github.com/kiva/kv-ui-elements/issues/301)) ([59287f8](https://github.com/kiva/kv-ui-elements/commit/59287f82e27275a23c6924537a55bdb31f563946))
1877
-
1878
-
1879
-
1880
-
1881
-
1882
- ## [3.44.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.44.0...@kiva/kv-components@3.44.1) (2023-09-20)
1883
-
1884
-
1885
- ### Bug Fixes
1886
-
1887
- * backpedal kvedit button and use existing components instead ([e751910](https://github.com/kiva/kv-ui-elements/commit/e751910f808f7d4b5861995053015bd20b9c6d5e))
1888
-
1889
-
1890
-
1891
-
1892
-
1893
- # [3.44.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.43.0...@kiva/kv-components@3.44.0) (2023-09-19)
1894
-
1895
-
1896
- ### Features
1897
-
1898
- * increase impact visibility for lse loans ([#298](https://github.com/kiva/kv-ui-elements/issues/298)) ([f9dc1e4](https://github.com/kiva/kv-ui-elements/commit/f9dc1e47f25a68f8e3bd745abfc2338b376bd848))
1899
-
1900
-
1901
-
1902
-
1903
-
1904
- # [3.43.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.42.0...@kiva/kv-components@3.43.0) (2023-09-15)
1905
-
1906
-
1907
- ### Features
1908
-
1909
- * added label support ([c016a68](https://github.com/kiva/kv-ui-elements/commit/c016a683ae38ca5af66fa86576d88abd0066d719))
1910
- * line graph can now just take values and normalization happens in component ([3f706be](https://github.com/kiva/kv-ui-elements/commit/3f706be31b288b64e4a566746bd7d0530ce25650))
1911
- * ported over Shua's line graph using clip path and made slight CSS tweaks to match mocks ([56ac312](https://github.com/kiva/kv-ui-elements/commit/56ac312924eecdf56e2d9d99082643e6d42f7765))
1912
- * simple unit tests and small fixes related to tests ([43700fa](https://github.com/kiva/kv-ui-elements/commit/43700faf6c1f0c76432107c3a658539bd3bf6c7b))
1913
-
1914
-
1915
-
1916
-
1917
-
1918
- # [3.42.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.41.0...@kiva/kv-components@3.42.0) (2023-09-14)
1919
-
1920
-
1921
- ### Bug Fixes
1922
-
1923
- * added event emitters ([3a84e6e](https://github.com/kiva/kv-ui-elements/commit/3a84e6e97b5d230ff747c296339bce31263d89da))
1924
- * added event emitters, addressed comments, updated tests ([35a8a0c](https://github.com/kiva/kv-ui-elements/commit/35a8a0c6b34eed36fba030c29d3389c356c06927))
1925
- * addressing build issues, made button square ([974bbdc](https://github.com/kiva/kv-ui-elements/commit/974bbdcac2558fc47c7280f6535d390ed8c824ef))
1926
- * stopped requiring default title ([f494700](https://github.com/kiva/kv-ui-elements/commit/f494700078a2660f72703b95327df6e407d16d5f))
1927
-
1928
-
1929
- ### Features
1930
-
1931
- * new edit button that opens up a lightbox for editing page settings in kiva at work pages ([9d9c2ca](https://github.com/kiva/kv-ui-elements/commit/9d9c2caf3df0f741c2039d2423e42e108e753ff0))
1932
-
1933
-
1934
-
1935
-
1936
-
1937
- # [3.41.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.40.1...@kiva/kv-components@3.41.0) (2023-09-07)
1938
-
1939
-
1940
- ### Features
1941
-
1942
- * add box shadow to all toasts ([57ccaf2](https://github.com/kiva/kv-ui-elements/commit/57ccaf2f2da006a6990f5d5b0d6adeca8d3081b0))
1943
- * rolled back some new tooltip props ([4ce96d6](https://github.com/kiva/kv-ui-elements/commit/4ce96d6eae3457a6a92bde9e407f226d5e53d332))
1944
-
1945
-
1946
-
1947
-
1948
-
1949
- ## [3.40.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.40.0...@kiva/kv-components@3.40.1) (2023-09-07)
1950
-
1951
- **Note:** Version bump only for package @kiva/kv-components
1952
-
1953
-
1954
-
1955
-
1956
-
1957
- # [3.40.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.39.0...@kiva/kv-components@3.40.0) (2023-09-06)
1958
-
1959
-
1960
- ### Features
1961
-
1962
- * avoid adding themes to callouts when equal to category page name in loan card ([#290](https://github.com/kiva/kv-ui-elements/issues/290)) ([d15ef2b](https://github.com/kiva/kv-ui-elements/commit/d15ef2b4f4503c50247644d5023a7189edfc5d4f))
1963
-
1964
-
1965
-
1966
-
1967
-
1968
- # [3.39.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.38.2...@kiva/kv-components@3.39.0) (2023-09-01)
1969
-
1970
-
1971
- ### Features
1972
-
1973
- * add bg and drop shadow toast variations ([a2b045d](https://github.com/kiva/kv-ui-elements/commit/a2b045d0823d55d1c643105fde2a847a0713f55f))
1974
-
1975
-
1976
-
1977
-
1978
-
1979
- ## [3.38.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.38.1...@kiva/kv-components@3.38.2) (2023-08-31)
1980
-
1981
- **Note:** Version bump only for package @kiva/kv-components
1982
-
1983
-
1984
-
1985
-
1986
-
1987
- ## [3.38.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.38.0...@kiva/kv-components@3.38.1) (2023-08-30)
1988
-
1989
-
1990
- ### Bug Fixes
1991
-
1992
- * kvmap component refactor to avoid using vue meta package ([#287](https://github.com/kiva/kv-ui-elements/issues/287)) ([72f5240](https://github.com/kiva/kv-ui-elements/commit/72f524037358f039032ebd1c8d1f4e106ab6ff10))
1993
-
1994
-
1995
-
1996
-
1997
-
1998
- # [3.38.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.37.0...@kiva/kv-components@3.38.0) (2023-08-29)
1999
-
2000
-
2001
- ### Features
2002
-
2003
- * kvmap ported to kv components library ([#286](https://github.com/kiva/kv-ui-elements/issues/286)) ([373e53f](https://github.com/kiva/kv-ui-elements/commit/373e53fd407d161e79033826a6063fbd5ca5b2ce))
2004
-
2005
-
2006
-
2007
-
2008
-
2009
- # [3.37.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.36.0...@kiva/kv-components@3.37.0) (2023-08-18)
2010
-
2011
-
2012
- ### Features
2013
-
2014
- * update header icon ([a593f2c](https://github.com/kiva/kv-ui-elements/commit/a593f2c4ba2285a1917622db55a88ff68097fe89))
2015
-
2016
-
2017
-
2018
-
2019
-
2020
- # [3.36.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.35.1...@kiva/kv-components@3.36.0) (2023-08-14)
2021
-
2022
-
2023
- ### Features
2024
-
2025
- * avoid fractional page number in kvpaginator component ([#281](https://github.com/kiva/kv-ui-elements/issues/281)) ([0d5e028](https://github.com/kiva/kv-ui-elements/commit/0d5e028837c0edcedc87092215f0be94b6565996))
2026
-
2027
-
2028
-
2029
-
2030
-
2031
- ## [3.35.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.35.0...@kiva/kv-components@3.35.1) (2023-08-14)
2032
-
2033
-
2034
- ### Bug Fixes
2035
-
2036
- * linting errors ([c686bd2](https://github.com/kiva/kv-ui-elements/commit/c686bd20bc96a61882bce0981642be65133ed46d))
2037
- * linting issues ([1a631d5](https://github.com/kiva/kv-ui-elements/commit/1a631d529b1d3ebd56c357be2e02fac54b9c1de5))
2038
-
2039
-
2040
-
2041
-
2042
-
2043
- # [3.35.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.34.0...@kiva/kv-components@3.35.0) (2023-08-03)
2044
-
2045
-
2046
- ### Features
2047
-
2048
- * adding new option to the loan progress bar bg ([89afa0a](https://github.com/kiva/kv-ui-elements/commit/89afa0ad20cd64a794441d187da534006a3aeef2))
2049
-
2050
-
2051
-
2052
-
2053
-
2054
- # [3.34.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.33.0...@kiva/kv-components@3.34.0) (2023-08-02)
2055
-
2056
-
2057
- ### Features
2058
-
2059
- * balance campaign prices added to loan utility ([#277](https://github.com/kiva/kv-ui-elements/issues/277)) ([319707e](https://github.com/kiva/kv-ui-elements/commit/319707e525865077e531ab6f4c378676da7ee53b))
2060
-
2061
-
2062
-
2063
-
2064
-
2065
- # [3.33.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.32.0...@kiva/kv-components@3.33.0) (2023-08-01)
2066
-
2067
-
2068
- ### Features
2069
-
2070
- * cleanup unneeded code in kiva partner header ([ff39945](https://github.com/kiva/kv-ui-elements/commit/ff39945d649a010105a44762b3662acfd38b9dcd))
2071
-
2072
-
2073
-
2074
-
2075
-
2076
- # [3.32.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.31.0...@kiva/kv-components@3.32.0) (2023-07-31)
2077
-
2078
-
2079
- ### Features
2080
-
2081
- * basic kivaPartner header ([7ec9fd8](https://github.com/kiva/kv-ui-elements/commit/7ec9fd89d50a10bc6f9c796f6395d634842b2f55))
2082
-
2083
-
2084
-
2085
-
2086
-
2087
- # [3.31.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.30.0...@kiva/kv-components@3.31.0) (2023-07-26)
2088
-
2089
-
2090
- ### Features
2091
-
2092
- * 5 dollars pre select added to loan card components ([#274](https://github.com/kiva/kv-ui-elements/issues/274)) ([1f30146](https://github.com/kiva/kv-ui-elements/commit/1f30146f67ae079eb662cc02403ee9adcfe257ee))
2093
-
2094
-
2095
-
2096
-
2097
-
2098
- # [3.30.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.29.0...@kiva/kv-components@3.30.0) (2023-07-17)
2099
-
2100
-
2101
- ### Features
2102
-
2103
- * cover the expired edge case ([4e97abf](https://github.com/kiva/kv-ui-elements/commit/4e97abfab4019f08632666f34a931d8a2f89e6d2))
2104
-
2105
-
2106
-
2107
-
2108
-
2109
- # [3.29.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.28.0...@kiva/kv-components@3.29.0) (2023-07-14)
2110
-
2111
-
2112
- ### Features
2113
-
2114
- * created generic countdown component ([a321379](https://github.com/kiva/kv-ui-elements/commit/a321379aee166c3f8e91def8e2be42b4d42d5896))
2115
- * custom countdown for vue 2 + 3 ([2bafad9](https://github.com/kiva/kv-ui-elements/commit/2bafad90df469b447d472926fa82d119711f2885))
2116
-
2117
-
2118
-
2119
-
2120
-
2121
- # [3.28.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.27.0...@kiva/kv-components@3.28.0) (2023-07-06)
2122
-
2123
-
2124
- ### Features
2125
-
2126
- * avoid image bug for tiny screens ([#270](https://github.com/kiva/kv-ui-elements/issues/270)) ([d59aa72](https://github.com/kiva/kv-ui-elements/commit/d59aa72fa49605bcf5b7d88ed9efed28bc804d14))
2127
-
2128
-
2129
-
2130
-
2131
-
2132
- # [3.27.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.26.0...@kiva/kv-components@3.27.0) (2023-06-27)
2133
-
2134
-
2135
- ### Features
2136
-
2137
- * disabling to click loan use when loading ([#269](https://github.com/kiva/kv-ui-elements/issues/269)) ([625afb2](https://github.com/kiva/kv-ui-elements/commit/625afb201bbd6a805516297946c0a428f1c4da50))
2138
-
2139
-
2140
-
2141
-
2142
-
2143
- # [3.26.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.25.0...@kiva/kv-components@3.26.0) (2023-06-23)
2144
-
2145
-
2146
- ### Features
2147
-
2148
- * lend amount CTA double event stop ([70997d5](https://github.com/kiva/kv-ui-elements/commit/70997d571940eb4f4a914c1a216bdcf64142954d))
2149
-
2150
-
2151
-
2152
-
2153
-
2154
- # [3.25.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.24.0...@kiva/kv-components@3.25.0) (2023-06-21)
2155
-
2156
-
2157
- ### Features
2158
-
2159
- * fix prop type for route ([2102672](https://github.com/kiva/kv-ui-elements/commit/21026721bc62c6a71ec182e62396bdc0e8b3617c))
2160
-
2161
-
2162
-
2163
-
2164
-
2165
- # [3.24.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.23.1...@kiva/kv-components@3.24.0) (2023-06-21)
2166
-
2167
-
2168
- ### Features
2169
-
2170
- * add support for $5 notes default lend CTA dropdown selected amount changing for ERL ([bac6944](https://github.com/kiva/kv-ui-elements/commit/bac69444b032c9b42c25f6359baf7c4a03eb651b))
2171
-
2172
-
2173
-
2174
-
2175
-
2176
- ## [3.23.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.23.0...@kiva/kv-components@3.23.1) (2023-06-14)
2177
-
2178
-
2179
- ### Bug Fixes
2180
-
2181
- * **KvLightbox:** use all available space for title instead of sharing with close button ([21db7b9](https://github.com/kiva/kv-ui-elements/commit/21db7b905119276e2fe21d4e31b4b73bc1e780d1))
2182
-
2183
-
2184
-
2185
-
2186
-
2187
- # [3.23.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.22.3...@kiva/kv-components@3.23.0) (2023-06-09)
2188
-
2189
-
2190
- ### Features
2191
-
2192
- * location selector no longer being used ([bdf5452](https://github.com/kiva/kv-ui-elements/commit/bdf5452ec359b040cd7a904678422c3ae540889c))
2193
-
2194
-
2195
-
2196
-
2197
-
2198
- ## [3.22.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.22.2...@kiva/kv-components@3.22.3) (2023-06-02)
2199
-
2200
- **Note:** Version bump only for package @kiva/kv-components
2201
-
2202
-
2203
-
2204
-
2205
-
2206
- ## [3.22.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.22.1...@kiva/kv-components@3.22.2) (2023-05-29)
2207
-
2208
-
2209
- ### Bug Fixes
2210
-
2211
- * regions watcher removed from location selector ([#255](https://github.com/kiva/kv-ui-elements/issues/255)) ([69a5c7b](https://github.com/kiva/kv-ui-elements/commit/69a5c7b8430f1732fb04d08aa2a6b4768720dbf4))
2212
-
2213
-
2214
-
2215
-
2216
-
2217
- ## [3.22.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.22.0...@kiva/kv-components@3.22.1) (2023-05-26)
2218
-
2219
- **Note:** Version bump only for package @kiva/kv-components
2220
-
2221
-
2222
-
2223
-
2224
-
2225
- # [3.22.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.21.2...@kiva/kv-components@3.22.0) (2023-05-24)
2226
-
2227
-
2228
- ### Features
2229
-
2230
- * emit added to location selector component ([#248](https://github.com/kiva/kv-ui-elements/issues/248)) ([ca043e4](https://github.com/kiva/kv-ui-elements/commit/ca043e40091d56e55ddff80890f446a41baa97dd))
2231
-
2232
-
2233
-
2234
-
2235
-
2236
- ## [3.21.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.21.1...@kiva/kv-components@3.21.2) (2023-05-24)
2237
-
2238
- **Note:** Version bump only for package @kiva/kv-components
2239
-
2240
-
2241
-
2242
-
2243
-
2244
- ## [3.21.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.21.0...@kiva/kv-components@3.21.1) (2023-05-24)
2245
-
2246
- **Note:** Version bump only for package @kiva/kv-components
2247
-
2248
-
2249
-
2250
-
2251
-
2252
- # [3.21.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.20.0...@kiva/kv-components@3.21.0) (2023-05-16)
2253
-
2254
-
2255
- ### Features
2256
-
2257
- * remove countdown for now from loan tags ([7aeae11](https://github.com/kiva/kv-ui-elements/commit/7aeae114c4dd7823829241ea659ff5a19de948ef))
2258
-
2259
-
2260
-
2261
-
2262
-
2263
- # [3.20.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.19.0...@kiva/kv-components@3.20.0) (2023-05-11)
2264
-
2265
-
2266
- ### Features
2267
-
2268
- * handle view loan when funded ([b6a392b](https://github.com/kiva/kv-ui-elements/commit/b6a392b0bbdcb09db37eba3d72e4b52b44eed41a))
2269
-
2270
-
2271
-
2272
-
2273
-
2274
- # [3.19.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.18.0...@kiva/kv-components@3.19.0) (2023-05-09)
2275
-
2276
-
2277
- ### Features
2278
-
2279
- * loan card CTA fixes needed for home page ([fc1c9f8](https://github.com/kiva/kv-ui-elements/commit/fc1c9f858aeae620f6cfea74da8d15ae859afa3c))
2280
-
2281
-
2282
-
2283
-
2284
-
2285
- # [3.18.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.17.0...@kiva/kv-components@3.18.0) (2023-05-05)
2286
-
2287
-
2288
- ### Features
2289
-
2290
- * "view loan" CTA ([aa10cf1](https://github.com/kiva/kv-ui-elements/commit/aa10cf17a1ca4978b97fc9541522f31d95cc886f))
2291
-
2292
-
2293
-
2294
-
2295
-
2296
- # [3.17.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.16.0...@kiva/kv-components@3.17.0) (2023-05-05)
2297
-
2298
-
2299
- ### Features
2300
-
2301
- * new loan card ported from recent successful Denali experiment ([0b0e5a0](https://github.com/kiva/kv-ui-elements/commit/0b0e5a0a575bc1c65ab71579f151a6d3cee5d8d7))
2302
-
2303
-
2304
-
2305
-
2306
-
2307
- # [3.16.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.15.0...@kiva/kv-components@3.16.0) (2023-05-03)
2308
-
2309
-
2310
- ### Features
2311
-
2312
- * add custom blog colors ([7e00f04](https://github.com/kiva/kv-ui-elements/commit/7e00f047dec9fdde2b68e0a1e5f8cb951f3baa4a))
2313
-
2314
-
2315
-
2316
-
2317
-
2318
- # [3.15.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.14.0...@kiva/kv-components@3.15.0) (2023-04-27)
2319
-
2320
-
2321
- ### Features
2322
-
2323
- * implemented initial kv-loan-filters package ([1987069](https://github.com/kiva/kv-ui-elements/commit/1987069227099a2ef1cabf09d1086e6a66adee0d))
2324
-
2325
-
2326
-
2327
-
2328
-
2329
- # [3.14.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.13.2...@kiva/kv-components@3.14.0) (2023-04-17)
2330
-
2331
-
2332
- ### Bug Fixes
2333
-
2334
- * call userEvent directly ([461774f](https://github.com/kiva/kv-ui-elements/commit/461774f4e6596030b806d03084486e961011f8be))
2335
-
2336
-
2337
- ### Features
2338
-
2339
- * event guidelines ([37c1635](https://github.com/kiva/kv-ui-elements/commit/37c16351f8a29b3949745cc2786d394049bd6d5c))
2340
- * move KvPagination component to kv-elements ([5f24d6a](https://github.com/kiva/kv-ui-elements/commit/5f24d6aae4bdb2909fb61c666b6a3d64dd76da99))
2341
-
2342
-
2343
-
2344
-
2345
-
2346
- ## [3.13.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.13.1...@kiva/kv-components@3.13.2) (2023-04-14)
2347
-
2348
- **Note:** Version bump only for package @kiva/kv-components
2349
-
2350
-
2351
-
2352
-
2353
-
2354
- ## [3.13.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.13.0...@kiva/kv-components@3.13.1) (2023-04-05)
2355
-
2356
-
2357
- ### Bug Fixes
2358
-
2359
- * check for button ref before adding ripple ([#233](https://github.com/kiva/kv-ui-elements/issues/233)) ([5371a88](https://github.com/kiva/kv-ui-elements/commit/5371a8816caefede244ca20b933b9cece025b0bb))
2360
-
2361
-
2362
-
2363
-
2364
-
2365
- # [3.13.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.12.0...@kiva/kv-components@3.13.0) (2023-03-01)
2366
-
2367
-
2368
- ### Features
2369
-
2370
- * danger, caution, and ghost variants for KvPrgoressBar ([8b7e43f](https://github.com/kiva/kv-ui-elements/commit/8b7e43fd55e02fd01e2bc5488c86dd3984a7a42d))
2371
-
2372
-
2373
-
2374
-
2375
-
2376
- # [3.12.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.11.2...@kiva/kv-components@3.12.0) (2023-02-10)
2377
-
2378
-
2379
- ### Features
2380
-
2381
- * hide delay param for toast ([d8620c0](https://github.com/kiva/kv-ui-elements/commit/d8620c06e2aa9b814bebdee7a5e1c150f06d77e9))
2382
-
2383
-
2384
-
2385
-
2386
-
2387
- ## [3.11.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.11.1...@kiva/kv-components@3.11.2) (2023-01-25)
2388
-
2389
- **Note:** Version bump only for package @kiva/kv-components
2390
-
2391
-
2392
-
2393
-
2394
-
2395
- ## [3.11.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.11.0...@kiva/kv-components@3.11.1) (2023-01-20)
2396
-
2397
- **Note:** Version bump only for package @kiva/kv-components
2398
-
2399
-
2400
-
2401
-
2402
-
2403
- # [3.11.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.10.2...@kiva/kv-components@3.11.0) (2023-01-19)
2404
-
2405
-
2406
- ### Features
2407
-
2408
- * kiva logo type added to kv toast component including an svg icon ([#227](https://github.com/kiva/kv-ui-elements/issues/227)) ([c24ecc1](https://github.com/kiva/kv-ui-elements/commit/c24ecc1295e32b817bf057f0570de56224c85c3f))
2409
-
2410
-
2411
-
2412
-
2413
-
2414
- ## [3.10.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.10.1...@kiva/kv-components@3.10.2) (2022-12-07)
2415
-
2416
- **Note:** Version bump only for package @kiva/kv-components
2417
-
2418
-
2419
-
2420
-
2421
-
2422
- ## [3.10.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.10.0...@kiva/kv-components@3.10.1) (2022-11-23)
2423
-
2424
-
2425
- ### Bug Fixes
2426
-
2427
- * use value instead of ref ([8620e81](https://github.com/kiva/kv-ui-elements/commit/8620e81b5e3a5b649c3825b1a62be17cf1d8c72c))
2428
-
2429
-
2430
-
2431
-
2432
-
2433
- # [3.10.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.9.1...@kiva/kv-components@3.10.0) (2022-11-09)
2434
-
2435
-
2436
- ### Bug Fixes
2437
-
2438
- * smooth out transition by apply styling to child div ([8f629d7](https://github.com/kiva/kv-ui-elements/commit/8f629d7659aec83493797e8b1bb9d4540457686a))
2439
- * test multiline content for broken state, add .stop event modifier on FAQ icon click ([e4758d5](https://github.com/kiva/kv-ui-elements/commit/e4758d5103233007c5c497b310e5cf4c994885aa))
2440
-
2441
-
2442
- ### Features
2443
-
2444
- * created tests in order to fix FAQ Arrow Functionality ([7bc7c54](https://github.com/kiva/kv-ui-elements/commit/7bc7c54258cb83f74b127f9c5985ff56ba3e9129))
2445
-
2446
-
2447
-
2448
-
2449
-
2450
- ## [3.9.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.9.0...@kiva/kv-components@3.9.1) (2022-10-14)
2451
-
2452
-
2453
- ### Bug Fixes
2454
-
2455
- * turn off pre-wrap whitespace for KvExpandableQuestion and prose for the title of the component ([753abef](https://github.com/kiva/kv-ui-elements/commit/753abef7b01d2d8928ac432ed87675a95d715688))
2456
-
2457
-
2458
-
2459
-
2460
-
2461
- # [3.9.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.8.0...@kiva/kv-components@3.9.0) (2022-10-07)
2462
-
2463
-
2464
- ### Bug Fixes
2465
-
2466
- * removed extra space on line 23 ([c8a3226](https://github.com/kiva/kv-ui-elements/commit/c8a32264ede0b628f578b98c4ac8256a539fd28d))
2467
-
2468
-
2469
- ### Features
2470
-
2471
- * fixed bugs in KvExpandableQuestion (arrow functionality and slot content rendering) ([4ab9f47](https://github.com/kiva/kv-ui-elements/commit/4ab9f477200d53b89ce6a4ae0328215268dd4019))
2472
-
2473
-
2474
-
2475
-
2476
-
2477
- # [3.8.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.7.1...@kiva/kv-components@3.8.0) (2022-10-04)
2478
-
2479
-
2480
- ### Features
2481
-
2482
- * created and implemented a reusable global component and story (KvExpandableQuestion)[VUE-1318] ([173ae50](https://github.com/kiva/kv-ui-elements/commit/173ae50e88dffa7dabb7392404ccdb813307ea31))
2483
- * removed analyticsCategory prop, edited other code blocks ([2864261](https://github.com/kiva/kv-ui-elements/commit/2864261b55517bab8099b84b404d09aaae37b489))
2484
- * removed line 84, and converted faq into a string ([8f5a3da](https://github.com/kiva/kv-ui-elements/commit/8f5a3dab81556997a6eb7dd0e5dffac2babff104))
2485
-
2486
-
2487
-
2488
-
2489
-
2490
- ## [3.7.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.7.0...@kiva/kv-components@3.7.1) (2022-09-27)
2491
-
2492
-
2493
- ### Bug Fixes
2494
-
2495
- * **KvContentfulImg:** match size and fit of picture to figure wrapper MARS-265 ([f6ede31](https://github.com/kiva/kv-ui-elements/commit/f6ede316c286871cc685e0840a6c2b9452ee48e3))
2496
-
2497
-
2498
-
2499
-
2500
-
2501
- # [3.7.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.6.2...@kiva/kv-components@3.7.0) (2022-09-24)
2502
-
2503
-
2504
- ### Features
2505
-
2506
- * add dark mint theme ([269d6af](https://github.com/kiva/kv-ui-elements/commit/269d6af35a35bdcac8ca3c1c780bc62926072c8d))
2507
-
2508
-
2509
-
2510
-
2511
-
2512
- ## [3.6.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.6.1...@kiva/kv-components@3.6.2) (2022-09-21)
2513
-
2514
-
2515
- ### Bug Fixes
2516
-
2517
- * remove margin top from figcaption prose ([67bdb12](https://github.com/kiva/kv-ui-elements/commit/67bdb12d16efd730f063bbfafa4a4a653e20d406))
2518
-
2519
-
2520
-
2521
-
2522
-
2523
- ## [3.6.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.6.0...@kiva/kv-components@3.6.1) (2022-09-21)
2524
-
2525
- **Note:** Version bump only for package @kiva/kv-components
2526
-
2527
-
2528
-
2529
-
2530
-
2531
- # [3.6.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.5.2...@kiva/kv-components@3.6.0) (2022-09-16)
2532
-
2533
-
2534
- ### Features
2535
-
2536
- * **KvContentfulImg:** add optional caption MARS-243 ([35dfa7a](https://github.com/kiva/kv-ui-elements/commit/35dfa7ac4888dff6ff62b14f71bb1edb4c805717))
2537
-
2538
-
2539
-
2540
-
2541
-
2542
- ## [3.5.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.5.1...@kiva/kv-components@3.5.2) (2022-09-15)
2543
-
2544
-
2545
- ### Bug Fixes
2546
-
2547
- * **KvCarousel:** slidesToScroll should not be 0 MARS-248 ([c2fc929](https://github.com/kiva/kv-ui-elements/commit/c2fc929fbdcf87a061b71fff14b91ab8064fc130))
2548
-
2549
-
2550
-
2551
-
2552
-
2553
- ## [3.5.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.5.0...@kiva/kv-components@3.5.1) (2022-09-13)
2554
-
2555
-
2556
- ### Bug Fixes
2557
-
2558
- * **KvCarousel:** incorrect slide marked as current ([f496e7c](https://github.com/kiva/kv-ui-elements/commit/f496e7c0a8fdebd1f6e003f4c79b57a5926b0c4a))
2559
-
2560
-
2561
-
2562
-
2563
-
2564
- # [3.5.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.4.0...@kiva/kv-components@3.5.0) (2022-09-07)
2565
-
2566
-
2567
- ### Bug Fixes
2568
-
2569
- * height of indicator bar ([8908e44](https://github.com/kiva/kv-ui-elements/commit/8908e44da2d3edcfbc9bfca44144604ed255674b))
2570
-
2571
-
2572
- ### Features
2573
-
2574
- * add vertical tab button for new home page exp ([329e490](https://github.com/kiva/kv-ui-elements/commit/329e490a8df555b126c23e93f4ce69cd00eb7c35))
2575
- * add vertical variant in tab ([a23c9d1](https://github.com/kiva/kv-ui-elements/commit/a23c9d1abd1ade6a2603d422bb0f2535e299d119))
2576
-
2577
-
2578
-
2579
-
2580
-
2581
- # [3.4.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.3.1...@kiva/kv-components@3.4.0) (2022-08-29)
2582
-
2583
-
2584
- ### Features
2585
-
2586
- * creating a global resuable component (KvAccordionItem) ([5bf7685](https://github.com/kiva/kv-ui-elements/commit/5bf76858508870f9055e680406a1167cdd68099c))
2587
-
2588
-
2589
-
2590
-
2591
-
2592
- ## [3.3.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.3.0...@kiva/kv-components@3.3.1) (2022-08-26)
2593
-
2594
-
2595
- ### Bug Fixes
2596
-
2597
- * ensure ref is defined in exported methods ([3ab00ea](https://github.com/kiva/kv-ui-elements/commit/3ab00ea181ee2455925c2f8f01950b79c2ea7b09))
2598
-
2599
-
2600
-
2601
-
2602
-
2603
- # [3.3.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.2.0...@kiva/kv-components@3.3.0) (2022-08-10)
2604
-
2605
-
2606
- ### Bug Fixes
2607
-
2608
- * added class to placeholder story to show support ([ed4e6c9](https://github.com/kiva/kv-ui-elements/commit/ed4e6c984b6a52b238862004266ada10c9cb0c95))
2609
- * added non-static class and style to placeholder as example ([4fd5e98](https://github.com/kiva/kv-ui-elements/commit/4fd5e98d41c900f69b56614980c688ebd43f6176))
2610
-
2611
-
2612
- ### Features
2613
-
2614
- * placeholder component ([b29facc](https://github.com/kiva/kv-ui-elements/commit/b29facc8c8fcdb9761cc9e58e2530ea1e3b4a2f8))
2615
-
2616
-
2617
-
2618
-
2619
-
2620
- # [3.2.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.1.0...@kiva/kv-components@3.2.0) (2022-08-04)
2621
-
2622
-
2623
- ### Bug Fixes
2624
-
2625
- * event name in emits ([06813fd](https://github.com/kiva/kv-ui-elements/commit/06813fda75cf9a169b9e5afd33549b9eb77b33a1))
2626
- * remove unused event ([345cd90](https://github.com/kiva/kv-ui-elements/commit/345cd903ab5d6725de34d2085a2c8e65cba6933f))
2627
-
2628
-
2629
- ### Features
2630
-
2631
- * add payload to track closing events ([275c81d](https://github.com/kiva/kv-ui-elements/commit/275c81da659fa586500b9d21607ba5c69c4e5839))
2632
- * add tailored emit event for MARS-199 experiment in kvLightbox ([8499206](https://github.com/kiva/kv-ui-elements/commit/8499206381c9e5bf1ac0ae4ab913b91b07ba906e))
2633
-
2634
-
2635
-
2636
-
2637
-
2638
- # [3.1.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.0.6...@kiva/kv-components@3.1.0) (2022-07-19)
2639
-
2640
-
2641
- ### Features
2642
-
2643
- * add new caution variant to buttons ([#191](https://github.com/kiva/kv-ui-elements/issues/191)) ([14f3eb6](https://github.com/kiva/kv-ui-elements/commit/14f3eb6548bfc925cc2cb656966829f127a8864e))
2644
-
2645
-
2646
-
2647
-
2648
-
2649
- ## [3.0.6](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.0.5...@kiva/kv-components@3.0.6) (2022-06-23)
2650
-
2651
- **Note:** Version bump only for package @kiva/kv-components
2652
-
2653
-
2654
-
2655
-
2656
-
2657
- ## [3.0.5](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.0.4...@kiva/kv-components@3.0.5) (2022-05-27)
2658
-
2659
- **Note:** Version bump only for package @kiva/kv-components
2660
-
2661
-
2662
-
2663
-
2664
-
2665
- ## [3.0.4](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.0.3...@kiva/kv-components@3.0.4) (2022-05-23)
2666
-
2667
-
2668
- ### Bug Fixes
2669
-
2670
- * remove usage of currentInstance, re-implement indicator count update mechanism ([21dae02](https://github.com/kiva/kv-ui-elements/commit/21dae029094bdeecd4d352eea70a116c08af504c))
2671
-
2672
-
2673
-
2674
-
2675
-
2676
- ## [3.0.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.0.2...@kiva/kv-components@3.0.3) (2022-05-16)
2677
-
2678
-
2679
- ### Bug Fixes
2680
-
2681
- * added back initial uuid value. ([aa4a88c](https://github.com/kiva/kv-ui-elements/commit/aa4a88c5a65846e9103ce25985bd7d1cc7bfd025))
2682
- * label and input uuids didn't match ([742452a](https://github.com/kiva/kv-ui-elements/commit/742452a9ffe03980f10f444a99f253429d028170))
2683
-
2684
-
2685
-
2686
-
2687
-
2688
- ## [3.0.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.0.1...@kiva/kv-components@3.0.2) (2022-03-18)
2689
-
2690
-
2691
- ### Bug Fixes
2692
-
2693
- * clean up tests console errors and props ([37a6da9](https://github.com/kiva/kv-ui-elements/commit/37a6da9b4439463e777ae503b7ccff6562b9c81f))
2694
- * ensure reactive ref state without timeout ([eda1553](https://github.com/kiva/kv-ui-elements/commit/eda1553304e6ed4199e35dbd73cb821b87bf3175))
2695
- * return additional items for access as refs in vue2 ([b34ee52](https://github.com/kiva/kv-ui-elements/commit/b34ee52c39357bb7469418717d99c08a937c5cb8))
2696
-
2697
-
2698
-
2699
-
2700
-
2701
- ## [3.0.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.0.0...@kiva/kv-components@3.0.1) (2022-02-16)
2702
-
2703
-
2704
- ### Bug Fixes
2705
-
2706
- * **KvButton:** pass through click event for parent ([65c042f](https://github.com/kiva/kv-ui-elements/commit/65c042ff7b4780a514766ab476f443562b195eab))
2707
-
2708
-
2709
-
2710
-
2711
-
2712
- # [3.0.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@2.0.0...@kiva/kv-components@3.0.0) (2022-02-16)
2713
-
2714
-
2715
- ### Bug Fixes
2716
-
2717
- * **deps:** add required missing vue composition api for storybook ([7c4629e](https://github.com/kiva/kv-ui-elements/commit/7c4629eac8820a53ce86de0056a5ac17cfd25b73))
2718
- * input reference was back to ref ([fce5264](https://github.com/kiva/kv-ui-elements/commit/fce52641b384efb83d5d8d5cfd4587cc924b4484))
2719
- * **KvSwitch:** ensure component attributes behave the same way across vue versions ([1414899](https://github.com/kiva/kv-ui-elements/commit/14148990c48449548614d02ee4869ddd72c87f74))
2720
- * model added to work correctly ([8992e83](https://github.com/kiva/kv-ui-elements/commit/8992e8330a86c41e75a42dddc5ed3531aad1da43))
2721
- * set correct module type for importing the package ([ef7e828](https://github.com/kiva/kv-ui-elements/commit/ef7e82876544f9016a09e743d68da3451e1ab3d6))
2722
- * update path ([f33c2fb](https://github.com/kiva/kv-ui-elements/commit/f33c2fb7383ceb2caf916db2ec8d4e940697b5e7))
2723
- * value attr was added to msToDisplayToast computed ref to show the toast correctly ([5c5199c](https://github.com/kiva/kv-ui-elements/commit/5c5199c3d9601f34f9342c971f643c2ed1bde80f))
2724
-
2725
-
2726
- ### Features
2727
-
2728
- * checked prop was replaced by modelValue for composition api ([01e31a4](https://github.com/kiva/kv-ui-elements/commit/01e31a41976fc7cb406fbe0c6e41bb2ebf4573b1))
2729
- * files for kvcheckbox component were updated for tests passing ([e788ef3](https://github.com/kiva/kv-ui-elements/commit/e788ef34be213831cfce2034b94c4ebb843d7401))
2730
- * **KvCarousel:** component was rewritten to use composition api ([#149](https://github.com/kiva/kv-ui-elements/issues/149)) ([0e7ab21](https://github.com/kiva/kv-ui-elements/commit/0e7ab219902858fe05626231ca0027498b2d1280))
2731
- * kvcheckbox component was rewritten to use composition api ([945edee](https://github.com/kiva/kv-ui-elements/commit/945edeee9efcec4f47cb4dafbec81d856406cb16))
2732
- * kvcheckbox component was rewritten to use composition api ([787e9cf](https://github.com/kiva/kv-ui-elements/commit/787e9cf9448f7c9db5732fd3e1b2d441c52c389e))
2733
- * kvcontentfulimg component was rewritten to use composition api ([#145](https://github.com/kiva/kv-ui-elements/issues/145)) ([e30526c](https://github.com/kiva/kv-ui-elements/commit/e30526c994e65cfce7d479dd9f06e333588e7360))
2734
- * **KvLightbox:** component was rewritten using composition api ([#156](https://github.com/kiva/kv-ui-elements/issues/156)) ([8a83c6f](https://github.com/kiva/kv-ui-elements/commit/8a83c6ff01b32f2a46c3133c67033051de3ee8cf))
2735
- * kvprogressbar component was rewritten using composition api ([#152](https://github.com/kiva/kv-ui-elements/issues/152)) ([9cda6b6](https://github.com/kiva/kv-ui-elements/commit/9cda6b603a5eff1ea746b58bc1385f54bcb0cb50))
2736
- * **KvRadio:** component was rewritten to use composition api ([#146](https://github.com/kiva/kv-ui-elements/issues/146)) ([5b8f342](https://github.com/kiva/kv-ui-elements/commit/5b8f34213f445e876981197c91e333949ba73eb2))
2737
- * **KvSelect:** component was rewritten and basic test file was added ([#150](https://github.com/kiva/kv-ui-elements/issues/150)) ([69f99d8](https://github.com/kiva/kv-ui-elements/commit/69f99d814e46bdb622c27792fb955261ea7ff7bd))
2738
- * kvswitch component was rewritten using composition api ([a51c00e](https://github.com/kiva/kv-ui-elements/commit/a51c00e67b6f85b83bc24e3672de3d22994b5db1))
2739
- * KvTabs, KvTab, & KvTabPanel updated to support composition api ([#165](https://github.com/kiva/kv-ui-elements/issues/165)) ([c4758ae](https://github.com/kiva/kv-ui-elements/commit/c4758ae7dee98adf4f9a58fad6ef2d87d3fefcf7))
2740
- * **KvTextInput:** component was rewritten using composition api ([#159](https://github.com/kiva/kv-ui-elements/issues/159)) ([6d4ae80](https://github.com/kiva/kv-ui-elements/commit/6d4ae809003b07aea3c6eb97565a09c95289c0e8))
2741
- * kvtextlink component was rewritten to use composition api ([#151](https://github.com/kiva/kv-ui-elements/issues/151)) ([7181775](https://github.com/kiva/kv-ui-elements/commit/7181775d6d30c1bee5955670f615b4fdd587f9fe))
2742
- * pointer was added to switch component ([44ffb45](https://github.com/kiva/kv-ui-elements/commit/44ffb45c6dd5f4c71b5b8bfd3b8b2b65ab0818a2))
2743
- * testing file was added for kvtoast component ([cd6abe9](https://github.com/kiva/kv-ui-elements/commit/cd6abe9dea2218e705fc1efb94127d6b184e3800))
2744
-
2745
-
2746
- ### BREAKING CHANGES
2747
-
2748
- * **KvSelect:** The KvSelect prop `value` was renamed to `modelValue`.
2749
- The KvCheckbox prop `checked` has been renamed to `modelValue`.
2750
- The KvCheckbox event `change` has been renamed to `update:modelValue`.
2751
- * **KvTextInput:** The KvTextInput prop `value` has been renamed to `modelValue`
2752
-
2753
-
2754
-
2755
-
2756
-
2757
- # [2.0.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@1.4.6...@kiva/kv-components@2.0.0) (2022-02-03)
2758
-
2759
-
2760
- * feat!: upgrade Tailwind to v3 ([18c1653](https://github.com/kiva/kv-ui-elements/commit/18c1653565eb42b8abfaaba6b3712173ff341850))
2761
-
2762
-
2763
- ### BREAKING CHANGES
2764
-
2765
- * Tailwind dependency is now v3
2766
-
2767
-
2768
-
2769
-
2770
-
2771
- ## [1.4.6](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@1.4.5...@kiva/kv-components@1.4.6) (2022-02-03)
2772
-
2773
- **Note:** Version bump only for package @kiva/kv-components
2774
-
2775
-
2776
-
2777
-
2778
-
2779
- ## [1.4.5](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@1.4.4...@kiva/kv-components@1.4.5) (2022-02-03)
2780
-
2781
- **Note:** Version bump only for package @kiva/kv-components
2782
-
2783
-
2784
-
2785
-
2786
-
2787
- ## [1.4.4](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@1.4.3...@kiva/kv-components@1.4.4) (2022-01-11)
2788
-
2789
- **Note:** Version bump only for package @kiva/kv-components
2790
-
2791
-
2792
-
2793
-
2794
-
2795
- ## [1.4.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@1.4.2...@kiva/kv-components@1.4.3) (2022-01-05)
2796
-
2797
-
2798
- ### Bug Fixes
2799
-
2800
- * **KvButton:** fix loading spinner positioning in Safari ([3bfb687](https://github.com/kiva/kv-ui-elements/commit/3bfb68754b0cf9a119e5666a7dd08bc851ae2411))
2801
- * **KvSelect:** fix icon sizing in Safari ([58026af](https://github.com/kiva/kv-ui-elements/commit/58026af41e958024606edcfe458b4ec29264828c))
2802
- * **KvSwitch:** fix positioning in Safari ([d3cce11](https://github.com/kiva/kv-ui-elements/commit/d3cce113fe7801c798e3303dd52580c44afeff64))
2803
- * **KvTextInput:** fix icon sizing in Safari ([7f52581](https://github.com/kiva/kv-ui-elements/commit/7f52581b671ebecd094f455102fda0b685d26bda))
2804
-
2805
-
2806
-
2807
-
2808
-
2809
- ## [1.4.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@1.4.1...@kiva/kv-components@1.4.2) (2021-12-23)
2810
-
2811
- **Note:** Version bump only for package @kiva/kv-components
2812
-
2813
-
2814
-
2815
-
2816
-
2817
- ## [1.4.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@1.4.0...@kiva/kv-components@1.4.1) (2021-12-22)
2818
-
2819
-
2820
- ### Bug Fixes
2821
-
2822
- * **KvTextInput:** watch for value prop changes ([ffa6c6d](https://github.com/kiva/kv-ui-elements/commit/ffa6c6dda548af021f1472e81469d7fc3a3c0a11))
2823
-
2824
-
2825
-
2826
-
2827
-
2828
- # [1.4.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@1.3.0...@kiva/kv-components@1.4.0) (2021-12-20)
2829
-
2830
-
2831
- ### Features
2832
-
2833
- * **KvTextInput:** focus the input after clearing text ([2093abb](https://github.com/kiva/kv-ui-elements/commit/2093abb30dca870c661f5354e043f0c40290ef81))
2834
-
2835
-
2836
-
2837
-
2838
-
2839
- # [1.3.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@1.2.2...@kiva/kv-components@1.3.0) (2021-12-13)
2840
-
2841
-
2842
- ### Features
2843
-
2844
- * **KvTextInput:** adds a button which clears the search form ([bf4166e](https://github.com/kiva/kv-ui-elements/commit/bf4166e604bfd08ab1c128eda10c51fc81c359ec))
2845
-
2846
-
2847
-
2848
-
2849
-
2850
- ## [1.2.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@1.2.1...@kiva/kv-components@1.2.2) (2021-11-24)
2851
-
2852
- **Note:** Version bump only for package @kiva/kv-components
2853
-
2854
-
2855
-
2856
-
2857
-
2858
- ## [1.2.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@1.2.0...@kiva/kv-components@1.2.1) (2021-11-17)
2859
-
2860
- **Note:** Version bump only for package @kiva/kv-components
2861
-
2862
-
2863
-
2864
-
2865
-
2866
- # [1.2.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@1.1.3...@kiva/kv-components@1.2.0) (2021-11-12)
2867
-
2868
-
2869
- ### Features
2870
-
2871
- * **KvCheckbox:** add a prop and visual styling to tell a user the input is invalid ([b587ffd](https://github.com/kiva/kv-ui-elements/commit/b587ffdcb4834eb6dda25a880646cdcd4137a337))
2872
-
2873
-
2874
-
2875
-
2876
-
2877
- ## [1.1.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@1.1.2...@kiva/kv-components@1.1.3) (2021-11-10)
2878
-
2879
-
2880
- ### Bug Fixes
2881
-
2882
- * **KvLightbox:** allow for an empty lightbox body ([3d36755](https://github.com/kiva/kv-ui-elements/commit/3d367551d52dcc1d1b3aea7d98b7e733cd703ddc))
2883
-
2884
-
2885
-
2886
-
2887
-
2888
- ## [1.1.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@1.1.1...@kiva/kv-components@1.1.2) (2021-11-08)
2889
-
2890
-
2891
- ### Bug Fixes
2892
-
2893
- * **KvLightbox:** prevent lightbox references from being null when the lightbox is closed ([f19f03e](https://github.com/kiva/kv-ui-elements/commit/f19f03e0507e9e1c56b40aee3483628a39b0ff4f))
2894
-
2895
-
2896
-
2897
-
2898
-
2899
- ## [1.1.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@1.1.0...@kiva/kv-components@1.1.1) (2021-10-21)
2900
-
2901
-
2902
- ### Bug Fixes
2903
-
2904
- * **KvButton, KvTextLink:** Allow route objects to be passed to the :to prop ([505c125](https://github.com/kiva/kv-ui-elements/commit/505c1259b688a18a3dc4ed00c9768129d4123677))
2905
-
2906
-
2907
-
2908
-
2909
-
2910
- # [1.1.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@1.0.0...@kiva/kv-components@1.1.0) (2021-10-20)
2911
-
2912
-
2913
- ### Features
2914
-
2915
- * allow font weight for 'text-small' class to be set on case-by-case basis ([3a33b4b](https://github.com/kiva/kv-ui-elements/commit/3a33b4b5eaad7f97b3e5579fedbc4f6095d6d12f))
2916
-
2917
-
2918
-
2919
-
2920
-
2921
- # [1.0.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.22.3...@kiva/kv-components@1.0.0) (2021-10-07)
2922
-
2923
- **Note:** Version bump only for package @kiva/kv-components
2924
-
2925
-
2926
-
2927
-
2928
-
2929
- ## [0.22.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.22.2...@kiva/kv-components@0.22.3) (2021-10-07)
2930
-
2931
-
2932
- ### Bug Fixes
2933
-
2934
- * **KvButton, KvTextLink:** Allow a route object to be passed to the "to" prop ([db3eda7](https://github.com/kiva/kv-ui-elements/commit/db3eda79215dc61a9700febf6117a572473f81cf))
2935
- * **KvButton:** align text center in case it wraps ([2b13157](https://github.com/kiva/kv-ui-elements/commit/2b131574451fef54ccb2d7bd98076fcdfb20bc04))
2936
-
2937
-
2938
-
2939
-
2940
-
2941
- ## [0.22.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.22.1...@kiva/kv-components@0.22.2) (2021-10-06)
2942
-
2943
- **Note:** Version bump only for package @kiva/kv-components
2944
-
2945
-
2946
-
2947
-
2948
-
2949
- ## [0.22.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.22.0...@kiva/kv-components@0.22.1) (2021-10-05)
2950
-
2951
- **Note:** Version bump only for package @kiva/kv-components
2952
-
2953
-
2954
-
2955
-
2956
-
2957
- # [0.22.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.21.5...@kiva/kv-components@0.22.0) (2021-10-04)
2958
-
2959
-
2960
- ### Features
2961
-
2962
- * Add placeholder styling to our base styles ([ab42188](https://github.com/kiva/kv-ui-elements/commit/ab421881420c6698717930dca49f5b72e89da115))
2963
-
2964
-
2965
-
2966
-
2967
-
2968
- ## [0.21.5](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.21.4...@kiva/kv-components@0.21.5) (2021-10-01)
2969
-
2970
- **Note:** Version bump only for package @kiva/kv-components
2971
-
2972
-
2973
-
2974
-
2975
-
2976
- ## [0.21.4](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.21.3...@kiva/kv-components@0.21.4) (2021-09-30)
2977
-
2978
-
2979
- ### Bug Fixes
2980
-
2981
- * **KvCheckbox, KvRadio, KvSwitch:** Avoid SSR problems when setting the UUID ([ff55726](https://github.com/kiva/kv-ui-elements/commit/ff55726e7052908c58dc71ea6d14d6bffb922da7))
2982
-
2983
-
2984
-
2985
-
2986
-
2987
- ## [0.21.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.21.2...@kiva/kv-components@0.21.3) (2021-09-30)
2988
-
2989
-
2990
- ### Bug Fixes
2991
-
2992
- * **KvCheckbox:** Background color now reliably changes when checkbox is clicked ([fc509b2](https://github.com/kiva/kv-ui-elements/commit/fc509b20fbed89e39df729090aa97beedd684636))
2993
-
2994
-
2995
-
2996
-
2997
-
2998
- ## [0.21.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.21.1...@kiva/kv-components@0.21.2) (2021-09-30)
2999
-
3000
-
3001
- ### Bug Fixes
3002
-
3003
- * **KvCheckbox:** Allow checkboxes to use an array in v-model ([39b2e92](https://github.com/kiva/kv-ui-elements/commit/39b2e92a3c71ebb94e6da0f7133ae67d40758035))
3004
-
3005
-
3006
-
3007
-
3008
-
3009
- ## [0.21.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.21.0...@kiva/kv-components@0.21.1) (2021-09-28)
3010
-
3011
-
3012
- ### Bug Fixes
3013
-
3014
- * **KvButton:** prevent underline on focus when button is an anchor tag ([10199ba](https://github.com/kiva/kv-ui-elements/commit/10199badc4bec6ae0badc420df5b0c2d7fed59e3))
3015
- * Use themable class names. Change to low-opacity instead of text-color for disabled state. ([6aa9f0d](https://github.com/kiva/kv-ui-elements/commit/6aa9f0dc9d0952e172848fdbd834fecb94cd0bc2))
3016
-
3017
-
3018
-
3019
-
3020
-
3021
- # [0.21.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.20.5...@kiva/kv-components@0.21.0) (2021-09-23)
3022
-
3023
-
3024
- ### Features
3025
-
3026
- * **KvButton:** Add active state prop and styling ([5c97148](https://github.com/kiva/kv-ui-elements/commit/5c9714835cea5536f7fc88b36483f691b5cba9a3))
3027
-
3028
-
3029
-
3030
-
3031
-
3032
- ## [0.20.5](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.20.4...@kiva/kv-components@0.20.5) (2021-09-23)
3033
-
3034
-
3035
- ### Bug Fixes
3036
-
3037
- * Remove unnecessary lightbox class and webkit fix, make lightbox stories initialize with open lightboxes for better visual diffs ([#117](https://github.com/kiva/kv-ui-elements/issues/117)) ([1aa4f33](https://github.com/kiva/kv-ui-elements/commit/1aa4f33c1d9425874e54058930a753d7aab6773e))
3038
-
3039
-
3040
-
3041
-
3042
-
3043
- ## [0.20.4](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.20.3...@kiva/kv-components@0.20.4) (2021-09-23)
3044
-
3045
-
3046
- ### Bug Fixes
3047
-
3048
- * Fix lightboxes being cut off vertically on mobile ([#116](https://github.com/kiva/kv-ui-elements/issues/116)) ([23dd4d9](https://github.com/kiva/kv-ui-elements/commit/23dd4d91ba9aa4178644afe1cbd2bdf98de0d05a))
3049
-
3050
-
3051
-
3052
-
3053
-
3054
- ## [0.20.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.20.2...@kiva/kv-components@0.20.3) (2021-09-23)
3055
-
3056
- **Note:** Version bump only for package @kiva/kv-components
3057
-
3058
-
3059
-
3060
-
3061
-
3062
- ## [0.20.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.20.1...@kiva/kv-components@0.20.2) (2021-09-22)
3063
-
3064
- **Note:** Version bump only for package @kiva/kv-components
3065
-
3066
-
3067
-
3068
-
3069
-
3070
- ## [0.20.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.20.0...@kiva/kv-components@0.20.1) (2021-09-15)
3071
-
3072
- **Note:** Version bump only for package @kiva/kv-components
3073
-
3074
-
3075
-
3076
-
3077
-
3078
- # [0.20.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.19.7...@kiva/kv-components@0.20.0) (2021-09-14)
3079
-
3080
-
3081
- ### Features
3082
-
3083
- * **KvThemeProvider:** Add darkGreen theme ([8eaf80c](https://github.com/kiva/kv-ui-elements/commit/8eaf80cd9063d6f4468b131464ca1b7f5d127360))
3084
-
3085
-
3086
-
3087
-
3088
-
3089
- ## [0.19.7](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.19.6...@kiva/kv-components@0.19.7) (2021-09-14)
3090
-
3091
- **Note:** Version bump only for package @kiva/kv-components
3092
-
3093
-
3094
-
3095
-
3096
-
3097
- ## [0.19.6](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.19.5...@kiva/kv-components@0.19.6) (2021-09-10)
3098
-
3099
-
3100
- ### Bug Fixes
3101
-
3102
- * fixes randomness in storybook stories for kvCarousel ([#111](https://github.com/kiva/kv-ui-elements/issues/111)) ([2ccbee2](https://github.com/kiva/kv-ui-elements/commit/2ccbee234b47f422caa4c4b93b992ae96efb0c26))
3103
-
3104
-
3105
-
3106
-
3107
-
3108
- ## [0.19.5](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.19.4...@kiva/kv-components@0.19.5) (2021-09-08)
3109
-
3110
- **Note:** Version bump only for package @kiva/kv-components
3111
-
3112
-
3113
-
3114
-
3115
-
3116
- ## [0.19.4](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.19.3...@kiva/kv-components@0.19.4) (2021-09-02)
3117
-
3118
- **Note:** Version bump only for package @kiva/kv-components
3119
-
3120
-
3121
-
3122
-
3123
-
3124
- ## [0.19.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.19.2...@kiva/kv-components@0.19.3) (2021-09-01)
3125
-
3126
- **Note:** Version bump only for package @kiva/kv-components
3127
-
3128
-
3129
-
3130
-
3131
-
3132
- ## [0.19.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.19.1...@kiva/kv-components@0.19.2) (2021-08-31)
3133
-
3134
- **Note:** Version bump only for package @kiva/kv-components
3135
-
3136
-
3137
-
3138
-
3139
-
3140
- ## [0.19.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.19.0...@kiva/kv-components@0.19.1) (2021-08-31)
3141
-
3142
- **Note:** Version bump only for package @kiva/kv-components
3143
-
3144
-
3145
-
3146
-
3147
-
3148
- # [0.19.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.18.0...@kiva/kv-components@0.19.0) (2021-08-30)
3149
-
3150
-
3151
- ### Features
3152
-
3153
- * **Theming:** Change tailwind class names to be themable. Adds KvThemeProvider component to set themes. ([0759c66](https://github.com/kiva/kv-ui-elements/commit/0759c669721acab61ca145b500f0860749aa85eb))
3154
-
3155
-
3156
-
3157
-
3158
-
3159
- # [0.18.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.17.1...@kiva/kv-components@0.18.0) (2021-08-23)
3160
-
3161
-
3162
- ### Features
3163
-
3164
- * modify KvCarousel to allow for responsive slides ([#104](https://github.com/kiva/kv-ui-elements/issues/104)) ([8abf536](https://github.com/kiva/kv-ui-elements/commit/8abf53614190ee8ca6bb9480b0fb22cbd47aecc3))
3165
-
3166
-
3167
-
3168
-
3169
-
3170
- ## [0.17.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.17.0...@kiva/kv-components@0.17.1) (2021-08-20)
3171
-
3172
- **Note:** Version bump only for package @kiva/kv-components
3173
-
3174
-
3175
-
3176
-
3177
-
3178
- # [0.17.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.15.1...@kiva/kv-components@0.17.0) (2021-08-19)
3179
-
3180
-
3181
- ### Features
3182
-
3183
- * Adds KvCarousel component ([#100](https://github.com/kiva/kv-ui-elements/issues/100)) ([05a57b5](https://github.com/kiva/kv-ui-elements/commit/05a57b552d1e884a2cebb3d4e1b9a093d8c9834e))
3184
-
3185
-
3186
-
3187
-
3188
-
3189
- # [0.16.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.15.1...@kiva/kv-components@0.16.0) (2021-08-19)
3190
-
3191
-
3192
- ### Features
3193
-
3194
- * Adds KvCarousel component ([#100](https://github.com/kiva/kv-ui-elements/issues/100)) ([05a57b5](https://github.com/kiva/kv-ui-elements/commit/05a57b552d1e884a2cebb3d4e1b9a093d8c9834e))
3195
-
3196
-
3197
-
3198
-
3199
-
3200
- ## [0.15.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.15.0...@kiva/kv-components@0.15.1) (2021-08-18)
3201
-
3202
- **Note:** Version bump only for package @kiva/kv-components
3203
-
3204
-
3205
-
3206
-
3207
-
3208
- # [0.15.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.14.0...@kiva/kv-components@0.15.0) (2021-08-13)
3209
-
3210
-
3211
- ### Features
3212
-
3213
- * **KvTextInput:** Kiva Classic input type=text ([6d17b96](https://github.com/kiva/kv-ui-elements/commit/6d17b96c7b397f2764e45a97029c36a47012654e))
3214
-
3215
-
3216
-
3217
-
3218
-
3219
- # [0.14.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.13.3...@kiva/kv-components@0.14.0) (2021-08-11)
3220
-
3221
-
3222
- ### Features
3223
-
3224
- * **KvTabs:** Make inactive tab color black to prevent users from thinking its disabled ([ec28ce2](https://github.com/kiva/kv-ui-elements/commit/ec28ce26f43716b1d5290b23676a1d7b9c24302f))
3225
-
3226
-
3227
-
3228
-
3229
-
3230
- ## [0.13.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.13.2...@kiva/kv-components@0.13.3) (2021-08-11)
3231
-
3232
- **Note:** Version bump only for package @kiva/kv-components
3233
-
3234
-
3235
-
3236
-
3237
-
3238
- ## [0.13.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.13.1...@kiva/kv-components@0.13.2) (2021-08-06)
3239
-
3240
-
3241
- ### Bug Fixes
3242
-
3243
- * **KvLightbox:** Fix minimum height 50% of screen on mobile. ([6abcd6b](https://github.com/kiva/kv-ui-elements/commit/6abcd6b432a42c7ab1133e2bee05f05e06f001d1))
3244
- * **KvSelect:** fixes issue where chevron wasn't visible in safari ([f01c9f5](https://github.com/kiva/kv-ui-elements/commit/f01c9f502035cdc9d2d39dd493121879afb3eff1))
3245
- * **KvTabs:** fix unselected tab panel color ([3b5146a](https://github.com/kiva/kv-ui-elements/commit/3b5146afe22a95b2dadb7cd0580873f0d26d602c))
3246
-
3247
-
3248
-
3249
-
3250
-
3251
- ## [0.13.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.13.0...@kiva/kv-components@0.13.1) (2021-08-05)
3252
-
3253
-
3254
- ### Bug Fixes
3255
-
3256
- * **KvTabs:** Prevent different height tab contents from overflowing their container during a transition ([a5ae332](https://github.com/kiva/kv-ui-elements/commit/a5ae3320d19589e35523b3b156237ec4b14071eb))
3257
-
3258
-
3259
-
3260
-
3261
-
3262
- # [0.13.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.12.0...@kiva/kv-components@0.13.0) (2021-08-05)
3263
-
3264
-
3265
- ### Bug Fixes
3266
-
3267
- * **KvCheckbox:** fix binding attributes to the input element ([39fa56b](https://github.com/kiva/kv-ui-elements/commit/39fa56bf0f3ed0317241b2c0c44762c999325387))
3268
-
3269
-
3270
- ### Features
3271
-
3272
- * **KvCheckbox:** Styled vue component for checkbox UI ([18a83da](https://github.com/kiva/kv-ui-elements/commit/18a83da0ac53978ce3cc4d27c2ca31fe6c713bfe))
3273
- * **KvSwitch:** Add input listeners so we get blur and focus events ([f720630](https://github.com/kiva/kv-ui-elements/commit/f720630e188375d5daeac3b4a0885c718117ca7c))
3274
- * **KvSwitch:** Allow for passing attributes like required, value, etc. to the input element ([4a80136](https://github.com/kiva/kv-ui-elements/commit/4a80136a51608f74042bfcfb8d8d571f1a5a0627))
3275
- * **KvSwitch:** remove value prop since it's never used in Vue. ([dea9ac9](https://github.com/kiva/kv-ui-elements/commit/dea9ac95e19cc772b238c47b962404ac1080cb1d))
3276
-
3277
-
3278
-
3279
-
3280
-
3281
- # [0.12.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.11.0...@kiva/kv-components@0.12.0) (2021-08-05)
3282
-
3283
-
3284
- ### Bug Fixes
3285
-
3286
- * **KvRadio:** Add a unique ID for labels and inputs ([f2c2838](https://github.com/kiva/kv-ui-elements/commit/f2c2838af57f09eb3482d6c9a76d33b32594044e))
3287
-
3288
-
3289
- ### Features
3290
-
3291
- * **KvRadio:** Kiva Classic Vue component of <input type="radio"> ([d7af81c](https://github.com/kiva/kv-ui-elements/commit/d7af81c5a390305b22eb8f03954f84b8b3c36b81))
3292
-
3293
-
3294
-
3295
-
3296
-
3297
- # [0.11.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.10.8...@kiva/kv-components@0.11.0) (2021-08-02)
3298
-
3299
-
3300
- ### Features
3301
-
3302
- * **KvSwitch:** UI for an on/off toggle ([a01aa65](https://github.com/kiva/kv-ui-elements/commit/a01aa6537c782439870cfb0a896e192e808f09f5))
3303
-
3304
-
3305
-
3306
-
3307
-
3308
- ## [0.10.8](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.10.7...@kiva/kv-components@0.10.8) (2021-07-30)
3309
-
3310
- **Note:** Version bump only for package @kiva/kv-components
3311
-
3312
-
3313
-
3314
-
3315
-
3316
- ## [0.10.7](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.10.6...@kiva/kv-components@0.10.7) (2021-07-30)
3317
-
3318
-
3319
- ### Performance Improvements
3320
-
3321
- * Try adding sideEffects:false to improve tree shaking ([b87be7e](https://github.com/kiva/kv-ui-elements/commit/b87be7e1d27baf646249a34add8d4a49eeb69f85))
3322
-
3323
-
3324
-
3325
-
3326
-
3327
- ## [0.10.6](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.10.5...@kiva/kv-components@0.10.6) (2021-07-29)
3328
-
3329
-
3330
- ### Bug Fixes
3331
-
3332
- * **KvButton:** Fix accessibility issue where links might have role=button ([e72312e](https://github.com/kiva/kv-ui-elements/commit/e72312e3488273f9408804900c78f789d93bee7b))
3333
- * **KvButton:** fix default display when the button is a link ([db18d1d](https://github.com/kiva/kv-ui-elements/commit/db18d1dd2d200bea354784536c05ccc6caa9fef0))
3334
-
3335
-
3336
-
3337
-
3338
-
3339
- ## [0.10.5](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.10.4...@kiva/kv-components@0.10.5) (2021-07-29)
3340
-
3341
- **Note:** Version bump only for package @kiva/kv-components
3342
-
3343
-
3344
-
3345
-
3346
-
3347
- ## [0.10.4](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.10.3...@kiva/kv-components@0.10.4) (2021-07-28)
3348
-
3349
-
3350
- ### Bug Fixes
3351
-
3352
- * Locks page scroll when the lightbox is open on UI ([b2f4be5](https://github.com/kiva/kv-ui-elements/commit/b2f4be519b53b3f8f2785d5e0013a4d2266ea1a8))
3353
-
3354
-
3355
-
3356
-
3357
-
3358
- ## [0.10.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.10.2...@kiva/kv-components@0.10.3) (2021-07-28)
3359
-
3360
-
3361
- ### Bug Fixes
3362
-
3363
- * **KvToast:** Show green checkbox if no messageType is passed in ([0dae691](https://github.com/kiva/kv-ui-elements/commit/0dae69110d37c8618cbc74e4e13c1b4a69d565e0))
3364
-
3365
-
3366
-
3367
-
3368
-
3369
- ## [0.10.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.10.1...@kiva/kv-components@0.10.2) (2021-07-22)
3370
-
3371
-
3372
- ### Bug Fixes
3373
-
3374
- * **KvButton:** bring back ripple animation on click ([649704d](https://github.com/kiva/kv-ui-elements/commit/649704d9fdc0a87f7a83293033c5563e1f07c3a5))
3375
-
3376
-
3377
-
3378
-
3379
-
3380
- ## [0.10.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.10.0...@kiva/kv-components@0.10.1) (2021-07-21)
3381
-
3382
- **Note:** Version bump only for package @kiva/kv-components
3383
-
3384
-
3385
-
3386
-
3387
-
3388
- # [0.10.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.9.0...@kiva/kv-components@0.10.0) (2021-07-17)
3389
-
3390
-
3391
- ### Bug Fixes
3392
-
3393
- * **KvToast:** wrap toast in page container, set min-width to 50% ([2357e4b](https://github.com/kiva/kv-ui-elements/commit/2357e4b0abb5eddbb15b234a96f0180282008ba1))
3394
-
3395
-
3396
- ### Features
3397
-
3398
- * **KvToast:** Component for displaying a temporary message to the user ([993fb91](https://github.com/kiva/kv-ui-elements/commit/993fb91aa74e5b3a60502802b7a0cb7c11125022))
3399
-
3400
-
3401
-
3402
-
3403
-
3404
- # [0.9.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.8.1...@kiva/kv-components@0.9.0) (2021-07-16)
3405
-
3406
-
3407
- ### Features
3408
-
3409
- * **KvTextLink:** animate the icon on hover ([93fa540](https://github.com/kiva/kv-ui-elements/commit/93fa5407248d27d01dac804917679ad5f2d3a0fb))
3410
- * add 'text-link' utility class ([27a15f8](https://github.com/kiva/kv-ui-elements/commit/27a15f822b48e5a7ad0cfafa3f2c493580320086))
3411
- * **KvTextLink:** A component for a stylized text link with icon option ([afc7123](https://github.com/kiva/kv-ui-elements/commit/afc71232ed7f95990ff9852d2d89f5c41f2358d3))
3412
-
3413
-
3414
-
3415
-
3416
-
3417
- ## [0.8.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.8.0...@kiva/kv-components@0.8.1) (2021-07-12)
3418
-
3419
- **Note:** Version bump only for package @kiva/kv-components
3420
-
3421
-
3422
-
3423
-
3424
-
3425
- # [0.8.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.7.4...@kiva/kv-components@0.8.0) (2021-07-07)
3426
-
3427
-
3428
- ### Features
3429
-
3430
- * **KvLightbox:** Accessible lightbox/alert component ([165a087](https://github.com/kiva/kv-ui-elements/commit/165a087af1a0b9adc1f4b8d165e6492e5c54c92c))
3431
-
3432
-
3433
-
3434
-
3435
-
3436
- ## [0.7.4](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.7.3...@kiva/kv-components@0.7.4) (2021-07-01)
3437
-
3438
- **Note:** Version bump only for package @kiva/kv-components
3439
-
3440
-
3441
-
3442
-
3443
-
3444
- ## [0.7.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.7.2...@kiva/kv-components@0.7.3) (2021-07-01)
3445
-
3446
- **Note:** Version bump only for package @kiva/kv-components
3447
-
3448
-
3449
-
3450
-
3451
-
3452
- ## [0.7.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.7.1...@kiva/kv-components@0.7.2) (2021-07-01)
3453
-
3454
- **Note:** Version bump only for package @kiva/kv-components
3455
-
3456
-
3457
-
3458
-
3459
-
3460
- ## [0.7.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.7.0...@kiva/kv-components@0.7.1) (2021-06-29)
3461
-
3462
- **Note:** Version bump only for package @kiva/kv-components
3463
-
3464
-
3465
-
3466
-
3467
-
3468
- # [0.7.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.6.0...@kiva/kv-components@0.7.0) (2021-06-25)
3469
-
3470
-
3471
- ### Bug Fixes
3472
-
3473
- * **KvGrid:** Set a grid gap for both x and y directions ([099581b](https://github.com/kiva/kv-ui-elements/commit/099581bbf94515dd9f2348fad7643d016ecf243f))
3474
-
3475
-
3476
- ### Features
3477
-
3478
- * **KvGrid:** Allow the grid container element to be elements other than divs ([e940032](https://github.com/kiva/kv-ui-elements/commit/e9400328eb45c9d14c2b557ed3666232d08fd136))
3479
- * **KvTabs:** Accessible components for implementing a tab UI pattern ([2d3dd50](https://github.com/kiva/kv-ui-elements/commit/2d3dd502507b3c5f7844ad4b6510dd9fc926753f))
3480
-
3481
-
3482
-
3483
-
3484
-
3485
- # [0.6.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.5.0...@kiva/kv-components@0.6.0) (2021-06-17)
3486
-
3487
-
3488
- ### Bug Fixes
3489
-
3490
- * **KvContentfulImg:** Allow gif as fallback format. Remove webp since that's the non-fallback. ([6358209](https://github.com/kiva/kv-ui-elements/commit/635820947e52e18a964e4ac49efa583153cba647))
3491
- * **KvContentfulImg:** Ensure inline-styles are included on both img elements ([45dfce1](https://github.com/kiva/kv-ui-elements/commit/45dfce1a5b821e62dc8c2b19d235360f90921a7a))
3492
- * **KvContentfulImg:** Remove need for fallback format since it's no longer required ([0785d60](https://github.com/kiva/kv-ui-elements/commit/0785d609f7c44d78320f4e672b805c700d022634))
3493
- * **KvProgressBar:** Add ariaLabel prop, fix aria attribute DOM placement, add min prop in case it's non-zero. ([941b923](https://github.com/kiva/kv-ui-elements/commit/941b923b1419d561951eabbc65b7653b91bbed3a))
3494
-
3495
-
3496
- ### Features
3497
-
3498
- * **KvGrid:** A component that sets the grid gaps as specified by design ([3886aff](https://github.com/kiva/kv-ui-elements/commit/3886aff12d185adb2f921f7d37676236dde9066e))
3499
- * **KvPageContainer:** A component that adds margins, centers and contains content per design specs ([d007e1b](https://github.com/kiva/kv-ui-elements/commit/d007e1b3e1bb770782fe84f78802cdbdbf0e8fd4))
3500
-
3501
-
3502
- ### Performance Improvements
3503
-
3504
- * **KvContentfulImg:** Set width and height attributes on source elements to prevent content layout shift ([b381662](https://github.com/kiva/kv-ui-elements/commit/b3816624dea23b74735cb5abdf6620a53b9a044e))
3505
- * **KvProgressBar:** Animate using css transforms instead of width ([cf5a917](https://github.com/kiva/kv-ui-elements/commit/cf5a917d54442a04c6dae7893483868c5f5fcff4))
3506
-
3507
-
3508
-
3509
-
3510
-
3511
- # [0.5.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.4.2...@kiva/kv-components@0.5.0) (2021-06-15)
3512
-
3513
-
3514
- ### Bug Fixes
3515
-
3516
- * **KvContentfulImg:** Fallback format does not need to be required because it has a default value ([342b4b1](https://github.com/kiva/kv-ui-elements/commit/342b4b1dd564e94e7c6cdacc812354e73bc3016e))
3517
- * KvSelect, updating value to accept number and string ([ab12bcb](https://github.com/kiva/kv-ui-elements/commit/ab12bcbced19e6a5e209028fb616cb490ce67c8a))
3518
-
3519
-
3520
- ### Features
3521
-
3522
- * **KvContentfulImg:** Make child img element inherit width, height, and object-fit styles from parent ([3c6dc3c](https://github.com/kiva/kv-ui-elements/commit/3c6dc3c303a477c01c57a92b10cf465414bcb3ef))
3523
-
3524
-
3525
-
3526
-
3527
-
3528
- ## [0.4.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.4.1...@kiva/kv-components@0.4.2) (2021-06-10)
3529
-
3530
-
3531
- ### Bug Fixes
3532
-
3533
- * adding tailwinds override for foundation classes applied globally in /ui ([866efe8](https://github.com/kiva/kv-ui-elements/commit/866efe84029928b82fbf2c3207cb16cde1ac676e))
3534
-
3535
-
3536
-
3537
-
3538
-
3539
- ## [0.4.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.4.0...@kiva/kv-components@0.4.1) (2021-06-08)
3540
-
3541
- **Note:** Version bump only for package @kiva/kv-components
3542
-
3543
-
3544
-
3545
-
3546
-
3547
- # [0.4.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.3.1...@kiva/kv-components@0.4.0) (2021-06-08)
3548
-
3549
-
3550
- ### Features
3551
-
3552
- * Add ability to set custom image sources across source sets. This enables an adaptive image setup for using different images across viewport sizes. ([9fd8c9a](https://github.com/kiva/kv-ui-elements/commit/9fd8c9a34559019c62e32b943b5759570f9f5cde))
3553
-
3554
-
3555
-
3556
-
3557
-
3558
- ## [0.3.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.3.0...@kiva/kv-components@0.3.1) (2021-06-03)
3559
-
3560
- **Note:** Version bump only for package @kiva/kv-components
3561
-
3562
-
3563
-
3564
-
3565
-
3566
- # [0.3.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.2.0...@kiva/kv-components@0.3.0) (2021-05-27)
3567
-
3568
-
3569
- ### Features
3570
-
3571
- * **KvProgressBar:** Accessible progress bar with animation on load ([#58](https://github.com/kiva/kv-ui-elements/issues/58)) ([b01f8a4](https://github.com/kiva/kv-ui-elements/commit/b01f8a4376fb771c76df74a0569b9bba77ba2cc3))
3572
-
3573
-
3574
-
3575
-
3576
-
3577
- # [0.2.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@0.1.0...@kiva/kv-components@0.2.0) (2021-05-26)
3578
-
3579
-
3580
- ### Bug Fixes
3581
-
3582
- * **build:** Move scoped workspaces to directory matching scope ([#53](https://github.com/kiva/kv-ui-elements/issues/53)) ([a86c7a1](https://github.com/kiva/kv-ui-elements/commit/a86c7a1e339b549a717d4efa4c5216b1a6ec751b))
3583
-
3584
-
3585
- ### Features
3586
-
3587
- * **build:** KvSelect focus styles ([43b9818](https://github.com/kiva/kv-ui-elements/commit/43b981810a18d27b48ed0856f584413d476a632e))
3588
- * **build:** KvSelect increasing focus state ring thickness ([2547155](https://github.com/kiva/kv-ui-elements/commit/25471551a7ba625e80a3eba339ca4bc938d6b9c5))
3589
- * **build:** KvSelect removing grey border on focus ([bb028b8](https://github.com/kiva/kv-ui-elements/commit/bb028b8c786871796b6cba91b5b6f49e9bfedc4d))
3590
- * **KvContentfulImg:** Component that renders image from contentful ([#57](https://github.com/kiva/kv-ui-elements/issues/57)) ([0dfccb5](https://github.com/kiva/kv-ui-elements/commit/0dfccb5f60f50262b7f58703e08b631c17201bb0))
3591
- * **KvLoadingSpinner:** Modify the animation timing for KvLoadingSpinner ([#56](https://github.com/kiva/kv-ui-elements/issues/56)) ([39c19b6](https://github.com/kiva/kv-ui-elements/commit/39c19b6a9a1e5eeddb95769ba2d91ea90eedf054))
3592
- * KvSelect component and storybook story ([0db8bed](https://github.com/kiva/kv-ui-elements/commit/0db8bed4530da9ab9f4fe04a1e0f26e57835a8ab))
3593
- * **KvLoadingSpinner:** KvLoadingSpinner component ([#48](https://github.com/kiva/kv-ui-elements/issues/48)) ([9647064](https://github.com/kiva/kv-ui-elements/commit/9647064852876f58bd226a610fe07af7d937301d))
3594
-
3595
-
3596
-
3597
-
3598
-
3599
- # 0.1.0 (2021-05-19)
3600
-
3601
-
3602
- ### Bug Fixes
3603
-
3604
- * **KvButton:** Prevent underline on hover for buttons with hrefs. Add story. ([aa9e158](https://github.com/kiva/kv-ui-elements/commit/aa9e1588138cbe380a0532884fae1fbd5b453d47))
3605
-
3606
-
3607
- ### Features
3608
-
3609
- * Release process ([#49](https://github.com/kiva/kv-ui-elements/issues/49)) ([50c96fa](https://github.com/kiva/kv-ui-elements/commit/50c96fa71c4ff7d979b18ce778b4e5c4efdedabd))
3610
- * **KvMaterialIcon:** New component for displaying Material Design icons ([007ceea](https://github.com/kiva/kv-ui-elements/commit/007ceeaba9d011d1e358bd9a6cbc79e7a1da5c55))
3611
-
3612
-
3613
- ### Reverts
3614
-
3615
- * Revert "Add an out directory for building storybook" ([fc6fee1](https://github.com/kiva/kv-ui-elements/commit/fc6fee126605b59b0a0a99b3152fa197bfe18f09))