1.0.3 • Published 5 years ago

ngx-focus v1.0.3

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

Focus directive.

Getting Started

ngx-focus contains a angular directive. Directive can be applied to a DOM element in order to focus it conditionally. Very useful when you are using field in combination with *ngIf.

Installation instructions

Install ngx-focus from npm:

npm install ngx-focus --save

Add NgxFocusModule to NgModule imports:

import { NgxFocusModule } from 'ngx-focus';



@NgModule({

...

imports: [NgxFocusModule,...]

...

})

Add directive to your page:

<input ngxFocus>

with condition:

<input [ngxFocus]="condition">

Inputs

ngxFocus Indicates that element should be focused or not, default is true

Outputs

fieldFocused Emits event when field is focused.

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago