Refactor #3832 Refactor #3833 - For Checkbox

This commit is contained in:
Tuğçe Küçükoğlu 2023-04-04 15:39:42 +03:00
parent 67e874d962
commit dbfbc31e8a
3 changed files with 29 additions and 4 deletions

View file

@ -106,11 +106,19 @@ const CheckboxEvents = [
}
];
const CheckboxSlots = [
{
name: 'icon',
description: 'Custom icon template.'
}
];
module.exports = {
checkbox: {
name: 'Checkbox',
description: 'Checkbox is an extension to standard checkbox element with theming.',
props: CheckboxProps,
events: CheckboxEvents
events: CheckboxEvents,
slots: CheckboxSlots
}
};