@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
package/dist/webpack/index.d.ts
CHANGED
|
@@ -893,6 +893,10 @@ interface WebWeaverGPTConfig {
|
|
|
893
893
|
offsetY?: number;
|
|
894
894
|
/** Custom brand name displayed in the panel header kicker (replaces "IntelliWeave"). */
|
|
895
895
|
brandName?: string;
|
|
896
|
+
/** Custom brand name color displayed in the panel header kicker. */
|
|
897
|
+
brandNameColor?: string;
|
|
898
|
+
/** If true, the built-in UI hides the powered-by footer after server-side subscription checks. */
|
|
899
|
+
hidePoweredBy?: boolean;
|
|
896
900
|
/** Identifier of an external app or service which manages this persona, if any. (eg. "chatterly") */
|
|
897
901
|
managedBy?: string;
|
|
898
902
|
/** Voice information */
|
|
@@ -1900,6 +1904,7 @@ declare class WebWeaverEmbed extends BaseComponent {
|
|
|
1900
1904
|
private _lastOffsetX?;
|
|
1901
1905
|
private _lastOffsetY?;
|
|
1902
1906
|
private _lastBrandName?;
|
|
1907
|
+
private _lastBrandNameColor?;
|
|
1903
1908
|
/** Apply persona-based color variants as CSS variables */
|
|
1904
1909
|
private applyPersonaColorVariants;
|
|
1905
1910
|
/** Parse a color string to RGB (supports hex and rgb/rgba) */
|
|
@@ -1913,6 +1918,10 @@ declare class WebWeaverEmbed extends BaseComponent {
|
|
|
1913
1918
|
private applyConfigStylesAndAttributes;
|
|
1914
1919
|
/** Called on update */
|
|
1915
1920
|
onUpdate(): void;
|
|
1921
|
+
/** True when a config value explicitly enables a feature flag. */
|
|
1922
|
+
private isTruthyFeatureFlag;
|
|
1923
|
+
/** True when the current hub config or explicit attribute should remove the powered-by footer. */
|
|
1924
|
+
private shouldHidePoweredBy;
|
|
1916
1925
|
/** Called when the component is created */
|
|
1917
1926
|
onDestroy(): void;
|
|
1918
1927
|
/** Called when the container is clicked */
|
|
@@ -2316,6 +2325,12 @@ declare const WebWeaverUI: (props: {
|
|
|
2316
2325
|
positionX?: "left" | "right";
|
|
2317
2326
|
/** Vertical position: 'top' or 'bottom' (default: 'bottom') - only used when positioningMode is 'fixed' */
|
|
2318
2327
|
positionY?: "top" | "bottom";
|
|
2328
|
+
/** Custom brand name displayed in the panel header kicker. */
|
|
2329
|
+
brandName?: string;
|
|
2330
|
+
/** Custom brand name color displayed in the panel header kicker. */
|
|
2331
|
+
brandNameColor?: string;
|
|
2332
|
+
/** If true, hides the powered-by footer in the built-in UI. */
|
|
2333
|
+
hidePoweredBy?: boolean;
|
|
2319
2334
|
}) => React.JSX.Element | null;
|
|
2320
2335
|
/** Web Component ... React supports any registered Web Component with dashes in the name, but they don't get TypeScript definitions */
|
|
2321
2336
|
declare global {
|