@zero-library/chat-copilot 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/dist/index.css ADDED
@@ -0,0 +1,503 @@
1
+ /* src/components/styles.module.less */
2
+ @keyframes styles_module_loading-line {
3
+ from {
4
+ background-position: 200% 0;
5
+ }
6
+ to {
7
+ background-position: 0 0;
8
+ }
9
+ }
10
+ .styles_module_loadingMessage {
11
+ position: relative;
12
+ padding-bottom: 6px;
13
+ }
14
+ .styles_module_loadingMessage::after {
15
+ content: "";
16
+ position: absolute;
17
+ left: 0;
18
+ bottom: 0;
19
+ height: 2px;
20
+ width: 100%;
21
+ background:
22
+ linear-gradient(
23
+ 90deg,
24
+ #ff6b23,
25
+ #af3cb8,
26
+ #53b6ff);
27
+ background-size: 200% 100%;
28
+ animation: styles_module_loading-line 1.2s linear infinite;
29
+ }
30
+ @keyframes styles_module_spin {
31
+ to {
32
+ transform: rotate(360deg);
33
+ }
34
+ }
35
+ .styles_module_chatAttachments > .ant-attachment-list .ant-attachment-list-content {
36
+ padding: 0 !important;
37
+ }
38
+ .styles_module_chatAttachments > .ant-attachment-list .ant-attachment-list-card-status-uploading .ant-progress .ant-progress-text {
39
+ display: none;
40
+ }
41
+ .styles_module_chatAttachments > .ant-attachment-list .ant-attachment-list-card-status-uploading .ant-progress .ant-progress-circle {
42
+ animation: spin 2s linear infinite;
43
+ }
44
+ .styles_module_chatAttachments > .ant-attachment-list .ant-attachment-list-card-status-uploading .ant-attachment-list-card-content {
45
+ gap: 4px;
46
+ }
47
+ .styles_module_chatAttachments > .ant-attachment-list .ant-attachment-list-card-status-uploading .ant-attachment-list-card-content .ant-attachment-list-card-desc {
48
+ width: 15px;
49
+ height: 15px;
50
+ border: 2px solid transparent;
51
+ border-color: #1890ff;
52
+ border-radius: 50%;
53
+ animation: spin 1s linear infinite;
54
+ box-sizing: border-box;
55
+ position: relative;
56
+ clip-path: inset(0 0 30% 0);
57
+ }
58
+ .styles_module_chatAttachments > .ant-attachment-list .ant-attachment-list-card-status-uploading .ant-attachment-list-card-content .ant-attachment-list-card-desc .ant-attachment-list-card-ellipsis-prefix {
59
+ display: none;
60
+ }
61
+ .styles_module_chatSender.ant-sender:focus-within {
62
+ box-shadow: none;
63
+ }
64
+ .styles_module_chatQuoteMsg {
65
+ margin-top: 4px;
66
+ }
67
+ .styles_module_chatQuoteMsg.ant-bubble > .ant-bubble-content {
68
+ min-height: auto;
69
+ background-color: var(--ant-color-fill-tertiary) !important;
70
+ color: var(--ant-color-text-tertiary);
71
+ }
72
+ .styles_module_chatQuoteMsg .styles_module_quoteTooltip {
73
+ max-width: 100%;
74
+ border: 1px solid #000;
75
+ }
76
+ .styles_module_chatQuoteMsg .styles_module_quoteTooltip .styles_module_quoteTooltipContainer {
77
+ max-height: 200px;
78
+ overflow-y: auto;
79
+ background-color: #fff;
80
+ color: #000;
81
+ }
82
+
83
+ /* src/components/custom-components/tool-renders/index.module.less */
84
+ .index_module_iconContainer {
85
+ width: 20px;
86
+ height: 20px;
87
+ display: flex;
88
+ align-items: center;
89
+ justify-content: center;
90
+ border-radius: var(--ant-border-radius-sm);
91
+ overflow: hidden;
92
+ flex-shrink: 0;
93
+ gap: 20;
94
+ }
95
+ .index_module_toolName {
96
+ font-size: 12px;
97
+ color: var(--ant-color-text-secondary);
98
+ flex: 1;
99
+ line-height: 22px;
100
+ }
101
+ .index_module_duration {
102
+ font-size: 12px;
103
+ color: var(--ant-color-text-tertiary);
104
+ flex-shrink: 0;
105
+ }
106
+ .index_module_statusIcon {
107
+ font-size: 12px;
108
+ display: flex;
109
+ align-items: center;
110
+ margin-left: 20px;
111
+ }
112
+ .index_module_sectionLabel {
113
+ font-size: 12px;
114
+ color: var(--ant-color-text-tertiary);
115
+ margin-bottom: 4px;
116
+ display: block;
117
+ }
118
+ .index_module_markdownContainer {
119
+ max-width: 100%;
120
+ overflow-x: auto;
121
+ font-size: 12px;
122
+ opacity: 0.85;
123
+ }
124
+ .index_module_sectionBlock {
125
+ display: block;
126
+ }
127
+ .index_module_todoList {
128
+ background-color: var(--ant-color-fill-alter);
129
+ border-radius: var(--ant-border-radius);
130
+ border: 1px solid var(--ant-color-border-secondary);
131
+ margin-top: 4px;
132
+ }
133
+ .index_module_todoItem {
134
+ padding: 8px 12px;
135
+ border-bottom: 1px solid var(--ant-color-border-secondary);
136
+ display: flex;
137
+ align-items: flex-start;
138
+ gap: 8px;
139
+ }
140
+ .index_module_todoItem:last-child {
141
+ border-bottom: none;
142
+ }
143
+ .index_module_statusIconWrapper {
144
+ margin-top: 2px;
145
+ }
146
+ .index_module_todoContent {
147
+ flex: 1;
148
+ min-width: 0;
149
+ }
150
+ .index_module_todoText {
151
+ font-size: 13px;
152
+ color: var(--ant-color-text);
153
+ }
154
+ .index_module_todoText.index_module_completed {
155
+ color: var(--ant-color-text-tertiary);
156
+ text-decoration: line-through;
157
+ }
158
+ .index_module_emptyText {
159
+ font-size: 12px;
160
+ }
161
+
162
+ /* src/ui/common/styles.module.less */
163
+ .styles_module_chatHeader {
164
+ padding: 8px 16px;
165
+ border-bottom: 1px solid #eee;
166
+ }
167
+ .styles_module_chatHeader .styles_module_chatTitle {
168
+ font-size: 16px;
169
+ font-weight: bold;
170
+ }
171
+ .styles_module_chatHeader .styles_module_popover {
172
+ max-height: 500px;
173
+ width: 300px;
174
+ display: flex;
175
+ flex-direction: column;
176
+ padding: 0;
177
+ }
178
+ .styles_module_chatHeader .styles_module_popover .ant-popover-inner-content {
179
+ min-height: 0;
180
+ display: flex;
181
+ flex-direction: column;
182
+ }
183
+ .styles_module_conversationListPanel {
184
+ width: 300px;
185
+ max-width: 100%;
186
+ border-right: 1px dashed #eee;
187
+ }
188
+ .styles_module_conversationListPanel .styles_module_createConversationButton {
189
+ height: 38px;
190
+ background-color: var(--ant-color-primary-bg);
191
+ border-radius: var(--ant-border-radius-lg);
192
+ color: var(--ant-color-primary);
193
+ font-weight: bold;
194
+ }
195
+ .styles_module_conversationListPanel .styles_module_conversations {
196
+ padding: 0 16px;
197
+ }
198
+ .styles_module_conversationListPanel .styles_module_conversations .ant-conversations-group-title {
199
+ padding: 0;
200
+ }
201
+ .styles_module_conversationListPanel .styles_module_conversations .ant-conversations-group-title .ant-typography {
202
+ color: #878aab;
203
+ }
204
+ .styles_module_conversationListPanel .styles_module_conversations .ant-conversations-list .ant-conversations-item {
205
+ padding-left: 16px;
206
+ touch-action: manipulation !important;
207
+ }
208
+ .styles_module_conversationListPanel .styles_module_conversations .ant-conversations-list .ant-conversations-item .ant-conversations-label {
209
+ color: rgba(0, 0, 0, 0.88);
210
+ }
211
+ .styles_module_conversationListPanel .styles_module_conversations .ant-conversations-list .ant-conversations-item.ant-conversations-item-active .ant-conversations-label {
212
+ color: var(--ant-color-primary);
213
+ }
214
+ .styles_module_chatWelcomeWrap {
215
+ height: 100%;
216
+ max-width: 1000px;
217
+ min-width: 320px;
218
+ width: calc(100% - 24px);
219
+ margin: 0 auto;
220
+ }
221
+ .styles_module_chatWelcomeWrap .ant-prompts .ant-prompts-list {
222
+ overflow: auto;
223
+ }
224
+ .styles_module_chatWelcomeWrap .styles_module_chatWelcome .ant-welcome-icon > img {
225
+ border-radius: 10px;
226
+ max-width: initial;
227
+ }
228
+ .styles_module_promptItem {
229
+ width: 100%;
230
+ max-width: 100%;
231
+ }
232
+ .styles_module_promptItem .ant-prompts-item {
233
+ max-width: 100%;
234
+ white-space: normal;
235
+ height: auto;
236
+ }
237
+ .styles_module_runStartedNode {
238
+ padding: 2px 12px;
239
+ border-radius: 4px;
240
+ background:
241
+ linear-gradient(
242
+ 90deg,
243
+ transparent 25%,
244
+ #e6f4ff 50%,
245
+ transparent 75%);
246
+ background-size: 200% 100%;
247
+ animation: styles_module_shimmer-bg 2s infinite linear;
248
+ display: flex;
249
+ width: 100px;
250
+ min-height: 28px;
251
+ box-sizing: border-box;
252
+ overflow: hidden;
253
+ }
254
+ .styles_module_runStartedNode .anticon-loading {
255
+ width: 14px;
256
+ height: 14px;
257
+ display: flex;
258
+ align-items: center;
259
+ justify-content: center;
260
+ }
261
+ .styles_module_runStartedNode .anticon-loading svg {
262
+ width: 14px;
263
+ height: 14px;
264
+ }
265
+ @keyframes styles_module_shimmer-bg {
266
+ 0% {
267
+ background-position: 200% 0;
268
+ }
269
+ 100% {
270
+ background-position: -200% 0;
271
+ }
272
+ }
273
+ .styles_module_bubbleList {
274
+ width: 100%;
275
+ }
276
+ .styles_module_bubbleList.ant-bubble-list {
277
+ width: 100%;
278
+ }
279
+ .styles_module_bubbleList.ant-bubble-list .ant-bubble-list-scroll-box .ant-bubble-list-scroll-content {
280
+ max-width: 1000px;
281
+ min-width: 320px;
282
+ width: calc(100% - 12px);
283
+ margin: 0 auto;
284
+ padding-right: 0;
285
+ padding-left: 10px;
286
+ }
287
+ .styles_module_bubbleList.ant-bubble-list .ant-bubble {
288
+ padding-top: 8px;
289
+ padding-bottom: 0;
290
+ width: 100%;
291
+ }
292
+ .styles_module_bubbleList.ant-bubble-list .ant-bubble:hover .message-actions {
293
+ opacity: 1;
294
+ pointer-events: auto;
295
+ }
296
+ .styles_module_bubbleList.ant-bubble-list .ant-bubble.ant-bubble-start {
297
+ padding-inline-end: 0%;
298
+ }
299
+ .styles_module_bubbleList.ant-bubble-list .ant-bubble.ant-bubble-start .ant-bubble-body {
300
+ width: 100%;
301
+ }
302
+ .styles_module_bubbleList.ant-bubble-list .ant-bubble.ant-bubble-start .ant-bubble-content {
303
+ background-color: transparent;
304
+ padding: 0;
305
+ padding-bottom: 0;
306
+ min-height: 0;
307
+ }
308
+ .styles_module_bubbleList.ant-bubble-list .ant-bubble.ant-bubble-start .ant-bubble-footer {
309
+ margin-top: 0;
310
+ }
311
+ .styles_module_bubbleList.ant-bubble-list .ant-bubble.ant-bubble-end .ant-bubble-content {
312
+ background-color: var(--ant-color-primary-bg, #e6f4ff);
313
+ }
314
+ .styles_module_bubbleList.ant-bubble-list .ant-bubble.ant-bubble-end .ant-bubble-content-borderless {
315
+ background-color: transparent;
316
+ }
317
+ .styles_module_bubbleList.ant-bubble-list .ant-bubble.ant-bubble-end .ant-bubble-content-borderless .ant-file-card-list-content {
318
+ padding: 0;
319
+ }
320
+ .styles_module_messageFooter {
321
+ min-height: 24px;
322
+ width: 100%;
323
+ }
324
+ .styles_module_messageActions {
325
+ opacity: 0;
326
+ pointer-events: none;
327
+ transition: opacity 0.2s ease;
328
+ }
329
+ .styles_module_resourceBtn {
330
+ align-items: center;
331
+ gap: 6px;
332
+ padding: 4px 8px;
333
+ font-size: 13px;
334
+ font-weight: 500;
335
+ color: #475569;
336
+ background-color: #f1f5f9;
337
+ border: 1px solid #e2e8f0;
338
+ border-radius: 12px;
339
+ transition: all 0.3s;
340
+ cursor: pointer;
341
+ }
342
+ .styles_module_resourceBtnActive {
343
+ background-color: var(--ant-color-primary);
344
+ color: #fff;
345
+ }
346
+ .styles_module_userInputCollapse {
347
+ width: calc(100% - 24px);
348
+ max-width: 1000px;
349
+ min-width: 320px;
350
+ margin: 0 auto;
351
+ }
352
+ .styles_module_logoArea {
353
+ margin-bottom: 1.5rem;
354
+ display: flex;
355
+ flex-direction: column;
356
+ align-items: center;
357
+ justify-content: center;
358
+ text-align: center;
359
+ margin-top: 40px;
360
+ }
361
+ .styles_module_logoArea .styles_module_logoContainer {
362
+ position: relative;
363
+ margin-bottom: 1.5rem;
364
+ cursor: pointer;
365
+ }
366
+ .styles_module_logoArea .styles_module_logoContainer .styles_module_staticHalo {
367
+ position: absolute;
368
+ inset: 0;
369
+ background-color: var(--ant-color-primary);
370
+ filter: blur(24px);
371
+ opacity: 0.2;
372
+ transition: opacity 700ms;
373
+ border-radius: 9999px;
374
+ }
375
+ .styles_module_logoArea .styles_module_logoContainer .styles_module_logoHoverWrapper {
376
+ position: relative;
377
+ z-index: 10;
378
+ padding: 0.5rem;
379
+ transition: all 500ms ease-out;
380
+ transform: scale(1) translateY(0);
381
+ }
382
+ .styles_module_logoArea .styles_module_logoContainer .styles_module_logoHoverWrapper .styles_module_logoImage {
383
+ width: 6rem;
384
+ height: 6rem;
385
+ object-fit: contain;
386
+ filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
387
+ transition: all 500ms;
388
+ }
389
+ .styles_module_logoArea .styles_module_logoContainer:hover .styles_module_staticHalo {
390
+ opacity: 0.5;
391
+ }
392
+ .styles_module_logoArea .styles_module_logoContainer:hover .styles_module_logoHoverWrapper {
393
+ transform: scale(1.1) translateY(-0.5rem);
394
+ }
395
+ .styles_module_logoArea .styles_module_logoContainer:hover .styles_module_logoImage {
396
+ filter: drop-shadow(0 10px 20px rgba(18, 124, 183, 0.4));
397
+ }
398
+ .styles_module_logoArea .styles_module_greetingTitle {
399
+ margin-bottom: 0.75rem;
400
+ font-size: 2.25rem;
401
+ line-height: 2.5rem;
402
+ font-weight: 700;
403
+ letter-spacing: -0.025em;
404
+ color: #1e293b;
405
+ }
406
+ @media (width >= 768px) {
407
+ .styles_module_logoArea .styles_module_greetingTitle {
408
+ font-size: 3rem;
409
+ line-height: 1;
410
+ }
411
+ }
412
+ .styles_module_logoArea .styles_module_greetingTitle .styles_module_gradientText {
413
+ color: transparent;
414
+ background-clip: text;
415
+ background-image:
416
+ linear-gradient(
417
+ to right,
418
+ var(--ant-color-primary),
419
+ #3b82f6);
420
+ }
421
+ .styles_module_logoArea .styles_module_greetingSubtitle {
422
+ font-size: 1.125rem;
423
+ line-height: 1.75rem;
424
+ font-weight: 500;
425
+ color: #64748b;
426
+ }
427
+ @media (width >= 768px) {
428
+ .styles_module_logoArea .styles_module_greetingSubtitle {
429
+ font-size: 1.25rem;
430
+ line-height: 1.75rem;
431
+ }
432
+ }
433
+ .styles_module_senderReferenceHeaderTitle > .ant-sender-header-title {
434
+ overflow: hidden;
435
+ }
436
+ .styles_module_senderReferenceHeaderContent {
437
+ padding: 0 !important;
438
+ }
439
+
440
+ /* src/ui/layouts/components/styles.module.less */
441
+ .styles_module_bodyWidth {
442
+ width: 100%;
443
+ height: 100%;
444
+ }
445
+ .styles_module_inputContainer {
446
+ max-width: 1000px;
447
+ min-width: 320px;
448
+ width: calc(100% - 24px);
449
+ }
450
+ .styles_module_disclaimerNotice {
451
+ font-size: 12px;
452
+ text-align: center;
453
+ color: #bfbfbf;
454
+ }
455
+ .styles_module_previewHeader {
456
+ padding-bottom: 4px;
457
+ border-bottom: 1px solid #e2e8f0;
458
+ }
459
+ .styles_module_previewCloseBtn {
460
+ cursor: pointer;
461
+ display: flex;
462
+ align-items: center;
463
+ color: var(--ant-color-text-tertiary);
464
+ transition: color 0.3s;
465
+ font-size: 16px;
466
+ }
467
+ .styles_module_previewCloseBtn:hover {
468
+ color: var(--ant-color-text);
469
+ }
470
+ .styles_module_previewCloseBtn .styles_module_closeIcon {
471
+ transition: transform 0.3s ease;
472
+ }
473
+ .styles_module_previewCloseBtn.styles_module_rotateIcon:hover .styles_module_closeIcon {
474
+ transform: rotate(90deg);
475
+ }
476
+
477
+ /* src/ui/layouts/index.module.less */
478
+ .index_module_chatLayout {
479
+ background-color: transparent;
480
+ height: 100%;
481
+ width: 100%;
482
+ }
483
+ .index_module_spinWrapper {
484
+ height: 100%;
485
+ }
486
+ .index_module_spinWrapper .ant-spin-container {
487
+ height: 100%;
488
+ }
489
+ .index_module_fullScroll {
490
+ overflow: auto;
491
+ flex: 1;
492
+ height: 100%;
493
+ }
494
+ .index_module_animatedSplitter .ant-splitter-panel {
495
+ transition: all 0.3s cubic-bezier(0.2, 0, 0, 1) !important;
496
+ }
497
+ .index_module_animatedSplitter .ant-splitter-bar {
498
+ transition: all 0.3s cubic-bezier(0.2, 0, 0, 1) !important;
499
+ }
500
+ .index_module_hideSplitterBar .ant-splitter-bar {
501
+ display: none !important;
502
+ }
503
+ /*# sourceMappingURL=index.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/components/styles.module.less","../src/components/custom-components/tool-renders/index.module.less","../src/ui/common/styles.module.less","../src/ui/layouts/components/styles.module.less","../src/ui/layouts/index.module.less"],"sourcesContent":["@keyframes loading-line {\n from {\n background-position: 200% 0;\n }\n to {\n background-position: 0 0;\n }\n}\n.loadingMessage {\n position: relative;\n padding-bottom: 6px;\n}\n.loadingMessage::after {\n content: '';\n position: absolute;\n left: 0;\n bottom: 0;\n height: 2px;\n width: 100%;\n background: linear-gradient(90deg, #ff6b23, #af3cb8, #53b6ff);\n background-size: 200% 100%;\n animation: loading-line 1.2s linear infinite;\n}\n@keyframes spin {\n to {\n transform: rotate(360deg);\n }\n}\n.chatAttachments:global > .ant-attachment-list .ant-attachment-list-content {\n padding: 0 !important;\n}\n.chatAttachments:global > .ant-attachment-list .ant-attachment-list-card-status-uploading .ant-progress .ant-progress-text {\n display: none;\n}\n.chatAttachments:global > .ant-attachment-list .ant-attachment-list-card-status-uploading .ant-progress .ant-progress-circle {\n animation: spin 2s linear infinite;\n}\n.chatAttachments:global > .ant-attachment-list .ant-attachment-list-card-status-uploading .ant-attachment-list-card-content {\n gap: 4px;\n}\n.chatAttachments:global > .ant-attachment-list .ant-attachment-list-card-status-uploading .ant-attachment-list-card-content .ant-attachment-list-card-desc {\n width: 15px;\n height: 15px;\n border: 2px solid transparent;\n border-color: #1890ff;\n border-radius: 50%;\n animation: spin 1s linear infinite;\n box-sizing: border-box;\n position: relative;\n clip-path: inset(0 0 30% 0);\n}\n.chatAttachments:global > .ant-attachment-list .ant-attachment-list-card-status-uploading .ant-attachment-list-card-content .ant-attachment-list-card-desc .ant-attachment-list-card-ellipsis-prefix {\n display: none;\n}\n.chatSender:global.ant-sender:focus-within {\n box-shadow: none;\n}\n.chatQuoteMsg {\n margin-top: 4px;\n}\n.chatQuoteMsg:global.ant-bubble > .ant-bubble-content {\n min-height: auto;\n background-color: var(--ant-color-fill-tertiary) !important;\n color: var(--ant-color-text-tertiary);\n}\n.chatQuoteMsg .quoteTooltip {\n max-width: 100%;\n border: 1px solid #000;\n}\n.chatQuoteMsg .quoteTooltip .quoteTooltipContainer {\n max-height: 200px;\n overflow-y: auto;\n background-color: #fff;\n color: #000;\n}\n",".iconContainer {\n width: 20px;\n height: 20px;\n display: flex;\n align-items: center;\n justify-content: center;\n border-radius: var(--ant-border-radius-sm);\n overflow: hidden;\n flex-shrink: 0;\n gap: 20;\n}\n.toolName {\n font-size: 12px;\n color: var(--ant-color-text-secondary);\n flex: 1;\n line-height: 22px;\n}\n.duration {\n font-size: 12px;\n color: var(--ant-color-text-tertiary);\n flex-shrink: 0;\n}\n.statusIcon {\n font-size: 12px;\n display: flex;\n align-items: center;\n margin-left: 20px;\n}\n.sectionLabel {\n font-size: 12px;\n color: var(--ant-color-text-tertiary);\n margin-bottom: 4px;\n display: block;\n}\n.markdownContainer {\n max-width: 100%;\n overflow-x: auto;\n font-size: 12px;\n opacity: 0.85;\n}\n.sectionBlock {\n display: block;\n}\n.todoList {\n background-color: var(--ant-color-fill-alter);\n border-radius: var(--ant-border-radius);\n border: 1px solid var(--ant-color-border-secondary);\n margin-top: 4px;\n}\n.todoItem {\n padding: 8px 12px;\n border-bottom: 1px solid var(--ant-color-border-secondary);\n display: flex;\n align-items: flex-start;\n gap: 8px;\n}\n.todoItem:last-child {\n border-bottom: none;\n}\n.statusIconWrapper {\n margin-top: 2px;\n}\n.todoContent {\n flex: 1;\n min-width: 0;\n}\n.todoText {\n font-size: 13px;\n color: var(--ant-color-text);\n}\n.todoText.completed {\n color: var(--ant-color-text-tertiary);\n text-decoration: line-through;\n}\n.emptyText {\n font-size: 12px;\n}\n",".chatHeader {\n padding: 8px 16px;\n border-bottom: 1px solid #eee;\n}\n.chatHeader .chatTitle {\n font-size: 16px;\n font-weight: bold;\n}\n.chatHeader .popover {\n max-height: 500px;\n width: 300px;\n display: flex;\n flex-direction: column;\n padding: 0;\n}\n.chatHeader .popover :global .ant-popover-inner-content {\n min-height: 0;\n display: flex;\n flex-direction: column;\n}\n.conversationListPanel {\n width: 300px;\n max-width: 100%;\n border-right: 1px dashed #eee;\n}\n.conversationListPanel .createConversationButton {\n height: 38px;\n background-color: var(--ant-color-primary-bg);\n border-radius: var(--ant-border-radius-lg);\n color: var(--ant-color-primary);\n font-weight: bold;\n}\n.conversationListPanel .conversations {\n padding: 0 16px;\n}\n.conversationListPanel .conversations :global .ant-conversations-group-title {\n padding: 0;\n}\n.conversationListPanel .conversations :global .ant-conversations-group-title .ant-typography {\n color: #878aab;\n}\n.conversationListPanel .conversations :global .ant-conversations-list .ant-conversations-item {\n padding-left: 16px;\n touch-action: manipulation !important;\n}\n.conversationListPanel .conversations :global .ant-conversations-list .ant-conversations-item .ant-conversations-label {\n color: rgba(0, 0, 0, 0.88);\n}\n.conversationListPanel .conversations :global .ant-conversations-list .ant-conversations-item.ant-conversations-item-active .ant-conversations-label {\n color: var(--ant-color-primary);\n}\n.chatWelcomeWrap {\n height: 100%;\n max-width: 1000px;\n min-width: 320px;\n width: calc(100% - 24px);\n margin: 0 auto;\n}\n.chatWelcomeWrap :global .ant-prompts .ant-prompts-list {\n overflow: auto;\n}\n.chatWelcomeWrap .chatWelcome :global .ant-welcome-icon > img {\n border-radius: 10px;\n max-width: initial;\n}\n.promptItem {\n width: 100%;\n max-width: 100%;\n}\n.promptItem :global .ant-prompts-item {\n max-width: 100%;\n white-space: normal;\n height: auto;\n}\n.runStartedNode {\n padding: 2px 12px;\n border-radius: 4px;\n background: linear-gradient(90deg, transparent 25%, #e6f4ff 50%, transparent 75%);\n background-size: 200% 100%;\n animation: shimmer-bg 2s infinite linear;\n display: flex;\n width: 100px;\n min-height: 28px;\n box-sizing: border-box;\n overflow: hidden;\n}\n.runStartedNode :global .anticon-loading {\n width: 14px;\n height: 14px;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.runStartedNode :global .anticon-loading svg {\n width: 14px;\n height: 14px;\n}\n@keyframes shimmer-bg {\n 0% {\n background-position: 200% 0;\n }\n 100% {\n background-position: -200% 0;\n }\n}\n.bubbleList {\n width: 100%;\n}\n.bubbleList:global.ant-bubble-list {\n width: 100%;\n}\n.bubbleList:global.ant-bubble-list .ant-bubble-list-scroll-box .ant-bubble-list-scroll-content {\n max-width: 1000px;\n min-width: 320px;\n width: calc(100% - 12px);\n margin: 0 auto;\n padding-right: 0;\n padding-left: 10px;\n}\n.bubbleList:global.ant-bubble-list .ant-bubble {\n padding-top: 8px;\n padding-bottom: 0;\n width: 100%;\n}\n.bubbleList:global.ant-bubble-list .ant-bubble:hover .message-actions {\n opacity: 1;\n pointer-events: auto;\n}\n.bubbleList:global.ant-bubble-list .ant-bubble.ant-bubble-start {\n padding-inline-end: 0%;\n}\n.bubbleList:global.ant-bubble-list .ant-bubble.ant-bubble-start .ant-bubble-body {\n width: 100%;\n}\n.bubbleList:global.ant-bubble-list .ant-bubble.ant-bubble-start .ant-bubble-content {\n background-color: transparent;\n padding: 0;\n padding-bottom: 0;\n min-height: 0;\n}\n.bubbleList:global.ant-bubble-list .ant-bubble.ant-bubble-start .ant-bubble-footer {\n margin-top: 0;\n}\n.bubbleList:global.ant-bubble-list .ant-bubble.ant-bubble-end .ant-bubble-content {\n background-color: var(--ant-color-primary-bg, #e6f4ff);\n}\n.bubbleList:global.ant-bubble-list .ant-bubble.ant-bubble-end .ant-bubble-content-borderless {\n background-color: transparent;\n}\n.bubbleList:global.ant-bubble-list .ant-bubble.ant-bubble-end .ant-bubble-content-borderless .ant-file-card-list-content {\n padding: 0;\n}\n.messageFooter {\n min-height: 24px;\n width: 100%;\n}\n.messageActions {\n opacity: 0;\n pointer-events: none;\n transition: opacity 0.2s ease;\n}\n.resourceBtn {\n align-items: center;\n gap: 6px;\n padding: 4px 8px;\n font-size: 13px;\n font-weight: 500;\n color: #475569;\n /* text-slate-600 */\n background-color: #f1f5f9;\n /* bg-slate-100/60 */\n border: 1px solid #e2e8f0;\n /* border-slate-200/50 */\n border-radius: 12px;\n /* rounded-xl */\n transition: all 0.3s;\n cursor: pointer;\n}\n.resourceBtnActive {\n background-color: var(--ant-color-primary);\n color: #fff;\n}\n.userInputCollapse {\n width: calc(100% - 24px);\n max-width: 1000px;\n min-width: 320px;\n margin: 0 auto;\n}\n.logoArea {\n margin-bottom: 1.5rem;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n text-align: center;\n margin-top: 40px;\n}\n.logoArea .logoContainer {\n position: relative;\n margin-bottom: 1.5rem;\n cursor: pointer;\n}\n.logoArea .logoContainer .staticHalo {\n position: absolute;\n inset: 0;\n background-color: var(--ant-color-primary);\n filter: blur(24px);\n opacity: 0.2;\n transition: opacity 700ms;\n border-radius: 9999px;\n}\n.logoArea .logoContainer .logoHoverWrapper {\n position: relative;\n z-index: 10;\n padding: 0.5rem;\n transition: all 500ms ease-out;\n transform: scale(1) translateY(0);\n}\n.logoArea .logoContainer .logoHoverWrapper .logoImage {\n width: 6rem;\n height: 6rem;\n object-fit: contain;\n filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));\n transition: all 500ms;\n}\n.logoArea .logoContainer:hover .staticHalo {\n opacity: 0.5;\n}\n.logoArea .logoContainer:hover .logoHoverWrapper {\n transform: scale(1.1) translateY(-0.5rem);\n}\n.logoArea .logoContainer:hover .logoImage {\n filter: drop-shadow(0 10px 20px rgba(18, 124, 183, 0.4));\n}\n.logoArea .greetingTitle {\n margin-bottom: 0.75rem;\n font-size: 2.25rem;\n line-height: 2.5rem;\n font-weight: 700;\n letter-spacing: -0.025em;\n color: #1e293b;\n}\n@media (width >= 768px) {\n .logoArea .greetingTitle {\n font-size: 3rem;\n line-height: 1;\n }\n}\n.logoArea .greetingTitle .gradientText {\n color: transparent;\n background-clip: text;\n background-image: linear-gradient(to right, var(--ant-color-primary), #3b82f6);\n}\n.logoArea .greetingSubtitle {\n font-size: 1.125rem;\n line-height: 1.75rem;\n font-weight: 500;\n color: #64748b;\n}\n@media (width >= 768px) {\n .logoArea .greetingSubtitle {\n font-size: 1.25rem;\n line-height: 1.75rem;\n }\n}\n.senderReferenceHeaderTitle:global > .ant-sender-header-title {\n overflow: hidden;\n}\n.senderReferenceHeaderContent {\n padding: 0 !important;\n}\n",".bodyWidth {\n width: 100%;\n height: 100%;\n}\n.inputContainer {\n max-width: 1000px;\n min-width: 320px;\n width: calc(100% - 24px);\n}\n.disclaimerNotice {\n font-size: 12px;\n text-align: center;\n color: #bfbfbf;\n}\n.previewHeader {\n padding-bottom: 4px;\n border-bottom: 1px solid #e2e8f0;\n}\n.previewCloseBtn {\n cursor: pointer;\n display: flex;\n align-items: center;\n color: var(--ant-color-text-tertiary);\n transition: color 0.3s;\n font-size: 16px;\n}\n.previewCloseBtn:hover {\n color: var(--ant-color-text);\n}\n.previewCloseBtn .closeIcon {\n transition: transform 0.3s ease;\n}\n.previewCloseBtn.rotateIcon:hover .closeIcon {\n transform: rotate(90deg);\n}\n",".chatLayout {\n background-color: transparent;\n height: 100%;\n width: 100%;\n}\n.spinWrapper {\n height: 100%;\n}\n.spinWrapper :global .ant-spin-container {\n height: 100%;\n}\n.fullScroll {\n overflow: auto;\n flex: 1;\n height: 100%;\n}\n.animatedSplitter :global(.ant-splitter-panel) {\n transition: all 0.3s cubic-bezier(0.2, 0, 0, 1) !important;\n}\n.animatedSplitter :global(.ant-splitter-bar) {\n transition: all 0.3s cubic-bezier(0.2, 0, 0, 1) !important;\n}\n.hideSplitterBar :global(.ant-splitter-bar) {\n display: none !important;\n}\n"],"mappings":";AAAA,WAAWA;AACT;AACE,yBAAqB,KAAK;AAC5B;AACA;AACE,yBAAqB,EAAE;AACzB;AACF;AACA,CAACC;AACC,YAAU;AACV,kBAAgB;AAClB;AACA,CAJCA,4BAIc;AACb,WAAS;AACT,YAAU;AACV,QAAM;AACN,UAAQ;AACR,UAAQ;AACR,SAAO;AACP;AAAA,IAAY;AAAA,MAAgB,KAAhB;AAAA,MAAuB,OAAvB;AAAA,MAAgC,OAAhC;AAAA,MAAyC;AACrD,mBAAiB,KAAK;AACtB,aAAW,2BAAa,KAAK,OAAO;AACtC;AACA,WAAWC;AACT;AACE,eAAW,OAAO;AACpB;AACF;AACA,CAACC,8BAAuB,EAAE,CAAC,oBAAoB,CAAC;AAC9C,WAAS;AACX;AACA,CAHCA,8BAGuB,EAAE,CAHC,oBAGoB,CAAC,0CAA0C,CAAC,aAAa,CAAC;AACvG,WAAS;AACX;AACA,CANCA,8BAMuB,EAAE,CANC,oBAMoB,CAHC,0CAG0C,CAHC,aAGa,CAAC;AACvG,aAAW,KAAK,GAAG,OAAO;AAC5B;AACA,CATCA,8BASuB,EAAE,CATC,oBASoB,CANC,0CAM0C,CAAC;AACzF,OAAK;AACP;AACA,CAZCA,8BAYuB,EAAE,CAZC,oBAYoB,CATC,0CAS0C,CAHC,iCAGiC,CAAC;AAC3H,SAAO;AACP,UAAQ;AACR,UAAQ,IAAI,MAAM;AAClB,gBAAc;AACd,iBAAe;AACf,aAAW,KAAK,GAAG,OAAO;AAC1B,cAAY;AACZ,YAAU;AACV,aAAW,MAAM,EAAE,EAAE,IAAI;AAC3B;AACA,CAvBCA,8BAuBuB,EAAE,CAvBC,oBAuBoB,CApBC,0CAoB0C,CAdC,iCAciC,CAXC,8BAW8B,CAAC;AAC1J,WAAS;AACX;AACA,CAACC,wBAAiB,CAAC,UAAU;AAC3B,cAAY;AACd;AACA,CAACC;AACC,cAAY;AACd;AACA,CAHCA,0BAGmB,CAAC,WAAW,EAAE,CAAC;AACjC,cAAY;AACZ,oBAAkB,IAAI;AACtB,SAAO,IAAI;AACb;AACA,CARCA,2BAQa,CAACC;AACb,aAAW;AACX,UAAQ,IAAI,MAAM;AACpB;AACA,CAZCD,2BAYa,CAJCC,2BAIa,CAACC;AAC3B,cAAY;AACZ,cAAY;AACZ,oBAAkB;AAClB,SAAO;AACT;;;AC1EA,CAACC;AACC,SAAO;AACP,UAAQ;AACR,WAAS;AACT,eAAa;AACb,mBAAiB;AACjB,iBAAe,IAAI;AACnB,YAAU;AACV,eAAa;AACb,OAAK;AACP;AACA,CAACC;AACC,aAAW;AACX,SAAO,IAAI;AACX,QAAM;AACN,eAAa;AACf;AACA,CAACC;AACC,aAAW;AACX,SAAO,IAAI;AACX,eAAa;AACf;AACA,CAACC;AACC,aAAW;AACX,WAAS;AACT,eAAa;AACb,eAAa;AACf;AACA,CAACC;AACC,aAAW;AACX,SAAO,IAAI;AACX,iBAAe;AACf,WAAS;AACX;AACA,CAACC;AACC,aAAW;AACX,cAAY;AACZ,aAAW;AACX,WAAS;AACX;AACA,CAACC;AACC,WAAS;AACX;AACA,CAACC;AACC,oBAAkB,IAAI;AACtB,iBAAe,IAAI;AACnB,UAAQ,IAAI,MAAM,IAAI;AACtB,cAAY;AACd;AACA,CAACC;AACC,WAAS,IAAI;AACb,iBAAe,IAAI,MAAM,IAAI;AAC7B,WAAS;AACT,eAAa;AACb,OAAK;AACP;AACA,CAPCA,qBAOQ;AACP,iBAAe;AACjB;AACA,CAACC;AACC,cAAY;AACd;AACA,CAACC;AACC,QAAM;AACN,aAAW;AACb;AACA,CAACC;AACC,aAAW;AACX,SAAO,IAAI;AACb;AACA,CAJCA,qBAIQ,CAACC;AACR,SAAO,IAAI;AACX,mBAAiB;AACnB;AACA,CAACC;AACC,aAAW;AACb;;;AC5EA,CAACC;AACC,WAAS,IAAI;AACb,iBAAe,IAAI,MAAM;AAC3B;AACA,CAJCA,yBAIW,CAACC;AACX,aAAW;AACX,eAAa;AACf;AACA,CARCD,yBAQW,CAACE;AACX,cAAY;AACZ,SAAO;AACP,WAAS;AACT,kBAAgB;AAChB,WAAS;AACX;AACA,CAfCF,yBAeW,CAPCE,sBAOgB,CAAC;AAC5B,cAAY;AACZ,WAAS;AACT,kBAAgB;AAClB;AACA,CAACC;AACC,SAAO;AACP,aAAW;AACX,gBAAc,IAAI,OAAO;A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","names":["loading-line","loadingMessage","spin","chatAttachments","chatSender","chatQuoteMsg","quoteTooltip","quoteTooltipContainer","iconContainer","toolName","duration","statusIcon","sectionLabel","markdownContainer","sectionBlock","todoList","todoItem","statusIconWrapper","todoContent","todoText","completed","emptyText","chatHeader","chatTitle","popover","conversationListPanel","createConversationButton","conversations","chatWelcomeWrap","chatWelcome","promptItem","runStartedNode","shimmer-bg","bubbleList","messageFooter","messageActions","resourceBtn","resourceBtnActive","userInputCollapse","logoArea","logoContainer","staticHalo","logoHoverWrapper","logoImage","greetingTitle","gradientText","greetingSubtitle","senderReferenceHeaderTitle","senderReferenceHeaderContent","bodyWidth","inputContainer","disclaimerNotice","previewHeader","previewCloseBtn","closeIcon","rotateIcon","chatLayout","spinWrapper","fullScroll","animatedSplitter","hideSplitterBar"]}