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
Update form field implementation
https://www.figma.com/design/4A0SIso9uJ7HGKdW9GKMGr/Daffodil-Design-System?node-id=664-12082
<input type="date"> <input type="datetime-local"> <input type="email"> <input type="month"> <input type="number"> <input type="password"> <input type="search"> <input type="tel"> <input type="text"> <input type="time"> <input type="url"> <input type="week">
The template API of daff-form-field should look something like:
daff-form-field
<form> <daff-form-field> <label for="grace">Name</label> <input type="text" id="grace" placeholder="Test"/> <div class="error">Error message goes here.</div> </daff-form-field> <daff-form-field> <label for="grace">Name</label> <select> <option></option> </select> <div class="select-arrow">:down_arrow:</div> <div class="error">Error message goes here.</div> </daff-form-field> <daff-form-field> <label for="grace">Name</label> <textarea id="grace"></textarea> <div class="select-arrow">:down_arrow:</div> <div class="error">Error message goes here.</div> </daff-form-field> <button type="submit">Submit</button> </form>
As a user, I should be able to fill out fields in a form.
Daffodil version: X.Y.Z Angular version: X.Y.Z For Tooling issues: - Node version: XX - Platform: Others:
The text was updated successfully, but these errors were encountered:
xelaint
Successfully merging a pull request may close this issue.
💡 Feature request
Feature Name
Update form field implementation
The Desired Behavior
https://www.figma.com/design/4A0SIso9uJ7HGKdW9GKMGr/Daffodil-Design-System?node-id=664-12082
The template API of
daff-form-field
should look something like:Your Use Case
As a user, I should be able to fill out fields in a form.
Prior Work
Environment
The text was updated successfully, but these errors were encountered: