@onekeyfe/react-native-text-input 0.2.9 → 3.0.91

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (77) hide show
  1. package/OneKeyTextInput.podspec +18 -0
  2. package/README.md +10 -28
  3. package/android/build.gradle +3 -3
  4. package/android/gradle.properties +5 -5
  5. package/android/src/main/java/com/textinput/TextInputViewManager.kt +11 -7
  6. package/ios/OneKeyTextInputPasteObserver.h +11 -0
  7. package/ios/OneKeyTextInputPasteObserver.mm +204 -0
  8. package/lib/module/AndroidTextInputNativeComponent.js +111 -0
  9. package/lib/{commonjs → module}/Input.js +128 -156
  10. package/lib/module/enum.js +7 -0
  11. package/lib/module/index.js +11 -0
  12. package/lib/module/package.json +1 -0
  13. package/lib/module/type.js +4 -0
  14. package/lib/typescript/package.json +1 -0
  15. package/lib/typescript/src/index.d.ts +4 -4
  16. package/lib/typescript/src/type.d.ts +2 -2
  17. package/package.json +32 -117
  18. package/react-native.config.js +12 -0
  19. package/src/AndroidTextInputNativeComponent.js +77 -88
  20. package/src/Input.js +243 -1121
  21. package/src/enum.ts +1 -1
  22. package/src/index.tsx +5 -5
  23. package/src/type.ts +2 -2
  24. package/android/generated/android/app/build/generated/source/codegen/java/com/facebook/react/viewmanagers/OneKeyTextInputManagerDelegate.java +0 -26
  25. package/android/generated/android/app/build/generated/source/codegen/java/com/facebook/react/viewmanagers/OneKeyTextInputManagerInterface.java +0 -17
  26. package/android/generated/android/app/build/generated/source/codegen/jni/CMakeLists.txt +0 -36
  27. package/android/generated/android/app/build/generated/source/codegen/jni/RNTextInputViewSpec-generated.cpp +0 -22
  28. package/android/generated/android/app/build/generated/source/codegen/jni/RNTextInputViewSpec.h +0 -24
  29. package/android/generated/android/app/build/generated/source/codegen/jni/react/renderer/components/RNTextInputViewSpec/ComponentDescriptors.cpp +0 -22
  30. package/android/generated/android/app/build/generated/source/codegen/jni/react/renderer/components/RNTextInputViewSpec/ComponentDescriptors.h +0 -24
  31. package/android/generated/android/app/build/generated/source/codegen/jni/react/renderer/components/RNTextInputViewSpec/EventEmitters.cpp +0 -24
  32. package/android/generated/android/app/build/generated/source/codegen/jni/react/renderer/components/RNTextInputViewSpec/EventEmitters.h +0 -25
  33. package/android/generated/android/app/build/generated/source/codegen/jni/react/renderer/components/RNTextInputViewSpec/Props.cpp +0 -25
  34. package/android/generated/android/app/build/generated/source/codegen/jni/react/renderer/components/RNTextInputViewSpec/Props.h +0 -27
  35. package/android/generated/android/app/build/generated/source/codegen/jni/react/renderer/components/RNTextInputViewSpec/RNTextInputViewSpecJSI-generated.cpp +0 -17
  36. package/android/generated/android/app/build/generated/source/codegen/jni/react/renderer/components/RNTextInputViewSpec/RNTextInputViewSpecJSI.h +0 -19
  37. package/android/generated/android/app/build/generated/source/codegen/jni/react/renderer/components/RNTextInputViewSpec/ShadowNodes.cpp +0 -17
  38. package/android/generated/android/app/build/generated/source/codegen/jni/react/renderer/components/RNTextInputViewSpec/ShadowNodes.h +0 -32
  39. package/android/generated/android/app/build/generated/source/codegen/jni/react/renderer/components/RNTextInputViewSpec/States.cpp +0 -16
  40. package/android/generated/android/app/build/generated/source/codegen/jni/react/renderer/components/RNTextInputViewSpec/States.h +0 -29
  41. package/android/src/newarch/TextInputViewManagerSpec.kt +0 -21
  42. package/android/src/oldarch/TextInputViewManagerSpec.kt +0 -9
  43. package/ios/TextInputViewManager.mm +0 -23
  44. package/ios/Utils.h +0 -8
  45. package/ios/Utils.m +0 -26
  46. package/ios/generated/build/generated/ios/RNTextInputViewSpec/RNTextInputViewSpec-generated.mm +0 -16
  47. package/ios/generated/build/generated/ios/RNTextInputViewSpec/RNTextInputViewSpec.h +0 -38
  48. package/ios/generated/build/generated/ios/RNTextInputViewSpecJSI-generated.cpp +0 -17
  49. package/ios/generated/build/generated/ios/RNTextInputViewSpecJSI.h +0 -19
  50. package/ios/generated/build/generated/ios/react/renderer/components/RNTextInputViewSpec/ComponentDescriptors.cpp +0 -22
  51. package/ios/generated/build/generated/ios/react/renderer/components/RNTextInputViewSpec/ComponentDescriptors.h +0 -24
  52. package/ios/generated/build/generated/ios/react/renderer/components/RNTextInputViewSpec/EventEmitters.cpp +0 -24
  53. package/ios/generated/build/generated/ios/react/renderer/components/RNTextInputViewSpec/EventEmitters.h +0 -25
  54. package/ios/generated/build/generated/ios/react/renderer/components/RNTextInputViewSpec/Props.cpp +0 -25
  55. package/ios/generated/build/generated/ios/react/renderer/components/RNTextInputViewSpec/Props.h +0 -27
  56. package/ios/generated/build/generated/ios/react/renderer/components/RNTextInputViewSpec/RCTComponentViewHelpers.h +0 -20
  57. package/ios/generated/build/generated/ios/react/renderer/components/RNTextInputViewSpec/ShadowNodes.cpp +0 -17
  58. package/ios/generated/build/generated/ios/react/renderer/components/RNTextInputViewSpec/ShadowNodes.h +0 -32
  59. package/ios/generated/build/generated/ios/react/renderer/components/RNTextInputViewSpec/States.cpp +0 -16
  60. package/ios/generated/build/generated/ios/react/renderer/components/RNTextInputViewSpec/States.h +0 -29
  61. package/lib/commonjs/AndroidTextInputNativeComponent.js +0 -152
  62. package/lib/commonjs/AndroidTextInputNativeComponent.js.map +0 -1
  63. package/lib/commonjs/Input.js.map +0 -1
  64. package/lib/commonjs/TextInputViewNativeComponent.ts +0 -9
  65. package/lib/commonjs/enum.js +0 -11
  66. package/lib/commonjs/enum.js.map +0 -1
  67. package/lib/commonjs/index.js +0 -28
  68. package/lib/commonjs/index.js.map +0 -1
  69. package/lib/commonjs/package.json +0 -1
  70. package/lib/commonjs/type.js +0 -6
  71. package/lib/commonjs/type.js.map +0 -1
  72. package/lib/typescript/src/TextInputViewNativeComponent.d.ts +0 -8
  73. package/lib/typescript/src/TextInputViewNativeComponent.d.ts.map +0 -1
  74. package/lib/typescript/src/enum.d.ts.map +0 -1
  75. package/lib/typescript/src/index.d.ts.map +0 -1
  76. package/lib/typescript/src/type.d.ts.map +0 -1
  77. package/src/TextInputViewNativeComponent.ts +0 -9
@@ -1,22 +0,0 @@
1
-
2
- /**
3
- * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
4
- *
5
- * Do not edit this file as changes may cause incorrect behavior and will be lost
6
- * once the code is regenerated.
7
- *
8
- * @generated by codegen project: GenerateComponentDescriptorCpp.js
9
- */
10
-
11
- #include <react/renderer/components/RNTextInputViewSpec/ComponentDescriptors.h>
12
- #include <react/renderer/core/ConcreteComponentDescriptor.h>
13
- #include <react/renderer/componentregistry/ComponentDescriptorProviderRegistry.h>
14
-
15
- namespace facebook::react {
16
-
17
- void RNTextInputViewSpec_registerComponentDescriptorsFromCodegen(
18
- std::shared_ptr<const ComponentDescriptorProviderRegistry> registry) {
19
- registry->add(concreteComponentDescriptorProvider<OneKeyTextInputComponentDescriptor>());
20
- }
21
-
22
- } // namespace facebook::react
@@ -1,24 +0,0 @@
1
-
2
- /**
3
- * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
4
- *
5
- * Do not edit this file as changes may cause incorrect behavior and will be lost
6
- * once the code is regenerated.
7
- *
8
- * @generated by codegen project: GenerateComponentDescriptorH.js
9
- */
10
-
11
- #pragma once
12
-
13
- #include <react/renderer/components/RNTextInputViewSpec/ShadowNodes.h>
14
- #include <react/renderer/core/ConcreteComponentDescriptor.h>
15
- #include <react/renderer/componentregistry/ComponentDescriptorProviderRegistry.h>
16
-
17
- namespace facebook::react {
18
-
19
- using OneKeyTextInputComponentDescriptor = ConcreteComponentDescriptor<OneKeyTextInputShadowNode>;
20
-
21
- void RNTextInputViewSpec_registerComponentDescriptorsFromCodegen(
22
- std::shared_ptr<const ComponentDescriptorProviderRegistry> registry);
23
-
24
- } // namespace facebook::react
@@ -1,24 +0,0 @@
1
-
2
- /**
3
- * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
4
- *
5
- * Do not edit this file as changes may cause incorrect behavior and will be lost
6
- * once the code is regenerated.
7
- *
8
- * @generated by codegen project: GenerateEventEmitterCpp.js
9
- */
10
-
11
- #include <react/renderer/components/RNTextInputViewSpec/EventEmitters.h>
12
-
13
-
14
- namespace facebook::react {
15
-
16
- void OneKeyTextInputEventEmitter::onPaste(OnPaste $event) const {
17
- dispatchEvent("paste", [](jsi::Runtime &runtime) {
18
- auto $payload = jsi::Object(runtime);
19
-
20
- return $payload;
21
- });
22
- }
23
-
24
- } // namespace facebook::react
@@ -1,25 +0,0 @@
1
-
2
- /**
3
- * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
4
- *
5
- * Do not edit this file as changes may cause incorrect behavior and will be lost
6
- * once the code is regenerated.
7
- *
8
- * @generated by codegen project: GenerateEventEmitterH.js
9
- */
10
- #pragma once
11
-
12
- #include <react/renderer/components/view/ViewEventEmitter.h>
13
-
14
-
15
- namespace facebook::react {
16
- class OneKeyTextInputEventEmitter : public ViewEventEmitter {
17
- public:
18
- using ViewEventEmitter::ViewEventEmitter;
19
-
20
- struct OnPaste {
21
-
22
- };
23
- void onPaste(OnPaste value) const;
24
- };
25
- } // namespace facebook::react
@@ -1,25 +0,0 @@
1
-
2
- /**
3
- * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
4
- *
5
- * Do not edit this file as changes may cause incorrect behavior and will be lost
6
- * once the code is regenerated.
7
- *
8
- * @generated by codegen project: GeneratePropsCpp.js
9
- */
10
-
11
- #include <react/renderer/components/RNTextInputViewSpec/Props.h>
12
- #include <react/renderer/core/PropsParserContext.h>
13
- #include <react/renderer/core/propsConversions.h>
14
-
15
- namespace facebook::react {
16
-
17
- OneKeyTextInputProps::OneKeyTextInputProps(
18
- const PropsParserContext &context,
19
- const OneKeyTextInputProps &sourceProps,
20
- const RawProps &rawProps): ViewProps(context, sourceProps, rawProps)
21
-
22
-
23
- {}
24
-
25
- } // namespace facebook::react
@@ -1,27 +0,0 @@
1
-
2
- /**
3
- * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
4
- *
5
- * Do not edit this file as changes may cause incorrect behavior and will be lost
6
- * once the code is regenerated.
7
- *
8
- * @generated by codegen project: GeneratePropsH.js
9
- */
10
- #pragma once
11
-
12
- #include <react/renderer/components/view/ViewProps.h>
13
- #include <react/renderer/core/PropsParserContext.h>
14
-
15
- namespace facebook::react {
16
-
17
- class OneKeyTextInputProps final : public ViewProps {
18
- public:
19
- OneKeyTextInputProps() = default;
20
- OneKeyTextInputProps(const PropsParserContext& context, const OneKeyTextInputProps &sourceProps, const RawProps &rawProps);
21
-
22
- #pragma mark - Props
23
-
24
-
25
- };
26
-
27
- } // namespace facebook::react
@@ -1,20 +0,0 @@
1
- /**
2
- * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
3
- *
4
- * Do not edit this file as changes may cause incorrect behavior and will be lost
5
- * once the code is regenerated.
6
- *
7
- * @generated by codegen project: GenerateComponentHObjCpp.js
8
- */
9
-
10
- #import <Foundation/Foundation.h>
11
- #import <React/RCTDefines.h>
12
- #import <React/RCTLog.h>
13
-
14
- NS_ASSUME_NONNULL_BEGIN
15
-
16
- @protocol RCTOneKeyTextInputViewProtocol <NSObject>
17
-
18
- @end
19
-
20
- NS_ASSUME_NONNULL_END
@@ -1,17 +0,0 @@
1
-
2
- /**
3
- * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
4
- *
5
- * Do not edit this file as changes may cause incorrect behavior and will be lost
6
- * once the code is regenerated.
7
- *
8
- * @generated by codegen project: GenerateShadowNodeCpp.js
9
- */
10
-
11
- #include <react/renderer/components/RNTextInputViewSpec/ShadowNodes.h>
12
-
13
- namespace facebook::react {
14
-
15
- extern const char OneKeyTextInputComponentName[] = "OneKeyTextInput";
16
-
17
- } // namespace facebook::react
@@ -1,32 +0,0 @@
1
-
2
- /**
3
- * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
4
- *
5
- * Do not edit this file as changes may cause incorrect behavior and will be lost
6
- * once the code is regenerated.
7
- *
8
- * @generated by codegen project: GenerateShadowNodeH.js
9
- */
10
-
11
- #pragma once
12
-
13
- #include <react/renderer/components/RNTextInputViewSpec/EventEmitters.h>
14
- #include <react/renderer/components/RNTextInputViewSpec/Props.h>
15
- #include <react/renderer/components/RNTextInputViewSpec/States.h>
16
- #include <react/renderer/components/view/ConcreteViewShadowNode.h>
17
- #include <jsi/jsi.h>
18
-
19
- namespace facebook::react {
20
-
21
- JSI_EXPORT extern const char OneKeyTextInputComponentName[];
22
-
23
- /*
24
- * `ShadowNode` for <OneKeyTextInput> component.
25
- */
26
- using OneKeyTextInputShadowNode = ConcreteViewShadowNode<
27
- OneKeyTextInputComponentName,
28
- OneKeyTextInputProps,
29
- OneKeyTextInputEventEmitter,
30
- OneKeyTextInputState>;
31
-
32
- } // namespace facebook::react
@@ -1,16 +0,0 @@
1
-
2
- /**
3
- * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
4
- *
5
- * Do not edit this file as changes may cause incorrect behavior and will be lost
6
- * once the code is regenerated.
7
- *
8
- * @generated by codegen project: GenerateStateCpp.js
9
- */
10
- #include <react/renderer/components/RNTextInputViewSpec/States.h>
11
-
12
- namespace facebook::react {
13
-
14
-
15
-
16
- } // namespace facebook::react
@@ -1,29 +0,0 @@
1
- /**
2
- * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
3
- *
4
- * Do not edit this file as changes may cause incorrect behavior and will be lost
5
- * once the code is regenerated.
6
- *
7
- * @generated by codegen project: GenerateStateH.js
8
- */
9
- #pragma once
10
-
11
- #ifdef ANDROID
12
- #include <folly/dynamic.h>
13
- #endif
14
-
15
- namespace facebook::react {
16
-
17
- class OneKeyTextInputState {
18
- public:
19
- OneKeyTextInputState() = default;
20
-
21
- #ifdef ANDROID
22
- OneKeyTextInputState(OneKeyTextInputState const &previousState, folly::dynamic data){};
23
- folly::dynamic getDynamic() const {
24
- return {};
25
- };
26
- #endif
27
- };
28
-
29
- } // namespace facebook::react
@@ -1,152 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = exports.__INTERNAL_VIEW_CONFIG = exports.Commands = void 0;
7
- var NativeComponentRegistry = _interopRequireWildcard(require("react-native/Libraries/NativeComponent/NativeComponentRegistry"));
8
- var _codegenNativeCommands = _interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeCommands"));
9
- function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
10
- function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
11
- function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
12
- const Commands = exports.Commands = (0, _codegenNativeCommands.default)({
13
- supportedCommands: ['focus', 'blur', 'setTextAndSelection']
14
- });
15
- const __INTERNAL_VIEW_CONFIG = exports.__INTERNAL_VIEW_CONFIG = {
16
- uiViewClassName: 'OneKeyTextInput',
17
- bubblingEventTypes: {
18
- topBlur: {
19
- phasedRegistrationNames: {
20
- bubbled: 'onBlur',
21
- captured: 'onBlurCapture'
22
- }
23
- },
24
- topEndEditing: {
25
- phasedRegistrationNames: {
26
- bubbled: 'onEndEditing',
27
- captured: 'onEndEditingCapture'
28
- }
29
- },
30
- topFocus: {
31
- phasedRegistrationNames: {
32
- bubbled: 'onFocus',
33
- captured: 'onFocusCapture'
34
- }
35
- },
36
- topKeyPress: {
37
- phasedRegistrationNames: {
38
- bubbled: 'onKeyPress',
39
- captured: 'onKeyPressCapture'
40
- }
41
- },
42
- topSubmitEditing: {
43
- phasedRegistrationNames: {
44
- bubbled: 'onSubmitEditing',
45
- captured: 'onSubmitEditingCapture'
46
- }
47
- }
48
- },
49
- directEventTypes: {
50
- topScroll: {
51
- registrationName: 'onScroll'
52
- },
53
- topPaste: {
54
- registrationName: 'onPaste'
55
- }
56
- },
57
- validAttributes: {
58
- maxFontSizeMultiplier: true,
59
- adjustsFontSizeToFit: true,
60
- minimumFontScale: true,
61
- autoFocus: true,
62
- placeholder: true,
63
- inlineImagePadding: true,
64
- contextMenuHidden: true,
65
- textShadowColor: {
66
- process: require('react-native/Libraries/StyleSheet/processColor').default
67
- },
68
- maxLength: true,
69
- selectTextOnFocus: true,
70
- textShadowRadius: true,
71
- underlineColorAndroid: {
72
- process: require('react-native/Libraries/StyleSheet/processColor').default
73
- },
74
- textDecorationLine: true,
75
- submitBehavior: true,
76
- textAlignVertical: true,
77
- fontStyle: true,
78
- textShadowOffset: true,
79
- selectionColor: {
80
- process: require('react-native/Libraries/StyleSheet/processColor').default
81
- },
82
- selectionHandleColor: {
83
- process: require('react-native/Libraries/StyleSheet/processColor').default
84
- },
85
- placeholderTextColor: {
86
- process: require('react-native/Libraries/StyleSheet/processColor').default
87
- },
88
- importantForAutofill: true,
89
- lineHeight: true,
90
- textTransform: true,
91
- returnKeyType: true,
92
- keyboardType: true,
93
- multiline: true,
94
- color: {
95
- process: require('react-native/Libraries/StyleSheet/processColor').default
96
- },
97
- autoComplete: true,
98
- numberOfLines: true,
99
- letterSpacing: true,
100
- returnKeyLabel: true,
101
- fontSize: true,
102
- onKeyPress: true,
103
- cursorColor: {
104
- process: require('react-native/Libraries/StyleSheet/processColor').default
105
- },
106
- text: true,
107
- showSoftInputOnFocus: true,
108
- textAlign: true,
109
- autoCapitalize: true,
110
- autoCorrect: true,
111
- caretHidden: true,
112
- secureTextEntry: true,
113
- textBreakStrategy: true,
114
- onScroll: true,
115
- onContentSizeChange: true,
116
- onPaste: true,
117
- disableFullscreenUI: true,
118
- includeFontPadding: true,
119
- fontWeight: true,
120
- fontFamily: true,
121
- allowFontScaling: true,
122
- onSelectionChange: true,
123
- mostRecentEventCount: true,
124
- inlineImageLeft: true,
125
- editable: true,
126
- fontVariant: true,
127
- borderBottomRightRadius: true,
128
- borderBottomColor: {
129
- process: require('react-native/Libraries/StyleSheet/processColor').default
130
- },
131
- borderRadius: true,
132
- borderRightColor: {
133
- process: require('react-native/Libraries/StyleSheet/processColor').default
134
- },
135
- borderColor: {
136
- process: require('react-native/Libraries/StyleSheet/processColor').default
137
- },
138
- borderTopRightRadius: true,
139
- borderStyle: true,
140
- borderBottomLeftRadius: true,
141
- borderLeftColor: {
142
- process: require('react-native/Libraries/StyleSheet/processColor').default
143
- },
144
- borderTopLeftRadius: true,
145
- borderTopColor: {
146
- process: require('react-native/Libraries/StyleSheet/processColor').default
147
- }
148
- }
149
- };
150
- let AndroidTextInputNativeComponent = NativeComponentRegistry.get('OneKeyTextInput', () => __INTERNAL_VIEW_CONFIG);
151
- var _default = exports.default = AndroidTextInputNativeComponent;
152
- //# sourceMappingURL=AndroidTextInputNativeComponent.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["NativeComponentRegistry","_interopRequireWildcard","require","_codegenNativeCommands","_interopRequireDefault","e","__esModule","default","_getRequireWildcardCache","WeakMap","r","t","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","Commands","exports","codegenNativeCommands","supportedCommands","__INTERNAL_VIEW_CONFIG","uiViewClassName","bubblingEventTypes","topBlur","phasedRegistrationNames","bubbled","captured","topEndEditing","topFocus","topKeyPress","topSubmitEditing","directEventTypes","topScroll","registrationName","topPaste","validAttributes","maxFontSizeMultiplier","adjustsFontSizeToFit","minimumFontScale","autoFocus","placeholder","inlineImagePadding","contextMenuHidden","textShadowColor","process","maxLength","selectTextOnFocus","textShadowRadius","underlineColorAndroid","textDecorationLine","submitBehavior","textAlignVertical","fontStyle","textShadowOffset","selectionColor","selectionHandleColor","placeholderTextColor","importantForAutofill","lineHeight","textTransform","returnKeyType","keyboardType","multiline","color","autoComplete","numberOfLines","letterSpacing","returnKeyLabel","fontSize","onKeyPress","cursorColor","text","showSoftInputOnFocus","textAlign","autoCapitalize","autoCorrect","caretHidden","secureTextEntry","textBreakStrategy","onScroll","onContentSizeChange","onPaste","disableFullscreenUI","includeFontPadding","fontWeight","fontFamily","allowFontScaling","onSelectionChange","mostRecentEventCount","inlineImageLeft","editable","fontVariant","borderBottomRightRadius","borderBottomColor","borderRadius","borderRightColor","borderColor","borderTopRightRadius","borderStyle","borderBottomLeftRadius","borderLeftColor","borderTopLeftRadius","borderTopColor","AndroidTextInputNativeComponent","_default"],"sourceRoot":"../../src","sources":["AndroidTextInputNativeComponent.js"],"mappings":"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","ignoreList":[]}
@@ -1 +0,0 @@
1
- {"version":3,"names":["ReactNativeFeatureFlags","_interopRequireWildcard","require","_usePressability","_interopRequireDefault","_flattenStyle","_StyleSheet","_Text","_TextAncestor","_Platform","_useMergeRefs","_TextInputState","_invariant","_nullthrows","_react","React","_jsxRuntime","e","__esModule","default","_getRequireWildcardCache","WeakMap","r","t","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","AndroidTextInput","AndroidTextInputCommands","RCTSinglelineTextInputView","RCTSinglelineTextInputNativeCommands","RCTMultilineTextInputView","RCTMultilineTextInputNativeCommands","Platform","OS","Commands","emptyFunctionThatReturnsTrue","useTextInputStateSynchronization_STATE","props","mostRecentEventCount","selection","inputRef","text","viewCommands","lastNativeText","setLastNativeText","useState","value","lastNativeSelectionState","setLastNativeSelection","start","end","lastNativeSelection","useLayoutEffect","nativeUpdate","keys","length","current","setTextAndSelection","defaultValue","useTextInputStateSynchronization_REFS","lastNativeTextRef","useRef","lastNativeSelectionRef","InternalTextInput","ariaBusy","ariaChecked","ariaDisabled","ariaExpanded","ariaSelected","accessibilityState","id","tabIndex","propsSelection","selectionColor","selectionHandleColor","cursorColor","otherProps","undefined","multiline","setMostRecentEventCount","useTextInputStateSynchronization","useRefsForTextInputState","inputRefValue","TextInputState","registerInput","unregisterInput","currentlyFocusedInput","nullthrows","blur","setLocalRef","useCallback","instance","assign","clear","isFocused","getNativeRef","setSelection","ref","useMergeRefs","forwardedRef","_onChange","event","currentText","nativeEvent","onChange","onChangeText","eventCount","_onSelectionChange","onSelectionChange","_onFocus","focusInput","onFocus","_onBlur","blurInput","onBlur","_onScroll","onScroll","textInput","submitBehavior","blurOnSubmit","accessible","focusable","editable","hitSlop","onPress","onPressIn","onPressOut","rejectResponderTermination","config","useMemo","focus","cancelable","caretHidden","isTesting","eventHandlers","usePressability","_accessibilityState","busy","checked","disabled","expanded","selected","_style","style","flattenedStyle","flattenStyle","overrides","fontWeight","toString","verticalAlign","textAlignVertical","verticalAlignToTextAlignVerticalMap","RCTTextInputView","useMultilineDefaultStyle","padding","paddingVertical","paddingTop","jsx","dataDetectorTypes","nativeID","numberOfLines","rows","onContentSizeChange","onSelectionChangeShouldSetResponder","StyleSheet","compose","styles","multilineDefault","autoCapitalize","_accessibilityLabelledBy","accessibilityLabelledBy","placeholder","children","childCount","Children","count","invariant","colorProps","onPaste","rest","disableFullscreenUI","textBreakStrategy","Provider","enterKeyHintToReturnTypeMap","enter","done","go","next","previous","search","send","inputModeToKeyboardTypeMap","none","decimal","numeric","tel","email","url","autoCompleteWebToAutoCompleteAndroidMap","bday","country","name","off","sex","username","autoCompleteWebToTextContentTypeMap","nickname","organization","ExportedForwardRef","forwardRef","TextInput","allowFontScaling","underlineColorAndroid","autoComplete","textContentType","readOnly","enterKeyHint","returnKeyType","inputMode","showSoftInputOnFocus","keyboardType","restProps","displayName","State","currentlyFocusedField","focusTextInput","blurTextInput","create","auto","top","bottom","middle","_default","exports"],"sourceRoot":"../../src","sources":["Input.js"],"mappings":";;;;;;AAsBA,IAAAA,uBAAA,GAAAC,uBAAA,CAAAC,OAAA;AACA,IAAAC,gBAAA,GAAAC,sBAAA,CAAAF,OAAA;AACA,IAAAG,aAAA,GAAAD,sBAAA,CAAAF,OAAA;AACA,IAAAI,WAAA,GAAAF,sBAAA,CAAAF,OAAA;AAKA,IAAAK,KAAA,GAAAH,sBAAA,CAAAF,OAAA;AACA,IAAAM,aAAA,GAAAJ,sBAAA,CAAAF,OAAA;AACA,IAAAO,SAAA,GAAAL,sBAAA,CAAAF,OAAA;AACA,IAAAQ,aAAA,GAAAN,sBAAA,CAAAF,OAAA;AACA,IAAAS,eAAA,GAAAP,sBAAA,CAAAF,OAAA;AACA,IAAAU,UAAA,GAAAR,sBAAA,CAAAF,OAAA;AACA,IAAAW,WAAA,GAAAT,sBAAA,CAAAF,OAAA;AACA,IAAAY,MAAA,GAAAb,uBAAA,CAAAC,OAAA;AAA+B,IAAAa,KAAA,GAAAD,MAAA;AAAA,IAAAE,WAAA,GAAAd,OAAA;AAAA,SAAAE,uBAAAa,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAAA,SAAAG,yBAAAH,CAAA,6BAAAI,OAAA,mBAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAD,wBAAA,YAAAA,CAAAH,CAAA,WAAAA,CAAA,GAAAM,CAAA,GAAAD,CAAA,KAAAL,CAAA;AAAA,SAAAhB,wBAAAgB,CAAA,EAAAK,CAAA,SAAAA,CAAA,IAAAL,CAAA,IAAAA,CAAA,CAAAC,UAAA,SAAAD,CAAA,eAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,WAAAE,OAAA,EAAAF,CAAA,QAAAM,CAAA,GAAAH,wBAAA,CAAAE,CAAA,OAAAC,CAAA,IAAAA,CAAA,CAAAC,GAAA,CAAAP,CAAA,UAAAM,CAAA,CAAAE,GAAA,CAAAR,CAAA,OAAAS,CAAA,KAAAC,SAAA,UAAAC,CAAA,GAAAC,MAAA,CAAAC,cAAA,IAAAD,MAAA,CAAAE,wBAAA,WAAAC,CAAA,IAAAf,CAAA,oBAAAe,CAAA,OAAAC,cAAA,CAAAC,IAAA,CAAAjB,CAAA,EAAAe,CAAA,SAAAG,CAAA,GAAAP,CAAA,GAAAC,MAAA,CAAAE,wBAAA,CAAAd,CAAA,EAAAe,CAAA,UAAAG,CAAA,KAAAA,CAAA,CAAAV,GAAA,IAAAU,CAAA,CAAAC,GAAA,IAAAP,MAAA,CAAAC,cAAA,CAAAJ,CAAA,EAAAM,CAAA,EAAAG,CAAA,IAAAT,CAAA,CAAAM,CAAA,IAAAf,CAAA,CAAAe,CAAA,YAAAN,CAAA,CAAAP,OAAA,GAAAF,CAAA,EAAAM,CAAA,IAAAA,CAAA,CAAAa,GAAA,CAAAnB,CAAA,EAAAS,CAAA,GAAAA,CAAA;AAG/B,IAAIW,gBAAgB;AACpB,IAAIC,wBAAwB;AAC5B,IAAIC,0BAA0B;AAC9B,IAAIC,oCAAoC;AACxC,IAAIC,yBAAyB;AAC7B,IAAIC,mCAAmC;AAEvC,IAAIC,iBAAQ,CAACC,EAAE,KAAK,SAAS,EAAE;EAC7BP,gBAAgB,GAAGnC,OAAO,CAAC,mCAAmC,CAAC,CAACiB,OAAO;EACvEmB,wBAAwB,GACtBpC,OAAO,CAAC,mCAAmC,CAAC,CAAC2C,QAAQ;AACzD,CAAC,MAAM,IAAIF,iBAAQ,CAACC,EAAE,KAAK,KAAK,EAAE;EAChCL,0BAA0B,GACxBrC,OAAO,CAAC,kFAAkF,CAAC,CAACiB,OAAO;EACrGqB,oCAAoC,GAClCtC,OAAO,CAAC,kFAAkF,CAAC,CAAC2C,QAAQ;EACtGJ,yBAAyB,GACvBvC,OAAO,CAAC,kFAAkF,CAAC,CAACiB,OAAO;EACrGuB,mCAAmC,GACjCxC,OAAO,CAAC,kFAAkF,CAAC,CAAC2C,QAAQ;AACxG;AAi7BA,MAAMC,4BAA4B,GAAGA,CAAA,KAAM,IAAI;AAO/C,SAASC,sCAAsCA,CAAC;EAC9CC,KAAK;EACLC,oBAAoB;EACpBC,SAAS;EACTC,QAAQ;EACRC,IAAI;EACJC;AAQF,CAAC,EAGC;EACA,MAAM,CAACC,cAAc,EAAEC,iBAAiB,CAAC,GAAG,IAAAC,eAAQ,EAAaR,KAAK,CAACS,KAAK,CAAC;EAC7E,MAAM,CAACC,wBAAwB,EAAEC,sBAAsB,CAAC,GACtD,IAAAH,eAAQ,EAAsB;IAC5BN,SAAS,EAAE;MAACU,KAAK,EAAE,CAAC,CAAC;MAAEC,GAAG,EAAE,CAAC;IAAC,CAAC;IAC/BZ,oBAAoB,EAAEA;EACxB,CAAC,CAAC;EAEJ,MAAMa,mBAAmB,GAAGJ,wBAAwB,CAACR,SAAS;EAK9D,IAAAa,sBAAe,EAAC,MAAM;IACpB,MAAMC,YAAoD,GAAG,CAAC,CAAC;IAE/D,IAAIV,cAAc,KAAKN,KAAK,CAACS,KAAK,IAAI,OAAOT,KAAK,CAACS,KAAK,KAAK,QAAQ,EAAE;MACrEO,YAAY,CAACZ,IAAI,GAAGJ,KAAK,CAACS,KAAK;MAC/BF,iBAAiB,CAACP,KAAK,CAACS,KAAK,CAAC;IAChC;IAEA,IACEP,SAAS,IACTY,mBAAmB,KAClBA,mBAAmB,CAACF,KAAK,KAAKV,SAAS,CAACU,KAAK,IAC5CE,mBAAmB,CAACD,GAAG,KAAKX,SAAS,CAACW,GAAG,CAAC,EAC5C;MACAG,YAAY,CAACd,SAAS,GAAGA,SAAS;MAClCS,sBAAsB,CAAC;QAACT,SAAS;QAAED;MAAoB,CAAC,CAAC;IAC3D;IAEA,IAAIpB,MAAM,CAACoC,IAAI,CAACD,YAAY,CAAC,CAACE,MAAM,KAAK,CAAC,EAAE;MAC1C;IACF;IAEA,IAAIf,QAAQ,CAACgB,OAAO,IAAI,IAAI,EAAE;MAC5Bd,YAAY,CAACe,mBAAmB,CAC9BjB,QAAQ,CAACgB,OAAO,EAChBlB,oBAAoB,EACpBG,IAAI,EACJF,SAAS,EAAEU,KAAK,IAAI,CAAC,CAAC,EACtBV,SAAS,EAAEW,GAAG,IAAI,CAAC,CACrB,CAAC;IACH;EACF,CAAC,EAAE,CACDZ,oBAAoB,EACpBE,QAAQ,EACRH,KAAK,CAACS,KAAK,EACXT,KAAK,CAACqB,YAAY,EAClBf,cAAc,EACdJ,SAAS,EACTY,mBAAmB,EACnBV,IAAI,EACJC,YAAY,CACb,CAAC;EAEF,OAAO;IAACE,iBAAiB;IAAEI;EAAsB,CAAC;AACpD;AAOA,SAASW,qCAAqCA,CAAC;EAC7CtB,KAAK;EACLC,oBAAoB;EACpBC,SAAS;EACTC,QAAQ;EACRC,IAAI;EACJC;AAQF,CAAC,EAGC;EACA,MAAMkB,iBAAiB,GAAG,IAAAC,aAAM,EAAaxB,KAAK,CAACS,KAAK,CAAC;EACzD,MAAMgB,sBAAsB,GAAG,IAAAD,aAAM,EAAsB;IACzDtB,SAAS,EAAE;MAACU,KAAK,EAAE,CAAC,CAAC;MAAEC,GAAG,EAAE,CAAC;IAAC,CAAC;IAC/BZ,oBAAoB,EAAEA;EACxB,CAAC,CAAC;EAKF,IAAAc,sBAAe,EAAC,MAAM;IACpB,MAAMC,YAAoD,GAAG,CAAC,CAAC;IAE/D,MAAMF,mBAAmB,GAAGW,sBAAsB,CAACN,OAAO,CAACjB,SAAS;IAEpE,IACEqB,iBAAiB,CAACJ,OAAO,KAAKnB,KAAK,CAACS,KAAK,IACzC,OAAOT,KAAK,CAACS,KAAK,KAAK,QAAQ,EAC/B;MACAO,YAAY,CAACZ,IAAI,GAAGJ,KAAK,CAACS,KAAK;MAC/Bc,iBAAiB,CAACJ,OAAO,GAAGnB,KAAK,CAACS,KAAK;IACzC;IAEA,IACEP,SAAS,IACTY,mBAAmB,KAClBA,mBAAmB,CAACF,KAAK,KAAKV,SAAS,CAACU,KAAK,IAC5CE,mBAAmB,CAACD,GAAG,KAAKX,SAAS,CAACW,GAAG,CAAC,EAC5C;MACAG,YAAY,CAACd,SAAS,GAAGA,SAAS;MAClCuB,sBAAsB,CAACN,OAAO,GAAG;QAACjB,SAAS;QAAED;MAAoB,CAAC;IACpE;IAEA,IAAIpB,MAAM,CAACoC,IAAI,CAACD,YAAY,CAAC,CAACE,MAAM,KAAK,CAAC,EAAE;MAC1C;IACF;IAEA,IAAIf,QAAQ,CAACgB,OAAO,IAAI,IAAI,EAAE;MAC5Bd,YAAY,CAACe,mBAAmB,CAC9BjB,QAAQ,CAACgB,OAAO,EAChBlB,oBAAoB,EACpBG,IAAI,EACJF,SAAS,EAAEU,KAAK,IAAI,CAAC,CAAC,EACtBV,SAAS,EAAEW,GAAG,IAAI,CAAC,CACrB,CAAC;IACH;EACF,CAAC,EAAE,CACDZ,oBAAoB,EACpBE,QAAQ,EACRH,KAAK,CAACS,KAAK,EACXT,KAAK,CAACqB,YAAY,EAClBnB,SAAS,EACTE,IAAI,EACJC,YAAY,CACb,CAAC;EAEF,OAAO;IACLE,iBAAiB,EAAED,cAAc,IAAI;MACnCiB,iBAAiB,CAACJ,OAAO,GAAGb,cAAc;IAC5C,CAAC;IACDK,sBAAsB,EAAEG,mBAAmB,IAAI;MAC7CW,sBAAsB,CAACN,OAAO,GAAGL,mBAAmB;IACtD;EACF,CAAC;AACH;AAiHA,SAASY,iBAAiBA,CAAC1B,KAAqB,EAAc;EAC5D,MAAM;IACJ,WAAW,EAAE2B,QAAQ;IACrB,cAAc,EAAEC,WAAW;IAC3B,eAAe,EAAEC,YAAY;IAC7B,eAAe,EAAEC,YAAY;IAC7B,eAAe,EAAEC,YAAY;IAC7BC,kBAAkB;IAClBC,EAAE;IACFC,QAAQ;IACRhC,SAAS,EAAEiC,cAAc;IACzBC,cAAc;IACdC,oBAAoB;IACpBC,WAAW;IACX,GAAGC;EACL,CAAC,GAAGvC,KAAK;EAET,MAAMG,QAAQ,GAAG,IAAAqB,aAAM,EAA2B,IAAI,CAAC;EAEvD,MAAMtB,SAAqB,GACzBiC,cAAc,IAAI,IAAI,GAClB,IAAI,GACJ;IACEvB,KAAK,EAAEuB,cAAc,CAACvB,KAAK;IAC3BC,GAAG,EAAEsB,cAAc,CAACtB,GAAG,IAAIsB,cAAc,CAACvB;EAC5C,CAAC;EAEP,MAAMR,IAAI,GACR,OAAOJ,KAAK,CAACS,KAAK,KAAK,QAAQ,GAC3BT,KAAK,CAACS,KAAK,GACX,OAAOT,KAAK,CAACqB,YAAY,KAAK,QAAQ,GACpCrB,KAAK,CAACqB,YAAY,GAClBmB,SAAS;EAEjB,MAAMnC,YAAY,GAChBf,wBAAwB,KACvBU,KAAK,CAACyC,SAAS,KAAK,IAAI,GACrB/C,mCAAmC,GACnCF,oCAAoC,CAAC;EAE3C,MAAM,CAACS,oBAAoB,EAAEyC,uBAAuB,CAAC,GAAG,IAAAlC,eAAQ,EAAS,CAAC,CAAC;EAC3E,MAAMmC,gCAAgC,GACpC3F,uBAAuB,CAAC4F,wBAAwB,CAAC,CAAC,GAC9CtB,qCAAqC,GACrCvB,sCAAsC;EAC5C,MAAM;IAACQ,iBAAiB;IAAEI;EAAsB,CAAC,GAC/CgC,gCAAgC,CAAC;IAC/B3C,KAAK;IACLG,QAAQ;IACRF,oBAAoB;IACpBC,SAAS;IACTE,IAAI;IACJC;EACF,CAAC,CAAC;EAEJ,IAAAU,sBAAe,EAAC,MAAM;IACpB,MAAM8B,aAAa,GAAG1C,QAAQ,CAACgB,OAAO;IAEtC,IAAI0B,aAAa,IAAI,IAAI,EAAE;MACzBC,uBAAc,CAACC,aAAa,CAACF,aAAa,CAAC;MAE3C,OAAO,MAAM;QACXC,uBAAc,CAACE,eAAe,CAACH,aAAa,CAAC;QAE7C,IAAIC,uBAAc,CAACG,qBAAqB,CAAC,CAAC,KAAKJ,aAAa,EAAE;UAC5D,IAAAK,mBAAU,EAACL,aAAa,CAAC,CAACM,IAAI,CAAC,CAAC;QAClC;MACF,CAAC;IACH;EACF,CAAC,EAAE,EAAE,CAAC;EAEN,MAAMC,WAAW,GAAG,IAAAC,kBAAW,EAC5BC,QAA6B,IAAK;IAEjCnD,QAAQ,CAACgB,OAAO,GAAGmC,QAAQ;IAwB3B,IAAIA,QAAQ,IAAI,IAAI,EAAE;MAEpBzE,MAAM,CAAC0E,MAAM,CAACD,QAAQ,EAAE;QACtBE,KAAKA,CAAA,EAAS;UACZ,IAAIrD,QAAQ,CAACgB,OAAO,IAAI,IAAI,EAAE;YAC5Bd,YAAY,CAACe,mBAAmB,CAC9BjB,QAAQ,CAACgB,OAAO,EAChBlB,oBAAoB,EACpB,EAAE,EACF,CAAC,EACD,CACF,CAAC;UACH;QACF,CAAC;QAEDwD,SAASA,CAAA,EAAY;UACnB,OAAOX,uBAAc,CAACG,qBAAqB,CAAC,CAAC,KAAK9C,QAAQ,CAACgB,OAAO;QACpE,CAAC;QACDuC,YAAYA,CAAA,EAAuB;UACjC,OAAOvD,QAAQ,CAACgB,OAAO;QACzB,CAAC;QACDwC,YAAYA,CAAC/C,KAAa,EAAEC,GAAW,EAAQ;UAC7C,IAAIV,QAAQ,CAACgB,OAAO,IAAI,IAAI,EAAE;YAC5Bd,YAAY,CAACe,mBAAmB,CAC9BjB,QAAQ,CAACgB,OAAO,EAChBlB,oBAAoB,EACpB,IAAI,EACJW,KAAK,EACLC,GACF,CAAC;UACH;QACF;MACF,CAAC,CAAC;IACJ;EACF,CAAC,EACD,CAACZ,oBAAoB,EAAEI,YAAY,CACrC,CAAC;EAGD,MAAMuD,GAAG,GAAG,IAAAC,qBAAY,EAAeT,WAAW,EAAEpD,KAAK,CAAC8D,YAAY,CAAC;EAEvE,MAAMC,SAAS,GAAIC,KAA2B,IAAK;IACjD,MAAMC,WAAW,GAAGD,KAAK,CAACE,WAAW,CAAC9D,IAAI;IAC1CJ,KAAK,CAACmE,QAAQ,IAAInE,KAAK,CAACmE,QAAQ,CAACH,KAAK,CAAC;IACvChE,KAAK,CAACoE,YAAY,IAAIpE,KAAK,CAACoE,YAAY,CAACH,WAAW,CAAC;IAErD,IAAI9D,QAAQ,CAACgB,OAAO,IAAI,IAAI,EAAE;MAG5B;IACF;IAEAZ,iBAAiB,CAAC0D,WAAW,CAAC;IAK9BvB,uBAAuB,CAACsB,KAAK,CAACE,WAAW,CAACG,UAAU,CAAC;EACvD,CAAC;EAED,MAAMC,kBAAkB,GAAIN,KAAoC,IAAK;IACnEhE,KAAK,CAACuE,iBAAiB,IAAIvE,KAAK,CAACuE,iBAAiB,CAACP,KAAK,CAAC;IAEzD,IAAI7D,QAAQ,CAACgB,OAAO,IAAI,IAAI,EAAE;MAG5B;IACF;IAEAR,sBAAsB,CAAC;MACrBT,SAAS,EAAE8D,KAAK,CAACE,WAAW,CAAChE,SAAS;MACtCD;IACF,CAAC,CAAC;EACJ,CAAC;EAED,MAAMuE,QAAQ,GAAIR,KAA0B,IAAK;IAC/ClB,uBAAc,CAAC2B,UAAU,CAACtE,QAAQ,CAACgB,OAAO,CAAC;IAC3C,IAAInB,KAAK,CAAC0E,OAAO,EAAE;MACjB1E,KAAK,CAAC0E,OAAO,CAACV,KAAK,CAAC;IACtB;EACF,CAAC;EAED,MAAMW,OAAO,GAAIX,KAAyB,IAAK;IAC7ClB,uBAAc,CAAC8B,SAAS,CAACzE,QAAQ,CAACgB,OAAO,CAAC;IAC1C,IAAInB,KAAK,CAAC6E,MAAM,EAAE;MAChB7E,KAAK,CAAC6E,MAAM,CAACb,KAAK,CAAC;IACrB;EACF,CAAC;EAED,MAAMc,SAAS,GAAId,KAAkB,IAAK;IACxChE,KAAK,CAAC+E,QAAQ,IAAI/E,KAAK,CAAC+E,QAAQ,CAACf,KAAK,CAAC;EACzC,CAAC;EAED,IAAIgB,SAAS,GAAG,IAAI;EAEpB,MAAMvC,SAAS,GAAGzC,KAAK,CAACyC,SAAS,IAAI,KAAK;EAE1C,IAAIwC,cAA8B;EAClC,IAAIjF,KAAK,CAACiF,cAAc,IAAI,IAAI,EAAE;IAEhC,IAAI,CAACxC,SAAS,IAAIzC,KAAK,CAACiF,cAAc,KAAK,SAAS,EAAE;MAEpDA,cAAc,GAAG,eAAe;IAClC,CAAC,MAAM;MACLA,cAAc,GAAGjF,KAAK,CAACiF,cAAc;IACvC;EACF,CAAC,MAAM,IAAIxC,SAAS,EAAE;IACpB,IAAIzC,KAAK,CAACkF,YAAY,KAAK,IAAI,EAAE;MAC/BD,cAAc,GAAG,eAAe;IAClC,CAAC,MAAM;MACLA,cAAc,GAAG,SAAS;IAC5B;EACF,CAAC,MAAM;IAEL,IAAIjF,KAAK,CAACkF,YAAY,KAAK,KAAK,EAAE;MAChCD,cAAc,GAAG,eAAe;IAClC,CAAC,MAAM;MACLA,cAAc,GAAG,QAAQ;IAC3B;EACF;EAEA,MAAME,UAAU,GAAGnF,KAAK,CAACmF,UAAU,KAAK,KAAK;EAC7C,MAAMC,SAAS,GAAGpF,KAAK,CAACoF,SAAS,KAAK,KAAK;EAE3C,MAAM;IACJC,QAAQ;IACRC,OAAO;IACPC,OAAO;IACPC,SAAS;IACTC,UAAU;IACVC;EACF,CAAC,GAAG1F,KAAK;EAET,MAAM2F,MAAM,GAAG5H,KAAK,CAAC6H,OAAO,CAC1B,OAAO;IACLN,OAAO;IACPC,OAAO,EAAGvB,KAA4B,IAAK;MACzCuB,OAAO,GAAGvB,KAAK,CAAC;MAChB,IAAIqB,QAAQ,KAAK,KAAK,EAAE;QACtB,IAAIlF,QAAQ,CAACgB,OAAO,IAAI,IAAI,EAAE;UAC5BhB,QAAQ,CAACgB,OAAO,CAAC0E,KAAK,CAAC,CAAC;QAC1B;MACF;IACF,CAAC;IACDL,SAAS,EAAEA,SAAS;IACpBC,UAAU,EAAEA,UAAU;IACtBK,UAAU,EAAEnG,iBAAQ,CAACC,EAAE,KAAK,KAAK,GAAG,CAAC8F,0BAA0B,GAAG;EACpE,CAAC,CAAC,EACF,CACEL,QAAQ,EACRC,OAAO,EACPC,OAAO,EACPC,SAAS,EACTC,UAAU,EACVC,0BAA0B,CAE9B,CAAC;EAID,IAAIK,WAAW,GAAG/F,KAAK,CAAC+F,WAAW;EACnC,IAAIpG,iBAAQ,CAACqG,SAAS,EAAE;IACtBD,WAAW,GAAG,IAAI;EACpB;EAIA,MAAM;IAAClB,MAAM;IAAEH,OAAO;IAAE,GAAGuB;EAAa,CAAC,GAAG,IAAAC,wBAAe,EAACP,MAAM,CAAC;EAEnE,IAAIQ,mBAAmB;EACvB,IACEnE,kBAAkB,IAAI,IAAI,IAC1BL,QAAQ,IAAI,IAAI,IAChBC,WAAW,IAAI,IAAI,IACnBC,YAAY,IAAI,IAAI,IACpBC,YAAY,IAAI,IAAI,IACpBC,YAAY,IAAI,IAAI,EACpB;IACAoE,mBAAmB,GAAG;MACpBC,IAAI,EAAEzE,QAAQ,IAAIK,kBAAkB,EAAEoE,IAAI;MAC1CC,OAAO,EAAEzE,WAAW,IAAII,kBAAkB,EAAEqE,OAAO;MACnDC,QAAQ,EAAEzE,YAAY,IAAIG,kBAAkB,EAAEsE,QAAQ;MACtDC,QAAQ,EAAEzE,YAAY,IAAIE,kBAAkB,EAAEuE,QAAQ;MACtDC,QAAQ,EAAEzE,YAAY,IAAIC,kBAAkB,EAAEwE;IAChD,CAAC;EACH;EAGA,IAAIC,MAAM,GAAGzG,KAAK,CAAC0G,KAAK;EACxB,MAAMC,cAAc,GAAG,IAAAC,qBAAY,EAAgB5G,KAAK,CAAC0G,KAAK,CAAC;EAC/D,IAAIC,cAAc,IAAI,IAAI,EAAE;IAC1B,IAAIE,SAAkC,GAAG,IAAI;IAC7C,IAAI,OAAOF,cAAc,EAAEG,UAAU,KAAK,QAAQ,EAAE;MAClDD,SAAS,GAAGA,SAAS,IAAK,CAAC,CAA0B;MACrDA,SAAS,CAACC,UAAU,GAEjBH,cAAc,CAACG,UAAU,CAACC,QAAQ,CAAC,CAAmC;IAC3E;IAEA,IAAIJ,cAAc,CAACK,aAAa,IAAI,IAAI,EAAE;MACxCH,SAAS,GAAGA,SAAS,IAAK,CAAC,CAA0B;MACrDA,SAAS,CAACI,iBAAiB,GACzBC,mCAAmC,CAACP,cAAc,CAACK,aAAa,CAAC;MACnEH,SAAS,CAACG,aAAa,GAAGxE,SAAS;IACrC;IAEA,IAAIqE,SAAS,IAAI,IAAI,EAAE;MAErBJ,MAAM,GAAG,CAACA,MAAM,EAAEI,SAAS,CAAC;IAC9B;EACF;EAEA,IAAIlH,iBAAQ,CAACC,EAAE,KAAK,KAAK,EAAE;IACzB,MAAMuH,gBAAgB,GACpBnH,KAAK,CAACyC,SAAS,KAAK,IAAI,GACpBhD,yBAAyB,GACzBF,0BAA0B;IAEhC,MAAM6H,wBAAwB,GAC5BpH,KAAK,CAACyC,SAAS,KAAK,IAAI,KACvBkE,cAAc,IAAI,IAAI,IACpBA,cAAc,CAACU,OAAO,IAAI,IAAI,IAC7BV,cAAc,CAACW,eAAe,IAAI,IAAI,IACtCX,cAAc,CAACY,UAAU,IAAI,IAAK,CAAC;IAEzCvC,SAAS,gBACP,IAAAhH,WAAA,CAAAwJ,GAAA,EAACL,gBAAgB;MAEfvD,GAAG,EAAGA,GAAiB;MAAA,GACnBrB,UAAU;MAAA,GACV0D,aAAa;MACjBjE,kBAAkB,EAAEmE,mBAAoB;MACxChB,UAAU,EAAEA,UAAW;MACvBF,cAAc,EAAEA,cAAe;MAC/Bc,WAAW,EAAEA,WAAY;MACzB0B,iBAAiB,EAAEzH,KAAK,CAACyH,iBAAkB;MAC3CrC,SAAS,EAAElD,QAAQ,KAAKM,SAAS,GAAG,CAACN,QAAQ,GAAGkD,SAAU;MAC1DnF,oBAAoB,EAAEA,oBAAqB;MAC3CyH,QAAQ,EAAEzF,EAAE,IAAIjC,KAAK,CAAC0H,QAAS;MAC/BC,aAAa,EAAE3H,KAAK,CAAC4H,IAAI,IAAI5H,KAAK,CAAC2H,aAAc;MACjD9C,MAAM,EAAEF,OAAQ;MAChBR,QAAQ,EAAEJ,SAAU;MACpB8D,mBAAmB,EAAE7H,KAAK,CAAC6H,mBAAoB;MAC/CnD,OAAO,EAAEF,QAAS;MAClBO,QAAQ,EAAED,SAAU;MACpBP,iBAAiB,EAAED,kBAAmB;MACtCwD,mCAAmC,EAAEhI,4BAA6B;MAClEI,SAAS,EAAEA,SAAU;MACrBkC,cAAc,EAAEA,cAAe;MAC/BsE,KAAK,EAAEqB,mBAAU,CAACC,OAAO,CACvBZ,wBAAwB,GAAGa,MAAM,CAACC,gBAAgB,GAAG,IAAI,EACzDzB,MACF,CAAE;MACFrG,IAAI,EAAEA;IAAK,CACZ,CACF;EACH,CAAC,MAAM,IAAIT,iBAAQ,CAACC,EAAE,KAAK,SAAS,EAAE;IACpC,MAAMuI,cAAc,GAAGnI,KAAK,CAACmI,cAAc,IAAI,WAAW;IAC1D,MAAMC,wBAAwB,GAC5BpI,KAAK,GAAG,iBAAiB,CAAC,IAAIA,KAAK,EAAEqI,uBAAuB;IAC9D,MAAMC,WAAW,GAAGtI,KAAK,CAACsI,WAAW,IAAI,EAAE;IAC3C,IAAIC,QAAQ,GAAGvI,KAAK,CAACuI,QAAQ;IAC7B,MAAMC,UAAU,GAAGzK,KAAK,CAAC0K,QAAQ,CAACC,KAAK,CAACH,QAAQ,CAAC;IACjD,IAAAI,kBAAS,EACP,EAAE3I,KAAK,CAACS,KAAK,IAAI,IAAI,IAAI+H,UAAU,CAAC,EACpC,yCACF,CAAC;IACD,IAAIA,UAAU,GAAG,CAAC,EAAE;MAClBD,QAAQ,gBAAG,IAAAvK,WAAA,CAAAwJ,GAAA,EAACjK,KAAA,CAAAY,OAAI;QAAAoK,QAAA,EAAEA;MAAQ,CAAO,CAAC;IACpC;IAEA,MAAMK,UAAU,GAAG;MACjBxG,cAAc;MACdC,oBAAoB,EAClBA,oBAAoB,KAAKG,SAAS,GAC9BJ,cAAc,GACdC,oBAAoB;MAC1BC,WAAW,EAAEA,WAAW,KAAKE,SAAS,GAAGJ,cAAc,GAAGE;IAC5D,CAAC;IACD,MAAM;MAAEuG,OAAO;MAAE,GAAGC;IAAK,CAAC,GAAGvG,UAAU;IACvCyC,SAAS,gBASP,IAAAhH,WAAA,CAAAwJ,GAAA,EAACnI,gBAAgB;MAEfuE,GAAG,EAAGA,GAAiB;MAAA,GACnBkF,IAAI;MAAA,GACJF,UAAU;MAAA,GACV3C,aAAa;MACjB4C,OAAO,EAAEA,OAAQ;MACjB7G,kBAAkB,EAAEmE,mBAAoB;MACxCkC,uBAAuB,EAAED,wBAAyB;MAClDjD,UAAU,EAAEA,UAAW;MACvBgD,cAAc,EAAEA,cAAe;MAC/BlD,cAAc,EAAEA,cAAe;MAC/Bc,WAAW,EAAEA,WAAY;MACzBwC,QAAQ,EAAEA,QAAS;MACnBQ,mBAAmB,EAAE/I,KAAK,CAAC+I,mBAAoB;MAC/C3D,SAAS,EAAElD,QAAQ,KAAKM,SAAS,GAAG,CAACN,QAAQ,GAAGkD,SAAU;MAC1DnF,oBAAoB,EAAEA,oBAAqB;MAC3CyH,QAAQ,EAAEzF,EAAE,IAAIjC,KAAK,CAAC0H,QAAS;MAC/BC,aAAa,EAAE3H,KAAK,CAAC4H,IAAI,IAAI5H,KAAK,CAAC2H,aAAc;MACjD9C,MAAM,EAAEF,OAAQ;MAChBR,QAAQ,EAAEJ,SAAU;MACpBW,OAAO,EAAEF,QAAS;MAOlBO,QAAQ,EAAED,SAAU;MACpBP,iBAAiB,EAAED,kBAAmB;MACtCgE,WAAW,EAAEA,WAAY;MACzB5B,KAAK,EAAED,MAAO;MACdrG,IAAI,EAAEA,IAAK;MACX4I,iBAAiB,EAAEhJ,KAAK,CAACgJ;IAAkB,CAC5C,CACF;EACH;EACA,oBACE,IAAAhL,WAAA,CAAAwJ,GAAA,EAAChK,aAAA,CAAAW,OAAY,CAAC8K,QAAQ;IAACxI,KAAK,EAAE,IAAK;IAAA8H,QAAA,EAAEvD;EAAS,CAAwB,CAAC;AAE3E;AAEA,MAAMkE,2BAA2B,GAAG;EAClCC,KAAK,EAAE,SAAS;EAChBC,IAAI,EAAE,MAAM;EACZC,EAAE,EAAE,IAAI;EACRC,IAAI,EAAE,MAAM;EACZC,QAAQ,EAAE,UAAU;EACpBC,MAAM,EAAE,QAAQ;EAChBC,IAAI,EAAE;AACR,CAAC;AAED,MAAMC,0BAA0B,GAAG;EACjCC,IAAI,EAAE,SAAS;EACfvJ,IAAI,EAAE,SAAS;EACfwJ,OAAO,EAAE,aAAa;EACtBC,OAAO,EAAE,YAAY;EACrBC,GAAG,EAAE,WAAW;EAChBN,MAAM,EAAE7J,iBAAQ,CAACC,EAAE,KAAK,KAAK,GAAG,YAAY,GAAG,SAAS;EACxDmK,KAAK,EAAE,eAAe;EACtBC,GAAG,EAAE;AACP,CAAC;AAGD,MAAMC,uCAAuC,GAAG;EAC9C,eAAe,EAAE,uBAAuB;EACxC,eAAe,EAAE,yBAAyB;EAC1CC,IAAI,EAAE,gBAAgB;EACtB,UAAU,EAAE,eAAe;EAC3B,YAAY,EAAE,iBAAiB;EAC/B,WAAW,EAAE,gBAAgB;EAC7B,QAAQ,EAAE,QAAQ;EAClB,QAAQ,EAAE,QAAQ;EAClB,cAAc,EAAE,cAAc;EAC9B,aAAa,EAAE,aAAa;EAC5B,WAAW,EAAE,WAAW;EACxBC,OAAO,EAAE,wBAAwB;EACjC,kBAAkB,EAAE,UAAU;EAC9BJ,KAAK,EAAE,OAAO;EACd,kBAAkB,EAAE,aAAa;EACjC,kBAAkB,EAAE,aAAa;EACjCK,IAAI,EAAE,MAAM;EACZ,iBAAiB,EAAE,aAAa;EAChC,aAAa,EAAE,aAAa;EAC5B,YAAY,EAAE,YAAY;EAC1B,cAAc,EAAE,cAAc;EAC9BC,GAAG,EAAE,KAAK;EACV,eAAe,EAAE,SAAS;EAC1B,aAAa,EAAE,aAAa;EAC5BC,GAAG,EAAE,QAAQ;EACb,gBAAgB,EAAE,gBAAgB;EAClCR,GAAG,EAAE,KAAK;EACV,kBAAkB,EAAE,kBAAkB;EACtC,cAAc,EAAE,cAAc;EAC9BS,QAAQ,EAAE;AACZ,CAAC;AAGD,MAAMC,mCAAmC,GAAG;EAC1C,eAAe,EAAE,oBAAoB;EACrC,eAAe,EAAE,oBAAoB;EACrCN,IAAI,EAAE,WAAW;EACjB,UAAU,EAAE,cAAc;EAC1B,YAAY,EAAE,gBAAgB;EAC9B,WAAW,EAAE,eAAe;EAC5B,QAAQ,EAAE,wBAAwB;EAClC,cAAc,EAAE,2BAA2B;EAC3C,aAAa,EAAE,0BAA0B;EACzC,QAAQ,EAAE,sBAAsB;EAChC,eAAe,EAAE,qBAAqB;EACtC,oBAAoB,EAAE,sBAAsB;EAC5C,gBAAgB,EAAE,sBAAsB;EACxC,SAAS,EAAE,gBAAgB;EAC3B,WAAW,EAAE,kBAAkB;EAC/B,SAAS,EAAE,gBAAgB;EAC3B,kBAAkB,EAAE,UAAU;EAC9BC,OAAO,EAAE,aAAa;EACtBJ,KAAK,EAAE,cAAc;EACrBK,IAAI,EAAE,MAAM;EACZ,iBAAiB,EAAE,YAAY;EAC/B,aAAa,EAAE,YAAY;EAC3B,YAAY,EAAE,WAAW;EACzBK,QAAQ,EAAE,UAAU;EACpB,kBAAkB,EAAE,YAAY;EAChC,kBAAkB,EAAE,YAAY;EAChC,cAAc,EAAE,aAAa;EAC7BJ,GAAG,EAAE,MAAM;EACX,eAAe,EAAE,aAAa;EAC9BK,YAAY,EAAE,kBAAkB;EAChC,oBAAoB,EAAE,UAAU;EAChC,aAAa,EAAE,YAAY;EAC3B,gBAAgB,EAAE,mBAAmB;EACrCZ,GAAG,EAAE,iBAAiB;EACtBE,GAAG,EAAE,KAAK;EACVO,QAAQ,EAAE;AACZ,CAAC;AAED,MAAMI,kBAGL,gBAAG5M,KAAK,CAAC6M,UAAU,CAAC,SAASC,SAASA,CACrC;EACEC,gBAAgB,GAAG,IAAI;EACvBpF,0BAA0B,GAAG,IAAI;EACjCqF,qBAAqB,GAAG,aAAa;EACrCC,YAAY;EACZC,eAAe;EACfC,QAAQ;EACR7F,QAAQ;EACR8F,YAAY;EACZC,aAAa;EACbC,SAAS;EACTC,oBAAoB;EACpBC,YAAY;EACZ,GAAGC;AACL,CAAC,EACD1H,YAAgD,EAChD;EACA,oBACE,IAAA9F,WAAA,CAAAwJ,GAAA,EAAC9F,iBAAiB;IAChBoJ,gBAAgB,EAAEA,gBAAiB;IACnCpF,0BAA0B,EAAEA,0BAA2B;IACvDqF,qBAAqB,EAAEA,qBAAsB;IAC7C1F,QAAQ,EAAE6F,QAAQ,KAAK1I,SAAS,GAAG,CAAC0I,QAAQ,GAAG7F,QAAS;IACxD+F,aAAa,EACXD,YAAY,GAAGjC,2BAA2B,CAACiC,YAAY,CAAC,GAAGC,aAC5D;IACDG,YAAY,EACVF,SAAS,GAAG3B,0BAA0B,CAAC2B,SAAS,CAAC,GAAGE,YACrD;IACDD,oBAAoB,EAClBD,SAAS,IAAI,IAAI,GAAGC,oBAAoB,GAAGD,SAAS,KAAK,MAC1D;IACDL,YAAY,EACVrL,iBAAQ,CAACC,EAAE,KAAK,SAAS,GAGrBqK,uCAAuC,CAACe,YAAY,CAAC,IACrDA,YAAY,GACZxI,SACL;IACDyI,eAAe,EACbA,eAAe,IAAI,IAAI,GACnBA,eAAe,GACftL,iBAAQ,CAACC,EAAE,KAAK,KAAK,IACnBoL,YAAY,IACZA,YAAY,IAAIR,mCAAmC,GAGnDA,mCAAmC,CAACQ,YAAY,CAAC,GACjDC,eACP;IAAA,GACGO,SAAS;IACb1H,YAAY,EAAEA;EAAa,CAC5B,CAAC;AAEN,CAAC,CAAC;AAEF6G,kBAAkB,CAACc,WAAW,GAAG,WAAW;AAG5Cd,kBAAkB,CAACe,KAAK,GAAG;EACzBzI,qBAAqB,EAAEH,uBAAc,CAACG,qBAAqB;EAE3D0I,qBAAqB,EAAE7I,uBAAc,CAAC6I,qBAAqB;EAC3DC,cAAc,EAAE9I,uBAAc,CAAC8I,cAAc;EAC7CC,aAAa,EAAE/I,uBAAc,CAAC+I;AAChC,CAAC;AAWD,MAAM5D,MAAM,GAAGF,mBAAU,CAAC+D,MAAM,CAAC;EAC/B5D,gBAAgB,EAAE;IAIhBX,UAAU,EAAE;EACd;AACF,CAAC,CAAC;AAEF,MAAML,mCAAmC,GAAG;EAC1C6E,IAAI,EAAE,MAAM;EACZC,GAAG,EAAE,KAAK;EACVC,MAAM,EAAE,QAAQ;EAChBC,MAAM,EAAE;AACV,CAAC;AAAC,IAAAC,QAAA,GAAAC,OAAA,CAAAjO,OAAA,GAGawM,kBAAkB","ignoreList":[]}
@@ -1,9 +0,0 @@
1
- import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
2
- import type { ViewProps } from 'react-native';
3
- import type { DirectEventHandler } from 'react-native/Libraries/Types/CodegenTypes';
4
-
5
- interface NativeProps extends ViewProps {
6
- onPaste?: DirectEventHandler<{}>;
7
- }
8
-
9
- export default codegenNativeComponent<NativeProps>('OneKeyTextInput');
@@ -1,11 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.EPasteEventPayloadItemType = void 0;
7
- let EPasteEventPayloadItemType = exports.EPasteEventPayloadItemType = /*#__PURE__*/function (EPasteEventPayloadItemType) {
8
- EPasteEventPayloadItemType["TextPlain"] = "text/plain";
9
- return EPasteEventPayloadItemType;
10
- }({});
11
- //# sourceMappingURL=enum.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["EPasteEventPayloadItemType","exports"],"sourceRoot":"../../src","sources":["enum.ts"],"mappings":";;;;;;IAAYA,0BAA0B,GAAAC,OAAA,CAAAD,0BAAA,0BAA1BA,0BAA0B;EAA1BA,0BAA0B;EAAA,OAA1BA,0BAA0B;AAAA","ignoreList":[]}
@@ -1,28 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- var _exportNames = {};
7
- exports.default = void 0;
8
- var _Input = _interopRequireDefault(require("./Input"));
9
- var _enum = require("./enum");
10
- Object.keys(_enum).forEach(function (key) {
11
- if (key === "default" || key === "__esModule") return;
12
- if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
13
- if (key in exports && exports[key] === _enum[key]) return;
14
- Object.defineProperty(exports, key, {
15
- enumerable: true,
16
- get: function () {
17
- return _enum[key];
18
- }
19
- });
20
- });
21
- function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
22
- // @ts-expect-error
23
-
24
- // export * from './TextInputViewNativeComponent';
25
-
26
- const TextInput = _Input.default;
27
- var _default = exports.default = TextInput;
28
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_Input","_interopRequireDefault","require","_enum","Object","keys","forEach","key","prototype","hasOwnProperty","call","_exportNames","exports","defineProperty","enumerable","get","e","__esModule","default","TextInput","TextInputView","_default"],"sourceRoot":"../../src","sources":["index.tsx"],"mappings":";;;;;;;AAEA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AAWA,IAAAC,KAAA,GAAAD,OAAA;AAAAE,MAAA,CAAAC,IAAA,CAAAF,KAAA,EAAAG,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAH,MAAA,CAAAI,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAC,YAAA,EAAAJ,GAAA;EAAA,IAAAA,GAAA,IAAAK,OAAA,IAAAA,OAAA,CAAAL,GAAA,MAAAJ,KAAA,CAAAI,GAAA;EAAAH,MAAA,CAAAS,cAAA,CAAAD,OAAA,EAAAL,GAAA;IAAAO,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAZ,KAAA,CAAAI,GAAA;IAAA;EAAA;AAAA;AAAuB,SAAAN,uBAAAe,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAZvB;;AAIA;;AAUA,MAAMG,SAAS,GAAGC,cAA+C;AAAC,IAAAC,QAAA,GAAAT,OAAA,CAAAM,OAAA,GACnDC,SAAS","ignoreList":[]}
@@ -1 +0,0 @@
1
- {"type":"commonjs"}
@@ -1,6 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- //# sourceMappingURL=type.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":[],"sourceRoot":"../../src","sources":["type.ts"],"mappings":"","ignoreList":[]}
@@ -1,8 +0,0 @@
1
- import type { ViewProps } from 'react-native';
2
- import type { DirectEventHandler } from 'react-native/Libraries/Types/CodegenTypes';
3
- interface NativeProps extends ViewProps {
4
- onPaste?: DirectEventHandler<{}>;
5
- }
6
- declare const _default: import("react-native/Libraries/Utilities/codegenNativeComponent").NativeComponentType<NativeProps>;
7
- export default _default;
8
- //# sourceMappingURL=TextInputViewNativeComponent.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"TextInputViewNativeComponent.d.ts","sourceRoot":"","sources":["../../../src/TextInputViewNativeComponent.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAC9C,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,2CAA2C,CAAC;AAEpF,UAAU,WAAY,SAAQ,SAAS;IACrC,OAAO,CAAC,EAAE,kBAAkB,CAAC,EAAE,CAAC,CAAC;CAClC;;AAED,wBAAsE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"enum.d.ts","sourceRoot":"","sources":["../../../src/enum.ts"],"names":[],"mappings":"AAAA,oBAAY,0BAA0B;IACpC,SAAS,eAAe;CACzB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAG3C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,QAAQ,CAAC;AAI9C,YAAY,EACV,sBAAsB,EACtB,kBAAkB,EAClB,iBAAiB,EACjB,eAAe,GAChB,MAAM,QAAQ,CAAC;AAChB,cAAc,QAAQ,CAAC;AAEvB,QAAA,MAAM,SAAS,EAAoB,aAAa,CAAC,eAAe,CAAC,CAAC;AAClE,eAAe,SAAS,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../../../src/type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AACnD,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,QAAQ,CAAC;AAEzD,MAAM,MAAM,sBAAsB,GAAG;IACnC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,0BAA0B,CAAC;CACnC,CAAC;AACF,MAAM,MAAM,kBAAkB,GAAG,sBAAsB,EAAE,CAAC;AAC1D,MAAM,MAAM,iBAAiB,GAAG;IAAE,WAAW,EAAE;QAAE,KAAK,CAAC,EAAE,kBAAkB,CAAA;KAAE,CAAA;CAAE,CAAC;AAEhF,MAAM,WAAW,eAAgB,SAAQ,cAAc;IACrD,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,iBAAiB,KAAK,IAAI,CAAC;CAC9C"}
@@ -1,9 +0,0 @@
1
- import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
2
- import type { ViewProps } from 'react-native';
3
- import type { DirectEventHandler } from 'react-native/Libraries/Types/CodegenTypes';
4
-
5
- interface NativeProps extends ViewProps {
6
- onPaste?: DirectEventHandler<{}>;
7
- }
8
-
9
- export default codegenNativeComponent<NativeProps>('OneKeyTextInput');