@solidjs/signals 0.8.4 → 0.8.6

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.
@@ -29,6 +29,7 @@ export interface RawSignal<T> {
29
29
  _pureWrite?: boolean;
30
30
  _unobserved?: () => void;
31
31
  _time: number;
32
+ _transition: Transition | null;
32
33
  _pendingValue: T | typeof NOT_PENDING;
33
34
  _pendingCheck?: Signal<boolean> & {
34
35
  _set: (v: boolean) => void;
@@ -36,7 +37,6 @@ export interface RawSignal<T> {
36
37
  _pendingSignal?: Signal<T> & {
37
38
  _set: (v: T) => void;
38
39
  };
39
- _transition?: Transition;
40
40
  _optimistic?: boolean;
41
41
  }
42
42
  export interface FirewallSignal<T> extends RawSignal<T> {
@@ -121,4 +121,3 @@ export declare function runWithOwner<T>(owner: Owner | null, fn: () => T): T;
121
121
  export declare function staleValues<T>(fn: () => T, set?: boolean): T;
122
122
  export declare function pending<T>(fn: () => T): T;
123
123
  export declare function isPending(fn: () => any): boolean;
124
- export declare function isPending(fn: () => any, loadingValue: boolean): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solidjs/signals",
3
- "version": "0.8.4",
3
+ "version": "0.8.6",
4
4
  "description": "",
5
5
  "author": "Ryan Carniato",
6
6
  "license": "MIT",