@vaadin/app-layout 24.0.1 → 24.0.3
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 +8 -8
- package/src/vaadin-app-layout.js +3 -3
- 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/app-layout",
|
|
3
|
-
"version": "24.0.
|
|
3
|
+
"version": "24.0.3",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@polymer/polymer": "^3.0.0",
|
|
39
|
-
"@vaadin/button": "~24.0.
|
|
40
|
-
"@vaadin/component-base": "~24.0.
|
|
41
|
-
"@vaadin/vaadin-lumo-styles": "~24.0.
|
|
42
|
-
"@vaadin/vaadin-material-styles": "~24.0.
|
|
43
|
-
"@vaadin/vaadin-themable-mixin": "~24.0.
|
|
39
|
+
"@vaadin/button": "~24.0.3",
|
|
40
|
+
"@vaadin/component-base": "~24.0.3",
|
|
41
|
+
"@vaadin/vaadin-lumo-styles": "~24.0.3",
|
|
42
|
+
"@vaadin/vaadin-material-styles": "~24.0.3",
|
|
43
|
+
"@vaadin/vaadin-themable-mixin": "~24.0.3"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@esm-bundle/chai": "^4.3.4",
|
|
47
|
-
"@vaadin/tabs": "~24.0.
|
|
47
|
+
"@vaadin/tabs": "~24.0.3",
|
|
48
48
|
"@vaadin/testing-helpers": "^0.4.0",
|
|
49
49
|
"sinon": "^13.0.2"
|
|
50
50
|
},
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"web-types.json",
|
|
53
53
|
"web-types.lit.json"
|
|
54
54
|
],
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "d658b846e23aeb9c76866efcbbc86fad57193580"
|
|
56
56
|
}
|
package/src/vaadin-app-layout.js
CHANGED
|
@@ -784,10 +784,10 @@ class AppLayout extends ElementMixin(ThemableMixin(ControllerMixin(PolymerElemen
|
|
|
784
784
|
this.$.navbarTop.removeAttribute('hidden');
|
|
785
785
|
}
|
|
786
786
|
|
|
787
|
-
if (
|
|
788
|
-
this.$.navbarBottom.removeAttribute('hidden');
|
|
789
|
-
} else {
|
|
787
|
+
if (this.$.navbarBottom.querySelector('[name=navbar-bottom]').assignedNodes().length === 0) {
|
|
790
788
|
this.$.navbarBottom.setAttribute('hidden', '');
|
|
789
|
+
} else {
|
|
790
|
+
this.$.navbarBottom.removeAttribute('hidden');
|
|
791
791
|
}
|
|
792
792
|
|
|
793
793
|
this._updateOffsetSize();
|
package/web-types.json
CHANGED