@rn-tools/core 3.0.1 → 3.0.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @rn-tools/core
2
2
 
3
+ ## 3.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 723c379: Incorporate sheets into navigation and cleanup APIs
8
+
3
9
  ## 3.0.1
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rn-tools/core",
3
- "version": "3.0.1",
3
+ "version": "3.0.2",
4
4
  "description": "Core utilities for rn-tools",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {
@@ -40,7 +40,7 @@ export type RenderNode = {
40
40
 
41
41
  const RENDER_TREE_GENERATED_ID_PREFIX = "rt:";
42
42
 
43
- const nextRenderTreeIdForType = (() => {
43
+ export const nextRenderTreeIdForType = (() => {
44
44
  const counters = new Map<RenderTreeType, number>();
45
45
  return (type: RenderTreeType) => {
46
46
  const next = (counters.get(type) ?? 0) + 1;