All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.utils.focus.isFocusable.js Maven / Gradle / Ivy

The newest version!
"use strict";

Object.defineProperty(exports, "__esModule", {
  value: true
});
exports.isFocusable = isFocusable;

var _isLabelWithInternallyDisabledControl = require("../misc/isLabelWithInternallyDisabledControl");

var _selector = require("./selector");

function isFocusable(element) {
  return !(0, _isLabelWithInternallyDisabledControl.isLabelWithInternallyDisabledControl)(element) && element.matches(_selector.FOCUSABLE_SELECTOR);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy