@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
@@ -0,0 +1,1191 @@
1
+ import { PropType } from 'vue';
2
+ import { GetCookieFn, SetCookieFn } from '../utils/loanUtils';
3
+ export declare const KV_WIDE_LOAN_CARD_FRAGMENT: import('graphql').DocumentNode;
4
+ export declare const KV_WIDE_LOAN_CARD_USER_FRAGMENT: import('graphql').DocumentNode;
5
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
6
+ loanId: {
7
+ type: NumberConstructor;
8
+ default: any;
9
+ };
10
+ loan: {
11
+ type: ObjectConstructor;
12
+ default: any;
13
+ };
14
+ customLoanDetails: {
15
+ type: BooleanConstructor;
16
+ default: boolean;
17
+ };
18
+ showTags: {
19
+ type: BooleanConstructor;
20
+ default: boolean;
21
+ };
22
+ categoryPageName: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ enableFiveDollarsNotes: {
27
+ type: BooleanConstructor;
28
+ default: boolean;
29
+ };
30
+ isAdding: {
31
+ type: BooleanConstructor;
32
+ default: boolean;
33
+ };
34
+ isVisitor: {
35
+ type: BooleanConstructor;
36
+ default: boolean;
37
+ };
38
+ basketItems: {
39
+ type: ArrayConstructor;
40
+ default: () => any[];
41
+ };
42
+ isBookmarked: {
43
+ type: BooleanConstructor;
44
+ default: boolean;
45
+ };
46
+ kvTrackFunction: {
47
+ type: FunctionConstructor;
48
+ required: true;
49
+ };
50
+ photoPath: {
51
+ type: StringConstructor;
52
+ required: true;
53
+ };
54
+ showViewLoan: {
55
+ type: BooleanConstructor;
56
+ default: boolean;
57
+ };
58
+ externalLinks: {
59
+ type: BooleanConstructor;
60
+ default: boolean;
61
+ };
62
+ route: {
63
+ type: ObjectConstructor;
64
+ default: any;
65
+ };
66
+ userBalance: {
67
+ type: StringConstructor;
68
+ default: any;
69
+ };
70
+ getCookie: {
71
+ type: PropType<GetCookieFn>;
72
+ default: any;
73
+ };
74
+ setCookie: {
75
+ type: PropType<SetCookieFn>;
76
+ default: any;
77
+ };
78
+ fiveDollarsSelected: {
79
+ type: BooleanConstructor;
80
+ default: boolean;
81
+ };
82
+ customCallouts: {
83
+ type: ArrayConstructor;
84
+ default: () => any[];
85
+ };
86
+ customHref: {
87
+ type: StringConstructor;
88
+ default: string;
89
+ };
90
+ }>, {
91
+ allDataLoaded: import('vue').ComputedRef<boolean>;
92
+ borrowerName: import('vue').ComputedRef<any>;
93
+ city: import('vue').ComputedRef<any>;
94
+ countryName: import('vue').ComputedRef<any>;
95
+ distributionModel: import('vue').ComputedRef<any>;
96
+ formattedLocation: import('vue').ComputedRef<any>;
97
+ fundraisingPercent: import('vue').ComputedRef<any>;
98
+ hasProgressData: import('vue').ComputedRef<boolean>;
99
+ imageHash: import('vue').ComputedRef<any>;
100
+ isLoading: import('vue').ComputedRef<boolean>;
101
+ loanAmount: import('vue').ComputedRef<any>;
102
+ loanBorrowerCount: import('vue').ComputedRef<any>;
103
+ loanCallouts: import('vue').ComputedRef<import('..').Callout[]>;
104
+ loanStatus: import('vue').ComputedRef<any>;
105
+ loanUse: import('vue').ComputedRef<any>;
106
+ mdiMapMarker: string;
107
+ readMorePath: import('vue').ComputedRef<any>;
108
+ state: import('vue').ComputedRef<any>;
109
+ tag: import('vue').ComputedRef<"router-link" | "a">;
110
+ unreservedAmount: import('vue').ComputedRef<any>;
111
+ sharesAvailable: import('vue').ComputedRef<boolean>;
112
+ clickReadMore: (target: string, event: Event) => void;
113
+ }, {}, {
114
+ cardWidth(): "374px";
115
+ imageAspectRatio(): 1;
116
+ imageDefaultWidth(): 320;
117
+ imageSizes(): {
118
+ width: any;
119
+ viewSize: number;
120
+ }[];
121
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
122
+ loanId: {
123
+ type: NumberConstructor;
124
+ default: any;
125
+ };
126
+ loan: {
127
+ type: ObjectConstructor;
128
+ default: any;
129
+ };
130
+ customLoanDetails: {
131
+ type: BooleanConstructor;
132
+ default: boolean;
133
+ };
134
+ showTags: {
135
+ type: BooleanConstructor;
136
+ default: boolean;
137
+ };
138
+ categoryPageName: {
139
+ type: StringConstructor;
140
+ default: string;
141
+ };
142
+ enableFiveDollarsNotes: {
143
+ type: BooleanConstructor;
144
+ default: boolean;
145
+ };
146
+ isAdding: {
147
+ type: BooleanConstructor;
148
+ default: boolean;
149
+ };
150
+ isVisitor: {
151
+ type: BooleanConstructor;
152
+ default: boolean;
153
+ };
154
+ basketItems: {
155
+ type: ArrayConstructor;
156
+ default: () => any[];
157
+ };
158
+ isBookmarked: {
159
+ type: BooleanConstructor;
160
+ default: boolean;
161
+ };
162
+ kvTrackFunction: {
163
+ type: FunctionConstructor;
164
+ required: true;
165
+ };
166
+ photoPath: {
167
+ type: StringConstructor;
168
+ required: true;
169
+ };
170
+ showViewLoan: {
171
+ type: BooleanConstructor;
172
+ default: boolean;
173
+ };
174
+ externalLinks: {
175
+ type: BooleanConstructor;
176
+ default: boolean;
177
+ };
178
+ route: {
179
+ type: ObjectConstructor;
180
+ default: any;
181
+ };
182
+ userBalance: {
183
+ type: StringConstructor;
184
+ default: any;
185
+ };
186
+ getCookie: {
187
+ type: PropType<GetCookieFn>;
188
+ default: any;
189
+ };
190
+ setCookie: {
191
+ type: PropType<SetCookieFn>;
192
+ default: any;
193
+ };
194
+ fiveDollarsSelected: {
195
+ type: BooleanConstructor;
196
+ default: boolean;
197
+ };
198
+ customCallouts: {
199
+ type: ArrayConstructor;
200
+ default: () => any[];
201
+ };
202
+ customHref: {
203
+ type: StringConstructor;
204
+ default: string;
205
+ };
206
+ }>> & Readonly<{}>, {
207
+ loan: Record<string, any>;
208
+ externalLinks: boolean;
209
+ customLoanDetails: boolean;
210
+ loanId: number;
211
+ categoryPageName: string;
212
+ customCallouts: unknown[];
213
+ customHref: string;
214
+ basketItems: unknown[];
215
+ isAdding: boolean;
216
+ enableFiveDollarsNotes: boolean;
217
+ showViewLoan: boolean;
218
+ route: Record<string, any>;
219
+ userBalance: string;
220
+ getCookie: GetCookieFn;
221
+ setCookie: SetCookieFn;
222
+ fiveDollarsSelected: boolean;
223
+ isVisitor: boolean;
224
+ isBookmarked: boolean;
225
+ showTags: boolean;
226
+ }, {}, {
227
+ KvBorrowerImage: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
228
+ alt: {
229
+ type: StringConstructor;
230
+ required: true;
231
+ };
232
+ aspectRatio: {
233
+ type: NumberConstructor;
234
+ default: number;
235
+ };
236
+ defaultImage: {
237
+ type: ObjectConstructor;
238
+ required: true;
239
+ };
240
+ hash: {
241
+ type: StringConstructor;
242
+ required: true;
243
+ };
244
+ images: {
245
+ type: ArrayConstructor;
246
+ default: () => any[];
247
+ };
248
+ photoPath: {
249
+ type: StringConstructor;
250
+ required: true;
251
+ };
252
+ }>, {}, {}, {
253
+ defaultUrl(): any;
254
+ sizes(): any;
255
+ srcset(): any;
256
+ }, {
257
+ getImgUrl(options: any): string;
258
+ getSrcsetDef(size: any): string;
259
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
260
+ alt: {
261
+ type: StringConstructor;
262
+ required: true;
263
+ };
264
+ aspectRatio: {
265
+ type: NumberConstructor;
266
+ default: number;
267
+ };
268
+ defaultImage: {
269
+ type: ObjectConstructor;
270
+ required: true;
271
+ };
272
+ hash: {
273
+ type: StringConstructor;
274
+ required: true;
275
+ };
276
+ images: {
277
+ type: ArrayConstructor;
278
+ default: () => any[];
279
+ };
280
+ photoPath: {
281
+ type: StringConstructor;
282
+ required: true;
283
+ };
284
+ }>> & Readonly<{}>, {
285
+ aspectRatio: number;
286
+ images: unknown[];
287
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
288
+ KvLoadingPlaceholder: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
289
+ KvLoanUse: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
290
+ anonymizationLevel: {
291
+ type: StringConstructor;
292
+ default: string;
293
+ };
294
+ use: {
295
+ type: StringConstructor;
296
+ default: string;
297
+ };
298
+ loanAmount: {
299
+ type: StringConstructor;
300
+ default: string;
301
+ };
302
+ status: {
303
+ type: StringConstructor;
304
+ default: string;
305
+ };
306
+ borrowerCount: {
307
+ type: NumberConstructor;
308
+ default: number;
309
+ };
310
+ name: {
311
+ type: StringConstructor;
312
+ default: string;
313
+ };
314
+ distributionModel: {
315
+ type: StringConstructor;
316
+ default: string;
317
+ };
318
+ whySpecial: {
319
+ type: StringConstructor;
320
+ default: string;
321
+ };
322
+ hideLoanAmount: {
323
+ type: BooleanConstructor;
324
+ default: boolean;
325
+ };
326
+ boldName: {
327
+ type: BooleanConstructor;
328
+ default: boolean;
329
+ };
330
+ country: {
331
+ type: StringConstructor;
332
+ default: string;
333
+ };
334
+ useIndicativeHelpText: {
335
+ type: BooleanConstructor;
336
+ default: boolean;
337
+ };
338
+ }>, {}, {}, {
339
+ helpLanguage(): "helps" | "helped";
340
+ isDirect(): boolean;
341
+ whySpecialSentence(): string;
342
+ nameSpan(): string;
343
+ loanUse(): string;
344
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
345
+ anonymizationLevel: {
346
+ type: StringConstructor;
347
+ default: string;
348
+ };
349
+ use: {
350
+ type: StringConstructor;
351
+ default: string;
352
+ };
353
+ loanAmount: {
354
+ type: StringConstructor;
355
+ default: string;
356
+ };
357
+ status: {
358
+ type: StringConstructor;
359
+ default: string;
360
+ };
361
+ borrowerCount: {
362
+ type: NumberConstructor;
363
+ default: number;
364
+ };
365
+ name: {
366
+ type: StringConstructor;
367
+ default: string;
368
+ };
369
+ distributionModel: {
370
+ type: StringConstructor;
371
+ default: string;
372
+ };
373
+ whySpecial: {
374
+ type: StringConstructor;
375
+ default: string;
376
+ };
377
+ hideLoanAmount: {
378
+ type: BooleanConstructor;
379
+ default: boolean;
380
+ };
381
+ boldName: {
382
+ type: BooleanConstructor;
383
+ default: boolean;
384
+ };
385
+ country: {
386
+ type: StringConstructor;
387
+ default: string;
388
+ };
389
+ useIndicativeHelpText: {
390
+ type: BooleanConstructor;
391
+ default: boolean;
392
+ };
393
+ }>> & Readonly<{}>, {
394
+ name: string;
395
+ use: string;
396
+ anonymizationLevel: string;
397
+ loanAmount: string;
398
+ status: string;
399
+ borrowerCount: number;
400
+ distributionModel: string;
401
+ whySpecial: string;
402
+ hideLoanAmount: boolean;
403
+ boldName: boolean;
404
+ country: string;
405
+ useIndicativeHelpText: boolean;
406
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
407
+ KvLoanProgressGroup: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
408
+ moneyLeft: {
409
+ type: StringConstructor;
410
+ default: string;
411
+ };
412
+ progressPercent: {
413
+ type: NumberConstructor;
414
+ default: number;
415
+ };
416
+ amountGoal: {
417
+ type: StringConstructor;
418
+ default: string;
419
+ };
420
+ }>, {}, {}, {
421
+ numeralLeft(): any;
422
+ amountLow(): boolean;
423
+ fundingText(): string;
424
+ numeralGoal(): any;
425
+ goalText(): string;
426
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
427
+ moneyLeft: {
428
+ type: StringConstructor;
429
+ default: string;
430
+ };
431
+ progressPercent: {
432
+ type: NumberConstructor;
433
+ default: number;
434
+ };
435
+ amountGoal: {
436
+ type: StringConstructor;
437
+ default: string;
438
+ };
439
+ }>> & Readonly<{}>, {
440
+ moneyLeft: string;
441
+ progressPercent: number;
442
+ amountGoal: string;
443
+ }, {}, {
444
+ KvProgressBar: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
445
+ label: {
446
+ type: StringConstructor;
447
+ required: true;
448
+ };
449
+ min: {
450
+ type: NumberConstructor;
451
+ default: number;
452
+ };
453
+ max: {
454
+ type: NumberConstructor;
455
+ default: number;
456
+ };
457
+ value: {
458
+ type: NumberConstructor;
459
+ default: number;
460
+ required: true;
461
+ };
462
+ variant: {
463
+ type: StringConstructor;
464
+ default: string;
465
+ validator(value: string): boolean;
466
+ };
467
+ bgVariant: {
468
+ type: StringConstructor;
469
+ default: string;
470
+ validator(value: string): boolean;
471
+ };
472
+ }>, {
473
+ loaded: import('vue').Ref<boolean, boolean>;
474
+ percent: import('vue').ComputedRef<number>;
475
+ animateProgressBar: () => void;
476
+ variantClass: import('vue').ComputedRef<"tw-bg-tertiary" | "tw-bg-danger" | "tw-bg-caution" | "tw-bg-brand">;
477
+ backgroundVariant: import('vue').ComputedRef<"tw-bg-tertiary" | "tw-bg-secondary">;
478
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
479
+ label: {
480
+ type: StringConstructor;
481
+ required: true;
482
+ };
483
+ min: {
484
+ type: NumberConstructor;
485
+ default: number;
486
+ };
487
+ max: {
488
+ type: NumberConstructor;
489
+ default: number;
490
+ };
491
+ value: {
492
+ type: NumberConstructor;
493
+ default: number;
494
+ required: true;
495
+ };
496
+ variant: {
497
+ type: StringConstructor;
498
+ default: string;
499
+ validator(value: string): boolean;
500
+ };
501
+ bgVariant: {
502
+ type: StringConstructor;
503
+ default: string;
504
+ validator(value: string): boolean;
505
+ };
506
+ }>> & Readonly<{}>, {
507
+ value: number;
508
+ variant: string;
509
+ min: number;
510
+ max: number;
511
+ bgVariant: string;
512
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
513
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
514
+ KvMaterialIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
515
+ icon: {
516
+ type: StringConstructor;
517
+ default: string;
518
+ };
519
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
520
+ icon: {
521
+ type: StringConstructor;
522
+ default: string;
523
+ };
524
+ }>> & Readonly<{}>, {
525
+ icon: string;
526
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
527
+ KvLendCta: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
528
+ loan: {
529
+ type: ObjectConstructor;
530
+ default: () => {};
531
+ };
532
+ unreservedAmount: {
533
+ type: StringConstructor;
534
+ default: string;
535
+ };
536
+ basketItems: {
537
+ type: ArrayConstructor;
538
+ default: () => any[];
539
+ };
540
+ isLoading: {
541
+ type: BooleanConstructor;
542
+ default: boolean;
543
+ };
544
+ isAdding: {
545
+ type: BooleanConstructor;
546
+ default: boolean;
547
+ };
548
+ enableFiveDollarsNotes: {
549
+ type: BooleanConstructor;
550
+ default: boolean;
551
+ };
552
+ kvTrackFunction: {
553
+ type: FunctionConstructor;
554
+ required: true;
555
+ };
556
+ showViewLoan: {
557
+ type: BooleanConstructor;
558
+ default: boolean;
559
+ };
560
+ customLoanDetails: {
561
+ type: BooleanConstructor;
562
+ default: boolean;
563
+ };
564
+ externalLinks: {
565
+ type: BooleanConstructor;
566
+ default: boolean;
567
+ };
568
+ route: {
569
+ type: ObjectConstructor;
570
+ default: any;
571
+ };
572
+ userBalance: {
573
+ type: StringConstructor;
574
+ default: any;
575
+ };
576
+ getCookie: {
577
+ type: PropType<GetCookieFn>;
578
+ default: any;
579
+ };
580
+ setCookie: {
581
+ type: PropType<SetCookieFn>;
582
+ default: any;
583
+ };
584
+ fiveDollarsSelected: {
585
+ type: BooleanConstructor;
586
+ default: boolean;
587
+ };
588
+ isVisitor: {
589
+ type: BooleanConstructor;
590
+ default: boolean;
591
+ };
592
+ primaryButtonText: {
593
+ type: StringConstructor;
594
+ default: string;
595
+ };
596
+ secondaryButtonText: {
597
+ type: StringConstructor;
598
+ default: any;
599
+ };
600
+ secondaryButtonHandler: {
601
+ type: FunctionConstructor;
602
+ default: any;
603
+ };
604
+ maxAmount: {
605
+ type: StringConstructor;
606
+ default: string;
607
+ };
608
+ showPresetAmounts: {
609
+ type: BooleanConstructor;
610
+ default: boolean;
611
+ };
612
+ kvTrackCategory: {
613
+ type: StringConstructor;
614
+ default: string;
615
+ };
616
+ narrowSidebarBreakpoint: {
617
+ type: NumberConstructor;
618
+ default: number;
619
+ };
620
+ narrowSidebarDropdownBreakpoint: {
621
+ type: NumberConstructor;
622
+ default: number;
623
+ };
624
+ }>, {}, {
625
+ mdiChevronRight: string;
626
+ defaultAmountOptions: number[];
627
+ selectedOption: string;
628
+ selectedDropdownOption: string;
629
+ OTHER_OPTION: string;
630
+ viewportWidth: number;
631
+ componentWidth: number;
632
+ resizeObserver: any;
633
+ MOBILE_DROPDOWN_BREAKPOINT: number;
634
+ NARROW_SIDEBAR_BREAKPOINT: number;
635
+ NARROW_SIDEBAR_DROPDOWN_BREAKPOINT: number;
636
+ }, {
637
+ readMorePath(): string;
638
+ loanId(): any;
639
+ status(): any;
640
+ minNoteSize(): any;
641
+ lentPreviously(): any;
642
+ isInBasket(): any;
643
+ prices(): string[];
644
+ presetButtonsPrices(): any;
645
+ presetDropdownPrices(): any;
646
+ loanName(): any;
647
+ presetAmountCtaButtonText(): string;
648
+ defaultCtaButtonText(): any;
649
+ ctaButtonText(): any;
650
+ loanInBasketButtonText(): any;
651
+ useFormSubmit(): boolean;
652
+ state(): any;
653
+ lendButtonVisibility(): boolean;
654
+ showNonActionableLoanButton(): boolean;
655
+ hideShowLendDropdown(): boolean;
656
+ allSharesReserved(): boolean;
657
+ isLessThan25(): any;
658
+ isLentTo(): boolean;
659
+ isCompleteLoanActive(): any;
660
+ isLendAmountButton(): any;
661
+ isFunded(): boolean;
662
+ amountToLend(): any;
663
+ amountForLendAmountButton(): any;
664
+ showLendAgain(): boolean;
665
+ selectedDropdown(): boolean;
666
+ showFilteredDropdown(): boolean;
667
+ hideLendButton(): any;
668
+ isNarrowDesktop(): boolean;
669
+ }, {
670
+ addToBasket(): Promise<void>;
671
+ isAmountLessThan25(unreservedAmount: any): boolean;
672
+ isAmountBetween25And50(unreservedAmount: any): boolean;
673
+ isAmountBetween25And500(unreservedAmount: any): boolean;
674
+ trackLendAmountSelection(selectedDollarAmount: any): void;
675
+ clickDropdown(): void;
676
+ clickSecondaryButton(event: any): void;
677
+ clickPresetButton(selectedDollarAmount: any): void;
678
+ handleCheckout(): void;
679
+ isNarrowComponent(): boolean;
680
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
681
+ loan: {
682
+ type: ObjectConstructor;
683
+ default: () => {};
684
+ };
685
+ unreservedAmount: {
686
+ type: StringConstructor;
687
+ default: string;
688
+ };
689
+ basketItems: {
690
+ type: ArrayConstructor;
691
+ default: () => any[];
692
+ };
693
+ isLoading: {
694
+ type: BooleanConstructor;
695
+ default: boolean;
696
+ };
697
+ isAdding: {
698
+ type: BooleanConstructor;
699
+ default: boolean;
700
+ };
701
+ enableFiveDollarsNotes: {
702
+ type: BooleanConstructor;
703
+ default: boolean;
704
+ };
705
+ kvTrackFunction: {
706
+ type: FunctionConstructor;
707
+ required: true;
708
+ };
709
+ showViewLoan: {
710
+ type: BooleanConstructor;
711
+ default: boolean;
712
+ };
713
+ customLoanDetails: {
714
+ type: BooleanConstructor;
715
+ default: boolean;
716
+ };
717
+ externalLinks: {
718
+ type: BooleanConstructor;
719
+ default: boolean;
720
+ };
721
+ route: {
722
+ type: ObjectConstructor;
723
+ default: any;
724
+ };
725
+ userBalance: {
726
+ type: StringConstructor;
727
+ default: any;
728
+ };
729
+ getCookie: {
730
+ type: PropType<GetCookieFn>;
731
+ default: any;
732
+ };
733
+ setCookie: {
734
+ type: PropType<SetCookieFn>;
735
+ default: any;
736
+ };
737
+ fiveDollarsSelected: {
738
+ type: BooleanConstructor;
739
+ default: boolean;
740
+ };
741
+ isVisitor: {
742
+ type: BooleanConstructor;
743
+ default: boolean;
744
+ };
745
+ primaryButtonText: {
746
+ type: StringConstructor;
747
+ default: string;
748
+ };
749
+ secondaryButtonText: {
750
+ type: StringConstructor;
751
+ default: any;
752
+ };
753
+ secondaryButtonHandler: {
754
+ type: FunctionConstructor;
755
+ default: any;
756
+ };
757
+ maxAmount: {
758
+ type: StringConstructor;
759
+ default: string;
760
+ };
761
+ showPresetAmounts: {
762
+ type: BooleanConstructor;
763
+ default: boolean;
764
+ };
765
+ kvTrackCategory: {
766
+ type: StringConstructor;
767
+ default: string;
768
+ };
769
+ narrowSidebarBreakpoint: {
770
+ type: NumberConstructor;
771
+ default: number;
772
+ };
773
+ narrowSidebarDropdownBreakpoint: {
774
+ type: NumberConstructor;
775
+ default: number;
776
+ };
777
+ }>> & Readonly<{}>, {
778
+ loan: Record<string, any>;
779
+ externalLinks: boolean;
780
+ customLoanDetails: boolean;
781
+ unreservedAmount: string;
782
+ basketItems: unknown[];
783
+ isLoading: boolean;
784
+ isAdding: boolean;
785
+ enableFiveDollarsNotes: boolean;
786
+ showViewLoan: boolean;
787
+ route: Record<string, any>;
788
+ userBalance: string;
789
+ getCookie: GetCookieFn;
790
+ setCookie: SetCookieFn;
791
+ fiveDollarsSelected: boolean;
792
+ isVisitor: boolean;
793
+ primaryButtonText: string;
794
+ secondaryButtonText: string;
795
+ secondaryButtonHandler: Function;
796
+ maxAmount: string;
797
+ showPresetAmounts: boolean;
798
+ kvTrackCategory: string;
799
+ narrowSidebarBreakpoint: number;
800
+ narrowSidebarDropdownBreakpoint: number;
801
+ }, {}, {
802
+ KvLendAmountButton: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
803
+ loanId: {
804
+ type: NumberConstructor;
805
+ default: any;
806
+ };
807
+ showNow: {
808
+ type: BooleanConstructor;
809
+ default: boolean;
810
+ };
811
+ amountLeft: {
812
+ type: (StringConstructor | NumberConstructor)[];
813
+ default: number;
814
+ };
815
+ completeLoan: {
816
+ type: BooleanConstructor;
817
+ default: boolean;
818
+ };
819
+ }>, {}, {}, {
820
+ amountValue(): string;
821
+ buttonText(): string;
822
+ }, {
823
+ addToBasket(event: any): void;
824
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
825
+ loanId: {
826
+ type: NumberConstructor;
827
+ default: any;
828
+ };
829
+ showNow: {
830
+ type: BooleanConstructor;
831
+ default: boolean;
832
+ };
833
+ amountLeft: {
834
+ type: (StringConstructor | NumberConstructor)[];
835
+ default: number;
836
+ };
837
+ completeLoan: {
838
+ type: BooleanConstructor;
839
+ default: boolean;
840
+ };
841
+ }>> & Readonly<{}>, {
842
+ loanId: number;
843
+ showNow: boolean;
844
+ amountLeft: string | number;
845
+ completeLoan: boolean;
846
+ }, {}, {
847
+ KvButton: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
848
+ to: {
849
+ type: (StringConstructor | ObjectConstructor)[];
850
+ default: any;
851
+ };
852
+ href: {
853
+ type: StringConstructor;
854
+ default: any;
855
+ };
856
+ type: {
857
+ type: StringConstructor;
858
+ default: string;
859
+ validator(value: string): boolean;
860
+ };
861
+ variant: {
862
+ type: StringConstructor;
863
+ default: string;
864
+ validator(value: string): boolean;
865
+ };
866
+ state: {
867
+ type: StringConstructor;
868
+ default: string;
869
+ validator(value: string): boolean;
870
+ };
871
+ }>, {
872
+ buttonRef: import('vue').Ref<any, any>;
873
+ buttonInnerRef: import('vue').Ref<any, any>;
874
+ computedClass: import('vue').ComputedRef<string>;
875
+ computedType: import('vue').ComputedRef<string>;
876
+ isDisabled: import('vue').ComputedRef<boolean>;
877
+ loadingColor: import('vue').ComputedRef<"white" | "brand" | "black">;
878
+ onClick: (event: any) => void;
879
+ tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
880
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
881
+ to: {
882
+ type: (StringConstructor | ObjectConstructor)[];
883
+ default: any;
884
+ };
885
+ href: {
886
+ type: StringConstructor;
887
+ default: any;
888
+ };
889
+ type: {
890
+ type: StringConstructor;
891
+ default: string;
892
+ validator(value: string): boolean;
893
+ };
894
+ variant: {
895
+ type: StringConstructor;
896
+ default: string;
897
+ validator(value: string): boolean;
898
+ };
899
+ state: {
900
+ type: StringConstructor;
901
+ default: string;
902
+ validator(value: string): boolean;
903
+ };
904
+ }>> & Readonly<{
905
+ onClick?: (...args: any[]) => any;
906
+ }>, {
907
+ to: string | Record<string, any>;
908
+ type: string;
909
+ href: string;
910
+ variant: string;
911
+ state: string;
912
+ }, {}, {
913
+ KvLoadingSpinner: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
914
+ size: {
915
+ type: StringConstructor;
916
+ default: string;
917
+ validator(value: string): boolean;
918
+ };
919
+ color: {
920
+ type: StringConstructor;
921
+ default: string;
922
+ validator(value: string): boolean;
923
+ };
924
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
925
+ size: {
926
+ type: StringConstructor;
927
+ default: string;
928
+ validator(value: string): boolean;
929
+ };
930
+ color: {
931
+ type: StringConstructor;
932
+ default: string;
933
+ validator(value: string): boolean;
934
+ };
935
+ }>> & Readonly<{}>, {
936
+ size: string;
937
+ color: string;
938
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
939
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
940
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
941
+ KvUiButton: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
942
+ to: {
943
+ type: (StringConstructor | ObjectConstructor)[];
944
+ default: any;
945
+ };
946
+ href: {
947
+ type: StringConstructor;
948
+ default: any;
949
+ };
950
+ type: {
951
+ type: StringConstructor;
952
+ default: string;
953
+ validator(value: string): boolean;
954
+ };
955
+ variant: {
956
+ type: StringConstructor;
957
+ default: string;
958
+ validator(value: string): boolean;
959
+ };
960
+ state: {
961
+ type: StringConstructor;
962
+ default: string;
963
+ validator(value: string): boolean;
964
+ };
965
+ }>, {
966
+ buttonRef: import('vue').Ref<any, any>;
967
+ buttonInnerRef: import('vue').Ref<any, any>;
968
+ computedClass: import('vue').ComputedRef<string>;
969
+ computedType: import('vue').ComputedRef<string>;
970
+ isDisabled: import('vue').ComputedRef<boolean>;
971
+ loadingColor: import('vue').ComputedRef<"white" | "brand" | "black">;
972
+ onClick: (event: any) => void;
973
+ tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
974
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
975
+ to: {
976
+ type: (StringConstructor | ObjectConstructor)[];
977
+ default: any;
978
+ };
979
+ href: {
980
+ type: StringConstructor;
981
+ default: any;
982
+ };
983
+ type: {
984
+ type: StringConstructor;
985
+ default: string;
986
+ validator(value: string): boolean;
987
+ };
988
+ variant: {
989
+ type: StringConstructor;
990
+ default: string;
991
+ validator(value: string): boolean;
992
+ };
993
+ state: {
994
+ type: StringConstructor;
995
+ default: string;
996
+ validator(value: string): boolean;
997
+ };
998
+ }>> & Readonly<{
999
+ onClick?: (...args: any[]) => any;
1000
+ }>, {
1001
+ to: string | Record<string, any>;
1002
+ type: string;
1003
+ href: string;
1004
+ variant: string;
1005
+ state: string;
1006
+ }, {}, {
1007
+ KvLoadingSpinner: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1008
+ size: {
1009
+ type: StringConstructor;
1010
+ default: string;
1011
+ validator(value: string): boolean;
1012
+ };
1013
+ color: {
1014
+ type: StringConstructor;
1015
+ default: string;
1016
+ validator(value: string): boolean;
1017
+ };
1018
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1019
+ size: {
1020
+ type: StringConstructor;
1021
+ default: string;
1022
+ validator(value: string): boolean;
1023
+ };
1024
+ color: {
1025
+ type: StringConstructor;
1026
+ default: string;
1027
+ validator(value: string): boolean;
1028
+ };
1029
+ }>> & Readonly<{}>, {
1030
+ size: string;
1031
+ color: string;
1032
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1033
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1034
+ KvUiSelect: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1035
+ id: {
1036
+ type: StringConstructor;
1037
+ required: true;
1038
+ default: string;
1039
+ };
1040
+ disabled: {
1041
+ type: BooleanConstructor;
1042
+ default: boolean;
1043
+ };
1044
+ modelValue: {
1045
+ type: (StringConstructor | NumberConstructor)[];
1046
+ default: number;
1047
+ };
1048
+ }>, {
1049
+ mdiChevronDown: string;
1050
+ onChange: (event: any) => void;
1051
+ classes: any[];
1052
+ styles: any[];
1053
+ inputAttrs: any;
1054
+ inputListeners: any;
1055
+ inputValue: import('vue').Ref<string | number, string | number>;
1056
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, string[], string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1057
+ id: {
1058
+ type: StringConstructor;
1059
+ required: true;
1060
+ default: string;
1061
+ };
1062
+ disabled: {
1063
+ type: BooleanConstructor;
1064
+ default: boolean;
1065
+ };
1066
+ modelValue: {
1067
+ type: (StringConstructor | NumberConstructor)[];
1068
+ default: number;
1069
+ };
1070
+ }>> & Readonly<{
1071
+ [x: `on${Capitalize<string>}`]: (...args: any[]) => any;
1072
+ }>, {
1073
+ id: string;
1074
+ disabled: boolean;
1075
+ modelValue: string | number;
1076
+ }, {}, {
1077
+ KvMaterialIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1078
+ icon: {
1079
+ type: StringConstructor;
1080
+ default: string;
1081
+ };
1082
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1083
+ icon: {
1084
+ type: StringConstructor;
1085
+ default: string;
1086
+ };
1087
+ }>> & Readonly<{}>, {
1088
+ icon: string;
1089
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1090
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1091
+ KvMaterialIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1092
+ icon: {
1093
+ type: StringConstructor;
1094
+ default: string;
1095
+ };
1096
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1097
+ icon: {
1098
+ type: StringConstructor;
1099
+ default: string;
1100
+ };
1101
+ }>> & Readonly<{}>, {
1102
+ icon: string;
1103
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1104
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1105
+ KvLoanTag: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1106
+ loan: {
1107
+ type: ObjectConstructor;
1108
+ required: true;
1109
+ };
1110
+ useExpandedStyles: {
1111
+ type: BooleanConstructor;
1112
+ default: boolean;
1113
+ };
1114
+ }>, {}, {}, {
1115
+ deadline(): Date;
1116
+ isLseLoan(): any;
1117
+ amountLeft(): any;
1118
+ variation(): string;
1119
+ tagText(): string;
1120
+ tagColor(): "#AF741C" | "#CE2626" | "#2B7C5F" | "#CE4A00";
1121
+ matchRatio(): any;
1122
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1123
+ loan: {
1124
+ type: ObjectConstructor;
1125
+ required: true;
1126
+ };
1127
+ useExpandedStyles: {
1128
+ type: BooleanConstructor;
1129
+ default: boolean;
1130
+ };
1131
+ }>> & Readonly<{}>, {
1132
+ useExpandedStyles: boolean;
1133
+ }, {}, {
1134
+ KvCountdownTimer: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1135
+ deadline: {
1136
+ type: DateConstructor;
1137
+ required: true;
1138
+ };
1139
+ }>, {
1140
+ timeLeft: import('vue').Ref<any, any>;
1141
+ remainingHours: import('vue').Ref<any, any>;
1142
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1143
+ deadline: {
1144
+ type: DateConstructor;
1145
+ required: true;
1146
+ };
1147
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1148
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1149
+ KvLoanCallouts: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1150
+ callouts: {
1151
+ type: PropType<import('./KvLoanCallouts.vue').Callout[]>;
1152
+ required: true;
1153
+ };
1154
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1155
+ callouts: {
1156
+ type: PropType<import('./KvLoanCallouts.vue').Callout[]>;
1157
+ required: true;
1158
+ };
1159
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1160
+ KvLoanBookmark: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1161
+ isBookmarked: {
1162
+ type: BooleanConstructor;
1163
+ default: boolean;
1164
+ };
1165
+ }>, {}, {
1166
+ mdiBookmarkOutline: string;
1167
+ mdiBookmark: string;
1168
+ }, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1169
+ isBookmarked: {
1170
+ type: BooleanConstructor;
1171
+ default: boolean;
1172
+ };
1173
+ }>> & Readonly<{}>, {
1174
+ isBookmarked: boolean;
1175
+ }, {}, {
1176
+ KvMaterialIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1177
+ icon: {
1178
+ type: StringConstructor;
1179
+ default: string;
1180
+ };
1181
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1182
+ icon: {
1183
+ type: StringConstructor;
1184
+ default: string;
1185
+ };
1186
+ }>> & Readonly<{}>, {
1187
+ icon: string;
1188
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1189
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1190
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1191
+ export default _default;