@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
package/dist/session-ui.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opengeni/react",
|
|
3
|
-
"version": "0.
|
|
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.
|
|
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
|
|
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)}
|