@vaadin/side-nav 24.10.1 → 24.10.2
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 +9 -9
- package/src/vaadin-side-nav-item.js +1 -1
- 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/side-nav",
|
|
3
|
-
"version": "24.10.
|
|
3
|
+
"version": "24.10.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -35,16 +35,16 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
38
|
-
"@vaadin/a11y-base": "~24.10.
|
|
39
|
-
"@vaadin/component-base": "~24.10.
|
|
40
|
-
"@vaadin/vaadin-lumo-styles": "~24.10.
|
|
41
|
-
"@vaadin/vaadin-material-styles": "~24.10.
|
|
42
|
-
"@vaadin/vaadin-themable-mixin": "~24.10.
|
|
38
|
+
"@vaadin/a11y-base": "~24.10.2",
|
|
39
|
+
"@vaadin/component-base": "~24.10.2",
|
|
40
|
+
"@vaadin/vaadin-lumo-styles": "~24.10.2",
|
|
41
|
+
"@vaadin/vaadin-material-styles": "~24.10.2",
|
|
42
|
+
"@vaadin/vaadin-themable-mixin": "~24.10.2",
|
|
43
43
|
"lit": "^3.0.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@vaadin/chai-plugins": "~24.10.
|
|
47
|
-
"@vaadin/test-runner-commands": "~24.10.
|
|
46
|
+
"@vaadin/chai-plugins": "~24.10.2",
|
|
47
|
+
"@vaadin/test-runner-commands": "~24.10.2",
|
|
48
48
|
"@vaadin/testing-helpers": "^1.1.0",
|
|
49
49
|
"lit": "^3.0.0",
|
|
50
50
|
"sinon": "^18.0.0"
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"web-types.json",
|
|
54
54
|
"web-types.lit.json"
|
|
55
55
|
],
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "2b15518bfce328f7ff4dbedc690818862d7c59c8"
|
|
57
57
|
}
|
|
@@ -339,8 +339,8 @@ class SideNavItem extends SideNavChildrenMixin(DisabledMixin(ElementMixin(Themab
|
|
|
339
339
|
const parentItem = this.__getParentItem();
|
|
340
340
|
if (parentItem) {
|
|
341
341
|
parentItem.__expandParentItems();
|
|
342
|
+
parentItem.expanded = true;
|
|
342
343
|
}
|
|
343
|
-
this.expanded = true;
|
|
344
344
|
}
|
|
345
345
|
|
|
346
346
|
/** @private */
|
package/web-types.json
CHANGED