@vaadin/date-picker 23.1.11 → 23.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": "23.1.11",
3
+ "version": "23.1.12",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -34,19 +34,19 @@
34
34
  "dependencies": {
35
35
  "@open-wc/dedupe-mixin": "^1.3.0",
36
36
  "@polymer/polymer": "^3.2.0",
37
- "@vaadin/button": "~23.1.11",
38
- "@vaadin/component-base": "~23.1.11",
39
- "@vaadin/field-base": "~23.1.11",
40
- "@vaadin/input-container": "~23.1.11",
41
- "@vaadin/vaadin-lumo-styles": "~23.1.11",
42
- "@vaadin/vaadin-material-styles": "~23.1.11",
43
- "@vaadin/vaadin-overlay": "~23.1.11",
44
- "@vaadin/vaadin-themable-mixin": "~23.1.11"
37
+ "@vaadin/button": "~23.1.12",
38
+ "@vaadin/component-base": "~23.1.12",
39
+ "@vaadin/field-base": "~23.1.12",
40
+ "@vaadin/input-container": "~23.1.12",
41
+ "@vaadin/vaadin-lumo-styles": "~23.1.12",
42
+ "@vaadin/vaadin-material-styles": "~23.1.12",
43
+ "@vaadin/vaadin-overlay": "~23.1.12",
44
+ "@vaadin/vaadin-themable-mixin": "~23.1.12"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@esm-bundle/chai": "^4.3.4",
48
48
  "@vaadin/testing-helpers": "^0.3.2",
49
49
  "sinon": "^13.0.2"
50
50
  },
51
- "gitHead": "8431798f6d50c35193817be868ddee0de021166c"
51
+ "gitHead": "0e0e63f33a535bc37103065550126a440f575b10"
52
52
  }
@@ -1082,7 +1082,7 @@ export const DatePickerMixin = (subclass) =>
1082
1082
 
1083
1083
  /** @private */
1084
1084
  _userInputValueChanged() {
1085
- if (this.opened && this._inputValue) {
1085
+ if (this._inputValue) {
1086
1086
  const parsedDate = this._getParsedDate();
1087
1087
 
1088
1088
  if (this._isValidDate(parsedDate)) {
@@ -9,13 +9,11 @@ registerStyles(
9
9
  'vaadin-date-picker-overlay-content',
10
10
  css`
11
11
  :host {
12
+ background: var(--material-background-color);
12
13
  font-family: var(--material-font-family);
13
14
  font-size: var(--material-body-font-size);
14
15
  -webkit-text-size-adjust: 100%;
15
16
  line-height: 1.4;
16
-
17
- /* FIXME(platosha): fix the core styles and remove this override. */
18
- background: transparent;
19
17
  }
20
18
 
21
19
  :host([fullscreen]) {