🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@vaadin/component-base

Package Overview
Dependencies
Maintainers
12
Versions
618
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/component-base - npm Package Compare versions

Comparing version
25.2.3
to
25.2.4
+4
-4
package.json
{
"name": "@vaadin/component-base",
"version": "25.2.3",
"version": "25.2.4",
"publishConfig": {

@@ -41,4 +41,4 @@ "access": "public"

"devDependencies": {
"@vaadin/chai-plugins": "~25.2.3",
"@vaadin/test-runner-commands": "~25.2.3",
"@vaadin/chai-plugins": "~25.2.4",
"@vaadin/test-runner-commands": "~25.2.4",
"@vaadin/testing-helpers": "^2.0.0",

@@ -48,3 +48,3 @@ "sinon": "^22.0.0"

"customElements": "custom-elements.json",
"gitHead": "3262084812870d48255afbd19b76fc8b1af32604"
"gitHead": "8671e6394dd539f76cd5e3ec885c7abf133ce3e7"
}

@@ -16,3 +16,3 @@ /**

export function defineCustomElement(CustomElement, version = '25.2.3') {
export function defineCustomElement(CustomElement, version = '25.2.4') {
Object.defineProperty(CustomElement, 'version', {

@@ -19,0 +19,0 @@ get() {

@@ -91,3 +91,8 @@ /**

// Need to defer reordering until the user lets go of the scroll bar handle.
this.scrollTarget.addEventListener('mousedown', () => {
this.scrollTarget.addEventListener('mousedown', (event) => {
// Only handle clicks on the scroll target itself
if (event.target !== this.scrollTarget) {
return;
}
this.__mouseDown = true;

@@ -94,0 +99,0 @@ });