@solidjs/signals 0.6.2 → 0.6.3
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 -1
- package/dist/node.cjs +1 -1
- package/dist/prod.js +1 -1
- package/package.json +1 -1
package/dist/dev.js
CHANGED
|
@@ -421,7 +421,7 @@ function getTransitionSource(input) {
|
|
|
421
421
|
return ActiveTransition && ActiveTransition._sources.get(input) || input;
|
|
422
422
|
}
|
|
423
423
|
function getQueue(node) {
|
|
424
|
-
const transition2 = node._cloned?._transition;
|
|
424
|
+
const transition2 = ActiveTransition || node._cloned?._transition;
|
|
425
425
|
return transition2 && transition2._clonedQueues.get(node._queue) || node._queue;
|
|
426
426
|
}
|
|
427
427
|
function initialDispose(node) {
|
package/dist/node.cjs
CHANGED
|
@@ -422,7 +422,7 @@ function getTransitionSource(input) {
|
|
|
422
422
|
}
|
|
423
423
|
function getQueue(node) {
|
|
424
424
|
var _a;
|
|
425
|
-
const transition2 = (_a = node.e) == null ? void 0 : _a.j;
|
|
425
|
+
const transition2 = ActiveTransition || ((_a = node.e) == null ? void 0 : _a.j);
|
|
426
426
|
return transition2 && transition2.r.get(node.B) || node.B;
|
|
427
427
|
}
|
|
428
428
|
function initialDispose(node) {
|
package/dist/prod.js
CHANGED
|
@@ -418,7 +418,7 @@ function getTransitionSource(input) {
|
|
|
418
418
|
return ActiveTransition && ActiveTransition.a.get(input) || input;
|
|
419
419
|
}
|
|
420
420
|
function getQueue(node) {
|
|
421
|
-
const transition2 = node.e?.j;
|
|
421
|
+
const transition2 = ActiveTransition || node.e?.j;
|
|
422
422
|
return transition2 && transition2.r.get(node.B) || node.B;
|
|
423
423
|
}
|
|
424
424
|
function initialDispose(node) {
|