@schneideress/dashboardframework 0.0.221 → 0.0.223
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 +4 -7
- 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-area/ra.dashboard.area.js +2 -2
- package/esm2015/lib/ra.dashboard.responsive.service.js +2 -7
- package/esm2015/lib/ra.event.enum.js +3 -1
- package/esm5/lib/ra-dashboard-area/ra.dashboard.area.js +2 -2
- package/esm5/lib/ra.dashboard.responsive.service.js +2 -7
- package/esm5/lib/ra.event.enum.js +3 -1
- package/fesm2015/schneideress-dashboardframework.js +4 -7
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +4 -7
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/lib/ra.event.enum.d.ts +3 -1
- package/package.json +1 -1
- package/schneideress-dashboardframework.metadata.json +1 -1
|
@@ -401,6 +401,8 @@ var RAEvent = {
|
|
|
401
401
|
/**To raise new widget add click event */
|
|
402
402
|
AddNewWidgetToDashboard: "AddNewWidgetToDashboard",
|
|
403
403
|
HideDashboardBanner: "HideDashboardBanner",
|
|
404
|
+
/**To launch flyout from custom widget library */
|
|
405
|
+
LaunchCustomWidgetFlyout: "LaunchCustomWidgetFlyout",
|
|
404
406
|
};
|
|
405
407
|
/** @enum {string} */
|
|
406
408
|
var RAEventKey = {
|
|
@@ -500,7 +502,7 @@ var RADashboardResponsiveService = /** @class */ (function () {
|
|
|
500
502
|
*/
|
|
501
503
|
function () {
|
|
502
504
|
context.setScreenWidth();
|
|
503
|
-
}),
|
|
505
|
+
}), 500);
|
|
504
506
|
}));
|
|
505
507
|
}
|
|
506
508
|
/**
|
|
@@ -516,12 +518,7 @@ var RADashboardResponsiveService = /** @class */ (function () {
|
|
|
516
518
|
this.screenWidth = window.outerWidth;
|
|
517
519
|
if (this.IsDesktopView) {
|
|
518
520
|
this.currentResInfo = this.resInfo[3];
|
|
519
|
-
// let resInfo = this.resInfo.filter((item) => {
|
|
520
|
-
// return item.end >= this.screenWidth && item.start <= this.screenWidth;
|
|
521
|
-
// })[0];
|
|
522
|
-
//if (this.currentResInfo.id != resInfo.id) {
|
|
523
521
|
this.resized.next(true);
|
|
524
|
-
//}
|
|
525
522
|
}
|
|
526
523
|
else {
|
|
527
524
|
/** @type {?} */
|
|
@@ -785,7 +782,7 @@ var RADashboardArea = /** @class */ (function () {
|
|
|
785
782
|
_this.gridcellHeight = _this.options.api.getCurrentRowHeight();
|
|
786
783
|
_this.domResized = !_this.domResized;
|
|
787
784
|
_this.setAreaHeight();
|
|
788
|
-
}));
|
|
785
|
+
}), 100);
|
|
789
786
|
}
|
|
790
787
|
else {
|
|
791
788
|
_this.widgetList = [];
|