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
|**`avatar`**| Set account profile picture. Options: `gravatar`, `default` or a custom React component. |
99
99
|**`autoLogin`**| Used to automate log-in for dev and demonstration convenience. [More details](../authentication/overview). |
100
-
|**`buildPath`**| Specify an absolute path for where to store the built Admin bundle used in production. Defaults to `path.resolve(process.cwd(), 'build')`. |
101
100
|**`components`**| Component overrides that affect the entirety of the Admin Panel. [More details](../custom-components/overview). |
102
101
|**`custom`**| Any custom properties you wish to pass to the Admin Panel. |
103
102
|**`dateFormat`**| The date format that will be used for all dates within the Admin Panel. Any valid [date-fns](https://date-fns.org/) format pattern can be used. |
|**`columns`**| The current state of columns including their active status and configuration |
988
+
|**`LinkedCellOverride`**| A component override for linked cells in the table |
989
+
|**`moveColumn`**| A method to reorder columns. Accepts `{ fromIndex: number, toIndex: number }` as arguments |
990
+
|**`resetColumnsState`**| A method to reset columns back to their default configuration as defined in the collection config |
991
+
|**`setActiveColumns`**| A method to set specific columns to active state while preserving the existing column order. Accepts an array of column names to activate |
992
+
|**`toggleColumn`**| A method to toggle a single column's visibility. Accepts a column name as string |
|`SaveButton`| Replace the default Save Button within the Edit View. [Drafts](../versions/drafts) must be disabled. [More details](../custom-components/edit-view#savebutton). |
200
-
|`SaveDraftButton`| Replace the default Save Draft Button within the Edit View. [Drafts](../versions/drafts) must be enabled and autosave must be disabled. [More details](../custom-components/edit-view#savedraftbutton). |
201
-
|`PublishButton`| Replace the default Publish Button within the Edit View. [Drafts](../versions/drafts) must be enabled. [More details](../custom-components/edit-view#publishbutton). |
202
-
|`PreviewButton`| Replace the default Preview Button within the Edit View. [Preview](../admin/preview) must be enabled. [More details](../custom-components/edit-view#previewbutton). |
203
-
|`Upload`| Replace the default Upload component within the Edit View. [Upload](../upload/overview) must be enabled. [More details](../custom-components/edit-view#upload). |
|`beforeDocumentControls`| Inject custom components before the Save / Publish buttons. [More details](../custom-components/edit-view#beforedocumentcontrols). |
200
+
|`editMenuItems`| Inject custom components within the 3-dot menu dropdown located in the document controls bar. [More details](../custom-components/edit-view#editmenuitems). |
201
+
|`SaveButton`| Replace the default Save Button within the Edit View. [Drafts](../versions/drafts) must be disabled. [More details](../custom-components/edit-view#savebutton). |
202
+
|`SaveDraftButton`| Replace the default Save Draft Button within the Edit View. [Drafts](../versions/drafts) must be enabled and autosave must be disabled. [More details](../custom-components/edit-view#savedraftbutton). |
203
+
|`PublishButton`| Replace the default Publish Button within the Edit View. [Drafts](../versions/drafts) must be enabled. [More details](../custom-components/edit-view#publishbutton). |
204
+
|`PreviewButton`| Replace the default Preview Button within the Edit View. [Preview](../admin/preview) must be enabled. [More details](../custom-components/edit-view#previewbutton). |
205
+
|`Upload`| Replace the default Upload component within the Edit View. [Upload](../upload/overview) must be enabled. [More details](../custom-components/edit-view#upload). |
204
206
205
207
<Bannertype="success">
206
208
**Note:** For details on how to build Custom Components, see [Building Custom
0 commit comments