@vaadin/notification 25.0.0-beta3 → 25.0.0-beta4
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": "25.0.0-
|
|
3
|
+
"version": "25.0.0-beta4",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -36,22 +36,22 @@
|
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
39
|
-
"@vaadin/component-base": "25.0.0-
|
|
40
|
-
"@vaadin/lit-renderer": "25.0.0-
|
|
41
|
-
"@vaadin/vaadin-themable-mixin": "25.0.0-
|
|
39
|
+
"@vaadin/component-base": "25.0.0-beta4",
|
|
40
|
+
"@vaadin/lit-renderer": "25.0.0-beta4",
|
|
41
|
+
"@vaadin/vaadin-themable-mixin": "25.0.0-beta4",
|
|
42
42
|
"lit": "^3.0.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@vaadin/button": "25.0.0-
|
|
46
|
-
"@vaadin/chai-plugins": "25.0.0-
|
|
47
|
-
"@vaadin/test-runner-commands": "25.0.0-
|
|
45
|
+
"@vaadin/button": "25.0.0-beta4",
|
|
46
|
+
"@vaadin/chai-plugins": "25.0.0-beta4",
|
|
47
|
+
"@vaadin/test-runner-commands": "25.0.0-beta4",
|
|
48
48
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
49
|
-
"@vaadin/vaadin-lumo-styles": "25.0.0-
|
|
49
|
+
"@vaadin/vaadin-lumo-styles": "25.0.0-beta4",
|
|
50
50
|
"sinon": "^21.0.0"
|
|
51
51
|
},
|
|
52
52
|
"web-types": [
|
|
53
53
|
"web-types.json",
|
|
54
54
|
"web-types.lit.json"
|
|
55
55
|
],
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "707c30af7ed0afacc13c0afb27d047b043160d1f"
|
|
57
57
|
}
|
|
@@ -13,7 +13,7 @@ export const notificationContainerStyles = css`
|
|
|
13
13
|
/* Space between notifications and the viewport */
|
|
14
14
|
--_padding: var(--vaadin-notification-viewport-inset, var(--vaadin-padding-s));
|
|
15
15
|
/* Space between notifications */
|
|
16
|
-
--_gap: var(--vaadin-notification-gap, var(--vaadin-gap-s));
|
|
16
|
+
--_gap: var(--vaadin-notification-container-gap, var(--vaadin-gap-s));
|
|
17
17
|
display: grid;
|
|
18
18
|
/* top-stretch, top and bottom regions, bottom-stretch */
|
|
19
19
|
grid-template-rows: auto 1fr auto;
|
package/web-types.json
CHANGED