🎩 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.1.6
to
25.1.7
+4
-4
package.json
{
"name": "@vaadin/component-base",
"version": "25.1.6",
"version": "25.1.7",
"publishConfig": {

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

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

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

"customElements": "custom-elements.json",
"gitHead": "75fe4575b9210768058cd6994ea00066e408d4a6"
"gitHead": "9872e9dc95ced20136b2f5373760d8e47bf9d44b"
}

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

export function defineCustomElement(CustomElement, version = '25.1.6') {
export function defineCustomElement(CustomElement, version = '25.1.7') {
Object.defineProperty(CustomElement, 'version', {

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

@@ -93,3 +93,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;

@@ -96,0 +101,0 @@ });