@vaadin/field-base 24.3.0-alpha10 → 24.3.0-alpha11

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/field-base",
3
- "version": "24.3.0-alpha10",
3
+ "version": "24.3.0-alpha11",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -32,8 +32,8 @@
32
32
  "dependencies": {
33
33
  "@open-wc/dedupe-mixin": "^1.3.0",
34
34
  "@polymer/polymer": "^3.0.0",
35
- "@vaadin/a11y-base": "24.3.0-alpha10",
36
- "@vaadin/component-base": "24.3.0-alpha10",
35
+ "@vaadin/a11y-base": "24.3.0-alpha11",
36
+ "@vaadin/component-base": "24.3.0-alpha11",
37
37
  "lit": "^3.0.0"
38
38
  },
39
39
  "devDependencies": {
@@ -41,5 +41,5 @@
41
41
  "@vaadin/testing-helpers": "^0.6.0",
42
42
  "sinon": "^13.0.2"
43
43
  },
44
- "gitHead": "0271523d93fe5df0425ff64206886614f3c6f401"
44
+ "gitHead": "123cf569a1b6ef6f4ef5fe8e60cb8d988699b98c"
45
45
  }
@@ -48,12 +48,6 @@ export const CheckedMixin = dedupingMixin(
48
48
  const input = event.target;
49
49
 
50
50
  this._toggleChecked(input.checked);
51
-
52
- // Clicking the checkbox or radio-button in Safari
53
- // does not make it focused, so we do it manually.
54
- if (!isElementFocused(input)) {
55
- input.focus();
56
- }
57
51
  }
58
52
 
59
53
  /** @protected */