Skip to content

Commit

Permalink
Add support for new iOS text content type cellular EID and cellular I…
Browse files Browse the repository at this point in the history
…MEI (#46507)

Summary:
Pull Request resolved: #46507

Support for new iOS text content type to autofill cellular EID or cellular IMEI:
- https://developer.apple.com/documentation/uikit/uitextcontenttypecellulareid?language=objc
- https://developer.apple.com/documentation/uikit/uitextcontenttypecellularimei?language=objc

## Changelog:

[General][Added] - Add JS layer for new text content type cellular EID and cellular IMEI

Reviewed By: cortinico

Differential Revision: D62737200

fbshipit-source-id: 4db9c29079e63107deeb00a3a1558aa151d80fc1
  • Loading branch information
cipolleschi authored and facebook-github-bot committed Oct 15, 2024
1 parent 9e5b6e8 commit 118c1f7
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,8 @@ export interface TextInputIOSProps {
* - `'birthdateDay'` (iOS 17+)
* - `'birthdateMonth'` (iOS 17+)
* - `'birthdateYear'` (iOS 17+)
* - `'cellularEID'` (iOS 17.4+)
* - `'cellularIMEI'` (iOS 17.4+)
* - `'dateTime'` (iOS 15+)
* - `'flightNumber'` (iOS 15+)
* - `'shipmentTrackingNumber'` (iOS 15+)
Expand Down Expand Up @@ -302,6 +304,8 @@ export interface TextInputIOSProps {
| 'birthdateDay'
| 'birthdateMonth'
| 'birthdateYear'
| 'cellularEID'
| 'cellularIMEI'
| 'dateTime'
| 'flightNumber'
| 'shipmentTrackingNumber'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,8 @@ export type TextContentType =
| 'birthdateDay'
| 'birthdateMonth'
| 'birthdateYear'
| 'cellularEID'
| 'cellularIMEI'
| 'dateTime'
| 'flightNumber'
| 'shipmentTrackingNumber';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,8 @@ export type TextContentType =
| 'birthdateDay'
| 'birthdateMonth'
| 'birthdateYear'
| 'cellularEID'
| 'cellularIMEI'
| 'dateTime'
| 'flightNumber'
| 'shipmentTrackingNumber';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2944,6 +2944,8 @@ export type TextContentType =
| \\"birthdateDay\\"
| \\"birthdateMonth\\"
| \\"birthdateYear\\"
| \\"cellularEID\\"
| \\"cellularIMEI\\"
| \\"dateTime\\"
| \\"flightNumber\\"
| \\"shipmentTrackingNumber\\";
Expand Down Expand Up @@ -3298,6 +3300,8 @@ export type TextContentType =
| \\"birthdateDay\\"
| \\"birthdateMonth\\"
| \\"birthdateYear\\"
| \\"cellularEID\\"
| \\"cellularIMEI\\"
| \\"dateTime\\"
| \\"flightNumber\\"
| \\"shipmentTrackingNumber\\";
Expand Down

0 comments on commit 118c1f7

Please sign in to comment.