@vaadin/confirm-dialog 23.0.4 → 23.1.0-alpha2

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/confirm-dialog",
3
- "version": "23.0.4",
3
+ "version": "23.1.0-alpha2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -34,19 +34,19 @@
34
34
  ],
35
35
  "dependencies": {
36
36
  "@polymer/polymer": "^3.0.0",
37
- "@vaadin/button": "^23.0.4",
38
- "@vaadin/component-base": "^23.0.4",
39
- "@vaadin/dialog": "^23.0.4",
37
+ "@vaadin/button": "23.1.0-alpha2",
38
+ "@vaadin/component-base": "23.1.0-alpha2",
39
+ "@vaadin/dialog": "23.1.0-alpha2",
40
40
  "@vaadin/vaadin-license-checker": "^2.1.0",
41
- "@vaadin/vaadin-lumo-styles": "^23.0.4",
42
- "@vaadin/vaadin-material-styles": "^23.0.4",
43
- "@vaadin/vaadin-overlay": "^23.0.4",
44
- "@vaadin/vaadin-themable-mixin": "^23.0.4"
41
+ "@vaadin/vaadin-lumo-styles": "23.1.0-alpha2",
42
+ "@vaadin/vaadin-material-styles": "23.1.0-alpha2",
43
+ "@vaadin/vaadin-overlay": "23.1.0-alpha2",
44
+ "@vaadin/vaadin-themable-mixin": "23.1.0-alpha2"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@esm-bundle/chai": "^4.3.4",
48
48
  "@vaadin/testing-helpers": "^0.3.2",
49
49
  "sinon": "^9.2.1"
50
50
  },
51
- "gitHead": "d8db2046661c42fb5aac09ed683b500bf4613b26"
51
+ "gitHead": "6842dcb8b163d4512fae8d3d12a6559077a4aee6"
52
52
  }
@@ -116,7 +116,7 @@ class ConfirmDialogDialog extends Dialog {
116
116
  on-opened-changed="_onOverlayOpened"
117
117
  on-mousedown="_bringOverlayToFront"
118
118
  on-touchstart="_bringOverlayToFront"
119
- theme$="[[theme]]"
119
+ theme$="[[_theme]]"
120
120
  modeless="[[modeless]]"
121
121
  with-backdrop="[[!modeless]]"
122
122
  resizable$="[[resizable]]"
@@ -68,10 +68,7 @@ class ConfirmDialog extends SlotMixin(ElementMixin(ThemePropertyMixin(PolymerEle
68
68
  static get template() {
69
69
  return html`
70
70
  <style>
71
- :host {
72
- display: none;
73
- }
74
-
71
+ :host,
75
72
  [hidden] {
76
73
  display: none !important;
77
74
  }
@@ -81,7 +78,7 @@ class ConfirmDialog extends SlotMixin(ElementMixin(ThemePropertyMixin(PolymerEle
81
78
  id="dialog"
82
79
  opened="{{opened}}"
83
80
  aria-label="[[_getAriaLabel(header)]]"
84
- theme$="[[theme]]"
81
+ theme$="[[_theme]]"
85
82
  no-close-on-outside-click
86
83
  no-close-on-esc="[[noCloseOnEsc]]"
87
84
  ></vaadin-confirm-dialog-dialog>