feat(views/table): insert column to the right

This commit is contained in:
Elian Doran
2025-07-14 20:42:37 +03:00
parent e3d306cac3
commit cf31367acd
3 changed files with 20 additions and 1 deletions

View File

@@ -29,6 +29,7 @@ import type { CKTextEditor } from "@triliumnext/ckeditor5";
import type CodeMirror from "@triliumnext/codemirror";
import { StartupChecks } from "./startup_checks.js";
import type { CreateNoteOpts } from "../services/note_create.js";
import { ColumnComponent } from "tabulator-tables";
interface Layout {
getRootWidget: (appContext: AppContext) => RootWidget;
@@ -282,6 +283,10 @@ export type CommandMappings = {
customOpts: CreateNoteOpts;
parentNotePath?: string;
};
addNoteListItem: CommandData & {
referenceColumn?: ColumnComponent;
direction?: "before" | "after";
};
buildTouchBar: CommandData & {
TouchBar: typeof TouchBar;