minusblock
This commit is contained in:
parent
5775ab3a91
commit
a30184d5a9
5 changed files with 76 additions and 0 deletions
|
|
@ -262,6 +262,43 @@ export interface Page {
|
||||||
blockName?: string | null;
|
blockName?: string | null;
|
||||||
blockType: 'skillsMarquee';
|
blockType: 'skillsMarquee';
|
||||||
}
|
}
|
||||||
|
| {
|
||||||
|
columns?:
|
||||||
|
| {
|
||||||
|
title: string;
|
||||||
|
color?: ('gray' | 'blue' | 'green' | 'amber' | 'red' | 'purple' | 'teal') | null;
|
||||||
|
cards?:
|
||||||
|
| {
|
||||||
|
title: string;
|
||||||
|
subtitle?: string | null;
|
||||||
|
id?: string | null;
|
||||||
|
}[]
|
||||||
|
| null;
|
||||||
|
id?: string | null;
|
||||||
|
}[]
|
||||||
|
| null;
|
||||||
|
id?: string | null;
|
||||||
|
blockName?: string | null;
|
||||||
|
blockType: 'kanbanColor';
|
||||||
|
}
|
||||||
|
| {
|
||||||
|
rows?:
|
||||||
|
| {
|
||||||
|
label: string;
|
||||||
|
cards?:
|
||||||
|
| {
|
||||||
|
title: string;
|
||||||
|
subtitle?: string | null;
|
||||||
|
id?: string | null;
|
||||||
|
}[]
|
||||||
|
| null;
|
||||||
|
id?: string | null;
|
||||||
|
}[]
|
||||||
|
| null;
|
||||||
|
id?: string | null;
|
||||||
|
blockName?: string | null;
|
||||||
|
blockType: 'kanbanHori';
|
||||||
|
}
|
||||||
)[];
|
)[];
|
||||||
meta?: {
|
meta?: {
|
||||||
title?: string | null;
|
title?: string | null;
|
||||||
|
|
@ -1186,6 +1223,45 @@ export interface PagesSelect<T extends boolean = true> {
|
||||||
id?: T;
|
id?: T;
|
||||||
blockName?: T;
|
blockName?: T;
|
||||||
};
|
};
|
||||||
|
kanbanColor?:
|
||||||
|
| T
|
||||||
|
| {
|
||||||
|
columns?:
|
||||||
|
| T
|
||||||
|
| {
|
||||||
|
title?: T;
|
||||||
|
color?: T;
|
||||||
|
cards?:
|
||||||
|
| T
|
||||||
|
| {
|
||||||
|
title?: T;
|
||||||
|
subtitle?: T;
|
||||||
|
id?: T;
|
||||||
|
};
|
||||||
|
id?: T;
|
||||||
|
};
|
||||||
|
id?: T;
|
||||||
|
blockName?: T;
|
||||||
|
};
|
||||||
|
kanbanHori?:
|
||||||
|
| T
|
||||||
|
| {
|
||||||
|
rows?:
|
||||||
|
| T
|
||||||
|
| {
|
||||||
|
label?: T;
|
||||||
|
cards?:
|
||||||
|
| T
|
||||||
|
| {
|
||||||
|
title?: T;
|
||||||
|
subtitle?: T;
|
||||||
|
id?: T;
|
||||||
|
};
|
||||||
|
id?: T;
|
||||||
|
};
|
||||||
|
id?: T;
|
||||||
|
blockName?: T;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
meta?:
|
meta?:
|
||||||
| T
|
| T
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue