angular-equilizer
v1.1.1
Published
## Installation
Downloads
2
Readme
angular-equilizer
Installation
To install this library, run:
$ npm install angular-equilizer --save
Consuming your library
Once you have published your library to npm, you can import your library in any Angular application by running:
$ npm install angular-equilizer
and then from your Angular AppModule
:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
// Import your library
import { EquilizerModule } from 'angular-equilizer';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
EquilizerModule,
// Specify your library as an import
LibraryModule
],
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 your library component in app.component.html -->
1. <app-equilizer [automixer]="'elementId'" [type]="'btt'"></app-equilizer>. Here type = ‘btt’. It is for standard vertical component.
2. <app-equilizer [automixer]="'elementId'" [type]="'ltr'"></app-equilizer>. Here type = ‘ltr’. It is for standard horizontal component.
3. <app-equilizer [automixer]="'elementId'" [type]="'fltr'"></app-equilizer>. Here type = ‘fltr’. It is for fader control horizontal component (for fader control screen).
Development
To generate all *.js
, *.d.ts
and *.metadata.json
files:
$ npm run build
To lint all *.ts
files:
$ npm run lint
License
MIT © Divisha Varandani