New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@vaadin/grid

Package Overview
Dependencies
Maintainers
0
Versions
417
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/grid - npm Package Compare versions

Comparing version 24.5.0-alpha3 to 24.5.0-alpha4

20

package.json
{
"name": "@vaadin/grid",
"version": "24.5.0-alpha3",
"version": "24.5.0-alpha4",
"publishConfig": {

@@ -49,10 +49,10 @@ "access": "public"

"@polymer/polymer": "^3.0.0",
"@vaadin/a11y-base": "24.5.0-alpha3",
"@vaadin/checkbox": "24.5.0-alpha3",
"@vaadin/component-base": "24.5.0-alpha3",
"@vaadin/lit-renderer": "24.5.0-alpha3",
"@vaadin/text-field": "24.5.0-alpha3",
"@vaadin/vaadin-lumo-styles": "24.5.0-alpha3",
"@vaadin/vaadin-material-styles": "24.5.0-alpha3",
"@vaadin/vaadin-themable-mixin": "24.5.0-alpha3",
"@vaadin/a11y-base": "24.5.0-alpha4",
"@vaadin/checkbox": "24.5.0-alpha4",
"@vaadin/component-base": "24.5.0-alpha4",
"@vaadin/lit-renderer": "24.5.0-alpha4",
"@vaadin/text-field": "24.5.0-alpha4",
"@vaadin/vaadin-lumo-styles": "24.5.0-alpha4",
"@vaadin/vaadin-material-styles": "24.5.0-alpha4",
"@vaadin/vaadin-themable-mixin": "24.5.0-alpha4",
"lit": "^3.0.0"

@@ -69,3 +69,3 @@ },

],
"gitHead": "9ccd96c77a1568e625fa44f6809e765c0ba91403"
"gitHead": "a2cd3079183a097b793073eeffd3bd59dec2b664"
}

@@ -7,2 +7,4 @@ /**

import { isElementFocusable } from '@vaadin/a11y-base/src/focus-utils.js';
/**

@@ -14,17 +16,7 @@ * @param {!Element} target

export const isFocusable = (target) => {
if (!target.parentNode) {
return false;
}
const focusables = Array.from(
target.parentNode.querySelectorAll(
'[tabindex], button, input, select, textarea, object, iframe, a[href], area[href]',
),
).filter((element) => {
const part = element.getAttribute('part');
return !(part && part.includes('body-cell'));
});
const isFocusableElement = focusables.includes(target);
return (
!target.disabled && isFocusableElement && target.offsetParent && getComputedStyle(target).visibility !== 'hidden'
target.offsetParent &&
!target.part.contains('body-cell') &&
isElementFocusable(target) &&
getComputedStyle(target).visibility !== 'hidden'
);

@@ -31,0 +23,0 @@ };

@@ -151,3 +151,3 @@ /**

this._dataProviderController = new DataProviderController(this, {
size: this.size,
size: this.size || 0,
pageSize: this.pageSize,

@@ -154,0 +154,0 @@ getItemId: this.getItemId.bind(this),

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc