feat(Checker): add checked and disabled params to the default slot (#12436)

This commit is contained in:
inottn 2023-11-12 09:15:12 +08:00 committed by GitHub
parent fd63bcc3b0
commit ca95a7c366
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 24 additions and 5 deletions

View File

@ -148,6 +148,8 @@ export default defineComponent({
};
const renderLabel = () => {
const { checked } = props;
if (slots.default) {
return (
<span
@ -156,7 +158,7 @@ export default defineComponent({
{ disabled: disabled.value },
])}
>
{slots.default()}
{slots.default({ checked, disabled: disabled.value })}
</span>
);
}

View File

@ -363,7 +363,7 @@ export default {
| Name | Description | SlotProps |
| ------- | ------------ | ----------------------------------------- |
| default | Custom label | - |
| default | Custom label | _{ checked: boolean, disabled: boolean }_ |
| icon | Custom icon | _{ checked: boolean, disabled: boolean }_ |
### CheckboxGroup Methods

View File

@ -382,7 +382,7 @@ export default {
| 名称 | 说明 | 参数 |
| ------- | ---------- | ----------------------------------------- |
| default | 自定义文本 | - |
| default | 自定义文本 | _{ checked: boolean, disabled: boolean }_ |
| icon | 自定义图标 | _{ checked: boolean, disabled: boolean }_ |
### CheckboxGroup 方法

View File

@ -116,3 +116,20 @@ test('should render icon slot correctly', async () => {
expect(wrapper.find('.van-checkbox__icon').html()).toMatchSnapshot();
});
test('should render label slot correctly', async () => {
const slot = vi.fn();
const wrapper = mount(Checkbox, {
slots: {
default: slot,
},
});
expect(slot.mock.calls[0]).toEqual([{ checked: false, disabled: false }]);
await wrapper.setProps({ modelValue: true });
expect(slot.mock.calls[1]).toEqual([{ checked: true, disabled: false }]);
await wrapper.setProps({ disabled: true });
expect(slot.mock.calls[2]).toEqual([{ checked: true, disabled: true }]);
});

View File

@ -229,7 +229,7 @@ import type {
| Name | Description | SlotProps |
| ------- | ------------ | ----------------------------------------- |
| default | Custom label | - |
| default | Custom label | _{ checked: boolean, disabled: boolean }_ |
| icon | Custom icon | _{ checked: boolean, disabled: boolean }_ |
## Theming

View File

@ -229,7 +229,7 @@ export default {
| 名称 | 说明 | 参数 |
| ------- | ---------- | ----------------------------------------- |
| default | 自定义文本 | - |
| default | 自定义文本 | _{ checked: boolean, disabled: boolean }_ |
| icon | 自定义图标 | _{ checked: boolean, disabled: boolean }_ |
### 类型定义