@runtypelabs/persona 4.3.1 → 4.4.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/dist/codegen.cjs +1 -1
- package/dist/codegen.js +1 -1
- package/dist/index.cjs +27 -27
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.global.js +25 -25
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +29 -29
- package/dist/index.js.map +1 -1
- package/dist/launcher.global.js +2 -2
- package/dist/launcher.global.js.map +1 -1
- package/dist/smart-dom-reader.d.cts +6 -0
- package/dist/smart-dom-reader.d.ts +6 -0
- package/dist/theme-editor-preview.cjs +28 -28
- package/dist/theme-editor-preview.d.cts +6 -0
- package/dist/theme-editor-preview.d.ts +6 -0
- package/dist/theme-editor-preview.js +26 -26
- package/dist/theme-editor.d.cts +6 -0
- package/dist/theme-editor.d.ts +6 -0
- package/dist/widget.css +24 -0
- package/package.json +1 -1
- package/src/components/event-stream-view.test.ts +23 -22
- package/src/components/event-stream-view.ts +25 -47
- package/src/components/launcher.ts +11 -1
- package/src/components/panel.ts +10 -6
- package/src/styles/widget.css +24 -0
- package/src/types.ts +6 -0
- package/src/ui.ts +9 -0
|
@@ -2843,6 +2843,12 @@ type AgentWidgetLauncherConfig = {
|
|
|
2843
2843
|
agentIconText?: string;
|
|
2844
2844
|
agentIconName?: string;
|
|
2845
2845
|
agentIconHidden?: boolean;
|
|
2846
|
+
/**
|
|
2847
|
+
* Background color for the agent icon circle in the launcher button. Accepts
|
|
2848
|
+
* any CSS color value. When set, overrides the default primary-color
|
|
2849
|
+
* background (the `persona-bg-persona-primary` utility).
|
|
2850
|
+
*/
|
|
2851
|
+
agentIconBackgroundColor?: string;
|
|
2846
2852
|
position?: "bottom-right" | "bottom-left" | "top-right" | "top-left";
|
|
2847
2853
|
/**
|
|
2848
2854
|
* Controls how the launcher panel is mounted relative to the host page.
|
|
@@ -2843,6 +2843,12 @@ type AgentWidgetLauncherConfig = {
|
|
|
2843
2843
|
agentIconText?: string;
|
|
2844
2844
|
agentIconName?: string;
|
|
2845
2845
|
agentIconHidden?: boolean;
|
|
2846
|
+
/**
|
|
2847
|
+
* Background color for the agent icon circle in the launcher button. Accepts
|
|
2848
|
+
* any CSS color value. When set, overrides the default primary-color
|
|
2849
|
+
* background (the `persona-bg-persona-primary` utility).
|
|
2850
|
+
*/
|
|
2851
|
+
agentIconBackgroundColor?: string;
|
|
2846
2852
|
position?: "bottom-right" | "bottom-left" | "top-right" | "top-left";
|
|
2847
2853
|
/**
|
|
2848
2854
|
* Controls how the launcher panel is mounted relative to the host page.
|