@@ -128,6 +128,22 @@ function RichTextWrapper(
128128 __unstableEmbedURLOnPaste,
129129 __unstableDisableFormats : disableFormats ,
130130 disableLineBreaks,
131+ unstableOnFocus,
132+ __unstableAllowPrefixTransformations,
133+ __unstableMultilineRootTag,
134+ // Native props.
135+ __unstableMobileNoFocusOnMount,
136+ deleteEnter,
137+ placeholderTextColor,
138+ textAlign,
139+ selectionColor,
140+ tagsToEliminate,
141+ rootTagsToEliminate,
142+ disableEditingMenu,
143+ fontSize,
144+ fontFamily,
145+ fontWeight,
146+ fontStyle,
131147 ...props
132148 } ,
133149 forwardedRef
@@ -528,7 +544,6 @@ function RichTextWrapper(
528544
529545 const content = (
530546 < RichText
531- { ...props }
532547 clientId = { clientId }
533548 identifier = { identifier }
534549 ref = { ref }
@@ -563,6 +578,11 @@ function RichTextWrapper(
563578 disabled = { disabled }
564579 start = { startAttr }
565580 reversed = { reversed }
581+ unstableOnFocus = { unstableOnFocus }
582+ __unstableAllowPrefixTransformations = {
583+ __unstableAllowPrefixTransformations
584+ }
585+ __unstableMultilineRootTag = { __unstableMultilineRootTag }
566586 // Native props.
567587 onCaretVerticalPositionChange = { onCaretVerticalPositionChange }
568588 blockIsSelected = {
@@ -571,6 +591,18 @@ function RichTextWrapper(
571591 : blockIsSelected
572592 }
573593 shouldBlurOnUnmount = { shouldBlurOnUnmount }
594+ __unstableMobileNoFocusOnMount = { __unstableMobileNoFocusOnMount }
595+ deleteEnter = { deleteEnter }
596+ placeholderTextColor = { placeholderTextColor }
597+ textAlign = { textAlign }
598+ selectionColor = { selectionColor }
599+ tagsToEliminate = { tagsToEliminate }
600+ rootTagsToEliminate = { rootTagsToEliminate }
601+ disableEditingMenu = { disableEditingMenu }
602+ fontSize = { fontSize }
603+ fontFamily = { fontFamily }
604+ fontWeight = { fontWeight }
605+ fontStyle = { fontStyle }
574606 >
575607 { ( {
576608 isSelected : nestedIsSelected ,
@@ -599,6 +631,7 @@ function RichTextWrapper(
599631 { ( { listBoxId, activeId, onKeyDown } ) => (
600632 < TagName
601633 { ...editableProps }
634+ { ...props }
602635 aria-autocomplete = {
603636 listBoxId ? 'list' : undefined
604637 }
0 commit comments