@kiva/kv-components 3.80.0 → 3.81.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,33 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.81.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.80.1...@kiva/kv-components@3.81.0) (2024-05-29)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * removed unneeded code ([15c19bb](https://github.com/kiva/kv-ui-elements/commit/15c19bb1cdd6ac65910117d077dff38d48fa9cb3))
12
+
13
+
14
+ ### Features
15
+
16
+ * secondary handler remove default behavior if set ([bbf91f8](https://github.com/kiva/kv-ui-elements/commit/bbf91f8b77a79f8204b0050ef1c466573f63228a))
17
+
18
+
19
+
20
+
21
+
22
+ ## [3.80.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.80.0...@kiva/kv-components@3.80.1) (2024-05-22)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * left some unsaved changes out of the branch, adding those in ([a8498a3](https://github.com/kiva/kv-ui-elements/commit/a8498a3012abe50cf6254e3734a47df31314c473))
28
+
29
+
30
+
31
+
32
+
6
33
  # [3.80.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.79.0...@kiva/kv-components@3.80.0) (2024-05-22)
7
34
 
8
35
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiva/kv-components",
3
- "version": "3.80.0",
3
+ "version": "3.81.0",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -75,5 +75,5 @@
75
75
  "optional": true
76
76
  }
77
77
  },
78
- "gitHead": "3dbb81161c861155a392916f6bf297caea902e86"
78
+ "gitHead": "c12a030cc21acf02392d153306085556615a47ae"
79
79
  }
package/vue/KvLendCta.vue CHANGED
@@ -6,8 +6,8 @@
6
6
  variant="secondary"
7
7
  class="tw-inline-flex tw-flex-1"
8
8
  data-testid="bp-lend-cta-checkout-button"
9
- :to="!externalLinks ? '/basket' : undefined"
10
- :href="externalLinks ? '/basket' : undefined"
9
+ :to="!externalLinks || secondaryButtonHandler ? '/basket' : undefined"
10
+ :href="externalLinks || secondaryButtonHandler ? '/basket' : undefined"
11
11
  @click.native="clickSecondaryButton"
12
12
  >
13
13
  {{ loanInBasketButtonText }}
@@ -31,6 +31,7 @@ const story = (args) => {
31
31
  :custom-callouts="customCallouts"
32
32
  :is-team-pick="isTeamPick"
33
33
  :combined-activities="combinedActivities"
34
+ :showContributors="showContributors"
34
35
  :enable-huge-amount="enableHugeAmount"
35
36
  :enable-clickable-tags="enableClickableTags"
36
37
  :primary-button-text="primaryButtonText"
@@ -445,4 +446,5 @@ export const ContributorsAndAmount = story({
445
446
  },
446
447
  kvTrackFunction,
447
448
  photoPath,
449
+ showContributors: true,
448
450
  });