@vaadin/master-detail-layout 24.9.2 → 24.9.4
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/master-detail-layout",
|
|
3
|
-
"version": "24.9.
|
|
3
|
+
"version": "24.9.4",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -34,15 +34,15 @@
|
|
|
34
34
|
"web-component"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@vaadin/a11y-base": "~24.9.
|
|
38
|
-
"@vaadin/component-base": "~24.9.
|
|
39
|
-
"@vaadin/vaadin-lumo-styles": "~24.9.
|
|
40
|
-
"@vaadin/vaadin-material-styles": "~24.9.
|
|
41
|
-
"@vaadin/vaadin-themable-mixin": "~24.9.
|
|
37
|
+
"@vaadin/a11y-base": "~24.9.4",
|
|
38
|
+
"@vaadin/component-base": "~24.9.4",
|
|
39
|
+
"@vaadin/vaadin-lumo-styles": "~24.9.4",
|
|
40
|
+
"@vaadin/vaadin-material-styles": "~24.9.4",
|
|
41
|
+
"@vaadin/vaadin-themable-mixin": "~24.9.4",
|
|
42
42
|
"lit": "^3.0.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@vaadin/chai-plugins": "~24.9.
|
|
45
|
+
"@vaadin/chai-plugins": "~24.9.4",
|
|
46
46
|
"@vaadin/testing-helpers": "^1.1.0",
|
|
47
47
|
"sinon": "^18.0.0"
|
|
48
48
|
},
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"web-types.json",
|
|
51
51
|
"web-types.lit.json"
|
|
52
52
|
],
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "7084e972641ef2355ffc281cbd932c070f998ed1"
|
|
54
54
|
}
|
|
@@ -192,11 +192,8 @@ class MasterDetailLayout extends SlotStylesMixin(ResizeMixin(ElementMixin(Themab
|
|
|
192
192
|
background-color: rgba(0, 0, 0, 0.2);
|
|
193
193
|
}
|
|
194
194
|
|
|
195
|
-
[part='detail'] {
|
|
196
|
-
background: #fff;
|
|
197
|
-
}
|
|
198
|
-
|
|
199
195
|
:host(:is([drawer], [stack])) [part='detail'] {
|
|
196
|
+
background-color: #fff;
|
|
200
197
|
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
|
|
201
198
|
}
|
|
202
199
|
|
package/web-types.json
CHANGED