@tak-ps/vue-tabler 3.50.0 → 3.51.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.51.0
14
+
15
+ - :bug: Fix broken required (`*`) on input forms ow that we don't use `form-label` due to it's margins
16
+
13
17
  ### v3.50.0
14
18
 
15
19
  - :rocket: Show label conditionally to avoid 4px margin on top of input
@@ -8,11 +8,10 @@
8
8
  <div
9
9
  v-if='label'
10
10
  class="px-2"
11
- v-text='label'
12
- :class='{
13
- "required": required
14
- }'
15
- ></div>
11
+ >
12
+ <span v-text='label'/>
13
+ <span v-if='required' class='text-red mx-1'>*</span>
14
+ </div>
16
15
  </div>
17
16
  <div class='ms-auto align-self-center'>
18
17
  <slot/>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tak-ps/vue-tabler",
3
3
  "type": "module",
4
- "version": "3.50.0",
4
+ "version": "3.51.0",
5
5
  "lib": "lib.js",
6
6
  "module": "lib.js",
7
7
  "description": "Tabler UI components for Vue3",