@vaadin/notification 23.0.2 → 23.1.0-alpha1
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
|
|
3
|
+
"version": "23.1.0-alpha1",
|
|
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": "
|
|
38
|
-
"@vaadin/vaadin-lumo-styles": "
|
|
39
|
-
"@vaadin/vaadin-material-styles": "
|
|
40
|
-
"@vaadin/vaadin-themable-mixin": "
|
|
37
|
+
"@vaadin/component-base": "23.1.0-alpha1",
|
|
38
|
+
"@vaadin/vaadin-lumo-styles": "23.1.0-alpha1",
|
|
39
|
+
"@vaadin/vaadin-material-styles": "23.1.0-alpha1",
|
|
40
|
+
"@vaadin/vaadin-themable-mixin": "23.1.0-alpha1",
|
|
41
41
|
"lit": "^2.0.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@esm-bundle/chai": "^4.3.4",
|
|
45
|
-
"@vaadin/button": "
|
|
46
|
-
"@vaadin/polymer-legacy-adapter": "
|
|
45
|
+
"@vaadin/button": "23.1.0-alpha1",
|
|
46
|
+
"@vaadin/polymer-legacy-adapter": "23.1.0-alpha1",
|
|
47
47
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
48
48
|
"sinon": "^9.2.1"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "5d0cdee069f866037c507265fafb4d0476795333"
|
|
51
51
|
}
|
|
@@ -257,10 +257,10 @@ class Notification extends ThemePropertyMixin(ElementMixin(PolymerElement)) {
|
|
|
257
257
|
return html`
|
|
258
258
|
<style>
|
|
259
259
|
:host {
|
|
260
|
-
display: none;
|
|
260
|
+
display: none !important;
|
|
261
261
|
}
|
|
262
262
|
</style>
|
|
263
|
-
<vaadin-notification-card theme$="[[
|
|
263
|
+
<vaadin-notification-card theme$="[[_theme]]"> </vaadin-notification-card>
|
|
264
264
|
`;
|
|
265
265
|
}
|
|
266
266
|
|