Skip to content

v3.0.0-beta.102

Pre-release
Pre-release
Compare
Choose a tag to compare
@denolfe denolfe released this 09 Sep 21:14
· 720 commits to main since this release
df023a5

v3.0.0-beta.102 (2024-09-09)

🚀 Features

🐛 Bug Fixes

⚠️ 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