@3kles/kles-material-dialog is a angular library to create dialog.
Check out the changelog to check all the latest changes.
- AlertDialogComponent -> Component to create an alert dialog
- ConfirmDialogComponent -> Component to create a confirm dialog
- SpinnerDialogComponent -> Component to create a spinner dialog
- KlesDynamicFormDialogComponent -> Component to create a dialog with a form
npm install --save @3kles/kles-material-dialog
constructor(protected dialog: MatDialog) {}
open(): void {
this.dialog.open(DialogComponent, {
data: {
...
},
...
});
}
Check the documentation
to use component and directive.
npm install
npm test