@schneideress/dashboardframework 0.0.29 → 0.0.30
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 +11 -0
- 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.base.dashboard.template.js +9 -1
- package/esm5/lib/ra.base.dashboard.template.js +12 -1
- package/fesm2015/schneideress-dashboardframework.js +8 -0
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +11 -0
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/lib/ra.base.dashboard.template.d.ts +1 -0
- package/package.json +1 -1
- package/schneideress-dashboardframework.metadata.json +1 -1
|
@@ -5784,6 +5784,17 @@ var RaBaseDashboardTemplate = /** @class */ (function () {
|
|
|
5784
5784
|
_this.init();
|
|
5785
5785
|
});
|
|
5786
5786
|
}
|
|
5787
|
+
/**
|
|
5788
|
+
* @return {?}
|
|
5789
|
+
*/
|
|
5790
|
+
RaBaseDashboardTemplate.prototype.ngOnInit = /**
|
|
5791
|
+
* @return {?}
|
|
5792
|
+
*/
|
|
5793
|
+
function () {
|
|
5794
|
+
/** @type {?} */
|
|
5795
|
+
var myEvent = new CustomEvent("event-template-initiated");
|
|
5796
|
+
document.body.dispatchEvent(myEvent);
|
|
5797
|
+
};
|
|
5787
5798
|
RaBaseDashboardTemplate.propDecorators = {
|
|
5788
5799
|
dashboardId: [{ type: Input, args: ['dashboard-id',] }],
|
|
5789
5800
|
globalFilter: [{ type: Input, args: ['global-filter',] }],
|