diff --git a/packages/docs/content/docs/widget-file.mdx b/packages/docs/content/docs/widget-file.mdx
index b06fc3c8..e63878da 100644
--- a/packages/docs/content/docs/widget-file.mdx
+++ b/packages/docs/content/docs/widget-file.mdx
@@ -14,20 +14,11 @@ The file widget allows editors to upload a file or select an existing one from t
For common options, see [Common widget options](/docs/widgets#common-widget-options).
-| Name | Type | Default | Description |
-| ------------- | --------------------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| default | string | `null` | _Optional_. The default value for the field. Accepts a datetime string, or an empty string to accept blank input; otherwise defaults to current datetime |
-| media_library | Media Library Options | `{}` | _Optional_. Media library settings to apply when a media library is opened by the current widget. See [Media Library Options](#media-library-options) |
-| media_folder | string | | _Optional_. Specifies the folder path where uploaded files should be saved, relative to the base of the repo |
-| public_folder | string | | _Optional_. Specifies the folder path where the files uploaded by the media library will be accessed, relative to the base of the built site |
-
-### Media Library Options
-
-| Name | Type | Default | Description |
-| -------------- | ---------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------- |
-| allow_multiple | boolean | `true` | _Optional_. When set to `false`, prevents multiple selection for any media library extension, but must be supported by the extension in use |
-| config | string | `{}` | _Optional_. A configuration object that will be passed directly to the media library being used - available options are determined by the library |
-| choose_url | string
\| boolean | `true` | _Optional_. When set to `false`, the "Insert from URL" button will be hidden |
+| Name | Type | Default | Description |
+| ------------- | ------ | ------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
+| default | string | `null` | _Optional_. The default value for the field. Accepts a string. |
+| media_folder | string | | _Optional_. Specifies the folder path where uploaded files should be saved, relative to the base of the repo |
+| public_folder | string | | _Optional_. Specifies the folder path where the files uploaded by the media library will be accessed, relative to the base of the built site |
## Example
@@ -37,10 +28,6 @@ name: manual_pdf
label: Manual PDF
widget: file
default: /uploads/general-manual.pdf
-media_library:
- choose_url: true
- config:
- multiple: true
```
```js
@@ -48,12 +35,6 @@ name: 'manual_pdf',
label: 'Manual PDF',
widget: 'file',
default: '/uploads/general-manual.pdf',
-media_library: {
- choose_url: true,
- config: {
- multiple: true,
- },
-},
```
diff --git a/packages/docs/content/docs/widget-image.mdx b/packages/docs/content/docs/widget-image.mdx
index 490c203a..c73241ee 100644
--- a/packages/docs/content/docs/widget-image.mdx
+++ b/packages/docs/content/docs/widget-image.mdx
@@ -14,20 +14,11 @@ The file widget allows editors to upload a file or select an existing one from t
For common options, see [Common widget options](/docs/widgets#common-widget-options).
-| Name | Type | Default | Description |
-| ------------- | --------------------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| default | string | `null` | _Optional_. The default value for the field. Accepts a datetime string, or an empty string to accept blank input; otherwise defaults to current datetime |
-| media_library | Media Library Options | `{}` | _Optional_. Media library settings to apply when a media library is opened by the current widget. See [Media Library Options](#media-library-options) |
-| media_folder | string | | _Optional_. Specifies the folder path where uploaded files should be saved, relative to the base of the repo |
-| public_folder | string | | _Optional_. Specifies the folder path where the files uploaded by the media library will be accessed, relative to the base of the built site |
-
-### Media Library Options
-
-| Name | Type | Default | Description |
-| -------------- | ---------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------- |
-| allow_multiple | boolean | `true` | _Optional_. When set to `false`, prevents multiple selection for any media library extension, but must be supported by the extension in use |
-| config | string | `{}` | _Optional_. A configuration object that will be passed directly to the media library being used - available options are determined by the library |
-| choose_url | string
\| boolean | `true` | _Optional_. When set to `false`, the "Insert from URL" button will be hidden |
+| Name | Type | Default | Description |
+| ------------- | ------ | ------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
+| default | string | `null` | _Optional_. The default value for the field. Accepts a string. |
+| media_folder | string | | _Optional_. Specifies the folder path where uploaded files should be saved, relative to the base of the repo |
+| public_folder | string | | _Optional_. Specifies the folder path where the files uploaded by the media library will be accessed, relative to the base of the built site |
## Example
@@ -37,10 +28,6 @@ name: thumbnail
label: Featured Image
widget: image
default: /uploads/chocolate-dogecoin.jpg
-media_library:
- choose_url: true
- config:
- multiple: true
```
```js
@@ -48,12 +35,6 @@ name: 'thumbnail',
label: 'Featured Image',
widget: 'image',
default: '/uploads/chocolate-dogecoin.jpg',
-media_library: {
- choose_url: true,
- config: {
- multiple: true,
- },
-},
```