@vaadin/notification 24.7.0-alpha6 → 24.7.0-alpha8
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 +11 -10
- package/src/vaadin-lit-notification.js +3 -0
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/notification",
|
|
3
|
-
"version": "24.7.0-
|
|
3
|
+
"version": "24.7.0-alpha8",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -39,17 +39,18 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
41
41
|
"@polymer/polymer": "^3.0.0",
|
|
42
|
-
"@vaadin/component-base": "24.7.0-
|
|
43
|
-
"@vaadin/lit-renderer": "24.7.0-
|
|
44
|
-
"@vaadin/overlay": "24.7.0-
|
|
45
|
-
"@vaadin/vaadin-lumo-styles": "24.7.0-
|
|
46
|
-
"@vaadin/vaadin-material-styles": "24.7.0-
|
|
47
|
-
"@vaadin/vaadin-themable-mixin": "24.7.0-
|
|
42
|
+
"@vaadin/component-base": "24.7.0-alpha8",
|
|
43
|
+
"@vaadin/lit-renderer": "24.7.0-alpha8",
|
|
44
|
+
"@vaadin/overlay": "24.7.0-alpha8",
|
|
45
|
+
"@vaadin/vaadin-lumo-styles": "24.7.0-alpha8",
|
|
46
|
+
"@vaadin/vaadin-material-styles": "24.7.0-alpha8",
|
|
47
|
+
"@vaadin/vaadin-themable-mixin": "24.7.0-alpha8",
|
|
48
48
|
"lit": "^3.0.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@vaadin/button": "24.7.0-
|
|
52
|
-
"@vaadin/chai-plugins": "24.7.0-
|
|
51
|
+
"@vaadin/button": "24.7.0-alpha8",
|
|
52
|
+
"@vaadin/chai-plugins": "24.7.0-alpha8",
|
|
53
|
+
"@vaadin/test-runner-commands": "24.7.0-alpha8",
|
|
53
54
|
"@vaadin/testing-helpers": "^1.1.0",
|
|
54
55
|
"sinon": "^18.0.0"
|
|
55
56
|
},
|
|
@@ -57,5 +58,5 @@
|
|
|
57
58
|
"web-types.json",
|
|
58
59
|
"web-types.lit.json"
|
|
59
60
|
],
|
|
60
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "d015035192480fcc8cc9df5d00a950f177b83c32"
|
|
61
62
|
}
|
|
@@ -27,6 +27,7 @@ class NotificationContainer extends NotificationContainerMixin(ElementMixin(Them
|
|
|
27
27
|
return notificationContainerStyles;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
+
/** @protected */
|
|
30
31
|
render() {
|
|
31
32
|
return html`
|
|
32
33
|
<div region="top-stretch"><slot name="top-stretch"></slot></div>
|
|
@@ -64,6 +65,7 @@ class NotificationCard extends ElementMixin(ThemableMixin(PolylitMixin(LitElemen
|
|
|
64
65
|
return notificationCardStyles;
|
|
65
66
|
}
|
|
66
67
|
|
|
68
|
+
/** @protected */
|
|
67
69
|
render() {
|
|
68
70
|
return html`
|
|
69
71
|
<div part="overlay">
|
|
@@ -103,6 +105,7 @@ class Notification extends NotificationMixin(ElementMixin(ThemableMixin(PolylitM
|
|
|
103
105
|
`;
|
|
104
106
|
}
|
|
105
107
|
|
|
108
|
+
/** @protected */
|
|
106
109
|
render() {
|
|
107
110
|
return html`
|
|
108
111
|
<vaadin-notification-card
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED