@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
package/src/index.tsx CHANGED
@@ -3,7 +3,7 @@ import type { ComponentType } from 'react';
3
3
  import TextInputView from './Input';
4
4
  import type { ITextInputProps } from './type';
5
5
 
6
- export * from './TextInputViewNativeComponent';
6
+ // export * from './TextInputViewNativeComponent';
7
7
 
8
8
  export type {
9
9
  IPasteEventPayloadItem,