@tak-ps/vue-tabler 3.49.0 → 3.50.0

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,10 @@
10
10
 
11
11
  ## Version History
12
12
 
13
+ ### v3.50.0
14
+
15
+ - :rocket: Show label conditionally to avoid 4px margin on top of input
16
+
13
17
  ### v3.49.0
14
18
 
15
19
  - :rocket: Add ability to specify a search icon for TablerInput
@@ -1,6 +1,11 @@
1
1
  <template>
2
2
  <div class='row'>
3
- <TablerLabel :label='label' :description='description' :required='required'><slot/></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
  <template v-if='!rows || rows <= 1'>
6
11
  <div class='input-icon'>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tak-ps/vue-tabler",
3
3
  "type": "module",
4
- "version": "3.49.0",
4
+ "version": "3.50.0",
5
5
  "lib": "lib.js",
6
6
  "module": "lib.js",
7
7
  "description": "Tabler UI components for Vue3",