@tylertech/forge-ai 0.7.3 → 0.8.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.
- package/custom-elements.json +1068 -828
- package/dist/ai-assistant-response/ai-assistant-response.d.ts +2 -2
- package/dist/ai-assistant-response/ai-assistant-response.mjs +6 -5
- package/dist/ai-assistant-response/ai-assistant-response.scss.mjs +1 -1
- package/dist/ai-chat-header/ai-chat-header.mjs +72 -72
- package/dist/ai-chat-interface/ai-chat-interface.scss.mjs +1 -1
- package/dist/ai-chatbot/ai-chatbot-tool-call.mjs +22 -15
- package/dist/ai-chatbot/ai-chatbot-tool-call.scss.mjs +1 -1
- package/dist/ai-chatbot/ai-chatbot.mjs +62 -3
- package/dist/ai-chatbot/message-state-controller.d.ts +1 -0
- package/dist/ai-chatbot/message-state-controller.mjs +29 -9
- package/dist/ai-chatbot/types.d.ts +1 -0
- package/dist/ai-chatbot/utils.mjs +13 -2
- package/dist/ai-dialog/ai-dialog.scss.mjs +1 -1
- package/dist/ai-empty-state/ai-empty-state.scss.mjs +1 -1
- package/dist/ai-file-picker/ai-file-picker.mjs +3 -0
- package/dist/ai-floating-chat/ai-floating-chat.scss.mjs +1 -1
- package/dist/ai-message-thread/ai-message-thread.d.ts +12 -3
- package/dist/ai-message-thread/ai-message-thread.mjs +81 -8
- package/dist/ai-message-thread/ai-message-thread.scss.mjs +1 -1
- package/dist/ai-message-thread/index.d.ts +1 -1
- package/dist/ai-prompt/ai-prompt.mjs +48 -5
- package/dist/ai-response-message-toolbar/ai-response-message-toolbar.d.ts +41 -0
- package/dist/ai-response-message-toolbar/ai-response-message-toolbar.mjs +230 -0
- package/dist/{ai-actions-toolbar/ai-actions-toolbar.scss.mjs → ai-response-message-toolbar/ai-response-message-toolbar.scss.mjs} +1 -1
- package/dist/ai-response-message-toolbar/index.d.ts +1 -0
- package/dist/ai-response-message-toolbar/index.mjs +5 -0
- package/dist/ai-slash-command-menu/ai-slash-command-menu.mjs +1 -1
- package/dist/ai-user-message/ai-user-message.d.ts +25 -0
- package/dist/ai-user-message/ai-user-message.mjs +113 -5
- package/dist/ai-user-message/ai-user-message.scss.mjs +1 -1
- package/dist/ai-user-message-toolbar/ai-user-message-toolbar.d.ts +28 -0
- package/dist/ai-user-message-toolbar/ai-user-message-toolbar.mjs +160 -0
- package/dist/ai-user-message-toolbar/ai-user-message-toolbar.scss.mjs +4 -0
- package/dist/ai-user-message-toolbar/index.d.ts +1 -0
- package/dist/ai-user-message-toolbar/index.mjs +5 -0
- package/dist/ai-voice-input/ai-voice-input.mjs +5 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.mjs +6 -3
- package/dist/tools/ai-paginator/ai-paginator.mjs +5 -0
- package/package.json +1 -1
- package/dist/ai-actions-toolbar/ai-actions-toolbar.d.ts +0 -51
- package/dist/ai-actions-toolbar/ai-actions-toolbar.mjs +0 -211
- package/dist/ai-actions-toolbar/index.d.ts +0 -1
- package/dist/ai-actions-toolbar/index.mjs +0 -5
package/custom-elements.json
CHANGED
|
@@ -78,21 +78,99 @@
|
|
|
78
78
|
},
|
|
79
79
|
{
|
|
80
80
|
"kind": "javascript-module",
|
|
81
|
-
"path": "src/lib/ai-
|
|
81
|
+
"path": "src/lib/ai-agent-info/ai-agent-info.ts",
|
|
82
|
+
"declarations": [
|
|
83
|
+
{
|
|
84
|
+
"kind": "variable",
|
|
85
|
+
"name": "AiAgentInfoComponentTagName",
|
|
86
|
+
"type": {
|
|
87
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
88
|
+
},
|
|
89
|
+
"default": "'forge-ai-agent-info'"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"kind": "class",
|
|
93
|
+
"description": "",
|
|
94
|
+
"name": "AiAgentInfoComponent",
|
|
95
|
+
"members": [
|
|
96
|
+
{
|
|
97
|
+
"kind": "field",
|
|
98
|
+
"name": "agentInfo",
|
|
99
|
+
"type": {
|
|
100
|
+
"text": "AgentInfo | undefined"
|
|
101
|
+
},
|
|
102
|
+
"privacy": "public",
|
|
103
|
+
"description": "Agent information to display"
|
|
104
|
+
}
|
|
105
|
+
],
|
|
106
|
+
"superclass": {
|
|
107
|
+
"name": "LitElement",
|
|
108
|
+
"package": "lit"
|
|
109
|
+
},
|
|
110
|
+
"tagName": "forge-ai-agent-info",
|
|
111
|
+
"customElement": true,
|
|
112
|
+
"summary": "Displays agent information in a grid layout"
|
|
113
|
+
}
|
|
114
|
+
],
|
|
115
|
+
"exports": [
|
|
116
|
+
{
|
|
117
|
+
"kind": "js",
|
|
118
|
+
"name": "AiAgentInfoComponentTagName",
|
|
119
|
+
"declaration": {
|
|
120
|
+
"name": "AiAgentInfoComponentTagName",
|
|
121
|
+
"module": "src/lib/ai-agent-info/ai-agent-info.ts"
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"kind": "js",
|
|
126
|
+
"name": "AiAgentInfoComponent",
|
|
127
|
+
"declaration": {
|
|
128
|
+
"name": "AiAgentInfoComponent",
|
|
129
|
+
"module": "src/lib/ai-agent-info/ai-agent-info.ts"
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"kind": "custom-element-definition",
|
|
134
|
+
"declaration": {
|
|
135
|
+
"name": "AiAgentInfoComponent",
|
|
136
|
+
"module": "src/lib/ai-agent-info/ai-agent-info.ts"
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
]
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"kind": "javascript-module",
|
|
143
|
+
"path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
|
|
82
144
|
"declarations": [
|
|
83
145
|
{
|
|
84
146
|
"kind": "variable",
|
|
85
|
-
"name": "
|
|
147
|
+
"name": "AiAssistantResponseComponentTagName",
|
|
86
148
|
"type": {
|
|
87
149
|
"text": "keyof HTMLElementTagNameMap"
|
|
88
150
|
},
|
|
89
|
-
"default": "'forge-ai-
|
|
151
|
+
"default": "'forge-ai-assistant-response'"
|
|
90
152
|
},
|
|
91
153
|
{
|
|
92
154
|
"kind": "class",
|
|
93
155
|
"description": "",
|
|
94
|
-
"name": "
|
|
156
|
+
"name": "AiAssistantResponseComponent",
|
|
95
157
|
"members": [
|
|
158
|
+
{
|
|
159
|
+
"kind": "field",
|
|
160
|
+
"name": "response",
|
|
161
|
+
"type": {
|
|
162
|
+
"text": "AssistantResponse"
|
|
163
|
+
},
|
|
164
|
+
"privacy": "public"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"kind": "field",
|
|
168
|
+
"name": "tools",
|
|
169
|
+
"type": {
|
|
170
|
+
"text": "Map<string, ToolDefinition> | undefined"
|
|
171
|
+
},
|
|
172
|
+
"privacy": "public"
|
|
173
|
+
},
|
|
96
174
|
{
|
|
97
175
|
"kind": "field",
|
|
98
176
|
"name": "enableReactions",
|
|
@@ -105,28 +183,43 @@
|
|
|
105
183
|
},
|
|
106
184
|
{
|
|
107
185
|
"kind": "field",
|
|
108
|
-
"name": "
|
|
186
|
+
"name": "debugMode",
|
|
109
187
|
"type": {
|
|
110
|
-
"text": "
|
|
188
|
+
"text": "boolean"
|
|
111
189
|
},
|
|
112
190
|
"privacy": "public",
|
|
113
|
-
"
|
|
191
|
+
"default": "false",
|
|
192
|
+
"attribute": "debug-mode"
|
|
114
193
|
}
|
|
115
194
|
],
|
|
116
195
|
"events": [
|
|
117
196
|
{
|
|
118
197
|
"type": {
|
|
119
|
-
"text": "CustomEvent<
|
|
198
|
+
"text": "CustomEvent<{ responseId: string }>"
|
|
120
199
|
},
|
|
121
|
-
"description": "Fired when
|
|
122
|
-
"name": "forge-ai-
|
|
200
|
+
"description": "Fired when copy action is clicked",
|
|
201
|
+
"name": "forge-ai-assistant-response-copy"
|
|
123
202
|
},
|
|
124
203
|
{
|
|
125
204
|
"type": {
|
|
126
|
-
"text": "CustomEvent<
|
|
205
|
+
"text": "CustomEvent<{ responseId: string }>"
|
|
127
206
|
},
|
|
128
|
-
"description": "Fired when
|
|
129
|
-
"name": "forge-ai-
|
|
207
|
+
"description": "Fired when resend action is clicked",
|
|
208
|
+
"name": "forge-ai-assistant-response-resend"
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"type": {
|
|
212
|
+
"text": "CustomEvent<ForgeAiAssistantResponseFeedbackEventData>"
|
|
213
|
+
},
|
|
214
|
+
"description": "Fired when thumbs up is clicked",
|
|
215
|
+
"name": "forge-ai-assistant-response-thumbs-up"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"type": {
|
|
219
|
+
"text": "CustomEvent<ForgeAiAssistantResponseFeedbackEventData>"
|
|
220
|
+
},
|
|
221
|
+
"description": "Fired when thumbs down is clicked",
|
|
222
|
+
"name": "forge-ai-assistant-response-thumbs-down"
|
|
130
223
|
}
|
|
131
224
|
],
|
|
132
225
|
"attributes": [
|
|
@@ -139,43 +232,45 @@
|
|
|
139
232
|
"fieldName": "enableReactions"
|
|
140
233
|
},
|
|
141
234
|
{
|
|
142
|
-
"name": "
|
|
235
|
+
"name": "debug-mode",
|
|
143
236
|
"type": {
|
|
144
|
-
"text": "
|
|
237
|
+
"text": "boolean"
|
|
145
238
|
},
|
|
146
|
-
"
|
|
239
|
+
"default": "false",
|
|
240
|
+
"fieldName": "debugMode"
|
|
147
241
|
}
|
|
148
242
|
],
|
|
149
243
|
"superclass": {
|
|
150
244
|
"name": "LitElement",
|
|
151
245
|
"package": "lit"
|
|
152
246
|
},
|
|
153
|
-
"tagName": "forge-ai-
|
|
154
|
-
"customElement": true
|
|
247
|
+
"tagName": "forge-ai-assistant-response",
|
|
248
|
+
"customElement": true,
|
|
249
|
+
"summary": "Renders a complete assistant response with interleaved text chunks and tool calls."
|
|
155
250
|
}
|
|
156
251
|
],
|
|
157
252
|
"exports": [
|
|
158
253
|
{
|
|
159
254
|
"kind": "js",
|
|
160
|
-
"name": "
|
|
255
|
+
"name": "AiAssistantResponseComponentTagName",
|
|
161
256
|
"declaration": {
|
|
162
|
-
"name": "
|
|
163
|
-
"module": "src/lib/ai-
|
|
257
|
+
"name": "AiAssistantResponseComponentTagName",
|
|
258
|
+
"module": "src/lib/ai-assistant-response/ai-assistant-response.ts"
|
|
164
259
|
}
|
|
165
260
|
},
|
|
166
261
|
{
|
|
167
262
|
"kind": "js",
|
|
168
|
-
"name": "
|
|
263
|
+
"name": "AiAssistantResponseComponent",
|
|
169
264
|
"declaration": {
|
|
170
|
-
"name": "
|
|
171
|
-
"module": "src/lib/ai-
|
|
265
|
+
"name": "AiAssistantResponseComponent",
|
|
266
|
+
"module": "src/lib/ai-assistant-response/ai-assistant-response.ts"
|
|
172
267
|
}
|
|
173
268
|
},
|
|
174
269
|
{
|
|
175
270
|
"kind": "custom-element-definition",
|
|
176
271
|
"declaration": {
|
|
177
|
-
"name": "
|
|
178
|
-
"module": "src/lib/ai-
|
|
272
|
+
"name": "AiAssistantResponseComponent",
|
|
273
|
+
"module": "src/lib/ai-assistant-response/ai-assistant-response.ts"
|
|
179
274
|
}
|
|
180
275
|
}
|
|
181
276
|
]
|
|
@@ -251,68 +346,6 @@
|
|
|
251
346
|
}
|
|
252
347
|
]
|
|
253
348
|
},
|
|
254
|
-
{
|
|
255
|
-
"kind": "javascript-module",
|
|
256
|
-
"path": "src/lib/ai-agent-info/ai-agent-info.ts",
|
|
257
|
-
"declarations": [
|
|
258
|
-
{
|
|
259
|
-
"kind": "variable",
|
|
260
|
-
"name": "AiAgentInfoComponentTagName",
|
|
261
|
-
"type": {
|
|
262
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
263
|
-
},
|
|
264
|
-
"default": "'forge-ai-agent-info'"
|
|
265
|
-
},
|
|
266
|
-
{
|
|
267
|
-
"kind": "class",
|
|
268
|
-
"description": "",
|
|
269
|
-
"name": "AiAgentInfoComponent",
|
|
270
|
-
"members": [
|
|
271
|
-
{
|
|
272
|
-
"kind": "field",
|
|
273
|
-
"name": "agentInfo",
|
|
274
|
-
"type": {
|
|
275
|
-
"text": "AgentInfo | undefined"
|
|
276
|
-
},
|
|
277
|
-
"privacy": "public",
|
|
278
|
-
"description": "Agent information to display"
|
|
279
|
-
}
|
|
280
|
-
],
|
|
281
|
-
"superclass": {
|
|
282
|
-
"name": "LitElement",
|
|
283
|
-
"package": "lit"
|
|
284
|
-
},
|
|
285
|
-
"tagName": "forge-ai-agent-info",
|
|
286
|
-
"customElement": true,
|
|
287
|
-
"summary": "Displays agent information in a grid layout"
|
|
288
|
-
}
|
|
289
|
-
],
|
|
290
|
-
"exports": [
|
|
291
|
-
{
|
|
292
|
-
"kind": "js",
|
|
293
|
-
"name": "AiAgentInfoComponentTagName",
|
|
294
|
-
"declaration": {
|
|
295
|
-
"name": "AiAgentInfoComponentTagName",
|
|
296
|
-
"module": "src/lib/ai-agent-info/ai-agent-info.ts"
|
|
297
|
-
}
|
|
298
|
-
},
|
|
299
|
-
{
|
|
300
|
-
"kind": "js",
|
|
301
|
-
"name": "AiAgentInfoComponent",
|
|
302
|
-
"declaration": {
|
|
303
|
-
"name": "AiAgentInfoComponent",
|
|
304
|
-
"module": "src/lib/ai-agent-info/ai-agent-info.ts"
|
|
305
|
-
}
|
|
306
|
-
},
|
|
307
|
-
{
|
|
308
|
-
"kind": "custom-element-definition",
|
|
309
|
-
"declaration": {
|
|
310
|
-
"name": "AiAgentInfoComponent",
|
|
311
|
-
"module": "src/lib/ai-agent-info/ai-agent-info.ts"
|
|
312
|
-
}
|
|
313
|
-
}
|
|
314
|
-
]
|
|
315
|
-
},
|
|
316
349
|
{
|
|
317
350
|
"kind": "javascript-module",
|
|
318
351
|
"path": "src/lib/ai-attachment/ai-attachment.ts",
|
|
@@ -566,137 +599,75 @@
|
|
|
566
599
|
},
|
|
567
600
|
{
|
|
568
601
|
"kind": "javascript-module",
|
|
569
|
-
"path": "src/lib/ai-
|
|
602
|
+
"path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
|
|
570
603
|
"declarations": [
|
|
571
604
|
{
|
|
572
605
|
"kind": "variable",
|
|
573
|
-
"name": "
|
|
606
|
+
"name": "AiChainOfThoughtComponentTagName",
|
|
574
607
|
"type": {
|
|
575
608
|
"text": "keyof HTMLElementTagNameMap"
|
|
576
609
|
},
|
|
577
|
-
"default": "'forge-ai-
|
|
610
|
+
"default": "'forge-ai-chain-of-thought'"
|
|
578
611
|
},
|
|
579
612
|
{
|
|
580
613
|
"kind": "class",
|
|
581
614
|
"description": "",
|
|
582
|
-
"name": "
|
|
615
|
+
"name": "AiChainOfThoughtComponent",
|
|
583
616
|
"members": [
|
|
584
617
|
{
|
|
585
618
|
"kind": "field",
|
|
586
|
-
"name": "
|
|
587
|
-
"type": {
|
|
588
|
-
"text": "AssistantResponse"
|
|
589
|
-
},
|
|
590
|
-
"privacy": "public"
|
|
591
|
-
},
|
|
592
|
-
{
|
|
593
|
-
"kind": "field",
|
|
594
|
-
"name": "tools",
|
|
595
|
-
"type": {
|
|
596
|
-
"text": "Map<string, ToolDefinition> | undefined"
|
|
597
|
-
},
|
|
598
|
-
"privacy": "public"
|
|
599
|
-
},
|
|
600
|
-
{
|
|
601
|
-
"kind": "field",
|
|
602
|
-
"name": "enableReactions",
|
|
619
|
+
"name": "expanded",
|
|
603
620
|
"type": {
|
|
604
621
|
"text": "boolean"
|
|
605
622
|
},
|
|
606
623
|
"privacy": "public",
|
|
607
624
|
"default": "false",
|
|
608
|
-
"
|
|
609
|
-
|
|
625
|
+
"description": "Whether the chain of thought is expanded",
|
|
626
|
+
"attribute": "expanded",
|
|
627
|
+
"reflects": true
|
|
628
|
+
}
|
|
629
|
+
],
|
|
630
|
+
"attributes": [
|
|
610
631
|
{
|
|
611
|
-
"
|
|
612
|
-
"name": "debugMode",
|
|
632
|
+
"name": "expanded",
|
|
613
633
|
"type": {
|
|
614
634
|
"text": "boolean"
|
|
615
635
|
},
|
|
616
|
-
"privacy": "public",
|
|
617
636
|
"default": "false",
|
|
618
|
-
"
|
|
619
|
-
|
|
620
|
-
],
|
|
621
|
-
"events": [
|
|
622
|
-
{
|
|
623
|
-
"type": {
|
|
624
|
-
"text": "CustomEvent<{ responseId: string }>"
|
|
625
|
-
},
|
|
626
|
-
"description": "Fired when copy action is clicked",
|
|
627
|
-
"name": "forge-ai-assistant-response-copy"
|
|
628
|
-
},
|
|
629
|
-
{
|
|
630
|
-
"type": {
|
|
631
|
-
"text": "CustomEvent<{ responseId: string }>"
|
|
632
|
-
},
|
|
633
|
-
"description": "Fired when refresh action is clicked",
|
|
634
|
-
"name": "forge-ai-assistant-response-refresh"
|
|
635
|
-
},
|
|
636
|
-
{
|
|
637
|
-
"type": {
|
|
638
|
-
"text": "CustomEvent<ForgeAiAssistantResponseFeedbackEventData>"
|
|
639
|
-
},
|
|
640
|
-
"description": "Fired when thumbs up is clicked",
|
|
641
|
-
"name": "forge-ai-assistant-response-thumbs-up"
|
|
642
|
-
},
|
|
643
|
-
{
|
|
644
|
-
"type": {
|
|
645
|
-
"text": "CustomEvent<ForgeAiAssistantResponseFeedbackEventData>"
|
|
646
|
-
},
|
|
647
|
-
"description": "Fired when thumbs down is clicked",
|
|
648
|
-
"name": "forge-ai-assistant-response-thumbs-down"
|
|
649
|
-
}
|
|
650
|
-
],
|
|
651
|
-
"attributes": [
|
|
652
|
-
{
|
|
653
|
-
"name": "enable-reactions",
|
|
654
|
-
"type": {
|
|
655
|
-
"text": "boolean"
|
|
656
|
-
},
|
|
657
|
-
"default": "false",
|
|
658
|
-
"fieldName": "enableReactions"
|
|
659
|
-
},
|
|
660
|
-
{
|
|
661
|
-
"name": "debug-mode",
|
|
662
|
-
"type": {
|
|
663
|
-
"text": "boolean"
|
|
664
|
-
},
|
|
665
|
-
"default": "false",
|
|
666
|
-
"fieldName": "debugMode"
|
|
637
|
+
"description": "Whether the chain of thought is expanded",
|
|
638
|
+
"fieldName": "expanded"
|
|
667
639
|
}
|
|
668
640
|
],
|
|
669
641
|
"superclass": {
|
|
670
642
|
"name": "LitElement",
|
|
671
643
|
"package": "lit"
|
|
672
644
|
},
|
|
673
|
-
"tagName": "forge-ai-
|
|
674
|
-
"customElement": true
|
|
675
|
-
"summary": "Renders a complete assistant response with interleaved text chunks and tool calls."
|
|
645
|
+
"tagName": "forge-ai-chain-of-thought",
|
|
646
|
+
"customElement": true
|
|
676
647
|
}
|
|
677
648
|
],
|
|
678
649
|
"exports": [
|
|
679
650
|
{
|
|
680
651
|
"kind": "js",
|
|
681
|
-
"name": "
|
|
652
|
+
"name": "AiChainOfThoughtComponentTagName",
|
|
682
653
|
"declaration": {
|
|
683
|
-
"name": "
|
|
684
|
-
"module": "src/lib/ai-
|
|
654
|
+
"name": "AiChainOfThoughtComponentTagName",
|
|
655
|
+
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
685
656
|
}
|
|
686
657
|
},
|
|
687
658
|
{
|
|
688
659
|
"kind": "js",
|
|
689
|
-
"name": "
|
|
660
|
+
"name": "AiChainOfThoughtComponent",
|
|
690
661
|
"declaration": {
|
|
691
|
-
"name": "
|
|
692
|
-
"module": "src/lib/ai-
|
|
662
|
+
"name": "AiChainOfThoughtComponent",
|
|
663
|
+
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
693
664
|
}
|
|
694
665
|
},
|
|
695
666
|
{
|
|
696
667
|
"kind": "custom-element-definition",
|
|
697
668
|
"declaration": {
|
|
698
|
-
"name": "
|
|
699
|
-
"module": "src/lib/ai-
|
|
669
|
+
"name": "AiChainOfThoughtComponent",
|
|
670
|
+
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
700
671
|
}
|
|
701
672
|
}
|
|
702
673
|
]
|
|
@@ -988,159 +959,227 @@
|
|
|
988
959
|
},
|
|
989
960
|
{
|
|
990
961
|
"kind": "javascript-module",
|
|
991
|
-
"path": "src/lib/ai-
|
|
962
|
+
"path": "src/lib/ai-chat-interface/ai-chat-interface.ts",
|
|
992
963
|
"declarations": [
|
|
993
964
|
{
|
|
994
965
|
"kind": "variable",
|
|
995
|
-
"name": "
|
|
966
|
+
"name": "AiChatInterfaceComponentTagName",
|
|
996
967
|
"type": {
|
|
997
968
|
"text": "keyof HTMLElementTagNameMap"
|
|
998
969
|
},
|
|
999
|
-
"default": "'forge-ai-
|
|
970
|
+
"default": "'forge-ai-chat-interface'"
|
|
1000
971
|
},
|
|
1001
972
|
{
|
|
1002
973
|
"kind": "class",
|
|
1003
974
|
"description": "",
|
|
1004
|
-
"name": "
|
|
1005
|
-
"
|
|
975
|
+
"name": "AiChatInterfaceComponent",
|
|
976
|
+
"slots": [
|
|
1006
977
|
{
|
|
1007
|
-
"
|
|
1008
|
-
"name": "
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
"
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
"
|
|
1016
|
-
"
|
|
978
|
+
"description": "Default slot for messages",
|
|
979
|
+
"name": ""
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
"description": "Slot for AI chat header component",
|
|
983
|
+
"name": "header"
|
|
984
|
+
},
|
|
985
|
+
{
|
|
986
|
+
"description": "Slot for AI suggestions component",
|
|
987
|
+
"name": "suggestions"
|
|
988
|
+
},
|
|
989
|
+
{
|
|
990
|
+
"description": "Slot for file attachments component",
|
|
991
|
+
"name": "attachments"
|
|
992
|
+
},
|
|
993
|
+
{
|
|
994
|
+
"description": "Slot for AI prompt component",
|
|
995
|
+
"name": "prompt"
|
|
1017
996
|
}
|
|
1018
997
|
],
|
|
1019
|
-
"
|
|
998
|
+
"members": [
|
|
1020
999
|
{
|
|
1021
|
-
"
|
|
1022
|
-
"
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1000
|
+
"kind": "method",
|
|
1001
|
+
"name": "scrollToBottom",
|
|
1002
|
+
"privacy": "public",
|
|
1003
|
+
"return": {
|
|
1004
|
+
"type": {
|
|
1005
|
+
"text": "void"
|
|
1006
|
+
}
|
|
1007
|
+
}
|
|
1028
1008
|
}
|
|
1029
1009
|
],
|
|
1030
1010
|
"superclass": {
|
|
1031
1011
|
"name": "LitElement",
|
|
1032
1012
|
"package": "lit"
|
|
1033
1013
|
},
|
|
1034
|
-
"tagName": "forge-ai-
|
|
1014
|
+
"tagName": "forge-ai-chat-interface",
|
|
1035
1015
|
"customElement": true
|
|
1036
1016
|
}
|
|
1037
1017
|
],
|
|
1038
1018
|
"exports": [
|
|
1039
1019
|
{
|
|
1040
1020
|
"kind": "js",
|
|
1041
|
-
"name": "
|
|
1021
|
+
"name": "AiChatInterfaceComponentTagName",
|
|
1042
1022
|
"declaration": {
|
|
1043
|
-
"name": "
|
|
1044
|
-
"module": "src/lib/ai-
|
|
1023
|
+
"name": "AiChatInterfaceComponentTagName",
|
|
1024
|
+
"module": "src/lib/ai-chat-interface/ai-chat-interface.ts"
|
|
1045
1025
|
}
|
|
1046
1026
|
},
|
|
1047
1027
|
{
|
|
1048
1028
|
"kind": "js",
|
|
1049
|
-
"name": "
|
|
1029
|
+
"name": "AiChatInterfaceComponent",
|
|
1050
1030
|
"declaration": {
|
|
1051
|
-
"name": "
|
|
1052
|
-
"module": "src/lib/ai-
|
|
1031
|
+
"name": "AiChatInterfaceComponent",
|
|
1032
|
+
"module": "src/lib/ai-chat-interface/ai-chat-interface.ts"
|
|
1053
1033
|
}
|
|
1054
1034
|
},
|
|
1055
1035
|
{
|
|
1056
1036
|
"kind": "custom-element-definition",
|
|
1057
1037
|
"declaration": {
|
|
1058
|
-
"name": "
|
|
1059
|
-
"module": "src/lib/ai-
|
|
1038
|
+
"name": "AiChatInterfaceComponent",
|
|
1039
|
+
"module": "src/lib/ai-chat-interface/ai-chat-interface.ts"
|
|
1060
1040
|
}
|
|
1061
1041
|
}
|
|
1062
1042
|
]
|
|
1063
1043
|
},
|
|
1064
1044
|
{
|
|
1065
1045
|
"kind": "javascript-module",
|
|
1066
|
-
"path": "src/lib/ai-
|
|
1046
|
+
"path": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts",
|
|
1067
1047
|
"declarations": [
|
|
1068
1048
|
{
|
|
1069
1049
|
"kind": "variable",
|
|
1070
|
-
"name": "
|
|
1050
|
+
"name": "AiConfirmationPromptComponentTagName",
|
|
1071
1051
|
"type": {
|
|
1072
1052
|
"text": "keyof HTMLElementTagNameMap"
|
|
1073
1053
|
},
|
|
1074
|
-
"default": "'forge-ai-
|
|
1054
|
+
"default": "'forge-ai-confirmation-prompt'"
|
|
1075
1055
|
},
|
|
1076
1056
|
{
|
|
1077
1057
|
"kind": "class",
|
|
1078
1058
|
"description": "",
|
|
1079
|
-
"name": "
|
|
1080
|
-
"
|
|
1059
|
+
"name": "AiConfirmationPromptComponent",
|
|
1060
|
+
"members": [
|
|
1081
1061
|
{
|
|
1082
|
-
"
|
|
1083
|
-
"name": ""
|
|
1062
|
+
"kind": "field",
|
|
1063
|
+
"name": "text",
|
|
1064
|
+
"type": {
|
|
1065
|
+
"text": "string"
|
|
1066
|
+
},
|
|
1067
|
+
"privacy": "public",
|
|
1068
|
+
"default": "''",
|
|
1069
|
+
"attribute": "text"
|
|
1084
1070
|
},
|
|
1085
1071
|
{
|
|
1086
|
-
"
|
|
1087
|
-
"name": "
|
|
1072
|
+
"kind": "field",
|
|
1073
|
+
"name": "confirmText",
|
|
1074
|
+
"type": {
|
|
1075
|
+
"text": "string"
|
|
1076
|
+
},
|
|
1077
|
+
"privacy": "public",
|
|
1078
|
+
"default": "'Confirm'",
|
|
1079
|
+
"attribute": "confirm-text"
|
|
1088
1080
|
},
|
|
1089
1081
|
{
|
|
1090
|
-
"
|
|
1091
|
-
"name": "
|
|
1082
|
+
"kind": "field",
|
|
1083
|
+
"name": "denyText",
|
|
1084
|
+
"type": {
|
|
1085
|
+
"text": "string"
|
|
1086
|
+
},
|
|
1087
|
+
"privacy": "public",
|
|
1088
|
+
"default": "'Deny'",
|
|
1089
|
+
"attribute": "deny-text"
|
|
1092
1090
|
},
|
|
1093
1091
|
{
|
|
1094
|
-
"
|
|
1095
|
-
"name": "
|
|
1092
|
+
"kind": "field",
|
|
1093
|
+
"name": "disabled",
|
|
1094
|
+
"type": {
|
|
1095
|
+
"text": "boolean"
|
|
1096
|
+
},
|
|
1097
|
+
"privacy": "public",
|
|
1098
|
+
"default": "false",
|
|
1099
|
+
"attribute": "disabled"
|
|
1100
|
+
}
|
|
1101
|
+
],
|
|
1102
|
+
"events": [
|
|
1103
|
+
{
|
|
1104
|
+
"type": {
|
|
1105
|
+
"text": "CustomEvent<void>"
|
|
1106
|
+
},
|
|
1107
|
+
"description": "Fired when user confirms the prompt",
|
|
1108
|
+
"name": "forge-ai-confirmation-prompt-confirm"
|
|
1096
1109
|
},
|
|
1097
1110
|
{
|
|
1098
|
-
"
|
|
1099
|
-
|
|
1111
|
+
"type": {
|
|
1112
|
+
"text": "CustomEvent<void>"
|
|
1113
|
+
},
|
|
1114
|
+
"description": "Fired when user denies the prompt",
|
|
1115
|
+
"name": "forge-ai-confirmation-prompt-deny"
|
|
1100
1116
|
}
|
|
1101
1117
|
],
|
|
1102
|
-
"
|
|
1118
|
+
"attributes": [
|
|
1103
1119
|
{
|
|
1104
|
-
"
|
|
1105
|
-
"
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1120
|
+
"name": "text",
|
|
1121
|
+
"type": {
|
|
1122
|
+
"text": "string"
|
|
1123
|
+
},
|
|
1124
|
+
"default": "''",
|
|
1125
|
+
"fieldName": "text"
|
|
1126
|
+
},
|
|
1127
|
+
{
|
|
1128
|
+
"name": "confirm-text",
|
|
1129
|
+
"type": {
|
|
1130
|
+
"text": "string"
|
|
1131
|
+
},
|
|
1132
|
+
"default": "'Confirm'",
|
|
1133
|
+
"fieldName": "confirmText"
|
|
1134
|
+
},
|
|
1135
|
+
{
|
|
1136
|
+
"name": "deny-text",
|
|
1137
|
+
"type": {
|
|
1138
|
+
"text": "string"
|
|
1139
|
+
},
|
|
1140
|
+
"default": "'Deny'",
|
|
1141
|
+
"fieldName": "denyText"
|
|
1142
|
+
},
|
|
1143
|
+
{
|
|
1144
|
+
"name": "disabled",
|
|
1145
|
+
"type": {
|
|
1146
|
+
"text": "boolean"
|
|
1147
|
+
},
|
|
1148
|
+
"default": "false",
|
|
1149
|
+
"fieldName": "disabled"
|
|
1112
1150
|
}
|
|
1113
1151
|
],
|
|
1114
1152
|
"superclass": {
|
|
1115
1153
|
"name": "LitElement",
|
|
1116
1154
|
"package": "lit"
|
|
1117
1155
|
},
|
|
1118
|
-
"tagName": "forge-ai-
|
|
1119
|
-
"customElement": true
|
|
1156
|
+
"tagName": "forge-ai-confirmation-prompt",
|
|
1157
|
+
"customElement": true,
|
|
1158
|
+
"summary": "Displays a confirmation UI for requiring human approval."
|
|
1120
1159
|
}
|
|
1121
1160
|
],
|
|
1122
1161
|
"exports": [
|
|
1123
1162
|
{
|
|
1124
1163
|
"kind": "js",
|
|
1125
|
-
"name": "
|
|
1164
|
+
"name": "AiConfirmationPromptComponentTagName",
|
|
1126
1165
|
"declaration": {
|
|
1127
|
-
"name": "
|
|
1128
|
-
"module": "src/lib/ai-
|
|
1166
|
+
"name": "AiConfirmationPromptComponentTagName",
|
|
1167
|
+
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
1129
1168
|
}
|
|
1130
1169
|
},
|
|
1131
1170
|
{
|
|
1132
1171
|
"kind": "js",
|
|
1133
|
-
"name": "
|
|
1172
|
+
"name": "AiConfirmationPromptComponent",
|
|
1134
1173
|
"declaration": {
|
|
1135
|
-
"name": "
|
|
1136
|
-
"module": "src/lib/ai-
|
|
1174
|
+
"name": "AiConfirmationPromptComponent",
|
|
1175
|
+
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
1137
1176
|
}
|
|
1138
1177
|
},
|
|
1139
1178
|
{
|
|
1140
1179
|
"kind": "custom-element-definition",
|
|
1141
1180
|
"declaration": {
|
|
1142
|
-
"name": "
|
|
1143
|
-
"module": "src/lib/ai-
|
|
1181
|
+
"name": "AiConfirmationPromptComponent",
|
|
1182
|
+
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
1144
1183
|
}
|
|
1145
1184
|
}
|
|
1146
1185
|
]
|
|
@@ -4305,7 +4344,7 @@
|
|
|
4305
4344
|
},
|
|
4306
4345
|
{
|
|
4307
4346
|
"kind": "method",
|
|
4308
|
-
"name": "
|
|
4347
|
+
"name": "updateMessageContent",
|
|
4309
4348
|
"privacy": "public",
|
|
4310
4349
|
"return": {
|
|
4311
4350
|
"type": {
|
|
@@ -4314,22 +4353,46 @@
|
|
|
4314
4353
|
},
|
|
4315
4354
|
"parameters": [
|
|
4316
4355
|
{
|
|
4317
|
-
"name": "
|
|
4356
|
+
"name": "id",
|
|
4318
4357
|
"type": {
|
|
4319
|
-
"text": "
|
|
4358
|
+
"text": "string"
|
|
4359
|
+
}
|
|
4360
|
+
},
|
|
4361
|
+
{
|
|
4362
|
+
"name": "content",
|
|
4363
|
+
"type": {
|
|
4364
|
+
"text": "string"
|
|
4320
4365
|
}
|
|
4321
4366
|
}
|
|
4322
4367
|
]
|
|
4323
4368
|
},
|
|
4324
4369
|
{
|
|
4325
4370
|
"kind": "method",
|
|
4326
|
-
"name": "
|
|
4371
|
+
"name": "removeMessageItem",
|
|
4327
4372
|
"privacy": "public",
|
|
4328
4373
|
"return": {
|
|
4329
4374
|
"type": {
|
|
4330
4375
|
"text": "void"
|
|
4331
4376
|
}
|
|
4332
|
-
}
|
|
4377
|
+
},
|
|
4378
|
+
"parameters": [
|
|
4379
|
+
{
|
|
4380
|
+
"name": "index",
|
|
4381
|
+
"type": {
|
|
4382
|
+
"text": "number"
|
|
4383
|
+
}
|
|
4384
|
+
}
|
|
4385
|
+
]
|
|
4386
|
+
},
|
|
4387
|
+
{
|
|
4388
|
+
"kind": "method",
|
|
4389
|
+
"name": "clearMessages",
|
|
4390
|
+
"privacy": "public",
|
|
4391
|
+
"return": {
|
|
4392
|
+
"type": {
|
|
4393
|
+
"text": "void"
|
|
4394
|
+
}
|
|
4395
|
+
}
|
|
4333
4396
|
},
|
|
4334
4397
|
{
|
|
4335
4398
|
"kind": "method",
|
|
@@ -4510,149 +4573,6 @@
|
|
|
4510
4573
|
}
|
|
4511
4574
|
]
|
|
4512
4575
|
},
|
|
4513
|
-
{
|
|
4514
|
-
"kind": "javascript-module",
|
|
4515
|
-
"path": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts",
|
|
4516
|
-
"declarations": [
|
|
4517
|
-
{
|
|
4518
|
-
"kind": "variable",
|
|
4519
|
-
"name": "AiConfirmationPromptComponentTagName",
|
|
4520
|
-
"type": {
|
|
4521
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
4522
|
-
},
|
|
4523
|
-
"default": "'forge-ai-confirmation-prompt'"
|
|
4524
|
-
},
|
|
4525
|
-
{
|
|
4526
|
-
"kind": "class",
|
|
4527
|
-
"description": "",
|
|
4528
|
-
"name": "AiConfirmationPromptComponent",
|
|
4529
|
-
"members": [
|
|
4530
|
-
{
|
|
4531
|
-
"kind": "field",
|
|
4532
|
-
"name": "text",
|
|
4533
|
-
"type": {
|
|
4534
|
-
"text": "string"
|
|
4535
|
-
},
|
|
4536
|
-
"privacy": "public",
|
|
4537
|
-
"default": "''",
|
|
4538
|
-
"attribute": "text"
|
|
4539
|
-
},
|
|
4540
|
-
{
|
|
4541
|
-
"kind": "field",
|
|
4542
|
-
"name": "confirmText",
|
|
4543
|
-
"type": {
|
|
4544
|
-
"text": "string"
|
|
4545
|
-
},
|
|
4546
|
-
"privacy": "public",
|
|
4547
|
-
"default": "'Confirm'",
|
|
4548
|
-
"attribute": "confirm-text"
|
|
4549
|
-
},
|
|
4550
|
-
{
|
|
4551
|
-
"kind": "field",
|
|
4552
|
-
"name": "denyText",
|
|
4553
|
-
"type": {
|
|
4554
|
-
"text": "string"
|
|
4555
|
-
},
|
|
4556
|
-
"privacy": "public",
|
|
4557
|
-
"default": "'Deny'",
|
|
4558
|
-
"attribute": "deny-text"
|
|
4559
|
-
},
|
|
4560
|
-
{
|
|
4561
|
-
"kind": "field",
|
|
4562
|
-
"name": "disabled",
|
|
4563
|
-
"type": {
|
|
4564
|
-
"text": "boolean"
|
|
4565
|
-
},
|
|
4566
|
-
"privacy": "public",
|
|
4567
|
-
"default": "false",
|
|
4568
|
-
"attribute": "disabled"
|
|
4569
|
-
}
|
|
4570
|
-
],
|
|
4571
|
-
"events": [
|
|
4572
|
-
{
|
|
4573
|
-
"type": {
|
|
4574
|
-
"text": "CustomEvent<void>"
|
|
4575
|
-
},
|
|
4576
|
-
"description": "Fired when user confirms the prompt",
|
|
4577
|
-
"name": "forge-ai-confirmation-prompt-confirm"
|
|
4578
|
-
},
|
|
4579
|
-
{
|
|
4580
|
-
"type": {
|
|
4581
|
-
"text": "CustomEvent<void>"
|
|
4582
|
-
},
|
|
4583
|
-
"description": "Fired when user denies the prompt",
|
|
4584
|
-
"name": "forge-ai-confirmation-prompt-deny"
|
|
4585
|
-
}
|
|
4586
|
-
],
|
|
4587
|
-
"attributes": [
|
|
4588
|
-
{
|
|
4589
|
-
"name": "text",
|
|
4590
|
-
"type": {
|
|
4591
|
-
"text": "string"
|
|
4592
|
-
},
|
|
4593
|
-
"default": "''",
|
|
4594
|
-
"fieldName": "text"
|
|
4595
|
-
},
|
|
4596
|
-
{
|
|
4597
|
-
"name": "confirm-text",
|
|
4598
|
-
"type": {
|
|
4599
|
-
"text": "string"
|
|
4600
|
-
},
|
|
4601
|
-
"default": "'Confirm'",
|
|
4602
|
-
"fieldName": "confirmText"
|
|
4603
|
-
},
|
|
4604
|
-
{
|
|
4605
|
-
"name": "deny-text",
|
|
4606
|
-
"type": {
|
|
4607
|
-
"text": "string"
|
|
4608
|
-
},
|
|
4609
|
-
"default": "'Deny'",
|
|
4610
|
-
"fieldName": "denyText"
|
|
4611
|
-
},
|
|
4612
|
-
{
|
|
4613
|
-
"name": "disabled",
|
|
4614
|
-
"type": {
|
|
4615
|
-
"text": "boolean"
|
|
4616
|
-
},
|
|
4617
|
-
"default": "false",
|
|
4618
|
-
"fieldName": "disabled"
|
|
4619
|
-
}
|
|
4620
|
-
],
|
|
4621
|
-
"superclass": {
|
|
4622
|
-
"name": "LitElement",
|
|
4623
|
-
"package": "lit"
|
|
4624
|
-
},
|
|
4625
|
-
"tagName": "forge-ai-confirmation-prompt",
|
|
4626
|
-
"customElement": true,
|
|
4627
|
-
"summary": "Displays a confirmation UI for requiring human approval."
|
|
4628
|
-
}
|
|
4629
|
-
],
|
|
4630
|
-
"exports": [
|
|
4631
|
-
{
|
|
4632
|
-
"kind": "js",
|
|
4633
|
-
"name": "AiConfirmationPromptComponentTagName",
|
|
4634
|
-
"declaration": {
|
|
4635
|
-
"name": "AiConfirmationPromptComponentTagName",
|
|
4636
|
-
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
4637
|
-
}
|
|
4638
|
-
},
|
|
4639
|
-
{
|
|
4640
|
-
"kind": "js",
|
|
4641
|
-
"name": "AiConfirmationPromptComponent",
|
|
4642
|
-
"declaration": {
|
|
4643
|
-
"name": "AiConfirmationPromptComponent",
|
|
4644
|
-
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
4645
|
-
}
|
|
4646
|
-
},
|
|
4647
|
-
{
|
|
4648
|
-
"kind": "custom-element-definition",
|
|
4649
|
-
"declaration": {
|
|
4650
|
-
"name": "AiConfirmationPromptComponent",
|
|
4651
|
-
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
4652
|
-
}
|
|
4653
|
-
}
|
|
4654
|
-
]
|
|
4655
|
-
},
|
|
4656
4576
|
{
|
|
4657
4577
|
"kind": "javascript-module",
|
|
4658
4578
|
"path": "src/lib/ai-dialog/ai-dialog.ts",
|
|
@@ -6807,10 +6727,10 @@
|
|
|
6807
6727
|
},
|
|
6808
6728
|
{
|
|
6809
6729
|
"type": {
|
|
6810
|
-
"text": "CustomEvent<
|
|
6730
|
+
"text": "CustomEvent<ForgeAiMessageThreadResendEventData>"
|
|
6811
6731
|
},
|
|
6812
|
-
"description": "Fired when user clicks
|
|
6813
|
-
"name": "forge-ai-message-thread-
|
|
6732
|
+
"description": "Fired when user clicks resend on a message",
|
|
6733
|
+
"name": "forge-ai-message-thread-resend"
|
|
6814
6734
|
},
|
|
6815
6735
|
{
|
|
6816
6736
|
"type": {
|
|
@@ -7653,143 +7573,263 @@
|
|
|
7653
7573
|
},
|
|
7654
7574
|
{
|
|
7655
7575
|
"kind": "javascript-module",
|
|
7656
|
-
"path": "src/lib/ai-
|
|
7576
|
+
"path": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts",
|
|
7657
7577
|
"declarations": [
|
|
7658
7578
|
{
|
|
7659
7579
|
"kind": "variable",
|
|
7660
|
-
"name": "
|
|
7580
|
+
"name": "AiResponseMessageToolbarComponentTagName",
|
|
7661
7581
|
"type": {
|
|
7662
7582
|
"text": "keyof HTMLElementTagNameMap"
|
|
7663
7583
|
},
|
|
7664
|
-
"default": "'forge-ai-
|
|
7584
|
+
"default": "'forge-ai-response-message-toolbar'"
|
|
7665
7585
|
},
|
|
7666
7586
|
{
|
|
7667
7587
|
"kind": "class",
|
|
7668
7588
|
"description": "",
|
|
7669
|
-
"name": "
|
|
7670
|
-
"slots": [
|
|
7671
|
-
{
|
|
7672
|
-
"description": "Default slot for sidebar content (typically ai-chat-interface)",
|
|
7673
|
-
"name": ""
|
|
7674
|
-
}
|
|
7675
|
-
],
|
|
7589
|
+
"name": "AiResponseMessageToolbarComponent",
|
|
7676
7590
|
"members": [
|
|
7677
7591
|
{
|
|
7678
7592
|
"kind": "field",
|
|
7679
|
-
"name": "
|
|
7593
|
+
"name": "enableReactions",
|
|
7680
7594
|
"type": {
|
|
7681
7595
|
"text": "boolean"
|
|
7682
7596
|
},
|
|
7683
7597
|
"privacy": "public",
|
|
7684
7598
|
"default": "false",
|
|
7685
|
-
"
|
|
7686
|
-
"attribute": "open"
|
|
7599
|
+
"attribute": "enable-reactions"
|
|
7687
7600
|
},
|
|
7688
7601
|
{
|
|
7689
|
-
"kind": "
|
|
7690
|
-
"name": "
|
|
7691
|
-
"
|
|
7692
|
-
|
|
7693
|
-
"type": {
|
|
7694
|
-
"text": "void"
|
|
7695
|
-
}
|
|
7602
|
+
"kind": "field",
|
|
7603
|
+
"name": "feedbackType",
|
|
7604
|
+
"type": {
|
|
7605
|
+
"text": "FeedbackType | undefined"
|
|
7696
7606
|
},
|
|
7697
|
-
"description": "Opens the sidebar."
|
|
7698
|
-
},
|
|
7699
|
-
{
|
|
7700
|
-
"kind": "method",
|
|
7701
|
-
"name": "close",
|
|
7702
7607
|
"privacy": "public",
|
|
7703
|
-
"
|
|
7704
|
-
"type": {
|
|
7705
|
-
"text": "void"
|
|
7706
|
-
}
|
|
7707
|
-
},
|
|
7708
|
-
"description": "Closes the sidebar."
|
|
7608
|
+
"attribute": "feedback-type"
|
|
7709
7609
|
},
|
|
7710
7610
|
{
|
|
7711
|
-
"kind": "
|
|
7712
|
-
"name": "
|
|
7713
|
-
"
|
|
7714
|
-
|
|
7715
|
-
"type": {
|
|
7716
|
-
"text": "void"
|
|
7717
|
-
}
|
|
7611
|
+
"kind": "field",
|
|
7612
|
+
"name": "feedbackReason",
|
|
7613
|
+
"type": {
|
|
7614
|
+
"text": "string | undefined"
|
|
7718
7615
|
},
|
|
7719
|
-
"
|
|
7616
|
+
"privacy": "public",
|
|
7617
|
+
"attribute": "feedback-reason"
|
|
7720
7618
|
}
|
|
7721
7619
|
],
|
|
7722
7620
|
"events": [
|
|
7723
7621
|
{
|
|
7724
|
-
"
|
|
7725
|
-
|
|
7622
|
+
"type": {
|
|
7623
|
+
"text": "CustomEvent<ForgeAiResponseMessageToolbarActionEventData>"
|
|
7624
|
+
},
|
|
7625
|
+
"description": "Fired when an action button is clicked. The detail contains the action type.",
|
|
7626
|
+
"name": "forge-ai-response-message-toolbar-action"
|
|
7726
7627
|
},
|
|
7727
7628
|
{
|
|
7728
|
-
"
|
|
7729
|
-
|
|
7629
|
+
"type": {
|
|
7630
|
+
"text": "CustomEvent<ForgeAiResponseMessageToolbarFeedbackEventData>"
|
|
7631
|
+
},
|
|
7632
|
+
"description": "Fired when feedback is submitted. The detail contains the action and optional feedback text.",
|
|
7633
|
+
"name": "forge-ai-response-message-toolbar-feedback"
|
|
7730
7634
|
}
|
|
7731
7635
|
],
|
|
7732
7636
|
"attributes": [
|
|
7733
7637
|
{
|
|
7734
|
-
"name": "
|
|
7638
|
+
"name": "enable-reactions",
|
|
7735
7639
|
"type": {
|
|
7736
7640
|
"text": "boolean"
|
|
7737
7641
|
},
|
|
7738
7642
|
"default": "false",
|
|
7739
|
-
"
|
|
7740
|
-
|
|
7643
|
+
"fieldName": "enableReactions"
|
|
7644
|
+
},
|
|
7645
|
+
{
|
|
7646
|
+
"name": "feedback-type",
|
|
7647
|
+
"type": {
|
|
7648
|
+
"text": "FeedbackType | undefined"
|
|
7649
|
+
},
|
|
7650
|
+
"fieldName": "feedbackType"
|
|
7651
|
+
},
|
|
7652
|
+
{
|
|
7653
|
+
"name": "feedback-reason",
|
|
7654
|
+
"type": {
|
|
7655
|
+
"text": "string | undefined"
|
|
7656
|
+
},
|
|
7657
|
+
"fieldName": "feedbackReason"
|
|
7741
7658
|
}
|
|
7742
7659
|
],
|
|
7743
7660
|
"superclass": {
|
|
7744
7661
|
"name": "LitElement",
|
|
7745
7662
|
"package": "lit"
|
|
7746
7663
|
},
|
|
7747
|
-
"tagName": "forge-ai-
|
|
7664
|
+
"tagName": "forge-ai-response-message-toolbar",
|
|
7748
7665
|
"customElement": true
|
|
7749
7666
|
}
|
|
7750
7667
|
],
|
|
7751
7668
|
"exports": [
|
|
7752
7669
|
{
|
|
7753
7670
|
"kind": "js",
|
|
7754
|
-
"name": "
|
|
7671
|
+
"name": "AiResponseMessageToolbarComponentTagName",
|
|
7755
7672
|
"declaration": {
|
|
7756
|
-
"name": "
|
|
7757
|
-
"module": "src/lib/ai-
|
|
7673
|
+
"name": "AiResponseMessageToolbarComponentTagName",
|
|
7674
|
+
"module": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts"
|
|
7758
7675
|
}
|
|
7759
7676
|
},
|
|
7760
7677
|
{
|
|
7761
7678
|
"kind": "js",
|
|
7762
|
-
"name": "
|
|
7679
|
+
"name": "AiResponseMessageToolbarComponent",
|
|
7763
7680
|
"declaration": {
|
|
7764
|
-
"name": "
|
|
7765
|
-
"module": "src/lib/ai-
|
|
7681
|
+
"name": "AiResponseMessageToolbarComponent",
|
|
7682
|
+
"module": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts"
|
|
7766
7683
|
}
|
|
7767
7684
|
},
|
|
7768
7685
|
{
|
|
7769
7686
|
"kind": "custom-element-definition",
|
|
7770
7687
|
"declaration": {
|
|
7771
|
-
"name": "
|
|
7772
|
-
"module": "src/lib/ai-
|
|
7688
|
+
"name": "AiResponseMessageToolbarComponent",
|
|
7689
|
+
"module": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts"
|
|
7773
7690
|
}
|
|
7774
7691
|
}
|
|
7775
7692
|
]
|
|
7776
7693
|
},
|
|
7777
7694
|
{
|
|
7778
7695
|
"kind": "javascript-module",
|
|
7779
|
-
"path": "src/lib/ai-sidebar
|
|
7696
|
+
"path": "src/lib/ai-sidebar/ai-sidebar.ts",
|
|
7780
7697
|
"declarations": [
|
|
7781
7698
|
{
|
|
7782
7699
|
"kind": "variable",
|
|
7783
|
-
"name": "
|
|
7700
|
+
"name": "AiSidebarComponentTagName",
|
|
7784
7701
|
"type": {
|
|
7785
7702
|
"text": "keyof HTMLElementTagNameMap"
|
|
7786
7703
|
},
|
|
7787
|
-
"default": "'forge-ai-sidebar
|
|
7704
|
+
"default": "'forge-ai-sidebar'"
|
|
7788
7705
|
},
|
|
7789
7706
|
{
|
|
7790
7707
|
"kind": "class",
|
|
7791
7708
|
"description": "",
|
|
7792
|
-
"name": "
|
|
7709
|
+
"name": "AiSidebarComponent",
|
|
7710
|
+
"slots": [
|
|
7711
|
+
{
|
|
7712
|
+
"description": "Default slot for sidebar content (typically ai-chat-interface)",
|
|
7713
|
+
"name": ""
|
|
7714
|
+
}
|
|
7715
|
+
],
|
|
7716
|
+
"members": [
|
|
7717
|
+
{
|
|
7718
|
+
"kind": "field",
|
|
7719
|
+
"name": "open",
|
|
7720
|
+
"type": {
|
|
7721
|
+
"text": "boolean"
|
|
7722
|
+
},
|
|
7723
|
+
"privacy": "public",
|
|
7724
|
+
"default": "false",
|
|
7725
|
+
"description": "Indicates whether the sidebar is open.",
|
|
7726
|
+
"attribute": "open"
|
|
7727
|
+
},
|
|
7728
|
+
{
|
|
7729
|
+
"kind": "method",
|
|
7730
|
+
"name": "show",
|
|
7731
|
+
"privacy": "public",
|
|
7732
|
+
"return": {
|
|
7733
|
+
"type": {
|
|
7734
|
+
"text": "void"
|
|
7735
|
+
}
|
|
7736
|
+
},
|
|
7737
|
+
"description": "Opens the sidebar."
|
|
7738
|
+
},
|
|
7739
|
+
{
|
|
7740
|
+
"kind": "method",
|
|
7741
|
+
"name": "close",
|
|
7742
|
+
"privacy": "public",
|
|
7743
|
+
"return": {
|
|
7744
|
+
"type": {
|
|
7745
|
+
"text": "void"
|
|
7746
|
+
}
|
|
7747
|
+
},
|
|
7748
|
+
"description": "Closes the sidebar."
|
|
7749
|
+
},
|
|
7750
|
+
{
|
|
7751
|
+
"kind": "method",
|
|
7752
|
+
"name": "toggle",
|
|
7753
|
+
"privacy": "public",
|
|
7754
|
+
"return": {
|
|
7755
|
+
"type": {
|
|
7756
|
+
"text": "void"
|
|
7757
|
+
}
|
|
7758
|
+
},
|
|
7759
|
+
"description": "Toggles the sidebar open state."
|
|
7760
|
+
}
|
|
7761
|
+
],
|
|
7762
|
+
"events": [
|
|
7763
|
+
{
|
|
7764
|
+
"description": "Fired when the sidebar is opened",
|
|
7765
|
+
"name": "forge-ai-sidebar-open"
|
|
7766
|
+
},
|
|
7767
|
+
{
|
|
7768
|
+
"description": "Fired when the sidebar is closed",
|
|
7769
|
+
"name": "forge-ai-sidebar-close"
|
|
7770
|
+
}
|
|
7771
|
+
],
|
|
7772
|
+
"attributes": [
|
|
7773
|
+
{
|
|
7774
|
+
"name": "open",
|
|
7775
|
+
"type": {
|
|
7776
|
+
"text": "boolean"
|
|
7777
|
+
},
|
|
7778
|
+
"default": "false",
|
|
7779
|
+
"description": "Indicates whether the sidebar is open.",
|
|
7780
|
+
"fieldName": "open"
|
|
7781
|
+
}
|
|
7782
|
+
],
|
|
7783
|
+
"superclass": {
|
|
7784
|
+
"name": "LitElement",
|
|
7785
|
+
"package": "lit"
|
|
7786
|
+
},
|
|
7787
|
+
"tagName": "forge-ai-sidebar",
|
|
7788
|
+
"customElement": true
|
|
7789
|
+
}
|
|
7790
|
+
],
|
|
7791
|
+
"exports": [
|
|
7792
|
+
{
|
|
7793
|
+
"kind": "js",
|
|
7794
|
+
"name": "AiSidebarComponentTagName",
|
|
7795
|
+
"declaration": {
|
|
7796
|
+
"name": "AiSidebarComponentTagName",
|
|
7797
|
+
"module": "src/lib/ai-sidebar/ai-sidebar.ts"
|
|
7798
|
+
}
|
|
7799
|
+
},
|
|
7800
|
+
{
|
|
7801
|
+
"kind": "js",
|
|
7802
|
+
"name": "AiSidebarComponent",
|
|
7803
|
+
"declaration": {
|
|
7804
|
+
"name": "AiSidebarComponent",
|
|
7805
|
+
"module": "src/lib/ai-sidebar/ai-sidebar.ts"
|
|
7806
|
+
}
|
|
7807
|
+
},
|
|
7808
|
+
{
|
|
7809
|
+
"kind": "custom-element-definition",
|
|
7810
|
+
"declaration": {
|
|
7811
|
+
"name": "AiSidebarComponent",
|
|
7812
|
+
"module": "src/lib/ai-sidebar/ai-sidebar.ts"
|
|
7813
|
+
}
|
|
7814
|
+
}
|
|
7815
|
+
]
|
|
7816
|
+
},
|
|
7817
|
+
{
|
|
7818
|
+
"kind": "javascript-module",
|
|
7819
|
+
"path": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts",
|
|
7820
|
+
"declarations": [
|
|
7821
|
+
{
|
|
7822
|
+
"kind": "variable",
|
|
7823
|
+
"name": "AiSidebarChatComponentTagName",
|
|
7824
|
+
"type": {
|
|
7825
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
7826
|
+
},
|
|
7827
|
+
"default": "'forge-ai-sidebar-chat'"
|
|
7828
|
+
},
|
|
7829
|
+
{
|
|
7830
|
+
"kind": "class",
|
|
7831
|
+
"description": "",
|
|
7832
|
+
"name": "AiSidebarChatComponent",
|
|
7793
7833
|
"slots": [
|
|
7794
7834
|
{
|
|
7795
7835
|
"description": "Default slot for chatbot component",
|
|
@@ -8184,372 +8224,552 @@
|
|
|
8184
8224
|
},
|
|
8185
8225
|
{
|
|
8186
8226
|
"kind": "javascript-module",
|
|
8187
|
-
"path": "src/lib/ai-
|
|
8227
|
+
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
8188
8228
|
"declarations": [
|
|
8189
8229
|
{
|
|
8190
8230
|
"kind": "variable",
|
|
8191
|
-
"name": "
|
|
8231
|
+
"name": "AiSuggestionsComponentTagName",
|
|
8192
8232
|
"type": {
|
|
8193
8233
|
"text": "keyof HTMLElementTagNameMap"
|
|
8194
8234
|
},
|
|
8195
|
-
"default": "'forge-ai-
|
|
8235
|
+
"default": "'forge-ai-suggestions'"
|
|
8196
8236
|
},
|
|
8197
8237
|
{
|
|
8198
8238
|
"kind": "class",
|
|
8199
8239
|
"description": "",
|
|
8200
|
-
"name": "
|
|
8201
|
-
"
|
|
8240
|
+
"name": "AiSuggestionsComponent",
|
|
8241
|
+
"cssProperties": [
|
|
8202
8242
|
{
|
|
8203
|
-
"description": "
|
|
8204
|
-
"name": ""
|
|
8243
|
+
"description": "The maximum width of the suggestion buttons in inline layout.",
|
|
8244
|
+
"name": "--forge-ai-suggestion-max-width"
|
|
8205
8245
|
}
|
|
8206
8246
|
],
|
|
8207
8247
|
"members": [
|
|
8208
8248
|
{
|
|
8209
8249
|
"kind": "field",
|
|
8210
|
-
"name": "
|
|
8250
|
+
"name": "suggestions",
|
|
8211
8251
|
"type": {
|
|
8212
|
-
"text": "
|
|
8252
|
+
"text": "Suggestion[]"
|
|
8213
8253
|
},
|
|
8214
8254
|
"privacy": "public",
|
|
8215
8255
|
"default": "[]",
|
|
8216
|
-
"description": "Array of
|
|
8217
|
-
|
|
8256
|
+
"description": "Array of suggestion objects to display"
|
|
8257
|
+
},
|
|
8258
|
+
{
|
|
8259
|
+
"kind": "field",
|
|
8260
|
+
"name": "variant",
|
|
8261
|
+
"type": {
|
|
8262
|
+
"text": "AiSuggestionsVariant"
|
|
8263
|
+
},
|
|
8264
|
+
"privacy": "public",
|
|
8265
|
+
"default": "'inline'",
|
|
8266
|
+
"description": "Display variant for suggestions layout",
|
|
8267
|
+
"attribute": "variant"
|
|
8218
8268
|
}
|
|
8219
8269
|
],
|
|
8220
8270
|
"events": [
|
|
8221
8271
|
{
|
|
8222
8272
|
"type": {
|
|
8223
|
-
"text": "CustomEvent<
|
|
8273
|
+
"text": "CustomEvent<ForgeAiSuggestionsEventData>"
|
|
8224
8274
|
},
|
|
8225
|
-
"description": "Fired when a
|
|
8226
|
-
"name": "forge-ai-
|
|
8275
|
+
"description": "Fired when a suggestion is selected.",
|
|
8276
|
+
"name": "forge-ai-suggestions-select"
|
|
8277
|
+
}
|
|
8278
|
+
],
|
|
8279
|
+
"attributes": [
|
|
8280
|
+
{
|
|
8281
|
+
"name": "variant",
|
|
8282
|
+
"type": {
|
|
8283
|
+
"text": "AiSuggestionsVariant"
|
|
8284
|
+
},
|
|
8285
|
+
"default": "'inline'",
|
|
8286
|
+
"description": "Display variant for suggestions layout",
|
|
8287
|
+
"fieldName": "variant"
|
|
8288
|
+
}
|
|
8289
|
+
],
|
|
8290
|
+
"superclass": {
|
|
8291
|
+
"name": "LitElement",
|
|
8292
|
+
"package": "lit"
|
|
8293
|
+
},
|
|
8294
|
+
"tagName": "forge-ai-suggestions",
|
|
8295
|
+
"customElement": true,
|
|
8296
|
+
"states": [
|
|
8297
|
+
{
|
|
8298
|
+
"name": "inline",
|
|
8299
|
+
"description": "The suggestions are displayed inline."
|
|
8227
8300
|
},
|
|
8228
8301
|
{
|
|
8302
|
+
"name": "block",
|
|
8303
|
+
"description": "The suggestions are displayed as blocks."
|
|
8304
|
+
}
|
|
8305
|
+
]
|
|
8306
|
+
}
|
|
8307
|
+
],
|
|
8308
|
+
"exports": [
|
|
8309
|
+
{
|
|
8310
|
+
"kind": "js",
|
|
8311
|
+
"name": "AiSuggestionsComponentTagName",
|
|
8312
|
+
"declaration": {
|
|
8313
|
+
"name": "AiSuggestionsComponentTagName",
|
|
8314
|
+
"module": "src/lib/ai-suggestions/ai-suggestions.ts"
|
|
8315
|
+
}
|
|
8316
|
+
},
|
|
8317
|
+
{
|
|
8318
|
+
"kind": "js",
|
|
8319
|
+
"name": "AiSuggestionsComponent",
|
|
8320
|
+
"declaration": {
|
|
8321
|
+
"name": "AiSuggestionsComponent",
|
|
8322
|
+
"module": "src/lib/ai-suggestions/ai-suggestions.ts"
|
|
8323
|
+
}
|
|
8324
|
+
},
|
|
8325
|
+
{
|
|
8326
|
+
"kind": "custom-element-definition",
|
|
8327
|
+
"declaration": {
|
|
8328
|
+
"name": "AiSuggestionsComponent",
|
|
8329
|
+
"module": "src/lib/ai-suggestions/ai-suggestions.ts"
|
|
8330
|
+
}
|
|
8331
|
+
}
|
|
8332
|
+
]
|
|
8333
|
+
},
|
|
8334
|
+
{
|
|
8335
|
+
"kind": "javascript-module",
|
|
8336
|
+
"path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
|
|
8337
|
+
"declarations": [
|
|
8338
|
+
{
|
|
8339
|
+
"kind": "variable",
|
|
8340
|
+
"name": "AiThinkingIndicatorComponentTagName",
|
|
8341
|
+
"type": {
|
|
8342
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
8343
|
+
},
|
|
8344
|
+
"default": "'forge-ai-thinking-indicator'"
|
|
8345
|
+
},
|
|
8346
|
+
{
|
|
8347
|
+
"kind": "class",
|
|
8348
|
+
"description": "",
|
|
8349
|
+
"name": "AiThinkingIndicatorComponent",
|
|
8350
|
+
"members": [
|
|
8351
|
+
{
|
|
8352
|
+
"kind": "field",
|
|
8353
|
+
"name": "showText",
|
|
8229
8354
|
"type": {
|
|
8230
|
-
"text": "
|
|
8355
|
+
"text": "boolean"
|
|
8231
8356
|
},
|
|
8232
|
-
"
|
|
8233
|
-
"
|
|
8357
|
+
"privacy": "public",
|
|
8358
|
+
"default": "false",
|
|
8359
|
+
"attribute": "show-text"
|
|
8234
8360
|
},
|
|
8235
8361
|
{
|
|
8362
|
+
"kind": "field",
|
|
8363
|
+
"name": "initialDelay",
|
|
8236
8364
|
"type": {
|
|
8237
|
-
"text": "
|
|
8365
|
+
"text": "number"
|
|
8238
8366
|
},
|
|
8239
|
-
"
|
|
8240
|
-
"
|
|
8367
|
+
"privacy": "public",
|
|
8368
|
+
"default": "0",
|
|
8369
|
+
"attribute": "initial-delay"
|
|
8370
|
+
},
|
|
8371
|
+
{
|
|
8372
|
+
"kind": "field",
|
|
8373
|
+
"name": "cycleInterval",
|
|
8374
|
+
"type": {
|
|
8375
|
+
"text": "number"
|
|
8376
|
+
},
|
|
8377
|
+
"privacy": "public",
|
|
8378
|
+
"default": "5000",
|
|
8379
|
+
"attribute": "cycle-interval"
|
|
8241
8380
|
}
|
|
8242
8381
|
],
|
|
8243
8382
|
"attributes": [
|
|
8244
8383
|
{
|
|
8245
|
-
"name": "
|
|
8384
|
+
"name": "show-text",
|
|
8246
8385
|
"type": {
|
|
8247
|
-
"text": "
|
|
8386
|
+
"text": "boolean"
|
|
8248
8387
|
},
|
|
8249
|
-
"default": "
|
|
8250
|
-
"
|
|
8251
|
-
|
|
8388
|
+
"default": "false",
|
|
8389
|
+
"fieldName": "showText"
|
|
8390
|
+
},
|
|
8391
|
+
{
|
|
8392
|
+
"name": "initial-delay",
|
|
8393
|
+
"type": {
|
|
8394
|
+
"text": "number"
|
|
8395
|
+
},
|
|
8396
|
+
"default": "0",
|
|
8397
|
+
"fieldName": "initialDelay"
|
|
8398
|
+
},
|
|
8399
|
+
{
|
|
8400
|
+
"name": "cycle-interval",
|
|
8401
|
+
"type": {
|
|
8402
|
+
"text": "number"
|
|
8403
|
+
},
|
|
8404
|
+
"default": "5000",
|
|
8405
|
+
"fieldName": "cycleInterval"
|
|
8252
8406
|
}
|
|
8253
8407
|
],
|
|
8254
8408
|
"superclass": {
|
|
8255
8409
|
"name": "LitElement",
|
|
8256
8410
|
"package": "lit"
|
|
8257
8411
|
},
|
|
8258
|
-
"tagName": "forge-ai-
|
|
8259
|
-
"customElement": true
|
|
8412
|
+
"tagName": "forge-ai-thinking-indicator",
|
|
8413
|
+
"customElement": true,
|
|
8414
|
+
"summary": "A thinking indicator component that displays three animated dots to show that the system is processing or awaiting a response."
|
|
8260
8415
|
}
|
|
8261
8416
|
],
|
|
8262
8417
|
"exports": [
|
|
8263
8418
|
{
|
|
8264
8419
|
"kind": "js",
|
|
8265
|
-
"name": "
|
|
8420
|
+
"name": "AiThinkingIndicatorComponentTagName",
|
|
8266
8421
|
"declaration": {
|
|
8267
|
-
"name": "
|
|
8268
|
-
"module": "src/lib/ai-
|
|
8422
|
+
"name": "AiThinkingIndicatorComponentTagName",
|
|
8423
|
+
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
8269
8424
|
}
|
|
8270
8425
|
},
|
|
8271
8426
|
{
|
|
8272
8427
|
"kind": "js",
|
|
8273
|
-
"name": "
|
|
8428
|
+
"name": "AiThinkingIndicatorComponent",
|
|
8274
8429
|
"declaration": {
|
|
8275
|
-
"name": "
|
|
8276
|
-
"module": "src/lib/ai-
|
|
8430
|
+
"name": "AiThinkingIndicatorComponent",
|
|
8431
|
+
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
8277
8432
|
}
|
|
8278
8433
|
},
|
|
8279
8434
|
{
|
|
8280
8435
|
"kind": "custom-element-definition",
|
|
8281
8436
|
"declaration": {
|
|
8282
|
-
"name": "
|
|
8283
|
-
"module": "src/lib/ai-
|
|
8437
|
+
"name": "AiThinkingIndicatorComponent",
|
|
8438
|
+
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
8284
8439
|
}
|
|
8285
8440
|
}
|
|
8286
8441
|
]
|
|
8287
8442
|
},
|
|
8288
8443
|
{
|
|
8289
8444
|
"kind": "javascript-module",
|
|
8290
|
-
"path": "src/lib/ai-
|
|
8445
|
+
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
8291
8446
|
"declarations": [
|
|
8292
8447
|
{
|
|
8293
8448
|
"kind": "variable",
|
|
8294
|
-
"name": "
|
|
8449
|
+
"name": "AiUserMessageComponentTagName",
|
|
8295
8450
|
"type": {
|
|
8296
8451
|
"text": "keyof HTMLElementTagNameMap"
|
|
8297
8452
|
},
|
|
8298
|
-
"default": "'forge-ai-
|
|
8453
|
+
"default": "'forge-ai-user-message'"
|
|
8299
8454
|
},
|
|
8300
8455
|
{
|
|
8301
8456
|
"kind": "class",
|
|
8302
8457
|
"description": "",
|
|
8303
|
-
"name": "
|
|
8304
|
-
"cssProperties": [
|
|
8305
|
-
{
|
|
8306
|
-
"description": "The maximum width of the suggestion buttons in inline layout.",
|
|
8307
|
-
"name": "--forge-ai-suggestion-max-width"
|
|
8308
|
-
}
|
|
8309
|
-
],
|
|
8458
|
+
"name": "AiUserMessageComponent",
|
|
8310
8459
|
"members": [
|
|
8311
8460
|
{
|
|
8312
8461
|
"kind": "field",
|
|
8313
|
-
"name": "
|
|
8462
|
+
"name": "timestamp",
|
|
8314
8463
|
"type": {
|
|
8315
|
-
"text": "
|
|
8464
|
+
"text": "number | undefined"
|
|
8465
|
+
},
|
|
8466
|
+
"privacy": "public"
|
|
8467
|
+
},
|
|
8468
|
+
{
|
|
8469
|
+
"kind": "field",
|
|
8470
|
+
"name": "messageId",
|
|
8471
|
+
"type": {
|
|
8472
|
+
"text": "string | undefined"
|
|
8316
8473
|
},
|
|
8317
8474
|
"privacy": "public",
|
|
8318
|
-
"
|
|
8319
|
-
"description": "Array of suggestion objects to display"
|
|
8475
|
+
"attribute": "message-id"
|
|
8320
8476
|
},
|
|
8321
8477
|
{
|
|
8322
8478
|
"kind": "field",
|
|
8323
|
-
"name": "
|
|
8479
|
+
"name": "streaming",
|
|
8324
8480
|
"type": {
|
|
8325
|
-
"text": "
|
|
8481
|
+
"text": "boolean"
|
|
8326
8482
|
},
|
|
8327
8483
|
"privacy": "public",
|
|
8328
|
-
"default": "
|
|
8329
|
-
"
|
|
8330
|
-
|
|
8484
|
+
"default": "false",
|
|
8485
|
+
"attribute": "streaming"
|
|
8486
|
+
},
|
|
8487
|
+
{
|
|
8488
|
+
"kind": "field",
|
|
8489
|
+
"name": "content",
|
|
8490
|
+
"type": {
|
|
8491
|
+
"text": "string | undefined"
|
|
8492
|
+
},
|
|
8493
|
+
"privacy": "public"
|
|
8494
|
+
}
|
|
8495
|
+
],
|
|
8496
|
+
"events": [
|
|
8497
|
+
{
|
|
8498
|
+
"name": "forge-ai-user-message-copy",
|
|
8499
|
+
"type": {
|
|
8500
|
+
"text": "CustomEvent<ForgeAiUserMessageCopyEventData>"
|
|
8501
|
+
},
|
|
8502
|
+
"description": "Fired when user clicks copy button"
|
|
8503
|
+
},
|
|
8504
|
+
{
|
|
8505
|
+
"name": "forge-ai-user-message-resend",
|
|
8506
|
+
"type": {
|
|
8507
|
+
"text": "CustomEvent<ForgeAiUserMessageResendEventData>"
|
|
8508
|
+
},
|
|
8509
|
+
"description": "Fired when user clicks resend button"
|
|
8510
|
+
},
|
|
8511
|
+
{
|
|
8512
|
+
"name": "forge-ai-user-message-edit",
|
|
8513
|
+
"type": {
|
|
8514
|
+
"text": "CustomEvent<ForgeAiUserMessageEditEventData>"
|
|
8515
|
+
},
|
|
8516
|
+
"description": "Fired when user saves edited message"
|
|
8517
|
+
}
|
|
8518
|
+
],
|
|
8519
|
+
"attributes": [
|
|
8520
|
+
{
|
|
8521
|
+
"name": "message-id",
|
|
8522
|
+
"type": {
|
|
8523
|
+
"text": "string | undefined"
|
|
8524
|
+
},
|
|
8525
|
+
"fieldName": "messageId"
|
|
8526
|
+
},
|
|
8527
|
+
{
|
|
8528
|
+
"name": "streaming",
|
|
8529
|
+
"type": {
|
|
8530
|
+
"text": "boolean"
|
|
8531
|
+
},
|
|
8532
|
+
"default": "false",
|
|
8533
|
+
"fieldName": "streaming"
|
|
8534
|
+
}
|
|
8535
|
+
],
|
|
8536
|
+
"superclass": {
|
|
8537
|
+
"name": "LitElement",
|
|
8538
|
+
"package": "lit"
|
|
8539
|
+
},
|
|
8540
|
+
"tagName": "forge-ai-user-message",
|
|
8541
|
+
"customElement": true
|
|
8542
|
+
}
|
|
8543
|
+
],
|
|
8544
|
+
"exports": [
|
|
8545
|
+
{
|
|
8546
|
+
"kind": "js",
|
|
8547
|
+
"name": "AiUserMessageComponentTagName",
|
|
8548
|
+
"declaration": {
|
|
8549
|
+
"name": "AiUserMessageComponentTagName",
|
|
8550
|
+
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
8551
|
+
}
|
|
8552
|
+
},
|
|
8553
|
+
{
|
|
8554
|
+
"kind": "js",
|
|
8555
|
+
"name": "AiUserMessageComponent",
|
|
8556
|
+
"declaration": {
|
|
8557
|
+
"name": "AiUserMessageComponent",
|
|
8558
|
+
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
8559
|
+
}
|
|
8560
|
+
},
|
|
8561
|
+
{
|
|
8562
|
+
"kind": "custom-element-definition",
|
|
8563
|
+
"declaration": {
|
|
8564
|
+
"name": "AiUserMessageComponent",
|
|
8565
|
+
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
8566
|
+
}
|
|
8567
|
+
}
|
|
8568
|
+
]
|
|
8569
|
+
},
|
|
8570
|
+
{
|
|
8571
|
+
"kind": "javascript-module",
|
|
8572
|
+
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
8573
|
+
"declarations": [
|
|
8574
|
+
{
|
|
8575
|
+
"kind": "variable",
|
|
8576
|
+
"name": "AiThreadsComponentTagName",
|
|
8577
|
+
"type": {
|
|
8578
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
8579
|
+
},
|
|
8580
|
+
"default": "'forge-ai-threads'"
|
|
8581
|
+
},
|
|
8582
|
+
{
|
|
8583
|
+
"kind": "class",
|
|
8584
|
+
"description": "",
|
|
8585
|
+
"name": "AiThreadsComponent",
|
|
8586
|
+
"slots": [
|
|
8587
|
+
{
|
|
8588
|
+
"description": "Default slot for chatbot component",
|
|
8589
|
+
"name": ""
|
|
8590
|
+
}
|
|
8591
|
+
],
|
|
8592
|
+
"members": [
|
|
8593
|
+
{
|
|
8594
|
+
"kind": "field",
|
|
8595
|
+
"name": "threads",
|
|
8596
|
+
"type": {
|
|
8597
|
+
"text": "Thread[]"
|
|
8598
|
+
},
|
|
8599
|
+
"privacy": "public",
|
|
8600
|
+
"default": "[]",
|
|
8601
|
+
"description": "Array of threads to display in the navigation list",
|
|
8602
|
+
"attribute": "threads"
|
|
8331
8603
|
}
|
|
8332
8604
|
],
|
|
8333
8605
|
"events": [
|
|
8334
8606
|
{
|
|
8335
8607
|
"type": {
|
|
8336
|
-
"text": "CustomEvent<
|
|
8608
|
+
"text": "CustomEvent<ForgeAiThreadsSelectEventData>"
|
|
8609
|
+
},
|
|
8610
|
+
"description": "Fired when a thread is selected.",
|
|
8611
|
+
"name": "forge-ai-threads-select"
|
|
8612
|
+
},
|
|
8613
|
+
{
|
|
8614
|
+
"type": {
|
|
8615
|
+
"text": "CustomEvent"
|
|
8616
|
+
},
|
|
8617
|
+
"description": "Fired when the new chat button is clicked.",
|
|
8618
|
+
"name": "forge-ai-threads-new-chat"
|
|
8619
|
+
},
|
|
8620
|
+
{
|
|
8621
|
+
"type": {
|
|
8622
|
+
"text": "CustomEvent"
|
|
8337
8623
|
},
|
|
8338
|
-
"description": "Fired when
|
|
8339
|
-
"name": "forge-ai-
|
|
8624
|
+
"description": "Fired when the clear history button is clicked.",
|
|
8625
|
+
"name": "forge-ai-threads-clear-history"
|
|
8340
8626
|
}
|
|
8341
8627
|
],
|
|
8342
8628
|
"attributes": [
|
|
8343
8629
|
{
|
|
8344
|
-
"name": "
|
|
8630
|
+
"name": "threads",
|
|
8345
8631
|
"type": {
|
|
8346
|
-
"text": "
|
|
8632
|
+
"text": "Thread[]"
|
|
8347
8633
|
},
|
|
8348
|
-
"default": "
|
|
8349
|
-
"description": "
|
|
8350
|
-
"fieldName": "
|
|
8634
|
+
"default": "[]",
|
|
8635
|
+
"description": "Array of threads to display in the navigation list",
|
|
8636
|
+
"fieldName": "threads"
|
|
8351
8637
|
}
|
|
8352
8638
|
],
|
|
8353
8639
|
"superclass": {
|
|
8354
8640
|
"name": "LitElement",
|
|
8355
8641
|
"package": "lit"
|
|
8356
8642
|
},
|
|
8357
|
-
"tagName": "forge-ai-
|
|
8358
|
-
"customElement": true
|
|
8359
|
-
"states": [
|
|
8360
|
-
{
|
|
8361
|
-
"name": "inline",
|
|
8362
|
-
"description": "The suggestions are displayed inline."
|
|
8363
|
-
},
|
|
8364
|
-
{
|
|
8365
|
-
"name": "block",
|
|
8366
|
-
"description": "The suggestions are displayed as blocks."
|
|
8367
|
-
}
|
|
8368
|
-
]
|
|
8643
|
+
"tagName": "forge-ai-threads",
|
|
8644
|
+
"customElement": true
|
|
8369
8645
|
}
|
|
8370
8646
|
],
|
|
8371
8647
|
"exports": [
|
|
8372
8648
|
{
|
|
8373
8649
|
"kind": "js",
|
|
8374
|
-
"name": "
|
|
8650
|
+
"name": "AiThreadsComponentTagName",
|
|
8375
8651
|
"declaration": {
|
|
8376
|
-
"name": "
|
|
8377
|
-
"module": "src/lib/ai-
|
|
8652
|
+
"name": "AiThreadsComponentTagName",
|
|
8653
|
+
"module": "src/lib/ai-threads/ai-threads.ts"
|
|
8378
8654
|
}
|
|
8379
8655
|
},
|
|
8380
8656
|
{
|
|
8381
8657
|
"kind": "js",
|
|
8382
|
-
"name": "
|
|
8658
|
+
"name": "AiThreadsComponent",
|
|
8383
8659
|
"declaration": {
|
|
8384
|
-
"name": "
|
|
8385
|
-
"module": "src/lib/ai-
|
|
8660
|
+
"name": "AiThreadsComponent",
|
|
8661
|
+
"module": "src/lib/ai-threads/ai-threads.ts"
|
|
8386
8662
|
}
|
|
8387
8663
|
},
|
|
8388
8664
|
{
|
|
8389
8665
|
"kind": "custom-element-definition",
|
|
8390
8666
|
"declaration": {
|
|
8391
|
-
"name": "
|
|
8392
|
-
"module": "src/lib/ai-
|
|
8667
|
+
"name": "AiThreadsComponent",
|
|
8668
|
+
"module": "src/lib/ai-threads/ai-threads.ts"
|
|
8393
8669
|
}
|
|
8394
8670
|
}
|
|
8395
8671
|
]
|
|
8396
8672
|
},
|
|
8397
8673
|
{
|
|
8398
8674
|
"kind": "javascript-module",
|
|
8399
|
-
"path": "src/lib/ai-
|
|
8675
|
+
"path": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts",
|
|
8400
8676
|
"declarations": [
|
|
8401
8677
|
{
|
|
8402
8678
|
"kind": "variable",
|
|
8403
|
-
"name": "
|
|
8679
|
+
"name": "AiUserMessageToolbarComponentTagName",
|
|
8404
8680
|
"type": {
|
|
8405
8681
|
"text": "keyof HTMLElementTagNameMap"
|
|
8406
8682
|
},
|
|
8407
|
-
"default": "'forge-ai-
|
|
8683
|
+
"default": "'forge-ai-user-message-toolbar'"
|
|
8408
8684
|
},
|
|
8409
8685
|
{
|
|
8410
8686
|
"kind": "class",
|
|
8411
8687
|
"description": "",
|
|
8412
|
-
"name": "
|
|
8688
|
+
"name": "AiUserMessageToolbarComponent",
|
|
8413
8689
|
"members": [
|
|
8414
8690
|
{
|
|
8415
8691
|
"kind": "field",
|
|
8416
|
-
"name": "
|
|
8417
|
-
"type": {
|
|
8418
|
-
"text": "boolean"
|
|
8419
|
-
},
|
|
8420
|
-
"privacy": "public",
|
|
8421
|
-
"default": "false",
|
|
8422
|
-
"attribute": "show-text"
|
|
8423
|
-
},
|
|
8424
|
-
{
|
|
8425
|
-
"kind": "field",
|
|
8426
|
-
"name": "initialDelay",
|
|
8692
|
+
"name": "timestamp",
|
|
8427
8693
|
"type": {
|
|
8428
8694
|
"text": "number"
|
|
8429
8695
|
},
|
|
8430
|
-
"privacy": "public"
|
|
8431
|
-
"default": "0",
|
|
8432
|
-
"attribute": "initial-delay"
|
|
8696
|
+
"privacy": "public"
|
|
8433
8697
|
},
|
|
8434
8698
|
{
|
|
8435
8699
|
"kind": "field",
|
|
8436
|
-
"name": "
|
|
8700
|
+
"name": "streaming",
|
|
8437
8701
|
"type": {
|
|
8438
|
-
"text": "
|
|
8702
|
+
"text": "boolean"
|
|
8439
8703
|
},
|
|
8440
8704
|
"privacy": "public",
|
|
8441
|
-
"default": "
|
|
8442
|
-
"attribute": "
|
|
8705
|
+
"default": "false",
|
|
8706
|
+
"attribute": "streaming"
|
|
8443
8707
|
}
|
|
8444
8708
|
],
|
|
8445
|
-
"
|
|
8709
|
+
"events": [
|
|
8446
8710
|
{
|
|
8447
|
-
"name": "
|
|
8711
|
+
"name": "forge-ai-user-message-toolbar-copy",
|
|
8448
8712
|
"type": {
|
|
8449
|
-
"text": "
|
|
8713
|
+
"text": "CustomEvent<void>"
|
|
8450
8714
|
},
|
|
8451
|
-
"
|
|
8452
|
-
"fieldName": "showText"
|
|
8715
|
+
"description": "Fired when copy button is clicked"
|
|
8453
8716
|
},
|
|
8454
8717
|
{
|
|
8455
|
-
"name": "
|
|
8718
|
+
"name": "forge-ai-user-message-toolbar-resend",
|
|
8456
8719
|
"type": {
|
|
8457
|
-
"text": "
|
|
8720
|
+
"text": "CustomEvent<void>"
|
|
8458
8721
|
},
|
|
8459
|
-
"
|
|
8460
|
-
"fieldName": "initialDelay"
|
|
8722
|
+
"description": "Fired when resend button is clicked"
|
|
8461
8723
|
},
|
|
8462
8724
|
{
|
|
8463
|
-
"name": "
|
|
8725
|
+
"name": "forge-ai-user-message-toolbar-edit",
|
|
8464
8726
|
"type": {
|
|
8465
|
-
"text": "
|
|
8727
|
+
"text": "CustomEvent<void>"
|
|
8466
8728
|
},
|
|
8467
|
-
"
|
|
8468
|
-
|
|
8729
|
+
"description": "Fired when edit button is clicked"
|
|
8730
|
+
}
|
|
8731
|
+
],
|
|
8732
|
+
"attributes": [
|
|
8733
|
+
{
|
|
8734
|
+
"name": "streaming",
|
|
8735
|
+
"type": {
|
|
8736
|
+
"text": "boolean"
|
|
8737
|
+
},
|
|
8738
|
+
"default": "false",
|
|
8739
|
+
"fieldName": "streaming"
|
|
8469
8740
|
}
|
|
8470
8741
|
],
|
|
8471
8742
|
"superclass": {
|
|
8472
8743
|
"name": "LitElement",
|
|
8473
8744
|
"package": "lit"
|
|
8474
8745
|
},
|
|
8475
|
-
"tagName": "forge-ai-
|
|
8746
|
+
"tagName": "forge-ai-user-message-toolbar",
|
|
8476
8747
|
"customElement": true,
|
|
8477
|
-
"summary": "
|
|
8478
|
-
}
|
|
8479
|
-
],
|
|
8480
|
-
"exports": [
|
|
8481
|
-
{
|
|
8482
|
-
"kind": "js",
|
|
8483
|
-
"name": "AiThinkingIndicatorComponentTagName",
|
|
8484
|
-
"declaration": {
|
|
8485
|
-
"name": "AiThinkingIndicatorComponentTagName",
|
|
8486
|
-
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
8487
|
-
}
|
|
8488
|
-
},
|
|
8489
|
-
{
|
|
8490
|
-
"kind": "js",
|
|
8491
|
-
"name": "AiThinkingIndicatorComponent",
|
|
8492
|
-
"declaration": {
|
|
8493
|
-
"name": "AiThinkingIndicatorComponent",
|
|
8494
|
-
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
8495
|
-
}
|
|
8496
|
-
},
|
|
8497
|
-
{
|
|
8498
|
-
"kind": "custom-element-definition",
|
|
8499
|
-
"declaration": {
|
|
8500
|
-
"name": "AiThinkingIndicatorComponent",
|
|
8501
|
-
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
8502
|
-
}
|
|
8503
|
-
}
|
|
8504
|
-
]
|
|
8505
|
-
},
|
|
8506
|
-
{
|
|
8507
|
-
"kind": "javascript-module",
|
|
8508
|
-
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
8509
|
-
"declarations": [
|
|
8510
|
-
{
|
|
8511
|
-
"kind": "variable",
|
|
8512
|
-
"name": "AiUserMessageComponentTagName",
|
|
8513
|
-
"type": {
|
|
8514
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
8515
|
-
},
|
|
8516
|
-
"default": "'forge-ai-user-message'"
|
|
8517
|
-
},
|
|
8518
|
-
{
|
|
8519
|
-
"kind": "class",
|
|
8520
|
-
"description": "",
|
|
8521
|
-
"name": "AiUserMessageComponent",
|
|
8522
|
-
"members": [],
|
|
8523
|
-
"superclass": {
|
|
8524
|
-
"name": "LitElement",
|
|
8525
|
-
"package": "lit"
|
|
8526
|
-
},
|
|
8527
|
-
"tagName": "forge-ai-user-message",
|
|
8528
|
-
"customElement": true
|
|
8748
|
+
"summary": "Toolbar for user message actions including copy, resend, and edit."
|
|
8529
8749
|
}
|
|
8530
8750
|
],
|
|
8531
8751
|
"exports": [
|
|
8532
8752
|
{
|
|
8533
8753
|
"kind": "js",
|
|
8534
|
-
"name": "
|
|
8754
|
+
"name": "AiUserMessageToolbarComponentTagName",
|
|
8535
8755
|
"declaration": {
|
|
8536
|
-
"name": "
|
|
8537
|
-
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
8756
|
+
"name": "AiUserMessageToolbarComponentTagName",
|
|
8757
|
+
"module": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts"
|
|
8538
8758
|
}
|
|
8539
8759
|
},
|
|
8540
8760
|
{
|
|
8541
8761
|
"kind": "js",
|
|
8542
|
-
"name": "
|
|
8762
|
+
"name": "AiUserMessageToolbarComponent",
|
|
8543
8763
|
"declaration": {
|
|
8544
|
-
"name": "
|
|
8545
|
-
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
8764
|
+
"name": "AiUserMessageToolbarComponent",
|
|
8765
|
+
"module": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts"
|
|
8546
8766
|
}
|
|
8547
8767
|
},
|
|
8548
8768
|
{
|
|
8549
8769
|
"kind": "custom-element-definition",
|
|
8550
8770
|
"declaration": {
|
|
8551
|
-
"name": "
|
|
8552
|
-
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
8771
|
+
"name": "AiUserMessageToolbarComponent",
|
|
8772
|
+
"module": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts"
|
|
8553
8773
|
}
|
|
8554
8774
|
}
|
|
8555
8775
|
]
|
|
@@ -9486,130 +9706,68 @@
|
|
|
9486
9706
|
"default": "false",
|
|
9487
9707
|
"description": "Whether the popover should shift to stay in view.",
|
|
9488
9708
|
"fieldName": "shift"
|
|
9489
|
-
},
|
|
9490
|
-
{
|
|
9491
|
-
"name": "open",
|
|
9492
|
-
"type": {
|
|
9493
|
-
"text": "boolean"
|
|
9494
|
-
},
|
|
9495
|
-
"default": "false",
|
|
9496
|
-
"description": "Whether the popover is open.",
|
|
9497
|
-
"fieldName": "open"
|
|
9498
|
-
},
|
|
9499
|
-
{
|
|
9500
|
-
"name": "arrow",
|
|
9501
|
-
"type": {
|
|
9502
|
-
"text": "boolean"
|
|
9503
|
-
},
|
|
9504
|
-
"default": "false",
|
|
9505
|
-
"description": "Whether to show an arrow pointing to the anchor element.",
|
|
9506
|
-
"fieldName": "arrow"
|
|
9507
|
-
},
|
|
9508
|
-
{
|
|
9509
|
-
"name": "offset",
|
|
9510
|
-
"type": {
|
|
9511
|
-
"text": "PopoverOffset | undefined"
|
|
9512
|
-
},
|
|
9513
|
-
"default": "undefined",
|
|
9514
|
-
"description": "The offset of the popover from the anchor element.\nCan be a number (main axis offset) or an object with mainAxis, crossAxis, and alignmentAxis properties.",
|
|
9515
|
-
"fieldName": "offset"
|
|
9516
|
-
},
|
|
9517
|
-
{
|
|
9518
|
-
"name": "dismiss-mode",
|
|
9519
|
-
"type": {
|
|
9520
|
-
"text": "'auto' | 'manual'"
|
|
9521
|
-
},
|
|
9522
|
-
"default": "'auto'",
|
|
9523
|
-
"description": "The dismiss mode for the popover.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
9524
|
-
"fieldName": "dismissMode"
|
|
9525
|
-
}
|
|
9526
|
-
],
|
|
9527
|
-
"superclass": {
|
|
9528
|
-
"name": "LitElement",
|
|
9529
|
-
"package": "lit"
|
|
9530
|
-
},
|
|
9531
|
-
"summary": "A popover component that provides styled overlay functionality.",
|
|
9532
|
-
"tagName": "forge-ai-popover",
|
|
9533
|
-
"customElement": true
|
|
9534
|
-
}
|
|
9535
|
-
],
|
|
9536
|
-
"exports": [
|
|
9537
|
-
{
|
|
9538
|
-
"kind": "js",
|
|
9539
|
-
"name": "ForgeAiPopoverComponent",
|
|
9540
|
-
"declaration": {
|
|
9541
|
-
"name": "ForgeAiPopoverComponent",
|
|
9542
|
-
"module": "src/lib/core/popover/popover.ts"
|
|
9543
|
-
}
|
|
9544
|
-
},
|
|
9545
|
-
{
|
|
9546
|
-
"kind": "custom-element-definition",
|
|
9547
|
-
"name": "forge-ai-popover",
|
|
9548
|
-
"declaration": {
|
|
9549
|
-
"name": "ForgeAiPopoverComponent",
|
|
9550
|
-
"module": "src/lib/core/popover/popover.ts"
|
|
9551
|
-
}
|
|
9552
|
-
}
|
|
9553
|
-
]
|
|
9554
|
-
},
|
|
9555
|
-
{
|
|
9556
|
-
"kind": "javascript-module",
|
|
9557
|
-
"path": "src/lib/tools/ai-data-table/ai-data-table-definition.ts",
|
|
9558
|
-
"declarations": [
|
|
9559
|
-
{
|
|
9560
|
-
"kind": "variable",
|
|
9561
|
-
"name": "displayDataTableTool",
|
|
9562
|
-
"type": {
|
|
9563
|
-
"text": "ToolDefinition"
|
|
9564
|
-
},
|
|
9565
|
-
"default": "{ name: 'displayDataTable', displayName: 'Display Data Table', description: 'Display tabular data in a formatted table with headers and rows. Use this tool when you want to present structured data, lists where there are 2 or more columns, statistics, or any information that works well in a table format.', parameters: { type: 'object' as const, properties: { title: { type: 'string', description: 'Table title or caption displayed above the data.' }, headers: { type: 'array', items: { type: 'string' }, description: 'Column names displayed as table headers. Order matches the row data order.' }, maxNumberOfRows: { type: 'number', description: 'Limit total rows shown. Useful for large datasets to prevent overwhelming display.' }, rows: { type: 'array', items: { type: 'array', items: { anyOf: [{ type: 'string' }, { type: 'number' }] } }, description: 'Data rows where each row is an array of values matching header order.' } }, required: ['headers', 'rows'] }, renderer: createToolRenderer({ elementTag: 'forge-ai-tool-data-table' }) }"
|
|
9566
|
-
}
|
|
9567
|
-
],
|
|
9568
|
-
"exports": [
|
|
9569
|
-
{
|
|
9570
|
-
"kind": "js",
|
|
9571
|
-
"name": "displayDataTableTool",
|
|
9572
|
-
"declaration": {
|
|
9573
|
-
"name": "displayDataTableTool",
|
|
9574
|
-
"module": "src/lib/tools/ai-data-table/ai-data-table-definition.ts"
|
|
9575
|
-
}
|
|
9576
|
-
}
|
|
9577
|
-
]
|
|
9578
|
-
},
|
|
9579
|
-
{
|
|
9580
|
-
"kind": "javascript-module",
|
|
9581
|
-
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
9582
|
-
"declarations": [
|
|
9583
|
-
{
|
|
9584
|
-
"kind": "class",
|
|
9585
|
-
"description": "Data table component tool renderer for displaying tabular data with pagination and filtering.",
|
|
9586
|
-
"name": "DataTableToolElement",
|
|
9587
|
-
"members": [
|
|
9709
|
+
},
|
|
9588
9710
|
{
|
|
9589
|
-
"
|
|
9590
|
-
"name": "toolCall",
|
|
9711
|
+
"name": "open",
|
|
9591
9712
|
"type": {
|
|
9592
|
-
"text": "
|
|
9713
|
+
"text": "boolean"
|
|
9593
9714
|
},
|
|
9594
|
-
"
|
|
9595
|
-
"description": "
|
|
9715
|
+
"default": "false",
|
|
9716
|
+
"description": "Whether the popover is open.",
|
|
9717
|
+
"fieldName": "open"
|
|
9718
|
+
},
|
|
9719
|
+
{
|
|
9720
|
+
"name": "arrow",
|
|
9721
|
+
"type": {
|
|
9722
|
+
"text": "boolean"
|
|
9723
|
+
},
|
|
9724
|
+
"default": "false",
|
|
9725
|
+
"description": "Whether to show an arrow pointing to the anchor element.",
|
|
9726
|
+
"fieldName": "arrow"
|
|
9727
|
+
},
|
|
9728
|
+
{
|
|
9729
|
+
"name": "offset",
|
|
9730
|
+
"type": {
|
|
9731
|
+
"text": "PopoverOffset | undefined"
|
|
9732
|
+
},
|
|
9733
|
+
"default": "undefined",
|
|
9734
|
+
"description": "The offset of the popover from the anchor element.\nCan be a number (main axis offset) or an object with mainAxis, crossAxis, and alignmentAxis properties.",
|
|
9735
|
+
"fieldName": "offset"
|
|
9736
|
+
},
|
|
9737
|
+
{
|
|
9738
|
+
"name": "dismiss-mode",
|
|
9739
|
+
"type": {
|
|
9740
|
+
"text": "'auto' | 'manual'"
|
|
9741
|
+
},
|
|
9742
|
+
"default": "'auto'",
|
|
9743
|
+
"description": "The dismiss mode for the popover.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
9744
|
+
"fieldName": "dismissMode"
|
|
9596
9745
|
}
|
|
9597
9746
|
],
|
|
9598
9747
|
"superclass": {
|
|
9599
9748
|
"name": "LitElement",
|
|
9600
9749
|
"package": "lit"
|
|
9601
9750
|
},
|
|
9602
|
-
"
|
|
9751
|
+
"summary": "A popover component that provides styled overlay functionality.",
|
|
9752
|
+
"tagName": "forge-ai-popover",
|
|
9603
9753
|
"customElement": true
|
|
9604
9754
|
}
|
|
9605
9755
|
],
|
|
9606
9756
|
"exports": [
|
|
9757
|
+
{
|
|
9758
|
+
"kind": "js",
|
|
9759
|
+
"name": "ForgeAiPopoverComponent",
|
|
9760
|
+
"declaration": {
|
|
9761
|
+
"name": "ForgeAiPopoverComponent",
|
|
9762
|
+
"module": "src/lib/core/popover/popover.ts"
|
|
9763
|
+
}
|
|
9764
|
+
},
|
|
9607
9765
|
{
|
|
9608
9766
|
"kind": "custom-element-definition",
|
|
9609
|
-
"name": "forge-ai-
|
|
9767
|
+
"name": "forge-ai-popover",
|
|
9610
9768
|
"declaration": {
|
|
9611
|
-
"name": "
|
|
9612
|
-
"module": "src/lib/
|
|
9769
|
+
"name": "ForgeAiPopoverComponent",
|
|
9770
|
+
"module": "src/lib/core/popover/popover.ts"
|
|
9613
9771
|
}
|
|
9614
9772
|
}
|
|
9615
9773
|
]
|
|
@@ -9945,30 +10103,72 @@
|
|
|
9945
10103
|
}
|
|
9946
10104
|
}
|
|
9947
10105
|
]
|
|
10106
|
+
},
|
|
10107
|
+
{
|
|
10108
|
+
"kind": "javascript-module",
|
|
10109
|
+
"path": "src/lib/tools/ai-data-table/ai-data-table-definition.ts",
|
|
10110
|
+
"declarations": [
|
|
10111
|
+
{
|
|
10112
|
+
"kind": "variable",
|
|
10113
|
+
"name": "displayDataTableTool",
|
|
10114
|
+
"type": {
|
|
10115
|
+
"text": "ToolDefinition"
|
|
10116
|
+
},
|
|
10117
|
+
"default": "{ name: 'displayDataTable', displayName: 'Display Data Table', description: 'Display tabular data in a formatted table with headers and rows. Use this tool when you want to present structured data, lists where there are 2 or more columns, statistics, or any information that works well in a table format.', parameters: { type: 'object' as const, properties: { title: { type: 'string', description: 'Table title or caption displayed above the data.' }, headers: { type: 'array', items: { type: 'string' }, description: 'Column names displayed as table headers. Order matches the row data order.' }, maxNumberOfRows: { type: 'number', description: 'Limit total rows shown. Useful for large datasets to prevent overwhelming display.' }, rows: { type: 'array', items: { type: 'array', items: { anyOf: [{ type: 'string' }, { type: 'number' }] } }, description: 'Data rows where each row is an array of values matching header order.' } }, required: ['headers', 'rows'] }, renderer: createToolRenderer({ elementTag: 'forge-ai-tool-data-table' }) }"
|
|
10118
|
+
}
|
|
10119
|
+
],
|
|
10120
|
+
"exports": [
|
|
10121
|
+
{
|
|
10122
|
+
"kind": "js",
|
|
10123
|
+
"name": "displayDataTableTool",
|
|
10124
|
+
"declaration": {
|
|
10125
|
+
"name": "displayDataTableTool",
|
|
10126
|
+
"module": "src/lib/tools/ai-data-table/ai-data-table-definition.ts"
|
|
10127
|
+
}
|
|
10128
|
+
}
|
|
10129
|
+
]
|
|
10130
|
+
},
|
|
10131
|
+
{
|
|
10132
|
+
"kind": "javascript-module",
|
|
10133
|
+
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
10134
|
+
"declarations": [
|
|
10135
|
+
{
|
|
10136
|
+
"kind": "class",
|
|
10137
|
+
"description": "Data table component tool renderer for displaying tabular data with pagination and filtering.",
|
|
10138
|
+
"name": "DataTableToolElement",
|
|
10139
|
+
"members": [
|
|
10140
|
+
{
|
|
10141
|
+
"kind": "field",
|
|
10142
|
+
"name": "toolCall",
|
|
10143
|
+
"type": {
|
|
10144
|
+
"text": "ToolCall<TableData>"
|
|
10145
|
+
},
|
|
10146
|
+
"privacy": "public",
|
|
10147
|
+
"description": "Tool call data containing table configuration and data"
|
|
10148
|
+
}
|
|
10149
|
+
],
|
|
10150
|
+
"superclass": {
|
|
10151
|
+
"name": "LitElement",
|
|
10152
|
+
"package": "lit"
|
|
10153
|
+
},
|
|
10154
|
+
"tagName": "forge-ai-tool-data-table",
|
|
10155
|
+
"customElement": true
|
|
10156
|
+
}
|
|
10157
|
+
],
|
|
10158
|
+
"exports": [
|
|
10159
|
+
{
|
|
10160
|
+
"kind": "custom-element-definition",
|
|
10161
|
+
"name": "forge-ai-tool-data-table",
|
|
10162
|
+
"declaration": {
|
|
10163
|
+
"name": "DataTableToolElement",
|
|
10164
|
+
"module": "src/lib/tools/ai-data-table/ai-data-table.ts"
|
|
10165
|
+
}
|
|
10166
|
+
}
|
|
10167
|
+
]
|
|
9948
10168
|
}
|
|
9949
10169
|
],
|
|
9950
10170
|
"branchName": "main",
|
|
9951
10171
|
"forgeTypes": {
|
|
9952
|
-
"ForgeAiActionsToolbarActionEventData": {
|
|
9953
|
-
"path": "src/lib/ai-actions-toolbar/ai-actions-toolbar.ts",
|
|
9954
|
-
"lineNumber": 23
|
|
9955
|
-
},
|
|
9956
|
-
"ForgeAiActionsToolbarFeedbackEventData": {
|
|
9957
|
-
"path": "src/lib/ai-actions-toolbar/ai-actions-toolbar.ts",
|
|
9958
|
-
"lineNumber": 27
|
|
9959
|
-
},
|
|
9960
|
-
"AiActionsToolbarAction": {
|
|
9961
|
-
"path": "src/lib/ai-actions-toolbar/ai-actions-toolbar.ts",
|
|
9962
|
-
"lineNumber": 32
|
|
9963
|
-
},
|
|
9964
|
-
"AiActionsToolbarComponent": {
|
|
9965
|
-
"path": "src/lib/ai-actions-toolbar/ai-actions-toolbar.ts",
|
|
9966
|
-
"lineNumber": 42
|
|
9967
|
-
},
|
|
9968
|
-
"AiArtifactComponent": {
|
|
9969
|
-
"path": "src/lib/ai-artifact/ai-artifact.ts",
|
|
9970
|
-
"lineNumber": 23
|
|
9971
|
-
},
|
|
9972
10172
|
"AgentInfo": {
|
|
9973
10173
|
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
9974
10174
|
"lineNumber": 39
|
|
@@ -9977,6 +10177,18 @@
|
|
|
9977
10177
|
"path": "src/lib/ai-agent-info/ai-agent-info.ts",
|
|
9978
10178
|
"lineNumber": 29
|
|
9979
10179
|
},
|
|
10180
|
+
"ForgeAiAssistantResponseFeedbackEventData": {
|
|
10181
|
+
"path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
|
|
10182
|
+
"lineNumber": 30
|
|
10183
|
+
},
|
|
10184
|
+
"AiAssistantResponseComponent": {
|
|
10185
|
+
"path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
|
|
10186
|
+
"lineNumber": 47
|
|
10187
|
+
},
|
|
10188
|
+
"AiArtifactComponent": {
|
|
10189
|
+
"path": "src/lib/ai-artifact/ai-artifact.ts",
|
|
10190
|
+
"lineNumber": 23
|
|
10191
|
+
},
|
|
9980
10192
|
"ForgeAiAttachmentRemoveEventData": {
|
|
9981
10193
|
"path": "src/lib/ai-attachment/ai-attachment.ts",
|
|
9982
10194
|
"lineNumber": 19
|
|
@@ -9989,13 +10201,9 @@
|
|
|
9989
10201
|
"path": "src/lib/ai-button/ai-button.ts",
|
|
9990
10202
|
"lineNumber": 22
|
|
9991
10203
|
},
|
|
9992
|
-
"
|
|
9993
|
-
"path": "src/lib/ai-
|
|
9994
|
-
"lineNumber":
|
|
9995
|
-
},
|
|
9996
|
-
"AiAssistantResponseComponent": {
|
|
9997
|
-
"path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
|
|
9998
|
-
"lineNumber": 47
|
|
10204
|
+
"AiChainOfThoughtComponent": {
|
|
10205
|
+
"path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
|
|
10206
|
+
"lineNumber": 17
|
|
9999
10207
|
},
|
|
10000
10208
|
"MinimizeIconType": {
|
|
10001
10209
|
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
@@ -10009,14 +10217,14 @@
|
|
|
10009
10217
|
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
10010
10218
|
"lineNumber": 68
|
|
10011
10219
|
},
|
|
10012
|
-
"AiChainOfThoughtComponent": {
|
|
10013
|
-
"path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
|
|
10014
|
-
"lineNumber": 17
|
|
10015
|
-
},
|
|
10016
10220
|
"AiChatInterfaceComponent": {
|
|
10017
10221
|
"path": "src/lib/ai-chat-interface/ai-chat-interface.ts",
|
|
10018
10222
|
"lineNumber": 25
|
|
10019
10223
|
},
|
|
10224
|
+
"AiConfirmationPromptComponent": {
|
|
10225
|
+
"path": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts",
|
|
10226
|
+
"lineNumber": 27
|
|
10227
|
+
},
|
|
10020
10228
|
"AgUiAdapterConfig": {
|
|
10021
10229
|
"path": "src/lib/ai-chatbot/ag-ui-adapter.ts",
|
|
10022
10230
|
"lineNumber": 27
|
|
@@ -10071,7 +10279,7 @@
|
|
|
10071
10279
|
},
|
|
10072
10280
|
"FileRemoveEvent": {
|
|
10073
10281
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10074
|
-
"lineNumber":
|
|
10282
|
+
"lineNumber": 204
|
|
10075
10283
|
},
|
|
10076
10284
|
"ErrorEvent": {
|
|
10077
10285
|
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
@@ -10267,59 +10475,55 @@
|
|
|
10267
10475
|
},
|
|
10268
10476
|
"ToolCall": {
|
|
10269
10477
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10270
|
-
"lineNumber":
|
|
10478
|
+
"lineNumber": 137
|
|
10271
10479
|
},
|
|
10272
10480
|
"ResponseItem": {
|
|
10273
10481
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10274
|
-
"lineNumber":
|
|
10482
|
+
"lineNumber": 149
|
|
10275
10483
|
},
|
|
10276
10484
|
"FeedbackType": {
|
|
10277
10485
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10278
|
-
"lineNumber":
|
|
10486
|
+
"lineNumber": 153
|
|
10279
10487
|
},
|
|
10280
10488
|
"ResponseFeedback": {
|
|
10281
10489
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10282
|
-
"lineNumber":
|
|
10490
|
+
"lineNumber": 155
|
|
10283
10491
|
},
|
|
10284
10492
|
"AssistantResponse": {
|
|
10285
10493
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10286
|
-
"lineNumber":
|
|
10494
|
+
"lineNumber": 160
|
|
10287
10495
|
},
|
|
10288
10496
|
"FileAttachment": {
|
|
10289
10497
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10290
|
-
"lineNumber":
|
|
10498
|
+
"lineNumber": 169
|
|
10291
10499
|
},
|
|
10292
10500
|
"UploadedFileMetadata": {
|
|
10293
10501
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10294
|
-
"lineNumber":
|
|
10502
|
+
"lineNumber": 182
|
|
10295
10503
|
},
|
|
10296
10504
|
"FileUploadCallbacks": {
|
|
10297
10505
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10298
|
-
"lineNumber":
|
|
10506
|
+
"lineNumber": 190
|
|
10299
10507
|
},
|
|
10300
10508
|
"FileUploadHandler": {
|
|
10301
10509
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10302
|
-
"lineNumber":
|
|
10510
|
+
"lineNumber": 197
|
|
10303
10511
|
},
|
|
10304
10512
|
"FileRemoveCallbacks": {
|
|
10305
10513
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10306
|
-
"lineNumber":
|
|
10514
|
+
"lineNumber": 199
|
|
10307
10515
|
},
|
|
10308
10516
|
"ForgeAiChatbotFileSelectEventData": {
|
|
10309
10517
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10310
|
-
"lineNumber":
|
|
10518
|
+
"lineNumber": 208
|
|
10311
10519
|
},
|
|
10312
10520
|
"MessageItem": {
|
|
10313
10521
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10314
|
-
"lineNumber":
|
|
10522
|
+
"lineNumber": 221
|
|
10315
10523
|
},
|
|
10316
10524
|
"ThreadState": {
|
|
10317
10525
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10318
|
-
"lineNumber":
|
|
10319
|
-
},
|
|
10320
|
-
"AiConfirmationPromptComponent": {
|
|
10321
|
-
"path": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts",
|
|
10322
|
-
"lineNumber": 27
|
|
10526
|
+
"lineNumber": 226
|
|
10323
10527
|
},
|
|
10324
10528
|
"AiDialogComponent": {
|
|
10325
10529
|
"path": "src/lib/ai-dialog/ai-dialog.ts",
|
|
@@ -10407,19 +10611,19 @@
|
|
|
10407
10611
|
},
|
|
10408
10612
|
"ForgeAiFilePickerChangeEventData": {
|
|
10409
10613
|
"path": "src/lib/ai-file-picker/ai-file-picker.ts",
|
|
10410
|
-
"lineNumber":
|
|
10614
|
+
"lineNumber": 24
|
|
10411
10615
|
},
|
|
10412
10616
|
"ForgeAiFilePickerErrorEventData": {
|
|
10413
10617
|
"path": "src/lib/ai-file-picker/ai-file-picker.ts",
|
|
10414
|
-
"lineNumber":
|
|
10618
|
+
"lineNumber": 34
|
|
10415
10619
|
},
|
|
10416
10620
|
"AiFilePickerVariant": {
|
|
10417
10621
|
"path": "src/lib/ai-file-picker/ai-file-picker.ts",
|
|
10418
|
-
"lineNumber":
|
|
10622
|
+
"lineNumber": 43
|
|
10419
10623
|
},
|
|
10420
10624
|
"AiFilePickerComponent": {
|
|
10421
10625
|
"path": "src/lib/ai-file-picker/ai-file-picker.ts",
|
|
10422
|
-
"lineNumber":
|
|
10626
|
+
"lineNumber": 58
|
|
10423
10627
|
},
|
|
10424
10628
|
"AiFloatingChatComponent": {
|
|
10425
10629
|
"path": "src/lib/ai-floating-chat/ai-floating-chat.ts",
|
|
@@ -10443,19 +10647,23 @@
|
|
|
10443
10647
|
},
|
|
10444
10648
|
"ForgeAiMessageThreadCopyEventData": {
|
|
10445
10649
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
10446
|
-
"lineNumber":
|
|
10650
|
+
"lineNumber": 37
|
|
10447
10651
|
},
|
|
10448
|
-
"
|
|
10652
|
+
"ForgeAiMessageThreadResendEventData": {
|
|
10449
10653
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
10450
|
-
"lineNumber":
|
|
10654
|
+
"lineNumber": 41
|
|
10451
10655
|
},
|
|
10452
10656
|
"ForgeAiMessageThreadThumbsEventData": {
|
|
10453
10657
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
10454
|
-
"lineNumber":
|
|
10658
|
+
"lineNumber": 45
|
|
10659
|
+
},
|
|
10660
|
+
"ForgeAiMessageThreadEditEventData": {
|
|
10661
|
+
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
10662
|
+
"lineNumber": 50
|
|
10455
10663
|
},
|
|
10456
10664
|
"AiMessageThreadComponent": {
|
|
10457
10665
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
10458
|
-
"lineNumber":
|
|
10666
|
+
"lineNumber": 76
|
|
10459
10667
|
},
|
|
10460
10668
|
"AiModalComponent": {
|
|
10461
10669
|
"path": "src/lib/ai-modal/ai-modal.ts",
|
|
@@ -10463,23 +10671,23 @@
|
|
|
10463
10671
|
},
|
|
10464
10672
|
"ForgeAiPromptSendEventData": {
|
|
10465
10673
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
10466
|
-
"lineNumber":
|
|
10674
|
+
"lineNumber": 29
|
|
10467
10675
|
},
|
|
10468
10676
|
"ForgeAiPromptAttachmentEventData": {
|
|
10469
10677
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
10470
|
-
"lineNumber":
|
|
10678
|
+
"lineNumber": 35
|
|
10471
10679
|
},
|
|
10472
10680
|
"ForgeAiPromptCommandEventData": {
|
|
10473
10681
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
10474
|
-
"lineNumber":
|
|
10682
|
+
"lineNumber": 39
|
|
10475
10683
|
},
|
|
10476
10684
|
"AiPromptVariant": {
|
|
10477
10685
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
10478
|
-
"lineNumber":
|
|
10686
|
+
"lineNumber": 45
|
|
10479
10687
|
},
|
|
10480
10688
|
"AiPromptComponent": {
|
|
10481
10689
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
10482
|
-
"lineNumber":
|
|
10690
|
+
"lineNumber": 63
|
|
10483
10691
|
},
|
|
10484
10692
|
"AiReasoningComponent": {
|
|
10485
10693
|
"path": "src/lib/ai-reasoning/ai-reasoning.ts",
|
|
@@ -10493,6 +10701,22 @@
|
|
|
10493
10701
|
"path": "src/lib/ai-response-message/ai-response-message.ts",
|
|
10494
10702
|
"lineNumber": 19
|
|
10495
10703
|
},
|
|
10704
|
+
"ForgeAiResponseMessageToolbarActionEventData": {
|
|
10705
|
+
"path": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts",
|
|
10706
|
+
"lineNumber": 23
|
|
10707
|
+
},
|
|
10708
|
+
"ForgeAiResponseMessageToolbarFeedbackEventData": {
|
|
10709
|
+
"path": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts",
|
|
10710
|
+
"lineNumber": 27
|
|
10711
|
+
},
|
|
10712
|
+
"AiResponseMessageToolbarAction": {
|
|
10713
|
+
"path": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts",
|
|
10714
|
+
"lineNumber": 32
|
|
10715
|
+
},
|
|
10716
|
+
"AiResponseMessageToolbarComponent": {
|
|
10717
|
+
"path": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts",
|
|
10718
|
+
"lineNumber": 43
|
|
10719
|
+
},
|
|
10496
10720
|
"AiSidebarComponent": {
|
|
10497
10721
|
"path": "src/lib/ai-sidebar/ai-sidebar.ts",
|
|
10498
10722
|
"lineNumber": 28
|
|
@@ -10513,18 +10737,6 @@
|
|
|
10513
10737
|
"path": "src/lib/ai-spinner/ai-spinner.ts",
|
|
10514
10738
|
"lineNumber": 27
|
|
10515
10739
|
},
|
|
10516
|
-
"Thread": {
|
|
10517
|
-
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
10518
|
-
"lineNumber": 19
|
|
10519
|
-
},
|
|
10520
|
-
"ForgeAiThreadsSelectEventData": {
|
|
10521
|
-
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
10522
|
-
"lineNumber": 26
|
|
10523
|
-
},
|
|
10524
|
-
"AiThreadsComponent": {
|
|
10525
|
-
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
10526
|
-
"lineNumber": 46
|
|
10527
|
-
},
|
|
10528
10740
|
"Suggestion": {
|
|
10529
10741
|
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
10530
10742
|
"lineNumber": 20
|
|
@@ -10545,37 +10757,65 @@
|
|
|
10545
10757
|
"path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
|
|
10546
10758
|
"lineNumber": 38
|
|
10547
10759
|
},
|
|
10760
|
+
"ForgeAiUserMessageCopyEventData": {
|
|
10761
|
+
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
10762
|
+
"lineNumber": 20
|
|
10763
|
+
},
|
|
10764
|
+
"ForgeAiUserMessageResendEventData": {
|
|
10765
|
+
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
10766
|
+
"lineNumber": 24
|
|
10767
|
+
},
|
|
10768
|
+
"ForgeAiUserMessageEditEventData": {
|
|
10769
|
+
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
10770
|
+
"lineNumber": 28
|
|
10771
|
+
},
|
|
10548
10772
|
"AiUserMessageComponent": {
|
|
10549
10773
|
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
10550
|
-
"lineNumber":
|
|
10774
|
+
"lineNumber": 42
|
|
10775
|
+
},
|
|
10776
|
+
"Thread": {
|
|
10777
|
+
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
10778
|
+
"lineNumber": 19
|
|
10779
|
+
},
|
|
10780
|
+
"ForgeAiThreadsSelectEventData": {
|
|
10781
|
+
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
10782
|
+
"lineNumber": 26
|
|
10783
|
+
},
|
|
10784
|
+
"AiThreadsComponent": {
|
|
10785
|
+
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
10786
|
+
"lineNumber": 46
|
|
10787
|
+
},
|
|
10788
|
+
"AiUserMessageToolbarComponent": {
|
|
10789
|
+
"path": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts",
|
|
10790
|
+
"lineNumber": 31
|
|
10551
10791
|
},
|
|
10552
10792
|
"SpeechRecognitionAlternative": {
|
|
10553
10793
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
10554
|
-
"lineNumber":
|
|
10794
|
+
"lineNumber": 20
|
|
10555
10795
|
},
|
|
10556
10796
|
"SpeechRecognitionResult": {
|
|
10557
10797
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
10558
|
-
"lineNumber":
|
|
10798
|
+
"lineNumber": 25
|
|
10559
10799
|
},
|
|
10560
10800
|
"SpeechRecognitionResultList": {
|
|
10561
10801
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
10562
|
-
"lineNumber":
|
|
10802
|
+
"lineNumber": 31
|
|
10563
10803
|
},
|
|
10564
10804
|
"SpeechRecognitionEvent": {
|
|
10565
10805
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
10566
|
-
"lineNumber":
|
|
10806
|
+
"lineNumber": 37
|
|
10567
10807
|
},
|
|
10568
10808
|
"SpeechRecognition": {
|
|
10569
10809
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
10570
|
-
"lineNumber":
|
|
10810
|
+
"lineNumber": 41
|
|
10571
10811
|
},
|
|
10572
10812
|
"ForgeAiVoiceInputResultEvent": {
|
|
10573
10813
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
10574
|
-
"lineNumber":
|
|
10814
|
+
"lineNumber": 63
|
|
10575
10815
|
},
|
|
10576
10816
|
"AiVoiceInputComponent": {
|
|
10577
10817
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
10578
|
-
"lineNumber":
|
|
10818
|
+
"lineNumber": 76
|
|
10579
10819
|
},
|
|
10580
10820
|
"DragControllerOptions": {
|
|
10581
10821
|
"path": "src/lib/core/drag-controller.ts",
|
|
@@ -10641,14 +10881,6 @@
|
|
|
10641
10881
|
"path": "src/lib/core/popover/popover.ts",
|
|
10642
10882
|
"lineNumber": 37
|
|
10643
10883
|
},
|
|
10644
|
-
"TableData": {
|
|
10645
|
-
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
10646
|
-
"lineNumber": 16
|
|
10647
|
-
},
|
|
10648
|
-
"DataTableToolElement": {
|
|
10649
|
-
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
10650
|
-
"lineNumber": 32
|
|
10651
|
-
},
|
|
10652
10884
|
"TooltipToggleEventDetail": {
|
|
10653
10885
|
"path": "src/lib/core/tooltip/tooltip.ts",
|
|
10654
10886
|
"lineNumber": 20
|
|
@@ -10667,7 +10899,15 @@
|
|
|
10667
10899
|
},
|
|
10668
10900
|
"AiPaginator": {
|
|
10669
10901
|
"path": "src/lib/tools/ai-paginator/ai-paginator.ts",
|
|
10670
|
-
"lineNumber":
|
|
10902
|
+
"lineNumber": 13
|
|
10903
|
+
},
|
|
10904
|
+
"TableData": {
|
|
10905
|
+
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
10906
|
+
"lineNumber": 16
|
|
10907
|
+
},
|
|
10908
|
+
"DataTableToolElement": {
|
|
10909
|
+
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
10910
|
+
"lineNumber": 32
|
|
10671
10911
|
}
|
|
10672
10912
|
}
|
|
10673
10913
|
}
|