react-native 0.71.7 → 0.71.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.
@@ -279,92 +279,6 @@ export interface TextInputIOSProps {
279
279
  * @see https://reactnative.dev/docs/textinput#props
280
280
  */
281
281
  export interface TextInputAndroidProps {
282
- /**
283
- * Specifies autocomplete hints for the system, so it can provide autofill. On Android, the system will always attempt to offer autofill by using heuristics to identify the type of content.
284
- * To disable autocomplete, set `autoComplete` to `off`.
285
- *
286
- * *Android Only*
287
- *
288
- * Possible values for `autoComplete` are:
289
- *
290
- * - `birthdate-day`
291
- * - `birthdate-full`
292
- * - `birthdate-month`
293
- * - `birthdate-year`
294
- * - `cc-csc`
295
- * - `cc-exp`
296
- * - `cc-exp-day`
297
- * - `cc-exp-month`
298
- * - `cc-exp-year`
299
- * - `cc-number`
300
- * - `email`
301
- * - `gender`
302
- * - `name`
303
- * - `name-family`
304
- * - `name-given`
305
- * - `name-middle`
306
- * - `name-middle-initial`
307
- * - `name-prefix`
308
- * - `name-suffix`
309
- * - `password`
310
- * - `password-new`
311
- * - `postal-address`
312
- * - `postal-address-country`
313
- * - `postal-address-extended`
314
- * - `postal-address-extended-postal-code`
315
- * - `postal-address-locality`
316
- * - `postal-address-region`
317
- * - `postal-code`
318
- * - `street-address`
319
- * - `sms-otp`
320
- * - `tel`
321
- * - `tel-country-code`
322
- * - `tel-national`
323
- * - `tel-device`
324
- * - `username`
325
- * - `username-new`
326
- * - `off`
327
- */
328
- autoComplete?:
329
- | 'birthdate-day'
330
- | 'birthdate-full'
331
- | 'birthdate-month'
332
- | 'birthdate-year'
333
- | 'cc-csc'
334
- | 'cc-exp'
335
- | 'cc-exp-day'
336
- | 'cc-exp-month'
337
- | 'cc-exp-year'
338
- | 'cc-number'
339
- | 'email'
340
- | 'gender'
341
- | 'name'
342
- | 'name-family'
343
- | 'name-given'
344
- | 'name-middle'
345
- | 'name-middle-initial'
346
- | 'name-prefix'
347
- | 'name-suffix'
348
- | 'password'
349
- | 'password-new'
350
- | 'postal-address'
351
- | 'postal-address-country'
352
- | 'postal-address-extended'
353
- | 'postal-address-extended-postal-code'
354
- | 'postal-address-locality'
355
- | 'postal-address-region'
356
- | 'postal-code'
357
- | 'street-address'
358
- | 'sms-otp'
359
- | 'tel'
360
- | 'tel-country-code'
361
- | 'tel-national'
362
- | 'tel-device'
363
- | 'username'
364
- | 'username-new'
365
- | 'off'
366
- | undefined;
367
-
368
282
  /**
369
283
  * When provided it will set the color of the cursor (or "caret") in the component.
370
284
  * Unlike the behavior of `selectionColor` the cursor color will be set independently
@@ -548,6 +462,127 @@ export interface TextInputProps
548
462
  */
549
463
  autoCapitalize?: 'none' | 'sentences' | 'words' | 'characters' | undefined;
550
464
 
465
+ /**
466
+ * Specifies autocomplete hints for the system, so it can provide autofill.
467
+ * On Android, the system will always attempt to offer autofill by using heuristics to identify the type of content.
468
+ * To disable autocomplete, set autoComplete to off.
469
+ *
470
+ * The following values work across platforms:
471
+ *
472
+ * - `additional-name`
473
+ * - `address-line1`
474
+ * - `address-line2`
475
+ * - `cc-number`
476
+ * - `country`
477
+ * - `current-password`
478
+ * - `email`
479
+ * - `family-name`
480
+ * - `given-name`
481
+ * - `honorific-prefix`
482
+ * - `honorific-suffix`
483
+ * - `name`
484
+ * - `new-password`
485
+ * - `off`
486
+ * - `one-time-code`
487
+ * - `postal-code`
488
+ * - `street-address`
489
+ * - `tel`
490
+ * - `username`
491
+ *
492
+ * The following values work on iOS only:
493
+ *
494
+ * - `nickname`
495
+ * - `organization`
496
+ * - `organization-title`
497
+ * - `url`
498
+ *
499
+ * The following values work on Android only:
500
+ *
501
+ * - `birthdate-day`
502
+ * - `birthdate-full`
503
+ * - `birthdate-month`
504
+ * - `birthdate-year`
505
+ * - `cc-csc`
506
+ * - `cc-exp`
507
+ * - `cc-exp-day`
508
+ * - `cc-exp-month`
509
+ * - `cc-exp-year`
510
+ * - `gender`
511
+ * - `name-family`
512
+ * - `name-given`
513
+ * - `name-middle`
514
+ * - `name-middle-initial`
515
+ * - `name-prefix`
516
+ * - `name-suffix`
517
+ * - `password`
518
+ * - `password-new`
519
+ * - `postal-address`
520
+ * - `postal-address-country`
521
+ * - `postal-address-extended`
522
+ * - `postal-address-extended-postal-code`
523
+ * - `postal-address-locality`
524
+ * - `postal-address-region`
525
+ * - `sms-otp`
526
+ * - `tel-country-code`
527
+ * - `tel-national`
528
+ * - `tel-device`
529
+ * - `username-new`
530
+ */
531
+ autoComplete?:
532
+ | 'additional-name'
533
+ | 'address-line1'
534
+ | 'address-line2'
535
+ | 'birthdate-day'
536
+ | 'birthdate-full'
537
+ | 'birthdate-month'
538
+ | 'birthdate-year'
539
+ | 'cc-csc'
540
+ | 'cc-exp'
541
+ | 'cc-exp-day'
542
+ | 'cc-exp-month'
543
+ | 'cc-exp-year'
544
+ | 'cc-number'
545
+ | 'country'
546
+ | 'current-password'
547
+ | 'email'
548
+ | 'family-name'
549
+ | 'gender'
550
+ | 'given-name'
551
+ | 'honorific-prefix'
552
+ | 'honorific-suffix'
553
+ | 'name'
554
+ | 'name-family'
555
+ | 'name-given'
556
+ | 'name-middle'
557
+ | 'name-middle-initial'
558
+ | 'name-prefix'
559
+ | 'name-suffix'
560
+ | 'new-password'
561
+ | 'nickname'
562
+ | 'one-time-code'
563
+ | 'organization'
564
+ | 'organization-title'
565
+ | 'password'
566
+ | 'password-new'
567
+ | 'postal-address'
568
+ | 'postal-address-country'
569
+ | 'postal-address-extended'
570
+ | 'postal-address-extended-postal-code'
571
+ | 'postal-address-locality'
572
+ | 'postal-address-region'
573
+ | 'postal-code'
574
+ | 'street-address'
575
+ | 'sms-otp'
576
+ | 'tel'
577
+ | 'tel-country-code'
578
+ | 'tel-national'
579
+ | 'tel-device'
580
+ | 'url'
581
+ | 'username'
582
+ | 'username-new'
583
+ | 'off'
584
+ | undefined;
585
+
551
586
  /**
552
587
  * If false, disables auto-correct.
553
588
  * The default value is true.
@@ -196,36 +196,6 @@ export type enterKeyHintType =
196
196
  type PasswordRules = string;
197
197
 
198
198
  type IOSProps = $ReadOnly<{|
199
- /**
200
- * Give the keyboard and the system information about the
201
- * expected semantic meaning for the content that users enter.
202
- * @platform ios
203
- */
204
- autoComplete?: ?(
205
- | 'address-line1'
206
- | 'address-line2'
207
- | 'cc-number'
208
- | 'current-password'
209
- | 'country'
210
- | 'email'
211
- | 'name'
212
- | 'additional-name'
213
- | 'family-name'
214
- | 'given-name'
215
- | 'nickname'
216
- | 'honorific-prefix'
217
- | 'honorific-suffix'
218
- | 'new-password'
219
- | 'off'
220
- | 'one-time-code'
221
- | 'organization'
222
- | 'organization-title'
223
- | 'postal-code'
224
- | 'street-address'
225
- | 'tel'
226
- | 'url'
227
- | 'username'
228
- ),
229
199
  /**
230
200
  * When the clear button should appear on the right side of the text view.
231
201
  * This property is supported only for single-line TextInput component.
@@ -328,111 +298,6 @@ type IOSProps = $ReadOnly<{|
328
298
  |}>;
329
299
 
330
300
  type AndroidProps = $ReadOnly<{|
331
- /**
332
- * Specifies autocomplete hints for the system, so it can provide autofill. On Android, the system will always attempt to offer autofill by using heuristics to identify the type of content.
333
- * To disable autocomplete, set `autoComplete` to `off`.
334
- *
335
- * *Android Only*
336
- *
337
- * Possible values for `autoComplete` are:
338
- *
339
- * - `birthdate-day`
340
- * - `birthdate-full`
341
- * - `birthdate-month`
342
- * - `birthdate-year`
343
- * - `cc-csc`
344
- * - `cc-exp`
345
- * - `cc-exp-day`
346
- * - `cc-exp-month`
347
- * - `cc-exp-year`
348
- * - `cc-number`
349
- * - `email`
350
- * - `gender`
351
- * - `name`
352
- * - `name-family`
353
- * - `name-given`
354
- * - `name-middle`
355
- * - `name-middle-initial`
356
- * - `name-prefix`
357
- * - `name-suffix`
358
- * - `password`
359
- * - `password-new`
360
- * - `postal-address`
361
- * - `postal-address-country`
362
- * - `postal-address-extended`
363
- * - `postal-address-extended-postal-code`
364
- * - `postal-address-locality`
365
- * - `postal-address-region`
366
- * - `postal-code`
367
- * - `street-address`
368
- * - `sms-otp`
369
- * - `tel`
370
- * - `tel-country-code`
371
- * - `tel-national`
372
- * - `tel-device`
373
- * - `username`
374
- * - `username-new`
375
- * - `off`
376
- *
377
- * @platform android
378
- */
379
- autoComplete?: ?(
380
- | 'birthdate-day'
381
- | 'birthdate-full'
382
- | 'birthdate-month'
383
- | 'birthdate-year'
384
- | 'cc-csc'
385
- | 'cc-exp'
386
- | 'cc-exp-day'
387
- | 'cc-exp-month'
388
- | 'cc-exp-year'
389
- | 'cc-number'
390
- | 'email'
391
- | 'gender'
392
- | 'name'
393
- | 'name-family'
394
- | 'name-given'
395
- | 'name-middle'
396
- | 'name-middle-initial'
397
- | 'name-prefix'
398
- | 'name-suffix'
399
- | 'password'
400
- | 'password-new'
401
- | 'postal-address'
402
- | 'postal-address-country'
403
- | 'postal-address-extended'
404
- | 'postal-address-extended-postal-code'
405
- | 'postal-address-locality'
406
- | 'postal-address-region'
407
- | 'postal-code'
408
- | 'street-address'
409
- | 'sms-otp'
410
- | 'tel'
411
- | 'tel-country-code'
412
- | 'tel-national'
413
- | 'tel-device'
414
- | 'username'
415
- | 'username-new'
416
- | 'off'
417
- // additional HTML autocomplete values
418
- | 'address-line1'
419
- | 'address-line2'
420
- | 'bday'
421
- | 'bday-day'
422
- | 'bday-month'
423
- | 'bday-year'
424
- | 'country'
425
- | 'current-password'
426
- | 'honorific-prefix'
427
- | 'honorific-suffix'
428
- | 'additional-name'
429
- | 'family-name'
430
- | 'given-name'
431
- | 'new-password'
432
- | 'one-time-code'
433
- | 'sex'
434
- ),
435
-
436
301
  /**
437
302
  * When provided it will set the color of the cursor (or "caret") in the component.
438
303
  * Unlike the behavior of `selectionColor` the cursor color will be set independently
@@ -533,6 +398,127 @@ export type Props = $ReadOnly<{|
533
398
  */
534
399
  autoCapitalize?: ?AutoCapitalize,
535
400
 
401
+ /**
402
+ * Specifies autocomplete hints for the system, so it can provide autofill.
403
+ * On Android, the system will always attempt to offer autofill by using heuristics to identify the type of content.
404
+ * To disable autocomplete, set autoComplete to off.
405
+ *
406
+ * The following values work across platforms:
407
+ *
408
+ * - `additional-name`
409
+ * - `address-line1`
410
+ * - `address-line2`
411
+ * - `cc-number`
412
+ * - `country`
413
+ * - `current-password`
414
+ * - `email`
415
+ * - `family-name`
416
+ * - `given-name`
417
+ * - `honorific-prefix`
418
+ * - `honorific-suffix`
419
+ * - `name`
420
+ * - `new-password`
421
+ * - `off`
422
+ * - `one-time-code`
423
+ * - `postal-code`
424
+ * - `street-address`
425
+ * - `tel`
426
+ * - `username`
427
+ *
428
+ * The following values work on iOS only:
429
+ *
430
+ * - `nickname`
431
+ * - `organization`
432
+ * - `organization-title`
433
+ * - `url`
434
+ *
435
+ * The following values work on Android only:
436
+ *
437
+ * - `birthdate-day`
438
+ * - `birthdate-full`
439
+ * - `birthdate-month`
440
+ * - `birthdate-year`
441
+ * - `cc-csc`
442
+ * - `cc-exp`
443
+ * - `cc-exp-day`
444
+ * - `cc-exp-month`
445
+ * - `cc-exp-year`
446
+ * - `gender`
447
+ * - `name-family`
448
+ * - `name-given`
449
+ * - `name-middle`
450
+ * - `name-middle-initial`
451
+ * - `name-prefix`
452
+ * - `name-suffix`
453
+ * - `password`
454
+ * - `password-new`
455
+ * - `postal-address`
456
+ * - `postal-address-country`
457
+ * - `postal-address-extended`
458
+ * - `postal-address-extended-postal-code`
459
+ * - `postal-address-locality`
460
+ * - `postal-address-region`
461
+ * - `sms-otp`
462
+ * - `tel-country-code`
463
+ * - `tel-national`
464
+ * - `tel-device`
465
+ * - `username-new`
466
+ */
467
+ autoComplete?: ?(
468
+ | 'additional-name'
469
+ | 'address-line1'
470
+ | 'address-line2'
471
+ | 'birthdate-day'
472
+ | 'birthdate-full'
473
+ | 'birthdate-month'
474
+ | 'birthdate-year'
475
+ | 'cc-csc'
476
+ | 'cc-exp'
477
+ | 'cc-exp-day'
478
+ | 'cc-exp-month'
479
+ | 'cc-exp-year'
480
+ | 'cc-number'
481
+ | 'country'
482
+ | 'current-password'
483
+ | 'email'
484
+ | 'family-name'
485
+ | 'gender'
486
+ | 'given-name'
487
+ | 'honorific-prefix'
488
+ | 'honorific-suffix'
489
+ | 'name'
490
+ | 'name-family'
491
+ | 'name-given'
492
+ | 'name-middle'
493
+ | 'name-middle-initial'
494
+ | 'name-prefix'
495
+ | 'name-suffix'
496
+ | 'new-password'
497
+ | 'nickname'
498
+ | 'one-time-code'
499
+ | 'organization'
500
+ | 'organization-title'
501
+ | 'password'
502
+ | 'password-new'
503
+ | 'postal-address'
504
+ | 'postal-address-country'
505
+ | 'postal-address-extended'
506
+ | 'postal-address-extended-postal-code'
507
+ | 'postal-address-locality'
508
+ | 'postal-address-region'
509
+ | 'postal-code'
510
+ | 'street-address'
511
+ | 'sms-otp'
512
+ | 'tel'
513
+ | 'tel-country-code'
514
+ | 'tel-national'
515
+ | 'tel-device'
516
+ | 'url'
517
+ | 'username'
518
+ | 'username-new'
519
+ | 'off'
520
+ ),
521
+
536
522
  /**
537
523
  * If `false`, disables auto-correct. The default value is `true`.
538
524
  */
@@ -229,36 +229,6 @@ export type enterKeyHintType =
229
229
  type PasswordRules = string;
230
230
 
231
231
  type IOSProps = $ReadOnly<{|
232
- /**
233
- * Give the keyboard and the system information about the
234
- * expected semantic meaning for the content that users enter.
235
- * @platform ios
236
- */
237
- autoComplete?: ?(
238
- | 'address-line1'
239
- | 'address-line2'
240
- | 'cc-number'
241
- | 'current-password'
242
- | 'country'
243
- | 'email'
244
- | 'name'
245
- | 'additional-name'
246
- | 'family-name'
247
- | 'given-name'
248
- | 'nickname'
249
- | 'honorific-prefix'
250
- | 'honorific-suffix'
251
- | 'new-password'
252
- | 'off'
253
- | 'one-time-code'
254
- | 'organization'
255
- | 'organization-title'
256
- | 'postal-code'
257
- | 'street-address'
258
- | 'tel'
259
- | 'url'
260
- | 'username'
261
- ),
262
232
  /**
263
233
  * When the clear button should appear on the right side of the text view.
264
234
  * This property is supported only for single-line TextInput component.
@@ -364,111 +334,6 @@ type IOSProps = $ReadOnly<{|
364
334
  |}>;
365
335
 
366
336
  type AndroidProps = $ReadOnly<{|
367
- /**
368
- * Specifies autocomplete hints for the system, so it can provide autofill. On Android, the system will always attempt to offer autofill by using heuristics to identify the type of content.
369
- * To disable autocomplete, set `autoComplete` to `off`.
370
- *
371
- * *Android Only*
372
- *
373
- * Possible values for `autoComplete` are:
374
- *
375
- * - `birthdate-day`
376
- * - `birthdate-full`
377
- * - `birthdate-month`
378
- * - `birthdate-year`
379
- * - `cc-csc`
380
- * - `cc-exp`
381
- * - `cc-exp-day`
382
- * - `cc-exp-month`
383
- * - `cc-exp-year`
384
- * - `cc-number`
385
- * - `email`
386
- * - `gender`
387
- * - `name`
388
- * - `name-family`
389
- * - `name-given`
390
- * - `name-middle`
391
- * - `name-middle-initial`
392
- * - `name-prefix`
393
- * - `name-suffix`
394
- * - `password`
395
- * - `password-new`
396
- * - `postal-address`
397
- * - `postal-address-country`
398
- * - `postal-address-extended`
399
- * - `postal-address-extended-postal-code`
400
- * - `postal-address-locality`
401
- * - `postal-address-region`
402
- * - `postal-code`
403
- * - `street-address`
404
- * - `sms-otp`
405
- * - `tel`
406
- * - `tel-country-code`
407
- * - `tel-national`
408
- * - `tel-device`
409
- * - `username`
410
- * - `username-new`
411
- * - `off`
412
- *
413
- * @platform android
414
- */
415
- autoComplete?: ?(
416
- | 'birthdate-day'
417
- | 'birthdate-full'
418
- | 'birthdate-month'
419
- | 'birthdate-year'
420
- | 'cc-csc'
421
- | 'cc-exp'
422
- | 'cc-exp-day'
423
- | 'cc-exp-month'
424
- | 'cc-exp-year'
425
- | 'cc-number'
426
- | 'email'
427
- | 'gender'
428
- | 'name'
429
- | 'name-family'
430
- | 'name-given'
431
- | 'name-middle'
432
- | 'name-middle-initial'
433
- | 'name-prefix'
434
- | 'name-suffix'
435
- | 'password'
436
- | 'password-new'
437
- | 'postal-address'
438
- | 'postal-address-country'
439
- | 'postal-address-extended'
440
- | 'postal-address-extended-postal-code'
441
- | 'postal-address-locality'
442
- | 'postal-address-region'
443
- | 'postal-code'
444
- | 'street-address'
445
- | 'sms-otp'
446
- | 'tel'
447
- | 'tel-country-code'
448
- | 'tel-national'
449
- | 'tel-device'
450
- | 'username'
451
- | 'username-new'
452
- | 'off'
453
- // additional HTML autocomplete values
454
- | 'address-line1'
455
- | 'address-line2'
456
- | 'bday'
457
- | 'bday-day'
458
- | 'bday-month'
459
- | 'bday-year'
460
- | 'country'
461
- | 'current-password'
462
- | 'honorific-prefix'
463
- | 'honorific-suffix'
464
- | 'additional-name'
465
- | 'family-name'
466
- | 'given-name'
467
- | 'new-password'
468
- | 'one-time-code'
469
- | 'sex'
470
- ),
471
-
472
337
  /**
473
338
  * When provided it will set the color of the cursor (or "caret") in the component.
474
339
  * Unlike the behavior of `selectionColor` the cursor color will be set independently
@@ -569,6 +434,127 @@ export type Props = $ReadOnly<{|
569
434
  */
570
435
  autoCapitalize?: ?AutoCapitalize,
571
436
 
437
+ /**
438
+ * Specifies autocomplete hints for the system, so it can provide autofill.
439
+ * On Android, the system will always attempt to offer autofill by using heuristics to identify the type of content.
440
+ * To disable autocomplete, set autoComplete to off.
441
+ *
442
+ * The following values work across platforms:
443
+ *
444
+ * - `additional-name`
445
+ * - `address-line1`
446
+ * - `address-line2`
447
+ * - `cc-number`
448
+ * - `country`
449
+ * - `current-password`
450
+ * - `email`
451
+ * - `family-name`
452
+ * - `given-name`
453
+ * - `honorific-prefix`
454
+ * - `honorific-suffix`
455
+ * - `name`
456
+ * - `new-password`
457
+ * - `off`
458
+ * - `one-time-code`
459
+ * - `postal-code`
460
+ * - `street-address`
461
+ * - `tel`
462
+ * - `username`
463
+ *
464
+ * The following values work on iOS only:
465
+ *
466
+ * - `nickname`
467
+ * - `organization`
468
+ * - `organization-title`
469
+ * - `url`
470
+ *
471
+ * The following values work on Android only:
472
+ *
473
+ * - `birthdate-day`
474
+ * - `birthdate-full`
475
+ * - `birthdate-month`
476
+ * - `birthdate-year`
477
+ * - `cc-csc`
478
+ * - `cc-exp`
479
+ * - `cc-exp-day`
480
+ * - `cc-exp-month`
481
+ * - `cc-exp-year`
482
+ * - `gender`
483
+ * - `name-family`
484
+ * - `name-given`
485
+ * - `name-middle`
486
+ * - `name-middle-initial`
487
+ * - `name-prefix`
488
+ * - `name-suffix`
489
+ * - `password`
490
+ * - `password-new`
491
+ * - `postal-address`
492
+ * - `postal-address-country`
493
+ * - `postal-address-extended`
494
+ * - `postal-address-extended-postal-code`
495
+ * - `postal-address-locality`
496
+ * - `postal-address-region`
497
+ * - `sms-otp`
498
+ * - `tel-country-code`
499
+ * - `tel-national`
500
+ * - `tel-device`
501
+ * - `username-new`
502
+ */
503
+ autoComplete?: ?(
504
+ | 'additional-name'
505
+ | 'address-line1'
506
+ | 'address-line2'
507
+ | 'birthdate-day'
508
+ | 'birthdate-full'
509
+ | 'birthdate-month'
510
+ | 'birthdate-year'
511
+ | 'cc-csc'
512
+ | 'cc-exp'
513
+ | 'cc-exp-day'
514
+ | 'cc-exp-month'
515
+ | 'cc-exp-year'
516
+ | 'cc-number'
517
+ | 'country'
518
+ | 'current-password'
519
+ | 'email'
520
+ | 'family-name'
521
+ | 'gender'
522
+ | 'given-name'
523
+ | 'honorific-prefix'
524
+ | 'honorific-suffix'
525
+ | 'name'
526
+ | 'name-family'
527
+ | 'name-given'
528
+ | 'name-middle'
529
+ | 'name-middle-initial'
530
+ | 'name-prefix'
531
+ | 'name-suffix'
532
+ | 'new-password'
533
+ | 'nickname'
534
+ | 'one-time-code'
535
+ | 'organization'
536
+ | 'organization-title'
537
+ | 'password'
538
+ | 'password-new'
539
+ | 'postal-address'
540
+ | 'postal-address-country'
541
+ | 'postal-address-extended'
542
+ | 'postal-address-extended-postal-code'
543
+ | 'postal-address-locality'
544
+ | 'postal-address-region'
545
+ | 'postal-code'
546
+ | 'street-address'
547
+ | 'sms-otp'
548
+ | 'tel'
549
+ | 'tel-country-code'
550
+ | 'tel-national'
551
+ | 'tel-device'
552
+ | 'url'
553
+ | 'username'
554
+ | 'username-new'
555
+ | 'off'
556
+ ),
557
+
572
558
  /**
573
559
  * If `false`, disables auto-correct. The default value is `true`.
574
560
  */
@@ -12,6 +12,6 @@
12
12
  exports.version = {
13
13
  major: 0,
14
14
  minor: 71,
15
- patch: 7,
15
+ patch: 9,
16
16
  prerelease: null,
17
17
  };
@@ -157,6 +157,9 @@ export default class VirtualizedList extends StateSafePureComponent<
157
157
  scrollToEnd(params?: ?{animated?: ?boolean, ...}) {
158
158
  const animated = params ? params.animated : true;
159
159
  const veryLast = this.props.getItemCount(this.props.data) - 1;
160
+ if (veryLast < 0) {
161
+ return;
162
+ }
160
163
  const frame = this.__getFrameMetricsApprox(veryLast, this.props);
161
164
  const offset = Math.max(
162
165
  0,
@@ -180,6 +180,7 @@ export interface TransformsStyle {
180
180
  | SkewYTransform
181
181
  | MatrixTransform
182
182
  )[]
183
+ | string
183
184
  | undefined;
184
185
  /**
185
186
  * @deprecated Use matrix in transform prop instead.
@@ -256,21 +256,21 @@ static void *TextFieldSelectionObservingContext = &TextFieldSelectionObservingCo
256
256
 
257
257
  - (void)textViewDidChange:(__unused UITextView *)textView
258
258
  {
259
- if (_ignoreNextTextInputCall && [_lastStringStateWasUpdatedWith isEqual:_backedTextInputView.attributedText]) {
259
+ if (_ignoreNextTextInputCall) {
260
260
  _ignoreNextTextInputCall = NO;
261
261
  return;
262
262
  }
263
- _lastStringStateWasUpdatedWith = _backedTextInputView.attributedText;
264
263
  _textDidChangeIsComing = NO;
265
264
  [_backedTextInputView.textInputDelegate textInputDidChange];
266
265
  }
267
266
 
268
267
  - (void)textViewDidChangeSelection:(__unused UITextView *)textView
269
268
  {
270
- if (![_lastStringStateWasUpdatedWith isEqual:_backedTextInputView.attributedText]) {
269
+ if (_lastStringStateWasUpdatedWith && ![_lastStringStateWasUpdatedWith isEqual:_backedTextInputView.attributedText]) {
271
270
  [self textViewDidChange:_backedTextInputView];
272
271
  _ignoreNextTextInputCall = YES;
273
272
  }
273
+ _lastStringStateWasUpdatedWith = _backedTextInputView.attributedText;
274
274
  [self textViewProbablyDidChangeSelection];
275
275
  }
276
276
 
@@ -23,7 +23,7 @@ NSDictionary* RCTGetReactNativeVersion(void)
23
23
  __rnVersion = @{
24
24
  RCTVersionMajor: @(0),
25
25
  RCTVersionMinor: @(71),
26
- RCTVersionPatch: @(7),
26
+ RCTVersionPatch: @(9),
27
27
  RCTVersionPrerelease: [NSNull null],
28
28
  };
29
29
  });
@@ -1,4 +1,4 @@
1
- VERSION_NAME=0.71.7
1
+ VERSION_NAME=0.71.9
2
2
  GROUP=com.facebook.react
3
3
 
4
4
  # JVM Versions
@@ -17,6 +17,6 @@ public class ReactNativeVersion {
17
17
  public static final Map<String, Object> VERSION = MapBuilder.<String, Object>of(
18
18
  "major", 0,
19
19
  "minor", 71,
20
- "patch", 7,
20
+ "patch", 9,
21
21
  "prerelease", null);
22
22
  }
@@ -17,7 +17,7 @@ namespace facebook::react {
17
17
  constexpr struct {
18
18
  int32_t Major = 0;
19
19
  int32_t Minor = 71;
20
- int32_t Patch = 7;
20
+ int32_t Patch = 9;
21
21
  std::string_view Prerelease = "";
22
22
  } ReactNativeVersion;
23
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native",
3
- "version": "0.71.7",
3
+ "version": "0.71.9",
4
4
  "bin": "./cli.js",
5
5
  "description": "A framework for building native apps using React",
6
6
  "license": "MIT",
@@ -133,7 +133,7 @@
133
133
  "pretty-format": "^26.5.2",
134
134
  "promise": "^8.3.0",
135
135
  "react-devtools-core": "^4.26.1",
136
- "react-native-gradle-plugin": "^0.71.17",
136
+ "react-native-gradle-plugin": "^0.71.18",
137
137
  "react-refresh": "^0.4.0",
138
138
  "react-shallow-renderer": "^16.15.0",
139
139
  "regenerator-runtime": "^0.13.2",
Binary file
Binary file
Binary file
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "dependencies": {
13
13
  "react": "18.2.0",
14
- "react-native": "0.71.7"
14
+ "react-native": "0.71.9"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@babel/core": "^7.20.0",