Create the initial version of the TableManager class for configuring settings
This commit is contained in:
parent
4bfce858ef
commit
8a2d946b63
21 changed files with 718 additions and 115 deletions
|
|
@ -1,11 +1,12 @@
|
|||
// Apps
|
||||
import { StatsViewer } from "./Apps/StatsViewer.mjs";
|
||||
import { TableCreator } from "./Apps/TableCreator.mjs";
|
||||
import { TableManager } from "./Apps/TableManager.mjs";
|
||||
import { TestApp } from "./Apps/TestApp.mjs";
|
||||
|
||||
// Utils
|
||||
import { validateBucketConfig, validateValue } from "./utils/buckets.mjs";
|
||||
import { filterPrivateRows } from "./utils/privacy.mjs";
|
||||
import { validateValue } from "./utils/validateValue.mjs";
|
||||
|
||||
const { deepFreeze } = foundry.utils;
|
||||
|
||||
|
|
@ -18,10 +19,12 @@ Object.defineProperty(
|
|||
TestApp,
|
||||
StatsViewer,
|
||||
TableCreator,
|
||||
TableManager,
|
||||
},
|
||||
utils: {
|
||||
filterPrivateRows,
|
||||
validateValue,
|
||||
validateBucketConfig,
|
||||
},
|
||||
}),
|
||||
writable: false,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue