@akropolys/kiku 1.7.12 → 1.7.13
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/index.js +13 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -0
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +69 -1
- package/dist/styles.css.map +1 -1
- package/package.json +2 -2
package/dist/styles.css
CHANGED
|
@@ -174,6 +174,73 @@
|
|
|
174
174
|
background: var(--hsk-primary);
|
|
175
175
|
color: #fff;
|
|
176
176
|
}
|
|
177
|
+
.hsk-streaming-cursor {
|
|
178
|
+
display: inline-block;
|
|
179
|
+
width: 6px;
|
|
180
|
+
height: 1.1em;
|
|
181
|
+
margin-left: 3px;
|
|
182
|
+
vertical-align: -2px;
|
|
183
|
+
background-color: var(--hsk-primary);
|
|
184
|
+
animation: hsk-cursor-blink 0.9s infinite;
|
|
185
|
+
}
|
|
186
|
+
@keyframes hsk-cursor-blink {
|
|
187
|
+
0%, 100% {
|
|
188
|
+
opacity: 1;
|
|
189
|
+
}
|
|
190
|
+
50% {
|
|
191
|
+
opacity: 0;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
.hsk-status-live {
|
|
195
|
+
display: flex;
|
|
196
|
+
align-items: center;
|
|
197
|
+
gap: 8px;
|
|
198
|
+
font-size: 12px;
|
|
199
|
+
color: #666;
|
|
200
|
+
padding: 4px 0 8px 0;
|
|
201
|
+
font-weight: 500;
|
|
202
|
+
}
|
|
203
|
+
.hsk-status-dot {
|
|
204
|
+
width: 8px;
|
|
205
|
+
height: 8px;
|
|
206
|
+
border-radius: 50%;
|
|
207
|
+
background-color: var(--hsk-primary);
|
|
208
|
+
animation: hsk-pulse 1.4s infinite ease-in-out;
|
|
209
|
+
}
|
|
210
|
+
@keyframes hsk-pulse {
|
|
211
|
+
0%, 100% {
|
|
212
|
+
transform: scale(0.8);
|
|
213
|
+
opacity: 0.5;
|
|
214
|
+
}
|
|
215
|
+
50% {
|
|
216
|
+
transform: scale(1.2);
|
|
217
|
+
opacity: 1;
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
.hsk-thinking-details {
|
|
221
|
+
margin-bottom: 10px;
|
|
222
|
+
padding: 8px 12px;
|
|
223
|
+
background: rgba(0, 0, 0, 0.03);
|
|
224
|
+
border: 1px solid rgba(0, 0, 0, 0.06);
|
|
225
|
+
border-radius: 8px;
|
|
226
|
+
font-size: 12px;
|
|
227
|
+
}
|
|
228
|
+
.hsk-thinking-summary {
|
|
229
|
+
cursor: pointer;
|
|
230
|
+
font-weight: 600;
|
|
231
|
+
color: #666;
|
|
232
|
+
user-select: none;
|
|
233
|
+
}
|
|
234
|
+
.hsk-thinking-text {
|
|
235
|
+
margin-top: 8px;
|
|
236
|
+
white-space: pre-wrap;
|
|
237
|
+
color: #555;
|
|
238
|
+
font-family: monospace;
|
|
239
|
+
font-size: 11px;
|
|
240
|
+
line-height: 1.4;
|
|
241
|
+
max-height: 200px;
|
|
242
|
+
overflow-y: auto;
|
|
243
|
+
}
|
|
177
244
|
.hsk-sources-container {
|
|
178
245
|
margin-left: 36px;
|
|
179
246
|
}
|
|
@@ -3714,7 +3781,8 @@
|
|
|
3714
3781
|
margin-top: 10px;
|
|
3715
3782
|
animation: hsk-msg-in .2s ease-out both;
|
|
3716
3783
|
}
|
|
3717
|
-
.hsk-cb-viz img
|
|
3784
|
+
.hsk-cb-viz img,
|
|
3785
|
+
.hsk-cb-viz video {
|
|
3718
3786
|
width: 100%;
|
|
3719
3787
|
max-width: 420px;
|
|
3720
3788
|
border-radius: 8px;
|