@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,184 @@
|
|
|
1
|
+
/* ── Hero section ── */
|
|
2
|
+
.hero-section {
|
|
3
|
+
max-width: 720px;
|
|
4
|
+
margin: 0 auto;
|
|
5
|
+
padding: 6rem 1.5rem 4rem;
|
|
6
|
+
text-align: center;
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-direction: column;
|
|
9
|
+
align-items: center;
|
|
10
|
+
gap: 1.25rem;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.hero-glyph {
|
|
14
|
+
font-size: 4rem;
|
|
15
|
+
color: var(--clr-accent);
|
|
16
|
+
animation: pulse-glyph 3s ease-in-out infinite;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
@keyframes pulse-glyph {
|
|
20
|
+
|
|
21
|
+
0%,
|
|
22
|
+
100% {
|
|
23
|
+
text-shadow: 0 0 0 transparent;
|
|
24
|
+
opacity: 1;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
50% {
|
|
28
|
+
text-shadow: 0 0 30px var(--clr-accent-glow);
|
|
29
|
+
opacity: 0.85;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.hero-title {
|
|
34
|
+
font-size: clamp(2.5rem, 6vw, 4rem);
|
|
35
|
+
font-weight: 700;
|
|
36
|
+
letter-spacing: -0.03em;
|
|
37
|
+
background: linear-gradient(135deg, var(--clr-accent) 0%, #44aaff 100%);
|
|
38
|
+
-webkit-background-clip: text;
|
|
39
|
+
-webkit-text-fill-color: transparent;
|
|
40
|
+
background-clip: text;
|
|
41
|
+
line-height: 1.1;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.hero-tagline {
|
|
45
|
+
font-size: 1.125rem;
|
|
46
|
+
color: var(--clr-text-secondary);
|
|
47
|
+
max-width: 480px;
|
|
48
|
+
line-height: 1.7;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.cta-row {
|
|
52
|
+
display: flex;
|
|
53
|
+
gap: 0.75rem;
|
|
54
|
+
flex-wrap: wrap;
|
|
55
|
+
justify-content: center;
|
|
56
|
+
margin-top: 0.5rem;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.cta-btn {
|
|
60
|
+
padding: 0.75rem 1.75rem;
|
|
61
|
+
border-radius: var(--radius-md);
|
|
62
|
+
font-family: var(--font-sans);
|
|
63
|
+
font-size: 0.9375rem;
|
|
64
|
+
font-weight: 600;
|
|
65
|
+
cursor: pointer;
|
|
66
|
+
text-decoration: none;
|
|
67
|
+
transition: all var(--t-med);
|
|
68
|
+
display: inline-flex;
|
|
69
|
+
align-items: center;
|
|
70
|
+
gap: 0.4rem;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.cta-primary {
|
|
74
|
+
background: var(--clr-accent);
|
|
75
|
+
color: var(--clr-bg-deep);
|
|
76
|
+
border: none;
|
|
77
|
+
box-shadow: 0 0 20px var(--clr-accent-glow);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.cta-primary:hover {
|
|
81
|
+
background: #9fffa5;
|
|
82
|
+
box-shadow: 0 0 32px rgba(120, 248, 126, 0.35);
|
|
83
|
+
transform: translateY(-1px);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.cta-secondary {
|
|
87
|
+
background: transparent;
|
|
88
|
+
color: var(--clr-text-primary);
|
|
89
|
+
border: 1px solid var(--clr-border);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.cta-secondary:hover {
|
|
93
|
+
border-color: var(--clr-border-hover);
|
|
94
|
+
background: rgba(255, 255, 255, 0.04);
|
|
95
|
+
transform: translateY(-1px);
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
/* ── Features section ── */
|
|
99
|
+
.features-section {
|
|
100
|
+
max-width: 1000px;
|
|
101
|
+
margin: 0 auto;
|
|
102
|
+
padding: 0 1.5rem 5rem;
|
|
103
|
+
display: grid;
|
|
104
|
+
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
|
|
105
|
+
gap: 1.25rem;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.feature-card {
|
|
109
|
+
background: var(--clr-bg-glass);
|
|
110
|
+
border: 1px solid var(--clr-border);
|
|
111
|
+
border-radius: var(--radius-lg);
|
|
112
|
+
padding: 1.75rem;
|
|
113
|
+
backdrop-filter: blur(12px);
|
|
114
|
+
transition: border-color var(--t-med), box-shadow var(--t-med), transform var(--t-med);
|
|
115
|
+
display: flex;
|
|
116
|
+
flex-direction: column;
|
|
117
|
+
gap: 0.75rem;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.feature-card:hover {
|
|
121
|
+
border-color: var(--clr-border-hover);
|
|
122
|
+
box-shadow: var(--shadow-glow);
|
|
123
|
+
transform: translateY(-3px);
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.feature-icon {
|
|
127
|
+
font-size: 1.75rem;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.feature-title {
|
|
131
|
+
font-size: 1.1rem;
|
|
132
|
+
font-weight: 600;
|
|
133
|
+
color: var(--clr-text-primary);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.feature-desc {
|
|
137
|
+
font-size: 0.9rem;
|
|
138
|
+
color: var(--clr-text-secondary);
|
|
139
|
+
line-height: 1.65;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.feature-desc code {
|
|
143
|
+
font-family: var(--font-mono);
|
|
144
|
+
font-size: 0.8rem;
|
|
145
|
+
background: rgba(120, 248, 126, 0.1);
|
|
146
|
+
color: var(--clr-accent);
|
|
147
|
+
padding: 0.1em 0.35em;
|
|
148
|
+
border-radius: 3px;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
/* ── Status section ── */
|
|
152
|
+
.status-section {
|
|
153
|
+
max-width: 400px;
|
|
154
|
+
margin: 0 auto;
|
|
155
|
+
padding: 0 1.5rem 4rem;
|
|
156
|
+
display: flex;
|
|
157
|
+
justify-content: center;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.status-badge {
|
|
161
|
+
display: inline-flex;
|
|
162
|
+
align-items: center;
|
|
163
|
+
gap: 0.5rem;
|
|
164
|
+
padding: 0.5rem 1rem;
|
|
165
|
+
border-radius: 999px;
|
|
166
|
+
font-size: 0.85rem;
|
|
167
|
+
font-weight: 500;
|
|
168
|
+
border: 1px solid var(--clr-border);
|
|
169
|
+
background: var(--clr-bg-glass);
|
|
170
|
+
backdrop-filter: blur(8px);
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.status-loading {
|
|
174
|
+
color: var(--clr-text-secondary);
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.status-ready {
|
|
178
|
+
color: var(--clr-accent);
|
|
179
|
+
border-color: var(--clr-accent-dim);
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.status-error {
|
|
183
|
+
color: var(--clr-danger);
|
|
184
|
+
}
|