You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@solidjs/signals

Package Overview
Dependencies
Maintainers
2
Versions
87
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@solidjs/signals - npm Package Compare versions

Comparing version
0.13.5
to
0.13.6
+5
-5
dist/types/core/scheduler.d.ts

@@ -5,3 +5,3 @@ import { type Heap } from "./heap.js";

export { activeLanes, assignOrMergeLane, findLane };
export { getOrCreateLane, hasActiveOverride, mergeLanes, resolveLane, type OptimisticLane } from "./lanes.js";
export { getOrCreateLane, hasActiveOverride, mergeLanes, resolveLane } from "./lanes.js";
export declare const dirtyQueue: Heap;

@@ -17,2 +17,3 @@ export declare const zombieQueue: Heap;

export declare function setProjectionWriteActive(value: boolean): void;
export declare function setTrackedQueueCallback(value: boolean): void;
export type QueueCallback = (type: number) => void;

@@ -23,2 +24,3 @@ type QueueStub = {

};
type OptimisticNode = Signal<any> | Computed<any>;
export interface Transition {

@@ -28,3 +30,3 @@ _time: number;

_pendingNodes: Signal<any>[];
_optimisticNodes: Signal<any>[];
_optimisticNodes: OptimisticNode[];
_optimisticStores: Set<any>;

@@ -36,4 +38,2 @@ _actions: Array<Generator<any, any, any> | AsyncGenerator<any, any, any>>;

export declare function schedule(): void;
export declare function addTransitionBlocker(node: Computed<any>): void;
export declare function removeTransitionBlocker(node: Computed<any>): void;
export interface IQueue {

@@ -66,3 +66,3 @@ enqueue(type: number, fn: QueueCallback): void;

_pendingNodes: Signal<any>[];
_optimisticNodes: Signal<any>[];
_optimisticNodes: OptimisticNode[];
_optimisticStores: Set<any>;

@@ -69,0 +69,0 @@ static _update: (el: Computed<unknown>) => void;

{
"name": "@solidjs/signals",
"version": "0.13.5",
"version": "0.13.6",
"description": "SolidJS' standalone reactivity implementation",

@@ -5,0 +5,0 @@ "author": "Ryan Carniato",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display