Author: | ngneat |
---|---|
Official Page: | Go to website |
Publish Date: | July 6, 2020 |
License: | MIT |
Description:
A customizable popup library for Angular developers to create resizable, draggable modal windows and dialogs with ease.
More Features:
- Custom size.
- With backdrop or not.
- Closeable or not.
- Confirm, Success, and Alert types.
- Allows you to append the dialog to a specific container.
- Allows you to pass any data to the dialog.
Install & Import:
ng add @ngneat/dialog
import { DialogModule } from '@ngneat/dialog'; @NgModule({ declarations: [AppComponent], imports: [DialogModule.forRoot()], bootstrap: [AppComponent] ... }) export class AppModule {}