@taiga-ui/eslint-plugin-experience-next 0.515.0 → 0.516.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.esm.js +1 -6
  2. package/package.json +1 -1
package/index.esm.js CHANGED
@@ -33248,11 +33248,6 @@ function hasElementAttribute(element, name) {
33248
33248
  return (details?.startsWith('attr.') === true && names.includes(details.slice(5)));
33249
33249
  }));
33250
33250
  }
33251
- function hasOutputBinding(element, name) {
33252
- {
33253
- return element.outputs.length > 0;
33254
- }
33255
- }
33256
33251
  function getElementAttributeLikes(element) {
33257
33252
  const seen = new Set();
33258
33253
  return [
@@ -250565,7 +250560,7 @@ const rule$C = createRule({
250565
250560
 
250566
250561
  function isInteractiveElement(node) {
250567
250562
  const tagName = node.name.toLowerCase();
250568
- if (hasElementAttribute(node, 'tabindex') || hasOutputBinding(node)) {
250563
+ if (hasElementAttribute(node, 'tabindex')) {
250569
250564
  return true;
250570
250565
  }
250571
250566
  switch (tagName) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taiga-ui/eslint-plugin-experience-next",
3
- "version": "0.515.0",
3
+ "version": "0.516.0",
4
4
  "description": "An ESLint plugin to enforce a consistent code styles across taiga-ui projects",
5
5
  "homepage": "https://github.com/taiga-family/toolkit#readme",
6
6
  "bugs": {