@tylertech/forge-ai-react 0.4.1 → 0.5.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/dist/ForgeAiActionsToolbar.d.ts +24 -16
- package/dist/ForgeAiActionsToolbar.js +8 -1
- package/dist/ForgeAiAgentInfo.d.ts +51 -0
- package/dist/ForgeAiAgentInfo.js +33 -0
- package/dist/ForgeAiArtifact.d.ts +15 -16
- package/dist/ForgeAiAttachment.d.ts +77 -0
- package/dist/ForgeAiAttachment.js +43 -0
- package/dist/ForgeAiButton.d.ts +15 -16
- package/dist/ForgeAiChainOfThought.d.ts +15 -16
- package/dist/ForgeAiChatHeader.d.ts +37 -30
- package/dist/ForgeAiChatHeader.js +19 -11
- package/dist/ForgeAiChatInterface.d.ts +16 -19
- package/dist/ForgeAiChatbot.d.ts +144 -0
- package/dist/ForgeAiChatbot.js +92 -0
- package/dist/ForgeAiChatbotToolCall.d.ts +57 -0
- package/dist/ForgeAiChatbotToolCall.js +36 -0
- package/dist/ForgeAiConfirmationPrompt.d.ts +74 -0
- package/dist/ForgeAiConfirmationPrompt.js +46 -0
- package/dist/ForgeAiDialog.d.ts +15 -16
- package/dist/ForgeAiDropdownMenu.d.ts +19 -16
- package/dist/ForgeAiDropdownMenu.js +10 -2
- package/dist/ForgeAiDropdownMenuItem.d.ts +15 -16
- package/dist/ForgeAiDropdownMenuItemGroup.d.ts +15 -16
- package/dist/ForgeAiDropdownMenuSeparator.d.ts +15 -16
- package/dist/ForgeAiEmbeddedChat.d.ts +33 -20
- package/dist/ForgeAiEmbeddedChat.js +18 -2
- package/dist/ForgeAiEmptyState.d.ts +19 -18
- package/dist/ForgeAiErrorMessage.d.ts +52 -0
- package/dist/ForgeAiErrorMessage.js +18 -0
- package/dist/ForgeAiFab.d.ts +15 -16
- package/dist/ForgeAiFilePicker.d.ts +32 -20
- package/dist/ForgeAiFilePicker.js +19 -2
- package/dist/ForgeAiFloatingChat.d.ts +18 -30
- package/dist/ForgeAiGradientContainer.d.ts +15 -16
- package/dist/ForgeAiIcon.d.ts +15 -16
- package/dist/ForgeAiMessageThread.d.ts +87 -0
- package/dist/ForgeAiMessageThread.js +55 -0
- package/dist/ForgeAiModal.d.ts +19 -16
- package/dist/ForgeAiOverlay.d.ts +23 -16
- package/dist/ForgeAiOverlay.js +12 -1
- package/dist/ForgeAiPopover.d.ts +23 -16
- package/dist/ForgeAiPopover.js +12 -1
- package/dist/ForgeAiPrompt.d.ts +15 -16
- package/dist/ForgeAiReasoning.d.ts +15 -16
- package/dist/ForgeAiReasoningContent.d.ts +15 -16
- package/dist/ForgeAiReasoningHeader.d.ts +15 -16
- package/dist/ForgeAiResponseMessage.d.ts +43 -20
- package/dist/ForgeAiResponseMessage.js +21 -3
- package/dist/ForgeAiSidebar.d.ts +15 -16
- package/dist/ForgeAiSidebarChat.d.ts +18 -30
- package/dist/ForgeAiSpinner.d.ts +55 -0
- package/dist/ForgeAiSpinner.js +21 -0
- package/dist/ForgeAiSuggestions.d.ts +15 -16
- package/dist/ForgeAiThinkingIndicator.d.ts +15 -16
- package/dist/ForgeAiThoughtBase.d.ts +15 -16
- package/dist/ForgeAiThoughtDetail.d.ts +15 -16
- package/dist/ForgeAiThoughtImage.d.ts +15 -16
- package/dist/ForgeAiThoughtSearchResult.d.ts +15 -16
- package/dist/ForgeAiThreads.d.ts +18 -16
- package/dist/ForgeAiTooltip.d.ts +15 -16
- package/dist/ForgeAiUserMessage.d.ts +15 -16
- package/dist/ForgeAiVoiceInput.d.ts +15 -16
- package/dist/ForgePromptButton.d.ts +15 -16
- package/dist/index.d.ts +12 -4
- package/dist/index.js +12 -4
- package/package.json +9 -9
package/dist/index.d.ts
CHANGED
|
@@ -1,21 +1,28 @@
|
|
|
1
|
-
export * from "./ForgeAiArtifact.js";
|
|
2
1
|
export * from "./ForgeAiActionsToolbar.js";
|
|
2
|
+
export * from "./ForgeAiAgentInfo.js";
|
|
3
|
+
export * from "./ForgeAiArtifact.js";
|
|
4
|
+
export * from "./ForgeAiAttachment.js";
|
|
3
5
|
export * from "./ForgeAiButton.js";
|
|
4
|
-
export * from "./ForgeAiChatHeader.js";
|
|
5
6
|
export * from "./ForgeAiChainOfThought.js";
|
|
6
|
-
export * from "./
|
|
7
|
+
export * from "./ForgeAiChatHeader.js";
|
|
7
8
|
export * from "./ForgeAiChatInterface.js";
|
|
9
|
+
export * from "./ForgeAiChatbotToolCall.js";
|
|
10
|
+
export * from "./ForgeAiChatbot.js";
|
|
11
|
+
export * from "./ForgeAiConfirmationPrompt.js";
|
|
12
|
+
export * from "./ForgeAiDialog.js";
|
|
8
13
|
export * from "./ForgeAiDropdownMenuItemGroup.js";
|
|
9
14
|
export * from "./ForgeAiDropdownMenuItem.js";
|
|
10
15
|
export * from "./ForgeAiDropdownMenuSeparator.js";
|
|
11
16
|
export * from "./ForgeAiDropdownMenu.js";
|
|
12
17
|
export * from "./ForgeAiEmbeddedChat.js";
|
|
13
18
|
export * from "./ForgeAiEmptyState.js";
|
|
19
|
+
export * from "./ForgeAiErrorMessage.js";
|
|
14
20
|
export * from "./ForgeAiFab.js";
|
|
15
21
|
export * from "./ForgeAiFilePicker.js";
|
|
16
22
|
export * from "./ForgeAiFloatingChat.js";
|
|
17
23
|
export * from "./ForgeAiGradientContainer.js";
|
|
18
24
|
export * from "./ForgeAiIcon.js";
|
|
25
|
+
export * from "./ForgeAiMessageThread.js";
|
|
19
26
|
export * from "./ForgeAiModal.js";
|
|
20
27
|
export * from "./ForgeAiPrompt.js";
|
|
21
28
|
export * from "./ForgeAiReasoning.js";
|
|
@@ -23,6 +30,7 @@ export * from "./ForgeAiReasoningHeader.js";
|
|
|
23
30
|
export * from "./ForgeAiResponseMessage.js";
|
|
24
31
|
export * from "./ForgeAiSidebar.js";
|
|
25
32
|
export * from "./ForgeAiSidebarChat.js";
|
|
33
|
+
export * from "./ForgeAiSpinner.js";
|
|
26
34
|
export * from "./ForgeAiSuggestions.js";
|
|
27
35
|
export * from "./ForgeAiThinkingIndicator.js";
|
|
28
36
|
export * from "./ForgeAiThreads.js";
|
|
@@ -35,5 +43,5 @@ export * from "./ForgeAiThoughtSearchResult.js";
|
|
|
35
43
|
export * from "./ForgePromptButton.js";
|
|
36
44
|
export * from "./ForgeAiReasoningContent.js";
|
|
37
45
|
export * from "./ForgeAiOverlay.js";
|
|
38
|
-
export * from "./ForgeAiPopover.js";
|
|
39
46
|
export * from "./ForgeAiTooltip.js";
|
|
47
|
+
export * from "./ForgeAiPopover.js";
|
package/dist/index.js
CHANGED
|
@@ -1,21 +1,28 @@
|
|
|
1
|
-
export * from "./ForgeAiArtifact.js";
|
|
2
1
|
export * from "./ForgeAiActionsToolbar.js";
|
|
2
|
+
export * from "./ForgeAiAgentInfo.js";
|
|
3
|
+
export * from "./ForgeAiArtifact.js";
|
|
4
|
+
export * from "./ForgeAiAttachment.js";
|
|
3
5
|
export * from "./ForgeAiButton.js";
|
|
4
|
-
export * from "./ForgeAiChatHeader.js";
|
|
5
6
|
export * from "./ForgeAiChainOfThought.js";
|
|
6
|
-
export * from "./
|
|
7
|
+
export * from "./ForgeAiChatHeader.js";
|
|
7
8
|
export * from "./ForgeAiChatInterface.js";
|
|
9
|
+
export * from "./ForgeAiChatbotToolCall.js";
|
|
10
|
+
export * from "./ForgeAiChatbot.js";
|
|
11
|
+
export * from "./ForgeAiConfirmationPrompt.js";
|
|
12
|
+
export * from "./ForgeAiDialog.js";
|
|
8
13
|
export * from "./ForgeAiDropdownMenuItemGroup.js";
|
|
9
14
|
export * from "./ForgeAiDropdownMenuItem.js";
|
|
10
15
|
export * from "./ForgeAiDropdownMenuSeparator.js";
|
|
11
16
|
export * from "./ForgeAiDropdownMenu.js";
|
|
12
17
|
export * from "./ForgeAiEmbeddedChat.js";
|
|
13
18
|
export * from "./ForgeAiEmptyState.js";
|
|
19
|
+
export * from "./ForgeAiErrorMessage.js";
|
|
14
20
|
export * from "./ForgeAiFab.js";
|
|
15
21
|
export * from "./ForgeAiFilePicker.js";
|
|
16
22
|
export * from "./ForgeAiFloatingChat.js";
|
|
17
23
|
export * from "./ForgeAiGradientContainer.js";
|
|
18
24
|
export * from "./ForgeAiIcon.js";
|
|
25
|
+
export * from "./ForgeAiMessageThread.js";
|
|
19
26
|
export * from "./ForgeAiModal.js";
|
|
20
27
|
export * from "./ForgeAiPrompt.js";
|
|
21
28
|
export * from "./ForgeAiReasoning.js";
|
|
@@ -23,6 +30,7 @@ export * from "./ForgeAiReasoningHeader.js";
|
|
|
23
30
|
export * from "./ForgeAiResponseMessage.js";
|
|
24
31
|
export * from "./ForgeAiSidebar.js";
|
|
25
32
|
export * from "./ForgeAiSidebarChat.js";
|
|
33
|
+
export * from "./ForgeAiSpinner.js";
|
|
26
34
|
export * from "./ForgeAiSuggestions.js";
|
|
27
35
|
export * from "./ForgeAiThinkingIndicator.js";
|
|
28
36
|
export * from "./ForgeAiThreads.js";
|
|
@@ -35,5 +43,5 @@ export * from "./ForgeAiThoughtSearchResult.js";
|
|
|
35
43
|
export * from "./ForgePromptButton.js";
|
|
36
44
|
export * from "./ForgeAiReasoningContent.js";
|
|
37
45
|
export * from "./ForgeAiOverlay.js";
|
|
38
|
-
export * from "./ForgeAiPopover.js";
|
|
39
46
|
export * from "./ForgeAiTooltip.js";
|
|
47
|
+
export * from "./ForgeAiPopover.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tylertech/forge-ai-react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
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,15 +16,15 @@
|
|
|
16
16
|
},
|
|
17
17
|
"peerDependencies": {
|
|
18
18
|
"react": ">=17.0.0",
|
|
19
|
-
"@tylertech/forge-ai": "^0.
|
|
19
|
+
"@tylertech/forge-ai": "^0.5.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@repo/prettier-config": "",
|
|
23
23
|
"@tylertech-eslint/eslint-plugin": "3.0.0",
|
|
24
|
-
"@tylertech/forge": "3.
|
|
24
|
+
"@tylertech/forge": "3.13.0",
|
|
25
25
|
"@tylertech/forge-react": "^3.2.0",
|
|
26
26
|
"@tylertech/tyler-icons": "2.0.4",
|
|
27
|
-
"@types/node": "24.
|
|
27
|
+
"@types/node": "24.10.4",
|
|
28
28
|
"@types/react": "^18.3.26",
|
|
29
29
|
"@types/react-dom": "^18.3.7",
|
|
30
30
|
"@types/react-router": "^5.1.20",
|
|
@@ -32,19 +32,19 @@
|
|
|
32
32
|
"@vitejs/plugin-react": "^4.7.0",
|
|
33
33
|
"change-case": "^5.4.4",
|
|
34
34
|
"custom-element-react-wrappers": "^1.7.3",
|
|
35
|
-
"eslint": "9.
|
|
35
|
+
"eslint": "9.39.2",
|
|
36
36
|
"eslint-plugin-prettier": "5.5.4",
|
|
37
37
|
"react": "^17.0.2",
|
|
38
38
|
"react-dom": "^17.0.2",
|
|
39
39
|
"react-error-overlay": "^6.1.0",
|
|
40
40
|
"react-router": "^5.3.4",
|
|
41
41
|
"react-router-dom": "^5.3.4",
|
|
42
|
-
"rimraf": "6.
|
|
42
|
+
"rimraf": "6.1.2",
|
|
43
43
|
"sass": "1.93.2",
|
|
44
44
|
"typescript": "~5.8.3",
|
|
45
|
-
"vite": "7.
|
|
46
|
-
"vite-tsconfig-paths": "
|
|
47
|
-
"@tylertech/forge-ai": "^0.
|
|
45
|
+
"vite": "7.3.0",
|
|
46
|
+
"vite-tsconfig-paths": "6.0.2",
|
|
47
|
+
"@tylertech/forge-ai": "^0.5.0"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"predev": "pnpm run build",
|