@kiva/kv-components 7.6.3 → 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 +51 -164
  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 +34 -32
  331. package/tsconfig.json +32 -0
  332. package/vite.config.ts +84 -0
@@ -0,0 +1,619 @@
1
+ import { PropType } from 'vue';
2
+ export interface Comment {
3
+ id: string | number;
4
+ is_liked: boolean;
5
+ [key: string]: any;
6
+ }
7
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
8
+ userImageUrl: {
9
+ type: StringConstructor;
10
+ default: string;
11
+ };
12
+ userDisplayName: {
13
+ type: StringConstructor;
14
+ default: string;
15
+ };
16
+ userPublicId: {
17
+ type: StringConstructor;
18
+ default: string;
19
+ };
20
+ comments: {
21
+ type: PropType<Comment[]>;
22
+ default: () => any[];
23
+ };
24
+ }>, {
25
+ handleReaction: (payload: any) => void;
26
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "add-reaction"[], "add-reaction", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
27
+ userImageUrl: {
28
+ type: StringConstructor;
29
+ default: string;
30
+ };
31
+ userDisplayName: {
32
+ type: StringConstructor;
33
+ default: string;
34
+ };
35
+ userPublicId: {
36
+ type: StringConstructor;
37
+ default: string;
38
+ };
39
+ comments: {
40
+ type: PropType<Comment[]>;
41
+ default: () => any[];
42
+ };
43
+ }>> & Readonly<{
44
+ "onAdd-reaction"?: (...args: any[]) => any;
45
+ }>, {
46
+ userImageUrl: string;
47
+ userDisplayName: string;
48
+ userPublicId: string;
49
+ comments: Comment[];
50
+ }, {}, {
51
+ KvCommentsListItem: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
52
+ userImageUrl: {
53
+ type: StringConstructor;
54
+ default: string;
55
+ };
56
+ userDisplayName: {
57
+ type: StringConstructor;
58
+ default: string;
59
+ };
60
+ userPublicId: {
61
+ type: StringConstructor;
62
+ default: string;
63
+ };
64
+ comment: {
65
+ type: ObjectConstructor;
66
+ default: () => {};
67
+ };
68
+ nestLevel: {
69
+ type: NumberConstructor;
70
+ default: number;
71
+ };
72
+ }>, {
73
+ hideInput: () => void;
74
+ showInput: import('vue').Ref<boolean, boolean>;
75
+ commentsAddRef: import('vue').Ref<any, any>;
76
+ replyClick: () => void;
77
+ addReaction: (reaction: any, value: any) => void;
78
+ REPLY_COMMENT_EVENT: string;
79
+ LIKE_COMMENT_EVENT: string;
80
+ ADD_REACTION_EVENT: string;
81
+ commentText: import('vue').ComputedRef<any>;
82
+ authorImage: import('vue').ComputedRef<any>;
83
+ authorName: import('vue').ComputedRef<any>;
84
+ childComments: import('vue').ComputedRef<any>;
85
+ isLiked: import('vue').ComputedRef<boolean>;
86
+ numberOfLikes: import('vue').ComputedRef<any>;
87
+ numberOfReplies: import('vue').ComputedRef<any>;
88
+ repliesOpened: import('vue').Ref<boolean, boolean>;
89
+ toggleReplies: () => void;
90
+ mdiChevronDown: string;
91
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "add-reaction"[], "add-reaction", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
92
+ userImageUrl: {
93
+ type: StringConstructor;
94
+ default: string;
95
+ };
96
+ userDisplayName: {
97
+ type: StringConstructor;
98
+ default: string;
99
+ };
100
+ userPublicId: {
101
+ type: StringConstructor;
102
+ default: string;
103
+ };
104
+ comment: {
105
+ type: ObjectConstructor;
106
+ default: () => {};
107
+ };
108
+ nestLevel: {
109
+ type: NumberConstructor;
110
+ default: number;
111
+ };
112
+ }>> & Readonly<{
113
+ "onAdd-reaction"?: (...args: any[]) => any;
114
+ }>, {
115
+ userImageUrl: string;
116
+ userDisplayName: string;
117
+ comment: Record<string, any>;
118
+ userPublicId: string;
119
+ nestLevel: number;
120
+ }, {}, {
121
+ KvCommentsReplyButton: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<{}> & Readonly<{
122
+ onClick?: (...args: any[]) => any;
123
+ }>, {}, {}, {
124
+ KvButton: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
125
+ to: {
126
+ type: (StringConstructor | ObjectConstructor)[];
127
+ default: any;
128
+ };
129
+ href: {
130
+ type: StringConstructor;
131
+ default: any;
132
+ };
133
+ type: {
134
+ type: StringConstructor;
135
+ default: string;
136
+ validator(value: string): boolean;
137
+ };
138
+ variant: {
139
+ type: StringConstructor;
140
+ default: string;
141
+ validator(value: string): boolean;
142
+ };
143
+ state: {
144
+ type: StringConstructor;
145
+ default: string;
146
+ validator(value: string): boolean;
147
+ };
148
+ }>, {
149
+ buttonRef: import('vue').Ref<any, any>;
150
+ buttonInnerRef: import('vue').Ref<any, any>;
151
+ computedClass: import('vue').ComputedRef<string>;
152
+ computedType: import('vue').ComputedRef<string>;
153
+ isDisabled: import('vue').ComputedRef<boolean>;
154
+ loadingColor: import('vue').ComputedRef<"white" | "brand" | "black">;
155
+ onClick: (event: any) => void;
156
+ tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
157
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
158
+ to: {
159
+ type: (StringConstructor | ObjectConstructor)[];
160
+ default: any;
161
+ };
162
+ href: {
163
+ type: StringConstructor;
164
+ default: any;
165
+ };
166
+ type: {
167
+ type: StringConstructor;
168
+ default: string;
169
+ validator(value: string): boolean;
170
+ };
171
+ variant: {
172
+ type: StringConstructor;
173
+ default: string;
174
+ validator(value: string): boolean;
175
+ };
176
+ state: {
177
+ type: StringConstructor;
178
+ default: string;
179
+ validator(value: string): boolean;
180
+ };
181
+ }>> & Readonly<{
182
+ onClick?: (...args: any[]) => any;
183
+ }>, {
184
+ to: string | Record<string, any>;
185
+ type: string;
186
+ href: string;
187
+ variant: string;
188
+ state: string;
189
+ }, {}, {
190
+ KvLoadingSpinner: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
191
+ size: {
192
+ type: StringConstructor;
193
+ default: string;
194
+ validator(value: string): boolean;
195
+ };
196
+ color: {
197
+ type: StringConstructor;
198
+ default: string;
199
+ validator(value: string): boolean;
200
+ };
201
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
202
+ size: {
203
+ type: StringConstructor;
204
+ default: string;
205
+ validator(value: string): boolean;
206
+ };
207
+ color: {
208
+ type: StringConstructor;
209
+ default: string;
210
+ validator(value: string): boolean;
211
+ };
212
+ }>> & Readonly<{}>, {
213
+ size: string;
214
+ color: string;
215
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
216
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
217
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
218
+ KvCommentsHeartButton: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
219
+ isSmall: {
220
+ type: BooleanConstructor;
221
+ default: boolean;
222
+ };
223
+ isLiked: {
224
+ type: BooleanConstructor;
225
+ default: boolean;
226
+ };
227
+ }>, {
228
+ icon: import('vue').ComputedRef<string>;
229
+ classState: import('vue').ComputedRef<string>;
230
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
231
+ isSmall: {
232
+ type: BooleanConstructor;
233
+ default: boolean;
234
+ };
235
+ isLiked: {
236
+ type: BooleanConstructor;
237
+ default: boolean;
238
+ };
239
+ }>> & Readonly<{
240
+ onClick?: (...args: any[]) => any;
241
+ }>, {
242
+ isSmall: boolean;
243
+ isLiked: boolean;
244
+ }, {}, {
245
+ KvMaterialIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
246
+ icon: {
247
+ type: StringConstructor;
248
+ default: string;
249
+ };
250
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
251
+ icon: {
252
+ type: StringConstructor;
253
+ default: string;
254
+ };
255
+ }>> & Readonly<{}>, {
256
+ icon: string;
257
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
258
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
259
+ KvCommentsAdd: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
260
+ userImageUrl: {
261
+ type: StringConstructor;
262
+ default: string;
263
+ };
264
+ userDisplayName: {
265
+ type: StringConstructor;
266
+ default: string;
267
+ };
268
+ isReply: {
269
+ type: BooleanConstructor;
270
+ default: boolean;
271
+ };
272
+ }>, {
273
+ ADD_COMMENT_ID: string;
274
+ addCommentValue: import('vue').Ref<string, string>;
275
+ commentButtonState: import('vue').ComputedRef<"" | "disabled">;
276
+ cancel: () => void;
277
+ comment: () => void;
278
+ focus: () => any;
279
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("add-comment" | "hide-input")[], "add-comment" | "hide-input", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
280
+ userImageUrl: {
281
+ type: StringConstructor;
282
+ default: string;
283
+ };
284
+ userDisplayName: {
285
+ type: StringConstructor;
286
+ default: string;
287
+ };
288
+ isReply: {
289
+ type: BooleanConstructor;
290
+ default: boolean;
291
+ };
292
+ }>> & Readonly<{
293
+ "onAdd-comment"?: (...args: any[]) => any;
294
+ "onHide-input"?: (...args: any[]) => any;
295
+ }>, {
296
+ userImageUrl: string;
297
+ userDisplayName: string;
298
+ isReply: boolean;
299
+ }, {}, {
300
+ KvButton: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
301
+ to: {
302
+ type: (StringConstructor | ObjectConstructor)[];
303
+ default: any;
304
+ };
305
+ href: {
306
+ type: StringConstructor;
307
+ default: any;
308
+ };
309
+ type: {
310
+ type: StringConstructor;
311
+ default: string;
312
+ validator(value: string): boolean;
313
+ };
314
+ variant: {
315
+ type: StringConstructor;
316
+ default: string;
317
+ validator(value: string): boolean;
318
+ };
319
+ state: {
320
+ type: StringConstructor;
321
+ default: string;
322
+ validator(value: string): boolean;
323
+ };
324
+ }>, {
325
+ buttonRef: import('vue').Ref<any, any>;
326
+ buttonInnerRef: import('vue').Ref<any, any>;
327
+ computedClass: import('vue').ComputedRef<string>;
328
+ computedType: import('vue').ComputedRef<string>;
329
+ isDisabled: import('vue').ComputedRef<boolean>;
330
+ loadingColor: import('vue').ComputedRef<"white" | "brand" | "black">;
331
+ onClick: (event: any) => void;
332
+ tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
333
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
334
+ to: {
335
+ type: (StringConstructor | ObjectConstructor)[];
336
+ default: any;
337
+ };
338
+ href: {
339
+ type: StringConstructor;
340
+ default: any;
341
+ };
342
+ type: {
343
+ type: StringConstructor;
344
+ default: string;
345
+ validator(value: string): boolean;
346
+ };
347
+ variant: {
348
+ type: StringConstructor;
349
+ default: string;
350
+ validator(value: string): boolean;
351
+ };
352
+ state: {
353
+ type: StringConstructor;
354
+ default: string;
355
+ validator(value: string): boolean;
356
+ };
357
+ }>> & Readonly<{
358
+ onClick?: (...args: any[]) => any;
359
+ }>, {
360
+ to: string | Record<string, any>;
361
+ type: string;
362
+ href: string;
363
+ variant: string;
364
+ state: string;
365
+ }, {}, {
366
+ KvLoadingSpinner: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
367
+ size: {
368
+ type: StringConstructor;
369
+ default: string;
370
+ validator(value: string): boolean;
371
+ };
372
+ color: {
373
+ type: StringConstructor;
374
+ default: string;
375
+ validator(value: string): boolean;
376
+ };
377
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
378
+ size: {
379
+ type: StringConstructor;
380
+ default: string;
381
+ validator(value: string): boolean;
382
+ };
383
+ color: {
384
+ type: StringConstructor;
385
+ default: string;
386
+ validator(value: string): boolean;
387
+ };
388
+ }>> & Readonly<{}>, {
389
+ size: string;
390
+ color: string;
391
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
392
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
393
+ KvTextInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
394
+ id: {
395
+ type: StringConstructor;
396
+ required: true;
397
+ };
398
+ modelValue: {
399
+ type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
400
+ default: string;
401
+ };
402
+ placeholder: {
403
+ type: StringConstructor;
404
+ default: any;
405
+ };
406
+ disabled: {
407
+ type: BooleanConstructor;
408
+ default: boolean;
409
+ };
410
+ valid: {
411
+ type: BooleanConstructor;
412
+ default: boolean;
413
+ };
414
+ icon: {
415
+ type: StringConstructor;
416
+ default: any;
417
+ };
418
+ type: {
419
+ type: StringConstructor;
420
+ default: string;
421
+ };
422
+ canClear: {
423
+ type: BooleanConstructor;
424
+ default: boolean;
425
+ };
426
+ }>, {
427
+ mdiAlertCircleOutline: string;
428
+ mdiClose: string;
429
+ onInput: (event: any) => void;
430
+ focus: () => void;
431
+ blur: () => void;
432
+ clearInput: () => void;
433
+ inputText: import('vue').Ref<string | number | boolean, string | number | boolean>;
434
+ classes: any[];
435
+ styles: any[];
436
+ inputAttrs: any;
437
+ inputListeners: any;
438
+ textInputRef: import('vue').Ref<any, any>;
439
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, string[], string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
440
+ id: {
441
+ type: StringConstructor;
442
+ required: true;
443
+ };
444
+ modelValue: {
445
+ type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
446
+ default: string;
447
+ };
448
+ placeholder: {
449
+ type: StringConstructor;
450
+ default: any;
451
+ };
452
+ disabled: {
453
+ type: BooleanConstructor;
454
+ default: boolean;
455
+ };
456
+ valid: {
457
+ type: BooleanConstructor;
458
+ default: boolean;
459
+ };
460
+ icon: {
461
+ type: StringConstructor;
462
+ default: any;
463
+ };
464
+ type: {
465
+ type: StringConstructor;
466
+ default: string;
467
+ };
468
+ canClear: {
469
+ type: BooleanConstructor;
470
+ default: boolean;
471
+ };
472
+ }>> & Readonly<{
473
+ [x: `on${Capitalize<string>}`]: (...args: any[]) => any;
474
+ }>, {
475
+ type: string;
476
+ icon: string;
477
+ disabled: boolean;
478
+ modelValue: string | number | boolean;
479
+ valid: boolean;
480
+ placeholder: string;
481
+ canClear: boolean;
482
+ }, {}, {
483
+ KvMaterialIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
484
+ icon: {
485
+ type: StringConstructor;
486
+ default: string;
487
+ };
488
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
489
+ icon: {
490
+ type: StringConstructor;
491
+ default: string;
492
+ };
493
+ }>> & Readonly<{}>, {
494
+ icon: string;
495
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
496
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
497
+ KvUserAvatar: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
498
+ lenderName: {
499
+ type: StringConstructor;
500
+ default: string;
501
+ };
502
+ lenderImageUrl: {
503
+ type: StringConstructor;
504
+ default: string;
505
+ };
506
+ isSmall: {
507
+ type: BooleanConstructor;
508
+ default: boolean;
509
+ };
510
+ showCssPlaceholder: {
511
+ type: BooleanConstructor;
512
+ default: boolean;
513
+ };
514
+ }>, {
515
+ isAnonymousUser: import('vue').ComputedRef<boolean>;
516
+ avatarClass: import('vue').ComputedRef<string>;
517
+ userHasImage: import('vue').ComputedRef<boolean>;
518
+ lenderNameFirstLetter: import('vue').ComputedRef<string>;
519
+ letterViewBox: import('vue').ComputedRef<"0 0 27 27" | "0 0 27.5 27.5">;
520
+ isLegacyPlaceholderAvatar: typeof import('..').isLegacyPlaceholderAvatar;
521
+ isImageLoading: import('vue').Ref<boolean, boolean>;
522
+ onImgLoad: () => void;
523
+ imageRef: import('vue').Ref<any, any>;
524
+ userAvatar: import('vue').Ref<any, any>;
525
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
526
+ lenderName: {
527
+ type: StringConstructor;
528
+ default: string;
529
+ };
530
+ lenderImageUrl: {
531
+ type: StringConstructor;
532
+ default: string;
533
+ };
534
+ isSmall: {
535
+ type: BooleanConstructor;
536
+ default: boolean;
537
+ };
538
+ showCssPlaceholder: {
539
+ type: BooleanConstructor;
540
+ default: boolean;
541
+ };
542
+ }>> & Readonly<{}>, {
543
+ lenderName: string;
544
+ lenderImageUrl: string;
545
+ isSmall: boolean;
546
+ showCssPlaceholder: boolean;
547
+ }, {}, {
548
+ KvLoadingPlaceholder: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
549
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
550
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
551
+ KvUserAvatar: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
552
+ lenderName: {
553
+ type: StringConstructor;
554
+ default: string;
555
+ };
556
+ lenderImageUrl: {
557
+ type: StringConstructor;
558
+ default: string;
559
+ };
560
+ isSmall: {
561
+ type: BooleanConstructor;
562
+ default: boolean;
563
+ };
564
+ showCssPlaceholder: {
565
+ type: BooleanConstructor;
566
+ default: boolean;
567
+ };
568
+ }>, {
569
+ isAnonymousUser: import('vue').ComputedRef<boolean>;
570
+ avatarClass: import('vue').ComputedRef<string>;
571
+ userHasImage: import('vue').ComputedRef<boolean>;
572
+ lenderNameFirstLetter: import('vue').ComputedRef<string>;
573
+ letterViewBox: import('vue').ComputedRef<"0 0 27 27" | "0 0 27.5 27.5">;
574
+ isLegacyPlaceholderAvatar: typeof import('..').isLegacyPlaceholderAvatar;
575
+ isImageLoading: import('vue').Ref<boolean, boolean>;
576
+ onImgLoad: () => void;
577
+ imageRef: import('vue').Ref<any, any>;
578
+ userAvatar: import('vue').Ref<any, any>;
579
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
580
+ lenderName: {
581
+ type: StringConstructor;
582
+ default: string;
583
+ };
584
+ lenderImageUrl: {
585
+ type: StringConstructor;
586
+ default: string;
587
+ };
588
+ isSmall: {
589
+ type: BooleanConstructor;
590
+ default: boolean;
591
+ };
592
+ showCssPlaceholder: {
593
+ type: BooleanConstructor;
594
+ default: boolean;
595
+ };
596
+ }>> & Readonly<{}>, {
597
+ lenderName: string;
598
+ lenderImageUrl: string;
599
+ isSmall: boolean;
600
+ showCssPlaceholder: boolean;
601
+ }, {}, {
602
+ KvLoadingPlaceholder: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
603
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
604
+ KvMaterialIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
605
+ icon: {
606
+ type: StringConstructor;
607
+ default: string;
608
+ };
609
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
610
+ icon: {
611
+ type: StringConstructor;
612
+ default: string;
613
+ };
614
+ }>> & Readonly<{}>, {
615
+ icon: string;
616
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
617
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
618
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
619
+ export default _default;
@@ -0,0 +1,46 @@
1
+ import s from "./KvCommentsListItem.js";
2
+ const t = "add-reaction", m = {
3
+ name: "KvCommentsList",
4
+ components: { KvCommentsListItem: s },
5
+ props: {
6
+ /**
7
+ * The full URL for the user image
8
+ */
9
+ userImageUrl: {
10
+ type: String,
11
+ default: ""
12
+ },
13
+ /**
14
+ * The name to display for the user
15
+ */
16
+ userDisplayName: {
17
+ type: String,
18
+ default: ""
19
+ },
20
+ /**
21
+ * The ID for the user
22
+ */
23
+ userPublicId: {
24
+ type: String,
25
+ default: ""
26
+ },
27
+ /**
28
+ * Activity comments
29
+ */
30
+ comments: {
31
+ type: Array,
32
+ default: () => []
33
+ }
34
+ },
35
+ emits: [t],
36
+ setup(a, { emit: e }) {
37
+ return {
38
+ handleReaction: (n) => {
39
+ e(t, n);
40
+ }
41
+ };
42
+ }
43
+ };
44
+ export {
45
+ m as default
46
+ };