feat(views/table): delete column definition as well

This commit is contained in:
Elian Doran
2025-07-16 21:40:01 +03:00
parent 66486541fe
commit e7f47a0663
4 changed files with 45 additions and 41 deletions

View File

@@ -288,6 +288,9 @@ export type CommandMappings = {
referenceColumn?: ColumnComponent;
direction?: "before" | "after";
};
deleteTableColumn: CommandData & {
columnToDelete?: ColumnComponent;
};
buildTouchBar: CommandData & {
TouchBar: typeof TouchBar;