@office-iss/react-native-win32 0.71.11 → 0.71.12

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/CHANGELOG.json CHANGED
@@ -2,7 +2,22 @@
2
2
  "name": "@office-iss/react-native-win32",
3
3
  "entries": [
4
4
  {
5
- "date": "Fri, 23 Jun 2023 18:18:39 GMT",
5
+ "date": "Thu, 06 Jul 2023 20:21:09 GMT",
6
+ "tag": "@office-iss/react-native-win32_v0.71.12",
7
+ "version": "0.71.12",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "30809111+acoates-ms@users.noreply.github.com",
12
+ "package": "@office-iss/react-native-win32",
13
+ "commit": "de9a38d6b4e1c13b727f9e0fda22615d0f28ff2c",
14
+ "comment": "Update core 0.71.6 -> 0.71.12"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Fri, 23 Jun 2023 18:19:55 GMT",
6
21
  "tag": "@office-iss/react-native-win32_v0.71.11",
7
22
  "version": "0.71.11",
8
23
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,17 +1,25 @@
1
1
  # Change Log - @office-iss/react-native-win32
2
2
 
3
- This log was last generated on Fri, 23 Jun 2023 18:18:39 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 06 Jul 2023 20:21:09 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## 0.71.11
7
+ ## 0.71.12
8
8
 
9
- Fri, 23 Jun 2023 18:18:39 GMT
9
+ Thu, 06 Jul 2023 20:21:09 GMT
10
10
 
11
11
  ### Patches
12
12
 
13
- - Promote 0.71 to legacy (jthysell@microsoft.com)
13
+ - Update core 0.71.6 -> 0.71.12 (30809111+acoates-ms@users.noreply.github.com)
14
14
 
15
+ ## 0.71.11
16
+
17
+ Fri, 23 Jun 2023 18:19:55 GMT
18
+
19
+ ### Patches
20
+
21
+ - Promote 0.71 to legacy (jthysell@microsoft.com)
22
+
15
23
  ## 0.71.10
16
24
 
17
25
  Fri, 09 Jun 2023 01:05:22 GMT
@@ -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
  */