@runtypelabs/persona 4.3.0 → 4.4.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 +1 -1
- package/dist/codegen.cjs +1 -1
- package/dist/codegen.js +1 -1
- package/dist/index.cjs +3 -3
- 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 +3 -3
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +3 -3
- 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 +3 -3
- package/dist/theme-editor-preview.d.cts +6 -0
- package/dist/theme-editor-preview.d.ts +6 -0
- package/dist/theme-editor-preview.js +3 -3
- package/dist/theme-editor.d.cts +6 -0
- package/dist/theme-editor.d.ts +6 -0
- package/dist/widget.css +3 -0
- package/package.json +1 -1
- package/src/components/launcher.ts +11 -1
- package/src/components/panel.ts +10 -6
- package/src/styles/widget.css +3 -0
- package/src/types.ts +6 -0
|
@@ -3038,6 +3038,12 @@ type AgentWidgetLauncherConfig = {
|
|
|
3038
3038
|
agentIconText?: string;
|
|
3039
3039
|
agentIconName?: string;
|
|
3040
3040
|
agentIconHidden?: boolean;
|
|
3041
|
+
/**
|
|
3042
|
+
* Background color for the agent icon circle in the launcher button. Accepts
|
|
3043
|
+
* any CSS color value. When set, overrides the default primary-color
|
|
3044
|
+
* background (the `persona-bg-persona-primary` utility).
|
|
3045
|
+
*/
|
|
3046
|
+
agentIconBackgroundColor?: string;
|
|
3041
3047
|
position?: "bottom-right" | "bottom-left" | "top-right" | "top-left";
|
|
3042
3048
|
/**
|
|
3043
3049
|
* Controls how the launcher panel is mounted relative to the host page.
|
|
@@ -3038,6 +3038,12 @@ type AgentWidgetLauncherConfig = {
|
|
|
3038
3038
|
agentIconText?: string;
|
|
3039
3039
|
agentIconName?: string;
|
|
3040
3040
|
agentIconHidden?: boolean;
|
|
3041
|
+
/**
|
|
3042
|
+
* Background color for the agent icon circle in the launcher button. Accepts
|
|
3043
|
+
* any CSS color value. When set, overrides the default primary-color
|
|
3044
|
+
* background (the `persona-bg-persona-primary` utility).
|
|
3045
|
+
*/
|
|
3046
|
+
agentIconBackgroundColor?: string;
|
|
3041
3047
|
position?: "bottom-right" | "bottom-left" | "top-right" | "top-left";
|
|
3042
3048
|
/**
|
|
3043
3049
|
* Controls how the launcher panel is mounted relative to the host page.
|