@kiva/kv-components 7.6.3 → 8.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (336) hide show
  1. package/.eslintignore +5 -0
  2. package/.github/copilot-instructions.md +11 -0
  3. package/AGENTS.md +184 -0
  4. package/CLAUDE.md +11 -0
  5. package/GEMINI.md +11 -0
  6. package/dist/index.d.ts +3 -0
  7. package/dist/index.js +236 -216
  8. package/dist/utils/Alea.d.ts +9 -0
  9. package/dist/utils/Alea.js +23 -23
  10. package/dist/utils/arrayUtils.d.ts +3 -0
  11. package/dist/utils/arrayUtils.js +1 -1
  12. package/dist/utils/attrs.d.ts +6 -0
  13. package/dist/utils/carousels.d.ts +21 -0
  14. package/dist/utils/comparators.d.ts +3 -0
  15. package/dist/utils/comparators.js +20 -6
  16. package/dist/utils/debounce.d.ts +1 -0
  17. package/dist/utils/debounce.js +4 -4
  18. package/dist/utils/event.d.ts +1 -0
  19. package/dist/utils/event.js +7 -0
  20. package/dist/utils/expander.d.ts +14 -0
  21. package/dist/utils/imageUtils.d.ts +11 -0
  22. package/dist/utils/imageUtils.js +12 -12
  23. package/dist/utils/index.d.ts +21 -0
  24. package/dist/utils/loanCard.d.ts +35 -0
  25. package/dist/utils/loanCard.js +2 -2
  26. package/dist/utils/loanSearch/queryParamUtils.d.ts +1 -0
  27. package/dist/utils/loanUtils.d.ts +11 -0
  28. package/dist/utils/loanUtils.js +56 -53
  29. package/dist/utils/mapUtils.d.ts +5 -0
  30. package/dist/utils/markMatches.d.ts +1 -0
  31. package/dist/utils/paramCase.d.ts +1 -0
  32. package/dist/utils/printing.d.ts +2 -0
  33. package/dist/utils/scrollLock.d.ts +4 -0
  34. package/dist/utils/themeUtils.d.ts +12 -0
  35. package/dist/utils/throttle.d.ts +1 -0
  36. package/dist/utils/throttle.js +4 -4
  37. package/dist/utils/touchEvents.d.ts +3 -0
  38. package/dist/utils/touchEvents.js +9 -9
  39. package/dist/utils/treemap.d.ts +16 -0
  40. package/dist/utils/treemap.js +1 -1
  41. package/dist/vue/KvAccordionItem.js +28 -82
  42. package/dist/vue/KvAccordionItem.vue.d.ts +107 -0
  43. package/dist/vue/KvAccordionItem2.js +60 -0
  44. package/dist/vue/KvActivityRow.js +11 -22
  45. package/dist/vue/KvActivityRow.vue.d.ts +66 -0
  46. package/dist/vue/KvActivityRow2.js +16 -0
  47. package/dist/vue/KvAtbModal.css +1 -1
  48. package/dist/vue/KvAtbModal.js +68 -248
  49. package/dist/vue/KvAtbModal.vue.d.ts +359 -0
  50. package/dist/vue/KvAtbModal2.js +186 -0
  51. package/dist/vue/KvBorrowerImage.js +17 -118
  52. package/dist/vue/KvBorrowerImage.vue.d.ts +62 -0
  53. package/dist/vue/KvBorrowerImage2.js +106 -0
  54. package/dist/vue/KvButton.js +20 -164
  55. package/dist/vue/KvButton.vue.d.ts +94 -0
  56. package/dist/vue/KvButton2.js +149 -0
  57. package/dist/vue/KvCardFrame.js +12 -74
  58. package/dist/vue/KvCardFrame.vue.d.ts +86 -0
  59. package/dist/vue/KvCardFrame2.js +67 -0
  60. package/dist/vue/KvCarousel.css +1 -1
  61. package/dist/vue/KvCarousel.js +55 -192
  62. package/dist/vue/KvCarousel.vue.d.ts +135 -0
  63. package/dist/vue/KvCarousel2.js +142 -0
  64. package/dist/vue/KvCartModal.css +1 -1
  65. package/dist/vue/KvCartModal.js +31 -131
  66. package/dist/vue/KvCartModal.vue.d.ts +163 -0
  67. package/dist/vue/KvCartModal2.js +106 -0
  68. package/dist/vue/KvCartPill.js +12 -51
  69. package/dist/vue/KvCartPill.vue.d.ts +52 -0
  70. package/dist/vue/KvCartPill2.js +45 -0
  71. package/dist/vue/KvCheckbox.css +1 -1
  72. package/dist/vue/KvCheckbox.js +30 -126
  73. package/dist/vue/KvCheckbox.vue.d.ts +90 -0
  74. package/dist/vue/KvCheckbox2.js +102 -0
  75. package/dist/vue/KvCheckoutReceipt.css +1 -1
  76. package/dist/vue/KvCheckoutReceipt.js +120 -199
  77. package/dist/vue/KvCheckoutReceipt.vue.d.ts +164 -0
  78. package/dist/vue/KvCheckoutReceipt2.js +85 -0
  79. package/dist/vue/KvChip.js +12 -29
  80. package/dist/vue/KvChip.vue.d.ts +22 -0
  81. package/dist/vue/KvChip2.js +22 -0
  82. package/dist/vue/KvClassicLoanCard.css +1 -1
  83. package/dist/vue/KvClassicLoanCard.js +83 -351
  84. package/dist/vue/KvClassicLoanCard.vue.d.ts +2120 -0
  85. package/dist/vue/KvClassicLoanCard2.js +281 -0
  86. package/dist/vue/KvCommentsAdd.css +1 -1
  87. package/dist/vue/KvCommentsAdd.js +34 -81
  88. package/dist/vue/KvCommentsAdd.vue.d.ts +296 -0
  89. package/dist/vue/KvCommentsAdd2.js +57 -0
  90. package/dist/vue/KvCommentsContainer.js +15 -66
  91. package/dist/vue/KvCommentsContainer.vue.d.ts +954 -0
  92. package/dist/vue/KvCommentsContainer2.js +58 -0
  93. package/dist/vue/KvCommentsHeartButton.css +1 -1
  94. package/dist/vue/KvCommentsHeartButton.js +12 -51
  95. package/dist/vue/KvCommentsHeartButton.vue.d.ts +42 -0
  96. package/dist/vue/KvCommentsHeartButton2.js +44 -0
  97. package/dist/vue/KvCommentsList.js +9 -51
  98. package/dist/vue/KvCommentsList.vue.d.ts +619 -0
  99. package/dist/vue/KvCommentsList2.js +46 -0
  100. package/dist/vue/KvCommentsListItem.js +62 -186
  101. package/dist/vue/KvCommentsListItem.vue.d.ts +571 -0
  102. package/dist/vue/KvCommentsListItem2.js +135 -0
  103. package/dist/vue/KvCommentsReplyButton.css +1 -1
  104. package/dist/vue/KvCommentsReplyButton.js +8 -17
  105. package/dist/vue/KvCommentsReplyButton.vue.d.ts +98 -0
  106. package/dist/vue/KvCommentsReplyButton2.js +13 -0
  107. package/dist/vue/KvCompactLoanCard.css +1 -1
  108. package/dist/vue/KvCompactLoanCard.js +71 -327
  109. package/dist/vue/KvCompactLoanCard.vue.d.ts +1272 -0
  110. package/dist/vue/KvCompactLoanCard2.js +269 -0
  111. package/dist/vue/KvContentfulImg.js +51 -164
  112. package/dist/vue/KvContentfulImg.vue.d.ts +107 -0
  113. package/dist/vue/KvContentfulImg2.js +119 -0
  114. package/dist/vue/KvCountdownTimer.js +8 -28
  115. package/dist/vue/KvCountdownTimer.vue.d.ts +15 -0
  116. package/dist/vue/KvCountdownTimer2.js +26 -0
  117. package/dist/vue/KvDatePicker.js +21 -101
  118. package/dist/vue/KvDatePicker.vue.d.ts +58 -0
  119. package/dist/vue/KvDatePicker2.js +86 -0
  120. package/dist/vue/KvExpandable.js +9 -56
  121. package/dist/vue/KvExpandable.vue.d.ts +53 -0
  122. package/dist/vue/KvExpandable2.js +52 -0
  123. package/dist/vue/KvExpandableQuestion.js +23 -82
  124. package/dist/vue/KvExpandableQuestion.vue.d.ts +124 -0
  125. package/dist/vue/KvExpandableQuestion2.js +65 -0
  126. package/dist/vue/KvFlag.css +1 -1
  127. package/dist/vue/KvFlag.js +16 -617
  128. package/dist/vue/KvFlag.vue.d.ts +66 -0
  129. package/dist/vue/KvFlag2.js +606 -0
  130. package/dist/vue/KvGrid.js +7 -18
  131. package/dist/vue/KvGrid.vue.d.ts +14 -0
  132. package/dist/vue/KvGrid2.js +15 -0
  133. package/dist/vue/KvIconBag.js +12 -18
  134. package/dist/vue/KvIconBag.vue.d.ts +14 -0
  135. package/dist/vue/KvIconBag2.js +11 -0
  136. package/dist/vue/KvImpactDashboardHeader.vue.d.ts +17 -0
  137. package/dist/vue/KvImpactVerticalSelector.js +31 -110
  138. package/dist/vue/KvImpactVerticalSelector.vue.d.ts +278 -0
  139. package/dist/vue/KvImpactVerticalSelector2.js +85 -0
  140. package/dist/vue/KvInlineActivityCard.js +15 -44
  141. package/dist/vue/KvInlineActivityCard.vue.d.ts +71 -0
  142. package/dist/vue/KvInlineActivityCard2.js +35 -0
  143. package/dist/vue/KvInlineActivityFeed.css +1 -1
  144. package/dist/vue/KvInlineActivityFeed.js +11 -23
  145. package/dist/vue/KvInlineActivityFeed.vue.d.ts +85 -0
  146. package/dist/vue/KvInlineActivityFeed2.js +17 -0
  147. package/dist/vue/KvIntroductionLoanCard.css +1 -1
  148. package/dist/vue/KvIntroductionLoanCard.js +111 -309
  149. package/dist/vue/KvIntroductionLoanCard.vue.d.ts +617 -0
  150. package/dist/vue/KvIntroductionLoanCard2.js +209 -0
  151. package/dist/vue/KvLendAmountButton.js +9 -53
  152. package/dist/vue/KvLendAmountButton.vue.d.ts +140 -0
  153. package/dist/vue/KvLendAmountButton2.js +48 -0
  154. package/dist/vue/KvLendCta.css +1 -1
  155. package/dist/vue/KvLendCta.js +150 -530
  156. package/dist/vue/KvLendCta.vue.d.ts +583 -0
  157. package/dist/vue/KvLendCta2.js +387 -0
  158. package/dist/vue/KvLightbox.js +37 -148
  159. package/dist/vue/KvLightbox.vue.d.ts +77 -0
  160. package/dist/vue/KvLightbox2.js +117 -0
  161. package/dist/vue/KvLineGraph.js +25 -58
  162. package/dist/vue/KvLineGraph.vue.d.ts +35 -0
  163. package/dist/vue/KvLineGraph2.js +39 -0
  164. package/dist/vue/KvLoadingPlaceholder.vue.d.ts +2 -0
  165. package/dist/vue/KvLoadingSpinner.js +9 -34
  166. package/dist/vue/KvLoadingSpinner.vue.d.ts +27 -0
  167. package/dist/vue/KvLoadingSpinner2.js +29 -0
  168. package/dist/vue/KvLoanActivities.css +1 -1
  169. package/dist/vue/KvLoanActivities.js +37 -179
  170. package/dist/vue/KvLoanActivities.vue.d.ts +853 -0
  171. package/dist/vue/KvLoanActivities2.js +151 -0
  172. package/dist/vue/KvLoanBookmark.js +14 -40
  173. package/dist/vue/KvLoanBookmark.vue.d.ts +32 -0
  174. package/dist/vue/KvLoanBookmark2.js +32 -0
  175. package/dist/vue/KvLoanCallouts.css +1 -1
  176. package/dist/vue/KvLoanCallouts.js +10 -17
  177. package/dist/vue/KvLoanCallouts.vue.d.ts +18 -0
  178. package/dist/vue/KvLoanCallouts2.js +12 -0
  179. package/dist/vue/KvLoanInfoCard.js +20 -19
  180. package/dist/vue/KvLoanProgressGroup.css +1 -1
  181. package/dist/vue/KvLoanProgressGroup.js +18 -57
  182. package/dist/vue/KvLoanProgressGroup.vue.d.ts +108 -0
  183. package/dist/vue/KvLoanProgressGroup2.js +44 -0
  184. package/dist/vue/KvLoanTag.js +15 -103
  185. package/dist/vue/KvLoanTag.vue.d.ts +46 -0
  186. package/dist/vue/KvLoanTag2.js +94 -0
  187. package/dist/vue/KvLoanTeamPick.vue.d.ts +2 -0
  188. package/dist/vue/KvLoanUse.js +12 -100
  189. package/dist/vue/KvLoanUse.vue.d.ts +120 -0
  190. package/dist/vue/KvLoanUse2.js +95 -0
  191. package/dist/vue/KvLogo.vue.d.ts +2 -0
  192. package/dist/vue/KvMap.js +13 -381
  193. package/dist/vue/KvMap.vue.d.ts +213 -0
  194. package/dist/vue/KvMap2.js +376 -0
  195. package/dist/vue/KvMaterialIcon.js +10 -20
  196. package/dist/vue/KvMaterialIcon.vue.d.ts +14 -0
  197. package/dist/vue/KvMaterialIcon2.js +15 -0
  198. package/dist/vue/KvPageContainer.js +9 -8
  199. package/dist/vue/KvPageContainer.vue.d.ts +2 -0
  200. package/dist/vue/KvPageContainer2.js +4 -0
  201. package/dist/vue/KvPagination.js +38 -138
  202. package/dist/vue/KvPagination.vue.d.ts +107 -0
  203. package/dist/vue/KvPagination2.js +105 -0
  204. package/dist/vue/KvPieChart.css +1 -1
  205. package/dist/vue/KvPieChart.js +49 -128
  206. package/dist/vue/KvPieChart.vue.d.ts +47 -0
  207. package/dist/vue/KvPieChart2.js +85 -0
  208. package/dist/vue/KvPill.js +9 -19
  209. package/dist/vue/KvPill.vue.d.ts +23 -0
  210. package/dist/vue/KvPill2.js +15 -0
  211. package/dist/vue/KvPopper.js +14 -122
  212. package/dist/vue/KvPopper.vue.d.ts +80 -0
  213. package/dist/vue/KvPopper2.js +113 -0
  214. package/dist/vue/KvProgressBar.js +17 -112
  215. package/dist/vue/KvProgressBar.vue.d.ts +70 -0
  216. package/dist/vue/KvProgressBar2.js +101 -0
  217. package/dist/vue/KvPulsingDot.css +1 -1
  218. package/dist/vue/KvPulsingDot.js +11 -25
  219. package/dist/vue/KvPulsingDot.vue.d.ts +23 -0
  220. package/dist/vue/KvPulsingDot2.js +19 -0
  221. package/dist/vue/KvRadio.js +23 -106
  222. package/dist/vue/KvRadio.vue.d.ts +62 -0
  223. package/dist/vue/KvRadio2.js +89 -0
  224. package/dist/vue/KvSecondaryNav.css +1 -1
  225. package/dist/vue/KvSecondaryNav.js +46 -122
  226. package/dist/vue/KvSecondaryNav.vue.d.ts +117 -0
  227. package/dist/vue/KvSecondaryNav2.js +82 -0
  228. package/dist/vue/KvSelect.css +1 -1
  229. package/dist/vue/KvSelect.js +18 -78
  230. package/dist/vue/KvSelect.vue.d.ts +58 -0
  231. package/dist/vue/KvSelect2.js +66 -0
  232. package/dist/vue/KvSideSheet.js +44 -262
  233. package/dist/vue/KvSideSheet.vue.d.ts +136 -0
  234. package/dist/vue/KvSideSheet2.js +224 -0
  235. package/dist/vue/KvSwitch.js +23 -76
  236. package/dist/vue/KvSwitch.vue.d.ts +34 -0
  237. package/dist/vue/KvSwitch2.js +59 -0
  238. package/dist/vue/KvTab.js +15 -57
  239. package/dist/vue/KvTab.vue.d.ts +34 -0
  240. package/dist/vue/KvTab2.js +48 -0
  241. package/dist/vue/KvTabPanel.js +14 -36
  242. package/dist/vue/KvTabPanel.vue.d.ts +14 -0
  243. package/dist/vue/KvTabPanel2.js +28 -0
  244. package/dist/vue/KvTabs.js +21 -75
  245. package/dist/vue/KvTabs.vue.d.ts +22 -0
  246. package/dist/vue/KvTabs2.js +60 -0
  247. package/dist/vue/KvTextInput.js +28 -148
  248. package/dist/vue/KvTextInput.vue.d.ts +105 -0
  249. package/dist/vue/KvTextInput2.js +126 -0
  250. package/dist/vue/KvTextLink.js +13 -76
  251. package/dist/vue/KvTextLink.vue.d.ts +64 -0
  252. package/dist/vue/KvTextLink2.js +68 -0
  253. package/dist/vue/KvThemeProvider.js +8 -59
  254. package/dist/vue/KvThemeProvider.vue.d.ts +23 -0
  255. package/dist/vue/KvThemeProvider2.js +55 -0
  256. package/dist/vue/KvToast.js +32 -69
  257. package/dist/vue/KvToast.vue.d.ts +31 -0
  258. package/dist/vue/KvToast2.js +43 -0
  259. package/dist/vue/KvTooltip.css +1 -1
  260. package/dist/vue/KvTooltip.js +27 -123
  261. package/dist/vue/KvTooltip.vue.d.ts +2 -0
  262. package/dist/vue/KvTooltip2.js +103 -0
  263. package/dist/vue/KvTreeMapChart.css +1 -1
  264. package/dist/vue/KvTreeMapChart.js +28 -156
  265. package/dist/vue/KvTreeMapChart.vue.d.ts +60 -0
  266. package/dist/vue/KvTreeMapChart2.js +133 -0
  267. package/dist/vue/KvUserAvatar.js +28 -110
  268. package/dist/vue/KvUserAvatar.vue.d.ts +55 -0
  269. package/dist/vue/KvUserAvatar2.js +88 -0
  270. package/dist/vue/KvUtilityMenu.js +19 -95
  271. package/dist/vue/KvUtilityMenu.vue.d.ts +104 -0
  272. package/dist/vue/KvUtilityMenu2.js +81 -0
  273. package/dist/vue/KvVerticalCarousel.js +40 -137
  274. package/dist/vue/KvVerticalCarousel.vue.d.ts +90 -0
  275. package/dist/vue/KvVerticalCarousel2.js +103 -0
  276. package/dist/vue/KvVotingCard.css +1 -1
  277. package/dist/vue/KvVotingCard.js +31 -88
  278. package/dist/vue/KvVotingCard.vue.d.ts +249 -0
  279. package/dist/vue/KvVotingCard2.js +63 -0
  280. package/dist/vue/KvVotingCardV2.js +35 -90
  281. package/dist/vue/KvVotingCardV2.vue.d.ts +308 -0
  282. package/dist/vue/KvVotingCardV22.js +61 -0
  283. package/dist/vue/KvWideLoanCard.css +1 -1
  284. package/dist/vue/KvWideLoanCard.js +66 -274
  285. package/dist/vue/KvWideLoanCard.vue.d.ts +1191 -0
  286. package/dist/vue/KvWideLoanCard2.js +220 -0
  287. package/dist/vue/KvWwwHeader/KvHeaderAboutMenu.js +34 -38
  288. package/dist/vue/KvWwwHeader/KvHeaderAboutMenu.vue.d.ts +20 -0
  289. package/dist/vue/KvWwwHeader/KvHeaderAboutMenu2.js +9 -0
  290. package/dist/vue/KvWwwHeader/KvHeaderDropdownLink.js +20 -83
  291. package/dist/vue/KvWwwHeader/KvHeaderDropdownLink.vue.d.ts +91 -0
  292. package/dist/vue/KvWwwHeader/KvHeaderDropdownLink2.js +69 -0
  293. package/dist/vue/KvWwwHeader/KvHeaderLinkBar.css +1 -1
  294. package/dist/vue/KvWwwHeader/KvHeaderLinkBar.js +77 -248
  295. package/dist/vue/KvWwwHeader/KvHeaderLinkBar.vue.d.ts +1071 -0
  296. package/dist/vue/KvWwwHeader/KvHeaderLinkBar2.js +178 -0
  297. package/dist/vue/KvWwwHeader/KvHeaderLogo.js +8 -12
  298. package/dist/vue/KvWwwHeader/KvHeaderLogo.vue.d.ts +4 -0
  299. package/dist/vue/KvWwwHeader/KvHeaderLogo2.js +9 -0
  300. package/dist/vue/KvWwwHeader/KvHeaderMenuLink.vue.d.ts +17 -0
  301. package/dist/vue/KvWwwHeader/KvHeaderMobileMenu.css +1 -1
  302. package/dist/vue/KvWwwHeader/KvHeaderMobileMenu.js +37 -91
  303. package/dist/vue/KvWwwHeader/KvHeaderMobileMenu.vue.d.ts +162 -0
  304. package/dist/vue/KvWwwHeader/KvHeaderMobileMenu2.js +59 -0
  305. package/dist/vue/KvWwwHeader/KvHeaderMyKivaMenu.js +36 -58
  306. package/dist/vue/KvWwwHeader/KvHeaderMyKivaMenu.vue.d.ts +59 -0
  307. package/dist/vue/KvWwwHeader/KvHeaderMyKivaMenu2.js +27 -0
  308. package/dist/vue/KvWwwHeader/KvHeaderTakeActionMenu.js +20 -24
  309. package/dist/vue/KvWwwHeader/KvHeaderTakeActionMenu.vue.d.ts +20 -0
  310. package/dist/vue/KvWwwHeader/KvHeaderTakeActionMenu2.js +9 -0
  311. package/dist/vue/KvWwwHeader/LendMenu/KvLendListMenu.css +1 -1
  312. package/dist/vue/KvWwwHeader/LendMenu/KvLendListMenu.js +105 -181
  313. package/dist/vue/KvWwwHeader/LendMenu/KvLendListMenu.vue.d.ts +319 -0
  314. package/dist/vue/KvWwwHeader/LendMenu/KvLendListMenu2.js +82 -0
  315. package/dist/vue/KvWwwHeader/LendMenu/KvLendMegaMenu.css +1 -1
  316. package/dist/vue/KvWwwHeader/LendMenu/KvLendMegaMenu.js +93 -173
  317. package/dist/vue/KvWwwHeader/LendMenu/KvLendMegaMenu.vue.d.ts +166 -0
  318. package/dist/vue/KvWwwHeader/LendMenu/KvLendMegaMenu2.js +86 -0
  319. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenu.js +17 -157
  320. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenu.vue.d.ts +506 -0
  321. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenu2.js +145 -0
  322. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuCountryList.css +1 -1
  323. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuCountryList.js +11 -18
  324. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuCountryList.vue.d.ts +20 -0
  325. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuCountryList2.js +12 -0
  326. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuSearchList.js +10 -16
  327. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuSearchList.vue.d.ts +20 -0
  328. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuSearchList2.js +11 -0
  329. package/dist/vue/KvWwwHeader.css +1 -1
  330. package/dist/vue/KvWwwHeader.js +35 -148
  331. package/dist/vue/KvWwwHeader.vue.d.ts +4430 -0
  332. package/dist/vue/KvWwwHeader2.js +119 -0
  333. package/dist/vue/index.d.ts +86 -0
  334. package/package.json +35 -33
  335. package/tsconfig.json +32 -0
  336. package/vite.config.ts +84 -0
@@ -1,38 +1,31 @@
1
- import { resolveDirective as i, openBlock as e, createElementBlock as o, Fragment as c, renderList as a, withDirectives as l, createTextVNode as d, toDisplayString as r } from "vue";
1
+ import n from "./KvLendMenuCountryList2.js";
2
+ import { resolveDirective as c, openBlock as e, createElementBlock as o, Fragment as a, renderList as l, withDirectives as _, createTextVNode as d, toDisplayString as r } from "vue";
2
3
  import "./KvLendMenuCountryList.css";
3
4
  import p from "../../../_virtual/_plugin-vue_export-helper.js";
4
- const _ = {
5
- name: "CountryList",
6
- props: {
7
- countries: {
8
- type: Array,
9
- default: () => []
10
- }
11
- }
12
- }, m = { class: "tw-whitespace-nowrap tw-font-medium" }, u = ["href"], w = {
5
+ const m = { class: "tw-whitespace-nowrap tw-font-medium" }, w = ["href"], f = {
13
6
  key: 1,
14
7
  class: "tw-block tw-py-1 tw-text-tertiary"
15
8
  };
16
- function f(k, v, s, h, y, x) {
17
- const n = i("kv-track-event");
9
+ function k(u, v, i, h, x, y) {
10
+ const s = c("kv-track-event");
18
11
  return e(), o("ul", m, [
19
- (e(!0), o(c, null, a(s.countries, (t) => (e(), o("li", {
12
+ (e(!0), o(a, null, l(i.countries, (t) => (e(), o("li", {
20
13
  key: t.isoCode,
21
14
  class: "country-list-item"
22
15
  }, [
23
- t.count > 0 ? l((e(), o("a", {
16
+ t.count > 0 ? _((e(), o("a", {
24
17
  key: 0,
25
18
  href: `/lend/filter?country=${t.isoCode}`,
26
19
  class: "tw-text-primary hover:tw-text-action tw-block tw-w-full tw-py-1"
27
20
  }, [
28
21
  d(r(t.name) + " (" + r(t.count) + ") ", 1)
29
- ], 8, u)), [
30
- [n, ["TopNav", "click-Lend-Country", t.name]]
31
- ]) : (e(), o("span", w, r(t.name) + " (0) ", 1))
22
+ ], 8, w)), [
23
+ [s, ["TopNav", "click-Lend-Country", t.name]]
24
+ ]) : (e(), o("span", f, r(t.name) + " (0) ", 1))
32
25
  ]))), 128))
33
26
  ]);
34
27
  }
35
- const b = /* @__PURE__ */ p(_, [["render", f], ["__scopeId", "data-v-b291d337"]]);
28
+ const b = /* @__PURE__ */ p(n, [["render", k], ["__scopeId", "data-v-07c8276d"]]);
36
29
  export {
37
30
  b as default
38
31
  };
@@ -0,0 +1,20 @@
1
+ import { PropType } from 'vue';
2
+ export interface LendMenuCountry {
3
+ isoCode: string;
4
+ name: string;
5
+ count: number;
6
+ }
7
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
8
+ countries: {
9
+ type: PropType<LendMenuCountry[]>;
10
+ default: () => any[];
11
+ };
12
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
13
+ countries: {
14
+ type: PropType<LendMenuCountry[]>;
15
+ default: () => any[];
16
+ };
17
+ }>> & Readonly<{}>, {
18
+ countries: LendMenuCountry[];
19
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
20
+ export default _default;
@@ -0,0 +1,12 @@
1
+ const t = {
2
+ name: "CountryList",
3
+ props: {
4
+ countries: {
5
+ type: Array,
6
+ default: () => []
7
+ }
8
+ }
9
+ };
10
+ export {
11
+ t as default
12
+ };
@@ -1,24 +1,18 @@
1
- import { openBlock as e, createElementBlock as r, Fragment as a, renderList as l, createElementVNode as o, toDisplayString as c } from "vue";
2
- import i from "../../../_virtual/_plugin-vue_export-helper.js";
3
- const p = {
4
- props: {
5
- searches: {
6
- type: Array,
7
- default: () => []
8
- }
9
- }
10
- }, d = { class: "tw-font-book" }, f = ["href"];
11
- function u(w, s, n, m, _, h) {
1
+ import a from "./KvLendMenuSearchList2.js";
2
+ import { openBlock as e, createElementBlock as r, Fragment as l, renderList as c, createElementVNode as o, toDisplayString as i } from "vue";
3
+ import f from "../../../_virtual/_plugin-vue_export-helper.js";
4
+ const d = { class: "tw-font-book" }, m = ["href"];
5
+ function p(u, n, s, w, _, h) {
12
6
  return e(), r("ul", d, [
13
- (e(!0), r(a, null, l(n.searches, (t) => (e(), r("li", {
7
+ (e(!0), r(l, null, c(s.searches, (t) => (e(), r("li", {
14
8
  key: t.id
15
9
  }, [
16
10
  o("a", {
17
11
  class: "tw-text-primary hover:tw-text-action tw-block tw-w-full tw-py-1",
18
12
  href: t.url
19
- }, c(t.name), 9, f)
13
+ }, i(t.name), 9, m)
20
14
  ]))), 128)),
21
- s[0] || (s[0] = o("li", null, [
15
+ n[0] || (n[0] = o("li", null, [
22
16
  o("a", {
23
17
  class: "tw-text-primary hover:tw-text-action tw-block tw-w-full tw-py-1",
24
18
  href: "/lend/saved-search"
@@ -26,7 +20,7 @@ function u(w, s, n, m, _, h) {
26
20
  ], -1))
27
21
  ]);
28
22
  }
29
- const k = /* @__PURE__ */ i(p, [["render", u]]);
23
+ const v = /* @__PURE__ */ f(a, [["render", p]]);
30
24
  export {
31
- k as default
25
+ v as default
32
26
  };
@@ -0,0 +1,20 @@
1
+ import { PropType } from 'vue';
2
+ export interface LendMenuSearch {
3
+ id: number;
4
+ name: string;
5
+ url: string;
6
+ }
7
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
8
+ searches: {
9
+ type: PropType<LendMenuSearch[]>;
10
+ default: () => any[];
11
+ };
12
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
13
+ searches: {
14
+ type: PropType<LendMenuSearch[]>;
15
+ default: () => any[];
16
+ };
17
+ }>> & Readonly<{}>, {
18
+ searches: LendMenuSearch[];
19
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
20
+ export default _default;
@@ -0,0 +1,11 @@
1
+ const a = {
2
+ props: {
3
+ searches: {
4
+ type: Array,
5
+ default: () => []
6
+ }
7
+ }
8
+ };
9
+ export {
10
+ a as default
11
+ };
@@ -1 +1 @@
1
- .header-fade-enter-active[data-v-137228da]{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.3s}.header-fade-leave-active[data-v-137228da]{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.1s}.header-fade-enter[data-v-137228da],.header-fade-leave-to[data-v-137228da]{opacity:0}.header-fade-leave[data-v-137228da],.header-fade-enter-to[data-v-137228da]{opacity:1}.bg-opacity-50[data-v-137228da]{background-color:rgba(var(--bg-action-highlight),.5)}
1
+ .header-fade-enter-active[data-v-cc14a1da]{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.3s}.header-fade-leave-active[data-v-cc14a1da]{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.1s}.header-fade-enter[data-v-cc14a1da],.header-fade-leave-to[data-v-cc14a1da]{opacity:0}.header-fade-leave[data-v-cc14a1da],.header-fade-enter-to[data-v-cc14a1da]{opacity:1}.bg-opacity-50[data-v-cc14a1da]{background-color:rgba(var(--bg-action-highlight),.5)}
@@ -1,140 +1,27 @@
1
- import { ref as a, shallowRef as N, computed as S, onMounted as x, onBeforeUnmount as A, resolveComponent as g, resolveDirective as K, openBlock as b, createBlock as L, withCtx as w, createElementVNode as k, normalizeStyle as h, createVNode as v, Transition as E, withDirectives as y, vShow as I, createElementBlock as O, normalizeClass as G, resolveDynamicComponent as z, withModifiers as P } from "vue";
2
- import R from "@kiva/kv-tokens";
3
- import V from "./KvWwwHeader/KvHeaderLinkBar.js";
4
- import W from "./KvWwwHeader/KvHeaderLogo.js";
5
- import Y from "./KvThemeProvider.js";
6
- import j from "./KvPageContainer.js";
7
- import { throttle as q } from "../utils/throttle.js";
8
- import { debounce as F } from "../utils/debounce.js";
1
+ import h from "./KvWwwHeader2.js";
2
+ import { resolveComponent as l, resolveDirective as f, openBlock as r, createBlock as u, withCtx as i, createElementVNode as d, normalizeStyle as m, createVNode as t, Transition as v, withDirectives as s, vShow as c, createElementBlock as y, normalizeClass as H, resolveDynamicComponent as M, withModifiers as C } from "vue";
9
3
  import "./KvWwwHeader.css";
10
- import J from "../_virtual/_plugin-vue_export-helper.js";
11
- const Q = "4rem", X = ["lendMenu", "aboutUsLink", "takeActionButton"], Z = {
12
- components: {
13
- KvHeaderLinkBar: V,
14
- KvHeaderLogo: W,
15
- KvThemeProvider: Y,
16
- KvPageContainer: j
17
- },
18
- props: {
19
- loggedIn: {
20
- type: Boolean,
21
- default: !1
22
- },
23
- basketCount: {
24
- type: Number,
25
- default: 0
26
- },
27
- loginUrl: {
28
- type: String,
29
- default: "/ui-login"
30
- },
31
- balance: {
32
- type: Number,
33
- default: 0
34
- },
35
- isBasketDataLoading: {
36
- type: Boolean,
37
- default: !1
38
- },
39
- isBorrower: {
40
- type: Boolean,
41
- default: !1
42
- },
43
- isTrustee: {
44
- type: Boolean,
45
- default: !1
46
- },
47
- isUserDataLoading: {
48
- type: Boolean,
49
- default: !1
50
- },
51
- userId: {
52
- type: Number,
53
- default: null
54
- },
55
- myDashboardUrl: {
56
- type: String,
57
- default: "/mykiva"
58
- },
59
- lenderName: {
60
- type: String,
61
- default: ""
62
- },
63
- lenderImageUrl: {
64
- type: String,
65
- default: ""
66
- },
67
- showMGUpsellLink: {
68
- type: Boolean,
69
- default: !1
70
- },
71
- countriesNotLentToUrl: {
72
- type: String,
73
- default: "/lend/countries-not-lent"
74
- }
75
- },
76
- emits: [
77
- "load-lend-menu-data"
78
- ],
79
- setup(C, { emit: o }) {
80
- const n = a(!0), e = a(null), i = a(!1), r = N(null), u = a(null), m = a({ left: 0, position: "relative" }), s = a(!1), c = a(null), f = a(!1), l = S(() => {
81
- var d, t;
82
- return ((t = (d = u.value) == null ? void 0 : d.$options) == null ? void 0 : t.name) === "KvHeaderMobileMenu";
83
- }), _ = F((d, t, p) => {
84
- f.value && (t ? (c.value = d, r.value !== t && (m.value = { left: 0, position: "relative" }), r.value = t, i.value = !0, p && (m.value = {
85
- ...p,
86
- position: "absolute"
87
- })) : i.value && (i.value = !1, r.value = null));
88
- }, 100), D = (d) => {
89
- var t;
90
- (t = u.value) == null || t.onLoad(d);
91
- }, U = () => {
92
- if (!l.value) return _();
93
- }, B = () => {
94
- o("load-lend-menu-data");
95
- }, T = () => s.value && X.includes(c.value) || !s.value && l.value, M = () => {
96
- s.value = (window == null ? void 0 : window.innerWidth) < R.breakpoints.md, T() && (r.value = null, i.value = !1);
97
- }, H = q(M, 100);
98
- return x(() => {
99
- M(), window.addEventListener("resize", H), f.value = !0;
100
- }), A(() => {
101
- window.removeEventListener("resize", H);
102
- }), {
103
- HEADER_HEIGHT: Q,
104
- emitLendMenuEvent: B,
105
- isMobile: s,
106
- linksVisible: n,
107
- menuOpen: i,
108
- isMobileMenuActive: l,
109
- onHover: _,
110
- loadMenuData: D,
111
- handleOverlayClick: U,
112
- activeHeaderItem: e,
113
- menuComponent: r,
114
- menuComponentInstance: u,
115
- menuPosition: m
116
- };
117
- }
118
- }, $ = {
4
+ import D from "../_virtual/_plugin-vue_export-helper.js";
5
+ const E = {
119
6
  href: "/",
120
7
  class: "tw-px-1 tw-py-2 tw-cursor-pointer tw-absolute tw-top-1/2 tw-left-1/2 tw--translate-y-1/2 tw--translate-x-1/2 tw-transition-all tw-duration-300"
121
8
  };
122
- function ee(C, o, n, e, i, r) {
123
- const u = g("kv-header-link-bar"), m = g("kv-header-logo"), s = g("kv-page-container"), c = g("kv-theme-provider"), f = K("kv-track-event");
124
- return b(), L(c, {
9
+ function I(L, o, n, e, T, x) {
10
+ const g = l("kv-header-link-bar"), w = l("kv-header-logo"), b = l("kv-page-container"), k = l("kv-theme-provider"), _ = f("kv-track-event");
11
+ return r(), u(k, {
125
12
  tag: "div",
126
13
  class: "tw-bg-primary"
127
14
  }, {
128
- default: w(() => [
129
- k("nav", {
15
+ default: i(() => [
16
+ d("nav", {
130
17
  class: "tw-font-medium tw-relative",
131
- style: h({ height: e.HEADER_HEIGHT })
18
+ style: m({ height: e.HEADER_HEIGHT })
132
19
  }, [
133
- v(s, { class: "tw-h-full" }, {
134
- default: w(() => [
135
- v(E, { name: "header-fade" }, {
136
- default: w(() => [
137
- y(v(u, {
20
+ t(b, { class: "tw-h-full" }, {
21
+ default: i(() => [
22
+ t(v, { name: "header-fade" }, {
23
+ default: i(() => [
24
+ s(t(g, {
138
25
  "is-basket-data-loading": n.isBasketDataLoading,
139
26
  "is-user-data-loading": n.isUserDataLoading,
140
27
  "logged-in": n.loggedIn,
@@ -148,37 +35,37 @@ function ee(C, o, n, e, i, r) {
148
35
  balance: n.balance,
149
36
  onItemHover: e.onHover
150
37
  }, null, 8, ["is-basket-data-loading", "is-user-data-loading", "logged-in", "basket-count", "login-url", "open-menu-item", "my-dashboard-url", "lender-name", "lender-image-url", "is-mobile", "balance", "onItemHover"]), [
151
- [I, e.linksVisible]
38
+ [c, e.linksVisible]
152
39
  ])
153
40
  ]),
154
41
  _: 1
155
42
  }),
156
- y((b(), O("a", $, [
157
- v(m)
43
+ s((r(), y("a", E, [
44
+ t(w)
158
45
  ])), [
159
- [f, ["TopNav", "click-Logo"]]
46
+ [_, ["TopNav", "click-Logo"]]
160
47
  ])
161
48
  ]),
162
49
  _: 1
163
50
  })
164
51
  ], 4),
165
- v(E, { name: "header-fade" }, {
166
- default: w(() => [
167
- y(k("div", {
52
+ t(v, { name: "header-fade" }, {
53
+ default: i(() => [
54
+ s(d("div", {
168
55
  class: "tw-absolute tw-z-modal tw-h-full tw-inset-x-0 tw-bg-eco-green-4 bg-opacity-50 tw-min-h-screen",
169
- style: h({ top: e.HEADER_HEIGHT }),
170
- onTouchstart: o[4] || (o[4] = (...l) => e.handleOverlayClick && e.handleOverlayClick(...l))
56
+ style: m({ top: e.HEADER_HEIGHT }),
57
+ onTouchstart: o[4] || (o[4] = (...a) => e.handleOverlayClick && e.handleOverlayClick(...a))
171
58
  }, [
172
- k("div", {
173
- class: G(["tw-bg-primary tw-overflow-y-auto tw-w-full md:tw-w-auto tw-rounded-none md:tw-rounded-b-sm", { "tw-min-h-dvh": e.isMobileMenuActive }]),
174
- style: h({
59
+ d("div", {
60
+ class: H(["tw-bg-primary tw-overflow-y-auto tw-w-full md:tw-w-auto tw-rounded-none md:tw-rounded-b-sm", { "tw-min-h-dvh": e.isMobileMenuActive }]),
61
+ style: m({
175
62
  ...e.menuPosition,
176
63
  maxHeight: e.isMobileMenuActive ? "auto" : `calc(100dvh - ${e.HEADER_HEIGHT})`
177
64
  }),
178
- onMouseenter: o[2] || (o[2] = (l) => e.onHover(e.activeHeaderItem, e.menuComponent)),
179
- onMouseleave: o[3] || (o[3] = (l) => e.onHover())
65
+ onMouseenter: o[2] || (o[2] = (a) => e.onHover(e.activeHeaderItem, e.menuComponent)),
66
+ onMouseleave: o[3] || (o[3] = (a) => e.onHover())
180
67
  }, [
181
- (b(), L(z(e.menuComponent), {
68
+ (r(), u(M(e.menuComponent), {
182
69
  ref: "menuComponentInstance",
183
70
  "logged-in": n.loggedIn,
184
71
  "login-url": n.loginUrl,
@@ -190,13 +77,13 @@ function ee(C, o, n, e, i, r) {
190
77
  "is-mobile": e.isMobile,
191
78
  "countries-not-lent-to-url": n.countriesNotLentToUrl,
192
79
  onLoadLendMenuData: e.emitLendMenuEvent,
193
- onClosingMenu: o[0] || (o[0] = (l) => e.onHover()),
194
- onTouchstart: o[1] || (o[1] = P(() => {
80
+ onClosingMenu: o[0] || (o[0] = (a) => e.onHover()),
81
+ onTouchstart: o[1] || (o[1] = C(() => {
195
82
  }, ["stop"]))
196
83
  }, null, 40, ["logged-in", "login-url", "user-id", "is-borrower", "is-trustee", "my-dashboard-url", "show-m-g-upsell-link", "is-mobile", "countries-not-lent-to-url", "onLoadLendMenuData"]))
197
84
  ], 38)
198
85
  ], 36), [
199
- [I, e.menuOpen]
86
+ [c, e.menuOpen]
200
87
  ])
201
88
  ]),
202
89
  _: 1
@@ -205,7 +92,7 @@ function ee(C, o, n, e, i, r) {
205
92
  _: 1
206
93
  });
207
94
  }
208
- const me = /* @__PURE__ */ J(Z, [["render", ee], ["__scopeId", "data-v-137228da"]]);
95
+ const G = /* @__PURE__ */ D(h, [["render", I], ["__scopeId", "data-v-cc14a1da"]]);
209
96
  export {
210
- me as default
97
+ G as default
211
98
  };