@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
@@ -1,26 +1,15 @@
1
- import { openBlock as o, createBlock as r, resolveDynamicComponent as a, withCtx as s, renderSlot as n } from "vue";
1
+ import o from "./KvGrid2.js";
2
+ import { openBlock as r, createBlock as a, resolveDynamicComponent as n, withCtx as s, renderSlot as c } from "vue";
2
3
  import p from "../_virtual/_plugin-vue_export-helper.js";
3
- const c = {
4
- props: {
5
- /**
6
- * Element name of the grid container element.
7
- * e.g., <kv-grid as="ul"><li>list item... renders <ul><li>list item...
8
- * */
9
- as: {
10
- type: String,
11
- default: "div"
12
- }
13
- }
14
- };
15
- function d(t, i, e, l, f, m) {
16
- return o(), r(a(e.as), { class: "tw-grid tw-gap-2 md:tw-gap-3 lg:tw-gap-3.5" }, {
4
+ function d(t, f, e, i, l, m) {
5
+ return r(), a(n(e.as), { class: "tw-grid tw-gap-2 md:tw-gap-3 lg:tw-gap-3.5" }, {
17
6
  default: s(() => [
18
- n(t.$slots, "default")
7
+ c(t.$slots, "default")
19
8
  ]),
20
9
  _: 3
21
10
  });
22
11
  }
23
- const g = /* @__PURE__ */ p(c, [["render", d]]);
12
+ const w = /* @__PURE__ */ p(o, [["render", d]]);
24
13
  export {
25
- g as default
14
+ w as default
26
15
  };
@@ -0,0 +1,14 @@
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ as: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
7
+ as: {
8
+ type: StringConstructor;
9
+ default: string;
10
+ };
11
+ }>> & Readonly<{}>, {
12
+ as: string;
13
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
14
+ export default _default;
@@ -0,0 +1,15 @@
1
+ const t = {
2
+ props: {
3
+ /**
4
+ * Element name of the grid container element.
5
+ * e.g., <kv-grid as="ul"><li>list item... renders <ul><li>list item...
6
+ * */
7
+ as: {
8
+ type: String,
9
+ default: "div"
10
+ }
11
+ }
12
+ };
13
+ export {
14
+ t as default
15
+ };
@@ -1,23 +1,17 @@
1
- import { openBlock as n, createElementBlock as s, createElementVNode as e, toDisplayString as c, createCommentVNode as l } from "vue";
1
+ import c from "./KvIconBag2.js";
2
+ import { openBlock as n, createElementBlock as s, createElementVNode as e, toDisplayString as i, createCommentVNode as l } from "vue";
2
3
  import r from "../_virtual/_plugin-vue_export-helper.js";
3
- const i = {
4
- props: {
5
- count: {
6
- type: Number,
7
- default: 0
8
- }
9
- }
10
- }, u = {
4
+ const d = {
11
5
  xmlns: "http://www.w3.org/2000/svg",
12
6
  viewBox: "0 0 24 24"
13
- }, d = ["id"], a = {
7
+ }, f = ["id"], a = {
14
8
  x: "12",
15
9
  y: "17",
16
10
  fill: "#000",
17
11
  style: { "font-size": "9px", "font-weight": "631", "text-anchor": "middle" }
18
- }, f = ["mask"];
19
- function m(_, o, t, h, x, k) {
20
- return n(), s("svg", u, [
12
+ }, m = ["mask"];
13
+ function u(_, o, t, h, x, k) {
14
+ return n(), s("svg", d, [
21
15
  e("defs", null, [
22
16
  t.count > 0 ? (n(), s("mask", {
23
17
  key: 0,
@@ -28,17 +22,17 @@ function m(_, o, t, h, x, k) {
28
22
  height: "100%",
29
23
  fill: "#fff"
30
24
  }, null, -1)),
31
- e("text", a, c(t.count), 1)
32
- ], 8, d)) : l("", !0)
25
+ e("text", a, i(t.count), 1)
26
+ ], 8, f)) : l("", !0)
33
27
  ]),
34
28
  e("path", {
35
29
  d: "M12,3A3,3 0 0,1 15,6H9A3,3 0 0,1 12,3M19,6H17A5,5 0 0,0 12,1A5,5 0 0,0 7,6H5C3.89,6 3,6.89 3,8V20A2,2 0 0,0 5,22H19A2,2 0 0,0 21,20V8C21,6.89 20.1,6 19,6Z",
36
30
  fill: "currentColor",
37
31
  mask: `url(#countMask-${t.count})`
38
- }, null, 8, f)
32
+ }, null, 8, m)
39
33
  ]);
40
34
  }
41
- const w = /* @__PURE__ */ r(i, [["render", m]]);
35
+ const A = /* @__PURE__ */ r(c, [["render", u]]);
42
36
  export {
43
- w as default
37
+ A as default
44
38
  };
@@ -0,0 +1,14 @@
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ count: {
3
+ type: NumberConstructor;
4
+ default: number;
5
+ };
6
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
7
+ count: {
8
+ type: NumberConstructor;
9
+ default: number;
10
+ };
11
+ }>> & Readonly<{}>, {
12
+ count: number;
13
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
14
+ export default _default;
@@ -0,0 +1,11 @@
1
+ const t = {
2
+ props: {
3
+ count: {
4
+ type: Number,
5
+ default: 0
6
+ }
7
+ }
8
+ };
9
+ export {
10
+ t as default
11
+ };
@@ -0,0 +1,17 @@
1
+ declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
3
+ slots: {
4
+ default?(_: {}): any;
5
+ };
6
+ refs: {};
7
+ rootEl: HTMLElement;
8
+ };
9
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
10
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLElement>;
11
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
12
+ export default _default;
13
+ type __VLS_WithTemplateSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -1,136 +1,57 @@
1
- import { ref as M, onMounted as V, computed as o, resolveComponent as N, openBlock as r, createElementBlock as l, createElementVNode as a, Fragment as W, renderList as z, createBlock as K, withCtx as D, normalizeClass as d, createCommentVNode as f, toDisplayString as C } from "vue";
2
- import F from "./KvCardFrame.js";
3
- import j from "./KvContentfulImg.js";
4
- import q from "../_virtual/_plugin-vue_export-helper.js";
5
- const G = {
6
- components: {
7
- KvCardFrame: F,
8
- KvContentfulImg: j
9
- },
10
- props: {
11
- // Expects an array of categories from our API
12
- categoryList: {
13
- type: Array,
14
- default: () => []
15
- },
16
- // Expects a list of category ids to hide from the selector
17
- hiddenCategories: {
18
- type: Array,
19
- default: () => []
20
- },
21
- imageWidth: {
22
- type: Number,
23
- default: 64
24
- },
25
- // Category id to pre-select when component mounts
26
- preSelectedCategory: {
27
- type: String,
28
- default: null
29
- },
30
- // Use compact horizontal layout on tablet and up (keeps image to the left)
31
- useCompactCard: {
32
- type: Boolean,
33
- default: !1
34
- },
35
- // Array of category ids that the user has already selected
36
- existingCategories: {
37
- type: Array,
38
- default: () => []
39
- },
40
- // Message to show for categories that are in the existingCategories list
41
- existingCategoryMessage: {
42
- type: String,
43
- default: "Already selected"
44
- }
45
- },
46
- emits: ["category-selected"],
47
- setup(s, { emit: g }) {
48
- const i = M(null), n = (e) => {
49
- i.value = e, g("category-selected", e);
50
- };
51
- V(() => {
52
- s.preSelectedCategory && n(s.preSelectedCategory);
53
- });
54
- const _ = (e) => {
55
- var k, p, b, v, y, I, S, E, L;
56
- if (e.contentfulEntry) {
57
- const u = (v = (b = (p = (k = e == null ? void 0 : e.contentfulEntry) == null ? void 0 : k.entry) == null ? void 0 : p.fields) == null ? void 0 : b.content) == null ? void 0 : v.find(
58
- (w) => {
59
- var A, B;
60
- return (B = (A = w == null ? void 0 : w.fields) == null ? void 0 : A.key) == null ? void 0 : B.includes("category-icon");
61
- }
62
- );
63
- return ((L = (E = (S = (I = (y = u == null ? void 0 : u.fields) == null ? void 0 : y.contentLight) == null ? void 0 : I[0]) == null ? void 0 : S.fields) == null ? void 0 : E.file) == null ? void 0 : L.url) ?? null;
64
- }
65
- return null;
66
- }, h = o(() => s.useCompactCard ? "tw-p-1 md:tw-p-2 tw-flex tw-flex-row tw-items-center tw-cursor-pointer" : "tw-p-2 tw-flex tw-flex-row md:tw-flex-col tw-items-center tw-cursor-pointer"), c = o(() => s.useCompactCard ? "tw-shrink-0 tw-mr-2" : "tw-shrink-0 tw-mr-2 md:tw-mr-0 md:tw-mb-2"), m = o(() => s.useCompactCard ? "" : "md:tw-text-center"), t = (e) => s.existingCategories.includes(e), x = o(() => !s.categoryList || s.categoryList.length === 0 ? [] : s.categoryList.filter((e) => !s.hiddenCategories.includes(e.id)).map((e) => ({
67
- id: e.id,
68
- name: e.name,
69
- description: e.description,
70
- customImage: e.customImage || null,
71
- contentfulImage: _(e) || null
72
- })));
73
- return {
74
- selectedCategory: i,
75
- formattedCategories: x,
76
- selectCategory: n,
77
- cardContainerClasses: h,
78
- imageClasses: c,
79
- textContainerClasses: m,
80
- isCategoryExisting: t
81
- };
82
- }
83
- }, H = { class: "tw-grid tw-grid-cols-1 md:tw-grid-cols-2 tw-gap-3" }, J = ["alt", "src", "width"], O = { class: "tw-mb-0.5 tw-font-medium" }, P = { class: "tw-text-small" }, Q = {
1
+ import _ from "./KvImpactVerticalSelector2.js";
2
+ import { resolveComponent as d, openBlock as s, createElementBlock as n, createElementVNode as l, Fragment as f, renderList as C, createBlock as c, withCtx as g, normalizeClass as i, createCommentVNode as o, toDisplayString as r } from "vue";
3
+ import h from "../_virtual/_plugin-vue_export-helper.js";
4
+ const b = { class: "tw-grid tw-grid-cols-1 md:tw-grid-cols-2 tw-gap-3" }, k = ["alt", "src", "width"], u = { class: "tw-mb-0.5 tw-font-medium" }, v = { class: "tw-text-small" }, x = {
84
5
  key: 0,
85
6
  class: "tw-text-small tw-py-1 tw-px-2 tw-mt-1 tw-bg-brand-200 tw-rounded tw-inline-block"
86
- }, R = {
7
+ }, p = {
87
8
  key: 0,
88
9
  class: "tw-text-gray-500 tw-italic"
89
10
  };
90
- function T(s, g, i, n, _, h) {
91
- const c = N("kv-contentful-img"), m = N("kv-card-frame");
92
- return r(), l("div", null, [
93
- a("div", H, [
94
- (r(!0), l(W, null, z(n.formattedCategories, (t) => (r(), K(m, {
11
+ function I(B, E, a, e, N, V) {
12
+ const m = d("kv-contentful-img"), w = d("kv-card-frame");
13
+ return s(), n("div", null, [
14
+ l("div", b, [
15
+ (s(!0), n(f, null, C(e.formattedCategories, (t) => (s(), c(w, {
95
16
  key: t.id,
96
- "bg-color-class": n.selectedCategory === t.id ? "tw-bg-secondary" : "tw-bg-white",
97
- "border-class": n.selectedCategory === t.id ? "tw-border-2 tw-border-action" : "tw-border-2 tw-border-transparent",
17
+ "bg-color-class": e.selectedCategory === t.id ? "tw-bg-secondary" : "tw-bg-white",
18
+ "border-class": e.selectedCategory === t.id ? "tw-border-2 tw-border-action" : "tw-border-2 tw-border-transparent",
98
19
  class: "tw-transition-all tw-duration-200 hover:tw-shadow-lg",
99
- onClick: (x) => n.selectCategory(t.id)
20
+ onClick: (S) => e.selectCategory(t.id)
100
21
  }, {
101
- default: D(() => [
102
- a("div", {
103
- class: d(n.cardContainerClasses)
22
+ default: g(() => [
23
+ l("div", {
24
+ class: i(e.cardContainerClasses)
104
25
  }, [
105
- t != null && t.contentfulImage ? (r(), K(c, {
26
+ t != null && t.contentfulImage ? (s(), c(m, {
106
27
  key: 0,
107
- class: d(n.imageClasses),
28
+ class: i(e.imageClasses),
108
29
  alt: `${t.name} image`,
109
30
  "contentful-src": t.contentfulImage,
110
- width: i.imageWidth
111
- }, null, 8, ["class", "alt", "contentful-src", "width"])) : t != null && t.customImage ? (r(), l("img", {
31
+ width: a.imageWidth
32
+ }, null, 8, ["class", "alt", "contentful-src", "width"])) : t != null && t.customImage ? (s(), n("img", {
112
33
  key: 1,
113
- class: d(n.imageClasses),
34
+ class: i(e.imageClasses),
114
35
  alt: `${t.name} image`,
115
36
  src: t.customImage,
116
- width: i.imageWidth
117
- }, null, 10, J)) : f("", !0),
118
- a("div", {
119
- class: d(n.textContainerClasses)
37
+ width: a.imageWidth
38
+ }, null, 10, k)) : o("", !0),
39
+ l("div", {
40
+ class: i(e.textContainerClasses)
120
41
  }, [
121
- a("p", O, C(t.name), 1),
122
- a("p", P, C(t.description), 1),
123
- n.isCategoryExisting(t.id) ? (r(), l("p", Q, C(i.existingCategoryMessage), 1)) : f("", !0)
42
+ l("p", u, r(t.name), 1),
43
+ l("p", v, r(t.description), 1),
44
+ e.isCategoryExisting(t.id) ? (s(), n("p", x, r(a.existingCategoryMessage), 1)) : o("", !0)
124
45
  ], 2)
125
46
  ], 2)
126
47
  ]),
127
48
  _: 2
128
49
  }, 1032, ["bg-color-class", "border-class", "onClick"]))), 128))
129
50
  ]),
130
- n.formattedCategories.length === 0 ? (r(), l("p", R, " No categories available ")) : f("", !0)
51
+ e.formattedCategories.length === 0 ? (s(), n("p", p, " No categories available ")) : o("", !0)
131
52
  ]);
132
53
  }
133
- const $ = /* @__PURE__ */ q(G, [["render", T]]);
54
+ const F = /* @__PURE__ */ h(_, [["render", I]]);
134
55
  export {
135
- $ as default
56
+ F as default
136
57
  };
@@ -0,0 +1,278 @@
1
+ import { PropType } from 'vue';
2
+ interface Category {
3
+ id: string | number;
4
+ name: string;
5
+ description: string;
6
+ customImage?: string | null;
7
+ contentfulImage?: any;
8
+ [key: string]: any;
9
+ }
10
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
11
+ categoryList: {
12
+ type: PropType<Category[]>;
13
+ default: () => any[];
14
+ };
15
+ hiddenCategories: {
16
+ type: PropType<(string | number)[]>;
17
+ default: () => any[];
18
+ };
19
+ imageWidth: {
20
+ type: NumberConstructor;
21
+ default: number;
22
+ };
23
+ preSelectedCategory: {
24
+ type: StringConstructor;
25
+ default: any;
26
+ };
27
+ useCompactCard: {
28
+ type: BooleanConstructor;
29
+ default: boolean;
30
+ };
31
+ existingCategories: {
32
+ type: PropType<(string | number)[]>;
33
+ default: () => any[];
34
+ };
35
+ existingCategoryMessage: {
36
+ type: StringConstructor;
37
+ default: string;
38
+ };
39
+ }>, {
40
+ selectedCategory: import('vue').Ref<any, any>;
41
+ formattedCategories: import('vue').ComputedRef<{
42
+ id: string | number;
43
+ name: string;
44
+ description: string;
45
+ customImage: string;
46
+ contentfulImage: any;
47
+ }[]>;
48
+ selectCategory: (categoryId: any) => void;
49
+ cardContainerClasses: import('vue').ComputedRef<"tw-p-1 md:tw-p-2 tw-flex tw-flex-row tw-items-center tw-cursor-pointer" | "tw-p-2 tw-flex tw-flex-row md:tw-flex-col tw-items-center tw-cursor-pointer">;
50
+ imageClasses: import('vue').ComputedRef<"tw-shrink-0 tw-mr-2" | "tw-shrink-0 tw-mr-2 md:tw-mr-0 md:tw-mb-2">;
51
+ textContainerClasses: import('vue').ComputedRef<"" | "md:tw-text-center">;
52
+ isCategoryExisting: (categoryId: any) => boolean;
53
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "category-selected"[], "category-selected", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
54
+ categoryList: {
55
+ type: PropType<Category[]>;
56
+ default: () => any[];
57
+ };
58
+ hiddenCategories: {
59
+ type: PropType<(string | number)[]>;
60
+ default: () => any[];
61
+ };
62
+ imageWidth: {
63
+ type: NumberConstructor;
64
+ default: number;
65
+ };
66
+ preSelectedCategory: {
67
+ type: StringConstructor;
68
+ default: any;
69
+ };
70
+ useCompactCard: {
71
+ type: BooleanConstructor;
72
+ default: boolean;
73
+ };
74
+ existingCategories: {
75
+ type: PropType<(string | number)[]>;
76
+ default: () => any[];
77
+ };
78
+ existingCategoryMessage: {
79
+ type: StringConstructor;
80
+ default: string;
81
+ };
82
+ }>> & Readonly<{
83
+ "onCategory-selected"?: (...args: any[]) => any;
84
+ }>, {
85
+ categoryList: Category[];
86
+ hiddenCategories: (string | number)[];
87
+ imageWidth: number;
88
+ preSelectedCategory: string;
89
+ useCompactCard: boolean;
90
+ existingCategories: (string | number)[];
91
+ existingCategoryMessage: string;
92
+ }, {}, {
93
+ KvCardFrame: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
94
+ allowOverflow: {
95
+ type: BooleanConstructor;
96
+ default: boolean;
97
+ };
98
+ bgColorClass: {
99
+ type: StringConstructor;
100
+ default: string;
101
+ };
102
+ borderClass: {
103
+ type: StringConstructor;
104
+ default: string;
105
+ };
106
+ radiusClass: {
107
+ type: StringConstructor;
108
+ default: string;
109
+ };
110
+ shadowClass: {
111
+ type: StringConstructor;
112
+ default: string;
113
+ };
114
+ theme: {
115
+ type: StringConstructor;
116
+ default: string;
117
+ validator(value: string): boolean;
118
+ };
119
+ }>, {
120
+ themeStyle: import('vue').ComputedRef<any>;
121
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
122
+ allowOverflow: {
123
+ type: BooleanConstructor;
124
+ default: boolean;
125
+ };
126
+ bgColorClass: {
127
+ type: StringConstructor;
128
+ default: string;
129
+ };
130
+ borderClass: {
131
+ type: StringConstructor;
132
+ default: string;
133
+ };
134
+ radiusClass: {
135
+ type: StringConstructor;
136
+ default: string;
137
+ };
138
+ shadowClass: {
139
+ type: StringConstructor;
140
+ default: string;
141
+ };
142
+ theme: {
143
+ type: StringConstructor;
144
+ default: string;
145
+ validator(value: string): boolean;
146
+ };
147
+ }>> & Readonly<{}>, {
148
+ theme: string;
149
+ allowOverflow: boolean;
150
+ bgColorClass: string;
151
+ borderClass: string;
152
+ radiusClass: string;
153
+ shadowClass: string;
154
+ }, {}, {
155
+ KvThemeProvider: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
156
+ tag: {
157
+ type: StringConstructor;
158
+ default: string;
159
+ };
160
+ theme: {
161
+ type: ObjectConstructor;
162
+ default: any;
163
+ };
164
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
165
+ tag: {
166
+ type: StringConstructor;
167
+ default: string;
168
+ };
169
+ theme: {
170
+ type: ObjectConstructor;
171
+ default: any;
172
+ };
173
+ }>> & Readonly<{}>, {
174
+ tag: string;
175
+ theme: Record<string, any>;
176
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
177
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
178
+ KvContentfulImg: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
179
+ contentfulSrc: {
180
+ type: StringConstructor;
181
+ required: true;
182
+ };
183
+ fallbackFormat: {
184
+ type: StringConstructor;
185
+ default: string;
186
+ validator(value: string): boolean;
187
+ };
188
+ width: {
189
+ type: (StringConstructor | NumberConstructor)[];
190
+ default: any;
191
+ };
192
+ height: {
193
+ type: (StringConstructor | NumberConstructor)[];
194
+ default: any;
195
+ };
196
+ alt: {
197
+ type: StringConstructor;
198
+ default: string;
199
+ };
200
+ loading: {
201
+ type: PropType<"lazy" | "eager" | null>;
202
+ default: any;
203
+ validator(value: string): boolean;
204
+ };
205
+ focus: {
206
+ type: StringConstructor;
207
+ default: string;
208
+ validator(value: string): boolean;
209
+ };
210
+ fit: {
211
+ type: StringConstructor;
212
+ default: string;
213
+ validator(value: string): boolean;
214
+ };
215
+ sourceSizes: {
216
+ type: PropType<import('./KvContentfulImg.vue').SourceSize[]>;
217
+ required: false;
218
+ default: () => any[];
219
+ };
220
+ }>, {
221
+ buildUrl: (image?: any, multiplier?: number) => string;
222
+ caption: import('vue').ComputedRef<string>;
223
+ removeLeafIcon: import('vue').ComputedRef<boolean>;
224
+ setQuality: (imgWidth: string | number, imgScale: string) => 65 | 95 | 80;
225
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
226
+ contentfulSrc: {
227
+ type: StringConstructor;
228
+ required: true;
229
+ };
230
+ fallbackFormat: {
231
+ type: StringConstructor;
232
+ default: string;
233
+ validator(value: string): boolean;
234
+ };
235
+ width: {
236
+ type: (StringConstructor | NumberConstructor)[];
237
+ default: any;
238
+ };
239
+ height: {
240
+ type: (StringConstructor | NumberConstructor)[];
241
+ default: any;
242
+ };
243
+ alt: {
244
+ type: StringConstructor;
245
+ default: string;
246
+ };
247
+ loading: {
248
+ type: PropType<"lazy" | "eager" | null>;
249
+ default: any;
250
+ validator(value: string): boolean;
251
+ };
252
+ focus: {
253
+ type: StringConstructor;
254
+ default: string;
255
+ validator(value: string): boolean;
256
+ };
257
+ fit: {
258
+ type: StringConstructor;
259
+ default: string;
260
+ validator(value: string): boolean;
261
+ };
262
+ sourceSizes: {
263
+ type: PropType<import('./KvContentfulImg.vue').SourceSize[]>;
264
+ required: false;
265
+ default: () => any[];
266
+ };
267
+ }>> & Readonly<{}>, {
268
+ height: string | number;
269
+ focus: string;
270
+ width: string | number;
271
+ alt: string;
272
+ loading: "lazy" | "eager";
273
+ fallbackFormat: string;
274
+ fit: string;
275
+ sourceSizes: import('./KvContentfulImg.vue').SourceSize[];
276
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
277
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
278
+ export default _default;