@schneideress/dashboardframework 0.0.175 → 0.0.177
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 +3 -3
- 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 +3 -3
- package/esm2015/lib/ra.gridster.config.js +2 -2
- package/esm5/lib/ra.dashboard.responsive.service.js +3 -3
- package/esm5/lib/ra.gridster.config.js +2 -2
- package/fesm2015/schneideress-dashboardframework.js +3 -3
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +3 -3
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/package.json +1 -1
|
@@ -431,7 +431,7 @@ var GridsterConfigDefaultSettings = {
|
|
|
431
431
|
maxItemRows: 1000,
|
|
432
432
|
minItemRows: 1,
|
|
433
433
|
maxItemArea: 1000,
|
|
434
|
-
minItemArea:
|
|
434
|
+
minItemArea: 1,
|
|
435
435
|
defaultItemCols: 1,
|
|
436
436
|
defaultItemRows: 1,
|
|
437
437
|
keepFixedHeightInMobile: false,
|
|
@@ -478,8 +478,8 @@ var RADashboardResponsiveService = /** @class */ (function () {
|
|
|
478
478
|
this.resInfo = [
|
|
479
479
|
{ 'start': 0, 'end': 767, 'minCols': 1, 'maxCols': 1 },
|
|
480
480
|
{ 'start': 768, 'end': 1024, 'minCols': 1, 'maxCols': 2 },
|
|
481
|
-
{ 'start': 1025, 'end': 1366, 'minCols':
|
|
482
|
-
{ 'start': 1367, 'end': 9999999999, 'minCols':
|
|
481
|
+
{ 'start': 1025, 'end': 1366, 'minCols': 1, 'maxCols': 6 },
|
|
482
|
+
{ 'start': 1367, 'end': 9999999999, 'minCols': 1, 'maxCols': 8 }
|
|
483
483
|
];
|
|
484
484
|
this.setScreenWidth();
|
|
485
485
|
window.addEventListener('resize', (/**
|