@ibgib/space-gib 0.0.33 → 0.0.34
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/client/bootstrap.mjs +24 -51
- package/dist/client/chunk-25PXC4HP.mjs +9914 -0
- package/dist/client/chunk-RXWLL2AI.mjs +30 -0
- package/dist/client/css/activity-bar.css +417 -0
- package/dist/client/css/base.css +167 -0
- package/dist/client/css/components.css +218 -0
- package/dist/client/css/cosmic.css +557 -0
- package/dist/client/css/dev-tools.css +163 -0
- package/dist/client/css/landing.css +184 -0
- package/dist/client/css/layout.css +896 -0
- package/dist/client/css/onboarding.css +181 -0
- package/dist/client/css/repos.css +740 -0
- package/dist/client/css/variables.css +64 -0
- package/dist/client/index.html +202 -31
- package/dist/client/index.mjs +32 -32
- package/dist/client/script.mjs +1 -1
- package/dist/client/style.css +11 -1056
- package/dist/respec-gib.node.mjs +5 -0
- package/dist/server/server.mjs +6879 -3109
- package/package.json +6 -6
- package/src/client/AUTO-GENERATED-version.mts +1 -1
- package/src/client/cosmos/seed-cosmos-workspace.mts +69 -0
- package/src/client/css/activity-bar.css +417 -0
- package/src/client/css/base.css +167 -0
- package/src/client/css/components.css +218 -0
- package/src/client/css/cosmic.css +557 -0
- package/src/client/css/dev-tools.css +163 -0
- package/src/client/css/landing.css +184 -0
- package/src/client/css/layout.css +896 -0
- package/src/client/css/onboarding.css +181 -0
- package/src/client/css/repos.css +740 -0
- package/src/client/css/variables.css +64 -0
- package/src/client/dev-tools/vcs-workspace.mts +3 -3
- package/src/client/index.html +202 -31
- package/src/client/style.css +11 -1056
- package/src/client/ui/component/chat-view/IMPLEMENTATION.md +48 -0
- package/src/client/ui/component/chat-view/chat-view.css +381 -0
- package/src/client/ui/component/chat-view/chat-view.html +104 -0
- package/src/client/ui/component/chat-view/chat-view.mts +277 -0
- package/src/client/ui/component/chat-view/index.mts +9 -0
- package/src/client/ui/component/clone/IMPLEMENTATION.md +68 -0
- package/src/client/ui/component/clone/clone-constants.mts +16 -0
- package/src/client/ui/component/clone/clone-types.mts +60 -0
- package/src/client/ui/component/clone/clone.css +383 -0
- package/src/client/ui/component/clone/clone.html +89 -0
- package/src/client/ui/component/clone/clone.mts +620 -0
- package/src/client/ui/component/clone/index.mts +11 -0
- package/src/client/ui/component/code-editor/IMPLEMENTATION.md +89 -0
- package/src/client/ui/component/code-editor/code-editor.css +275 -0
- package/src/client/ui/component/code-editor/code-editor.html +54 -0
- package/src/client/ui/component/code-editor/code-editor.mts +427 -0
- package/src/client/ui/component/code-editor/index.mts +9 -0
- package/src/client/ui/component/cosmos-navigator/IMPLEMENTATION.md +31 -0
- package/src/client/ui/component/cosmos-navigator/cosmos-navigator.css +864 -0
- package/src/client/ui/component/cosmos-navigator/cosmos-navigator.html +97 -0
- package/src/client/ui/component/cosmos-navigator/cosmos-navigator.mts +1084 -0
- package/src/client/ui/component/cosmos-navigator/index.mts +18 -0
- package/src/client/ui/component/file-explorer/IMPLEMENTATION.md +42 -0
- package/src/client/ui/component/file-explorer/file-explorer.css +256 -0
- package/src/client/ui/component/file-explorer/file-explorer.html +75 -0
- package/src/client/ui/component/file-explorer/file-explorer.mts +346 -0
- package/src/client/ui/component/file-explorer/index.mts +9 -0
- package/src/client/ui/component/nested-chat/IMPLEMENTATION.md +18 -0
- package/src/client/ui/component/nested-chat/chat/IMPLEMENTATION.md +14 -0
- package/src/client/ui/component/nested-chat/chat/chat-constants.mts +14 -0
- package/src/client/ui/component/nested-chat/chat/chat-helpers.mts +66 -0
- package/src/client/ui/component/nested-chat/chat/chat.css +654 -0
- package/src/client/ui/component/nested-chat/chat/chat.html +90 -0
- package/src/client/ui/component/nested-chat/chat/chat.mts +646 -0
- package/src/client/ui/component/nested-chat/chat/index.mts +7 -0
- package/src/client/ui/component/nested-chat/index.mts +14 -0
- package/src/client/ui/component/nested-chat/nested-chat-constants.mts +12 -0
- package/src/client/ui/component/nested-chat/nested-chat-types.mts +53 -0
- package/src/client/ui/component/nested-chat/nested-chat.css +142 -0
- package/src/client/ui/component/nested-chat/nested-chat.html +11 -0
- package/src/client/ui/component/nested-chat/nested-chat.mts +393 -0
- package/src/client/ui/component/notes-explorer/index.mts +9 -0
- package/src/client/ui/component/notes-explorer/notes-explorer.css +313 -0
- package/src/client/ui/component/notes-explorer/notes-explorer.html +136 -0
- package/src/client/ui/component/notes-explorer/notes-explorer.mts +240 -0
- package/src/client/ui/component/notes-inspector/index.mts +9 -0
- package/src/client/ui/component/notes-inspector/notes-inspector.css +244 -0
- package/src/client/ui/component/notes-inspector/notes-inspector.html +97 -0
- package/src/client/ui/component/notes-inspector/notes-inspector.mts +152 -0
- package/src/client/ui/component/pitch/IMPLEMENTATION.md +48 -0
- package/src/client/ui/component/pitch/index.mts +9 -0
- package/src/client/ui/component/pitch/pitch.css +295 -0
- package/src/client/ui/component/pitch/pitch.html +97 -0
- package/src/client/ui/component/pitch/pitch.mts +135 -0
- package/src/client/ui/component/timeline/IMPLEMENTATION.md +33 -0
- package/src/client/ui/component/timeline/index.mts +9 -0
- package/src/client/ui/component/timeline/timeline.css +264 -0
- package/src/client/ui/component/timeline/timeline.html +23 -0
- package/src/client/ui/component/timeline/timeline.mts +317 -0
- package/src/client/ui/component/timeline-item-details/IMPLEMENTATION.md +28 -0
- package/src/client/ui/component/timeline-item-details/index.mts +9 -0
- package/src/client/ui/component/timeline-item-details/timeline-item-details.css +286 -0
- package/src/client/ui/component/timeline-item-details/timeline-item-details.html +64 -0
- package/src/client/ui/component/timeline-item-details/timeline-item-details.mts +194 -0
- package/src/client/ui/router/index.mts +3 -0
- package/src/client/ui/router/space-gib-router-helpers.mts +272 -0
- package/src/client/ui/router/space-gib-router-helpers.respec.mts +353 -0
- package/src/client/ui/router/space-gib-router-service.mts +186 -0
- package/src/client/ui/router/space-gib-router-types.mts +93 -0
- package/src/client/ui/shell/cosmic-big-bang.mts +844 -0
- package/src/client/ui/shell/space-gib-shell-constants.mts +7 -0
- package/src/client/ui/shell/space-gib-shell-service.mts +1728 -31
- package/src/server/server.mts +20 -1
- package/tsconfig.test.json +5 -1
- package/dist/client/chunk-CRJV762I.mjs +0 -3102
- package/dist/client/chunk-LXRCF5OS.mjs +0 -25
- package/dist/client/chunk-UBDQUZZV.mjs +0 -1
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
<div id="chat-child-root" class="chat-child-root">
|
|
2
|
+
<div class="chat-context-header">
|
|
3
|
+
<div class="chat-context-info">
|
|
4
|
+
<span class="chat-context-icon">💬</span>
|
|
5
|
+
<span id="chat-context-title" class="chat-context-title">Context Chat</span>
|
|
6
|
+
</div>
|
|
7
|
+
<div class="chat-context-meta">
|
|
8
|
+
<span id="chat-message-count" class="chat-message-count">0 messages</span>
|
|
9
|
+
</div>
|
|
10
|
+
</div>
|
|
11
|
+
|
|
12
|
+
<div id="chat-messages-container" class="chat-messages-container">
|
|
13
|
+
<div id="chat-empty-state" class="chat-empty-state" style="display: none;">
|
|
14
|
+
<span class="empty-icon">💭</span>
|
|
15
|
+
<p>No comments in this thread yet.</p>
|
|
16
|
+
<span class="empty-hint">Start the discussion below. Every reply can become its own nested thread!</span>
|
|
17
|
+
</div>
|
|
18
|
+
<div id="chat-messages-list" class="chat-messages-list"></div>
|
|
19
|
+
</div>
|
|
20
|
+
|
|
21
|
+
<div class="chat-compose-container">
|
|
22
|
+
<!-- Compose Toolbar / Header -->
|
|
23
|
+
<div class="chat-compose-toolbar">
|
|
24
|
+
<input type="text" id="chat-title-input" class="chat-title-input" placeholder="Title (optional, required for new topic)..." />
|
|
25
|
+
<div class="compose-toolbar-actions">
|
|
26
|
+
<button id="btn-toggle-encrypt" class="btn-compose-tool" type="button" title="Toggle Encryption Options">
|
|
27
|
+
<span class="tool-icon">🔒</span>
|
|
28
|
+
<span class="tool-label">Encrypt</span>
|
|
29
|
+
</button>
|
|
30
|
+
<button id="btn-toggle-preview" class="btn-compose-tool" type="button" title="Toggle Markdown Preview">
|
|
31
|
+
<span class="tool-icon">👁️</span>
|
|
32
|
+
<span class="tool-label">Preview</span>
|
|
33
|
+
</button>
|
|
34
|
+
<button id="btn-toggle-compose-collapse" class="btn-compose-collapse" type="button" title="Collapse / Expand Compose Area">
|
|
35
|
+
<span id="compose-collapse-arrow">▼</span>
|
|
36
|
+
</button>
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
39
|
+
|
|
40
|
+
<!-- Collapsible Compose Body -->
|
|
41
|
+
<div id="chat-compose-body" class="chat-compose-body">
|
|
42
|
+
<!-- Textarea + Send Bar -->
|
|
43
|
+
<div class="chat-compose-bar">
|
|
44
|
+
<textarea id="chat-input" class="chat-input" placeholder="Write markdown comment... (Shift+Enter for newline)" rows="2"></textarea>
|
|
45
|
+
<div class="compose-send-group">
|
|
46
|
+
<select id="select-enter-behavior" class="select-enter-behavior" title="ENTER key behavior: Send or Newline">
|
|
47
|
+
<option value="send">Enter: Send</option>
|
|
48
|
+
<option value="newline">Enter: Newline</option>
|
|
49
|
+
</select>
|
|
50
|
+
<button id="btn-chat-send" class="btn-chat-send" title="Send Message">
|
|
51
|
+
<span class="send-icon">💬</span>
|
|
52
|
+
<span class="send-label">Send</span>
|
|
53
|
+
</button>
|
|
54
|
+
</div>
|
|
55
|
+
</div>
|
|
56
|
+
|
|
57
|
+
<!-- Markdown Preview Drawer (Collapsible, below compose bar) -->
|
|
58
|
+
<div id="chat-preview-drawer" class="chat-preview-drawer hidden">
|
|
59
|
+
<div class="preview-drawer-header">
|
|
60
|
+
<span class="preview-title">Markdown Preview</span>
|
|
61
|
+
<span id="preview-encryption-notice" class="preview-encryption-notice hidden">🔒 Encrypted Output</span>
|
|
62
|
+
</div>
|
|
63
|
+
<div id="preview-content-box" class="preview-content-box">
|
|
64
|
+
<h4 id="preview-title-render" class="preview-title-render"></h4>
|
|
65
|
+
<div id="preview-body-render" class="preview-body-render"></div>
|
|
66
|
+
</div>
|
|
67
|
+
</div>
|
|
68
|
+
|
|
69
|
+
<!-- Encryption Drawer (Collapsible, below compose bar) -->
|
|
70
|
+
<div id="chat-encrypt-drawer" class="chat-encrypt-drawer hidden">
|
|
71
|
+
<div class="encrypt-drawer-header">
|
|
72
|
+
<span class="encrypt-drawer-title">🔒 Encryption Settings</span>
|
|
73
|
+
<span id="session-key-badge" class="session-key-badge hidden" title="Ephemeral in-memory session key active">🔑 Session key active</span>
|
|
74
|
+
</div>
|
|
75
|
+
<div class="encrypt-drawer-row">
|
|
76
|
+
<input type="password" id="input-encrypt-passphrase" class="encrypt-passphrase-input" placeholder="Passphrase (session in-memory only)..." autocomplete="off" />
|
|
77
|
+
<select id="select-encrypt-algo" class="select-encrypt-algo" title="Encryption Algorithm">
|
|
78
|
+
<option value="AES">AES</option>
|
|
79
|
+
<option value="AES + encrypt-gib">AES + encrypt-gib</option>
|
|
80
|
+
<option value="encrypt-gib">encrypt-gib</option>
|
|
81
|
+
</select>
|
|
82
|
+
</div>
|
|
83
|
+
<div class="encrypt-preview-row">
|
|
84
|
+
<span class="encrypt-preview-label">Live Ciphertext Preview (Title + Body):</span>
|
|
85
|
+
<textarea id="textarea-encrypt-preview" class="textarea-encrypt-preview" readonly placeholder="Type title or body to see live encrypted ciphertext preview..."></textarea>
|
|
86
|
+
</div>
|
|
87
|
+
</div>
|
|
88
|
+
</div>
|
|
89
|
+
</div>
|
|
90
|
+
</div>
|