@smartsoft001/crud-shell-angular 1.1.681 → 1.1.685

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.
@@ -262,16 +262,10 @@
262
262
  r[k] = a[j];
263
263
  return r;
264
264
  }
265
- function __spreadArray(to, from, pack) {
266
- if (pack || arguments.length === 2)
267
- for (var i = 0, l = from.length, ar; i < l; i++) {
268
- if (ar || !(i in from)) {
269
- if (!ar)
270
- ar = Array.prototype.slice.call(from, 0, i);
271
- ar[i] = from[i];
272
- }
273
- }
274
- return to.concat(ar || Array.prototype.slice.call(from));
265
+ function __spreadArray(to, from) {
266
+ for (var i = 0, il = from.length, j = to.length; i < il; i++, j++)
267
+ to[j] = from[i];
268
+ return to;
275
269
  }
276
270
  function __await(v) {
277
271
  return this instanceof __await ? (this.v = v, this) : new __await(v);
@@ -1602,12 +1596,7 @@
1602
1596
  };
1603
1597
  CrudService.prototype.getList = function (filter) {
1604
1598
  if (filter === void 0) { filter = null; }
1605
- return this.http.get(this.config.apiUrl + this.getQuery(filter)).pipe(operators.map(function (r) {
1606
- for (var index = 0; index < 8; index++) {
1607
- r.data = __spreadArray(__spreadArray([], __read(r.data)), __read(r.data));
1608
- }
1609
- return r;
1610
- }));
1599
+ return this.http.get(this.config.apiUrl + this.getQuery(filter));
1611
1600
  };
1612
1601
  CrudService.prototype.exportList = function (filter, format) {
1613
1602
  if (filter === void 0) { filter = null; }