feat(input): separate label info tooltips from description text across input components

This commit is contained in:
2026-04-12 18:50:54 +00:00
parent 961b811b7a
commit 13ba5670f0
35 changed files with 128 additions and 128 deletions

View File

@@ -92,7 +92,7 @@ export const demoFunc = () => html`
.required=${true}
key="firstName"
label="First Name"
.description=${'Your given name'}
.infoText=${'Your given name'}
></dees-input-text>
<dees-input-text
@@ -105,7 +105,7 @@ export const demoFunc = () => html`
.required=${true}
key="email"
label="Email Address"
.description=${'We will use this to contact you'}
.infoText=${'We will use this to contact you'}
></dees-input-text>
<dees-input-dropdown
@@ -126,7 +126,7 @@ export const demoFunc = () => html`
key="password"
label="Password"
isPasswordBool
.description=${'Minimum 8 characters'}
.infoText=${'Minimum 8 characters'}
></dees-input-text>
<dees-input-checkbox
@@ -300,7 +300,7 @@ export const demoFunc = () => html`
<dees-input-fileupload
key="documents"
.label=${'Upload Documents'}
.description=${'PDF, DOC, or DOCX files up to 10MB'}
.infoText=${'PDF, DOC, or DOCX files up to 10MB'}
></dees-input-fileupload>
<dees-form-submit>Submit Application</dees-form-submit>