JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 377
  • Score
    100M100P100Q100494F
  • License MIT

Emits custom 'focusExit' event when keyboard focus has exited an element and all of it's descendants

Package Exports

  • makeup-exit-emitter

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (makeup-exit-emitter) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

makeup-exit-emitter

Build Status Coverage Status Dependency status devDependency status

A vanilla JavaScript port of jquery-focus-exit.

Emits custom 'focusExit' event when focus has exited an element and all of it's descendants.

Experimental

This module is still in an experimental state, until it reaches v1.0.0 you must consider all minor releases as breaking changes. Patch releases may introduce new features, but will be backwards compatible.

Install

// via npm
npm install makeup-exit-emitter

// via yarn
yarn add makeup-exit-emitter

Example

    const ExitEmitter = require('makeup-exit-emitter');

    let el = document.getElementById('#widget1');

    ExitEmitter.addFocusExit(el);

    el.addEventListener('focusExit', function(e){
        console.log(this, e); // outputs (el1, 'focusExit')
    });

Methods

  • addFocusExit
  • addMouseExit
  • removeFocusExit
  • removeMouseExit
  • add
  • remove

Events

  • 'focusExit'
    • event.detail
      • fromElement
      • toElement
  • 'mouseExit'
    • event.detail
      • fromElement
      • toElement

Dependencies

  • custom-event-polyfill

Development

  • npm start
  • npm test
  • npm run lint
  • npm run fix
  • npm run build
  • npm run clean

The following hooks exist, and do not need to be invoked manually:

  • npm prepublish cleans, lints, tests and builds on every npm publish command
  • pre-commit cleans, lints, tests and builds on every git commit command

Test Reports

Each test run will generate the following reports:

  • /reports/coverage contains Istanbul code coverage report
  • /reports/html contains HTML test report

CI Build

https://travis-ci.org/makeup-js/makeup-exit-emitter

Code Coverage

https://coveralls.io/github/makeup-js/makeup-exit-emitter