diff --git a/packages/react-native/Libraries/Components/TextInput/TextInput.d.ts b/packages/react-native/Libraries/Components/TextInput/TextInput.d.ts index 80e8df0c03..1a5ce640b2 100644 --- a/packages/react-native/Libraries/Components/TextInput/TextInput.d.ts +++ b/packages/react-native/Libraries/Components/TextInput/TextInput.d.ts @@ -272,6 +272,16 @@ export interface TextInputIOSProps { * If false, scrolling of the text view will be disabled. The default value is true. Only works with multiline={true} */ scrollEnabled?: boolean | undefined; + + /** + * Set line break strategy on iOS. + */ + lineBreakStrategyIOS?: + | 'none' + | 'standard' + | 'hangul-word' + | 'push-out' + | undefined; } /** diff --git a/packages/react-native/Libraries/Text/Text.d.ts b/packages/react-native/Libraries/Text/Text.d.ts index a52f4467e1..bee0c63237 100644 --- a/packages/react-native/Libraries/Text/Text.d.ts +++ b/packages/react-native/Libraries/Text/Text.d.ts @@ -53,6 +53,16 @@ export interface TextPropsIOS { * default, a gray oval highlights the text on press down. */ suppressHighlighting?: boolean | undefined; + + /** + * Set line break strategy on iOS. + */ + lineBreakStrategyIOS?: + | 'none' + | 'standard' + | 'hangul-word' + | 'push-out' + | undefined; } export interface TextPropsAndroid {