Files
pezkuwi-mobile-app/frontend/.metro-cache/cache/a3/3a87595c7c576e5750fe30eac1f40d167b70a88abf0e642267218badab022fb460ba46
T
2025-11-08 10:06:45 +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(() => styleToBarStyle(style, colorScheme), [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, {\n ...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 style = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'auto';\n var colorScheme = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _reactNative.Appearance?.getColorScheme() ?? '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":132,"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],[46,47,32,39,"styleToBarStyle"],[46,62,32,54],[46,63,32,55,"style"],[46,68,32,60],[46,70,32,62,"colorScheme"],[46,81,32,73],[46,82,32,74],[46,84,32,76],[46,85,32,77,"style"],[46,90,32,82],[46,92,32,84,"colorScheme"],[46,103,32,95],[46,104,32,96],[46,105,32,97],[48,4,34,2],[49,4,35,2],[50,4,36,2],[50,8,36,6,"backgroundColor"],[50,23,36,21],[50,26,36,24,"backgroundColorProp"],[50,45,36,43],[51,4,37,2],[51,8,37,6,"translucent"],[51,19,37,17],[51,23,37,21],[51,24,37,22,"backgroundColor"],[51,39,37,37],[51,41,37,39],[52,6,38,4,"backgroundColor"],[52,21,38,19],[52,24,38,22],[52,37,38,35],[53,4,39,2],[54,4,41,2],[54,24,42,4],[54,28,42,4,"_reactJsxDevRuntime"],[54,47,42,4],[54,48,42,4,"jsxDEV"],[54,54,42,4],[54,56,42,5,"_reactNative"],[54,68,42,20],[54,69,42,20,"StatusBar"],[54,78,42,20],[55,6,42,20],[55,9,43,10,"props"],[55,14,43,15],[56,6,44,6,"translucent"],[56,17,44,17],[56,19,44,19,"translucent"],[56,30,44,31],[57,6,45,6,"barStyle"],[57,14,45,14],[57,16,45,16,"barStyle"],[57,24,45,25],[58,6,46,6,"backgroundColor"],[58,21,46,21],[58,23,46,23,"backgroundColor"],[58,38,46,39],[59,6,47,6,"showHideTransition"],[59,24,47,24],[59,26,47,26,"hideTransitionAnimation"],[59,49,47,49],[59,54,47,54],[59,60,47,60],[59,63,47,63,"undefined"],[59,72,47,72],[59,75,47,75,"hideTransitionAnimation"],[60,4,47,99],[61,6,47,99,"fileName"],[61,14,47,99],[61,16,47,99,"_jsxFileName"],[61,28,47,99],[62,6,47,99,"lineNumber"],[62,16,47,99],[63,6,47,99,"columnNumber"],[63,18,47,99],[64,4,47,99],[64,11,48,5],[64,12,48,6],[65,2,50,0],[67,2,52,0],[68,2,53,0],[69,0,54,0],[70,0,55,0],[71,0,56,0],[72,0,57,0],[73,2,58,7],[73,11,58,16,"setStatusBarStyle"],[73,28,58,33,"setStatusBarStyle"],[73,29,58,34,"style"],[73,34,58,55],[73,36,58,57,"animated"],[73,44,58,75],[73,46,58,77],[74,4,59,2,"NativeStatusBar"],[74,16,59,17],[74,17,59,17,"StatusBar"],[74,26,59,17],[74,27,59,18,"setBarStyle"],[74,38,59,29],[74,39,59,30,"styleToBarStyle"],[74,54,59,45],[74,55,59,46,"style"],[74,60,59,51],[74,61,59,52],[74,63,59,54,"animated"],[74,71,59,62],[74,72,59,63],[75,2,60,0],[77,2,62,0],[78,2,63,0],[79,0,64,0],[80,0,65,0],[81,0,66,0],[82,0,67,0],[83,2,68,7],[83,11,68,16,"setStatusBarHidden"],[83,29,68,34,"setStatusBarHidden"],[83,30,68,35,"hidden"],[83,36,68,50],[83,38,68,52,"animation"],[83,47,68,82],[83,49,68,84],[84,4,69,2,"NativeStatusBar"],[84,16,69,17],[84,17,69,17,"StatusBar"],[84,26,69,17],[84,27,69,18,"setHidden"],[84,36,69,27],[84,37,69,28,"hidden"],[84,43,69,34],[84,45,69,36,"animation"],[84,54,69,45],[84,55,69,46],[85,2,70,0],[87,2,72,0],[88,2,73,0],[89,0,74,0],[90,0,75,0],[91,0,76,0],[92,0,77,0],[93,0,78,0],[94,2,79,7],[94,11,79,16,"setStatusBarBackgroundColor"],[94,38,79,43,"setStatusBarBackgroundColor"],[94,39,79,44,"backgroundColor"],[94,54,79,71],[94,56,79,73,"animated"],[94,64,79,91],[94,66,79,93],[95,4,80,2,"NativeStatusBar"],[95,16,80,17],[95,17,80,17,"StatusBar"],[95,26,80,17],[95,27,80,18,"setBackgroundColor"],[95,45,80,36],[95,46,80,37,"backgroundColor"],[95,61,80,52],[95,63,80,54,"animated"],[95,71,80,62],[95,72,80,63],[96,2,81,0],[98,2,83,0],[99,2,84,0],[100,0,85,0],[101,0,86,0],[102,0,87,0],[103,0,88,0],[104,2,89,7],[104,11,89,16,"setStatusBarNetworkActivityIndicatorVisible"],[104,54,89,59,"setStatusBarNetworkActivityIndicatorVisible"],[104,55,89,60,"visible"],[104,62,89,76],[104,64,89,78],[105,4,90,2,"NativeStatusBar"],[105,16,90,17],[105,17,90,17,"StatusBar"],[105,26,90,17],[105,27,90,18,"setNetworkActivityIndicatorVisible"],[105,61,90,52],[105,62,90,53,"visible"],[105,69,90,60],[105,70,90,61],[106,2,91,0],[108,2,93,0],[109,2,94,0],[110,0,95,0],[111,0,96,0],[112,0,97,0],[113,0,98,0],[114,0,99,0],[115,2,100,7],[115,11,100,16,"setStatusBarTranslucent"],[115,34,100,39,"setStatusBarTranslucent"],[115,35,100,40,"translucent"],[115,46,100,60],[115,48,100,62],[116,4,101,2,"NativeStatusBar"],[116,16,101,17],[116,17,101,17,"StatusBar"],[116,26,101,17],[116,27,101,18,"setTranslucent"],[116,41,101,32],[116,42,101,33,"translucent"],[116,53,101,44],[116,54,101,45],[117,2,102,0],[118,2,104,0],[118,11,104,9,"styleToBarStyle"],[118,26,104,24,"styleToBarStyle"],[118,27,104,24],[118,29,107,36],[119,4,107,36],[119,8,105,2,"style"],[119,13,105,23],[119,16,105,23,"arguments"],[119,25,105,23],[119,26,105,23,"length"],[119,32,105,23],[119,40,105,23,"arguments"],[119,49,105,23],[119,57,105,23,"undefined"],[119,66,105,23],[119,69,105,23,"arguments"],[119,78,105,23],[119,84,105,26],[119,90,105,32],[120,4,105,32],[120,8,106,2,"colorScheme"],[120,19,106,30],[120,22,106,30,"arguments"],[120,31,106,30],[120,32,106,30,"length"],[120,38,106,30],[120,46,106,30,"arguments"],[120,55,106,30],[120,63,106,30,"undefined"],[120,72,106,30],[120,75,106,30,"arguments"],[120,84,106,30],[120,90,106,33,"Appearance"],[120,102,106,43],[120,103,106,43,"Appearance"],[120,113,106,43],[120,115,106,45,"getColorScheme"],[120,129,106,59],[120,130,106,60],[120,131,106,61],[120,135,106,65],[120,142,106,72],[121,4,108,2],[121,8,108,6],[121,9,108,7,"colorScheme"],[121,20,108,18],[121,22,108,20],[122,6,109,4,"colorScheme"],[122,17,109,15],[122,20,109,18],[122,27,109,25],[123,4,110,2],[124,4,112,2],[124,8,112,6,"resolvedStyle"],[124,21,112,19],[124,24,112,22,"style"],[124,29,112,27],[125,4,113,2],[125,8,113,6,"style"],[125,13,113,11],[125,18,113,16],[125,24,113,22],[125,26,113,24],[126,6,114,4,"resolvedStyle"],[126,19,114,17],[126,22,114,20,"colorScheme"],[126,33,114,31],[126,38,114,36],[126,45,114,43],[126,48,114,46],[126,54,114,52],[126,57,114,55],[126,64,114,62],[127,4,115,2],[127,5,115,3],[127,11,115,9],[127,15,115,13,"style"],[127,20,115,18],[127,25,115,23],[127,35,115,33],[127,37,115,35],[128,6,116,4,"resolvedStyle"],[128,19,116,17],[128,22,116,20,"colorScheme"],[128,33,116,31],[128,38,116,36],[128,45,116,43],[128,48,116,46],[128,55,116,53],[128,58,116,56],[128,64,116,62],[129,4,117,2],[130,4,119,2],[130,11,119,9,"resolvedStyle"],[130,24,119,22],[130,29,119,27],[130,36,119,34],[130,39,119,37],[130,54,119,52],[130,57,119,55],[130,71,119,69],[131,2,120,0],[132,0,120,1],[132,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"}]}