mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 14:31:02 +00:00
1 line
22 KiB
Plaintext
1 line
22 KiB
Plaintext
{"dependencies":[{"name":"./NativeUIManager","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":14,"column":0},"end":{"line":14,"column":48}}],"key":"/RwmOIWIg0JN0s++XHair+76/w4=","exportNames":["*"],"imports":1}},{"name":"nullthrows","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":15,"column":0},"end":{"line":15,"column":36}}],"key":"epufkdgpKN0G543QKwfSBBl0bWM=","exportNames":["*"],"imports":1}},{"name":"../BatchedBridge/NativeModules","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":17,"column":22},"end":{"line":17,"column":63}}],"key":"vsf1Ls4L++VD3yF8UTrETFprAwI=","exportNames":["*"],"imports":1}},{"name":"../Utilities/defineLazyObjectProperty","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":19,"column":2},"end":{"line":19,"column":50}}],"key":"iAPGUMITE/2KH0DH4/f0/lVJtsQ=","exportNames":["*"],"imports":1}},{"name":"../Utilities/Platform","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":20,"column":17},"end":{"line":20,"column":49}}],"key":"4a+BOpVYP2jviYQTOV6MRNF0tRc=","exportNames":["*"],"imports":1}},{"name":"./UIManagerProperties","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":21,"column":28},"end":{"line":21,"column":60}}],"key":"Zp8Lf7vF8AiWk3QkGb5owtjbark=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n function _interopDefault(e) {\n return e && e.__esModule ? e : {\n default: e\n };\n }\n Object.defineProperty(exports, \"default\", {\n enumerable: true,\n get: function () {\n return _default;\n }\n });\n var _NativeUIManager = require(_dependencyMap[0], \"./NativeUIManager\");\n var NativeUIManager = _interopDefault(_NativeUIManager);\n var _nullthrows = require(_dependencyMap[1], \"nullthrows\");\n var nullthrows = _interopDefault(_nullthrows);\n var NativeModules = require(_dependencyMap[2], \"../BatchedBridge/NativeModules\").default;\n var defineLazyObjectProperty = require(_dependencyMap[3], \"../Utilities/defineLazyObjectProperty\").default;\n var Platform = require(_dependencyMap[4], \"../Utilities/Platform\").default;\n var UIManagerProperties = require(_dependencyMap[5], \"./UIManagerProperties\").default;\n var viewManagerConfigs = {};\n var triedLoadingConfig = new Set();\n var NativeUIManagerConstants = {};\n var isNativeUIManagerConstantsSet = false;\n function getConstants() {\n if (!isNativeUIManagerConstantsSet) {\n NativeUIManagerConstants = NativeUIManager.default.getConstants();\n isNativeUIManagerConstantsSet = true;\n }\n return NativeUIManagerConstants;\n }\n function getViewManagerConfig(viewManagerName) {\n if (viewManagerConfigs[viewManagerName] === undefined && NativeUIManager.default.getConstantsForViewManager) {\n try {\n viewManagerConfigs[viewManagerName] = NativeUIManager.default.getConstantsForViewManager(viewManagerName);\n } catch (e) {\n console.error(\"NativeUIManager.getConstantsForViewManager('\" + viewManagerName + \"') threw an exception.\", e);\n viewManagerConfigs[viewManagerName] = null;\n }\n }\n var config = viewManagerConfigs[viewManagerName];\n if (config) {\n return config;\n }\n if (!global.nativeCallSyncHook) {\n return config;\n }\n if (NativeUIManager.default.lazilyLoadView && !triedLoadingConfig.has(viewManagerName)) {\n var result = (0, nullthrows.default)(NativeUIManager.default.lazilyLoadView)(viewManagerName);\n triedLoadingConfig.add(viewManagerName);\n if (result != null && result.viewConfig != null) {\n getConstants()[viewManagerName] = result.viewConfig;\n lazifyViewManagerConfig(viewManagerName);\n }\n }\n return viewManagerConfigs[viewManagerName];\n }\n var UIManagerJS = {\n ...NativeUIManager.default,\n createView(reactTag, viewName, rootTag, props) {\n if (Platform.OS === 'ios' && viewManagerConfigs[viewName] === undefined) {\n getViewManagerConfig(viewName);\n }\n NativeUIManager.default.createView(reactTag, viewName, rootTag, props);\n },\n getConstants() {\n return getConstants();\n },\n getViewManagerConfig(viewManagerName) {\n return getViewManagerConfig(viewManagerName);\n },\n hasViewManagerConfig(viewManagerName) {\n return getViewManagerConfig(viewManagerName) != null;\n }\n };\n NativeUIManager.default.getViewManagerConfig = UIManagerJS.getViewManagerConfig;\n function lazifyViewManagerConfig(viewName) {\n var viewConfig = getConstants()[viewName];\n viewManagerConfigs[viewName] = viewConfig;\n if (viewConfig.Manager) {\n defineLazyObjectProperty(viewConfig, 'Constants', {\n get: () => {\n var viewManager = NativeModules[viewConfig.Manager];\n var constants = {};\n viewManager && Object.keys(viewManager).forEach(key => {\n var value = viewManager[key];\n if (typeof value !== 'function') {\n constants[key] = value;\n }\n });\n return constants;\n }\n });\n defineLazyObjectProperty(viewConfig, 'Commands', {\n get: () => {\n var viewManager = NativeModules[viewConfig.Manager];\n var commands = {};\n var index = 0;\n viewManager && Object.keys(viewManager).forEach(key => {\n var value = viewManager[key];\n if (typeof value === 'function') {\n commands[key] = index++;\n }\n });\n return commands;\n }\n });\n }\n }\n if (Platform.OS === 'ios') {\n Object.keys(getConstants()).forEach(viewName => {\n lazifyViewManagerConfig(viewName);\n });\n } else if (getConstants().ViewManagerNames) {\n NativeUIManager.default.getConstants().ViewManagerNames.forEach(viewManagerName => {\n defineLazyObjectProperty(NativeUIManager.default, viewManagerName, {\n get: () => (0, nullthrows.default)(NativeUIManager.default.getConstantsForViewManager)(viewManagerName)\n });\n });\n }\n if (!global.nativeCallSyncHook) {\n Object.keys(getConstants()).forEach(viewManagerName => {\n if (!UIManagerProperties.includes(viewManagerName)) {\n if (!viewManagerConfigs[viewManagerName]) {\n viewManagerConfigs[viewManagerName] = getConstants()[viewManagerName];\n }\n defineLazyObjectProperty(NativeUIManager.default, viewManagerName, {\n get: () => {\n console.warn(`Accessing view manager configs directly off UIManager via UIManager['${viewManagerName}'] ` + `is no longer supported. Use UIManager.getViewManagerConfig('${viewManagerName}') instead.`);\n return UIManagerJS.getViewManagerConfig(viewManagerName);\n }\n });\n }\n });\n }\n var _default = UIManagerJS;\n});","lineCount":142,"map":[[12,2,191,0,"Object"],[12,8,191,0],[12,9,191,0,"defineProperty"],[12,23,191,0],[12,24,191,0,"exports"],[12,31,191,0],[13,4,191,0,"enumerable"],[13,14,191,0],[14,4,191,0,"get"],[14,7,191,0],[14,18,191,0,"get"],[14,19,191,0],[15,6,191,0],[15,13,191,0,"_default"],[15,21,191,0],[16,4,191,0],[17,2,191,0],[18,2,14,0],[18,6,14,0,"_NativeUIManager"],[18,22,14,0],[18,25,14,0,"require"],[18,32,14,0],[18,33,14,0,"_dependencyMap"],[18,47,14,0],[19,2,14,0],[19,6,14,0,"NativeUIManager"],[19,21,14,0],[19,24,14,0,"_interopDefault"],[19,39,14,0],[19,40,14,0,"_NativeUIManager"],[19,56,14,0],[20,2,15,0],[20,6,15,0,"_nullthrows"],[20,17,15,0],[20,20,15,0,"require"],[20,27,15,0],[20,28,15,0,"_dependencyMap"],[20,42,15,0],[21,2,15,0],[21,6,15,0,"nullthrows"],[21,16,15,0],[21,19,15,0,"_interopDefault"],[21,34,15,0],[21,35,15,0,"_nullthrows"],[21,46,15,0],[22,2,17,0],[22,6,17,6,"NativeModules"],[22,19,17,19],[22,22,17,22,"require"],[22,29,17,29],[22,30,17,29,"_dependencyMap"],[22,44,17,29],[22,81,17,62],[22,82,17,63],[22,83,17,64,"default"],[22,90,17,71],[23,2,18,0],[23,6,18,6,"defineLazyObjectProperty"],[23,30,18,30],[23,33,19,2,"require"],[23,40,19,9],[23,41,19,9,"_dependencyMap"],[23,55,19,9],[23,99,19,49],[23,100,19,50],[23,101,19,51,"default"],[23,108,19,58],[24,2,20,0],[24,6,20,6,"Platform"],[24,14,20,14],[24,17,20,17,"require"],[24,24,20,24],[24,25,20,24,"_dependencyMap"],[24,39,20,24],[24,67,20,48],[24,68,20,49],[24,69,20,50,"default"],[24,76,20,57],[25,2,21,0],[25,6,21,6,"UIManagerProperties"],[25,25,21,25],[25,28,21,28,"require"],[25,35,21,35],[25,36,21,35,"_dependencyMap"],[25,50,21,35],[25,78,21,59],[25,79,21,60],[25,80,21,61,"default"],[25,87,21,68],[26,2,23,0],[26,6,23,6,"viewManagerConfigs"],[26,24,23,48],[26,27,23,51],[26,28,23,52],[26,29,23,53],[27,2,25,0],[27,6,25,6,"triedLoadingConfig"],[27,24,25,24],[27,27,25,27],[27,31,25,31,"Set"],[27,34,25,34],[27,35,25,43],[27,36,25,44],[28,2,27,0],[28,6,27,4,"NativeUIManagerConstants"],[28,30,27,28],[28,33,27,31],[28,34,27,32],[28,35,27,33],[29,2,28,0],[29,6,28,4,"isNativeUIManagerConstantsSet"],[29,35,28,33],[29,38,28,36],[29,43,28,41],[30,2,29,0],[30,11,29,9,"getConstants"],[30,23,29,21,"getConstants"],[30,24,29,21],[30,26,29,32],[31,4,30,2],[31,8,30,6],[31,9,30,7,"isNativeUIManagerConstantsSet"],[31,38,30,36],[31,40,30,38],[32,6,31,4,"NativeUIManagerConstants"],[32,30,31,28],[32,33,31,31,"NativeUIManager"],[32,48,31,46],[32,49,31,46,"default"],[32,56,31,46],[32,57,31,47,"getConstants"],[32,69,31,59],[32,70,31,60],[32,71,31,61],[33,6,32,4,"isNativeUIManagerConstantsSet"],[33,35,32,33],[33,38,32,36],[33,42,32,40],[34,4,33,2],[35,4,34,2],[35,11,34,9,"NativeUIManagerConstants"],[35,35,34,33],[36,2,35,0],[37,2,37,0],[37,11,37,9,"getViewManagerConfig"],[37,31,37,29,"getViewManagerConfig"],[37,32,37,30,"viewManagerName"],[37,47,37,53],[37,49,37,60],[38,4,38,2],[38,8,39,4,"viewManagerConfigs"],[38,26,39,22],[38,27,39,23,"viewManagerName"],[38,42,39,38],[38,43,39,39],[38,48,39,44,"undefined"],[38,57,39,53],[38,61,40,4,"NativeUIManager"],[38,76,40,19],[38,77,40,19,"default"],[38,84,40,19],[38,85,40,20,"getConstantsForViewManager"],[38,111,40,46],[38,113,41,4],[39,6,42,4],[39,10,42,8],[40,8,43,6,"viewManagerConfigs"],[40,26,43,24],[40,27,43,25,"viewManagerName"],[40,42,43,40],[40,43,43,41],[40,46,44,8,"NativeUIManager"],[40,61,44,23],[40,62,44,23,"default"],[40,69,44,23],[40,70,44,24,"getConstantsForViewManager"],[40,96,44,50],[40,97,44,51,"viewManagerName"],[40,112,44,66],[40,113,44,67],[41,6,45,4],[41,7,45,5],[41,8,45,6],[41,15,45,13,"e"],[41,16,45,14],[41,18,45,16],[42,8,46,6,"console"],[42,15,46,13],[42,16,46,14,"error"],[42,21,46,19],[42,22,47,8],[42,68,47,54],[42,71,48,10,"viewManagerName"],[42,86,48,25],[42,89,49,10],[42,113,49,34],[42,115,50,8,"e"],[42,116,51,6],[42,117,51,7],[43,8,52,6,"viewManagerConfigs"],[43,26,52,24],[43,27,52,25,"viewManagerName"],[43,42,52,40],[43,43,52,41],[43,46,52,44],[43,50,52,48],[44,6,53,4],[45,4,54,2],[46,4,56,2],[46,8,56,8,"config"],[46,14,56,14],[46,17,56,17,"viewManagerConfigs"],[46,35,56,35],[46,36,56,36,"viewManagerName"],[46,51,56,51],[46,52,56,52],[47,4,57,2],[47,8,57,6,"config"],[47,14,57,12],[47,16,57,14],[48,6,58,4],[48,13,58,11,"config"],[48,19,58,17],[49,4,59,2],[50,4,63,2],[50,8,63,6],[50,9,63,7,"global"],[50,15,63,13],[50,16,63,14,"nativeCallSyncHook"],[50,34,63,32],[50,36,63,34],[51,6,64,4],[51,13,64,11,"config"],[51,19,64,17],[52,4,65,2],[53,4,67,2],[53,8,68,4,"NativeUIManager"],[53,23,68,19],[53,24,68,19,"default"],[53,31,68,19],[53,32,68,20,"lazilyLoadView"],[53,46,68,34],[53,50,69,4],[53,51,69,5,"triedLoadingConfig"],[53,69,69,23],[53,70,69,24,"has"],[53,73,69,27],[53,74,69,28,"viewManagerName"],[53,89,69,43],[53,90,69,44],[53,92,70,4],[54,6,71,4],[54,10,71,10,"result"],[54,16,71,16],[54,19,71,19],[54,23,71,19,"nullthrows"],[54,33,71,29],[54,34,71,29,"default"],[54,41,71,29],[54,43,71,30,"NativeUIManager"],[54,58,71,45],[54,59,71,45,"default"],[54,66,71,45],[54,67,71,46,"lazilyLoadView"],[54,81,71,60],[54,82,71,61],[54,83,71,62,"viewManagerName"],[54,98,71,77],[54,99,71,78],[55,6,72,4,"triedLoadingConfig"],[55,24,72,22],[55,25,72,23,"add"],[55,28,72,26],[55,29,72,27,"viewManagerName"],[55,44,72,42],[55,45,72,43],[56,6,73,4],[56,10,73,8,"result"],[56,16,73,14],[56,20,73,18],[56,24,73,22],[56,28,73,26,"result"],[56,34,73,32],[56,35,73,33,"viewConfig"],[56,45,73,43],[56,49,73,47],[56,53,73,51],[56,55,73,53],[57,8,74,6,"getConstants"],[57,20,74,18],[57,21,74,19],[57,22,74,20],[57,23,74,21,"viewManagerName"],[57,38,74,36],[57,39,74,37],[57,42,74,40,"result"],[57,48,74,46],[57,49,74,47,"viewConfig"],[57,59,74,57],[58,8,75,6,"lazifyViewManagerConfig"],[58,31,75,29],[58,32,75,30,"viewManagerName"],[58,47,75,45],[58,48,75,46],[59,6,76,4],[60,4,77,2],[61,4,79,2],[61,11,79,9,"viewManagerConfigs"],[61,29,79,27],[61,30,79,28,"viewManagerName"],[61,45,79,43],[61,46,79,44],[62,2,80,0],[63,2,83,0],[63,6,83,6,"UIManagerJS"],[63,17,83,39],[63,20,83,42],[64,4,84,2],[64,7,84,5,"NativeUIManager"],[64,22,84,20],[64,23,84,20,"default"],[64,30,84,20],[65,4,85,2,"createView"],[65,14,85,12,"createView"],[65,15,86,4,"reactTag"],[65,23,86,20],[65,25,87,4,"viewName"],[65,33,87,20],[65,35,88,4,"rootTag"],[65,42,88,20],[65,44,89,4,"props"],[65,49,89,17],[65,51,90,10],[66,6,91,4],[66,10,91,8,"Platform"],[66,18,91,16],[66,19,91,17,"OS"],[66,21,91,19],[66,26,91,24],[66,31,91,29],[66,35,91,33,"viewManagerConfigs"],[66,53,91,51],[66,54,91,52,"viewName"],[66,62,91,60],[66,63,91,61],[66,68,91,66,"undefined"],[66,77,91,75],[66,79,91,77],[67,8,94,6,"getViewManagerConfig"],[67,28,94,26],[67,29,94,27,"viewName"],[67,37,94,35],[67,38,94,36],[68,6,95,4],[69,6,97,4,"NativeUIManager"],[69,21,97,19],[69,22,97,19,"default"],[69,29,97,19],[69,30,97,20,"createView"],[69,40,97,30],[69,41,97,31,"reactTag"],[69,49,97,39],[69,51,97,41,"viewName"],[69,59,97,49],[69,61,97,51,"rootTag"],[69,68,97,58],[69,70,97,60,"props"],[69,75,97,65],[69,76,97,66],[70,4,98,2],[70,5,98,3],[71,4,99,2,"getConstants"],[71,16,99,14,"getConstants"],[71,17,99,14],[71,19,99,25],[72,6,100,4],[72,13,100,11,"getConstants"],[72,25,100,23],[72,26,100,24],[72,27,100,25],[73,4,101,2],[73,5,101,3],[74,4,102,2,"getViewManagerConfig"],[74,24,102,22,"getViewManagerConfig"],[74,25,102,23,"viewManagerName"],[74,40,102,46],[74,42,102,53],[75,6,103,4],[75,13,103,11,"getViewManagerConfig"],[75,33,103,31],[75,34,103,32,"viewManagerName"],[75,49,103,47],[75,50,103,48],[76,4,104,2],[76,5,104,3],[77,4,105,2,"hasViewManagerConfig"],[77,24,105,22,"hasViewManagerConfig"],[77,25,105,23,"viewManagerName"],[77,40,105,46],[77,42,105,57],[78,6,106,4],[78,13,106,11,"getViewManagerConfig"],[78,33,106,31],[78,34,106,32,"viewManagerName"],[78,49,106,47],[78,50,106,48],[78,54,106,52],[78,58,106,56],[79,4,107,2],[80,2,108,0],[80,3,108,1],[81,2,115,0,"NativeUIManager"],[81,17,115,15],[81,18,115,15,"default"],[81,25,115,15],[81,26,115,16,"getViewManagerConfig"],[81,46,115,36],[81,49,115,39,"UIManagerJS"],[81,60,115,50],[81,61,115,51,"getViewManagerConfig"],[81,81,115,71],[82,2,117,0],[82,11,117,9,"lazifyViewManagerConfig"],[82,34,117,32,"lazifyViewManagerConfig"],[82,35,117,33,"viewName"],[82,43,117,49],[82,45,117,51],[83,4,118,2],[83,8,118,8,"viewConfig"],[83,18,118,18],[83,21,118,21,"getConstants"],[83,33,118,33],[83,34,118,34],[83,35,118,35],[83,36,118,36,"viewName"],[83,44,118,44],[83,45,118,45],[84,4,119,2,"viewManagerConfigs"],[84,22,119,20],[84,23,119,21,"viewName"],[84,31,119,29],[84,32,119,30],[84,35,119,33,"viewConfig"],[84,45,119,43],[85,4,120,2],[85,8,120,6,"viewConfig"],[85,18,120,16],[85,19,120,17,"Manager"],[85,26,120,24],[85,28,120,26],[86,6,121,4,"defineLazyObjectProperty"],[86,30,121,28],[86,31,121,29,"viewConfig"],[86,41,121,39],[86,43,121,41],[86,54,121,52],[86,56,121,54],[87,8,122,6,"get"],[87,11,122,9],[87,13,122,11,"get"],[87,14,122,11],[87,19,122,17],[88,10,123,8],[88,14,123,14,"viewManager"],[88,25,123,25],[88,28,123,28,"NativeModules"],[88,41,123,41],[88,42,123,42,"viewConfig"],[88,52,123,52],[88,53,123,53,"Manager"],[88,60,123,60],[88,61,123,61],[89,10,124,8],[89,14,124,14,"constants"],[89,23,124,42],[89,26,124,45],[89,27,124,46],[89,28,124,47],[90,10,125,8,"viewManager"],[90,21,125,19],[90,25,126,10,"Object"],[90,31,126,16],[90,32,126,17,"keys"],[90,36,126,21],[90,37,126,22,"viewManager"],[90,48,126,33],[90,49,126,34],[90,50,126,35,"forEach"],[90,57,126,42],[90,58,126,43,"key"],[90,61,126,46],[90,65,126,50],[91,12,127,12],[91,16,127,18,"value"],[91,21,127,23],[91,24,127,26,"viewManager"],[91,35,127,37],[91,36,127,38,"key"],[91,39,127,41],[91,40,127,42],[92,12,128,12],[92,16,128,16],[92,23,128,23,"value"],[92,28,128,28],[92,33,128,33],[92,43,128,43],[92,45,128,45],[93,14,129,14,"constants"],[93,23,129,23],[93,24,129,24,"key"],[93,27,129,27],[93,28,129,28],[93,31,129,31,"value"],[93,36,129,36],[94,12,130,12],[95,10,131,10],[95,11,131,11],[95,12,131,12],[96,10,132,8],[96,17,132,15,"constants"],[96,26,132,24],[97,8,133,6],[98,6,134,4],[98,7,134,5],[98,8,134,6],[99,6,135,4,"defineLazyObjectProperty"],[99,30,135,28],[99,31,135,29,"viewConfig"],[99,41,135,39],[99,43,135,41],[99,53,135,51],[99,55,135,53],[100,8,136,6,"get"],[100,11,136,9],[100,13,136,11,"get"],[100,14,136,11],[100,19,136,17],[101,10,137,8],[101,14,137,14,"viewManager"],[101,25,137,25],[101,28,137,28,"NativeModules"],[101,41,137,41],[101,42,137,42,"viewConfig"],[101,52,137,52],[101,53,137,53,"Manager"],[101,60,137,60],[101,61,137,61],[102,10,138,8],[102,14,138,14,"commands"],[102,22,138,42],[102,25,138,45],[102,26,138,46],[102,27,138,47],[103,10,139,8],[103,14,139,12,"index"],[103,19,139,17],[103,22,139,20],[103,23,139,21],[104,10,140,8,"viewManager"],[104,21,140,19],[104,25,141,10,"Object"],[104,31,141,16],[104,32,141,17,"keys"],[104,36,141,21],[104,37,141,22,"viewManager"],[104,48,141,33],[104,49,141,34],[104,50,141,35,"forEach"],[104,57,141,42],[104,58,141,43,"key"],[104,61,141,46],[104,65,141,50],[105,12,142,12],[105,16,142,18,"value"],[105,21,142,23],[105,24,142,26,"viewManager"],[105,35,142,37],[105,36,142,38,"key"],[105,39,142,41],[105,40,142,42],[106,12,143,12],[106,16,143,16],[106,23,143,23,"value"],[106,28,143,28],[106,33,143,33],[106,43,143,43],[106,45,143,45],[107,14,144,14,"commands"],[107,22,144,22],[107,23,144,23,"key"],[107,26,144,26],[107,27,144,27],[107,30,144,30,"index"],[107,35,144,35],[107,37,144,37],[108,12,145,12],[109,10,146,10],[109,11,146,11],[109,12,146,12],[110,10,147,8],[110,17,147,15,"commands"],[110,25,147,23],[111,8,148,6],[112,6,149,4],[112,7,149,5],[112,8,149,6],[113,4,150,2],[114,2,151,0],[115,2,158,0],[115,6,158,4,"Platform"],[115,14,158,12],[115,15,158,13,"OS"],[115,17,158,15],[115,22,158,20],[115,27,158,25],[115,29,158,27],[116,4,159,2,"Object"],[116,10,159,8],[116,11,159,9,"keys"],[116,15,159,13],[116,16,159,14,"getConstants"],[116,28,159,26],[116,29,159,27],[116,30,159,28],[116,31,159,29],[116,32,159,30,"forEach"],[116,39,159,37],[116,40,159,38,"viewName"],[116,48,159,46],[116,52,159,50],[117,6,160,4,"lazifyViewManagerConfig"],[117,29,160,27],[117,30,160,28,"viewName"],[117,38,160,36],[117,39,160,37],[118,4,161,2],[118,5,161,3],[118,6,161,4],[119,2,162,0],[119,3,162,1],[119,9,162,7],[119,13,162,11,"getConstants"],[119,25,162,23],[119,26,162,24],[119,27,162,25],[119,28,162,26,"ViewManagerNames"],[119,44,162,42],[119,46,162,44],[120,4,163,2,"NativeUIManager"],[120,19,163,17],[120,20,163,17,"default"],[120,27,163,17],[120,28,163,18,"getConstants"],[120,40,163,30],[120,41,163,31],[120,42,163,32],[120,43,163,33,"ViewManagerNames"],[120,59,163,49],[120,60,163,50,"forEach"],[120,67,163,57],[120,68,163,58,"viewManagerName"],[120,83,163,73],[120,87,163,77],[121,6,164,4,"defineLazyObjectProperty"],[121,30,164,28],[121,31,164,29,"NativeUIManager"],[121,46,164,44],[121,47,164,44,"default"],[121,54,164,44],[121,56,164,46,"viewManagerName"],[121,71,164,61],[121,73,164,63],[122,8,165,6,"get"],[122,11,165,9],[122,13,165,11,"get"],[122,14,165,11],[122,19,166,8],[122,23,166,8,"nullthrows"],[122,33,166,18],[122,34,166,18,"default"],[122,41,166,18],[122,43,166,19,"NativeUIManager"],[122,58,166,34],[122,59,166,34,"default"],[122,66,166,34],[122,67,166,35,"getConstantsForViewManager"],[122,93,166,61],[122,94,166,62],[122,95,166,63,"viewManagerName"],[122,110,166,78],[123,6,167,4],[123,7,167,5],[123,8,167,6],[124,4,168,2],[124,5,168,3],[124,6,168,4],[125,2,169,0],[126,2,171,0],[126,6,171,4],[126,7,171,5,"global"],[126,13,171,11],[126,14,171,12,"nativeCallSyncHook"],[126,32,171,30],[126,34,171,32],[127,4,172,2,"Object"],[127,10,172,8],[127,11,172,9,"keys"],[127,15,172,13],[127,16,172,14,"getConstants"],[127,28,172,26],[127,29,172,27],[127,30,172,28],[127,31,172,29],[127,32,172,30,"forEach"],[127,39,172,37],[127,40,172,38,"viewManagerName"],[127,55,172,53],[127,59,172,57],[128,6,173,4],[128,10,173,8],[128,11,173,9,"UIManagerProperties"],[128,30,173,28],[128,31,173,29,"includes"],[128,39,173,37],[128,40,173,38,"viewManagerName"],[128,55,173,53],[128,56,173,54],[128,58,173,56],[129,8,174,6],[129,12,174,10],[129,13,174,11,"viewManagerConfigs"],[129,31,174,29],[129,32,174,30,"viewManagerName"],[129,47,174,45],[129,48,174,46],[129,50,174,48],[130,10,175,8,"viewManagerConfigs"],[130,28,175,26],[130,29,175,27,"viewManagerName"],[130,44,175,42],[130,45,175,43],[130,48,175,46,"getConstants"],[130,60,175,58],[130,61,175,59],[130,62,175,60],[130,63,175,61,"viewManagerName"],[130,78,175,76],[130,79,175,77],[131,8,176,6],[132,8,177,6,"defineLazyObjectProperty"],[132,32,177,30],[132,33,177,31,"NativeUIManager"],[132,48,177,46],[132,49,177,46,"default"],[132,56,177,46],[132,58,177,48,"viewManagerName"],[132,73,177,63],[132,75,177,65],[133,10,178,8,"get"],[133,13,178,11],[133,15,178,13,"get"],[133,16,178,13],[133,21,178,19],[134,12,179,10,"console"],[134,19,179,17],[134,20,179,18,"warn"],[134,24,179,22],[134,25,180,12],[134,97,180,84,"viewManagerName"],[134,112,180,99],[134,117,180,104],[134,120,181,14],[134,183,181,77,"viewManagerName"],[134,198,181,92],[134,211,182,10],[134,212,182,11],[135,12,184,10],[135,19,184,17,"UIManagerJS"],[135,30,184,28],[135,31,184,29,"getViewManagerConfig"],[135,51,184,49],[135,52,184,50,"viewManagerName"],[135,67,184,65],[135,68,184,66],[136,10,185,8],[137,8,186,6],[137,9,186,7],[137,10,186,8],[138,6,187,4],[139,4,188,2],[139,5,188,3],[139,6,188,4],[140,2,189,0],[141,2,191,0],[141,6,191,0,"_default"],[141,14,191,0],[141,17,191,15,"UIManagerJS"],[141,28,191,26],[142,0,191,27],[142,3]],"functionMap":{"names":["<global>","getConstants","getViewManagerConfig","UIManagerJS.createView","UIManagerJS.getConstants","UIManagerJS.getViewManagerConfig","UIManagerJS.hasViewManagerConfig","lazifyViewManagerConfig","defineLazyObjectProperty$argument_2.get","Object.keys.forEach$argument_0","NativeUIManager.getConstants.ViewManagerNames.forEach$argument_0"],"mappings":"AAA;AC4B;CDM;AEE;CF2C;EGK;GHa;EIC;GJE;EKC;GLE;EMC;GNE;AOU;WCK;2CCI;WDK;ODE;WCG;2CCK;WDK;ODE;CPG;sCSQ;GTE;0DUE;WFE;+EEC;GVE;sCSI;aDM;SCO;GTG"},"hasCjsExports":false},"type":"js/module"}]} |