@solidjs/signals 0.9.9 → 0.9.11
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 +48 -13
- package/dist/node.cjs +568 -536
- package/dist/prod.js +587 -555
- package/dist/types/core/core.d.ts +1 -0
- package/dist/types/core/scheduler.d.ts +1 -0
- package/package.json +1 -1
|
@@ -33,6 +33,7 @@ export interface RawSignal<T> {
|
|
|
33
33
|
_optimisticLane?: OptimisticLane;
|
|
34
34
|
_pendingSignal?: Signal<boolean>;
|
|
35
35
|
_pendingValueComputed?: Computed<T>;
|
|
36
|
+
_parentSource?: Signal<any> | Computed<any>;
|
|
36
37
|
}
|
|
37
38
|
export interface FirewallSignal<T> extends RawSignal<T> {
|
|
38
39
|
_firewall: Computed<any>;
|
|
@@ -16,6 +16,7 @@ export interface OptimisticLane {
|
|
|
16
16
|
_effectQueues: [QueueCallback[], QueueCallback[]];
|
|
17
17
|
_mergedInto: OptimisticLane | null;
|
|
18
18
|
_transition: Transition | null;
|
|
19
|
+
_parentLane: OptimisticLane | null;
|
|
19
20
|
}
|
|
20
21
|
export declare const activeLanes: Set<OptimisticLane>;
|
|
21
22
|
export declare let currentOptimisticLane: OptimisticLane | null;
|