@eui/core 10.6.18 → 10.6.19
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/bundles/eui-core.umd.js +4 -0
- package/bundles/eui-core.umd.js.map +1 -1
- package/bundles/eui-core.umd.min.js +1 -1
- package/bundles/eui-core.umd.min.js.map +1 -1
- package/docs/injectables/UxAppShellService.html +39 -0
- package/docs/interfaces/UIState.html +38 -0
- package/docs/js/search/search_index.js +2 -2
- package/docs/miscellaneous/variables.html +1 -0
- package/esm2015/lib/services/ux-app-shell.service.js +5 -1
- package/fesm2015/eui-core.js +4 -0
- package/fesm2015/eui-core.js.map +1 -1
- package/lib/services/ux-app-shell.service.d.ts +2 -0
- package/package.json +1 -1
package/bundles/eui-core.umd.js
CHANGED
|
@@ -1479,6 +1479,7 @@
|
|
|
1479
1479
|
environmentValue: '',
|
|
1480
1480
|
isSidebarHidden: false,
|
|
1481
1481
|
hasToolbar: false,
|
|
1482
|
+
hasToolbarMenu: false,
|
|
1482
1483
|
hasTopMessage: false,
|
|
1483
1484
|
windowWidth: 0,
|
|
1484
1485
|
windowHeight: 0,
|
|
@@ -1761,6 +1762,9 @@
|
|
|
1761
1762
|
this.setState(Object.assign(Object.assign({}, this.state), { hasToolbar: true }));
|
|
1762
1763
|
this.activateToolbarCssVars();
|
|
1763
1764
|
};
|
|
1765
|
+
UxAppShellService.prototype.activateToolbarMenu = function () {
|
|
1766
|
+
this.setState(Object.assign(Object.assign({}, this.state), { hasToolbarMenu: true }));
|
|
1767
|
+
};
|
|
1764
1768
|
UxAppShellService.prototype.fetchCssVars = function () {
|
|
1765
1769
|
var _this = this;
|
|
1766
1770
|
var cssVarNames = [
|