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
12
Versions
423
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.0.0-alpha12 to 24.0.0-alpha13

22

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

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

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

@@ -69,3 +69,3 @@ "sinon": "^13.0.2"

],
"gitHead": "7e29eee4d522fb7b03ac8e7e385e9057d71c79ce"
"gitHead": "a423ad309c12b4e4f847737ee9f491f83ea60ff0"
}

@@ -17,5 +17,5 @@ /**

*/
activeItem: TItem | null;
activeItem: TItem | null | undefined;
}
export declare function isFocusable(target: Element): boolean;

@@ -150,2 +150,9 @@ /**

_updateOverflow() {
this._debounceOverflow = Debouncer.debounce(this._debounceOverflow, animationFrame, () => {
this.__doUpdateOverflow();
});
}
/** @private */
__doUpdateOverflow() {
// Set overflow styling attributes

@@ -186,10 +193,8 @@ let overflow = '';

this._debounceOverflow = Debouncer.debounce(this._debounceOverflow, animationFrame, () => {
const value = overflow.trim();
if (value.length > 0 && this.getAttribute('overflow') !== value) {
this.setAttribute('overflow', value);
} else if (value.length === 0 && this.hasAttribute('overflow')) {
this.removeAttribute('overflow');
}
});
const value = overflow.trim();
if (value.length > 0 && this.getAttribute('overflow') !== value) {
this.setAttribute('overflow', value);
} else if (value.length === 0 && this.hasAttribute('overflow')) {
this.removeAttribute('overflow');
}
}

@@ -196,0 +201,0 @@

@@ -71,3 +71,3 @@ /**

*/
export type GridActiveItemChangedEvent<TItem> = CustomEvent<{ value: TItem }>;
export type GridActiveItemChangedEvent<TItem> = CustomEvent<{ value: TItem | null | undefined }>;

@@ -74,0 +74,0 @@ /**

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