@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
@@ -1,18 +0,0 @@
1
- /*
2
- * Copyright (c) Meta Platforms, Inc. and affiliates.
3
- *
4
- * This source code is licensed under the MIT license found in the
5
- * LICENSE file in the root directory of this source tree.
6
- */
7
-
8
- #import <Foundation/Foundation.h>
9
-
10
- @interface RCTModulesConformingToProtocolsProvider: NSObject
11
-
12
- +(NSArray<NSString *> *)imageURLLoaderClassNames;
13
-
14
- +(NSArray<NSString *> *)imageDataDecoderClassNames;
15
-
16
- +(NSArray<NSString *> *)URLRequestHandlerClassNames;
17
-
18
- @end
@@ -1,33 +0,0 @@
1
- /*
2
- * Copyright (c) Meta Platforms, Inc. and affiliates.
3
- *
4
- * This source code is licensed under the MIT license found in the
5
- * LICENSE file in the root directory of this source tree.
6
- */
7
-
8
- #import "RCTModulesConformingToProtocolsProvider.h"
9
-
10
- @implementation RCTModulesConformingToProtocolsProvider
11
-
12
- +(NSArray<NSString *> *)imageURLLoaderClassNames
13
- {
14
- return @[
15
-
16
- ];
17
- }
18
-
19
- +(NSArray<NSString *> *)imageDataDecoderClassNames
20
- {
21
- return @[
22
-
23
- ];
24
- }
25
-
26
- +(NSArray<NSString *> *)URLRequestHandlerClassNames
27
- {
28
- return @[
29
-
30
- ];
31
- }
32
-
33
- @end
@@ -1,10 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- var _codegenNativeComponent = _interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));
8
- function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
9
- var _default = exports.default = (0, _codegenNativeComponent.default)('OneKeyTextInput');
10
- //# sourceMappingURL=TextInputViewNativeComponent.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_codegenNativeComponent","_interopRequireDefault","require","e","__esModule","default","_default","exports","codegenNativeComponent"],"sourceRoot":"../../src","sources":["TextInputViewNativeComponent.ts"],"mappings":";;;;;;AAAA,IAAAA,uBAAA,GAAAC,sBAAA,CAAAC,OAAA;AAA6F,SAAAD,uBAAAE,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAAA,IAAAG,QAAA,GAAAC,OAAA,CAAAF,OAAA,GAQ9E,IAAAG,+BAAsB,EAAc,iBAAiB,CAAC","ignoreList":[]}