@tbvjaos510/react-native-paste-input 0.9.2 → 0.9.5
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/build.gradle +5 -27
- package/android/src/main/java/com/mattermost/pasteinputtext/PasteInputActionCallback.kt +10 -9
- package/android/src/main/java/com/mattermost/pasteinputtext/PasteInputEditText.kt +1 -2
- package/android/src/main/java/com/mattermost/pasteinputtext/PasteInputListener.kt +91 -44
- package/android/src/main/java/com/mattermost/pasteinputtext/PasteTextInputManager.kt +33 -0
- package/ios/PasteTextInput.mm +11 -3
- package/ios/PasteTextInputManager.mm +20 -95
- package/lib/commonjs/PasteTextInputNativeComponent.js +33 -0
- package/lib/commonjs/PasteTextInputNativeComponent.js.map +1 -0
- package/lib/module/PasteTextInputNativeComponent.js +31 -0
- package/lib/module/PasteTextInputNativeComponent.js.map +1 -0
- package/lib/typescript/PasteTextInput.d.ts.map +1 -0
- package/lib/typescript/{src/PasteTextInputNativeComponent.d.ts → PasteTextInputNativeComponent.d.ts} +2 -1
- package/lib/typescript/PasteTextInputNativeComponent.d.ts.map +1 -0
- package/lib/typescript/index.d.ts.map +1 -0
- package/lib/typescript/types.d.ts.map +1 -0
- package/package.json +4 -16
- package/react-native-paste-input.podspec +12 -4
- package/react-native.config.js +5 -1
- package/src/PasteTextInputNativeComponent.ts +34 -6
- package/android/generated/java/com/facebook/react/viewmanagers/PasteTextInputManagerDelegate.java +0 -236
- package/android/generated/java/com/facebook/react/viewmanagers/PasteTextInputManagerInterface.java +0 -84
- package/android/generated/jni/CMakeLists.txt +0 -36
- package/android/generated/jni/PasteTextInputSpecs-generated.cpp +0 -27
- package/android/generated/jni/PasteTextInputSpecs.h +0 -28
- package/android/generated/jni/react/renderer/components/PasteTextInputSpecs/ComponentDescriptors.cpp +0 -22
- package/android/generated/jni/react/renderer/components/PasteTextInputSpecs/ComponentDescriptors.h +0 -166
- package/android/generated/jni/react/renderer/components/PasteTextInputSpecs/EventEmitters.cpp +0 -183
- package/android/generated/jni/react/renderer/components/PasteTextInputSpecs/EventEmitters.h +0 -148
- package/android/generated/jni/react/renderer/components/PasteTextInputSpecs/PasteTextInputSpecsJSI-generated.cpp +0 -17
- package/android/generated/jni/react/renderer/components/PasteTextInputSpecs/PasteTextInputSpecsJSI.h +0 -19
- package/android/generated/jni/react/renderer/components/PasteTextInputSpecs/Props.cpp +0 -640
- package/android/generated/jni/react/renderer/components/PasteTextInputSpecs/Props.h +0 -144
- package/android/generated/jni/react/renderer/components/PasteTextInputSpecs/ShadowNodes.cpp +0 -247
- package/android/generated/jni/react/renderer/components/PasteTextInputSpecs/ShadowNodes.h +0 -95
- package/android/generated/jni/react/renderer/components/PasteTextInputSpecs/States.cpp +0 -14
- package/android/generated/jni/react/renderer/components/PasteTextInputSpecs/States.h +0 -19
- package/lib/commonjs/PasteTextInputNativeComponent.ts +0 -277
- package/lib/module/PasteTextInputNativeComponent.ts +0 -277
- package/lib/typescript/src/PasteTextInput.d.ts.map +0 -1
- package/lib/typescript/src/PasteTextInputNativeComponent.d.ts.map +0 -1
- package/lib/typescript/src/index.d.ts.map +0 -1
- package/lib/typescript/src/types.d.ts.map +0 -1
- /package/lib/typescript/{src/PasteTextInput.d.ts → PasteTextInput.d.ts} +0 -0
- /package/lib/typescript/{src/index.d.ts → index.d.ts} +0 -0
- /package/lib/typescript/{src/types.d.ts → types.d.ts} +0 -0
|
@@ -1,277 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
type ColorValue,
|
|
3
|
-
type HostComponent,
|
|
4
|
-
type ViewProps,
|
|
5
|
-
} from 'react-native';
|
|
6
|
-
import type {
|
|
7
|
-
BubblingEventHandler,
|
|
8
|
-
DirectEventHandler,
|
|
9
|
-
Double,
|
|
10
|
-
Float,
|
|
11
|
-
Int32,
|
|
12
|
-
WithDefault,
|
|
13
|
-
} from 'react-native/Libraries/Types/CodegenTypes';
|
|
14
|
-
import { codegenNativeComponent } from 'react-native';
|
|
15
|
-
import { codegenNativeCommands } from 'react-native';
|
|
16
|
-
|
|
17
|
-
export interface PasteTextInputPasteEventData {
|
|
18
|
-
data: Readonly<
|
|
19
|
-
{
|
|
20
|
-
fileName: string;
|
|
21
|
-
fileSize: Int32;
|
|
22
|
-
type: string;
|
|
23
|
-
uri: string;
|
|
24
|
-
}[]
|
|
25
|
-
>;
|
|
26
|
-
error?: Readonly<{
|
|
27
|
-
message: string;
|
|
28
|
-
}>;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
export type TargetedEvent = {
|
|
32
|
-
target: Int32;
|
|
33
|
-
};
|
|
34
|
-
|
|
35
|
-
export interface PasteTextInputContentSizeChangeEventData
|
|
36
|
-
extends TargetedEvent {
|
|
37
|
-
contentSize: {
|
|
38
|
-
width: Int32;
|
|
39
|
-
height: Int32;
|
|
40
|
-
};
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
export interface PasteTextInputSelectionChangeEventData extends TargetedEvent {
|
|
44
|
-
selection: Readonly<{
|
|
45
|
-
start: Int32;
|
|
46
|
-
end: Int32;
|
|
47
|
-
}>;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
export interface PasteTextInputScrollEventData extends TargetedEvent {
|
|
51
|
-
contentInset: Readonly<{
|
|
52
|
-
top: Double;
|
|
53
|
-
bottom: Double;
|
|
54
|
-
left: Double;
|
|
55
|
-
right: Double;
|
|
56
|
-
}>;
|
|
57
|
-
contentOffset: Readonly<{ x: Double; y: Double }>;
|
|
58
|
-
contentSize: Readonly<{
|
|
59
|
-
width: Double;
|
|
60
|
-
height: Double;
|
|
61
|
-
}>;
|
|
62
|
-
layoutMeasurement: Readonly<{
|
|
63
|
-
width: Double;
|
|
64
|
-
height: Double;
|
|
65
|
-
}>;
|
|
66
|
-
responderIgnoreScroll: boolean;
|
|
67
|
-
velocity: Readonly<{ x: Double; y: Double }>;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
export interface PasteTextInputChangeEventData extends TargetedEvent {
|
|
71
|
-
eventCount: Int32;
|
|
72
|
-
text: string;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
export interface PasteTextInputTextInputEventData extends TargetedEvent {
|
|
76
|
-
text: string;
|
|
77
|
-
previousText: string;
|
|
78
|
-
range: Readonly<{ start: Int32; end: Int32 }>;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
export interface PasteTextInputEditEventData extends TargetedEvent {
|
|
82
|
-
text: string;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
export interface PasteTextInputKeyEventData extends TargetedEvent {
|
|
86
|
-
key: string;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
type KeyboardType =
|
|
90
|
-
| 'default'
|
|
91
|
-
| 'email-address'
|
|
92
|
-
| 'numeric'
|
|
93
|
-
| 'phone-pad'
|
|
94
|
-
| 'number-pad'
|
|
95
|
-
| 'decimal-pad'
|
|
96
|
-
| 'url'
|
|
97
|
-
// iOS-only
|
|
98
|
-
| 'ascii-capable'
|
|
99
|
-
| 'numbers-and-punctuation'
|
|
100
|
-
| 'name-phone-pad'
|
|
101
|
-
| 'twitter'
|
|
102
|
-
| 'web-search'
|
|
103
|
-
// Android-only
|
|
104
|
-
| 'visible-password';
|
|
105
|
-
|
|
106
|
-
export type ReturnKeyType =
|
|
107
|
-
// Cross Platform
|
|
108
|
-
| 'done'
|
|
109
|
-
| 'go'
|
|
110
|
-
| 'next'
|
|
111
|
-
| 'search'
|
|
112
|
-
| 'send'
|
|
113
|
-
// Android-only
|
|
114
|
-
| 'none'
|
|
115
|
-
| 'previous'
|
|
116
|
-
// iOS-only
|
|
117
|
-
| 'default'
|
|
118
|
-
| 'emergency-call'
|
|
119
|
-
| 'google'
|
|
120
|
-
| 'join'
|
|
121
|
-
| 'route'
|
|
122
|
-
| 'yahoo';
|
|
123
|
-
|
|
124
|
-
export type Autocomplete =
|
|
125
|
-
| 'birthdate-day'
|
|
126
|
-
| 'birthdate-full'
|
|
127
|
-
| 'birthdate-month'
|
|
128
|
-
| 'birthdate-year'
|
|
129
|
-
| 'cc-csc'
|
|
130
|
-
| 'cc-exp'
|
|
131
|
-
| 'cc-exp-day'
|
|
132
|
-
| 'cc-exp-month'
|
|
133
|
-
| 'cc-exp-year'
|
|
134
|
-
| 'cc-number'
|
|
135
|
-
| 'email'
|
|
136
|
-
| 'gender'
|
|
137
|
-
| 'name'
|
|
138
|
-
| 'name-family'
|
|
139
|
-
| 'name-given'
|
|
140
|
-
| 'name-middle'
|
|
141
|
-
| 'name-middle-initial'
|
|
142
|
-
| 'name-prefix'
|
|
143
|
-
| 'name-suffix'
|
|
144
|
-
| 'password'
|
|
145
|
-
| 'password-new'
|
|
146
|
-
| 'postal-address'
|
|
147
|
-
| 'postal-address-country'
|
|
148
|
-
| 'postal-address-extended'
|
|
149
|
-
| 'postal-address-extended-postal-code'
|
|
150
|
-
| 'postal-address-locality'
|
|
151
|
-
| 'postal-address-region'
|
|
152
|
-
| 'postal-code'
|
|
153
|
-
| 'street-address'
|
|
154
|
-
| 'sms-otp'
|
|
155
|
-
| 'tel'
|
|
156
|
-
| 'tel-country-code'
|
|
157
|
-
| 'tel-national'
|
|
158
|
-
| 'tel-device'
|
|
159
|
-
| 'username'
|
|
160
|
-
| 'username-new'
|
|
161
|
-
| 'off';
|
|
162
|
-
|
|
163
|
-
type SubmitBehavior = 'submit' | 'blurAndSubmit' | 'newline';
|
|
164
|
-
|
|
165
|
-
export interface NativeProps extends ViewProps {
|
|
166
|
-
allowFontScaling?: boolean;
|
|
167
|
-
autoCapitalize?: WithDefault<
|
|
168
|
-
'none' | 'sentences' | 'words' | 'characters',
|
|
169
|
-
'none'
|
|
170
|
-
>;
|
|
171
|
-
autoComplete?: WithDefault<Autocomplete, 'off'>;
|
|
172
|
-
autoCorrect?: boolean;
|
|
173
|
-
autoFocus?: boolean;
|
|
174
|
-
blurOnSubmit?: boolean;
|
|
175
|
-
caretHidden?: boolean;
|
|
176
|
-
clearButtonMode?: string;
|
|
177
|
-
clearTextOnFocus?: boolean;
|
|
178
|
-
contextMenuHidden?: boolean;
|
|
179
|
-
defaultValue?: string;
|
|
180
|
-
disableCopyPaste?: boolean;
|
|
181
|
-
disableFullscreenUI?: boolean;
|
|
182
|
-
editable?: boolean;
|
|
183
|
-
enablesReturnKeyAutomatically?: boolean;
|
|
184
|
-
importantForAutofill?: string;
|
|
185
|
-
inlineImageLeft?: string;
|
|
186
|
-
inlineImagePadding?: Int32;
|
|
187
|
-
inputAccessoryViewID?: string;
|
|
188
|
-
keyboardAppearance?: string;
|
|
189
|
-
keyboardType?: WithDefault<KeyboardType, 'default'>;
|
|
190
|
-
maxFontSizeMultiplier?: Float;
|
|
191
|
-
maxLength?: Int32;
|
|
192
|
-
mostRecentEventCount?: Int32;
|
|
193
|
-
multiline?: boolean;
|
|
194
|
-
numberOfLines?: Int32;
|
|
195
|
-
passwordRules?: string;
|
|
196
|
-
placeholder?: string;
|
|
197
|
-
placeholderTextColor?: ColorValue;
|
|
198
|
-
returnKeyLabel?: string;
|
|
199
|
-
returnKeyType?: WithDefault<ReturnKeyType, 'done'>;
|
|
200
|
-
scrollEnabled?: boolean;
|
|
201
|
-
secureTextEntry?: boolean;
|
|
202
|
-
selection?: Readonly<{ start: Int32; end?: Int32 }>;
|
|
203
|
-
selectionColor?: ColorValue;
|
|
204
|
-
selectionHandleColor?: ColorValue;
|
|
205
|
-
selectTextOnFocus?: boolean;
|
|
206
|
-
showSoftInputOnFocus?: boolean;
|
|
207
|
-
smartInsertDelete?: boolean;
|
|
208
|
-
smartPunctuation?: string;
|
|
209
|
-
spellCheck?: boolean;
|
|
210
|
-
submitBehavior?: WithDefault<SubmitBehavior, 'submit'>;
|
|
211
|
-
|
|
212
|
-
text?: string;
|
|
213
|
-
textBreakStrategy?: WithDefault<
|
|
214
|
-
'simple' | 'highQuality' | 'balanced',
|
|
215
|
-
'simple'
|
|
216
|
-
>;
|
|
217
|
-
textContentType?: string;
|
|
218
|
-
underlineColorAndroid?: ColorValue;
|
|
219
|
-
value?: string;
|
|
220
|
-
|
|
221
|
-
onBlur?: BubblingEventHandler<TargetedEvent>;
|
|
222
|
-
onChange?: BubblingEventHandler<PasteTextInputChangeEventData>;
|
|
223
|
-
onChangeText?: BubblingEventHandler<PasteTextInputChangeEventData>;
|
|
224
|
-
onEndEditing?: BubblingEventHandler<PasteTextInputEditEventData>;
|
|
225
|
-
onFocus?: BubblingEventHandler<TargetedEvent>;
|
|
226
|
-
onKeyPress?: BubblingEventHandler<PasteTextInputKeyEventData>;
|
|
227
|
-
onPaste?: BubblingEventHandler<PasteTextInputPasteEventData>;
|
|
228
|
-
onSubmitEdition?: BubblingEventHandler<PasteTextInputEditEventData>;
|
|
229
|
-
|
|
230
|
-
onContentSizeChange?: DirectEventHandler<PasteTextInputContentSizeChangeEventData>;
|
|
231
|
-
onScroll?: DirectEventHandler<PasteTextInputScrollEventData>;
|
|
232
|
-
onSelectionChange?: DirectEventHandler<PasteTextInputSelectionChangeEventData>;
|
|
233
|
-
|
|
234
|
-
textShadowColor?: ColorValue;
|
|
235
|
-
textShadowRadius?: Float;
|
|
236
|
-
textDecorationLine?: string;
|
|
237
|
-
fontStyle?: string;
|
|
238
|
-
textShadowOffset?: Readonly<{ width?: Double; height?: Double }>;
|
|
239
|
-
lineHeight?: Float;
|
|
240
|
-
textTransform?: string;
|
|
241
|
-
color?: Int32;
|
|
242
|
-
letterSpacing?: Float;
|
|
243
|
-
fontSize?: Float;
|
|
244
|
-
textAlign?: string;
|
|
245
|
-
includeFontPadding?: boolean;
|
|
246
|
-
fontWeight?: string;
|
|
247
|
-
fontFamily?: string;
|
|
248
|
-
|
|
249
|
-
textAlignVertical?: string;
|
|
250
|
-
cursorColor?: ColorValue;
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
type PasteTextInputNativeComponentType = HostComponent<NativeProps>;
|
|
254
|
-
|
|
255
|
-
interface NativeCommands {
|
|
256
|
-
readonly focus: (
|
|
257
|
-
viewRef: React.ElementRef<PasteTextInputNativeComponentType>
|
|
258
|
-
) => void;
|
|
259
|
-
readonly blur: (
|
|
260
|
-
viewRef: React.ElementRef<PasteTextInputNativeComponentType>
|
|
261
|
-
) => void;
|
|
262
|
-
readonly setTextAndSelection: (
|
|
263
|
-
viewRef: React.ElementRef<PasteTextInputNativeComponentType>,
|
|
264
|
-
mostRecentEventCount: Int32,
|
|
265
|
-
value: string | null | undefined, // in theory this is nullable
|
|
266
|
-
start: Int32,
|
|
267
|
-
end: Int32
|
|
268
|
-
) => void;
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
export const Commands: NativeCommands = codegenNativeCommands<NativeCommands>({
|
|
272
|
-
supportedCommands: ['focus', 'blur', 'setTextAndSelection'],
|
|
273
|
-
});
|
|
274
|
-
|
|
275
|
-
export default codegenNativeComponent<NativeProps>(
|
|
276
|
-
'PasteTextInput'
|
|
277
|
-
) as HostComponent<NativeProps>;
|
|
@@ -1,277 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
type ColorValue,
|
|
3
|
-
type HostComponent,
|
|
4
|
-
type ViewProps,
|
|
5
|
-
} from 'react-native';
|
|
6
|
-
import type {
|
|
7
|
-
BubblingEventHandler,
|
|
8
|
-
DirectEventHandler,
|
|
9
|
-
Double,
|
|
10
|
-
Float,
|
|
11
|
-
Int32,
|
|
12
|
-
WithDefault,
|
|
13
|
-
} from 'react-native/Libraries/Types/CodegenTypes';
|
|
14
|
-
import { codegenNativeComponent } from 'react-native';
|
|
15
|
-
import { codegenNativeCommands } from 'react-native';
|
|
16
|
-
|
|
17
|
-
export interface PasteTextInputPasteEventData {
|
|
18
|
-
data: Readonly<
|
|
19
|
-
{
|
|
20
|
-
fileName: string;
|
|
21
|
-
fileSize: Int32;
|
|
22
|
-
type: string;
|
|
23
|
-
uri: string;
|
|
24
|
-
}[]
|
|
25
|
-
>;
|
|
26
|
-
error?: Readonly<{
|
|
27
|
-
message: string;
|
|
28
|
-
}>;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
export type TargetedEvent = {
|
|
32
|
-
target: Int32;
|
|
33
|
-
};
|
|
34
|
-
|
|
35
|
-
export interface PasteTextInputContentSizeChangeEventData
|
|
36
|
-
extends TargetedEvent {
|
|
37
|
-
contentSize: {
|
|
38
|
-
width: Int32;
|
|
39
|
-
height: Int32;
|
|
40
|
-
};
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
export interface PasteTextInputSelectionChangeEventData extends TargetedEvent {
|
|
44
|
-
selection: Readonly<{
|
|
45
|
-
start: Int32;
|
|
46
|
-
end: Int32;
|
|
47
|
-
}>;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
export interface PasteTextInputScrollEventData extends TargetedEvent {
|
|
51
|
-
contentInset: Readonly<{
|
|
52
|
-
top: Double;
|
|
53
|
-
bottom: Double;
|
|
54
|
-
left: Double;
|
|
55
|
-
right: Double;
|
|
56
|
-
}>;
|
|
57
|
-
contentOffset: Readonly<{ x: Double; y: Double }>;
|
|
58
|
-
contentSize: Readonly<{
|
|
59
|
-
width: Double;
|
|
60
|
-
height: Double;
|
|
61
|
-
}>;
|
|
62
|
-
layoutMeasurement: Readonly<{
|
|
63
|
-
width: Double;
|
|
64
|
-
height: Double;
|
|
65
|
-
}>;
|
|
66
|
-
responderIgnoreScroll: boolean;
|
|
67
|
-
velocity: Readonly<{ x: Double; y: Double }>;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
export interface PasteTextInputChangeEventData extends TargetedEvent {
|
|
71
|
-
eventCount: Int32;
|
|
72
|
-
text: string;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
export interface PasteTextInputTextInputEventData extends TargetedEvent {
|
|
76
|
-
text: string;
|
|
77
|
-
previousText: string;
|
|
78
|
-
range: Readonly<{ start: Int32; end: Int32 }>;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
export interface PasteTextInputEditEventData extends TargetedEvent {
|
|
82
|
-
text: string;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
export interface PasteTextInputKeyEventData extends TargetedEvent {
|
|
86
|
-
key: string;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
type KeyboardType =
|
|
90
|
-
| 'default'
|
|
91
|
-
| 'email-address'
|
|
92
|
-
| 'numeric'
|
|
93
|
-
| 'phone-pad'
|
|
94
|
-
| 'number-pad'
|
|
95
|
-
| 'decimal-pad'
|
|
96
|
-
| 'url'
|
|
97
|
-
// iOS-only
|
|
98
|
-
| 'ascii-capable'
|
|
99
|
-
| 'numbers-and-punctuation'
|
|
100
|
-
| 'name-phone-pad'
|
|
101
|
-
| 'twitter'
|
|
102
|
-
| 'web-search'
|
|
103
|
-
// Android-only
|
|
104
|
-
| 'visible-password';
|
|
105
|
-
|
|
106
|
-
export type ReturnKeyType =
|
|
107
|
-
// Cross Platform
|
|
108
|
-
| 'done'
|
|
109
|
-
| 'go'
|
|
110
|
-
| 'next'
|
|
111
|
-
| 'search'
|
|
112
|
-
| 'send'
|
|
113
|
-
// Android-only
|
|
114
|
-
| 'none'
|
|
115
|
-
| 'previous'
|
|
116
|
-
// iOS-only
|
|
117
|
-
| 'default'
|
|
118
|
-
| 'emergency-call'
|
|
119
|
-
| 'google'
|
|
120
|
-
| 'join'
|
|
121
|
-
| 'route'
|
|
122
|
-
| 'yahoo';
|
|
123
|
-
|
|
124
|
-
export type Autocomplete =
|
|
125
|
-
| 'birthdate-day'
|
|
126
|
-
| 'birthdate-full'
|
|
127
|
-
| 'birthdate-month'
|
|
128
|
-
| 'birthdate-year'
|
|
129
|
-
| 'cc-csc'
|
|
130
|
-
| 'cc-exp'
|
|
131
|
-
| 'cc-exp-day'
|
|
132
|
-
| 'cc-exp-month'
|
|
133
|
-
| 'cc-exp-year'
|
|
134
|
-
| 'cc-number'
|
|
135
|
-
| 'email'
|
|
136
|
-
| 'gender'
|
|
137
|
-
| 'name'
|
|
138
|
-
| 'name-family'
|
|
139
|
-
| 'name-given'
|
|
140
|
-
| 'name-middle'
|
|
141
|
-
| 'name-middle-initial'
|
|
142
|
-
| 'name-prefix'
|
|
143
|
-
| 'name-suffix'
|
|
144
|
-
| 'password'
|
|
145
|
-
| 'password-new'
|
|
146
|
-
| 'postal-address'
|
|
147
|
-
| 'postal-address-country'
|
|
148
|
-
| 'postal-address-extended'
|
|
149
|
-
| 'postal-address-extended-postal-code'
|
|
150
|
-
| 'postal-address-locality'
|
|
151
|
-
| 'postal-address-region'
|
|
152
|
-
| 'postal-code'
|
|
153
|
-
| 'street-address'
|
|
154
|
-
| 'sms-otp'
|
|
155
|
-
| 'tel'
|
|
156
|
-
| 'tel-country-code'
|
|
157
|
-
| 'tel-national'
|
|
158
|
-
| 'tel-device'
|
|
159
|
-
| 'username'
|
|
160
|
-
| 'username-new'
|
|
161
|
-
| 'off';
|
|
162
|
-
|
|
163
|
-
type SubmitBehavior = 'submit' | 'blurAndSubmit' | 'newline';
|
|
164
|
-
|
|
165
|
-
export interface NativeProps extends ViewProps {
|
|
166
|
-
allowFontScaling?: boolean;
|
|
167
|
-
autoCapitalize?: WithDefault<
|
|
168
|
-
'none' | 'sentences' | 'words' | 'characters',
|
|
169
|
-
'none'
|
|
170
|
-
>;
|
|
171
|
-
autoComplete?: WithDefault<Autocomplete, 'off'>;
|
|
172
|
-
autoCorrect?: boolean;
|
|
173
|
-
autoFocus?: boolean;
|
|
174
|
-
blurOnSubmit?: boolean;
|
|
175
|
-
caretHidden?: boolean;
|
|
176
|
-
clearButtonMode?: string;
|
|
177
|
-
clearTextOnFocus?: boolean;
|
|
178
|
-
contextMenuHidden?: boolean;
|
|
179
|
-
defaultValue?: string;
|
|
180
|
-
disableCopyPaste?: boolean;
|
|
181
|
-
disableFullscreenUI?: boolean;
|
|
182
|
-
editable?: boolean;
|
|
183
|
-
enablesReturnKeyAutomatically?: boolean;
|
|
184
|
-
importantForAutofill?: string;
|
|
185
|
-
inlineImageLeft?: string;
|
|
186
|
-
inlineImagePadding?: Int32;
|
|
187
|
-
inputAccessoryViewID?: string;
|
|
188
|
-
keyboardAppearance?: string;
|
|
189
|
-
keyboardType?: WithDefault<KeyboardType, 'default'>;
|
|
190
|
-
maxFontSizeMultiplier?: Float;
|
|
191
|
-
maxLength?: Int32;
|
|
192
|
-
mostRecentEventCount?: Int32;
|
|
193
|
-
multiline?: boolean;
|
|
194
|
-
numberOfLines?: Int32;
|
|
195
|
-
passwordRules?: string;
|
|
196
|
-
placeholder?: string;
|
|
197
|
-
placeholderTextColor?: ColorValue;
|
|
198
|
-
returnKeyLabel?: string;
|
|
199
|
-
returnKeyType?: WithDefault<ReturnKeyType, 'done'>;
|
|
200
|
-
scrollEnabled?: boolean;
|
|
201
|
-
secureTextEntry?: boolean;
|
|
202
|
-
selection?: Readonly<{ start: Int32; end?: Int32 }>;
|
|
203
|
-
selectionColor?: ColorValue;
|
|
204
|
-
selectionHandleColor?: ColorValue;
|
|
205
|
-
selectTextOnFocus?: boolean;
|
|
206
|
-
showSoftInputOnFocus?: boolean;
|
|
207
|
-
smartInsertDelete?: boolean;
|
|
208
|
-
smartPunctuation?: string;
|
|
209
|
-
spellCheck?: boolean;
|
|
210
|
-
submitBehavior?: WithDefault<SubmitBehavior, 'submit'>;
|
|
211
|
-
|
|
212
|
-
text?: string;
|
|
213
|
-
textBreakStrategy?: WithDefault<
|
|
214
|
-
'simple' | 'highQuality' | 'balanced',
|
|
215
|
-
'simple'
|
|
216
|
-
>;
|
|
217
|
-
textContentType?: string;
|
|
218
|
-
underlineColorAndroid?: ColorValue;
|
|
219
|
-
value?: string;
|
|
220
|
-
|
|
221
|
-
onBlur?: BubblingEventHandler<TargetedEvent>;
|
|
222
|
-
onChange?: BubblingEventHandler<PasteTextInputChangeEventData>;
|
|
223
|
-
onChangeText?: BubblingEventHandler<PasteTextInputChangeEventData>;
|
|
224
|
-
onEndEditing?: BubblingEventHandler<PasteTextInputEditEventData>;
|
|
225
|
-
onFocus?: BubblingEventHandler<TargetedEvent>;
|
|
226
|
-
onKeyPress?: BubblingEventHandler<PasteTextInputKeyEventData>;
|
|
227
|
-
onPaste?: BubblingEventHandler<PasteTextInputPasteEventData>;
|
|
228
|
-
onSubmitEdition?: BubblingEventHandler<PasteTextInputEditEventData>;
|
|
229
|
-
|
|
230
|
-
onContentSizeChange?: DirectEventHandler<PasteTextInputContentSizeChangeEventData>;
|
|
231
|
-
onScroll?: DirectEventHandler<PasteTextInputScrollEventData>;
|
|
232
|
-
onSelectionChange?: DirectEventHandler<PasteTextInputSelectionChangeEventData>;
|
|
233
|
-
|
|
234
|
-
textShadowColor?: ColorValue;
|
|
235
|
-
textShadowRadius?: Float;
|
|
236
|
-
textDecorationLine?: string;
|
|
237
|
-
fontStyle?: string;
|
|
238
|
-
textShadowOffset?: Readonly<{ width?: Double; height?: Double }>;
|
|
239
|
-
lineHeight?: Float;
|
|
240
|
-
textTransform?: string;
|
|
241
|
-
color?: Int32;
|
|
242
|
-
letterSpacing?: Float;
|
|
243
|
-
fontSize?: Float;
|
|
244
|
-
textAlign?: string;
|
|
245
|
-
includeFontPadding?: boolean;
|
|
246
|
-
fontWeight?: string;
|
|
247
|
-
fontFamily?: string;
|
|
248
|
-
|
|
249
|
-
textAlignVertical?: string;
|
|
250
|
-
cursorColor?: ColorValue;
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
type PasteTextInputNativeComponentType = HostComponent<NativeProps>;
|
|
254
|
-
|
|
255
|
-
interface NativeCommands {
|
|
256
|
-
readonly focus: (
|
|
257
|
-
viewRef: React.ElementRef<PasteTextInputNativeComponentType>
|
|
258
|
-
) => void;
|
|
259
|
-
readonly blur: (
|
|
260
|
-
viewRef: React.ElementRef<PasteTextInputNativeComponentType>
|
|
261
|
-
) => void;
|
|
262
|
-
readonly setTextAndSelection: (
|
|
263
|
-
viewRef: React.ElementRef<PasteTextInputNativeComponentType>,
|
|
264
|
-
mostRecentEventCount: Int32,
|
|
265
|
-
value: string | null | undefined, // in theory this is nullable
|
|
266
|
-
start: Int32,
|
|
267
|
-
end: Int32
|
|
268
|
-
) => void;
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
export const Commands: NativeCommands = codegenNativeCommands<NativeCommands>({
|
|
272
|
-
supportedCommands: ['focus', 'blur', 'setTextAndSelection'],
|
|
273
|
-
});
|
|
274
|
-
|
|
275
|
-
export default codegenNativeComponent<NativeProps>(
|
|
276
|
-
'PasteTextInput'
|
|
277
|
-
) as HostComponent<NativeProps>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"PasteTextInput.d.ts","sourceRoot":"","sources":["../../../src/PasteTextInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,OAAO,KAAK,EAER,eAAe,EACf,sBAAsB,EAGzB,MAAM,SAAS,CAAC;AA8gBjB,QAAA,MAAM,kBAAkB,gGAiEtB,CAAC;AAaH,eAAe,kBAAkB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"PasteTextInputNativeComponent.d.ts","sourceRoot":"","sources":["../../../src/PasteTextInputNativeComponent.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAE/C,cAAc,SAAS,CAAC;AAExB,QAAA,IAAI,UAAU,EAAE,KAAK,CAAC,yBAAyB,CAC3C,eAAe,GAAG,KAAK,CAAC,aAAa,CAAC,OAAO,CAAC,CACjD,CAAC;AAIF,eAAe,UAAU,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAClE,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,2CAA2C,CAAC;AAEvE,MAAM,MAAM,sBAAsB,GAAG,KAAK,CAAC,UAAU,CACjD,aAAa,CAAC,eAAe,CAAC,CACjC,GAAG;IACA,KAAK,EAAE,MAAM,IAAI,CAAC;IAClB,SAAS,EAAE,MAAM,OAAO,CAAC;IACzB,YAAY,CAAC,EAAE,MAAM,KAAK,CAAC,UAAU,CAAC,aAAa,CAAC,eAAe,CAAC,CAAC,CAAC;IACtE,YAAY,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC;CACtD,CAAC;AAEF,MAAM,WAAW,UAAU;IACvB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,KAAK,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,UAAU;IACvB,WAAW,EAAE;QACT,IAAI,EAAE,UAAU,EAAE,CAAC;QACnB,KAAK,CAAC,EAAE;YACJ,OAAO,EAAE,MAAM,CAAC;SACnB,CAAC;KACL,CAAC;CACL;AAED,MAAM,WAAW,eAAgB,SAAQ,cAAc;IACnD,YAAY,CAAC,EAAE,YAAY,CAAC,sBAAsB,CAAC,CAAC;IACpD,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,OAAO,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EAAE,KAAK,EAAE,KAAK,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC;IAC1E,cAAc,CAAC,EAAE,cAAc,CAAC;IAChC,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;CACvC;AAED,MAAM,WAAW,kBAAmB,SAAQ,cAAc;IACtD,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,oBAAoB,EAAE,MAAM,CAAC;IAC7B,OAAO,CAAC,KAAK,EAAE,UAAU,GAAG,IAAI,CAAC;IACjC,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;CACvC;AAED,MAAM,WAAW,aAAa;IAC1B,KAAK,IAAI,IAAI,CAAC;IACd,SAAS,IAAI,OAAO,CAAC;IACrB,KAAK,IAAI,IAAI,CAAC;IACd,IAAI,IAAI,IAAI,CAAC;IACb,cAAc,CAAC,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;CAC7C;AAED,MAAM,WAAW,uBAAuB;IACpC,KAAK,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IAClC,IAAI,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IACjC,mBAAmB,EAAE,CACjB,OAAO,EAAE,OAAO,EAChB,oBAAoB,EAAE,MAAM,EAC5B,KAAK,EAAE,MAAM,GAAG,IAAI,EAAE,6BAA6B;IACnD,KAAK,EAAE,MAAM,EACb,GAAG,EAAE,MAAM,KACV,IAAI,CAAC;CACb;AAED,MAAM,WAAW,SAAS;IACtB,KAAK,EAAE,MAAM,CAAC;IACd,GAAG,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC5B;AAED,MAAM,MAAM,cAAc,GAAG,QAAQ,GAAG,eAAe,GAAG,SAAS,CAAC;AACpE,MAAM,MAAM,gBAAgB,GAAG,SAAS,GAAG,QAAQ,GAAG,SAAS,CAAC"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|