Socket
Socket
Sign inDemoInstall

@ng-matero/extensions

Package Overview
Dependencies
69
Maintainers
1
Versions
234
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @ng-matero/extensions

Angular Material Extensions


Version published
Weekly downloads
12K
decreased by-29%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

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, MaterialExtensionsExperimentalModule } from '@ng-matero/extensions';

@NgModule({
  ...
  imports: [MaterialExtensionsModule, MaterialExtensionsExperimentalModule, ...],
  ...
})
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);
@include material-extensions-experimental-theme($theme);

Roadmap

Check projects to know the develop plans.

License

MIT

Keywords

FAQs

Last updated on 28 Jun 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc