rnxsim 0.1.453 → 0.1.455
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/README.md +2 -2
- package/cli/commands/flow.ts +1 -5
- package/detox/proof-frame.cjs +2 -5
- package/dist-lib/agent-daemon-client.cjs +1 -1
- package/dist-lib/agent-events.cjs +1 -1
- package/dist-lib/agent-identity.cjs +1 -1
- package/dist-lib/agent-sessions.cjs +1 -1
- package/dist-lib/attached-projects.cjs +1 -1
- package/dist-lib/auth/shared-session.cjs +1 -1
- package/dist-lib/backend-origin.cjs +1 -1
- package/dist-lib/beta.cjs +1 -1
- package/dist-lib/beta.mjs +1 -1
- package/dist-lib/bridge-constants.cjs +1 -1
- package/dist-lib/bridge-contract-input.cjs +1 -1
- package/dist-lib/bridge-contract-input.mjs +1 -1
- package/dist-lib/bridge-contract.cjs +1 -1
- package/dist-lib/bridge-contract.mjs +1 -1
- package/dist-lib/capture-contract.cjs +1 -1
- package/dist-lib/capture-contract.mjs +1 -1
- package/dist-lib/cli-constants.cjs +1 -1
- package/dist-lib/cloud-contract.cjs +1 -1
- package/dist-lib/cloud-contract.mjs +1 -1
- package/dist-lib/cloud.cjs +1 -1
- package/dist-lib/cloud.mjs +1 -1
- package/dist-lib/config.cjs +1 -1
- package/dist-lib/detox/index.cjs +2 -4
- package/dist-lib/dev-bundle-resolution.cjs +1 -1
- package/dist-lib/home-paths.cjs +1 -1
- package/dist-lib/host/bridge-host.cjs +1 -1
- package/dist-lib/host/fetch-proxy-handler.cjs +1 -1
- package/dist-lib/host/fetch-proxy-overrides.cjs +1 -1
- package/dist-lib/host/fetch-proxy-overrides.mjs +1 -1
- package/dist-lib/host/replacement-module-handler.cjs +1 -1
- package/dist-lib/host/websocket-proxy.cjs +1 -1
- package/dist-lib/index.cjs +1 -1
- package/dist-lib/jump-to-source-babel.cjs +1 -1
- package/dist-lib/jump-to-source-native.cjs +1 -1
- package/dist-lib/menu.cjs +1 -1
- package/dist-lib/menu.mjs +1 -1
- package/dist-lib/metro-fingerprint-registry.cjs +1 -1
- package/dist-lib/metro-fingerprint-registry.mjs +1 -1
- package/dist-lib/metro-production-bundle.cjs +1 -1
- package/dist-lib/metro-production-bundle.mjs +1 -1
- package/dist-lib/metro.cjs +1 -1
- package/dist-lib/profiles.cjs +1 -1
- package/dist-lib/public-brand.cjs +1 -1
- package/dist-lib/react-native-host-modules.cjs +1 -1
- package/dist-lib/react-native-host-modules.mjs +1 -1
- package/dist-lib/render-mode.cjs +1 -1
- package/dist-lib/scripts/dev-server-scanner.cjs +1 -1
- package/dist-lib/sdk.cjs +1 -1
- package/dist-lib/sdk.mjs +1 -1
- package/dist-lib/skills.cjs +17 -4
- package/dist-lib/vite.cjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -188,7 +188,7 @@ bridge always addresses the **shell worker**, never an undifferentiated sim.
|
|
|
188
188
|
|
|
189
189
|
- The published **`rnxsim/vite`** (`src/vite-plugin-one.ts`, `rnxPlugin`)
|
|
190
190
|
and **`rnxsim/metro`** plugins do one thing: serve the installed runtime at
|
|
191
|
-
`/__soot/` so an app's own dev server can host the sim shell.
|
|
191
|
+
`/__soot/` so an app's own dev server can host the sim shell. The Vite plugin accepts an
|
|
192
192
|
opt-in `open` option that launches a named Electron window when the dev server
|
|
193
193
|
starts (skipped when `CI` or `RNX_NO_OPEN` is set).
|
|
194
194
|
- The internal **`sootsim()`** plugin (`src/vite-plugin.ts`) is a separate, much
|
|
@@ -213,7 +213,7 @@ bridge always addresses the **shell worker**, never an undifferentiated sim.
|
|
|
213
213
|
| host proxies + dev-server scan | Host-side helpers so a cross-origin tenant worker can reach local dev servers and same-origin APIs: `/__server-scan` discovers running metro/expo/vxrn/one servers; fetch + websocket proxies relay guest-app network through the daemon. | `src/host/fetch-proxy-handler.ts`, `src/host/websocket-proxy.ts`, `scripts/dev-server-scanner.ts`, `src/dev-bundle-resolution.ts` |
|
|
214
214
|
| runtime delivery + rnx home | Versioned engine runtime management. The shared machinery owns manifest fetch, sha256 verification, channels, and auto-update. rnx binds it to `https://contrast.dev` and `~/.rnx/runtimes/<version>`. A repo can select `runtimeVersion` without changing the machine default. | `src/runtime-delivery.ts`, `packages/contrast-runtime-delivery/`, `src/home-paths.ts`, `src/runtime-assets.ts` |
|
|
215
215
|
| standalone CLI delivery | Cached stable-version checks, bounded interactive notices, and verified atomic executable replacement. | `cli/cli-update.ts`, `cli/commands/upgrade.ts`, `cli/commands/version.ts`, `src/cli-version.ts` |
|
|
216
|
-
| `rnxsim/vite` + `rnxsim/metro` (runtime serving) | Published bundler plugins. Both serve the installed engine runtime at `/__soot/` from `~/.rnx/runtimes/<version>` so an app's own dev server can host the sim shell;
|
|
216
|
+
| `rnxsim/vite` + `rnxsim/metro` (runtime serving) | Published bundler plugins. Both serve the installed engine runtime at `/__soot/` from `~/.rnx/runtimes/<version>` so an app's own dev server can host the sim shell; the Vite plugin can opt into a named Electron window. | `src/vite-plugin-one.ts`, `src/metro-plugin.ts`, `src/runtime-assets.ts` |
|
|
217
217
|
| `sootsim()` vite resolver plugin (internal) | The large RN-resolution / native-stub vite plugin: aliases `react-native` to the engine shim, native packages to `@sootsim/compat` stubs, applies worklets/babel transforms, and instantiates `SootSimBridgeHost` in its dev server. Distinct from the published `rnxsim/vite` export. | `src/vite-plugin.ts`, `src/worklets-babel.ts`, `packages/compat/src/stub-manifest.ts` |
|
|
218
218
|
| skills registry | rnx agent skills (`rnx-setup`, `rnx-debug`, `rnx-test`, `rnx-visual`, and the generated `contrast` index) installable with `rnx skill`. | `skills/*.md`, `src/skills/registry.ts`, `src/skills/types.ts` |
|
|
219
219
|
|
package/cli/commands/flow.ts
CHANGED
|
@@ -19,11 +19,7 @@ import { findDesktopCompanion } from '../desktop-companion'
|
|
|
19
19
|
import { exportFlowSession } from '../flow-export'
|
|
20
20
|
import { parseFlowFile, validateFlowFile } from '../flow-file'
|
|
21
21
|
import { FlowLiveStatusReporter } from '../flow-live-status'
|
|
22
|
-
import {
|
|
23
|
-
finalizeFlowSession,
|
|
24
|
-
keepFlowCandidate,
|
|
25
|
-
startFlowSession,
|
|
26
|
-
} from '../flow-session'
|
|
22
|
+
import { finalizeFlowSession, keepFlowCandidate, startFlowSession } from '../flow-session'
|
|
27
23
|
import { GLOBAL_FLAG_TAKES_VALUE } from '../parse-args'
|
|
28
24
|
import { rnxExit } from '../run-rnx'
|
|
29
25
|
import {
|
package/detox/proof-frame.cjs
CHANGED
|
@@ -32,9 +32,7 @@ function measureProofFrameContent(input) {
|
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
const yStart = Math.floor(height * PROOF_CONTENT_DEFINITION.contentBandInsetFraction)
|
|
35
|
-
const yEnd = Math.ceil(
|
|
36
|
-
height * (1 - PROOF_CONTENT_DEFINITION.contentBandInsetFraction),
|
|
37
|
-
)
|
|
35
|
+
const yEnd = Math.ceil(height * (1 - PROOF_CONTENT_DEFINITION.contentBandInsetFraction))
|
|
38
36
|
const bucketCounts = new Uint32Array(32 * 32 * 32)
|
|
39
37
|
let totalPixels = 0
|
|
40
38
|
for (let y = yStart; y < yEnd; y++) {
|
|
@@ -80,8 +78,7 @@ function measureProofFrameContent(input) {
|
|
|
80
78
|
contentPercent,
|
|
81
79
|
contentPixels,
|
|
82
80
|
dominant,
|
|
83
|
-
passedMinimum:
|
|
84
|
-
contentPercent >= PROOF_CONTENT_DEFINITION.minimumContentPercent,
|
|
81
|
+
passedMinimum: contentPercent >= PROOF_CONTENT_DEFINITION.minimumContentPercent,
|
|
85
82
|
totalPixels,
|
|
86
83
|
}
|
|
87
84
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
package/dist-lib/beta.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
package/dist-lib/beta.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
package/dist-lib/cloud.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
package/dist-lib/cloud.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
var __defProp = Object.defineProperty;
|
|
3
3
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4
4
|
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
package/dist-lib/config.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
package/dist-lib/detox/index.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
@@ -159,9 +159,7 @@ var require_proof_frame = __commonJS({
|
|
|
159
159
|
throw new Error("proof content measurement needs RGBA pixels and dimensions");
|
|
160
160
|
}
|
|
161
161
|
const yStart = Math.floor(height * PROOF_CONTENT_DEFINITION.contentBandInsetFraction);
|
|
162
|
-
const yEnd = Math.ceil(
|
|
163
|
-
height * (1 - PROOF_CONTENT_DEFINITION.contentBandInsetFraction)
|
|
164
|
-
);
|
|
162
|
+
const yEnd = Math.ceil(height * (1 - PROOF_CONTENT_DEFINITION.contentBandInsetFraction));
|
|
165
163
|
const bucketCounts = new Uint32Array(32 * 32 * 32);
|
|
166
164
|
let totalPixels = 0;
|
|
167
165
|
for (let y = yStart; y < yEnd; y++) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
package/dist-lib/home-paths.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
|
|
3
3
|
// src/host/fetch-proxy-overrides.ts
|
|
4
4
|
var FETCH_PROXY_BROWSER_USER_AGENT = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
package/dist-lib/index.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
package/dist-lib/menu.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
package/dist-lib/menu.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
package/dist-lib/metro.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
package/dist-lib/profiles.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
package/dist-lib/render-mode.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
package/dist-lib/sdk.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
package/dist-lib/sdk.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
var __defProp = Object.defineProperty;
|
|
3
3
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4
4
|
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
package/dist-lib/skills.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
@@ -2368,6 +2368,7 @@ var init_capability_outcomes2 = __esm({
|
|
|
2368
2368
|
"@react-native-async-storage/async-storage": {
|
|
2369
2369
|
exactTestedVersion: "2.2.0",
|
|
2370
2370
|
supportedVersionRange: ">=1.0.0",
|
|
2371
|
+
lastMeasured: null,
|
|
2371
2372
|
unmatchedReferenceCount: 60,
|
|
2372
2373
|
byPlatform: {
|
|
2373
2374
|
android: {
|
|
@@ -2435,6 +2436,7 @@ var init_capability_outcomes2 = __esm({
|
|
|
2435
2436
|
"@react-native-community/datetimepicker": {
|
|
2436
2437
|
exactTestedVersion: "9.1.0",
|
|
2437
2438
|
supportedVersionRange: ">=9.1.0 <10.0.0",
|
|
2439
|
+
lastMeasured: null,
|
|
2438
2440
|
unmatchedReferenceCount: 0,
|
|
2439
2441
|
byPlatform: {
|
|
2440
2442
|
android: {
|
|
@@ -2502,6 +2504,7 @@ var init_capability_outcomes2 = __esm({
|
|
|
2502
2504
|
"@react-native-community/netinfo": {
|
|
2503
2505
|
exactTestedVersion: "12.0.1",
|
|
2504
2506
|
supportedVersionRange: ">=9.0.0",
|
|
2507
|
+
lastMeasured: null,
|
|
2505
2508
|
unmatchedReferenceCount: 19,
|
|
2506
2509
|
byPlatform: {
|
|
2507
2510
|
android: {
|
|
@@ -2569,6 +2572,7 @@ var init_capability_outcomes2 = __esm({
|
|
|
2569
2572
|
"@react-native-masked-view/masked-view": {
|
|
2570
2573
|
exactTestedVersion: "0.3.2",
|
|
2571
2574
|
supportedVersionRange: ">=0.2.0",
|
|
2575
|
+
lastMeasured: null,
|
|
2572
2576
|
unmatchedReferenceCount: 95,
|
|
2573
2577
|
byPlatform: {
|
|
2574
2578
|
android: {
|
|
@@ -2636,6 +2640,7 @@ var init_capability_outcomes2 = __esm({
|
|
|
2636
2640
|
"@sentry/react-native": {
|
|
2637
2641
|
exactTestedVersion: "8.22.0",
|
|
2638
2642
|
supportedVersionRange: ">=5.0.0",
|
|
2643
|
+
lastMeasured: null,
|
|
2639
2644
|
unmatchedReferenceCount: 13,
|
|
2640
2645
|
byPlatform: {
|
|
2641
2646
|
android: {
|
|
@@ -2703,6 +2708,7 @@ var init_capability_outcomes2 = __esm({
|
|
|
2703
2708
|
"react-native": {
|
|
2704
2709
|
exactTestedVersion: "0.86.2",
|
|
2705
2710
|
supportedVersionRange: "0.86.x",
|
|
2711
|
+
lastMeasured: null,
|
|
2706
2712
|
unmatchedReferenceCount: 7112,
|
|
2707
2713
|
byPlatform: {
|
|
2708
2714
|
android: {
|
|
@@ -2770,6 +2776,7 @@ var init_capability_outcomes2 = __esm({
|
|
|
2770
2776
|
"react-native-gesture-handler": {
|
|
2771
2777
|
exactTestedVersion: "2.32.0",
|
|
2772
2778
|
supportedVersionRange: ">=2.30.0",
|
|
2779
|
+
lastMeasured: null,
|
|
2773
2780
|
unmatchedReferenceCount: 528,
|
|
2774
2781
|
byPlatform: {
|
|
2775
2782
|
android: {
|
|
@@ -2837,6 +2844,7 @@ var init_capability_outcomes2 = __esm({
|
|
|
2837
2844
|
"react-native-get-random-values": {
|
|
2838
2845
|
exactTestedVersion: "2.0.0",
|
|
2839
2846
|
supportedVersionRange: ">=1.0.0",
|
|
2847
|
+
lastMeasured: null,
|
|
2840
2848
|
unmatchedReferenceCount: 0,
|
|
2841
2849
|
byPlatform: {
|
|
2842
2850
|
android: {
|
|
@@ -2904,6 +2912,7 @@ var init_capability_outcomes2 = __esm({
|
|
|
2904
2912
|
"react-native-keyboard-controller": {
|
|
2905
2913
|
exactTestedVersion: "1.21.11",
|
|
2906
2914
|
supportedVersionRange: ">=1.0.0",
|
|
2915
|
+
lastMeasured: null,
|
|
2907
2916
|
unmatchedReferenceCount: 165,
|
|
2908
2917
|
byPlatform: {
|
|
2909
2918
|
android: {
|
|
@@ -2971,6 +2980,7 @@ var init_capability_outcomes2 = __esm({
|
|
|
2971
2980
|
"react-native-reanimated": {
|
|
2972
2981
|
exactTestedVersion: "4.5.1",
|
|
2973
2982
|
supportedVersionRange: ">=4.0.0",
|
|
2983
|
+
lastMeasured: null,
|
|
2974
2984
|
unmatchedReferenceCount: 2107,
|
|
2975
2985
|
byPlatform: {
|
|
2976
2986
|
android: {
|
|
@@ -3038,6 +3048,7 @@ var init_capability_outcomes2 = __esm({
|
|
|
3038
3048
|
"react-native-safe-area-context": {
|
|
3039
3049
|
exactTestedVersion: "5.7.0",
|
|
3040
3050
|
supportedVersionRange: ">=4.0.0",
|
|
3051
|
+
lastMeasured: null,
|
|
3041
3052
|
unmatchedReferenceCount: 74,
|
|
3042
3053
|
byPlatform: {
|
|
3043
3054
|
android: {
|
|
@@ -3105,6 +3116,7 @@ var init_capability_outcomes2 = __esm({
|
|
|
3105
3116
|
"react-native-screens": {
|
|
3106
3117
|
exactTestedVersion: "4.26.2",
|
|
3107
3118
|
supportedVersionRange: ">=4.0.0",
|
|
3119
|
+
lastMeasured: null,
|
|
3108
3120
|
unmatchedReferenceCount: 0,
|
|
3109
3121
|
byPlatform: {
|
|
3110
3122
|
android: {
|
|
@@ -3172,6 +3184,7 @@ var init_capability_outcomes2 = __esm({
|
|
|
3172
3184
|
"react-native-svg": {
|
|
3173
3185
|
exactTestedVersion: "15.15.4",
|
|
3174
3186
|
supportedVersionRange: ">=13.0.0",
|
|
3187
|
+
lastMeasured: null,
|
|
3175
3188
|
unmatchedReferenceCount: 4459,
|
|
3176
3189
|
byPlatform: {
|
|
3177
3190
|
android: {
|
|
@@ -3239,6 +3252,7 @@ var init_capability_outcomes2 = __esm({
|
|
|
3239
3252
|
"react-native-webview": {
|
|
3240
3253
|
exactTestedVersion: "13.16.1",
|
|
3241
3254
|
supportedVersionRange: ">=11.0.0",
|
|
3255
|
+
lastMeasured: null,
|
|
3242
3256
|
unmatchedReferenceCount: 244,
|
|
3243
3257
|
byPlatform: {
|
|
3244
3258
|
android: {
|
|
@@ -3306,6 +3320,7 @@ var init_capability_outcomes2 = __esm({
|
|
|
3306
3320
|
"react-native-worklets": {
|
|
3307
3321
|
exactTestedVersion: "0.10.1",
|
|
3308
3322
|
supportedVersionRange: ">=0.1.0",
|
|
3323
|
+
lastMeasured: null,
|
|
3309
3324
|
unmatchedReferenceCount: 0,
|
|
3310
3325
|
byPlatform: {
|
|
3311
3326
|
android: {
|
|
@@ -32942,9 +32957,7 @@ var require_proof_frame = __commonJS({
|
|
|
32942
32957
|
throw new Error("proof content measurement needs RGBA pixels and dimensions");
|
|
32943
32958
|
}
|
|
32944
32959
|
const yStart = Math.floor(height * PROOF_CONTENT_DEFINITION.contentBandInsetFraction);
|
|
32945
|
-
const yEnd = Math.ceil(
|
|
32946
|
-
height * (1 - PROOF_CONTENT_DEFINITION.contentBandInsetFraction)
|
|
32947
|
-
);
|
|
32960
|
+
const yEnd = Math.ceil(height * (1 - PROOF_CONTENT_DEFINITION.contentBandInsetFraction));
|
|
32948
32961
|
const bucketCounts = new Uint32Array(32 * 32 * 32);
|
|
32949
32962
|
let totalPixels = 0;
|
|
32950
32963
|
for (let y = yStart; y < yEnd; y++) {
|
package/dist-lib/vite.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.455 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|