@tylertech/forge-ai 0.6.0 → 0.7.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 +1959 -1365
- package/dist/ai-actions-toolbar/ai-actions-toolbar.mjs +1 -0
- package/dist/ai-assistant-response/ai-assistant-response.d.ts +45 -0
- package/dist/ai-assistant-response/ai-assistant-response.mjs +211 -0
- package/dist/ai-assistant-response/ai-assistant-response.scss.mjs +4 -0
- package/dist/ai-assistant-response/index.d.ts +1 -0
- package/dist/ai-assistant-response/index.mjs +5 -0
- package/dist/ai-chat-interface/ai-chat-interface.mjs +4 -1
- package/dist/ai-chatbot/ag-ui-adapter.mjs +44 -1
- package/dist/ai-chatbot/agent-adapter.d.ts +68 -0
- package/dist/ai-chatbot/agent-adapter.mjs +64 -1
- package/dist/ai-chatbot/ai-chatbot-tool-call.mjs +14 -12
- package/dist/ai-chatbot/ai-chatbot-tool-call.scss.mjs +1 -1
- package/dist/ai-chatbot/ai-chatbot.d.ts +3 -0
- package/dist/ai-chatbot/ai-chatbot.mjs +50 -60
- package/dist/ai-chatbot/ai-chatbot.scss.mjs +1 -1
- package/dist/ai-chatbot/index.d.ts +1 -1
- package/dist/ai-chatbot/message-state-controller.d.ts +16 -11
- package/dist/ai-chatbot/message-state-controller.mjs +216 -112
- package/dist/ai-chatbot/types.d.ts +19 -0
- package/dist/ai-fab/ai-fab.scss.mjs +1 -1
- package/dist/ai-message-thread/ai-message-thread.mjs +35 -17
- package/dist/ai-response-message/ai-response-message.d.ts +1 -20
- package/dist/ai-response-message/ai-response-message.mjs +4 -112
- package/dist/ai-response-message/ai-response-message.scss.mjs +1 -1
- package/dist/core/tooltip/tooltip.d.ts +1 -0
- package/dist/core/tooltip/tooltip.mjs +6 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +3 -0
- package/dist/tools/ai-data-table/ai-data-table-definition.mjs +1 -1
- package/package.json +64 -64
package/custom-elements.json
CHANGED
|
@@ -164,6 +164,68 @@
|
|
|
164
164
|
}
|
|
165
165
|
]
|
|
166
166
|
},
|
|
167
|
+
{
|
|
168
|
+
"kind": "javascript-module",
|
|
169
|
+
"path": "src/lib/ai-agent-info/ai-agent-info.ts",
|
|
170
|
+
"declarations": [
|
|
171
|
+
{
|
|
172
|
+
"kind": "variable",
|
|
173
|
+
"name": "AiAgentInfoComponentTagName",
|
|
174
|
+
"type": {
|
|
175
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
176
|
+
},
|
|
177
|
+
"default": "'forge-ai-agent-info'"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"kind": "class",
|
|
181
|
+
"description": "",
|
|
182
|
+
"name": "AiAgentInfoComponent",
|
|
183
|
+
"members": [
|
|
184
|
+
{
|
|
185
|
+
"kind": "field",
|
|
186
|
+
"name": "agentInfo",
|
|
187
|
+
"type": {
|
|
188
|
+
"text": "AgentInfo | undefined"
|
|
189
|
+
},
|
|
190
|
+
"privacy": "public",
|
|
191
|
+
"description": "Agent information to display"
|
|
192
|
+
}
|
|
193
|
+
],
|
|
194
|
+
"superclass": {
|
|
195
|
+
"name": "LitElement",
|
|
196
|
+
"package": "lit"
|
|
197
|
+
},
|
|
198
|
+
"tagName": "forge-ai-agent-info",
|
|
199
|
+
"customElement": true,
|
|
200
|
+
"summary": "Displays agent information in a grid layout"
|
|
201
|
+
}
|
|
202
|
+
],
|
|
203
|
+
"exports": [
|
|
204
|
+
{
|
|
205
|
+
"kind": "js",
|
|
206
|
+
"name": "AiAgentInfoComponentTagName",
|
|
207
|
+
"declaration": {
|
|
208
|
+
"name": "AiAgentInfoComponentTagName",
|
|
209
|
+
"module": "src/lib/ai-agent-info/ai-agent-info.ts"
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"kind": "js",
|
|
214
|
+
"name": "AiAgentInfoComponent",
|
|
215
|
+
"declaration": {
|
|
216
|
+
"name": "AiAgentInfoComponent",
|
|
217
|
+
"module": "src/lib/ai-agent-info/ai-agent-info.ts"
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"kind": "custom-element-definition",
|
|
222
|
+
"declaration": {
|
|
223
|
+
"name": "AiAgentInfoComponent",
|
|
224
|
+
"module": "src/lib/ai-agent-info/ai-agent-info.ts"
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
]
|
|
228
|
+
},
|
|
167
229
|
{
|
|
168
230
|
"kind": "javascript-module",
|
|
169
231
|
"path": "src/lib/ai-artifact/ai-artifact.ts",
|
|
@@ -237,62 +299,137 @@
|
|
|
237
299
|
},
|
|
238
300
|
{
|
|
239
301
|
"kind": "javascript-module",
|
|
240
|
-
"path": "src/lib/ai-
|
|
302
|
+
"path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
|
|
241
303
|
"declarations": [
|
|
242
304
|
{
|
|
243
305
|
"kind": "variable",
|
|
244
|
-
"name": "
|
|
306
|
+
"name": "AiAssistantResponseComponentTagName",
|
|
245
307
|
"type": {
|
|
246
308
|
"text": "keyof HTMLElementTagNameMap"
|
|
247
309
|
},
|
|
248
|
-
"default": "'forge-ai-
|
|
310
|
+
"default": "'forge-ai-assistant-response'"
|
|
249
311
|
},
|
|
250
312
|
{
|
|
251
313
|
"kind": "class",
|
|
252
314
|
"description": "",
|
|
253
|
-
"name": "
|
|
315
|
+
"name": "AiAssistantResponseComponent",
|
|
254
316
|
"members": [
|
|
255
317
|
{
|
|
256
318
|
"kind": "field",
|
|
257
|
-
"name": "
|
|
319
|
+
"name": "response",
|
|
258
320
|
"type": {
|
|
259
|
-
"text": "
|
|
321
|
+
"text": "AssistantResponse"
|
|
322
|
+
},
|
|
323
|
+
"privacy": "public"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"kind": "field",
|
|
327
|
+
"name": "tools",
|
|
328
|
+
"type": {
|
|
329
|
+
"text": "Map<string, ToolDefinition> | undefined"
|
|
330
|
+
},
|
|
331
|
+
"privacy": "public"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"kind": "field",
|
|
335
|
+
"name": "enableReactions",
|
|
336
|
+
"type": {
|
|
337
|
+
"text": "boolean"
|
|
260
338
|
},
|
|
261
339
|
"privacy": "public",
|
|
262
|
-
"
|
|
340
|
+
"default": "false",
|
|
341
|
+
"attribute": "enable-reactions"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"kind": "field",
|
|
345
|
+
"name": "debugMode",
|
|
346
|
+
"type": {
|
|
347
|
+
"text": "boolean"
|
|
348
|
+
},
|
|
349
|
+
"privacy": "public",
|
|
350
|
+
"default": "false",
|
|
351
|
+
"attribute": "debug-mode"
|
|
352
|
+
}
|
|
353
|
+
],
|
|
354
|
+
"events": [
|
|
355
|
+
{
|
|
356
|
+
"type": {
|
|
357
|
+
"text": "CustomEvent<{ responseId: string }>"
|
|
358
|
+
},
|
|
359
|
+
"description": "Fired when copy action is clicked",
|
|
360
|
+
"name": "forge-ai-assistant-response-copy"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"type": {
|
|
364
|
+
"text": "CustomEvent<{ responseId: string }>"
|
|
365
|
+
},
|
|
366
|
+
"description": "Fired when refresh action is clicked",
|
|
367
|
+
"name": "forge-ai-assistant-response-refresh"
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"type": {
|
|
371
|
+
"text": "CustomEvent<{ responseId: string }>"
|
|
372
|
+
},
|
|
373
|
+
"description": "Fired when thumbs up is clicked",
|
|
374
|
+
"name": "forge-ai-assistant-response-thumbs-up"
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"type": {
|
|
378
|
+
"text": "CustomEvent<{ responseId: string }>"
|
|
379
|
+
},
|
|
380
|
+
"description": "Fired when thumbs down is clicked",
|
|
381
|
+
"name": "forge-ai-assistant-response-thumbs-down"
|
|
382
|
+
}
|
|
383
|
+
],
|
|
384
|
+
"attributes": [
|
|
385
|
+
{
|
|
386
|
+
"name": "enable-reactions",
|
|
387
|
+
"type": {
|
|
388
|
+
"text": "boolean"
|
|
389
|
+
},
|
|
390
|
+
"default": "false",
|
|
391
|
+
"fieldName": "enableReactions"
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
"name": "debug-mode",
|
|
395
|
+
"type": {
|
|
396
|
+
"text": "boolean"
|
|
397
|
+
},
|
|
398
|
+
"default": "false",
|
|
399
|
+
"fieldName": "debugMode"
|
|
263
400
|
}
|
|
264
401
|
],
|
|
265
402
|
"superclass": {
|
|
266
403
|
"name": "LitElement",
|
|
267
404
|
"package": "lit"
|
|
268
405
|
},
|
|
269
|
-
"tagName": "forge-ai-
|
|
406
|
+
"tagName": "forge-ai-assistant-response",
|
|
270
407
|
"customElement": true,
|
|
271
|
-
"summary": "
|
|
408
|
+
"summary": "Renders a complete assistant response with interleaved text chunks and tool calls."
|
|
272
409
|
}
|
|
273
410
|
],
|
|
274
411
|
"exports": [
|
|
275
412
|
{
|
|
276
413
|
"kind": "js",
|
|
277
|
-
"name": "
|
|
414
|
+
"name": "AiAssistantResponseComponentTagName",
|
|
278
415
|
"declaration": {
|
|
279
|
-
"name": "
|
|
280
|
-
"module": "src/lib/ai-
|
|
416
|
+
"name": "AiAssistantResponseComponentTagName",
|
|
417
|
+
"module": "src/lib/ai-assistant-response/ai-assistant-response.ts"
|
|
281
418
|
}
|
|
282
419
|
},
|
|
283
420
|
{
|
|
284
421
|
"kind": "js",
|
|
285
|
-
"name": "
|
|
422
|
+
"name": "AiAssistantResponseComponent",
|
|
286
423
|
"declaration": {
|
|
287
|
-
"name": "
|
|
288
|
-
"module": "src/lib/ai-
|
|
424
|
+
"name": "AiAssistantResponseComponent",
|
|
425
|
+
"module": "src/lib/ai-assistant-response/ai-assistant-response.ts"
|
|
289
426
|
}
|
|
290
427
|
},
|
|
291
428
|
{
|
|
292
429
|
"kind": "custom-element-definition",
|
|
293
430
|
"declaration": {
|
|
294
|
-
"name": "
|
|
295
|
-
"module": "src/lib/ai-
|
|
431
|
+
"name": "AiAssistantResponseComponent",
|
|
432
|
+
"module": "src/lib/ai-assistant-response/ai-assistant-response.ts"
|
|
296
433
|
}
|
|
297
434
|
}
|
|
298
435
|
]
|
|
@@ -548,81 +685,6 @@
|
|
|
548
685
|
}
|
|
549
686
|
]
|
|
550
687
|
},
|
|
551
|
-
{
|
|
552
|
-
"kind": "javascript-module",
|
|
553
|
-
"path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
|
|
554
|
-
"declarations": [
|
|
555
|
-
{
|
|
556
|
-
"kind": "variable",
|
|
557
|
-
"name": "AiChainOfThoughtComponentTagName",
|
|
558
|
-
"type": {
|
|
559
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
560
|
-
},
|
|
561
|
-
"default": "'forge-ai-chain-of-thought'"
|
|
562
|
-
},
|
|
563
|
-
{
|
|
564
|
-
"kind": "class",
|
|
565
|
-
"description": "",
|
|
566
|
-
"name": "AiChainOfThoughtComponent",
|
|
567
|
-
"members": [
|
|
568
|
-
{
|
|
569
|
-
"kind": "field",
|
|
570
|
-
"name": "expanded",
|
|
571
|
-
"type": {
|
|
572
|
-
"text": "boolean"
|
|
573
|
-
},
|
|
574
|
-
"privacy": "public",
|
|
575
|
-
"default": "false",
|
|
576
|
-
"description": "Whether the chain of thought is expanded",
|
|
577
|
-
"attribute": "expanded",
|
|
578
|
-
"reflects": true
|
|
579
|
-
}
|
|
580
|
-
],
|
|
581
|
-
"attributes": [
|
|
582
|
-
{
|
|
583
|
-
"name": "expanded",
|
|
584
|
-
"type": {
|
|
585
|
-
"text": "boolean"
|
|
586
|
-
},
|
|
587
|
-
"default": "false",
|
|
588
|
-
"description": "Whether the chain of thought is expanded",
|
|
589
|
-
"fieldName": "expanded"
|
|
590
|
-
}
|
|
591
|
-
],
|
|
592
|
-
"superclass": {
|
|
593
|
-
"name": "LitElement",
|
|
594
|
-
"package": "lit"
|
|
595
|
-
},
|
|
596
|
-
"tagName": "forge-ai-chain-of-thought",
|
|
597
|
-
"customElement": true
|
|
598
|
-
}
|
|
599
|
-
],
|
|
600
|
-
"exports": [
|
|
601
|
-
{
|
|
602
|
-
"kind": "js",
|
|
603
|
-
"name": "AiChainOfThoughtComponentTagName",
|
|
604
|
-
"declaration": {
|
|
605
|
-
"name": "AiChainOfThoughtComponentTagName",
|
|
606
|
-
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
607
|
-
}
|
|
608
|
-
},
|
|
609
|
-
{
|
|
610
|
-
"kind": "js",
|
|
611
|
-
"name": "AiChainOfThoughtComponent",
|
|
612
|
-
"declaration": {
|
|
613
|
-
"name": "AiChainOfThoughtComponent",
|
|
614
|
-
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
615
|
-
}
|
|
616
|
-
},
|
|
617
|
-
{
|
|
618
|
-
"kind": "custom-element-definition",
|
|
619
|
-
"declaration": {
|
|
620
|
-
"name": "AiChainOfThoughtComponent",
|
|
621
|
-
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
622
|
-
}
|
|
623
|
-
}
|
|
624
|
-
]
|
|
625
|
-
},
|
|
626
688
|
{
|
|
627
689
|
"kind": "javascript-module",
|
|
628
690
|
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
@@ -910,48 +972,123 @@
|
|
|
910
972
|
},
|
|
911
973
|
{
|
|
912
974
|
"kind": "javascript-module",
|
|
913
|
-
"path": "src/lib/ai-
|
|
975
|
+
"path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
|
|
914
976
|
"declarations": [
|
|
915
977
|
{
|
|
916
978
|
"kind": "variable",
|
|
917
|
-
"name": "
|
|
979
|
+
"name": "AiChainOfThoughtComponentTagName",
|
|
918
980
|
"type": {
|
|
919
981
|
"text": "keyof HTMLElementTagNameMap"
|
|
920
982
|
},
|
|
921
|
-
"default": "'forge-ai-
|
|
983
|
+
"default": "'forge-ai-chain-of-thought'"
|
|
922
984
|
},
|
|
923
985
|
{
|
|
924
986
|
"kind": "class",
|
|
925
987
|
"description": "",
|
|
926
|
-
"name": "
|
|
927
|
-
"slots": [
|
|
928
|
-
{
|
|
929
|
-
"description": "Default slot for messages",
|
|
930
|
-
"name": ""
|
|
931
|
-
},
|
|
932
|
-
{
|
|
933
|
-
"description": "Slot for AI chat header component",
|
|
934
|
-
"name": "header"
|
|
935
|
-
},
|
|
936
|
-
{
|
|
937
|
-
"description": "Slot for AI suggestions component",
|
|
938
|
-
"name": "suggestions"
|
|
939
|
-
},
|
|
940
|
-
{
|
|
941
|
-
"description": "Slot for file attachments component",
|
|
942
|
-
"name": "attachments"
|
|
943
|
-
},
|
|
944
|
-
{
|
|
945
|
-
"description": "Slot for AI prompt component",
|
|
946
|
-
"name": "prompt"
|
|
947
|
-
}
|
|
948
|
-
],
|
|
988
|
+
"name": "AiChainOfThoughtComponent",
|
|
949
989
|
"members": [
|
|
950
990
|
{
|
|
951
|
-
"kind": "
|
|
952
|
-
"name": "
|
|
991
|
+
"kind": "field",
|
|
992
|
+
"name": "expanded",
|
|
993
|
+
"type": {
|
|
994
|
+
"text": "boolean"
|
|
995
|
+
},
|
|
953
996
|
"privacy": "public",
|
|
954
|
-
"
|
|
997
|
+
"default": "false",
|
|
998
|
+
"description": "Whether the chain of thought is expanded",
|
|
999
|
+
"attribute": "expanded",
|
|
1000
|
+
"reflects": true
|
|
1001
|
+
}
|
|
1002
|
+
],
|
|
1003
|
+
"attributes": [
|
|
1004
|
+
{
|
|
1005
|
+
"name": "expanded",
|
|
1006
|
+
"type": {
|
|
1007
|
+
"text": "boolean"
|
|
1008
|
+
},
|
|
1009
|
+
"default": "false",
|
|
1010
|
+
"description": "Whether the chain of thought is expanded",
|
|
1011
|
+
"fieldName": "expanded"
|
|
1012
|
+
}
|
|
1013
|
+
],
|
|
1014
|
+
"superclass": {
|
|
1015
|
+
"name": "LitElement",
|
|
1016
|
+
"package": "lit"
|
|
1017
|
+
},
|
|
1018
|
+
"tagName": "forge-ai-chain-of-thought",
|
|
1019
|
+
"customElement": true
|
|
1020
|
+
}
|
|
1021
|
+
],
|
|
1022
|
+
"exports": [
|
|
1023
|
+
{
|
|
1024
|
+
"kind": "js",
|
|
1025
|
+
"name": "AiChainOfThoughtComponentTagName",
|
|
1026
|
+
"declaration": {
|
|
1027
|
+
"name": "AiChainOfThoughtComponentTagName",
|
|
1028
|
+
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
1029
|
+
}
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
"kind": "js",
|
|
1033
|
+
"name": "AiChainOfThoughtComponent",
|
|
1034
|
+
"declaration": {
|
|
1035
|
+
"name": "AiChainOfThoughtComponent",
|
|
1036
|
+
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
1037
|
+
}
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
"kind": "custom-element-definition",
|
|
1041
|
+
"declaration": {
|
|
1042
|
+
"name": "AiChainOfThoughtComponent",
|
|
1043
|
+
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
1044
|
+
}
|
|
1045
|
+
}
|
|
1046
|
+
]
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
"kind": "javascript-module",
|
|
1050
|
+
"path": "src/lib/ai-chat-interface/ai-chat-interface.ts",
|
|
1051
|
+
"declarations": [
|
|
1052
|
+
{
|
|
1053
|
+
"kind": "variable",
|
|
1054
|
+
"name": "AiChatInterfaceComponentTagName",
|
|
1055
|
+
"type": {
|
|
1056
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
1057
|
+
},
|
|
1058
|
+
"default": "'forge-ai-chat-interface'"
|
|
1059
|
+
},
|
|
1060
|
+
{
|
|
1061
|
+
"kind": "class",
|
|
1062
|
+
"description": "",
|
|
1063
|
+
"name": "AiChatInterfaceComponent",
|
|
1064
|
+
"slots": [
|
|
1065
|
+
{
|
|
1066
|
+
"description": "Default slot for messages",
|
|
1067
|
+
"name": ""
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
"description": "Slot for AI chat header component",
|
|
1071
|
+
"name": "header"
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
"description": "Slot for AI suggestions component",
|
|
1075
|
+
"name": "suggestions"
|
|
1076
|
+
},
|
|
1077
|
+
{
|
|
1078
|
+
"description": "Slot for file attachments component",
|
|
1079
|
+
"name": "attachments"
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
"description": "Slot for AI prompt component",
|
|
1083
|
+
"name": "prompt"
|
|
1084
|
+
}
|
|
1085
|
+
],
|
|
1086
|
+
"members": [
|
|
1087
|
+
{
|
|
1088
|
+
"kind": "method",
|
|
1089
|
+
"name": "scrollToBottom",
|
|
1090
|
+
"privacy": "public",
|
|
1091
|
+
"return": {
|
|
955
1092
|
"type": {
|
|
956
1093
|
"text": "void"
|
|
957
1094
|
}
|
|
@@ -992,6 +1129,149 @@
|
|
|
992
1129
|
}
|
|
993
1130
|
]
|
|
994
1131
|
},
|
|
1132
|
+
{
|
|
1133
|
+
"kind": "javascript-module",
|
|
1134
|
+
"path": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts",
|
|
1135
|
+
"declarations": [
|
|
1136
|
+
{
|
|
1137
|
+
"kind": "variable",
|
|
1138
|
+
"name": "AiConfirmationPromptComponentTagName",
|
|
1139
|
+
"type": {
|
|
1140
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
1141
|
+
},
|
|
1142
|
+
"default": "'forge-ai-confirmation-prompt'"
|
|
1143
|
+
},
|
|
1144
|
+
{
|
|
1145
|
+
"kind": "class",
|
|
1146
|
+
"description": "",
|
|
1147
|
+
"name": "AiConfirmationPromptComponent",
|
|
1148
|
+
"members": [
|
|
1149
|
+
{
|
|
1150
|
+
"kind": "field",
|
|
1151
|
+
"name": "text",
|
|
1152
|
+
"type": {
|
|
1153
|
+
"text": "string"
|
|
1154
|
+
},
|
|
1155
|
+
"privacy": "public",
|
|
1156
|
+
"default": "''",
|
|
1157
|
+
"attribute": "text"
|
|
1158
|
+
},
|
|
1159
|
+
{
|
|
1160
|
+
"kind": "field",
|
|
1161
|
+
"name": "confirmText",
|
|
1162
|
+
"type": {
|
|
1163
|
+
"text": "string"
|
|
1164
|
+
},
|
|
1165
|
+
"privacy": "public",
|
|
1166
|
+
"default": "'Confirm'",
|
|
1167
|
+
"attribute": "confirm-text"
|
|
1168
|
+
},
|
|
1169
|
+
{
|
|
1170
|
+
"kind": "field",
|
|
1171
|
+
"name": "denyText",
|
|
1172
|
+
"type": {
|
|
1173
|
+
"text": "string"
|
|
1174
|
+
},
|
|
1175
|
+
"privacy": "public",
|
|
1176
|
+
"default": "'Deny'",
|
|
1177
|
+
"attribute": "deny-text"
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
"kind": "field",
|
|
1181
|
+
"name": "disabled",
|
|
1182
|
+
"type": {
|
|
1183
|
+
"text": "boolean"
|
|
1184
|
+
},
|
|
1185
|
+
"privacy": "public",
|
|
1186
|
+
"default": "false",
|
|
1187
|
+
"attribute": "disabled"
|
|
1188
|
+
}
|
|
1189
|
+
],
|
|
1190
|
+
"events": [
|
|
1191
|
+
{
|
|
1192
|
+
"type": {
|
|
1193
|
+
"text": "CustomEvent<void>"
|
|
1194
|
+
},
|
|
1195
|
+
"description": "Fired when user confirms the prompt",
|
|
1196
|
+
"name": "forge-ai-confirmation-prompt-confirm"
|
|
1197
|
+
},
|
|
1198
|
+
{
|
|
1199
|
+
"type": {
|
|
1200
|
+
"text": "CustomEvent<void>"
|
|
1201
|
+
},
|
|
1202
|
+
"description": "Fired when user denies the prompt",
|
|
1203
|
+
"name": "forge-ai-confirmation-prompt-deny"
|
|
1204
|
+
}
|
|
1205
|
+
],
|
|
1206
|
+
"attributes": [
|
|
1207
|
+
{
|
|
1208
|
+
"name": "text",
|
|
1209
|
+
"type": {
|
|
1210
|
+
"text": "string"
|
|
1211
|
+
},
|
|
1212
|
+
"default": "''",
|
|
1213
|
+
"fieldName": "text"
|
|
1214
|
+
},
|
|
1215
|
+
{
|
|
1216
|
+
"name": "confirm-text",
|
|
1217
|
+
"type": {
|
|
1218
|
+
"text": "string"
|
|
1219
|
+
},
|
|
1220
|
+
"default": "'Confirm'",
|
|
1221
|
+
"fieldName": "confirmText"
|
|
1222
|
+
},
|
|
1223
|
+
{
|
|
1224
|
+
"name": "deny-text",
|
|
1225
|
+
"type": {
|
|
1226
|
+
"text": "string"
|
|
1227
|
+
},
|
|
1228
|
+
"default": "'Deny'",
|
|
1229
|
+
"fieldName": "denyText"
|
|
1230
|
+
},
|
|
1231
|
+
{
|
|
1232
|
+
"name": "disabled",
|
|
1233
|
+
"type": {
|
|
1234
|
+
"text": "boolean"
|
|
1235
|
+
},
|
|
1236
|
+
"default": "false",
|
|
1237
|
+
"fieldName": "disabled"
|
|
1238
|
+
}
|
|
1239
|
+
],
|
|
1240
|
+
"superclass": {
|
|
1241
|
+
"name": "LitElement",
|
|
1242
|
+
"package": "lit"
|
|
1243
|
+
},
|
|
1244
|
+
"tagName": "forge-ai-confirmation-prompt",
|
|
1245
|
+
"customElement": true,
|
|
1246
|
+
"summary": "Displays a confirmation UI for requiring human approval."
|
|
1247
|
+
}
|
|
1248
|
+
],
|
|
1249
|
+
"exports": [
|
|
1250
|
+
{
|
|
1251
|
+
"kind": "js",
|
|
1252
|
+
"name": "AiConfirmationPromptComponentTagName",
|
|
1253
|
+
"declaration": {
|
|
1254
|
+
"name": "AiConfirmationPromptComponentTagName",
|
|
1255
|
+
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
1256
|
+
}
|
|
1257
|
+
},
|
|
1258
|
+
{
|
|
1259
|
+
"kind": "js",
|
|
1260
|
+
"name": "AiConfirmationPromptComponent",
|
|
1261
|
+
"declaration": {
|
|
1262
|
+
"name": "AiConfirmationPromptComponent",
|
|
1263
|
+
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
1264
|
+
}
|
|
1265
|
+
},
|
|
1266
|
+
{
|
|
1267
|
+
"kind": "custom-element-definition",
|
|
1268
|
+
"declaration": {
|
|
1269
|
+
"name": "AiConfirmationPromptComponent",
|
|
1270
|
+
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
1271
|
+
}
|
|
1272
|
+
}
|
|
1273
|
+
]
|
|
1274
|
+
},
|
|
995
1275
|
{
|
|
996
1276
|
"kind": "javascript-module",
|
|
997
1277
|
"path": "src/lib/ai-chatbot/ag-ui-adapter.ts",
|
|
@@ -1566,24 +1846,18 @@
|
|
|
1566
1846
|
},
|
|
1567
1847
|
{
|
|
1568
1848
|
"kind": "method",
|
|
1569
|
-
"name": "
|
|
1849
|
+
"name": "onCustomEvent",
|
|
1570
1850
|
"privacy": "public",
|
|
1571
1851
|
"return": {
|
|
1572
1852
|
"type": {
|
|
1573
|
-
"text": "
|
|
1853
|
+
"text": "Subscription"
|
|
1574
1854
|
}
|
|
1575
1855
|
},
|
|
1576
1856
|
"parameters": [
|
|
1577
1857
|
{
|
|
1578
|
-
"name": "
|
|
1579
|
-
"type": {
|
|
1580
|
-
"text": "File"
|
|
1581
|
-
}
|
|
1582
|
-
},
|
|
1583
|
-
{
|
|
1584
|
-
"name": "callbacks",
|
|
1858
|
+
"name": "callback",
|
|
1585
1859
|
"type": {
|
|
1586
|
-
"text": "
|
|
1860
|
+
"text": "(event: CustomAgentEvent) => void"
|
|
1587
1861
|
}
|
|
1588
1862
|
}
|
|
1589
1863
|
],
|
|
@@ -1594,18 +1868,222 @@
|
|
|
1594
1868
|
},
|
|
1595
1869
|
{
|
|
1596
1870
|
"kind": "method",
|
|
1597
|
-
"name": "
|
|
1871
|
+
"name": "onRawEvent",
|
|
1598
1872
|
"privacy": "public",
|
|
1599
1873
|
"return": {
|
|
1600
1874
|
"type": {
|
|
1601
|
-
"text": "
|
|
1875
|
+
"text": "Subscription"
|
|
1602
1876
|
}
|
|
1603
1877
|
},
|
|
1604
1878
|
"parameters": [
|
|
1605
1879
|
{
|
|
1606
|
-
"name": "
|
|
1880
|
+
"name": "callback",
|
|
1607
1881
|
"type": {
|
|
1608
|
-
"text": "
|
|
1882
|
+
"text": "(event: RawAgentEvent) => void"
|
|
1883
|
+
}
|
|
1884
|
+
}
|
|
1885
|
+
],
|
|
1886
|
+
"inheritedFrom": {
|
|
1887
|
+
"name": "AgentAdapter",
|
|
1888
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1889
|
+
}
|
|
1890
|
+
},
|
|
1891
|
+
{
|
|
1892
|
+
"kind": "method",
|
|
1893
|
+
"name": "onRunStartedEvent",
|
|
1894
|
+
"privacy": "public",
|
|
1895
|
+
"return": {
|
|
1896
|
+
"type": {
|
|
1897
|
+
"text": "Subscription"
|
|
1898
|
+
}
|
|
1899
|
+
},
|
|
1900
|
+
"parameters": [
|
|
1901
|
+
{
|
|
1902
|
+
"name": "callback",
|
|
1903
|
+
"type": {
|
|
1904
|
+
"text": "(event: RunStartedAgentEvent) => void"
|
|
1905
|
+
}
|
|
1906
|
+
}
|
|
1907
|
+
],
|
|
1908
|
+
"inheritedFrom": {
|
|
1909
|
+
"name": "AgentAdapter",
|
|
1910
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1911
|
+
}
|
|
1912
|
+
},
|
|
1913
|
+
{
|
|
1914
|
+
"kind": "method",
|
|
1915
|
+
"name": "onStepStarted",
|
|
1916
|
+
"privacy": "public",
|
|
1917
|
+
"return": {
|
|
1918
|
+
"type": {
|
|
1919
|
+
"text": "Subscription"
|
|
1920
|
+
}
|
|
1921
|
+
},
|
|
1922
|
+
"parameters": [
|
|
1923
|
+
{
|
|
1924
|
+
"name": "callback",
|
|
1925
|
+
"type": {
|
|
1926
|
+
"text": "(event: StepStartedAgentEvent) => void"
|
|
1927
|
+
}
|
|
1928
|
+
}
|
|
1929
|
+
],
|
|
1930
|
+
"inheritedFrom": {
|
|
1931
|
+
"name": "AgentAdapter",
|
|
1932
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1933
|
+
}
|
|
1934
|
+
},
|
|
1935
|
+
{
|
|
1936
|
+
"kind": "method",
|
|
1937
|
+
"name": "onStepFinished",
|
|
1938
|
+
"privacy": "public",
|
|
1939
|
+
"return": {
|
|
1940
|
+
"type": {
|
|
1941
|
+
"text": "Subscription"
|
|
1942
|
+
}
|
|
1943
|
+
},
|
|
1944
|
+
"parameters": [
|
|
1945
|
+
{
|
|
1946
|
+
"name": "callback",
|
|
1947
|
+
"type": {
|
|
1948
|
+
"text": "(event: StepFinishedAgentEvent) => void"
|
|
1949
|
+
}
|
|
1950
|
+
}
|
|
1951
|
+
],
|
|
1952
|
+
"inheritedFrom": {
|
|
1953
|
+
"name": "AgentAdapter",
|
|
1954
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1955
|
+
}
|
|
1956
|
+
},
|
|
1957
|
+
{
|
|
1958
|
+
"kind": "method",
|
|
1959
|
+
"name": "onStateSnapshot",
|
|
1960
|
+
"privacy": "public",
|
|
1961
|
+
"return": {
|
|
1962
|
+
"type": {
|
|
1963
|
+
"text": "Subscription"
|
|
1964
|
+
}
|
|
1965
|
+
},
|
|
1966
|
+
"parameters": [
|
|
1967
|
+
{
|
|
1968
|
+
"name": "callback",
|
|
1969
|
+
"type": {
|
|
1970
|
+
"text": "(event: StateSnapshotAgentEvent) => void"
|
|
1971
|
+
}
|
|
1972
|
+
}
|
|
1973
|
+
],
|
|
1974
|
+
"inheritedFrom": {
|
|
1975
|
+
"name": "AgentAdapter",
|
|
1976
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1977
|
+
}
|
|
1978
|
+
},
|
|
1979
|
+
{
|
|
1980
|
+
"kind": "method",
|
|
1981
|
+
"name": "onStateDelta",
|
|
1982
|
+
"privacy": "public",
|
|
1983
|
+
"return": {
|
|
1984
|
+
"type": {
|
|
1985
|
+
"text": "Subscription"
|
|
1986
|
+
}
|
|
1987
|
+
},
|
|
1988
|
+
"parameters": [
|
|
1989
|
+
{
|
|
1990
|
+
"name": "callback",
|
|
1991
|
+
"type": {
|
|
1992
|
+
"text": "(event: StateDeltaAgentEvent) => void"
|
|
1993
|
+
}
|
|
1994
|
+
}
|
|
1995
|
+
],
|
|
1996
|
+
"inheritedFrom": {
|
|
1997
|
+
"name": "AgentAdapter",
|
|
1998
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1999
|
+
}
|
|
2000
|
+
},
|
|
2001
|
+
{
|
|
2002
|
+
"kind": "method",
|
|
2003
|
+
"name": "onActivitySnapshot",
|
|
2004
|
+
"privacy": "public",
|
|
2005
|
+
"return": {
|
|
2006
|
+
"type": {
|
|
2007
|
+
"text": "Subscription"
|
|
2008
|
+
}
|
|
2009
|
+
},
|
|
2010
|
+
"parameters": [
|
|
2011
|
+
{
|
|
2012
|
+
"name": "callback",
|
|
2013
|
+
"type": {
|
|
2014
|
+
"text": "(event: ActivitySnapshotAgentEvent) => void"
|
|
2015
|
+
}
|
|
2016
|
+
}
|
|
2017
|
+
],
|
|
2018
|
+
"inheritedFrom": {
|
|
2019
|
+
"name": "AgentAdapter",
|
|
2020
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
2021
|
+
}
|
|
2022
|
+
},
|
|
2023
|
+
{
|
|
2024
|
+
"kind": "method",
|
|
2025
|
+
"name": "onActivityDelta",
|
|
2026
|
+
"privacy": "public",
|
|
2027
|
+
"return": {
|
|
2028
|
+
"type": {
|
|
2029
|
+
"text": "Subscription"
|
|
2030
|
+
}
|
|
2031
|
+
},
|
|
2032
|
+
"parameters": [
|
|
2033
|
+
{
|
|
2034
|
+
"name": "callback",
|
|
2035
|
+
"type": {
|
|
2036
|
+
"text": "(event: ActivityDeltaAgentEvent) => void"
|
|
2037
|
+
}
|
|
2038
|
+
}
|
|
2039
|
+
],
|
|
2040
|
+
"inheritedFrom": {
|
|
2041
|
+
"name": "AgentAdapter",
|
|
2042
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
2043
|
+
}
|
|
2044
|
+
},
|
|
2045
|
+
{
|
|
2046
|
+
"kind": "method",
|
|
2047
|
+
"name": "emitFileUpload",
|
|
2048
|
+
"privacy": "public",
|
|
2049
|
+
"return": {
|
|
2050
|
+
"type": {
|
|
2051
|
+
"text": "void"
|
|
2052
|
+
}
|
|
2053
|
+
},
|
|
2054
|
+
"parameters": [
|
|
2055
|
+
{
|
|
2056
|
+
"name": "file",
|
|
2057
|
+
"type": {
|
|
2058
|
+
"text": "File"
|
|
2059
|
+
}
|
|
2060
|
+
},
|
|
2061
|
+
{
|
|
2062
|
+
"name": "callbacks",
|
|
2063
|
+
"type": {
|
|
2064
|
+
"text": "FileUploadCallbacks"
|
|
2065
|
+
}
|
|
2066
|
+
}
|
|
2067
|
+
],
|
|
2068
|
+
"inheritedFrom": {
|
|
2069
|
+
"name": "AgentAdapter",
|
|
2070
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
2071
|
+
}
|
|
2072
|
+
},
|
|
2073
|
+
{
|
|
2074
|
+
"kind": "method",
|
|
2075
|
+
"name": "emitFileRemove",
|
|
2076
|
+
"privacy": "public",
|
|
2077
|
+
"return": {
|
|
2078
|
+
"type": {
|
|
2079
|
+
"text": "void"
|
|
2080
|
+
}
|
|
2081
|
+
},
|
|
2082
|
+
"parameters": [
|
|
2083
|
+
{
|
|
2084
|
+
"name": "fileId",
|
|
2085
|
+
"type": {
|
|
2086
|
+
"text": "string"
|
|
1609
2087
|
}
|
|
1610
2088
|
},
|
|
1611
2089
|
{
|
|
@@ -2084,90 +2562,252 @@
|
|
|
2084
2562
|
},
|
|
2085
2563
|
{
|
|
2086
2564
|
"kind": "method",
|
|
2087
|
-
"name": "
|
|
2565
|
+
"name": "onCustomEvent",
|
|
2088
2566
|
"privacy": "public",
|
|
2089
2567
|
"return": {
|
|
2090
2568
|
"type": {
|
|
2091
|
-
"text": "
|
|
2569
|
+
"text": "Subscription"
|
|
2092
2570
|
}
|
|
2093
2571
|
},
|
|
2094
2572
|
"parameters": [
|
|
2095
2573
|
{
|
|
2096
|
-
"name": "
|
|
2097
|
-
"type": {
|
|
2098
|
-
"text": "File"
|
|
2099
|
-
}
|
|
2100
|
-
},
|
|
2101
|
-
{
|
|
2102
|
-
"name": "callbacks",
|
|
2574
|
+
"name": "callback",
|
|
2103
2575
|
"type": {
|
|
2104
|
-
"text": "
|
|
2576
|
+
"text": "(event: CustomAgentEvent) => void"
|
|
2105
2577
|
}
|
|
2106
2578
|
}
|
|
2107
2579
|
]
|
|
2108
2580
|
},
|
|
2109
2581
|
{
|
|
2110
2582
|
"kind": "method",
|
|
2111
|
-
"name": "
|
|
2583
|
+
"name": "onRawEvent",
|
|
2112
2584
|
"privacy": "public",
|
|
2113
2585
|
"return": {
|
|
2114
2586
|
"type": {
|
|
2115
|
-
"text": "
|
|
2587
|
+
"text": "Subscription"
|
|
2116
2588
|
}
|
|
2117
2589
|
},
|
|
2118
2590
|
"parameters": [
|
|
2119
2591
|
{
|
|
2120
|
-
"name": "
|
|
2592
|
+
"name": "callback",
|
|
2121
2593
|
"type": {
|
|
2122
|
-
"text": "
|
|
2594
|
+
"text": "(event: RawAgentEvent) => void"
|
|
2123
2595
|
}
|
|
2124
|
-
}
|
|
2596
|
+
}
|
|
2597
|
+
]
|
|
2598
|
+
},
|
|
2599
|
+
{
|
|
2600
|
+
"kind": "method",
|
|
2601
|
+
"name": "onRunStartedEvent",
|
|
2602
|
+
"privacy": "public",
|
|
2603
|
+
"return": {
|
|
2604
|
+
"type": {
|
|
2605
|
+
"text": "Subscription"
|
|
2606
|
+
}
|
|
2607
|
+
},
|
|
2608
|
+
"parameters": [
|
|
2125
2609
|
{
|
|
2126
|
-
"name": "
|
|
2610
|
+
"name": "callback",
|
|
2127
2611
|
"type": {
|
|
2128
|
-
"text": "
|
|
2612
|
+
"text": "(event: RunStartedAgentEvent) => void"
|
|
2129
2613
|
}
|
|
2130
2614
|
}
|
|
2131
2615
|
]
|
|
2132
|
-
}
|
|
2133
|
-
]
|
|
2134
|
-
}
|
|
2135
|
-
],
|
|
2136
|
-
"exports": [
|
|
2137
|
-
{
|
|
2138
|
-
"kind": "js",
|
|
2139
|
-
"name": "AgentAdapter",
|
|
2140
|
-
"declaration": {
|
|
2141
|
-
"name": "AgentAdapter",
|
|
2142
|
-
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
2143
|
-
}
|
|
2144
|
-
}
|
|
2145
|
-
]
|
|
2146
|
-
},
|
|
2147
|
-
{
|
|
2148
|
-
"kind": "javascript-module",
|
|
2149
|
-
"path": "src/lib/ai-chatbot/agent-runner.ts",
|
|
2150
|
-
"declarations": [
|
|
2151
|
-
{
|
|
2152
|
-
"kind": "class",
|
|
2153
|
-
"description": "",
|
|
2154
|
-
"name": "AgentRunner",
|
|
2155
|
-
"members": [
|
|
2616
|
+
},
|
|
2156
2617
|
{
|
|
2157
2618
|
"kind": "method",
|
|
2158
|
-
"name": "
|
|
2619
|
+
"name": "onStepStarted",
|
|
2159
2620
|
"privacy": "public",
|
|
2160
|
-
"static": true,
|
|
2161
2621
|
"return": {
|
|
2162
2622
|
"type": {
|
|
2163
|
-
"text": "
|
|
2623
|
+
"text": "Subscription"
|
|
2164
2624
|
}
|
|
2165
2625
|
},
|
|
2166
2626
|
"parameters": [
|
|
2167
2627
|
{
|
|
2168
|
-
"name": "
|
|
2628
|
+
"name": "callback",
|
|
2169
2629
|
"type": {
|
|
2170
|
-
"text": "
|
|
2630
|
+
"text": "(event: StepStartedAgentEvent) => void"
|
|
2631
|
+
}
|
|
2632
|
+
}
|
|
2633
|
+
]
|
|
2634
|
+
},
|
|
2635
|
+
{
|
|
2636
|
+
"kind": "method",
|
|
2637
|
+
"name": "onStepFinished",
|
|
2638
|
+
"privacy": "public",
|
|
2639
|
+
"return": {
|
|
2640
|
+
"type": {
|
|
2641
|
+
"text": "Subscription"
|
|
2642
|
+
}
|
|
2643
|
+
},
|
|
2644
|
+
"parameters": [
|
|
2645
|
+
{
|
|
2646
|
+
"name": "callback",
|
|
2647
|
+
"type": {
|
|
2648
|
+
"text": "(event: StepFinishedAgentEvent) => void"
|
|
2649
|
+
}
|
|
2650
|
+
}
|
|
2651
|
+
]
|
|
2652
|
+
},
|
|
2653
|
+
{
|
|
2654
|
+
"kind": "method",
|
|
2655
|
+
"name": "onStateSnapshot",
|
|
2656
|
+
"privacy": "public",
|
|
2657
|
+
"return": {
|
|
2658
|
+
"type": {
|
|
2659
|
+
"text": "Subscription"
|
|
2660
|
+
}
|
|
2661
|
+
},
|
|
2662
|
+
"parameters": [
|
|
2663
|
+
{
|
|
2664
|
+
"name": "callback",
|
|
2665
|
+
"type": {
|
|
2666
|
+
"text": "(event: StateSnapshotAgentEvent) => void"
|
|
2667
|
+
}
|
|
2668
|
+
}
|
|
2669
|
+
]
|
|
2670
|
+
},
|
|
2671
|
+
{
|
|
2672
|
+
"kind": "method",
|
|
2673
|
+
"name": "onStateDelta",
|
|
2674
|
+
"privacy": "public",
|
|
2675
|
+
"return": {
|
|
2676
|
+
"type": {
|
|
2677
|
+
"text": "Subscription"
|
|
2678
|
+
}
|
|
2679
|
+
},
|
|
2680
|
+
"parameters": [
|
|
2681
|
+
{
|
|
2682
|
+
"name": "callback",
|
|
2683
|
+
"type": {
|
|
2684
|
+
"text": "(event: StateDeltaAgentEvent) => void"
|
|
2685
|
+
}
|
|
2686
|
+
}
|
|
2687
|
+
]
|
|
2688
|
+
},
|
|
2689
|
+
{
|
|
2690
|
+
"kind": "method",
|
|
2691
|
+
"name": "onActivitySnapshot",
|
|
2692
|
+
"privacy": "public",
|
|
2693
|
+
"return": {
|
|
2694
|
+
"type": {
|
|
2695
|
+
"text": "Subscription"
|
|
2696
|
+
}
|
|
2697
|
+
},
|
|
2698
|
+
"parameters": [
|
|
2699
|
+
{
|
|
2700
|
+
"name": "callback",
|
|
2701
|
+
"type": {
|
|
2702
|
+
"text": "(event: ActivitySnapshotAgentEvent) => void"
|
|
2703
|
+
}
|
|
2704
|
+
}
|
|
2705
|
+
]
|
|
2706
|
+
},
|
|
2707
|
+
{
|
|
2708
|
+
"kind": "method",
|
|
2709
|
+
"name": "onActivityDelta",
|
|
2710
|
+
"privacy": "public",
|
|
2711
|
+
"return": {
|
|
2712
|
+
"type": {
|
|
2713
|
+
"text": "Subscription"
|
|
2714
|
+
}
|
|
2715
|
+
},
|
|
2716
|
+
"parameters": [
|
|
2717
|
+
{
|
|
2718
|
+
"name": "callback",
|
|
2719
|
+
"type": {
|
|
2720
|
+
"text": "(event: ActivityDeltaAgentEvent) => void"
|
|
2721
|
+
}
|
|
2722
|
+
}
|
|
2723
|
+
]
|
|
2724
|
+
},
|
|
2725
|
+
{
|
|
2726
|
+
"kind": "method",
|
|
2727
|
+
"name": "emitFileUpload",
|
|
2728
|
+
"privacy": "public",
|
|
2729
|
+
"return": {
|
|
2730
|
+
"type": {
|
|
2731
|
+
"text": "void"
|
|
2732
|
+
}
|
|
2733
|
+
},
|
|
2734
|
+
"parameters": [
|
|
2735
|
+
{
|
|
2736
|
+
"name": "file",
|
|
2737
|
+
"type": {
|
|
2738
|
+
"text": "File"
|
|
2739
|
+
}
|
|
2740
|
+
},
|
|
2741
|
+
{
|
|
2742
|
+
"name": "callbacks",
|
|
2743
|
+
"type": {
|
|
2744
|
+
"text": "FileUploadCallbacks"
|
|
2745
|
+
}
|
|
2746
|
+
}
|
|
2747
|
+
]
|
|
2748
|
+
},
|
|
2749
|
+
{
|
|
2750
|
+
"kind": "method",
|
|
2751
|
+
"name": "emitFileRemove",
|
|
2752
|
+
"privacy": "public",
|
|
2753
|
+
"return": {
|
|
2754
|
+
"type": {
|
|
2755
|
+
"text": "void"
|
|
2756
|
+
}
|
|
2757
|
+
},
|
|
2758
|
+
"parameters": [
|
|
2759
|
+
{
|
|
2760
|
+
"name": "fileId",
|
|
2761
|
+
"type": {
|
|
2762
|
+
"text": "string"
|
|
2763
|
+
}
|
|
2764
|
+
},
|
|
2765
|
+
{
|
|
2766
|
+
"name": "callbacks",
|
|
2767
|
+
"type": {
|
|
2768
|
+
"text": "{ onSuccess: () => void; onError: (error: string) => void }"
|
|
2769
|
+
}
|
|
2770
|
+
}
|
|
2771
|
+
]
|
|
2772
|
+
}
|
|
2773
|
+
]
|
|
2774
|
+
}
|
|
2775
|
+
],
|
|
2776
|
+
"exports": [
|
|
2777
|
+
{
|
|
2778
|
+
"kind": "js",
|
|
2779
|
+
"name": "AgentAdapter",
|
|
2780
|
+
"declaration": {
|
|
2781
|
+
"name": "AgentAdapter",
|
|
2782
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
2783
|
+
}
|
|
2784
|
+
}
|
|
2785
|
+
]
|
|
2786
|
+
},
|
|
2787
|
+
{
|
|
2788
|
+
"kind": "javascript-module",
|
|
2789
|
+
"path": "src/lib/ai-chatbot/agent-runner.ts",
|
|
2790
|
+
"declarations": [
|
|
2791
|
+
{
|
|
2792
|
+
"kind": "class",
|
|
2793
|
+
"description": "",
|
|
2794
|
+
"name": "AgentRunner",
|
|
2795
|
+
"members": [
|
|
2796
|
+
{
|
|
2797
|
+
"kind": "method",
|
|
2798
|
+
"name": "run",
|
|
2799
|
+
"privacy": "public",
|
|
2800
|
+
"static": true,
|
|
2801
|
+
"return": {
|
|
2802
|
+
"type": {
|
|
2803
|
+
"text": "Promise<AgentRunnerResult>"
|
|
2804
|
+
}
|
|
2805
|
+
},
|
|
2806
|
+
"parameters": [
|
|
2807
|
+
{
|
|
2808
|
+
"name": "config",
|
|
2809
|
+
"type": {
|
|
2810
|
+
"text": "AgentRunnerConfig"
|
|
2171
2811
|
}
|
|
2172
2812
|
}
|
|
2173
2813
|
]
|
|
@@ -2313,7 +2953,7 @@
|
|
|
2313
2953
|
"kind": "field",
|
|
2314
2954
|
"name": "adapter",
|
|
2315
2955
|
"type": {
|
|
2316
|
-
"text": "AgentAdapter"
|
|
2956
|
+
"text": "AgentAdapter | undefined"
|
|
2317
2957
|
},
|
|
2318
2958
|
"privacy": "public"
|
|
2319
2959
|
},
|
|
@@ -2337,6 +2977,16 @@
|
|
|
2337
2977
|
"default": "'on'",
|
|
2338
2978
|
"attribute": "voice-input"
|
|
2339
2979
|
},
|
|
2980
|
+
{
|
|
2981
|
+
"kind": "field",
|
|
2982
|
+
"name": "debugCommand",
|
|
2983
|
+
"type": {
|
|
2984
|
+
"text": "FeatureToggle"
|
|
2985
|
+
},
|
|
2986
|
+
"privacy": "public",
|
|
2987
|
+
"default": "'on'",
|
|
2988
|
+
"attribute": "debug-command"
|
|
2989
|
+
},
|
|
2340
2990
|
{
|
|
2341
2991
|
"kind": "field",
|
|
2342
2992
|
"name": "placeholder",
|
|
@@ -2421,6 +3071,7 @@
|
|
|
2421
3071
|
},
|
|
2422
3072
|
"privacy": "public",
|
|
2423
3073
|
"default": "'AI Assistant'",
|
|
3074
|
+
"description": "The title text to display in the header (default: 'AI Assistant')",
|
|
2424
3075
|
"attribute": "title-text"
|
|
2425
3076
|
},
|
|
2426
3077
|
{
|
|
@@ -2431,6 +3082,7 @@
|
|
|
2431
3082
|
},
|
|
2432
3083
|
"privacy": "public",
|
|
2433
3084
|
"default": "2",
|
|
3085
|
+
"description": "Controls the heading level for the title content (default: 2)",
|
|
2434
3086
|
"attribute": "heading-level"
|
|
2435
3087
|
},
|
|
2436
3088
|
{
|
|
@@ -2443,6 +3095,17 @@
|
|
|
2443
3095
|
"default": "false",
|
|
2444
3096
|
"attribute": "debug-mode"
|
|
2445
3097
|
},
|
|
3098
|
+
{
|
|
3099
|
+
"kind": "field",
|
|
3100
|
+
"name": "disclaimerText",
|
|
3101
|
+
"type": {
|
|
3102
|
+
"text": "string | null | undefined"
|
|
3103
|
+
},
|
|
3104
|
+
"privacy": "public",
|
|
3105
|
+
"default": "'AI can make mistakes. Always verify responses.'",
|
|
3106
|
+
"description": "The disclaimer text to display below the prompt. Set to empty string, null, or undefined to hide.",
|
|
3107
|
+
"attribute": "disclaimer-text"
|
|
3108
|
+
},
|
|
2446
3109
|
{
|
|
2447
3110
|
"kind": "method",
|
|
2448
3111
|
"name": "clearMessages",
|
|
@@ -2665,6 +3328,14 @@
|
|
|
2665
3328
|
"default": "'on'",
|
|
2666
3329
|
"fieldName": "voiceInput"
|
|
2667
3330
|
},
|
|
3331
|
+
{
|
|
3332
|
+
"name": "debug-command",
|
|
3333
|
+
"type": {
|
|
3334
|
+
"text": "FeatureToggle"
|
|
3335
|
+
},
|
|
3336
|
+
"default": "'on'",
|
|
3337
|
+
"fieldName": "debugCommand"
|
|
3338
|
+
},
|
|
2668
3339
|
{
|
|
2669
3340
|
"name": "placeholder",
|
|
2670
3341
|
"type": {
|
|
@@ -2719,6 +3390,7 @@
|
|
|
2719
3390
|
"text": "string"
|
|
2720
3391
|
},
|
|
2721
3392
|
"default": "'AI Assistant'",
|
|
3393
|
+
"description": "The title text to display in the header (default: 'AI Assistant')",
|
|
2722
3394
|
"fieldName": "titleText"
|
|
2723
3395
|
},
|
|
2724
3396
|
{
|
|
@@ -2727,6 +3399,7 @@
|
|
|
2727
3399
|
"text": "HeadingLevel"
|
|
2728
3400
|
},
|
|
2729
3401
|
"default": "2",
|
|
3402
|
+
"description": "Controls the heading level for the title content (default: 2)",
|
|
2730
3403
|
"fieldName": "headingLevel"
|
|
2731
3404
|
},
|
|
2732
3405
|
{
|
|
@@ -2736,6 +3409,15 @@
|
|
|
2736
3409
|
},
|
|
2737
3410
|
"default": "false",
|
|
2738
3411
|
"fieldName": "debugMode"
|
|
3412
|
+
},
|
|
3413
|
+
{
|
|
3414
|
+
"name": "disclaimer-text",
|
|
3415
|
+
"type": {
|
|
3416
|
+
"text": "string | null | undefined"
|
|
3417
|
+
},
|
|
3418
|
+
"default": "'AI can make mistakes. Always verify responses.'",
|
|
3419
|
+
"description": "The disclaimer text to display below the prompt. Set to empty string, null, or undefined to hide.",
|
|
3420
|
+
"fieldName": "disclaimerText"
|
|
2739
3421
|
}
|
|
2740
3422
|
],
|
|
2741
3423
|
"superclass": {
|
|
@@ -3419,25 +4101,27 @@
|
|
|
3419
4101
|
},
|
|
3420
4102
|
{
|
|
3421
4103
|
"kind": "method",
|
|
3422
|
-
"name": "
|
|
4104
|
+
"name": "getActiveResponse",
|
|
3423
4105
|
"privacy": "public",
|
|
3424
4106
|
"return": {
|
|
3425
4107
|
"type": {
|
|
3426
|
-
"text": "
|
|
4108
|
+
"text": "AssistantResponse | null"
|
|
3427
4109
|
}
|
|
3428
|
-
}
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
|
|
3434
|
-
|
|
4110
|
+
}
|
|
4111
|
+
},
|
|
4112
|
+
{
|
|
4113
|
+
"kind": "method",
|
|
4114
|
+
"name": "startResponse",
|
|
4115
|
+
"privacy": "public",
|
|
4116
|
+
"return": {
|
|
4117
|
+
"type": {
|
|
4118
|
+
"text": "AssistantResponse"
|
|
3435
4119
|
}
|
|
3436
|
-
|
|
4120
|
+
}
|
|
3437
4121
|
},
|
|
3438
4122
|
{
|
|
3439
4123
|
"kind": "method",
|
|
3440
|
-
"name": "
|
|
4124
|
+
"name": "addTextToResponse",
|
|
3441
4125
|
"privacy": "public",
|
|
3442
4126
|
"return": {
|
|
3443
4127
|
"type": {
|
|
@@ -3446,9 +4130,15 @@
|
|
|
3446
4130
|
},
|
|
3447
4131
|
"parameters": [
|
|
3448
4132
|
{
|
|
3449
|
-
"name": "
|
|
4133
|
+
"name": "messageId",
|
|
3450
4134
|
"type": {
|
|
3451
|
-
"text": "
|
|
4135
|
+
"text": "string"
|
|
4136
|
+
}
|
|
4137
|
+
},
|
|
4138
|
+
{
|
|
4139
|
+
"name": "content",
|
|
4140
|
+
"type": {
|
|
4141
|
+
"text": "string"
|
|
3452
4142
|
}
|
|
3453
4143
|
},
|
|
3454
4144
|
{
|
|
@@ -3462,7 +4152,7 @@
|
|
|
3462
4152
|
},
|
|
3463
4153
|
{
|
|
3464
4154
|
"kind": "method",
|
|
3465
|
-
"name": "
|
|
4155
|
+
"name": "appendTextDelta",
|
|
3466
4156
|
"privacy": "public",
|
|
3467
4157
|
"return": {
|
|
3468
4158
|
"type": {
|
|
@@ -3471,23 +4161,29 @@
|
|
|
3471
4161
|
},
|
|
3472
4162
|
"parameters": [
|
|
3473
4163
|
{
|
|
3474
|
-
"name": "
|
|
4164
|
+
"name": "messageId",
|
|
3475
4165
|
"type": {
|
|
3476
|
-
"text": "
|
|
4166
|
+
"text": "string"
|
|
4167
|
+
}
|
|
4168
|
+
},
|
|
4169
|
+
{
|
|
4170
|
+
"name": "delta",
|
|
4171
|
+
"type": {
|
|
4172
|
+
"text": "string"
|
|
3477
4173
|
}
|
|
3478
4174
|
},
|
|
3479
4175
|
{
|
|
3480
4176
|
"name": "event",
|
|
3481
4177
|
"optional": true,
|
|
3482
4178
|
"type": {
|
|
3483
|
-
"text": "
|
|
4179
|
+
"text": "MessageDeltaEvent"
|
|
3484
4180
|
}
|
|
3485
4181
|
}
|
|
3486
4182
|
]
|
|
3487
4183
|
},
|
|
3488
4184
|
{
|
|
3489
4185
|
"kind": "method",
|
|
3490
|
-
"name": "
|
|
4186
|
+
"name": "markTextComplete",
|
|
3491
4187
|
"privacy": "public",
|
|
3492
4188
|
"return": {
|
|
3493
4189
|
"type": {
|
|
@@ -3496,29 +4192,23 @@
|
|
|
3496
4192
|
},
|
|
3497
4193
|
"parameters": [
|
|
3498
4194
|
{
|
|
3499
|
-
"name": "
|
|
4195
|
+
"name": "messageId",
|
|
3500
4196
|
"type": {
|
|
3501
4197
|
"text": "string"
|
|
3502
4198
|
}
|
|
3503
4199
|
},
|
|
3504
4200
|
{
|
|
3505
|
-
"name": "
|
|
3506
|
-
"type": {
|
|
3507
|
-
"text": "Partial<ToolCall>"
|
|
3508
|
-
}
|
|
3509
|
-
},
|
|
3510
|
-
{
|
|
3511
|
-
"name": "eventData",
|
|
4201
|
+
"name": "event",
|
|
3512
4202
|
"optional": true,
|
|
3513
4203
|
"type": {
|
|
3514
|
-
"text": "
|
|
4204
|
+
"text": "MessageEndEvent"
|
|
3515
4205
|
}
|
|
3516
4206
|
}
|
|
3517
4207
|
]
|
|
3518
4208
|
},
|
|
3519
4209
|
{
|
|
3520
4210
|
"kind": "method",
|
|
3521
|
-
"name": "
|
|
4211
|
+
"name": "addToolCallToResponse",
|
|
3522
4212
|
"privacy": "public",
|
|
3523
4213
|
"return": {
|
|
3524
4214
|
"type": {
|
|
@@ -3527,22 +4217,131 @@
|
|
|
3527
4217
|
},
|
|
3528
4218
|
"parameters": [
|
|
3529
4219
|
{
|
|
3530
|
-
"name": "
|
|
4220
|
+
"name": "toolCall",
|
|
3531
4221
|
"type": {
|
|
3532
|
-
"text": "
|
|
4222
|
+
"text": "ToolCall"
|
|
3533
4223
|
}
|
|
3534
4224
|
},
|
|
3535
4225
|
{
|
|
3536
|
-
"name": "
|
|
4226
|
+
"name": "event",
|
|
4227
|
+
"optional": true,
|
|
4228
|
+
"type": {
|
|
4229
|
+
"text": "ToolCallStartEvent"
|
|
4230
|
+
}
|
|
4231
|
+
}
|
|
4232
|
+
]
|
|
4233
|
+
},
|
|
4234
|
+
{
|
|
4235
|
+
"kind": "method",
|
|
4236
|
+
"name": "updateToolCallInResponse",
|
|
4237
|
+
"privacy": "public",
|
|
4238
|
+
"return": {
|
|
4239
|
+
"type": {
|
|
4240
|
+
"text": "void"
|
|
4241
|
+
}
|
|
4242
|
+
},
|
|
4243
|
+
"parameters": [
|
|
4244
|
+
{
|
|
4245
|
+
"name": "toolCallId",
|
|
4246
|
+
"type": {
|
|
4247
|
+
"text": "string"
|
|
4248
|
+
}
|
|
4249
|
+
},
|
|
4250
|
+
{
|
|
4251
|
+
"name": "updates",
|
|
4252
|
+
"type": {
|
|
4253
|
+
"text": "Partial<ToolCall>"
|
|
4254
|
+
}
|
|
4255
|
+
},
|
|
4256
|
+
{
|
|
4257
|
+
"name": "eventData",
|
|
4258
|
+
"optional": true,
|
|
4259
|
+
"type": {
|
|
4260
|
+
"text": "{\n eventType: 'tool-call-args' | 'tool-call-end';\n event: ToolCallArgsEvent | ToolCallEndEvent;\n }"
|
|
4261
|
+
}
|
|
4262
|
+
}
|
|
4263
|
+
]
|
|
4264
|
+
},
|
|
4265
|
+
{
|
|
4266
|
+
"kind": "method",
|
|
4267
|
+
"name": "completeToolCallInResponse",
|
|
4268
|
+
"privacy": "public",
|
|
4269
|
+
"return": {
|
|
4270
|
+
"type": {
|
|
4271
|
+
"text": "void"
|
|
4272
|
+
}
|
|
4273
|
+
},
|
|
4274
|
+
"parameters": [
|
|
4275
|
+
{
|
|
4276
|
+
"name": "toolCallId",
|
|
3537
4277
|
"type": {
|
|
3538
4278
|
"text": "string"
|
|
3539
4279
|
}
|
|
3540
4280
|
},
|
|
4281
|
+
{
|
|
4282
|
+
"name": "result",
|
|
4283
|
+
"type": {
|
|
4284
|
+
"text": "unknown"
|
|
4285
|
+
}
|
|
4286
|
+
},
|
|
3541
4287
|
{
|
|
3542
4288
|
"name": "event",
|
|
3543
4289
|
"optional": true,
|
|
3544
4290
|
"type": {
|
|
3545
|
-
"text": "
|
|
4291
|
+
"text": "ToolResultEvent"
|
|
4292
|
+
}
|
|
4293
|
+
}
|
|
4294
|
+
]
|
|
4295
|
+
},
|
|
4296
|
+
{
|
|
4297
|
+
"kind": "method",
|
|
4298
|
+
"name": "completeResponse",
|
|
4299
|
+
"privacy": "public",
|
|
4300
|
+
"return": {
|
|
4301
|
+
"type": {
|
|
4302
|
+
"text": "void"
|
|
4303
|
+
}
|
|
4304
|
+
}
|
|
4305
|
+
},
|
|
4306
|
+
{
|
|
4307
|
+
"kind": "method",
|
|
4308
|
+
"name": "addMessageItem",
|
|
4309
|
+
"privacy": "public",
|
|
4310
|
+
"return": {
|
|
4311
|
+
"type": {
|
|
4312
|
+
"text": "void"
|
|
4313
|
+
}
|
|
4314
|
+
},
|
|
4315
|
+
"parameters": [
|
|
4316
|
+
{
|
|
4317
|
+
"name": "item",
|
|
4318
|
+
"type": {
|
|
4319
|
+
"text": "MessageItem"
|
|
4320
|
+
}
|
|
4321
|
+
}
|
|
4322
|
+
]
|
|
4323
|
+
},
|
|
4324
|
+
{
|
|
4325
|
+
"kind": "method",
|
|
4326
|
+
"name": "addMessage",
|
|
4327
|
+
"privacy": "public",
|
|
4328
|
+
"return": {
|
|
4329
|
+
"type": {
|
|
4330
|
+
"text": "void"
|
|
4331
|
+
}
|
|
4332
|
+
},
|
|
4333
|
+
"parameters": [
|
|
4334
|
+
{
|
|
4335
|
+
"name": "message",
|
|
4336
|
+
"type": {
|
|
4337
|
+
"text": "ChatMessage"
|
|
4338
|
+
}
|
|
4339
|
+
},
|
|
4340
|
+
{
|
|
4341
|
+
"name": "event",
|
|
4342
|
+
"optional": true,
|
|
4343
|
+
"type": {
|
|
4344
|
+
"text": "MessageStartEvent"
|
|
3546
4345
|
}
|
|
3547
4346
|
}
|
|
3548
4347
|
]
|
|
@@ -3626,36 +4425,36 @@
|
|
|
3626
4425
|
},
|
|
3627
4426
|
{
|
|
3628
4427
|
"kind": "method",
|
|
3629
|
-
"name": "
|
|
4428
|
+
"name": "removeMessageItemsFrom",
|
|
3630
4429
|
"privacy": "public",
|
|
3631
4430
|
"return": {
|
|
3632
4431
|
"type": {
|
|
3633
|
-
"text": "
|
|
4432
|
+
"text": "void"
|
|
3634
4433
|
}
|
|
3635
4434
|
},
|
|
3636
|
-
"
|
|
4435
|
+
"parameters": [
|
|
4436
|
+
{
|
|
4437
|
+
"name": "index",
|
|
4438
|
+
"type": {
|
|
4439
|
+
"text": "number"
|
|
4440
|
+
}
|
|
4441
|
+
}
|
|
4442
|
+
]
|
|
3637
4443
|
},
|
|
3638
4444
|
{
|
|
3639
4445
|
"kind": "method",
|
|
3640
|
-
"name": "
|
|
4446
|
+
"name": "getMessages",
|
|
3641
4447
|
"privacy": "public",
|
|
3642
4448
|
"return": {
|
|
3643
4449
|
"type": {
|
|
3644
|
-
"text": "
|
|
4450
|
+
"text": "ChatMessage[]"
|
|
3645
4451
|
}
|
|
3646
4452
|
},
|
|
3647
|
-
"
|
|
3648
|
-
{
|
|
3649
|
-
"name": "messages",
|
|
3650
|
-
"type": {
|
|
3651
|
-
"text": "ChatMessage[]"
|
|
3652
|
-
}
|
|
3653
|
-
}
|
|
3654
|
-
]
|
|
4453
|
+
"description": "Reconstructs the message hierarchy for API compatibility.\nConverts assistant responses back to ChatMessage format with tool calls."
|
|
3655
4454
|
},
|
|
3656
4455
|
{
|
|
3657
4456
|
"kind": "method",
|
|
3658
|
-
"name": "
|
|
4457
|
+
"name": "setMessages",
|
|
3659
4458
|
"privacy": "public",
|
|
3660
4459
|
"return": {
|
|
3661
4460
|
"type": {
|
|
@@ -3664,22 +4463,9 @@
|
|
|
3664
4463
|
},
|
|
3665
4464
|
"parameters": [
|
|
3666
4465
|
{
|
|
3667
|
-
"name": "
|
|
3668
|
-
"type": {
|
|
3669
|
-
"text": "string"
|
|
3670
|
-
}
|
|
3671
|
-
},
|
|
3672
|
-
{
|
|
3673
|
-
"name": "result",
|
|
3674
|
-
"type": {
|
|
3675
|
-
"text": "unknown"
|
|
3676
|
-
}
|
|
3677
|
-
},
|
|
3678
|
-
{
|
|
3679
|
-
"name": "event",
|
|
3680
|
-
"optional": true,
|
|
4466
|
+
"name": "messages",
|
|
3681
4467
|
"type": {
|
|
3682
|
-
"text": "
|
|
4468
|
+
"text": "ChatMessage[]"
|
|
3683
4469
|
}
|
|
3684
4470
|
}
|
|
3685
4471
|
]
|
|
@@ -3794,266 +4580,123 @@
|
|
|
3794
4580
|
},
|
|
3795
4581
|
{
|
|
3796
4582
|
"kind": "javascript-module",
|
|
3797
|
-
"path": "src/lib/ai-
|
|
4583
|
+
"path": "src/lib/ai-dialog/ai-dialog.ts",
|
|
3798
4584
|
"declarations": [
|
|
3799
4585
|
{
|
|
3800
4586
|
"kind": "variable",
|
|
3801
|
-
"name": "
|
|
4587
|
+
"name": "AiDialogComponentTagName",
|
|
3802
4588
|
"type": {
|
|
3803
4589
|
"text": "keyof HTMLElementTagNameMap"
|
|
3804
4590
|
},
|
|
3805
|
-
"default": "'forge-ai-
|
|
4591
|
+
"default": "'forge-ai-dialog'"
|
|
3806
4592
|
},
|
|
3807
4593
|
{
|
|
3808
4594
|
"kind": "class",
|
|
3809
4595
|
"description": "",
|
|
3810
|
-
"name": "
|
|
4596
|
+
"name": "AiDialogComponent",
|
|
4597
|
+
"slots": [
|
|
4598
|
+
{
|
|
4599
|
+
"description": "Default slot for dialog content (typically ai-chat-interface)",
|
|
4600
|
+
"name": ""
|
|
4601
|
+
}
|
|
4602
|
+
],
|
|
3811
4603
|
"members": [
|
|
3812
4604
|
{
|
|
3813
4605
|
"kind": "field",
|
|
3814
|
-
"name": "
|
|
4606
|
+
"name": "open",
|
|
3815
4607
|
"type": {
|
|
3816
|
-
"text": "
|
|
4608
|
+
"text": "boolean"
|
|
3817
4609
|
},
|
|
3818
4610
|
"privacy": "public",
|
|
3819
|
-
"default": "
|
|
3820
|
-
"
|
|
4611
|
+
"default": "false",
|
|
4612
|
+
"description": "Indicates whether the dialog is open.",
|
|
4613
|
+
"attribute": "open"
|
|
3821
4614
|
},
|
|
3822
4615
|
{
|
|
3823
4616
|
"kind": "field",
|
|
3824
|
-
"name": "
|
|
4617
|
+
"name": "expanded",
|
|
3825
4618
|
"type": {
|
|
3826
|
-
"text": "
|
|
4619
|
+
"text": "boolean"
|
|
3827
4620
|
},
|
|
3828
4621
|
"privacy": "public",
|
|
3829
|
-
"default": "
|
|
3830
|
-
"
|
|
4622
|
+
"default": "false",
|
|
4623
|
+
"description": "Controls the dialog's positioning and size behavior.\nWhen true, the dialog will have an expanded width and be centered on the screen.\nWhen false, the dialog will be positioned at the bottom-right corner with a fixed width.",
|
|
4624
|
+
"attribute": "expanded"
|
|
3831
4625
|
},
|
|
3832
4626
|
{
|
|
3833
4627
|
"kind": "field",
|
|
3834
|
-
"name": "
|
|
4628
|
+
"name": "isFullscreen",
|
|
3835
4629
|
"type": {
|
|
3836
|
-
"text": "
|
|
4630
|
+
"text": "boolean"
|
|
3837
4631
|
},
|
|
3838
4632
|
"privacy": "public",
|
|
3839
|
-
"
|
|
3840
|
-
"
|
|
4633
|
+
"description": "Gets the current fullscreen state (readonly)",
|
|
4634
|
+
"readonly": true
|
|
3841
4635
|
},
|
|
3842
4636
|
{
|
|
3843
|
-
"kind": "
|
|
3844
|
-
"name": "
|
|
3845
|
-
"
|
|
3846
|
-
|
|
4637
|
+
"kind": "method",
|
|
4638
|
+
"name": "show",
|
|
4639
|
+
"privacy": "public",
|
|
4640
|
+
"return": {
|
|
4641
|
+
"type": {
|
|
4642
|
+
"text": "void"
|
|
4643
|
+
}
|
|
3847
4644
|
},
|
|
4645
|
+
"description": "Opens the dialog."
|
|
4646
|
+
},
|
|
4647
|
+
{
|
|
4648
|
+
"kind": "method",
|
|
4649
|
+
"name": "close",
|
|
3848
4650
|
"privacy": "public",
|
|
3849
|
-
"
|
|
3850
|
-
|
|
4651
|
+
"return": {
|
|
4652
|
+
"type": {
|
|
4653
|
+
"text": "void"
|
|
4654
|
+
}
|
|
4655
|
+
},
|
|
4656
|
+
"description": "Closes the dialog."
|
|
4657
|
+
},
|
|
4658
|
+
{
|
|
4659
|
+
"kind": "method",
|
|
4660
|
+
"name": "toggle",
|
|
4661
|
+
"privacy": "public",
|
|
4662
|
+
"return": {
|
|
4663
|
+
"type": {
|
|
4664
|
+
"text": "void"
|
|
4665
|
+
}
|
|
4666
|
+
},
|
|
4667
|
+
"description": "Toggles the dialog open state."
|
|
3851
4668
|
}
|
|
3852
4669
|
],
|
|
3853
4670
|
"events": [
|
|
3854
4671
|
{
|
|
3855
4672
|
"type": {
|
|
3856
|
-
"text": "CustomEvent<
|
|
4673
|
+
"text": "CustomEvent<{ isFullscreen: boolean }>"
|
|
3857
4674
|
},
|
|
3858
|
-
"description": "Fired when
|
|
3859
|
-
"name": "forge-ai-
|
|
4675
|
+
"description": "Fired when the fullscreen state changes due to viewport size",
|
|
4676
|
+
"name": "forge-ai-dialog-fullscreen-change"
|
|
3860
4677
|
},
|
|
3861
4678
|
{
|
|
3862
4679
|
"type": {
|
|
3863
4680
|
"text": "CustomEvent<void>"
|
|
3864
4681
|
},
|
|
3865
|
-
"description": "Fired when
|
|
3866
|
-
"name": "forge-ai-
|
|
4682
|
+
"description": "Fired when the dialog is closed",
|
|
4683
|
+
"name": "forge-ai-dialog-close"
|
|
3867
4684
|
}
|
|
3868
4685
|
],
|
|
3869
4686
|
"attributes": [
|
|
3870
4687
|
{
|
|
3871
|
-
"name": "
|
|
3872
|
-
"type": {
|
|
3873
|
-
"text": "string"
|
|
3874
|
-
},
|
|
3875
|
-
"default": "''",
|
|
3876
|
-
"fieldName": "text"
|
|
3877
|
-
},
|
|
3878
|
-
{
|
|
3879
|
-
"name": "confirm-text",
|
|
4688
|
+
"name": "open",
|
|
3880
4689
|
"type": {
|
|
3881
|
-
"text": "
|
|
4690
|
+
"text": "boolean"
|
|
3882
4691
|
},
|
|
3883
|
-
"default": "
|
|
3884
|
-
"
|
|
4692
|
+
"default": "false",
|
|
4693
|
+
"description": "Indicates whether the dialog is open.",
|
|
4694
|
+
"fieldName": "open"
|
|
3885
4695
|
},
|
|
3886
4696
|
{
|
|
3887
|
-
"name": "
|
|
4697
|
+
"name": "expanded",
|
|
3888
4698
|
"type": {
|
|
3889
|
-
"text": "
|
|
3890
|
-
},
|
|
3891
|
-
"default": "'Deny'",
|
|
3892
|
-
"fieldName": "denyText"
|
|
3893
|
-
},
|
|
3894
|
-
{
|
|
3895
|
-
"name": "disabled",
|
|
3896
|
-
"type": {
|
|
3897
|
-
"text": "boolean"
|
|
3898
|
-
},
|
|
3899
|
-
"default": "false",
|
|
3900
|
-
"fieldName": "disabled"
|
|
3901
|
-
}
|
|
3902
|
-
],
|
|
3903
|
-
"superclass": {
|
|
3904
|
-
"name": "LitElement",
|
|
3905
|
-
"package": "lit"
|
|
3906
|
-
},
|
|
3907
|
-
"tagName": "forge-ai-confirmation-prompt",
|
|
3908
|
-
"customElement": true,
|
|
3909
|
-
"summary": "Displays a confirmation UI for requiring human approval."
|
|
3910
|
-
}
|
|
3911
|
-
],
|
|
3912
|
-
"exports": [
|
|
3913
|
-
{
|
|
3914
|
-
"kind": "js",
|
|
3915
|
-
"name": "AiConfirmationPromptComponentTagName",
|
|
3916
|
-
"declaration": {
|
|
3917
|
-
"name": "AiConfirmationPromptComponentTagName",
|
|
3918
|
-
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
3919
|
-
}
|
|
3920
|
-
},
|
|
3921
|
-
{
|
|
3922
|
-
"kind": "js",
|
|
3923
|
-
"name": "AiConfirmationPromptComponent",
|
|
3924
|
-
"declaration": {
|
|
3925
|
-
"name": "AiConfirmationPromptComponent",
|
|
3926
|
-
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
3927
|
-
}
|
|
3928
|
-
},
|
|
3929
|
-
{
|
|
3930
|
-
"kind": "custom-element-definition",
|
|
3931
|
-
"declaration": {
|
|
3932
|
-
"name": "AiConfirmationPromptComponent",
|
|
3933
|
-
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
3934
|
-
}
|
|
3935
|
-
}
|
|
3936
|
-
]
|
|
3937
|
-
},
|
|
3938
|
-
{
|
|
3939
|
-
"kind": "javascript-module",
|
|
3940
|
-
"path": "src/lib/ai-dialog/ai-dialog.ts",
|
|
3941
|
-
"declarations": [
|
|
3942
|
-
{
|
|
3943
|
-
"kind": "variable",
|
|
3944
|
-
"name": "AiDialogComponentTagName",
|
|
3945
|
-
"type": {
|
|
3946
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
3947
|
-
},
|
|
3948
|
-
"default": "'forge-ai-dialog'"
|
|
3949
|
-
},
|
|
3950
|
-
{
|
|
3951
|
-
"kind": "class",
|
|
3952
|
-
"description": "",
|
|
3953
|
-
"name": "AiDialogComponent",
|
|
3954
|
-
"slots": [
|
|
3955
|
-
{
|
|
3956
|
-
"description": "Default slot for dialog content (typically ai-chat-interface)",
|
|
3957
|
-
"name": ""
|
|
3958
|
-
}
|
|
3959
|
-
],
|
|
3960
|
-
"members": [
|
|
3961
|
-
{
|
|
3962
|
-
"kind": "field",
|
|
3963
|
-
"name": "open",
|
|
3964
|
-
"type": {
|
|
3965
|
-
"text": "boolean"
|
|
3966
|
-
},
|
|
3967
|
-
"privacy": "public",
|
|
3968
|
-
"default": "false",
|
|
3969
|
-
"description": "Indicates whether the dialog is open.",
|
|
3970
|
-
"attribute": "open"
|
|
3971
|
-
},
|
|
3972
|
-
{
|
|
3973
|
-
"kind": "field",
|
|
3974
|
-
"name": "expanded",
|
|
3975
|
-
"type": {
|
|
3976
|
-
"text": "boolean"
|
|
3977
|
-
},
|
|
3978
|
-
"privacy": "public",
|
|
3979
|
-
"default": "false",
|
|
3980
|
-
"description": "Controls the dialog's positioning and size behavior.\nWhen true, the dialog will have an expanded width and be centered on the screen.\nWhen false, the dialog will be positioned at the bottom-right corner with a fixed width.",
|
|
3981
|
-
"attribute": "expanded"
|
|
3982
|
-
},
|
|
3983
|
-
{
|
|
3984
|
-
"kind": "field",
|
|
3985
|
-
"name": "isFullscreen",
|
|
3986
|
-
"type": {
|
|
3987
|
-
"text": "boolean"
|
|
3988
|
-
},
|
|
3989
|
-
"privacy": "public",
|
|
3990
|
-
"description": "Gets the current fullscreen state (readonly)",
|
|
3991
|
-
"readonly": true
|
|
3992
|
-
},
|
|
3993
|
-
{
|
|
3994
|
-
"kind": "method",
|
|
3995
|
-
"name": "show",
|
|
3996
|
-
"privacy": "public",
|
|
3997
|
-
"return": {
|
|
3998
|
-
"type": {
|
|
3999
|
-
"text": "void"
|
|
4000
|
-
}
|
|
4001
|
-
},
|
|
4002
|
-
"description": "Opens the dialog."
|
|
4003
|
-
},
|
|
4004
|
-
{
|
|
4005
|
-
"kind": "method",
|
|
4006
|
-
"name": "close",
|
|
4007
|
-
"privacy": "public",
|
|
4008
|
-
"return": {
|
|
4009
|
-
"type": {
|
|
4010
|
-
"text": "void"
|
|
4011
|
-
}
|
|
4012
|
-
},
|
|
4013
|
-
"description": "Closes the dialog."
|
|
4014
|
-
},
|
|
4015
|
-
{
|
|
4016
|
-
"kind": "method",
|
|
4017
|
-
"name": "toggle",
|
|
4018
|
-
"privacy": "public",
|
|
4019
|
-
"return": {
|
|
4020
|
-
"type": {
|
|
4021
|
-
"text": "void"
|
|
4022
|
-
}
|
|
4023
|
-
},
|
|
4024
|
-
"description": "Toggles the dialog open state."
|
|
4025
|
-
}
|
|
4026
|
-
],
|
|
4027
|
-
"events": [
|
|
4028
|
-
{
|
|
4029
|
-
"type": {
|
|
4030
|
-
"text": "CustomEvent<{ isFullscreen: boolean }>"
|
|
4031
|
-
},
|
|
4032
|
-
"description": "Fired when the fullscreen state changes due to viewport size",
|
|
4033
|
-
"name": "forge-ai-dialog-fullscreen-change"
|
|
4034
|
-
},
|
|
4035
|
-
{
|
|
4036
|
-
"type": {
|
|
4037
|
-
"text": "CustomEvent<void>"
|
|
4038
|
-
},
|
|
4039
|
-
"description": "Fired when the dialog is closed",
|
|
4040
|
-
"name": "forge-ai-dialog-close"
|
|
4041
|
-
}
|
|
4042
|
-
],
|
|
4043
|
-
"attributes": [
|
|
4044
|
-
{
|
|
4045
|
-
"name": "open",
|
|
4046
|
-
"type": {
|
|
4047
|
-
"text": "boolean"
|
|
4048
|
-
},
|
|
4049
|
-
"default": "false",
|
|
4050
|
-
"description": "Indicates whether the dialog is open.",
|
|
4051
|
-
"fieldName": "open"
|
|
4052
|
-
},
|
|
4053
|
-
{
|
|
4054
|
-
"name": "expanded",
|
|
4055
|
-
"type": {
|
|
4056
|
-
"text": "boolean"
|
|
4699
|
+
"text": "boolean"
|
|
4057
4700
|
},
|
|
4058
4701
|
"default": "false",
|
|
4059
4702
|
"description": "Controls the dialog's positioning and size behavior.\nWhen true, the dialog will have an expanded width and be centered on the screen.\nWhen false, the dialog will be positioned at the bottom-right corner with a fixed width.",
|
|
@@ -5900,6 +6543,81 @@
|
|
|
5900
6543
|
}
|
|
5901
6544
|
]
|
|
5902
6545
|
},
|
|
6546
|
+
{
|
|
6547
|
+
"kind": "javascript-module",
|
|
6548
|
+
"path": "src/lib/ai-icon-button/ai-icon-button.ts",
|
|
6549
|
+
"declarations": [
|
|
6550
|
+
{
|
|
6551
|
+
"kind": "variable",
|
|
6552
|
+
"name": "AiIconButtonComponentTagName",
|
|
6553
|
+
"type": {
|
|
6554
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
6555
|
+
},
|
|
6556
|
+
"default": "'forge-ai-icon-button'"
|
|
6557
|
+
},
|
|
6558
|
+
{
|
|
6559
|
+
"kind": "class",
|
|
6560
|
+
"description": "",
|
|
6561
|
+
"name": "AiIconButtonComponent",
|
|
6562
|
+
"members": [
|
|
6563
|
+
{
|
|
6564
|
+
"kind": "field",
|
|
6565
|
+
"name": "disabled",
|
|
6566
|
+
"type": {
|
|
6567
|
+
"text": "boolean"
|
|
6568
|
+
},
|
|
6569
|
+
"privacy": "public",
|
|
6570
|
+
"default": "false",
|
|
6571
|
+
"description": "Whether the button is disabled",
|
|
6572
|
+
"attribute": "disabled",
|
|
6573
|
+
"reflects": true
|
|
6574
|
+
}
|
|
6575
|
+
],
|
|
6576
|
+
"attributes": [
|
|
6577
|
+
{
|
|
6578
|
+
"name": "disabled",
|
|
6579
|
+
"type": {
|
|
6580
|
+
"text": "boolean"
|
|
6581
|
+
},
|
|
6582
|
+
"default": "false",
|
|
6583
|
+
"description": "Whether the button is disabled",
|
|
6584
|
+
"fieldName": "disabled"
|
|
6585
|
+
}
|
|
6586
|
+
],
|
|
6587
|
+
"superclass": {
|
|
6588
|
+
"name": "LitElement",
|
|
6589
|
+
"package": "lit"
|
|
6590
|
+
},
|
|
6591
|
+
"tagName": "forge-ai-icon-button",
|
|
6592
|
+
"customElement": true
|
|
6593
|
+
}
|
|
6594
|
+
],
|
|
6595
|
+
"exports": [
|
|
6596
|
+
{
|
|
6597
|
+
"kind": "js",
|
|
6598
|
+
"name": "AiIconButtonComponentTagName",
|
|
6599
|
+
"declaration": {
|
|
6600
|
+
"name": "AiIconButtonComponentTagName",
|
|
6601
|
+
"module": "src/lib/ai-icon-button/ai-icon-button.ts"
|
|
6602
|
+
}
|
|
6603
|
+
},
|
|
6604
|
+
{
|
|
6605
|
+
"kind": "js",
|
|
6606
|
+
"name": "AiIconButtonComponent",
|
|
6607
|
+
"declaration": {
|
|
6608
|
+
"name": "AiIconButtonComponent",
|
|
6609
|
+
"module": "src/lib/ai-icon-button/ai-icon-button.ts"
|
|
6610
|
+
}
|
|
6611
|
+
},
|
|
6612
|
+
{
|
|
6613
|
+
"kind": "custom-element-definition",
|
|
6614
|
+
"declaration": {
|
|
6615
|
+
"name": "AiIconButtonComponent",
|
|
6616
|
+
"module": "src/lib/ai-icon-button/ai-icon-button.ts"
|
|
6617
|
+
}
|
|
6618
|
+
}
|
|
6619
|
+
]
|
|
6620
|
+
},
|
|
5903
6621
|
{
|
|
5904
6622
|
"kind": "javascript-module",
|
|
5905
6623
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
@@ -6105,245 +6823,26 @@
|
|
|
6105
6823
|
},
|
|
6106
6824
|
{
|
|
6107
6825
|
"kind": "javascript-module",
|
|
6108
|
-
"path": "src/lib/ai-
|
|
6826
|
+
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
6109
6827
|
"declarations": [
|
|
6110
6828
|
{
|
|
6111
6829
|
"kind": "variable",
|
|
6112
|
-
"name": "
|
|
6830
|
+
"name": "AiPromptComponentTagName",
|
|
6113
6831
|
"type": {
|
|
6114
6832
|
"text": "keyof HTMLElementTagNameMap"
|
|
6115
6833
|
},
|
|
6116
|
-
"default": "'forge-ai-
|
|
6834
|
+
"default": "'forge-ai-prompt'"
|
|
6117
6835
|
},
|
|
6118
6836
|
{
|
|
6119
6837
|
"kind": "class",
|
|
6120
6838
|
"description": "",
|
|
6121
|
-
"name": "
|
|
6122
|
-
"
|
|
6123
|
-
{
|
|
6124
|
-
"
|
|
6125
|
-
"name": "
|
|
6126
|
-
|
|
6127
|
-
|
|
6128
|
-
},
|
|
6129
|
-
"privacy": "public",
|
|
6130
|
-
"default": "false",
|
|
6131
|
-
"description": "Whether the button is disabled",
|
|
6132
|
-
"attribute": "disabled",
|
|
6133
|
-
"reflects": true
|
|
6134
|
-
}
|
|
6135
|
-
],
|
|
6136
|
-
"attributes": [
|
|
6137
|
-
{
|
|
6138
|
-
"name": "disabled",
|
|
6139
|
-
"type": {
|
|
6140
|
-
"text": "boolean"
|
|
6141
|
-
},
|
|
6142
|
-
"default": "false",
|
|
6143
|
-
"description": "Whether the button is disabled",
|
|
6144
|
-
"fieldName": "disabled"
|
|
6145
|
-
}
|
|
6146
|
-
],
|
|
6147
|
-
"superclass": {
|
|
6148
|
-
"name": "LitElement",
|
|
6149
|
-
"package": "lit"
|
|
6150
|
-
},
|
|
6151
|
-
"tagName": "forge-ai-icon-button",
|
|
6152
|
-
"customElement": true
|
|
6153
|
-
}
|
|
6154
|
-
],
|
|
6155
|
-
"exports": [
|
|
6156
|
-
{
|
|
6157
|
-
"kind": "js",
|
|
6158
|
-
"name": "AiIconButtonComponentTagName",
|
|
6159
|
-
"declaration": {
|
|
6160
|
-
"name": "AiIconButtonComponentTagName",
|
|
6161
|
-
"module": "src/lib/ai-icon-button/ai-icon-button.ts"
|
|
6162
|
-
}
|
|
6163
|
-
},
|
|
6164
|
-
{
|
|
6165
|
-
"kind": "js",
|
|
6166
|
-
"name": "AiIconButtonComponent",
|
|
6167
|
-
"declaration": {
|
|
6168
|
-
"name": "AiIconButtonComponent",
|
|
6169
|
-
"module": "src/lib/ai-icon-button/ai-icon-button.ts"
|
|
6170
|
-
}
|
|
6171
|
-
},
|
|
6172
|
-
{
|
|
6173
|
-
"kind": "custom-element-definition",
|
|
6174
|
-
"declaration": {
|
|
6175
|
-
"name": "AiIconButtonComponent",
|
|
6176
|
-
"module": "src/lib/ai-icon-button/ai-icon-button.ts"
|
|
6177
|
-
}
|
|
6178
|
-
}
|
|
6179
|
-
]
|
|
6180
|
-
},
|
|
6181
|
-
{
|
|
6182
|
-
"kind": "javascript-module",
|
|
6183
|
-
"path": "src/lib/ai-modal/ai-modal.ts",
|
|
6184
|
-
"declarations": [
|
|
6185
|
-
{
|
|
6186
|
-
"kind": "class",
|
|
6187
|
-
"description": "",
|
|
6188
|
-
"name": "AiModalComponent",
|
|
6189
|
-
"cssProperties": [
|
|
6190
|
-
{
|
|
6191
|
-
"description": "Width of the modal in non-fullscreen mode",
|
|
6192
|
-
"name": "--forge-ai-modal-width"
|
|
6193
|
-
},
|
|
6194
|
-
{
|
|
6195
|
-
"description": "Height of the modal in non-fullscreen mode",
|
|
6196
|
-
"name": "--forge-ai-modal-height"
|
|
6197
|
-
}
|
|
6198
|
-
],
|
|
6199
|
-
"slots": [
|
|
6200
|
-
{
|
|
6201
|
-
"description": "Default slot for modal content",
|
|
6202
|
-
"name": ""
|
|
6203
|
-
}
|
|
6204
|
-
],
|
|
6205
|
-
"members": [
|
|
6206
|
-
{
|
|
6207
|
-
"kind": "field",
|
|
6208
|
-
"name": "open",
|
|
6209
|
-
"type": {
|
|
6210
|
-
"text": "boolean"
|
|
6211
|
-
},
|
|
6212
|
-
"privacy": "public",
|
|
6213
|
-
"default": "false",
|
|
6214
|
-
"description": "Controls whether the modal is open or closed.",
|
|
6215
|
-
"attribute": "open"
|
|
6216
|
-
},
|
|
6217
|
-
{
|
|
6218
|
-
"kind": "field",
|
|
6219
|
-
"name": "fullscreen",
|
|
6220
|
-
"type": {
|
|
6221
|
-
"text": "boolean | undefined"
|
|
6222
|
-
},
|
|
6223
|
-
"privacy": "public",
|
|
6224
|
-
"description": "Controls whether the modal is displayed in fullscreen mode.\nWhen not explicitly set, this will be automatically determined based on viewport size.",
|
|
6225
|
-
"attribute": "fullscreen"
|
|
6226
|
-
},
|
|
6227
|
-
{
|
|
6228
|
-
"kind": "method",
|
|
6229
|
-
"name": "show",
|
|
6230
|
-
"privacy": "public",
|
|
6231
|
-
"return": {
|
|
6232
|
-
"type": {
|
|
6233
|
-
"text": "void"
|
|
6234
|
-
}
|
|
6235
|
-
},
|
|
6236
|
-
"description": "Shows the modal dialog."
|
|
6237
|
-
},
|
|
6238
|
-
{
|
|
6239
|
-
"kind": "method",
|
|
6240
|
-
"name": "close",
|
|
6241
|
-
"privacy": "public",
|
|
6242
|
-
"return": {
|
|
6243
|
-
"type": {
|
|
6244
|
-
"text": "void"
|
|
6245
|
-
}
|
|
6246
|
-
},
|
|
6247
|
-
"description": "Closes the modal dialog."
|
|
6248
|
-
}
|
|
6249
|
-
],
|
|
6250
|
-
"events": [
|
|
6251
|
-
{
|
|
6252
|
-
"name": "forge-ai-modal-open",
|
|
6253
|
-
"type": {
|
|
6254
|
-
"text": "CustomEvent<void>"
|
|
6255
|
-
},
|
|
6256
|
-
"description": "Fired when the modal is opened"
|
|
6257
|
-
},
|
|
6258
|
-
{
|
|
6259
|
-
"name": "forge-ai-modal-close",
|
|
6260
|
-
"type": {
|
|
6261
|
-
"text": "CustomEvent<void>"
|
|
6262
|
-
},
|
|
6263
|
-
"description": "Fired when the modal is closed"
|
|
6264
|
-
},
|
|
6265
|
-
{
|
|
6266
|
-
"type": {
|
|
6267
|
-
"text": "CustomEvent<{ isFullscreen: boolean }>"
|
|
6268
|
-
},
|
|
6269
|
-
"description": "Fired when the fullscreen state changes",
|
|
6270
|
-
"name": "forge-ai-modal-fullscreen-change"
|
|
6271
|
-
}
|
|
6272
|
-
],
|
|
6273
|
-
"attributes": [
|
|
6274
|
-
{
|
|
6275
|
-
"name": "open",
|
|
6276
|
-
"type": {
|
|
6277
|
-
"text": "boolean"
|
|
6278
|
-
},
|
|
6279
|
-
"default": "false",
|
|
6280
|
-
"description": "Controls whether the modal is open or closed.",
|
|
6281
|
-
"fieldName": "open"
|
|
6282
|
-
},
|
|
6283
|
-
{
|
|
6284
|
-
"name": "fullscreen",
|
|
6285
|
-
"type": {
|
|
6286
|
-
"text": "boolean | undefined"
|
|
6287
|
-
},
|
|
6288
|
-
"description": "Controls whether the modal is displayed in fullscreen mode.\nWhen not explicitly set, this will be automatically determined based on viewport size.",
|
|
6289
|
-
"fieldName": "fullscreen"
|
|
6290
|
-
}
|
|
6291
|
-
],
|
|
6292
|
-
"superclass": {
|
|
6293
|
-
"name": "LitElement",
|
|
6294
|
-
"package": "lit"
|
|
6295
|
-
},
|
|
6296
|
-
"tagName": "forge-ai-modal",
|
|
6297
|
-
"customElement": true,
|
|
6298
|
-
"states": [
|
|
6299
|
-
{
|
|
6300
|
-
"name": "fullscreen",
|
|
6301
|
-
"description": "The modal is in fullscreen mode"
|
|
6302
|
-
}
|
|
6303
|
-
]
|
|
6304
|
-
}
|
|
6305
|
-
],
|
|
6306
|
-
"exports": [
|
|
6307
|
-
{
|
|
6308
|
-
"kind": "js",
|
|
6309
|
-
"name": "AiModalComponent",
|
|
6310
|
-
"declaration": {
|
|
6311
|
-
"name": "AiModalComponent",
|
|
6312
|
-
"module": "src/lib/ai-modal/ai-modal.ts"
|
|
6313
|
-
}
|
|
6314
|
-
},
|
|
6315
|
-
{
|
|
6316
|
-
"kind": "custom-element-definition",
|
|
6317
|
-
"name": "forge-ai-modal",
|
|
6318
|
-
"declaration": {
|
|
6319
|
-
"name": "AiModalComponent",
|
|
6320
|
-
"module": "src/lib/ai-modal/ai-modal.ts"
|
|
6321
|
-
}
|
|
6322
|
-
}
|
|
6323
|
-
]
|
|
6324
|
-
},
|
|
6325
|
-
{
|
|
6326
|
-
"kind": "javascript-module",
|
|
6327
|
-
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
6328
|
-
"declarations": [
|
|
6329
|
-
{
|
|
6330
|
-
"kind": "variable",
|
|
6331
|
-
"name": "AiPromptComponentTagName",
|
|
6332
|
-
"type": {
|
|
6333
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
6334
|
-
},
|
|
6335
|
-
"default": "'forge-ai-prompt'"
|
|
6336
|
-
},
|
|
6337
|
-
{
|
|
6338
|
-
"kind": "class",
|
|
6339
|
-
"description": "",
|
|
6340
|
-
"name": "AiPromptComponent",
|
|
6341
|
-
"slots": [
|
|
6342
|
-
{
|
|
6343
|
-
"description": "Slot for action components that are hidden in inline mode (voice input, file picker, model selectors, web search, etc.)",
|
|
6344
|
-
"name": "actions"
|
|
6345
|
-
}
|
|
6346
|
-
],
|
|
6839
|
+
"name": "AiPromptComponent",
|
|
6840
|
+
"slots": [
|
|
6841
|
+
{
|
|
6842
|
+
"description": "Slot for action components that are hidden in inline mode (voice input, file picker, model selectors, web search, etc.)",
|
|
6843
|
+
"name": "actions"
|
|
6844
|
+
}
|
|
6845
|
+
],
|
|
6347
6846
|
"members": [
|
|
6348
6847
|
{
|
|
6349
6848
|
"kind": "field",
|
|
@@ -6655,115 +7154,144 @@
|
|
|
6655
7154
|
},
|
|
6656
7155
|
{
|
|
6657
7156
|
"kind": "javascript-module",
|
|
6658
|
-
"path": "src/lib/ai-
|
|
7157
|
+
"path": "src/lib/ai-modal/ai-modal.ts",
|
|
6659
7158
|
"declarations": [
|
|
6660
|
-
{
|
|
6661
|
-
"kind": "variable",
|
|
6662
|
-
"name": "AiReasoningHeaderComponentTagName",
|
|
6663
|
-
"type": {
|
|
6664
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
6665
|
-
},
|
|
6666
|
-
"default": "'forge-ai-reasoning-header'"
|
|
6667
|
-
},
|
|
6668
7159
|
{
|
|
6669
7160
|
"kind": "class",
|
|
6670
7161
|
"description": "",
|
|
6671
|
-
"name": "
|
|
6672
|
-
"
|
|
7162
|
+
"name": "AiModalComponent",
|
|
7163
|
+
"cssProperties": [
|
|
6673
7164
|
{
|
|
6674
|
-
"description": "
|
|
6675
|
-
"name": "
|
|
7165
|
+
"description": "Width of the modal in non-fullscreen mode",
|
|
7166
|
+
"name": "--forge-ai-modal-width"
|
|
6676
7167
|
},
|
|
6677
7168
|
{
|
|
6678
|
-
"description": "
|
|
6679
|
-
"name": "
|
|
7169
|
+
"description": "Height of the modal in non-fullscreen mode",
|
|
7170
|
+
"name": "--forge-ai-modal-height"
|
|
7171
|
+
}
|
|
7172
|
+
],
|
|
7173
|
+
"slots": [
|
|
7174
|
+
{
|
|
7175
|
+
"description": "Default slot for modal content",
|
|
7176
|
+
"name": ""
|
|
6680
7177
|
}
|
|
6681
7178
|
],
|
|
6682
7179
|
"members": [
|
|
6683
7180
|
{
|
|
6684
7181
|
"kind": "field",
|
|
6685
|
-
"name": "
|
|
7182
|
+
"name": "open",
|
|
6686
7183
|
"type": {
|
|
6687
7184
|
"text": "boolean"
|
|
6688
7185
|
},
|
|
6689
7186
|
"privacy": "public",
|
|
6690
7187
|
"default": "false",
|
|
6691
|
-
"description": "
|
|
6692
|
-
"attribute": "
|
|
6693
|
-
"reflects": true
|
|
7188
|
+
"description": "Controls whether the modal is open or closed.",
|
|
7189
|
+
"attribute": "open"
|
|
6694
7190
|
},
|
|
6695
7191
|
{
|
|
6696
7192
|
"kind": "field",
|
|
6697
|
-
"name": "
|
|
7193
|
+
"name": "fullscreen",
|
|
6698
7194
|
"type": {
|
|
6699
|
-
"text": "boolean"
|
|
7195
|
+
"text": "boolean | undefined"
|
|
6700
7196
|
},
|
|
6701
7197
|
"privacy": "public",
|
|
6702
|
-
"
|
|
6703
|
-
"
|
|
6704
|
-
|
|
6705
|
-
|
|
7198
|
+
"description": "Controls whether the modal is displayed in fullscreen mode.\nWhen not explicitly set, this will be automatically determined based on viewport size.",
|
|
7199
|
+
"attribute": "fullscreen"
|
|
7200
|
+
},
|
|
7201
|
+
{
|
|
7202
|
+
"kind": "method",
|
|
7203
|
+
"name": "show",
|
|
7204
|
+
"privacy": "public",
|
|
7205
|
+
"return": {
|
|
7206
|
+
"type": {
|
|
7207
|
+
"text": "void"
|
|
7208
|
+
}
|
|
7209
|
+
},
|
|
7210
|
+
"description": "Shows the modal dialog."
|
|
7211
|
+
},
|
|
7212
|
+
{
|
|
7213
|
+
"kind": "method",
|
|
7214
|
+
"name": "close",
|
|
7215
|
+
"privacy": "public",
|
|
7216
|
+
"return": {
|
|
7217
|
+
"type": {
|
|
7218
|
+
"text": "void"
|
|
7219
|
+
}
|
|
7220
|
+
},
|
|
7221
|
+
"description": "Closes the modal dialog."
|
|
6706
7222
|
}
|
|
6707
7223
|
],
|
|
6708
7224
|
"events": [
|
|
6709
7225
|
{
|
|
6710
|
-
"name": "
|
|
7226
|
+
"name": "forge-ai-modal-open",
|
|
6711
7227
|
"type": {
|
|
6712
|
-
"text": "CustomEvent<
|
|
7228
|
+
"text": "CustomEvent<void>"
|
|
6713
7229
|
},
|
|
6714
|
-
"description": "Fired when the
|
|
7230
|
+
"description": "Fired when the modal is opened"
|
|
7231
|
+
},
|
|
7232
|
+
{
|
|
7233
|
+
"name": "forge-ai-modal-close",
|
|
7234
|
+
"type": {
|
|
7235
|
+
"text": "CustomEvent<void>"
|
|
7236
|
+
},
|
|
7237
|
+
"description": "Fired when the modal is closed"
|
|
7238
|
+
},
|
|
7239
|
+
{
|
|
7240
|
+
"type": {
|
|
7241
|
+
"text": "CustomEvent<{ isFullscreen: boolean }>"
|
|
7242
|
+
},
|
|
7243
|
+
"description": "Fired when the fullscreen state changes",
|
|
7244
|
+
"name": "forge-ai-modal-fullscreen-change"
|
|
6715
7245
|
}
|
|
6716
7246
|
],
|
|
6717
7247
|
"attributes": [
|
|
6718
7248
|
{
|
|
6719
|
-
"name": "
|
|
7249
|
+
"name": "open",
|
|
6720
7250
|
"type": {
|
|
6721
7251
|
"text": "boolean"
|
|
6722
7252
|
},
|
|
6723
7253
|
"default": "false",
|
|
6724
|
-
"description": "
|
|
6725
|
-
"fieldName": "
|
|
7254
|
+
"description": "Controls whether the modal is open or closed.",
|
|
7255
|
+
"fieldName": "open"
|
|
6726
7256
|
},
|
|
6727
7257
|
{
|
|
6728
|
-
"name": "
|
|
7258
|
+
"name": "fullscreen",
|
|
6729
7259
|
"type": {
|
|
6730
|
-
"text": "boolean"
|
|
7260
|
+
"text": "boolean | undefined"
|
|
6731
7261
|
},
|
|
6732
|
-
"
|
|
6733
|
-
"
|
|
6734
|
-
"fieldName": "reasoning"
|
|
7262
|
+
"description": "Controls whether the modal is displayed in fullscreen mode.\nWhen not explicitly set, this will be automatically determined based on viewport size.",
|
|
7263
|
+
"fieldName": "fullscreen"
|
|
6735
7264
|
}
|
|
6736
7265
|
],
|
|
6737
7266
|
"superclass": {
|
|
6738
7267
|
"name": "LitElement",
|
|
6739
7268
|
"package": "lit"
|
|
6740
7269
|
},
|
|
6741
|
-
"tagName": "forge-ai-
|
|
6742
|
-
"customElement": true
|
|
7270
|
+
"tagName": "forge-ai-modal",
|
|
7271
|
+
"customElement": true,
|
|
7272
|
+
"states": [
|
|
7273
|
+
{
|
|
7274
|
+
"name": "fullscreen",
|
|
7275
|
+
"description": "The modal is in fullscreen mode"
|
|
7276
|
+
}
|
|
7277
|
+
]
|
|
6743
7278
|
}
|
|
6744
7279
|
],
|
|
6745
7280
|
"exports": [
|
|
6746
7281
|
{
|
|
6747
7282
|
"kind": "js",
|
|
6748
|
-
"name": "
|
|
6749
|
-
"declaration": {
|
|
6750
|
-
"name": "AiReasoningHeaderComponentTagName",
|
|
6751
|
-
"module": "src/lib/ai-reasoning-header/ai-reasoning-header.ts"
|
|
6752
|
-
}
|
|
6753
|
-
},
|
|
6754
|
-
{
|
|
6755
|
-
"kind": "js",
|
|
6756
|
-
"name": "AiReasoningHeaderComponent",
|
|
7283
|
+
"name": "AiModalComponent",
|
|
6757
7284
|
"declaration": {
|
|
6758
|
-
"name": "
|
|
6759
|
-
"module": "src/lib/ai-
|
|
7285
|
+
"name": "AiModalComponent",
|
|
7286
|
+
"module": "src/lib/ai-modal/ai-modal.ts"
|
|
6760
7287
|
}
|
|
6761
7288
|
},
|
|
6762
7289
|
{
|
|
6763
7290
|
"kind": "custom-element-definition",
|
|
7291
|
+
"name": "forge-ai-modal",
|
|
6764
7292
|
"declaration": {
|
|
6765
|
-
"name": "
|
|
6766
|
-
"module": "src/lib/ai-
|
|
7293
|
+
"name": "AiModalComponent",
|
|
7294
|
+
"module": "src/lib/ai-modal/ai-modal.ts"
|
|
6767
7295
|
}
|
|
6768
7296
|
}
|
|
6769
7297
|
]
|
|
@@ -6845,127 +7373,145 @@
|
|
|
6845
7373
|
},
|
|
6846
7374
|
{
|
|
6847
7375
|
"kind": "javascript-module",
|
|
6848
|
-
"path": "src/lib/ai-
|
|
7376
|
+
"path": "src/lib/ai-reasoning-header/ai-reasoning-header.ts",
|
|
6849
7377
|
"declarations": [
|
|
6850
7378
|
{
|
|
6851
7379
|
"kind": "variable",
|
|
6852
|
-
"name": "
|
|
7380
|
+
"name": "AiReasoningHeaderComponentTagName",
|
|
6853
7381
|
"type": {
|
|
6854
7382
|
"text": "keyof HTMLElementTagNameMap"
|
|
6855
7383
|
},
|
|
6856
|
-
"default": "'forge-ai-
|
|
7384
|
+
"default": "'forge-ai-reasoning-header'"
|
|
6857
7385
|
},
|
|
6858
7386
|
{
|
|
6859
7387
|
"kind": "class",
|
|
6860
7388
|
"description": "",
|
|
6861
|
-
"name": "
|
|
6862
|
-
"
|
|
7389
|
+
"name": "AiReasoningHeaderComponent",
|
|
7390
|
+
"slots": [
|
|
6863
7391
|
{
|
|
6864
|
-
"
|
|
6865
|
-
"name": "
|
|
6866
|
-
"type": {
|
|
6867
|
-
"text": "boolean"
|
|
6868
|
-
},
|
|
6869
|
-
"privacy": "public",
|
|
6870
|
-
"default": "false",
|
|
6871
|
-
"description": "Whether the message is complete. Toolbar only shows when true.",
|
|
6872
|
-
"attribute": "complete",
|
|
6873
|
-
"reflects": true
|
|
7392
|
+
"description": "Content for the header when in regular (non-reasoning) state",
|
|
7393
|
+
"name": "title"
|
|
6874
7394
|
},
|
|
7395
|
+
{
|
|
7396
|
+
"description": "Content for the header when in reasoning state",
|
|
7397
|
+
"name": "reasoning-title"
|
|
7398
|
+
}
|
|
7399
|
+
],
|
|
7400
|
+
"members": [
|
|
6875
7401
|
{
|
|
6876
7402
|
"kind": "field",
|
|
6877
|
-
"name": "
|
|
7403
|
+
"name": "expanded",
|
|
6878
7404
|
"type": {
|
|
6879
7405
|
"text": "boolean"
|
|
6880
7406
|
},
|
|
6881
7407
|
"privacy": "public",
|
|
6882
7408
|
"default": "false",
|
|
6883
|
-
"
|
|
7409
|
+
"description": "Whether the header is expanded",
|
|
7410
|
+
"attribute": "expanded",
|
|
7411
|
+
"reflects": true
|
|
6884
7412
|
},
|
|
6885
7413
|
{
|
|
6886
7414
|
"kind": "field",
|
|
6887
|
-
"name": "
|
|
7415
|
+
"name": "reasoning",
|
|
6888
7416
|
"type": {
|
|
6889
7417
|
"text": "boolean"
|
|
6890
7418
|
},
|
|
6891
7419
|
"privacy": "public",
|
|
6892
7420
|
"default": "false",
|
|
6893
|
-
"
|
|
6894
|
-
|
|
6895
|
-
|
|
6896
|
-
"kind": "field",
|
|
6897
|
-
"name": "eventStream",
|
|
6898
|
-
"type": {
|
|
6899
|
-
"text": "StreamEvent[] | undefined"
|
|
6900
|
-
},
|
|
6901
|
-
"privacy": "public"
|
|
7421
|
+
"description": "Whether this is a reasoning header",
|
|
7422
|
+
"attribute": "reasoning",
|
|
7423
|
+
"reflects": true
|
|
6902
7424
|
}
|
|
6903
7425
|
],
|
|
6904
7426
|
"events": [
|
|
6905
7427
|
{
|
|
7428
|
+
"name": "toggle",
|
|
6906
7429
|
"type": {
|
|
6907
|
-
"text": "CustomEvent<
|
|
6908
|
-
},
|
|
6909
|
-
"description": "Fired when copy action is clicked.",
|
|
6910
|
-
"name": "forge-ai-response-message-copy"
|
|
6911
|
-
},
|
|
6912
|
-
{
|
|
6913
|
-
"type": {
|
|
6914
|
-
"text": "CustomEvent<void>"
|
|
6915
|
-
},
|
|
6916
|
-
"description": "Fired when refresh action is clicked.",
|
|
6917
|
-
"name": "forge-ai-response-message-refresh"
|
|
6918
|
-
},
|
|
6919
|
-
{
|
|
6920
|
-
"type": {
|
|
6921
|
-
"text": "CustomEvent<void>"
|
|
6922
|
-
},
|
|
6923
|
-
"description": "Fired when thumbs-up action is clicked.",
|
|
6924
|
-
"name": "forge-ai-response-message-thumbs-up"
|
|
6925
|
-
},
|
|
6926
|
-
{
|
|
6927
|
-
"type": {
|
|
6928
|
-
"text": "CustomEvent<void>"
|
|
7430
|
+
"text": "CustomEvent<{ expanded: boolean }>"
|
|
6929
7431
|
},
|
|
6930
|
-
"description": "Fired when
|
|
6931
|
-
"name": "forge-ai-response-message-thumbs-down"
|
|
7432
|
+
"description": "Fired when the header is clicked and the expanded state changes"
|
|
6932
7433
|
}
|
|
6933
7434
|
],
|
|
6934
7435
|
"attributes": [
|
|
6935
7436
|
{
|
|
6936
|
-
"name": "
|
|
6937
|
-
"type": {
|
|
6938
|
-
"text": "boolean"
|
|
6939
|
-
},
|
|
6940
|
-
"default": "false",
|
|
6941
|
-
"description": "Whether the message is complete. Toolbar only shows when true.",
|
|
6942
|
-
"fieldName": "complete"
|
|
6943
|
-
},
|
|
6944
|
-
{
|
|
6945
|
-
"name": "enable-reactions",
|
|
7437
|
+
"name": "expanded",
|
|
6946
7438
|
"type": {
|
|
6947
7439
|
"text": "boolean"
|
|
6948
7440
|
},
|
|
6949
7441
|
"default": "false",
|
|
6950
|
-
"
|
|
7442
|
+
"description": "Whether the header is expanded",
|
|
7443
|
+
"fieldName": "expanded"
|
|
6951
7444
|
},
|
|
6952
7445
|
{
|
|
6953
|
-
"name": "
|
|
7446
|
+
"name": "reasoning",
|
|
6954
7447
|
"type": {
|
|
6955
7448
|
"text": "boolean"
|
|
6956
7449
|
},
|
|
6957
7450
|
"default": "false",
|
|
6958
|
-
"
|
|
7451
|
+
"description": "Whether this is a reasoning header",
|
|
7452
|
+
"fieldName": "reasoning"
|
|
6959
7453
|
}
|
|
6960
7454
|
],
|
|
6961
7455
|
"superclass": {
|
|
6962
7456
|
"name": "LitElement",
|
|
6963
7457
|
"package": "lit"
|
|
6964
7458
|
},
|
|
6965
|
-
"tagName": "forge-ai-
|
|
7459
|
+
"tagName": "forge-ai-reasoning-header",
|
|
6966
7460
|
"customElement": true
|
|
6967
7461
|
}
|
|
6968
7462
|
],
|
|
7463
|
+
"exports": [
|
|
7464
|
+
{
|
|
7465
|
+
"kind": "js",
|
|
7466
|
+
"name": "AiReasoningHeaderComponentTagName",
|
|
7467
|
+
"declaration": {
|
|
7468
|
+
"name": "AiReasoningHeaderComponentTagName",
|
|
7469
|
+
"module": "src/lib/ai-reasoning-header/ai-reasoning-header.ts"
|
|
7470
|
+
}
|
|
7471
|
+
},
|
|
7472
|
+
{
|
|
7473
|
+
"kind": "js",
|
|
7474
|
+
"name": "AiReasoningHeaderComponent",
|
|
7475
|
+
"declaration": {
|
|
7476
|
+
"name": "AiReasoningHeaderComponent",
|
|
7477
|
+
"module": "src/lib/ai-reasoning-header/ai-reasoning-header.ts"
|
|
7478
|
+
}
|
|
7479
|
+
},
|
|
7480
|
+
{
|
|
7481
|
+
"kind": "custom-element-definition",
|
|
7482
|
+
"declaration": {
|
|
7483
|
+
"name": "AiReasoningHeaderComponent",
|
|
7484
|
+
"module": "src/lib/ai-reasoning-header/ai-reasoning-header.ts"
|
|
7485
|
+
}
|
|
7486
|
+
}
|
|
7487
|
+
]
|
|
7488
|
+
},
|
|
7489
|
+
{
|
|
7490
|
+
"kind": "javascript-module",
|
|
7491
|
+
"path": "src/lib/ai-response-message/ai-response-message.ts",
|
|
7492
|
+
"declarations": [
|
|
7493
|
+
{
|
|
7494
|
+
"kind": "variable",
|
|
7495
|
+
"name": "AiResponseMessageComponentTagName",
|
|
7496
|
+
"type": {
|
|
7497
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
7498
|
+
},
|
|
7499
|
+
"default": "'forge-ai-response-message'"
|
|
7500
|
+
},
|
|
7501
|
+
{
|
|
7502
|
+
"kind": "class",
|
|
7503
|
+
"description": "",
|
|
7504
|
+
"name": "AiResponseMessageComponent",
|
|
7505
|
+
"members": [],
|
|
7506
|
+
"superclass": {
|
|
7507
|
+
"name": "LitElement",
|
|
7508
|
+
"package": "lit"
|
|
7509
|
+
},
|
|
7510
|
+
"tagName": "forge-ai-response-message",
|
|
7511
|
+
"customElement": true,
|
|
7512
|
+
"summary": "A simple wrapper component for rendering assistant response message content."
|
|
7513
|
+
}
|
|
7514
|
+
],
|
|
6969
7515
|
"exports": [
|
|
6970
7516
|
{
|
|
6971
7517
|
"kind": "js",
|
|
@@ -6994,23 +7540,23 @@
|
|
|
6994
7540
|
},
|
|
6995
7541
|
{
|
|
6996
7542
|
"kind": "javascript-module",
|
|
6997
|
-
"path": "src/lib/ai-sidebar
|
|
7543
|
+
"path": "src/lib/ai-sidebar/ai-sidebar.ts",
|
|
6998
7544
|
"declarations": [
|
|
6999
7545
|
{
|
|
7000
7546
|
"kind": "variable",
|
|
7001
|
-
"name": "
|
|
7547
|
+
"name": "AiSidebarComponentTagName",
|
|
7002
7548
|
"type": {
|
|
7003
7549
|
"text": "keyof HTMLElementTagNameMap"
|
|
7004
7550
|
},
|
|
7005
|
-
"default": "'forge-ai-sidebar
|
|
7551
|
+
"default": "'forge-ai-sidebar'"
|
|
7006
7552
|
},
|
|
7007
7553
|
{
|
|
7008
7554
|
"kind": "class",
|
|
7009
7555
|
"description": "",
|
|
7010
|
-
"name": "
|
|
7556
|
+
"name": "AiSidebarComponent",
|
|
7011
7557
|
"slots": [
|
|
7012
7558
|
{
|
|
7013
|
-
"description": "Default slot for
|
|
7559
|
+
"description": "Default slot for sidebar content (typically ai-chat-interface)",
|
|
7014
7560
|
"name": ""
|
|
7015
7561
|
}
|
|
7016
7562
|
],
|
|
@@ -7023,18 +7569,9 @@
|
|
|
7023
7569
|
},
|
|
7024
7570
|
"privacy": "public",
|
|
7025
7571
|
"default": "false",
|
|
7572
|
+
"description": "Indicates whether the sidebar is open.",
|
|
7026
7573
|
"attribute": "open"
|
|
7027
7574
|
},
|
|
7028
|
-
{
|
|
7029
|
-
"kind": "field",
|
|
7030
|
-
"name": "expanded",
|
|
7031
|
-
"type": {
|
|
7032
|
-
"text": "boolean"
|
|
7033
|
-
},
|
|
7034
|
-
"privacy": "public",
|
|
7035
|
-
"default": "false",
|
|
7036
|
-
"attribute": "expanded"
|
|
7037
|
-
},
|
|
7038
7575
|
{
|
|
7039
7576
|
"kind": "method",
|
|
7040
7577
|
"name": "show",
|
|
@@ -7043,7 +7580,8 @@
|
|
|
7043
7580
|
"type": {
|
|
7044
7581
|
"text": "void"
|
|
7045
7582
|
}
|
|
7046
|
-
}
|
|
7583
|
+
},
|
|
7584
|
+
"description": "Opens the sidebar."
|
|
7047
7585
|
},
|
|
7048
7586
|
{
|
|
7049
7587
|
"kind": "method",
|
|
@@ -7053,7 +7591,8 @@
|
|
|
7053
7591
|
"type": {
|
|
7054
7592
|
"text": "void"
|
|
7055
7593
|
}
|
|
7056
|
-
}
|
|
7594
|
+
},
|
|
7595
|
+
"description": "Closes the sidebar."
|
|
7057
7596
|
},
|
|
7058
7597
|
{
|
|
7059
7598
|
"kind": "method",
|
|
@@ -7063,45 +7602,18 @@
|
|
|
7063
7602
|
"type": {
|
|
7064
7603
|
"text": "void"
|
|
7065
7604
|
}
|
|
7066
|
-
}
|
|
7067
|
-
|
|
7068
|
-
{
|
|
7069
|
-
"kind": "method",
|
|
7070
|
-
"name": "expand",
|
|
7071
|
-
"privacy": "public",
|
|
7072
|
-
"return": {
|
|
7073
|
-
"type": {
|
|
7074
|
-
"text": "void"
|
|
7075
|
-
}
|
|
7076
|
-
}
|
|
7077
|
-
},
|
|
7078
|
-
{
|
|
7079
|
-
"kind": "method",
|
|
7080
|
-
"name": "collapse",
|
|
7081
|
-
"privacy": "public",
|
|
7082
|
-
"return": {
|
|
7083
|
-
"type": {
|
|
7084
|
-
"text": "void"
|
|
7085
|
-
}
|
|
7086
|
-
}
|
|
7605
|
+
},
|
|
7606
|
+
"description": "Toggles the sidebar open state."
|
|
7087
7607
|
}
|
|
7088
7608
|
],
|
|
7089
7609
|
"events": [
|
|
7090
7610
|
{
|
|
7091
|
-
"description": "Fired when the sidebar
|
|
7092
|
-
"name": "forge-ai-sidebar-
|
|
7093
|
-
},
|
|
7094
|
-
{
|
|
7095
|
-
"description": "Fired when the sidebar chat is closed",
|
|
7096
|
-
"name": "forge-ai-sidebar-chat-close"
|
|
7097
|
-
},
|
|
7098
|
-
{
|
|
7099
|
-
"description": "Fired when the sidebar chat is expanded to modal",
|
|
7100
|
-
"name": "forge-ai-sidebar-chat-expand"
|
|
7611
|
+
"description": "Fired when the sidebar is opened",
|
|
7612
|
+
"name": "forge-ai-sidebar-open"
|
|
7101
7613
|
},
|
|
7102
7614
|
{
|
|
7103
|
-
"description": "Fired when the sidebar
|
|
7104
|
-
"name": "forge-ai-sidebar-
|
|
7615
|
+
"description": "Fired when the sidebar is closed",
|
|
7616
|
+
"name": "forge-ai-sidebar-close"
|
|
7105
7617
|
}
|
|
7106
7618
|
],
|
|
7107
7619
|
"attributes": [
|
|
@@ -7111,70 +7623,63 @@
|
|
|
7111
7623
|
"text": "boolean"
|
|
7112
7624
|
},
|
|
7113
7625
|
"default": "false",
|
|
7626
|
+
"description": "Indicates whether the sidebar is open.",
|
|
7114
7627
|
"fieldName": "open"
|
|
7115
|
-
},
|
|
7116
|
-
{
|
|
7117
|
-
"name": "expanded",
|
|
7118
|
-
"type": {
|
|
7119
|
-
"text": "boolean"
|
|
7120
|
-
},
|
|
7121
|
-
"default": "false",
|
|
7122
|
-
"fieldName": "expanded"
|
|
7123
7628
|
}
|
|
7124
7629
|
],
|
|
7125
7630
|
"superclass": {
|
|
7126
7631
|
"name": "LitElement",
|
|
7127
7632
|
"package": "lit"
|
|
7128
7633
|
},
|
|
7129
|
-
"tagName": "forge-ai-sidebar
|
|
7634
|
+
"tagName": "forge-ai-sidebar",
|
|
7130
7635
|
"customElement": true
|
|
7131
7636
|
}
|
|
7132
7637
|
],
|
|
7133
7638
|
"exports": [
|
|
7134
7639
|
{
|
|
7135
7640
|
"kind": "js",
|
|
7136
|
-
"name": "
|
|
7641
|
+
"name": "AiSidebarComponentTagName",
|
|
7137
7642
|
"declaration": {
|
|
7138
|
-
"name": "
|
|
7139
|
-
"module": "src/lib/ai-sidebar
|
|
7643
|
+
"name": "AiSidebarComponentTagName",
|
|
7644
|
+
"module": "src/lib/ai-sidebar/ai-sidebar.ts"
|
|
7140
7645
|
}
|
|
7141
7646
|
},
|
|
7142
7647
|
{
|
|
7143
7648
|
"kind": "js",
|
|
7144
|
-
"name": "
|
|
7649
|
+
"name": "AiSidebarComponent",
|
|
7145
7650
|
"declaration": {
|
|
7146
|
-
"name": "
|
|
7147
|
-
"module": "src/lib/ai-sidebar
|
|
7651
|
+
"name": "AiSidebarComponent",
|
|
7652
|
+
"module": "src/lib/ai-sidebar/ai-sidebar.ts"
|
|
7148
7653
|
}
|
|
7149
7654
|
},
|
|
7150
7655
|
{
|
|
7151
7656
|
"kind": "custom-element-definition",
|
|
7152
7657
|
"declaration": {
|
|
7153
|
-
"name": "
|
|
7154
|
-
"module": "src/lib/ai-sidebar
|
|
7658
|
+
"name": "AiSidebarComponent",
|
|
7659
|
+
"module": "src/lib/ai-sidebar/ai-sidebar.ts"
|
|
7155
7660
|
}
|
|
7156
7661
|
}
|
|
7157
7662
|
]
|
|
7158
7663
|
},
|
|
7159
7664
|
{
|
|
7160
7665
|
"kind": "javascript-module",
|
|
7161
|
-
"path": "src/lib/ai-sidebar/ai-sidebar.ts",
|
|
7666
|
+
"path": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts",
|
|
7162
7667
|
"declarations": [
|
|
7163
7668
|
{
|
|
7164
7669
|
"kind": "variable",
|
|
7165
|
-
"name": "
|
|
7670
|
+
"name": "AiSidebarChatComponentTagName",
|
|
7166
7671
|
"type": {
|
|
7167
7672
|
"text": "keyof HTMLElementTagNameMap"
|
|
7168
7673
|
},
|
|
7169
|
-
"default": "'forge-ai-sidebar'"
|
|
7674
|
+
"default": "'forge-ai-sidebar-chat'"
|
|
7170
7675
|
},
|
|
7171
7676
|
{
|
|
7172
7677
|
"kind": "class",
|
|
7173
7678
|
"description": "",
|
|
7174
|
-
"name": "
|
|
7679
|
+
"name": "AiSidebarChatComponent",
|
|
7175
7680
|
"slots": [
|
|
7176
7681
|
{
|
|
7177
|
-
"description": "Default slot for
|
|
7682
|
+
"description": "Default slot for chatbot component",
|
|
7178
7683
|
"name": ""
|
|
7179
7684
|
}
|
|
7180
7685
|
],
|
|
@@ -7187,9 +7692,18 @@
|
|
|
7187
7692
|
},
|
|
7188
7693
|
"privacy": "public",
|
|
7189
7694
|
"default": "false",
|
|
7190
|
-
"description": "Indicates whether the sidebar is open.",
|
|
7191
7695
|
"attribute": "open"
|
|
7192
7696
|
},
|
|
7697
|
+
{
|
|
7698
|
+
"kind": "field",
|
|
7699
|
+
"name": "expanded",
|
|
7700
|
+
"type": {
|
|
7701
|
+
"text": "boolean"
|
|
7702
|
+
},
|
|
7703
|
+
"privacy": "public",
|
|
7704
|
+
"default": "false",
|
|
7705
|
+
"attribute": "expanded"
|
|
7706
|
+
},
|
|
7193
7707
|
{
|
|
7194
7708
|
"kind": "method",
|
|
7195
7709
|
"name": "show",
|
|
@@ -7198,8 +7712,7 @@
|
|
|
7198
7712
|
"type": {
|
|
7199
7713
|
"text": "void"
|
|
7200
7714
|
}
|
|
7201
|
-
}
|
|
7202
|
-
"description": "Opens the sidebar."
|
|
7715
|
+
}
|
|
7203
7716
|
},
|
|
7204
7717
|
{
|
|
7205
7718
|
"kind": "method",
|
|
@@ -7209,8 +7722,7 @@
|
|
|
7209
7722
|
"type": {
|
|
7210
7723
|
"text": "void"
|
|
7211
7724
|
}
|
|
7212
|
-
}
|
|
7213
|
-
"description": "Closes the sidebar."
|
|
7725
|
+
}
|
|
7214
7726
|
},
|
|
7215
7727
|
{
|
|
7216
7728
|
"kind": "method",
|
|
@@ -7220,18 +7732,45 @@
|
|
|
7220
7732
|
"type": {
|
|
7221
7733
|
"text": "void"
|
|
7222
7734
|
}
|
|
7223
|
-
}
|
|
7224
|
-
|
|
7735
|
+
}
|
|
7736
|
+
},
|
|
7737
|
+
{
|
|
7738
|
+
"kind": "method",
|
|
7739
|
+
"name": "expand",
|
|
7740
|
+
"privacy": "public",
|
|
7741
|
+
"return": {
|
|
7742
|
+
"type": {
|
|
7743
|
+
"text": "void"
|
|
7744
|
+
}
|
|
7745
|
+
}
|
|
7746
|
+
},
|
|
7747
|
+
{
|
|
7748
|
+
"kind": "method",
|
|
7749
|
+
"name": "collapse",
|
|
7750
|
+
"privacy": "public",
|
|
7751
|
+
"return": {
|
|
7752
|
+
"type": {
|
|
7753
|
+
"text": "void"
|
|
7754
|
+
}
|
|
7755
|
+
}
|
|
7225
7756
|
}
|
|
7226
7757
|
],
|
|
7227
7758
|
"events": [
|
|
7228
7759
|
{
|
|
7229
|
-
"description": "Fired when the sidebar is opened",
|
|
7230
|
-
"name": "forge-ai-sidebar-open"
|
|
7760
|
+
"description": "Fired when the sidebar chat is opened",
|
|
7761
|
+
"name": "forge-ai-sidebar-chat-open"
|
|
7231
7762
|
},
|
|
7232
7763
|
{
|
|
7233
|
-
"description": "Fired when the sidebar is closed",
|
|
7234
|
-
"name": "forge-ai-sidebar-close"
|
|
7764
|
+
"description": "Fired when the sidebar chat is closed",
|
|
7765
|
+
"name": "forge-ai-sidebar-chat-close"
|
|
7766
|
+
},
|
|
7767
|
+
{
|
|
7768
|
+
"description": "Fired when the sidebar chat is expanded to modal",
|
|
7769
|
+
"name": "forge-ai-sidebar-chat-expand"
|
|
7770
|
+
},
|
|
7771
|
+
{
|
|
7772
|
+
"description": "Fired when the sidebar chat is collapsed from modal",
|
|
7773
|
+
"name": "forge-ai-sidebar-chat-collapse"
|
|
7235
7774
|
}
|
|
7236
7775
|
],
|
|
7237
7776
|
"attributes": [
|
|
@@ -7241,40 +7780,47 @@
|
|
|
7241
7780
|
"text": "boolean"
|
|
7242
7781
|
},
|
|
7243
7782
|
"default": "false",
|
|
7244
|
-
"description": "Indicates whether the sidebar is open.",
|
|
7245
7783
|
"fieldName": "open"
|
|
7784
|
+
},
|
|
7785
|
+
{
|
|
7786
|
+
"name": "expanded",
|
|
7787
|
+
"type": {
|
|
7788
|
+
"text": "boolean"
|
|
7789
|
+
},
|
|
7790
|
+
"default": "false",
|
|
7791
|
+
"fieldName": "expanded"
|
|
7246
7792
|
}
|
|
7247
7793
|
],
|
|
7248
7794
|
"superclass": {
|
|
7249
7795
|
"name": "LitElement",
|
|
7250
7796
|
"package": "lit"
|
|
7251
7797
|
},
|
|
7252
|
-
"tagName": "forge-ai-sidebar",
|
|
7798
|
+
"tagName": "forge-ai-sidebar-chat",
|
|
7253
7799
|
"customElement": true
|
|
7254
7800
|
}
|
|
7255
7801
|
],
|
|
7256
7802
|
"exports": [
|
|
7257
7803
|
{
|
|
7258
7804
|
"kind": "js",
|
|
7259
|
-
"name": "
|
|
7805
|
+
"name": "AiSidebarChatComponentTagName",
|
|
7260
7806
|
"declaration": {
|
|
7261
|
-
"name": "
|
|
7262
|
-
"module": "src/lib/ai-sidebar/ai-sidebar.ts"
|
|
7807
|
+
"name": "AiSidebarChatComponentTagName",
|
|
7808
|
+
"module": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts"
|
|
7263
7809
|
}
|
|
7264
7810
|
},
|
|
7265
7811
|
{
|
|
7266
7812
|
"kind": "js",
|
|
7267
|
-
"name": "
|
|
7813
|
+
"name": "AiSidebarChatComponent",
|
|
7268
7814
|
"declaration": {
|
|
7269
|
-
"name": "
|
|
7270
|
-
"module": "src/lib/ai-sidebar/ai-sidebar.ts"
|
|
7815
|
+
"name": "AiSidebarChatComponent",
|
|
7816
|
+
"module": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts"
|
|
7271
7817
|
}
|
|
7272
7818
|
},
|
|
7273
7819
|
{
|
|
7274
7820
|
"kind": "custom-element-definition",
|
|
7275
7821
|
"declaration": {
|
|
7276
|
-
"name": "
|
|
7277
|
-
"module": "src/lib/ai-sidebar/ai-sidebar.ts"
|
|
7822
|
+
"name": "AiSidebarChatComponent",
|
|
7823
|
+
"module": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts"
|
|
7278
7824
|
}
|
|
7279
7825
|
}
|
|
7280
7826
|
]
|
|
@@ -7634,212 +8180,212 @@
|
|
|
7634
8180
|
},
|
|
7635
8181
|
{
|
|
7636
8182
|
"kind": "javascript-module",
|
|
7637
|
-
"path": "src/lib/ai-
|
|
8183
|
+
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
7638
8184
|
"declarations": [
|
|
7639
8185
|
{
|
|
7640
8186
|
"kind": "variable",
|
|
7641
|
-
"name": "
|
|
8187
|
+
"name": "AiThreadsComponentTagName",
|
|
7642
8188
|
"type": {
|
|
7643
8189
|
"text": "keyof HTMLElementTagNameMap"
|
|
7644
8190
|
},
|
|
7645
|
-
"default": "'forge-ai-
|
|
8191
|
+
"default": "'forge-ai-threads'"
|
|
7646
8192
|
},
|
|
7647
8193
|
{
|
|
7648
8194
|
"kind": "class",
|
|
7649
8195
|
"description": "",
|
|
7650
|
-
"name": "
|
|
8196
|
+
"name": "AiThreadsComponent",
|
|
8197
|
+
"slots": [
|
|
8198
|
+
{
|
|
8199
|
+
"description": "Default slot for chatbot component",
|
|
8200
|
+
"name": ""
|
|
8201
|
+
}
|
|
8202
|
+
],
|
|
7651
8203
|
"members": [
|
|
7652
8204
|
{
|
|
7653
8205
|
"kind": "field",
|
|
7654
|
-
"name": "
|
|
8206
|
+
"name": "threads",
|
|
7655
8207
|
"type": {
|
|
7656
|
-
"text": "
|
|
8208
|
+
"text": "Thread[]"
|
|
7657
8209
|
},
|
|
7658
8210
|
"privacy": "public",
|
|
7659
|
-
"default": "
|
|
7660
|
-
"
|
|
7661
|
-
|
|
8211
|
+
"default": "[]",
|
|
8212
|
+
"description": "Array of threads to display in the navigation list",
|
|
8213
|
+
"attribute": "threads"
|
|
8214
|
+
}
|
|
8215
|
+
],
|
|
8216
|
+
"events": [
|
|
7662
8217
|
{
|
|
7663
|
-
"kind": "field",
|
|
7664
|
-
"name": "initialDelay",
|
|
7665
8218
|
"type": {
|
|
7666
|
-
"text": "
|
|
8219
|
+
"text": "CustomEvent<ForgeAiThreadsSelectEventData>"
|
|
7667
8220
|
},
|
|
7668
|
-
"
|
|
7669
|
-
"
|
|
7670
|
-
"attribute": "initial-delay"
|
|
8221
|
+
"description": "Fired when a thread is selected.",
|
|
8222
|
+
"name": "forge-ai-threads-select"
|
|
7671
8223
|
},
|
|
7672
8224
|
{
|
|
7673
|
-
"kind": "field",
|
|
7674
|
-
"name": "cycleInterval",
|
|
7675
|
-
"type": {
|
|
7676
|
-
"text": "number"
|
|
7677
|
-
},
|
|
7678
|
-
"privacy": "public",
|
|
7679
|
-
"default": "5000",
|
|
7680
|
-
"attribute": "cycle-interval"
|
|
7681
|
-
}
|
|
7682
|
-
],
|
|
7683
|
-
"attributes": [
|
|
7684
|
-
{
|
|
7685
|
-
"name": "show-text",
|
|
7686
8225
|
"type": {
|
|
7687
|
-
"text": "
|
|
8226
|
+
"text": "CustomEvent"
|
|
7688
8227
|
},
|
|
7689
|
-
"
|
|
7690
|
-
"
|
|
8228
|
+
"description": "Fired when the new chat button is clicked.",
|
|
8229
|
+
"name": "forge-ai-threads-new-chat"
|
|
7691
8230
|
},
|
|
7692
8231
|
{
|
|
7693
|
-
"name": "initial-delay",
|
|
7694
8232
|
"type": {
|
|
7695
|
-
"text": "
|
|
8233
|
+
"text": "CustomEvent"
|
|
7696
8234
|
},
|
|
7697
|
-
"
|
|
7698
|
-
"
|
|
7699
|
-
}
|
|
8235
|
+
"description": "Fired when the clear history button is clicked.",
|
|
8236
|
+
"name": "forge-ai-threads-clear-history"
|
|
8237
|
+
}
|
|
8238
|
+
],
|
|
8239
|
+
"attributes": [
|
|
7700
8240
|
{
|
|
7701
|
-
"name": "
|
|
8241
|
+
"name": "threads",
|
|
7702
8242
|
"type": {
|
|
7703
|
-
"text": "
|
|
8243
|
+
"text": "Thread[]"
|
|
7704
8244
|
},
|
|
7705
|
-
"default": "
|
|
7706
|
-
"
|
|
8245
|
+
"default": "[]",
|
|
8246
|
+
"description": "Array of threads to display in the navigation list",
|
|
8247
|
+
"fieldName": "threads"
|
|
7707
8248
|
}
|
|
7708
8249
|
],
|
|
7709
8250
|
"superclass": {
|
|
7710
8251
|
"name": "LitElement",
|
|
7711
8252
|
"package": "lit"
|
|
7712
8253
|
},
|
|
7713
|
-
"tagName": "forge-ai-
|
|
7714
|
-
"customElement": true
|
|
7715
|
-
"summary": "A thinking indicator component that displays three animated dots to show that the system is processing or awaiting a response."
|
|
8254
|
+
"tagName": "forge-ai-threads",
|
|
8255
|
+
"customElement": true
|
|
7716
8256
|
}
|
|
7717
8257
|
],
|
|
7718
8258
|
"exports": [
|
|
7719
8259
|
{
|
|
7720
8260
|
"kind": "js",
|
|
7721
|
-
"name": "
|
|
8261
|
+
"name": "AiThreadsComponentTagName",
|
|
7722
8262
|
"declaration": {
|
|
7723
|
-
"name": "
|
|
7724
|
-
"module": "src/lib/ai-
|
|
8263
|
+
"name": "AiThreadsComponentTagName",
|
|
8264
|
+
"module": "src/lib/ai-threads/ai-threads.ts"
|
|
7725
8265
|
}
|
|
7726
8266
|
},
|
|
7727
8267
|
{
|
|
7728
8268
|
"kind": "js",
|
|
7729
|
-
"name": "
|
|
8269
|
+
"name": "AiThreadsComponent",
|
|
7730
8270
|
"declaration": {
|
|
7731
|
-
"name": "
|
|
7732
|
-
"module": "src/lib/ai-
|
|
8271
|
+
"name": "AiThreadsComponent",
|
|
8272
|
+
"module": "src/lib/ai-threads/ai-threads.ts"
|
|
7733
8273
|
}
|
|
7734
8274
|
},
|
|
7735
8275
|
{
|
|
7736
8276
|
"kind": "custom-element-definition",
|
|
7737
8277
|
"declaration": {
|
|
7738
|
-
"name": "
|
|
7739
|
-
"module": "src/lib/ai-
|
|
8278
|
+
"name": "AiThreadsComponent",
|
|
8279
|
+
"module": "src/lib/ai-threads/ai-threads.ts"
|
|
7740
8280
|
}
|
|
7741
8281
|
}
|
|
7742
8282
|
]
|
|
7743
8283
|
},
|
|
7744
8284
|
{
|
|
7745
8285
|
"kind": "javascript-module",
|
|
7746
|
-
"path": "src/lib/ai-
|
|
8286
|
+
"path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
|
|
7747
8287
|
"declarations": [
|
|
7748
8288
|
{
|
|
7749
8289
|
"kind": "variable",
|
|
7750
|
-
"name": "
|
|
8290
|
+
"name": "AiThinkingIndicatorComponentTagName",
|
|
7751
8291
|
"type": {
|
|
7752
8292
|
"text": "keyof HTMLElementTagNameMap"
|
|
7753
8293
|
},
|
|
7754
|
-
"default": "'forge-ai-
|
|
8294
|
+
"default": "'forge-ai-thinking-indicator'"
|
|
7755
8295
|
},
|
|
7756
8296
|
{
|
|
7757
8297
|
"kind": "class",
|
|
7758
8298
|
"description": "",
|
|
7759
|
-
"name": "
|
|
7760
|
-
"slots": [
|
|
7761
|
-
{
|
|
7762
|
-
"description": "Default slot for chatbot component",
|
|
7763
|
-
"name": ""
|
|
7764
|
-
}
|
|
7765
|
-
],
|
|
8299
|
+
"name": "AiThinkingIndicatorComponent",
|
|
7766
8300
|
"members": [
|
|
7767
8301
|
{
|
|
7768
8302
|
"kind": "field",
|
|
7769
|
-
"name": "
|
|
8303
|
+
"name": "showText",
|
|
7770
8304
|
"type": {
|
|
7771
|
-
"text": "
|
|
8305
|
+
"text": "boolean"
|
|
7772
8306
|
},
|
|
7773
8307
|
"privacy": "public",
|
|
7774
|
-
"default": "
|
|
7775
|
-
"
|
|
7776
|
-
"attribute": "threads"
|
|
7777
|
-
}
|
|
7778
|
-
],
|
|
7779
|
-
"events": [
|
|
7780
|
-
{
|
|
7781
|
-
"type": {
|
|
7782
|
-
"text": "CustomEvent<ForgeAiThreadsSelectEventData>"
|
|
7783
|
-
},
|
|
7784
|
-
"description": "Fired when a thread is selected.",
|
|
7785
|
-
"name": "forge-ai-threads-select"
|
|
8308
|
+
"default": "false",
|
|
8309
|
+
"attribute": "show-text"
|
|
7786
8310
|
},
|
|
7787
8311
|
{
|
|
8312
|
+
"kind": "field",
|
|
8313
|
+
"name": "initialDelay",
|
|
7788
8314
|
"type": {
|
|
7789
|
-
"text": "
|
|
8315
|
+
"text": "number"
|
|
7790
8316
|
},
|
|
7791
|
-
"
|
|
7792
|
-
"
|
|
8317
|
+
"privacy": "public",
|
|
8318
|
+
"default": "0",
|
|
8319
|
+
"attribute": "initial-delay"
|
|
7793
8320
|
},
|
|
7794
8321
|
{
|
|
8322
|
+
"kind": "field",
|
|
8323
|
+
"name": "cycleInterval",
|
|
7795
8324
|
"type": {
|
|
7796
|
-
"text": "
|
|
8325
|
+
"text": "number"
|
|
7797
8326
|
},
|
|
7798
|
-
"
|
|
7799
|
-
"
|
|
8327
|
+
"privacy": "public",
|
|
8328
|
+
"default": "5000",
|
|
8329
|
+
"attribute": "cycle-interval"
|
|
7800
8330
|
}
|
|
7801
8331
|
],
|
|
7802
8332
|
"attributes": [
|
|
7803
8333
|
{
|
|
7804
|
-
"name": "
|
|
8334
|
+
"name": "show-text",
|
|
7805
8335
|
"type": {
|
|
7806
|
-
"text": "
|
|
8336
|
+
"text": "boolean"
|
|
7807
8337
|
},
|
|
7808
|
-
"default": "
|
|
7809
|
-
"
|
|
7810
|
-
|
|
8338
|
+
"default": "false",
|
|
8339
|
+
"fieldName": "showText"
|
|
8340
|
+
},
|
|
8341
|
+
{
|
|
8342
|
+
"name": "initial-delay",
|
|
8343
|
+
"type": {
|
|
8344
|
+
"text": "number"
|
|
8345
|
+
},
|
|
8346
|
+
"default": "0",
|
|
8347
|
+
"fieldName": "initialDelay"
|
|
8348
|
+
},
|
|
8349
|
+
{
|
|
8350
|
+
"name": "cycle-interval",
|
|
8351
|
+
"type": {
|
|
8352
|
+
"text": "number"
|
|
8353
|
+
},
|
|
8354
|
+
"default": "5000",
|
|
8355
|
+
"fieldName": "cycleInterval"
|
|
7811
8356
|
}
|
|
7812
8357
|
],
|
|
7813
8358
|
"superclass": {
|
|
7814
8359
|
"name": "LitElement",
|
|
7815
8360
|
"package": "lit"
|
|
7816
8361
|
},
|
|
7817
|
-
"tagName": "forge-ai-
|
|
7818
|
-
"customElement": true
|
|
8362
|
+
"tagName": "forge-ai-thinking-indicator",
|
|
8363
|
+
"customElement": true,
|
|
8364
|
+
"summary": "A thinking indicator component that displays three animated dots to show that the system is processing or awaiting a response."
|
|
7819
8365
|
}
|
|
7820
8366
|
],
|
|
7821
8367
|
"exports": [
|
|
7822
8368
|
{
|
|
7823
8369
|
"kind": "js",
|
|
7824
|
-
"name": "
|
|
8370
|
+
"name": "AiThinkingIndicatorComponentTagName",
|
|
7825
8371
|
"declaration": {
|
|
7826
|
-
"name": "
|
|
7827
|
-
"module": "src/lib/ai-
|
|
8372
|
+
"name": "AiThinkingIndicatorComponentTagName",
|
|
8373
|
+
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
7828
8374
|
}
|
|
7829
8375
|
},
|
|
7830
8376
|
{
|
|
7831
8377
|
"kind": "js",
|
|
7832
|
-
"name": "
|
|
8378
|
+
"name": "AiThinkingIndicatorComponent",
|
|
7833
8379
|
"declaration": {
|
|
7834
|
-
"name": "
|
|
7835
|
-
"module": "src/lib/ai-
|
|
8380
|
+
"name": "AiThinkingIndicatorComponent",
|
|
8381
|
+
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
7836
8382
|
}
|
|
7837
8383
|
},
|
|
7838
8384
|
{
|
|
7839
8385
|
"kind": "custom-element-definition",
|
|
7840
8386
|
"declaration": {
|
|
7841
|
-
"name": "
|
|
7842
|
-
"module": "src/lib/ai-
|
|
8387
|
+
"name": "AiThinkingIndicatorComponent",
|
|
8388
|
+
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
7843
8389
|
}
|
|
7844
8390
|
}
|
|
7845
8391
|
]
|
|
@@ -8481,15 +9027,15 @@
|
|
|
8481
9027
|
},
|
|
8482
9028
|
{
|
|
8483
9029
|
"kind": "javascript-module",
|
|
8484
|
-
"path": "src/lib/core/
|
|
9030
|
+
"path": "src/lib/core/overlay/overlay.ts",
|
|
8485
9031
|
"declarations": [
|
|
8486
9032
|
{
|
|
8487
9033
|
"kind": "class",
|
|
8488
9034
|
"description": "",
|
|
8489
|
-
"name": "
|
|
9035
|
+
"name": "ForgeAiOverlayComponent",
|
|
8490
9036
|
"slots": [
|
|
8491
9037
|
{
|
|
8492
|
-
"description": "The default slot for
|
|
9038
|
+
"description": "The default slot for overlay content.",
|
|
8493
9039
|
"name": ""
|
|
8494
9040
|
}
|
|
8495
9041
|
],
|
|
@@ -8502,18 +9048,18 @@
|
|
|
8502
9048
|
},
|
|
8503
9049
|
"privacy": "public",
|
|
8504
9050
|
"default": "null",
|
|
8505
|
-
"description": "The anchor element to position the
|
|
9051
|
+
"description": "The anchor element to position the overlay relative to.",
|
|
8506
9052
|
"attribute": "anchor"
|
|
8507
9053
|
},
|
|
8508
9054
|
{
|
|
8509
9055
|
"kind": "field",
|
|
8510
9056
|
"name": "placement",
|
|
8511
9057
|
"type": {
|
|
8512
|
-
"text": "
|
|
9058
|
+
"text": "OverlayPlacement"
|
|
8513
9059
|
},
|
|
8514
9060
|
"privacy": "public",
|
|
8515
9061
|
"default": "'bottom-start'",
|
|
8516
|
-
"description": "The placement of the
|
|
9062
|
+
"description": "The placement of the overlay relative to the anchor.",
|
|
8517
9063
|
"attribute": "placement"
|
|
8518
9064
|
},
|
|
8519
9065
|
{
|
|
@@ -8523,8 +9069,8 @@
|
|
|
8523
9069
|
"text": "boolean"
|
|
8524
9070
|
},
|
|
8525
9071
|
"privacy": "public",
|
|
8526
|
-
"default": "
|
|
8527
|
-
"description": "Whether the
|
|
9072
|
+
"default": "true",
|
|
9073
|
+
"description": "Whether the overlay should flip to the opposite side when there's no space.",
|
|
8528
9074
|
"attribute": "flip"
|
|
8529
9075
|
},
|
|
8530
9076
|
{
|
|
@@ -8535,7 +9081,7 @@
|
|
|
8535
9081
|
},
|
|
8536
9082
|
"privacy": "public",
|
|
8537
9083
|
"default": "false",
|
|
8538
|
-
"description": "Whether the
|
|
9084
|
+
"description": "Whether the overlay should shift to stay in view.",
|
|
8539
9085
|
"attribute": "shift"
|
|
8540
9086
|
},
|
|
8541
9087
|
{
|
|
@@ -8546,30 +9092,30 @@
|
|
|
8546
9092
|
},
|
|
8547
9093
|
"privacy": "public",
|
|
8548
9094
|
"default": "false",
|
|
8549
|
-
"description": "Whether the
|
|
9095
|
+
"description": "Whether the overlay is open.",
|
|
8550
9096
|
"attribute": "open",
|
|
8551
9097
|
"reflects": true
|
|
8552
9098
|
},
|
|
8553
9099
|
{
|
|
8554
9100
|
"kind": "field",
|
|
8555
|
-
"name": "
|
|
9101
|
+
"name": "arrowElement",
|
|
8556
9102
|
"type": {
|
|
8557
|
-
"text": "
|
|
9103
|
+
"text": "HTMLElement | null"
|
|
8558
9104
|
},
|
|
8559
9105
|
"privacy": "public",
|
|
8560
|
-
"default": "
|
|
8561
|
-
"description": "
|
|
8562
|
-
"attribute": "
|
|
9106
|
+
"default": "null",
|
|
9107
|
+
"description": "The arrow element to position relative to the overlay.",
|
|
9108
|
+
"attribute": "arrowElement"
|
|
8563
9109
|
},
|
|
8564
9110
|
{
|
|
8565
9111
|
"kind": "field",
|
|
8566
9112
|
"name": "offset",
|
|
8567
9113
|
"type": {
|
|
8568
|
-
"text": "
|
|
9114
|
+
"text": "OverlayOffset | undefined"
|
|
8569
9115
|
},
|
|
8570
9116
|
"privacy": "public",
|
|
8571
9117
|
"default": "undefined",
|
|
8572
|
-
"description": "The offset of the
|
|
9118
|
+
"description": "The offset of the overlay from the anchor element.\nCan be a number (main axis offset) or an object with mainAxis, crossAxis, and alignmentAxis properties.",
|
|
8573
9119
|
"attribute": "offset"
|
|
8574
9120
|
},
|
|
8575
9121
|
{
|
|
@@ -8580,7 +9126,7 @@
|
|
|
8580
9126
|
},
|
|
8581
9127
|
"privacy": "public",
|
|
8582
9128
|
"default": "'auto'",
|
|
8583
|
-
"description": "The dismiss mode for the
|
|
9129
|
+
"description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
8584
9130
|
"attribute": "dismiss-mode"
|
|
8585
9131
|
}
|
|
8586
9132
|
],
|
|
@@ -8591,16 +9137,16 @@
|
|
|
8591
9137
|
"text": "Element | null"
|
|
8592
9138
|
},
|
|
8593
9139
|
"default": "null",
|
|
8594
|
-
"description": "The anchor element to position the
|
|
9140
|
+
"description": "The anchor element to position the overlay relative to.",
|
|
8595
9141
|
"fieldName": "anchor"
|
|
8596
9142
|
},
|
|
8597
9143
|
{
|
|
8598
9144
|
"name": "placement",
|
|
8599
9145
|
"type": {
|
|
8600
|
-
"text": "
|
|
9146
|
+
"text": "OverlayPlacement"
|
|
8601
9147
|
},
|
|
8602
9148
|
"default": "'bottom-start'",
|
|
8603
|
-
"description": "The placement of the
|
|
9149
|
+
"description": "The placement of the overlay relative to the anchor.",
|
|
8604
9150
|
"fieldName": "placement"
|
|
8605
9151
|
},
|
|
8606
9152
|
{
|
|
@@ -8608,8 +9154,8 @@
|
|
|
8608
9154
|
"type": {
|
|
8609
9155
|
"text": "boolean"
|
|
8610
9156
|
},
|
|
8611
|
-
"default": "
|
|
8612
|
-
"description": "Whether the
|
|
9157
|
+
"default": "true",
|
|
9158
|
+
"description": "Whether the overlay should flip to the opposite side when there's no space.",
|
|
8613
9159
|
"fieldName": "flip"
|
|
8614
9160
|
},
|
|
8615
9161
|
{
|
|
@@ -8618,7 +9164,7 @@
|
|
|
8618
9164
|
"text": "boolean"
|
|
8619
9165
|
},
|
|
8620
9166
|
"default": "false",
|
|
8621
|
-
"description": "Whether the
|
|
9167
|
+
"description": "Whether the overlay should shift to stay in view.",
|
|
8622
9168
|
"fieldName": "shift"
|
|
8623
9169
|
},
|
|
8624
9170
|
{
|
|
@@ -8627,25 +9173,25 @@
|
|
|
8627
9173
|
"text": "boolean"
|
|
8628
9174
|
},
|
|
8629
9175
|
"default": "false",
|
|
8630
|
-
"description": "Whether the
|
|
9176
|
+
"description": "Whether the overlay is open.",
|
|
8631
9177
|
"fieldName": "open"
|
|
8632
9178
|
},
|
|
8633
9179
|
{
|
|
8634
|
-
"name": "
|
|
9180
|
+
"name": "arrowElement",
|
|
8635
9181
|
"type": {
|
|
8636
|
-
"text": "
|
|
9182
|
+
"text": "HTMLElement | null"
|
|
8637
9183
|
},
|
|
8638
|
-
"default": "
|
|
8639
|
-
"description": "
|
|
8640
|
-
"fieldName": "
|
|
9184
|
+
"default": "null",
|
|
9185
|
+
"description": "The arrow element to position relative to the overlay.",
|
|
9186
|
+
"fieldName": "arrowElement"
|
|
8641
9187
|
},
|
|
8642
9188
|
{
|
|
8643
9189
|
"name": "offset",
|
|
8644
9190
|
"type": {
|
|
8645
|
-
"text": "
|
|
9191
|
+
"text": "OverlayOffset | undefined"
|
|
8646
9192
|
},
|
|
8647
9193
|
"default": "undefined",
|
|
8648
|
-
"description": "The offset of the
|
|
9194
|
+
"description": "The offset of the overlay from the anchor element.\nCan be a number (main axis offset) or an object with mainAxis, crossAxis, and alignmentAxis properties.",
|
|
8649
9195
|
"fieldName": "offset"
|
|
8650
9196
|
},
|
|
8651
9197
|
{
|
|
@@ -8654,7 +9200,7 @@
|
|
|
8654
9200
|
"text": "'auto' | 'manual'"
|
|
8655
9201
|
},
|
|
8656
9202
|
"default": "'auto'",
|
|
8657
|
-
"description": "The dismiss mode for the
|
|
9203
|
+
"description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
8658
9204
|
"fieldName": "dismissMode"
|
|
8659
9205
|
}
|
|
8660
9206
|
],
|
|
@@ -8662,98 +9208,88 @@
|
|
|
8662
9208
|
"name": "LitElement",
|
|
8663
9209
|
"package": "lit"
|
|
8664
9210
|
},
|
|
8665
|
-
"summary": "A
|
|
8666
|
-
"tagName": "forge-ai-
|
|
9211
|
+
"summary": "A low-level overlay component for internal use within AI components.",
|
|
9212
|
+
"tagName": "forge-ai-overlay",
|
|
8667
9213
|
"customElement": true
|
|
8668
9214
|
}
|
|
8669
9215
|
],
|
|
8670
9216
|
"exports": [
|
|
8671
9217
|
{
|
|
8672
9218
|
"kind": "js",
|
|
8673
|
-
"name": "
|
|
9219
|
+
"name": "ForgeAiOverlayComponent",
|
|
8674
9220
|
"declaration": {
|
|
8675
|
-
"name": "
|
|
8676
|
-
"module": "src/lib/core/
|
|
9221
|
+
"name": "ForgeAiOverlayComponent",
|
|
9222
|
+
"module": "src/lib/core/overlay/overlay.ts"
|
|
8677
9223
|
}
|
|
8678
9224
|
},
|
|
8679
9225
|
{
|
|
8680
9226
|
"kind": "custom-element-definition",
|
|
8681
|
-
"name": "forge-ai-
|
|
9227
|
+
"name": "forge-ai-overlay",
|
|
8682
9228
|
"declaration": {
|
|
8683
|
-
"name": "
|
|
8684
|
-
"module": "src/lib/core/
|
|
9229
|
+
"name": "ForgeAiOverlayComponent",
|
|
9230
|
+
"module": "src/lib/core/overlay/overlay.ts"
|
|
8685
9231
|
}
|
|
8686
9232
|
}
|
|
8687
9233
|
]
|
|
8688
9234
|
},
|
|
8689
9235
|
{
|
|
8690
9236
|
"kind": "javascript-module",
|
|
8691
|
-
"path": "src/lib/core/
|
|
9237
|
+
"path": "src/lib/core/popover/popover.ts",
|
|
8692
9238
|
"declarations": [
|
|
8693
9239
|
{
|
|
8694
9240
|
"kind": "class",
|
|
8695
9241
|
"description": "",
|
|
8696
|
-
"name": "
|
|
8697
|
-
"cssProperties": [
|
|
8698
|
-
{
|
|
8699
|
-
"description": "The maximum width of the tooltip.",
|
|
8700
|
-
"name": "--forge-ai-tooltip-max-width"
|
|
8701
|
-
},
|
|
8702
|
-
{
|
|
8703
|
-
"description": "The z-index of the tooltip overlay.",
|
|
8704
|
-
"name": "--forge-ai-tooltip-z-index"
|
|
8705
|
-
}
|
|
8706
|
-
],
|
|
9242
|
+
"name": "ForgeAiPopoverComponent",
|
|
8707
9243
|
"slots": [
|
|
8708
9244
|
{
|
|
8709
|
-
"description": "The default slot for
|
|
9245
|
+
"description": "The default slot for popover content.",
|
|
8710
9246
|
"name": ""
|
|
8711
9247
|
}
|
|
8712
9248
|
],
|
|
8713
9249
|
"members": [
|
|
8714
9250
|
{
|
|
8715
9251
|
"kind": "field",
|
|
8716
|
-
"name": "
|
|
9252
|
+
"name": "anchor",
|
|
8717
9253
|
"type": {
|
|
8718
|
-
"text": "
|
|
9254
|
+
"text": "Element | null"
|
|
8719
9255
|
},
|
|
8720
9256
|
"privacy": "public",
|
|
8721
|
-
"default": "
|
|
8722
|
-
"description": "The
|
|
8723
|
-
"attribute": "
|
|
9257
|
+
"default": "null",
|
|
9258
|
+
"description": "The anchor element to position the popover relative to.",
|
|
9259
|
+
"attribute": "anchor"
|
|
8724
9260
|
},
|
|
8725
9261
|
{
|
|
8726
9262
|
"kind": "field",
|
|
8727
|
-
"name": "
|
|
9263
|
+
"name": "placement",
|
|
8728
9264
|
"type": {
|
|
8729
|
-
"text": "
|
|
9265
|
+
"text": "PopoverPlacement"
|
|
8730
9266
|
},
|
|
8731
9267
|
"privacy": "public",
|
|
8732
|
-
"default": "''",
|
|
8733
|
-
"description": "The
|
|
8734
|
-
"attribute": "
|
|
9268
|
+
"default": "'bottom-start'",
|
|
9269
|
+
"description": "The placement of the popover relative to the anchor.",
|
|
9270
|
+
"attribute": "placement"
|
|
8735
9271
|
},
|
|
8736
9272
|
{
|
|
8737
9273
|
"kind": "field",
|
|
8738
|
-
"name": "
|
|
9274
|
+
"name": "flip",
|
|
8739
9275
|
"type": {
|
|
8740
|
-
"text": "
|
|
9276
|
+
"text": "boolean"
|
|
8741
9277
|
},
|
|
8742
9278
|
"privacy": "public",
|
|
8743
|
-
"default": "
|
|
8744
|
-
"description": "
|
|
8745
|
-
"attribute": "
|
|
9279
|
+
"default": "false",
|
|
9280
|
+
"description": "Whether the popover should flip to the opposite side when there's no space.",
|
|
9281
|
+
"attribute": "flip"
|
|
8746
9282
|
},
|
|
8747
9283
|
{
|
|
8748
9284
|
"kind": "field",
|
|
8749
|
-
"name": "
|
|
9285
|
+
"name": "shift",
|
|
8750
9286
|
"type": {
|
|
8751
|
-
"text": "
|
|
9287
|
+
"text": "boolean"
|
|
8752
9288
|
},
|
|
8753
9289
|
"privacy": "public",
|
|
8754
|
-
"default": "
|
|
8755
|
-
"description": "
|
|
8756
|
-
"attribute": "
|
|
9290
|
+
"default": "false",
|
|
9291
|
+
"description": "Whether the popover should shift to stay in view.",
|
|
9292
|
+
"attribute": "shift"
|
|
8757
9293
|
},
|
|
8758
9294
|
{
|
|
8759
9295
|
"kind": "field",
|
|
@@ -8763,102 +9299,80 @@
|
|
|
8763
9299
|
},
|
|
8764
9300
|
"privacy": "public",
|
|
8765
9301
|
"default": "false",
|
|
8766
|
-
"description": "Whether the
|
|
9302
|
+
"description": "Whether the popover is open.",
|
|
8767
9303
|
"attribute": "open",
|
|
8768
9304
|
"reflects": true
|
|
8769
9305
|
},
|
|
8770
9306
|
{
|
|
8771
9307
|
"kind": "field",
|
|
8772
|
-
"name": "
|
|
9308
|
+
"name": "arrow",
|
|
8773
9309
|
"type": {
|
|
8774
|
-
"text": "
|
|
9310
|
+
"text": "boolean"
|
|
8775
9311
|
},
|
|
8776
9312
|
"privacy": "public",
|
|
8777
|
-
"default": "
|
|
8778
|
-
"description": "
|
|
8779
|
-
"attribute": "
|
|
9313
|
+
"default": "false",
|
|
9314
|
+
"description": "Whether to show an arrow pointing to the anchor element.",
|
|
9315
|
+
"attribute": "arrow"
|
|
8780
9316
|
},
|
|
8781
9317
|
{
|
|
8782
9318
|
"kind": "field",
|
|
8783
|
-
"name": "
|
|
9319
|
+
"name": "offset",
|
|
8784
9320
|
"type": {
|
|
8785
|
-
"text": "
|
|
9321
|
+
"text": "PopoverOffset | undefined"
|
|
8786
9322
|
},
|
|
8787
9323
|
"privacy": "public",
|
|
8788
|
-
"default": "
|
|
8789
|
-
"description": "
|
|
8790
|
-
"attribute": "
|
|
9324
|
+
"default": "undefined",
|
|
9325
|
+
"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.",
|
|
9326
|
+
"attribute": "offset"
|
|
8791
9327
|
},
|
|
8792
9328
|
{
|
|
8793
|
-
"kind": "
|
|
8794
|
-
"name": "
|
|
8795
|
-
"
|
|
8796
|
-
|
|
8797
|
-
"type": {
|
|
8798
|
-
"text": "void"
|
|
8799
|
-
}
|
|
9329
|
+
"kind": "field",
|
|
9330
|
+
"name": "dismissMode",
|
|
9331
|
+
"type": {
|
|
9332
|
+
"text": "'auto' | 'manual'"
|
|
8800
9333
|
},
|
|
8801
|
-
"description": "Show the tooltip programmatically."
|
|
8802
|
-
},
|
|
8803
|
-
{
|
|
8804
|
-
"kind": "method",
|
|
8805
|
-
"name": "hide",
|
|
8806
9334
|
"privacy": "public",
|
|
8807
|
-
"
|
|
8808
|
-
|
|
8809
|
-
|
|
8810
|
-
}
|
|
8811
|
-
},
|
|
8812
|
-
"description": "Hide the tooltip programmatically."
|
|
8813
|
-
},
|
|
8814
|
-
{
|
|
8815
|
-
"kind": "method",
|
|
8816
|
-
"name": "toggle",
|
|
8817
|
-
"privacy": "public",
|
|
8818
|
-
"return": {
|
|
8819
|
-
"type": {
|
|
8820
|
-
"text": "void"
|
|
8821
|
-
}
|
|
8822
|
-
},
|
|
8823
|
-
"description": "Toggle the tooltip programmatically."
|
|
9335
|
+
"default": "'auto'",
|
|
9336
|
+
"description": "The dismiss mode for the popover.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
9337
|
+
"attribute": "dismiss-mode"
|
|
8824
9338
|
}
|
|
8825
9339
|
],
|
|
8826
9340
|
"attributes": [
|
|
8827
9341
|
{
|
|
8828
|
-
"name": "
|
|
9342
|
+
"name": "anchor",
|
|
8829
9343
|
"type": {
|
|
8830
|
-
"text": "
|
|
9344
|
+
"text": "Element | null"
|
|
8831
9345
|
},
|
|
8832
|
-
"default": "
|
|
8833
|
-
"description": "The
|
|
8834
|
-
"fieldName": "
|
|
9346
|
+
"default": "null",
|
|
9347
|
+
"description": "The anchor element to position the popover relative to.",
|
|
9348
|
+
"fieldName": "anchor"
|
|
8835
9349
|
},
|
|
8836
9350
|
{
|
|
8837
|
-
"name": "
|
|
9351
|
+
"name": "placement",
|
|
8838
9352
|
"type": {
|
|
8839
|
-
"text": "
|
|
9353
|
+
"text": "PopoverPlacement"
|
|
8840
9354
|
},
|
|
8841
|
-
"default": "''",
|
|
8842
|
-
"description": "The
|
|
8843
|
-
"fieldName": "
|
|
9355
|
+
"default": "'bottom-start'",
|
|
9356
|
+
"description": "The placement of the popover relative to the anchor.",
|
|
9357
|
+
"fieldName": "placement"
|
|
8844
9358
|
},
|
|
8845
9359
|
{
|
|
8846
|
-
"name": "
|
|
9360
|
+
"name": "flip",
|
|
8847
9361
|
"type": {
|
|
8848
|
-
"text": "
|
|
9362
|
+
"text": "boolean"
|
|
8849
9363
|
},
|
|
8850
|
-
"default": "
|
|
8851
|
-
"description": "
|
|
8852
|
-
"fieldName": "
|
|
9364
|
+
"default": "false",
|
|
9365
|
+
"description": "Whether the popover should flip to the opposite side when there's no space.",
|
|
9366
|
+
"fieldName": "flip"
|
|
8853
9367
|
},
|
|
8854
9368
|
{
|
|
8855
|
-
"name": "
|
|
9369
|
+
"name": "shift",
|
|
8856
9370
|
"type": {
|
|
8857
|
-
"text": "
|
|
9371
|
+
"text": "boolean"
|
|
8858
9372
|
},
|
|
8859
|
-
"default": "
|
|
8860
|
-
"description": "
|
|
8861
|
-
"fieldName": "
|
|
9373
|
+
"default": "false",
|
|
9374
|
+
"description": "Whether the popover should shift to stay in view.",
|
|
9375
|
+
"fieldName": "shift"
|
|
8862
9376
|
},
|
|
8863
9377
|
{
|
|
8864
9378
|
"name": "open",
|
|
@@ -8866,114 +9380,195 @@
|
|
|
8866
9380
|
"text": "boolean"
|
|
8867
9381
|
},
|
|
8868
9382
|
"default": "false",
|
|
8869
|
-
"description": "Whether the
|
|
9383
|
+
"description": "Whether the popover is open.",
|
|
8870
9384
|
"fieldName": "open"
|
|
8871
9385
|
},
|
|
8872
9386
|
{
|
|
8873
|
-
"name": "
|
|
9387
|
+
"name": "arrow",
|
|
8874
9388
|
"type": {
|
|
8875
|
-
"text": "
|
|
9389
|
+
"text": "boolean"
|
|
8876
9390
|
},
|
|
8877
|
-
"default": "
|
|
8878
|
-
"description": "
|
|
8879
|
-
"fieldName": "
|
|
9391
|
+
"default": "false",
|
|
9392
|
+
"description": "Whether to show an arrow pointing to the anchor element.",
|
|
9393
|
+
"fieldName": "arrow"
|
|
8880
9394
|
},
|
|
8881
9395
|
{
|
|
8882
|
-
"name": "
|
|
9396
|
+
"name": "offset",
|
|
8883
9397
|
"type": {
|
|
8884
|
-
"text": "
|
|
9398
|
+
"text": "PopoverOffset | undefined"
|
|
8885
9399
|
},
|
|
8886
|
-
"default": "
|
|
8887
|
-
"description": "
|
|
8888
|
-
"fieldName": "
|
|
9400
|
+
"default": "undefined",
|
|
9401
|
+
"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.",
|
|
9402
|
+
"fieldName": "offset"
|
|
9403
|
+
},
|
|
9404
|
+
{
|
|
9405
|
+
"name": "dismiss-mode",
|
|
9406
|
+
"type": {
|
|
9407
|
+
"text": "'auto' | 'manual'"
|
|
9408
|
+
},
|
|
9409
|
+
"default": "'auto'",
|
|
9410
|
+
"description": "The dismiss mode for the popover.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
9411
|
+
"fieldName": "dismissMode"
|
|
8889
9412
|
}
|
|
8890
9413
|
],
|
|
8891
9414
|
"superclass": {
|
|
8892
9415
|
"name": "LitElement",
|
|
8893
9416
|
"package": "lit"
|
|
8894
9417
|
},
|
|
8895
|
-
"summary": "A
|
|
8896
|
-
"tagName": "forge-ai-
|
|
9418
|
+
"summary": "A popover component that provides styled overlay functionality.",
|
|
9419
|
+
"tagName": "forge-ai-popover",
|
|
8897
9420
|
"customElement": true
|
|
8898
9421
|
}
|
|
8899
9422
|
],
|
|
8900
9423
|
"exports": [
|
|
8901
9424
|
{
|
|
8902
9425
|
"kind": "js",
|
|
8903
|
-
"name": "
|
|
9426
|
+
"name": "ForgeAiPopoverComponent",
|
|
8904
9427
|
"declaration": {
|
|
8905
|
-
"name": "
|
|
8906
|
-
"module": "src/lib/core/
|
|
9428
|
+
"name": "ForgeAiPopoverComponent",
|
|
9429
|
+
"module": "src/lib/core/popover/popover.ts"
|
|
8907
9430
|
}
|
|
8908
9431
|
},
|
|
8909
9432
|
{
|
|
8910
9433
|
"kind": "custom-element-definition",
|
|
8911
|
-
"name": "forge-ai-
|
|
9434
|
+
"name": "forge-ai-popover",
|
|
8912
9435
|
"declaration": {
|
|
8913
|
-
"name": "
|
|
8914
|
-
"module": "src/lib/core/
|
|
9436
|
+
"name": "ForgeAiPopoverComponent",
|
|
9437
|
+
"module": "src/lib/core/popover/popover.ts"
|
|
8915
9438
|
}
|
|
8916
9439
|
}
|
|
8917
9440
|
]
|
|
8918
9441
|
},
|
|
8919
9442
|
{
|
|
8920
9443
|
"kind": "javascript-module",
|
|
8921
|
-
"path": "src/lib/
|
|
9444
|
+
"path": "src/lib/tools/ai-data-table/ai-data-table-definition.ts",
|
|
9445
|
+
"declarations": [
|
|
9446
|
+
{
|
|
9447
|
+
"kind": "variable",
|
|
9448
|
+
"name": "displayDataTableTool",
|
|
9449
|
+
"type": {
|
|
9450
|
+
"text": "ToolDefinition"
|
|
9451
|
+
},
|
|
9452
|
+
"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' }) }"
|
|
9453
|
+
}
|
|
9454
|
+
],
|
|
9455
|
+
"exports": [
|
|
9456
|
+
{
|
|
9457
|
+
"kind": "js",
|
|
9458
|
+
"name": "displayDataTableTool",
|
|
9459
|
+
"declaration": {
|
|
9460
|
+
"name": "displayDataTableTool",
|
|
9461
|
+
"module": "src/lib/tools/ai-data-table/ai-data-table-definition.ts"
|
|
9462
|
+
}
|
|
9463
|
+
}
|
|
9464
|
+
]
|
|
9465
|
+
},
|
|
9466
|
+
{
|
|
9467
|
+
"kind": "javascript-module",
|
|
9468
|
+
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
9469
|
+
"declarations": [
|
|
9470
|
+
{
|
|
9471
|
+
"kind": "class",
|
|
9472
|
+
"description": "Data table component tool renderer for displaying tabular data with pagination and filtering.",
|
|
9473
|
+
"name": "DataTableToolElement",
|
|
9474
|
+
"members": [
|
|
9475
|
+
{
|
|
9476
|
+
"kind": "field",
|
|
9477
|
+
"name": "toolCall",
|
|
9478
|
+
"type": {
|
|
9479
|
+
"text": "ToolCall<TableData>"
|
|
9480
|
+
},
|
|
9481
|
+
"privacy": "public",
|
|
9482
|
+
"description": "Tool call data containing table configuration and data"
|
|
9483
|
+
}
|
|
9484
|
+
],
|
|
9485
|
+
"superclass": {
|
|
9486
|
+
"name": "LitElement",
|
|
9487
|
+
"package": "lit"
|
|
9488
|
+
},
|
|
9489
|
+
"tagName": "forge-ai-tool-data-table",
|
|
9490
|
+
"customElement": true
|
|
9491
|
+
}
|
|
9492
|
+
],
|
|
9493
|
+
"exports": [
|
|
9494
|
+
{
|
|
9495
|
+
"kind": "custom-element-definition",
|
|
9496
|
+
"name": "forge-ai-tool-data-table",
|
|
9497
|
+
"declaration": {
|
|
9498
|
+
"name": "DataTableToolElement",
|
|
9499
|
+
"module": "src/lib/tools/ai-data-table/ai-data-table.ts"
|
|
9500
|
+
}
|
|
9501
|
+
}
|
|
9502
|
+
]
|
|
9503
|
+
},
|
|
9504
|
+
{
|
|
9505
|
+
"kind": "javascript-module",
|
|
9506
|
+
"path": "src/lib/core/tooltip/tooltip.ts",
|
|
8922
9507
|
"declarations": [
|
|
8923
9508
|
{
|
|
8924
9509
|
"kind": "class",
|
|
8925
9510
|
"description": "",
|
|
8926
|
-
"name": "
|
|
9511
|
+
"name": "ForgeAiTooltipComponent",
|
|
9512
|
+
"cssProperties": [
|
|
9513
|
+
{
|
|
9514
|
+
"description": "The maximum width of the tooltip.",
|
|
9515
|
+
"name": "--forge-ai-tooltip-max-width"
|
|
9516
|
+
},
|
|
9517
|
+
{
|
|
9518
|
+
"description": "The z-index of the tooltip overlay.",
|
|
9519
|
+
"name": "--forge-ai-tooltip-z-index"
|
|
9520
|
+
}
|
|
9521
|
+
],
|
|
8927
9522
|
"slots": [
|
|
8928
9523
|
{
|
|
8929
|
-
"description": "The default slot for
|
|
9524
|
+
"description": "The default slot for tooltip content.",
|
|
8930
9525
|
"name": ""
|
|
8931
9526
|
}
|
|
8932
9527
|
],
|
|
8933
9528
|
"members": [
|
|
8934
9529
|
{
|
|
8935
9530
|
"kind": "field",
|
|
8936
|
-
"name": "
|
|
9531
|
+
"name": "for",
|
|
8937
9532
|
"type": {
|
|
8938
|
-
"text": "
|
|
9533
|
+
"text": "string"
|
|
8939
9534
|
},
|
|
8940
9535
|
"privacy": "public",
|
|
8941
|
-
"default": "
|
|
8942
|
-
"description": "The anchor element to
|
|
8943
|
-
"attribute": "
|
|
9536
|
+
"default": "''",
|
|
9537
|
+
"description": "The ID of the anchor element to attach the tooltip to.",
|
|
9538
|
+
"attribute": "for"
|
|
8944
9539
|
},
|
|
8945
9540
|
{
|
|
8946
9541
|
"kind": "field",
|
|
8947
|
-
"name": "
|
|
9542
|
+
"name": "text",
|
|
8948
9543
|
"type": {
|
|
8949
|
-
"text": "
|
|
9544
|
+
"text": "string"
|
|
8950
9545
|
},
|
|
8951
9546
|
"privacy": "public",
|
|
8952
|
-
"default": "'
|
|
8953
|
-
"description": "The
|
|
8954
|
-
"attribute": "
|
|
9547
|
+
"default": "''",
|
|
9548
|
+
"description": "The text content of the tooltip (alternative to slotted content).",
|
|
9549
|
+
"attribute": "text"
|
|
8955
9550
|
},
|
|
8956
9551
|
{
|
|
8957
9552
|
"kind": "field",
|
|
8958
|
-
"name": "
|
|
9553
|
+
"name": "placement",
|
|
8959
9554
|
"type": {
|
|
8960
|
-
"text": "
|
|
9555
|
+
"text": "TooltipPlacement"
|
|
8961
9556
|
},
|
|
8962
9557
|
"privacy": "public",
|
|
8963
|
-
"default": "
|
|
8964
|
-
"description": "
|
|
8965
|
-
"attribute": "
|
|
9558
|
+
"default": "'top'",
|
|
9559
|
+
"description": "The placement of the tooltip relative to the anchor.",
|
|
9560
|
+
"attribute": "placement"
|
|
8966
9561
|
},
|
|
8967
9562
|
{
|
|
8968
9563
|
"kind": "field",
|
|
8969
|
-
"name": "
|
|
9564
|
+
"name": "trigger",
|
|
8970
9565
|
"type": {
|
|
8971
|
-
"text": "
|
|
9566
|
+
"text": "TooltipTrigger"
|
|
8972
9567
|
},
|
|
8973
9568
|
"privacy": "public",
|
|
8974
|
-
"default": "
|
|
8975
|
-
"description": "
|
|
8976
|
-
"attribute": "
|
|
9569
|
+
"default": "'hover'",
|
|
9570
|
+
"description": "How the tooltip should be triggered.",
|
|
9571
|
+
"attribute": "trigger"
|
|
8977
9572
|
},
|
|
8978
9573
|
{
|
|
8979
9574
|
"kind": "field",
|
|
@@ -8983,204 +9578,155 @@
|
|
|
8983
9578
|
},
|
|
8984
9579
|
"privacy": "public",
|
|
8985
9580
|
"default": "false",
|
|
8986
|
-
"description": "Whether the
|
|
9581
|
+
"description": "Whether the tooltip is open.",
|
|
8987
9582
|
"attribute": "open",
|
|
8988
9583
|
"reflects": true
|
|
8989
9584
|
},
|
|
8990
9585
|
{
|
|
8991
9586
|
"kind": "field",
|
|
8992
|
-
"name": "
|
|
9587
|
+
"name": "delay",
|
|
8993
9588
|
"type": {
|
|
8994
|
-
"text": "
|
|
9589
|
+
"text": "number"
|
|
8995
9590
|
},
|
|
8996
9591
|
"privacy": "public",
|
|
8997
|
-
"default": "
|
|
8998
|
-
"description": "
|
|
8999
|
-
"attribute": "
|
|
9592
|
+
"default": "500",
|
|
9593
|
+
"description": "Delay in milliseconds before showing the tooltip.",
|
|
9594
|
+
"attribute": "delay"
|
|
9000
9595
|
},
|
|
9001
9596
|
{
|
|
9002
9597
|
"kind": "field",
|
|
9003
|
-
"name": "
|
|
9598
|
+
"name": "hideDelay",
|
|
9004
9599
|
"type": {
|
|
9005
|
-
"text": "
|
|
9600
|
+
"text": "number"
|
|
9006
9601
|
},
|
|
9007
9602
|
"privacy": "public",
|
|
9008
|
-
"default": "
|
|
9009
|
-
"description": "
|
|
9010
|
-
"attribute": "
|
|
9603
|
+
"default": "0",
|
|
9604
|
+
"description": "Delay in milliseconds before hiding the tooltip.",
|
|
9605
|
+
"attribute": "hide-delay"
|
|
9011
9606
|
},
|
|
9012
9607
|
{
|
|
9013
|
-
"kind": "
|
|
9014
|
-
"name": "
|
|
9015
|
-
"
|
|
9016
|
-
|
|
9608
|
+
"kind": "method",
|
|
9609
|
+
"name": "show",
|
|
9610
|
+
"privacy": "public",
|
|
9611
|
+
"return": {
|
|
9612
|
+
"type": {
|
|
9613
|
+
"text": "void"
|
|
9614
|
+
}
|
|
9017
9615
|
},
|
|
9616
|
+
"description": "Show the tooltip programmatically."
|
|
9617
|
+
},
|
|
9618
|
+
{
|
|
9619
|
+
"kind": "method",
|
|
9620
|
+
"name": "hide",
|
|
9018
9621
|
"privacy": "public",
|
|
9019
|
-
"
|
|
9020
|
-
|
|
9021
|
-
|
|
9622
|
+
"return": {
|
|
9623
|
+
"type": {
|
|
9624
|
+
"text": "void"
|
|
9625
|
+
}
|
|
9626
|
+
},
|
|
9627
|
+
"description": "Hide the tooltip programmatically."
|
|
9628
|
+
},
|
|
9629
|
+
{
|
|
9630
|
+
"kind": "method",
|
|
9631
|
+
"name": "toggle",
|
|
9632
|
+
"privacy": "public",
|
|
9633
|
+
"return": {
|
|
9634
|
+
"type": {
|
|
9635
|
+
"text": "void"
|
|
9636
|
+
}
|
|
9637
|
+
},
|
|
9638
|
+
"description": "Toggle the tooltip programmatically."
|
|
9022
9639
|
}
|
|
9023
9640
|
],
|
|
9024
9641
|
"attributes": [
|
|
9025
9642
|
{
|
|
9026
|
-
"name": "
|
|
9027
|
-
"type": {
|
|
9028
|
-
"text": "Element | null"
|
|
9029
|
-
},
|
|
9030
|
-
"default": "null",
|
|
9031
|
-
"description": "The anchor element to position the overlay relative to.",
|
|
9032
|
-
"fieldName": "anchor"
|
|
9033
|
-
},
|
|
9034
|
-
{
|
|
9035
|
-
"name": "placement",
|
|
9643
|
+
"name": "for",
|
|
9036
9644
|
"type": {
|
|
9037
|
-
"text": "
|
|
9645
|
+
"text": "string"
|
|
9038
9646
|
},
|
|
9039
|
-
"default": "'
|
|
9040
|
-
"description": "The
|
|
9041
|
-
"fieldName": "
|
|
9647
|
+
"default": "''",
|
|
9648
|
+
"description": "The ID of the anchor element to attach the tooltip to.",
|
|
9649
|
+
"fieldName": "for"
|
|
9042
9650
|
},
|
|
9043
9651
|
{
|
|
9044
|
-
"name": "
|
|
9652
|
+
"name": "text",
|
|
9045
9653
|
"type": {
|
|
9046
|
-
"text": "
|
|
9654
|
+
"text": "string"
|
|
9047
9655
|
},
|
|
9048
|
-
"default": "
|
|
9049
|
-
"description": "
|
|
9050
|
-
"fieldName": "
|
|
9656
|
+
"default": "''",
|
|
9657
|
+
"description": "The text content of the tooltip (alternative to slotted content).",
|
|
9658
|
+
"fieldName": "text"
|
|
9051
9659
|
},
|
|
9052
9660
|
{
|
|
9053
|
-
"name": "
|
|
9661
|
+
"name": "placement",
|
|
9054
9662
|
"type": {
|
|
9055
|
-
"text": "
|
|
9663
|
+
"text": "TooltipPlacement"
|
|
9056
9664
|
},
|
|
9057
|
-
"default": "
|
|
9058
|
-
"description": "
|
|
9059
|
-
"fieldName": "
|
|
9665
|
+
"default": "'top'",
|
|
9666
|
+
"description": "The placement of the tooltip relative to the anchor.",
|
|
9667
|
+
"fieldName": "placement"
|
|
9060
9668
|
},
|
|
9061
9669
|
{
|
|
9062
|
-
"name": "
|
|
9670
|
+
"name": "trigger",
|
|
9063
9671
|
"type": {
|
|
9064
|
-
"text": "
|
|
9672
|
+
"text": "TooltipTrigger"
|
|
9065
9673
|
},
|
|
9066
|
-
"default": "
|
|
9067
|
-
"description": "
|
|
9068
|
-
"fieldName": "
|
|
9674
|
+
"default": "'hover'",
|
|
9675
|
+
"description": "How the tooltip should be triggered.",
|
|
9676
|
+
"fieldName": "trigger"
|
|
9069
9677
|
},
|
|
9070
9678
|
{
|
|
9071
|
-
"name": "
|
|
9679
|
+
"name": "open",
|
|
9072
9680
|
"type": {
|
|
9073
|
-
"text": "
|
|
9681
|
+
"text": "boolean"
|
|
9074
9682
|
},
|
|
9075
|
-
"default": "
|
|
9076
|
-
"description": "
|
|
9077
|
-
"fieldName": "
|
|
9683
|
+
"default": "false",
|
|
9684
|
+
"description": "Whether the tooltip is open.",
|
|
9685
|
+
"fieldName": "open"
|
|
9078
9686
|
},
|
|
9079
9687
|
{
|
|
9080
|
-
"name": "
|
|
9688
|
+
"name": "delay",
|
|
9081
9689
|
"type": {
|
|
9082
|
-
"text": "
|
|
9690
|
+
"text": "number"
|
|
9083
9691
|
},
|
|
9084
|
-
"default": "
|
|
9085
|
-
"description": "
|
|
9086
|
-
"fieldName": "
|
|
9692
|
+
"default": "500",
|
|
9693
|
+
"description": "Delay in milliseconds before showing the tooltip.",
|
|
9694
|
+
"fieldName": "delay"
|
|
9087
9695
|
},
|
|
9088
9696
|
{
|
|
9089
|
-
"name": "
|
|
9697
|
+
"name": "hide-delay",
|
|
9090
9698
|
"type": {
|
|
9091
|
-
"text": "
|
|
9699
|
+
"text": "number"
|
|
9092
9700
|
},
|
|
9093
|
-
"default": "
|
|
9094
|
-
"description": "
|
|
9095
|
-
"fieldName": "
|
|
9701
|
+
"default": "0",
|
|
9702
|
+
"description": "Delay in milliseconds before hiding the tooltip.",
|
|
9703
|
+
"fieldName": "hideDelay"
|
|
9096
9704
|
}
|
|
9097
9705
|
],
|
|
9098
9706
|
"superclass": {
|
|
9099
9707
|
"name": "LitElement",
|
|
9100
9708
|
"package": "lit"
|
|
9101
9709
|
},
|
|
9102
|
-
"summary": "A
|
|
9103
|
-
"tagName": "forge-ai-
|
|
9710
|
+
"summary": "A tooltip component with accessibility features and dynamic positioning.",
|
|
9711
|
+
"tagName": "forge-ai-tooltip",
|
|
9104
9712
|
"customElement": true
|
|
9105
9713
|
}
|
|
9106
9714
|
],
|
|
9107
9715
|
"exports": [
|
|
9108
9716
|
{
|
|
9109
9717
|
"kind": "js",
|
|
9110
|
-
"name": "
|
|
9718
|
+
"name": "ForgeAiTooltipComponent",
|
|
9111
9719
|
"declaration": {
|
|
9112
|
-
"name": "
|
|
9113
|
-
"module": "src/lib/core/
|
|
9720
|
+
"name": "ForgeAiTooltipComponent",
|
|
9721
|
+
"module": "src/lib/core/tooltip/tooltip.ts"
|
|
9114
9722
|
}
|
|
9115
9723
|
},
|
|
9116
9724
|
{
|
|
9117
9725
|
"kind": "custom-element-definition",
|
|
9118
|
-
"name": "forge-ai-
|
|
9119
|
-
"declaration": {
|
|
9120
|
-
"name": "ForgeAiOverlayComponent",
|
|
9121
|
-
"module": "src/lib/core/overlay/overlay.ts"
|
|
9122
|
-
}
|
|
9123
|
-
}
|
|
9124
|
-
]
|
|
9125
|
-
},
|
|
9126
|
-
{
|
|
9127
|
-
"kind": "javascript-module",
|
|
9128
|
-
"path": "src/lib/tools/ai-data-table/ai-data-table-definition.ts",
|
|
9129
|
-
"declarations": [
|
|
9130
|
-
{
|
|
9131
|
-
"kind": "variable",
|
|
9132
|
-
"name": "displayDataTableTool",
|
|
9133
|
-
"type": {
|
|
9134
|
-
"text": "ToolDefinition"
|
|
9135
|
-
},
|
|
9136
|
-
"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: { type: ['string', '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' }) }"
|
|
9137
|
-
}
|
|
9138
|
-
],
|
|
9139
|
-
"exports": [
|
|
9140
|
-
{
|
|
9141
|
-
"kind": "js",
|
|
9142
|
-
"name": "displayDataTableTool",
|
|
9143
|
-
"declaration": {
|
|
9144
|
-
"name": "displayDataTableTool",
|
|
9145
|
-
"module": "src/lib/tools/ai-data-table/ai-data-table-definition.ts"
|
|
9146
|
-
}
|
|
9147
|
-
}
|
|
9148
|
-
]
|
|
9149
|
-
},
|
|
9150
|
-
{
|
|
9151
|
-
"kind": "javascript-module",
|
|
9152
|
-
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
9153
|
-
"declarations": [
|
|
9154
|
-
{
|
|
9155
|
-
"kind": "class",
|
|
9156
|
-
"description": "Data table component tool renderer for displaying tabular data with pagination and filtering.",
|
|
9157
|
-
"name": "DataTableToolElement",
|
|
9158
|
-
"members": [
|
|
9159
|
-
{
|
|
9160
|
-
"kind": "field",
|
|
9161
|
-
"name": "toolCall",
|
|
9162
|
-
"type": {
|
|
9163
|
-
"text": "ToolCall<TableData>"
|
|
9164
|
-
},
|
|
9165
|
-
"privacy": "public",
|
|
9166
|
-
"description": "Tool call data containing table configuration and data"
|
|
9167
|
-
}
|
|
9168
|
-
],
|
|
9169
|
-
"superclass": {
|
|
9170
|
-
"name": "LitElement",
|
|
9171
|
-
"package": "lit"
|
|
9172
|
-
},
|
|
9173
|
-
"tagName": "forge-ai-tool-data-table",
|
|
9174
|
-
"customElement": true
|
|
9175
|
-
}
|
|
9176
|
-
],
|
|
9177
|
-
"exports": [
|
|
9178
|
-
{
|
|
9179
|
-
"kind": "custom-element-definition",
|
|
9180
|
-
"name": "forge-ai-tool-data-table",
|
|
9726
|
+
"name": "forge-ai-tooltip",
|
|
9181
9727
|
"declaration": {
|
|
9182
|
-
"name": "
|
|
9183
|
-
"module": "src/lib/
|
|
9728
|
+
"name": "ForgeAiTooltipComponent",
|
|
9729
|
+
"module": "src/lib/core/tooltip/tooltip.ts"
|
|
9184
9730
|
}
|
|
9185
9731
|
}
|
|
9186
9732
|
]
|
|
@@ -9306,10 +9852,6 @@
|
|
|
9306
9852
|
"path": "src/lib/ai-actions-toolbar/ai-actions-toolbar.ts",
|
|
9307
9853
|
"lineNumber": 41
|
|
9308
9854
|
},
|
|
9309
|
-
"AiArtifactComponent": {
|
|
9310
|
-
"path": "src/lib/ai-artifact/ai-artifact.ts",
|
|
9311
|
-
"lineNumber": 23
|
|
9312
|
-
},
|
|
9313
9855
|
"AgentInfo": {
|
|
9314
9856
|
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
9315
9857
|
"lineNumber": 39
|
|
@@ -9318,6 +9860,14 @@
|
|
|
9318
9860
|
"path": "src/lib/ai-agent-info/ai-agent-info.ts",
|
|
9319
9861
|
"lineNumber": 29
|
|
9320
9862
|
},
|
|
9863
|
+
"AiArtifactComponent": {
|
|
9864
|
+
"path": "src/lib/ai-artifact/ai-artifact.ts",
|
|
9865
|
+
"lineNumber": 23
|
|
9866
|
+
},
|
|
9867
|
+
"AiAssistantResponseComponent": {
|
|
9868
|
+
"path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
|
|
9869
|
+
"lineNumber": 40
|
|
9870
|
+
},
|
|
9321
9871
|
"ForgeAiAttachmentRemoveEventData": {
|
|
9322
9872
|
"path": "src/lib/ai-attachment/ai-attachment.ts",
|
|
9323
9873
|
"lineNumber": 19
|
|
@@ -9330,10 +9880,6 @@
|
|
|
9330
9880
|
"path": "src/lib/ai-button/ai-button.ts",
|
|
9331
9881
|
"lineNumber": 22
|
|
9332
9882
|
},
|
|
9333
|
-
"AiChainOfThoughtComponent": {
|
|
9334
|
-
"path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
|
|
9335
|
-
"lineNumber": 17
|
|
9336
|
-
},
|
|
9337
9883
|
"MinimizeIconType": {
|
|
9338
9884
|
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
9339
9885
|
"lineNumber": 35
|
|
@@ -9346,21 +9892,29 @@
|
|
|
9346
9892
|
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
9347
9893
|
"lineNumber": 68
|
|
9348
9894
|
},
|
|
9895
|
+
"AiChainOfThoughtComponent": {
|
|
9896
|
+
"path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
|
|
9897
|
+
"lineNumber": 17
|
|
9898
|
+
},
|
|
9349
9899
|
"AiChatInterfaceComponent": {
|
|
9350
9900
|
"path": "src/lib/ai-chat-interface/ai-chat-interface.ts",
|
|
9351
9901
|
"lineNumber": 25
|
|
9352
9902
|
},
|
|
9903
|
+
"AiConfirmationPromptComponent": {
|
|
9904
|
+
"path": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts",
|
|
9905
|
+
"lineNumber": 27
|
|
9906
|
+
},
|
|
9353
9907
|
"AgUiAdapterConfig": {
|
|
9354
9908
|
"path": "src/lib/ai-chatbot/ag-ui-adapter.ts",
|
|
9355
|
-
"lineNumber":
|
|
9909
|
+
"lineNumber": 27
|
|
9356
9910
|
},
|
|
9357
9911
|
"ToolCallState": {
|
|
9358
9912
|
"path": "src/lib/ai-chatbot/ag-ui-adapter.ts",
|
|
9359
|
-
"lineNumber":
|
|
9913
|
+
"lineNumber": 34
|
|
9360
9914
|
},
|
|
9361
9915
|
"AgUiAdapter": {
|
|
9362
9916
|
"path": "src/lib/ai-chatbot/ag-ui-adapter.ts",
|
|
9363
|
-
"lineNumber":
|
|
9917
|
+
"lineNumber": 40
|
|
9364
9918
|
},
|
|
9365
9919
|
"MessageStartEvent": {
|
|
9366
9920
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
@@ -9404,16 +9958,52 @@
|
|
|
9404
9958
|
},
|
|
9405
9959
|
"FileRemoveEvent": {
|
|
9406
9960
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
9407
|
-
"lineNumber":
|
|
9961
|
+
"lineNumber": 194
|
|
9408
9962
|
},
|
|
9409
9963
|
"ErrorEvent": {
|
|
9410
9964
|
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
9411
9965
|
"lineNumber": 75
|
|
9412
9966
|
},
|
|
9413
|
-
"
|
|
9967
|
+
"CustomAgentEvent": {
|
|
9414
9968
|
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
9415
9969
|
"lineNumber": 79
|
|
9416
9970
|
},
|
|
9971
|
+
"RawAgentEvent": {
|
|
9972
|
+
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
9973
|
+
"lineNumber": 85
|
|
9974
|
+
},
|
|
9975
|
+
"RunStartedAgentEvent": {
|
|
9976
|
+
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
9977
|
+
"lineNumber": 90
|
|
9978
|
+
},
|
|
9979
|
+
"StepStartedAgentEvent": {
|
|
9980
|
+
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
9981
|
+
"lineNumber": 96
|
|
9982
|
+
},
|
|
9983
|
+
"StepFinishedAgentEvent": {
|
|
9984
|
+
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
9985
|
+
"lineNumber": 101
|
|
9986
|
+
},
|
|
9987
|
+
"StateSnapshotAgentEvent": {
|
|
9988
|
+
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
9989
|
+
"lineNumber": 106
|
|
9990
|
+
},
|
|
9991
|
+
"StateDeltaAgentEvent": {
|
|
9992
|
+
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
9993
|
+
"lineNumber": 111
|
|
9994
|
+
},
|
|
9995
|
+
"ActivitySnapshotAgentEvent": {
|
|
9996
|
+
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
9997
|
+
"lineNumber": 116
|
|
9998
|
+
},
|
|
9999
|
+
"ActivityDeltaAgentEvent": {
|
|
10000
|
+
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
10001
|
+
"lineNumber": 123
|
|
10002
|
+
},
|
|
10003
|
+
"AgentAdapter": {
|
|
10004
|
+
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
10005
|
+
"lineNumber": 129
|
|
10006
|
+
},
|
|
9417
10007
|
"AgentRunnerConfig": {
|
|
9418
10008
|
"path": "src/lib/ai-chatbot/agent-runner.ts",
|
|
9419
10009
|
"lineNumber": 6
|
|
@@ -9456,7 +10046,7 @@
|
|
|
9456
10046
|
},
|
|
9457
10047
|
"AiChatbotComponent": {
|
|
9458
10048
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
9459
|
-
"lineNumber":
|
|
10049
|
+
"lineNumber": 134
|
|
9460
10050
|
},
|
|
9461
10051
|
"CreateToolRendererElementConfig": {
|
|
9462
10052
|
"path": "src/lib/ai-chatbot/create-tool-renderer.ts",
|
|
@@ -9504,11 +10094,11 @@
|
|
|
9504
10094
|
},
|
|
9505
10095
|
"MessageStateControllerConfig": {
|
|
9506
10096
|
"path": "src/lib/ai-chatbot/message-state-controller.ts",
|
|
9507
|
-
"lineNumber":
|
|
10097
|
+
"lineNumber": 22
|
|
9508
10098
|
},
|
|
9509
10099
|
"MessageStateController": {
|
|
9510
10100
|
"path": "src/lib/ai-chatbot/message-state-controller.ts",
|
|
9511
|
-
"lineNumber":
|
|
10101
|
+
"lineNumber": 35
|
|
9512
10102
|
},
|
|
9513
10103
|
"HeadingLevel": {
|
|
9514
10104
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
@@ -9562,41 +10152,45 @@
|
|
|
9562
10152
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
9563
10153
|
"lineNumber": 135
|
|
9564
10154
|
},
|
|
9565
|
-
"
|
|
10155
|
+
"ResponseItem": {
|
|
9566
10156
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
9567
10157
|
"lineNumber": 147
|
|
9568
10158
|
},
|
|
10159
|
+
"AssistantResponse": {
|
|
10160
|
+
"path": "src/lib/ai-chatbot/types.ts",
|
|
10161
|
+
"lineNumber": 151
|
|
10162
|
+
},
|
|
10163
|
+
"FileAttachment": {
|
|
10164
|
+
"path": "src/lib/ai-chatbot/types.ts",
|
|
10165
|
+
"lineNumber": 159
|
|
10166
|
+
},
|
|
9569
10167
|
"UploadedFileMetadata": {
|
|
9570
10168
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
9571
|
-
"lineNumber":
|
|
10169
|
+
"lineNumber": 172
|
|
9572
10170
|
},
|
|
9573
10171
|
"FileUploadCallbacks": {
|
|
9574
10172
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
9575
|
-
"lineNumber":
|
|
10173
|
+
"lineNumber": 180
|
|
9576
10174
|
},
|
|
9577
10175
|
"FileUploadHandler": {
|
|
9578
10176
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
9579
|
-
"lineNumber":
|
|
10177
|
+
"lineNumber": 187
|
|
9580
10178
|
},
|
|
9581
10179
|
"FileRemoveCallbacks": {
|
|
9582
10180
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
9583
|
-
"lineNumber":
|
|
10181
|
+
"lineNumber": 189
|
|
9584
10182
|
},
|
|
9585
10183
|
"ForgeAiChatbotFileSelectEventData": {
|
|
9586
10184
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
9587
|
-
"lineNumber":
|
|
10185
|
+
"lineNumber": 198
|
|
9588
10186
|
},
|
|
9589
10187
|
"MessageItem": {
|
|
9590
10188
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
9591
|
-
"lineNumber":
|
|
10189
|
+
"lineNumber": 211
|
|
9592
10190
|
},
|
|
9593
10191
|
"ThreadState": {
|
|
9594
10192
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
9595
|
-
"lineNumber":
|
|
9596
|
-
},
|
|
9597
|
-
"AiConfirmationPromptComponent": {
|
|
9598
|
-
"path": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts",
|
|
9599
|
-
"lineNumber": 27
|
|
10193
|
+
"lineNumber": 216
|
|
9600
10194
|
},
|
|
9601
10195
|
"AiDialogComponent": {
|
|
9602
10196
|
"path": "src/lib/ai-dialog/ai-dialog.ts",
|
|
@@ -9714,29 +10308,25 @@
|
|
|
9714
10308
|
"path": "src/lib/ai-icon/ai-icon.ts",
|
|
9715
10309
|
"lineNumber": 23
|
|
9716
10310
|
},
|
|
10311
|
+
"AiIconButtonComponent": {
|
|
10312
|
+
"path": "src/lib/ai-icon-button/ai-icon-button.ts",
|
|
10313
|
+
"lineNumber": 19
|
|
10314
|
+
},
|
|
9717
10315
|
"ForgeAiMessageThreadCopyEventData": {
|
|
9718
10316
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
9719
|
-
"lineNumber":
|
|
10317
|
+
"lineNumber": 32
|
|
9720
10318
|
},
|
|
9721
10319
|
"ForgeAiMessageThreadRefreshEventData": {
|
|
9722
10320
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
9723
|
-
"lineNumber":
|
|
10321
|
+
"lineNumber": 36
|
|
9724
10322
|
},
|
|
9725
10323
|
"ForgeAiMessageThreadThumbsEventData": {
|
|
9726
10324
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
9727
|
-
"lineNumber":
|
|
10325
|
+
"lineNumber": 40
|
|
9728
10326
|
},
|
|
9729
10327
|
"AiMessageThreadComponent": {
|
|
9730
10328
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
9731
|
-
"lineNumber":
|
|
9732
|
-
},
|
|
9733
|
-
"AiIconButtonComponent": {
|
|
9734
|
-
"path": "src/lib/ai-icon-button/ai-icon-button.ts",
|
|
9735
|
-
"lineNumber": 19
|
|
9736
|
-
},
|
|
9737
|
-
"AiModalComponent": {
|
|
9738
|
-
"path": "src/lib/ai-modal/ai-modal.ts",
|
|
9739
|
-
"lineNumber": 36
|
|
10329
|
+
"lineNumber": 65
|
|
9740
10330
|
},
|
|
9741
10331
|
"ForgeAiPromptSendEventData": {
|
|
9742
10332
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
@@ -9758,26 +10348,30 @@
|
|
|
9758
10348
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
9759
10349
|
"lineNumber": 60
|
|
9760
10350
|
},
|
|
9761
|
-
"
|
|
9762
|
-
"path": "src/lib/ai-
|
|
9763
|
-
"lineNumber":
|
|
10351
|
+
"AiModalComponent": {
|
|
10352
|
+
"path": "src/lib/ai-modal/ai-modal.ts",
|
|
10353
|
+
"lineNumber": 36
|
|
9764
10354
|
},
|
|
9765
10355
|
"AiReasoningComponent": {
|
|
9766
10356
|
"path": "src/lib/ai-reasoning/ai-reasoning.ts",
|
|
9767
10357
|
"lineNumber": 17
|
|
9768
10358
|
},
|
|
10359
|
+
"AiReasoningHeaderComponent": {
|
|
10360
|
+
"path": "src/lib/ai-reasoning-header/ai-reasoning-header.ts",
|
|
10361
|
+
"lineNumber": 22
|
|
10362
|
+
},
|
|
9769
10363
|
"AiResponseMessageComponent": {
|
|
9770
10364
|
"path": "src/lib/ai-response-message/ai-response-message.ts",
|
|
9771
|
-
"lineNumber":
|
|
9772
|
-
},
|
|
9773
|
-
"AiSidebarChatComponent": {
|
|
9774
|
-
"path": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts",
|
|
9775
|
-
"lineNumber": 42
|
|
10365
|
+
"lineNumber": 19
|
|
9776
10366
|
},
|
|
9777
10367
|
"AiSidebarComponent": {
|
|
9778
10368
|
"path": "src/lib/ai-sidebar/ai-sidebar.ts",
|
|
9779
10369
|
"lineNumber": 28
|
|
9780
10370
|
},
|
|
10371
|
+
"AiSidebarChatComponent": {
|
|
10372
|
+
"path": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts",
|
|
10373
|
+
"lineNumber": 42
|
|
10374
|
+
},
|
|
9781
10375
|
"AiSlashCommandMenuComponent": {
|
|
9782
10376
|
"path": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts",
|
|
9783
10377
|
"lineNumber": 32
|
|
@@ -9806,10 +10400,6 @@
|
|
|
9806
10400
|
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
9807
10401
|
"lineNumber": 44
|
|
9808
10402
|
},
|
|
9809
|
-
"AiThinkingIndicatorComponent": {
|
|
9810
|
-
"path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
|
|
9811
|
-
"lineNumber": 38
|
|
9812
|
-
},
|
|
9813
10403
|
"Thread": {
|
|
9814
10404
|
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
9815
10405
|
"lineNumber": 19
|
|
@@ -9822,6 +10412,10 @@
|
|
|
9822
10412
|
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
9823
10413
|
"lineNumber": 46
|
|
9824
10414
|
},
|
|
10415
|
+
"AiThinkingIndicatorComponent": {
|
|
10416
|
+
"path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
|
|
10417
|
+
"lineNumber": 38
|
|
10418
|
+
},
|
|
9825
10419
|
"AiUserMessageComponent": {
|
|
9826
10420
|
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
9827
10421
|
"lineNumber": 17
|
|
@@ -9890,6 +10484,18 @@
|
|
|
9890
10484
|
"path": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts",
|
|
9891
10485
|
"lineNumber": 17
|
|
9892
10486
|
},
|
|
10487
|
+
"OverlayPlacement": {
|
|
10488
|
+
"path": "src/lib/core/overlay/overlay.ts",
|
|
10489
|
+
"lineNumber": 31
|
|
10490
|
+
},
|
|
10491
|
+
"OverlayOffset": {
|
|
10492
|
+
"path": "src/lib/core/overlay/overlay.ts",
|
|
10493
|
+
"lineNumber": 33
|
|
10494
|
+
},
|
|
10495
|
+
"ForgeAiOverlayComponent": {
|
|
10496
|
+
"path": "src/lib/core/overlay/overlay.ts",
|
|
10497
|
+
"lineNumber": 40
|
|
10498
|
+
},
|
|
9893
10499
|
"PopoverToggleEventData": {
|
|
9894
10500
|
"path": "src/lib/core/popover/popover.ts",
|
|
9895
10501
|
"lineNumber": 18
|
|
@@ -9906,6 +10512,14 @@
|
|
|
9906
10512
|
"path": "src/lib/core/popover/popover.ts",
|
|
9907
10513
|
"lineNumber": 37
|
|
9908
10514
|
},
|
|
10515
|
+
"TableData": {
|
|
10516
|
+
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
10517
|
+
"lineNumber": 16
|
|
10518
|
+
},
|
|
10519
|
+
"DataTableToolElement": {
|
|
10520
|
+
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
10521
|
+
"lineNumber": 32
|
|
10522
|
+
},
|
|
9909
10523
|
"TooltipToggleEventDetail": {
|
|
9910
10524
|
"path": "src/lib/core/tooltip/tooltip.ts",
|
|
9911
10525
|
"lineNumber": 20
|
|
@@ -9922,26 +10536,6 @@
|
|
|
9922
10536
|
"path": "src/lib/core/tooltip/tooltip.ts",
|
|
9923
10537
|
"lineNumber": 44
|
|
9924
10538
|
},
|
|
9925
|
-
"OverlayPlacement": {
|
|
9926
|
-
"path": "src/lib/core/overlay/overlay.ts",
|
|
9927
|
-
"lineNumber": 31
|
|
9928
|
-
},
|
|
9929
|
-
"OverlayOffset": {
|
|
9930
|
-
"path": "src/lib/core/overlay/overlay.ts",
|
|
9931
|
-
"lineNumber": 33
|
|
9932
|
-
},
|
|
9933
|
-
"ForgeAiOverlayComponent": {
|
|
9934
|
-
"path": "src/lib/core/overlay/overlay.ts",
|
|
9935
|
-
"lineNumber": 40
|
|
9936
|
-
},
|
|
9937
|
-
"TableData": {
|
|
9938
|
-
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
9939
|
-
"lineNumber": 16
|
|
9940
|
-
},
|
|
9941
|
-
"DataTableToolElement": {
|
|
9942
|
-
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
9943
|
-
"lineNumber": 32
|
|
9944
|
-
},
|
|
9945
10539
|
"AiPaginator": {
|
|
9946
10540
|
"path": "src/lib/tools/ai-paginator/ai-paginator.ts",
|
|
9947
10541
|
"lineNumber": 11
|