raise-common-lib 0.0.57 → 0.0.58
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/raise-common-lib.umd.js +4 -4
- package/bundles/raise-common-lib.umd.js.map +1 -1
- package/bundles/raise-common-lib.umd.min.js +1 -1
- package/bundles/raise-common-lib.umd.min.js.map +1 -1
- package/esm2015/lib/layout/main-container/index.component.js +5 -5
- package/esm5/lib/layout/main-container/index.component.js +5 -5
- package/fesm2015/raise-common-lib.js +4 -4
- package/fesm2015/raise-common-lib.js.map +1 -1
- package/fesm5/raise-common-lib.js +4 -4
- package/fesm5/raise-common-lib.js.map +1 -1
- package/package.json +1 -1
- package/src/assets/style/reset/grid.scss +7 -1
|
@@ -19474,13 +19474,13 @@ var MainContainerComponent = /** @class */ (function () {
|
|
|
19474
19474
|
/** @type {?} */
|
|
19475
19475
|
var screenWidth = window.innerWidth;
|
|
19476
19476
|
if (screenWidth <= 992) {
|
|
19477
|
-
this.headerRef.onToggleMenu(false);
|
|
19477
|
+
this.headerRef && this.headerRef.onToggleMenu(false);
|
|
19478
19478
|
}
|
|
19479
19479
|
else if (screenWidth < 1200) {
|
|
19480
|
-
this.headerRef.onToggleMenu(true);
|
|
19480
|
+
this.headerRef && this.headerRef.onToggleMenu(true);
|
|
19481
19481
|
}
|
|
19482
19482
|
else {
|
|
19483
|
-
this.headerRef.onToggleMenu(false);
|
|
19483
|
+
this.headerRef && this.headerRef.onToggleMenu(false);
|
|
19484
19484
|
}
|
|
19485
19485
|
};
|
|
19486
19486
|
/**
|
|
@@ -19502,7 +19502,7 @@ var MainContainerComponent = /** @class */ (function () {
|
|
|
19502
19502
|
/** @type {?} */
|
|
19503
19503
|
var screenWidth = window.innerWidth;
|
|
19504
19504
|
if (screenWidth <= 992 && this.isCollapsed) {
|
|
19505
|
-
this.headerRef.onToggleMenu();
|
|
19505
|
+
this.headerRef && this.headerRef.onToggleMenu();
|
|
19506
19506
|
}
|
|
19507
19507
|
};
|
|
19508
19508
|
MainContainerComponent.decorators = [
|