Initial commit

This commit is contained in:
2025-07-15 23:39:10 +02:00
parent 1d3986a901
commit fb14214612
181 changed files with 31070 additions and 50 deletions

15
assets/js/idb_stores.js Normal file
View File

@ -0,0 +1,15 @@
import {Store, Index} from "./Classes/Store";
export const IDB_stores = {
ProfileStore: new Store("profile", false, "slug", [
new Index("isActive", false)
]),
RegionStore: new Store("region", false, "slug"),
FilterStore: new Store("filter", false, ["region", "slug"], [
new Index("region", false)
]),
NodeStore: new Store("node", false, ["profile", "domId"], [
new Index("region", false)
]),
};