mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 06:31:03 +00:00
1 line
16 KiB
Plaintext
1 line
16 KiB
Plaintext
{"dependencies":[{"name":"../../Components/TextInput/AndroidTextInputNativeComponent","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":17,"column":0},"end":{"line":17,"column":112}}],"key":"4yrHr4L69dNsIl/HgbOnUDBvxCo=","exportNames":["*"],"imports":1}},{"name":"../../Components/TextInput/RCTSingelineTextInputNativeComponent","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":18,"column":0},"end":{"line":18,"column":113}}],"key":"z1vh9H2XSTCCxM85yq/A4Qgr/fY=","exportNames":["*"],"imports":1}},{"name":"../../ReactNative/RendererProxy","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":20,"column":25},"end":{"line":20,"column":67}}],"key":"T5tpzkUltdJeyXwu85s3KOfgZyI=","exportNames":["*"],"imports":1}},{"name":"../../Utilities/Platform","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":21,"column":17},"end":{"line":21,"column":52}}],"key":"rq8uaKZ6EGoAq6r0NBzCUcqwzHs=","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 Object.defineProperty(exports, \"default\", {\n enumerable: true,\n get: function () {\n return _default;\n }\n });\n var _ComponentsTextInputAndroidTextInputNativeComponent = require(_dependencyMap[0], \"../../Components/TextInput/AndroidTextInputNativeComponent\");\n var _ComponentsTextInputRCTSingelineTextInputNativeComponent = require(_dependencyMap[1], \"../../Components/TextInput/RCTSingelineTextInputNativeComponent\");\n var _require = require(_dependencyMap[2], \"../../ReactNative/RendererProxy\"),\n findNodeHandle = _require.findNodeHandle;\n var Platform = require(_dependencyMap[3], \"../../Utilities/Platform\").default;\n var currentlyFocusedInputRef = null;\n var inputs = new Set();\n function currentlyFocusedInput() {\n return currentlyFocusedInputRef;\n }\n function currentlyFocusedField() {\n if (__DEV__) {\n console.error('currentlyFocusedField is deprecated and will be removed in a future release. Use currentlyFocusedInput');\n }\n return findNodeHandle(currentlyFocusedInputRef);\n }\n function focusInput(textField) {\n if (currentlyFocusedInputRef !== textField && textField != null) {\n currentlyFocusedInputRef = textField;\n }\n }\n function blurInput(textField) {\n if (currentlyFocusedInputRef === textField && textField != null) {\n currentlyFocusedInputRef = null;\n }\n }\n function focusField(textFieldID) {\n if (__DEV__) {\n console.error('focusField no longer works. Use focusInput');\n }\n return;\n }\n function blurField(textFieldID) {\n if (__DEV__) {\n console.error('blurField no longer works. Use blurInput');\n }\n return;\n }\n function focusTextInput(textField) {\n if (typeof textField === 'number') {\n if (__DEV__) {\n console.error('focusTextInput must be called with a host component. Passing a react tag is deprecated.');\n }\n return;\n }\n if (textField != null) {\n var _textField$currentPro;\n var fieldCanBeFocused = currentlyFocusedInputRef !== textField && ((_textField$currentPro = textField.currentProps) == null ? void 0 : _textField$currentPro.editable) !== false;\n if (!fieldCanBeFocused) {\n return;\n }\n focusInput(textField);\n if (Platform.OS === 'ios') {\n _ComponentsTextInputRCTSingelineTextInputNativeComponent.Commands.focus(textField);\n } else if (Platform.OS === 'android') {\n _ComponentsTextInputAndroidTextInputNativeComponent.Commands.focus(textField);\n }\n }\n }\n function blurTextInput(textField) {\n if (typeof textField === 'number') {\n if (__DEV__) {\n console.error('blurTextInput must be called with a host component. Passing a react tag is deprecated.');\n }\n return;\n }\n if (currentlyFocusedInputRef === textField && textField != null) {\n blurInput(textField);\n if (Platform.OS === 'ios') {\n _ComponentsTextInputRCTSingelineTextInputNativeComponent.Commands.blur(textField);\n } else if (Platform.OS === 'android') {\n _ComponentsTextInputAndroidTextInputNativeComponent.Commands.blur(textField);\n }\n }\n }\n function registerInput(textField) {\n if (typeof textField === 'number') {\n if (__DEV__) {\n console.error('registerInput must be called with a host component. Passing a react tag is deprecated.');\n }\n return;\n }\n inputs.add(textField);\n }\n function unregisterInput(textField) {\n if (typeof textField === 'number') {\n if (__DEV__) {\n console.error('unregisterInput must be called with a host component. Passing a react tag is deprecated.');\n }\n return;\n }\n inputs.delete(textField);\n }\n function isTextInput(textField) {\n if (typeof textField === 'number') {\n if (__DEV__) {\n console.error('isTextInput must be called with a host component. Passing a react tag is deprecated.');\n }\n return false;\n }\n return inputs.has(textField);\n }\n var TextInputState = {\n currentlyFocusedInput: currentlyFocusedInput,\n focusInput: focusInput,\n blurInput: blurInput,\n currentlyFocusedField: currentlyFocusedField,\n focusField: focusField,\n blurField: blurField,\n focusTextInput: focusTextInput,\n blurTextInput: blurTextInput,\n registerInput: registerInput,\n unregisterInput: unregisterInput,\n isTextInput: isTextInput\n };\n var _default = TextInputState;\n});","lineCount":129,"map":[[7,2,198,0,"Object"],[7,8,198,0],[7,9,198,0,"defineProperty"],[7,23,198,0],[7,24,198,0,"exports"],[7,31,198,0],[8,4,198,0,"enumerable"],[8,14,198,0],[9,4,198,0,"get"],[9,7,198,0],[9,18,198,0,"get"],[9,19,198,0],[10,6,198,0],[10,13,198,0,"_default"],[10,21,198,0],[11,4,198,0],[12,2,198,0],[13,2,17,0],[13,6,17,0,"_ComponentsTextInputAndroidTextInputNativeComponent"],[13,57,17,0],[13,60,17,0,"require"],[13,67,17,0],[13,68,17,0,"_dependencyMap"],[13,82,17,0],[14,2,18,0],[14,6,18,0,"_ComponentsTextInputRCTSingelineTextInputNativeComponent"],[14,62,18,0],[14,65,18,0,"require"],[14,72,18,0],[14,73,18,0,"_dependencyMap"],[14,87,18,0],[15,2,20,0],[15,6,20,0,"_require"],[15,14,20,0],[15,17,20,25,"require"],[15,24,20,32],[15,25,20,32,"_dependencyMap"],[15,39,20,32],[15,77,20,66],[15,78,20,67],[16,4,20,7,"findNodeHandle"],[16,18,20,21],[16,21,20,21,"_require"],[16,29,20,21],[16,30,20,7,"findNodeHandle"],[16,44,20,21],[17,2,21,0],[17,6,21,6,"Platform"],[17,14,21,14],[17,17,21,17,"require"],[17,24,21,24],[17,25,21,24,"_dependencyMap"],[17,39,21,24],[17,70,21,51],[17,71,21,52],[17,72,21,53,"default"],[17,79,21,60],[18,2,23,0],[18,6,23,4,"currentlyFocusedInputRef"],[18,30,23,43],[18,33,23,46],[18,37,23,50],[19,2,24,0],[19,6,24,6,"inputs"],[19,12,24,12],[19,15,24,15],[19,19,24,19,"Set"],[19,22,24,22],[19,23,24,37],[19,24,24,38],[20,2,26,0],[20,11,26,9,"currentlyFocusedInput"],[20,32,26,30,"currentlyFocusedInput"],[20,33,26,30],[20,35,26,48],[21,4,27,2],[21,11,27,9,"currentlyFocusedInputRef"],[21,35,27,33],[22,2,28,0],[23,2,34,0],[23,11,34,9,"currentlyFocusedField"],[23,32,34,30,"currentlyFocusedField"],[23,33,34,30],[23,35,34,42],[24,4,35,2],[24,8,35,6,"__DEV__"],[24,15,35,13],[24,17,35,15],[25,6,36,4,"console"],[25,13,36,11],[25,14,36,12,"error"],[25,19,36,17],[25,20,37,6],[25,124,38,4],[25,125,38,5],[26,4,39,2],[27,4,41,2],[27,11,41,9,"findNodeHandle"],[27,25,41,23],[27,26,41,36,"currentlyFocusedInputRef"],[27,50,41,60],[27,51,41,61],[28,2,42,0],[29,2,44,0],[29,11,44,9,"focusInput"],[29,21,44,19,"focusInput"],[29,22,44,20,"textField"],[29,31,44,44],[29,33,44,52],[30,4,45,2],[30,8,45,6,"currentlyFocusedInputRef"],[30,32,45,30],[30,37,45,35,"textField"],[30,46,45,44],[30,50,45,48,"textField"],[30,59,45,57],[30,63,45,61],[30,67,45,65],[30,69,45,67],[31,6,46,4,"currentlyFocusedInputRef"],[31,30,46,28],[31,33,46,31,"textField"],[31,42,46,40],[32,4,47,2],[33,2,48,0],[34,2,50,0],[34,11,50,9,"blurInput"],[34,20,50,18,"blurInput"],[34,21,50,19,"textField"],[34,30,50,43],[34,32,50,51],[35,4,51,2],[35,8,51,6,"currentlyFocusedInputRef"],[35,32,51,30],[35,37,51,35,"textField"],[35,46,51,44],[35,50,51,48,"textField"],[35,59,51,57],[35,63,51,61],[35,67,51,65],[35,69,51,67],[36,6,52,4,"currentlyFocusedInputRef"],[36,30,52,28],[36,33,52,31],[36,37,52,35],[37,4,53,2],[38,2,54,0],[39,2,56,0],[39,11,56,9,"focusField"],[39,21,56,19,"focusField"],[39,22,56,20,"textFieldID"],[39,33,56,40],[39,35,56,48],[40,4,57,2],[40,8,57,6,"__DEV__"],[40,15,57,13],[40,17,57,15],[41,6,58,4,"console"],[41,13,58,11],[41,14,58,12,"error"],[41,19,58,17],[41,20,58,18],[41,64,58,62],[41,65,58,63],[42,4,59,2],[43,4,61,2],[44,2,62,0],[45,2,64,0],[45,11,64,9,"blurField"],[45,20,64,18,"blurField"],[45,21,64,19,"textFieldID"],[45,32,64,39],[45,34,64,41],[46,4,65,2],[46,8,65,6,"__DEV__"],[46,15,65,13],[46,17,65,15],[47,6,66,4,"console"],[47,13,66,11],[47,14,66,12,"error"],[47,19,66,17],[47,20,66,18],[47,62,66,60],[47,63,66,61],[48,4,67,2],[49,4,69,2],[50,2,70,0],[51,2,77,0],[51,11,77,9,"focusTextInput"],[51,25,77,23,"focusTextInput"],[51,26,77,24,"textField"],[51,35,77,48],[51,37,77,50],[52,4,78,2],[52,8,78,6],[52,15,78,13,"textField"],[52,24,78,22],[52,29,78,27],[52,37,78,35],[52,39,78,37],[53,6,79,4],[53,10,79,8,"__DEV__"],[53,17,79,15],[53,19,79,17],[54,8,80,6,"console"],[54,15,80,13],[54,16,80,14,"error"],[54,21,80,19],[54,22,81,8],[54,111,82,6],[54,112,82,7],[55,6,83,4],[56,6,85,4],[57,4,86,2],[58,4,88,2],[58,8,88,6,"textField"],[58,17,88,15],[58,21,88,19],[58,25,88,23],[58,27,88,25],[59,6,88,25],[59,10,88,25,"_textField$currentPro"],[59,31,88,25],[60,6,89,4],[60,10,89,10,"fieldCanBeFocused"],[60,27,89,27],[60,30,90,6,"currentlyFocusedInputRef"],[60,54,90,30],[60,59,90,35,"textField"],[60,68,90,44],[60,72,92,6],[60,74,92,6,"_textField$currentPro"],[60,95,92,6],[60,98,92,6,"textField"],[60,107,92,15],[60,108,92,16,"currentProps"],[60,120,92,28],[60,141,92,6,"_textField$currentPro"],[60,162,92,6],[60,163,92,30,"editable"],[60,171,92,38],[60,177,92,43],[60,182,92,48],[61,6,94,4],[61,10,94,8],[61,11,94,9,"fieldCanBeFocused"],[61,28,94,26],[61,30,94,28],[62,8,95,6],[63,6,96,4],[64,6,97,4,"focusInput"],[64,16,97,14],[64,17,97,15,"textField"],[64,26,97,24],[64,27,97,25],[65,6,98,4],[65,10,98,8,"Platform"],[65,18,98,16],[65,19,98,17,"OS"],[65,21,98,19],[65,26,98,24],[65,31,98,29],[65,33,98,31],[66,8,104,6,"iOSTextInputCommands"],[66,64,104,26],[66,65,104,26,"Commands"],[66,73,104,26],[66,74,104,27,"focus"],[66,79,104,32],[66,80,104,33,"textField"],[66,89,104,42],[66,90,104,43],[67,6,105,4],[67,7,105,5],[67,13,105,11],[67,17,105,15,"Platform"],[67,25,105,23],[67,26,105,24,"OS"],[67,28,105,26],[67,33,105,31],[67,42,105,40],[67,44,105,42],[68,8,106,6,"AndroidTextInputCommands"],[68,59,106,30],[68,60,106,30,"Commands"],[68,68,106,30],[68,69,106,31,"focus"],[68,74,106,36],[68,75,106,37,"textField"],[68,84,106,46],[68,85,106,47],[69,6,107,4],[70,4,108,2],[71,2,109,0],[72,2,116,0],[72,11,116,9,"blurTextInput"],[72,24,116,22,"blurTextInput"],[72,25,116,23,"textField"],[72,34,116,47],[72,36,116,49],[73,4,117,2],[73,8,117,6],[73,15,117,13,"textField"],[73,24,117,22],[73,29,117,27],[73,37,117,35],[73,39,117,37],[74,6,118,4],[74,10,118,8,"__DEV__"],[74,17,118,15],[74,19,118,17],[75,8,119,6,"console"],[75,15,119,13],[75,16,119,14,"error"],[75,21,119,19],[75,22,120,8],[75,110,121,6],[75,111,121,7],[76,6,122,4],[77,6,124,4],[78,4,125,2],[79,4,127,2],[79,8,127,6,"currentlyFocusedInputRef"],[79,32,127,30],[79,37,127,35,"textField"],[79,46,127,44],[79,50,127,48,"textField"],[79,59,127,57],[79,63,127,61],[79,67,127,65],[79,69,127,67],[80,6,128,4,"blurInput"],[80,15,128,13],[80,16,128,14,"textField"],[80,25,128,23],[80,26,128,24],[81,6,129,4],[81,10,129,8,"Platform"],[81,18,129,16],[81,19,129,17,"OS"],[81,21,129,19],[81,26,129,24],[81,31,129,29],[81,33,129,31],[82,8,135,6,"iOSTextInputCommands"],[82,64,135,26],[82,65,135,26,"Commands"],[82,73,135,26],[82,74,135,27,"blur"],[82,78,135,31],[82,79,135,32,"textField"],[82,88,135,41],[82,89,135,42],[83,6,136,4],[83,7,136,5],[83,13,136,11],[83,17,136,15,"Platform"],[83,25,136,23],[83,26,136,24,"OS"],[83,28,136,26],[83,33,136,31],[83,42,136,40],[83,44,136,42],[84,8,137,6,"AndroidTextInputCommands"],[84,59,137,30],[84,60,137,30,"Commands"],[84,68,137,30],[84,69,137,31,"blur"],[84,73,137,35],[84,74,137,36,"textField"],[84,83,137,45],[84,84,137,46],[85,6,138,4],[86,4,139,2],[87,2,140,0],[88,2,142,0],[88,11,142,9,"registerInput"],[88,24,142,22,"registerInput"],[88,25,142,23,"textField"],[88,34,142,46],[88,36,142,48],[89,4,143,2],[89,8,143,6],[89,15,143,13,"textField"],[89,24,143,22],[89,29,143,27],[89,37,143,35],[89,39,143,37],[90,6,144,4],[90,10,144,8,"__DEV__"],[90,17,144,15],[90,19,144,17],[91,8,145,6,"console"],[91,15,145,13],[91,16,145,14,"error"],[91,21,145,19],[91,22,146,8],[91,110,147,6],[91,111,147,7],[92,6,148,4],[93,6,150,4],[94,4,151,2],[95,4,153,2,"inputs"],[95,10,153,8],[95,11,153,9,"add"],[95,14,153,12],[95,15,153,13,"textField"],[95,24,153,22],[95,25,153,23],[96,2,154,0],[97,2,156,0],[97,11,156,9,"unregisterInput"],[97,26,156,24,"unregisterInput"],[97,27,156,25,"textField"],[97,36,156,48],[97,38,156,50],[98,4,157,2],[98,8,157,6],[98,15,157,13,"textField"],[98,24,157,22],[98,29,157,27],[98,37,157,35],[98,39,157,37],[99,6,158,4],[99,10,158,8,"__DEV__"],[99,17,158,15],[99,19,158,17],[100,8,159,6,"console"],[100,15,159,13],[100,16,159,14,"error"],[100,21,159,19],[100,22,160,8],[100,112,161,6],[100,113,161,7],[101,6,162,4],[102,6,164,4],[103,4,165,2],[104,4,166,2,"inputs"],[104,10,166,8],[104,11,166,9,"delete"],[104,17,166,15],[104,18,166,16,"textField"],[104,27,166,25],[104,28,166,26],[105,2,167,0],[106,2,169,0],[106,11,169,9,"isTextInput"],[106,22,169,20,"isTextInput"],[106,23,169,21,"textField"],[106,32,169,44],[106,34,169,55],[107,4,170,2],[107,8,170,6],[107,15,170,13,"textField"],[107,24,170,22],[107,29,170,27],[107,37,170,35],[107,39,170,37],[108,6,171,4],[108,10,171,8,"__DEV__"],[108,17,171,15],[108,19,171,17],[109,8,172,6,"console"],[109,15,172,13],[109,16,172,14,"error"],[109,21,172,19],[109,22,173,8],[109,108,174,6],[109,109,174,7],[110,6,175,4],[111,6,177,4],[111,13,177,11],[111,18,177,16],[112,4,178,2],[113,4,180,2],[113,11,180,9,"inputs"],[113,17,180,15],[113,18,180,16,"has"],[113,21,180,19],[113,22,180,20,"textField"],[113,31,180,29],[113,32,180,30],[114,2,181,0],[115,2,183,0],[115,6,183,6,"TextInputState"],[115,20,183,20],[115,23,183,23],[116,4,184,2,"currentlyFocusedInput"],[116,25,184,23],[116,27,184,2,"currentlyFocusedInput"],[116,48,184,23],[117,4,185,2,"focusInput"],[117,14,185,12],[117,16,185,2,"focusInput"],[117,26,185,12],[118,4,186,2,"blurInput"],[118,13,186,11],[118,15,186,2,"blurInput"],[118,24,186,11],[119,4,188,2,"currentlyFocusedField"],[119,25,188,23],[119,27,188,2,"currentlyFocusedField"],[119,48,188,23],[120,4,189,2,"focusField"],[120,14,189,12],[120,16,189,2,"focusField"],[120,26,189,12],[121,4,190,2,"blurField"],[121,13,190,11],[121,15,190,2,"blurField"],[121,24,190,11],[122,4,191,2,"focusTextInput"],[122,18,191,16],[122,20,191,2,"focusTextInput"],[122,34,191,16],[123,4,192,2,"blurTextInput"],[123,17,192,15],[123,19,192,2,"blurTextInput"],[123,32,192,15],[124,4,193,2,"registerInput"],[124,17,193,15],[124,19,193,2,"registerInput"],[124,32,193,15],[125,4,194,2,"unregisterInput"],[125,19,194,17],[125,21,194,2,"unregisterInput"],[125,36,194,17],[126,4,195,2,"isTextInput"],[126,15,195,13],[126,17,195,2,"isTextInput"],[127,2,196,0],[127,3,196,1],[128,2,198,0],[128,6,198,0,"_default"],[128,14,198,0],[128,17,198,15,"TextInputState"],[128,31,198,29],[129,0,198,30],[129,3]],"functionMap":{"names":["<global>","currentlyFocusedInput","currentlyFocusedField","focusInput","blurInput","focusField","blurField","focusTextInput","blurTextInput","registerInput","unregisterInput","isTextInput"],"mappings":"AAA;ACyB;CDE;AEM;CFQ;AGE;CHI;AIE;CJI;AKE;CLM;AME;CNM;AOO;CPgC;AQO;CRwB;ASE;CTY;AUE;CVW;AWE;CXY"},"hasCjsExports":false},"type":"js/module"}]} |