@a-vision-software/vue-input-components 1.3.6 → 1.3.7

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.6",
3
+ "version": "1.3.7",
4
4
  "description": "A collection of reusable Vue 3 input components with TypeScript support",
5
5
  "author": "A-Vision Software",
6
6
  "license": "MIT",
@@ -22,4 +22,7 @@ export interface DropdownProps {
22
22
  padding?: string
23
23
  icon?: string
24
24
  iconSize?: 'normal' | 'large'
25
+ error?: string
26
+ required?: boolean
27
+ autosave?: (value: string | string[]) => Promise<void>
25
28
  }