@tripup-company/element-ui-extended 0.0.95 → 0.0.97

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.
@@ -18676,6 +18676,26 @@ module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
18676
18676
  });
18677
18677
 
18678
18678
 
18679
+ /***/ }),
18680
+
18681
+ /***/ "498a":
18682
+ /***/ (function(module, exports, __webpack_require__) {
18683
+
18684
+ "use strict";
18685
+
18686
+ var $ = __webpack_require__("23e7");
18687
+ var $trim = __webpack_require__("58a8").trim;
18688
+ var forcedStringTrimMethod = __webpack_require__("c8d2");
18689
+
18690
+ // `String.prototype.trim` method
18691
+ // https://tc39.es/ecma262/#sec-string.prototype.trim
18692
+ $({ target: 'String', proto: true, forced: forcedStringTrimMethod('trim') }, {
18693
+ trim: function trim() {
18694
+ return $trim(this);
18695
+ }
18696
+ });
18697
+
18698
+
18679
18699
  /***/ }),
18680
18700
 
18681
18701
  /***/ "4ae1":
@@ -22583,6 +22603,28 @@ try {
22583
22603
  module.exports = g;
22584
22604
 
22585
22605
 
22606
+ /***/ }),
22607
+
22608
+ /***/ "c8d2":
22609
+ /***/ (function(module, exports, __webpack_require__) {
22610
+
22611
+ var PROPER_FUNCTION_NAME = __webpack_require__("5e77").PROPER;
22612
+ var fails = __webpack_require__("d039");
22613
+ var whitespaces = __webpack_require__("5899");
22614
+
22615
+ var non = '\u200B\u0085\u180E';
22616
+
22617
+ // check that a method works with the correct list
22618
+ // of whitespaces and has a correct name
22619
+ module.exports = function (METHOD_NAME) {
22620
+ return fails(function () {
22621
+ return !!whitespaces[METHOD_NAME]()
22622
+ || non[METHOD_NAME]() !== non
22623
+ || (PROPER_FUNCTION_NAME && whitespaces[METHOD_NAME].name !== METHOD_NAME);
22624
+ });
22625
+ };
22626
+
22627
+
22586
22628
  /***/ }),
22587
22629
 
22588
22630
  /***/ "ca84":
@@ -25116,14 +25158,18 @@ function _createSuper(Derived) {
25116
25158
  return _possibleConstructorReturn(this, result);
25117
25159
  };
25118
25160
  }
25161
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.trim.js
25162
+ var es_string_trim = __webpack_require__("498a");
25163
+
25119
25164
  // CONCATENATED MODULE: ./src/components/GenericFilters/filters/base-filter.ts
25120
25165
 
25121
25166
 
25167
+
25122
25168
  var base_filter_BaseFilter = /*#__PURE__*/_createClass(function BaseFilter(field, value) {
25123
25169
  _classCallCheck(this, BaseFilter);
25124
25170
 
25125
25171
  this.field = field;
25126
- this.value = value;
25172
+ this.value = value.trim();
25127
25173
  });
25128
25174
  // CONCATENATED MODULE: ./src/components/GenericFilters/filters/not-contains-filter.ts
25129
25175