We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In v2.x version we need to remove the deprecated fields. You can use the input field with inputType property instead of them.
input
inputType
Deprecated fields:
color Change { type: "color" } to { type: "input", inputType: "color" }
{ type: "color" }
{ type: "input", inputType: "color" }
email Change { type: "email" } to { type: "input", inputType: "email" }
{ type: "email" }
{ type: "input", inputType: "email" }
number Change { type: "number" } to { type: "input", inputType: "number" }
{ type: "number" }
{ type: "input", inputType: "number" }
password Change { type: "password" } to { type: "input", inputType: "password" }
{ type: "password" }
{ type: "input", inputType: "password" }
range Change { type: "range" } to { type: "input", inputType: "range" }
{ type: "range" }
{ type: "input", inputType: "range" }
text Change { type: "text" } to { type: "input", inputType: "text" }
{ type: "text" }
{ type: "input", inputType: "text" }
update docs & readme
The text was updated successfully, but these errors were encountered:
Nice. Will keep things more simple and clear
Sorry, something went wrong.
While I was moving fields around with #121, I also removed the designated fields.
fixed some test after #120
ba4be42
lionel-bijaoui
No branches or pull requests
In v2.x version we need to remove the deprecated fields. You can use the
input
field withinputType
property instead of them.Deprecated fields:
color
Change
{ type: "color" }
to{ type: "input", inputType: "color" }
email
Change
{ type: "email" }
to{ type: "input", inputType: "email" }
number
Change
{ type: "number" }
to{ type: "input", inputType: "number" }
password
Change
{ type: "password" }
to{ type: "input", inputType: "password" }
range
Change
{ type: "range" }
to{ type: "input", inputType: "range" }
text
Change
{ type: "text" }
to{ type: "input", inputType: "text" }
update docs & readme
The text was updated successfully, but these errors were encountered: