file download component

This commit is contained in:
Julian Krauser 2025-01-18 11:30:46 +01:00
parent 2189a3d33b
commit 9d81666a3c
14 changed files with 75 additions and 20 deletions

View file

@ -4,6 +4,7 @@ import type DynamicZoneEmphasiseArticle from "./dynamicZoneEmphasiseArticle";
import type DynamicZoneFullImage from "./dynamicZoneFullImage";
import type DynamicZoneFullText from "./dynamicZoneFullText";
import type DynamicZoneGallery from "./dynamicZoneGallery";
import type DynamicZoneFileDownload from "./dynamicZoneFileDownload";
import type SharedList from "./sharedList";
export default interface BaseComponent {
@ -18,7 +19,8 @@ export type ComponentNames =
| "dynamic-zone.full-image"
| "dynamic-zone.emphasise-article"
| "dynamic-zone.dual-column-text"
| "dynamic-zone.column-image-text";
| "dynamic-zone.column-image-text"
| "dynamic-zone.file-download";
export type ComponentTypes =
| SharedList
@ -27,4 +29,5 @@ export type ComponentTypes =
| DynamicZoneFullImage
| DynamicZoneEmphasiseArticle
| DynamicZoneDualColumnText
| DynamicZoneColumnImageText;
| DynamicZoneColumnImageText
| DynamicZoneFileDownload;