@tylertech/forge-ai 0.10.1 → 0.11.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/custom-elements.json +5456 -3863
- package/dist/ai-chatbot/ai-chatbot-base.d.ts +92 -0
- package/dist/ai-chatbot/ai-chatbot-base.mjs +467 -0
- package/dist/ai-chatbot/ai-chatbot.d.ts +26 -75
- package/dist/ai-chatbot/ai-chatbot.mjs +51 -808
- package/dist/ai-chatbot/index.d.ts +3 -2
- package/dist/ai-chatbot/index.mjs +2 -0
- package/dist/ai-chatbot/message-state-controller.mjs +1 -1
- package/dist/ai-chatbot-launcher/ai-chatbot-launcher.d.ts +71 -0
- package/dist/ai-chatbot-launcher/ai-chatbot-launcher.mjs +288 -0
- package/dist/ai-chatbot-launcher/ai-chatbot-launcher.scss.mjs +4 -0
- package/dist/ai-chatbot-launcher/index.d.ts +1 -0
- package/dist/ai-chatbot-launcher/index.mjs +5 -0
- package/dist/ai-embedded-chat/ai-embedded-chat.mjs +1 -0
- package/dist/ai-message-thread/ai-message-thread.d.ts +2 -0
- package/dist/ai-message-thread/ai-message-thread.mjs +1 -1
- package/dist/ai-message-thread/ai-message-thread.scss.mjs +1 -1
- package/dist/ai-prompt/ai-prompt.scss.mjs +1 -1
- package/dist/core/chatbot-core-controller.d.ts +51 -0
- package/dist/core/chatbot-core-controller.mjs +400 -0
- package/dist/core/index.d.ts +1 -0
- package/dist/core/index.mjs +2 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +5 -0
- package/dist/tools/ai-data-table/ai-data-table-definition.mjs +1 -0
- package/package.json +24 -24
package/dist/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export * from './ai-chain-of-thought';
|
|
|
11
11
|
export * from './ai-chat-header';
|
|
12
12
|
export * from './ai-chat-interface';
|
|
13
13
|
export * from './ai-chatbot';
|
|
14
|
+
export * from './ai-chatbot-launcher';
|
|
14
15
|
export * from './ai-confirmation-prompt';
|
|
15
16
|
export * from './ai-dialog';
|
|
16
17
|
export * from './ai-dropdown-menu';
|
|
@@ -33,7 +34,6 @@ export * from './ai-sidebar';
|
|
|
33
34
|
export * from './ai-sidebar-chat';
|
|
34
35
|
export * from './ai-slash-command-menu';
|
|
35
36
|
export * from './ai-suggestions';
|
|
36
|
-
export * from './ai-suggestions';
|
|
37
37
|
export * from './ai-thinking-indicator';
|
|
38
38
|
export * from './ai-threads';
|
|
39
39
|
export * from './ai-user-message';
|
package/dist/index.mjs
CHANGED
|
@@ -14,6 +14,7 @@ import { ThoughtImageComponent, ThoughtImageComponentTagName } from "./ai-chain-
|
|
|
14
14
|
import { ThoughtDetailComponent, ThoughtDetailComponentTagName } from "./ai-chain-of-thought/thought-detail/thought-detail.mjs";
|
|
15
15
|
import { AiChatHeaderComponent, AiChatHeaderComponentTagName } from "./ai-chat-header/ai-chat-header.mjs";
|
|
16
16
|
import { AiChatInterfaceComponent, AiChatInterfaceComponentTagName } from "./ai-chat-interface/ai-chat-interface.mjs";
|
|
17
|
+
import { AiChatbotBase } from "./ai-chatbot/ai-chatbot-base.mjs";
|
|
17
18
|
import { AiChatbotComponent, AiChatbotComponentTagName } from "./ai-chatbot/ai-chatbot.mjs";
|
|
18
19
|
import { AiChatbotToolCallComponent, AiChatbotToolCallComponentTagName } from "./ai-chatbot/ai-chatbot-tool-call.mjs";
|
|
19
20
|
import { AgentAdapter } from "./ai-chatbot/agent-adapter.mjs";
|
|
@@ -26,6 +27,7 @@ import { MessageStateController } from "./ai-chatbot/message-state-controller.mj
|
|
|
26
27
|
import { FileUploadManager } from "./ai-chatbot/file-upload-manager.mjs";
|
|
27
28
|
import { MarkdownStreamController } from "./ai-chatbot/markdown-stream-controller.mjs";
|
|
28
29
|
import { generateId, renderMarkdown } from "./ai-chatbot/utils.mjs";
|
|
30
|
+
import { AiChatbotLauncherComponent, AiChatbotLauncherComponentTagName } from "./ai-chatbot-launcher/ai-chatbot-launcher.mjs";
|
|
29
31
|
import { AiConfirmationPromptComponent, AiConfirmationPromptComponentTagName } from "./ai-confirmation-prompt/ai-confirmation-prompt.mjs";
|
|
30
32
|
import { AiDialogComponent, AiDialogComponentTagName } from "./ai-dialog/ai-dialog.mjs";
|
|
31
33
|
import { ForgeAiDropdownMenuComponent } from "./ai-dropdown-menu/ai-dropdown-menu.mjs";
|
|
@@ -78,8 +80,11 @@ export {
|
|
|
78
80
|
AiChatHeaderComponentTagName,
|
|
79
81
|
AiChatInterfaceComponent,
|
|
80
82
|
AiChatInterfaceComponentTagName,
|
|
83
|
+
AiChatbotBase,
|
|
81
84
|
AiChatbotComponent,
|
|
82
85
|
AiChatbotComponentTagName,
|
|
86
|
+
AiChatbotLauncherComponent,
|
|
87
|
+
AiChatbotLauncherComponentTagName,
|
|
83
88
|
AiChatbotToolCallComponent,
|
|
84
89
|
AiChatbotToolCallComponentTagName,
|
|
85
90
|
AiConfirmationPromptComponent,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tylertech/forge-ai",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "A library of Tyler Forge™ AI chat interface web components.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Tyler Technologies, Inc.",
|
|
@@ -39,14 +39,14 @@
|
|
|
39
39
|
"url": "git+https://github.com/tyler-technologies-oss/forge-ai.git"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@ag-ui/client": "^0.0.
|
|
43
|
-
"@ag-ui/core": "^0.0.
|
|
44
|
-
"@floating-ui/dom": "^1.7.
|
|
42
|
+
"@ag-ui/client": "^0.0.47",
|
|
43
|
+
"@ag-ui/core": "^0.0.47",
|
|
44
|
+
"@floating-ui/dom": "^1.7.6",
|
|
45
45
|
"@lit/context": "^1.1.6",
|
|
46
|
-
"dompurify": "^3.3.
|
|
46
|
+
"dompurify": "^3.3.3",
|
|
47
47
|
"lit": "3.3.2",
|
|
48
|
-
"marked": "^17.0.
|
|
49
|
-
"remend": "^1.0
|
|
48
|
+
"marked": "^17.0.4",
|
|
49
|
+
"remend": "^1.3.0",
|
|
50
50
|
"uuid": "^13.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
@@ -54,19 +54,19 @@
|
|
|
54
54
|
"@esm-bundle/chai": "4.3.4-fix.0",
|
|
55
55
|
"@open-wc/testing": "4.0.0",
|
|
56
56
|
"@repo/prettier-config": "",
|
|
57
|
-
"@storybook/addon-a11y": "9.1.
|
|
58
|
-
"@storybook/addon-docs": "9.1.
|
|
59
|
-
"@storybook/addon-links": "9.1.
|
|
60
|
-
"@storybook/addon-themes": "9.1.
|
|
61
|
-
"@storybook/web-components-vite": "9.1.
|
|
57
|
+
"@storybook/addon-a11y": "9.1.20",
|
|
58
|
+
"@storybook/addon-docs": "9.1.20",
|
|
59
|
+
"@storybook/addon-links": "9.1.20",
|
|
60
|
+
"@storybook/addon-themes": "9.1.20",
|
|
61
|
+
"@storybook/web-components-vite": "9.1.20",
|
|
62
62
|
"@tylertech/forge": "3.13.1",
|
|
63
63
|
"@tylertech/stylelint-rules": "5.1.2",
|
|
64
|
-
"@tylertech/tyler-icons": "2.0
|
|
64
|
+
"@tylertech/tyler-icons": "2.1.0",
|
|
65
65
|
"@types/cssbeautify": "^0.3.5",
|
|
66
66
|
"@types/dompurify": "^3.2.0",
|
|
67
67
|
"@types/mocha": "10.0.10",
|
|
68
|
-
"@types/node": "25.0
|
|
69
|
-
"@types/react": "^18.3.
|
|
68
|
+
"@types/node": "25.5.0",
|
|
69
|
+
"@types/react": "^18.3.28",
|
|
70
70
|
"@types/sinon": "21.0.0",
|
|
71
71
|
"@ungap/structured-clone": "^1.3.0",
|
|
72
72
|
"@vueless/storybook-dark-mode": "9.0.10",
|
|
@@ -80,25 +80,25 @@
|
|
|
80
80
|
"cssbeautify": "^0.3.1",
|
|
81
81
|
"custom-element-svelte-integration": "^1.2.0",
|
|
82
82
|
"custom-element-vuejs-integration": "^1.4.0",
|
|
83
|
-
"eslint": "9.39.
|
|
84
|
-
"glob": "13.0.
|
|
83
|
+
"eslint": "9.39.4",
|
|
84
|
+
"glob": "13.0.6",
|
|
85
85
|
"lit-analyzer": "2.0.3",
|
|
86
|
-
"plop": "4.0.
|
|
87
|
-
"postcss-lit": "1.
|
|
86
|
+
"plop": "4.0.5",
|
|
87
|
+
"postcss-lit": "1.4.1",
|
|
88
88
|
"react": "^18.3.1",
|
|
89
89
|
"react-dom": "^18.3.1",
|
|
90
90
|
"react-ga4": "^2.1.0",
|
|
91
91
|
"remark-gfm": "4.0.1",
|
|
92
|
-
"rimraf": "6.1.
|
|
92
|
+
"rimraf": "6.1.3",
|
|
93
93
|
"sass": "1.93.3",
|
|
94
|
-
"sinon": "21.0.
|
|
95
|
-
"storybook": "9.1.
|
|
94
|
+
"sinon": "21.0.3",
|
|
95
|
+
"storybook": "9.1.20",
|
|
96
96
|
"stylelint": "16.26.1",
|
|
97
97
|
"stylelint-config-standard": "39.0.1",
|
|
98
98
|
"typescript": "~5.9.3",
|
|
99
|
-
"vite": "7.3.
|
|
99
|
+
"vite": "7.3.1",
|
|
100
100
|
"vite-plugin-dts": "4.5.4",
|
|
101
|
-
"vite-tsconfig-paths": "6.0.
|
|
101
|
+
"vite-tsconfig-paths": "6.0.5"
|
|
102
102
|
},
|
|
103
103
|
"scripts": {
|
|
104
104
|
"dev": "vite src/dev",
|