@kiva/kv-components 3.44.1 → 3.44.2

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,17 @@
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.44.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.44.1...@kiva/kv-components@3.44.2) (2023-09-25)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * bookmark icon position fixed to avoid using z index property ([#301](https://github.com/kiva/kv-ui-elements/issues/301)) ([59287f8](https://github.com/kiva/kv-ui-elements/commit/59287f82e27275a23c6924537a55bdb31f563946))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [3.44.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.44.0...@kiva/kv-components@3.44.1) (2023-09-20)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiva/kv-components",
3
- "version": "3.44.1",
3
+ "version": "3.44.2",
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": "a6e828c2b6a814b53ec26ada42ec6b97e6932660"
78
+ "gitHead": "93f09fe1ce35d25928ce15123bf87349a09c693f"
79
79
  }
@@ -19,15 +19,6 @@
19
19
  class="tw-relative"
20
20
  @click="showLoanDetails"
21
21
  >
22
- <kv-loan-bookmark
23
- v-if="!isVisitor"
24
- :loan-id="loanId"
25
- :is-bookmarked="isBookmarked"
26
- class="tw-absolute tw-right-1 tw-z-2"
27
- style="top: -6px;"
28
- data-testid="loan-card-bookmark"
29
- @toggle-bookmark="$emit('toggle-bookmark')"
30
- />
31
22
  <component
32
23
  :is="tag"
33
24
  :to="readMorePath"
@@ -76,6 +67,15 @@
76
67
  </p>
77
68
  </div>
78
69
  </component>
70
+ <kv-loan-bookmark
71
+ v-if="!isVisitor"
72
+ :loan-id="loanId"
73
+ :is-bookmarked="isBookmarked"
74
+ class="tw-absolute tw-right-1"
75
+ style="top: -6px;"
76
+ data-testid="loan-card-bookmark"
77
+ @toggle-bookmark="$emit('toggle-bookmark')"
78
+ />
79
79
  </div>
80
80
 
81
81
  <!-- Loan tag -->