@timbal-ai/timbal-react 0.5.4 → 0.5.5

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.cjs CHANGED
@@ -1881,7 +1881,7 @@ var studioTopbarPillHeightClass = "h-[var(--studio-chrome-pill-height)] min-h-[v
1881
1881
  var studioTopbarIconPillClass = "shrink-0 flex-none size-[var(--studio-chrome-pill-height)] min-h-[var(--studio-chrome-pill-height)] min-w-[var(--studio-chrome-pill-height)]";
1882
1882
  var studioPlaygroundGradientClass = "bg-gradient-to-b from-playground-from via-playground-via to-playground-to";
1883
1883
  var studioComposeInputShellClass = cn(
1884
- "aui-composer-shell flex w-full flex-col rounded-2xl bg-composer-bg shadow-card-elevated outline-none",
1884
+ "aui-composer-shell flex w-full flex-col overflow-hidden rounded-2xl bg-composer-bg shadow-card-elevated outline-none",
1885
1885
  "border border-composer-border",
1886
1886
  "transition-[box-shadow,border-color]",
1887
1887
  "focus-within:border-composer-border-focus focus-within:ring-2 focus-within:ring-foreground/5"
package/dist/index.esm.js CHANGED
@@ -1791,7 +1791,7 @@ var studioTopbarPillHeightClass = "h-[var(--studio-chrome-pill-height)] min-h-[v
1791
1791
  var studioTopbarIconPillClass = "shrink-0 flex-none size-[var(--studio-chrome-pill-height)] min-h-[var(--studio-chrome-pill-height)] min-w-[var(--studio-chrome-pill-height)]";
1792
1792
  var studioPlaygroundGradientClass = "bg-gradient-to-b from-playground-from via-playground-via to-playground-to";
1793
1793
  var studioComposeInputShellClass = cn(
1794
- "aui-composer-shell flex w-full flex-col rounded-2xl bg-composer-bg shadow-card-elevated outline-none",
1794
+ "aui-composer-shell flex w-full flex-col overflow-hidden rounded-2xl bg-composer-bg shadow-card-elevated outline-none",
1795
1795
  "border border-composer-border",
1796
1796
  "transition-[box-shadow,border-color]",
1797
1797
  "focus-within:border-composer-border-focus focus-within:ring-2 focus-within:ring-foreground/5"
package/dist/styles.css CHANGED
@@ -466,6 +466,12 @@
466
466
  z-index: 10;
467
467
  }
468
468
 
469
+ /* Clip inner textarea/toolbar fills to the rounded shell (also in Tailwind class). */
470
+ .aui-composer-shell {
471
+ border-radius: var(--radius-2xl, 1rem);
472
+ overflow: hidden;
473
+ }
474
+
469
475
  /* Scrolled assistant action bars must not show through the composer shell. */
470
476
  .aui-composer-shell,
471
477
  .aui-composer-input,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timbal-ai/timbal-react",
3
- "version": "0.5.4",
3
+ "version": "0.5.5",
4
4
  "description": "React components and runtime for building Timbal chat UIs",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",