@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.
- package/android/generated/android/app/build/generated/source/codegen/java/com/facebook/react/viewmanagers/OneKeyTextInputManagerDelegate.java +3 -2
- package/android/generated/android/app/build/generated/source/codegen/java/com/facebook/react/viewmanagers/OneKeyTextInputManagerInterface.java +2 -1
- package/android/generated/android/app/build/generated/source/codegen/jni/CMakeLists.txt +4 -17
- package/ios/generated/build/generated/ios/RNTextInputViewSpec/RNTextInputViewSpec.h +3 -0
- package/lib/commonjs/AndroidTextInputNativeComponent.js +152 -0
- package/lib/commonjs/AndroidTextInputNativeComponent.js.map +1 -0
- package/lib/commonjs/Input.js +140 -273
- package/lib/commonjs/Input.js.map +1 -1
- package/lib/commonjs/TextInputViewNativeComponent.ts +9 -0
- package/lib/commonjs/index.js +4 -14
- package/lib/commonjs/index.js.map +1 -1
- package/lib/typescript/src/TextInputViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/enum.d.ts.map +1 -0
- package/lib/typescript/{commonjs/src → src}/index.d.ts +0 -1
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/lib/typescript/src/type.d.ts.map +1 -0
- package/package.json +8 -18
- package/src/AndroidTextInputNativeComponent.js +767 -0
- package/src/Input.js +418 -247
- package/src/index.tsx +1 -1
- package/ios/generated/build/generated/ios/FBReactNativeSpec/FBReactNativeSpec-generated.mm +0 -1881
- package/ios/generated/build/generated/ios/FBReactNativeSpec/FBReactNativeSpec.h +0 -2321
- package/ios/generated/build/generated/ios/FBReactNativeSpecJSI-generated.cpp +0 -2785
- package/ios/generated/build/generated/ios/FBReactNativeSpecJSI.h +0 -7511
- package/ios/generated/build/generated/ios/RCTModulesConformingToProtocolsProvider.h +0 -18
- package/ios/generated/build/generated/ios/RCTModulesConformingToProtocolsProvider.mm +0 -33
- package/lib/commonjs/TextInputViewNativeComponent.js +0 -10
- package/lib/commonjs/TextInputViewNativeComponent.js.map +0 -1
- package/lib/module/Input.js +0 -667
- package/lib/module/Input.js.map +0 -1
- package/lib/module/TextInputViewNativeComponent.js +0 -5
- package/lib/module/TextInputViewNativeComponent.js.map +0 -1
- package/lib/module/enum.js +0 -7
- package/lib/module/enum.js.map +0 -1
- package/lib/module/index.js +0 -9
- package/lib/module/index.js.map +0 -1
- package/lib/module/type.js +0 -4
- package/lib/module/type.js.map +0 -1
- package/lib/typescript/commonjs/src/TextInputViewNativeComponent.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/enum.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/type.d.ts.map +0 -1
- package/lib/typescript/module/package.json +0 -1
- package/lib/typescript/module/src/TextInputViewNativeComponent.d.ts +0 -8
- package/lib/typescript/module/src/TextInputViewNativeComponent.d.ts.map +0 -1
- package/lib/typescript/module/src/enum.d.ts +0 -4
- package/lib/typescript/module/src/enum.d.ts.map +0 -1
- package/lib/typescript/module/src/index.d.ts +0 -8
- package/lib/typescript/module/src/index.d.ts.map +0 -1
- package/lib/typescript/module/src/type.d.ts +0 -16
- package/lib/typescript/module/src/type.d.ts.map +0 -1
- /package/lib/{typescript/commonjs → commonjs}/package.json +0 -0
- /package/lib/typescript/{commonjs/src → src}/TextInputViewNativeComponent.d.ts +0 -0
- /package/lib/typescript/{commonjs/src → src}/enum.d.ts +0 -0
- /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,
|