auto-commit for fc7d19a7-5a66-4fb6-a51a-eb888d5e3f11

This commit is contained in:
emergent-agent-e1
2025-10-24 02:40:54 +00:00
parent e4bfdceb3d
commit 1456674871
4796 changed files with 5440 additions and 0 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[{"name":"./ensureNativeModulesAreInstalled","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":84,"index":84}}],"key":"A4316oxUZ5JztskIqVu3iyhr9Sk=","exportNames":["*"]}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.registerWebModule = registerWebModule;\n var _ensureNativeModulesAreInstalled = require(_dependencyMap[0], \"./ensureNativeModulesAreInstalled\");\n /**\n * Registers a web module.\n * @param moduleImplementation A class that extends `NativeModule`. The class is registered under `globalThis.expo.modules[className]`.\n * @param moduleName a name to register the module under `globalThis.expo.modules[className]`.\n * @returns A singleton instance of the class passed into arguments.\n */\n\n function registerWebModule(moduleImplementation, moduleName) {\n (0, _ensureNativeModulesAreInstalled.ensureNativeModulesAreInstalled)();\n moduleName = moduleName ?? moduleImplementation.name;\n if (!moduleName) {\n throw new Error('Web module implementation is missing a name - it is either not a class or has been minified. Pass the name as a second argument to the `registerWebModule` function.');\n }\n if (!globalThis?.expo?.modules) {\n globalThis.expo.modules = {};\n }\n if (globalThis.expo.modules[moduleName]) {\n return globalThis.expo.modules[moduleName];\n }\n globalThis.expo.modules[moduleName] = new moduleImplementation();\n return globalThis.expo.modules[moduleName];\n }\n});","lineCount":29,"map":[[6,2,1,0],[6,6,1,0,"_ensureNativeModulesAreInstalled"],[6,38,1,0],[6,41,1,0,"require"],[6,48,1,0],[6,49,1,0,"_dependencyMap"],[6,63,1,0],[7,2,4,0],[8,0,5,0],[9,0,6,0],[10,0,7,0],[11,0,8,0],[12,0,9,0],[14,2,11,7],[14,11,11,16,"registerWebModule"],[14,28,11,33,"registerWebModule"],[14,29,14,2,"moduleImplementation"],[14,49,14,34],[14,51,14,36,"moduleName"],[14,61,14,54],[14,63,14,68],[15,4,15,2],[15,8,15,2,"ensureNativeModulesAreInstalled"],[15,72,15,33],[15,74,15,34],[15,75,15,35],[16,4,17,2,"moduleName"],[16,14,17,12],[16,17,17,15,"moduleName"],[16,27,17,25],[16,31,17,29,"moduleImplementation"],[16,51,17,49],[16,52,17,50,"name"],[16,56,17,54],[17,4,18,2],[17,8,18,6],[17,9,18,7,"moduleName"],[17,19,18,17],[17,21,18,19],[18,6,19,4],[18,12,19,10],[18,16,19,14,"Error"],[18,21,19,19],[18,22,20,6],[18,188,21,4],[18,189,21,5],[19,4,22,2],[20,4,23,2],[20,8,23,6],[20,9,23,7,"globalThis"],[20,19,23,17],[20,21,23,19,"expo"],[20,25,23,23],[20,27,23,25,"modules"],[20,34,23,32],[20,36,23,34],[21,6,24,4,"globalThis"],[21,16,24,14],[21,17,24,15,"expo"],[21,21,24,19],[21,22,24,20,"modules"],[21,29,24,27],[21,32,24,30],[21,33,24,31],[21,34,24,32],[22,4,25,2],[23,4,26,2],[23,8,26,6,"globalThis"],[23,18,26,16],[23,19,26,17,"expo"],[23,23,26,21],[23,24,26,22,"modules"],[23,31,26,29],[23,32,26,30,"moduleName"],[23,42,26,40],[23,43,26,41],[23,45,26,43],[24,6,27,4],[24,13,27,11,"globalThis"],[24,23,27,21],[24,24,27,22,"expo"],[24,28,27,26],[24,29,27,27,"modules"],[24,36,27,34],[24,37,27,35,"moduleName"],[24,47,27,45],[24,48,27,46],[25,4,28,2],[26,4,29,2,"globalThis"],[26,14,29,12],[26,15,29,13,"expo"],[26,19,29,17],[26,20,29,18,"modules"],[26,27,29,25],[26,28,29,26,"moduleName"],[26,38,29,36],[26,39,29,37],[26,42,29,40],[26,46,29,44,"moduleImplementation"],[26,66,29,64],[26,67,29,65],[26,68,29,66],[27,4,30,2],[27,11,30,9,"globalThis"],[27,21,30,19],[27,22,30,20,"expo"],[27,26,30,24],[27,27,30,25,"modules"],[27,34,30,32],[27,35,30,33,"moduleName"],[27,45,30,43],[27,46,30,44],[28,2,31,0],[29,0,31,1],[29,3]],"functionMap":{"names":["<global>","registerWebModule"],"mappings":"AAA;OCU;CDoB"}},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n // Forked so we can access without importing any React Native code in Node.js environments.\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.findFocusedRoute = findFocusedRoute;\n function findFocusedRoute(state) {\n let current = state;\n while (current?.routes[current.index ?? 0].state != null) {\n current = current.routes[current.index ?? 0].state;\n }\n const route = current?.routes[current?.index ?? 0];\n return route;\n }\n});","lineCount":17,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0],[5,2,3,0,"Object"],[5,8,3,6],[5,9,3,7,"defineProperty"],[5,23,3,21],[5,24,3,22,"exports"],[5,31,3,29],[5,33,3,31],[5,45,3,43],[5,47,3,45],[6,4,3,47,"value"],[6,9,3,52],[6,11,3,54],[7,2,3,59],[7,3,3,60],[7,4,3,61],[8,2,4,0,"exports"],[8,9,4,7],[8,10,4,8,"findFocusedRoute"],[8,26,4,24],[8,29,4,27,"findFocusedRoute"],[8,45,4,43],[9,2,5,0],[9,11,5,9,"findFocusedRoute"],[9,27,5,25,"findFocusedRoute"],[9,28,5,26,"state"],[9,33,5,31],[9,35,5,33],[10,4,6,4],[10,8,6,8,"current"],[10,15,6,15],[10,18,6,18,"state"],[10,23,6,23],[11,4,7,4],[11,11,7,11,"current"],[11,18,7,18],[11,20,7,20,"routes"],[11,26,7,26],[11,27,7,27,"current"],[11,34,7,34],[11,35,7,35,"index"],[11,40,7,40],[11,44,7,44],[11,45,7,45],[11,46,7,46],[11,47,7,47,"state"],[11,52,7,52],[11,56,7,56],[11,60,7,60],[11,62,7,62],[12,6,8,8,"current"],[12,13,8,15],[12,16,8,18,"current"],[12,23,8,25],[12,24,8,26,"routes"],[12,30,8,32],[12,31,8,33,"current"],[12,38,8,40],[12,39,8,41,"index"],[12,44,8,46],[12,48,8,50],[12,49,8,51],[12,50,8,52],[12,51,8,53,"state"],[12,56,8,58],[13,4,9,4],[14,4,10,4],[14,10,10,10,"route"],[14,15,10,15],[14,18,10,18,"current"],[14,25,10,25],[14,27,10,27,"routes"],[14,33,10,33],[14,34,10,34,"current"],[14,41,10,41],[14,43,10,43,"index"],[14,48,10,48],[14,52,10,52],[14,53,10,53],[14,54,10,54],[15,4,11,4],[15,11,11,11,"route"],[15,16,11,16],[16,2,12,0],[17,0,12,1],[17,3]],"functionMap":{"names":["<global>","findFocusedRoute"],"mappings":"AAA;ACI;CDO"}},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[{"name":"@babel/runtime/helpers/interopRequireDefault","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"kslwqCIsh6ew+I1KeA1rlVRjsAk=","exportNames":["*"]}},{"name":"../../../modules/isWebColor","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":10,"column":0,"index":181},"end":{"line":10,"column":53,"index":234}}],"key":"cwmPJIMH9ANQU9vlPIsVE4/Mseo=","exportNames":["*"]}},{"name":"../../../exports/processColor","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":11,"column":0,"index":235},"end":{"line":11,"column":57,"index":292}}],"key":"1LfHhihrxnxkyOujWKF/xyAY//g=","exportNames":["*"]}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n var _interopRequireDefault = require(_dependencyMap[0], \"@babel/runtime/helpers/interopRequireDefault\");\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.default = void 0;\n var _isWebColor = _interopRequireDefault(require(_dependencyMap[1], \"../../../modules/isWebColor\"));\n var _processColor = _interopRequireDefault(require(_dependencyMap[2], \"../../../exports/processColor\"));\n /**\n * Copyright (c) Nicolas Gallagher.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n */\n\n var normalizeColor = function normalizeColor(color, opacity) {\n if (opacity === void 0) {\n opacity = 1;\n }\n if (color == null) return;\n if (typeof color === 'string' && (0, _isWebColor.default)(color)) {\n return color;\n }\n var colorInt = (0, _processColor.default)(color);\n if (colorInt != null) {\n var r = colorInt >> 16 & 255;\n var g = colorInt >> 8 & 255;\n var b = colorInt & 255;\n var a = (colorInt >> 24 & 255) / 255;\n var alpha = (a * opacity).toFixed(2);\n return \"rgba(\" + r + \",\" + g + \",\" + b + \",\" + alpha + \")\";\n }\n };\n var _default = exports.default = normalizeColor;\n});","lineCount":37,"map":[[7,2,10,0],[7,6,10,0,"_isWebColor"],[7,17,10,0],[7,20,10,0,"_interopRequireDefault"],[7,42,10,0],[7,43,10,0,"require"],[7,50,10,0],[7,51,10,0,"_dependencyMap"],[7,65,10,0],[8,2,11,0],[8,6,11,0,"_processColor"],[8,19,11,0],[8,22,11,0,"_interopRequireDefault"],[8,44,11,0],[8,45,11,0,"require"],[8,52,11,0],[8,53,11,0,"_dependencyMap"],[8,67,11,0],[9,2,1,0],[10,0,2,0],[11,0,3,0],[12,0,4,0],[13,0,5,0],[14,0,6,0],[15,0,7,0],[16,0,8,0],[18,2,12,0],[18,6,12,4,"normalizeColor"],[18,20,12,18],[18,23,12,21],[18,32,12,30,"normalizeColor"],[18,46,12,44,"normalizeColor"],[18,47,12,45,"color"],[18,52,12,50],[18,54,12,52,"opacity"],[18,61,12,59],[18,63,12,61],[19,4,13,2],[19,8,13,6,"opacity"],[19,15,13,13],[19,20,13,18],[19,25,13,23],[19,26,13,24],[19,28,13,26],[20,6,14,4,"opacity"],[20,13,14,11],[20,16,14,14],[20,17,14,15],[21,4,15,2],[22,4,16,2],[22,8,16,6,"color"],[22,13,16,11],[22,17,16,15],[22,21,16,19],[22,23,16,21],[23,4,17,2],[23,8,17,6],[23,15,17,13,"color"],[23,20,17,18],[23,25,17,23],[23,33,17,31],[23,37,17,35],[23,41,17,35,"isWebColor"],[23,60,17,45],[23,62,17,46,"color"],[23,67,17,51],[23,68,17,52],[23,70,17,54],[24,6,18,4],[24,13,18,11,"color"],[24,18,18,16],[25,4,19,2],[26,4,20,2],[26,8,20,6,"colorInt"],[26,16,20,14],[26,19,20,17],[26,23,20,17,"processColor"],[26,44,20,29],[26,46,20,30,"color"],[26,51,20,35],[26,52,20,36],[27,4,21,2],[27,8,21,6,"colorInt"],[27,16,21,14],[27,20,21,18],[27,24,21,22],[27,26,21,24],[28,6,22,4],[28,10,22,8,"r"],[28,11,22,9],[28,14,22,12,"colorInt"],[28,22,22,20],[28,26,22,24],[28,28,22,26],[28,31,22,29],[28,34,22,32],[29,6,23,4],[29,10,23,8,"g"],[29,11,23,9],[29,14,23,12,"colorInt"],[29,22,23,20],[29,26,23,24],[29,27,23,25],[29,30,23,28],[29,33,23,31],[30,6,24,4],[30,10,24,8,"b"],[30,11,24,9],[30,14,24,12,"colorInt"],[30,22,24,20],[30,25,24,23],[30,28,24,26],[31,6,25,4],[31,10,25,8,"a"],[31,11,25,9],[31,14,25,12],[31,15,25,13,"colorInt"],[31,23,25,21],[31,27,25,25],[31,29,25,27],[31,32,25,30],[31,35,25,33],[31,39,25,37],[31,42,25,40],[32,6,26,4],[32,10,26,8,"alpha"],[32,15,26,13],[32,18,26,16],[32,19,26,17,"a"],[32,20,26,18],[32,23,26,21,"opacity"],[32,30,26,28],[32,32,26,30,"toFixed"],[32,39,26,37],[32,40,26,38],[32,41,26,39],[32,42,26,40],[33,6,27,4],[33,13,27,11],[33,20,27,18],[33,23,27,21,"r"],[33,24,27,22],[33,27,27,25],[33,30,27,28],[33,33,27,31,"g"],[33,34,27,32],[33,37,27,35],[33,40,27,38],[33,43,27,41,"b"],[33,44,27,42],[33,47,27,45],[33,50,27,48],[33,53,27,51,"alpha"],[33,58,27,56],[33,61,27,59],[33,64,27,62],[34,4,28,2],[35,2,29,0],[35,3,29,1],[36,2,29,2],[36,6,29,2,"_default"],[36,14,29,2],[36,17,29,2,"exports"],[36,24,29,2],[36,25,29,2,"default"],[36,32,29,2],[36,35,30,15,"normalizeColor"],[36,49,30,29],[37,0,30,29],[37,3]],"functionMap":{"names":["<global>","normalizeColor"],"mappings":"AAA;qBCW;CDiB"}},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[{"name":"react","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":3,"column":0,"index":15},"end":{"line":3,"column":67,"index":82}}],"key":"RtGiGa+/H7VrI7GDQDLhO1UbpU8=","exportNames":["*"]}}],"output":[{"data":{"code":"__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,\"__esModule\",{value:!0}),e.useReleasingSharedObject=function(t,u){const c=(0,n.useRef)(null),s=(0,n.useRef)(!1),l=(0,n.useRef)(u);null==c.current&&(c.current=t());const f=(0,n.useMemo)(()=>{let n=c.current;const f=l.current?.length===u.length&&u.every((n,t)=>n===l.current[t]);return n&&f?s.current=!0:(c.current?.release(),n=t(),c.current=n,l.current=u),n},u);return(0,n.useEffect)(()=>(s.current=!1,()=>{!s.current&&c.current&&c.current.release()}),[]),f};var n=r(d[0])});","lineCount":1,"map":[[1,28,1,13,"Object"],[1,35,1,13,"defineProperty"],[1,50,1,13,"e"],[1,52,1,13],[1,66,1,13,"value"],[1,73,1,13],[1,77,1,13,"e"],[1,79,1,13,"useReleasingSharedObject"],[1,104,10,7],[1,113,11,2,"factory"],[1,115,12,2,"dependencies"],[1,118,14,2],[1,124,14,8,"objectRef"],[1,127,14,20],[1,129,14,20,"useRef"],[1,139,14,49],[1,145,15,8,"isFastRefresh"],[1,148,15,24],[1,150,15,24,"useRef"],[1,161,15,31],[1,164,16,8,"previousDependencies"],[1,167,16,31],[1,169,16,31,"useRef"],[1,179,16,54,"dependencies"],[1,182,18,27],[1,188,18,6,"objectRef"],[1,190,18,16,"current"],[1,200,19,4,"objectRef"],[1,202,19,14,"current"],[1,210,19,24,"factory"],[1,215,22,2],[1,221,22,8,"object"],[1,224,22,17],[1,226,22,17,"useMemo"],[1,237,22,25],[1,242,23,4],[1,246,23,8,"newObject"],[1,248,23,20,"objectRef"],[1,250,23,30,"current"],[1,258,24,4],[1,264,24,10,"dependenciesAreEqual"],[1,266,25,6,"previousDependencies"],[1,268,25,27,"current"],[1,277,25,36,"length"],[1,286,25,47,"dependencies"],[1,288,25,60,"length"],[1,296,26,6,"dependencies"],[1,298,26,19,"every"],[1,304,26,25],[1,305,26,26,"value"],[1,307,26,33,"index"],[1,311,26,43,"value"],[1,315,26,53,"previousDependencies"],[1,317,26,74,"current"],[1,325,26,82,"index"],[1,329,38,4],[1,336,30,9,"newObject"],[1,339,30,23,"dependenciesAreEqual"],[1,341,36,6,"isFastRefresh"],[1,343,36,20,"current"],[1,352,36,30],[1,355,31,6,"objectRef"],[1,357,31,16,"current"],[1,366,31,25,"release"],[1,376,32,6,"newObject"],[1,378,32,18,"factory"],[1,382,33,6,"objectRef"],[1,384,33,16,"current"],[1,392,33,26,"newObject"],[1,394,34,6,"previousDependencies"],[1,396,34,27,"current"],[1,404,34,37,"dependencies"],[1,407,38,11,"newObject"],[1,410,39,5,"dependencies"],[1,413,52,2],[1,420,41,2],[1,422,41,2,"useEffect"],[1,435,41,12],[1,440,42,4,"isFastRefresh"],[1,442,42,18,"current"],[1,451,42,28],[1,453,44,11],[1,459,46,11,"isFastRefresh"],[1,461,46,25,"current"],[1,470,46,36,"objectRef"],[1,472,46,46,"current"],[1,481,47,8,"objectRef"],[1,483,47,18,"current"],[1,491,47,26,"release"],[1,503,50,5],[1,507,52,9,"object"],[1,508,53,0],[1,510,3,0],[1,514,3,0,"_react"],[1,516,3,0,"r"],[1,518,3,0,"d"],[1,520,3,0],[1,523,53,1],[1,526]],"functionMap":{"names":["<global>","useReleasingSharedObject","useMemo$argument_0","dependencies.every$argument_0","useEffect$argument_0","<anonymous>"],"mappings":"AAA;OCS;yBCY;yBCI,+DD;GDa;YGE;WCG;KDK;GHC;CDG"}},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long