Files
pezkuwi-mobile-app/frontend/.metro-cache/cache/11/025cf5da6eb37317520dec5c30cd61167b70a88abf0e642267218badab022fb460ba46
T
2025-11-08 10:07:13 +00:00

1 line
16 KiB
Plaintext

{"dependencies":[{"name":"@babel/runtime/helpers/objectWithoutProperties","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"fnQVLibs90KHiJ7y48fLgPWzDS0=","exportNames":["*"],"imports":1}},{"name":"react","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":26,"index":26}}],"key":"RtGiGa+/H7VrI7GDQDLhO1UbpU8=","exportNames":["*"],"imports":1}},{"name":"react-native","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":27},"end":{"line":8,"column":22,"index":165}}],"key":"KyzuX10g6ixS9UfynhmjlvCIG3g=","exportNames":["*"],"imports":1}},{"name":"react/jsx-dev-runtime","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"L9D70Z4hi4aGuui1ysja/oQ5ytI=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n var _excluded = [\"style\", \"hideTransitionAnimation\", \"translucent\", \"backgroundColor\"];\n var _jsxFileName = \"/app/frontend/node_modules/expo-status-bar/src/NativeStatusBarWrapper.tsx\";\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 exports.StatusBar = StatusBar;\n exports.setStatusBarStyle = setStatusBarStyle;\n exports.setStatusBarHidden = setStatusBarHidden;\n exports.setStatusBarBackgroundColor = setStatusBarBackgroundColor;\n exports.setStatusBarNetworkActivityIndicatorVisible = setStatusBarNetworkActivityIndicatorVisible;\n exports.setStatusBarTranslucent = setStatusBarTranslucent;\n var _babelRuntimeHelpersObjectWithoutProperties = require(_dependencyMap[0], \"@babel/runtime/helpers/objectWithoutProperties\");\n var _objectWithoutProperties = _interopDefault(_babelRuntimeHelpersObjectWithoutProperties);\n var _react = require(_dependencyMap[1], \"react\");\n var React = _interopDefault(_react);\n var _reactNative = require(_dependencyMap[2], \"react-native\");\n var _reactJsxDevRuntime = require(_dependencyMap[3], \"react/jsx-dev-runtime\");\n /**\n * A component that allows you to configure your status bar without directly calling imperative\n * methods like `setBarStyle`.\n *\n * You will likely have multiple `StatusBar` components mounted in the same app at the same time.\n * For example, if you have multiple screens in your app, you may end up using one per screen.\n * The props of each `StatusBar` component will be merged in the order that they were mounted.\n * This component is built on top of the [StatusBar](https://reactnative.dev/docs/statusbar)\n * component exported from React Native, and it provides defaults that work better for Expo users.\n */\n function StatusBar(_ref) {\n var style = _ref.style,\n hideTransitionAnimation = _ref.hideTransitionAnimation,\n _ref$translucent = _ref.translucent,\n translucent = _ref$translucent === void 0 ? true : _ref$translucent,\n backgroundColorProp = _ref.backgroundColor,\n props = (0, _objectWithoutProperties.default)(_ref, _excluded);\n // Pick appropriate default value depending on current theme, so if we are\n // locked to light mode we don't end up with a light status bar\n var colorScheme = (0, _reactNative.useColorScheme)();\n var barStyle = React.default.useMemo(function () {\n return styleToBarStyle(style, colorScheme);\n }, [style, colorScheme]);\n\n // If translucent and no backgroundColor is provided, then use transparent\n // background\n var backgroundColor = backgroundColorProp;\n if (translucent && !backgroundColor) {\n backgroundColor = 'transparent';\n }\n return /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.StatusBar, Object.assign({}, props, {\n translucent: translucent,\n barStyle: barStyle,\n backgroundColor: backgroundColor,\n showHideTransition: hideTransitionAnimation === 'none' ? undefined : hideTransitionAnimation\n }), void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 42,\n columnNumber: 5\n }, this);\n }\n\n // @needsAudit\n /**\n * Set the bar style of the status bar.\n * @param style The color of the status bar text.\n * @param animated If the transition should be animated.\n */\n function setStatusBarStyle(style, animated) {\n _reactNative.StatusBar.setBarStyle(styleToBarStyle(style), animated);\n }\n\n // @needsAudit\n /**\n * Toggle visibility of the status bar.\n * @param hidden If the status bar should be hidden.\n * @param animation Animation to use when toggling hidden, defaults to `'none'`.\n */\n function setStatusBarHidden(hidden, animation) {\n _reactNative.StatusBar.setHidden(hidden, animation);\n }\n\n // @needsAudit\n /**\n * Set the background color of the status bar.\n * @param backgroundColor The background color of the status bar.\n * @param animated `true` to animate the background color change, `false` to change immediately.\n * @platform android\n */\n function setStatusBarBackgroundColor(backgroundColor, animated) {\n _reactNative.StatusBar.setBackgroundColor(backgroundColor, animated);\n }\n\n // @needsAudit\n /**\n * Toggle visibility of the network activity indicator.\n * @param visible If the network activity indicator should be visible.\n * @platform ios\n */\n function setStatusBarNetworkActivityIndicatorVisible(visible) {\n _reactNative.StatusBar.setNetworkActivityIndicatorVisible(visible);\n }\n\n // @needsAudit\n /**\n * Set the translucency of the status bar.\n * @param translucent Whether the app can draw under the status bar. When `true`, content will be\n * rendered under the status bar. This is always `true` on iOS and cannot be changed.\n * @platform android\n */\n function setStatusBarTranslucent(translucent) {\n _reactNative.StatusBar.setTranslucent(translucent);\n }\n function styleToBarStyle() {\n var _Appearance$getColorS;\n var style = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'auto';\n var colorScheme = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : (_Appearance$getColorS = _reactNative.Appearance == null ? void 0 : _reactNative.Appearance.getColorScheme()) != null ? _Appearance$getColorS : 'light';\n if (!colorScheme) {\n colorScheme = 'light';\n }\n var resolvedStyle = style;\n if (style === 'auto') {\n resolvedStyle = colorScheme === 'light' ? 'dark' : 'light';\n } else if (style === 'inverted') {\n resolvedStyle = colorScheme === 'light' ? 'light' : 'dark';\n }\n return resolvedStyle === 'light' ? 'light-content' : 'dark-content';\n }\n});","lineCount":134,"map":[[14,2,22,0,"exports"],[14,9,22,0],[14,10,22,0,"StatusBar"],[14,19,22,0],[14,22,22,0,"StatusBar"],[14,31,22,0],[15,2,58,0,"exports"],[15,9,58,0],[15,10,58,0,"setStatusBarStyle"],[15,27,58,0],[15,30,58,0,"setStatusBarStyle"],[15,47,58,0],[16,2,68,0,"exports"],[16,9,68,0],[16,10,68,0,"setStatusBarHidden"],[16,28,68,0],[16,31,68,0,"setStatusBarHidden"],[16,49,68,0],[17,2,79,0,"exports"],[17,9,79,0],[17,10,79,0,"setStatusBarBackgroundColor"],[17,37,79,0],[17,40,79,0,"setStatusBarBackgroundColor"],[17,67,79,0],[18,2,89,0,"exports"],[18,9,89,0],[18,10,89,0,"setStatusBarNetworkActivityIndicatorVisible"],[18,53,89,0],[18,56,89,0,"setStatusBarNetworkActivityIndicatorVisible"],[18,99,89,0],[19,2,100,0,"exports"],[19,9,100,0],[19,10,100,0,"setStatusBarTranslucent"],[19,33,100,0],[19,36,100,0,"setStatusBarTranslucent"],[19,59,100,0],[20,2,102,1],[20,6,102,1,"_babelRuntimeHelpersObjectWithoutProperties"],[20,49,102,1],[20,52,102,1,"require"],[20,59,102,1],[20,60,102,1,"_dependencyMap"],[20,74,102,1],[21,2,102,1],[21,6,102,1,"_objectWithoutProperties"],[21,30,102,1],[21,33,102,1,"_interopDefault"],[21,48,102,1],[21,49,102,1,"_babelRuntimeHelpersObjectWithoutProperties"],[21,92,102,1],[22,2,1,0],[22,6,1,0,"_react"],[22,12,1,0],[22,15,1,0,"require"],[22,22,1,0],[22,23,1,0,"_dependencyMap"],[22,37,1,0],[23,2,1,0],[23,6,1,0,"React"],[23,11,1,0],[23,14,1,0,"_interopDefault"],[23,29,1,0],[23,30,1,0,"_react"],[23,36,1,0],[24,2,2,0],[24,6,2,0,"_reactNative"],[24,18,2,0],[24,21,2,0,"require"],[24,28,2,0],[24,29,2,0,"_dependencyMap"],[24,43,2,0],[25,2,8,22],[25,6,8,22,"_reactJsxDevRuntime"],[25,25,8,22],[25,28,8,22,"require"],[25,35,8,22],[25,36,8,22,"_dependencyMap"],[25,50,8,22],[26,2,12,0],[27,0,13,0],[28,0,14,0],[29,0,15,0],[30,0,16,0],[31,0,17,0],[32,0,18,0],[33,0,19,0],[34,0,20,0],[35,0,21,0],[36,2,22,7],[36,11,22,16,"StatusBar"],[36,20,22,25,"StatusBar"],[36,21,22,25,"_ref"],[36,25,22,25],[36,27,28,19],[37,4,28,19],[37,8,23,2,"style"],[37,13,23,7],[37,16,23,7,"_ref"],[37,20,23,7],[37,21,23,2,"style"],[37,26,23,7],[38,6,24,2,"hideTransitionAnimation"],[38,29,24,25],[38,32,24,25,"_ref"],[38,36,24,25],[38,37,24,2,"hideTransitionAnimation"],[38,60,24,25],[39,6,24,25,"_ref$translucent"],[39,22,24,25],[39,25,24,25,"_ref"],[39,29,24,25],[39,30,25,2,"translucent"],[39,41,25,13],[40,6,25,2,"translucent"],[40,17,25,13],[40,20,25,13,"_ref$translucent"],[40,36,25,13],[40,50,25,16],[40,54,25,20],[40,57,25,20,"_ref$translucent"],[40,73,25,20],[41,6,26,19,"backgroundColorProp"],[41,25,26,38],[41,28,26,38,"_ref"],[41,32,26,38],[41,33,26,2,"backgroundColor"],[41,48,26,17],[42,6,27,5,"props"],[42,11,27,10],[42,18,27,10,"_objectWithoutProperties"],[42,42,27,10],[42,43,27,10,"default"],[42,50,27,10],[42,52,27,10,"_ref"],[42,56,27,10],[42,58,27,10,"_excluded"],[42,67,27,10],[43,4,29,2],[44,4,30,2],[45,4,31,2],[45,8,31,8,"colorScheme"],[45,19,31,19],[45,22,31,22],[45,26,31,22,"useColorScheme"],[45,38,31,36],[45,39,31,36,"useColorScheme"],[45,53,31,36],[45,55,31,37],[45,56,31,38],[46,4,32,2],[46,8,32,8,"barStyle"],[46,16,32,16],[46,19,32,19,"React"],[46,24,32,24],[46,25,32,24,"default"],[46,32,32,24],[46,33,32,25,"useMemo"],[46,40,32,32],[46,41,32,33],[47,6,32,33],[47,13,32,39,"styleToBarStyle"],[47,28,32,54],[47,29,32,55,"style"],[47,34,32,60],[47,36,32,62,"colorScheme"],[47,47,32,73],[47,48,32,74],[48,4,32,74],[48,7,32,76],[48,8,32,77,"style"],[48,13,32,82],[48,15,32,84,"colorScheme"],[48,26,32,95],[48,27,32,96],[48,28,32,97],[50,4,34,2],[51,4,35,2],[52,4,36,2],[52,8,36,6,"backgroundColor"],[52,23,36,21],[52,26,36,24,"backgroundColorProp"],[52,45,36,43],[53,4,37,2],[53,8,37,6,"translucent"],[53,19,37,17],[53,23,37,21],[53,24,37,22,"backgroundColor"],[53,39,37,37],[53,41,37,39],[54,6,38,4,"backgroundColor"],[54,21,38,19],[54,24,38,22],[54,37,38,35],[55,4,39,2],[56,4,41,2],[56,24,42,4],[56,28,42,4,"_reactJsxDevRuntime"],[56,47,42,4],[56,48,42,4,"jsxDEV"],[56,54,42,4],[56,56,42,5,"_reactNative"],[56,68,42,20],[56,69,42,20,"StatusBar"],[56,78,42,20],[56,80,42,20,"Object"],[56,86,42,20],[56,87,42,20,"assign"],[56,93,42,20],[56,98,43,10,"props"],[56,103,43,15],[57,6,44,6,"translucent"],[57,17,44,17],[57,19,44,19,"translucent"],[57,30,44,31],[58,6,45,6,"barStyle"],[58,14,45,14],[58,16,45,16,"barStyle"],[58,24,45,25],[59,6,46,6,"backgroundColor"],[59,21,46,21],[59,23,46,23,"backgroundColor"],[59,38,46,39],[60,6,47,6,"showHideTransition"],[60,24,47,24],[60,26,47,26,"hideTransitionAnimation"],[60,49,47,49],[60,54,47,54],[60,60,47,60],[60,63,47,63,"undefined"],[60,72,47,72],[60,75,47,75,"hideTransitionAnimation"],[61,4,47,99],[62,6,47,99,"fileName"],[62,14,47,99],[62,16,47,99,"_jsxFileName"],[62,28,47,99],[63,6,47,99,"lineNumber"],[63,16,47,99],[64,6,47,99,"columnNumber"],[64,18,47,99],[65,4,47,99],[65,11,48,5],[65,12,48,6],[66,2,50,0],[68,2,52,0],[69,2,53,0],[70,0,54,0],[71,0,55,0],[72,0,56,0],[73,0,57,0],[74,2,58,7],[74,11,58,16,"setStatusBarStyle"],[74,28,58,33,"setStatusBarStyle"],[74,29,58,34,"style"],[74,34,58,55],[74,36,58,57,"animated"],[74,44,58,75],[74,46,58,77],[75,4,59,2,"NativeStatusBar"],[75,16,59,17],[75,17,59,17,"StatusBar"],[75,26,59,17],[75,27,59,18,"setBarStyle"],[75,38,59,29],[75,39,59,30,"styleToBarStyle"],[75,54,59,45],[75,55,59,46,"style"],[75,60,59,51],[75,61,59,52],[75,63,59,54,"animated"],[75,71,59,62],[75,72,59,63],[76,2,60,0],[78,2,62,0],[79,2,63,0],[80,0,64,0],[81,0,65,0],[82,0,66,0],[83,0,67,0],[84,2,68,7],[84,11,68,16,"setStatusBarHidden"],[84,29,68,34,"setStatusBarHidden"],[84,30,68,35,"hidden"],[84,36,68,50],[84,38,68,52,"animation"],[84,47,68,82],[84,49,68,84],[85,4,69,2,"NativeStatusBar"],[85,16,69,17],[85,17,69,17,"StatusBar"],[85,26,69,17],[85,27,69,18,"setHidden"],[85,36,69,27],[85,37,69,28,"hidden"],[85,43,69,34],[85,45,69,36,"animation"],[85,54,69,45],[85,55,69,46],[86,2,70,0],[88,2,72,0],[89,2,73,0],[90,0,74,0],[91,0,75,0],[92,0,76,0],[93,0,77,0],[94,0,78,0],[95,2,79,7],[95,11,79,16,"setStatusBarBackgroundColor"],[95,38,79,43,"setStatusBarBackgroundColor"],[95,39,79,44,"backgroundColor"],[95,54,79,71],[95,56,79,73,"animated"],[95,64,79,91],[95,66,79,93],[96,4,80,2,"NativeStatusBar"],[96,16,80,17],[96,17,80,17,"StatusBar"],[96,26,80,17],[96,27,80,18,"setBackgroundColor"],[96,45,80,36],[96,46,80,37,"backgroundColor"],[96,61,80,52],[96,63,80,54,"animated"],[96,71,80,62],[96,72,80,63],[97,2,81,0],[99,2,83,0],[100,2,84,0],[101,0,85,0],[102,0,86,0],[103,0,87,0],[104,0,88,0],[105,2,89,7],[105,11,89,16,"setStatusBarNetworkActivityIndicatorVisible"],[105,54,89,59,"setStatusBarNetworkActivityIndicatorVisible"],[105,55,89,60,"visible"],[105,62,89,76],[105,64,89,78],[106,4,90,2,"NativeStatusBar"],[106,16,90,17],[106,17,90,17,"StatusBar"],[106,26,90,17],[106,27,90,18,"setNetworkActivityIndicatorVisible"],[106,61,90,52],[106,62,90,53,"visible"],[106,69,90,60],[106,70,90,61],[107,2,91,0],[109,2,93,0],[110,2,94,0],[111,0,95,0],[112,0,96,0],[113,0,97,0],[114,0,98,0],[115,0,99,0],[116,2,100,7],[116,11,100,16,"setStatusBarTranslucent"],[116,34,100,39,"setStatusBarTranslucent"],[116,35,100,40,"translucent"],[116,46,100,60],[116,48,100,62],[117,4,101,2,"NativeStatusBar"],[117,16,101,17],[117,17,101,17,"StatusBar"],[117,26,101,17],[117,27,101,18,"setTranslucent"],[117,41,101,32],[117,42,101,33,"translucent"],[117,53,101,44],[117,54,101,45],[118,2,102,0],[119,2,104,0],[119,11,104,9,"styleToBarStyle"],[119,26,104,24,"styleToBarStyle"],[119,27,104,24],[119,29,107,36],[120,4,107,36],[120,8,107,36,"_Appearance$getColorS"],[120,29,107,36],[121,4,107,36],[121,8,105,2,"style"],[121,13,105,23],[121,16,105,23,"arguments"],[121,25,105,23],[121,26,105,23,"length"],[121,32,105,23],[121,40,105,23,"arguments"],[121,49,105,23],[121,57,105,23,"undefined"],[121,66,105,23],[121,69,105,23,"arguments"],[121,78,105,23],[121,84,105,26],[121,90,105,32],[122,4,105,32],[122,8,106,2,"colorScheme"],[122,19,106,30],[122,22,106,30,"arguments"],[122,31,106,30],[122,32,106,30,"length"],[122,38,106,30],[122,46,106,30,"arguments"],[122,55,106,30],[122,63,106,30,"undefined"],[122,72,106,30],[122,75,106,30,"arguments"],[122,84,106,30],[122,91,106,30,"_Appearance$getColorS"],[122,112,106,30],[122,115,106,33,"Appearance"],[122,127,106,43],[122,128,106,43,"Appearance"],[122,138,106,43],[122,158,106,33,"Appearance"],[122,170,106,43],[122,171,106,43,"Appearance"],[122,181,106,43],[122,182,106,45,"getColorScheme"],[122,196,106,59],[122,197,106,60],[122,198,106,61],[122,210,106,61,"_Appearance$getColorS"],[122,231,106,61],[122,234,106,65],[122,241,106,72],[123,4,108,2],[123,8,108,6],[123,9,108,7,"colorScheme"],[123,20,108,18],[123,22,108,20],[124,6,109,4,"colorScheme"],[124,17,109,15],[124,20,109,18],[124,27,109,25],[125,4,110,2],[126,4,112,2],[126,8,112,6,"resolvedStyle"],[126,21,112,19],[126,24,112,22,"style"],[126,29,112,27],[127,4,113,2],[127,8,113,6,"style"],[127,13,113,11],[127,18,113,16],[127,24,113,22],[127,26,113,24],[128,6,114,4,"resolvedStyle"],[128,19,114,17],[128,22,114,20,"colorScheme"],[128,33,114,31],[128,38,114,36],[128,45,114,43],[128,48,114,46],[128,54,114,52],[128,57,114,55],[128,64,114,62],[129,4,115,2],[129,5,115,3],[129,11,115,9],[129,15,115,13,"style"],[129,20,115,18],[129,25,115,23],[129,35,115,33],[129,37,115,35],[130,6,116,4,"resolvedStyle"],[130,19,116,17],[130,22,116,20,"colorScheme"],[130,33,116,31],[130,38,116,36],[130,45,116,43],[130,48,116,46],[130,55,116,53],[130,58,116,56],[130,64,116,62],[131,4,117,2],[132,4,119,2],[132,11,119,9,"resolvedStyle"],[132,24,119,22],[132,29,119,27],[132,36,119,34],[132,39,119,37],[132,54,119,52],[132,57,119,55],[132,71,119,69],[133,2,120,0],[134,0,120,1],[134,3]],"functionMap":{"names":["<global>","StatusBar","React.useMemo$argument_0","setStatusBarStyle","setStatusBarHidden","setStatusBarBackgroundColor","setStatusBarNetworkActivityIndicatorVisible","setStatusBarTranslucent","styleToBarStyle"],"mappings":"AAA;OCqB;iCCU,yCD;CDkB;OGQ;CHE;OIQ;CJE;OKS;CLE;OMQ;CNE;OOS;CPE;AQE;CRgB"},"hasCjsExports":false},"type":"js/module"}]}