You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To reduce confusion between TCA types and Content Blocks's field types, we exchanged with the people refactoring the TCA field types for TYPO3 version 12. Following field types will be removed for the content blocks:
Date → use DateTime with sub-type date
Image → use File with sub-type image
Integer → use Number with format int
Money → use Number with format double
MultiSelect → use Select with maxItems > 1
Percent → use Number (now has slider options)
Radiobox → use Radio
Tel → use Number or Text
Time → use DateTime with sub-type time
Toggle → use Checkbox with display: toggle
Url → use Link
Also, the property trim will be removed for all field types. Trimming will be enabled by default.
Implement new field types
Implement changes to field types
Auto-trim fields
Add deprecation note to docs
The text was updated successfully, but these errors were encountered:
To reduce confusion between TCA types and Content Blocks's field types, we exchanged with the people refactoring the TCA field types for TYPO3 version 12. Following field types will be removed for the content blocks:
Date
→ useDateTime
with sub-typedate
Image
→ useFile
with sub-typeimage
Integer
→ useNumber
with formatint
Money
→ useNumber
with formatdouble
MultiSelect
→ useSelect
withmaxItems
> 1Percent
→ useNumber
(now has slider options)Radiobox
→ useRadio
Tel
→ useNumber
orText
Time
→ useDateTime
with sub-typetime
Toggle
→ useCheckbox
withdisplay: toggle
Url
→ useLink
Also, the property
trim
will be removed for all field types. Trimming will be enabled by default.The text was updated successfully, but these errors were encountered: