@vaadin/time-picker 23.1.3 → 23.1.4
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/time-picker",
|
|
3
|
-
"version": "23.1.
|
|
3
|
+
"version": "23.1.4",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -34,18 +34,18 @@
|
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@polymer/polymer": "^3.0.0",
|
|
37
|
-
"@vaadin/combo-box": "^23.1.
|
|
38
|
-
"@vaadin/component-base": "^23.1.
|
|
39
|
-
"@vaadin/field-base": "^23.1.
|
|
40
|
-
"@vaadin/input-container": "^23.1.
|
|
41
|
-
"@vaadin/vaadin-lumo-styles": "^23.1.
|
|
42
|
-
"@vaadin/vaadin-material-styles": "^23.1.
|
|
43
|
-
"@vaadin/vaadin-themable-mixin": "^23.1.
|
|
37
|
+
"@vaadin/combo-box": "^23.1.4",
|
|
38
|
+
"@vaadin/component-base": "^23.1.4",
|
|
39
|
+
"@vaadin/field-base": "^23.1.4",
|
|
40
|
+
"@vaadin/input-container": "^23.1.4",
|
|
41
|
+
"@vaadin/vaadin-lumo-styles": "^23.1.4",
|
|
42
|
+
"@vaadin/vaadin-material-styles": "^23.1.4",
|
|
43
|
+
"@vaadin/vaadin-themable-mixin": "^23.1.4"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@esm-bundle/chai": "^4.3.4",
|
|
47
47
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
48
48
|
"sinon": "^13.0.2"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "0a82302064f1276a000f0cbd810076539407d133"
|
|
51
51
|
}
|
|
@@ -549,7 +549,7 @@ class TimePicker extends PatternMixin(InputControlMixin(ThemableMixin(ElementMix
|
|
|
549
549
|
const newValue = this.__formatISO(parsedObj) || '';
|
|
550
550
|
|
|
551
551
|
if (this.value !== '' && this.value !== null && !parsedObj) {
|
|
552
|
-
this.value = oldValue;
|
|
552
|
+
this.value = oldValue === undefined ? '' : oldValue;
|
|
553
553
|
} else if (this.value !== newValue) {
|
|
554
554
|
this.value = newValue;
|
|
555
555
|
} else {
|