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

@@ -273,7 +273,12 @@ export function reactive<T extends object>(obj: T | Proxy<T>): T | Proxy<T>
const result = Reflect.ownKeys(target);
track(target, SYMBOLS.ITERATE);
return result;
}
},
defineProperty: (target, property, attributes) => {
const result = Reflect.defineProperty(target, property, attributes);
trigger(target, SYMBOLS.ITERATE);
return result;
},
}) as Proxy<T>;
_reactiveCache.set(obj, proxy);