@appbaseio/reactivesearch-vue 1.35.1 → 1.35.2

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.
@@ -9287,304 +9287,304 @@
9287
9287
 
9288
9288
  function _regeneratorRuntime() {
9289
9289
  _regeneratorRuntime = function () {
9290
- return exports;
9290
+ return e;
9291
9291
  };
9292
- var exports = {},
9293
- Op = Object.prototype,
9294
- hasOwn = Op.hasOwnProperty,
9295
- defineProperty = Object.defineProperty || function (obj, key, desc) {
9296
- obj[key] = desc.value;
9297
- },
9298
- $Symbol = "function" == typeof Symbol ? Symbol : {},
9299
- iteratorSymbol = $Symbol.iterator || "@@iterator",
9300
- asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator",
9301
- toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag";
9302
- function define(obj, key, value) {
9303
- return Object.defineProperty(obj, key, {
9304
- value: value,
9292
+ var t,
9293
+ e = {},
9294
+ r = Object.prototype,
9295
+ n = r.hasOwnProperty,
9296
+ o = Object.defineProperty || function (t, e, r) {
9297
+ t[e] = r.value;
9298
+ },
9299
+ i = "function" == typeof Symbol ? Symbol : {},
9300
+ a = i.iterator || "@@iterator",
9301
+ c = i.asyncIterator || "@@asyncIterator",
9302
+ u = i.toStringTag || "@@toStringTag";
9303
+ function define(t, e, r) {
9304
+ return Object.defineProperty(t, e, {
9305
+ value: r,
9305
9306
  enumerable: !0,
9306
9307
  configurable: !0,
9307
9308
  writable: !0
9308
- }), obj[key];
9309
+ }), t[e];
9309
9310
  }
9310
9311
  try {
9311
9312
  define({}, "");
9312
- } catch (err) {
9313
- define = function (obj, key, value) {
9314
- return obj[key] = value;
9313
+ } catch (t) {
9314
+ define = function (t, e, r) {
9315
+ return t[e] = r;
9315
9316
  };
9316
9317
  }
9317
- function wrap(innerFn, outerFn, self, tryLocsList) {
9318
- var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator,
9319
- generator = Object.create(protoGenerator.prototype),
9320
- context = new Context(tryLocsList || []);
9321
- return defineProperty(generator, "_invoke", {
9322
- value: makeInvokeMethod(innerFn, self, context)
9323
- }), generator;
9318
+ function wrap(t, e, r, n) {
9319
+ var i = e && e.prototype instanceof Generator ? e : Generator,
9320
+ a = Object.create(i.prototype),
9321
+ c = new Context(n || []);
9322
+ return o(a, "_invoke", {
9323
+ value: makeInvokeMethod(t, r, c)
9324
+ }), a;
9324
9325
  }
9325
- function tryCatch(fn, obj, arg) {
9326
+ function tryCatch(t, e, r) {
9326
9327
  try {
9327
9328
  return {
9328
9329
  type: "normal",
9329
- arg: fn.call(obj, arg)
9330
+ arg: t.call(e, r)
9330
9331
  };
9331
- } catch (err) {
9332
+ } catch (t) {
9332
9333
  return {
9333
9334
  type: "throw",
9334
- arg: err
9335
+ arg: t
9335
9336
  };
9336
9337
  }
9337
9338
  }
9338
- exports.wrap = wrap;
9339
- var ContinueSentinel = {};
9339
+ e.wrap = wrap;
9340
+ var h = "suspendedStart",
9341
+ l = "suspendedYield",
9342
+ f = "executing",
9343
+ s = "completed",
9344
+ y = {};
9340
9345
  function Generator() {}
9341
9346
  function GeneratorFunction() {}
9342
9347
  function GeneratorFunctionPrototype() {}
9343
- var IteratorPrototype = {};
9344
- define(IteratorPrototype, iteratorSymbol, function () {
9348
+ var p = {};
9349
+ define(p, a, function () {
9345
9350
  return this;
9346
9351
  });
9347
- var getProto = Object.getPrototypeOf,
9348
- NativeIteratorPrototype = getProto && getProto(getProto(values([])));
9349
- NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype);
9350
- var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype);
9351
- function defineIteratorMethods(prototype) {
9352
- ["next", "throw", "return"].forEach(function (method) {
9353
- define(prototype, method, function (arg) {
9354
- return this._invoke(method, arg);
9352
+ var d = Object.getPrototypeOf,
9353
+ v = d && d(d(values([])));
9354
+ v && v !== r && n.call(v, a) && (p = v);
9355
+ var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p);
9356
+ function defineIteratorMethods(t) {
9357
+ ["next", "throw", "return"].forEach(function (e) {
9358
+ define(t, e, function (t) {
9359
+ return this._invoke(e, t);
9355
9360
  });
9356
9361
  });
9357
9362
  }
9358
- function AsyncIterator(generator, PromiseImpl) {
9359
- function invoke(method, arg, resolve, reject) {
9360
- var record = tryCatch(generator[method], generator, arg);
9361
- if ("throw" !== record.type) {
9362
- var result = record.arg,
9363
- value = result.value;
9364
- return value && "object" == typeof value && hasOwn.call(value, "__await") ? PromiseImpl.resolve(value.__await).then(function (value) {
9365
- invoke("next", value, resolve, reject);
9366
- }, function (err) {
9367
- invoke("throw", err, resolve, reject);
9368
- }) : PromiseImpl.resolve(value).then(function (unwrapped) {
9369
- result.value = unwrapped, resolve(result);
9370
- }, function (error) {
9371
- return invoke("throw", error, resolve, reject);
9363
+ function AsyncIterator(t, e) {
9364
+ function invoke(r, o, i, a) {
9365
+ var c = tryCatch(t[r], t, o);
9366
+ if ("throw" !== c.type) {
9367
+ var u = c.arg,
9368
+ h = u.value;
9369
+ return h && "object" == typeof h && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) {
9370
+ invoke("next", t, i, a);
9371
+ }, function (t) {
9372
+ invoke("throw", t, i, a);
9373
+ }) : e.resolve(h).then(function (t) {
9374
+ u.value = t, i(u);
9375
+ }, function (t) {
9376
+ return invoke("throw", t, i, a);
9372
9377
  });
9373
9378
  }
9374
- reject(record.arg);
9379
+ a(c.arg);
9375
9380
  }
9376
- var previousPromise;
9377
- defineProperty(this, "_invoke", {
9378
- value: function (method, arg) {
9381
+ var r;
9382
+ o(this, "_invoke", {
9383
+ value: function (t, n) {
9379
9384
  function callInvokeWithMethodAndArg() {
9380
- return new PromiseImpl(function (resolve, reject) {
9381
- invoke(method, arg, resolve, reject);
9385
+ return new e(function (e, r) {
9386
+ invoke(t, n, e, r);
9382
9387
  });
9383
9388
  }
9384
- return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg();
9389
+ return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg();
9385
9390
  }
9386
9391
  });
9387
9392
  }
9388
- function makeInvokeMethod(innerFn, self, context) {
9389
- var state = "suspendedStart";
9390
- return function (method, arg) {
9391
- if ("executing" === state) throw new Error("Generator is already running");
9392
- if ("completed" === state) {
9393
- if ("throw" === method) throw arg;
9394
- return doneResult();
9395
- }
9396
- for (context.method = method, context.arg = arg;;) {
9397
- var delegate = context.delegate;
9398
- if (delegate) {
9399
- var delegateResult = maybeInvokeDelegate(delegate, context);
9400
- if (delegateResult) {
9401
- if (delegateResult === ContinueSentinel) continue;
9402
- return delegateResult;
9393
+ function makeInvokeMethod(e, r, n) {
9394
+ var o = h;
9395
+ return function (i, a) {
9396
+ if (o === f) throw new Error("Generator is already running");
9397
+ if (o === s) {
9398
+ if ("throw" === i) throw a;
9399
+ return {
9400
+ value: t,
9401
+ done: !0
9402
+ };
9403
+ }
9404
+ for (n.method = i, n.arg = a;;) {
9405
+ var c = n.delegate;
9406
+ if (c) {
9407
+ var u = maybeInvokeDelegate(c, n);
9408
+ if (u) {
9409
+ if (u === y) continue;
9410
+ return u;
9403
9411
  }
9404
9412
  }
9405
- if ("next" === context.method) context.sent = context._sent = context.arg;else if ("throw" === context.method) {
9406
- if ("suspendedStart" === state) throw state = "completed", context.arg;
9407
- context.dispatchException(context.arg);
9408
- } else "return" === context.method && context.abrupt("return", context.arg);
9409
- state = "executing";
9410
- var record = tryCatch(innerFn, self, context);
9411
- if ("normal" === record.type) {
9412
- if (state = context.done ? "completed" : "suspendedYield", record.arg === ContinueSentinel) continue;
9413
+ if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) {
9414
+ if (o === h) throw o = s, n.arg;
9415
+ n.dispatchException(n.arg);
9416
+ } else "return" === n.method && n.abrupt("return", n.arg);
9417
+ o = f;
9418
+ var p = tryCatch(e, r, n);
9419
+ if ("normal" === p.type) {
9420
+ if (o = n.done ? s : l, p.arg === y) continue;
9413
9421
  return {
9414
- value: record.arg,
9415
- done: context.done
9422
+ value: p.arg,
9423
+ done: n.done
9416
9424
  };
9417
9425
  }
9418
- "throw" === record.type && (state = "completed", context.method = "throw", context.arg = record.arg);
9426
+ "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg);
9419
9427
  }
9420
9428
  };
9421
9429
  }
9422
- function maybeInvokeDelegate(delegate, context) {
9423
- var methodName = context.method,
9424
- method = delegate.iterator[methodName];
9425
- if (undefined === method) return context.delegate = null, "throw" === methodName && delegate.iterator.return && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method) || "return" !== methodName && (context.method = "throw", context.arg = new TypeError("The iterator does not provide a '" + methodName + "' method")), ContinueSentinel;
9426
- var record = tryCatch(method, delegate.iterator, context.arg);
9427
- if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel;
9428
- var info = record.arg;
9429
- return info ? info.done ? (context[delegate.resultName] = info.value, context.next = delegate.nextLoc, "return" !== context.method && (context.method = "next", context.arg = undefined), context.delegate = null, ContinueSentinel) : info : (context.method = "throw", context.arg = new TypeError("iterator result is not an object"), context.delegate = null, ContinueSentinel);
9430
- }
9431
- function pushTryEntry(locs) {
9432
- var entry = {
9433
- tryLoc: locs[0]
9430
+ function maybeInvokeDelegate(e, r) {
9431
+ var n = r.method,
9432
+ o = e.iterator[n];
9433
+ if (o === t) return r.delegate = null, "throw" === n && e.iterator.return && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y;
9434
+ var i = tryCatch(o, e.iterator, r.arg);
9435
+ if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y;
9436
+ var a = i.arg;
9437
+ return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y);
9438
+ }
9439
+ function pushTryEntry(t) {
9440
+ var e = {
9441
+ tryLoc: t[0]
9434
9442
  };
9435
- 1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry);
9443
+ 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e);
9436
9444
  }
9437
- function resetTryEntry(entry) {
9438
- var record = entry.completion || {};
9439
- record.type = "normal", delete record.arg, entry.completion = record;
9445
+ function resetTryEntry(t) {
9446
+ var e = t.completion || {};
9447
+ e.type = "normal", delete e.arg, t.completion = e;
9440
9448
  }
9441
- function Context(tryLocsList) {
9449
+ function Context(t) {
9442
9450
  this.tryEntries = [{
9443
9451
  tryLoc: "root"
9444
- }], tryLocsList.forEach(pushTryEntry, this), this.reset(!0);
9445
- }
9446
- function values(iterable) {
9447
- if (iterable) {
9448
- var iteratorMethod = iterable[iteratorSymbol];
9449
- if (iteratorMethod) return iteratorMethod.call(iterable);
9450
- if ("function" == typeof iterable.next) return iterable;
9451
- if (!isNaN(iterable.length)) {
9452
- var i = -1,
9453
- next = function next() {
9454
- for (; ++i < iterable.length;) if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next;
9455
- return next.value = undefined, next.done = !0, next;
9452
+ }], t.forEach(pushTryEntry, this), this.reset(!0);
9453
+ }
9454
+ function values(e) {
9455
+ if (e || "" === e) {
9456
+ var r = e[a];
9457
+ if (r) return r.call(e);
9458
+ if ("function" == typeof e.next) return e;
9459
+ if (!isNaN(e.length)) {
9460
+ var o = -1,
9461
+ i = function next() {
9462
+ for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next;
9463
+ return next.value = t, next.done = !0, next;
9456
9464
  };
9457
- return next.next = next;
9465
+ return i.next = i;
9458
9466
  }
9459
9467
  }
9460
- return {
9461
- next: doneResult
9462
- };
9468
+ throw new TypeError(typeof e + " is not iterable");
9463
9469
  }
9464
- function doneResult() {
9465
- return {
9466
- value: undefined,
9467
- done: !0
9468
- };
9469
- }
9470
- return GeneratorFunction.prototype = GeneratorFunctionPrototype, defineProperty(Gp, "constructor", {
9470
+ return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", {
9471
9471
  value: GeneratorFunctionPrototype,
9472
9472
  configurable: !0
9473
- }), defineProperty(GeneratorFunctionPrototype, "constructor", {
9473
+ }), o(GeneratorFunctionPrototype, "constructor", {
9474
9474
  value: GeneratorFunction,
9475
9475
  configurable: !0
9476
- }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction"), exports.isGeneratorFunction = function (genFun) {
9477
- var ctor = "function" == typeof genFun && genFun.constructor;
9478
- return !!ctor && (ctor === GeneratorFunction || "GeneratorFunction" === (ctor.displayName || ctor.name));
9479
- }, exports.mark = function (genFun) {
9480
- return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, "GeneratorFunction")), genFun.prototype = Object.create(Gp), genFun;
9481
- }, exports.awrap = function (arg) {
9476
+ }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) {
9477
+ var e = "function" == typeof t && t.constructor;
9478
+ return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name));
9479
+ }, e.mark = function (t) {
9480
+ return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t;
9481
+ }, e.awrap = function (t) {
9482
9482
  return {
9483
- __await: arg
9483
+ __await: t
9484
9484
  };
9485
- }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () {
9485
+ }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () {
9486
9486
  return this;
9487
- }), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) {
9488
- void 0 === PromiseImpl && (PromiseImpl = Promise);
9489
- var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl);
9490
- return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) {
9491
- return result.done ? result.value : iter.next();
9487
+ }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) {
9488
+ void 0 === i && (i = Promise);
9489
+ var a = new AsyncIterator(wrap(t, r, n, o), i);
9490
+ return e.isGeneratorFunction(r) ? a : a.next().then(function (t) {
9491
+ return t.done ? t.value : a.next();
9492
9492
  });
9493
- }, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, "Generator"), define(Gp, iteratorSymbol, function () {
9493
+ }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () {
9494
9494
  return this;
9495
- }), define(Gp, "toString", function () {
9495
+ }), define(g, "toString", function () {
9496
9496
  return "[object Generator]";
9497
- }), exports.keys = function (val) {
9498
- var object = Object(val),
9499
- keys = [];
9500
- for (var key in object) keys.push(key);
9501
- return keys.reverse(), function next() {
9502
- for (; keys.length;) {
9503
- var key = keys.pop();
9504
- if (key in object) return next.value = key, next.done = !1, next;
9497
+ }), e.keys = function (t) {
9498
+ var e = Object(t),
9499
+ r = [];
9500
+ for (var n in e) r.push(n);
9501
+ return r.reverse(), function next() {
9502
+ for (; r.length;) {
9503
+ var t = r.pop();
9504
+ if (t in e) return next.value = t, next.done = !1, next;
9505
9505
  }
9506
9506
  return next.done = !0, next;
9507
9507
  };
9508
- }, exports.values = values, Context.prototype = {
9508
+ }, e.values = values, Context.prototype = {
9509
9509
  constructor: Context,
9510
- reset: function (skipTempReset) {
9511
- if (this.prev = 0, this.next = 0, this.sent = this._sent = undefined, this.done = !1, this.delegate = null, this.method = "next", this.arg = undefined, this.tryEntries.forEach(resetTryEntry), !skipTempReset) for (var name in this) "t" === name.charAt(0) && hasOwn.call(this, name) && !isNaN(+name.slice(1)) && (this[name] = undefined);
9510
+ reset: function (e) {
9511
+ if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t);
9512
9512
  },
9513
9513
  stop: function () {
9514
9514
  this.done = !0;
9515
- var rootRecord = this.tryEntries[0].completion;
9516
- if ("throw" === rootRecord.type) throw rootRecord.arg;
9515
+ var t = this.tryEntries[0].completion;
9516
+ if ("throw" === t.type) throw t.arg;
9517
9517
  return this.rval;
9518
9518
  },
9519
- dispatchException: function (exception) {
9520
- if (this.done) throw exception;
9521
- var context = this;
9522
- function handle(loc, caught) {
9523
- return record.type = "throw", record.arg = exception, context.next = loc, caught && (context.method = "next", context.arg = undefined), !!caught;
9524
- }
9525
- for (var i = this.tryEntries.length - 1; i >= 0; --i) {
9526
- var entry = this.tryEntries[i],
9527
- record = entry.completion;
9528
- if ("root" === entry.tryLoc) return handle("end");
9529
- if (entry.tryLoc <= this.prev) {
9530
- var hasCatch = hasOwn.call(entry, "catchLoc"),
9531
- hasFinally = hasOwn.call(entry, "finallyLoc");
9532
- if (hasCatch && hasFinally) {
9533
- if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0);
9534
- if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc);
9535
- } else if (hasCatch) {
9536
- if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0);
9519
+ dispatchException: function (e) {
9520
+ if (this.done) throw e;
9521
+ var r = this;
9522
+ function handle(n, o) {
9523
+ return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o;
9524
+ }
9525
+ for (var o = this.tryEntries.length - 1; o >= 0; --o) {
9526
+ var i = this.tryEntries[o],
9527
+ a = i.completion;
9528
+ if ("root" === i.tryLoc) return handle("end");
9529
+ if (i.tryLoc <= this.prev) {
9530
+ var c = n.call(i, "catchLoc"),
9531
+ u = n.call(i, "finallyLoc");
9532
+ if (c && u) {
9533
+ if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
9534
+ if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
9535
+ } else if (c) {
9536
+ if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
9537
9537
  } else {
9538
- if (!hasFinally) throw new Error("try statement without catch or finally");
9539
- if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc);
9538
+ if (!u) throw new Error("try statement without catch or finally");
9539
+ if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
9540
9540
  }
9541
9541
  }
9542
9542
  }
9543
9543
  },
9544
- abrupt: function (type, arg) {
9545
- for (var i = this.tryEntries.length - 1; i >= 0; --i) {
9546
- var entry = this.tryEntries[i];
9547
- if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc) {
9548
- var finallyEntry = entry;
9544
+ abrupt: function (t, e) {
9545
+ for (var r = this.tryEntries.length - 1; r >= 0; --r) {
9546
+ var o = this.tryEntries[r];
9547
+ if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) {
9548
+ var i = o;
9549
9549
  break;
9550
9550
  }
9551
9551
  }
9552
- finallyEntry && ("break" === type || "continue" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null);
9553
- var record = finallyEntry ? finallyEntry.completion : {};
9554
- return record.type = type, record.arg = arg, finallyEntry ? (this.method = "next", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record);
9552
+ i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null);
9553
+ var a = i ? i.completion : {};
9554
+ return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a);
9555
9555
  },
9556
- complete: function (record, afterLoc) {
9557
- if ("throw" === record.type) throw record.arg;
9558
- return "break" === record.type || "continue" === record.type ? this.next = record.arg : "return" === record.type ? (this.rval = this.arg = record.arg, this.method = "return", this.next = "end") : "normal" === record.type && afterLoc && (this.next = afterLoc), ContinueSentinel;
9556
+ complete: function (t, e) {
9557
+ if ("throw" === t.type) throw t.arg;
9558
+ return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y;
9559
9559
  },
9560
- finish: function (finallyLoc) {
9561
- for (var i = this.tryEntries.length - 1; i >= 0; --i) {
9562
- var entry = this.tryEntries[i];
9563
- if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel;
9560
+ finish: function (t) {
9561
+ for (var e = this.tryEntries.length - 1; e >= 0; --e) {
9562
+ var r = this.tryEntries[e];
9563
+ if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y;
9564
9564
  }
9565
9565
  },
9566
- catch: function (tryLoc) {
9567
- for (var i = this.tryEntries.length - 1; i >= 0; --i) {
9568
- var entry = this.tryEntries[i];
9569
- if (entry.tryLoc === tryLoc) {
9570
- var record = entry.completion;
9571
- if ("throw" === record.type) {
9572
- var thrown = record.arg;
9573
- resetTryEntry(entry);
9566
+ catch: function (t) {
9567
+ for (var e = this.tryEntries.length - 1; e >= 0; --e) {
9568
+ var r = this.tryEntries[e];
9569
+ if (r.tryLoc === t) {
9570
+ var n = r.completion;
9571
+ if ("throw" === n.type) {
9572
+ var o = n.arg;
9573
+ resetTryEntry(r);
9574
9574
  }
9575
- return thrown;
9575
+ return o;
9576
9576
  }
9577
9577
  }
9578
9578
  throw new Error("illegal catch attempt");
9579
9579
  },
9580
- delegateYield: function (iterable, resultName, nextLoc) {
9580
+ delegateYield: function (e, r, n) {
9581
9581
  return this.delegate = {
9582
- iterator: values(iterable),
9583
- resultName: resultName,
9584
- nextLoc: nextLoc
9585
- }, "next" === this.method && (this.arg = undefined), ContinueSentinel;
9582
+ iterator: values(e),
9583
+ resultName: r,
9584
+ nextLoc: n
9585
+ }, "next" === this.method && (this.arg = t), y;
9586
9586
  }
9587
- }, exports;
9587
+ }, e;
9588
9588
  }
9589
9589
  function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
9590
9590
  try {
@@ -13809,6 +13809,11 @@
13809
13809
  if (this.currentPageState !== newVal && oldVal !== newVal) {
13810
13810
  this.setPage(newVal >= 0 ? newVal : 0);
13811
13811
  }
13812
+ },
13813
+ isLoading: function isLoading(newVal, oldVal) {
13814
+ if (newVal !== oldVal) {
13815
+ this.$emit('loading', newVal);
13816
+ }
13812
13817
  }
13813
13818
  },
13814
13819
  mounted: function mounted() {
@@ -34918,7 +34923,7 @@
34918
34923
  });
34919
34924
  }
34920
34925
 
34921
- var version = "1.35.1";
34926
+ var version = "1.35.2";
34922
34927
 
34923
34928
  var components$1 = [RLConnected, ResultCard, ResultList, ReactiveBase, DSConnected, SBConnected, ListConnected, ListConnected$1, RangeConnected$1, RangeConnected$2, RangeConnected$3, RangeConnected, RcConnected, RcConnected$1, RcConnected$2, TBConnected, ListConnected$2, ListConnected$3, StateProviderConnected, RangeConnected$4];
34924
34929
  function install (Vue) {