vibespot 0.9.4 → 1.0.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 +25 -10
- package/dist/index.js +772 -216
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/ui/chat.js +349 -9
- package/ui/dashboard.js +28 -24
- package/ui/dialog.js +3 -1
- package/ui/index.html +22 -10
- package/ui/settings.js +66 -0
- package/ui/styles.css +143 -11
package/ui/styles.css
CHANGED
|
@@ -840,21 +840,31 @@ body { display: flex; }
|
|
|
840
840
|
color: var(--success);
|
|
841
841
|
}
|
|
842
842
|
|
|
843
|
-
.brand-asset-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
843
|
+
.brand-asset-row {
|
|
844
|
+
display: flex;
|
|
845
|
+
align-items: center;
|
|
846
|
+
gap: 4px;
|
|
847
|
+
}
|
|
848
|
+
.brand-asset-actions {
|
|
849
|
+
display: flex;
|
|
850
|
+
gap: 2px;
|
|
851
|
+
}
|
|
852
|
+
.brand-asset-action {
|
|
847
853
|
background: none;
|
|
848
854
|
border: none;
|
|
849
|
-
color: var(--
|
|
855
|
+
color: var(--text-muted);
|
|
850
856
|
cursor: pointer;
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
transition:
|
|
857
|
+
font-size: 14px;
|
|
858
|
+
padding: 2px 4px;
|
|
859
|
+
border-radius: var(--radius-sm);
|
|
860
|
+
transition: color 0.15s, background 0.15s;
|
|
855
861
|
}
|
|
856
|
-
.brand-asset-
|
|
857
|
-
|
|
862
|
+
.brand-asset-action:hover {
|
|
863
|
+
color: var(--accent);
|
|
864
|
+
background: var(--bg-hover);
|
|
865
|
+
}
|
|
866
|
+
.brand-asset-action--delete:hover {
|
|
867
|
+
color: var(--error);
|
|
858
868
|
}
|
|
859
869
|
|
|
860
870
|
.brand-asset-upload__label {
|
|
@@ -2080,6 +2090,128 @@ body { display: flex; }
|
|
|
2080
2090
|
flex-shrink: 0;
|
|
2081
2091
|
}
|
|
2082
2092
|
|
|
2093
|
+
/* Agentic pipeline step progress */
|
|
2094
|
+
.pipeline-steps {
|
|
2095
|
+
display: flex;
|
|
2096
|
+
flex-direction: column;
|
|
2097
|
+
gap: 6px;
|
|
2098
|
+
padding: 4px 0;
|
|
2099
|
+
}
|
|
2100
|
+
|
|
2101
|
+
.pipeline-step {
|
|
2102
|
+
display: flex;
|
|
2103
|
+
align-items: flex-start;
|
|
2104
|
+
gap: 6px;
|
|
2105
|
+
font-size: 13px;
|
|
2106
|
+
color: var(--text-muted);
|
|
2107
|
+
flex-wrap: wrap;
|
|
2108
|
+
}
|
|
2109
|
+
|
|
2110
|
+
.pipeline-step--active {
|
|
2111
|
+
color: var(--accent);
|
|
2112
|
+
font-weight: 500;
|
|
2113
|
+
}
|
|
2114
|
+
|
|
2115
|
+
.pipeline-step--active .pipeline-step__icon {
|
|
2116
|
+
animation: spin 0.8s linear infinite;
|
|
2117
|
+
display: inline-block;
|
|
2118
|
+
}
|
|
2119
|
+
|
|
2120
|
+
.pipeline-step--done {
|
|
2121
|
+
color: var(--success, #4ade80);
|
|
2122
|
+
}
|
|
2123
|
+
|
|
2124
|
+
.pipeline-step--done .pipeline-step__icon {
|
|
2125
|
+
animation: none;
|
|
2126
|
+
font-size: 0;
|
|
2127
|
+
}
|
|
2128
|
+
|
|
2129
|
+
.pipeline-step--done .pipeline-step__icon::after {
|
|
2130
|
+
content: "✓";
|
|
2131
|
+
font-size: 13px;
|
|
2132
|
+
}
|
|
2133
|
+
|
|
2134
|
+
.pipeline-step__decision {
|
|
2135
|
+
width: 100%;
|
|
2136
|
+
font-size: 11.5px;
|
|
2137
|
+
color: var(--text-dim);
|
|
2138
|
+
padding-left: 20px;
|
|
2139
|
+
margin-top: 2px;
|
|
2140
|
+
white-space: pre-line;
|
|
2141
|
+
}
|
|
2142
|
+
|
|
2143
|
+
/* Module progress cards during parallel generation */
|
|
2144
|
+
.pipeline-modules {
|
|
2145
|
+
display: flex;
|
|
2146
|
+
flex-wrap: wrap;
|
|
2147
|
+
gap: 6px;
|
|
2148
|
+
padding: 6px 0 2px;
|
|
2149
|
+
}
|
|
2150
|
+
|
|
2151
|
+
.pipeline-module-card {
|
|
2152
|
+
display: inline-flex;
|
|
2153
|
+
align-items: center;
|
|
2154
|
+
gap: 4px;
|
|
2155
|
+
padding: 3px 8px;
|
|
2156
|
+
border-radius: 4px;
|
|
2157
|
+
font-size: 12px;
|
|
2158
|
+
background: var(--surface-elevated, rgba(255,255,255,0.05));
|
|
2159
|
+
border: 1px solid var(--border);
|
|
2160
|
+
}
|
|
2161
|
+
|
|
2162
|
+
.pipeline-module-card--generating {
|
|
2163
|
+
border-color: var(--accent);
|
|
2164
|
+
color: var(--accent);
|
|
2165
|
+
}
|
|
2166
|
+
|
|
2167
|
+
.pipeline-module-card--complete {
|
|
2168
|
+
border-color: var(--success, #4ade80);
|
|
2169
|
+
color: var(--success, #4ade80);
|
|
2170
|
+
}
|
|
2171
|
+
|
|
2172
|
+
.pipeline-module-card--failed {
|
|
2173
|
+
border-color: var(--error, #ef4444);
|
|
2174
|
+
color: var(--error, #ef4444);
|
|
2175
|
+
}
|
|
2176
|
+
|
|
2177
|
+
.pipeline-module-card--retrying {
|
|
2178
|
+
border-color: var(--warning, #f59e0b);
|
|
2179
|
+
color: var(--warning, #f59e0b);
|
|
2180
|
+
}
|
|
2181
|
+
|
|
2182
|
+
.pipeline-module-card__name {
|
|
2183
|
+
font-weight: 500;
|
|
2184
|
+
}
|
|
2185
|
+
|
|
2186
|
+
.pipeline-module-card__status {
|
|
2187
|
+
font-size: 11px;
|
|
2188
|
+
opacity: 0.8;
|
|
2189
|
+
}
|
|
2190
|
+
|
|
2191
|
+
.pipeline-stats {
|
|
2192
|
+
font-size: 12px;
|
|
2193
|
+
color: var(--success, #4ade80);
|
|
2194
|
+
padding: 6px 0 2px;
|
|
2195
|
+
font-weight: 500;
|
|
2196
|
+
}
|
|
2197
|
+
|
|
2198
|
+
.pipeline-stats--partial {
|
|
2199
|
+
color: var(--warning, #f59e0b);
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2202
|
+
.pipeline-timer {
|
|
2203
|
+
font-size: 12px;
|
|
2204
|
+
color: var(--text-muted, #999);
|
|
2205
|
+
padding: 6px 0 0;
|
|
2206
|
+
}
|
|
2207
|
+
|
|
2208
|
+
.pipeline-modules-restored {
|
|
2209
|
+
display: flex;
|
|
2210
|
+
flex-wrap: wrap;
|
|
2211
|
+
gap: 6px;
|
|
2212
|
+
padding: 6px 0;
|
|
2213
|
+
}
|
|
2214
|
+
|
|
2083
2215
|
.chat-msg__meta {
|
|
2084
2216
|
font-size: 11px;
|
|
2085
2217
|
color: var(--text-dim);
|