Files
GNX-mailEnterprise/frontend/node_modules/@testing-library/user-event/dist/utils/click/isClickableInput.js
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

14 lines
495 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.isClickableInput = isClickableInput;
var _isElementType = require("../misc/isElementType");
const CLICKABLE_INPUT_TYPES = ['button', 'color', 'file', 'image', 'reset', 'submit', 'checkbox', 'radio'];
function isClickableInput(element) {
return (0, _isElementType.isElementType)(element, 'button') || (0, _isElementType.isElementType)(element, 'input') && CLICKABLE_INPUT_TYPES.includes(element.type);
}