solid-ctrl-flow 1.0.11 → 1.0.12

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/package.json +1 -1
  2. package/readMe.md +5 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "solid-ctrl-flow",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "Control flow components for solid-js",
5
5
  "author": "AFatNiBBa",
6
6
  "license": "ISC",
package/readMe.md CHANGED
@@ -63,7 +63,7 @@ function MyCustomComponent() {
63
63
  </>
64
64
  }
65
65
  ```
66
- If you use it normally it will output `4`, `1`, `2`, `3`, `5`
66
+ If you use it normally it will output `4`, ***`1`***, ***`2`***, ***`3`***, `5`
67
67
  ```tsx
68
68
  return <>
69
69
  4
@@ -123,4 +123,7 @@ Creates a partial version of an object with memoized remaining properties
123
123
  Like `splitProps()` but memoizes the whole local part
124
124
 
125
125
  ### `runWithContext()`
126
- Creates a context scope that persists for the duration of a function
126
+ Creates a context scope that persists for the duration of a function
127
+
128
+ ### `untrackCall()`
129
+ Calls a function untracking what happens inside of it but not what gets passed as its argument