@vaadin/app-layout 24.5.0-alpha1 → 24.5.0-alpha11
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
|
@@ -75,7 +75,7 @@ import '@vaadin/app-layout/src/vaadin-drawer-toggle.js';
|
|
|
75
75
|
|
|
76
76
|
## Contributing
|
|
77
77
|
|
|
78
|
-
Read the [contributing guide](https://vaadin.com/docs/latest/contributing
|
|
78
|
+
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.
|
|
79
79
|
|
|
80
80
|
## License
|
|
81
81
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/app-layout",
|
|
3
|
-
"version": "24.5.0-
|
|
3
|
+
"version": "24.5.0-alpha11",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -36,23 +36,22 @@
|
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@polymer/polymer": "^3.0.0",
|
|
39
|
-
"@vaadin/a11y-base": "24.5.0-
|
|
40
|
-
"@vaadin/button": "24.5.0-
|
|
41
|
-
"@vaadin/component-base": "24.5.0-
|
|
42
|
-
"@vaadin/vaadin-lumo-styles": "24.5.0-
|
|
43
|
-
"@vaadin/vaadin-material-styles": "24.5.0-
|
|
44
|
-
"@vaadin/vaadin-themable-mixin": "24.5.0-
|
|
39
|
+
"@vaadin/a11y-base": "24.5.0-alpha11",
|
|
40
|
+
"@vaadin/button": "24.5.0-alpha11",
|
|
41
|
+
"@vaadin/component-base": "24.5.0-alpha11",
|
|
42
|
+
"@vaadin/vaadin-lumo-styles": "24.5.0-alpha11",
|
|
43
|
+
"@vaadin/vaadin-material-styles": "24.5.0-alpha11",
|
|
44
|
+
"@vaadin/vaadin-themable-mixin": "24.5.0-alpha11",
|
|
45
45
|
"lit": "^3.0.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@
|
|
49
|
-
"@vaadin/
|
|
50
|
-
"
|
|
51
|
-
"sinon": "^13.0.2"
|
|
48
|
+
"@vaadin/chai-plugins": "24.5.0-alpha11",
|
|
49
|
+
"@vaadin/testing-helpers": "^1.0.0",
|
|
50
|
+
"sinon": "^18.0.0"
|
|
52
51
|
},
|
|
53
52
|
"web-types": [
|
|
54
53
|
"web-types.json",
|
|
55
54
|
"web-types.lit.json"
|
|
56
55
|
],
|
|
57
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "8426cea2803a10db518fc85752eeea4c5c755687"
|
|
58
57
|
}
|
package/src/vaadin-app-layout.js
CHANGED
|
@@ -194,7 +194,9 @@ class AppLayout extends ElementMixin(ThemableMixin(ControllerMixin(PolymerElemen
|
|
|
194
194
|
top: var(--vaadin-app-layout-navbar-offset-top, 0);
|
|
195
195
|
bottom: var(--vaadin-app-layout-navbar-offset-bottom, var(--vaadin-viewport-offset-bottom, 0));
|
|
196
196
|
inset-inline: var(--vaadin-app-layout-navbar-offset-left, 0) auto;
|
|
197
|
-
transition:
|
|
197
|
+
transition:
|
|
198
|
+
transform var(--vaadin-app-layout-transition),
|
|
199
|
+
visibility var(--vaadin-app-layout-transition);
|
|
198
200
|
transform: translateX(-100%);
|
|
199
201
|
max-width: 90%;
|
|
200
202
|
width: var(--_vaadin-app-layout-drawer-width);
|
|
@@ -12,12 +12,6 @@ const drawerToggle = css`
|
|
|
12
12
|
margin-inline-end: 1em;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
-
[part='icon'],
|
|
16
|
-
[part='icon']::after,
|
|
17
|
-
[part='icon']::before {
|
|
18
|
-
background-color: currentColor;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
15
|
[part='icon'] {
|
|
22
16
|
top: 18px;
|
|
23
17
|
left: 15px;
|
|
@@ -26,6 +20,7 @@ const drawerToggle = css`
|
|
|
26
20
|
[part='icon'],
|
|
27
21
|
[part='icon']::after,
|
|
28
22
|
[part='icon']::before {
|
|
23
|
+
background-color: currentColor;
|
|
29
24
|
height: 2px;
|
|
30
25
|
width: 18px;
|
|
31
26
|
}
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED