ngx-material-window

[![Greenkeeper badge](https://badges.greenkeeper.io/zack9433/ngx-material-window.svg)](https://greenkeeper.io/)


Keywords
angular, angular2, angular 2, angular4, angular 4, library, module, angular module, window, material
License
MIT
Install
npm install ngx-material-window@1.0.0

Documentation

ngx-material-window

Greenkeeper badge

Installation

To install this library, run:

$ npm install ngx-material-window --save

Consuming library

Install library

$ npm install ngx-material-window

and then from your Angular AppModule:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';

import { NgxMaterialWidnowModule } from 'ngx-material-window';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    NgxMaterialWidnowModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

Once your library is imported, you can use its components, directives and pipes in your Angular application:

<!-- You can now use material window component in app.component.html -->
<ngx-md-window title="Ethernet">
  <ngx-md-window-state linkName="Information" stateName="info" icon="info">
    <h1>Hello</h1>
  </ngx-md-window-state>
  <ngx-md-window-state linkName="Setting" stateName="form" icon="settings">
    <h1>Form</h1>
  </ngx-md-window-state>
</ngx-md-window>

Development

To generate all *.js, *.d.ts and *.metadata.json files:

$ npm run build

To lint all *.ts files:

$ npm run lint

License

MIT © Zack Yang