You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(ui): disableBulkEdit on ui fields, defaults to true (#8540)
Fixes#8534
UI fields are now excluded by default from the bulk edit view fields
options.
If you need to have the UI field there, you can provide:
```ts
admin: {
disableBulkEdit: false
}
```
|**`condition`**| Programmatically show / hide fields based on other fields. [More details](../admin/fields#conditional-logic). |
46
-
|**`components`**| All Field Components can be swapped out for [Custom Components](../admin/components) that you define. [More details](../admin/fields). |
47
-
|**`description`**| Helper text to display alongside the field to provide more information for the editor. [More details](../admin/fields#description). |
|**`condition`**| Programmatically show / hide fields based on other fields. [More details](../admin/fields#conditional-logic). |
46
+
|**`components`**| All Field Components can be swapped out for [Custom Components](../admin/components) that you define. [More details](../admin/fields). |
47
+
|**`description`**| Helper text to display alongside the field to provide more information for the editor. [More details](../admin/fields#description). |
48
48
|**`position`**| Specify if the field should be rendered in the sidebar by defining `position: 'sidebar'`. |
49
49
|**`width`**| Restrict the width of a field. You can pass any string-based value here, be it pixels, percentages, etc. This property is especially useful when fields are nested within a `Row` type where they can be organized horizontally. |
50
-
|**`style`**|[CSS Properties](https://developer.mozilla.org/en-US/docs/Web/CSS) to inject into the root element of the field. |
51
-
|**`className`**| Attach a [CSS class attribute](https://developer.mozilla.org/en-US/docs/Web/CSS/Class_selectors) to the root DOM element of a field. |
50
+
|**`style`**|[CSS Properties](https://developer.mozilla.org/en-US/docs/Web/CSS) to inject into the root element of the field.|
51
+
|**`className`**| Attach a [CSS class attribute](https://developer.mozilla.org/en-US/docs/Web/CSS/Class_selectors) to the root DOM element of a field. |
52
52
|**`readOnly`**| Setting a field to `readOnly` has no effect on the API whatsoever but disables the admin component's editability to prevent editors from modifying the field's value. |
53
-
|**`disabled`**| If a field is `disabled`, it is completely omitted from the [Admin Panel](../admin/overview). |
54
-
|**`disableBulkEdit`**| Set `disableBulkEdit` to `true` to prevent fields from appearing in the select options when making edits for multiple documents. |
53
+
|**`disabled`**| If a field is `disabled`, it is completely omitted from the [Admin Panel](../admin/overview). |
54
+
|**`disableBulkEdit`**| Set `disableBulkEdit` to `true` to prevent fields from appearing in the select options when making edits for multiple documents. Defaults to `true` for UI fields.|
55
55
|**`disableListColumn`**| Set `disableListColumn` to `true` to prevent fields from appearing in the list view column selector. |
56
56
|**`disableListFilter`**| Set `disableListFilter` to `true` to prevent fields from appearing in the list view filter options. |
57
-
|**`hidden`**| Will transform the field into a `hidden` input type. Its value will still submit with requests in the Admin Panel, but the field itself will not be visible to editors. |
57
+
|**`hidden`**| Will transform the field into a `hidden` input type. Its value will still submit with requests in the Admin Panel, but the field itself will not be visible to editors. |
0 commit comments