@springbrand/message-panel 0.1.3-alpha.15 → 0.1.3-alpha.16

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.
@@ -151,7 +151,7 @@ export const ThinkingTraceRow = memo(function ThinkingTraceRow({
151
151
  <button
152
152
  type="button"
153
153
  onClick={() => setOpen((current) => !current)}
154
- className="group -ml-0.5 flex min-w-0 items-center gap-1.5 rounded-xl px-1.5 py-1 text-left text-[14px] leading-5 text-kumo-inactive transition-colors hover:text-kumo-default focus-visible:text-kumo-default focus-visible:outline-none"
154
+ className="group -ml-0.5 flex w-fit max-w-[80%] min-w-0 items-center gap-1.5 rounded-xl px-1.5 py-1 text-left text-[14px] leading-5 text-kumo-inactive transition-colors hover:text-kumo-default focus-visible:text-kumo-default focus-visible:outline-none"
155
155
  aria-expanded={open}
156
156
  aria-controls={contentId}
157
157
  >
@@ -639,25 +639,27 @@ function CloudOsChatInputContent({
639
639
  </svg>
640
640
  </WorkshopIconButton>
641
641
  ) : (
642
- <WorkshopIconButton
642
+ <button
643
+ type="button"
643
644
  onClick={onSubmit}
644
645
  disabled={!canSend}
645
- tone="primary"
646
- className="!h-8 !w-8 disabled:cursor-not-allowed disabled:opacity-30"
646
+ className="grid size-8 shrink-0 place-items-center rounded-full bg-[var(--primary,var(--color-kumo-brand))] text-[var(--primary-foreground,var(--text-color-kumo-inverse))] shadow-sm transition-colors enabled:hover:bg-[var(--primary-hover,var(--color-kumo-brand-hover))] disabled:cursor-not-allowed disabled:opacity-20"
647
647
  aria-label="Send message"
648
648
  >
649
649
  <svg
650
- width="16"
651
- height="16"
650
+ className="size-4"
652
651
  viewBox="0 0 24 24"
653
652
  fill="none"
654
653
  stroke="currentColor"
655
- strokeWidth="2.5"
654
+ strokeWidth="1.8"
655
+ strokeLinecap="round"
656
+ strokeLinejoin="round"
657
+ aria-hidden="true"
656
658
  >
657
- <line x1="12" y1="19" x2="12" y2="5" />
658
- <polyline points="5 12 12 5 19 12" />
659
+ <path d="m5 12 7-7 7 7" />
660
+ <path d="M12 19V5" />
659
661
  </svg>
660
- </WorkshopIconButton>
662
+ </button>
661
663
  )}
662
664
  </div>
663
665
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@springbrand/message-panel",
3
- "version": "0.1.3-alpha.15",
3
+ "version": "0.1.3-alpha.16",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src",