@runtypelabs/persona 4.10.1 → 4.11.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/animations/glyph-cycle.d.cts +1 -1
- package/dist/animations/glyph-cycle.d.ts +1 -1
- package/dist/animations/{types-Bx_rvjff.d.cts → types-DveIaNx6.d.cts} +2 -0
- package/dist/animations/{types-Bx_rvjff.d.ts → types-DveIaNx6.d.ts} +2 -0
- package/dist/animations/wipe.d.cts +1 -1
- package/dist/animations/wipe.d.ts +1 -1
- package/dist/chunk-MMUPR2JW.js +1 -0
- package/dist/codegen.cjs +1 -1
- package/dist/codegen.js +1 -1
- package/dist/{context-mentions-7S5KVUTG.js → context-mentions-ONG7A7M6.js} +1 -1
- package/dist/context-mentions.d.cts +26 -0
- package/dist/context-mentions.d.ts +26 -0
- package/dist/index.cjs +67 -67
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +27 -1
- package/dist/index.d.ts +27 -1
- package/dist/index.global.js +55 -55
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +78 -78
- package/dist/index.js.map +1 -1
- package/dist/smart-dom-reader.d.cts +26 -0
- package/dist/smart-dom-reader.d.ts +26 -0
- package/dist/theme-editor-preview.cjs +66 -66
- package/dist/theme-editor-preview.d.cts +26 -0
- package/dist/theme-editor-preview.d.ts +26 -0
- package/dist/theme-editor-preview.js +55 -55
- package/dist/theme-editor.cjs +5 -5
- package/dist/theme-editor.d.cts +26 -0
- package/dist/theme-editor.d.ts +26 -0
- package/dist/theme-editor.js +9 -9
- package/dist/widget.css +1 -1
- package/package.json +1 -1
- package/src/components/approval-bubble.ts +0 -1
- package/src/components/composer-parts.ts +19 -19
- package/src/components/context-mention-button.test.ts +5 -1
- package/src/components/context-mention-button.ts +6 -4
- package/src/components/header-builder.test.ts +3 -3
- package/src/components/header-parts.ts +14 -108
- package/src/components/message-bubble.test.ts +49 -0
- package/src/components/message-bubble.ts +8 -7
- package/src/components/reasoning-bubble.ts +0 -2
- package/src/components/tool-bubble.ts +0 -2
- package/src/generated/runtype-openapi-contract.ts +2 -0
- package/src/index-core.ts +1 -0
- package/src/styles/widget.css +118 -58
- package/src/theme-editor/sections.test.ts +33 -0
- package/src/theme-editor/sections.ts +10 -1
- package/src/types.ts +25 -0
- package/src/ui.attachments-drop.test.ts +2 -1
- package/src/ui.message-width.test.ts +407 -0
- package/src/ui.ts +145 -238
- package/src/utils/table-scroll-fade.test.ts +123 -0
- package/src/utils/table-scroll-fade.ts +75 -0
- package/src/utils/tooltip.test.ts +226 -0
- package/src/utils/tooltip.ts +245 -0
- package/dist/chunk-IPVK3KOM.js +0 -1
|
@@ -1133,6 +1133,7 @@ type RuntypeExecutionStreamEvent = ({
|
|
|
1133
1133
|
input: number;
|
|
1134
1134
|
output: number;
|
|
1135
1135
|
};
|
|
1136
|
+
totalTokensUsed?: number;
|
|
1136
1137
|
type: "execution_complete";
|
|
1137
1138
|
}) | ({
|
|
1138
1139
|
blockReason?: string;
|
|
@@ -1392,6 +1393,7 @@ type RuntypeExecutionStreamEvent = ({
|
|
|
1392
1393
|
stepId?: string;
|
|
1393
1394
|
success: boolean;
|
|
1394
1395
|
toolCallId: string;
|
|
1396
|
+
toolCost?: number;
|
|
1395
1397
|
toolName?: string;
|
|
1396
1398
|
type: "tool_complete";
|
|
1397
1399
|
} | {
|
|
@@ -5094,6 +5096,26 @@ type AgentWidgetTimestampConfig = {
|
|
|
5094
5096
|
/** Custom formatter for timestamp display */
|
|
5095
5097
|
format?: (date: Date) => string;
|
|
5096
5098
|
};
|
|
5099
|
+
/**
|
|
5100
|
+
* Width configuration for one message role.
|
|
5101
|
+
*
|
|
5102
|
+
* `content` shrink-wraps the rendered message up to `maxWidth`; `full` fills
|
|
5103
|
+
* the available transcript track up to `maxWidth`. The track already accounts
|
|
5104
|
+
* for transcript padding and, when present, the avatar and its gap.
|
|
5105
|
+
*/
|
|
5106
|
+
type AgentWidgetMessageRoleLayout = {
|
|
5107
|
+
/**
|
|
5108
|
+
* Message width behavior.
|
|
5109
|
+
* - content: size to the rendered content (the backward-compatible default)
|
|
5110
|
+
* - full: fill the available transcript track
|
|
5111
|
+
*/
|
|
5112
|
+
width?: "content" | "full";
|
|
5113
|
+
/**
|
|
5114
|
+
* Optional CSS max-width (for example "80%", "42rem", or "72ch").
|
|
5115
|
+
* Defaults to "85%" for content width and "100%" for full width.
|
|
5116
|
+
*/
|
|
5117
|
+
maxWidth?: string;
|
|
5118
|
+
};
|
|
5097
5119
|
/**
|
|
5098
5120
|
* Message layout configuration
|
|
5099
5121
|
* Allows customization of how chat messages are displayed
|
|
@@ -5112,6 +5134,10 @@ type AgentWidgetMessageLayoutConfig = {
|
|
|
5112
5134
|
timestamp?: AgentWidgetTimestampConfig;
|
|
5113
5135
|
/** Group consecutive messages from the same role */
|
|
5114
5136
|
groupConsecutive?: boolean;
|
|
5137
|
+
/** Width behavior for user-authored message rows */
|
|
5138
|
+
user?: AgentWidgetMessageRoleLayout;
|
|
5139
|
+
/** Width behavior for assistant-authored message rows and assistant UI variants */
|
|
5140
|
+
assistant?: AgentWidgetMessageRoleLayout;
|
|
5115
5141
|
/**
|
|
5116
5142
|
* Custom renderer for user messages
|
|
5117
5143
|
* When provided, replaces the default user message rendering
|
|
@@ -1133,6 +1133,7 @@ type RuntypeExecutionStreamEvent = ({
|
|
|
1133
1133
|
input: number;
|
|
1134
1134
|
output: number;
|
|
1135
1135
|
};
|
|
1136
|
+
totalTokensUsed?: number;
|
|
1136
1137
|
type: "execution_complete";
|
|
1137
1138
|
}) | ({
|
|
1138
1139
|
blockReason?: string;
|
|
@@ -1392,6 +1393,7 @@ type RuntypeExecutionStreamEvent = ({
|
|
|
1392
1393
|
stepId?: string;
|
|
1393
1394
|
success: boolean;
|
|
1394
1395
|
toolCallId: string;
|
|
1396
|
+
toolCost?: number;
|
|
1395
1397
|
toolName?: string;
|
|
1396
1398
|
type: "tool_complete";
|
|
1397
1399
|
} | {
|
|
@@ -5094,6 +5096,26 @@ type AgentWidgetTimestampConfig = {
|
|
|
5094
5096
|
/** Custom formatter for timestamp display */
|
|
5095
5097
|
format?: (date: Date) => string;
|
|
5096
5098
|
};
|
|
5099
|
+
/**
|
|
5100
|
+
* Width configuration for one message role.
|
|
5101
|
+
*
|
|
5102
|
+
* `content` shrink-wraps the rendered message up to `maxWidth`; `full` fills
|
|
5103
|
+
* the available transcript track up to `maxWidth`. The track already accounts
|
|
5104
|
+
* for transcript padding and, when present, the avatar and its gap.
|
|
5105
|
+
*/
|
|
5106
|
+
type AgentWidgetMessageRoleLayout = {
|
|
5107
|
+
/**
|
|
5108
|
+
* Message width behavior.
|
|
5109
|
+
* - content: size to the rendered content (the backward-compatible default)
|
|
5110
|
+
* - full: fill the available transcript track
|
|
5111
|
+
*/
|
|
5112
|
+
width?: "content" | "full";
|
|
5113
|
+
/**
|
|
5114
|
+
* Optional CSS max-width (for example "80%", "42rem", or "72ch").
|
|
5115
|
+
* Defaults to "85%" for content width and "100%" for full width.
|
|
5116
|
+
*/
|
|
5117
|
+
maxWidth?: string;
|
|
5118
|
+
};
|
|
5097
5119
|
/**
|
|
5098
5120
|
* Message layout configuration
|
|
5099
5121
|
* Allows customization of how chat messages are displayed
|
|
@@ -5112,6 +5134,10 @@ type AgentWidgetMessageLayoutConfig = {
|
|
|
5112
5134
|
timestamp?: AgentWidgetTimestampConfig;
|
|
5113
5135
|
/** Group consecutive messages from the same role */
|
|
5114
5136
|
groupConsecutive?: boolean;
|
|
5137
|
+
/** Width behavior for user-authored message rows */
|
|
5138
|
+
user?: AgentWidgetMessageRoleLayout;
|
|
5139
|
+
/** Width behavior for assistant-authored message rows and assistant UI variants */
|
|
5140
|
+
assistant?: AgentWidgetMessageRoleLayout;
|
|
5115
5141
|
/**
|
|
5116
5142
|
* Custom renderer for user messages
|
|
5117
5143
|
* When provided, replaces the default user message rendering
|