@schneideress/dashboardframework 0.0.163 → 0.0.165
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/schneideress-dashboardframework.umd.js +8 -2
- package/bundles/schneideress-dashboardframework.umd.js.map +1 -1
- package/bundles/schneideress-dashboardframework.umd.min.js +1 -1
- package/bundles/schneideress-dashboardframework.umd.min.js.map +1 -1
- package/esm2015/lib/ra.dashboard.responsive.service.js +9 -3
- package/esm5/lib/ra.dashboard.responsive.service.js +9 -3
- package/fesm2015/schneideress-dashboardframework.js +8 -2
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +8 -2
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/package.json +1 -1
|
@@ -683,8 +683,8 @@
|
|
|
683
683
|
var _this = this;
|
|
684
684
|
this.resInfo = [
|
|
685
685
|
{ 'start': 0, 'end': 767, 'minCols': 1, 'maxCols': 1 },
|
|
686
|
-
{ 'start': 768, 'end':
|
|
687
|
-
{ 'start':
|
|
686
|
+
{ 'start': 768, 'end': 1024, 'minCols': 1, 'maxCols': 2 },
|
|
687
|
+
{ 'start': 1025, 'end': 1366, 'minCols': 2, 'maxCols': 6 },
|
|
688
688
|
{ 'start': 1367, 'end': 9999999999, 'minCols': 2, 'maxCols': 8 }
|
|
689
689
|
];
|
|
690
690
|
this.setScreenWidth();
|
|
@@ -706,6 +706,10 @@
|
|
|
706
706
|
function () {
|
|
707
707
|
var _this = this;
|
|
708
708
|
this.screenWidth = screen.width;
|
|
709
|
+
console.log('$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$');
|
|
710
|
+
console.log(this.screenWidth);
|
|
711
|
+
console.log(this.IsDesktopView);
|
|
712
|
+
console.log(this.IsMobile);
|
|
709
713
|
if (this.IsDesktopView) {
|
|
710
714
|
this.currentResInfo = this.resInfo[3];
|
|
711
715
|
console.log('current res info is');
|
|
@@ -723,6 +727,8 @@
|
|
|
723
727
|
return item.end >= _this.screenWidth && item.start <= _this.screenWidth;
|
|
724
728
|
}))[0];
|
|
725
729
|
}
|
|
730
|
+
console.log(this.currentResInfo);
|
|
731
|
+
console.log('$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$');
|
|
726
732
|
};
|
|
727
733
|
Object.defineProperty(RADashboardResponsiveService.prototype, "IsDesktopView", {
|
|
728
734
|
get: /**
|