@opengeni/react 0.35.2 → 0.36.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.js CHANGED
@@ -106,7 +106,7 @@ import {
106
106
  useLightboxOptional,
107
107
  useThemeType,
108
108
  v4aToGitFileDiff
109
- } from "./chunk-AXQQ2V2I.js";
109
+ } from "./chunk-XT7JF2EH.js";
110
110
  import {
111
111
  buildTimeline,
112
112
  creditExhaustedFromEvents,
@@ -6,7 +6,7 @@ import {
6
6
  SessionChrome,
7
7
  TimelineRow,
8
8
  sessionChromeGoalPillState
9
- } from "./chunk-AXQQ2V2I.js";
9
+ } from "./chunk-XT7JF2EH.js";
10
10
  import "./chunk-J2RVJ6JX.js";
11
11
  import "./chunk-ATSTR5P3.js";
12
12
  import "./chunk-TK7G6XLT.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opengeni/react",
3
- "version": "0.35.2",
3
+ "version": "0.36.0",
4
4
  "description": "React hooks and styled components for OpenGeni: live session streaming, chat composer, message timeline, session status, and fleet views — token-themed (CSS variables), dark-first, built on Tailwind v4 + Radix + Motion.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -70,7 +70,7 @@
70
70
  "@dnd-kit/utilities": "3.2.2",
71
71
  "@fontsource-variable/noto-sans-arabic": "5.2.10",
72
72
  "@fontsource-variable/noto-sans-jp": "5.2.10",
73
- "@opengeni/sdk": "^0.35.0",
73
+ "@opengeni/sdk": "^0.36.0",
74
74
  "clsx": "^2.1.1",
75
75
  "lucide-react": "^1.8.0",
76
76
  "motion": "^12.0.0",
@@ -248,7 +248,10 @@ function MarkdownCodeBlock({ children }: { children?: ReactNode }) {
248
248
  <CopyButton text={code} label="Copy code" reveal="group-hover" />
249
249
  </div>
250
250
  </div>
251
- <pre className="overflow-x-auto overflow-y-hidden rounded-og-md bg-og-surface-1/70 px-3 py-2.5 font-og-mono text-og-sm leading-5 text-og-fg-muted [scrollbar-gutter:stable] [&>code]:block [&>code]:border-0 [&>code]:bg-transparent [&>code]:p-0 [&>code]:leading-5 [&>code]:text-inherit">
251
+ <pre
252
+ tabIndex={0}
253
+ className="overflow-x-auto overflow-y-hidden rounded-og-md bg-og-surface-1/70 px-3 py-2.5 font-og-mono text-og-sm leading-5 text-og-fg-muted [scrollbar-gutter:stable] [&>code]:block [&>code]:border-0 [&>code]:bg-transparent [&>code]:p-0 [&>code]:leading-5 [&>code]:text-inherit"
254
+ >
252
255
  {children}
253
256
  </pre>
254
257
  </div>
@@ -268,7 +271,7 @@ function MarkdownTable({ children, className, ...props }: ComponentPropsWithoutR
268
271
  />
269
272
  </div>
270
273
  </div>
271
- <div className="overflow-x-auto">
274
+ <div className="overflow-x-auto" tabIndex={0}>
272
275
  <table
273
276
  ref={tableRef}
274
277
  className={cn("w-full min-w-0 border-collapse text-og-base", className)}