@dev-tcloud/tcloud-ui 0.0.55 → 0.0.56

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.
@@ -2601,6 +2601,7 @@ var TCFiltersType;
2601
2601
  TCFiltersType["select"] = "select";
2602
2602
  TCFiltersType["boolean"] = "boolean";
2603
2603
  TCFiltersType["datetime"] = "datetime-local";
2604
+ TCFiltersType["hidden"] = "hidden";
2604
2605
  })(TCFiltersType || (TCFiltersType = {}));
2605
2606
  var TCCondition;
2606
2607
  (function (TCCondition) {
@@ -3207,7 +3208,7 @@ class TCloudUiFiltersComponent {
3207
3208
  }
3208
3209
  });
3209
3210
  }
3210
- this.onSubmit.emit(filters);
3211
+ this.onSubmit.emit(JSON.parse(JSON.stringify(this.filters)));
3211
3212
  }
3212
3213
  collectionFind(obj, path) {
3213
3214
  const pathArray = path.split(".");