@runtypelabs/persona 4.0.0 → 4.1.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/README.md +4 -4
- package/dist/codegen.cjs +1 -1
- package/dist/codegen.js +1 -1
- package/dist/index.cjs +31 -29
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.global.js +21 -19
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +31 -29
- package/dist/index.js.map +1 -1
- package/dist/smart-dom-reader.d.cts +1 -1
- package/dist/smart-dom-reader.d.ts +1 -1
- package/dist/theme-editor-preview.cjs +24 -22
- package/dist/theme-editor-preview.d.cts +1 -1
- package/dist/theme-editor-preview.d.ts +1 -1
- package/dist/theme-editor-preview.js +24 -22
- package/dist/theme-editor.d.cts +1 -1
- package/dist/theme-editor.d.ts +1 -1
- package/dist/widget.css +14 -0
- package/package.json +1 -1
- package/src/components/message-bubble.ts +7 -0
- package/src/styles/widget.css +14 -0
- package/src/types.ts +1 -1
- package/src/ui.ts +6 -1
- package/src/utils/streaming-table.test.ts +100 -0
- package/src/utils/streaming-table.ts +103 -0
package/dist/index.d.cts
CHANGED
|
@@ -3183,7 +3183,7 @@ type AgentWidgetStatusIndicatorConfig = {
|
|
|
3183
3183
|
type AgentWidgetVoiceRecognitionConfig = {
|
|
3184
3184
|
enabled?: boolean;
|
|
3185
3185
|
pauseDuration?: number;
|
|
3186
|
-
/** Text shown in the user message placeholder while voice is being processed. Default: "
|
|
3186
|
+
/** Text shown in the user message placeholder while voice is being processed. Default: "Processing voice..." */
|
|
3187
3187
|
processingText?: string;
|
|
3188
3188
|
/** Text shown in the assistant message if voice processing fails. Default: "Voice processing failed. Please try again." */
|
|
3189
3189
|
processingErrorText?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -3183,7 +3183,7 @@ type AgentWidgetStatusIndicatorConfig = {
|
|
|
3183
3183
|
type AgentWidgetVoiceRecognitionConfig = {
|
|
3184
3184
|
enabled?: boolean;
|
|
3185
3185
|
pauseDuration?: number;
|
|
3186
|
-
/** Text shown in the user message placeholder while voice is being processed. Default: "
|
|
3186
|
+
/** Text shown in the user message placeholder while voice is being processed. Default: "Processing voice..." */
|
|
3187
3187
|
processingText?: string;
|
|
3188
3188
|
/** Text shown in the assistant message if voice processing fails. Default: "Voice processing failed. Please try again." */
|
|
3189
3189
|
processingErrorText?: string;
|