JSPM

@ng-matero/extensions

10.5.3
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 21197
  • Score
    100M100P100Q159544F
  • License MIT

Angular Material Extensions

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/split-pane
  • @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

npm GitHub Release Date license Gitter API docs

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

Setup

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. data-grid and select.

import { MtxGridModule } from '@ng-matero/extensions/data-grid';
import { MtxSelectModule } from '@ng-matero/extensions/select';

@NgModule({
  ...
  imports: [MtxGridModule, MtxSelectModule, ...],
  ...
})
export class YourAppModule {
}

Theming

After import modules, you must define a theme. More details about theming.

@import '~@ng-matero/extensions/theming';

@include material-extensions-theme($theme);

Roadmap

Check projects to know the develop plans.

License

MIT