Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@stratiods/click-outside

stratio-design22MIT1.0.2TypeScript support: included

SDS Components :: Angular Click Outside Directive

stratio, design system, angular, directive, click, outside

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