darabos commited on
Commit
b8b73b2
·
1 Parent(s): 76e9e8e

Basic directory browser and pages.

Browse files
.gitignore CHANGED
@@ -9,3 +9,6 @@
9
  *.sln
10
  *.sw?
11
  __pycache__
 
 
 
 
9
  *.sln
10
  *.sw?
11
  __pycache__
12
+
13
+ # LynxKite data directory.
14
+ /data
server/basic_ops.py CHANGED
@@ -38,5 +38,4 @@ def view_table(dfs: ops.Bundle) -> 'table_view':
38
  } for name, df in dfs.dfs.items() },
39
  'edges': dfs.edges,
40
  }
41
- print(v)
42
  return v
 
38
  } for name, df in dfs.dfs.items() },
39
  'edges': dfs.edges,
40
  }
 
41
  return v
server/main.py CHANGED
@@ -1,5 +1,7 @@
1
  from typing import Optional
 
2
  import fastapi
 
3
  import pydantic
4
  import traceback
5
  from . import ops
@@ -82,3 +84,18 @@ def save(ws: Workspace):
82
  execute(ws)
83
  print('exec done', ws)
84
  return ws
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  from typing import Optional
2
+ import dataclasses
3
  import fastapi
4
+ import pathlib
5
  import pydantic
6
  import traceback
7
  from . import ops
 
84
  execute(ws)
85
  print('exec done', ws)
86
  return ws
87
+
88
+ DATA_PATH = pathlib.Path.cwd() / 'data'
89
+
90
+ @dataclasses.dataclass(order=True)
91
+ class DirectoryEntry:
92
+ name: str
93
+ type: str
94
+
95
+ @app.get("/api/dir/list")
96
+ def list_dir(path: str):
97
+ path = DATA_PATH / path
98
+ assert path.is_relative_to(DATA_PATH)
99
+ return sorted([
100
+ DirectoryEntry(p.relative_to(DATA_PATH), 'directory' if p.is_dir() else 'workspace')
101
+ for p in path.iterdir()])
web/index.html CHANGED
@@ -2,7 +2,7 @@
2
  <html lang="en">
3
  <head>
4
  <meta charset="UTF-8" />
5
- <link rel="icon" href="/favicon.ico" />
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
  <title>Svelte Flow Starter</title>
8
  </head>
 
2
  <html lang="en">
3
  <head>
4
  <meta charset="UTF-8" />
5
+ <link rel="icon" type="image/png" href="/public/favicon.ico" />
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
  <title>Svelte Flow Starter</title>
8
  </head>
web/package-lock.json CHANGED
@@ -36,70 +36,6 @@
36
  "node": ">=6.0.0"
37
  }
38
  },
39
- "node_modules/@esbuild/aix-ppc64": {
40
- "version": "0.20.2",
41
- "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz",
42
- "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==",
43
- "cpu": [
44
- "ppc64"
45
- ],
46
- "dev": true,
47
- "optional": true,
48
- "os": [
49
- "aix"
50
- ],
51
- "engines": {
52
- "node": ">=12"
53
- }
54
- },
55
- "node_modules/@esbuild/android-arm": {
56
- "version": "0.20.2",
57
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz",
58
- "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==",
59
- "cpu": [
60
- "arm"
61
- ],
62
- "dev": true,
63
- "optional": true,
64
- "os": [
65
- "android"
66
- ],
67
- "engines": {
68
- "node": ">=12"
69
- }
70
- },
71
- "node_modules/@esbuild/android-arm64": {
72
- "version": "0.20.2",
73
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz",
74
- "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==",
75
- "cpu": [
76
- "arm64"
77
- ],
78
- "dev": true,
79
- "optional": true,
80
- "os": [
81
- "android"
82
- ],
83
- "engines": {
84
- "node": ">=12"
85
- }
86
- },
87
- "node_modules/@esbuild/android-x64": {
88
- "version": "0.20.2",
89
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz",
90
- "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==",
91
- "cpu": [
92
- "x64"
93
- ],
94
- "dev": true,
95
- "optional": true,
96
- "os": [
97
- "android"
98
- ],
99
- "engines": {
100
- "node": ">=12"
101
- }
102
- },
103
  "node_modules/@esbuild/darwin-arm64": {
104
  "version": "0.20.2",
105
  "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz",
@@ -116,294 +52,6 @@
116
  "node": ">=12"
117
  }
118
  },
119
- "node_modules/@esbuild/darwin-x64": {
120
- "version": "0.20.2",
121
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz",
122
- "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==",
123
- "cpu": [
124
- "x64"
125
- ],
126
- "dev": true,
127
- "optional": true,
128
- "os": [
129
- "darwin"
130
- ],
131
- "engines": {
132
- "node": ">=12"
133
- }
134
- },
135
- "node_modules/@esbuild/freebsd-arm64": {
136
- "version": "0.20.2",
137
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz",
138
- "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==",
139
- "cpu": [
140
- "arm64"
141
- ],
142
- "dev": true,
143
- "optional": true,
144
- "os": [
145
- "freebsd"
146
- ],
147
- "engines": {
148
- "node": ">=12"
149
- }
150
- },
151
- "node_modules/@esbuild/freebsd-x64": {
152
- "version": "0.20.2",
153
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz",
154
- "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==",
155
- "cpu": [
156
- "x64"
157
- ],
158
- "dev": true,
159
- "optional": true,
160
- "os": [
161
- "freebsd"
162
- ],
163
- "engines": {
164
- "node": ">=12"
165
- }
166
- },
167
- "node_modules/@esbuild/linux-arm": {
168
- "version": "0.20.2",
169
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz",
170
- "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==",
171
- "cpu": [
172
- "arm"
173
- ],
174
- "dev": true,
175
- "optional": true,
176
- "os": [
177
- "linux"
178
- ],
179
- "engines": {
180
- "node": ">=12"
181
- }
182
- },
183
- "node_modules/@esbuild/linux-arm64": {
184
- "version": "0.20.2",
185
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz",
186
- "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==",
187
- "cpu": [
188
- "arm64"
189
- ],
190
- "dev": true,
191
- "optional": true,
192
- "os": [
193
- "linux"
194
- ],
195
- "engines": {
196
- "node": ">=12"
197
- }
198
- },
199
- "node_modules/@esbuild/linux-ia32": {
200
- "version": "0.20.2",
201
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz",
202
- "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==",
203
- "cpu": [
204
- "ia32"
205
- ],
206
- "dev": true,
207
- "optional": true,
208
- "os": [
209
- "linux"
210
- ],
211
- "engines": {
212
- "node": ">=12"
213
- }
214
- },
215
- "node_modules/@esbuild/linux-loong64": {
216
- "version": "0.20.2",
217
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz",
218
- "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==",
219
- "cpu": [
220
- "loong64"
221
- ],
222
- "dev": true,
223
- "optional": true,
224
- "os": [
225
- "linux"
226
- ],
227
- "engines": {
228
- "node": ">=12"
229
- }
230
- },
231
- "node_modules/@esbuild/linux-mips64el": {
232
- "version": "0.20.2",
233
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz",
234
- "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==",
235
- "cpu": [
236
- "mips64el"
237
- ],
238
- "dev": true,
239
- "optional": true,
240
- "os": [
241
- "linux"
242
- ],
243
- "engines": {
244
- "node": ">=12"
245
- }
246
- },
247
- "node_modules/@esbuild/linux-ppc64": {
248
- "version": "0.20.2",
249
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz",
250
- "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==",
251
- "cpu": [
252
- "ppc64"
253
- ],
254
- "dev": true,
255
- "optional": true,
256
- "os": [
257
- "linux"
258
- ],
259
- "engines": {
260
- "node": ">=12"
261
- }
262
- },
263
- "node_modules/@esbuild/linux-riscv64": {
264
- "version": "0.20.2",
265
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz",
266
- "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==",
267
- "cpu": [
268
- "riscv64"
269
- ],
270
- "dev": true,
271
- "optional": true,
272
- "os": [
273
- "linux"
274
- ],
275
- "engines": {
276
- "node": ">=12"
277
- }
278
- },
279
- "node_modules/@esbuild/linux-s390x": {
280
- "version": "0.20.2",
281
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz",
282
- "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==",
283
- "cpu": [
284
- "s390x"
285
- ],
286
- "dev": true,
287
- "optional": true,
288
- "os": [
289
- "linux"
290
- ],
291
- "engines": {
292
- "node": ">=12"
293
- }
294
- },
295
- "node_modules/@esbuild/linux-x64": {
296
- "version": "0.20.2",
297
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz",
298
- "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==",
299
- "cpu": [
300
- "x64"
301
- ],
302
- "dev": true,
303
- "optional": true,
304
- "os": [
305
- "linux"
306
- ],
307
- "engines": {
308
- "node": ">=12"
309
- }
310
- },
311
- "node_modules/@esbuild/netbsd-x64": {
312
- "version": "0.20.2",
313
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz",
314
- "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==",
315
- "cpu": [
316
- "x64"
317
- ],
318
- "dev": true,
319
- "optional": true,
320
- "os": [
321
- "netbsd"
322
- ],
323
- "engines": {
324
- "node": ">=12"
325
- }
326
- },
327
- "node_modules/@esbuild/openbsd-x64": {
328
- "version": "0.20.2",
329
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz",
330
- "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==",
331
- "cpu": [
332
- "x64"
333
- ],
334
- "dev": true,
335
- "optional": true,
336
- "os": [
337
- "openbsd"
338
- ],
339
- "engines": {
340
- "node": ">=12"
341
- }
342
- },
343
- "node_modules/@esbuild/sunos-x64": {
344
- "version": "0.20.2",
345
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz",
346
- "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==",
347
- "cpu": [
348
- "x64"
349
- ],
350
- "dev": true,
351
- "optional": true,
352
- "os": [
353
- "sunos"
354
- ],
355
- "engines": {
356
- "node": ">=12"
357
- }
358
- },
359
- "node_modules/@esbuild/win32-arm64": {
360
- "version": "0.20.2",
361
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz",
362
- "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==",
363
- "cpu": [
364
- "arm64"
365
- ],
366
- "dev": true,
367
- "optional": true,
368
- "os": [
369
- "win32"
370
- ],
371
- "engines": {
372
- "node": ">=12"
373
- }
374
- },
375
- "node_modules/@esbuild/win32-ia32": {
376
- "version": "0.20.2",
377
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz",
378
- "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==",
379
- "cpu": [
380
- "ia32"
381
- ],
382
- "dev": true,
383
- "optional": true,
384
- "os": [
385
- "win32"
386
- ],
387
- "engines": {
388
- "node": ">=12"
389
- }
390
- },
391
- "node_modules/@esbuild/win32-x64": {
392
- "version": "0.20.2",
393
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz",
394
- "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==",
395
- "cpu": [
396
- "x64"
397
- ],
398
- "dev": true,
399
- "optional": true,
400
- "os": [
401
- "win32"
402
- ],
403
- "engines": {
404
- "node": ">=12"
405
- }
406
- },
407
  "node_modules/@jridgewell/gen-mapping": {
408
  "version": "0.3.5",
409
  "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
@@ -440,254 +88,59 @@
440
  },
441
  "node_modules/@jridgewell/trace-mapping": {
442
  "version": "0.3.25",
443
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
444
- "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
445
- "dependencies": {
446
- "@jridgewell/resolve-uri": "^3.1.0",
447
- "@jridgewell/sourcemap-codec": "^1.4.14"
448
- }
449
- },
450
- "node_modules/@nodelib/fs.scandir": {
451
- "version": "2.1.5",
452
- "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
453
- "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
454
- "dev": true,
455
- "dependencies": {
456
- "@nodelib/fs.stat": "2.0.5",
457
- "run-parallel": "^1.1.9"
458
- },
459
- "engines": {
460
- "node": ">= 8"
461
- }
462
- },
463
- "node_modules/@nodelib/fs.stat": {
464
- "version": "2.0.5",
465
- "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
466
- "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
467
- "dev": true,
468
- "engines": {
469
- "node": ">= 8"
470
- }
471
- },
472
- "node_modules/@nodelib/fs.walk": {
473
- "version": "1.2.8",
474
- "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
475
- "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
476
- "dev": true,
477
- "dependencies": {
478
- "@nodelib/fs.scandir": "2.1.5",
479
- "fastq": "^1.6.0"
480
- },
481
- "engines": {
482
- "node": ">= 8"
483
- }
484
- },
485
- "node_modules/@rollup/rollup-android-arm-eabi": {
486
- "version": "4.14.3",
487
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.14.3.tgz",
488
- "integrity": "sha512-X9alQ3XM6I9IlSlmC8ddAvMSyG1WuHk5oUnXGw+yUBs3BFoTizmG1La/Gr8fVJvDWAq+zlYTZ9DBgrlKRVY06g==",
489
- "cpu": [
490
- "arm"
491
- ],
492
- "dev": true,
493
- "optional": true,
494
- "os": [
495
- "android"
496
- ]
497
- },
498
- "node_modules/@rollup/rollup-android-arm64": {
499
- "version": "4.14.3",
500
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.14.3.tgz",
501
- "integrity": "sha512-eQK5JIi+POhFpzk+LnjKIy4Ks+pwJ+NXmPxOCSvOKSNRPONzKuUvWE+P9JxGZVxrtzm6BAYMaL50FFuPe0oWMQ==",
502
- "cpu": [
503
- "arm64"
504
- ],
505
- "dev": true,
506
- "optional": true,
507
- "os": [
508
- "android"
509
- ]
510
- },
511
- "node_modules/@rollup/rollup-darwin-arm64": {
512
- "version": "4.14.3",
513
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.14.3.tgz",
514
- "integrity": "sha512-Od4vE6f6CTT53yM1jgcLqNfItTsLt5zE46fdPaEmeFHvPs5SjZYlLpHrSiHEKR1+HdRfxuzXHjDOIxQyC3ptBA==",
515
- "cpu": [
516
- "arm64"
517
- ],
518
- "dev": true,
519
- "optional": true,
520
- "os": [
521
- "darwin"
522
- ]
523
- },
524
- "node_modules/@rollup/rollup-darwin-x64": {
525
- "version": "4.14.3",
526
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.14.3.tgz",
527
- "integrity": "sha512-0IMAO21axJeNIrvS9lSe/PGthc8ZUS+zC53O0VhF5gMxfmcKAP4ESkKOCwEi6u2asUrt4mQv2rjY8QseIEb1aw==",
528
- "cpu": [
529
- "x64"
530
- ],
531
- "dev": true,
532
- "optional": true,
533
- "os": [
534
- "darwin"
535
- ]
536
- },
537
- "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
538
- "version": "4.14.3",
539
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.14.3.tgz",
540
- "integrity": "sha512-ge2DC7tHRHa3caVEoSbPRJpq7azhG+xYsd6u2MEnJ6XzPSzQsTKyXvh6iWjXRf7Rt9ykIUWHtl0Uz3T6yXPpKw==",
541
- "cpu": [
542
- "arm"
543
- ],
544
- "dev": true,
545
- "optional": true,
546
- "os": [
547
- "linux"
548
- ]
549
- },
550
- "node_modules/@rollup/rollup-linux-arm-musleabihf": {
551
- "version": "4.14.3",
552
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.14.3.tgz",
553
- "integrity": "sha512-ljcuiDI4V3ySuc7eSk4lQ9wU8J8r8KrOUvB2U+TtK0TiW6OFDmJ+DdIjjwZHIw9CNxzbmXY39wwpzYuFDwNXuw==",
554
- "cpu": [
555
- "arm"
556
- ],
557
- "dev": true,
558
- "optional": true,
559
- "os": [
560
- "linux"
561
- ]
562
- },
563
- "node_modules/@rollup/rollup-linux-arm64-gnu": {
564
- "version": "4.14.3",
565
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.14.3.tgz",
566
- "integrity": "sha512-Eci2us9VTHm1eSyn5/eEpaC7eP/mp5n46gTRB3Aar3BgSvDQGJZuicyq6TsH4HngNBgVqC5sDYxOzTExSU+NjA==",
567
- "cpu": [
568
- "arm64"
569
- ],
570
- "dev": true,
571
- "optional": true,
572
- "os": [
573
- "linux"
574
- ]
575
- },
576
- "node_modules/@rollup/rollup-linux-arm64-musl": {
577
- "version": "4.14.3",
578
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.14.3.tgz",
579
- "integrity": "sha512-UrBoMLCq4E92/LCqlh+blpqMz5h1tJttPIniwUgOFJyjWI1qrtrDhhpHPuFxULlUmjFHfloWdixtDhSxJt5iKw==",
580
- "cpu": [
581
- "arm64"
582
- ],
583
- "dev": true,
584
- "optional": true,
585
- "os": [
586
- "linux"
587
- ]
588
- },
589
- "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
590
- "version": "4.14.3",
591
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.14.3.tgz",
592
- "integrity": "sha512-5aRjvsS8q1nWN8AoRfrq5+9IflC3P1leMoy4r2WjXyFqf3qcqsxRCfxtZIV58tCxd+Yv7WELPcO9mY9aeQyAmw==",
593
- "cpu": [
594
- "ppc64"
595
- ],
596
- "dev": true,
597
- "optional": true,
598
- "os": [
599
- "linux"
600
- ]
601
- },
602
- "node_modules/@rollup/rollup-linux-riscv64-gnu": {
603
- "version": "4.14.3",
604
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.14.3.tgz",
605
- "integrity": "sha512-sk/Qh1j2/RJSX7FhEpJn8n0ndxy/uf0kI/9Zc4b1ELhqULVdTfN6HL31CDaTChiBAOgLcsJ1sgVZjWv8XNEsAQ==",
606
- "cpu": [
607
- "riscv64"
608
- ],
609
- "dev": true,
610
- "optional": true,
611
- "os": [
612
- "linux"
613
- ]
614
- },
615
- "node_modules/@rollup/rollup-linux-s390x-gnu": {
616
- "version": "4.14.3",
617
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.14.3.tgz",
618
- "integrity": "sha512-jOO/PEaDitOmY9TgkxF/TQIjXySQe5KVYB57H/8LRP/ux0ZoO8cSHCX17asMSv3ruwslXW/TLBcxyaUzGRHcqg==",
619
- "cpu": [
620
- "s390x"
621
- ],
622
- "dev": true,
623
- "optional": true,
624
- "os": [
625
- "linux"
626
- ]
627
- },
628
- "node_modules/@rollup/rollup-linux-x64-gnu": {
629
- "version": "4.14.3",
630
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.14.3.tgz",
631
- "integrity": "sha512-8ybV4Xjy59xLMyWo3GCfEGqtKV5M5gCSrZlxkPGvEPCGDLNla7v48S662HSGwRd6/2cSneMQWiv+QzcttLrrOA==",
632
- "cpu": [
633
- "x64"
634
- ],
635
- "dev": true,
636
- "optional": true,
637
- "os": [
638
- "linux"
639
- ]
640
  },
641
- "node_modules/@rollup/rollup-linux-x64-musl": {
642
- "version": "4.14.3",
643
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.14.3.tgz",
644
- "integrity": "sha512-s+xf1I46trOY10OqAtZ5Rm6lzHre/UiLA1J2uOhCFXWkbZrJRkYBPO6FhvGfHmdtQ3Bx793MNa7LvoWFAm93bg==",
645
- "cpu": [
646
- "x64"
647
- ],
648
  "dev": true,
649
- "optional": true,
650
- "os": [
651
- "linux"
652
- ]
 
 
 
653
  },
654
- "node_modules/@rollup/rollup-win32-arm64-msvc": {
655
- "version": "4.14.3",
656
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.14.3.tgz",
657
- "integrity": "sha512-+4h2WrGOYsOumDQ5S2sYNyhVfrue+9tc9XcLWLh+Kw3UOxAvrfOrSMFon60KspcDdytkNDh7K2Vs6eMaYImAZg==",
658
- "cpu": [
659
- "arm64"
660
- ],
661
  "dev": true,
662
- "optional": true,
663
- "os": [
664
- "win32"
665
- ]
666
  },
667
- "node_modules/@rollup/rollup-win32-ia32-msvc": {
668
- "version": "4.14.3",
669
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.14.3.tgz",
670
- "integrity": "sha512-T1l7y/bCeL/kUwh9OD4PQT4aM7Bq43vX05htPJJ46RTI4r5KNt6qJRzAfNfM+OYMNEVBWQzR2Gyk+FXLZfogGw==",
671
- "cpu": [
672
- "ia32"
673
- ],
674
  "dev": true,
675
- "optional": true,
676
- "os": [
677
- "win32"
678
- ]
 
 
 
679
  },
680
- "node_modules/@rollup/rollup-win32-x64-msvc": {
681
  "version": "4.14.3",
682
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.14.3.tgz",
683
- "integrity": "sha512-/BypzV0H1y1HzgYpxqRaXGBRqfodgoBBCcsrujT6QRcakDQdfU+Lq9PENPh5jB4I44YWq+0C2eHsHya+nZY1sA==",
684
  "cpu": [
685
- "x64"
686
  ],
687
  "dev": true,
688
  "optional": true,
689
  "os": [
690
- "win32"
691
  ]
692
  },
693
  "node_modules/@svelte-put/shortcut": {
@@ -2088,6 +1541,55 @@
2088
  "node": "^10 || ^12 || >=14"
2089
  }
2090
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2091
  "node_modules/queue-microtask": {
2092
  "version": "1.2.3",
2093
  "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
@@ -2505,6 +2007,19 @@
2505
  "engines": {
2506
  "node": ">=0.4.0"
2507
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
2508
  }
2509
  },
2510
  "dependencies": {
@@ -2517,34 +2032,6 @@
2517
  "@jridgewell/trace-mapping": "^0.3.24"
2518
  }
2519
  },
2520
- "@esbuild/aix-ppc64": {
2521
- "version": "0.20.2",
2522
- "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz",
2523
- "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==",
2524
- "dev": true,
2525
- "optional": true
2526
- },
2527
- "@esbuild/android-arm": {
2528
- "version": "0.20.2",
2529
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz",
2530
- "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==",
2531
- "dev": true,
2532
- "optional": true
2533
- },
2534
- "@esbuild/android-arm64": {
2535
- "version": "0.20.2",
2536
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz",
2537
- "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==",
2538
- "dev": true,
2539
- "optional": true
2540
- },
2541
- "@esbuild/android-x64": {
2542
- "version": "0.20.2",
2543
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz",
2544
- "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==",
2545
- "dev": true,
2546
- "optional": true
2547
- },
2548
  "@esbuild/darwin-arm64": {
2549
  "version": "0.20.2",
2550
  "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz",
@@ -2552,132 +2039,6 @@
2552
  "dev": true,
2553
  "optional": true
2554
  },
2555
- "@esbuild/darwin-x64": {
2556
- "version": "0.20.2",
2557
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz",
2558
- "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==",
2559
- "dev": true,
2560
- "optional": true
2561
- },
2562
- "@esbuild/freebsd-arm64": {
2563
- "version": "0.20.2",
2564
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz",
2565
- "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==",
2566
- "dev": true,
2567
- "optional": true
2568
- },
2569
- "@esbuild/freebsd-x64": {
2570
- "version": "0.20.2",
2571
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz",
2572
- "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==",
2573
- "dev": true,
2574
- "optional": true
2575
- },
2576
- "@esbuild/linux-arm": {
2577
- "version": "0.20.2",
2578
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz",
2579
- "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==",
2580
- "dev": true,
2581
- "optional": true
2582
- },
2583
- "@esbuild/linux-arm64": {
2584
- "version": "0.20.2",
2585
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz",
2586
- "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==",
2587
- "dev": true,
2588
- "optional": true
2589
- },
2590
- "@esbuild/linux-ia32": {
2591
- "version": "0.20.2",
2592
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz",
2593
- "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==",
2594
- "dev": true,
2595
- "optional": true
2596
- },
2597
- "@esbuild/linux-loong64": {
2598
- "version": "0.20.2",
2599
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz",
2600
- "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==",
2601
- "dev": true,
2602
- "optional": true
2603
- },
2604
- "@esbuild/linux-mips64el": {
2605
- "version": "0.20.2",
2606
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz",
2607
- "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==",
2608
- "dev": true,
2609
- "optional": true
2610
- },
2611
- "@esbuild/linux-ppc64": {
2612
- "version": "0.20.2",
2613
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz",
2614
- "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==",
2615
- "dev": true,
2616
- "optional": true
2617
- },
2618
- "@esbuild/linux-riscv64": {
2619
- "version": "0.20.2",
2620
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz",
2621
- "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==",
2622
- "dev": true,
2623
- "optional": true
2624
- },
2625
- "@esbuild/linux-s390x": {
2626
- "version": "0.20.2",
2627
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz",
2628
- "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==",
2629
- "dev": true,
2630
- "optional": true
2631
- },
2632
- "@esbuild/linux-x64": {
2633
- "version": "0.20.2",
2634
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz",
2635
- "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==",
2636
- "dev": true,
2637
- "optional": true
2638
- },
2639
- "@esbuild/netbsd-x64": {
2640
- "version": "0.20.2",
2641
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz",
2642
- "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==",
2643
- "dev": true,
2644
- "optional": true
2645
- },
2646
- "@esbuild/openbsd-x64": {
2647
- "version": "0.20.2",
2648
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz",
2649
- "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==",
2650
- "dev": true,
2651
- "optional": true
2652
- },
2653
- "@esbuild/sunos-x64": {
2654
- "version": "0.20.2",
2655
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz",
2656
- "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==",
2657
- "dev": true,
2658
- "optional": true
2659
- },
2660
- "@esbuild/win32-arm64": {
2661
- "version": "0.20.2",
2662
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz",
2663
- "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==",
2664
- "dev": true,
2665
- "optional": true
2666
- },
2667
- "@esbuild/win32-ia32": {
2668
- "version": "0.20.2",
2669
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz",
2670
- "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==",
2671
- "dev": true,
2672
- "optional": true
2673
- },
2674
- "@esbuild/win32-x64": {
2675
- "version": "0.20.2",
2676
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz",
2677
- "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==",
2678
- "dev": true,
2679
- "optional": true
2680
- },
2681
  "@jridgewell/gen-mapping": {
2682
  "version": "0.3.5",
2683
  "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
@@ -2738,20 +2099,6 @@
2738
  "fastq": "^1.6.0"
2739
  }
2740
  },
2741
- "@rollup/rollup-android-arm-eabi": {
2742
- "version": "4.14.3",
2743
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.14.3.tgz",
2744
- "integrity": "sha512-X9alQ3XM6I9IlSlmC8ddAvMSyG1WuHk5oUnXGw+yUBs3BFoTizmG1La/Gr8fVJvDWAq+zlYTZ9DBgrlKRVY06g==",
2745
- "dev": true,
2746
- "optional": true
2747
- },
2748
- "@rollup/rollup-android-arm64": {
2749
- "version": "4.14.3",
2750
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.14.3.tgz",
2751
- "integrity": "sha512-eQK5JIi+POhFpzk+LnjKIy4Ks+pwJ+NXmPxOCSvOKSNRPONzKuUvWE+P9JxGZVxrtzm6BAYMaL50FFuPe0oWMQ==",
2752
- "dev": true,
2753
- "optional": true
2754
- },
2755
  "@rollup/rollup-darwin-arm64": {
2756
  "version": "4.14.3",
2757
  "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.14.3.tgz",
@@ -2759,97 +2106,6 @@
2759
  "dev": true,
2760
  "optional": true
2761
  },
2762
- "@rollup/rollup-darwin-x64": {
2763
- "version": "4.14.3",
2764
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.14.3.tgz",
2765
- "integrity": "sha512-0IMAO21axJeNIrvS9lSe/PGthc8ZUS+zC53O0VhF5gMxfmcKAP4ESkKOCwEi6u2asUrt4mQv2rjY8QseIEb1aw==",
2766
- "dev": true,
2767
- "optional": true
2768
- },
2769
- "@rollup/rollup-linux-arm-gnueabihf": {
2770
- "version": "4.14.3",
2771
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.14.3.tgz",
2772
- "integrity": "sha512-ge2DC7tHRHa3caVEoSbPRJpq7azhG+xYsd6u2MEnJ6XzPSzQsTKyXvh6iWjXRf7Rt9ykIUWHtl0Uz3T6yXPpKw==",
2773
- "dev": true,
2774
- "optional": true
2775
- },
2776
- "@rollup/rollup-linux-arm-musleabihf": {
2777
- "version": "4.14.3",
2778
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.14.3.tgz",
2779
- "integrity": "sha512-ljcuiDI4V3ySuc7eSk4lQ9wU8J8r8KrOUvB2U+TtK0TiW6OFDmJ+DdIjjwZHIw9CNxzbmXY39wwpzYuFDwNXuw==",
2780
- "dev": true,
2781
- "optional": true
2782
- },
2783
- "@rollup/rollup-linux-arm64-gnu": {
2784
- "version": "4.14.3",
2785
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.14.3.tgz",
2786
- "integrity": "sha512-Eci2us9VTHm1eSyn5/eEpaC7eP/mp5n46gTRB3Aar3BgSvDQGJZuicyq6TsH4HngNBgVqC5sDYxOzTExSU+NjA==",
2787
- "dev": true,
2788
- "optional": true
2789
- },
2790
- "@rollup/rollup-linux-arm64-musl": {
2791
- "version": "4.14.3",
2792
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.14.3.tgz",
2793
- "integrity": "sha512-UrBoMLCq4E92/LCqlh+blpqMz5h1tJttPIniwUgOFJyjWI1qrtrDhhpHPuFxULlUmjFHfloWdixtDhSxJt5iKw==",
2794
- "dev": true,
2795
- "optional": true
2796
- },
2797
- "@rollup/rollup-linux-powerpc64le-gnu": {
2798
- "version": "4.14.3",
2799
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.14.3.tgz",
2800
- "integrity": "sha512-5aRjvsS8q1nWN8AoRfrq5+9IflC3P1leMoy4r2WjXyFqf3qcqsxRCfxtZIV58tCxd+Yv7WELPcO9mY9aeQyAmw==",
2801
- "dev": true,
2802
- "optional": true
2803
- },
2804
- "@rollup/rollup-linux-riscv64-gnu": {
2805
- "version": "4.14.3",
2806
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.14.3.tgz",
2807
- "integrity": "sha512-sk/Qh1j2/RJSX7FhEpJn8n0ndxy/uf0kI/9Zc4b1ELhqULVdTfN6HL31CDaTChiBAOgLcsJ1sgVZjWv8XNEsAQ==",
2808
- "dev": true,
2809
- "optional": true
2810
- },
2811
- "@rollup/rollup-linux-s390x-gnu": {
2812
- "version": "4.14.3",
2813
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.14.3.tgz",
2814
- "integrity": "sha512-jOO/PEaDitOmY9TgkxF/TQIjXySQe5KVYB57H/8LRP/ux0ZoO8cSHCX17asMSv3ruwslXW/TLBcxyaUzGRHcqg==",
2815
- "dev": true,
2816
- "optional": true
2817
- },
2818
- "@rollup/rollup-linux-x64-gnu": {
2819
- "version": "4.14.3",
2820
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.14.3.tgz",
2821
- "integrity": "sha512-8ybV4Xjy59xLMyWo3GCfEGqtKV5M5gCSrZlxkPGvEPCGDLNla7v48S662HSGwRd6/2cSneMQWiv+QzcttLrrOA==",
2822
- "dev": true,
2823
- "optional": true
2824
- },
2825
- "@rollup/rollup-linux-x64-musl": {
2826
- "version": "4.14.3",
2827
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.14.3.tgz",
2828
- "integrity": "sha512-s+xf1I46trOY10OqAtZ5Rm6lzHre/UiLA1J2uOhCFXWkbZrJRkYBPO6FhvGfHmdtQ3Bx793MNa7LvoWFAm93bg==",
2829
- "dev": true,
2830
- "optional": true
2831
- },
2832
- "@rollup/rollup-win32-arm64-msvc": {
2833
- "version": "4.14.3",
2834
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.14.3.tgz",
2835
- "integrity": "sha512-+4h2WrGOYsOumDQ5S2sYNyhVfrue+9tc9XcLWLh+Kw3UOxAvrfOrSMFon60KspcDdytkNDh7K2Vs6eMaYImAZg==",
2836
- "dev": true,
2837
- "optional": true
2838
- },
2839
- "@rollup/rollup-win32-ia32-msvc": {
2840
- "version": "4.14.3",
2841
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.14.3.tgz",
2842
- "integrity": "sha512-T1l7y/bCeL/kUwh9OD4PQT4aM7Bq43vX05htPJJ46RTI4r5KNt6qJRzAfNfM+OYMNEVBWQzR2Gyk+FXLZfogGw==",
2843
- "dev": true,
2844
- "optional": true
2845
- },
2846
- "@rollup/rollup-win32-x64-msvc": {
2847
- "version": "4.14.3",
2848
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.14.3.tgz",
2849
- "integrity": "sha512-/BypzV0H1y1HzgYpxqRaXGBRqfodgoBBCcsrujT6QRcakDQdfU+Lq9PENPh5jB4I44YWq+0C2eHsHya+nZY1sA==",
2850
- "dev": true,
2851
- "optional": true
2852
- },
2853
  "@svelte-put/shortcut": {
2854
  "version": "3.1.0",
2855
  "resolved": "https://registry.npmjs.org/@svelte-put/shortcut/-/shortcut-3.1.0.tgz",
@@ -3959,6 +3215,26 @@
3959
  "source-map-js": "^1.2.0"
3960
  }
3961
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3962
  "queue-microtask": {
3963
  "version": "1.2.3",
3964
  "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
@@ -4187,6 +3463,13 @@
4187
  "version": "1.7.0",
4188
  "resolved": "https://registry.npmjs.org/xml-writer/-/xml-writer-1.7.0.tgz",
4189
  "integrity": "sha512-elFVMRiV5jb59fbc87zzVa0C01QLBEWP909mRuWqFqrYC5wNTH5QW4AaKMNv7d6zAsuOulkD7wnztZNLQW0Nfg=="
 
 
 
 
 
 
 
4190
  }
4191
  }
4192
  }
 
36
  "node": ">=6.0.0"
37
  }
38
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  "node_modules/@esbuild/darwin-arm64": {
40
  "version": "0.20.2",
41
  "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz",
 
52
  "node": ">=12"
53
  }
54
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
  "node_modules/@jridgewell/gen-mapping": {
56
  "version": "0.3.5",
57
  "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
 
88
  },
89
  "node_modules/@jridgewell/trace-mapping": {
90
  "version": "0.3.25",
91
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
92
+ "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
93
+ "dependencies": {
94
+ "@jridgewell/resolve-uri": "^3.1.0",
95
+ "@jridgewell/sourcemap-codec": "^1.4.14"
96
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  },
98
+ "node_modules/@nodelib/fs.scandir": {
99
+ "version": "2.1.5",
100
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
101
+ "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
 
 
 
102
  "dev": true,
103
+ "dependencies": {
104
+ "@nodelib/fs.stat": "2.0.5",
105
+ "run-parallel": "^1.1.9"
106
+ },
107
+ "engines": {
108
+ "node": ">= 8"
109
+ }
110
  },
111
+ "node_modules/@nodelib/fs.stat": {
112
+ "version": "2.0.5",
113
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
114
+ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
 
 
 
115
  "dev": true,
116
+ "engines": {
117
+ "node": ">= 8"
118
+ }
 
119
  },
120
+ "node_modules/@nodelib/fs.walk": {
121
+ "version": "1.2.8",
122
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
123
+ "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
 
 
 
124
  "dev": true,
125
+ "dependencies": {
126
+ "@nodelib/fs.scandir": "2.1.5",
127
+ "fastq": "^1.6.0"
128
+ },
129
+ "engines": {
130
+ "node": ">= 8"
131
+ }
132
  },
133
+ "node_modules/@rollup/rollup-darwin-arm64": {
134
  "version": "4.14.3",
135
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.14.3.tgz",
136
+ "integrity": "sha512-Od4vE6f6CTT53yM1jgcLqNfItTsLt5zE46fdPaEmeFHvPs5SjZYlLpHrSiHEKR1+HdRfxuzXHjDOIxQyC3ptBA==",
137
  "cpu": [
138
+ "arm64"
139
  ],
140
  "dev": true,
141
  "optional": true,
142
  "os": [
143
+ "darwin"
144
  ]
145
  },
146
  "node_modules/@svelte-put/shortcut": {
 
1541
  "node": "^10 || ^12 || >=14"
1542
  }
1543
  },
1544
+ "node_modules/postcss-load-config": {
1545
+ "version": "4.0.2",
1546
+ "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz",
1547
+ "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==",
1548
+ "funding": [
1549
+ {
1550
+ "type": "opencollective",
1551
+ "url": "https://opencollective.com/postcss/"
1552
+ },
1553
+ {
1554
+ "type": "github",
1555
+ "url": "https://github.com/sponsors/ai"
1556
+ }
1557
+ ],
1558
+ "optional": true,
1559
+ "peer": true,
1560
+ "dependencies": {
1561
+ "lilconfig": "^3.0.0",
1562
+ "yaml": "^2.3.4"
1563
+ },
1564
+ "engines": {
1565
+ "node": ">= 14"
1566
+ },
1567
+ "peerDependencies": {
1568
+ "postcss": ">=8.0.9",
1569
+ "ts-node": ">=9.0.0"
1570
+ },
1571
+ "peerDependenciesMeta": {
1572
+ "postcss": {
1573
+ "optional": true
1574
+ },
1575
+ "ts-node": {
1576
+ "optional": true
1577
+ }
1578
+ }
1579
+ },
1580
+ "node_modules/postcss-load-config/node_modules/lilconfig": {
1581
+ "version": "3.1.1",
1582
+ "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.1.tgz",
1583
+ "integrity": "sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==",
1584
+ "optional": true,
1585
+ "peer": true,
1586
+ "engines": {
1587
+ "node": ">=14"
1588
+ },
1589
+ "funding": {
1590
+ "url": "https://github.com/sponsors/antonk52"
1591
+ }
1592
+ },
1593
  "node_modules/queue-microtask": {
1594
  "version": "1.2.3",
1595
  "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
 
2007
  "engines": {
2008
  "node": ">=0.4.0"
2009
  }
2010
+ },
2011
+ "node_modules/yaml": {
2012
+ "version": "2.4.1",
2013
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.4.1.tgz",
2014
+ "integrity": "sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==",
2015
+ "optional": true,
2016
+ "peer": true,
2017
+ "bin": {
2018
+ "yaml": "bin.mjs"
2019
+ },
2020
+ "engines": {
2021
+ "node": ">= 14"
2022
+ }
2023
  }
2024
  },
2025
  "dependencies": {
 
2032
  "@jridgewell/trace-mapping": "^0.3.24"
2033
  }
2034
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2035
  "@esbuild/darwin-arm64": {
2036
  "version": "0.20.2",
2037
  "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz",
 
2039
  "dev": true,
2040
  "optional": true
2041
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2042
  "@jridgewell/gen-mapping": {
2043
  "version": "0.3.5",
2044
  "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
 
2099
  "fastq": "^1.6.0"
2100
  }
2101
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2102
  "@rollup/rollup-darwin-arm64": {
2103
  "version": "4.14.3",
2104
  "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.14.3.tgz",
 
2106
  "dev": true,
2107
  "optional": true
2108
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2109
  "@svelte-put/shortcut": {
2110
  "version": "3.1.0",
2111
  "resolved": "https://registry.npmjs.org/@svelte-put/shortcut/-/shortcut-3.1.0.tgz",
 
3215
  "source-map-js": "^1.2.0"
3216
  }
3217
  },
3218
+ "postcss-load-config": {
3219
+ "version": "4.0.2",
3220
+ "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz",
3221
+ "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==",
3222
+ "optional": true,
3223
+ "peer": true,
3224
+ "requires": {
3225
+ "lilconfig": "^3.0.0",
3226
+ "yaml": "^2.3.4"
3227
+ },
3228
+ "dependencies": {
3229
+ "lilconfig": {
3230
+ "version": "3.1.1",
3231
+ "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.1.tgz",
3232
+ "integrity": "sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==",
3233
+ "optional": true,
3234
+ "peer": true
3235
+ }
3236
+ }
3237
+ },
3238
  "queue-microtask": {
3239
  "version": "1.2.3",
3240
  "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
 
3463
  "version": "1.7.0",
3464
  "resolved": "https://registry.npmjs.org/xml-writer/-/xml-writer-1.7.0.tgz",
3465
  "integrity": "sha512-elFVMRiV5jb59fbc87zzVa0C01QLBEWP909mRuWqFqrYC5wNTH5QW4AaKMNv7d6zAsuOulkD7wnztZNLQW0Nfg=="
3466
+ },
3467
+ "yaml": {
3468
+ "version": "2.4.1",
3469
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.4.1.tgz",
3470
+ "integrity": "sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==",
3471
+ "optional": true,
3472
+ "peer": true
3473
  }
3474
  }
3475
  }
web/public/favicon.ico ADDED
web/public/vite.svg DELETED
web/src/App.svelte CHANGED
@@ -1,10 +1,23 @@
1
  <script lang="ts">
2
- import {
3
- SvelteFlowProvider,
4
- } from '@xyflow/svelte';
5
- import LynxKiteFlow from './LynxKiteFlow.svelte';
 
 
 
 
 
 
 
 
 
 
6
  </script>
7
 
8
- <SvelteFlowProvider>
9
- <LynxKiteFlow />
10
- </SvelteFlowProvider>
 
 
 
 
1
  <script lang="ts">
2
+ import Directory from './Directory.svelte';
3
+ import Workspace from './Workspace.svelte';
4
+ let page = '';
5
+ let parameters = {};
6
+ function onHashChange() {
7
+ const parts = location.hash.split('?');
8
+ page = parts[0].substring(1);
9
+ parameters = {};
10
+ if (parts.length > 1) {
11
+ parameters = Object.fromEntries(new URLSearchParams(parts[1]));
12
+ }
13
+ console.log(parameters);
14
+ }
15
+ onHashChange();
16
  </script>
17
 
18
+ <svelte:window on:hashchange={onHashChange} />
19
+ {#if page === 'edit'}
20
+ <Workspace {...parameters} />
21
+ {:else}
22
+ <Directory {...parameters} />
23
+ {/if}
web/src/Directory.svelte ADDED
@@ -0,0 +1,111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <script lang="ts">
2
+ // The directory browser.
3
+ import logo from './assets/logo.png';
4
+ export let path = '';
5
+ async function fetchList(path) {
6
+ const encodedPath = encodeURIComponent(path || '');
7
+ const res = await fetch(`/api/dir/list?path=${encodedPath}`);
8
+ const j = await res.json();
9
+ return j;
10
+ }
11
+ $: list = fetchList(path);
12
+ function open(item) {
13
+ if (item.type === 'directory') {
14
+ location.hash = `#dir?path=${item.name}`;
15
+ } else {
16
+ location.hash = `#edit?path=${item.name}`;
17
+ }
18
+ }
19
+ function shortName(item) {
20
+ return item.name.split('/').pop();
21
+ }
22
+ </script>
23
+
24
+ <div class="directory-page">
25
+ <div class="logo">
26
+ <a href="https://lynxkite.com/"><img src="{logo}" class="logo-image"></a>
27
+ <div class="tagline">The Complete Graph Data Science Platform</div>
28
+ </div>
29
+ <div class="entry-list">
30
+ {#await list}
31
+ <div>Loading...</div>
32
+ {:then list}
33
+ {#each list as item}
34
+ <div class="entry" on:click={open(item)}>{shortName(item)}</div>
35
+ {/each}
36
+ {:catch error}
37
+ <p style="color: red">{error.message}</p>
38
+ {/await}
39
+ </div>
40
+ </div>
41
+
42
+ <style>
43
+ @media (min-width: 640px) {
44
+ .directory {
45
+ width: 100%;
46
+ }
47
+ }
48
+
49
+ .entry-list {
50
+ width: 100%;
51
+ margin: 10px auto;
52
+ background-color: white;
53
+ border-radius: 10px;
54
+ box-shadow: 0px 2px 4px;
55
+ padding: 10px 0;
56
+ }
57
+ @media (min-width: 768px) {
58
+ .entry-list {
59
+ width: 768px;
60
+ }
61
+ }
62
+ @media (min-width: 960px) {
63
+ .entry-list {
64
+ width: 80%;
65
+ }
66
+ }
67
+
68
+ .logo {
69
+ margin: 0;
70
+ padding-top: 50px;
71
+ text-align: center;
72
+ }
73
+ .logo-image {
74
+ max-width: 50%;
75
+ }
76
+ .tagline {
77
+ color: #39bcf3;
78
+ font-size: 14px;
79
+ font-weight: 500;
80
+ }
81
+ @media (min-width: 1400px) {
82
+ .tagline {
83
+ font-size: 18px;
84
+ }
85
+ }
86
+
87
+ .entry-list .entry {
88
+ position: relative;
89
+ border-bottom: 1px solid whitesmoke;
90
+ }
91
+ .entry-list .entry {
92
+ padding-left: 40px;
93
+ color: #004165;
94
+ cursor: pointer;
95
+ user-select: none;
96
+ text-decoration: none;
97
+ }
98
+ .entry-list .open .entry,
99
+ .entry-list .entry:hover,
100
+ .entry-list .entry:focus {
101
+ background: #39bcf3;
102
+ color: white;
103
+ }
104
+ .entry-list .entry:last-child {
105
+ border-bottom: none;
106
+ }
107
+ .directory-page {
108
+ background: #002a4c;
109
+ height: 100vh;
110
+ }
111
+ </style>
web/src/Workspace.svelte ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ <script lang="ts">
2
+ // This is the whole LynxKite workspace editor page.
3
+ import { SvelteFlowProvider } from '@xyflow/svelte';
4
+ import LynxKiteFlow from './LynxKiteFlow.svelte';
5
+ </script>
6
+
7
+ <SvelteFlowProvider>
8
+ <LynxKiteFlow />
9
+ </SvelteFlowProvider>
web/src/assets/favicon.ico DELETED
Binary file (114 kB)
 
web/src/assets/logo.png ADDED
web/src/directory.css ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ @media (min-width: 640px) {
2
+ .directory {
3
+ width: 100%;
4
+ }
5
+ }
6
+
7
+ .directory {
8
+ width: 800px;
9
+ background: white;
10
+ }