@solidjs/signals 0.8.6 → 0.8.7
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.
- package/dist/dev.js +1 -6
- package/dist/node.cjs +1 -1
- package/dist/prod.js +1 -1
- package/package.json +1 -1
package/dist/dev.js
CHANGED
|
@@ -413,12 +413,7 @@ function recompute(el, create = false) {
|
|
|
413
413
|
insertIntoHeapHeight(s._sub, s._sub._flags & REACTIVE_ZOMBIE ? zombieQueue : dirtyQueue);
|
|
414
414
|
}
|
|
415
415
|
}
|
|
416
|
-
if (
|
|
417
|
-
(!create || el._statusFlags & STATUS_PENDING) &&
|
|
418
|
-
!el._optimistic &&
|
|
419
|
-
!honoraryOptimistic &&
|
|
420
|
-
!el._transition
|
|
421
|
-
)
|
|
416
|
+
if ((!create || el._statusFlags & STATUS_PENDING) && !el._optimistic && !el._transition)
|
|
422
417
|
globalQueue._pendingNodes.push(el);
|
|
423
418
|
if (el._transition && honoraryOptimistic) runInTransition(el, recompute);
|
|
424
419
|
}
|
package/dist/node.cjs
CHANGED
|
@@ -396,7 +396,7 @@ function recompute(t, n = false) {
|
|
|
396
396
|
insertIntoHeapHeight(e.N, e.N.S & o ? S : _);
|
|
397
397
|
}
|
|
398
398
|
}
|
|
399
|
-
if ((!n || t.$ & f) && !t.ue && !
|
|
399
|
+
if ((!n || t.$ & f) && !t.ue && !t.J) O.M.push(t);
|
|
400
400
|
if (t.J && i) runInTransition(t, recompute);
|
|
401
401
|
}
|
|
402
402
|
function updateIfNecessary(r) {
|
package/dist/prod.js
CHANGED
|
@@ -400,7 +400,7 @@ function recompute(e, t = false) {
|
|
|
400
400
|
insertIntoHeapHeight(t.A, t.A._ & REACTIVE_ZOMBIE ? zombieQueue : dirtyQueue);
|
|
401
401
|
}
|
|
402
402
|
}
|
|
403
|
-
if ((!t || e.J & STATUS_PENDING) && !e.ue && !
|
|
403
|
+
if ((!t || e.J & STATUS_PENDING) && !e.ue && !e.B) globalQueue.$.push(e);
|
|
404
404
|
if (e.B && n) runInTransition(e, recompute);
|
|
405
405
|
}
|
|
406
406
|
function updateIfNecessary(e) {
|