Package Exports
- @ng-matero/extensions
- @ng-matero/extensions/alert
- @ng-matero/extensions/checkbox-group
- @ng-matero/extensions/color-picker
- @ng-matero/extensions/data-grid
- @ng-matero/extensions/dialog
- @ng-matero/extensions/progress
- @ng-matero/extensions/select
- @ng-matero/extensions/text3d
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@ng-matero/extensions) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Ng-Matero Extensions
The Ng-Matero Extensions is an extended library of Angular Material.
Installation
At first, you should install the Angular Material and setup it. Learn more about the setup.
Install the Extensions library:
$ npm install @ng-matero/extensions --save
Once installed you need to import the main module:
import { MaterialExtensionsModule } from '@ng-matero/extensions';
@NgModule({
...
imports: [MaterialExtensionsModule, ...],
...
})
export class YourAppModule {
}
Alternatively you could only import modules you need, e.g. color-picker and select.
import { MtxColorPickerModule, MtxSelectModule } from '@ng-matero/extensions';
@NgModule({
...
imports: [MtxColorPickerModule, MtxSelectModule, ...],
...
})
export class YourAppModule {
}
Road Map
Check the project to know the develop plans.
License
MIT