@tripup-company/element-ui-extended 0.0.71 → 0.0.72

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.
@@ -25664,6 +25664,39 @@ var group_by_filter_GroupByFilter = /*#__PURE__*/function (_BaseFilter) {
25664
25664
 
25665
25665
  return GroupByFilter;
25666
25666
  }(base_filter_BaseFilter);
25667
+ // CONCATENATED MODULE: ./src/components/GenericFilters/filters/bool-filter.ts
25668
+
25669
+
25670
+
25671
+
25672
+
25673
+ var bool_filter_BoolFilter = /*#__PURE__*/function (_BaseFilter) {
25674
+ _inherits(BoolFilter, _BaseFilter);
25675
+
25676
+ var _super = _createSuper(BoolFilter);
25677
+
25678
+ function BoolFilter() {
25679
+ var _this;
25680
+
25681
+ _classCallCheck(this, BoolFilter);
25682
+
25683
+ _this = _super.apply(this, arguments);
25684
+ _this.operator = 'bool';
25685
+ return _this;
25686
+ }
25687
+
25688
+ _createClass(BoolFilter, [{
25689
+ key: "applyFilter",
25690
+ value: function applyFilter() {
25691
+ return {
25692
+ searchItem: this.field + ':' + this.value,
25693
+ searchFieldItem: this.field + ':' + this.operator
25694
+ };
25695
+ }
25696
+ }]);
25697
+
25698
+ return BoolFilter;
25699
+ }(base_filter_BaseFilter);
25667
25700
  // CONCATENATED MODULE: ./src/components/GenericFilters/filter-factory.ts
25668
25701
 
25669
25702
 
@@ -25684,6 +25717,7 @@ var group_by_filter_GroupByFilter = /*#__PURE__*/function (_BaseFilter) {
25684
25717
 
25685
25718
 
25686
25719
 
25720
+
25687
25721
 
25688
25722
 
25689
25723
  var filter_factory_FilterFactory = /*#__PURE__*/function () {
@@ -25757,6 +25791,9 @@ var filter_factory_FilterFactory = /*#__PURE__*/function () {
25757
25791
  },
25758
25792
  in_array_of_object: function in_array_of_object(field, value) {
25759
25793
  return new in_array_of_object_InArrayOfObject(field, value);
25794
+ },
25795
+ bool: function bool(field, value) {
25796
+ return new bool_filter_BoolFilter(field, value);
25760
25797
  }
25761
25798
  };
25762
25799
  }