@opengeni/react 5.2.0-canary.0 → 5.2.0-canary.1
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/README.md +12 -0
- package/dist/{chunk-5PQJOCX5.js → chunk-KANFU34B.js} +6 -4
- package/dist/chunk-KANFU34B.js.map +1 -0
- package/dist/{chunk-QXJCNVSD.js → chunk-O4NQNMPG.js} +1534 -1315
- package/dist/chunk-O4NQNMPG.js.map +1 -0
- package/dist/{chunk-IYCR4343.js → chunk-PZ27MCZP.js} +36 -1
- package/dist/chunk-PZ27MCZP.js.map +1 -0
- package/dist/{chunk-T5FRXMC3.js → chunk-YS24CFDI.js} +24 -9
- package/dist/chunk-YS24CFDI.js.map +1 -0
- package/dist/components/session-chrome.d.ts +6 -1
- package/dist/{computer-viewer-AA4JH2AP.js → computer-viewer-CTFCJVS7.js} +2 -2
- package/dist/hooks/use-file-attachments.d.ts +2 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +12 -4
- package/dist/index.js.map +1 -1
- package/dist/interaction.js +1 -1
- package/dist/{platform-activity-row-UW4UVVM4.js → platform-activity-row-DUE2W74J.js} +1 -1
- package/dist/platform-activity-row-DUE2W74J.js.map +1 -0
- package/dist/session-ui.d.ts +2 -0
- package/dist/session-ui.js +5 -106
- package/dist/session-ui.js.map +1 -1
- package/dist/session.js +2 -2
- package/dist/timeline/genie-loading.d.ts +9 -1
- package/dist/timeline/index.d.ts +3 -1
- package/dist/timeline/knowledge-receipt.d.ts +17 -0
- package/dist/timeline/platform-activity-row.d.ts +0 -1
- package/dist/timeline/types.d.ts +13 -2
- package/package.json +3 -3
- package/src/components/computer-viewer.tsx +11 -3
- package/src/components/session-chrome.tsx +14 -2
- package/src/hooks/use-computer-frame-stream.ts +17 -5
- package/src/hooks/use-file-attachments.ts +4 -1
- package/src/hooks/use-goal.ts +3 -1
- package/src/index.ts +6 -0
- package/src/session-ui.ts +3 -0
- package/src/timeline/activity-rail.tsx +11 -1
- package/src/timeline/genie-loading.tsx +18 -4
- package/src/timeline/index.ts +4 -0
- package/src/timeline/knowledge-receipt.tsx +100 -0
- package/src/timeline/platform-activity-row.tsx +0 -1
- package/src/timeline/projection.ts +40 -0
- package/src/timeline/tool-renderers.tsx +48 -0
- package/src/timeline/types.ts +14 -0
- package/dist/chunk-5PQJOCX5.js.map +0 -1
- package/dist/chunk-IYCR4343.js.map +0 -1
- package/dist/chunk-QXJCNVSD.js.map +0 -1
- package/dist/chunk-T5FRXMC3.js.map +0 -1
- package/dist/platform-activity-row-UW4UVVM4.js.map +0 -1
- /package/dist/{computer-viewer-AA4JH2AP.js.map → computer-viewer-CTFCJVS7.js.map} +0 -0
package/dist/index.js
CHANGED
|
@@ -56,6 +56,7 @@ import {
|
|
|
56
56
|
GeneratedVideoPlayer,
|
|
57
57
|
HumanInputForm,
|
|
58
58
|
HumanInputSurface,
|
|
59
|
+
KnowledgeActivityProvider,
|
|
59
60
|
MediaEmpty,
|
|
60
61
|
MediaSkeleton,
|
|
61
62
|
MessageTimeline,
|
|
@@ -68,6 +69,7 @@ import {
|
|
|
68
69
|
SessionCommandsPanel,
|
|
69
70
|
SessionConversation,
|
|
70
71
|
SessionStatus,
|
|
72
|
+
StartupTimings,
|
|
71
73
|
StatusDot,
|
|
72
74
|
TermBlock,
|
|
73
75
|
Thumbnail,
|
|
@@ -96,15 +98,17 @@ import {
|
|
|
96
98
|
sessionChromeGoalPillExplanation,
|
|
97
99
|
sessionChromeGoalPillLabel,
|
|
98
100
|
sessionChromeGoalPillState,
|
|
101
|
+
setStartupDetails,
|
|
99
102
|
stripExecBanner,
|
|
100
103
|
tailPeek,
|
|
101
104
|
unwrapMcpOutput,
|
|
102
105
|
useAvailableModels,
|
|
106
|
+
useStartupDetails,
|
|
103
107
|
useThemeType,
|
|
104
108
|
useWorkspaceModelCatalog,
|
|
105
109
|
userMessageLikelyNeedsDisclosure,
|
|
106
110
|
v4aToGitFileDiff
|
|
107
|
-
} from "./chunk-
|
|
111
|
+
} from "./chunk-O4NQNMPG.js";
|
|
108
112
|
import "./chunk-YBM6CQRU.js";
|
|
109
113
|
import "./chunk-5M6VTFJ5.js";
|
|
110
114
|
import "./chunk-ZYRGEKWS.js";
|
|
@@ -192,7 +196,7 @@ import {
|
|
|
192
196
|
useSessionControl,
|
|
193
197
|
useSessionLineage,
|
|
194
198
|
useSessionMcpApprovalPolicy
|
|
195
|
-
} from "./chunk-
|
|
199
|
+
} from "./chunk-KANFU34B.js";
|
|
196
200
|
import {
|
|
197
201
|
SESSION_EVENT_BROWSER_MAX_BYTES,
|
|
198
202
|
SESSION_EVENT_BROWSER_MAX_COUNT,
|
|
@@ -215,7 +219,7 @@ import {
|
|
|
215
219
|
useSession,
|
|
216
220
|
useSessionEvents,
|
|
217
221
|
useTurnQueue
|
|
218
|
-
} from "./chunk-
|
|
222
|
+
} from "./chunk-PZ27MCZP.js";
|
|
219
223
|
import {
|
|
220
224
|
FILE_ONLY_MESSAGE_TEXT,
|
|
221
225
|
composeSendInput,
|
|
@@ -8196,7 +8200,7 @@ var LazyBrowserViewer = lazy2(async () => {
|
|
|
8196
8200
|
return { default: BrowserViewer };
|
|
8197
8201
|
});
|
|
8198
8202
|
var LazyComputerViewer = lazy2(async () => {
|
|
8199
|
-
const { ComputerViewer } = await import("./computer-viewer-
|
|
8203
|
+
const { ComputerViewer } = await import("./computer-viewer-CTFCJVS7.js");
|
|
8200
8204
|
return { default: ComputerViewer };
|
|
8201
8205
|
});
|
|
8202
8206
|
var WORKBENCH_TAB_CHANGES = "changes";
|
|
@@ -9358,6 +9362,7 @@ export {
|
|
|
9358
9362
|
HumanInputSurface,
|
|
9359
9363
|
INITIAL_TRANSCRIPTION_CONTROL_STATE,
|
|
9360
9364
|
IndexedDbVoiceRecordingStore,
|
|
9365
|
+
KnowledgeActivityProvider,
|
|
9361
9366
|
LightboxProvider,
|
|
9362
9367
|
MACHINES_COMPOSER_POLL_MS,
|
|
9363
9368
|
MACHINES_DASHBOARD_POLL_MS,
|
|
@@ -9405,6 +9410,7 @@ export {
|
|
|
9405
9410
|
SessionConversation,
|
|
9406
9411
|
SessionStatus,
|
|
9407
9412
|
SharedMachineDisclosure,
|
|
9413
|
+
StartupTimings,
|
|
9408
9414
|
StatusDot,
|
|
9409
9415
|
TermBlock,
|
|
9410
9416
|
Thumbnail,
|
|
@@ -9527,6 +9533,7 @@ export {
|
|
|
9527
9533
|
sessionChromeGoalPillState,
|
|
9528
9534
|
sessionDisplayTitle,
|
|
9529
9535
|
sessionStatusFromEvents,
|
|
9536
|
+
setStartupDetails,
|
|
9530
9537
|
shouldSteerOnKey,
|
|
9531
9538
|
shouldSubmitOnKey,
|
|
9532
9539
|
sortPickerRows,
|
|
@@ -9576,6 +9583,7 @@ export {
|
|
|
9576
9583
|
useSessionLineage,
|
|
9577
9584
|
useSessionMcpApprovalPolicy,
|
|
9578
9585
|
useSlashCommands,
|
|
9586
|
+
useStartupDetails,
|
|
9579
9587
|
useSuperGrokAccounts,
|
|
9580
9588
|
useTerminalStream,
|
|
9581
9589
|
useTranscription,
|