mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(Field): add aria-labelledby for a11y (#9883)
* feat(Field): add aria-labelledby for a11y * fix: improve labelledby * docs: update
This commit is contained in:
parent
3a56703cb0
commit
c1bdba5213
@ -6,30 +6,38 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<div class="van-address-edit__fields">
|
<div class="van-address-edit__fields">
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Name
|
Name
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Name"
|
placeholder="Name"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Phone
|
Phone
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="tel"
|
<input type="tel"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Phone"
|
placeholder="Phone"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -39,16 +47,20 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
tabindex="0"
|
tabindex="0"
|
||||||
>
|
>
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Area
|
Area
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
readonly
|
readonly
|
||||||
placeholder="Area"
|
placeholder="Area"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -57,15 +69,19 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field van-address-edit-detail">
|
<div class="van-cell van-field van-address-edit-detail">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Address
|
Address
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<textarea rows="1"
|
<textarea id="van-field-input"
|
||||||
|
rows="1"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Address"
|
placeholder="Address"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
style="height: auto;"
|
style="height: auto;"
|
||||||
>
|
>
|
||||||
</textarea>
|
</textarea>
|
||||||
@ -74,15 +90,19 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Postal
|
Postal
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="tel"
|
<input type="tel"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Postal"
|
placeholder="Postal"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -11,30 +11,38 @@ exports[`should render AddressEdit correctly 1`] = `
|
|||||||
<div class="van-address-edit__fields">
|
<div class="van-address-edit__fields">
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Name
|
Name
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Name"
|
placeholder="Name"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Phone
|
Phone
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="tel"
|
<input type="tel"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Phone"
|
placeholder="Phone"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -44,16 +52,20 @@ exports[`should render AddressEdit correctly 1`] = `
|
|||||||
tabindex="0"
|
tabindex="0"
|
||||||
>
|
>
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Area
|
Area
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
readonly
|
readonly
|
||||||
placeholder="Area"
|
placeholder="Area"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -62,15 +74,19 @@ exports[`should render AddressEdit correctly 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field van-address-edit-detail">
|
<div class="van-cell van-field van-address-edit-detail">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Address
|
Address
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<textarea rows="1"
|
<textarea id="van-field-input"
|
||||||
|
rows="1"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Address"
|
placeholder="Address"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</textarea>
|
</textarea>
|
||||||
</div>
|
</div>
|
||||||
@ -96,30 +112,38 @@ exports[`should render AddressEdit with props correctly 1`] = `
|
|||||||
<div class="van-address-edit__fields">
|
<div class="van-address-edit__fields">
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Name
|
Name
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Name"
|
placeholder="Name"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Phone
|
Phone
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="tel"
|
<input type="tel"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Phone"
|
placeholder="Phone"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -129,16 +153,20 @@ exports[`should render AddressEdit with props correctly 1`] = `
|
|||||||
tabindex="0"
|
tabindex="0"
|
||||||
>
|
>
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Area
|
Area
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
readonly
|
readonly
|
||||||
placeholder="Area"
|
placeholder="Area"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -147,15 +175,19 @@ exports[`should render AddressEdit with props correctly 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field van-address-edit-detail">
|
<div class="van-cell van-field van-address-edit-detail">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Address
|
Address
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<textarea rows="1"
|
<textarea id="van-field-input"
|
||||||
|
rows="1"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Address"
|
placeholder="Address"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</textarea>
|
</textarea>
|
||||||
</div>
|
</div>
|
||||||
@ -163,15 +195,19 @@ exports[`should render AddressEdit with props correctly 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Postal
|
Postal
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="tel"
|
<input type="tel"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Postal"
|
placeholder="Postal"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -209,15 +245,19 @@ exports[`should render AddressEdit with props correctly 1`] = `
|
|||||||
exports[`should valid address detail and render error message correctly 1`] = `
|
exports[`should valid address detail and render error message correctly 1`] = `
|
||||||
<div class="van-cell van-field van-address-edit-detail">
|
<div class="van-cell van-field van-address-edit-detail">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Address
|
Address
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<textarea rows="1"
|
<textarea id="van-field-input"
|
||||||
|
rows="1"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Address"
|
placeholder="Address"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
style="height: auto;"
|
style="height: auto;"
|
||||||
>
|
>
|
||||||
</textarea>
|
</textarea>
|
||||||
@ -235,16 +275,20 @@ exports[`should valid area code and render error message correctly 1`] = `
|
|||||||
tabindex="0"
|
tabindex="0"
|
||||||
>
|
>
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Area
|
Area
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
readonly
|
readonly
|
||||||
placeholder="Area"
|
placeholder="Area"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-field__error-message">
|
<div class="van-field__error-message">
|
||||||
@ -259,15 +303,19 @@ exports[`should valid area code and render error message correctly 1`] = `
|
|||||||
exports[`should valid name and render error message correctly 1`] = `
|
exports[`should valid name and render error message correctly 1`] = `
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Name
|
Name
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Name"
|
placeholder="Name"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-field__error-message">
|
<div class="van-field__error-message">
|
||||||
@ -280,15 +328,19 @@ exports[`should valid name and render error message correctly 1`] = `
|
|||||||
exports[`should valid postal code and render error message correctly 1`] = `
|
exports[`should valid postal code and render error message correctly 1`] = `
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Postal
|
Postal
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="tel"
|
<input type="tel"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Postal"
|
placeholder="Postal"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-field__error-message">
|
<div class="van-field__error-message">
|
||||||
@ -301,15 +353,19 @@ exports[`should valid postal code and render error message correctly 1`] = `
|
|||||||
exports[`should valid tel and render error message correctly 1`] = `
|
exports[`should valid tel and render error message correctly 1`] = `
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Phone
|
Phone
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="tel"
|
<input type="tel"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Phone"
|
placeholder="Phone"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-field__error-message">
|
<div class="van-field__error-message">
|
||||||
|
@ -7,16 +7,20 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
tabindex="0"
|
tabindex="0"
|
||||||
>
|
>
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Area
|
Area
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
readonly
|
readonly
|
||||||
placeholder="Select Area"
|
placeholder="Select Area"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -30,16 +34,20 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
tabindex="0"
|
tabindex="0"
|
||||||
>
|
>
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Area
|
Area
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
readonly
|
readonly
|
||||||
placeholder="Select Area"
|
placeholder="Select Area"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -53,16 +61,20 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
tabindex="0"
|
tabindex="0"
|
||||||
>
|
>
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Area
|
Area
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
readonly
|
readonly
|
||||||
placeholder="Select Area"
|
placeholder="Select Area"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -76,16 +88,20 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
tabindex="0"
|
tabindex="0"
|
||||||
>
|
>
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Area
|
Area
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
readonly
|
readonly
|
||||||
placeholder="Select Area"
|
placeholder="Select Area"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -99,16 +115,20 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
tabindex="0"
|
tabindex="0"
|
||||||
>
|
>
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Area
|
Area
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
readonly
|
readonly
|
||||||
placeholder="Select Area"
|
placeholder="Select Area"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -5,7 +5,9 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<form class="van-form">
|
<form class="van-form">
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Rate
|
Rate
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@ -75,7 +77,9 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Slider
|
Slider
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@ -123,7 +127,9 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<form class="van-form">
|
<form class="van-form">
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Rate
|
Rate
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@ -193,7 +199,9 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Slider
|
Slider
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
@ -6,30 +6,38 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<div class="van-contact-edit__fields">
|
<div class="van-contact-edit__fields">
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Name
|
Name
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Name"
|
placeholder="Name"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Phone
|
Phone
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="tel"
|
<input type="tel"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Phone"
|
placeholder="Phone"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -7,6 +7,7 @@ exports[`should be the sames as the last snapshot when render coupon list 1`] =
|
|||||||
<div class="van-cell__value van-cell__value--alone van-field__value">
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Coupon code"
|
placeholder="Coupon code"
|
||||||
>
|
>
|
||||||
@ -298,6 +299,7 @@ exports[`should have two "van-coupon-list__empty" classes when render coupon lis
|
|||||||
<div class="van-cell__value van-cell__value--alone van-field__value">
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Coupon code"
|
placeholder="Coupon code"
|
||||||
>
|
>
|
||||||
@ -409,6 +411,7 @@ exports[`should render list-footer slot correctly 1`] = `
|
|||||||
<div class="van-cell__value van-cell__value--alone van-field__value">
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Coupon code"
|
placeholder="Coupon code"
|
||||||
>
|
>
|
||||||
@ -522,6 +525,7 @@ exports[`should use custom src when using empty-image prop 1`] = `
|
|||||||
<div class="van-cell__value van-cell__value--alone van-field__value">
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Coupon code"
|
placeholder="Coupon code"
|
||||||
>
|
>
|
||||||
|
@ -39,6 +39,7 @@ import { cellSharedProps } from '../cell/Cell';
|
|||||||
|
|
||||||
// Composables
|
// Composables
|
||||||
import { CUSTOM_FIELD_INJECTION_KEY, useParent } from '@vant/use';
|
import { CUSTOM_FIELD_INJECTION_KEY, useParent } from '@vant/use';
|
||||||
|
import { useId } from '../composables/use-id';
|
||||||
import { useExpose } from '../composables/use-expose';
|
import { useExpose } from '../composables/use-expose';
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
@ -128,6 +129,7 @@ export default defineComponent({
|
|||||||
],
|
],
|
||||||
|
|
||||||
setup(props, { emit, slots }) {
|
setup(props, { emit, slots }) {
|
||||||
|
const id = useId();
|
||||||
const state = reactive({
|
const state = reactive({
|
||||||
focused: false,
|
focused: false,
|
||||||
validateFailed: false,
|
validateFailed: false,
|
||||||
@ -376,6 +378,8 @@ export default defineComponent({
|
|||||||
emit('keypress', event);
|
emit('keypress', event);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const getInputId = () => props.id || `${id}-input`;
|
||||||
|
|
||||||
const renderInput = () => {
|
const renderInput = () => {
|
||||||
const controlClass = bem('control', [
|
const controlClass = bem('control', [
|
||||||
getProp('inputAlign'),
|
getProp('inputAlign'),
|
||||||
@ -395,7 +399,7 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
|
|
||||||
const inputAttrs = {
|
const inputAttrs = {
|
||||||
id: props.id,
|
id: getInputId(),
|
||||||
ref: inputRef,
|
ref: inputRef,
|
||||||
name: props.name,
|
name: props.name,
|
||||||
rows: props.rows !== undefined ? +props.rows : undefined,
|
rows: props.rows !== undefined ? +props.rows : undefined,
|
||||||
@ -406,6 +410,7 @@ export default defineComponent({
|
|||||||
autofocus: props.autofocus,
|
autofocus: props.autofocus,
|
||||||
placeholder: props.placeholder,
|
placeholder: props.placeholder,
|
||||||
autocomplete: props.autocomplete,
|
autocomplete: props.autocomplete,
|
||||||
|
'aria-labelledby': props.label ? `${id}-label` : undefined,
|
||||||
onBlur,
|
onBlur,
|
||||||
onFocus,
|
onFocus,
|
||||||
onInput,
|
onInput,
|
||||||
@ -491,7 +496,11 @@ export default defineComponent({
|
|||||||
return [slots.label(), colon];
|
return [slots.label(), colon];
|
||||||
}
|
}
|
||||||
if (props.label) {
|
if (props.label) {
|
||||||
return <label for={props.id}>{props.label + colon}</label>;
|
return (
|
||||||
|
<label id={`${id}-label`} for={getInputId()}>
|
||||||
|
{props.label + colon}
|
||||||
|
</label>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -250,7 +250,7 @@ Use `input-align` prop to align the input value.
|
|||||||
| v-model | Input value | _number \| string_ | - |
|
| v-model | Input value | _number \| string_ | - |
|
||||||
| label | Left side label | _string_ | - |
|
| label | Left side label | _string_ | - |
|
||||||
| name | As the identifier when submitting the form | _string_ | - |
|
| name | As the identifier when submitting the form | _string_ | - |
|
||||||
| id `v3.2.2` | Input id, the for attribute of the label also will be set | _string_ | - |
|
| id `v3.2.2` | Input id, the for attribute of the label also will be set | _string_ | `van-field-n-input` |
|
||||||
| type | Input type, can be set to `tel` `digit`<br>`number` `textarea` `password` | _string_ | `text` |
|
| type | Input type, can be set to `tel` `digit`<br>`number` `textarea` `password` | _string_ | `text` |
|
||||||
| size | Size,can be set to `large` | _string_ | - |
|
| size | Size,can be set to `large` | _string_ | - |
|
||||||
| maxlength | Max length of value | _number \| string_ | - |
|
| maxlength | Max length of value | _number \| string_ | - |
|
||||||
|
@ -269,7 +269,7 @@ export default {
|
|||||||
| v-model | 当前输入的值 | _number \| string_ | - |
|
| v-model | 当前输入的值 | _number \| string_ | - |
|
||||||
| label | 输入框左侧文本 | _string_ | - |
|
| label | 输入框左侧文本 | _string_ | - |
|
||||||
| name | 名称,作为提交表单时的标识符 | _string_ | - |
|
| name | 名称,作为提交表单时的标识符 | _string_ | - |
|
||||||
| id `v3.2.2` | 输入框 id,同时会设置 label 的 for 属性 | _string_ | - |
|
| id `v3.2.2` | 输入框 id,同时会设置 label 的 for 属性 | _string_ | `van-field-n-input` |
|
||||||
| type | 输入框类型, 可选值为 `tel` `digit`<br>`number` `textarea` `password` 等 | _string_ | `text` |
|
| type | 输入框类型, 可选值为 `tel` `digit`<br>`number` `textarea` `password` 等 | _string_ | `text` |
|
||||||
| size | 大小,可选值为 `large` | _string_ | - |
|
| size | 大小,可选值为 `large` | _string_ | - |
|
||||||
| maxlength | 输入的最大字符数 | _number \| string_ | - |
|
| maxlength | 输入的最大字符数 | _number \| string_ | - |
|
||||||
|
@ -5,15 +5,19 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<div class="van-cell-group van-cell-group--inset">
|
<div class="van-cell-group van-cell-group--inset">
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Label
|
Label
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Text"
|
placeholder="Text"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -24,37 +28,47 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<div class="van-cell-group van-cell-group--inset">
|
<div class="van-cell-group van-cell-group--inset">
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Text
|
Text
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Text"
|
placeholder="Text"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Phone
|
Phone
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="tel"
|
<input type="tel"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Phone"
|
placeholder="Phone"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Digit
|
Digit
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@ -62,15 +76,19 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="tel"
|
<input type="tel"
|
||||||
inputmode="numeric"
|
inputmode="numeric"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Digit"
|
placeholder="Digit"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Number
|
Number
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@ -78,23 +96,29 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
inputmode="decimal"
|
inputmode="decimal"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Number"
|
placeholder="Number"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Password
|
Password
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="password"
|
<input type="password"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Password"
|
placeholder="Password"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -105,30 +129,38 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<div class="van-cell-group van-cell-group--inset">
|
<div class="van-cell-group van-cell-group--inset">
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Text
|
Text
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
readonly
|
readonly
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field van-field--disabled">
|
<div class="van-cell van-field van-field--disabled">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Text
|
Text
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
disabled
|
disabled
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -143,15 +175,19 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</i>
|
</i>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Text
|
Text
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Show Icon"
|
placeholder="Show Icon"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
<div class="van-field__right-icon">
|
<div class="van-field__right-icon">
|
||||||
<i class="van-badge__wrapper van-icon van-icon-warning-o">
|
<i class="van-badge__wrapper van-icon van-icon-warning-o">
|
||||||
@ -166,15 +202,19 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</i>
|
</i>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Text
|
Text
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Show Clear Icon"
|
placeholder="Show Clear Icon"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -185,30 +225,38 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<div class="van-cell-group van-cell-group--inset">
|
<div class="van-cell-group van-cell-group--inset">
|
||||||
<div class="van-cell van-field van-field--error">
|
<div class="van-cell van-field van-field--error">
|
||||||
<div class="van-cell__title van-field__label van-field__label--required">
|
<div class="van-cell__title van-field__label van-field__label--required">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Username
|
Username
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control van-field__control--error"
|
class="van-field__control van-field__control--error"
|
||||||
placeholder="Username"
|
placeholder="Username"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label van-field__label--required">
|
<div class="van-cell__title van-field__label van-field__label--required">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Phone
|
Phone
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Phone"
|
placeholder="Phone"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-field__error-message">
|
<div class="van-field__error-message">
|
||||||
@ -222,15 +270,19 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<div class="van-cell-group van-cell-group--inset">
|
<div class="van-cell-group van-cell-group--inset">
|
||||||
<div class="van-cell van-cell--center van-field">
|
<div class="van-cell van-cell--center van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
SMS
|
SMS
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="SMS"
|
placeholder="SMS"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
<div class="van-field__button">
|
<div class="van-field__button">
|
||||||
<button type="button"
|
<button type="button"
|
||||||
@ -252,30 +304,38 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<div class="van-cell-group van-cell-group--inset">
|
<div class="van-cell-group van-cell-group--inset">
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Text
|
Text
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Format On Change"
|
placeholder="Format On Change"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Text
|
Text
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Format On Blur"
|
placeholder="Format On Blur"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -287,7 +347,8 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__value van-cell__value--alone van-field__value">
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<textarea rows="1"
|
<textarea id="van-field-input"
|
||||||
|
rows="1"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Message"
|
placeholder="Message"
|
||||||
style="height: auto;"
|
style="height: auto;"
|
||||||
@ -302,15 +363,19 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<div class="van-cell-group van-cell-group--inset">
|
<div class="van-cell-group van-cell-group--inset">
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Message
|
Message
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<textarea rows="2"
|
<textarea id="van-field-input"
|
||||||
|
rows="2"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Message"
|
placeholder="Message"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
style="height: auto;"
|
style="height: auto;"
|
||||||
>
|
>
|
||||||
</textarea>
|
</textarea>
|
||||||
@ -329,15 +394,19 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<div class="van-cell-group van-cell-group--inset">
|
<div class="van-cell-group van-cell-group--inset">
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Text
|
Text
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control van-field__control--right"
|
class="van-field__control van-field__control--right"
|
||||||
placeholder="Input Align Right"
|
placeholder="Input Align Right"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -7,7 +7,9 @@ exports[`should change clear icon when using clear-icon prop 1`] = `
|
|||||||
|
|
||||||
exports[`should render colon when using colon prop 1`] = `
|
exports[`should render colon when using colon prop 1`] = `
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
foo:
|
foo:
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@ -24,6 +26,7 @@ exports[`should render extra slot correctly 1`] = `
|
|||||||
<div class="van-cell__value van-cell__value--alone van-field__value">
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
@ -48,7 +51,8 @@ exports[`should render textarea when type is textarea 1`] = `
|
|||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__value van-cell__value--alone van-field__value">
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<textarea class="van-field__control"
|
<textarea id="van-field-input"
|
||||||
|
class="van-field__control"
|
||||||
style="height: auto;"
|
style="height: auto;"
|
||||||
>
|
>
|
||||||
</textarea>
|
</textarea>
|
||||||
@ -62,6 +66,7 @@ exports[`should render word limit correctly 1`] = `
|
|||||||
<div class="van-cell__value van-cell__value--alone van-field__value">
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
@ -80,6 +85,7 @@ exports[`should render word limit correctly when modelValue is null 1`] = `
|
|||||||
<div class="van-cell__value van-cell__value--alone van-field__value">
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
@ -98,6 +104,7 @@ exports[`should render word limit correctly when modelValue is undefined 1`] = `
|
|||||||
<div class="van-cell__value van-cell__value--alone van-field__value">
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
|
@ -6,32 +6,40 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<div class="van-cell-group van-cell-group--inset">
|
<div class="van-cell-group van-cell-group--inset">
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Username
|
Username
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
name="username"
|
name="username"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Username"
|
placeholder="Username"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Password
|
Password
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="password"
|
<input type="password"
|
||||||
|
id="van-field-input"
|
||||||
name="password"
|
name="password"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Password"
|
placeholder="Password"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -55,64 +63,80 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<div class="van-cell-group van-cell-group--inset">
|
<div class="van-cell-group van-cell-group--inset">
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Label
|
Label
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
name="pattern"
|
name="pattern"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Use pattern"
|
placeholder="Use pattern"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Label
|
Label
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
name="validator"
|
name="validator"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Use validator"
|
placeholder="Use validator"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Label
|
Label
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
name="validatorMessage"
|
name="validatorMessage"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Use validator to return message"
|
placeholder="Use validator to return message"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Label
|
Label
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
name="asyncValidator"
|
name="asyncValidator"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Use async validator"
|
placeholder="Use async validator"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -136,7 +160,9 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<div class="van-cell-group van-cell-group--inset">
|
<div class="van-cell-group van-cell-group--inset">
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Switch
|
Switch
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@ -157,7 +183,9 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Checkbox
|
Checkbox
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@ -180,7 +208,9 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Checkbox Group
|
Checkbox Group
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@ -221,7 +251,9 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Radio
|
Radio
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@ -264,7 +296,9 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Stepper
|
Stepper
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@ -298,7 +332,9 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Rate
|
Rate
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@ -368,7 +404,9 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Slider
|
Slider
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@ -398,7 +436,9 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Uploader
|
Uploader
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@ -442,17 +482,21 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
tabindex="0"
|
tabindex="0"
|
||||||
>
|
>
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Picker
|
Picker
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
name="picker"
|
name="picker"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
readonly
|
readonly
|
||||||
placeholder="Select city"
|
placeholder="Select city"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -464,17 +508,21 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
tabindex="0"
|
tabindex="0"
|
||||||
>
|
>
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Datetime Picker
|
Datetime Picker
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
name="datetimePicker"
|
name="datetimePicker"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
readonly
|
readonly
|
||||||
placeholder="Select time"
|
placeholder="Select time"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -486,17 +534,21 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
tabindex="0"
|
tabindex="0"
|
||||||
>
|
>
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Area Picker
|
Area Picker
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
name="area"
|
name="area"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
readonly
|
readonly
|
||||||
placeholder="Select area"
|
placeholder="Select area"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -508,17 +560,21 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
tabindex="0"
|
tabindex="0"
|
||||||
>
|
>
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Calendar
|
Calendar
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
name="calendar"
|
name="calendar"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
readonly
|
readonly
|
||||||
placeholder="Select date"
|
placeholder="Select date"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -6,6 +6,7 @@ exports[`should emit failed event when validating failed 1`] = `
|
|||||||
<div class="van-cell__value van-cell__value--alone van-field__value">
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
name="A"
|
name="A"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
>
|
>
|
||||||
@ -19,6 +20,7 @@ exports[`should emit failed event when validating failed 1`] = `
|
|||||||
<div class="van-cell__value van-cell__value--alone van-field__value">
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
name="B"
|
name="B"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
>
|
>
|
||||||
|
@ -4,14 +4,18 @@ exports[`should render colon when using colon prop 1`] = `
|
|||||||
<form class="van-form">
|
<form class="van-form">
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Label:
|
Label:
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -23,6 +27,7 @@ exports[`should render colon when using colon prop 1`] = `
|
|||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
@ -37,6 +42,7 @@ exports[`should render error-message-align prop correctly 1`] = `
|
|||||||
<div class="van-cell__value van-cell__value--alone van-field__value">
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
@ -54,6 +60,7 @@ exports[`should render input-align prop correctly 1`] = `
|
|||||||
<div class="van-cell__value van-cell__value--alone van-field__value">
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control van-field__control--right"
|
class="van-field__control van-field__control--right"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
@ -76,28 +83,36 @@ exports[`should render label-align prop correctly 1`] = `
|
|||||||
<form class="van-form">
|
<form class="van-form">
|
||||||
<div class="van-cell van-field van-field--label-right">
|
<div class="van-cell van-field van-field--label-right">
|
||||||
<div class="van-cell__title van-field__label van-field__label--right">
|
<div class="van-cell__title van-field__label van-field__label--right">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Label
|
Label
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell van-field van-field--label-center">
|
<div class="van-cell van-field van-field--label-center">
|
||||||
<div class="van-cell__title van-field__label van-field__label--center">
|
<div class="van-cell__title van-field__label van-field__label--center">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Label
|
Label
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -111,14 +126,18 @@ exports[`should render label-width prop correctly 1`] = `
|
|||||||
<div class="van-cell__title van-field__label"
|
<div class="van-cell__title van-field__label"
|
||||||
style="width: 5rem;"
|
style="width: 5rem;"
|
||||||
>
|
>
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Label
|
Label
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -127,14 +146,18 @@ exports[`should render label-width prop correctly 1`] = `
|
|||||||
<div class="van-cell__title van-field__label"
|
<div class="van-cell__title van-field__label"
|
||||||
style="width: 10vw;"
|
style="width: 10vw;"
|
||||||
>
|
>
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Label
|
Label
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -148,6 +171,7 @@ exports[`should validate first field when using validate-first prop 1`] = `
|
|||||||
<div class="van-cell__value van-cell__value--alone van-field__value">
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
name="A"
|
name="A"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
>
|
>
|
||||||
@ -161,6 +185,7 @@ exports[`should validate first field when using validate-first prop 1`] = `
|
|||||||
<div class="van-cell__value van-cell__value--alone van-field__value">
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
name="B"
|
name="B"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
>
|
>
|
||||||
|
@ -79,16 +79,20 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
tabindex="0"
|
tabindex="0"
|
||||||
>
|
>
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Bind Value
|
Bind Value
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
readonly
|
readonly
|
||||||
placeholder="Click To Input"
|
placeholder="Click To Input"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -679,16 +679,20 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
tabindex="0"
|
tabindex="0"
|
||||||
>
|
>
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
City
|
City
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
readonly
|
readonly
|
||||||
placeholder="Choose City"
|
placeholder="Choose City"
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -31,16 +31,20 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
tabindex="0"
|
tabindex="0"
|
||||||
>
|
>
|
||||||
<div class="van-cell__title van-field__label">
|
<div class="van-cell__title van-field__label">
|
||||||
<label>
|
<label id="van-field-label"
|
||||||
|
for="van-field-input"
|
||||||
|
>
|
||||||
Placement
|
Placement
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-cell__value van-field__value">
|
<div class="van-cell__value van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
|
id="van-field-input"
|
||||||
name="picker"
|
name="picker"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
readonly
|
readonly
|
||||||
|
aria-labelledby="van-field-label"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -12,6 +12,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<div class="van-cell__value van-cell__value--alone van-field__value">
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="search"
|
<input type="search"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Placeholder"
|
placeholder="Placeholder"
|
||||||
>
|
>
|
||||||
@ -33,6 +34,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<div class="van-cell__value van-cell__value--alone van-field__value">
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="search"
|
<input type="search"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Placeholder"
|
placeholder="Placeholder"
|
||||||
>
|
>
|
||||||
@ -60,6 +62,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<div class="van-cell__value van-cell__value--alone van-field__value">
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="search"
|
<input type="search"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control van-field__control--center"
|
class="van-field__control van-field__control--center"
|
||||||
placeholder="Placeholder"
|
placeholder="Placeholder"
|
||||||
>
|
>
|
||||||
@ -80,6 +83,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<div class="van-cell__value van-cell__value--alone van-field__value">
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="search"
|
<input type="search"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
disabled
|
disabled
|
||||||
placeholder="Placeholder"
|
placeholder="Placeholder"
|
||||||
@ -103,6 +107,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<div class="van-cell__value van-cell__value--alone van-field__value">
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="search"
|
<input type="search"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Placeholder"
|
placeholder="Placeholder"
|
||||||
>
|
>
|
||||||
@ -126,6 +131,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<div class="van-cell__value van-cell__value--alone van-field__value">
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="search"
|
<input type="search"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
placeholder="Placeholder"
|
placeholder="Placeholder"
|
||||||
>
|
>
|
||||||
|
@ -34,6 +34,7 @@ exports[`should render left slot correctly 1`] = `
|
|||||||
<div class="van-cell__value van-cell__value--alone van-field__value">
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
<div class="van-field__body">
|
<div class="van-field__body">
|
||||||
<input type="search"
|
<input type="search"
|
||||||
|
id="van-field-input"
|
||||||
class="van-field__control"
|
class="van-field__control"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user