v3.0.0-beta.102

Version v3.0.0-beta.102Major ReleasePre-release
Released:

September 9, 2024

Type:

Contains breaking changes

GitHub:View Release

Release Notes

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:
    ```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)