@tak-ps/vue-tabler 3.51.1 → 3.51.3

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
@@ -10,6 +10,14 @@
10
10
 
11
11
  ## Version History
12
12
 
13
+ ### v3.51.3
14
+
15
+ - :bug: Avoid overwriting `0` values
16
+
17
+ ### v3.51.2
18
+
19
+ - :bug: Fix fallback order of placeholder text in textarea
20
+
13
21
  ### v3.51.1
14
22
 
15
23
  - :rocket: Add `lock` and `user` icons to TablerInput
@@ -42,7 +42,7 @@
42
42
  "is-invalid": errorstr
43
43
  }'
44
44
  class="form-control"
45
- :placeholder='label||placeholder||""'
45
+ :placeholder='placeholder||label||""'
46
46
  />
47
47
  </template>
48
48
  <div v-if='errorstr' v-text='errorstr' class="invalid-feedback"></div>
@@ -105,7 +105,7 @@ export default {
105
105
  return {
106
106
  help: false,
107
107
  internal_error: '',
108
- current: this.modelValue || ''
108
+ current: this.modelValue === undefined ? '' : this.modelValue
109
109
  }
110
110
  },
111
111
  computed: {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tak-ps/vue-tabler",
3
3
  "type": "module",
4
- "version": "3.51.1",
4
+ "version": "3.51.3",
5
5
  "lib": "lib.js",
6
6
  "module": "lib.js",
7
7
  "description": "Tabler UI components for Vue3",