@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
|
@@ -612,6 +612,8 @@
|
|
|
612
612
|
/**To raise new widget add click event */
|
|
613
613
|
AddNewWidgetToDashboard: "AddNewWidgetToDashboard",
|
|
614
614
|
HideDashboardBanner: "HideDashboardBanner",
|
|
615
|
+
/**To launch flyout from custom widget library */
|
|
616
|
+
LaunchCustomWidgetFlyout: "LaunchCustomWidgetFlyout",
|
|
615
617
|
};
|
|
616
618
|
/** @enum {string} */
|
|
617
619
|
var RAEventKey = {
|
|
@@ -711,7 +713,7 @@
|
|
|
711
713
|
*/
|
|
712
714
|
function () {
|
|
713
715
|
context.setScreenWidth();
|
|
714
|
-
}),
|
|
716
|
+
}), 500);
|
|
715
717
|
}));
|
|
716
718
|
}
|
|
717
719
|
/**
|
|
@@ -727,12 +729,7 @@
|
|
|
727
729
|
this.screenWidth = window.outerWidth;
|
|
728
730
|
if (this.IsDesktopView) {
|
|
729
731
|
this.currentResInfo = this.resInfo[3];
|
|
730
|
-
// let resInfo = this.resInfo.filter((item) => {
|
|
731
|
-
// return item.end >= this.screenWidth && item.start <= this.screenWidth;
|
|
732
|
-
// })[0];
|
|
733
|
-
//if (this.currentResInfo.id != resInfo.id) {
|
|
734
732
|
this.resized.next(true);
|
|
735
|
-
//}
|
|
736
733
|
}
|
|
737
734
|
else {
|
|
738
735
|
/** @type {?} */
|
|
@@ -996,7 +993,7 @@
|
|
|
996
993
|
_this.gridcellHeight = _this.options.api.getCurrentRowHeight();
|
|
997
994
|
_this.domResized = !_this.domResized;
|
|
998
995
|
_this.setAreaHeight();
|
|
999
|
-
}));
|
|
996
|
+
}), 100);
|
|
1000
997
|
}
|
|
1001
998
|
else {
|
|
1002
999
|
_this.widgetList = [];
|