message slot added

This commit is contained in:
Tuğçe Küçükoğlu 2022-08-26 09:31:31 +03:00
parent 93b6b04cdf
commit 67320fb0d8
3 changed files with 19 additions and 2 deletions

View file

@ -13,10 +13,18 @@ const ConfirmDialogProps = [
}
];
const ConfirmDialogSlots = [
{
name: "message",
description: "Custom content for the component."
}
];
module.exports = {
confirmdialog: {
name: "ConfirmDialog",
description: "ConfirmDialog uses a Dialog UI that is integrated with the Confirmation API.",
props: ConfirmDialogProps
props: ConfirmDialogProps,
slots: ConfirmDialogSlots
}
};