+
+ ${when(
+ this._acceptedTypes.length,
+ () => html`
+
+
+ ${this._acceptedTypes.join(', ')}
+
+ `,
+ )}
+ ${when(
+ this._disallowedTypes.length,
+ () => html`
+
+
+ ${this._disallowedTypes.join(', ')}
+
+ `,
+ )}
+ ${when(
+ this._maxFileSize,
+ () => html`
+
+ ${this.localize.term('media_maxFileSize')}
+ ${formatBytes(this._maxFileSize!, { decimals: 2 })}.
+
+ `,
+ )}
+
+ `;
+ }
+
+ override render() {
+ return html`${this.#renderAcceptedTypes()} ${super.render()}`;
+ }
+
+ static override readonly styles = [
+ css`
+ #notice {
+ --uui-box-default-padding: var(--uui-size-space-4);
+ --uui-box-header-padding: var(--uui-size-space-4);
+ --uui-color-divider-standalone: var(--uui-color-warning-standalone);
+
+ border: 1px solid var(--uui-color-divider-standalone);
+ background-color: var(--uui-color-warning);
+ color: var(--uui-color-warning-contrast);
+ margin-bottom: var(--uui-size-layout-1);
+
+ p {
+ margin: 0.5rem 0;
+ }
+ }
+ `,
+ ];
+}
+
+export default UmbPropertyEditorUIAcceptedUploadTypesElement;
+
+declare global {
+ interface HTMLElementTagNameMap {
+ 'umb-property-editor-ui-accepted-upload-types': UmbPropertyEditorUIAcceptedUploadTypesElement;
+ }
+}
diff --git a/src/Umbraco.Web.UI.Client/src/packages/property-editors/accepted-types/property-editor-ui-accepted-upload-types.stories.ts b/src/Umbraco.Web.UI.Client/src/packages/property-editors/accepted-types/property-editor-ui-accepted-upload-types.stories.ts
new file mode 100644
index 0000000000..b2803dff05
--- /dev/null
+++ b/src/Umbraco.Web.UI.Client/src/packages/property-editors/accepted-types/property-editor-ui-accepted-upload-types.stories.ts
@@ -0,0 +1,15 @@
+import type { UmbPropertyEditorUIAcceptedUploadTypesElement } from './property-editor-ui-accepted-upload-types.element.js';
+import type { Meta, StoryFn } from '@storybook/web-components';
+import { html } from '@umbraco-cms/backoffice/external/lit';
+
+import './property-editor-ui-accepted-types.element.js';
+
+export default {
+ title: 'Property Editor UIs/Accepted Types',
+ component: 'umb-property-editor-ui-accepted-types',
+ id: 'umb-property-editor-ui-accepted-types',
+} as Meta;
+
+export const AAAOverview: StoryFn