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

@vaadin/grid

Package Overview
Dependencies
Maintainers
0
Versions
414
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-alpha6 to 24.5.0-alpha7

20

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

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

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

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

],
"gitHead": "c5f541dbe961a994730d4c60472ae957bf6b4c12"
"gitHead": "89f77a69ae0eba6247f2b3084941f9395d7134e1"
}

@@ -272,3 +272,3 @@ /**

/** @private */
__computeExpandedKeys(itemIdPath, expandedItems) {
__computeExpandedKeys(_itemIdPath, expandedItems) {
const expanded = expandedItems || [];

@@ -275,0 +275,0 @@ const expandedKeys = new Set();

@@ -184,2 +184,5 @@ /**

this.style.setProperty('--_grid-drag-start-y', '');
rows.forEach((row) => {
updateBooleanRowStates(row, { 'drag-source': true });
});
});

@@ -206,2 +209,6 @@

this.dispatchEvent(event);
iterateChildren(this.$.items, (row) => {
updateBooleanRowStates(row, { 'drag-source': false });
});
}

@@ -208,0 +215,0 @@

@@ -97,3 +97,3 @@ /**

/** @private */
_detailsOpenedItemsChanged(detailsOpenedItems, rowDetailsRenderer) {
_detailsOpenedItemsChanged(_detailsOpenedItems, rowDetailsRenderer) {
iterateChildren(this.$.items, (row) => {

@@ -100,0 +100,0 @@ // Re-renders the row to possibly close the previously opened details.

@@ -352,3 +352,3 @@ /**

*/
_selectItem(item) {}
_selectItem(_item) {}

@@ -360,3 +360,3 @@ /**

*/
_deselectItem(item) {}
_deselectItem(_item) {}

@@ -363,0 +363,0 @@ /**

@@ -94,3 +94,3 @@ /**

/** @private */
__computeSelectedKeys(itemIdPath, selectedItems) {
__computeSelectedKeys(_itemIdPath, selectedItems) {
const selected = selectedItems || [];

@@ -97,0 +97,0 @@ const selectedKeys = new Set();

@@ -193,3 +193,4 @@ /**

* `details-opened-row-cell` | Cell in an row with details open
* `dragstart-row-cell` | Cell in a row that user started to drag (set for one frame)
* `dragstart-row-cell` | Cell in the ghost image row, but not in a source row
* `drag-source-row-cell` | Cell in a source row, but not in the ghost image
* `dragover-above-row-cell` | Cell in a row that has another row dragged over above

@@ -196,0 +197,0 @@ * `dragover-below-row-cell` | Cell in a row that has another row dragged over below

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