@solidjs/signals 0.10.1 → 0.10.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 +15 -3
- package/dist/node.cjs +216 -208
- package/dist/prod.js +184 -176
- package/dist/types/core/owner.d.ts +4 -2
- package/dist/types/core/types.d.ts +2 -0
- package/dist/types/signals.d.ts +2 -0
- package/package.json +2 -2
package/dist/types/signals.d.ts
CHANGED
|
@@ -40,6 +40,8 @@ export interface MemoOptions<T> {
|
|
|
40
40
|
id?: string;
|
|
41
41
|
/** Debug name (dev mode only) */
|
|
42
42
|
name?: string;
|
|
43
|
+
/** When true, the owner is invisible to the ID scheme -- inherits parent ID and doesn't consume a childCount slot */
|
|
44
|
+
transparent?: boolean;
|
|
43
45
|
/** Custom equality function, or `false` to always notify subscribers */
|
|
44
46
|
equals?: false | ((prev: T, next: T) => boolean);
|
|
45
47
|
/** Callback invoked when the computed loses all subscribers */
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solidjs/signals",
|
|
3
|
-
"version": "0.10.
|
|
4
|
-
"description": "SolidJS' standalone
|
|
3
|
+
"version": "0.10.3",
|
|
4
|
+
"description": "SolidJS' standalone reactivity implementation",
|
|
5
5
|
"author": "Ryan Carniato",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|