mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 13:31:00 +00:00
1 line
24 KiB
Plaintext
1 line
24 KiB
Plaintext
{"dependencies":[{"name":"expo-modules-core","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":47,"index":47}}],"key":"fU8WLIPqoAGygnPbZ/QJiQQfXEY=","exportNames":["*"],"imports":1}},{"name":"react","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":48},"end":{"line":2,"column":62,"index":110}}],"key":"RtGiGa+/H7VrI7GDQDLhO1UbpU8=","exportNames":["*"],"imports":1}},{"name":"react-native-web/dist/exports/StyleSheet","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"MK7+k1V+KnvCVW7Kj2k/ydtjmVU=","exportNames":["*"],"imports":1}},{"name":"react-native-web/dist/exports/View","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"4kYBDC6LJJXoH7P9rWDi3vkLVB0=","exportNames":["*"],"imports":1}},{"name":"react-native-web/dist/exports/createElement","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":4,"column":0,"index":160},"end":{"line":4,"column":72,"index":232}}],"key":"TmdlMkCj7Q38hztt3cxXAUOFN8M=","exportNames":["*"],"imports":1}},{"name":"./ExpoCameraManager.web","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":5,"column":0,"index":233},"end":{"line":5,"column":52,"index":285}}],"key":"bCn/ZATDxhHXIw+6diQTj6+FSr8=","exportNames":["*"],"imports":1}},{"name":"./web/WebCameraUtils","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":6,"column":0,"index":286},"end":{"line":6,"column":47,"index":333}}],"key":"XRO8rYq5MKJNgV7LdTgYQG/9Zd0=","exportNames":["*"],"imports":1}},{"name":"./web/WebConstants","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":7,"column":0,"index":334},"end":{"line":7,"column":50,"index":384}}],"key":"JZCmfw6Yvb1iFyzCmCeEPNNOKXw=","exportNames":["*"],"imports":1}},{"name":"./web/useWebCameraStream","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":8,"column":0,"index":385},"end":{"line":8,"column":62,"index":447}}],"key":"I6tCGOn1ROzWujdFThN13Of/Y00=","exportNames":["*"],"imports":1}},{"name":"./web/useWebQRScanner","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":9,"column":0,"index":448},"end":{"line":9,"column":56,"index":504}}],"key":"bZtaM5yB7B478U0sqbglpWw6RBE=","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 _jsxFileName = \"/app/frontend/node_modules/expo-camera/build/ExpoCamera.web.js\";\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 _expoModulesCore = require(_dependencyMap[0], \"expo-modules-core\");\n var _react = require(_dependencyMap[1], \"react\");\n var _reactNativeWebDistExportsStyleSheet = require(_dependencyMap[2], \"react-native-web/dist/exports/StyleSheet\");\n var StyleSheet = _interopDefault(_reactNativeWebDistExportsStyleSheet);\n var _reactNativeWebDistExportsView = require(_dependencyMap[3], \"react-native-web/dist/exports/View\");\n var View = _interopDefault(_reactNativeWebDistExportsView);\n var _reactNativeWebDistExportsCreateElement = require(_dependencyMap[4], \"react-native-web/dist/exports/createElement\");\n var createElement = _interopDefault(_reactNativeWebDistExportsCreateElement);\n var _ExpoCameraManagerWeb = require(_dependencyMap[5], \"./ExpoCameraManager.web\");\n var CameraManager = _interopDefault(_ExpoCameraManagerWeb);\n var _webWebCameraUtils = require(_dependencyMap[6], \"./web/WebCameraUtils\");\n var _webWebConstants = require(_dependencyMap[7], \"./web/WebConstants\");\n var _webUseWebCameraStream = require(_dependencyMap[8], \"./web/useWebCameraStream\");\n var _webUseWebQRScanner = require(_dependencyMap[9], \"./web/useWebQRScanner\");\n var _reactJsxDevRuntime = require(_dependencyMap[10], \"react/jsx-dev-runtime\");\n const ExponentCamera = ({\n facing,\n poster,\n ref,\n ...props\n }) => {\n const video = (0, _react.useRef)(null);\n const native = (0, _webUseWebCameraStream.useWebCameraStream)(video, facing, props, {\n onCameraReady() {\n if (props.onCameraReady) {\n props.onCameraReady();\n }\n },\n onMountError: props.onMountError\n });\n const isQRScannerEnabled = (0, _react.useMemo)(() => {\n return Boolean(props.barcodeScannerSettings?.barcodeTypes?.includes('qr') && !!props.onBarcodeScanned);\n }, [props.barcodeScannerSettings?.barcodeTypes, props.onBarcodeScanned]);\n (0, _webUseWebQRScanner.useWebQRScanner)(video, {\n interval: 300,\n isEnabled: isQRScannerEnabled,\n captureOptions: {\n scale: 1,\n isImageMirror: native.type === 'front'\n },\n onScanned(event) {\n if (props.onBarcodeScanned) {\n props.onBarcodeScanned(event);\n }\n }\n });\n (0, _react.useImperativeHandle)(ref, () => ({\n async getAvailablePictureSizes() {\n return _webWebConstants.PictureSizes;\n },\n async takePicture(options) {\n if (!video.current || video.current?.readyState !== video.current?.HAVE_ENOUGH_DATA) {\n throw new _expoModulesCore.CodedError('ERR_CAMERA_NOT_READY', 'HTMLVideoElement does not have enough camera data to construct an image yet.');\n }\n const settings = native.mediaTrackSettings;\n if (!settings) {\n throw new _expoModulesCore.CodedError('ERR_CAMERA_NOT_READY', 'MediaStream is not ready yet.');\n }\n return (0, _webWebCameraUtils.capture)(video.current, settings, {\n ...options,\n // This will always be defined, the option gets added to a queue in the upper-level. We should replace the original so it isn't called twice.\n onPictureSaved(picture) {\n if (options.onPictureSaved) {\n options.onPictureSaved(picture);\n }\n if (props.onPictureSaved) {\n props.onPictureSaved({\n nativeEvent: {\n data: picture,\n id: -1\n }\n });\n }\n }\n });\n },\n async resumePreview() {\n if (video.current) {\n video.current.play();\n }\n },\n async pausePreview() {\n if (video.current) {\n video.current.pause();\n }\n },\n async stopRecording() {\n console.warn('stopRecording is not supported on web.');\n },\n async record() {\n console.warn('record is not supported on web.');\n return {\n uri: ''\n };\n },\n async toggleRecording() {\n console.warn('toggleRecording is not supported on web.');\n },\n async launchModernScanner() {\n console.warn('launchModernScanner is not supported on web.');\n },\n async getAvailableLenses() {\n console.warn('getAvailableLenses is not supported on web.');\n return [];\n }\n }), [native.mediaTrackSettings, props.onPictureSaved]);\n // TODO(Bacon): Create a universal prop, on native the microphone is only used when recording videos.\n // Because we don't support recording video in the browser we don't need the user to give microphone permissions.\n const isMuted = true;\n const style = (0, _react.useMemo)(() => {\n const isFrontFacingCamera = native.type === CameraManager.default.Type.front;\n return [StyleSheet.default.absoluteFill, styles.video, {\n pointerEvents: props.pointerEvents,\n // Flip the camera\n transform: isFrontFacingCamera ? [{\n scaleX: -1\n }] : undefined\n }];\n }, [props.pointerEvents, native.type]);\n return /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(View.default, {\n style: [styles.videoWrapper, props.style],\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(Video, {\n autoPlay: true,\n playsInline: true,\n muted: isMuted,\n poster: poster,\n ref: video,\n style: style\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 102,\n columnNumber: 7\n }, this), props.children]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 101,\n columnNumber: 13\n }, this);\n };\n var _default = ExponentCamera;\n const Video = props => (0, createElement.default)('video', {\n ...props\n });\n const styles = StyleSheet.default.create({\n videoWrapper: {\n flex: 1,\n alignItems: 'stretch',\n pointerEvents: 'box-none'\n },\n video: {\n width: '100%',\n height: '100%',\n objectFit: 'cover'\n }\n });\n});","lineCount":174,"map":[[13,2,106,0,"Object"],[13,8,106,0],[13,9,106,0,"defineProperty"],[13,23,106,0],[13,24,106,0,"exports"],[13,31,106,0],[14,4,106,0,"enumerable"],[14,14,106,0],[15,4,106,0,"get"],[15,7,106,0],[15,18,106,0,"get"],[15,19,106,0],[16,6,106,0],[16,13,106,0,"_default"],[16,21,106,0],[17,4,106,0],[18,2,106,0],[19,2,1,0],[19,6,1,0,"_expoModulesCore"],[19,22,1,0],[19,25,1,0,"require"],[19,32,1,0],[19,33,1,0,"_dependencyMap"],[19,47,1,0],[20,2,2,0],[20,6,2,0,"_react"],[20,12,2,0],[20,15,2,0,"require"],[20,22,2,0],[20,23,2,0,"_dependencyMap"],[20,37,2,0],[21,2,2,62],[21,6,2,62,"_reactNativeWebDistExportsStyleSheet"],[21,42,2,62],[21,45,2,62,"require"],[21,52,2,62],[21,53,2,62,"_dependencyMap"],[21,67,2,62],[22,2,2,62],[22,6,2,62,"StyleSheet"],[22,16,2,62],[22,19,2,62,"_interopDefault"],[22,34,2,62],[22,35,2,62,"_reactNativeWebDistExportsStyleSheet"],[22,71,2,62],[23,2,2,62],[23,6,2,62,"_reactNativeWebDistExportsView"],[23,36,2,62],[23,39,2,62,"require"],[23,46,2,62],[23,47,2,62,"_dependencyMap"],[23,61,2,62],[24,2,2,62],[24,6,2,62,"View"],[24,10,2,62],[24,13,2,62,"_interopDefault"],[24,28,2,62],[24,29,2,62,"_reactNativeWebDistExportsView"],[24,59,2,62],[25,2,4,0],[25,6,4,0,"_reactNativeWebDistExportsCreateElement"],[25,45,4,0],[25,48,4,0,"require"],[25,55,4,0],[25,56,4,0,"_dependencyMap"],[25,70,4,0],[26,2,4,0],[26,6,4,0,"createElement"],[26,19,4,0],[26,22,4,0,"_interopDefault"],[26,37,4,0],[26,38,4,0,"_reactNativeWebDistExportsCreateElement"],[26,77,4,0],[27,2,5,0],[27,6,5,0,"_ExpoCameraManagerWeb"],[27,27,5,0],[27,30,5,0,"require"],[27,37,5,0],[27,38,5,0,"_dependencyMap"],[27,52,5,0],[28,2,5,0],[28,6,5,0,"CameraManager"],[28,19,5,0],[28,22,5,0,"_interopDefault"],[28,37,5,0],[28,38,5,0,"_ExpoCameraManagerWeb"],[28,59,5,0],[29,2,6,0],[29,6,6,0,"_webWebCameraUtils"],[29,24,6,0],[29,27,6,0,"require"],[29,34,6,0],[29,35,6,0,"_dependencyMap"],[29,49,6,0],[30,2,7,0],[30,6,7,0,"_webWebConstants"],[30,22,7,0],[30,25,7,0,"require"],[30,32,7,0],[30,33,7,0,"_dependencyMap"],[30,47,7,0],[31,2,8,0],[31,6,8,0,"_webUseWebCameraStream"],[31,28,8,0],[31,31,8,0,"require"],[31,38,8,0],[31,39,8,0,"_dependencyMap"],[31,53,8,0],[32,2,9,0],[32,6,9,0,"_webUseWebQRScanner"],[32,25,9,0],[32,28,9,0,"require"],[32,35,9,0],[32,36,9,0,"_dependencyMap"],[32,50,9,0],[33,2,9,56],[33,6,9,56,"_reactJsxDevRuntime"],[33,25,9,56],[33,28,9,56,"require"],[33,35,9,56],[33,36,9,56,"_dependencyMap"],[33,50,9,56],[34,2,10,0],[34,8,10,6,"ExponentCamera"],[34,22,10,20],[34,25,10,23,"ExponentCamera"],[34,26,10,24],[35,4,10,26,"facing"],[35,10,10,32],[36,4,10,34,"poster"],[36,10,10,40],[37,4,10,42,"ref"],[37,7,10,45],[38,4,10,47],[38,7,10,50,"props"],[39,2,10,56],[39,3,10,57],[39,8,10,62],[40,4,11,4],[40,10,11,10,"video"],[40,15,11,15],[40,18,11,18],[40,22,11,18,"useRef"],[40,28,11,24],[40,29,11,24,"useRef"],[40,35,11,24],[40,37,11,25],[40,41,11,29],[40,42,11,30],[41,4,12,4],[41,10,12,10,"native"],[41,16,12,16],[41,19,12,19],[41,23,12,19,"useWebCameraStream"],[41,45,12,37],[41,46,12,37,"useWebCameraStream"],[41,64,12,37],[41,66,12,38,"video"],[41,71,12,43],[41,73,12,45,"facing"],[41,79,12,51],[41,81,12,53,"props"],[41,86,12,58],[41,88,12,60],[42,6,13,8,"onCameraReady"],[42,19,13,21,"onCameraReady"],[42,20,13,21],[42,22,13,24],[43,8,14,12],[43,12,14,16,"props"],[43,17,14,21],[43,18,14,22,"onCameraReady"],[43,31,14,35],[43,33,14,37],[44,10,15,16,"props"],[44,15,15,21],[44,16,15,22,"onCameraReady"],[44,29,15,35],[44,30,15,36],[44,31,15,37],[45,8,16,12],[46,6,17,8],[46,7,17,9],[47,6,18,8,"onMountError"],[47,18,18,20],[47,20,18,22,"props"],[47,25,18,27],[47,26,18,28,"onMountError"],[48,4,19,4],[48,5,19,5],[48,6,19,6],[49,4,20,4],[49,10,20,10,"isQRScannerEnabled"],[49,28,20,28],[49,31,20,31],[49,35,20,31,"useMemo"],[49,41,20,38],[49,42,20,38,"useMemo"],[49,49,20,38],[49,51,20,39],[49,57,20,45],[50,6,21,8],[50,13,21,15,"Boolean"],[50,20,21,22],[50,21,21,23,"props"],[50,26,21,28],[50,27,21,29,"barcodeScannerSettings"],[50,49,21,51],[50,51,21,53,"barcodeTypes"],[50,63,21,65],[50,65,21,67,"includes"],[50,73,21,75],[50,74,21,76],[50,78,21,80],[50,79,21,81],[50,83,21,85],[50,84,21,86],[50,85,21,87,"props"],[50,90,21,92],[50,91,21,93,"onBarcodeScanned"],[50,107,21,109],[50,108,21,110],[51,4,22,4],[51,5,22,5],[51,7,22,7],[51,8,22,8,"props"],[51,13,22,13],[51,14,22,14,"barcodeScannerSettings"],[51,36,22,36],[51,38,22,38,"barcodeTypes"],[51,50,22,50],[51,52,22,52,"props"],[51,57,22,57],[51,58,22,58,"onBarcodeScanned"],[51,74,22,74],[51,75,22,75],[51,76,22,76],[52,4,23,4],[52,8,23,4,"useWebQRScanner"],[52,27,23,19],[52,28,23,19,"useWebQRScanner"],[52,43,23,19],[52,45,23,20,"video"],[52,50,23,25],[52,52,23,27],[53,6,24,8,"interval"],[53,14,24,16],[53,16,24,18],[53,19,24,21],[54,6,25,8,"isEnabled"],[54,15,25,17],[54,17,25,19,"isQRScannerEnabled"],[54,35,25,37],[55,6,26,8,"captureOptions"],[55,20,26,22],[55,22,26,24],[56,8,26,26,"scale"],[56,13,26,31],[56,15,26,33],[56,16,26,34],[57,8,26,36,"isImageMirror"],[57,21,26,49],[57,23,26,51,"native"],[57,29,26,57],[57,30,26,58,"type"],[57,34,26,62],[57,39,26,67],[58,6,26,75],[58,7,26,76],[59,6,27,8,"onScanned"],[59,15,27,17,"onScanned"],[59,16,27,18,"event"],[59,21,27,23],[59,23,27,25],[60,8,28,12],[60,12,28,16,"props"],[60,17,28,21],[60,18,28,22,"onBarcodeScanned"],[60,34,28,38],[60,36,28,40],[61,10,29,16,"props"],[61,15,29,21],[61,16,29,22,"onBarcodeScanned"],[61,32,29,38],[61,33,29,39,"event"],[61,38,29,44],[61,39,29,45],[62,8,30,12],[63,6,31,8],[64,4,32,4],[64,5,32,5],[64,6,32,6],[65,4,33,4],[65,8,33,4,"useImperativeHandle"],[65,14,33,23],[65,15,33,23,"useImperativeHandle"],[65,34,33,23],[65,36,33,24,"ref"],[65,39,33,27],[65,41,33,29],[65,48,33,36],[66,6,34,8],[66,12,34,14,"getAvailablePictureSizes"],[66,36,34,38,"getAvailablePictureSizes"],[66,37,34,38],[66,39,34,41],[67,8,35,12],[67,15,35,19,"PictureSizes"],[67,31,35,31],[67,32,35,31,"PictureSizes"],[67,44,35,31],[68,6,36,8],[68,7,36,9],[69,6,37,8],[69,12,37,14,"takePicture"],[69,23,37,25,"takePicture"],[69,24,37,26,"options"],[69,31,37,33],[69,33,37,35],[70,8,38,12],[70,12,38,16],[70,13,38,17,"video"],[70,18,38,22],[70,19,38,23,"current"],[70,26,38,30],[70,30,38,34,"video"],[70,35,38,39],[70,36,38,40,"current"],[70,43,38,47],[70,45,38,49,"readyState"],[70,55,38,59],[70,60,38,64,"video"],[70,65,38,69],[70,66,38,70,"current"],[70,73,38,77],[70,75,38,79,"HAVE_ENOUGH_DATA"],[70,91,38,95],[70,93,38,97],[71,10,39,16],[71,16,39,22],[71,20,39,26,"CodedError"],[71,36,39,36],[71,37,39,36,"CodedError"],[71,47,39,36],[71,48,39,37],[71,70,39,59],[71,72,39,61],[71,150,39,139],[71,151,39,140],[72,8,40,12],[73,8,41,12],[73,14,41,18,"settings"],[73,22,41,26],[73,25,41,29,"native"],[73,31,41,35],[73,32,41,36,"mediaTrackSettings"],[73,50,41,54],[74,8,42,12],[74,12,42,16],[74,13,42,17,"settings"],[74,21,42,25],[74,23,42,27],[75,10,43,16],[75,16,43,22],[75,20,43,26,"CodedError"],[75,36,43,36],[75,37,43,36,"CodedError"],[75,47,43,36],[75,48,43,37],[75,70,43,59],[75,72,43,61],[75,103,43,92],[75,104,43,93],[76,8,44,12],[77,8,45,12],[77,15,45,19],[77,19,45,19,"capture"],[77,37,45,26],[77,38,45,26,"capture"],[77,45,45,26],[77,47,45,27,"video"],[77,52,45,32],[77,53,45,33,"current"],[77,60,45,40],[77,62,45,42,"settings"],[77,70,45,50],[77,72,45,52],[78,10,46,16],[78,13,46,19,"options"],[78,20,46,26],[79,10,47,16],[80,10,48,16,"onPictureSaved"],[80,24,48,30,"onPictureSaved"],[80,25,48,31,"picture"],[80,32,48,38],[80,34,48,40],[81,12,49,20],[81,16,49,24,"options"],[81,23,49,31],[81,24,49,32,"onPictureSaved"],[81,38,49,46],[81,40,49,48],[82,14,50,24,"options"],[82,21,50,31],[82,22,50,32,"onPictureSaved"],[82,36,50,46],[82,37,50,47,"picture"],[82,44,50,54],[82,45,50,55],[83,12,51,20],[84,12,52,20],[84,16,52,24,"props"],[84,21,52,29],[84,22,52,30,"onPictureSaved"],[84,36,52,44],[84,38,52,46],[85,14,53,24,"props"],[85,19,53,29],[85,20,53,30,"onPictureSaved"],[85,34,53,44],[85,35,53,45],[86,16,53,47,"nativeEvent"],[86,27,53,58],[86,29,53,60],[87,18,53,62,"data"],[87,22,53,66],[87,24,53,68,"picture"],[87,31,53,75],[88,18,53,77,"id"],[88,20,53,79],[88,22,53,81],[88,23,53,82],[89,16,53,84],[90,14,53,86],[90,15,53,87],[90,16,53,88],[91,12,54,20],[92,10,55,16],[93,8,56,12],[93,9,56,13],[93,10,56,14],[94,6,57,8],[94,7,57,9],[95,6,58,8],[95,12,58,14,"resumePreview"],[95,25,58,27,"resumePreview"],[95,26,58,27],[95,28,58,30],[96,8,59,12],[96,12,59,16,"video"],[96,17,59,21],[96,18,59,22,"current"],[96,25,59,29],[96,27,59,31],[97,10,60,16,"video"],[97,15,60,21],[97,16,60,22,"current"],[97,23,60,29],[97,24,60,30,"play"],[97,28,60,34],[97,29,60,35],[97,30,60,36],[98,8,61,12],[99,6,62,8],[99,7,62,9],[100,6,63,8],[100,12,63,14,"pausePreview"],[100,24,63,26,"pausePreview"],[100,25,63,26],[100,27,63,29],[101,8,64,12],[101,12,64,16,"video"],[101,17,64,21],[101,18,64,22,"current"],[101,25,64,29],[101,27,64,31],[102,10,65,16,"video"],[102,15,65,21],[102,16,65,22,"current"],[102,23,65,29],[102,24,65,30,"pause"],[102,29,65,35],[102,30,65,36],[102,31,65,37],[103,8,66,12],[104,6,67,8],[104,7,67,9],[105,6,68,8],[105,12,68,14,"stopRecording"],[105,25,68,27,"stopRecording"],[105,26,68,27],[105,28,68,30],[106,8,69,12,"console"],[106,15,69,19],[106,16,69,20,"warn"],[106,20,69,24],[106,21,69,25],[106,61,69,65],[106,62,69,66],[107,6,70,8],[107,7,70,9],[108,6,71,8],[108,12,71,14,"record"],[108,18,71,20,"record"],[108,19,71,20],[108,21,71,23],[109,8,72,12,"console"],[109,15,72,19],[109,16,72,20,"warn"],[109,20,72,24],[109,21,72,25],[109,54,72,58],[109,55,72,59],[110,8,73,12],[110,15,73,19],[111,10,73,21,"uri"],[111,13,73,24],[111,15,73,26],[112,8,73,29],[112,9,73,30],[113,6,74,8],[113,7,74,9],[114,6,75,8],[114,12,75,14,"toggleRecording"],[114,27,75,29,"toggleRecording"],[114,28,75,29],[114,30,75,32],[115,8,76,12,"console"],[115,15,76,19],[115,16,76,20,"warn"],[115,20,76,24],[115,21,76,25],[115,63,76,67],[115,64,76,68],[116,6,77,8],[116,7,77,9],[117,6,78,8],[117,12,78,14,"launchModernScanner"],[117,31,78,33,"launchModernScanner"],[117,32,78,33],[117,34,78,36],[118,8,79,12,"console"],[118,15,79,19],[118,16,79,20,"warn"],[118,20,79,24],[118,21,79,25],[118,67,79,71],[118,68,79,72],[119,6,80,8],[119,7,80,9],[120,6,81,8],[120,12,81,14,"getAvailableLenses"],[120,30,81,32,"getAvailableLenses"],[120,31,81,32],[120,33,81,35],[121,8,82,12,"console"],[121,15,82,19],[121,16,82,20,"warn"],[121,20,82,24],[121,21,82,25],[121,66,82,70],[121,67,82,71],[122,8,83,12],[122,15,83,19],[122,17,83,21],[123,6,84,8],[124,4,85,4],[124,5,85,5],[124,6,85,6],[124,8,85,8],[124,9,85,9,"native"],[124,15,85,15],[124,16,85,16,"mediaTrackSettings"],[124,34,85,34],[124,36,85,36,"props"],[124,41,85,41],[124,42,85,42,"onPictureSaved"],[124,56,85,56],[124,57,85,57],[124,58,85,58],[125,4,86,4],[126,4,87,4],[127,4,88,4],[127,10,88,10,"isMuted"],[127,17,88,17],[127,20,88,20],[127,24,88,24],[128,4,89,4],[128,10,89,10,"style"],[128,15,89,15],[128,18,89,18],[128,22,89,18,"useMemo"],[128,28,89,25],[128,29,89,25,"useMemo"],[128,36,89,25],[128,38,89,26],[128,44,89,32],[129,6,90,8],[129,12,90,14,"isFrontFacingCamera"],[129,31,90,33],[129,34,90,36,"native"],[129,40,90,42],[129,41,90,43,"type"],[129,45,90,47],[129,50,90,52,"CameraManager"],[129,63,90,65],[129,64,90,65,"default"],[129,71,90,65],[129,72,90,66,"Type"],[129,76,90,70],[129,77,90,71,"front"],[129,82,90,76],[130,6,91,8],[130,13,91,15],[130,14,92,12,"StyleSheet"],[130,24,92,22],[130,25,92,22,"default"],[130,32,92,22],[130,33,92,23,"absoluteFill"],[130,45,92,35],[130,47,93,12,"styles"],[130,53,93,18],[130,54,93,19,"video"],[130,59,93,24],[130,61,94,12],[131,8,95,16,"pointerEvents"],[131,21,95,29],[131,23,95,31,"props"],[131,28,95,36],[131,29,95,37,"pointerEvents"],[131,42,95,50],[132,8,96,16],[133,8,97,16,"transform"],[133,17,97,25],[133,19,97,27,"isFrontFacingCamera"],[133,38,97,46],[133,41,97,49],[133,42,97,50],[134,10,97,52,"scaleX"],[134,16,97,58],[134,18,97,60],[134,19,97,61],[135,8,97,63],[135,9,97,64],[135,10,97,65],[135,13,97,68,"undefined"],[136,6,98,12],[136,7,98,13],[136,8,99,9],[137,4,100,4],[137,5,100,5],[137,7,100,7],[137,8,100,8,"props"],[137,13,100,13],[137,14,100,14,"pointerEvents"],[137,27,100,27],[137,29,100,29,"native"],[137,35,100,35],[137,36,100,36,"type"],[137,40,100,40],[137,41,100,41],[137,42,100,42],[138,4,101,4],[138,24,101,12],[138,28,101,12,"_reactJsxDevRuntime"],[138,47,101,12],[138,48,101,12,"jsxDEV"],[138,54,101,12],[138,56,101,13,"View"],[138,60,101,17],[138,61,101,17,"default"],[138,68,101,17],[139,6,101,18,"style"],[139,11,101,23],[139,13,101,25],[139,14,101,26,"styles"],[139,20,101,32],[139,21,101,33,"videoWrapper"],[139,33,101,45],[139,35,101,47,"props"],[139,40,101,52],[139,41,101,53,"style"],[139,46,101,58],[139,47,101,60],[140,6,101,60,"children"],[140,14,101,60],[140,30,102,6],[140,34,102,6,"_reactJsxDevRuntime"],[140,53,102,6],[140,54,102,6,"jsxDEV"],[140,60,102,6],[140,62,102,7,"Video"],[140,67,102,12],[141,8,102,13,"autoPlay"],[141,16,102,21],[142,8,102,22,"playsInline"],[142,19,102,33],[143,8,102,34,"muted"],[143,13,102,39],[143,15,102,41,"isMuted"],[143,22,102,49],[144,8,102,50,"poster"],[144,14,102,56],[144,16,102,58,"poster"],[144,22,102,65],[145,8,102,66,"ref"],[145,11,102,69],[145,13,102,71,"video"],[145,18,102,77],[146,8,102,78,"style"],[146,13,102,83],[146,15,102,85,"style"],[147,6,102,91],[148,8,102,91,"fileName"],[148,16,102,91],[148,18,102,91,"_jsxFileName"],[148,30,102,91],[149,8,102,91,"lineNumber"],[149,18,102,91],[150,8,102,91,"columnNumber"],[150,20,102,91],[151,6,102,91],[151,13,102,92],[151,14,102,93],[151,16,103,7,"props"],[151,21,103,12],[151,22,103,13,"children"],[151,30,103,21],[152,4,103,21],[153,6,103,21,"fileName"],[153,14,103,21],[153,16,103,21,"_jsxFileName"],[153,28,103,21],[154,6,103,21,"lineNumber"],[154,16,103,21],[155,6,103,21,"columnNumber"],[155,18,103,21],[156,4,103,21],[156,11,104,10],[156,12,104,11],[157,2,105,0],[157,3,105,1],[158,2,106,0],[158,6,106,0,"_default"],[158,14,106,0],[158,17,106,15,"ExponentCamera"],[158,31,106,29],[159,2,107,0],[159,8,107,6,"Video"],[159,13,107,11],[159,16,107,15,"props"],[159,21,107,20],[159,25,107,25],[159,29,107,25,"createElement"],[159,42,107,38],[159,43,107,38,"default"],[159,50,107,38],[159,52,107,39],[159,59,107,46],[159,61,107,48],[160,4,107,50],[160,7,107,53,"props"],[161,2,107,59],[161,3,107,60],[161,4,107,61],[162,2,108,0],[162,8,108,6,"styles"],[162,14,108,12],[162,17,108,15,"StyleSheet"],[162,27,108,25],[162,28,108,25,"default"],[162,35,108,25],[162,36,108,26,"create"],[162,42,108,32],[162,43,108,33],[163,4,109,4,"videoWrapper"],[163,16,109,16],[163,18,109,18],[164,6,110,8,"flex"],[164,10,110,12],[164,12,110,14],[164,13,110,15],[165,6,111,8,"alignItems"],[165,16,111,18],[165,18,111,20],[165,27,111,29],[166,6,112,8,"pointerEvents"],[166,19,112,21],[166,21,112,23],[167,4,113,4],[167,5,113,5],[168,4,114,4,"video"],[168,9,114,9],[168,11,114,11],[169,6,115,8,"width"],[169,11,115,13],[169,13,115,15],[169,19,115,21],[170,6,116,8,"height"],[170,12,116,14],[170,14,116,16],[170,20,116,22],[171,6,117,8,"objectFit"],[171,15,117,17],[171,17,117,19],[172,4,118,4],[173,2,119,0],[173,3,119,1],[173,4,119,2],[174,0,119,3],[174,3]],"functionMap":{"names":["<global>","ExponentCamera","useWebCameraStream$argument_3.onCameraReady","useMemo$argument_0","useWebQRScanner$argument_1.onScanned","useImperativeHandle$argument_1","getAvailablePictureSizes","takePicture","capture$argument_2.onPictureSaved","resumePreview","pausePreview","stopRecording","record","toggleRecording","launchModernScanner","getAvailableLenses","Video"],"mappings":"AAA;uBCS;QCG;SDI;uCEG;KFE;QGK;SHI;6BIE;QCC;SDE;QEC;gBCW;iBDO;SFE;QIC;SJI;QKC;SLI;QMC;SNE;QOC;SPG;QQC;SRE;QSC;STE;QUC;SVG;MJC;0BEI;KFW;CDK;cgBE,+ChB"},"hasCjsExports":false},"type":"js/module"}]} |