v3.0.0-beta.102 (2024-09-09)
🚀 Features
🐛 Bug Fixes
- beforeDuplicate localized blocks and arrays (#8144) (d267cad)
- richtext-lexical: indent regression (#8138) (fa38dfc)
⚠️ BREAKING CHANGES
-
explicitly types field components (#8136) (8e1a5c8)
We are no longer exporting
TextFieldProps
etc. for each field type.
Instead, we now export props for each client/server environment
explicitly. If you were previously importing one of these types into
your custom component, simply change the import name to reflect your
environment.Old:
import type { TextFieldProps } from 'payload'
New:
import type { TextFieldClientProps, TextFieldServerProps } from 'payload'
🤝 Contributors
- Dan Ribbens (@DanRibbens)
- Germán Jabloñski (@GermanJablo)
- Jacob Fletcher (@jacobsfletch)