@kiva/kv-components 7.6.3 → 8.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (336) hide show
  1. package/.eslintignore +5 -0
  2. package/.github/copilot-instructions.md +11 -0
  3. package/AGENTS.md +184 -0
  4. package/CLAUDE.md +11 -0
  5. package/GEMINI.md +11 -0
  6. package/dist/index.d.ts +3 -0
  7. package/dist/index.js +236 -216
  8. package/dist/utils/Alea.d.ts +9 -0
  9. package/dist/utils/Alea.js +23 -23
  10. package/dist/utils/arrayUtils.d.ts +3 -0
  11. package/dist/utils/arrayUtils.js +1 -1
  12. package/dist/utils/attrs.d.ts +6 -0
  13. package/dist/utils/carousels.d.ts +21 -0
  14. package/dist/utils/comparators.d.ts +3 -0
  15. package/dist/utils/comparators.js +20 -6
  16. package/dist/utils/debounce.d.ts +1 -0
  17. package/dist/utils/debounce.js +4 -4
  18. package/dist/utils/event.d.ts +1 -0
  19. package/dist/utils/event.js +7 -0
  20. package/dist/utils/expander.d.ts +14 -0
  21. package/dist/utils/imageUtils.d.ts +11 -0
  22. package/dist/utils/imageUtils.js +12 -12
  23. package/dist/utils/index.d.ts +21 -0
  24. package/dist/utils/loanCard.d.ts +35 -0
  25. package/dist/utils/loanCard.js +2 -2
  26. package/dist/utils/loanSearch/queryParamUtils.d.ts +1 -0
  27. package/dist/utils/loanUtils.d.ts +11 -0
  28. package/dist/utils/loanUtils.js +56 -53
  29. package/dist/utils/mapUtils.d.ts +5 -0
  30. package/dist/utils/markMatches.d.ts +1 -0
  31. package/dist/utils/paramCase.d.ts +1 -0
  32. package/dist/utils/printing.d.ts +2 -0
  33. package/dist/utils/scrollLock.d.ts +4 -0
  34. package/dist/utils/themeUtils.d.ts +12 -0
  35. package/dist/utils/throttle.d.ts +1 -0
  36. package/dist/utils/throttle.js +4 -4
  37. package/dist/utils/touchEvents.d.ts +3 -0
  38. package/dist/utils/touchEvents.js +9 -9
  39. package/dist/utils/treemap.d.ts +16 -0
  40. package/dist/utils/treemap.js +1 -1
  41. package/dist/vue/KvAccordionItem.js +28 -82
  42. package/dist/vue/KvAccordionItem.vue.d.ts +107 -0
  43. package/dist/vue/KvAccordionItem2.js +60 -0
  44. package/dist/vue/KvActivityRow.js +11 -22
  45. package/dist/vue/KvActivityRow.vue.d.ts +66 -0
  46. package/dist/vue/KvActivityRow2.js +16 -0
  47. package/dist/vue/KvAtbModal.css +1 -1
  48. package/dist/vue/KvAtbModal.js +68 -248
  49. package/dist/vue/KvAtbModal.vue.d.ts +359 -0
  50. package/dist/vue/KvAtbModal2.js +186 -0
  51. package/dist/vue/KvBorrowerImage.js +17 -118
  52. package/dist/vue/KvBorrowerImage.vue.d.ts +62 -0
  53. package/dist/vue/KvBorrowerImage2.js +106 -0
  54. package/dist/vue/KvButton.js +20 -164
  55. package/dist/vue/KvButton.vue.d.ts +94 -0
  56. package/dist/vue/KvButton2.js +149 -0
  57. package/dist/vue/KvCardFrame.js +12 -74
  58. package/dist/vue/KvCardFrame.vue.d.ts +86 -0
  59. package/dist/vue/KvCardFrame2.js +67 -0
  60. package/dist/vue/KvCarousel.css +1 -1
  61. package/dist/vue/KvCarousel.js +55 -192
  62. package/dist/vue/KvCarousel.vue.d.ts +135 -0
  63. package/dist/vue/KvCarousel2.js +142 -0
  64. package/dist/vue/KvCartModal.css +1 -1
  65. package/dist/vue/KvCartModal.js +31 -131
  66. package/dist/vue/KvCartModal.vue.d.ts +163 -0
  67. package/dist/vue/KvCartModal2.js +106 -0
  68. package/dist/vue/KvCartPill.js +12 -51
  69. package/dist/vue/KvCartPill.vue.d.ts +52 -0
  70. package/dist/vue/KvCartPill2.js +45 -0
  71. package/dist/vue/KvCheckbox.css +1 -1
  72. package/dist/vue/KvCheckbox.js +30 -126
  73. package/dist/vue/KvCheckbox.vue.d.ts +90 -0
  74. package/dist/vue/KvCheckbox2.js +102 -0
  75. package/dist/vue/KvCheckoutReceipt.css +1 -1
  76. package/dist/vue/KvCheckoutReceipt.js +120 -199
  77. package/dist/vue/KvCheckoutReceipt.vue.d.ts +164 -0
  78. package/dist/vue/KvCheckoutReceipt2.js +85 -0
  79. package/dist/vue/KvChip.js +12 -29
  80. package/dist/vue/KvChip.vue.d.ts +22 -0
  81. package/dist/vue/KvChip2.js +22 -0
  82. package/dist/vue/KvClassicLoanCard.css +1 -1
  83. package/dist/vue/KvClassicLoanCard.js +83 -351
  84. package/dist/vue/KvClassicLoanCard.vue.d.ts +2120 -0
  85. package/dist/vue/KvClassicLoanCard2.js +281 -0
  86. package/dist/vue/KvCommentsAdd.css +1 -1
  87. package/dist/vue/KvCommentsAdd.js +34 -81
  88. package/dist/vue/KvCommentsAdd.vue.d.ts +296 -0
  89. package/dist/vue/KvCommentsAdd2.js +57 -0
  90. package/dist/vue/KvCommentsContainer.js +15 -66
  91. package/dist/vue/KvCommentsContainer.vue.d.ts +954 -0
  92. package/dist/vue/KvCommentsContainer2.js +58 -0
  93. package/dist/vue/KvCommentsHeartButton.css +1 -1
  94. package/dist/vue/KvCommentsHeartButton.js +12 -51
  95. package/dist/vue/KvCommentsHeartButton.vue.d.ts +42 -0
  96. package/dist/vue/KvCommentsHeartButton2.js +44 -0
  97. package/dist/vue/KvCommentsList.js +9 -51
  98. package/dist/vue/KvCommentsList.vue.d.ts +619 -0
  99. package/dist/vue/KvCommentsList2.js +46 -0
  100. package/dist/vue/KvCommentsListItem.js +62 -186
  101. package/dist/vue/KvCommentsListItem.vue.d.ts +571 -0
  102. package/dist/vue/KvCommentsListItem2.js +135 -0
  103. package/dist/vue/KvCommentsReplyButton.css +1 -1
  104. package/dist/vue/KvCommentsReplyButton.js +8 -17
  105. package/dist/vue/KvCommentsReplyButton.vue.d.ts +98 -0
  106. package/dist/vue/KvCommentsReplyButton2.js +13 -0
  107. package/dist/vue/KvCompactLoanCard.css +1 -1
  108. package/dist/vue/KvCompactLoanCard.js +71 -327
  109. package/dist/vue/KvCompactLoanCard.vue.d.ts +1272 -0
  110. package/dist/vue/KvCompactLoanCard2.js +269 -0
  111. package/dist/vue/KvContentfulImg.js +51 -164
  112. package/dist/vue/KvContentfulImg.vue.d.ts +107 -0
  113. package/dist/vue/KvContentfulImg2.js +119 -0
  114. package/dist/vue/KvCountdownTimer.js +8 -28
  115. package/dist/vue/KvCountdownTimer.vue.d.ts +15 -0
  116. package/dist/vue/KvCountdownTimer2.js +26 -0
  117. package/dist/vue/KvDatePicker.js +21 -101
  118. package/dist/vue/KvDatePicker.vue.d.ts +58 -0
  119. package/dist/vue/KvDatePicker2.js +86 -0
  120. package/dist/vue/KvExpandable.js +9 -56
  121. package/dist/vue/KvExpandable.vue.d.ts +53 -0
  122. package/dist/vue/KvExpandable2.js +52 -0
  123. package/dist/vue/KvExpandableQuestion.js +23 -82
  124. package/dist/vue/KvExpandableQuestion.vue.d.ts +124 -0
  125. package/dist/vue/KvExpandableQuestion2.js +65 -0
  126. package/dist/vue/KvFlag.css +1 -1
  127. package/dist/vue/KvFlag.js +16 -617
  128. package/dist/vue/KvFlag.vue.d.ts +66 -0
  129. package/dist/vue/KvFlag2.js +606 -0
  130. package/dist/vue/KvGrid.js +7 -18
  131. package/dist/vue/KvGrid.vue.d.ts +14 -0
  132. package/dist/vue/KvGrid2.js +15 -0
  133. package/dist/vue/KvIconBag.js +12 -18
  134. package/dist/vue/KvIconBag.vue.d.ts +14 -0
  135. package/dist/vue/KvIconBag2.js +11 -0
  136. package/dist/vue/KvImpactDashboardHeader.vue.d.ts +17 -0
  137. package/dist/vue/KvImpactVerticalSelector.js +31 -110
  138. package/dist/vue/KvImpactVerticalSelector.vue.d.ts +278 -0
  139. package/dist/vue/KvImpactVerticalSelector2.js +85 -0
  140. package/dist/vue/KvInlineActivityCard.js +15 -44
  141. package/dist/vue/KvInlineActivityCard.vue.d.ts +71 -0
  142. package/dist/vue/KvInlineActivityCard2.js +35 -0
  143. package/dist/vue/KvInlineActivityFeed.css +1 -1
  144. package/dist/vue/KvInlineActivityFeed.js +11 -23
  145. package/dist/vue/KvInlineActivityFeed.vue.d.ts +85 -0
  146. package/dist/vue/KvInlineActivityFeed2.js +17 -0
  147. package/dist/vue/KvIntroductionLoanCard.css +1 -1
  148. package/dist/vue/KvIntroductionLoanCard.js +111 -309
  149. package/dist/vue/KvIntroductionLoanCard.vue.d.ts +617 -0
  150. package/dist/vue/KvIntroductionLoanCard2.js +209 -0
  151. package/dist/vue/KvLendAmountButton.js +9 -53
  152. package/dist/vue/KvLendAmountButton.vue.d.ts +140 -0
  153. package/dist/vue/KvLendAmountButton2.js +48 -0
  154. package/dist/vue/KvLendCta.css +1 -1
  155. package/dist/vue/KvLendCta.js +150 -530
  156. package/dist/vue/KvLendCta.vue.d.ts +583 -0
  157. package/dist/vue/KvLendCta2.js +387 -0
  158. package/dist/vue/KvLightbox.js +37 -148
  159. package/dist/vue/KvLightbox.vue.d.ts +77 -0
  160. package/dist/vue/KvLightbox2.js +117 -0
  161. package/dist/vue/KvLineGraph.js +25 -58
  162. package/dist/vue/KvLineGraph.vue.d.ts +35 -0
  163. package/dist/vue/KvLineGraph2.js +39 -0
  164. package/dist/vue/KvLoadingPlaceholder.vue.d.ts +2 -0
  165. package/dist/vue/KvLoadingSpinner.js +9 -34
  166. package/dist/vue/KvLoadingSpinner.vue.d.ts +27 -0
  167. package/dist/vue/KvLoadingSpinner2.js +29 -0
  168. package/dist/vue/KvLoanActivities.css +1 -1
  169. package/dist/vue/KvLoanActivities.js +37 -179
  170. package/dist/vue/KvLoanActivities.vue.d.ts +853 -0
  171. package/dist/vue/KvLoanActivities2.js +151 -0
  172. package/dist/vue/KvLoanBookmark.js +14 -40
  173. package/dist/vue/KvLoanBookmark.vue.d.ts +32 -0
  174. package/dist/vue/KvLoanBookmark2.js +32 -0
  175. package/dist/vue/KvLoanCallouts.css +1 -1
  176. package/dist/vue/KvLoanCallouts.js +10 -17
  177. package/dist/vue/KvLoanCallouts.vue.d.ts +18 -0
  178. package/dist/vue/KvLoanCallouts2.js +12 -0
  179. package/dist/vue/KvLoanInfoCard.js +20 -19
  180. package/dist/vue/KvLoanProgressGroup.css +1 -1
  181. package/dist/vue/KvLoanProgressGroup.js +18 -57
  182. package/dist/vue/KvLoanProgressGroup.vue.d.ts +108 -0
  183. package/dist/vue/KvLoanProgressGroup2.js +44 -0
  184. package/dist/vue/KvLoanTag.js +15 -103
  185. package/dist/vue/KvLoanTag.vue.d.ts +46 -0
  186. package/dist/vue/KvLoanTag2.js +94 -0
  187. package/dist/vue/KvLoanTeamPick.vue.d.ts +2 -0
  188. package/dist/vue/KvLoanUse.js +12 -100
  189. package/dist/vue/KvLoanUse.vue.d.ts +120 -0
  190. package/dist/vue/KvLoanUse2.js +95 -0
  191. package/dist/vue/KvLogo.vue.d.ts +2 -0
  192. package/dist/vue/KvMap.js +13 -381
  193. package/dist/vue/KvMap.vue.d.ts +213 -0
  194. package/dist/vue/KvMap2.js +376 -0
  195. package/dist/vue/KvMaterialIcon.js +10 -20
  196. package/dist/vue/KvMaterialIcon.vue.d.ts +14 -0
  197. package/dist/vue/KvMaterialIcon2.js +15 -0
  198. package/dist/vue/KvPageContainer.js +9 -8
  199. package/dist/vue/KvPageContainer.vue.d.ts +2 -0
  200. package/dist/vue/KvPageContainer2.js +4 -0
  201. package/dist/vue/KvPagination.js +38 -138
  202. package/dist/vue/KvPagination.vue.d.ts +107 -0
  203. package/dist/vue/KvPagination2.js +105 -0
  204. package/dist/vue/KvPieChart.css +1 -1
  205. package/dist/vue/KvPieChart.js +49 -128
  206. package/dist/vue/KvPieChart.vue.d.ts +47 -0
  207. package/dist/vue/KvPieChart2.js +85 -0
  208. package/dist/vue/KvPill.js +9 -19
  209. package/dist/vue/KvPill.vue.d.ts +23 -0
  210. package/dist/vue/KvPill2.js +15 -0
  211. package/dist/vue/KvPopper.js +14 -122
  212. package/dist/vue/KvPopper.vue.d.ts +80 -0
  213. package/dist/vue/KvPopper2.js +113 -0
  214. package/dist/vue/KvProgressBar.js +17 -112
  215. package/dist/vue/KvProgressBar.vue.d.ts +70 -0
  216. package/dist/vue/KvProgressBar2.js +101 -0
  217. package/dist/vue/KvPulsingDot.css +1 -1
  218. package/dist/vue/KvPulsingDot.js +11 -25
  219. package/dist/vue/KvPulsingDot.vue.d.ts +23 -0
  220. package/dist/vue/KvPulsingDot2.js +19 -0
  221. package/dist/vue/KvRadio.js +23 -106
  222. package/dist/vue/KvRadio.vue.d.ts +62 -0
  223. package/dist/vue/KvRadio2.js +89 -0
  224. package/dist/vue/KvSecondaryNav.css +1 -1
  225. package/dist/vue/KvSecondaryNav.js +46 -122
  226. package/dist/vue/KvSecondaryNav.vue.d.ts +117 -0
  227. package/dist/vue/KvSecondaryNav2.js +82 -0
  228. package/dist/vue/KvSelect.css +1 -1
  229. package/dist/vue/KvSelect.js +18 -78
  230. package/dist/vue/KvSelect.vue.d.ts +58 -0
  231. package/dist/vue/KvSelect2.js +66 -0
  232. package/dist/vue/KvSideSheet.js +44 -262
  233. package/dist/vue/KvSideSheet.vue.d.ts +136 -0
  234. package/dist/vue/KvSideSheet2.js +224 -0
  235. package/dist/vue/KvSwitch.js +23 -76
  236. package/dist/vue/KvSwitch.vue.d.ts +34 -0
  237. package/dist/vue/KvSwitch2.js +59 -0
  238. package/dist/vue/KvTab.js +15 -57
  239. package/dist/vue/KvTab.vue.d.ts +34 -0
  240. package/dist/vue/KvTab2.js +48 -0
  241. package/dist/vue/KvTabPanel.js +14 -36
  242. package/dist/vue/KvTabPanel.vue.d.ts +14 -0
  243. package/dist/vue/KvTabPanel2.js +28 -0
  244. package/dist/vue/KvTabs.js +21 -75
  245. package/dist/vue/KvTabs.vue.d.ts +22 -0
  246. package/dist/vue/KvTabs2.js +60 -0
  247. package/dist/vue/KvTextInput.js +28 -148
  248. package/dist/vue/KvTextInput.vue.d.ts +105 -0
  249. package/dist/vue/KvTextInput2.js +126 -0
  250. package/dist/vue/KvTextLink.js +13 -76
  251. package/dist/vue/KvTextLink.vue.d.ts +64 -0
  252. package/dist/vue/KvTextLink2.js +68 -0
  253. package/dist/vue/KvThemeProvider.js +8 -59
  254. package/dist/vue/KvThemeProvider.vue.d.ts +23 -0
  255. package/dist/vue/KvThemeProvider2.js +55 -0
  256. package/dist/vue/KvToast.js +32 -69
  257. package/dist/vue/KvToast.vue.d.ts +31 -0
  258. package/dist/vue/KvToast2.js +43 -0
  259. package/dist/vue/KvTooltip.css +1 -1
  260. package/dist/vue/KvTooltip.js +27 -123
  261. package/dist/vue/KvTooltip.vue.d.ts +2 -0
  262. package/dist/vue/KvTooltip2.js +103 -0
  263. package/dist/vue/KvTreeMapChart.css +1 -1
  264. package/dist/vue/KvTreeMapChart.js +28 -156
  265. package/dist/vue/KvTreeMapChart.vue.d.ts +60 -0
  266. package/dist/vue/KvTreeMapChart2.js +133 -0
  267. package/dist/vue/KvUserAvatar.js +28 -110
  268. package/dist/vue/KvUserAvatar.vue.d.ts +55 -0
  269. package/dist/vue/KvUserAvatar2.js +88 -0
  270. package/dist/vue/KvUtilityMenu.js +19 -95
  271. package/dist/vue/KvUtilityMenu.vue.d.ts +104 -0
  272. package/dist/vue/KvUtilityMenu2.js +81 -0
  273. package/dist/vue/KvVerticalCarousel.js +40 -137
  274. package/dist/vue/KvVerticalCarousel.vue.d.ts +90 -0
  275. package/dist/vue/KvVerticalCarousel2.js +103 -0
  276. package/dist/vue/KvVotingCard.css +1 -1
  277. package/dist/vue/KvVotingCard.js +31 -88
  278. package/dist/vue/KvVotingCard.vue.d.ts +249 -0
  279. package/dist/vue/KvVotingCard2.js +63 -0
  280. package/dist/vue/KvVotingCardV2.js +35 -90
  281. package/dist/vue/KvVotingCardV2.vue.d.ts +308 -0
  282. package/dist/vue/KvVotingCardV22.js +61 -0
  283. package/dist/vue/KvWideLoanCard.css +1 -1
  284. package/dist/vue/KvWideLoanCard.js +66 -274
  285. package/dist/vue/KvWideLoanCard.vue.d.ts +1191 -0
  286. package/dist/vue/KvWideLoanCard2.js +220 -0
  287. package/dist/vue/KvWwwHeader/KvHeaderAboutMenu.js +34 -38
  288. package/dist/vue/KvWwwHeader/KvHeaderAboutMenu.vue.d.ts +20 -0
  289. package/dist/vue/KvWwwHeader/KvHeaderAboutMenu2.js +9 -0
  290. package/dist/vue/KvWwwHeader/KvHeaderDropdownLink.js +20 -83
  291. package/dist/vue/KvWwwHeader/KvHeaderDropdownLink.vue.d.ts +91 -0
  292. package/dist/vue/KvWwwHeader/KvHeaderDropdownLink2.js +69 -0
  293. package/dist/vue/KvWwwHeader/KvHeaderLinkBar.css +1 -1
  294. package/dist/vue/KvWwwHeader/KvHeaderLinkBar.js +77 -248
  295. package/dist/vue/KvWwwHeader/KvHeaderLinkBar.vue.d.ts +1071 -0
  296. package/dist/vue/KvWwwHeader/KvHeaderLinkBar2.js +178 -0
  297. package/dist/vue/KvWwwHeader/KvHeaderLogo.js +8 -12
  298. package/dist/vue/KvWwwHeader/KvHeaderLogo.vue.d.ts +4 -0
  299. package/dist/vue/KvWwwHeader/KvHeaderLogo2.js +9 -0
  300. package/dist/vue/KvWwwHeader/KvHeaderMenuLink.vue.d.ts +17 -0
  301. package/dist/vue/KvWwwHeader/KvHeaderMobileMenu.css +1 -1
  302. package/dist/vue/KvWwwHeader/KvHeaderMobileMenu.js +37 -91
  303. package/dist/vue/KvWwwHeader/KvHeaderMobileMenu.vue.d.ts +162 -0
  304. package/dist/vue/KvWwwHeader/KvHeaderMobileMenu2.js +59 -0
  305. package/dist/vue/KvWwwHeader/KvHeaderMyKivaMenu.js +36 -58
  306. package/dist/vue/KvWwwHeader/KvHeaderMyKivaMenu.vue.d.ts +59 -0
  307. package/dist/vue/KvWwwHeader/KvHeaderMyKivaMenu2.js +27 -0
  308. package/dist/vue/KvWwwHeader/KvHeaderTakeActionMenu.js +20 -24
  309. package/dist/vue/KvWwwHeader/KvHeaderTakeActionMenu.vue.d.ts +20 -0
  310. package/dist/vue/KvWwwHeader/KvHeaderTakeActionMenu2.js +9 -0
  311. package/dist/vue/KvWwwHeader/LendMenu/KvLendListMenu.css +1 -1
  312. package/dist/vue/KvWwwHeader/LendMenu/KvLendListMenu.js +105 -181
  313. package/dist/vue/KvWwwHeader/LendMenu/KvLendListMenu.vue.d.ts +319 -0
  314. package/dist/vue/KvWwwHeader/LendMenu/KvLendListMenu2.js +82 -0
  315. package/dist/vue/KvWwwHeader/LendMenu/KvLendMegaMenu.css +1 -1
  316. package/dist/vue/KvWwwHeader/LendMenu/KvLendMegaMenu.js +93 -173
  317. package/dist/vue/KvWwwHeader/LendMenu/KvLendMegaMenu.vue.d.ts +166 -0
  318. package/dist/vue/KvWwwHeader/LendMenu/KvLendMegaMenu2.js +86 -0
  319. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenu.js +17 -157
  320. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenu.vue.d.ts +506 -0
  321. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenu2.js +145 -0
  322. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuCountryList.css +1 -1
  323. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuCountryList.js +11 -18
  324. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuCountryList.vue.d.ts +20 -0
  325. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuCountryList2.js +12 -0
  326. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuSearchList.js +10 -16
  327. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuSearchList.vue.d.ts +20 -0
  328. package/dist/vue/KvWwwHeader/LendMenu/KvLendMenuSearchList2.js +11 -0
  329. package/dist/vue/KvWwwHeader.css +1 -1
  330. package/dist/vue/KvWwwHeader.js +35 -148
  331. package/dist/vue/KvWwwHeader.vue.d.ts +4430 -0
  332. package/dist/vue/KvWwwHeader2.js +119 -0
  333. package/dist/vue/index.d.ts +86 -0
  334. package/package.json +35 -33
  335. package/tsconfig.json +32 -0
  336. package/vite.config.ts +84 -0
@@ -0,0 +1,70 @@
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ label: {
3
+ type: StringConstructor;
4
+ required: true;
5
+ };
6
+ min: {
7
+ type: NumberConstructor;
8
+ default: number;
9
+ };
10
+ max: {
11
+ type: NumberConstructor;
12
+ default: number;
13
+ };
14
+ value: {
15
+ type: NumberConstructor;
16
+ default: number;
17
+ required: true;
18
+ };
19
+ variant: {
20
+ type: StringConstructor;
21
+ default: string;
22
+ validator(value: string): boolean;
23
+ };
24
+ bgVariant: {
25
+ type: StringConstructor;
26
+ default: string;
27
+ validator(value: string): boolean;
28
+ };
29
+ }>, {
30
+ loaded: import('vue').Ref<boolean, boolean>;
31
+ percent: import('vue').ComputedRef<number>;
32
+ animateProgressBar: () => void;
33
+ variantClass: import('vue').ComputedRef<"tw-bg-tertiary" | "tw-bg-danger" | "tw-bg-caution" | "tw-bg-brand">;
34
+ backgroundVariant: import('vue').ComputedRef<"tw-bg-tertiary" | "tw-bg-secondary">;
35
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
36
+ label: {
37
+ type: StringConstructor;
38
+ required: true;
39
+ };
40
+ min: {
41
+ type: NumberConstructor;
42
+ default: number;
43
+ };
44
+ max: {
45
+ type: NumberConstructor;
46
+ default: number;
47
+ };
48
+ value: {
49
+ type: NumberConstructor;
50
+ default: number;
51
+ required: true;
52
+ };
53
+ variant: {
54
+ type: StringConstructor;
55
+ default: string;
56
+ validator(value: string): boolean;
57
+ };
58
+ bgVariant: {
59
+ type: StringConstructor;
60
+ default: string;
61
+ validator(value: string): boolean;
62
+ };
63
+ }>> & Readonly<{}>, {
64
+ value: number;
65
+ variant: string;
66
+ min: number;
67
+ max: number;
68
+ bgVariant: string;
69
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
70
+ export default _default;
@@ -0,0 +1,101 @@
1
+ import { toRefs as p, ref as y, computed as e, onMounted as b, nextTick as v } from "vue";
2
+ const h = {
3
+ props: {
4
+ /**
5
+ * The words to announce to screenreaders describing what this progress represents
6
+ * e.g., "Percent the loan has funded"
7
+ * */
8
+ label: {
9
+ type: String,
10
+ required: !0
11
+ },
12
+ /**
13
+ * The min value of the progress bar
14
+ * */
15
+ min: {
16
+ type: Number,
17
+ default: 0
18
+ },
19
+ /**
20
+ * The max value of the progress bar
21
+ * */
22
+ max: {
23
+ type: Number,
24
+ default: 100
25
+ },
26
+ /**
27
+ * The current value to display
28
+ * */
29
+ value: {
30
+ type: Number,
31
+ default: 0,
32
+ required: !0
33
+ },
34
+ /**
35
+ * Appearance of the progress bar
36
+ * `primary (default), ghost, danger, caution
37
+ * */
38
+ variant: {
39
+ type: String,
40
+ default: "primary",
41
+ validator(t) {
42
+ return ["primary", "ghost", "danger", "caution"].includes(t);
43
+ }
44
+ },
45
+ /**
46
+ * Appearance of the progress bar background
47
+ * `secondary (default), tertiary
48
+ * */
49
+ bgVariant: {
50
+ type: String,
51
+ default: "secondary",
52
+ validator(t) {
53
+ return ["secondary", "tertiary"].includes(t);
54
+ }
55
+ }
56
+ },
57
+ setup(t) {
58
+ const {
59
+ min: a,
60
+ max: u,
61
+ value: i,
62
+ variant: s,
63
+ bgVariant: c
64
+ } = p(t), r = y(!1), o = e(() => {
65
+ const g = (i.value - a.value) / (u.value - a.value) * 100, m = Math.round(g * 10) / 10;
66
+ return Math.min(Math.max(m, 0), 100);
67
+ }), d = e(() => {
68
+ switch (s.value) {
69
+ case "ghost":
70
+ return "tw-bg-tertiary";
71
+ case "danger":
72
+ return "tw-bg-danger";
73
+ case "caution":
74
+ return "tw-bg-caution";
75
+ default:
76
+ return "tw-bg-brand";
77
+ }
78
+ }), l = e(() => {
79
+ switch (c.value) {
80
+ case "tertiary":
81
+ return "tw-bg-tertiary";
82
+ default:
83
+ return "tw-bg-secondary";
84
+ }
85
+ }), n = () => {
86
+ r.value = !0;
87
+ };
88
+ return b(async () => {
89
+ await v(), n();
90
+ }), {
91
+ loaded: r,
92
+ percent: o,
93
+ animateProgressBar: n,
94
+ variantClass: d,
95
+ backgroundVariant: l
96
+ };
97
+ }
98
+ };
99
+ export {
100
+ h as default
101
+ };
@@ -1 +1 @@
1
- .pulsing-dot[data-v-51110652]{position:relative}.pulsing-dot__circle[data-v-51110652]{height:.5rem;width:.5rem;border-radius:500rem}.pulsing-dot__ring[data-v-51110652]{border-width:2px;border-style:solid;position:absolute;height:.75rem;width:.75rem;border-radius:500rem;left:-2px;top:-2px;animation:pulsate-51110652 1s ease-out;animation-iteration-count:infinite;opacity:0}@keyframes pulsate-51110652{0%{transform:scale(.1);opacity:0}50%{opacity:1}to{transform:scale(1.2);opacity:0}}
1
+ .pulsing-dot[data-v-88502bce]{position:relative}.pulsing-dot__circle[data-v-88502bce]{height:.5rem;width:.5rem;border-radius:500rem}.pulsing-dot__ring[data-v-88502bce]{border-width:2px;border-style:solid;position:absolute;height:.75rem;width:.75rem;border-radius:500rem;left:-2px;top:-2px;animation:pulsate-88502bce 1s ease-out;animation-iteration-count:infinite;opacity:0}@keyframes pulsate-88502bce{0%{transform:scale(.1);opacity:0}50%{opacity:1}to{transform:scale(1.2);opacity:0}}
@@ -1,33 +1,19 @@
1
- import { openBlock as e, createElementBlock as l, createElementVNode as o, normalizeClass as s } from "vue";
1
+ import t from "./KvPulsingDot2.js";
2
+ import { openBlock as l, createElementBlock as r, createElementVNode as e, normalizeClass as s } from "vue";
2
3
  import "./KvPulsingDot.css";
3
- import r from "../_virtual/_plugin-vue_export-helper.js";
4
- const n = {
5
- name: "KvPulsingDot",
6
- props: {
7
- dotColorClass: {
8
- type: String,
9
- default: "tw-bg-brand"
10
- },
11
- pulseColorClass: {
12
- type: String,
13
- default: "tw-border-brand"
14
- }
15
- },
16
- setup() {
17
- return {};
18
- }
19
- }, a = { class: "pulsing-dot" };
20
- function d(c, i, t, p, u, _) {
21
- return e(), l("div", a, [
22
- o("div", {
23
- class: s(["pulsing-dot__ring", t.pulseColorClass])
4
+ import c from "../_virtual/_plugin-vue_export-helper.js";
5
+ const n = { class: "pulsing-dot" };
6
+ function i(a, _, o, d, p, m) {
7
+ return l(), r("div", n, [
8
+ e("div", {
9
+ class: s(["pulsing-dot__ring", o.pulseColorClass])
24
10
  }, null, 2),
25
- o("div", {
26
- class: s(["pulsing-dot__circle", t.dotColorClass])
11
+ e("div", {
12
+ class: s(["pulsing-dot__circle", o.dotColorClass])
27
13
  }, null, 2)
28
14
  ]);
29
15
  }
30
- const C = /* @__PURE__ */ r(n, [["render", d], ["__scopeId", "data-v-51110652"]]);
16
+ const C = /* @__PURE__ */ c(t, [["render", i], ["__scopeId", "data-v-88502bce"]]);
31
17
  export {
32
18
  C as default
33
19
  };
@@ -0,0 +1,23 @@
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ dotColorClass: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ pulseColorClass: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
11
+ dotColorClass: {
12
+ type: StringConstructor;
13
+ default: string;
14
+ };
15
+ pulseColorClass: {
16
+ type: StringConstructor;
17
+ default: string;
18
+ };
19
+ }>> & Readonly<{}>, {
20
+ dotColorClass: string;
21
+ pulseColorClass: string;
22
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
23
+ export default _default;
@@ -0,0 +1,19 @@
1
+ const t = {
2
+ name: "KvPulsingDot",
3
+ props: {
4
+ dotColorClass: {
5
+ type: String,
6
+ default: "tw-bg-brand"
7
+ },
8
+ pulseColorClass: {
9
+ type: String,
10
+ default: "tw-border-brand"
11
+ }
12
+ },
13
+ setup() {
14
+ return {};
15
+ }
16
+ };
17
+ export {
18
+ t as default
19
+ };
@@ -1,104 +1,21 @@
1
- import { nanoid as u } from "nanoid";
2
- import { toRefs as k, ref as f, computed as _, onMounted as C, openBlock as m, createElementBlock as w, normalizeClass as s, normalizeStyle as V, createElementVNode as l, mergeProps as B, toHandlers as x, withModifiers as S, createCommentVNode as N, renderSlot as A } from "vue";
3
- import { useAttrs as R } from "../utils/attrs.js";
4
- import z from "../_virtual/_plugin-vue_export-helper.js";
5
- const h = [
6
- "change",
7
- "update:modelValue"
8
- ], E = {
9
- inheritAttrs: !1,
10
- model: {
11
- prop: "modelValue",
12
- event: "update:modelValue"
13
- },
14
- props: {
15
- /**
16
- * Value of the input
17
- * */
18
- value: {
19
- type: [String, Number, Boolean],
20
- required: !0
21
- },
22
- /**
23
- * Prevents the radio from being toggled or focused
24
- * */
25
- disabled: {
26
- type: Boolean,
27
- default: !1
28
- },
29
- /**
30
- * Native name attribute. Used to group radios if you're not using v-model. E.g.,
31
- * ```
32
- * <KvRadio name="cats">Tabby</KvRadio>
33
- * <KvRadio name="cats">Siamese</KvRadio>
34
- * <KvRadio name="dogs">Husky</KvRadio>
35
- * <KvRadio name="dogs">Boxer</KvRadio>
36
- * ```
37
- * */
38
- name: {
39
- type: String,
40
- default: ""
41
- },
42
- /**
43
- * Native checked attribute. Used to select the radio if you're not using v-model E.g.,
44
- * ```
45
- * <KvRadio value="foo" :checked="myModel === foo">Foo</KvRadio>
46
- * <KvRadio value="bar" :checked="myModel === bar">Bar</KvRadio>
47
- * ```
48
- * */
49
- checked: {
50
- type: [String, Number, Boolean],
51
- default: !1
52
- },
53
- modelValue: {
54
- type: [String, Number, Boolean],
55
- default: !1
56
- }
57
- },
58
- emits: h,
59
- setup(r, o) {
60
- const { emit: t } = o, {
61
- value: e,
62
- checked: d,
63
- modelValue: a
64
- } = k(r), n = f(`kvr-${u(10)}`), i = f(null), {
65
- classes: v,
66
- styles: p,
67
- inputAttrs: g,
68
- inputListeners: b
69
- } = R(o, h), y = _(() => typeof a.value == typeof e.value ? a.value === e.value : !!d.value);
70
- return C(() => {
71
- n.value = `kvr-${u(10)}`;
72
- }), {
73
- uuid: n,
74
- isChecked: y,
75
- radioRef: i,
76
- onChange: (c) => {
77
- t("change", c.target.value), t("update:modelValue", c.target.value);
78
- },
79
- focus: () => i.focus(),
80
- blur: () => i.blur(),
81
- classes: v,
82
- styles: p,
83
- inputAttrs: g,
84
- inputListeners: b
85
- };
86
- }
87
- }, L = ["for"], M = ["id", "checked", "name", "value", "disabled"], j = {
1
+ import a from "./KvRadio2.js";
2
+ import { openBlock as o, createElementBlock as d, normalizeClass as r, normalizeStyle as c, createElementVNode as i, mergeProps as w, toHandlers as f, withModifiers as m, createCommentVNode as h, renderSlot as u } from "vue";
3
+ import v from "../_virtual/_plugin-vue_export-helper.js";
4
+ const b = ["for"], _ = ["id", "checked", "name", "value", "disabled"], g = {
88
5
  key: 0,
89
6
  class: "tw-rounded-full tw-bg-action",
90
7
  style: { width: "0.75rem", height: "0.75rem" }
91
- }, q = { class: "tw-flex-1 peer-focus-visible:tw-ring-2 peer-focus-visible:tw-ring-action" };
92
- function H(r, o, t, e, d, a) {
93
- return m(), w("div", {
94
- class: s(e.classes),
95
- style: V(e.styles)
8
+ }, k = { class: "tw-flex-1 peer-focus-visible:tw-ring-2 peer-focus-visible:tw-ring-action" };
9
+ function y(l, n, t, e, C, x) {
10
+ return o(), d("div", {
11
+ class: r(e.classes),
12
+ style: c(e.styles)
96
13
  }, [
97
- l("label", {
98
- class: s(["tw-inline-flex tw-items-center tw-align-middle", { "tw-opacity-low": t.disabled }]),
14
+ i("label", {
15
+ class: r(["tw-inline-flex tw-items-center tw-align-middle", { "tw-opacity-low": t.disabled }]),
99
16
  for: e.uuid
100
17
  }, [
101
- l("input", B(e.inputAttrs, {
18
+ i("input", w(e.inputAttrs, {
102
19
  id: e.uuid,
103
20
  ref: "radioRef",
104
21
  class: "tw-peer tw-appearance-none tw-w-max",
@@ -107,24 +24,24 @@ function H(r, o, t, e, d, a) {
107
24
  name: t.name,
108
25
  value: t.value,
109
26
  disabled: t.disabled
110
- }, x(e.inputListeners, !0), {
111
- onChange: o[0] || (o[0] = S((...n) => e.onChange && e.onChange(...n), ["prevent"]))
112
- }), null, 16, M),
113
- l("div", {
114
- class: s(["tw-w-3 tw-h-3 tw-mr-2 tw-rounded-full tw-border tw-flex-shrink-0 tw-overflow-hidden tw-flex tw-justify-center tw-items-center tw-transition-all tw-duration-100 peer-focus-visible:tw-ring-2 peer-focus-visible:tw-ring-action", {
27
+ }, f(e.inputListeners, !0), {
28
+ onChange: n[0] || (n[0] = m((...s) => e.onChange && e.onChange(...s), ["prevent"]))
29
+ }), null, 16, _),
30
+ i("div", {
31
+ class: r(["tw-w-3 tw-h-3 tw-mr-2 tw-rounded-full tw-border tw-flex-shrink-0 tw-overflow-hidden tw-flex tw-justify-center tw-items-center tw-transition-all tw-duration-100 peer-focus-visible:tw-ring-2 peer-focus-visible:tw-ring-action", {
115
32
  "tw-border-secondary": !e.isChecked,
116
33
  "tw-border-action": e.isChecked
117
34
  }])
118
35
  }, [
119
- e.isChecked ? (m(), w("div", j)) : N("", !0)
36
+ e.isChecked ? (o(), d("div", g)) : h("", !0)
120
37
  ], 2),
121
- l("div", q, [
122
- A(r.$slots, "default")
38
+ i("div", k, [
39
+ u(l.$slots, "default")
123
40
  ])
124
- ], 10, L)
41
+ ], 10, b)
125
42
  ], 6);
126
43
  }
127
- const O = /* @__PURE__ */ z(E, [["render", H]]);
44
+ const E = /* @__PURE__ */ v(a, [["render", y]]);
128
45
  export {
129
- O as default
46
+ E as default
130
47
  };
@@ -0,0 +1,62 @@
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ value: {
3
+ type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
4
+ required: true;
5
+ };
6
+ disabled: {
7
+ type: BooleanConstructor;
8
+ default: boolean;
9
+ };
10
+ name: {
11
+ type: StringConstructor;
12
+ default: string;
13
+ };
14
+ checked: {
15
+ type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
16
+ default: boolean;
17
+ };
18
+ modelValue: {
19
+ type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
20
+ default: boolean;
21
+ };
22
+ }>, {
23
+ uuid: import('vue').Ref<string, string>;
24
+ isChecked: import('vue').ComputedRef<boolean>;
25
+ radioRef: import('vue').Ref<any, any>;
26
+ onChange: (event: any) => void;
27
+ focus: () => any;
28
+ blur: () => any;
29
+ classes: any[];
30
+ styles: any[];
31
+ inputAttrs: any;
32
+ inputListeners: any;
33
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, string[], string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
34
+ value: {
35
+ type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
36
+ required: true;
37
+ };
38
+ disabled: {
39
+ type: BooleanConstructor;
40
+ default: boolean;
41
+ };
42
+ name: {
43
+ type: StringConstructor;
44
+ default: string;
45
+ };
46
+ checked: {
47
+ type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
48
+ default: boolean;
49
+ };
50
+ modelValue: {
51
+ type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
52
+ default: boolean;
53
+ };
54
+ }>> & Readonly<{
55
+ [x: `on${Capitalize<string>}`]: (...args: any[]) => any;
56
+ }>, {
57
+ name: string;
58
+ disabled: boolean;
59
+ modelValue: string | number | boolean;
60
+ checked: string | number | boolean;
61
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
62
+ export default _default;
@@ -0,0 +1,89 @@
1
+ import { nanoid as r } from "nanoid";
2
+ import { toRefs as h, ref as s, computed as y, onMounted as b } from "vue";
3
+ import { useAttrs as V } from "../utils/attrs.js";
4
+ const d = [
5
+ "change",
6
+ "update:modelValue"
7
+ ], R = {
8
+ inheritAttrs: !1,
9
+ model: {
10
+ prop: "modelValue",
11
+ event: "update:modelValue"
12
+ },
13
+ props: {
14
+ /**
15
+ * Value of the input
16
+ * */
17
+ value: {
18
+ type: [String, Number, Boolean],
19
+ required: !0
20
+ },
21
+ /**
22
+ * Prevents the radio from being toggled or focused
23
+ * */
24
+ disabled: {
25
+ type: Boolean,
26
+ default: !1
27
+ },
28
+ /**
29
+ * Native name attribute. Used to group radios if you're not using v-model. E.g.,
30
+ * ```
31
+ * <KvRadio name="cats">Tabby</KvRadio>
32
+ * <KvRadio name="cats">Siamese</KvRadio>
33
+ * <KvRadio name="dogs">Husky</KvRadio>
34
+ * <KvRadio name="dogs">Boxer</KvRadio>
35
+ * ```
36
+ * */
37
+ name: {
38
+ type: String,
39
+ default: ""
40
+ },
41
+ /**
42
+ * Native checked attribute. Used to select the radio if you're not using v-model E.g.,
43
+ * ```
44
+ * <KvRadio value="foo" :checked="myModel === foo">Foo</KvRadio>
45
+ * <KvRadio value="bar" :checked="myModel === bar">Bar</KvRadio>
46
+ * ```
47
+ * */
48
+ checked: {
49
+ type: [String, Number, Boolean],
50
+ default: !1
51
+ },
52
+ modelValue: {
53
+ type: [String, Number, Boolean],
54
+ default: !1
55
+ }
56
+ },
57
+ emits: d,
58
+ setup(c, t) {
59
+ const { emit: o } = t, {
60
+ value: u,
61
+ checked: f,
62
+ modelValue: a
63
+ } = h(c), l = s(`kvr-${r(10)}`), e = s(null), {
64
+ classes: i,
65
+ styles: p,
66
+ inputAttrs: m,
67
+ inputListeners: v
68
+ } = V(t, d), g = y(() => typeof a.value == typeof u.value ? a.value === u.value : !!f.value);
69
+ return b(() => {
70
+ l.value = `kvr-${r(10)}`;
71
+ }), {
72
+ uuid: l,
73
+ isChecked: g,
74
+ radioRef: e,
75
+ onChange: (n) => {
76
+ o("change", n.target.value), o("update:modelValue", n.target.value);
77
+ },
78
+ focus: () => e.value.focus(),
79
+ blur: () => e.value.blur(),
80
+ classes: i,
81
+ styles: p,
82
+ inputAttrs: m,
83
+ inputListeners: v
84
+ };
85
+ }
86
+ };
87
+ export {
88
+ R as default
89
+ };
@@ -1 +1 @@
1
- .kv-secondary-nav-holder[data-v-b0827053]{height:62px}.kv-secondary-nav[data-v-b0827053]{min-height:62px}
1
+ .kv-secondary-nav-holder[data-v-c3e621bd]{height:62px}.kv-secondary-nav[data-v-c3e621bd]{min-height:62px}