0.1.2 • Published 3 years ago

angular-clickable-click v0.1.2

Weekly downloads
82
License
MIT
Repository
github
Last release
3 years ago

Clickable (click) for Angular 2+

Angular 2+ Directive adding pointer cursor for elements using (click) directive. Respects [disabled] input.

Installation

  1. Get it from npm i angular-clickable-click --save
  2. Import ClickableClickModule

    import { ClickableClickModule } from 'angular-clickable-click';
    
    @NgModule({
      // ...
      imports: [ClickableClickModule],
      // ...
    })
    class AppModule {}

Usage (click here for a demo)

@Component({
  selector: 'app',
  template: `
    <div (click)="isDisabled = true" [disabled]="isDisabled">
    I am <b *ngIf="isDisabled">no longer</b> clickable
    </div>
  `
})
export class AppComponent {
  public isDisabled: boolean = false;
}