@vaadin/master-detail-layout 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/master-detail-layout",
|
|
3
|
-
"version": "25.0.0-
|
|
3
|
+
"version": "25.0.0-alpha13",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -33,20 +33,20 @@
|
|
|
33
33
|
"web-component"
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@vaadin/a11y-base": "25.0.0-
|
|
37
|
-
"@vaadin/component-base": "25.0.0-
|
|
38
|
-
"@vaadin/vaadin-themable-mixin": "25.0.0-
|
|
36
|
+
"@vaadin/a11y-base": "25.0.0-alpha13",
|
|
37
|
+
"@vaadin/component-base": "25.0.0-alpha13",
|
|
38
|
+
"@vaadin/vaadin-themable-mixin": "25.0.0-alpha13",
|
|
39
39
|
"lit": "^3.0.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@vaadin/chai-plugins": "25.0.0-
|
|
42
|
+
"@vaadin/chai-plugins": "25.0.0-alpha13",
|
|
43
43
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
44
|
-
"@vaadin/vaadin-lumo-styles": "25.0.0-
|
|
44
|
+
"@vaadin/vaadin-lumo-styles": "25.0.0-alpha13",
|
|
45
45
|
"sinon": "^18.0.0"
|
|
46
46
|
},
|
|
47
47
|
"web-types": [
|
|
48
48
|
"web-types.json",
|
|
49
49
|
"web-types.lit.json"
|
|
50
50
|
],
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "182de596226343392135468f021bbce9e6402011"
|
|
52
52
|
}
|
|
@@ -149,12 +149,12 @@ export const masterDetailLayoutStyles = css`
|
|
|
149
149
|
|
|
150
150
|
:host([orientation='horizontal']:not([drawer], [stack])) [part='detail'] {
|
|
151
151
|
border-inline-start: var(--vaadin-master-detail-layout-border-width, 1px) solid
|
|
152
|
-
var(--vaadin-master-detail-layout-border-color, var(--vaadin-border-color));
|
|
152
|
+
var(--vaadin-master-detail-layout-border-color, var(--vaadin-border-color-subtle));
|
|
153
153
|
}
|
|
154
154
|
|
|
155
155
|
:host([orientation='vertical']:not([drawer], [stack])) [part='detail'] {
|
|
156
156
|
border-top: var(--vaadin-master-detail-layout-border-width, 1px) solid
|
|
157
|
-
var(--vaadin-master-detail-layout-border-color, var(--vaadin-border-color));
|
|
157
|
+
var(--vaadin-master-detail-layout-border-color, var(--vaadin-border-color-subtle));
|
|
158
158
|
}
|
|
159
159
|
|
|
160
160
|
@media (forced-colors: active) {
|
|
@@ -88,7 +88,14 @@ export const masterDetailLayoutTransitionStyles = css`
|
|
|
88
88
|
::view-transition-new(vaadin-mdl-master),
|
|
89
89
|
::view-transition-old(vaadin-mdl-master) {
|
|
90
90
|
object-fit: none;
|
|
91
|
-
object-position:
|
|
91
|
+
object-position: 0% 0;
|
|
92
|
+
width: 100%;
|
|
93
|
+
height: 100%;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
:dir(rtl)::view-transition-new(vaadin-mdl-master),
|
|
97
|
+
:dir(rtl)::view-transition-old(vaadin-mdl-master) {
|
|
98
|
+
object-position: 100% 0;
|
|
92
99
|
}
|
|
93
100
|
|
|
94
101
|
::view-transition-new(vaadin-mdl-master.stack-remove),
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED