@ukeyfe/react-native-text-input 0.2.9

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 (75) hide show
  1. package/LICENSE +20 -0
  2. package/README.md +33 -0
  3. package/android/build.gradle +126 -0
  4. package/android/generated/android/app/build/generated/source/codegen/java/com/facebook/react/viewmanagers/UKeyTextInputManagerDelegate.java +26 -0
  5. package/android/generated/android/app/build/generated/source/codegen/java/com/facebook/react/viewmanagers/UKeyTextInputManagerInterface.java +17 -0
  6. package/android/generated/android/app/build/generated/source/codegen/jni/CMakeLists.txt +36 -0
  7. package/android/generated/android/app/build/generated/source/codegen/jni/RNTextInputViewSpec-generated.cpp +22 -0
  8. package/android/generated/android/app/build/generated/source/codegen/jni/RNTextInputViewSpec.h +24 -0
  9. package/android/generated/android/app/build/generated/source/codegen/jni/react/renderer/components/RNTextInputViewSpec/ComponentDescriptors.cpp +22 -0
  10. package/android/generated/android/app/build/generated/source/codegen/jni/react/renderer/components/RNTextInputViewSpec/ComponentDescriptors.h +24 -0
  11. package/android/generated/android/app/build/generated/source/codegen/jni/react/renderer/components/RNTextInputViewSpec/EventEmitters.cpp +24 -0
  12. package/android/generated/android/app/build/generated/source/codegen/jni/react/renderer/components/RNTextInputViewSpec/EventEmitters.h +25 -0
  13. package/android/generated/android/app/build/generated/source/codegen/jni/react/renderer/components/RNTextInputViewSpec/Props.cpp +25 -0
  14. package/android/generated/android/app/build/generated/source/codegen/jni/react/renderer/components/RNTextInputViewSpec/Props.h +27 -0
  15. package/android/generated/android/app/build/generated/source/codegen/jni/react/renderer/components/RNTextInputViewSpec/RNTextInputViewSpecJSI-generated.cpp +17 -0
  16. package/android/generated/android/app/build/generated/source/codegen/jni/react/renderer/components/RNTextInputViewSpec/RNTextInputViewSpecJSI.h +19 -0
  17. package/android/generated/android/app/build/generated/source/codegen/jni/react/renderer/components/RNTextInputViewSpec/ShadowNodes.cpp +17 -0
  18. package/android/generated/android/app/build/generated/source/codegen/jni/react/renderer/components/RNTextInputViewSpec/ShadowNodes.h +32 -0
  19. package/android/generated/android/app/build/generated/source/codegen/jni/react/renderer/components/RNTextInputViewSpec/States.cpp +16 -0
  20. package/android/generated/android/app/build/generated/source/codegen/jni/react/renderer/components/RNTextInputViewSpec/States.h +29 -0
  21. package/android/gradle.properties +5 -0
  22. package/android/src/main/AndroidManifest.xml +3 -0
  23. package/android/src/main/AndroidManifestNew.xml +2 -0
  24. package/android/src/main/java/com/textinput/PasteWatcher.kt +10 -0
  25. package/android/src/main/java/com/textinput/TextInputPackage.kt +19 -0
  26. package/android/src/main/java/com/textinput/TextInputPasteEvent.kt +48 -0
  27. package/android/src/main/java/com/textinput/TextInputView.kt +80 -0
  28. package/android/src/main/java/com/textinput/TextInputViewManager.kt +68 -0
  29. package/android/src/newarch/TextInputViewManagerSpec.kt +21 -0
  30. package/android/src/oldarch/TextInputViewManagerSpec.kt +9 -0
  31. package/ios/TextInputViewManager.mm +23 -0
  32. package/ios/Utils.h +8 -0
  33. package/ios/Utils.m +26 -0
  34. package/ios/generated/build/generated/ios/RNTextInputViewSpec/RNTextInputViewSpec-generated.mm +16 -0
  35. package/ios/generated/build/generated/ios/RNTextInputViewSpec/RNTextInputViewSpec.h +38 -0
  36. package/ios/generated/build/generated/ios/RNTextInputViewSpecJSI-generated.cpp +17 -0
  37. package/ios/generated/build/generated/ios/RNTextInputViewSpecJSI.h +19 -0
  38. package/ios/generated/build/generated/ios/react/renderer/components/RNTextInputViewSpec/ComponentDescriptors.cpp +22 -0
  39. package/ios/generated/build/generated/ios/react/renderer/components/RNTextInputViewSpec/ComponentDescriptors.h +24 -0
  40. package/ios/generated/build/generated/ios/react/renderer/components/RNTextInputViewSpec/EventEmitters.cpp +24 -0
  41. package/ios/generated/build/generated/ios/react/renderer/components/RNTextInputViewSpec/EventEmitters.h +25 -0
  42. package/ios/generated/build/generated/ios/react/renderer/components/RNTextInputViewSpec/Props.cpp +25 -0
  43. package/ios/generated/build/generated/ios/react/renderer/components/RNTextInputViewSpec/Props.h +27 -0
  44. package/ios/generated/build/generated/ios/react/renderer/components/RNTextInputViewSpec/RCTComponentViewHelpers.h +20 -0
  45. package/ios/generated/build/generated/ios/react/renderer/components/RNTextInputViewSpec/ShadowNodes.cpp +17 -0
  46. package/ios/generated/build/generated/ios/react/renderer/components/RNTextInputViewSpec/ShadowNodes.h +32 -0
  47. package/ios/generated/build/generated/ios/react/renderer/components/RNTextInputViewSpec/States.cpp +16 -0
  48. package/ios/generated/build/generated/ios/react/renderer/components/RNTextInputViewSpec/States.h +29 -0
  49. package/lib/commonjs/AndroidTextInputNativeComponent.js +152 -0
  50. package/lib/commonjs/AndroidTextInputNativeComponent.js.map +1 -0
  51. package/lib/commonjs/Input.js +537 -0
  52. package/lib/commonjs/Input.js.map +1 -0
  53. package/lib/commonjs/TextInputViewNativeComponent.ts +9 -0
  54. package/lib/commonjs/enum.js +11 -0
  55. package/lib/commonjs/enum.js.map +1 -0
  56. package/lib/commonjs/index.js +28 -0
  57. package/lib/commonjs/index.js.map +1 -0
  58. package/lib/commonjs/package.json +1 -0
  59. package/lib/commonjs/type.js +6 -0
  60. package/lib/commonjs/type.js.map +1 -0
  61. package/lib/typescript/src/TextInputViewNativeComponent.d.ts +8 -0
  62. package/lib/typescript/src/TextInputViewNativeComponent.d.ts.map +1 -0
  63. package/lib/typescript/src/enum.d.ts +4 -0
  64. package/lib/typescript/src/enum.d.ts.map +1 -0
  65. package/lib/typescript/src/index.d.ts +7 -0
  66. package/lib/typescript/src/index.d.ts.map +1 -0
  67. package/lib/typescript/src/type.d.ts +16 -0
  68. package/lib/typescript/src/type.d.ts.map +1 -0
  69. package/package.json +178 -0
  70. package/src/AndroidTextInputNativeComponent.js +767 -0
  71. package/src/Input.js +1910 -0
  72. package/src/TextInputViewNativeComponent.ts +9 -0
  73. package/src/enum.ts +3 -0
  74. package/src/index.tsx +17 -0
  75. package/src/type.ts +13 -0
@@ -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: 'UKeyTextInput',
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('UKeyTextInput', () => __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":[]}