@veritree/ui 0.87.2 → 0.87.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veritree/ui",
3
- "version": "0.87.2",
3
+ "version": "0.87.4",
4
4
  "description": "veritree ui library",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -9,7 +9,6 @@
9
9
  :step="step"
10
10
  type="range"
11
11
  @input="onInput"
12
- @change="onChange"
13
12
  />
14
13
  <div class="range-slider-track" aria-hidden />
15
14
  <div ref="thumb" class="range-slider-thumb" aria-hidden />
@@ -18,7 +17,7 @@
18
17
 
19
18
  <script>
20
19
  export default {
21
- name: 'VTInputRanger',
20
+ name: 'VTInputRange',
22
21
 
23
22
  model: {
24
23
  prop: 'value',
@@ -88,10 +87,6 @@ export default {
88
87
  onInput(e) {
89
88
  this.computedValue = e.target.value;
90
89
  },
91
-
92
- onChange(e) {
93
- console.log(e.target);
94
- },
95
90
  },
96
91
  };
97
92
  </script>
@@ -199,7 +199,7 @@ export default {
199
199
 
200
200
  computed: {
201
201
  componentId() {
202
- return `listbox-${this.id || genId()}`;
202
+ return this.id || genId();
203
203
  },
204
204
 
205
205
  valueComputed: {