@tylertech/forge-ai-react 0.6.1 → 0.7.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.
@@ -21,6 +21,9 @@ export interface ForgeAiActionsToolbarProps extends Pick<
21
21
  /** undefined */
22
22
  enableReactions?: boolean;
23
23
 
24
+ /** undefined */
25
+ feedbackType?: ForgeAiActionsToolbarElement["feedbackType"];
26
+
24
27
  /** A space-separated list of the classes of the element. Classes allows CSS and JavaScript to select and access specific elements via the class selectors or functions like the method `Document.getElementsByClassName()`. */
25
28
  className?: string;
26
29
 
@@ -4,7 +4,7 @@ import { useEventListener } from "./react-utils.js";
4
4
 
5
5
  export const ForgeAiActionsToolbar = forwardRef((props, forwardedRef) => {
6
6
  const ref = useRef(null);
7
- const { enableReactions, ...filteredProps } = props;
7
+ const { enableReactions, feedbackType, ...filteredProps } = props;
8
8
 
9
9
  /** Event listeners - run once */
10
10
  useEventListener(
@@ -30,6 +30,7 @@ export const ForgeAiActionsToolbar = forwardRef((props, forwardedRef) => {
30
30
  }
31
31
  },
32
32
  ...filteredProps,
33
+ "feedback-type": props.feedbackType || props["feedback-type"],
33
34
  class: props.className,
34
35
  exportparts: props.exportparts,
35
36
  for: props.htmlFor,
@@ -0,0 +1,80 @@
1
+ import React from "react";
2
+ import { ForgeAiAssistantResponse as ForgeAiAssistantResponseElement } from "@tylertech/forge-ai/ai-assistant-response";
3
+
4
+ export type { ForgeAiAssistantResponseElement };
5
+
6
+ export interface ForgeAiAssistantResponseProps extends Pick<
7
+ React.AllHTMLAttributes<HTMLElement>,
8
+ | "children"
9
+ | "dir"
10
+ | "hidden"
11
+ | "id"
12
+ | "lang"
13
+ | "slot"
14
+ | "style"
15
+ | "title"
16
+ | "translate"
17
+ | "onClick"
18
+ | "onFocus"
19
+ | "onBlur"
20
+ > {
21
+ /** undefined */
22
+ enableReactions?: boolean;
23
+
24
+ /** undefined */
25
+ debugMode?: boolean;
26
+
27
+ /** A space-separated list of the classes of the element. Classes allows CSS and JavaScript to select and access specific elements via the class selectors or functions like the method `Document.getElementsByClassName()`. */
28
+ className?: string;
29
+
30
+ /** Contains a space-separated list of the part names of the element that should be exposed on the host element. */
31
+ exportparts?: string;
32
+
33
+ /** Used for labels to link them with their inputs (using input id). */
34
+ htmlFor?: string;
35
+
36
+ /** Used to help React identify which items have changed, are added, or are removed within a list. */
37
+ key?: number | string;
38
+
39
+ /** Contains a space-separated list of the part names of the element. Part names allows CSS to select and style specific elements in a shadow tree via the ::part pseudo-element. */
40
+ part?: string;
41
+
42
+ /** A mutable ref object whose `.current` property is initialized to the passed argument (`initialValue`). The returned object will persist for the full lifetime of the component. */
43
+ ref?: any;
44
+
45
+ /** Allows developers to make HTML elements focusable, allow or prevent them from being sequentially focusable (usually with the `Tab` key, hence the name) and determine their relative ordering for sequential focus navigation. */
46
+ tabIndex?: number;
47
+
48
+ /** Fired when copy action is clicked */
49
+ onForgeAiAssistantResponseCopy?: (
50
+ event: CustomEvent<CustomEvent<{ responseId: string }>>,
51
+ ) => void;
52
+
53
+ /** Fired when refresh action is clicked */
54
+ onForgeAiAssistantResponseRefresh?: (
55
+ event: CustomEvent<CustomEvent<{ responseId: string }>>,
56
+ ) => void;
57
+
58
+ /** Fired when thumbs up is clicked */
59
+ onForgeAiAssistantResponseThumbsUp?: (
60
+ event: CustomEvent<CustomEvent<ForgeAiAssistantResponseFeedbackEventData>>,
61
+ ) => void;
62
+
63
+ /** Fired when thumbs down is clicked */
64
+ onForgeAiAssistantResponseThumbsDown?: (
65
+ event: CustomEvent<CustomEvent<ForgeAiAssistantResponseFeedbackEventData>>,
66
+ ) => void;
67
+ }
68
+
69
+ /**
70
+ * Renders a complete assistant response with interleaved text chunks and tool calls.
71
+ * ---
72
+ *
73
+ *
74
+ * ### **Events:**
75
+ * - **forge-ai-assistant-response-copy** - Fired when copy action is clicked
76
+ * - **forge-ai-assistant-response-refresh** - Fired when refresh action is clicked
77
+ * - **forge-ai-assistant-response-thumbs-up** - Fired when thumbs up is clicked
78
+ * - **forge-ai-assistant-response-thumbs-down** - Fired when thumbs down is clicked
79
+ */
80
+ export const ForgeAiAssistantResponse: React.ForwardRefExoticComponent<ForgeAiAssistantResponseProps>;
@@ -0,0 +1,54 @@
1
+ import React, { forwardRef, useRef, useEffect } from "react";
2
+ import "@tylertech/forge-ai/ai-assistant-response";
3
+ import { useEventListener } from "./react-utils.js";
4
+
5
+ export const ForgeAiAssistantResponse = forwardRef((props, forwardedRef) => {
6
+ const ref = useRef(null);
7
+ const { enableReactions, debugMode, ...filteredProps } = props;
8
+
9
+ /** Event listeners - run once */
10
+ useEventListener(
11
+ ref,
12
+ "forge-ai-assistant-response-copy",
13
+ props.onForgeAiAssistantResponseCopy,
14
+ );
15
+ useEventListener(
16
+ ref,
17
+ "forge-ai-assistant-response-refresh",
18
+ props.onForgeAiAssistantResponseRefresh,
19
+ );
20
+ useEventListener(
21
+ ref,
22
+ "forge-ai-assistant-response-thumbs-up",
23
+ props.onForgeAiAssistantResponseThumbsUp,
24
+ );
25
+ useEventListener(
26
+ ref,
27
+ "forge-ai-assistant-response-thumbs-down",
28
+ props.onForgeAiAssistantResponseThumbsDown,
29
+ );
30
+
31
+ return React.createElement(
32
+ "forge-ai-assistant-response",
33
+ {
34
+ ref: (node) => {
35
+ ref.current = node;
36
+ if (typeof forwardedRef === "function") {
37
+ forwardedRef(node);
38
+ } else if (forwardedRef) {
39
+ forwardedRef.current = node;
40
+ }
41
+ },
42
+ ...filteredProps,
43
+ class: props.className,
44
+ exportparts: props.exportparts,
45
+ for: props.htmlFor,
46
+ part: props.part,
47
+ tabindex: props.tabIndex,
48
+ "enable-reactions": props.enableReactions ? true : undefined,
49
+ "debug-mode": props.debugMode ? true : undefined,
50
+ style: { ...props.style },
51
+ },
52
+ props.children,
53
+ );
54
+ });
@@ -39,6 +39,9 @@ export interface ForgeAiChatbotProps extends Pick<
39
39
  /** undefined */
40
40
  voiceInput?: ForgeAiChatbotElement["voiceInput"];
41
41
 
42
+ /** undefined */
43
+ debugCommand?: ForgeAiChatbotElement["debugCommand"];
44
+
42
45
  /** undefined */
43
46
  placeholder?: ForgeAiChatbotElement["placeholder"];
44
47
 
@@ -51,6 +54,9 @@ export interface ForgeAiChatbotProps extends Pick<
51
54
  /** Controls the heading level for the title content (default: 2) */
52
55
  headingLevel?: ForgeAiChatbotElement["headingLevel"];
53
56
 
57
+ /** The disclaimer text to display below the prompt. Set to empty string, null, or undefined to hide. */
58
+ disclaimerText?: ForgeAiChatbotElement["disclaimerText"];
59
+
54
60
  /** A space-separated list of the classes of the element. Classes allows CSS and JavaScript to select and access specific elements via the class selectors or functions like the method `Document.getElementsByClassName()`. */
55
61
  className?: string;
56
62
 
@@ -111,6 +117,11 @@ export interface ForgeAiChatbotProps extends Pick<
111
117
 
112
118
  /** Fired when header info option is selected */
113
119
  onForgeAiChatbotInfo?: (event: CustomEvent<CustomEvent<void>>) => void;
120
+
121
+ /** Fired when user provides feedback on a response (thumbs up/down) */
122
+ onForgeAiChatbotResponseFeedback?: (
123
+ event: CustomEvent<CustomEvent<ForgeAiChatbotResponseFeedbackEventData>>,
124
+ ) => void;
114
125
  }
115
126
 
116
127
  /**
@@ -129,6 +140,7 @@ export interface ForgeAiChatbotProps extends Pick<
129
140
  * - **forge-ai-chatbot-minimize** - Fired when header minimize button is clicked
130
141
  * - **forge-ai-chatbot-clear** - Fired when header clear option is selected (cancelable, prevents clearMessages() if default prevented)
131
142
  * - **forge-ai-chatbot-info** - Fired when header info option is selected
143
+ * - **forge-ai-chatbot-response-feedback** - Fired when user provides feedback on a response (thumbs up/down)
132
144
  *
133
145
  * ### **Methods:**
134
146
  * - **clearMessages(): _void_** - Clears all messages from the chat history.
@@ -12,10 +12,12 @@ export const ForgeAiChatbot = forwardRef((props, forwardedRef) => {
12
12
  debugMode,
13
13
  fileUpload,
14
14
  voiceInput,
15
+ debugCommand,
15
16
  placeholder,
16
17
  minimizeIcon,
17
18
  titleText,
18
19
  headingLevel,
20
+ disclaimerText,
19
21
  ...filteredProps
20
22
  } = props;
21
23
 
@@ -58,6 +60,11 @@ export const ForgeAiChatbot = forwardRef((props, forwardedRef) => {
58
60
  );
59
61
  useEventListener(ref, "forge-ai-chatbot-clear", props.onForgeAiChatbotClear);
60
62
  useEventListener(ref, "forge-ai-chatbot-info", props.onForgeAiChatbotInfo);
63
+ useEventListener(
64
+ ref,
65
+ "forge-ai-chatbot-response-feedback",
66
+ props.onForgeAiChatbotResponseFeedback,
67
+ );
61
68
 
62
69
  return React.createElement(
63
70
  "forge-ai-chatbot",
@@ -73,10 +80,12 @@ export const ForgeAiChatbot = forwardRef((props, forwardedRef) => {
73
80
  ...filteredProps,
74
81
  "file-upload": props.fileUpload || props["file-upload"],
75
82
  "voice-input": props.voiceInput || props["voice-input"],
83
+ "debug-command": props.debugCommand || props["debug-command"],
76
84
  placeholder: props.placeholder,
77
85
  "minimize-icon": props.minimizeIcon || props["minimize-icon"],
78
86
  "title-text": props.titleText || props["title-text"],
79
87
  "heading-level": props.headingLevel || props["heading-level"],
88
+ "disclaimer-text": props.disclaimerText || props["disclaimer-text"],
80
89
  class: props.className,
81
90
  exportparts: props.exportparts,
82
91
  for: props.htmlFor,
@@ -114,7 +114,9 @@ export interface ForgeAiPromptProps extends Pick<
114
114
  * - **forge-ai-prompt-debug-toggle** - Fired when the debug icon button is clicked.
115
115
  *
116
116
  * ### **Methods:**
117
- * - **closeSlashMenu(): _void_** - Closes the slash command menu
117
+ * - **addToHistory(message: _string_): _void_** - Adds a message to the input history for up/down arrow navigation.
118
+ * Use this when sending messages externally (e.g., from suggestions).
119
+ * - **closeSlashMenu(): _void_** - Closes the slash command menu
118
120
  * - **focus(): _void_** - Focuses the textarea element
119
121
  *
120
122
  * ### **Slots:**
@@ -18,15 +18,6 @@ export interface ForgeAiResponseMessageProps extends Pick<
18
18
  | "onFocus"
19
19
  | "onBlur"
20
20
  > {
21
- /** Whether the message is complete. Toolbar only shows when true. */
22
- complete?: boolean;
23
-
24
- /** undefined */
25
- enableReactions?: boolean;
26
-
27
- /** undefined */
28
- hasDebugData?: boolean;
29
-
30
21
  /** A space-separated list of the classes of the element. Classes allows CSS and JavaScript to select and access specific elements via the class selectors or functions like the method `Document.getElementsByClassName()`. */
31
22
  className?: string;
32
23
 
@@ -47,37 +38,11 @@ export interface ForgeAiResponseMessageProps extends Pick<
47
38
 
48
39
  /** Allows developers to make HTML elements focusable, allow or prevent them from being sequentially focusable (usually with the `Tab` key, hence the name) and determine their relative ordering for sequential focus navigation. */
49
40
  tabIndex?: number;
50
-
51
- /** Fired when copy action is clicked. */
52
- onForgeAiResponseMessageCopy?: (
53
- event: CustomEvent<CustomEvent<void>>,
54
- ) => void;
55
-
56
- /** Fired when refresh action is clicked. */
57
- onForgeAiResponseMessageRefresh?: (
58
- event: CustomEvent<CustomEvent<void>>,
59
- ) => void;
60
-
61
- /** Fired when thumbs-up action is clicked. */
62
- onForgeAiResponseMessageThumbsUp?: (
63
- event: CustomEvent<CustomEvent<void>>,
64
- ) => void;
65
-
66
- /** Fired when thumbs-down action is clicked. */
67
- onForgeAiResponseMessageThumbsDown?: (
68
- event: CustomEvent<CustomEvent<void>>,
69
- ) => void;
70
41
  }
71
42
 
72
43
  /**
73
- *
44
+ * A simple wrapper component for rendering assistant response message content.
74
45
  * ---
75
46
  *
76
- *
77
- * ### **Events:**
78
- * - **forge-ai-response-message-copy** - Fired when copy action is clicked.
79
- * - **forge-ai-response-message-refresh** - Fired when refresh action is clicked.
80
- * - **forge-ai-response-message-thumbs-up** - Fired when thumbs-up action is clicked.
81
- * - **forge-ai-response-message-thumbs-down** - Fired when thumbs-down action is clicked.
82
47
  */
83
48
  export const ForgeAiResponseMessage: React.ForwardRefExoticComponent<ForgeAiResponseMessageProps>;
@@ -1,53 +1,16 @@
1
- import React, { forwardRef, useRef, useEffect } from "react";
1
+ import React, { forwardRef } from "react";
2
2
  import "@tylertech/forge-ai/ai-response-message";
3
- import { useEventListener } from "./react-utils.js";
4
3
 
5
4
  export const ForgeAiResponseMessage = forwardRef((props, forwardedRef) => {
6
- const ref = useRef(null);
7
- const { complete, enableReactions, hasDebugData, ...filteredProps } = props;
8
-
9
- /** Event listeners - run once */
10
- useEventListener(
11
- ref,
12
- "forge-ai-response-message-copy",
13
- props.onForgeAiResponseMessageCopy,
14
- );
15
- useEventListener(
16
- ref,
17
- "forge-ai-response-message-refresh",
18
- props.onForgeAiResponseMessageRefresh,
19
- );
20
- useEventListener(
21
- ref,
22
- "forge-ai-response-message-thumbs-up",
23
- props.onForgeAiResponseMessageThumbsUp,
24
- );
25
- useEventListener(
26
- ref,
27
- "forge-ai-response-message-thumbs-down",
28
- props.onForgeAiResponseMessageThumbsDown,
29
- );
30
-
31
5
  return React.createElement(
32
6
  "forge-ai-response-message",
33
7
  {
34
- ref: (node) => {
35
- ref.current = node;
36
- if (typeof forwardedRef === "function") {
37
- forwardedRef(node);
38
- } else if (forwardedRef) {
39
- forwardedRef.current = node;
40
- }
41
- },
42
- ...filteredProps,
8
+ ...props,
43
9
  class: props.className,
44
10
  exportparts: props.exportparts,
45
11
  for: props.htmlFor,
46
12
  part: props.part,
47
13
  tabindex: props.tabIndex,
48
- complete: props.complete ? true : undefined,
49
- "enable-reactions": props.enableReactions ? true : undefined,
50
- "has-debug-data": props.hasDebugData ? true : undefined,
51
14
  style: { ...props.style },
52
15
  },
53
16
  props.children,
package/dist/index.d.ts CHANGED
@@ -1,14 +1,15 @@
1
1
  export * from "./ForgeAiActionsToolbar.js";
2
2
  export * from "./ForgeAiAgentInfo.js";
3
3
  export * from "./ForgeAiArtifact.js";
4
+ export * from "./ForgeAiAssistantResponse.js";
4
5
  export * from "./ForgeAiAttachment.js";
5
- export * from "./ForgeAiChainOfThought.js";
6
6
  export * from "./ForgeAiButton.js";
7
+ export * from "./ForgeAiChainOfThought.js";
7
8
  export * from "./ForgeAiChatHeader.js";
8
9
  export * from "./ForgeAiChatInterface.js";
10
+ export * from "./ForgeAiConfirmationPrompt.js";
9
11
  export * from "./ForgeAiChatbotToolCall.js";
10
12
  export * from "./ForgeAiChatbot.js";
11
- export * from "./ForgeAiConfirmationPrompt.js";
12
13
  export * from "./ForgeAiDialog.js";
13
14
  export * from "./ForgeAiDropdownMenuItemGroup.js";
14
15
  export * from "./ForgeAiDropdownMenuItem.js";
@@ -16,8 +17,8 @@ export * from "./ForgeAiDropdownMenuSeparator.js";
16
17
  export * from "./ForgeAiDropdownMenu.js";
17
18
  export * from "./ForgeAiEmbeddedChat.js";
18
19
  export * from "./ForgeAiEmptyState.js";
19
- export * from "./ForgeAiErrorMessage.js";
20
20
  export * from "./ForgeAiEventStreamViewer.js";
21
+ export * from "./ForgeAiErrorMessage.js";
21
22
  export * from "./ForgeAiFab.js";
22
23
  export * from "./ForgeAiFilePicker.js";
23
24
  export * from "./ForgeAiFloatingChat.js";
@@ -26,27 +27,27 @@ export * from "./ForgeAiIcon.js";
26
27
  export * from "./ForgeAiIconButton.js";
27
28
  export * from "./ForgeAiMessageThread.js";
28
29
  export * from "./ForgeAiModal.js";
29
- export * from "./ForgeAiPrompt.js";
30
30
  export * from "./ForgeAiReasoning.js";
31
- export * from "./ForgeAiResponseMessage.js";
32
- export * from "./ForgeAiSlashCommandMenu.js";
31
+ export * from "./ForgeAiPrompt.js";
33
32
  export * from "./ForgeAiReasoningHeader.js";
33
+ export * from "./ForgeAiResponseMessage.js";
34
34
  export * from "./ForgeAiSidebar.js";
35
- export * from "./ForgeAiSpinner.js";
36
35
  export * from "./ForgeAiSidebarChat.js";
37
36
  export * from "./ForgeAiSuggestions.js";
37
+ export * from "./ForgeAiSpinner.js";
38
+ export * from "./ForgeAiSlashCommandMenu.js";
38
39
  export * from "./ForgeAiThinkingIndicator.js";
39
- export * from "./ForgeAiThreads.js";
40
40
  export * from "./ForgeAiUserMessage.js";
41
+ export * from "./ForgeAiThreads.js";
41
42
  export * from "./ForgeAiVoiceInput.js";
42
- export * from "./ForgeAiThoughtDetail.js";
43
43
  export * from "./ForgeAiThoughtBase.js";
44
+ export * from "./ForgeAiThoughtDetail.js";
44
45
  export * from "./ForgeAiThoughtImage.js";
45
- export * from "./ForgeAiThoughtSearchResult.js";
46
46
  export * from "./ForgeAiReasoningContent.js";
47
+ export * from "./ForgeAiThoughtSearchResult.js";
47
48
  export * from "./ForgePromptButton.js";
48
- export * from "./ForgeAiPopover.js";
49
49
  export * from "./ForgeAiOverlay.js";
50
- export * from "./ForgeAiTooltip.js";
50
+ export * from "./ForgeAiPopover.js";
51
51
  export * from "./ForgeAiToolDataTable.js";
52
+ export * from "./ForgeAiTooltip.js";
52
53
  export * from "./ForgeAiPaginator.js";
package/dist/index.js CHANGED
@@ -1,14 +1,15 @@
1
1
  export * from "./ForgeAiActionsToolbar.js";
2
2
  export * from "./ForgeAiAgentInfo.js";
3
3
  export * from "./ForgeAiArtifact.js";
4
+ export * from "./ForgeAiAssistantResponse.js";
4
5
  export * from "./ForgeAiAttachment.js";
5
- export * from "./ForgeAiChainOfThought.js";
6
6
  export * from "./ForgeAiButton.js";
7
+ export * from "./ForgeAiChainOfThought.js";
7
8
  export * from "./ForgeAiChatHeader.js";
8
9
  export * from "./ForgeAiChatInterface.js";
10
+ export * from "./ForgeAiConfirmationPrompt.js";
9
11
  export * from "./ForgeAiChatbotToolCall.js";
10
12
  export * from "./ForgeAiChatbot.js";
11
- export * from "./ForgeAiConfirmationPrompt.js";
12
13
  export * from "./ForgeAiDialog.js";
13
14
  export * from "./ForgeAiDropdownMenuItemGroup.js";
14
15
  export * from "./ForgeAiDropdownMenuItem.js";
@@ -16,8 +17,8 @@ export * from "./ForgeAiDropdownMenuSeparator.js";
16
17
  export * from "./ForgeAiDropdownMenu.js";
17
18
  export * from "./ForgeAiEmbeddedChat.js";
18
19
  export * from "./ForgeAiEmptyState.js";
19
- export * from "./ForgeAiErrorMessage.js";
20
20
  export * from "./ForgeAiEventStreamViewer.js";
21
+ export * from "./ForgeAiErrorMessage.js";
21
22
  export * from "./ForgeAiFab.js";
22
23
  export * from "./ForgeAiFilePicker.js";
23
24
  export * from "./ForgeAiFloatingChat.js";
@@ -26,27 +27,27 @@ export * from "./ForgeAiIcon.js";
26
27
  export * from "./ForgeAiIconButton.js";
27
28
  export * from "./ForgeAiMessageThread.js";
28
29
  export * from "./ForgeAiModal.js";
29
- export * from "./ForgeAiPrompt.js";
30
30
  export * from "./ForgeAiReasoning.js";
31
- export * from "./ForgeAiResponseMessage.js";
32
- export * from "./ForgeAiSlashCommandMenu.js";
31
+ export * from "./ForgeAiPrompt.js";
33
32
  export * from "./ForgeAiReasoningHeader.js";
33
+ export * from "./ForgeAiResponseMessage.js";
34
34
  export * from "./ForgeAiSidebar.js";
35
- export * from "./ForgeAiSpinner.js";
36
35
  export * from "./ForgeAiSidebarChat.js";
37
36
  export * from "./ForgeAiSuggestions.js";
37
+ export * from "./ForgeAiSpinner.js";
38
+ export * from "./ForgeAiSlashCommandMenu.js";
38
39
  export * from "./ForgeAiThinkingIndicator.js";
39
- export * from "./ForgeAiThreads.js";
40
40
  export * from "./ForgeAiUserMessage.js";
41
+ export * from "./ForgeAiThreads.js";
41
42
  export * from "./ForgeAiVoiceInput.js";
42
- export * from "./ForgeAiThoughtDetail.js";
43
43
  export * from "./ForgeAiThoughtBase.js";
44
+ export * from "./ForgeAiThoughtDetail.js";
44
45
  export * from "./ForgeAiThoughtImage.js";
45
- export * from "./ForgeAiThoughtSearchResult.js";
46
46
  export * from "./ForgeAiReasoningContent.js";
47
+ export * from "./ForgeAiThoughtSearchResult.js";
47
48
  export * from "./ForgePromptButton.js";
48
- export * from "./ForgeAiPopover.js";
49
49
  export * from "./ForgeAiOverlay.js";
50
- export * from "./ForgeAiTooltip.js";
50
+ export * from "./ForgeAiPopover.js";
51
51
  export * from "./ForgeAiToolDataTable.js";
52
+ export * from "./ForgeAiTooltip.js";
52
53
  export * from "./ForgeAiPaginator.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tylertech/forge-ai-react",
3
- "version": "0.6.1",
3
+ "version": "0.7.1",
4
4
  "description": "A React adapter for Tyler Forge™ AI Web Components.",
5
5
  "repository": "tyler-technologies-oss/forge-ai",
6
6
  "author": "Tyler Technologies, Inc.",
@@ -16,7 +16,7 @@
16
16
  },
17
17
  "peerDependencies": {
18
18
  "react": ">=17.0.0",
19
- "@tylertech/forge-ai": "^0.6.1"
19
+ "@tylertech/forge-ai": "^0.7.2"
20
20
  },
21
21
  "devDependencies": {
22
22
  "@repo/prettier-config": "",
@@ -44,7 +44,7 @@
44
44
  "typescript": "~5.8.3",
45
45
  "vite": "7.3.0",
46
46
  "vite-tsconfig-paths": "6.0.3",
47
- "@tylertech/forge-ai": "^0.6.1"
47
+ "@tylertech/forge-ai": "^0.7.2"
48
48
  },
49
49
  "scripts": {
50
50
  "predev": "pnpm run build",