@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
|
@@ -6942,6 +6942,12 @@ var RaBaseDashboardFilter = /** @class */ (function () {
|
|
|
6942
6942
|
function (globalFilter, appConfig) {
|
|
6943
6943
|
_this.setFilterConfig(globalFilter, appConfig);
|
|
6944
6944
|
});
|
|
6945
|
+
this.clearAllData = (/**
|
|
6946
|
+
* @return {?}
|
|
6947
|
+
*/
|
|
6948
|
+
function () {
|
|
6949
|
+
_this.clearData();
|
|
6950
|
+
});
|
|
6945
6951
|
}
|
|
6946
6952
|
/**
|
|
6947
6953
|
* @return {?}
|
|
@@ -6956,7 +6962,8 @@ var RaBaseDashboardFilter = /** @class */ (function () {
|
|
|
6956
6962
|
};
|
|
6957
6963
|
RaBaseDashboardFilter.propDecorators = {
|
|
6958
6964
|
getAllFilterConfig: [{ type: Input }],
|
|
6959
|
-
setAllFilterConfig: [{ type: Input }]
|
|
6965
|
+
setAllFilterConfig: [{ type: Input }],
|
|
6966
|
+
clearAllData: [{ type: Input }]
|
|
6960
6967
|
};
|
|
6961
6968
|
return RaBaseDashboardFilter;
|
|
6962
6969
|
}());
|
|
@@ -6968,6 +6975,8 @@ if (false) {
|
|
|
6968
6975
|
RaBaseDashboardFilter.prototype.getAllFilterConfig;
|
|
6969
6976
|
/** @type {?} */
|
|
6970
6977
|
RaBaseDashboardFilter.prototype.setAllFilterConfig;
|
|
6978
|
+
/** @type {?} */
|
|
6979
|
+
RaBaseDashboardFilter.prototype.clearAllData;
|
|
6971
6980
|
/**
|
|
6972
6981
|
* @abstract
|
|
6973
6982
|
* @return {?}
|
|
@@ -6980,6 +6989,11 @@ if (false) {
|
|
|
6980
6989
|
* @return {?}
|
|
6981
6990
|
*/
|
|
6982
6991
|
RaBaseDashboardFilter.prototype.setFilterConfig = function (filter, appConfig) { };
|
|
6992
|
+
/**
|
|
6993
|
+
* @abstract
|
|
6994
|
+
* @return {?}
|
|
6995
|
+
*/
|
|
6996
|
+
RaBaseDashboardFilter.prototype.clearData = function () { };
|
|
6983
6997
|
}
|
|
6984
6998
|
|
|
6985
6999
|
/**
|