Skip to content

atteo/extensions

 
 

Repository files navigation

Ng-Matero Extensions

npm GitHub Release Date license Gitter

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 {
}

Roadmap

Check the projects to know the develop plans.

License

MIT

Packages

No packages published

Languages

  • TypeScript 68.1%
  • HTML 19.9%
  • CSS 10.6%
  • JavaScript 1.4%