@vaadin/date-picker 22.0.15 → 22.0.16

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": "22.0.15",
3
+ "version": "22.0.16",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,21 +35,21 @@
35
35
  "@polymer/iron-a11y-announcer": "^3.0.0",
36
36
  "@polymer/iron-media-query": "^3.0.0",
37
37
  "@polymer/polymer": "^3.2.0",
38
- "@vaadin/button": "^22.0.15",
39
- "@vaadin/component-base": "^22.0.15",
40
- "@vaadin/field-base": "^22.0.15",
41
- "@vaadin/input-container": "^22.0.15",
42
- "@vaadin/vaadin-lumo-styles": "^22.0.15",
43
- "@vaadin/vaadin-material-styles": "^22.0.15",
44
- "@vaadin/vaadin-overlay": "^22.0.15",
45
- "@vaadin/vaadin-themable-mixin": "^22.0.15"
38
+ "@vaadin/button": "^22.0.16",
39
+ "@vaadin/component-base": "^22.0.16",
40
+ "@vaadin/field-base": "^22.0.16",
41
+ "@vaadin/input-container": "^22.0.16",
42
+ "@vaadin/vaadin-lumo-styles": "^22.0.16",
43
+ "@vaadin/vaadin-material-styles": "^22.0.16",
44
+ "@vaadin/vaadin-overlay": "^22.0.16",
45
+ "@vaadin/vaadin-themable-mixin": "^22.0.16"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@esm-bundle/chai": "^4.3.4",
49
- "@vaadin/dialog": "^22.0.15",
50
- "@vaadin/polymer-legacy-adapter": "^22.0.15",
49
+ "@vaadin/dialog": "^22.0.16",
50
+ "@vaadin/polymer-legacy-adapter": "^22.0.16",
51
51
  "@vaadin/testing-helpers": "^0.3.2",
52
52
  "sinon": "^9.2.0"
53
53
  },
54
- "gitHead": "bba021b56ba45da93d2bb980242956ad929ecfe2"
54
+ "gitHead": "dac6f243594ea700bb796d3b41d7b17736d90be8"
55
55
  }
@@ -690,12 +690,6 @@ class DatePickerOverlayContent extends ThemableMixin(DirMixin(GestureEventListen
690
690
  }
691
691
 
692
692
  _close() {
693
- const overlayContent = this.getRootNode().host;
694
- const overlay = overlayContent ? overlayContent.getRootNode().host : null;
695
- if (overlay) {
696
- overlay.opened = false;
697
- }
698
-
699
693
  this.dispatchEvent(new CustomEvent('close', { bubbles: true, composed: true }));
700
694
  }
701
695
 
@@ -1,5 +1,6 @@
1
1
  import '@vaadin/vaadin-lumo-styles/sizing.js';
2
2
  import '@vaadin/vaadin-lumo-styles/spacing.js';
3
+ import '@vaadin/vaadin-overlay/theme/lumo/vaadin-overlay.js';
3
4
  import { menuOverlay } from '@vaadin/vaadin-lumo-styles/mixins/menu-overlay.js';
4
5
  import { css, registerStyles } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
5
6
 
@@ -1,3 +1,4 @@
1
+ import '@vaadin/vaadin-overlay/theme/material/vaadin-overlay.js';
1
2
  import { overlay } from '@vaadin/vaadin-material-styles/mixins/overlay.js';
2
3
  import { css, registerStyles } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
3
4