@vaadin/date-picker 24.4.0-alpha1 → 24.4.0-dev.b3e1d14600

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": "24.4.0-alpha1",
3
+ "version": "24.4.0-dev.b3e1d14600",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -36,15 +36,15 @@
36
36
  "dependencies": {
37
37
  "@open-wc/dedupe-mixin": "^1.3.0",
38
38
  "@polymer/polymer": "^3.2.0",
39
- "@vaadin/a11y-base": "24.4.0-alpha1",
40
- "@vaadin/button": "24.4.0-alpha1",
41
- "@vaadin/component-base": "24.4.0-alpha1",
42
- "@vaadin/field-base": "24.4.0-alpha1",
43
- "@vaadin/input-container": "24.4.0-alpha1",
44
- "@vaadin/overlay": "24.4.0-alpha1",
45
- "@vaadin/vaadin-lumo-styles": "24.4.0-alpha1",
46
- "@vaadin/vaadin-material-styles": "24.4.0-alpha1",
47
- "@vaadin/vaadin-themable-mixin": "24.4.0-alpha1",
39
+ "@vaadin/a11y-base": "24.4.0-dev.b3e1d14600",
40
+ "@vaadin/button": "24.4.0-dev.b3e1d14600",
41
+ "@vaadin/component-base": "24.4.0-dev.b3e1d14600",
42
+ "@vaadin/field-base": "24.4.0-dev.b3e1d14600",
43
+ "@vaadin/input-container": "24.4.0-dev.b3e1d14600",
44
+ "@vaadin/overlay": "24.4.0-dev.b3e1d14600",
45
+ "@vaadin/vaadin-lumo-styles": "24.4.0-dev.b3e1d14600",
46
+ "@vaadin/vaadin-material-styles": "24.4.0-dev.b3e1d14600",
47
+ "@vaadin/vaadin-themable-mixin": "24.4.0-dev.b3e1d14600",
48
48
  "lit": "^3.0.0"
49
49
  },
50
50
  "devDependencies": {
@@ -56,5 +56,5 @@
56
56
  "web-types.json",
57
57
  "web-types.lit.json"
58
58
  ],
59
- "gitHead": "3e2ed41c99d618ff7def2734fd863c21c85775a3"
59
+ "gitHead": "502d4f5b03f770a83d270d98078cde230254dd0e"
60
60
  }
@@ -559,6 +559,8 @@ export const DatePickerMixin = (subclass) =>
559
559
  content.addEventListener('focused-date-changed', (e) => {
560
560
  this._focusedDate = e.detail.value;
561
561
  });
562
+
563
+ content.addEventListener('click', (e) => e.stopPropagation());
562
564
  }
563
565
 
564
566
  /**