@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 +13 -13
- package/src/vaadin-date-picker-mixin.js +7 -0
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/date-picker",
|
|
3
|
-
"version": "25.1.
|
|
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.
|
|
39
|
-
"@vaadin/button": "~25.1.
|
|
40
|
-
"@vaadin/component-base": "~25.1.
|
|
41
|
-
"@vaadin/field-base": "~25.1.
|
|
42
|
-
"@vaadin/input-container": "~25.1.
|
|
43
|
-
"@vaadin/overlay": "~25.1.
|
|
44
|
-
"@vaadin/vaadin-themable-mixin": "~25.1.
|
|
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.
|
|
49
|
-
"@vaadin/chai-plugins": "~25.1.
|
|
50
|
-
"@vaadin/test-runner-commands": "~25.1.
|
|
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.
|
|
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": "
|
|
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