@stratiods/click-outside

SDS Components :: Angular Click Outside Directive

Usage no npm install needed!

<script type="module">
  import stratiodsClickOutside from 'https://cdn.skypack.dev/@stratiods/click-outside';
</script>

README

SDS Components :: Angular Click Outside Directive

Directive emits event when clicking outside of the element where directive applies.

The $event emitted is undefined.

Compatibility

Angular >= v.8.2.10

Installation

Run npm install @stratiods/click-outside or

run yarn add @stratiods/click-outside.

Use

You need to import ClickOutsideModule into your module imports section.

Then use this way:

<div
  sdsClickOutside
  (clickOutside)="clickOutsideActionMethod()">
  Some content...
</div>

Inputs

@Input() apply: boolean = true;

You can dcide through this boolean input if directive works or not.

DEFAULT: true

 

@Input() exceptions: Array<string> = [];

Array composed by external DOM id's that by clicking on them, the clickOutside event is not emitted.

DEFAULT: []

Outputs

@Output() clickOutside: EventEmitter<undefined> = new EventEmitter();

Emits event when clicking outside of the element where directive applies.

Repo

https://github.com/stratio-design/sds-components/tree/master/projects/click-outside