targetj 1.0.248 → 1.0.249

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.
@@ -3,6 +3,10 @@ function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLim
3
3
  function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
4
4
  function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
5
5
  function _arrayWithHoles(r) { if (Array.isArray(r)) return r; }
6
+ function _toConsumableArray(r) { return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread(); }
7
+ function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
8
+ function _iterableToArray(r) { if ("undefined" != typeof Symbol && null != r[Symbol.iterator] || null != r["@@iterator"]) return Array.from(r); }
9
+ function _arrayWithoutHoles(r) { if (Array.isArray(r)) return _arrayLikeToArray(r); }
6
10
  function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t.return || t.return(); } finally { if (u) throw o; } } }; }
7
11
  function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
8
12
  function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
@@ -528,6 +532,16 @@ var LocationManager = /*#__PURE__*/function () {
528
532
  tmodel.markLayoutDirty('height');
529
533
  }
530
534
  }
535
+ if (tmodel.isNowVisible || tmodel.hasDomNow) {
536
+ var pending = tmodel.pendingTargets;
537
+ if (pending) {
538
+ for (var _i = 0, _arr = _toConsumableArray(pending); _i < _arr.length; _i++) {
539
+ var _key2 = _arr[_i];
540
+ TargetUtil.cleanupTarget(tmodel, _key2);
541
+ TargetUtil.shouldActivateNextTarget(tmodel, _key2);
542
+ }
543
+ }
544
+ }
531
545
  tmodel.isNowVisible = false;
532
546
  tmodel.hasDomNow = false;
533
547
  tmodel.targetExecutionCount++;
@@ -243,7 +243,7 @@ var TModelManager = /*#__PURE__*/function () {
243
243
  }
244
244
  var current = tmodel;
245
245
  while (current && current !== tRoot()) {
246
- var policy = current.val("domPolicy");
246
+ var policy = current.val("dom");
247
247
  if (TUtil.isDefined(policy)) {
248
248
  this.domPolicyMap.set(tmodel.oid, policy);
249
249
  return policy;
@@ -512,6 +512,7 @@ var TModelManager = /*#__PURE__*/function () {
512
512
  for (_iterator8.s(); !(_step8 = _iterator8.n()).done;) {
513
513
  var tmodel = _step8.value;
514
514
  if (!tmodel.hasDom()) {
515
+ tmodel.markLayoutDirty('noDom');
515
516
  continue;
516
517
  }
517
518
  if (tmodel.noDomUpdatingTargets) {