@vaadin/notification 25.0.0-alpha12 → 25.0.0-alpha13
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-alpha13",
|
|
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-alpha13",
|
|
40
|
+
"@vaadin/lit-renderer": "25.0.0-alpha13",
|
|
41
|
+
"@vaadin/vaadin-themable-mixin": "25.0.0-alpha13",
|
|
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-alpha13",
|
|
46
|
+
"@vaadin/chai-plugins": "25.0.0-alpha13",
|
|
47
|
+
"@vaadin/test-runner-commands": "25.0.0-alpha13",
|
|
48
48
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
49
|
-
"@vaadin/vaadin-lumo-styles": "25.0.0-
|
|
49
|
+
"@vaadin/vaadin-lumo-styles": "25.0.0-alpha13",
|
|
50
50
|
"sinon": "^18.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": "182de596226343392135468f021bbce9e6402011"
|
|
57
57
|
}
|
|
@@ -16,10 +16,10 @@ export const notificationCardStyles = css`
|
|
|
16
16
|
box-sizing: border-box;
|
|
17
17
|
width: var(--vaadin-notification-width, 40ch);
|
|
18
18
|
max-width: 100%;
|
|
19
|
-
padding: var(--vaadin-notification-padding, var(--vaadin-padding));
|
|
19
|
+
padding: var(--vaadin-notification-padding, var(--vaadin-padding-s));
|
|
20
20
|
background: var(--vaadin-notification-background, var(--vaadin-background-container));
|
|
21
21
|
border: var(--vaadin-notification-border-width, 1px) solid
|
|
22
|
-
var(--vaadin-notification-border-color, var(--vaadin-border-color));
|
|
22
|
+
var(--vaadin-notification-border-color, var(--vaadin-border-color-subtle));
|
|
23
23
|
box-shadow: var(--vaadin-notification-shadow, 0 8px 24px -4px rgba(0, 0, 0, 0.3));
|
|
24
24
|
border-radius: var(--vaadin-notification-border-radius, var(--vaadin-radius-l));
|
|
25
25
|
cursor: default;
|
|
@@ -27,7 +27,7 @@ export const notificationCardStyles = css`
|
|
|
27
27
|
|
|
28
28
|
@media (forced-colors: active) {
|
|
29
29
|
[part='overlay'] {
|
|
30
|
-
border: 3px solid;
|
|
30
|
+
border: 3px solid !important;
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
33
|
`;
|
|
@@ -11,9 +11,9 @@ export const notificationContainerStyles = css`
|
|
|
11
11
|
/* How much space to reserve for overlay box shadow, to prevent clipping it with overflow:auto */
|
|
12
12
|
--_paint-area: 2em;
|
|
13
13
|
/* Space between notifications and the viewport */
|
|
14
|
-
--_padding: var(--vaadin-notification-viewport-inset, var(--vaadin-padding));
|
|
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-
|
|
16
|
+
--_gap: var(--vaadin-notification-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
package/web-types.lit.json
CHANGED