@fiscozen/input 1.0.0-next.0 → 1.0.0-next.1

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/README.md CHANGED
@@ -95,6 +95,7 @@ const amount = ref<number | undefined>(undefined)
95
95
  | `name` | `string` | - | Native name attribute for form submission and identification |
96
96
  | `readonly` | `boolean` | `false` | Native readonly attribute. Prevents user input while keeping field focusable |
97
97
  | `maxlength` | `number` | - | Native maxlength attribute. Limits maximum number of characters |
98
+ | `autocomplete` | `boolean` | `false` | Native autocomplete attribute. Controls browser autocomplete and suggestions. When false, sets autocomplete="off" to disable browser autocomplete |
98
99
  | `rightIconClass` | `string` | - | Additional CSS classes applied to right icon container |
99
100
  | `leftIconClass` | `string` | - | Additional CSS classes applied to left icon container |
100
101