Revert "Merge pull request #1234 from TriliumNext/feature/task_list"

This reverts commit 58a8821c22, reversing
changes made to 50d491b432.
This commit is contained in:
Elian Doran
2025-03-06 23:52:01 +02:00
parent ee7b97ae56
commit 00e576b052
26 changed files with 15 additions and 649 deletions

View File

@@ -28,8 +28,7 @@ const NOTE_TYPE_ICONS = {
doc: "bx bxs-file-doc",
contentWidget: "bx bxs-widget",
mindMap: "bx bx-sitemap",
geoMap: "bx bx-map-alt",
taskList: "bx bx-list-check"
geoMap: "bx bx-map-alt"
};
/**
@@ -37,25 +36,7 @@ const NOTE_TYPE_ICONS = {
* end user. Those types should be used only for checking against, they are
* not for direct use.
*/
export type NoteType =
| "file"
| "image"
| "search"
| "noteMap"
| "launcher"
| "doc"
| "contentWidget"
| "text"
| "relationMap"
| "render"
| "canvas"
| "mermaid"
| "book"
| "webView"
| "code"
| "mindMap"
| "geoMap"
| "taskList";
export type NoteType = "file" | "image" | "search" | "noteMap" | "launcher" | "doc" | "contentWidget" | "text" | "relationMap" | "render" | "canvas" | "mermaid" | "book" | "webView" | "code" | "mindMap" | "geoMap";
export interface NotePathRecord {
isArchived: boolean;