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
405
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 23.1.13 to 23.1.14

20

package.json
{
"name": "@vaadin/grid",
"version": "23.1.13",
"version": "23.1.14",
"publishConfig": {

@@ -47,13 +47,13 @@ "access": "public"

"@polymer/polymer": "^3.0.0",
"@vaadin/checkbox": "~23.1.13",
"@vaadin/component-base": "~23.1.13",
"@vaadin/lit-renderer": "~23.1.13",
"@vaadin/text-field": "~23.1.13",
"@vaadin/vaadin-lumo-styles": "~23.1.13",
"@vaadin/vaadin-material-styles": "~23.1.13",
"@vaadin/vaadin-themable-mixin": "~23.1.13"
"@vaadin/checkbox": "~23.1.14",
"@vaadin/component-base": "~23.1.14",
"@vaadin/lit-renderer": "~23.1.14",
"@vaadin/text-field": "~23.1.14",
"@vaadin/vaadin-lumo-styles": "~23.1.14",
"@vaadin/vaadin-material-styles": "~23.1.14",
"@vaadin/vaadin-themable-mixin": "~23.1.14"
},
"devDependencies": {
"@esm-bundle/chai": "^4.3.4",
"@vaadin/polymer-legacy-adapter": "~23.1.13",
"@vaadin/polymer-legacy-adapter": "~23.1.14",
"@vaadin/testing-helpers": "^0.3.2",

@@ -63,3 +63,3 @@ "lit": "^2.0.0",

},
"gitHead": "f1000c776f3644ed1968b7095ad59a65b1e306ff"
"gitHead": "3065d26b1e7417c4efed0eb72c54e429031dc86c"
}

@@ -503,2 +503,3 @@ /**

/** @private */
__scrollToPendingIndex() {

@@ -505,0 +506,0 @@ if (this.__pendingScrollToIndex && this.$.items.children.length) {

@@ -119,2 +119,3 @@ /**

margin: 0;
pointer-events: none;
}

@@ -162,2 +163,6 @@

[part~='cell'] {
pointer-events: initial;
}
[hidden] {

@@ -242,2 +247,6 @@ display: none !important;

[first-frozen-to-end] {
margin-inline-start: auto;
}
/* Hide resize handle if scrolled to end */

@@ -244,0 +253,0 @@ :host(:not([overflow~='end'])) [first-frozen-to-end] [part~='resize-handle'] {

@@ -40,2 +40,3 @@ /**

/** @private */
__cellClassNameGeneratorChanged() {

@@ -42,0 +43,0 @@ this.generateCellClassNames();

@@ -300,27 +300,29 @@ /**

*
* Attribute | Description | Part name
* -------------|-------------|------------
* `loading` | Set when the grid is loading data from data provider | :host
* `interacting` | Keyboard navigation in interaction mode | :host
* `navigating` | Keyboard navigation in navigation mode | :host
* `overflow` | Set when rows are overflowing the grid viewport. Possible values: `top`, `bottom`, `start`, `end` | :host
* `reordering` | Set when the grid's columns are being reordered | :host
* `dragover` | Set when the grid (not a specific row) is dragged over | :host
* `dragging-rows` : Set when grid rows are dragged | :host
* `reorder-status` | Reflects the status of a cell while columns are being reordered | cell
* `frozen` | Frozen cell | cell
* `last-frozen` | Last frozen cell | cell
* `first-column` | First visible cell on a row | cell
* `last-column` | Last visible cell on a row | cell
* `selected` | Selected row | row
* `expanded` | Expanded row | row
* `details-opened` | Row with details open | row
* `loading` | Row that is waiting for data from data provider | row
* `odd` | Odd row | row
* `first` | The first body row | row
* `last` | The last body row | row
* `dragstart` | Set for one frame when drag of a row is starting. The value is a number when multiple rows are dragged | row
* `dragover` | Set when the row is dragged over | row
* `drag-disabled` | Set to a row that isn't available for dragging | row
* `drop-disabled` | Set to a row that can't be dropped on top of | row
* Attribute | Description | Part name
* -----------------------|---------------------------------------------------------------------------------------------------|-----------
* `loading` | Set when the grid is loading data from data provider | :host
* `interacting` | Keyboard navigation in interaction mode | :host
* `navigating` | Keyboard navigation in navigation mode | :host
* `overflow` | Set when rows are overflowing the grid viewport. Possible values: `top`, `bottom`, `start`, `end` | :host
* `reordering` | Set when the grid's columns are being reordered | :host
* `dragover` | Set when the grid (not a specific row) is dragged over | :host
* `dragging-rows` | Set when grid rows are dragged | :host
* `reorder-status` | Reflects the status of a cell while columns are being reordered | cell
* `frozen` | Frozen cell | cell
* `frozen-to-end` | Cell frozen to end | cell
* `last-frozen` | Last frozen cell | cell
* `first-frozen-to-end` | First cell frozen to end | cell
* `first-column` | First visible cell on a row | cell
* `last-column` | Last visible cell on a row | cell
* `selected` | Selected row | row
* `expanded` | Expanded row | row
* `details-opened` | Row with details open | row
* `loading` | Row that is waiting for data from data provider | row
* `odd` | Odd row | row
* `first` | The first body row | row
* `last` | The last body row | row
* `dragstart` | Set for one frame when starting to drag a row. The value is a number when dragging multiple rows | row
* `dragover` | Set when the row is dragged over | row
* `drag-disabled` | Set to a row that isn't available for dragging | row
* `drop-disabled` | Set to a row that can't be dropped on top of | row
*

@@ -327,0 +329,0 @@ * See [Styling Components](https://vaadin.com/docs/latest/ds/customization/styling-components) documentation.

@@ -186,27 +186,29 @@ /**

*
* Attribute | Description | Part name
* -------------|-------------|------------
* `loading` | Set when the grid is loading data from data provider | :host
* `interacting` | Keyboard navigation in interaction mode | :host
* `navigating` | Keyboard navigation in navigation mode | :host
* `overflow` | Set when rows are overflowing the grid viewport. Possible values: `top`, `bottom`, `start`, `end` | :host
* `reordering` | Set when the grid's columns are being reordered | :host
* `dragover` | Set when the grid (not a specific row) is dragged over | :host
* `dragging-rows` : Set when grid rows are dragged | :host
* `reorder-status` | Reflects the status of a cell while columns are being reordered | cell
* `frozen` | Frozen cell | cell
* `last-frozen` | Last frozen cell | cell
* `first-column` | First visible cell on a row | cell
* `last-column` | Last visible cell on a row | cell
* `selected` | Selected row | row
* `expanded` | Expanded row | row
* `details-opened` | Row with details open | row
* `loading` | Row that is waiting for data from data provider | row
* `odd` | Odd row | row
* `first` | The first body row | row
* `last` | The last body row | row
* `dragstart` | Set for one frame when drag of a row is starting. The value is a number when multiple rows are dragged | row
* `dragover` | Set when the row is dragged over | row
* `drag-disabled` | Set to a row that isn't available for dragging | row
* `drop-disabled` | Set to a row that can't be dropped on top of | row
* Attribute | Description | Part name
* ----------------------|---------------------------------------------------------------------------------------------------|-----------
* `loading` | Set when the grid is loading data from data provider | :host
* `interacting` | Keyboard navigation in interaction mode | :host
* `navigating` | Keyboard navigation in navigation mode | :host
* `overflow` | Set when rows are overflowing the grid viewport. Possible values: `top`, `bottom`, `start`, `end` | :host
* `reordering` | Set when the grid's columns are being reordered | :host
* `dragover` | Set when the grid (not a specific row) is dragged over | :host
* `dragging-rows` | Set when grid rows are dragged | :host
* `reorder-status` | Reflects the status of a cell while columns are being reordered | cell
* `frozen` | Frozen cell | cell
* `frozen-to-end` | Cell frozen to end | cell
* `last-frozen` | Last frozen cell | cell
* `first-frozen-to-end` | First cell frozen to end | cell
* `first-column` | First visible cell on a row | cell
* `last-column` | Last visible cell on a row | cell
* `selected` | Selected row | row
* `expanded` | Expanded row | row
* `details-opened` | Row with details open | row
* `loading` | Row that is waiting for data from data provider | row
* `odd` | Odd row | row
* `first` | The first body row | row
* `last` | The last body row | row
* `dragstart` | Set for one frame when starting to drag a row. The value is a number when dragging multiple rows | row
* `dragover` | Set when the row is dragged over | row
* `drag-disabled` | Set to a row that isn't available for dragging | row
* `drop-disabled` | Set to a row that can't be dropped on top of | row
*

@@ -905,2 +907,3 @@ * See [Styling Components](https://vaadin.com/docs/latest/ds/customization/styling-components) documentation.

/** @private */
__updateFooterPositioning() {

@@ -907,0 +910,0 @@ // TODO: fixed in Firefox 99, remove when we can drop Firefox ESR 91 support

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