@schneideress/dashboardframework 0.0.66 → 0.0.67
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 +15 -1
- 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.filter.js +16 -2
- package/esm5/lib/ra.base.dashboard.filter.js +16 -2
- package/fesm2015/schneideress-dashboardframework.js +15 -1
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +15 -1
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/lib/ra.base.dashboard.filter.d.ts +2 -0
- package/package.json +1 -1
- package/schneideress-dashboardframework.metadata.json +1 -1
|
@@ -7132,6 +7132,12 @@
|
|
|
7132
7132
|
function (globalFilter, appConfig) {
|
|
7133
7133
|
_this.setFilterConfig(globalFilter, appConfig);
|
|
7134
7134
|
});
|
|
7135
|
+
this.clearAllData = (/**
|
|
7136
|
+
* @return {?}
|
|
7137
|
+
*/
|
|
7138
|
+
function () {
|
|
7139
|
+
_this.clearData();
|
|
7140
|
+
});
|
|
7135
7141
|
}
|
|
7136
7142
|
/**
|
|
7137
7143
|
* @return {?}
|
|
@@ -7146,7 +7152,8 @@
|
|
|
7146
7152
|
};
|
|
7147
7153
|
RaBaseDashboardFilter.propDecorators = {
|
|
7148
7154
|
getAllFilterConfig: [{ type: core.Input }],
|
|
7149
|
-
setAllFilterConfig: [{ type: core.Input }]
|
|
7155
|
+
setAllFilterConfig: [{ type: core.Input }],
|
|
7156
|
+
clearAllData: [{ type: core.Input }]
|
|
7150
7157
|
};
|
|
7151
7158
|
return RaBaseDashboardFilter;
|
|
7152
7159
|
}());
|
|
@@ -7158,6 +7165,8 @@
|
|
|
7158
7165
|
RaBaseDashboardFilter.prototype.getAllFilterConfig;
|
|
7159
7166
|
/** @type {?} */
|
|
7160
7167
|
RaBaseDashboardFilter.prototype.setAllFilterConfig;
|
|
7168
|
+
/** @type {?} */
|
|
7169
|
+
RaBaseDashboardFilter.prototype.clearAllData;
|
|
7161
7170
|
/**
|
|
7162
7171
|
* @abstract
|
|
7163
7172
|
* @return {?}
|
|
@@ -7170,6 +7179,11 @@
|
|
|
7170
7179
|
* @return {?}
|
|
7171
7180
|
*/
|
|
7172
7181
|
RaBaseDashboardFilter.prototype.setFilterConfig = function (filter, appConfig) { };
|
|
7182
|
+
/**
|
|
7183
|
+
* @abstract
|
|
7184
|
+
* @return {?}
|
|
7185
|
+
*/
|
|
7186
|
+
RaBaseDashboardFilter.prototype.clearData = function () { };
|
|
7173
7187
|
}
|
|
7174
7188
|
|
|
7175
7189
|
exports.DashboardFrameworkModule = DashboardFrameworkModule;
|