@onekeyfe/react-native-text-input 0.2.5 → 0.2.8

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 (55) hide show
  1. package/android/generated/android/app/build/generated/source/codegen/java/com/facebook/react/viewmanagers/OneKeyTextInputManagerDelegate.java +3 -2
  2. package/android/generated/android/app/build/generated/source/codegen/java/com/facebook/react/viewmanagers/OneKeyTextInputManagerInterface.java +2 -1
  3. package/android/generated/android/app/build/generated/source/codegen/jni/CMakeLists.txt +4 -17
  4. package/ios/generated/build/generated/ios/RNTextInputViewSpec/RNTextInputViewSpec.h +3 -0
  5. package/lib/commonjs/AndroidTextInputNativeComponent.js +152 -0
  6. package/lib/commonjs/AndroidTextInputNativeComponent.js.map +1 -0
  7. package/lib/commonjs/Input.js +140 -273
  8. package/lib/commonjs/Input.js.map +1 -1
  9. package/lib/commonjs/TextInputViewNativeComponent.ts +9 -0
  10. package/lib/commonjs/index.js +4 -14
  11. package/lib/commonjs/index.js.map +1 -1
  12. package/lib/typescript/src/TextInputViewNativeComponent.d.ts.map +1 -0
  13. package/lib/typescript/src/enum.d.ts.map +1 -0
  14. package/lib/typescript/{commonjs/src → src}/index.d.ts +0 -1
  15. package/lib/typescript/src/index.d.ts.map +1 -0
  16. package/lib/typescript/src/type.d.ts.map +1 -0
  17. package/package.json +8 -18
  18. package/src/AndroidTextInputNativeComponent.js +767 -0
  19. package/src/Input.js +418 -247
  20. package/src/index.tsx +1 -1
  21. package/ios/generated/build/generated/ios/FBReactNativeSpec/FBReactNativeSpec-generated.mm +0 -1881
  22. package/ios/generated/build/generated/ios/FBReactNativeSpec/FBReactNativeSpec.h +0 -2321
  23. package/ios/generated/build/generated/ios/FBReactNativeSpecJSI-generated.cpp +0 -2785
  24. package/ios/generated/build/generated/ios/FBReactNativeSpecJSI.h +0 -7511
  25. package/ios/generated/build/generated/ios/RCTModulesConformingToProtocolsProvider.h +0 -18
  26. package/ios/generated/build/generated/ios/RCTModulesConformingToProtocolsProvider.mm +0 -33
  27. package/lib/commonjs/TextInputViewNativeComponent.js +0 -10
  28. package/lib/commonjs/TextInputViewNativeComponent.js.map +0 -1
  29. package/lib/module/Input.js +0 -667
  30. package/lib/module/Input.js.map +0 -1
  31. package/lib/module/TextInputViewNativeComponent.js +0 -5
  32. package/lib/module/TextInputViewNativeComponent.js.map +0 -1
  33. package/lib/module/enum.js +0 -7
  34. package/lib/module/enum.js.map +0 -1
  35. package/lib/module/index.js +0 -9
  36. package/lib/module/index.js.map +0 -1
  37. package/lib/module/type.js +0 -4
  38. package/lib/module/type.js.map +0 -1
  39. package/lib/typescript/commonjs/src/TextInputViewNativeComponent.d.ts.map +0 -1
  40. package/lib/typescript/commonjs/src/enum.d.ts.map +0 -1
  41. package/lib/typescript/commonjs/src/index.d.ts.map +0 -1
  42. package/lib/typescript/commonjs/src/type.d.ts.map +0 -1
  43. package/lib/typescript/module/package.json +0 -1
  44. package/lib/typescript/module/src/TextInputViewNativeComponent.d.ts +0 -8
  45. package/lib/typescript/module/src/TextInputViewNativeComponent.d.ts.map +0 -1
  46. package/lib/typescript/module/src/enum.d.ts +0 -4
  47. package/lib/typescript/module/src/enum.d.ts.map +0 -1
  48. package/lib/typescript/module/src/index.d.ts +0 -8
  49. package/lib/typescript/module/src/index.d.ts.map +0 -1
  50. package/lib/typescript/module/src/type.d.ts +0 -16
  51. package/lib/typescript/module/src/type.d.ts.map +0 -1
  52. /package/lib/{typescript/commonjs → commonjs}/package.json +0 -0
  53. /package/lib/typescript/{commonjs/src → src}/TextInputViewNativeComponent.d.ts +0 -0
  54. /package/lib/typescript/{commonjs/src → src}/enum.d.ts +0 -0
  55. /package/lib/typescript/{commonjs/src → src}/type.d.ts +0 -0
@@ -11,10 +11,11 @@ package com.facebook.react.viewmanagers;
11
11
 
12
12
  import android.view.View;
13
13
  import androidx.annotation.Nullable;
14
+ import com.facebook.react.uimanager.BaseViewManager;
14
15
  import com.facebook.react.uimanager.BaseViewManagerDelegate;
15
- import com.facebook.react.uimanager.BaseViewManagerInterface;
16
+ import com.facebook.react.uimanager.LayoutShadowNode;
16
17
 
17
- public class OneKeyTextInputManagerDelegate<T extends View, U extends BaseViewManagerInterface<T> & OneKeyTextInputManagerInterface<T>> extends BaseViewManagerDelegate<T, U> {
18
+ public class OneKeyTextInputManagerDelegate<T extends View, U extends BaseViewManager<T, ? extends LayoutShadowNode> & OneKeyTextInputManagerInterface<T>> extends BaseViewManagerDelegate<T, U> {
18
19
  public OneKeyTextInputManagerDelegate(U viewManager) {
19
20
  super(viewManager);
20
21
  }
@@ -10,7 +10,8 @@
10
10
  package com.facebook.react.viewmanagers;
11
11
 
12
12
  import android.view.View;
13
+ import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface;
13
14
 
14
- public interface OneKeyTextInputManagerInterface<T extends View> {
15
+ public interface OneKeyTextInputManagerInterface<T extends View> extends ViewManagerWithGeneratedInterface {
15
16
  // No props
16
17
  }
@@ -10,7 +10,7 @@ file(GLOB react_codegen_SRCS CONFIGURE_DEPENDS *.cpp react/renderer/components/R
10
10
 
11
11
  add_library(
12
12
  react_codegen_RNTextInputViewSpec
13
- SHARED
13
+ OBJECT
14
14
  ${react_codegen_SRCS}
15
15
  )
16
16
 
@@ -19,23 +19,10 @@ target_include_directories(react_codegen_RNTextInputViewSpec PUBLIC . react/rend
19
19
  target_link_libraries(
20
20
  react_codegen_RNTextInputViewSpec
21
21
  fbjni
22
- folly_runtime
23
- glog
24
22
  jsi
25
- react_codegen_rncore
26
- react_debug
27
- react_nativemodule_core
28
- react_render_componentregistry
29
- react_render_core
30
- react_render_debug
31
- react_render_graphics
32
- react_render_imagemanager
33
- react_render_mapbuffer
34
- react_utils
35
- rrc_image
36
- rrc_view
37
- turbomodulejsijni
38
- yoga
23
+ # We need to link different libraries based on whether we are building rncore or not, that's necessary
24
+ # because we want to break a circular dependency between react_codegen_rncore and reactnative
25
+ reactnative
39
26
  )
40
27
 
41
28
  target_compile_options(
@@ -31,5 +31,8 @@
31
31
  #import <vector>
32
32
 
33
33
 
34
+ NS_ASSUME_NONNULL_BEGIN
34
35
 
36
+
37
+ NS_ASSUME_NONNULL_END
35
38
  #endif // RNTextInputViewSpec_H
@@ -0,0 +1,152 @@
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
@@ -0,0 +1 @@
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":[]}