@emeryld/rrroutes-export 1.0.14 → 1.0.15
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/defaultViewerTemplate.d.ts +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/tools/finalized-leaves-viewer.html +128 -42
package/dist/index.mjs
CHANGED
|
@@ -365,7 +365,7 @@ var DEFAULT_VIEWER_TEMPLATE = `<!doctype html>
|
|
|
365
365
|
<head>
|
|
366
366
|
<meta charset="UTF-8" />
|
|
367
367
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
368
|
-
<title>
|
|
368
|
+
<title>RRRoutes Export Viewer</title>
|
|
369
369
|
<style>
|
|
370
370
|
:root {
|
|
371
371
|
--bg: #212121;
|
|
@@ -394,7 +394,7 @@ var DEFAULT_VIEWER_TEMPLATE = `<!doctype html>
|
|
|
394
394
|
</head>
|
|
395
395
|
<body>
|
|
396
396
|
<div class="wrap">
|
|
397
|
-
<h1>
|
|
397
|
+
<h1>RRRoutes Export Viewer (Baked)</h1>
|
|
398
398
|
<div class="card">
|
|
399
399
|
<div id="status" class="meta">Waiting for baked payload...</div>
|
|
400
400
|
</div>
|
|
@@ -429,7 +429,7 @@ var DEFAULT_VIEWER_TEMPLATE = `<!doctype html>
|
|
|
429
429
|
wrapSection('By Source Object', payload.bySourceObject || {}),
|
|
430
430
|
)
|
|
431
431
|
} else if (!payload || !Array.isArray(payload.leaves)) {
|
|
432
|
-
statusEl.textContent = 'No baked payload found in this HTML file.'
|
|
432
|
+
statusEl.textContent = 'No baked leaves/changelog/bundle payload found in this HTML file.'
|
|
433
433
|
} else {
|
|
434
434
|
statusEl.textContent = 'Loaded baked payload with ' + payload.leaves.length + ' routes.'
|
|
435
435
|
|