@tak-ps/vue-tabler 3.51.2 → 3.51.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/CHANGELOG.md +8 -0
- package/components/input/Enum.vue +6 -1
- package/components/input/Input.vue +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,14 @@
|
|
|
10
10
|
|
|
11
11
|
## Version History
|
|
12
12
|
|
|
13
|
+
### v3.51.4
|
|
14
|
+
|
|
15
|
+
- :rocket: Avoid adding div when label isn't set in Enum
|
|
16
|
+
|
|
17
|
+
### v3.51.3
|
|
18
|
+
|
|
19
|
+
- :bug: Avoid overwriting `0` values
|
|
20
|
+
|
|
13
21
|
### v3.51.2
|
|
14
22
|
|
|
15
23
|
- :bug: Fix fallback order of placeholder text in textarea
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class='row'>
|
|
3
|
-
<TablerLabel
|
|
3
|
+
<TablerLabel
|
|
4
|
+
v-if='label'
|
|
5
|
+
:label='label'
|
|
6
|
+
:description='description'
|
|
7
|
+
:required='required'
|
|
8
|
+
><slot/></TablerLabel>
|
|
4
9
|
<div class='col-12'>
|
|
5
10
|
<select v-model='current' :disabled='disabled' class='form-select'>
|
|
6
11
|
<option :key='option' v-for='option in options' :value="option" v-text='option'></option>
|