mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(Field): required label css will active when rules contain required (#12376)
* chore: required label css will active when rules contain required * chore: update snapshot
This commit is contained in:
parent
40f67d7e48
commit
d7fc56e3f1
@ -8,7 +8,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
<div class="van-contact-edit__fields">
|
||||
<div class="van-cell van-field">
|
||||
<div
|
||||
class="van-cell__title van-field__label"
|
||||
class="van-cell__title van-field__label van-field__label--required"
|
||||
style
|
||||
>
|
||||
<!--[-->
|
||||
|
@ -5,7 +5,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
<form class="van-form van-contact-edit">
|
||||
<div class="van-contact-edit__fields">
|
||||
<div class="van-cell van-field">
|
||||
<div class="van-cell__title van-field__label">
|
||||
<div class="van-cell__title van-field__label van-field__label--required">
|
||||
<label
|
||||
id="van-field-label"
|
||||
for="van-field-input"
|
||||
|
@ -193,6 +193,10 @@ export default defineComponent({
|
||||
return props.modelValue;
|
||||
});
|
||||
|
||||
const isRequired = computed(() => {
|
||||
return props.rules?.some((rule: FieldRule) => rule.required);
|
||||
});
|
||||
|
||||
const runRules = (rules: FieldRule[]) =>
|
||||
rules.reduce(
|
||||
(promise, rule) =>
|
||||
@ -696,7 +700,10 @@ export default defineComponent({
|
||||
titleStyle={labelStyle.value}
|
||||
valueClass={bem('value')}
|
||||
titleClass={[
|
||||
bem('label', [labelAlign, { required: props.required }]),
|
||||
bem('label', [
|
||||
labelAlign,
|
||||
{ required: isRequired.value || props.required },
|
||||
]),
|
||||
props.labelClass,
|
||||
]}
|
||||
arrowDirection={props.arrowDirection}
|
||||
|
@ -106,7 +106,19 @@ test('should render textarea when type is textarea', async () => {
|
||||
await later();
|
||||
expect(wrapper.html()).toMatchSnapshot();
|
||||
});
|
||||
test('should show required icon when using rules which contian required', async () => {
|
||||
const wrapper = mount(Field, {
|
||||
props: {
|
||||
modelValue: '123',
|
||||
label: '123',
|
||||
rules: [{ required: false }],
|
||||
},
|
||||
});
|
||||
|
||||
expect(wrapper.find('.van-field__label--required').exists()).toBeFalsy();
|
||||
await wrapper.setProps({ rules: [{ required: true }] });
|
||||
expect(wrapper.find('.van-field__label--required').exists()).toBeTruthy();
|
||||
});
|
||||
test('should autosize textarea field', async () => {
|
||||
const wrapper = mount(Field, {
|
||||
props: {
|
||||
|
@ -10,7 +10,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
<!--[-->
|
||||
<div class="van-cell van-field">
|
||||
<div
|
||||
class="van-cell__title van-field__label"
|
||||
class="van-cell__title van-field__label van-field__label--required"
|
||||
style
|
||||
>
|
||||
<!--[-->
|
||||
@ -38,7 +38,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
</div>
|
||||
<div class="van-cell van-field">
|
||||
<div
|
||||
class="van-cell__title van-field__label"
|
||||
class="van-cell__title van-field__label van-field__label--required"
|
||||
style
|
||||
>
|
||||
<!--[-->
|
||||
|
@ -5,7 +5,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
<form class="van-form">
|
||||
<div class="van-cell-group van-cell-group--inset">
|
||||
<div class="van-cell van-field">
|
||||
<div class="van-cell__title van-field__label">
|
||||
<div class="van-cell__title van-field__label van-field__label--required">
|
||||
<label
|
||||
id="van-field-label"
|
||||
for="van-field-input"
|
||||
@ -27,7 +27,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
</div>
|
||||
</div>
|
||||
<div class="van-cell van-field">
|
||||
<div class="van-cell__title van-field__label">
|
||||
<div class="van-cell__title van-field__label van-field__label--required">
|
||||
<label
|
||||
id="van-field-label"
|
||||
for="van-field-input"
|
||||
|
Loading…
x
Reference in New Issue
Block a user