@cookielab.io/klovi 1.0.0 → 1.1.0

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.
@@ -1369,6 +1369,37 @@ code {
1369
1369
  border-color: var(--accent);
1370
1370
  }
1371
1371
 
1372
+ .lightbox-overlay {
1373
+ position: fixed;
1374
+ z-index: 9999;
1375
+ display: flex;
1376
+ cursor: pointer;
1377
+ background: none;
1378
+ justify-content: center;
1379
+ align-items: center;
1380
+ transition: background .2s;
1381
+ inset: 0;
1382
+ }
1383
+
1384
+ .lightbox-overlay.lightbox-visible {
1385
+ background: #000000d9;
1386
+ }
1387
+
1388
+ .lightbox-image {
1389
+ object-fit: contain;
1390
+ border-radius: var(--radius-md);
1391
+ opacity: 0;
1392
+ max-width: 90vw;
1393
+ max-height: 90vh;
1394
+ transition: opacity .2s, transform .2s;
1395
+ transform: scale(.95);
1396
+ }
1397
+
1398
+ .lightbox-visible .lightbox-image {
1399
+ opacity: 1;
1400
+ transform: scale(1);
1401
+ }
1402
+
1372
1403
  .tool-mcp-server {
1373
1404
  display: inline-block;
1374
1405
  background: var(--bg-tertiary);
@@ -15,7 +15,7 @@
15
15
 
16
16
 
17
17
 
18
- <link rel="stylesheet" crossorigin href="./index-n88qe90q.css"><script type="module" crossorigin src="./index-v6xty79x.js"></script></head>
18
+ <link rel="stylesheet" crossorigin href="./index-tkaknz9b.css"><script type="module" crossorigin src="./index-gh09f2yc.js"></script></head>
19
19
  <body>
20
20
  <div id="root"></div>
21
21
 
package/dist/server.js CHANGED
@@ -773,8 +773,8 @@ async function handleSubAgent(sessionId, agentId, encodedPath) {
773
773
 
774
774
  // src/server/version.ts
775
775
  var appVersion = {
776
- version: "1.0.0",
777
- commitHash: "f1cbfc7"
776
+ version: "1.1.0",
777
+ commitHash: "b126d9d"
778
778
  };
779
779
 
780
780
  // src/server/api/version.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cookielab.io/klovi",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "A local web app for browsing and presenting AI coding session history",
5
5
  "module": "index.ts",
6
6
  "type": "module",