@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
|
@@ -5818,6 +5818,17 @@
|
|
|
5818
5818
|
_this.init();
|
|
5819
5819
|
});
|
|
5820
5820
|
}
|
|
5821
|
+
/**
|
|
5822
|
+
* @return {?}
|
|
5823
|
+
*/
|
|
5824
|
+
RaBaseDashboardTemplate.prototype.ngOnInit = /**
|
|
5825
|
+
* @return {?}
|
|
5826
|
+
*/
|
|
5827
|
+
function () {
|
|
5828
|
+
/** @type {?} */
|
|
5829
|
+
var myEvent = new CustomEvent("event-template-initiated");
|
|
5830
|
+
document.body.dispatchEvent(myEvent);
|
|
5831
|
+
};
|
|
5821
5832
|
RaBaseDashboardTemplate.propDecorators = {
|
|
5822
5833
|
dashboardId: [{ type: core.Input, args: ['dashboard-id',] }],
|
|
5823
5834
|
globalFilter: [{ type: core.Input, args: ['global-filter',] }],
|