feat(chat): port chat widget components from Dart to React

This commit is contained in:
2026-06-09 20:19:52 +08:00
parent 199a14650e
commit 109a3e3855
48 changed files with 2463 additions and 382 deletions
@@ -0,0 +1,28 @@
/* ImageBubble 图片气泡样式 */
.bubble {
max-width: 220px;
max-height: 220px;
border-radius: var(--radius-lg, 12px);
overflow: hidden;
cursor: pointer;
background: var(--color-bubble-background, #fff);
}
.image {
display: block;
width: 100%;
height: auto;
object-fit: cover;
}
.errorFallback {
display: flex;
align-items: center;
justify-content: center;
width: 220px;
height: 220px;
background: var(--color-bubble-background, #fff);
color: var(--color-text-secondary, #9e9e9e);
font-size: 24px;
}