Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@vaadin/grid

Package Overview
Dependencies
Maintainers
12
Versions
406
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.4.0-alpha12 to 24.4.0-alpha13

20

package.json
{
"name": "@vaadin/grid",
"version": "24.4.0-alpha12",
"version": "24.4.0-alpha13",
"publishConfig": {

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

"@polymer/polymer": "^3.0.0",
"@vaadin/a11y-base": "24.4.0-alpha12",
"@vaadin/checkbox": "24.4.0-alpha12",
"@vaadin/component-base": "24.4.0-alpha12",
"@vaadin/lit-renderer": "24.4.0-alpha12",
"@vaadin/text-field": "24.4.0-alpha12",
"@vaadin/vaadin-lumo-styles": "24.4.0-alpha12",
"@vaadin/vaadin-material-styles": "24.4.0-alpha12",
"@vaadin/vaadin-themable-mixin": "24.4.0-alpha12",
"@vaadin/a11y-base": "24.4.0-alpha13",
"@vaadin/checkbox": "24.4.0-alpha13",
"@vaadin/component-base": "24.4.0-alpha13",
"@vaadin/lit-renderer": "24.4.0-alpha13",
"@vaadin/text-field": "24.4.0-alpha13",
"@vaadin/vaadin-lumo-styles": "24.4.0-alpha13",
"@vaadin/vaadin-material-styles": "24.4.0-alpha13",
"@vaadin/vaadin-themable-mixin": "24.4.0-alpha13",
"lit": "^3.0.0"

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

],
"gitHead": "811e8327e02a8ecdca0bb5d6528856e70d429d0c"
"gitHead": "97246b0703cd04a4b0ea5dcd49e2581d45cf6367"
}

@@ -126,2 +126,15 @@ /**

this._rowWithFocusedElement = e.composedPath()[itemsIndex - 1];
if (this._rowWithFocusedElement) {
// Make sure the row with the focused element is fully inside the visible viewport
this.__scrollIntoViewport(this._rowWithFocusedElement.index);
if (!this.$.table.contains(e.relatedTarget)) {
// Virtualizer can't catch the event because if orginates from the light DOM.
// Dispatch a virtualizer-element-focused event for virtualizer to catch.
this.$.table.dispatchEvent(
new CustomEvent('virtualizer-element-focused', { detail: { element: this._rowWithFocusedElement } }),
);
}
}
});

@@ -128,0 +141,0 @@ this.$.items.addEventListener('focusout', () => {

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