@pizzapi/cli-darwin-x64 0.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.
- package/README.md +5 -0
- package/bin/export-html/ansi-to-html.d.ts +22 -0
- package/bin/export-html/ansi-to-html.d.ts.map +1 -0
- package/bin/export-html/ansi-to-html.js +249 -0
- package/bin/export-html/ansi-to-html.js.map +1 -0
- package/bin/export-html/index.d.ts +34 -0
- package/bin/export-html/index.d.ts.map +1 -0
- package/bin/export-html/index.js +222 -0
- package/bin/export-html/index.js.map +1 -0
- package/bin/export-html/template.css +971 -0
- package/bin/export-html/template.html +54 -0
- package/bin/export-html/template.js +1586 -0
- package/bin/export-html/tool-renderer.d.ts +35 -0
- package/bin/export-html/tool-renderer.d.ts.map +1 -0
- package/bin/export-html/tool-renderer.js +57 -0
- package/bin/export-html/tool-renderer.js.map +1 -0
- package/bin/export-html/vendor/highlight.min.js +1213 -0
- package/bin/export-html/vendor/marked.min.js +6 -0
- package/bin/package.json +96 -0
- package/bin/pizza +0 -0
- package/bin/theme/dark.json +85 -0
- package/bin/theme/light.json +84 -0
- package/bin/theme/theme-schema.json +335 -0
- package/bin/theme/theme.d.ts +78 -0
- package/bin/theme/theme.d.ts.map +1 -0
- package/bin/theme/theme.js +944 -0
- package/bin/theme/theme.js.map +1 -0
- package/package.json +21 -0
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>Session Export</title>
|
|
7
|
+
<style>
|
|
8
|
+
{{CSS}}
|
|
9
|
+
</style>
|
|
10
|
+
</head>
|
|
11
|
+
<body>
|
|
12
|
+
<button id="hamburger" title="Open sidebar"><svg width="14" height="14" viewBox="0 0 24 24" fill="currentColor" stroke="none"><circle cx="6" cy="6" r="2.5"/><circle cx="6" cy="18" r="2.5"/><circle cx="18" cy="12" r="2.5"/><rect x="5" y="6" width="2" height="12"/><path d="M6 12h10c1 0 2 0 2-2V8"/></svg></button>
|
|
13
|
+
<div id="sidebar-overlay"></div>
|
|
14
|
+
<div id="app">
|
|
15
|
+
<aside id="sidebar">
|
|
16
|
+
<div class="sidebar-header">
|
|
17
|
+
<div class="sidebar-controls">
|
|
18
|
+
<input type="text" class="sidebar-search" id="tree-search" placeholder="Search...">
|
|
19
|
+
</div>
|
|
20
|
+
<div class="sidebar-filters">
|
|
21
|
+
<button class="filter-btn active" data-filter="default" title="Hide settings entries">Default</button>
|
|
22
|
+
<button class="filter-btn" data-filter="no-tools" title="Default minus tool results">No-tools</button>
|
|
23
|
+
<button class="filter-btn" data-filter="user-only" title="Only user messages">User</button>
|
|
24
|
+
<button class="filter-btn" data-filter="labeled-only" title="Only labeled entries">Labeled</button>
|
|
25
|
+
<button class="filter-btn" data-filter="all" title="Show everything">All</button>
|
|
26
|
+
<button class="sidebar-close" id="sidebar-close" title="Close">✕</button>
|
|
27
|
+
</div>
|
|
28
|
+
</div>
|
|
29
|
+
<div class="tree-container" id="tree-container"></div>
|
|
30
|
+
<div class="tree-status" id="tree-status"></div>
|
|
31
|
+
</aside>
|
|
32
|
+
<main id="content">
|
|
33
|
+
<div id="header-container"></div>
|
|
34
|
+
<div id="messages"></div>
|
|
35
|
+
</main>
|
|
36
|
+
<div id="image-modal" class="image-modal">
|
|
37
|
+
<img id="modal-image" src="" alt="">
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
|
|
41
|
+
<script id="session-data" type="application/json">{{SESSION_DATA}}</script>
|
|
42
|
+
|
|
43
|
+
<!-- Vendored libraries -->
|
|
44
|
+
<script>{{MARKED_JS}}</script>
|
|
45
|
+
|
|
46
|
+
<!-- highlight.js -->
|
|
47
|
+
<script>{{HIGHLIGHT_JS}}</script>
|
|
48
|
+
|
|
49
|
+
<!-- Main application code -->
|
|
50
|
+
<script>
|
|
51
|
+
{{JS}}
|
|
52
|
+
</script>
|
|
53
|
+
</body>
|
|
54
|
+
</html>
|