@fy-/fws-vue 1.0.5 → 1.0.8

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.
@@ -103,6 +103,9 @@ onMounted(() => {
103
103
  autohide: true,
104
104
  ...props.dpOptions,
105
105
  });
106
+ inputRef.value.addEventListener("changeDate", (e: any) => {
107
+ model.value = e.detail.date;
108
+ });
106
109
  }
107
110
  });
108
111
  </script>
@@ -177,7 +180,7 @@ onMounted(() => {
177
180
  class="block mb-2 text-sm font-medium text-fv-neutral-900 dark:text-white"
178
181
  >{{ label ? label : placeholder }}
179
182
  </label>
180
- <div class="relative max-w-sm">
183
+ <div class="relative">
181
184
  <div
182
185
  class="absolute inset-y-0 start-0 flex items-center ps-3.5 pointer-events-none"
183
186
  >
@@ -201,8 +204,6 @@ onMounted(() => {
201
204
  :disabled="disabled"
202
205
  :aria-describedby="help ? `${id}-help` : id"
203
206
  :required="req"
204
- @focus="handleFocus"
205
- @blur="handleBlur"
206
207
  v-model="model"
207
208
  ref="inputRef"
208
209
  />
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "1.0.5",
3
+ "version": "1.0.8",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {