@nwx/mat

A simple shared material module for Angular applications

Usage no npm install needed!

<script type="module">
  import nwxMat from 'https://cdn.skypack.dev/@nwx/mat';
</script>

README

@nwx/mat

A simple material module wrapper for Angular applications

status-image version-image coverage-image download-image

How to install

npm i @nwx/mat |OR| yarn add @nwx/mat

How to use

// in app.component.ts
import { Component, OnInit } from '@angular/core';
import { MatService } from '@nwx/mat';

export const SvgFlagIcons = [
  {
    // country iso & aliases
    names: ['ca', 'CA'],
    // namespace to this icons (flags:ca)
    namespace: 'flags',
    // path to svg flag
    path: 'assets/svg/flags/ca.svg'
  },
  {
    names: ['us', 'US'],
    namespace: 'flags',
    path: 'assets/svg/flags/us.svg'
  }
];

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
  title = 'Neekware';
  constructor(public mat: MatService) {
    this.title = '@nwx/mat';
    console.log('AppComponent loaded ...');
  }

  ngOnInit() {
    // assuming you have your svg icons in your project asset directory
    this.mat.registerSvgIconsInNamespace('/assets/svg/mdi/mdi.svg');
    this.mat.registerSvgIconSet(SvgFlagIcons);
    this.mat.registerFontClassAlias('fontawesome', 'fa');
  }
}
<!-- in app.component.html -->

<!-- material design modules -->
<mat-toolbar>@nwx/mat</mat-toolbar>

<h1> Welcome to {{ title }}!</h1>

<!-- icons without namespace -->
<mat-icon color="primary" svgIcon="github-face"></mat-icon>

<!-- icons with namespace -->
<mat-icon color="primary" svgIcon="flags:ca"></mat-icon>

Note

This module automatically includes flex-layout module as well. Any module that needs angular material or angular flex-layout must import MatModule

Running the tests

To run the tests against the current environment:

npm run ci:all

License

Released under a (MIT) license.

Version

X.Y.Z Version

`MAJOR` version -- making incompatible API changes
`MINOR` version -- adding functionality in a backwards-compatible manner
`PATCH` version -- making backwards-compatible bug fixes