@kiva/kv-components 3.55.1 → 3.55.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 +11 -0
- package/package.json +2 -2
- package/vue/KvCommentsList.vue +2 -1
- package/vue/KvCommentsListItem.vue +1 -1
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.55.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.55.1...@kiva/kv-components@3.55.2) (2024-03-01)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* remove const var import ([#352](https://github.com/kiva/kv-ui-elements/issues/352)) ([4c1ca6a](https://github.com/kiva/kv-ui-elements/commit/4c1ca6a2d518ce1b1b72933b5f5296513d352fa2))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [3.55.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.55.0...@kiva/kv-components@3.55.1) (2024-02-29)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @kiva/kv-components
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-components",
|
|
3
|
-
"version": "3.55.
|
|
3
|
+
"version": "3.55.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": "
|
|
78
|
+
"gitHead": "a4e1a58a5c50681cca58459149abcb88ba99d572"
|
|
79
79
|
}
|
package/vue/KvCommentsList.vue
CHANGED
|
@@ -86,10 +86,10 @@ import {
|
|
|
86
86
|
import KvCommentsReplyButton from './KvCommentsReplyButton.vue';
|
|
87
87
|
import KvCommentsHeartButton from './KvCommentsHeartButton.vue';
|
|
88
88
|
import KvCommentsAdd from './KvCommentsAdd.vue';
|
|
89
|
-
import { ADD_REACTION_EVENT } from './KvCommentsContainer.vue';
|
|
90
89
|
|
|
91
90
|
export const REPLY_COMMENT_EVENT = 'reply-comment';
|
|
92
91
|
export const LIKE_COMMENT_EVENT = 'like-comment';
|
|
92
|
+
const ADD_REACTION_EVENT = 'add-reaction';
|
|
93
93
|
|
|
94
94
|
export default {
|
|
95
95
|
name: 'KvCommentsListItem',
|