@kiva/kv-components 1.4.0 → 1.4.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.
- package/CHANGELOG.md +11 -0
- package/package.json +2 -2
- package/vue/KvTextInput.vue +6 -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
|
+
## [1.4.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@1.4.0...@kiva/kv-components@1.4.1) (2021-12-22)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **KvTextInput:** watch for value prop changes ([ffa6c6d](https://github.com/kiva/kv-ui-elements/commit/ffa6c6dda548af021f1472e81469d7fc3a3c0a11))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [1.4.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@1.3.0...@kiva/kv-components@1.4.0) (2021-12-20)
|
|
7
18
|
|
|
8
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-components",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"vue": "^2.6.12",
|
|
55
55
|
"vue-focus-lock": "^1.4.1"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "eb4916727c36c4c0c1c9be3e4da81b58783c63b4"
|
|
58
58
|
}
|
package/vue/KvTextInput.vue
CHANGED
|
@@ -163,7 +163,7 @@ export default {
|
|
|
163
163
|
type: String,
|
|
164
164
|
default: 'text',
|
|
165
165
|
},
|
|
166
|
-
/**
|
|
166
|
+
/**
|
|
167
167
|
* When set to true, adds a button positioned to the right edge of the input containing an “X”
|
|
168
168
|
* */
|
|
169
169
|
canClear: {
|
|
@@ -190,6 +190,11 @@ export default {
|
|
|
190
190
|
},
|
|
191
191
|
|
|
192
192
|
},
|
|
193
|
+
watch: {
|
|
194
|
+
value() {
|
|
195
|
+
this.valueInput = this.value;
|
|
196
|
+
},
|
|
197
|
+
},
|
|
193
198
|
methods: {
|
|
194
199
|
onInput(event) {
|
|
195
200
|
/**
|