@kiva/kv-components 7.6.2 → 8.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 (332) hide show
  1. package/.eslintignore +5 -0
  2. package/dist/index.d.ts +3 -0
  3. package/dist/index.js +236 -216
  4. package/dist/utils/Alea.d.ts +9 -0
  5. package/dist/utils/Alea.js +23 -23
  6. package/dist/utils/arrayUtils.d.ts +3 -0
  7. package/dist/utils/arrayUtils.js +1 -1
  8. package/dist/utils/attrs.d.ts +6 -0
  9. package/dist/utils/carousels.d.ts +21 -0
  10. package/dist/utils/comparators.d.ts +3 -0
  11. package/dist/utils/comparators.js +20 -6
  12. package/dist/utils/debounce.d.ts +1 -0
  13. package/dist/utils/debounce.js +4 -4
  14. package/dist/utils/event.d.ts +1 -0
  15. package/dist/utils/event.js +7 -0
  16. package/dist/utils/expander.d.ts +14 -0
  17. package/dist/utils/imageUtils.d.ts +11 -0
  18. package/dist/utils/imageUtils.js +12 -12
  19. package/dist/utils/index.d.ts +21 -0
  20. package/dist/utils/loanCard.d.ts +35 -0
  21. package/dist/utils/loanCard.js +2 -2
  22. package/dist/utils/loanSearch/queryParamUtils.d.ts +1 -0
  23. package/dist/utils/loanUtils.d.ts +11 -0
  24. package/dist/utils/loanUtils.js +56 -53
  25. package/dist/utils/mapUtils.d.ts +5 -0
  26. package/dist/utils/markMatches.d.ts +1 -0
  27. package/dist/utils/paramCase.d.ts +1 -0
  28. package/dist/utils/printing.d.ts +2 -0
  29. package/dist/utils/scrollLock.d.ts +4 -0
  30. package/dist/utils/themeUtils.d.ts +12 -0
  31. package/dist/utils/throttle.d.ts +1 -0
  32. package/dist/utils/throttle.js +4 -4
  33. package/dist/utils/touchEvents.d.ts +3 -0
  34. package/dist/utils/touchEvents.js +9 -9
  35. package/dist/utils/treemap.d.ts +16 -0
  36. package/dist/utils/treemap.js +1 -1
  37. package/dist/vue/KvAccordionItem.js +28 -82
  38. package/dist/vue/KvAccordionItem.vue.d.ts +107 -0
  39. package/dist/vue/KvAccordionItem2.js +60 -0
  40. package/dist/vue/KvActivityRow.js +11 -22
  41. package/dist/vue/KvActivityRow.vue.d.ts +66 -0
  42. package/dist/vue/KvActivityRow2.js +16 -0
  43. package/dist/vue/KvAtbModal.css +1 -1
  44. package/dist/vue/KvAtbModal.js +68 -248
  45. package/dist/vue/KvAtbModal.vue.d.ts +359 -0
  46. package/dist/vue/KvAtbModal2.js +186 -0
  47. package/dist/vue/KvBorrowerImage.js +17 -118
  48. package/dist/vue/KvBorrowerImage.vue.d.ts +62 -0
  49. package/dist/vue/KvBorrowerImage2.js +106 -0
  50. package/dist/vue/KvButton.js +20 -164
  51. package/dist/vue/KvButton.vue.d.ts +94 -0
  52. package/dist/vue/KvButton2.js +149 -0
  53. package/dist/vue/KvCardFrame.js +12 -74
  54. package/dist/vue/KvCardFrame.vue.d.ts +86 -0
  55. package/dist/vue/KvCardFrame2.js +67 -0
  56. package/dist/vue/KvCarousel.css +1 -1
  57. package/dist/vue/KvCarousel.js +55 -192
  58. package/dist/vue/KvCarousel.vue.d.ts +135 -0
  59. package/dist/vue/KvCarousel2.js +142 -0
  60. package/dist/vue/KvCartModal.css +1 -1
  61. package/dist/vue/KvCartModal.js +31 -131
  62. package/dist/vue/KvCartModal.vue.d.ts +163 -0
  63. package/dist/vue/KvCartModal2.js +106 -0
  64. package/dist/vue/KvCartPill.js +12 -51
  65. package/dist/vue/KvCartPill.vue.d.ts +52 -0
  66. package/dist/vue/KvCartPill2.js +45 -0
  67. package/dist/vue/KvCheckbox.css +1 -1
  68. package/dist/vue/KvCheckbox.js +30 -126
  69. package/dist/vue/KvCheckbox.vue.d.ts +90 -0
  70. package/dist/vue/KvCheckbox2.js +102 -0
  71. package/dist/vue/KvCheckoutReceipt.css +1 -1
  72. package/dist/vue/KvCheckoutReceipt.js +120 -199
  73. package/dist/vue/KvCheckoutReceipt.vue.d.ts +164 -0
  74. package/dist/vue/KvCheckoutReceipt2.js +85 -0
  75. package/dist/vue/KvChip.js +12 -29
  76. package/dist/vue/KvChip.vue.d.ts +22 -0
  77. package/dist/vue/KvChip2.js +22 -0
  78. package/dist/vue/KvClassicLoanCard.css +1 -1
  79. package/dist/vue/KvClassicLoanCard.js +83 -351
  80. package/dist/vue/KvClassicLoanCard.vue.d.ts +2120 -0
  81. package/dist/vue/KvClassicLoanCard2.js +281 -0
  82. package/dist/vue/KvCommentsAdd.css +1 -1
  83. package/dist/vue/KvCommentsAdd.js +34 -81
  84. package/dist/vue/KvCommentsAdd.vue.d.ts +296 -0
  85. package/dist/vue/KvCommentsAdd2.js +57 -0
  86. package/dist/vue/KvCommentsContainer.js +15 -66
  87. package/dist/vue/KvCommentsContainer.vue.d.ts +954 -0
  88. package/dist/vue/KvCommentsContainer2.js +58 -0
  89. package/dist/vue/KvCommentsHeartButton.css +1 -1
  90. package/dist/vue/KvCommentsHeartButton.js +12 -51
  91. package/dist/vue/KvCommentsHeartButton.vue.d.ts +42 -0
  92. package/dist/vue/KvCommentsHeartButton2.js +44 -0
  93. package/dist/vue/KvCommentsList.js +9 -51
  94. package/dist/vue/KvCommentsList.vue.d.ts +619 -0
  95. package/dist/vue/KvCommentsList2.js +46 -0
  96. package/dist/vue/KvCommentsListItem.js +62 -186
  97. package/dist/vue/KvCommentsListItem.vue.d.ts +571 -0
  98. package/dist/vue/KvCommentsListItem2.js +135 -0
  99. package/dist/vue/KvCommentsReplyButton.css +1 -1
  100. package/dist/vue/KvCommentsReplyButton.js +8 -17
  101. package/dist/vue/KvCommentsReplyButton.vue.d.ts +98 -0
  102. package/dist/vue/KvCommentsReplyButton2.js +13 -0
  103. package/dist/vue/KvCompactLoanCard.css +1 -1
  104. package/dist/vue/KvCompactLoanCard.js +71 -327
  105. package/dist/vue/KvCompactLoanCard.vue.d.ts +1272 -0
  106. package/dist/vue/KvCompactLoanCard2.js +269 -0
  107. package/dist/vue/KvContentfulImg.js +47 -149
  108. package/dist/vue/KvContentfulImg.vue.d.ts +107 -0
  109. package/dist/vue/KvContentfulImg2.js +119 -0
  110. package/dist/vue/KvCountdownTimer.js +8 -28
  111. package/dist/vue/KvCountdownTimer.vue.d.ts +15 -0
  112. package/dist/vue/KvCountdownTimer2.js +26 -0
  113. package/dist/vue/KvDatePicker.js +21 -101
  114. package/dist/vue/KvDatePicker.vue.d.ts +58 -0
  115. package/dist/vue/KvDatePicker2.js +86 -0
  116. package/dist/vue/KvExpandable.js +9 -56
  117. package/dist/vue/KvExpandable.vue.d.ts +53 -0
  118. package/dist/vue/KvExpandable2.js +52 -0
  119. package/dist/vue/KvExpandableQuestion.js +23 -82
  120. package/dist/vue/KvExpandableQuestion.vue.d.ts +124 -0
  121. package/dist/vue/KvExpandableQuestion2.js +65 -0
  122. package/dist/vue/KvFlag.css +1 -1
  123. package/dist/vue/KvFlag.js +16 -617
  124. package/dist/vue/KvFlag.vue.d.ts +66 -0
  125. package/dist/vue/KvFlag2.js +606 -0
  126. package/dist/vue/KvGrid.js +7 -18
  127. package/dist/vue/KvGrid.vue.d.ts +14 -0
  128. package/dist/vue/KvGrid2.js +15 -0
  129. package/dist/vue/KvIconBag.js +12 -18
  130. package/dist/vue/KvIconBag.vue.d.ts +14 -0
  131. package/dist/vue/KvIconBag2.js +11 -0
  132. package/dist/vue/KvImpactDashboardHeader.vue.d.ts +17 -0
  133. package/dist/vue/KvImpactVerticalSelector.js +31 -110
  134. package/dist/vue/KvImpactVerticalSelector.vue.d.ts +278 -0
  135. package/dist/vue/KvImpactVerticalSelector2.js +85 -0
  136. package/dist/vue/KvInlineActivityCard.js +15 -44
  137. package/dist/vue/KvInlineActivityCard.vue.d.ts +71 -0
  138. package/dist/vue/KvInlineActivityCard2.js +35 -0
  139. package/dist/vue/KvInlineActivityFeed.css +1 -1
  140. package/dist/vue/KvInlineActivityFeed.js +11 -23
  141. package/dist/vue/KvInlineActivityFeed.vue.d.ts +85 -0
  142. package/dist/vue/KvInlineActivityFeed2.js +17 -0
  143. package/dist/vue/KvIntroductionLoanCard.css +1 -1
  144. package/dist/vue/KvIntroductionLoanCard.js +111 -309
  145. package/dist/vue/KvIntroductionLoanCard.vue.d.ts +617 -0
  146. package/dist/vue/KvIntroductionLoanCard2.js +209 -0
  147. package/dist/vue/KvLendAmountButton.js +9 -53
  148. package/dist/vue/KvLendAmountButton.vue.d.ts +140 -0
  149. package/dist/vue/KvLendAmountButton2.js +48 -0
  150. package/dist/vue/KvLendCta.css +1 -1
  151. package/dist/vue/KvLendCta.js +150 -530
  152. package/dist/vue/KvLendCta.vue.d.ts +583 -0
  153. package/dist/vue/KvLendCta2.js +387 -0
  154. package/dist/vue/KvLightbox.js +37 -148
  155. package/dist/vue/KvLightbox.vue.d.ts +77 -0
  156. package/dist/vue/KvLightbox2.js +117 -0
  157. package/dist/vue/KvLineGraph.js +25 -58
  158. package/dist/vue/KvLineGraph.vue.d.ts +35 -0
  159. package/dist/vue/KvLineGraph2.js +39 -0
  160. package/dist/vue/KvLoadingPlaceholder.vue.d.ts +2 -0
  161. package/dist/vue/KvLoadingSpinner.js +9 -34
  162. package/dist/vue/KvLoadingSpinner.vue.d.ts +27 -0
  163. package/dist/vue/KvLoadingSpinner2.js +29 -0
  164. package/dist/vue/KvLoanActivities.css +1 -1
  165. package/dist/vue/KvLoanActivities.js +37 -179
  166. package/dist/vue/KvLoanActivities.vue.d.ts +853 -0
  167. package/dist/vue/KvLoanActivities2.js +151 -0
  168. package/dist/vue/KvLoanBookmark.js +14 -40
  169. package/dist/vue/KvLoanBookmark.vue.d.ts +32 -0
  170. package/dist/vue/KvLoanBookmark2.js +32 -0
  171. package/dist/vue/KvLoanCallouts.css +1 -1
  172. package/dist/vue/KvLoanCallouts.js +10 -17
  173. package/dist/vue/KvLoanCallouts.vue.d.ts +18 -0
  174. package/dist/vue/KvLoanCallouts2.js +12 -0
  175. package/dist/vue/KvLoanInfoCard.js +20 -19
  176. package/dist/vue/KvLoanProgressGroup.css +1 -1
  177. package/dist/vue/KvLoanProgressGroup.js +18 -57
  178. package/dist/vue/KvLoanProgressGroup.vue.d.ts +108 -0
  179. package/dist/vue/KvLoanProgressGroup2.js +44 -0
  180. package/dist/vue/KvLoanTag.js +15 -103
  181. package/dist/vue/KvLoanTag.vue.d.ts +46 -0
  182. package/dist/vue/KvLoanTag2.js +94 -0
  183. package/dist/vue/KvLoanTeamPick.vue.d.ts +2 -0
  184. package/dist/vue/KvLoanUse.js +12 -100
  185. package/dist/vue/KvLoanUse.vue.d.ts +120 -0
  186. package/dist/vue/KvLoanUse2.js +95 -0
  187. package/dist/vue/KvLogo.vue.d.ts +2 -0
  188. package/dist/vue/KvMap.js +13 -381
  189. package/dist/vue/KvMap.vue.d.ts +213 -0
  190. package/dist/vue/KvMap2.js +376 -0
  191. package/dist/vue/KvMaterialIcon.js +10 -20
  192. package/dist/vue/KvMaterialIcon.vue.d.ts +14 -0
  193. package/dist/vue/KvMaterialIcon2.js +15 -0
  194. package/dist/vue/KvPageContainer.js +9 -8
  195. package/dist/vue/KvPageContainer.vue.d.ts +2 -0
  196. package/dist/vue/KvPageContainer2.js +4 -0
  197. package/dist/vue/KvPagination.js +38 -138
  198. package/dist/vue/KvPagination.vue.d.ts +107 -0
  199. package/dist/vue/KvPagination2.js +105 -0
  200. package/dist/vue/KvPieChart.css +1 -1
  201. package/dist/vue/KvPieChart.js +49 -128
  202. package/dist/vue/KvPieChart.vue.d.ts +47 -0
  203. package/dist/vue/KvPieChart2.js +85 -0
  204. package/dist/vue/KvPill.js +9 -19
  205. package/dist/vue/KvPill.vue.d.ts +23 -0
  206. package/dist/vue/KvPill2.js +15 -0
  207. package/dist/vue/KvPopper.js +14 -122
  208. package/dist/vue/KvPopper.vue.d.ts +80 -0
  209. package/dist/vue/KvPopper2.js +113 -0
  210. package/dist/vue/KvProgressBar.js +17 -112
  211. package/dist/vue/KvProgressBar.vue.d.ts +70 -0
  212. package/dist/vue/KvProgressBar2.js +101 -0
  213. package/dist/vue/KvPulsingDot.css +1 -1
  214. package/dist/vue/KvPulsingDot.js +11 -25
  215. package/dist/vue/KvPulsingDot.vue.d.ts +23 -0
  216. package/dist/vue/KvPulsingDot2.js +19 -0
  217. package/dist/vue/KvRadio.js +23 -106
  218. package/dist/vue/KvRadio.vue.d.ts +62 -0
  219. package/dist/vue/KvRadio2.js +89 -0
  220. package/dist/vue/KvSecondaryNav.css +1 -1
  221. package/dist/vue/KvSecondaryNav.js +46 -122
  222. package/dist/vue/KvSecondaryNav.vue.d.ts +117 -0
  223. package/dist/vue/KvSecondaryNav2.js +82 -0
  224. package/dist/vue/KvSelect.css +1 -1
  225. package/dist/vue/KvSelect.js +18 -78
  226. package/dist/vue/KvSelect.vue.d.ts +58 -0
  227. package/dist/vue/KvSelect2.js +66 -0
  228. package/dist/vue/KvSideSheet.js +44 -262
  229. package/dist/vue/KvSideSheet.vue.d.ts +136 -0
  230. package/dist/vue/KvSideSheet2.js +224 -0
  231. package/dist/vue/KvSwitch.js +23 -76
  232. package/dist/vue/KvSwitch.vue.d.ts +34 -0
  233. package/dist/vue/KvSwitch2.js +59 -0
  234. package/dist/vue/KvTab.js +15 -57
  235. package/dist/vue/KvTab.vue.d.ts +34 -0
  236. package/dist/vue/KvTab2.js +48 -0
  237. package/dist/vue/KvTabPanel.js +14 -36
  238. package/dist/vue/KvTabPanel.vue.d.ts +14 -0
  239. package/dist/vue/KvTabPanel2.js +28 -0
  240. package/dist/vue/KvTabs.js +21 -75
  241. package/dist/vue/KvTabs.vue.d.ts +22 -0
  242. package/dist/vue/KvTabs2.js +60 -0
  243. package/dist/vue/KvTextInput.js +28 -148
  244. package/dist/vue/KvTextInput.vue.d.ts +105 -0
  245. package/dist/vue/KvTextInput2.js +126 -0
  246. package/dist/vue/KvTextLink.js +13 -76
  247. package/dist/vue/KvTextLink.vue.d.ts +64 -0
  248. package/dist/vue/KvTextLink2.js +68 -0
  249. package/dist/vue/KvThemeProvider.js +8 -59
  250. package/dist/vue/KvThemeProvider.vue.d.ts +23 -0
  251. package/dist/vue/KvThemeProvider2.js +55 -0
  252. package/dist/vue/KvToast.js +32 -69
  253. package/dist/vue/KvToast.vue.d.ts +31 -0
  254. package/dist/vue/KvToast2.js +43 -0
  255. package/dist/vue/KvTooltip.css +1 -1
  256. package/dist/vue/KvTooltip.js +27 -123
  257. package/dist/vue/KvTooltip.vue.d.ts +2 -0
  258. package/dist/vue/KvTooltip2.js +103 -0
  259. package/dist/vue/KvTreeMapChart.css +1 -1
  260. package/dist/vue/KvTreeMapChart.js +28 -156
  261. package/dist/vue/KvTreeMapChart.vue.d.ts +60 -0
  262. package/dist/vue/KvTreeMapChart2.js +133 -0
  263. package/dist/vue/KvUserAvatar.js +28 -110
  264. package/dist/vue/KvUserAvatar.vue.d.ts +55 -0
  265. package/dist/vue/KvUserAvatar2.js +88 -0
  266. package/dist/vue/KvUtilityMenu.js +19 -95
  267. package/dist/vue/KvUtilityMenu.vue.d.ts +104 -0
  268. package/dist/vue/KvUtilityMenu2.js +81 -0
  269. package/dist/vue/KvVerticalCarousel.js +40 -137
  270. package/dist/vue/KvVerticalCarousel.vue.d.ts +90 -0
  271. package/dist/vue/KvVerticalCarousel2.js +103 -0
  272. package/dist/vue/KvVotingCard.css +1 -1
  273. package/dist/vue/KvVotingCard.js +31 -88
  274. package/dist/vue/KvVotingCard.vue.d.ts +249 -0
  275. package/dist/vue/KvVotingCard2.js +63 -0
  276. package/dist/vue/KvVotingCardV2.js +35 -90
  277. package/dist/vue/KvVotingCardV2.vue.d.ts +308 -0
  278. package/dist/vue/KvVotingCardV22.js +61 -0
  279. package/dist/vue/KvWideLoanCard.css +1 -1
  280. package/dist/vue/KvWideLoanCard.js +66 -274
  281. package/dist/vue/KvWideLoanCard.vue.d.ts +1191 -0
  282. package/dist/vue/KvWideLoanCard2.js +220 -0
  283. package/dist/vue/KvWwwHeader/KvHeaderAboutMenu.js +34 -38
  284. package/dist/vue/KvWwwHeader/KvHeaderAboutMenu.vue.d.ts +20 -0
  285. package/dist/vue/KvWwwHeader/KvHeaderAboutMenu2.js +9 -0
  286. package/dist/vue/KvWwwHeader/KvHeaderDropdownLink.js +20 -83
  287. package/dist/vue/KvWwwHeader/KvHeaderDropdownLink.vue.d.ts +91 -0
  288. package/dist/vue/KvWwwHeader/KvHeaderDropdownLink2.js +69 -0
  289. package/dist/vue/KvWwwHeader/KvHeaderLinkBar.css +1 -1
  290. package/dist/vue/KvWwwHeader/KvHeaderLinkBar.js +77 -248
  291. package/dist/vue/KvWwwHeader/KvHeaderLinkBar.vue.d.ts +1071 -0
  292. package/dist/vue/KvWwwHeader/KvHeaderLinkBar2.js +178 -0
  293. package/dist/vue/KvWwwHeader/KvHeaderLogo.js +8 -12
  294. package/dist/vue/KvWwwHeader/KvHeaderLogo.vue.d.ts +4 -0
  295. package/dist/vue/KvWwwHeader/KvHeaderLogo2.js +9 -0
  296. package/dist/vue/KvWwwHeader/KvHeaderMenuLink.vue.d.ts +17 -0
  297. package/dist/vue/KvWwwHeader/KvHeaderMobileMenu.css +1 -1
  298. package/dist/vue/KvWwwHeader/KvHeaderMobileMenu.js +37 -91
  299. package/dist/vue/KvWwwHeader/KvHeaderMobileMenu.vue.d.ts +162 -0
  300. package/dist/vue/KvWwwHeader/KvHeaderMobileMenu2.js +59 -0
  301. package/dist/vue/KvWwwHeader/KvHeaderMyKivaMenu.js +36 -58
  302. package/dist/vue/KvWwwHeader/KvHeaderMyKivaMenu.vue.d.ts +59 -0
  303. package/dist/vue/KvWwwHeader/KvHeaderMyKivaMenu2.js +27 -0
  304. package/dist/vue/KvWwwHeader/KvHeaderTakeActionMenu.js +20 -24
  305. package/dist/vue/KvWwwHeader/KvHeaderTakeActionMenu.vue.d.ts +20 -0
  306. package/dist/vue/KvWwwHeader/KvHeaderTakeActionMenu2.js +9 -0
  307. package/dist/vue/KvWwwHeader/LendMenu/KvLendListMenu.css +1 -1
  308. package/dist/vue/KvWwwHeader/LendMenu/KvLendListMenu.js +105 -181
  309. package/dist/vue/KvWwwHeader/LendMenu/KvLendListMenu.vue.d.ts +319 -0
  310. package/dist/vue/KvWwwHeader/LendMenu/KvLendListMenu2.js +82 -0
  311. package/dist/vue/KvWwwHeader/LendMenu/KvLendMegaMenu.css +1 -1
  312. package/dist/vue/KvWwwHeader/LendMenu/KvLendMegaMenu.js +93 -173
  313. package/dist/vue/KvWwwHeader/LendMenu/KvLendMegaMenu.vue.d.ts +166 -0
  314. package/dist/vue/KvWwwHeader/LendMenu/KvLendMegaMenu2.js +86 -0
  315. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenu.js +17 -157
  316. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenu.vue.d.ts +506 -0
  317. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenu2.js +145 -0
  318. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuCountryList.css +1 -1
  319. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuCountryList.js +11 -18
  320. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuCountryList.vue.d.ts +20 -0
  321. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuCountryList2.js +12 -0
  322. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuSearchList.js +10 -16
  323. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuSearchList.vue.d.ts +20 -0
  324. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuSearchList2.js +11 -0
  325. package/dist/vue/KvWwwHeader.css +1 -1
  326. package/dist/vue/KvWwwHeader.js +35 -148
  327. package/dist/vue/KvWwwHeader.vue.d.ts +4430 -0
  328. package/dist/vue/KvWwwHeader2.js +119 -0
  329. package/dist/vue/index.d.ts +86 -0
  330. package/package.json +35 -33
  331. package/tsconfig.json +32 -0
  332. package/vite.config.ts +84 -0
@@ -0,0 +1,220 @@
1
+ import o from "graphql-tag";
2
+ import { LOAN_CALLOUTS_FRAGMENT as E, LOAN_GEOCODE_FRAGMENT as R, LOAN_PROGRESS_FRAGMENT as B, loanCardComputedProperties as M, loanCardMethods as S } from "../utils/loanCard.js";
3
+ import T from "./KvLoanUse.js";
4
+ import w from "./KvBorrowerImage.js";
5
+ import O from "./KvLoanProgressGroup.js";
6
+ import D from "./KvLoanCallouts.js";
7
+ import F from "./KvLendCta.js";
8
+ import G from "./KvLoanBookmark.js";
9
+ import k from "./KvLoanTag.js";
10
+ import P from "./KvMaterialIcon.js";
11
+ import b from "./KvLoadingPlaceholder.js";
12
+ import { KV_LEND_CTA_FRAGMENT as U, KV_LEND_CTA_USER_FRAGMENT as V } from "./KvLendCta2.js";
13
+ import { KV_LOAN_TAG_FRAGMENT as W } from "./KvLoanTag2.js";
14
+ import { KV_LOAN_USE_FRAGMENT as $ } from "./KvLoanUse2.js";
15
+ import { KV_LOAN_BOOKMARK_FRAGMENT as z } from "./KvLoanBookmark2.js";
16
+ const ne = o`
17
+ fragment KvWideLoanCard on LoanBasic {
18
+ id
19
+ image {
20
+ id
21
+ hash # for imageHash
22
+ }
23
+ name # for borrowerName
24
+ ...KvLendCta
25
+ ...KvLoanTag
26
+ ...KvLoanUse
27
+ ...LoanCallouts
28
+ ...LoanGeocode
29
+ ...LoanProgress
30
+ }
31
+ ${U}
32
+ ${W}
33
+ ${$}
34
+ ${E}
35
+ ${R}
36
+ ${B}
37
+ `, ie = o`
38
+ fragment KvWideLoanCardUser on LoanBasic {
39
+ id
40
+ ...KvLendCtaUser
41
+ ...KvLoanBookmark
42
+ }
43
+ ${V}
44
+ ${z}
45
+ `, de = {
46
+ name: "KvWideLoanCard",
47
+ components: {
48
+ KvBorrowerImage: w,
49
+ KvLoadingPlaceholder: b,
50
+ KvLoanUse: T,
51
+ KvLoanProgressGroup: O,
52
+ KvMaterialIcon: P,
53
+ KvLendCta: F,
54
+ KvLoanTag: k,
55
+ KvLoanCallouts: D,
56
+ KvLoanBookmark: G
57
+ },
58
+ props: {
59
+ loanId: {
60
+ type: Number,
61
+ default: void 0
62
+ },
63
+ loan: {
64
+ type: Object,
65
+ default: null
66
+ },
67
+ customLoanDetails: {
68
+ type: Boolean,
69
+ default: !1
70
+ },
71
+ showTags: {
72
+ type: Boolean,
73
+ default: !1
74
+ },
75
+ categoryPageName: {
76
+ type: String,
77
+ default: ""
78
+ },
79
+ enableFiveDollarsNotes: {
80
+ type: Boolean,
81
+ default: !1
82
+ },
83
+ isAdding: {
84
+ type: Boolean,
85
+ default: !1
86
+ },
87
+ isVisitor: {
88
+ type: Boolean,
89
+ default: !0
90
+ },
91
+ basketItems: {
92
+ type: Array,
93
+ default: () => []
94
+ },
95
+ isBookmarked: {
96
+ type: Boolean,
97
+ default: !1
98
+ },
99
+ kvTrackFunction: {
100
+ type: Function,
101
+ required: !0
102
+ },
103
+ photoPath: {
104
+ type: String,
105
+ required: !0
106
+ },
107
+ showViewLoan: {
108
+ type: Boolean,
109
+ default: !1
110
+ },
111
+ externalLinks: {
112
+ type: Boolean,
113
+ default: !1
114
+ },
115
+ route: {
116
+ type: Object,
117
+ default: void 0
118
+ },
119
+ userBalance: {
120
+ type: String,
121
+ default: void 0
122
+ },
123
+ getCookie: {
124
+ type: Function,
125
+ default: void 0
126
+ },
127
+ setCookie: {
128
+ type: Function,
129
+ default: void 0
130
+ },
131
+ fiveDollarsSelected: {
132
+ type: Boolean,
133
+ default: !1
134
+ },
135
+ customCallouts: {
136
+ type: Array,
137
+ default: () => []
138
+ },
139
+ customHref: {
140
+ type: String,
141
+ default: ""
142
+ }
143
+ },
144
+ setup(e, { emit: a }) {
145
+ const {
146
+ allDataLoaded: t,
147
+ borrowerName: r,
148
+ city: n,
149
+ countryName: i,
150
+ distributionModel: d,
151
+ formattedLocation: l,
152
+ fundraisingPercent: s,
153
+ hasProgressData: u,
154
+ imageHash: m,
155
+ isLoading: f,
156
+ loanAmount: p,
157
+ loanBorrowerCount: L,
158
+ loanCallouts: c,
159
+ loanStatus: _,
160
+ loanUse: A,
161
+ mdiMapMarker: g,
162
+ readMorePath: v,
163
+ state: y,
164
+ tag: K,
165
+ unreservedAmount: N,
166
+ sharesAvailable: h
167
+ } = M(e), {
168
+ clickReadMore: C
169
+ } = S(e, a);
170
+ return {
171
+ allDataLoaded: t,
172
+ borrowerName: r,
173
+ city: n,
174
+ countryName: i,
175
+ distributionModel: d,
176
+ formattedLocation: l,
177
+ fundraisingPercent: s,
178
+ hasProgressData: u,
179
+ imageHash: m,
180
+ isLoading: f,
181
+ loanAmount: p,
182
+ loanBorrowerCount: L,
183
+ loanCallouts: c,
184
+ loanStatus: _,
185
+ loanUse: A,
186
+ mdiMapMarker: g,
187
+ readMorePath: v,
188
+ state: y,
189
+ tag: K,
190
+ unreservedAmount: N,
191
+ sharesAvailable: h,
192
+ clickReadMore: C
193
+ };
194
+ },
195
+ computed: {
196
+ cardWidth() {
197
+ return "374px";
198
+ },
199
+ imageAspectRatio() {
200
+ return 1;
201
+ },
202
+ imageDefaultWidth() {
203
+ return 320;
204
+ },
205
+ imageSizes() {
206
+ return [
207
+ { width: this.imageDefaultWidth, viewSize: 1024 },
208
+ { width: this.imageDefaultWidth, viewSize: 768 },
209
+ { width: 416, viewSize: 480 },
210
+ { width: 374, viewSize: 414 },
211
+ { width: 335, viewSize: 375 }
212
+ ];
213
+ }
214
+ }
215
+ };
216
+ export {
217
+ ne as KV_WIDE_LOAN_CARD_FRAGMENT,
218
+ ie as KV_WIDE_LOAN_CARD_USER_FRAGMENT,
219
+ de as default
220
+ };
@@ -1,81 +1,77 @@
1
- import s from "./KvHeaderMenuLink.js";
2
- import { resolveComponent as l, resolveDirective as p, openBlock as t, createElementBlock as f, withDirectives as i, createBlock as u, withCtx as n, createTextVNode as a } from "vue";
1
+ import n from "./KvHeaderAboutMenu2.js";
2
+ import { resolveComponent as l, resolveDirective as p, openBlock as e, createElementBlock as f, withDirectives as i, createBlock as u, withCtx as a, createTextVNode as s } from "vue";
3
3
  import d from "../../_virtual/_plugin-vue_export-helper.js";
4
- const v = {
5
- components: {
6
- KvHeaderMenuLink: s
7
- }
8
- }, k = { class: "tw--mt-0.5 tw-pb-0.5 tw-flex tw-flex-col tw-items-start tw-font-medium tw-px-2.5" };
9
- function b(w, e, m, c, A, N) {
4
+ const v = { class: "tw--mt-0.5 tw-pb-0.5 tw-flex tw-flex-col tw-items-start tw-font-medium tw-px-2.5" };
5
+ function k(b, t, w, m, c, A) {
10
6
  const o = l("kv-header-menu-link"), r = p("kv-track-event");
11
- return t(), f("nav", k, [
12
- i((t(), u(o, { href: "/about" }, {
13
- default: n(() => e[0] || (e[0] = [
14
- a(" About us ")
7
+ return e(), f("nav", v, [
8
+ i((e(), u(o, { href: "/about" }, {
9
+ default: a(() => t[0] || (t[0] = [
10
+ s(" About us ")
15
11
  ])),
16
12
  _: 1
17
13
  })), [
18
14
  [r, ["TopNav", "click-About-About us"]]
19
15
  ]),
20
- i((t(), u(o, { href: "/about/partner-with-us" }, {
21
- default: n(() => e[1] || (e[1] = [
22
- a(" Partner with us ")
16
+ i((e(), u(o, { href: "/about/partner-with-us" }, {
17
+ default: a(() => t[1] || (t[1] = [
18
+ s(" Partner with us ")
23
19
  ])),
24
20
  _: 1
25
21
  })), [
26
22
  [r, ["TopNav", "click-About-Partner with us"]]
27
23
  ]),
28
- i((t(), u(o, { href: "/about/how" }, {
29
- default: n(() => e[2] || (e[2] = [
30
- a(" How Kiva works ")
24
+ i((e(), u(o, { href: "/about/how" }, {
25
+ default: a(() => t[2] || (t[2] = [
26
+ s(" How Kiva works ")
31
27
  ])),
32
28
  _: 1
33
29
  })), [
34
30
  [r, ["TopNav", "click-About-How Kiva works"]]
35
31
  ]),
36
- i((t(), u(o, { href: "/about/where-kiva-works" }, {
37
- default: n(() => e[3] || (e[3] = [
38
- a(" Where Kiva works ")
32
+ i((e(), u(o, { href: "/about/where-kiva-works" }, {
33
+ default: a(() => t[3] || (t[3] = [
34
+ s(" Where Kiva works ")
39
35
  ])),
40
36
  _: 1
41
37
  })), [
42
38
  [r, ["TopNav", "click-About-Where Kiva works"]]
43
39
  ]),
44
- i((t(), u(o, { href: "/impact" }, {
45
- default: n(() => e[4] || (e[4] = [
46
- a(" Impact ")
40
+ i((e(), u(o, { href: "/impact" }, {
41
+ default: a(() => t[4] || (t[4] = [
42
+ s(" Impact ")
47
43
  ])),
48
44
  _: 1
49
45
  })), [
50
46
  [r, ["TopNav", "click-About-Impact"]]
51
47
  ]),
52
- i((t(), u(o, { href: "/about/leadership" }, {
53
- default: n(() => e[5] || (e[5] = [
54
- a(" Leadership ")
48
+ i((e(), u(o, { href: "/about/leadership" }, {
49
+ default: a(() => t[5] || (t[5] = [
50
+ s(" Leadership ")
55
51
  ])),
56
52
  _: 1
57
53
  })), [
58
54
  [r, ["TopNav", "click-About-Leadership"]]
59
55
  ]),
60
- i((t(), u(o, { href: "/about/finances" }, {
61
- default: n(() => e[6] || (e[6] = [
62
- a(" Finances ")
56
+ i((e(), u(o, { href: "/about/finances" }, {
57
+ default: a(() => t[6] || (t[6] = [
58
+ s(" Finances ")
63
59
  ])),
64
60
  _: 1
65
61
  })), [
66
62
  [r, ["TopNav", "click-About-Finances"]]
67
63
  ]),
68
- i((t(), u(o, { href: "/about/press-center" }, {
69
- default: n(() => e[7] || (e[7] = [
70
- a(" Press ")
64
+ i((e(), u(o, { href: "/about/press-center" }, {
65
+ default: a(() => t[7] || (t[7] = [
66
+ s(" Press ")
71
67
  ])),
72
68
  _: 1
73
69
  })), [
74
70
  [r, ["TopNav", "click-About-Press"]]
75
71
  ]),
76
- i((t(), u(o, { href: "/about/due-diligence" }, {
77
- default: n(() => e[8] || (e[8] = [
78
- a(" Due diligence ")
72
+ i((e(), u(o, { href: "/about/due-diligence" }, {
73
+ default: a(() => t[8] || (t[8] = [
74
+ s(" Due diligence ")
79
75
  ])),
80
76
  _: 1
81
77
  })), [
@@ -83,7 +79,7 @@ function b(w, e, m, c, A, N) {
83
79
  ])
84
80
  ]);
85
81
  }
86
- const h = /* @__PURE__ */ d(v, [["render", b]]);
82
+ const x = /* @__PURE__ */ d(n, [["render", k]]);
87
83
  export {
88
- h as default
84
+ x as default
89
85
  };
@@ -0,0 +1,20 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
2
+ KvHeaderMenuLink: {
3
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLAnchorElement, import('vue').ComponentProvideOptions, {
4
+ P: {};
5
+ B: {};
6
+ D: {};
7
+ C: {};
8
+ M: {};
9
+ Defaults: {};
10
+ }, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, {}>;
11
+ __isFragment?: never;
12
+ __isTeleport?: never;
13
+ __isSuspense?: never;
14
+ } & import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
15
+ $slots: {
16
+ default?(_: {}): any;
17
+ };
18
+ });
19
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
20
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import e from "./KvHeaderMenuLink.js";
2
+ const o = {
3
+ components: {
4
+ KvHeaderMenuLink: e
5
+ }
6
+ };
7
+ export {
8
+ o as default
9
+ };
@@ -1,91 +1,28 @@
1
- import { getCurrentInstance as u, computed as d, resolveComponent as m, openBlock as f, createElementBlock as w, withModifiers as h, createElementVNode as p, normalizeClass as i, renderSlot as v, createVNode as C } from "vue";
2
- import M from "../KvMaterialIcon.js";
3
- import x from "../../_virtual/_plugin-vue_export-helper.js";
4
- const y = {
5
- components: { KvMaterialIcon: M },
6
- props: {
7
- refName: {
8
- type: String,
9
- default: ""
10
- },
11
- href: {
12
- type: String,
13
- default: void 0
14
- },
15
- menuComponent: {
16
- type: Object,
17
- default: () => ({})
18
- },
19
- openMenuItem: {
20
- type: Object,
21
- default: () => ({})
22
- },
23
- dropdownIcon: {
24
- type: String,
25
- default: ""
26
- },
27
- baseClass: {
28
- type: String,
29
- default: ""
30
- },
31
- sendLinkPosition: {
32
- type: Boolean,
33
- default: !1
34
- }
35
- },
36
- emits: [
37
- "on-hover",
38
- "user-tap"
39
- ],
40
- setup(e, { emit: n }) {
41
- const { proxy: o } = u(), r = d(() => [
42
- e.baseClass,
43
- { "tw-text-tertiary": e.openMenuItem && e.openMenuItem !== e.menuComponent }
44
- ]), a = () => {
45
- if (!e.sendLinkPosition) return null;
46
- const t = o.$refs[e.refName];
47
- if (!t) return null;
48
- const s = t.getBoundingClientRect();
49
- return {
50
- left: `${s.left + s.width / 2}px`,
51
- transform: "translateX(-50%)",
52
- borderRadius: "0px 0px 8px 8px"
53
- };
54
- };
55
- return {
56
- computedClass: r,
57
- handleMouseOver: () => {
58
- const t = a();
59
- n("on-hover", e.refName, e.menuComponent, t);
60
- },
61
- handleTouchStart: () => {
62
- const t = a();
63
- n("user-tap", e.refName, e.menuComponent, t);
64
- }
65
- };
66
- }
67
- }, k = ["href"];
68
- function I(e, n, o, r, a, c) {
69
- const l = m("KvMaterialIcon");
70
- return f(), w("a", {
71
- ref: o.refName,
1
+ import l from "./KvHeaderDropdownLink2.js";
2
+ import { resolveComponent as s, openBlock as c, createElementBlock as d, withModifiers as m, createElementVNode as w, normalizeClass as r, renderSlot as f, createVNode as u } from "vue";
3
+ import h from "../../_virtual/_plugin-vue_export-helper.js";
4
+ const v = ["href"];
5
+ function M(a, n, e, t, _, p) {
6
+ const i = s("KvMaterialIcon");
7
+ return c(), d("a", {
8
+ ref: e.refName,
72
9
  class: "tw-py-1 tw-no-underline hover:tw-no-underline tw-text-primary hover:tw-text-action tw-items-center tw-cursor-pointer",
73
- href: o.href,
74
- onMouseenter: n[0] || (n[0] = (...t) => r.handleMouseOver && r.handleMouseOver(...t)),
75
- onTouchstart: n[1] || (n[1] = h((...t) => r.handleTouchStart && r.handleTouchStart(...t), ["prevent"]))
10
+ href: e.href,
11
+ onMouseenter: n[0] || (n[0] = (...o) => t.handleMouseOver && t.handleMouseOver(...o)),
12
+ onTouchstart: n[1] || (n[1] = m((...o) => t.handleTouchStart && t.handleTouchStart(...o), ["prevent"]))
76
13
  }, [
77
- p("div", {
78
- class: i(["tw-flex tw-items-center", r.computedClass])
14
+ w("div", {
15
+ class: r(["tw-flex tw-items-center", t.computedClass])
79
16
  }, [
80
- v(e.$slots, "default"),
81
- C(l, {
82
- class: i(["tw-inline tw-w-3 tw-ml-0.5 tw-transition-transform tw-duration-300", { "tw-rotate-180": o.openMenuItem === o.menuComponent }]),
83
- icon: o.dropdownIcon
17
+ f(a.$slots, "default"),
18
+ u(i, {
19
+ class: r(["tw-inline tw-w-3 tw-ml-0.5 tw-transition-transform tw-duration-300", { "tw-rotate-180": e.openMenuItem === e.menuComponent }]),
20
+ icon: e.dropdownIcon
84
21
  }, null, 8, ["class", "icon"])
85
22
  ], 2)
86
- ], 40, k);
23
+ ], 40, v);
87
24
  }
88
- const O = /* @__PURE__ */ x(y, [["render", I]]);
25
+ const k = /* @__PURE__ */ h(l, [["render", M]]);
89
26
  export {
90
- O as default
27
+ k as default
91
28
  };
@@ -0,0 +1,91 @@
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ refName: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ href: {
7
+ type: StringConstructor;
8
+ default: any;
9
+ };
10
+ menuComponent: {
11
+ type: ObjectConstructor;
12
+ default: () => {};
13
+ };
14
+ openMenuItem: {
15
+ type: ObjectConstructor;
16
+ default: () => {};
17
+ };
18
+ dropdownIcon: {
19
+ type: StringConstructor;
20
+ default: string;
21
+ };
22
+ baseClass: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ sendLinkPosition: {
27
+ type: BooleanConstructor;
28
+ default: boolean;
29
+ };
30
+ }>, {
31
+ computedClass: import('vue').ComputedRef<(string | {
32
+ 'tw-text-tertiary': boolean;
33
+ })[]>;
34
+ handleMouseOver: () => void;
35
+ handleTouchStart: () => void;
36
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("on-hover" | "user-tap")[], "on-hover" | "user-tap", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
37
+ refName: {
38
+ type: StringConstructor;
39
+ default: string;
40
+ };
41
+ href: {
42
+ type: StringConstructor;
43
+ default: any;
44
+ };
45
+ menuComponent: {
46
+ type: ObjectConstructor;
47
+ default: () => {};
48
+ };
49
+ openMenuItem: {
50
+ type: ObjectConstructor;
51
+ default: () => {};
52
+ };
53
+ dropdownIcon: {
54
+ type: StringConstructor;
55
+ default: string;
56
+ };
57
+ baseClass: {
58
+ type: StringConstructor;
59
+ default: string;
60
+ };
61
+ sendLinkPosition: {
62
+ type: BooleanConstructor;
63
+ default: boolean;
64
+ };
65
+ }>> & Readonly<{
66
+ "onOn-hover"?: (...args: any[]) => any;
67
+ "onUser-tap"?: (...args: any[]) => any;
68
+ }>, {
69
+ href: string;
70
+ refName: string;
71
+ menuComponent: Record<string, any>;
72
+ openMenuItem: Record<string, any>;
73
+ dropdownIcon: string;
74
+ baseClass: string;
75
+ sendLinkPosition: boolean;
76
+ }, {}, {
77
+ KvMaterialIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
78
+ icon: {
79
+ type: StringConstructor;
80
+ default: string;
81
+ };
82
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
83
+ icon: {
84
+ type: StringConstructor;
85
+ default: string;
86
+ };
87
+ }>> & Readonly<{}>, {
88
+ icon: string;
89
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
90
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
91
+ export default _default;
@@ -0,0 +1,69 @@
1
+ import { getCurrentInstance as s, computed as l } from "vue";
2
+ import i from "../KvMaterialIcon.js";
3
+ const h = {
4
+ components: { KvMaterialIcon: i },
5
+ props: {
6
+ refName: {
7
+ type: String,
8
+ default: ""
9
+ },
10
+ href: {
11
+ type: String,
12
+ default: void 0
13
+ },
14
+ menuComponent: {
15
+ type: Object,
16
+ default: () => ({})
17
+ },
18
+ openMenuItem: {
19
+ type: Object,
20
+ default: () => ({})
21
+ },
22
+ dropdownIcon: {
23
+ type: String,
24
+ default: ""
25
+ },
26
+ baseClass: {
27
+ type: String,
28
+ default: ""
29
+ },
30
+ sendLinkPosition: {
31
+ type: Boolean,
32
+ default: !1
33
+ }
34
+ },
35
+ emits: [
36
+ "on-hover",
37
+ "user-tap"
38
+ ],
39
+ setup(e, { emit: n }) {
40
+ const { proxy: a } = s(), u = l(() => [
41
+ e.baseClass,
42
+ { "tw-text-tertiary": e.openMenuItem && e.openMenuItem !== e.menuComponent }
43
+ ]), o = () => {
44
+ if (!e.sendLinkPosition) return null;
45
+ const t = a.$refs[e.refName];
46
+ if (!t) return null;
47
+ const r = t.getBoundingClientRect();
48
+ return {
49
+ left: `${r.left + r.width / 2}px`,
50
+ transform: "translateX(-50%)",
51
+ borderRadius: "0px 0px 8px 8px"
52
+ };
53
+ };
54
+ return {
55
+ computedClass: u,
56
+ handleMouseOver: () => {
57
+ const t = o();
58
+ n("on-hover", e.refName, e.menuComponent, t);
59
+ },
60
+ handleTouchStart: () => {
61
+ const t = o();
62
+ n("user-tap", e.refName, e.menuComponent, t);
63
+ }
64
+ };
65
+ }
66
+ };
67
+ export {
68
+ h as default
69
+ };
@@ -1 +1 @@
1
- .header-link[data-v-c31f1fca]{cursor:pointer;padding-top:1rem;padding-bottom:1rem;--tw-text-opacity: 1;color:rgba(var(--text-primary),var(--tw-text-opacity, 1));text-decoration-line:none}.header-link[data-v-c31f1fca]:hover{--tw-text-opacity: 1;color:rgba(var(--text-action),var(--tw-text-opacity, 1));text-decoration-line:none}
1
+ .header-link[data-v-3db10484]{cursor:pointer;padding-top:1rem;padding-bottom:1rem;--tw-text-opacity: 1;color:rgba(var(--text-primary),var(--tw-text-opacity, 1));text-decoration-line:none}.header-link[data-v-3db10484]:hover{--tw-text-opacity: 1;color:rgba(var(--text-action),var(--tw-text-opacity, 1));text-decoration-line:none}