View all the directives in action at https://angular-material-extensions.github.io/text
- Angular (requires Angular 2 or higher, tested with 2.0.0)
Install above dependencies via npm.
Now install @angular-material-extensions/typography
via:
npm install --save @angular-material-extensions/typography
Note:If you are using
SystemJS
, you should adjust your configuration to point to the UMD bundle. In your systemjs config file,map
needs to tell the System loader where to look for@angular-material-extensions/typography
:
map: {
'@angular-material-extensions/typography': 'node_modules/@angular-material-extensions/typography/bundles/text.umd.js',
}
Once installed you need to import the main module:
import { MatTextModule } from '@angular-material-extensions/typography';
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 MatTextModule .forRoot()
):
import { MatTextModule } from '@angular-material-extensions/typography';
@NgModule({
declarations: [AppComponent, ...],
imports: [MatTextModule.forRoot(), ...],
bootstrap: [AppComponent]
})
export class AppModule {
}
Other modules in your application can simply import MatTextModule
:
import { MatTextModule } from '@angular-material-extensions/typography';
@NgModule({
declarations: [OtherComponent, ...],
imports: [MatTextModule, ...],
})
export class OtherModule {
}
Copyright (c) 2018 Anthony Nahas. Licensed under the MIT License (MIT)