@vaadin/component-base
Advanced tools
+4
-4
| { | ||
| "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" | ||
| } |
+1
-1
@@ -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 @@ }); |
249586
0.06%7087
0.06%