1.0.2 • Published 7 years ago

ngx-clickout v1.0.2

Weekly downloads
12
License
MIT
Repository
github
Last release
7 years ago

ngx-clickout

Installation

To install this library, run:

$ npm install ngx-clickout --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 ngx-clickout

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 { ClickOutModule } from 'ngx-clickout';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,

    // Specify your library as an import
    ClickOutModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

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

import { Component, ChangeDetectionStrategy} from '@angular/core';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.scss'],
  changeDetection: ChangeDetectionStrategy.OnPush
})
export class AppComponent {
  title = 'app works!';

  isVisible = false;

  onToggle() {
    this.isVisible = !this.isVisible;
  }
}
<!-- You can now use your library component in app.component.html -->
<h1 *ngIf="isVisible" [clickOut]="isVisible" (clickOutEvent)="onToggle()">
  {{title}}
</h1>

Development

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

$ npm run build

To lint all *.ts files:

$ npm run lint

CHANGELOG

0.2.1

Bug Fixes

  • fix exit full screen in safari by esc

1.0.0

  • remove rxjs, add angular event listeners.
  • breaking change remove clickOutFilter input property

1.0.0

  • emit mouse or keyboard event in clieckOutEvent

License

MIT © Alexey Mikitevich

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago

0.2.2

7 years ago

0.2.1

7 years ago

0.2.0

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago