Paul
2bc8666bff
feat(plugin-search)!: make search collection fields override into a function that provides defaultFields inline with other plugins ( #7095 )
...
searchPlugin's searchOverrides for the collection now takes in a fields
function instead of array similar to other plugins and patterns we use
to allow you to map over existing fields as well if needed.
```ts
// before
searchPlugin({
searchOverrides: {
slug: 'search-results',
fields: [
{
name: 'excerpt',
type: 'textarea',
admin: {
position: 'sidebar',
},
},
]
},
}),
// current
searchPlugin({
searchOverrides: {
slug: 'search-results',
fields: ({ defaultFields }) => [
...defaultFields,
{
name: 'excerpt',
type: 'textarea',
admin: {
position: 'sidebar',
},
},
]
},
}),
```
2024-07-10 15:22:12 +00:00
..
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 14:33:38 +00:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 14:33:38 +00:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-05-12 21:28:19 -04:00
2024-07-09 14:33:38 +00:00
2024-05-25 21:57:32 +00:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-10 15:22:12 +00:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2024-07-09 09:50:37 -04:00
2023-09-07 15:48:48 +02:00
2024-05-25 15:45:05 +00:00
2024-07-09 14:33:38 +00:00
2023-09-01 14:45:41 -04:00
2024-03-07 11:33:46 -05:00
2024-04-29 23:23:09 -04:00
2024-07-09 09:50:37 -04:00
2024-05-13 16:46:43 -04:00
2024-06-17 14:25:36 -04:00
2024-06-17 14:25:36 -04:00
2024-06-05 10:55:02 -04:00
2024-06-05 10:55:02 -04:00
2024-06-05 10:55:02 -04:00
2024-03-19 11:31:50 -04:00
2024-07-09 14:33:38 +00:00
2024-05-01 17:35:41 -04:00
2024-05-17 12:48:37 -04:00
2024-04-09 09:34:11 -04:00
2024-04-06 15:06:04 -04:00
2024-06-17 14:25:36 -04:00
2024-06-10 22:03:12 +00:00
2024-03-14 23:53:47 -04:00
2024-07-09 09:50:37 -04:00
2024-05-13 01:37:52 +00:00