@vaadin/split-layout 24.1.0-alpha6 → 24.1.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 +6 -6
- package/src/vaadin-split-layout.js +10 -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/split-layout",
|
|
3
|
-
"version": "24.1.0-
|
|
3
|
+
"version": "24.1.0-alpha8",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@polymer/polymer": "^3.0.0",
|
|
39
|
-
"@vaadin/component-base": "24.1.0-
|
|
40
|
-
"@vaadin/vaadin-lumo-styles": "24.1.0-
|
|
41
|
-
"@vaadin/vaadin-material-styles": "24.1.0-
|
|
42
|
-
"@vaadin/vaadin-themable-mixin": "24.1.0-
|
|
39
|
+
"@vaadin/component-base": "24.1.0-alpha8",
|
|
40
|
+
"@vaadin/vaadin-lumo-styles": "24.1.0-alpha8",
|
|
41
|
+
"@vaadin/vaadin-material-styles": "24.1.0-alpha8",
|
|
42
|
+
"@vaadin/vaadin-themable-mixin": "24.1.0-alpha8"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@esm-bundle/chai": "^4.3.4",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"web-types.json",
|
|
51
51
|
"web-types.lit.json"
|
|
52
52
|
],
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "1996d6f496a68cefc4c370c45a5d1995c3276c0b"
|
|
54
54
|
}
|
|
@@ -200,6 +200,16 @@ class SplitLayout extends ElementMixin(ThemableMixin(PolymerElement)) {
|
|
|
200
200
|
left: 50%;
|
|
201
201
|
transform: translate3d(-50%, -50%, 0);
|
|
202
202
|
}
|
|
203
|
+
|
|
204
|
+
@media (forced-colors: active) {
|
|
205
|
+
[part~='splitter'] {
|
|
206
|
+
outline: 1px solid;
|
|
207
|
+
}
|
|
208
|
+
[part~='handle']::after {
|
|
209
|
+
background-color: AccentColor !important;
|
|
210
|
+
forced-color-adjust: none;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
203
213
|
</style>
|
|
204
214
|
<slot id="primary" name="primary"></slot>
|
|
205
215
|
<div part="splitter" id="splitter">
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED