@erdoai/ui 0.1.35 → 0.1.37
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 +9 -9
- package/dist/index.d.cts +96 -9
- package/dist/index.d.ts +96 -9
- package/dist/index.js +9 -9
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -755,13 +755,13 @@ declare class ErrorBoundary extends React__default.Component<{
|
|
|
755
755
|
}
|
|
756
756
|
|
|
757
757
|
/**
|
|
758
|
-
*
|
|
758
|
+
* Bouncing dots loader shown while text is streaming.
|
|
759
759
|
*/
|
|
760
760
|
declare function WritingLoader(): react_jsx_runtime.JSX.Element;
|
|
761
761
|
/**
|
|
762
|
-
*
|
|
762
|
+
* Centered spinner loader for charts/tables loading.
|
|
763
763
|
*/
|
|
764
|
-
declare function
|
|
764
|
+
declare function Loader(): react_jsx_runtime.JSX.Element;
|
|
765
765
|
/** Props passed to all content components */
|
|
766
766
|
interface ContentComponentProps {
|
|
767
767
|
content: ContentItem;
|
|
@@ -1179,6 +1179,93 @@ interface DatasetDownloadProps {
|
|
|
1179
1179
|
*/
|
|
1180
1180
|
declare function DatasetDownload({ slug, invocationId: _invocationId, threadId: threadIdProp, className, }: DatasetDownloadProps): react_jsx_runtime.JSX.Element | null;
|
|
1181
1181
|
|
|
1182
|
+
/** Node structure from UI generation content */
|
|
1183
|
+
interface UINode {
|
|
1184
|
+
_type: string;
|
|
1185
|
+
content?: Record<string, unknown>;
|
|
1186
|
+
}
|
|
1187
|
+
/** Props passed to node renderer components */
|
|
1188
|
+
interface NodeRendererProps {
|
|
1189
|
+
node: UINode;
|
|
1190
|
+
index: number;
|
|
1191
|
+
className?: string;
|
|
1192
|
+
invocationId?: string;
|
|
1193
|
+
onSuggestionClick?: (suggestion: string) => void;
|
|
1194
|
+
}
|
|
1195
|
+
/** Chart node content structure */
|
|
1196
|
+
interface ChartNodeContent {
|
|
1197
|
+
chart_type: string;
|
|
1198
|
+
chart_title: string;
|
|
1199
|
+
x_axis: ContentChartConfig['x_axis'];
|
|
1200
|
+
y_axes: ContentChartConfig['y_axes'];
|
|
1201
|
+
series: ContentChartConfig['series'];
|
|
1202
|
+
data_reduction?: ContentChartConfig['data_reduction'];
|
|
1203
|
+
stacked?: boolean;
|
|
1204
|
+
sort?: ContentChartConfig['sort'];
|
|
1205
|
+
}
|
|
1206
|
+
/** Table node content structure */
|
|
1207
|
+
interface TableNodeContent {
|
|
1208
|
+
table_title: string;
|
|
1209
|
+
dataset_slug?: string;
|
|
1210
|
+
columns: TableColumn[];
|
|
1211
|
+
}
|
|
1212
|
+
/** Text markdown node content structure */
|
|
1213
|
+
interface TextMarkdownNodeContent {
|
|
1214
|
+
text?: string;
|
|
1215
|
+
}
|
|
1216
|
+
/** Download button node content structure */
|
|
1217
|
+
interface DownloadButtonNodeContent {
|
|
1218
|
+
dataset_slug?: string;
|
|
1219
|
+
}
|
|
1220
|
+
/** Suggestions node content structure */
|
|
1221
|
+
interface SuggestionsNodeContent {
|
|
1222
|
+
suggestions?: string[];
|
|
1223
|
+
}
|
|
1224
|
+
/** Default Chart node renderer */
|
|
1225
|
+
declare function DefaultChartNode({ node, index, className, invocationId }: NodeRendererProps): react_jsx_runtime.JSX.Element | null;
|
|
1226
|
+
/** Default Table node renderer */
|
|
1227
|
+
declare function DefaultTableNode({ node, index, className, invocationId }: NodeRendererProps): react_jsx_runtime.JSX.Element | null;
|
|
1228
|
+
/** Default TextMarkdown node renderer */
|
|
1229
|
+
declare function DefaultTextMarkdownNode({ node, index, className }: NodeRendererProps): react_jsx_runtime.JSX.Element;
|
|
1230
|
+
/** Default DownloadButton node renderer */
|
|
1231
|
+
declare function DefaultDownloadButtonNode({ node, index, className, invocationId }: NodeRendererProps): react_jsx_runtime.JSX.Element | null;
|
|
1232
|
+
/** Default Suggestions node renderer */
|
|
1233
|
+
declare function DefaultSuggestionsNode({ node, index, onSuggestionClick }: NodeRendererProps): react_jsx_runtime.JSX.Element | null;
|
|
1234
|
+
/** Default node components map */
|
|
1235
|
+
declare const defaultNodeComponents: Record<string, React__default.ComponentType<NodeRendererProps>>;
|
|
1236
|
+
interface UIGenerationNodesProps {
|
|
1237
|
+
/** Array of UI nodes to render */
|
|
1238
|
+
nodes: unknown[];
|
|
1239
|
+
/** Optional class name for styling */
|
|
1240
|
+
className?: string;
|
|
1241
|
+
/** Invocation ID for dataset downloads */
|
|
1242
|
+
invocationId?: string;
|
|
1243
|
+
/** Callback when a suggestion is clicked */
|
|
1244
|
+
onSuggestionClick?: (suggestion: string) => void;
|
|
1245
|
+
/** Override default node renderers by type */
|
|
1246
|
+
nodeComponents?: Record<string, React__default.ComponentType<NodeRendererProps>>;
|
|
1247
|
+
}
|
|
1248
|
+
/**
|
|
1249
|
+
* Renders UI generation nodes with support for custom node renderers.
|
|
1250
|
+
*
|
|
1251
|
+
* @example
|
|
1252
|
+
* ```tsx
|
|
1253
|
+
* // Using default renderers
|
|
1254
|
+
* <UIGenerationNodes nodes={content.children} invocationId={id} />
|
|
1255
|
+
*
|
|
1256
|
+
* // With custom chart renderer
|
|
1257
|
+
* <UIGenerationNodes
|
|
1258
|
+
* nodes={content.children}
|
|
1259
|
+
* invocationId={id}
|
|
1260
|
+
* nodeComponents={{
|
|
1261
|
+
* Chart: MyCustomChartNode,
|
|
1262
|
+
* Table: MyCustomTableNode,
|
|
1263
|
+
* }}
|
|
1264
|
+
* />
|
|
1265
|
+
* ```
|
|
1266
|
+
*/
|
|
1267
|
+
declare function UIGenerationNodes({ nodes, className, invocationId, onSuggestionClick, nodeComponents, }: UIGenerationNodesProps): react_jsx_runtime.JSX.Element | null;
|
|
1268
|
+
|
|
1182
1269
|
interface ZoomState {
|
|
1183
1270
|
refAreaLeft: number | null;
|
|
1184
1271
|
refAreaRight: number | null;
|
|
@@ -1264,8 +1351,8 @@ interface UseThreadOptions {
|
|
|
1264
1351
|
botKey?: string;
|
|
1265
1352
|
/** Called for each SSE event received during streaming */
|
|
1266
1353
|
onEvent?: (event: SSEEvent) => void;
|
|
1267
|
-
/** Called when a message completes successfully */
|
|
1268
|
-
onFinish?: () => void;
|
|
1354
|
+
/** Called when a message completes successfully, with the final contents */
|
|
1355
|
+
onFinish?: (contents: ContentItem[]) => void;
|
|
1269
1356
|
/** Called if an error occurs */
|
|
1270
1357
|
onError?: (error: Error) => void;
|
|
1271
1358
|
}
|
|
@@ -1319,9 +1406,9 @@ interface UseThreadReturn {
|
|
|
1319
1406
|
* ```tsx
|
|
1320
1407
|
* const { streamingContents, sendMessage } = useThread({
|
|
1321
1408
|
* botKey: 'org.my-bot',
|
|
1322
|
-
* onFinish: () => {
|
|
1409
|
+
* onFinish: (finalContents) => {
|
|
1323
1410
|
* // Save to your database when message completes
|
|
1324
|
-
* await saveMessageToDb(threadId,
|
|
1411
|
+
* await saveMessageToDb(threadId, finalContents);
|
|
1325
1412
|
* },
|
|
1326
1413
|
* });
|
|
1327
1414
|
*
|
|
@@ -1352,7 +1439,7 @@ interface UseThreadReturn {
|
|
|
1352
1439
|
* function MyChat() {
|
|
1353
1440
|
* const { isStreaming, streamingContents, sendMessage } = useThread({
|
|
1354
1441
|
* botKey: 'org.my-bot',
|
|
1355
|
-
* onFinish: () => console.log('Message complete'),
|
|
1442
|
+
* onFinish: (finalContents) => console.log('Message complete with', finalContents.length, 'items'),
|
|
1356
1443
|
* });
|
|
1357
1444
|
*
|
|
1358
1445
|
* return (
|
|
@@ -1500,4 +1587,4 @@ declare function handleIncrementalMixedJsonParsing(outputContent: MessageContent
|
|
|
1500
1587
|
*/
|
|
1501
1588
|
declare function handleSSEEvent(eventType: string, event: SSEEventData, path: string[], threadID: string, activeMessagesByID: Record<string, MessageWithContents>, currentEntity?: Entity | null, parents?: Entity[], entityIds?: Record<string, string>): Entity | null;
|
|
1502
1589
|
|
|
1503
|
-
export { BarChart, type BaseChartProps, type BotInvocation, BotInvocationContent, type BotInvocationContentData, type BotInvocationContentProps, type BotInvocationData, type BotInvocationEventInfo, type BotInvocationStatusInfo, Chart, type ChartConfig, ChartContainer, ChartContent, type ChartContentProps, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, CodeexecContent, type CodeexecContentProps, CodegenContent, type CodegenContentProps, CollapsibleCodeBlock, type CollapsibleCodeBlockProps, Content, type ContentChartConfig, type ContentChunk, type ContentComponentProps, type ContentProps, type ContentType, type DataFetcher, DatasetChart, type DatasetChartProps, type DatasetDetails, DatasetDownload, type DatasetDownloadProps, DatasetTable, type DatasetTableProps, type Entity, type EntityType, ErdoProvider, type ErdoProviderConfig, type ErdoProviderProps, ErdoUI, type ErdoUIProps, ErrorBoundary, ExecutionStatus, ExpandableOutputContent, type ExpandableOutputContentProps, HeatmapChart, InvocationEvent, type InvocationEventProps, InvocationEvents, type InvocationEventsProps, InvocationStatus, JSONStreamParser, type JSONValue, JsonContent, type JsonContentProps, LineChart, Log, LogContent, type LogContentProps, type LogProps, MarkdownContent, type MarkdownContentProps, type Message, type MessageContent, type MessageStreamingState, type MessageWithContents, type NullString, Output, type OutputContent, type OutputProps, type OutputWithContents, PieChart, type ResolvedBotInvocation, type ResultHandler, type SSEEventData, ScatterChart, type SpinnerStatus, SqlContent, type SqlContentProps, type Status, type StatusEvent, StatusSpinner, type StatusSpinnerProps, StderrText, StdoutText, StdwarnText, type Step, StepInvocation, type StepInvocationProps, StepInvocationStatus, type StepInvocationStatusProps,
|
|
1590
|
+
export { BarChart, type BaseChartProps, type BotInvocation, BotInvocationContent, type BotInvocationContentData, type BotInvocationContentProps, type BotInvocationData, type BotInvocationEventInfo, type BotInvocationStatusInfo, Chart, type ChartConfig, ChartContainer, ChartContent, type ChartContentProps, ChartLegend, ChartLegendContent, type ChartNodeContent, ChartStyle, ChartTooltip, ChartTooltipContent, CodeexecContent, type CodeexecContentProps, CodegenContent, type CodegenContentProps, CollapsibleCodeBlock, type CollapsibleCodeBlockProps, Content, type ContentChartConfig, type ContentChunk, type ContentComponentProps, type ContentProps, type ContentType, type DataFetcher, DatasetChart, type DatasetChartProps, type DatasetDetails, DatasetDownload, type DatasetDownloadProps, DatasetTable, type DatasetTableProps, DefaultChartNode, DefaultDownloadButtonNode, DefaultSuggestionsNode, DefaultTableNode, DefaultTextMarkdownNode, type DownloadButtonNodeContent, type Entity, type EntityType, ErdoProvider, type ErdoProviderConfig, type ErdoProviderProps, ErdoUI, type ErdoUIProps, ErrorBoundary, ExecutionStatus, ExpandableOutputContent, type ExpandableOutputContentProps, HeatmapChart, InvocationEvent, type InvocationEventProps, InvocationEvents, type InvocationEventsProps, InvocationStatus, JSONStreamParser, type JSONValue, JsonContent, type JsonContentProps, LineChart, Loader, Log, LogContent, type LogContentProps, type LogProps, MarkdownContent, type MarkdownContentProps, type Message, type MessageContent, type MessageStreamingState, type MessageWithContents, type NodeRendererProps, type NullString, Output, type OutputContent, type OutputProps, type OutputWithContents, PieChart, type ResolvedBotInvocation, type ResultHandler, type SSEEventData, ScatterChart, type SpinnerStatus, SqlContent, type SqlContentProps, type Status, type StatusEvent, StatusSpinner, type StatusSpinnerProps, StderrText, StdoutText, StdwarnText, type Step, StepInvocation, type StepInvocationProps, StepInvocationStatus, type StepInvocationStatusProps, type SuggestionsNodeContent, TableContent, type TableContentProps, type TableNodeContent, TextContent, type TextContentProps, type TextMarkdownNodeContent, ThinkingContent, type ThinkingContentProps, ToolGroupContent, type ToolGroupContentProps, UIGenerationNodes, type UIGenerationNodesProps, type UINode, type UseThreadOptions, type UseThreadReturn, WebParseContent, type WebParseContentProps, WebSearchContent, type WebSearchContentProps, type WrapperType, WritingLoader, cn, defaultNodeComponents, extractContentItems, formatValue, handleIncrementalMixedJsonParsing, handleSSEEvent, isJsonLike, isNullString, isParsingComplete, isParsingInProgress, isWhitespaceChar, parseCompleteJson, parseMixedJson, parseToDate, resolveKeyFromData, toSnakeCase, unwrapNullString, unwrapNullStringOr, useChartZoom, useDatasetContents, useErdoConfig, useErdoConfigOptional, useMultipleDatasetContents, useThread };
|
package/dist/index.d.ts
CHANGED
|
@@ -755,13 +755,13 @@ declare class ErrorBoundary extends React__default.Component<{
|
|
|
755
755
|
}
|
|
756
756
|
|
|
757
757
|
/**
|
|
758
|
-
*
|
|
758
|
+
* Bouncing dots loader shown while text is streaming.
|
|
759
759
|
*/
|
|
760
760
|
declare function WritingLoader(): react_jsx_runtime.JSX.Element;
|
|
761
761
|
/**
|
|
762
|
-
*
|
|
762
|
+
* Centered spinner loader for charts/tables loading.
|
|
763
763
|
*/
|
|
764
|
-
declare function
|
|
764
|
+
declare function Loader(): react_jsx_runtime.JSX.Element;
|
|
765
765
|
/** Props passed to all content components */
|
|
766
766
|
interface ContentComponentProps {
|
|
767
767
|
content: ContentItem;
|
|
@@ -1179,6 +1179,93 @@ interface DatasetDownloadProps {
|
|
|
1179
1179
|
*/
|
|
1180
1180
|
declare function DatasetDownload({ slug, invocationId: _invocationId, threadId: threadIdProp, className, }: DatasetDownloadProps): react_jsx_runtime.JSX.Element | null;
|
|
1181
1181
|
|
|
1182
|
+
/** Node structure from UI generation content */
|
|
1183
|
+
interface UINode {
|
|
1184
|
+
_type: string;
|
|
1185
|
+
content?: Record<string, unknown>;
|
|
1186
|
+
}
|
|
1187
|
+
/** Props passed to node renderer components */
|
|
1188
|
+
interface NodeRendererProps {
|
|
1189
|
+
node: UINode;
|
|
1190
|
+
index: number;
|
|
1191
|
+
className?: string;
|
|
1192
|
+
invocationId?: string;
|
|
1193
|
+
onSuggestionClick?: (suggestion: string) => void;
|
|
1194
|
+
}
|
|
1195
|
+
/** Chart node content structure */
|
|
1196
|
+
interface ChartNodeContent {
|
|
1197
|
+
chart_type: string;
|
|
1198
|
+
chart_title: string;
|
|
1199
|
+
x_axis: ContentChartConfig['x_axis'];
|
|
1200
|
+
y_axes: ContentChartConfig['y_axes'];
|
|
1201
|
+
series: ContentChartConfig['series'];
|
|
1202
|
+
data_reduction?: ContentChartConfig['data_reduction'];
|
|
1203
|
+
stacked?: boolean;
|
|
1204
|
+
sort?: ContentChartConfig['sort'];
|
|
1205
|
+
}
|
|
1206
|
+
/** Table node content structure */
|
|
1207
|
+
interface TableNodeContent {
|
|
1208
|
+
table_title: string;
|
|
1209
|
+
dataset_slug?: string;
|
|
1210
|
+
columns: TableColumn[];
|
|
1211
|
+
}
|
|
1212
|
+
/** Text markdown node content structure */
|
|
1213
|
+
interface TextMarkdownNodeContent {
|
|
1214
|
+
text?: string;
|
|
1215
|
+
}
|
|
1216
|
+
/** Download button node content structure */
|
|
1217
|
+
interface DownloadButtonNodeContent {
|
|
1218
|
+
dataset_slug?: string;
|
|
1219
|
+
}
|
|
1220
|
+
/** Suggestions node content structure */
|
|
1221
|
+
interface SuggestionsNodeContent {
|
|
1222
|
+
suggestions?: string[];
|
|
1223
|
+
}
|
|
1224
|
+
/** Default Chart node renderer */
|
|
1225
|
+
declare function DefaultChartNode({ node, index, className, invocationId }: NodeRendererProps): react_jsx_runtime.JSX.Element | null;
|
|
1226
|
+
/** Default Table node renderer */
|
|
1227
|
+
declare function DefaultTableNode({ node, index, className, invocationId }: NodeRendererProps): react_jsx_runtime.JSX.Element | null;
|
|
1228
|
+
/** Default TextMarkdown node renderer */
|
|
1229
|
+
declare function DefaultTextMarkdownNode({ node, index, className }: NodeRendererProps): react_jsx_runtime.JSX.Element;
|
|
1230
|
+
/** Default DownloadButton node renderer */
|
|
1231
|
+
declare function DefaultDownloadButtonNode({ node, index, className, invocationId }: NodeRendererProps): react_jsx_runtime.JSX.Element | null;
|
|
1232
|
+
/** Default Suggestions node renderer */
|
|
1233
|
+
declare function DefaultSuggestionsNode({ node, index, onSuggestionClick }: NodeRendererProps): react_jsx_runtime.JSX.Element | null;
|
|
1234
|
+
/** Default node components map */
|
|
1235
|
+
declare const defaultNodeComponents: Record<string, React__default.ComponentType<NodeRendererProps>>;
|
|
1236
|
+
interface UIGenerationNodesProps {
|
|
1237
|
+
/** Array of UI nodes to render */
|
|
1238
|
+
nodes: unknown[];
|
|
1239
|
+
/** Optional class name for styling */
|
|
1240
|
+
className?: string;
|
|
1241
|
+
/** Invocation ID for dataset downloads */
|
|
1242
|
+
invocationId?: string;
|
|
1243
|
+
/** Callback when a suggestion is clicked */
|
|
1244
|
+
onSuggestionClick?: (suggestion: string) => void;
|
|
1245
|
+
/** Override default node renderers by type */
|
|
1246
|
+
nodeComponents?: Record<string, React__default.ComponentType<NodeRendererProps>>;
|
|
1247
|
+
}
|
|
1248
|
+
/**
|
|
1249
|
+
* Renders UI generation nodes with support for custom node renderers.
|
|
1250
|
+
*
|
|
1251
|
+
* @example
|
|
1252
|
+
* ```tsx
|
|
1253
|
+
* // Using default renderers
|
|
1254
|
+
* <UIGenerationNodes nodes={content.children} invocationId={id} />
|
|
1255
|
+
*
|
|
1256
|
+
* // With custom chart renderer
|
|
1257
|
+
* <UIGenerationNodes
|
|
1258
|
+
* nodes={content.children}
|
|
1259
|
+
* invocationId={id}
|
|
1260
|
+
* nodeComponents={{
|
|
1261
|
+
* Chart: MyCustomChartNode,
|
|
1262
|
+
* Table: MyCustomTableNode,
|
|
1263
|
+
* }}
|
|
1264
|
+
* />
|
|
1265
|
+
* ```
|
|
1266
|
+
*/
|
|
1267
|
+
declare function UIGenerationNodes({ nodes, className, invocationId, onSuggestionClick, nodeComponents, }: UIGenerationNodesProps): react_jsx_runtime.JSX.Element | null;
|
|
1268
|
+
|
|
1182
1269
|
interface ZoomState {
|
|
1183
1270
|
refAreaLeft: number | null;
|
|
1184
1271
|
refAreaRight: number | null;
|
|
@@ -1264,8 +1351,8 @@ interface UseThreadOptions {
|
|
|
1264
1351
|
botKey?: string;
|
|
1265
1352
|
/** Called for each SSE event received during streaming */
|
|
1266
1353
|
onEvent?: (event: SSEEvent) => void;
|
|
1267
|
-
/** Called when a message completes successfully */
|
|
1268
|
-
onFinish?: () => void;
|
|
1354
|
+
/** Called when a message completes successfully, with the final contents */
|
|
1355
|
+
onFinish?: (contents: ContentItem[]) => void;
|
|
1269
1356
|
/** Called if an error occurs */
|
|
1270
1357
|
onError?: (error: Error) => void;
|
|
1271
1358
|
}
|
|
@@ -1319,9 +1406,9 @@ interface UseThreadReturn {
|
|
|
1319
1406
|
* ```tsx
|
|
1320
1407
|
* const { streamingContents, sendMessage } = useThread({
|
|
1321
1408
|
* botKey: 'org.my-bot',
|
|
1322
|
-
* onFinish: () => {
|
|
1409
|
+
* onFinish: (finalContents) => {
|
|
1323
1410
|
* // Save to your database when message completes
|
|
1324
|
-
* await saveMessageToDb(threadId,
|
|
1411
|
+
* await saveMessageToDb(threadId, finalContents);
|
|
1325
1412
|
* },
|
|
1326
1413
|
* });
|
|
1327
1414
|
*
|
|
@@ -1352,7 +1439,7 @@ interface UseThreadReturn {
|
|
|
1352
1439
|
* function MyChat() {
|
|
1353
1440
|
* const { isStreaming, streamingContents, sendMessage } = useThread({
|
|
1354
1441
|
* botKey: 'org.my-bot',
|
|
1355
|
-
* onFinish: () => console.log('Message complete'),
|
|
1442
|
+
* onFinish: (finalContents) => console.log('Message complete with', finalContents.length, 'items'),
|
|
1356
1443
|
* });
|
|
1357
1444
|
*
|
|
1358
1445
|
* return (
|
|
@@ -1500,4 +1587,4 @@ declare function handleIncrementalMixedJsonParsing(outputContent: MessageContent
|
|
|
1500
1587
|
*/
|
|
1501
1588
|
declare function handleSSEEvent(eventType: string, event: SSEEventData, path: string[], threadID: string, activeMessagesByID: Record<string, MessageWithContents>, currentEntity?: Entity | null, parents?: Entity[], entityIds?: Record<string, string>): Entity | null;
|
|
1502
1589
|
|
|
1503
|
-
export { BarChart, type BaseChartProps, type BotInvocation, BotInvocationContent, type BotInvocationContentData, type BotInvocationContentProps, type BotInvocationData, type BotInvocationEventInfo, type BotInvocationStatusInfo, Chart, type ChartConfig, ChartContainer, ChartContent, type ChartContentProps, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, CodeexecContent, type CodeexecContentProps, CodegenContent, type CodegenContentProps, CollapsibleCodeBlock, type CollapsibleCodeBlockProps, Content, type ContentChartConfig, type ContentChunk, type ContentComponentProps, type ContentProps, type ContentType, type DataFetcher, DatasetChart, type DatasetChartProps, type DatasetDetails, DatasetDownload, type DatasetDownloadProps, DatasetTable, type DatasetTableProps, type Entity, type EntityType, ErdoProvider, type ErdoProviderConfig, type ErdoProviderProps, ErdoUI, type ErdoUIProps, ErrorBoundary, ExecutionStatus, ExpandableOutputContent, type ExpandableOutputContentProps, HeatmapChart, InvocationEvent, type InvocationEventProps, InvocationEvents, type InvocationEventsProps, InvocationStatus, JSONStreamParser, type JSONValue, JsonContent, type JsonContentProps, LineChart, Log, LogContent, type LogContentProps, type LogProps, MarkdownContent, type MarkdownContentProps, type Message, type MessageContent, type MessageStreamingState, type MessageWithContents, type NullString, Output, type OutputContent, type OutputProps, type OutputWithContents, PieChart, type ResolvedBotInvocation, type ResultHandler, type SSEEventData, ScatterChart, type SpinnerStatus, SqlContent, type SqlContentProps, type Status, type StatusEvent, StatusSpinner, type StatusSpinnerProps, StderrText, StdoutText, StdwarnText, type Step, StepInvocation, type StepInvocationProps, StepInvocationStatus, type StepInvocationStatusProps,
|
|
1590
|
+
export { BarChart, type BaseChartProps, type BotInvocation, BotInvocationContent, type BotInvocationContentData, type BotInvocationContentProps, type BotInvocationData, type BotInvocationEventInfo, type BotInvocationStatusInfo, Chart, type ChartConfig, ChartContainer, ChartContent, type ChartContentProps, ChartLegend, ChartLegendContent, type ChartNodeContent, ChartStyle, ChartTooltip, ChartTooltipContent, CodeexecContent, type CodeexecContentProps, CodegenContent, type CodegenContentProps, CollapsibleCodeBlock, type CollapsibleCodeBlockProps, Content, type ContentChartConfig, type ContentChunk, type ContentComponentProps, type ContentProps, type ContentType, type DataFetcher, DatasetChart, type DatasetChartProps, type DatasetDetails, DatasetDownload, type DatasetDownloadProps, DatasetTable, type DatasetTableProps, DefaultChartNode, DefaultDownloadButtonNode, DefaultSuggestionsNode, DefaultTableNode, DefaultTextMarkdownNode, type DownloadButtonNodeContent, type Entity, type EntityType, ErdoProvider, type ErdoProviderConfig, type ErdoProviderProps, ErdoUI, type ErdoUIProps, ErrorBoundary, ExecutionStatus, ExpandableOutputContent, type ExpandableOutputContentProps, HeatmapChart, InvocationEvent, type InvocationEventProps, InvocationEvents, type InvocationEventsProps, InvocationStatus, JSONStreamParser, type JSONValue, JsonContent, type JsonContentProps, LineChart, Loader, Log, LogContent, type LogContentProps, type LogProps, MarkdownContent, type MarkdownContentProps, type Message, type MessageContent, type MessageStreamingState, type MessageWithContents, type NodeRendererProps, type NullString, Output, type OutputContent, type OutputProps, type OutputWithContents, PieChart, type ResolvedBotInvocation, type ResultHandler, type SSEEventData, ScatterChart, type SpinnerStatus, SqlContent, type SqlContentProps, type Status, type StatusEvent, StatusSpinner, type StatusSpinnerProps, StderrText, StdoutText, StdwarnText, type Step, StepInvocation, type StepInvocationProps, StepInvocationStatus, type StepInvocationStatusProps, type SuggestionsNodeContent, TableContent, type TableContentProps, type TableNodeContent, TextContent, type TextContentProps, type TextMarkdownNodeContent, ThinkingContent, type ThinkingContentProps, ToolGroupContent, type ToolGroupContentProps, UIGenerationNodes, type UIGenerationNodesProps, type UINode, type UseThreadOptions, type UseThreadReturn, WebParseContent, type WebParseContentProps, WebSearchContent, type WebSearchContentProps, type WrapperType, WritingLoader, cn, defaultNodeComponents, extractContentItems, formatValue, handleIncrementalMixedJsonParsing, handleSSEEvent, isJsonLike, isNullString, isParsingComplete, isParsingInProgress, isWhitespaceChar, parseCompleteJson, parseMixedJson, parseToDate, resolveKeyFromData, toSnakeCase, unwrapNullString, unwrapNullStringOr, useChartZoom, useDatasetContents, useErdoConfig, useErdoConfigOptional, useMultipleDatasetContents, useThread };
|