@vaadin/notification 23.0.5 → 23.0.8

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/notification",
3
- "version": "23.0.5",
3
+ "version": "23.0.8",
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/component-base": "^23.0.5",
38
- "@vaadin/vaadin-lumo-styles": "^23.0.5",
39
- "@vaadin/vaadin-material-styles": "^23.0.5",
40
- "@vaadin/vaadin-themable-mixin": "^23.0.5",
37
+ "@vaadin/component-base": "^23.0.8",
38
+ "@vaadin/vaadin-lumo-styles": "^23.0.8",
39
+ "@vaadin/vaadin-material-styles": "^23.0.8",
40
+ "@vaadin/vaadin-themable-mixin": "^23.0.8",
41
41
  "lit": "^2.0.0"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@esm-bundle/chai": "^4.3.4",
45
- "@vaadin/button": "^23.0.5",
46
- "@vaadin/polymer-legacy-adapter": "^23.0.5",
45
+ "@vaadin/button": "^23.0.8",
46
+ "@vaadin/polymer-legacy-adapter": "^23.0.8",
47
47
  "@vaadin/testing-helpers": "^0.3.2",
48
48
  "sinon": "^9.2.1"
49
49
  },
50
- "gitHead": "4cd2b11eb053d36fba9f0a8128da4e63984753e2"
50
+ "gitHead": "43fe9d95c8cd745adc7bef214c0097c47f4f83ed"
51
51
  }
@@ -328,6 +328,12 @@ class Notification extends ThemePropertyMixin(ElementMixin(PolymerElement)) {
328
328
  processTemplates(this);
329
329
  }
330
330
 
331
+ /** @protected */
332
+ disconnectedCallback() {
333
+ super.disconnectedCallback();
334
+ this.opened = false;
335
+ }
336
+
331
337
  /**
332
338
  * Requests an update for the content of the notification.
333
339
  * While performing the update, it invokes the renderer passed in the `renderer` property.