This repository was archived by the owner on Mar 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
auto-complete off #334
Labels
Comments
jordanjones243
added a commit
that referenced
this issue
Sep 24, 2024
Merged
6 tasks
jordanjones243
added a commit
that referenced
this issue
Sep 30, 2024
jordanjones243
added a commit
that referenced
this issue
Sep 30, 2024
blackfalcon
pushed a commit
that referenced
this issue
Sep 30, 2024
# [4.0.0-beta.1](v3.1.0-beta.3...v4.0.0-beta.1) (2024-09-30) ### Bug Fixes * add file extensions for SSR support ([d91e0e1](d91e0e1)) * realign text and icons on non-bordered inputs [#333](#333) ([d1c1df4](d1c1df4)) * remove private default of attribute ([03e9747](03e9747)) * resolve color theming issues ([0fa4568](0fa4568)) * **theming:** resolve minor theming issues [#296](#296) ([03c3fae](03c3fae)) ### Features * **autocomplete:** add html5 autocomplete functionality [#334](#334) ([df7dd3a](df7dd3a)) ### Performance Improvements * refactor custom component registration config ([3ec2599](3ec2599)) * update dependencies ([d65d9f3](d65d9f3)) ### BREAKING CHANGES * trigger major release for color theming support #296
jordanjones243
added a commit
that referenced
this issue
Sep 30, 2024
jordanjones243
pushed a commit
that referenced
this issue
Sep 30, 2024
# [4.0.0-beta.1](v3.1.0-beta.3...v4.0.0-beta.1) (2024-09-30) ### Bug Fixes * add file extensions for SSR support ([d91e0e1](d91e0e1)) * realign text and icons on non-bordered inputs [#333](#333) ([d1c1df4](d1c1df4)) * remove private default of attribute ([03e9747](03e9747)) * resolve color theming issues ([0fa4568](0fa4568)) * **theming:** resolve minor theming issues [#296](#296) ([03c3fae](03c3fae)) ### Features * **autocomplete:** add html5 autocomplete functionality [#334](#334) ([df7dd3a](df7dd3a)) ### Performance Improvements * refactor custom component registration config ([3ec2599](3ec2599)) * update dependencies ([d65d9f3](d65d9f3)) ### BREAKING CHANGES * trigger major release for color theming support #296
jordanjones243
pushed a commit
that referenced
this issue
Sep 30, 2024
# [4.0.0-beta.1](v3.1.0-beta.3...v4.0.0-beta.1) (2024-09-30) ### Bug Fixes * add file extensions for SSR support ([d91e0e1](d91e0e1)) * realign text and icons on non-bordered inputs [#333](#333) ([d1c1df4](d1c1df4)) * remove private default of attribute ([03e9747](03e9747)) * resolve color theming issues ([0fa4568](0fa4568)) * **theming:** resolve minor theming issues [#296](#296) ([03c3fae](03c3fae)) ### Features * **autocomplete:** add html5 autocomplete functionality [#334](#334) ([df7dd3a](df7dd3a)) ### Performance Improvements * refactor custom component registration config ([3ec2599](3ec2599)) * update dependencies ([d65d9f3](d65d9f3)) ### BREAKING CHANGES * trigger major release for color theming support #296
jordanjones243
pushed a commit
that referenced
this issue
Sep 30, 2024
# [4.0.0-beta.1](v3.1.0-beta.3...v4.0.0-beta.1) (2024-09-30) ### Bug Fixes * add file extensions for SSR support ([d91e0e1](d91e0e1)) * realign text and icons on non-bordered inputs [#333](#333) ([d1c1df4](d1c1df4)) * remove private default of attribute ([03e9747](03e9747)) * resolve color theming issues ([0fa4568](0fa4568)) * **theming:** resolve minor theming issues [#296](#296) ([03c3fae](03c3fae)) ### Features * **autocomplete:** add html5 autocomplete functionality [#334](#334) ([df7dd3a](df7dd3a)) ### Performance Improvements * refactor custom component registration config ([3ec2599](3ec2599)) * update dependencies ([d65d9f3](d65d9f3)) ### BREAKING CHANGES * trigger major release for color theming support #296
jason-capsule42
pushed a commit
that referenced
this issue
Sep 30, 2024
jason-capsule42
pushed a commit
that referenced
this issue
Sep 30, 2024
# [4.0.0-beta.1](v3.1.0-beta.3...v4.0.0-beta.1) (2024-09-30) ### Bug Fixes * add file extensions for SSR support ([d91e0e1](d91e0e1)) * realign text and icons on non-bordered inputs [#333](#333) ([d1c1df4](d1c1df4)) * remove private default of attribute ([03e9747](03e9747)) * resolve color theming issues ([0fa4568](0fa4568)) * **theming:** resolve minor theming issues [#296](#296) ([03c3fae](03c3fae)) ### Features * **autocomplete:** add html5 autocomplete functionality [#334](#334) ([df7dd3a](df7dd3a)) ### Performance Improvements * refactor custom component registration config ([3ec2599](3ec2599)) * update dependencies ([d65d9f3](d65d9f3)) ### BREAKING CHANGES * trigger major release for color theming support #296
blackfalcon
pushed a commit
that referenced
this issue
Sep 30, 2024
# [4.0.0](v3.0.1...v4.0.0) (2024-09-30) ### Bug Fixes * add file extensions for SSR support ([bc39bcc](bc39bcc)) * realign text and icons on non-bordered inputs [#333](#333) ([82006bc](82006bc)) * remove private default of attribute ([3195d96](3195d96)) * resolve color theming issues ([65553a0](65553a0)) * **theming:** resolve minor theming issues [#296](#296) ([7802302](7802302)) ### Features * **autocomplete:** add html5 autocomplete functionality [#334](#334) ([f280e8f](f280e8f)) * refactor color token structure with tier 3 tokens [#296](#296) ([5653863](5653863)) ### Performance Improvements * **button:** use new auro-button flat variant for clear and show password ([2a671d2](2a671d2)) * **deps:** update to latest beta dependencies ([42ecf61](42ecf61)) * **icon:** update to use beta of auro-icon with theme support ([7df7568](7df7568)) * refactor custom component registration config ([89a5f20](89a5f20)) * replace hardcoded styles with tokens ([e9700ee](e9700ee)) * update dependencies ([7645408](7645408)) ### BREAKING CHANGES * trigger major release for color theming support #296
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Is your feature request related to a problem? Please describe.
Support the HTML5 input standard feature
autocomplete
so that we can turn off autofill.Describe the solution you'd like
When
autocomplete="<value>"
is used on auro-input, mirror to the HTML5 input nested in the Shadow DOM.Describe alternatives you've considered
None
Additional context
No response
The text was updated successfully, but these errors were encountered: