@envive-ai/react-widgets-v3 0.3.15 → 0.3.16

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.
Files changed (49) hide show
  1. package/dist/debug/chatEmbed.cjs +1 -1
  2. package/dist/debug/chatEmbed.js +1 -1
  3. package/dist/debug/reportIssue.cjs +1 -1
  4. package/dist/debug/reportIssue.js +1 -1
  5. package/dist/hocs/withBaseWidget/withBaseWidget.d.ts +2 -2
  6. package/dist/packages/widgets/dist/SearchZeroState/SearchZeroStateWidget.d.ts +2 -2
  7. package/dist/packages/widgets/dist/SuggestionBar/SuggestionBar.d.ts +2 -2
  8. package/dist/widgets/ChatPreviewComparisonWidget/ChatPreviewComparisonWidget.cjs +36 -5
  9. package/dist/widgets/ChatPreviewComparisonWidget/ChatPreviewComparisonWidget.d.cts +3 -3
  10. package/dist/widgets/ChatPreviewComparisonWidget/ChatPreviewComparisonWidget.js +36 -5
  11. package/dist/widgets/ChatPreviewLoadingWidget/ChatPreviewLoadingWidget.d.cts +3 -3
  12. package/dist/widgets/ChatPreviewLoadingWidget/ChatPreviewLoadingWidget.d.ts +3 -3
  13. package/dist/widgets/ChatPreviewWidget/ChatPreviewWidget.cjs +34 -4
  14. package/dist/widgets/ChatPreviewWidget/ChatPreviewWidget.d.cts +3 -3
  15. package/dist/widgets/ChatPreviewWidget/ChatPreviewWidget.js +35 -5
  16. package/dist/widgets/FloatingChatWidget/FloatingChatWidget.cjs +3 -3
  17. package/dist/widgets/FloatingChatWidget/FloatingChatWidget.d.cts +2 -2
  18. package/dist/widgets/FloatingChatWidget/FloatingChatWidget.d.ts +2 -2
  19. package/dist/widgets/FloatingChatWidget/FloatingChatWidget.js +3 -3
  20. package/dist/widgets/FullPageSalesAgentWidget/FullPageSalesAgentWidget.d.ts +2 -2
  21. package/dist/widgets/ProductCardWidget/ProductCardWidget.cjs +25 -3
  22. package/dist/widgets/ProductCardWidget/ProductCardWidget.d.cts +2 -2
  23. package/dist/widgets/ProductCardWidget/ProductCardWidget.js +25 -3
  24. package/dist/widgets/PromptButtonCarouselWithImageWidget/PromptButtonCarouselWithImageWidget.cjs +5 -5
  25. package/dist/widgets/PromptButtonCarouselWithImageWidget/PromptButtonCarouselWithImageWidget.d.cts +3 -3
  26. package/dist/widgets/PromptButtonCarouselWithImageWidget/PromptButtonCarouselWithImageWidget.d.ts +3 -3
  27. package/dist/widgets/PromptButtonCarouselWithImageWidget/PromptButtonCarouselWithImageWidget.js +5 -5
  28. package/dist/widgets/PromptCarouselWidget/PromptCarouselWidget.cjs +2 -2
  29. package/dist/widgets/PromptCarouselWidget/PromptCarouselWidget.d.cts +2 -2
  30. package/dist/widgets/PromptCarouselWidget/PromptCarouselWidget.js +2 -2
  31. package/dist/widgets/SocialProofFlowWidget/SocialProofFlowWidget.d.ts +2 -2
  32. package/dist/widgets/SocialProofWidget/SocialProofWidget.cjs +6 -6
  33. package/dist/widgets/SocialProofWidget/SocialProofWidget.d.cts +3 -3
  34. package/dist/widgets/SocialProofWidget/SocialProofWidget.js +6 -6
  35. package/dist/widgets/TitledPromptCarouselWidget/TitledPromptCarouselWidget.cjs +1 -1
  36. package/dist/widgets/TitledPromptCarouselWidget/TitledPromptCarouselWidget.js +1 -1
  37. package/dist/widgets/TypingAnimationFlowWidget/TypingAnimationFlowWidget.d.ts +2 -2
  38. package/dist/widgets/TypingAnimationWidget/TypingAnimationWidget.cjs +23 -2
  39. package/dist/widgets/TypingAnimationWidget/TypingAnimationWidget.d.ts +3 -3
  40. package/dist/widgets/TypingAnimationWidget/TypingAnimationWidget.js +24 -3
  41. package/dist/widgets/dist/SearchZeroState/SearchZeroStateWidget.d.cts +2 -2
  42. package/dist/widgets/dist/SuggestionBar/SuggestionBar.d.cts +2 -2
  43. package/dist/widgets/hooks/useGetWidgetStatus.cjs +1 -1
  44. package/dist/widgets/hooks/useGetWidgetStatus.js +1 -1
  45. package/package.json +1 -1
  46. package/src/widgets/ChatPreviewComparisonWidget/ChatPreviewComparisonWidget.tsx +59 -8
  47. package/src/widgets/ChatPreviewWidget/ChatPreviewWidget.tsx +55 -7
  48. package/src/widgets/ProductCardWidget/ProductCardWidget.tsx +37 -4
  49. package/src/widgets/TypingAnimationWidget/TypingAnimationWidget.tsx +45 -10
@@ -3,8 +3,8 @@ const require_MessageContent = require('./MessageContent.cjs');
3
3
  let react = require("react");
4
4
  react = require_rolldown_runtime.__toESM(react);
5
5
  let react_jsx_runtime = require("react/jsx-runtime");
6
- let jotai = require("jotai");
7
6
  let __envive_ai_react_hooks_atoms_chat = require("@envive-ai/react-hooks/atoms/chat");
7
+ let jotai = require("jotai");
8
8
  let __envive_ai_react_hooks_application_models = require("@envive-ai/react-hooks/application/models");
9
9
  let __envive_ai_react_toolkit_v3_PromptCarousel = require("@envive-ai/react-toolkit-v3/PromptCarousel");
10
10
  let classnames = require("classnames");
@@ -1,8 +1,8 @@
1
1
  import { MessageContent } from "./MessageContent.js";
2
2
  import React from "react";
3
3
  import { jsx, jsxs } from "react/jsx-runtime";
4
- import { useAtomValue } from "jotai";
5
4
  import { chatAtom } from "@envive-ai/react-hooks/atoms/chat";
5
+ import { useAtomValue } from "jotai";
6
6
  import { MessageType } from "@envive-ai/react-hooks/application/models";
7
7
  import { PromptCarousel, PromptCarouselRows } from "@envive-ai/react-toolkit-v3/PromptCarousel";
8
8
  import classNames from "classnames";
@@ -5,8 +5,8 @@ const require_GenericSelect = require('./GenericSelect.cjs');
5
5
  const require_chatEmbed = require('./chatEmbed.cjs');
6
6
  let react = require("react");
7
7
  let react_jsx_runtime = require("react/jsx-runtime");
8
- let jotai = require("jotai");
9
8
  let __envive_ai_react_hooks_atoms_chat = require("@envive-ai/react-hooks/atoms/chat");
9
+ let jotai = require("jotai");
10
10
  let __envive_ai_react_hooks_application_models = require("@envive-ai/react-hooks/application/models");
11
11
  let __envive_ai_react_hooks_atoms_app = require("@envive-ai/react-hooks/atoms/app");
12
12
  let classnames = require("classnames");
@@ -3,8 +3,8 @@ import { GenericSelect } from "./GenericSelect.js";
3
3
  import chatEmbed_default from "./chatEmbed.js";
4
4
  import { useCallback, useEffect, useState } from "react";
5
5
  import { jsx, jsxs } from "react/jsx-runtime";
6
- import { useAtomValue } from "jotai";
7
6
  import { chatAtom, lastAssistantMessageAtom } from "@envive-ai/react-hooks/atoms/chat";
7
+ import { useAtomValue } from "jotai";
8
8
  import { MessageType } from "@envive-ai/react-hooks/application/models";
9
9
  import { userIdAtom } from "@envive-ai/react-hooks/atoms/app";
10
10
  import { ReportSessionRequestReportPriorityEnum, ReportSessionRequestReportTypeEnum } from "@spiffy-ai/commerce-api-client";
@@ -1,9 +1,9 @@
1
1
  import { BaseWidgetProps, WithBaseWidgetOptions } from "./types.js";
2
- import * as react_jsx_runtime0 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime19 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/hocs/withBaseWidget/withBaseWidget.d.ts
5
5
  declare function withBaseWidget<P extends BaseWidgetProps>(Widget: React.ComponentType<P>, options?: WithBaseWidgetOptions): {
6
- (props: P): react_jsx_runtime0.JSX.Element;
6
+ (props: P): react_jsx_runtime19.JSX.Element;
7
7
  displayName: string;
8
8
  };
9
9
  //#endregion
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime2 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime3 from "react/jsx-runtime";
2
2
 
3
3
  //#region ../widgets/dist/SearchZeroState/SearchZeroStateWidget.d.ts
4
4
  //#region src/SearchZeroState/SearchZeroStateWidget.d.ts
@@ -11,7 +11,7 @@ declare const SearchZeroStateWidget: ({
11
11
  initialIsOpen,
12
12
  widgetConfigId,
13
13
  entryPointRef
14
- }: SearchZeroStateWidgetProps) => react_jsx_runtime2.JSX.Element;
14
+ }: SearchZeroStateWidgetProps) => react_jsx_runtime3.JSX.Element;
15
15
  //#endregion
16
16
 
17
17
  //#endregion
@@ -1,5 +1,5 @@
1
1
  import { SuggestionBarLocationForMetrics } from "./types.js";
2
- import * as react_jsx_runtime3 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime2 from "react/jsx-runtime";
3
3
  import { SuggestionButtonVariant } from "@envive-ai/react-hooks/contexts/types";
4
4
  import { Message } from "postcss";
5
5
 
@@ -30,7 +30,7 @@ declare function SuggestionBar({
30
30
  buttonBorderRadius,
31
31
  handleReply,
32
32
  dataTestId
33
- }: Readonly<SuggestionBarProps>): react_jsx_runtime3.JSX.Element;
33
+ }: Readonly<SuggestionBarProps>): react_jsx_runtime2.JSX.Element;
34
34
  //#endregion
35
35
  //#endregion
36
36
  export { SuggestionBar };
@@ -3,21 +3,27 @@ const require_withBaseWidget = require('../../hocs/withBaseWidget/withBaseWidget
3
3
  const require_functions = require('../utils/functions.cjs');
4
4
  const require_ChatPreviewLoadingWidget = require('../ChatPreviewLoadingWidget/ChatPreviewLoadingWidget.cjs');
5
5
  let react = require("react");
6
+ let __envive_ai_react_hooks_contexts_amplitudeContext = require("@envive-ai/react-hooks/contexts/amplitudeContext");
6
7
  let react_jsx_runtime = require("react/jsx-runtime");
7
- let __envive_ai_react_hooks_contexts_typesV3 = require("@envive-ai/react-hooks/contexts/typesV3");
8
- let jotai = require("jotai");
8
+ let __envive_ai_react_hooks_atoms_chat = require("@envive-ai/react-hooks/atoms/chat");
9
9
  let __envive_ai_react_hooks_contexts_salesAgentContext = require("@envive-ai/react-hooks/contexts/salesAgentContext");
10
+ let __envive_ai_react_hooks_contexts_typesV3 = require("@envive-ai/react-hooks/contexts/typesV3");
10
11
  let __envive_ai_react_hooks_hooks_ChatToggle = require("@envive-ai/react-hooks/hooks/ChatToggle");
11
- let __envive_ai_react_hooks_atoms_chat = require("@envive-ai/react-hooks/atoms/chat");
12
- let __envive_ai_react_toolkit_v3_Tokens = require("@envive-ai/react-toolkit-v3/Tokens");
12
+ let jotai = require("jotai");
13
13
  let __envive_ai_react_hooks_application_models = require("@envive-ai/react-hooks/application/models");
14
- let __envive_ai_react_toolkit_v3_ChatPreviewComparison = require("@envive-ai/react-toolkit-v3/ChatPreviewComparison");
15
14
  let __envive_ai_react_hooks_atoms_app = require("@envive-ai/react-hooks/atoms/app");
15
+ let __envive_ai_react_hooks_hooks_WidgetInteraction = require("@envive-ai/react-hooks/hooks/WidgetInteraction");
16
+ let __envive_ai_react_hooks_hooks_WidgetInteraction_types = require("@envive-ai/react-hooks/hooks/WidgetInteraction/types");
17
+ let __envive_ai_react_toolkit_v3_ChatPreviewComparison = require("@envive-ai/react-toolkit-v3/ChatPreviewComparison");
18
+ let __envive_ai_react_toolkit_v3_PromptCarousel = require("@envive-ai/react-toolkit-v3/PromptCarousel");
19
+ let __envive_ai_react_toolkit_v3_Tokens = require("@envive-ai/react-toolkit-v3/Tokens");
16
20
 
17
21
  //#region src/widgets/ChatPreviewComparisonWidget/ChatPreviewComparisonWidget.tsx
18
22
  const ChatPreviewComparisonWidgetHandler = (props) => {
19
23
  const { onSuggestionClicked } = (0, __envive_ai_react_hooks_contexts_salesAgentContext.useSalesAgent)();
20
24
  const { openChat } = (0, __envive_ai_react_hooks_hooks_ChatToggle.useChatToggle)();
25
+ const { trackWidgetInteraction } = (0, __envive_ai_react_hooks_hooks_WidgetInteraction.useWidgetInteraction)();
26
+ const { onClick: onPromptClicked, onDrag, onHover, onMouseDown, onMouseUp, onTouchStart, onTouchEnd } = (0, __envive_ai_react_toolkit_v3_PromptCarousel.usePromptCarouselAnalytics)(__envive_ai_react_hooks_hooks_WidgetInteraction_types.WidgetInteractionComponent.POST_INTERACTION_COMPARISON, (text) => text);
21
27
  const lastAssistantMessage = (0, jotai.useAtomValue)(__envive_ai_react_hooks_atoms_chat.lastAssistantMessageAtom);
22
28
  const variantInfo = (0, jotai.useAtomValue)(__envive_ai_react_hooks_atoms_app.variantInfoAtom);
23
29
  const productId = variantInfo.variant === __envive_ai_react_hooks_application_models.VariantTypeEnum.Pdp ? variantInfo.productId : void 0;
@@ -42,10 +48,28 @@ const ChatPreviewComparisonWidgetHandler = (props) => {
42
48
  const handlePromptButtonClick = (0, react.useCallback)((suggestion) => {
43
49
  onSuggestionClicked(suggestion, __envive_ai_react_hooks_application_models.ChatElementDisplayLocationV3.CHAT_PREVIEW_COMPARISON_PROMPT_BUTTON);
44
50
  openChat(__envive_ai_react_hooks_application_models.ChatElementDisplayLocationV3.CHAT_PREVIEW_COMPARISON_PROMPT_BUTTON);
51
+ onPromptClicked(suggestion.id);
45
52
  }, [onSuggestionClicked, openChat]);
46
53
  const handleTextFieldClick = (0, react.useCallback)(() => {
47
54
  openChat(__envive_ai_react_hooks_application_models.ChatElementDisplayLocationV3.CHAT_PREVIEW_COMPARISON_TEXT_FIELD);
55
+ trackWidgetInteraction({
56
+ eventName: __envive_ai_react_hooks_contexts_amplitudeContext.EnviveMetricsEventName.WidgetInteraction,
57
+ trigger: {
58
+ widget: __envive_ai_react_hooks_hooks_WidgetInteraction_types.WidgetInteractionComponent.POST_INTERACTION_COMPARISON,
59
+ widget_interaction: __envive_ai_react_hooks_hooks_WidgetInteraction_types.WidgetInteractionType.QUERY_INPUT_CLICKED
60
+ }
61
+ });
48
62
  }, [openChat]);
63
+ const handleLinkClick = (url) => {
64
+ trackWidgetInteraction({
65
+ eventName: __envive_ai_react_hooks_contexts_amplitudeContext.EnviveMetricsEventName.WidgetInteraction,
66
+ trigger: {
67
+ widget: __envive_ai_react_hooks_hooks_WidgetInteraction_types.WidgetInteractionComponent.POST_INTERACTION_COMPARISON,
68
+ widget_interaction: __envive_ai_react_hooks_hooks_WidgetInteraction_types.WidgetInteractionType.LINK_CLICKED,
69
+ widget_interaction_data: { link_clicked: { url } }
70
+ }
71
+ });
72
+ };
49
73
  if (isLoading) return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_ChatPreviewLoadingWidget.ChatPreviewLoadingWidgetWithBaseWidget, {
50
74
  widgetConfigId,
51
75
  widgetType: __envive_ai_react_hooks_contexts_typesV3.WidgetTypeV3.ChatPreviewLoadingV3
@@ -73,6 +97,13 @@ const ChatPreviewComparisonWidgetHandler = (props) => {
73
97
  widgetContentProps,
74
98
  widgetEventProps: {
75
99
  handlePromptButtonClick,
100
+ handlePromptButtonDrag: onDrag,
101
+ handlePromptButtonHover: onHover,
102
+ handlePromptButtonMouseDown: onMouseDown,
103
+ handlePromptButtonMouseUp: onMouseUp,
104
+ handlePromptButtonTouchStart: onTouchStart,
105
+ handlePromptButtonTouchEnd: onTouchEnd,
106
+ handleLinkClick,
76
107
  handleTextFieldClick
77
108
  }
78
109
  });
@@ -1,9 +1,9 @@
1
1
  import { BaseWidgetProps } from "../../hocs/withBaseWidget/types.cjs";
2
- import * as react_jsx_runtime6 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime7 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/widgets/ChatPreviewComparisonWidget/ChatPreviewComparisonWidget.d.ts
5
5
  declare const ChatPreviewComparisonWidgetWithBaseWidget: {
6
- (props: BaseWidgetProps): react_jsx_runtime6.JSX.Element;
6
+ (props: BaseWidgetProps): react_jsx_runtime7.JSX.Element;
7
7
  displayName: string;
8
8
  };
9
9
  interface ChatPreviewComparisonWidgetProps {
@@ -12,7 +12,7 @@ interface ChatPreviewComparisonWidgetProps {
12
12
  declare const ChatPreviewComparisonWidget: {
13
13
  ({
14
14
  widgetConfigId
15
- }: ChatPreviewComparisonWidgetProps): react_jsx_runtime6.JSX.Element;
15
+ }: ChatPreviewComparisonWidgetProps): react_jsx_runtime7.JSX.Element;
16
16
  displayName: string;
17
17
  };
18
18
  //#endregion
@@ -2,21 +2,27 @@ import { withBaseWidget } from "../../hocs/withBaseWidget/withBaseWidget.js";
2
2
  import { getMessageText, getRecentProductImageUrls } from "../utils/functions.js";
3
3
  import { ChatPreviewLoadingWidgetWithBaseWidget } from "../ChatPreviewLoadingWidget/ChatPreviewLoadingWidget.js";
4
4
  import { useCallback, useMemo } from "react";
5
+ import { EnviveMetricsEventName } from "@envive-ai/react-hooks/contexts/amplitudeContext";
5
6
  import { jsx } from "react/jsx-runtime";
6
- import { WidgetTypeV3 } from "@envive-ai/react-hooks/contexts/typesV3";
7
- import { useAtomValue } from "jotai";
7
+ import { chatAtom, lastAssistantMessageAtom } from "@envive-ai/react-hooks/atoms/chat";
8
8
  import { useSalesAgent } from "@envive-ai/react-hooks/contexts/salesAgentContext";
9
+ import { WidgetTypeV3 } from "@envive-ai/react-hooks/contexts/typesV3";
9
10
  import { useChatToggle } from "@envive-ai/react-hooks/hooks/ChatToggle";
10
- import { chatAtom, lastAssistantMessageAtom } from "@envive-ai/react-hooks/atoms/chat";
11
- import { Theme } from "@envive-ai/react-toolkit-v3/Tokens";
11
+ import { useAtomValue } from "jotai";
12
12
  import { ChatElementDisplayLocationV3, VariantTypeEnum } from "@envive-ai/react-hooks/application/models";
13
- import { ChatPreviewComparison } from "@envive-ai/react-toolkit-v3/ChatPreviewComparison";
14
13
  import { variantInfoAtom } from "@envive-ai/react-hooks/atoms/app";
14
+ import { useWidgetInteraction } from "@envive-ai/react-hooks/hooks/WidgetInteraction";
15
+ import { WidgetInteractionComponent, WidgetInteractionType } from "@envive-ai/react-hooks/hooks/WidgetInteraction/types";
16
+ import { ChatPreviewComparison } from "@envive-ai/react-toolkit-v3/ChatPreviewComparison";
17
+ import { usePromptCarouselAnalytics } from "@envive-ai/react-toolkit-v3/PromptCarousel";
18
+ import { Theme } from "@envive-ai/react-toolkit-v3/Tokens";
15
19
 
16
20
  //#region src/widgets/ChatPreviewComparisonWidget/ChatPreviewComparisonWidget.tsx
17
21
  const ChatPreviewComparisonWidgetHandler = (props) => {
18
22
  const { onSuggestionClicked } = useSalesAgent();
19
23
  const { openChat } = useChatToggle();
24
+ const { trackWidgetInteraction } = useWidgetInteraction();
25
+ const { onClick: onPromptClicked, onDrag, onHover, onMouseDown, onMouseUp, onTouchStart, onTouchEnd } = usePromptCarouselAnalytics(WidgetInteractionComponent.POST_INTERACTION_COMPARISON, (text) => text);
20
26
  const lastAssistantMessage = useAtomValue(lastAssistantMessageAtom);
21
27
  const variantInfo = useAtomValue(variantInfoAtom);
22
28
  const productId = variantInfo.variant === VariantTypeEnum.Pdp ? variantInfo.productId : void 0;
@@ -41,10 +47,28 @@ const ChatPreviewComparisonWidgetHandler = (props) => {
41
47
  const handlePromptButtonClick = useCallback((suggestion) => {
42
48
  onSuggestionClicked(suggestion, ChatElementDisplayLocationV3.CHAT_PREVIEW_COMPARISON_PROMPT_BUTTON);
43
49
  openChat(ChatElementDisplayLocationV3.CHAT_PREVIEW_COMPARISON_PROMPT_BUTTON);
50
+ onPromptClicked(suggestion.id);
44
51
  }, [onSuggestionClicked, openChat]);
45
52
  const handleTextFieldClick = useCallback(() => {
46
53
  openChat(ChatElementDisplayLocationV3.CHAT_PREVIEW_COMPARISON_TEXT_FIELD);
54
+ trackWidgetInteraction({
55
+ eventName: EnviveMetricsEventName.WidgetInteraction,
56
+ trigger: {
57
+ widget: WidgetInteractionComponent.POST_INTERACTION_COMPARISON,
58
+ widget_interaction: WidgetInteractionType.QUERY_INPUT_CLICKED
59
+ }
60
+ });
47
61
  }, [openChat]);
62
+ const handleLinkClick = (url) => {
63
+ trackWidgetInteraction({
64
+ eventName: EnviveMetricsEventName.WidgetInteraction,
65
+ trigger: {
66
+ widget: WidgetInteractionComponent.POST_INTERACTION_COMPARISON,
67
+ widget_interaction: WidgetInteractionType.LINK_CLICKED,
68
+ widget_interaction_data: { link_clicked: { url } }
69
+ }
70
+ });
71
+ };
48
72
  if (isLoading) return /* @__PURE__ */ jsx(ChatPreviewLoadingWidgetWithBaseWidget, {
49
73
  widgetConfigId,
50
74
  widgetType: WidgetTypeV3.ChatPreviewLoadingV3
@@ -72,6 +96,13 @@ const ChatPreviewComparisonWidgetHandler = (props) => {
72
96
  widgetContentProps,
73
97
  widgetEventProps: {
74
98
  handlePromptButtonClick,
99
+ handlePromptButtonDrag: onDrag,
100
+ handlePromptButtonHover: onHover,
101
+ handlePromptButtonMouseDown: onMouseDown,
102
+ handlePromptButtonMouseUp: onMouseUp,
103
+ handlePromptButtonTouchStart: onTouchStart,
104
+ handlePromptButtonTouchEnd: onTouchEnd,
105
+ handleLinkClick,
75
106
  handleTextFieldClick
76
107
  }
77
108
  });
@@ -1,9 +1,9 @@
1
1
  import { BaseWidgetProps } from "../../hocs/withBaseWidget/types.cjs";
2
- import * as react_jsx_runtime8 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime13 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/widgets/ChatPreviewLoadingWidget/ChatPreviewLoadingWidget.d.ts
5
5
  declare const ChatPreviewLoadingWidgetWithBaseWidget: {
6
- (props: BaseWidgetProps): react_jsx_runtime8.JSX.Element;
6
+ (props: BaseWidgetProps): react_jsx_runtime13.JSX.Element;
7
7
  displayName: string;
8
8
  };
9
9
  interface ChatPreviewLoadingWidgetProps {
@@ -11,6 +11,6 @@ interface ChatPreviewLoadingWidgetProps {
11
11
  }
12
12
  declare const ChatPreviewLoadingWidget: ({
13
13
  widgetConfigId
14
- }: ChatPreviewLoadingWidgetProps) => react_jsx_runtime8.JSX.Element;
14
+ }: ChatPreviewLoadingWidgetProps) => react_jsx_runtime13.JSX.Element;
15
15
  //#endregion
16
16
  export { ChatPreviewLoadingWidget, ChatPreviewLoadingWidgetProps, ChatPreviewLoadingWidgetWithBaseWidget };
@@ -1,9 +1,9 @@
1
1
  import { BaseWidgetProps } from "../../hocs/withBaseWidget/types.js";
2
- import * as react_jsx_runtime3 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime1 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/widgets/ChatPreviewLoadingWidget/ChatPreviewLoadingWidget.d.ts
5
5
  declare const ChatPreviewLoadingWidgetWithBaseWidget: {
6
- (props: BaseWidgetProps): react_jsx_runtime3.JSX.Element;
6
+ (props: BaseWidgetProps): react_jsx_runtime1.JSX.Element;
7
7
  displayName: string;
8
8
  };
9
9
  interface ChatPreviewLoadingWidgetProps {
@@ -11,6 +11,6 @@ interface ChatPreviewLoadingWidgetProps {
11
11
  }
12
12
  declare const ChatPreviewLoadingWidget: ({
13
13
  widgetConfigId
14
- }: ChatPreviewLoadingWidgetProps) => react_jsx_runtime3.JSX.Element;
14
+ }: ChatPreviewLoadingWidgetProps) => react_jsx_runtime1.JSX.Element;
15
15
  //#endregion
16
16
  export { ChatPreviewLoadingWidget, ChatPreviewLoadingWidgetProps, ChatPreviewLoadingWidgetWithBaseWidget };
@@ -5,13 +5,16 @@ const require_ChatPreviewLoadingWidget = require('../ChatPreviewLoadingWidget/Ch
5
5
  let react = require("react");
6
6
  let __envive_ai_react_hooks_contexts_amplitudeContext = require("@envive-ai/react-hooks/contexts/amplitudeContext");
7
7
  let react_jsx_runtime = require("react/jsx-runtime");
8
- let __envive_ai_react_hooks_contexts_typesV3 = require("@envive-ai/react-hooks/contexts/typesV3");
9
- let jotai = require("jotai");
8
+ let __envive_ai_react_hooks_atoms_chat = require("@envive-ai/react-hooks/atoms/chat");
10
9
  let __envive_ai_react_hooks_contexts_salesAgentContext = require("@envive-ai/react-hooks/contexts/salesAgentContext");
10
+ let __envive_ai_react_hooks_contexts_typesV3 = require("@envive-ai/react-hooks/contexts/typesV3");
11
11
  let __envive_ai_react_hooks_hooks_ChatToggle = require("@envive-ai/react-hooks/hooks/ChatToggle");
12
- let __envive_ai_react_hooks_atoms_chat = require("@envive-ai/react-hooks/atoms/chat");
13
- let __envive_ai_react_toolkit_v3_Tokens = require("@envive-ai/react-toolkit-v3/Tokens");
12
+ let jotai = require("jotai");
14
13
  let __envive_ai_react_hooks_application_models = require("@envive-ai/react-hooks/application/models");
14
+ let __envive_ai_react_hooks_hooks_WidgetInteraction = require("@envive-ai/react-hooks/hooks/WidgetInteraction");
15
+ let __envive_ai_react_hooks_hooks_WidgetInteraction_types = require("@envive-ai/react-hooks/hooks/WidgetInteraction/types");
16
+ let __envive_ai_react_toolkit_v3_PromptCarousel = require("@envive-ai/react-toolkit-v3/PromptCarousel");
17
+ let __envive_ai_react_toolkit_v3_Tokens = require("@envive-ai/react-toolkit-v3/Tokens");
15
18
  let __envive_ai_react_toolkit_v3_ChatPreview = require("@envive-ai/react-toolkit-v3/ChatPreview");
16
19
 
17
20
  //#region src/widgets/ChatPreviewWidget/ChatPreviewWidget.tsx
@@ -31,6 +34,8 @@ const ChatPreviewWidgetHandler = (props) => {
31
34
  messageText
32
35
  };
33
36
  const { trackEvent } = (0, __envive_ai_react_hooks_contexts_amplitudeContext.useAmplitude)();
37
+ const { trackWidgetInteraction } = (0, __envive_ai_react_hooks_hooks_WidgetInteraction.useWidgetInteraction)();
38
+ const { onClick: onPromptClicked, onDrag, onHover, onMouseDown, onMouseUp, onTouchStart, onTouchEnd } = (0, __envive_ai_react_toolkit_v3_PromptCarousel.usePromptCarouselAnalytics)(__envive_ai_react_hooks_hooks_WidgetInteraction_types.WidgetInteractionComponent.CHAT_PREVIEW, (text) => text);
34
39
  (0, react.useEffect)(() => {
35
40
  trackEvent({
36
41
  eventName: __envive_ai_react_hooks_contexts_amplitudeContext.SpiffyMetricsEventName.ChatComponentVisible,
@@ -45,10 +50,28 @@ const ChatPreviewWidgetHandler = (props) => {
45
50
  const handlePromptButtonClick = (0, react.useCallback)((suggestion) => {
46
51
  onSuggestionClicked(suggestion, __envive_ai_react_hooks_application_models.ChatElementDisplayLocationV3.CHAT_PREVIEW_PROMPT_BUTTON);
47
52
  openChat(__envive_ai_react_hooks_application_models.ChatElementDisplayLocationV3.CHAT_PREVIEW_PROMPT_BUTTON);
53
+ onPromptClicked(suggestion.id);
48
54
  }, [onSuggestionClicked, openChat]);
49
55
  const handleTextFieldClick = (0, react.useCallback)(() => {
50
56
  openChat(__envive_ai_react_hooks_application_models.ChatElementDisplayLocationV3.CHAT_PREVIEW_TEXT_FIELD);
57
+ trackWidgetInteraction({
58
+ eventName: __envive_ai_react_hooks_contexts_amplitudeContext.EnviveMetricsEventName.WidgetInteraction,
59
+ trigger: {
60
+ widget: __envive_ai_react_hooks_hooks_WidgetInteraction_types.WidgetInteractionComponent.CHAT_PREVIEW,
61
+ widget_interaction: __envive_ai_react_hooks_hooks_WidgetInteraction_types.WidgetInteractionType.QUERY_INPUT_CLICKED
62
+ }
63
+ });
51
64
  }, [openChat]);
65
+ const handleLinkClick = (url) => {
66
+ trackWidgetInteraction({
67
+ eventName: __envive_ai_react_hooks_contexts_amplitudeContext.EnviveMetricsEventName.WidgetInteraction,
68
+ trigger: {
69
+ widget: __envive_ai_react_hooks_hooks_WidgetInteraction_types.WidgetInteractionComponent.CHAT_PREVIEW,
70
+ widget_interaction: __envive_ai_react_hooks_hooks_WidgetInteraction_types.WidgetInteractionType.LINK_CLICKED,
71
+ widget_interaction_data: { link_clicked: { url } }
72
+ }
73
+ });
74
+ };
52
75
  if (isLoading) return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_ChatPreviewLoadingWidget.ChatPreviewLoadingWidgetWithBaseWidget, {
53
76
  widgetConfigId,
54
77
  widgetType: __envive_ai_react_hooks_contexts_typesV3.WidgetTypeV3.ChatPreviewLoadingV3
@@ -73,6 +96,13 @@ const ChatPreviewWidgetHandler = (props) => {
73
96
  widgetContentProps,
74
97
  widgetEventProps: {
75
98
  handlePromptButtonClick,
99
+ handlePromptButtonDrag: onDrag,
100
+ handlePromptButtonHover: onHover,
101
+ handlePromptButtonMouseDown: onMouseDown,
102
+ handlePromptButtonMouseUp: onMouseUp,
103
+ handlePromptButtonTouchStart: onTouchStart,
104
+ handlePromptButtonTouchEnd: onTouchEnd,
105
+ handleLinkClick,
76
106
  handleTextFieldClick
77
107
  }
78
108
  });
@@ -1,9 +1,9 @@
1
1
  import { BaseWidgetProps } from "../../hocs/withBaseWidget/types.cjs";
2
- import * as react_jsx_runtime15 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime11 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/widgets/ChatPreviewWidget/ChatPreviewWidget.d.ts
5
5
  declare const ChatPreviewWidgetWithBaseWidget: {
6
- (props: BaseWidgetProps): react_jsx_runtime15.JSX.Element;
6
+ (props: BaseWidgetProps): react_jsx_runtime11.JSX.Element;
7
7
  displayName: string;
8
8
  };
9
9
  interface ChatPreviewWidgetProps {
@@ -12,7 +12,7 @@ interface ChatPreviewWidgetProps {
12
12
  declare const ChatPreviewWidget: {
13
13
  ({
14
14
  widgetConfigId
15
- }: ChatPreviewWidgetProps): react_jsx_runtime15.JSX.Element;
15
+ }: ChatPreviewWidgetProps): react_jsx_runtime11.JSX.Element;
16
16
  displayName: string;
17
17
  };
18
18
  //#endregion
@@ -2,15 +2,18 @@ import { withBaseWidget } from "../../hocs/withBaseWidget/withBaseWidget.js";
2
2
  import { getMessageText } from "../utils/functions.js";
3
3
  import { ChatPreviewLoadingWidgetWithBaseWidget } from "../ChatPreviewLoadingWidget/ChatPreviewLoadingWidget.js";
4
4
  import { useCallback, useEffect, useMemo } from "react";
5
- import { SpiffyMetricsEventName, useAmplitude } from "@envive-ai/react-hooks/contexts/amplitudeContext";
5
+ import { EnviveMetricsEventName, SpiffyMetricsEventName, useAmplitude } from "@envive-ai/react-hooks/contexts/amplitudeContext";
6
6
  import { jsx } from "react/jsx-runtime";
7
- import { WidgetTypeV3 } from "@envive-ai/react-hooks/contexts/typesV3";
8
- import { useAtomValue } from "jotai";
7
+ import { chatAtom, lastAssistantMessageAtom } from "@envive-ai/react-hooks/atoms/chat";
9
8
  import { useSalesAgent } from "@envive-ai/react-hooks/contexts/salesAgentContext";
9
+ import { WidgetTypeV3 } from "@envive-ai/react-hooks/contexts/typesV3";
10
10
  import { useChatToggle } from "@envive-ai/react-hooks/hooks/ChatToggle";
11
- import { chatAtom, lastAssistantMessageAtom } from "@envive-ai/react-hooks/atoms/chat";
12
- import { Theme } from "@envive-ai/react-toolkit-v3/Tokens";
11
+ import { useAtomValue } from "jotai";
13
12
  import { ChatElementDisplayLocationV3 } from "@envive-ai/react-hooks/application/models";
13
+ import { useWidgetInteraction } from "@envive-ai/react-hooks/hooks/WidgetInteraction";
14
+ import { WidgetInteractionComponent, WidgetInteractionType } from "@envive-ai/react-hooks/hooks/WidgetInteraction/types";
15
+ import { usePromptCarouselAnalytics } from "@envive-ai/react-toolkit-v3/PromptCarousel";
16
+ import { Theme } from "@envive-ai/react-toolkit-v3/Tokens";
14
17
  import { ChatPreview } from "@envive-ai/react-toolkit-v3/ChatPreview";
15
18
 
16
19
  //#region src/widgets/ChatPreviewWidget/ChatPreviewWidget.tsx
@@ -30,6 +33,8 @@ const ChatPreviewWidgetHandler = (props) => {
30
33
  messageText
31
34
  };
32
35
  const { trackEvent } = useAmplitude();
36
+ const { trackWidgetInteraction } = useWidgetInteraction();
37
+ const { onClick: onPromptClicked, onDrag, onHover, onMouseDown, onMouseUp, onTouchStart, onTouchEnd } = usePromptCarouselAnalytics(WidgetInteractionComponent.CHAT_PREVIEW, (text) => text);
33
38
  useEffect(() => {
34
39
  trackEvent({
35
40
  eventName: SpiffyMetricsEventName.ChatComponentVisible,
@@ -44,10 +49,28 @@ const ChatPreviewWidgetHandler = (props) => {
44
49
  const handlePromptButtonClick = useCallback((suggestion) => {
45
50
  onSuggestionClicked(suggestion, ChatElementDisplayLocationV3.CHAT_PREVIEW_PROMPT_BUTTON);
46
51
  openChat(ChatElementDisplayLocationV3.CHAT_PREVIEW_PROMPT_BUTTON);
52
+ onPromptClicked(suggestion.id);
47
53
  }, [onSuggestionClicked, openChat]);
48
54
  const handleTextFieldClick = useCallback(() => {
49
55
  openChat(ChatElementDisplayLocationV3.CHAT_PREVIEW_TEXT_FIELD);
56
+ trackWidgetInteraction({
57
+ eventName: EnviveMetricsEventName.WidgetInteraction,
58
+ trigger: {
59
+ widget: WidgetInteractionComponent.CHAT_PREVIEW,
60
+ widget_interaction: WidgetInteractionType.QUERY_INPUT_CLICKED
61
+ }
62
+ });
50
63
  }, [openChat]);
64
+ const handleLinkClick = (url) => {
65
+ trackWidgetInteraction({
66
+ eventName: EnviveMetricsEventName.WidgetInteraction,
67
+ trigger: {
68
+ widget: WidgetInteractionComponent.CHAT_PREVIEW,
69
+ widget_interaction: WidgetInteractionType.LINK_CLICKED,
70
+ widget_interaction_data: { link_clicked: { url } }
71
+ }
72
+ });
73
+ };
51
74
  if (isLoading) return /* @__PURE__ */ jsx(ChatPreviewLoadingWidgetWithBaseWidget, {
52
75
  widgetConfigId,
53
76
  widgetType: WidgetTypeV3.ChatPreviewLoadingV3
@@ -72,6 +95,13 @@ const ChatPreviewWidgetHandler = (props) => {
72
95
  widgetContentProps,
73
96
  widgetEventProps: {
74
97
  handlePromptButtonClick,
98
+ handlePromptButtonDrag: onDrag,
99
+ handlePromptButtonHover: onHover,
100
+ handlePromptButtonMouseDown: onMouseDown,
101
+ handlePromptButtonMouseUp: onMouseUp,
102
+ handlePromptButtonTouchStart: onTouchStart,
103
+ handlePromptButtonTouchEnd: onTouchEnd,
104
+ handleLinkClick,
75
105
  handleTextFieldClick
76
106
  }
77
107
  });
@@ -12,13 +12,13 @@ const require_useAutoPopup = require('./hooks/useAutoPopup.cjs');
12
12
  let react = require("react");
13
13
  let __envive_ai_react_hooks_contexts_amplitudeContext = require("@envive-ai/react-hooks/contexts/amplitudeContext");
14
14
  let react_jsx_runtime = require("react/jsx-runtime");
15
- let __envive_ai_react_hooks_contexts_typesV3 = require("@envive-ai/react-hooks/contexts/typesV3");
16
15
  let __envive_ai_react_hooks_contexts_salesAgentContext = require("@envive-ai/react-hooks/contexts/salesAgentContext");
16
+ let __envive_ai_react_hooks_contexts_typesV3 = require("@envive-ai/react-hooks/contexts/typesV3");
17
17
  let __envive_ai_react_hooks_hooks_ChatToggle = require("@envive-ai/react-hooks/hooks/ChatToggle");
18
- let __envive_ai_react_toolkit_v3_Tokens = require("@envive-ai/react-toolkit-v3/Tokens");
19
18
  let __envive_ai_react_hooks_application_models = require("@envive-ai/react-hooks/application/models");
20
- let __envive_ai_react_hooks_hooks_WidgetInteraction_types = require("@envive-ai/react-hooks/hooks/WidgetInteraction/types");
21
19
  let __envive_ai_react_hooks_hooks_WidgetInteraction = require("@envive-ai/react-hooks/hooks/WidgetInteraction");
20
+ let __envive_ai_react_hooks_hooks_WidgetInteraction_types = require("@envive-ai/react-hooks/hooks/WidgetInteraction/types");
21
+ let __envive_ai_react_toolkit_v3_Tokens = require("@envive-ai/react-toolkit-v3/Tokens");
22
22
  let __envive_ai_react_toolkit_v3_FloatingButton = require("@envive-ai/react-toolkit-v3/FloatingButton");
23
23
 
24
24
  //#region src/widgets/FloatingChatWidget/FloatingChatWidget.tsx
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime14 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime16 from "react/jsx-runtime";
2
2
 
3
3
  //#region src/widgets/FloatingChatWidget/FloatingChatWidget.d.ts
4
4
  interface FloatingChatWidgetProps {
@@ -9,7 +9,7 @@ declare const FloatingChatWidget: {
9
9
  ({
10
10
  previewButtonOnly,
11
11
  previewChatAlwaysOpen
12
- }?: FloatingChatWidgetProps): react_jsx_runtime14.JSX.Element;
12
+ }?: FloatingChatWidgetProps): react_jsx_runtime16.JSX.Element;
13
13
  displayName: string;
14
14
  };
15
15
  //#endregion
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime10 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime18 from "react/jsx-runtime";
2
2
 
3
3
  //#region src/widgets/FloatingChatWidget/FloatingChatWidget.d.ts
4
4
  interface FloatingChatWidgetProps {
@@ -9,7 +9,7 @@ declare const FloatingChatWidget: {
9
9
  ({
10
10
  previewButtonOnly,
11
11
  previewChatAlwaysOpen
12
- }?: FloatingChatWidgetProps): react_jsx_runtime10.JSX.Element;
12
+ }?: FloatingChatWidgetProps): react_jsx_runtime18.JSX.Element;
13
13
  displayName: string;
14
14
  };
15
15
  //#endregion
@@ -11,13 +11,13 @@ import { useAutoPopup } from "./hooks/useAutoPopup.js";
11
11
  import { Suspense, lazy, useEffect, useMemo, useRef, useState } from "react";
12
12
  import { EnviveMetricsEventName, SpiffyMetricsEventName, useAmplitude } from "@envive-ai/react-hooks/contexts/amplitudeContext";
13
13
  import { Fragment, jsx, jsxs } from "react/jsx-runtime";
14
- import { WidgetTypeV3 } from "@envive-ai/react-hooks/contexts/typesV3";
15
14
  import { useSalesAgent } from "@envive-ai/react-hooks/contexts/salesAgentContext";
15
+ import { WidgetTypeV3 } from "@envive-ai/react-hooks/contexts/typesV3";
16
16
  import { useChatToggle } from "@envive-ai/react-hooks/hooks/ChatToggle";
17
- import { Theme } from "@envive-ai/react-toolkit-v3/Tokens";
18
17
  import { ChatElementDisplayLocationV3 } from "@envive-ai/react-hooks/application/models";
19
- import { WidgetInteractionComponent, WidgetInteractionType } from "@envive-ai/react-hooks/hooks/WidgetInteraction/types";
20
18
  import { useWidgetInteraction } from "@envive-ai/react-hooks/hooks/WidgetInteraction";
19
+ import { WidgetInteractionComponent, WidgetInteractionType } from "@envive-ai/react-hooks/hooks/WidgetInteraction/types";
20
+ import { Theme } from "@envive-ai/react-toolkit-v3/Tokens";
21
21
  import { FloatingButton } from "@envive-ai/react-toolkit-v3/FloatingButton";
22
22
 
23
23
  //#region src/widgets/FloatingChatWidget/FloatingChatWidget.tsx
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime11 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime0 from "react/jsx-runtime";
2
2
 
3
3
  //#region src/widgets/FullPageSalesAgentWidget/FullPageSalesAgentWidget.d.ts
4
4
 
@@ -8,7 +8,7 @@ interface FullPageSalesAgentBaseWidgetProps {
8
8
  declare const FullPageSalesAgentWidget: {
9
9
  ({
10
10
  widgetConfigId
11
- }: FullPageSalesAgentBaseWidgetProps): react_jsx_runtime11.JSX.Element;
11
+ }: FullPageSalesAgentBaseWidgetProps): react_jsx_runtime0.JSX.Element;
12
12
  displayName: string;
13
13
  };
14
14
  //#endregion
@@ -5,13 +5,16 @@ const require_functions = require('../utils/functions.cjs');
5
5
  let react = require("react");
6
6
  let __envive_ai_react_hooks_contexts_amplitudeContext = require("@envive-ai/react-hooks/contexts/amplitudeContext");
7
7
  let react_jsx_runtime = require("react/jsx-runtime");
8
- let __envive_ai_react_hooks_contexts_typesV3 = require("@envive-ai/react-hooks/contexts/typesV3");
9
8
  let __envive_ai_react_hooks_contexts_salesAgentContext = require("@envive-ai/react-hooks/contexts/salesAgentContext");
9
+ let __envive_ai_react_hooks_contexts_typesV3 = require("@envive-ai/react-hooks/contexts/typesV3");
10
10
  let __envive_ai_react_hooks_hooks_ChatToggle = require("@envive-ai/react-hooks/hooks/ChatToggle");
11
- let __envive_ai_react_toolkit_v3_Tokens = require("@envive-ai/react-toolkit-v3/Tokens");
12
11
  let __envive_ai_react_hooks_application_models = require("@envive-ai/react-hooks/application/models");
13
- let __envive_ai_react_toolkit_v3_PromptButton_types = require("@envive-ai/react-toolkit-v3/PromptButton/types");
12
+ let __envive_ai_react_hooks_hooks_WidgetInteraction = require("@envive-ai/react-hooks/hooks/WidgetInteraction");
13
+ let __envive_ai_react_hooks_hooks_WidgetInteraction_types = require("@envive-ai/react-hooks/hooks/WidgetInteraction/types");
14
+ let __envive_ai_react_toolkit_v3_PromptCarousel = require("@envive-ai/react-toolkit-v3/PromptCarousel");
15
+ let __envive_ai_react_toolkit_v3_Tokens = require("@envive-ai/react-toolkit-v3/Tokens");
14
16
  let __envive_ai_react_toolkit_v3_ProductCard = require("@envive-ai/react-toolkit-v3/ProductCard");
17
+ let __envive_ai_react_toolkit_v3_PromptButton_types = require("@envive-ai/react-toolkit-v3/PromptButton/types");
15
18
 
16
19
  //#region src/widgets/ProductCardWidget/ProductCardWidget.tsx
17
20
  const mockPrompts = [
@@ -41,6 +44,11 @@ const ProductCardWidgetHandler = (props) => {
41
44
  const fallbackColor = productCardWidgetConfig?.fallbackColor;
42
45
  const imageSrc = productCardWidgetConfig?.imageSrc || "";
43
46
  const { trackEvent } = (0, __envive_ai_react_hooks_contexts_amplitudeContext.useAmplitude)();
47
+ const { trackWidgetInteraction } = (0, __envive_ai_react_hooks_hooks_WidgetInteraction.useWidgetInteraction)();
48
+ const { onClick: onSuggestionClick, onDrag, onHover, onMouseDown, onMouseUp, onTouchStart, onTouchEnd } = (0, __envive_ai_react_toolkit_v3_PromptCarousel.usePromptCarouselAnalytics)(__envive_ai_react_hooks_hooks_WidgetInteraction_types.WidgetInteractionComponent.IMAGE_PROMPT_CARD, (text) => {
49
+ const rawValues = hardcopyContent?.rawValues;
50
+ return require_functions.getStringIdForText(rawValues, text);
51
+ });
44
52
  const { widgetConfigId } = props;
45
53
  (0, react.useEffect)(() => {
46
54
  trackEvent({
@@ -68,6 +76,7 @@ const ProductCardWidgetHandler = (props) => {
68
76
  displayLocation: __envive_ai_react_hooks_application_models.ChatElementDisplayLocationV3.PRODUCT_CARD_PROMPT_BUTTON
69
77
  });
70
78
  openChat(__envive_ai_react_hooks_application_models.ChatElementDisplayLocationV3.PRODUCT_CARD_PROMPT_BUTTON);
79
+ onSuggestionClick(text);
71
80
  }, [
72
81
  hardcopyContent,
73
82
  onTypedMessageSubmitted,
@@ -76,6 +85,13 @@ const ProductCardWidgetHandler = (props) => {
76
85
  ]);
77
86
  const handleInputClick = (0, react.useCallback)(() => {
78
87
  openChat(__envive_ai_react_hooks_application_models.ChatElementDisplayLocationV3.PRODUCT_CARD_TEXT_FIELD);
88
+ trackWidgetInteraction({
89
+ eventName: __envive_ai_react_hooks_contexts_amplitudeContext.EnviveMetricsEventName.WidgetInteraction,
90
+ trigger: {
91
+ widget: __envive_ai_react_hooks_hooks_WidgetInteraction_types.WidgetInteractionComponent.IMAGE_PROMPT_CARD,
92
+ widget_interaction: __envive_ai_react_hooks_hooks_WidgetInteraction_types.WidgetInteractionType.QUERY_INPUT_CLICKED
93
+ }
94
+ });
79
95
  }, [openChat]);
80
96
  return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(__envive_ai_react_toolkit_v3_ProductCard.ProductCard, {
81
97
  theme: __envive_ai_react_toolkit_v3_Tokens.Theme.GLOBAL_CUSTOM,
@@ -91,6 +107,12 @@ const ProductCardWidgetHandler = (props) => {
91
107
  textTypingDuration: 800,
92
108
  textTransition: 2e3,
93
109
  onSelect: handleSelect,
110
+ onDrag,
111
+ onHover,
112
+ onMouseDown,
113
+ onMouseUp,
114
+ onTouchStart,
115
+ onTouchEnd,
94
116
  onInputClick: handleInputClick
95
117
  });
96
118
  };