@intelliweave/embedded 2.2.81 → 2.2.83
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/component/component.d.ts +9 -0
- package/dist/component/component.js +112 -74
- package/dist/intelliweave-wordpress.zip +0 -0
- package/dist/node/node.d.ts +9 -0
- package/dist/node/node.js +1 -1
- package/dist/react/react.d.ts +10 -0
- package/dist/react/react.js +81 -43
- package/dist/script-tag/script-tag.js +112 -74
- package/dist/webpack/index.d.ts +15 -0
- package/dist/webpack/index.js +86 -48
- package/package.json +1 -1
- package/AGENTS.md +0 -12
|
@@ -1148,6 +1148,10 @@ interface WebWeaverGPTConfig {
|
|
|
1148
1148
|
offsetY?: number;
|
|
1149
1149
|
/** Custom brand name displayed in the panel header kicker (replaces "IntelliWeave"). */
|
|
1150
1150
|
brandName?: string;
|
|
1151
|
+
/** Custom brand name color displayed in the panel header kicker. */
|
|
1152
|
+
brandNameColor?: string;
|
|
1153
|
+
/** If true, the built-in UI hides the powered-by footer after server-side subscription checks. */
|
|
1154
|
+
hidePoweredBy?: boolean;
|
|
1151
1155
|
/** Identifier of an external app or service which manages this persona, if any. (eg. "chatterly") */
|
|
1152
1156
|
managedBy?: string;
|
|
1153
1157
|
/** Voice information */
|
|
@@ -1400,6 +1404,7 @@ declare class WebWeaverEmbed extends BaseComponent {
|
|
|
1400
1404
|
private _lastOffsetX?;
|
|
1401
1405
|
private _lastOffsetY?;
|
|
1402
1406
|
private _lastBrandName?;
|
|
1407
|
+
private _lastBrandNameColor?;
|
|
1403
1408
|
/** Apply persona-based color variants as CSS variables */
|
|
1404
1409
|
private applyPersonaColorVariants;
|
|
1405
1410
|
/** Parse a color string to RGB (supports hex and rgb/rgba) */
|
|
@@ -1413,6 +1418,10 @@ declare class WebWeaverEmbed extends BaseComponent {
|
|
|
1413
1418
|
private applyConfigStylesAndAttributes;
|
|
1414
1419
|
/** Called on update */
|
|
1415
1420
|
onUpdate(): void;
|
|
1421
|
+
/** True when a config value explicitly enables a feature flag. */
|
|
1422
|
+
private isTruthyFeatureFlag;
|
|
1423
|
+
/** True when the current hub config or explicit attribute should remove the powered-by footer. */
|
|
1424
|
+
private shouldHidePoweredBy;
|
|
1416
1425
|
/** Called when the component is created */
|
|
1417
1426
|
onDestroy(): void;
|
|
1418
1427
|
/** Called when the container is clicked */
|