@vaadin/side-nav 24.5.0-alpha7 → 24.5.0-alpha9
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/README.md
CHANGED
|
@@ -20,13 +20,9 @@ A web component for navigation menus.
|
|
|
20
20
|
<vaadin-icon icon="vaadin:folder-open" slot="prefix"></vaadin-icon>
|
|
21
21
|
Parent
|
|
22
22
|
|
|
23
|
-
<vaadin-side-nav-item path="/child1" slot="children">
|
|
24
|
-
Child 1
|
|
25
|
-
</vaadin-side-nav-item>
|
|
23
|
+
<vaadin-side-nav-item path="/child1" slot="children"> Child 1 </vaadin-side-nav-item>
|
|
26
24
|
|
|
27
|
-
<vaadin-side-nav-item path="/child2" slot="children">
|
|
28
|
-
Child 2
|
|
29
|
-
</vaadin-side-nav-item>
|
|
25
|
+
<vaadin-side-nav-item path="/child2" slot="children"> Child 2 </vaadin-side-nav-item>
|
|
30
26
|
</vaadin-side-nav-item>
|
|
31
27
|
</vaadin-side-nav>
|
|
32
28
|
```
|
|
@@ -70,7 +66,7 @@ import '@vaadin/side-nav/src/vaadin-side-nav.js';
|
|
|
70
66
|
|
|
71
67
|
## Contributing
|
|
72
68
|
|
|
73
|
-
Read the [contributing guide](https://vaadin.com/docs/latest/contributing
|
|
69
|
+
Read the [contributing guide](https://vaadin.com/docs/latest/contributing) to learn about our development process, how to propose bugfixes and improvements, and how to test your changes to Vaadin components.
|
|
74
70
|
|
|
75
71
|
## License
|
|
76
72
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/side-nav",
|
|
3
|
-
"version": "24.5.0-
|
|
3
|
+
"version": "24.5.0-alpha9",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -35,22 +35,22 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
38
|
-
"@vaadin/a11y-base": "24.5.0-
|
|
39
|
-
"@vaadin/component-base": "24.5.0-
|
|
40
|
-
"@vaadin/vaadin-lumo-styles": "24.5.0-
|
|
41
|
-
"@vaadin/vaadin-material-styles": "24.5.0-
|
|
42
|
-
"@vaadin/vaadin-themable-mixin": "24.5.0-
|
|
38
|
+
"@vaadin/a11y-base": "24.5.0-alpha9",
|
|
39
|
+
"@vaadin/component-base": "24.5.0-alpha9",
|
|
40
|
+
"@vaadin/vaadin-lumo-styles": "24.5.0-alpha9",
|
|
41
|
+
"@vaadin/vaadin-material-styles": "24.5.0-alpha9",
|
|
42
|
+
"@vaadin/vaadin-themable-mixin": "24.5.0-alpha9",
|
|
43
43
|
"lit": "^3.0.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@
|
|
47
|
-
"@vaadin/testing-helpers": "^0.
|
|
46
|
+
"@vaadin/chai-plugins": "24.5.0-alpha9",
|
|
47
|
+
"@vaadin/testing-helpers": "^1.0.0",
|
|
48
48
|
"lit": "^3.0.0",
|
|
49
|
-
"sinon": "^
|
|
49
|
+
"sinon": "^18.0.0"
|
|
50
50
|
},
|
|
51
51
|
"web-types": [
|
|
52
52
|
"web-types.json",
|
|
53
53
|
"web-types.lit.json"
|
|
54
54
|
],
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "804744762f3bec0a2247c4bbcbbb204dbcd78bc0"
|
|
56
56
|
}
|
|
@@ -46,8 +46,7 @@ export const sideNavStyles = css`
|
|
|
46
46
|
justify-content: center;
|
|
47
47
|
width: var(--lumo-size-s);
|
|
48
48
|
height: var(--lumo-size-s);
|
|
49
|
-
margin-inline
|
|
50
|
-
margin-inline-end: var(--lumo-space-xs);
|
|
49
|
+
margin-inline: auto var(--lumo-space-xs);
|
|
51
50
|
font-size: var(--lumo-icon-size-m);
|
|
52
51
|
line-height: 1;
|
|
53
52
|
color: var(--lumo-contrast-60pct);
|
|
@@ -37,8 +37,7 @@ export const sideNavStyles = css`
|
|
|
37
37
|
width: 24px;
|
|
38
38
|
height: 24px;
|
|
39
39
|
padding: 4px;
|
|
40
|
-
margin-inline
|
|
41
|
-
margin-inline-end: -4px;
|
|
40
|
+
margin-inline: auto -4px;
|
|
42
41
|
font-size: var(--material-icon-font-size);
|
|
43
42
|
line-height: 1;
|
|
44
43
|
color: var(--material-secondary-text-color);
|
package/web-types.json
CHANGED