Fixed #2653 - New Component: DynamicDialog

This commit is contained in:
mertsincan 2022-06-14 09:11:34 +01:00
parent cdf42edd14
commit 6e608144b9
24 changed files with 458 additions and 1 deletions

View file

@ -0,0 +1,15 @@
const DynamicDialogProps = [];
const DynamicDialogEvents = [];
const DynamicDialogSlots = [];
module.exports = {
dynamicdialog: {
name: "DynamicDialog",
description: "Dialogs can be created dynamically with any component as the content using a DialogService.",
props: DynamicDialogProps,
events: DynamicDialogEvents,
slots: DynamicDialogSlots
}
};