@tak-ps/vue-tabler 3.75.0 → 3.76.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.76.0
14
+
15
+ - :tada: Add focus event on Input component
16
+
13
17
  ### v3.75.0
14
18
 
15
19
  - :tada: Teleport `TablerModal` to body by default
@@ -48,6 +48,7 @@
48
48
  class='form-control'
49
49
  :placeholder='placeholder||label||""'
50
50
  @keyup.enter='$emit("submit")'
51
+ @focus='$emit("focus")'
51
52
  @blur='$emit("blur")'
52
53
  >
53
54
  <span
@@ -82,6 +83,7 @@
82
83
  class='form-control'
83
84
  :placeholder='placeholder||label||""'
84
85
  @keyup.enter='$emit("submit")'
86
+ @focus='$emit("focus")'
85
87
  @blur='$emit("blur")'
86
88
  />
87
89
  <div
@@ -158,7 +160,7 @@ export default {
158
160
  placeholder: String,
159
161
  error: String,
160
162
  },
161
- emits: ['blur', 'submit', 'update:modelValue'],
163
+ emits: ['blur', 'focus', 'submit', 'update:modelValue'],
162
164
  data: function() {
163
165
  return {
164
166
  help: false,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tak-ps/vue-tabler",
3
3
  "type": "module",
4
- "version": "3.75.0",
4
+ "version": "3.76.0",
5
5
  "lib": "lib.js",
6
6
  "module": "lib.js",
7
7
  "description": "Tabler UI components for Vue3",