lopata 0.6.0 → 0.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dashboard/{chunk-3q3dhs4j.css → chunk-csyd2tq2.css} +35 -0
- package/dist/dashboard/{chunk-4y88h3dc.js → chunk-yxzrcvyh.js} +616 -80
- package/dist/dashboard/index.html +1 -1
- package/package.json +5 -3
- package/src/api/handlers/generations.ts +19 -5
- package/src/api/types.ts +14 -0
- package/src/bindings/cache.ts +14 -8
- package/src/bindings/do-websocket-bridge.ts +9 -0
- package/src/bindings/durable-object.ts +86 -21
- package/src/bindings/kv.ts +12 -8
- package/src/bindings/queue.ts +22 -12
- package/src/bindings/websocket-pair.ts +13 -0
- package/src/bindings/workflow.ts +331 -24
- package/src/cli/dev.ts +3 -0
- package/src/env.ts +3 -2
- package/src/file-watcher.ts +59 -32
- package/src/generation-manager.ts +6 -1
- package/src/generation.ts +15 -3
- package/src/plugin.ts +2 -90
- package/src/setup-globals.ts +44 -21
- package/src/testing/clock.ts +26 -0
- package/src/testing/durable-object.ts +325 -0
- package/src/testing/env-builder.ts +126 -0
- package/src/testing/fetch-mock.ts +145 -0
- package/src/testing/index.ts +288 -0
- package/src/testing/setup.ts +68 -0
- package/src/testing/types.ts +68 -0
- package/src/testing/workflow.ts +323 -0
- package/src/tracing/store.ts +6 -0
- package/src/tracing/types.ts +1 -0
- package/src/virtual-modules.ts +99 -0
- package/src/vite-plugin/config-plugin.ts +8 -2
- package/src/vite-plugin/dev-server-plugin.ts +370 -246
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
--color-rose-400: oklch(71.2% .194 13.428);
|
|
43
43
|
--color-rose-500: oklch(64.5% .246 16.439);
|
|
44
44
|
--color-gray-400: oklch(70.7% .022 261.325);
|
|
45
|
+
--color-gray-500: oklch(55.1% .027 264.364);
|
|
45
46
|
--color-gray-900: oklch(21% .034 264.665);
|
|
46
47
|
--color-neutral-400: oklch(70.8% 0 0);
|
|
47
48
|
--color-neutral-500: oklch(55.6% 0 0);
|
|
@@ -828,6 +829,10 @@
|
|
|
828
829
|
width: 100%;
|
|
829
830
|
}
|
|
830
831
|
|
|
832
|
+
.w-px {
|
|
833
|
+
width: 1px;
|
|
834
|
+
}
|
|
835
|
+
|
|
831
836
|
.max-w-4xl {
|
|
832
837
|
max-width: var(--container-4xl);
|
|
833
838
|
}
|
|
@@ -1378,6 +1383,10 @@
|
|
|
1378
1383
|
background-color: var(--color-blue-600);
|
|
1379
1384
|
}
|
|
1380
1385
|
|
|
1386
|
+
.bg-border {
|
|
1387
|
+
background-color: var(--color-border);
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1381
1390
|
.bg-cyan-500\/15 {
|
|
1382
1391
|
background-color: #00b7d726;
|
|
1383
1392
|
}
|
|
@@ -1430,6 +1439,16 @@
|
|
|
1430
1439
|
background-color: var(--color-gray-400);
|
|
1431
1440
|
}
|
|
1432
1441
|
|
|
1442
|
+
.bg-gray-500\/15 {
|
|
1443
|
+
background-color: #6a728226;
|
|
1444
|
+
}
|
|
1445
|
+
|
|
1446
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1447
|
+
.bg-gray-500\/15 {
|
|
1448
|
+
background-color: color-mix(in oklab, var(--color-gray-500) 15%, transparent);
|
|
1449
|
+
}
|
|
1450
|
+
}
|
|
1451
|
+
|
|
1433
1452
|
.bg-gray-900 {
|
|
1434
1453
|
background-color: var(--color-gray-900);
|
|
1435
1454
|
}
|
|
@@ -1956,6 +1975,10 @@
|
|
|
1956
1975
|
color: var(--color-emerald-600);
|
|
1957
1976
|
}
|
|
1958
1977
|
|
|
1978
|
+
.text-gray-400 {
|
|
1979
|
+
color: var(--color-gray-400);
|
|
1980
|
+
}
|
|
1981
|
+
|
|
1959
1982
|
.text-indigo-400 {
|
|
1960
1983
|
color: var(--color-indigo-400);
|
|
1961
1984
|
}
|
|
@@ -2296,6 +2319,18 @@
|
|
|
2296
2319
|
}
|
|
2297
2320
|
}
|
|
2298
2321
|
|
|
2322
|
+
@media (hover: hover) {
|
|
2323
|
+
.hover\:bg-accent-lime\/90:hover {
|
|
2324
|
+
background-color: #f0a030e6;
|
|
2325
|
+
}
|
|
2326
|
+
|
|
2327
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2328
|
+
.hover\:bg-accent-lime\/90:hover {
|
|
2329
|
+
background-color: color-mix(in oklab, var(--color-accent-lime) 90%, transparent);
|
|
2330
|
+
}
|
|
2331
|
+
}
|
|
2332
|
+
}
|
|
2333
|
+
|
|
2299
2334
|
@media (hover: hover) {
|
|
2300
2335
|
.hover\:bg-amber-500\/10:hover {
|
|
2301
2336
|
background-color: #f99c001a;
|