@vaadin/side-nav 25.0.0-alpha17 → 25.0.0-alpha18
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/side-nav",
|
|
3
|
-
"version": "25.0.0-
|
|
3
|
+
"version": "25.0.0-alpha18",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -34,16 +34,16 @@
|
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
37
|
-
"@vaadin/a11y-base": "25.0.0-
|
|
38
|
-
"@vaadin/component-base": "25.0.0-
|
|
39
|
-
"@vaadin/vaadin-themable-mixin": "25.0.0-
|
|
37
|
+
"@vaadin/a11y-base": "25.0.0-alpha18",
|
|
38
|
+
"@vaadin/component-base": "25.0.0-alpha18",
|
|
39
|
+
"@vaadin/vaadin-themable-mixin": "25.0.0-alpha18",
|
|
40
40
|
"lit": "^3.0.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@vaadin/chai-plugins": "25.0.0-
|
|
44
|
-
"@vaadin/test-runner-commands": "25.0.0-
|
|
43
|
+
"@vaadin/chai-plugins": "25.0.0-alpha18",
|
|
44
|
+
"@vaadin/test-runner-commands": "25.0.0-alpha18",
|
|
45
45
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
46
|
-
"@vaadin/vaadin-lumo-styles": "25.0.0-
|
|
46
|
+
"@vaadin/vaadin-lumo-styles": "25.0.0-alpha18",
|
|
47
47
|
"lit": "^3.0.0",
|
|
48
48
|
"sinon": "^21.0.0"
|
|
49
49
|
},
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"web-types.json",
|
|
52
52
|
"web-types.lit.json"
|
|
53
53
|
],
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "cb5cafb5687a117ebead1b81e2116991cec13abe"
|
|
55
55
|
}
|
|
@@ -102,16 +102,21 @@ const sideNavItem = css`
|
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
@media (forced-colors: active) {
|
|
105
|
+
[part='content'] {
|
|
106
|
+
border: 1px solid Canvas !important;
|
|
107
|
+
}
|
|
108
|
+
|
|
105
109
|
:host([current]) [part='content'] {
|
|
106
|
-
color: Highlight;
|
|
110
|
+
color: Highlight !important;
|
|
111
|
+
border-color: Highlight !important;
|
|
107
112
|
}
|
|
108
113
|
|
|
109
114
|
:host([disabled]) [part='content'] {
|
|
110
|
-
--vaadin-side-nav-item-color: GrayText;
|
|
115
|
+
--vaadin-side-nav-item-color: GrayText !important;
|
|
111
116
|
}
|
|
112
117
|
|
|
113
118
|
:host([disabled]) [part='toggle-button']::before {
|
|
114
|
-
background: GrayText;
|
|
119
|
+
background: GrayText !important;
|
|
115
120
|
}
|
|
116
121
|
}
|
|
117
122
|
`;
|
package/web-types.json
CHANGED