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