UMB_ALLOWED_DOCUMENT_TYPES_MODAL

This commit is contained in:
Niels Lyngsø
2023-03-23 21:28:22 +01:00
parent c7a77c23e2
commit ac88e200d9
3 changed files with 7 additions and 4 deletions

View File

@@ -0,0 +1,17 @@
import { UmbModalToken } from '@umbraco-cms/backoffice/modal';
export interface UmbAllowedDocumentTypesModalData {
key: string | null;
}
export interface UmbAllowedDocumentTypesModalResult {
documentTypeKey: string;
}
export const UMB_ALLOWED_DOCUMENT_TYPES_MODAL = new UmbModalToken<
UmbAllowedDocumentTypesModalData,
UmbAllowedDocumentTypesModalResult
>('Umb.Modal.AllowedDocumentTypes', {
type: 'sidebar',
size: 'small',
});