@kiva/kv-components 3.65.1 → 3.65.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.65.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.65.1...@kiva/kv-components@3.65.2) (2024-03-19)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * revert level 3 reactions and more specific error src ([dc8acac](https://github.com/kiva/kv-ui-elements/commit/dc8acaca403b438d34daca49e85442627883b08f))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [3.65.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.65.0...@kiva/kv-components@3.65.1) (2024-03-19)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiva/kv-components",
3
- "version": "3.65.1",
3
+ "version": "3.65.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": "7f205296dca9669288255591ca4730def3a8182d"
78
+ "gitHead": "8456bf17419af8cadd38b05d7e8efaaa8b9ee76d"
79
79
  }
@@ -18,7 +18,10 @@
18
18
  {{ commentText }}
19
19
  </p>
20
20
  </div>
21
- <div class="tw-flex tw-items-center tw-gap-x-2">
21
+ <div
22
+ v-if="nestLevel < 3"
23
+ class="tw-flex tw-items-center tw-gap-x-2"
24
+ >
22
25
  <div class="tw-flex tw-items-center tw-gap-0.5">
23
26
  <kv-comments-heart-button
24
27
  :is-small="true"
@@ -35,7 +38,7 @@
35
38
  </p>
36
39
  </div>
37
40
  <kv-comments-reply-button
38
- v-if="userPublicId && nestLevel < 3"
41
+ v-if="userPublicId"
39
42
  :number-of-replies="numberOfReplies"
40
43
  @click="replyClick"
41
44
  />