@a-vision-software/vue-input-components 1.3.19 → 1.3.20

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a-vision-software/vue-input-components",
3
- "version": "1.3.19",
3
+ "version": "1.3.20",
4
4
  "description": "A collection of reusable Vue 3 input components with TypeScript support",
5
5
  "author": "A-Vision Software",
6
6
  "license": "MIT",
@@ -177,7 +177,7 @@ const handleInput = (event: Event) => {
177
177
  const value = (event.target as HTMLTextAreaElement).value
178
178
  emit('update:modelValue', value)
179
179
  debounceAutosave(value)
180
- if (props.type === 'text' && (event.target as HTMLTextAreaElement).tagName === 'TEXTAREA') {
180
+ if (props.type === 'textarea' && (event.target as HTMLTextAreaElement).tagName === 'TEXTAREA') {
181
181
  adjustHeight(event.target as HTMLTextAreaElement)
182
182
  }
183
183
  }