@solidjs/signals 0.11.2 → 0.11.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.
Files changed (2) hide show
  1. package/dist/dev.js +6 -0
  2. package/package.json +1 -1
package/dist/dev.js CHANGED
@@ -1112,6 +1112,11 @@ function recompute(el, create = false) {
1112
1112
  let oldHeight = el._height;
1113
1113
  let prevTracking = tracking;
1114
1114
  let prevLane = currentOptimisticLane;
1115
+ let prevStrictRead = false;
1116
+ {
1117
+ prevStrictRead = strictRead;
1118
+ strictRead = false;
1119
+ }
1115
1120
  tracking = true;
1116
1121
  if (isOptimisticDirty) {
1117
1122
  const lane = resolveLane(el);
@@ -1143,6 +1148,7 @@ function recompute(el, create = false) {
1143
1148
  );
1144
1149
  } finally {
1145
1150
  tracking = prevTracking;
1151
+ strictRead = prevStrictRead;
1146
1152
  el._flags = REACTIVE_NONE | (create ? el._flags & REACTIVE_SNAPSHOT_STALE : 0);
1147
1153
  context = oldcontext;
1148
1154
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solidjs/signals",
3
- "version": "0.11.2",
3
+ "version": "0.11.3",
4
4
  "description": "SolidJS' standalone reactivity implementation",
5
5
  "author": "Ryan Carniato",
6
6
  "license": "MIT",