The Ng-Matero Extensions is an extended library of Angular Material.
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 {
}
Check the projects to know the develop plans.
MIT