Set of prebuilt extended angular material dialogs as components | simple API and easy to use
npm install @angular-material-extensions/dialogs
height="256px" width="256px" style="text-align: center;"
src="https://cdn.rawgit.com/angular-material-extensions/core/master/assets/angular-material-extensions-logo.svg">
MatDialogModule contains a set of prebuilt extended angular material dialogs, simple API and easy to use.View all the directives in action at https://angular-material-extensions.github.io/core/dialogs
---
7.x---
Now install @angular-material-extensions/core via:
``shell`
npm install --save @angular-material-extensions/core
Once installed you need to import the main module:
`js`
import { MatDialogsModule } from '@angular-material-extensions/core'; MatPasswordStrengthModule .forRoot()
The only remaining part is to list the imported module in your application module. The exact method will be slightly
different for the root (top-level) module for which you should end up with the code similar to (notice ):`js
import { MatDialogsModule } from '@angular-material-extensions/core';
import { MatDialogModule } from '@angular/material';
@NgModule({
declarations: [AppComponent, ...],
imports: [
MatDialogsModule,
MatDialogModule,
...],
bootstrap: [AppComponent]
})
export class AppModule {
constructor(public dialog: MatDialog) {
}
}
`
---
##### SystemJS
>Note:If you are using SystemJS, you should adjust your configuration to point to the UMD bundle.map
In your systemjs config file, needs to tell the System loader where to look for @angular-material-extensions/core:`js``
map: {
'@angular-material-extensions/password-strength': 'node_modules/@angular-material-extensions/core/bundles/core.umd.js',
}
---
---
This project is supported by jetbrains with 1 ALL PRODUCTS PACK OS LICENSE incl. webstorm
---
Copyright (c) 2019 Anthony Nahas. Licensed under the MIT License (MIT)