feat(bases): add kanban view config fields to schema

This commit is contained in:
Philipinho
2026-05-24 12:26:36 +01:00
parent 3c62331826
commit a60febc92f
2 changed files with 14 additions and 0 deletions
@@ -154,6 +154,8 @@ export type SearchSpec = {
mode?: 'trgm' | 'fts';
};
export const NO_VALUE_CHOICE_ID = '__no_value';
export type ViewConfig = {
sorts?: ViewSortConfig[];
filter?: FilterGroup;
@@ -161,6 +163,10 @@ export type ViewConfig = {
hiddenPropertyIds?: string[];
propertyWidths?: Record<string, number>;
propertyOrder?: string[];
// Kanban
groupByPropertyId?: string;
hiddenChoiceIds?: string[];
choiceOrder?: string[];
};
export type IBaseView = {