@@ -260,7 +260,6 @@ export type FormAutocompleteLocalFieldData = {
260260 resultItemTemplate : string | null ;
261261 templateData : { [ key : string ] : any } | null ;
262262 searchKeys : Array < string > | null ;
263- localized : boolean | null ;
264263 dynamicAttributes : Array < FormDynamicAttributeData > | null ;
265264 label : string | null ;
266265 readOnly : boolean | null ;
@@ -369,6 +368,11 @@ export type FormEditorFieldData = {
369368 inline : boolean ;
370369 showCharacterCount : boolean ;
371370 allowFullscreen : boolean ;
371+ textInputReplacements : {
372+ pattern : string ;
373+ replacement : string ;
374+ locale ?: string ;
375+ } [ ] ;
372376 uploads : FormEditorFieldUploadData | null ;
373377 embeds : { [ embedKey : string ] : EmbedData } ;
374378 toolbar : Array < FormEditorToolbarButton | `embed:${string } `> ;
@@ -544,7 +548,6 @@ export type FormSelectFieldData = {
544548 inline : boolean ;
545549 dynamicAttributes : Array < FormDynamicAttributeData > | null ;
546550 maxSelected : number | null ;
547- localized : boolean | null ;
548551 label : string | null ;
549552 readOnly : boolean | null ;
550553 conditionalDisplay : FormConditionalDisplayData | null ;
@@ -560,7 +563,6 @@ export type FormTagsFieldData = {
560563 options : Array < { id : string | number ; label : string } > ;
561564 maxTagCount : number | null ;
562565 placeholder : string | null ;
563- localized : boolean | null ;
564566 label : string | null ;
565567 readOnly : boolean | null ;
566568 conditionalDisplay : FormConditionalDisplayData | null ;
0 commit comments