@xera-ai/core 0.11.2 → 0.11.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xera-ai/core",
3
- "version": "0.11.2",
3
+ "version": "0.11.3",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -31,8 +31,8 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "zod": "4.4.3",
34
- "@xera-ai/web": "^0.11.2",
35
- "@xera-ai/http": "^0.11.2",
34
+ "@xera-ai/web": "^0.11.3",
35
+ "@xera-ai/http": "^0.11.3",
36
36
  "@playwright/test": "1.60.0",
37
37
  "dotenv": "^16.0.0",
38
38
  "fflate": "0.8.3",
@@ -328,7 +328,7 @@ export function renderHtml(input: RenderHtmlInput): string {
328
328
  return template
329
329
  .replace('{{CSS}}', () => css)
330
330
  .replace('{{STATS}}', () => statsHuman)
331
- .replace('{{GENERATED_AT}}', () => input.generatedAt)
331
+ .replace(/\{\{GENERATED_AT\}\}/g, () => input.generatedAt)
332
332
  .replace('{{VIS_NETWORK_JS}}', () => visNetwork)
333
333
  .replace('{{GRAPH_DATA}}', () => graphJson)
334
334
  .replace('{{INTERACTION_JS}}', () => js)
@@ -5,7 +5,6 @@
5
5
  <button data-subtab="trend">Trend</button>
6
6
  </nav>
7
7
  <div data-subpanel="map" class="active">
8
- <p class="subpanel-hint">Area nodes are colored by status. Red = UNCOVERED, amber = STALE, green = COVERED. Other nodes neutral.</p>
9
8
  <main id="coverage-map-canvas"></main>
10
9
  </div>
11
10
  <div data-subpanel="list" hidden>
@@ -17,4 +16,14 @@
17
16
  <p class="subpanel-hint">UNCOVERED + STALE area count over time (one point per day, latest snapshot wins).</p>
18
17
  <div id="coverage-trend-svg"></div>
19
18
  </div>
19
+ <aside id="cov-drawer" class="cov-drawer hidden" aria-hidden="true">
20
+ <header class="cov-drawer-head">
21
+ <div class="cov-drawer-head-text">
22
+ <span id="cov-drawer-status" class="cov-drawer-status"></span>
23
+ <h3 id="cov-drawer-title"></h3>
24
+ </div>
25
+ <button id="cov-drawer-close" aria-label="Close" type="button">&times;</button>
26
+ </header>
27
+ <div class="cov-drawer-body" id="cov-drawer-body"></div>
28
+ </aside>
20
29
  </section>