v3.0.0-beta.102
Version v3.0.0-beta.102Major ReleasePre-release
Release Notes
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
TextFieldPropsetc. 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:
```tsx
import type { TextFieldProps } from 'payload'
```
New:
```tsx
import type { TextFieldClientProps, TextFieldServerProps } from 'payload'
```
š¤ Contributors
- Dan Ribbens (@DanRibbens)
- GermƔn JabloƱski (@GermanJablo)
- Jacob Fletcher (@jacobsfletch)