JSPM

@raphy/ngx-equalizer

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 12
  • Score
    100M100P100Q62337F
  • License MIT

A library to equalize height and width of elements with Angular4+

Package Exports

  • @raphy/ngx-equalizer

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 (@raphy/ngx-equalizer) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

ngx-equalizer

npm Package Quality Travis Coveralls npm MIT licensed

A library to equalize height and width of elements with Angular4+

Table of contents

Installation

npm install --save ngx-equalizer

Once installed you need to import our main module:

import { EqualizerModule } from 'ngx-equalizer';

The only remaining part is to list the imported module in your application module.

@NgModule({
  declarations: [AppComponent, ...],
  imports: [EqualizerModule.forRoot(), ...],
  bootstrap: [AppComponent]
})
export class AppModule {
}

Contributing

  • Before adding any new feature or a fix make sure to open an issue first!

Make sure you have angular-cli & karma installed globally.

$ npm install -g angular-cli karma

Clone the project, and install dependencies.

$ git clone https://github.com/raphy/ngx-equalizer.git
$ npm install

Create a new branch

$ git checkout -b feat/someFeature

Add tests & make sure everything is running properly

$ npm test

Commit & push, and make a pull request!