Change shared files naming. Rework tree structure and item management rendering.

This commit is contained in:
Clément Pons
2026-01-20 18:14:07 +01:00
parent 1a71637ebb
commit 777443471c
66 changed files with 984 additions and 447 deletions

View File

@@ -1,10 +1,10 @@
import { dom, icon, type NodeChildren, type Node, div, type Class } from "#shared/dom.util";
import { dom, icon, type NodeChildren, type Node, div, type Class } from "#shared/dom";
import { parseURL } from 'ufo';
import render from "#shared/markdown.util";
import { Canvas } from "#shared/canvas.util";
import { Content, iconByType, type LocalContent } from "#shared/content.util";
import { unifySlug } from "#shared/general.util";
import { async, floater } from "./components.util";
import render from "#shared/markdown";
import { Canvas } from "#shared/canvas";
import { Content, iconByType, type LocalContent } from "#shared/content";
import { unifySlug } from "#shared/general";
import { async, floater } from "./components";
export type CustomProse = (properties: any, children: NodeChildren) => Node;