@vaadin/date-picker 25.1.10 → 25.1.12

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/date-picker",
3
- "version": "25.1.10",
3
+ "version": "25.1.12",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,21 +35,21 @@
35
35
  ],
36
36
  "dependencies": {
37
37
  "@open-wc/dedupe-mixin": "^1.3.0",
38
- "@vaadin/a11y-base": "~25.1.10",
39
- "@vaadin/button": "~25.1.10",
40
- "@vaadin/component-base": "~25.1.10",
41
- "@vaadin/field-base": "~25.1.10",
42
- "@vaadin/input-container": "~25.1.10",
43
- "@vaadin/overlay": "~25.1.10",
44
- "@vaadin/vaadin-themable-mixin": "~25.1.10",
38
+ "@vaadin/a11y-base": "~25.1.12",
39
+ "@vaadin/button": "~25.1.12",
40
+ "@vaadin/component-base": "~25.1.12",
41
+ "@vaadin/field-base": "~25.1.12",
42
+ "@vaadin/input-container": "~25.1.12",
43
+ "@vaadin/overlay": "~25.1.12",
44
+ "@vaadin/vaadin-themable-mixin": "~25.1.12",
45
45
  "lit": "^3.0.0"
46
46
  },
47
47
  "devDependencies": {
48
- "@vaadin/aura": "~25.1.10",
49
- "@vaadin/chai-plugins": "~25.1.10",
50
- "@vaadin/test-runner-commands": "~25.1.10",
48
+ "@vaadin/aura": "~25.1.12",
49
+ "@vaadin/chai-plugins": "~25.1.12",
50
+ "@vaadin/test-runner-commands": "~25.1.12",
51
51
  "@vaadin/testing-helpers": "^2.0.0",
52
- "@vaadin/vaadin-lumo-styles": "~25.1.10",
52
+ "@vaadin/vaadin-lumo-styles": "~25.1.12",
53
53
  "sinon": "^21.0.2"
54
54
  },
55
55
  "customElements": "custom-elements.json",
@@ -57,5 +57,5 @@
57
57
  "web-types.json",
58
58
  "web-types.lit.json"
59
59
  ],
60
- "gitHead": "941297a1015ae11bb75d90c0b3c52302e741a528"
60
+ "gitHead": "a83f7aa5ab76b317eb25e99cf9c96a8c72341e95"
61
61
  }
@@ -408,7 +408,10 @@ export const DatePickerMixin = (subclass) =>
408
408
  super._onFocus(event);
409
409
 
410
410
  if (this._noInput && !isKeyboardActive()) {
411
+ // Blur to hide the virtual keyboard, but do not validate.
412
+ this.__ignoreInternalBlur = true;
411
413
  event.target.blur();
414
+ this.__ignoreInternalBlur = false;
412
415
  }
413
416
  }
414
417
 
@@ -419,6 +422,10 @@ export const DatePickerMixin = (subclass) =>
419
422
  _onBlur(event) {
420
423
  super._onBlur(event);
421
424
 
425
+ if (this.__ignoreInternalBlur) {
426
+ return;
427
+ }
428
+
422
429
  if (!this.opened) {
423
430
  this.__commitParsedOrFocusedDate();
424
431
 
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/date-picker",
4
- "version": "25.1.10",
4
+ "version": "25.1.12",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/date-picker",
4
- "version": "25.1.10",
4
+ "version": "25.1.12",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {