diff --git a/src/components/icons/index.ts b/src/components/icons/index.ts new file mode 100644 index 0000000..168ff74 --- /dev/null +++ b/src/components/icons/index.ts @@ -0,0 +1 @@ +export * from './EQCIcons' diff --git a/src/components/index.ts b/src/components/index.ts index ecc4fc2..b65dcf9 100644 --- a/src/components/index.ts +++ b/src/components/index.ts @@ -1,2 +1,3 @@ export * from './GenerateBlocks' export * from './blocks' +export * from './icons' diff --git a/src/models/datasets.ts b/src/models/datasets.ts index a3c7bec..5b0ad10 100644 --- a/src/models/datasets.ts +++ b/src/models/datasets.ts @@ -5,6 +5,7 @@ export enum LayoutBlockTypes { 'markdown', 'html', 'section', + 'related_entries', 'table', 'thumb-markdown', 'checkitem', @@ -59,6 +60,12 @@ export interface SectionBlock extends GenericBlock { )[] } +export interface RelatedBlock extends GenericBlock { + title: string + open: boolean + rel: string; +} + export type ImageThumb = { url: string alt: string