@vaadin/component-base 24.7.0-alpha9 → 24.7.0-beta1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/component-base",
3
- "version": "24.7.0-alpha9",
3
+ "version": "24.7.0-beta1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -38,10 +38,10 @@
38
38
  "lit": "^3.0.0"
39
39
  },
40
40
  "devDependencies": {
41
- "@vaadin/chai-plugins": "24.7.0-alpha9",
42
- "@vaadin/test-runner-commands": "24.7.0-alpha9",
41
+ "@vaadin/chai-plugins": "24.7.0-beta1",
42
+ "@vaadin/test-runner-commands": "24.7.0-beta1",
43
43
  "@vaadin/testing-helpers": "^1.1.0",
44
44
  "sinon": "^18.0.0"
45
45
  },
46
- "gitHead": "b0a16c6ed7fc50a22a42dcab0649d74f4c300485"
46
+ "gitHead": "4043c518ef9b915cde612d2907ddc9bd10e5af17"
47
47
  }
package/src/define.js CHANGED
@@ -13,7 +13,7 @@ function dashToCamelCase(dash) {
13
13
 
14
14
  const experimentalMap = {};
15
15
 
16
- export function defineCustomElement(CustomElement, version = '24.7.0-alpha9') {
16
+ export function defineCustomElement(CustomElement, version = '24.7.0-beta1') {
17
17
  Object.defineProperty(CustomElement, 'version', {
18
18
  get() {
19
19
  return version;
package/src/gestures.js CHANGED
@@ -583,7 +583,6 @@ register({
583
583
  return;
584
584
  }
585
585
  const t = _findOriginalTarget(e);
586
- // eslint-disable-next-line @typescript-eslint/no-this-alias
587
586
  const self = this;
588
587
  const movefn = (e) => {
589
588
  if (!hasLeftMouseButton(e)) {
@@ -694,7 +693,6 @@ register({
694
693
  return;
695
694
  }
696
695
  const t = _findOriginalTarget(e);
697
- // eslint-disable-next-line @typescript-eslint/no-this-alias
698
696
  const self = this;
699
697
  const movefn = (e) => {
700
698
  const x = e.clientX,
@@ -3,8 +3,6 @@
3
3
  * Copyright (c) 2021 - 2025 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
- /* eslint-disable @typescript-eslint/member-ordering */
7
- // https://github.com/vaadin/eslint-config-vaadin/issues/33
8
6
  import { animationFrame, microTask, timeOut } from './async.js';
9
7
  import { isSafari } from './browser-utils.js';
10
8
  import { Debouncer, flush } from './debounce.js';