comparison web/TiledHome.ts @ 2407:6697a68800d2

junk merge just to avoid two heads
author drewp@bigasterisk.com
date Fri, 17 May 2024 17:48:26 -0700
parents 9cbc93f80b05 69ca2b2fc133
children 66a4db80ce6e
comparison
equal deleted inserted replaced
2404:9cbc93f80b05 2407:6697a68800d2
15 const config: FlexLayout.IJsonModel = { 15 const config: FlexLayout.IJsonModel = {
16 global: { 16 global: {
17 tabEnableRename: false, 17 tabEnableRename: false,
18 }, 18 },
19 borders: [], 19 borders: [],
20 layout: { 20 layout: fullLayout(persistedLayout) as FlexLayout.IJsonRowNode,
21 type: "row",
22 weight: 100,
23 children: [
24 {
25 type: "tabset",
26 weight: 50,
27 children: [{ type: "tab", name: "devsettings", component: "light9-device-settings" }],
28 },
29 {
30 type: "tabset",
31 weight: 50,
32 children: [{ type: "tab", name: "collector", component: "light9-collector-ui" }],
33 },
34 ],
35 },
36 }; 21 };
37 22
38 // see https://github.com/lit/lit/tree/main/packages/labs/react 23 // see https://github.com/lit/lit/tree/main/packages/labs/react
39 24
40 // Store flexlayout panels in per-browser localstorage. 25 // Store flexlayout panels in per-browser localstorage.