@tylertech/forge-ai 0.6.1 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/custom-elements.json +1744 -1122
- 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.d.ts +2 -0
- package/dist/ai-chatbot/ag-ui-adapter.mjs +55 -4
- 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 +1 -1
package/custom-elements.json
CHANGED
|
@@ -166,133 +166,133 @@
|
|
|
166
166
|
},
|
|
167
167
|
{
|
|
168
168
|
"kind": "javascript-module",
|
|
169
|
-
"path": "src/lib/ai-
|
|
169
|
+
"path": "src/lib/ai-agent-info/ai-agent-info.ts",
|
|
170
170
|
"declarations": [
|
|
171
171
|
{
|
|
172
172
|
"kind": "variable",
|
|
173
|
-
"name": "
|
|
173
|
+
"name": "AiAgentInfoComponentTagName",
|
|
174
174
|
"type": {
|
|
175
175
|
"text": "keyof HTMLElementTagNameMap"
|
|
176
176
|
},
|
|
177
|
-
"default": "'forge-ai-
|
|
177
|
+
"default": "'forge-ai-agent-info'"
|
|
178
178
|
},
|
|
179
179
|
{
|
|
180
180
|
"kind": "class",
|
|
181
181
|
"description": "",
|
|
182
|
-
"name": "
|
|
183
|
-
"
|
|
184
|
-
{
|
|
185
|
-
"description": "Surface color override for the toolbar (defaults to transparent)",
|
|
186
|
-
"name": "--forge-theme-surface"
|
|
187
|
-
}
|
|
188
|
-
],
|
|
189
|
-
"slots": [
|
|
190
|
-
{
|
|
191
|
-
"description": "Content for the start (left) side of the toolbar, typically used for titles or headings",
|
|
192
|
-
"name": "start"
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
"description": "Action buttons for the end (right) side of the toolbar",
|
|
196
|
-
"name": "actions"
|
|
197
|
-
},
|
|
182
|
+
"name": "AiAgentInfoComponent",
|
|
183
|
+
"members": [
|
|
198
184
|
{
|
|
199
|
-
"
|
|
200
|
-
"name": ""
|
|
185
|
+
"kind": "field",
|
|
186
|
+
"name": "agentInfo",
|
|
187
|
+
"type": {
|
|
188
|
+
"text": "AgentInfo | undefined"
|
|
189
|
+
},
|
|
190
|
+
"privacy": "public",
|
|
191
|
+
"description": "Agent information to display"
|
|
201
192
|
}
|
|
202
193
|
],
|
|
203
|
-
"members": [],
|
|
204
194
|
"superclass": {
|
|
205
195
|
"name": "LitElement",
|
|
206
196
|
"package": "lit"
|
|
207
197
|
},
|
|
208
|
-
"tagName": "forge-ai-
|
|
209
|
-
"customElement": true
|
|
198
|
+
"tagName": "forge-ai-agent-info",
|
|
199
|
+
"customElement": true,
|
|
200
|
+
"summary": "Displays agent information in a grid layout"
|
|
210
201
|
}
|
|
211
202
|
],
|
|
212
203
|
"exports": [
|
|
213
204
|
{
|
|
214
205
|
"kind": "js",
|
|
215
|
-
"name": "
|
|
206
|
+
"name": "AiAgentInfoComponentTagName",
|
|
216
207
|
"declaration": {
|
|
217
|
-
"name": "
|
|
218
|
-
"module": "src/lib/ai-
|
|
208
|
+
"name": "AiAgentInfoComponentTagName",
|
|
209
|
+
"module": "src/lib/ai-agent-info/ai-agent-info.ts"
|
|
219
210
|
}
|
|
220
211
|
},
|
|
221
212
|
{
|
|
222
213
|
"kind": "js",
|
|
223
|
-
"name": "
|
|
214
|
+
"name": "AiAgentInfoComponent",
|
|
224
215
|
"declaration": {
|
|
225
|
-
"name": "
|
|
226
|
-
"module": "src/lib/ai-
|
|
216
|
+
"name": "AiAgentInfoComponent",
|
|
217
|
+
"module": "src/lib/ai-agent-info/ai-agent-info.ts"
|
|
227
218
|
}
|
|
228
219
|
},
|
|
229
220
|
{
|
|
230
221
|
"kind": "custom-element-definition",
|
|
231
222
|
"declaration": {
|
|
232
|
-
"name": "
|
|
233
|
-
"module": "src/lib/ai-
|
|
223
|
+
"name": "AiAgentInfoComponent",
|
|
224
|
+
"module": "src/lib/ai-agent-info/ai-agent-info.ts"
|
|
234
225
|
}
|
|
235
226
|
}
|
|
236
227
|
]
|
|
237
228
|
},
|
|
238
229
|
{
|
|
239
230
|
"kind": "javascript-module",
|
|
240
|
-
"path": "src/lib/ai-
|
|
231
|
+
"path": "src/lib/ai-artifact/ai-artifact.ts",
|
|
241
232
|
"declarations": [
|
|
242
233
|
{
|
|
243
234
|
"kind": "variable",
|
|
244
|
-
"name": "
|
|
235
|
+
"name": "AiArtifactComponentTagName",
|
|
245
236
|
"type": {
|
|
246
237
|
"text": "keyof HTMLElementTagNameMap"
|
|
247
238
|
},
|
|
248
|
-
"default": "'forge-ai-
|
|
239
|
+
"default": "'forge-ai-artifact'"
|
|
249
240
|
},
|
|
250
241
|
{
|
|
251
242
|
"kind": "class",
|
|
252
243
|
"description": "",
|
|
253
|
-
"name": "
|
|
254
|
-
"
|
|
244
|
+
"name": "AiArtifactComponent",
|
|
245
|
+
"cssProperties": [
|
|
255
246
|
{
|
|
256
|
-
"
|
|
257
|
-
"name": "
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
"description": "
|
|
247
|
+
"description": "Surface color override for the toolbar (defaults to transparent)",
|
|
248
|
+
"name": "--forge-theme-surface"
|
|
249
|
+
}
|
|
250
|
+
],
|
|
251
|
+
"slots": [
|
|
252
|
+
{
|
|
253
|
+
"description": "Content for the start (left) side of the toolbar, typically used for titles or headings",
|
|
254
|
+
"name": "start"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"description": "Action buttons for the end (right) side of the toolbar",
|
|
258
|
+
"name": "actions"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"description": "Main content area below the toolbar",
|
|
262
|
+
"name": ""
|
|
263
263
|
}
|
|
264
264
|
],
|
|
265
|
+
"members": [],
|
|
265
266
|
"superclass": {
|
|
266
267
|
"name": "LitElement",
|
|
267
268
|
"package": "lit"
|
|
268
269
|
},
|
|
269
|
-
"tagName": "forge-ai-
|
|
270
|
-
"customElement": true
|
|
271
|
-
"summary": "Displays agent information in a grid layout"
|
|
270
|
+
"tagName": "forge-ai-artifact",
|
|
271
|
+
"customElement": true
|
|
272
272
|
}
|
|
273
273
|
],
|
|
274
274
|
"exports": [
|
|
275
275
|
{
|
|
276
276
|
"kind": "js",
|
|
277
|
-
"name": "
|
|
277
|
+
"name": "AiArtifactComponentTagName",
|
|
278
278
|
"declaration": {
|
|
279
|
-
"name": "
|
|
280
|
-
"module": "src/lib/ai-
|
|
279
|
+
"name": "AiArtifactComponentTagName",
|
|
280
|
+
"module": "src/lib/ai-artifact/ai-artifact.ts"
|
|
281
281
|
}
|
|
282
282
|
},
|
|
283
283
|
{
|
|
284
284
|
"kind": "js",
|
|
285
|
-
"name": "
|
|
285
|
+
"name": "AiArtifactComponent",
|
|
286
286
|
"declaration": {
|
|
287
|
-
"name": "
|
|
288
|
-
"module": "src/lib/ai-
|
|
287
|
+
"name": "AiArtifactComponent",
|
|
288
|
+
"module": "src/lib/ai-artifact/ai-artifact.ts"
|
|
289
289
|
}
|
|
290
290
|
},
|
|
291
291
|
{
|
|
292
292
|
"kind": "custom-element-definition",
|
|
293
293
|
"declaration": {
|
|
294
|
-
"name": "
|
|
295
|
-
"module": "src/lib/ai-
|
|
294
|
+
"name": "AiArtifactComponent",
|
|
295
|
+
"module": "src/lib/ai-artifact/ai-artifact.ts"
|
|
296
296
|
}
|
|
297
297
|
}
|
|
298
298
|
]
|
|
@@ -469,81 +469,137 @@
|
|
|
469
469
|
},
|
|
470
470
|
{
|
|
471
471
|
"kind": "javascript-module",
|
|
472
|
-
"path": "src/lib/ai-
|
|
472
|
+
"path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
|
|
473
473
|
"declarations": [
|
|
474
474
|
{
|
|
475
475
|
"kind": "variable",
|
|
476
|
-
"name": "
|
|
476
|
+
"name": "AiAssistantResponseComponentTagName",
|
|
477
477
|
"type": {
|
|
478
478
|
"text": "keyof HTMLElementTagNameMap"
|
|
479
479
|
},
|
|
480
|
-
"default": "'forge-ai-
|
|
480
|
+
"default": "'forge-ai-assistant-response'"
|
|
481
481
|
},
|
|
482
482
|
{
|
|
483
483
|
"kind": "class",
|
|
484
484
|
"description": "",
|
|
485
|
-
"name": "
|
|
486
|
-
"slots": [
|
|
487
|
-
{
|
|
488
|
-
"description": "Default slot for button content",
|
|
489
|
-
"name": ""
|
|
490
|
-
}
|
|
491
|
-
],
|
|
485
|
+
"name": "AiAssistantResponseComponent",
|
|
492
486
|
"members": [
|
|
493
487
|
{
|
|
494
488
|
"kind": "field",
|
|
495
|
-
"name": "
|
|
489
|
+
"name": "response",
|
|
490
|
+
"type": {
|
|
491
|
+
"text": "AssistantResponse"
|
|
492
|
+
},
|
|
493
|
+
"privacy": "public"
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"kind": "field",
|
|
497
|
+
"name": "tools",
|
|
498
|
+
"type": {
|
|
499
|
+
"text": "Map<string, ToolDefinition> | undefined"
|
|
500
|
+
},
|
|
501
|
+
"privacy": "public"
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"kind": "field",
|
|
505
|
+
"name": "enableReactions",
|
|
496
506
|
"type": {
|
|
497
507
|
"text": "boolean"
|
|
498
508
|
},
|
|
499
509
|
"privacy": "public",
|
|
500
510
|
"default": "false",
|
|
501
|
-
"
|
|
502
|
-
|
|
503
|
-
|
|
511
|
+
"attribute": "enable-reactions"
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
"kind": "field",
|
|
515
|
+
"name": "debugMode",
|
|
516
|
+
"type": {
|
|
517
|
+
"text": "boolean"
|
|
518
|
+
},
|
|
519
|
+
"privacy": "public",
|
|
520
|
+
"default": "false",
|
|
521
|
+
"attribute": "debug-mode"
|
|
522
|
+
}
|
|
523
|
+
],
|
|
524
|
+
"events": [
|
|
525
|
+
{
|
|
526
|
+
"type": {
|
|
527
|
+
"text": "CustomEvent<{ responseId: string }>"
|
|
528
|
+
},
|
|
529
|
+
"description": "Fired when copy action is clicked",
|
|
530
|
+
"name": "forge-ai-assistant-response-copy"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"type": {
|
|
534
|
+
"text": "CustomEvent<{ responseId: string }>"
|
|
535
|
+
},
|
|
536
|
+
"description": "Fired when refresh action is clicked",
|
|
537
|
+
"name": "forge-ai-assistant-response-refresh"
|
|
538
|
+
},
|
|
539
|
+
{
|
|
540
|
+
"type": {
|
|
541
|
+
"text": "CustomEvent<{ responseId: string }>"
|
|
542
|
+
},
|
|
543
|
+
"description": "Fired when thumbs up is clicked",
|
|
544
|
+
"name": "forge-ai-assistant-response-thumbs-up"
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"type": {
|
|
548
|
+
"text": "CustomEvent<{ responseId: string }>"
|
|
549
|
+
},
|
|
550
|
+
"description": "Fired when thumbs down is clicked",
|
|
551
|
+
"name": "forge-ai-assistant-response-thumbs-down"
|
|
504
552
|
}
|
|
505
553
|
],
|
|
506
554
|
"attributes": [
|
|
507
555
|
{
|
|
508
|
-
"name": "
|
|
556
|
+
"name": "enable-reactions",
|
|
509
557
|
"type": {
|
|
510
558
|
"text": "boolean"
|
|
511
559
|
},
|
|
512
560
|
"default": "false",
|
|
513
|
-
"
|
|
514
|
-
|
|
561
|
+
"fieldName": "enableReactions"
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"name": "debug-mode",
|
|
565
|
+
"type": {
|
|
566
|
+
"text": "boolean"
|
|
567
|
+
},
|
|
568
|
+
"default": "false",
|
|
569
|
+
"fieldName": "debugMode"
|
|
515
570
|
}
|
|
516
571
|
],
|
|
517
572
|
"superclass": {
|
|
518
573
|
"name": "LitElement",
|
|
519
574
|
"package": "lit"
|
|
520
575
|
},
|
|
521
|
-
"tagName": "forge-ai-
|
|
522
|
-
"customElement": true
|
|
576
|
+
"tagName": "forge-ai-assistant-response",
|
|
577
|
+
"customElement": true,
|
|
578
|
+
"summary": "Renders a complete assistant response with interleaved text chunks and tool calls."
|
|
523
579
|
}
|
|
524
580
|
],
|
|
525
581
|
"exports": [
|
|
526
582
|
{
|
|
527
583
|
"kind": "js",
|
|
528
|
-
"name": "
|
|
584
|
+
"name": "AiAssistantResponseComponentTagName",
|
|
529
585
|
"declaration": {
|
|
530
|
-
"name": "
|
|
531
|
-
"module": "src/lib/ai-
|
|
586
|
+
"name": "AiAssistantResponseComponentTagName",
|
|
587
|
+
"module": "src/lib/ai-assistant-response/ai-assistant-response.ts"
|
|
532
588
|
}
|
|
533
589
|
},
|
|
534
590
|
{
|
|
535
591
|
"kind": "js",
|
|
536
|
-
"name": "
|
|
592
|
+
"name": "AiAssistantResponseComponent",
|
|
537
593
|
"declaration": {
|
|
538
|
-
"name": "
|
|
539
|
-
"module": "src/lib/ai-
|
|
594
|
+
"name": "AiAssistantResponseComponent",
|
|
595
|
+
"module": "src/lib/ai-assistant-response/ai-assistant-response.ts"
|
|
540
596
|
}
|
|
541
597
|
},
|
|
542
598
|
{
|
|
543
599
|
"kind": "custom-element-definition",
|
|
544
600
|
"declaration": {
|
|
545
|
-
"name": "
|
|
546
|
-
"module": "src/lib/ai-
|
|
601
|
+
"name": "AiAssistantResponseComponent",
|
|
602
|
+
"module": "src/lib/ai-assistant-response/ai-assistant-response.ts"
|
|
547
603
|
}
|
|
548
604
|
}
|
|
549
605
|
]
|
|
@@ -625,83 +681,164 @@
|
|
|
625
681
|
},
|
|
626
682
|
{
|
|
627
683
|
"kind": "javascript-module",
|
|
628
|
-
"path": "src/lib/ai-
|
|
684
|
+
"path": "src/lib/ai-button/ai-button.ts",
|
|
629
685
|
"declarations": [
|
|
630
686
|
{
|
|
631
687
|
"kind": "variable",
|
|
632
|
-
"name": "
|
|
688
|
+
"name": "AiButtonComponentTagName",
|
|
633
689
|
"type": {
|
|
634
690
|
"text": "keyof HTMLElementTagNameMap"
|
|
635
691
|
},
|
|
636
|
-
"default": "'forge-ai-
|
|
692
|
+
"default": "'forge-ai-button'"
|
|
637
693
|
},
|
|
638
694
|
{
|
|
639
695
|
"kind": "class",
|
|
640
696
|
"description": "",
|
|
641
|
-
"name": "
|
|
697
|
+
"name": "AiButtonComponent",
|
|
642
698
|
"slots": [
|
|
643
699
|
{
|
|
644
|
-
"description": "
|
|
645
|
-
"name": "
|
|
700
|
+
"description": "Default slot for button content",
|
|
701
|
+
"name": ""
|
|
646
702
|
}
|
|
647
703
|
],
|
|
648
704
|
"members": [
|
|
649
705
|
{
|
|
650
706
|
"kind": "field",
|
|
651
|
-
"name": "
|
|
652
|
-
"type": {
|
|
653
|
-
"text": "boolean"
|
|
654
|
-
},
|
|
655
|
-
"privacy": "public",
|
|
656
|
-
"default": "false",
|
|
657
|
-
"description": "Controls whether the expand button is visible",
|
|
658
|
-
"attribute": "show-expand-button"
|
|
659
|
-
},
|
|
660
|
-
{
|
|
661
|
-
"kind": "field",
|
|
662
|
-
"name": "showMinimizeButton",
|
|
707
|
+
"name": "disabled",
|
|
663
708
|
"type": {
|
|
664
709
|
"text": "boolean"
|
|
665
710
|
},
|
|
666
711
|
"privacy": "public",
|
|
667
712
|
"default": "false",
|
|
668
|
-
"description": "
|
|
669
|
-
"attribute": "
|
|
670
|
-
|
|
713
|
+
"description": "Whether the button is disabled",
|
|
714
|
+
"attribute": "disabled",
|
|
715
|
+
"reflects": true
|
|
716
|
+
}
|
|
717
|
+
],
|
|
718
|
+
"attributes": [
|
|
671
719
|
{
|
|
672
|
-
"
|
|
673
|
-
"name": "expanded",
|
|
720
|
+
"name": "disabled",
|
|
674
721
|
"type": {
|
|
675
722
|
"text": "boolean"
|
|
676
723
|
},
|
|
677
|
-
"privacy": "public",
|
|
678
724
|
"default": "false",
|
|
679
|
-
"description": "
|
|
680
|
-
"
|
|
681
|
-
}
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
725
|
+
"description": "Whether the button is disabled",
|
|
726
|
+
"fieldName": "disabled"
|
|
727
|
+
}
|
|
728
|
+
],
|
|
729
|
+
"superclass": {
|
|
730
|
+
"name": "LitElement",
|
|
731
|
+
"package": "lit"
|
|
732
|
+
},
|
|
733
|
+
"tagName": "forge-ai-button",
|
|
734
|
+
"customElement": true
|
|
735
|
+
}
|
|
736
|
+
],
|
|
737
|
+
"exports": [
|
|
738
|
+
{
|
|
739
|
+
"kind": "js",
|
|
740
|
+
"name": "AiButtonComponentTagName",
|
|
741
|
+
"declaration": {
|
|
742
|
+
"name": "AiButtonComponentTagName",
|
|
743
|
+
"module": "src/lib/ai-button/ai-button.ts"
|
|
744
|
+
}
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
"kind": "js",
|
|
748
|
+
"name": "AiButtonComponent",
|
|
749
|
+
"declaration": {
|
|
750
|
+
"name": "AiButtonComponent",
|
|
751
|
+
"module": "src/lib/ai-button/ai-button.ts"
|
|
752
|
+
}
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
"kind": "custom-element-definition",
|
|
756
|
+
"declaration": {
|
|
757
|
+
"name": "AiButtonComponent",
|
|
758
|
+
"module": "src/lib/ai-button/ai-button.ts"
|
|
759
|
+
}
|
|
760
|
+
}
|
|
761
|
+
]
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
"kind": "javascript-module",
|
|
765
|
+
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
766
|
+
"declarations": [
|
|
767
|
+
{
|
|
768
|
+
"kind": "variable",
|
|
769
|
+
"name": "AiChatHeaderComponentTagName",
|
|
770
|
+
"type": {
|
|
771
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
772
|
+
},
|
|
773
|
+
"default": "'forge-ai-chat-header'"
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
"kind": "class",
|
|
777
|
+
"description": "",
|
|
778
|
+
"name": "AiChatHeaderComponent",
|
|
779
|
+
"slots": [
|
|
780
|
+
{
|
|
781
|
+
"description": "Slot for custom icon (default: forge-ai-icon)",
|
|
782
|
+
"name": "icon"
|
|
783
|
+
}
|
|
784
|
+
],
|
|
785
|
+
"members": [
|
|
786
|
+
{
|
|
787
|
+
"kind": "field",
|
|
788
|
+
"name": "showExpandButton",
|
|
789
|
+
"type": {
|
|
790
|
+
"text": "boolean"
|
|
791
|
+
},
|
|
792
|
+
"privacy": "public",
|
|
793
|
+
"default": "false",
|
|
794
|
+
"description": "Controls whether the expand button is visible",
|
|
795
|
+
"attribute": "show-expand-button"
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
"kind": "field",
|
|
799
|
+
"name": "showMinimizeButton",
|
|
800
|
+
"type": {
|
|
801
|
+
"text": "boolean"
|
|
802
|
+
},
|
|
803
|
+
"privacy": "public",
|
|
804
|
+
"default": "false",
|
|
805
|
+
"description": "Controls whether the minimize button is visible",
|
|
806
|
+
"attribute": "show-minimize-button"
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
"kind": "field",
|
|
810
|
+
"name": "expanded",
|
|
811
|
+
"type": {
|
|
812
|
+
"text": "boolean"
|
|
813
|
+
},
|
|
814
|
+
"privacy": "public",
|
|
815
|
+
"default": "false",
|
|
816
|
+
"description": "Indicates the current expanded state for displaying the appropriate expand/collapse icon",
|
|
817
|
+
"attribute": "expanded"
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
"kind": "field",
|
|
821
|
+
"name": "minimizeIcon",
|
|
822
|
+
"type": {
|
|
823
|
+
"text": "MinimizeIconType"
|
|
824
|
+
},
|
|
825
|
+
"privacy": "public",
|
|
826
|
+
"default": "'default'",
|
|
827
|
+
"description": "Controls which minimize icon to display",
|
|
828
|
+
"attribute": "minimize-icon"
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
"kind": "field",
|
|
832
|
+
"name": "agentInfo",
|
|
833
|
+
"type": {
|
|
834
|
+
"text": "AgentInfo | undefined"
|
|
835
|
+
},
|
|
836
|
+
"privacy": "public",
|
|
837
|
+
"description": "Agent information to display in the info dialog"
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"kind": "field",
|
|
841
|
+
"name": "options",
|
|
705
842
|
"type": {
|
|
706
843
|
"text": "OptionState"
|
|
707
844
|
},
|
|
@@ -1013,6 +1150,34 @@
|
|
|
1013
1150
|
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1014
1151
|
}
|
|
1015
1152
|
},
|
|
1153
|
+
{
|
|
1154
|
+
"kind": "method",
|
|
1155
|
+
"name": "setContext",
|
|
1156
|
+
"privacy": "public",
|
|
1157
|
+
"return": {
|
|
1158
|
+
"type": {
|
|
1159
|
+
"text": "void"
|
|
1160
|
+
}
|
|
1161
|
+
},
|
|
1162
|
+
"parameters": [
|
|
1163
|
+
{
|
|
1164
|
+
"name": "context",
|
|
1165
|
+
"type": {
|
|
1166
|
+
"text": "Record<string, unknown>"
|
|
1167
|
+
}
|
|
1168
|
+
}
|
|
1169
|
+
]
|
|
1170
|
+
},
|
|
1171
|
+
{
|
|
1172
|
+
"kind": "method",
|
|
1173
|
+
"name": "getContext",
|
|
1174
|
+
"privacy": "public",
|
|
1175
|
+
"return": {
|
|
1176
|
+
"type": {
|
|
1177
|
+
"text": "Record<string, unknown>"
|
|
1178
|
+
}
|
|
1179
|
+
}
|
|
1180
|
+
},
|
|
1016
1181
|
{
|
|
1017
1182
|
"kind": "method",
|
|
1018
1183
|
"name": "create",
|
|
@@ -1566,24 +1731,18 @@
|
|
|
1566
1731
|
},
|
|
1567
1732
|
{
|
|
1568
1733
|
"kind": "method",
|
|
1569
|
-
"name": "
|
|
1734
|
+
"name": "onCustomEvent",
|
|
1570
1735
|
"privacy": "public",
|
|
1571
1736
|
"return": {
|
|
1572
1737
|
"type": {
|
|
1573
|
-
"text": "
|
|
1738
|
+
"text": "Subscription"
|
|
1574
1739
|
}
|
|
1575
1740
|
},
|
|
1576
1741
|
"parameters": [
|
|
1577
1742
|
{
|
|
1578
|
-
"name": "
|
|
1579
|
-
"type": {
|
|
1580
|
-
"text": "File"
|
|
1581
|
-
}
|
|
1582
|
-
},
|
|
1583
|
-
{
|
|
1584
|
-
"name": "callbacks",
|
|
1743
|
+
"name": "callback",
|
|
1585
1744
|
"type": {
|
|
1586
|
-
"text": "
|
|
1745
|
+
"text": "(event: CustomAgentEvent) => void"
|
|
1587
1746
|
}
|
|
1588
1747
|
}
|
|
1589
1748
|
],
|
|
@@ -1594,24 +1753,40 @@
|
|
|
1594
1753
|
},
|
|
1595
1754
|
{
|
|
1596
1755
|
"kind": "method",
|
|
1597
|
-
"name": "
|
|
1756
|
+
"name": "onRawEvent",
|
|
1598
1757
|
"privacy": "public",
|
|
1599
1758
|
"return": {
|
|
1600
1759
|
"type": {
|
|
1601
|
-
"text": "
|
|
1760
|
+
"text": "Subscription"
|
|
1602
1761
|
}
|
|
1603
1762
|
},
|
|
1604
1763
|
"parameters": [
|
|
1605
1764
|
{
|
|
1606
|
-
"name": "
|
|
1765
|
+
"name": "callback",
|
|
1607
1766
|
"type": {
|
|
1608
|
-
"text": "
|
|
1767
|
+
"text": "(event: RawAgentEvent) => void"
|
|
1609
1768
|
}
|
|
1610
|
-
}
|
|
1769
|
+
}
|
|
1770
|
+
],
|
|
1771
|
+
"inheritedFrom": {
|
|
1772
|
+
"name": "AgentAdapter",
|
|
1773
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1774
|
+
}
|
|
1775
|
+
},
|
|
1776
|
+
{
|
|
1777
|
+
"kind": "method",
|
|
1778
|
+
"name": "onRunStartedEvent",
|
|
1779
|
+
"privacy": "public",
|
|
1780
|
+
"return": {
|
|
1781
|
+
"type": {
|
|
1782
|
+
"text": "Subscription"
|
|
1783
|
+
}
|
|
1784
|
+
},
|
|
1785
|
+
"parameters": [
|
|
1611
1786
|
{
|
|
1612
|
-
"name": "
|
|
1787
|
+
"name": "callback",
|
|
1613
1788
|
"type": {
|
|
1614
|
-
"text": "
|
|
1789
|
+
"text": "(event: RunStartedAgentEvent) => void"
|
|
1615
1790
|
}
|
|
1616
1791
|
}
|
|
1617
1792
|
],
|
|
@@ -1619,88 +1794,276 @@
|
|
|
1619
1794
|
"name": "AgentAdapter",
|
|
1620
1795
|
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1621
1796
|
}
|
|
1622
|
-
}
|
|
1623
|
-
],
|
|
1624
|
-
"superclass": {
|
|
1625
|
-
"name": "AgentAdapter",
|
|
1626
|
-
"module": "/src/lib/ai-chatbot/agent-adapter.js"
|
|
1627
|
-
}
|
|
1628
|
-
},
|
|
1629
|
-
{
|
|
1630
|
-
"kind": "variable",
|
|
1631
|
-
"name": "args"
|
|
1632
|
-
}
|
|
1633
|
-
],
|
|
1634
|
-
"exports": [
|
|
1635
|
-
{
|
|
1636
|
-
"kind": "js",
|
|
1637
|
-
"name": "AgUiAdapter",
|
|
1638
|
-
"declaration": {
|
|
1639
|
-
"name": "AgUiAdapter",
|
|
1640
|
-
"module": "src/lib/ai-chatbot/ag-ui-adapter.ts"
|
|
1641
|
-
}
|
|
1642
|
-
}
|
|
1643
|
-
]
|
|
1644
|
-
},
|
|
1645
|
-
{
|
|
1646
|
-
"kind": "javascript-module",
|
|
1647
|
-
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
1648
|
-
"declarations": [
|
|
1649
|
-
{
|
|
1650
|
-
"kind": "class",
|
|
1651
|
-
"description": "",
|
|
1652
|
-
"name": "AgentAdapter",
|
|
1653
|
-
"members": [
|
|
1797
|
+
},
|
|
1654
1798
|
{
|
|
1655
1799
|
"kind": "method",
|
|
1656
|
-
"name": "
|
|
1800
|
+
"name": "onStepStarted",
|
|
1657
1801
|
"privacy": "public",
|
|
1658
1802
|
"return": {
|
|
1659
1803
|
"type": {
|
|
1660
|
-
"text": "
|
|
1804
|
+
"text": "Subscription"
|
|
1805
|
+
}
|
|
1806
|
+
},
|
|
1807
|
+
"parameters": [
|
|
1808
|
+
{
|
|
1809
|
+
"name": "callback",
|
|
1810
|
+
"type": {
|
|
1811
|
+
"text": "(event: StepStartedAgentEvent) => void"
|
|
1812
|
+
}
|
|
1661
1813
|
}
|
|
1814
|
+
],
|
|
1815
|
+
"inheritedFrom": {
|
|
1816
|
+
"name": "AgentAdapter",
|
|
1817
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1662
1818
|
}
|
|
1663
1819
|
},
|
|
1664
1820
|
{
|
|
1665
1821
|
"kind": "method",
|
|
1666
|
-
"name": "
|
|
1822
|
+
"name": "onStepFinished",
|
|
1667
1823
|
"privacy": "public",
|
|
1668
1824
|
"return": {
|
|
1669
1825
|
"type": {
|
|
1670
|
-
"text": "
|
|
1826
|
+
"text": "Subscription"
|
|
1827
|
+
}
|
|
1828
|
+
},
|
|
1829
|
+
"parameters": [
|
|
1830
|
+
{
|
|
1831
|
+
"name": "callback",
|
|
1832
|
+
"type": {
|
|
1833
|
+
"text": "(event: StepFinishedAgentEvent) => void"
|
|
1834
|
+
}
|
|
1671
1835
|
}
|
|
1836
|
+
],
|
|
1837
|
+
"inheritedFrom": {
|
|
1838
|
+
"name": "AgentAdapter",
|
|
1839
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1672
1840
|
}
|
|
1673
1841
|
},
|
|
1674
1842
|
{
|
|
1675
1843
|
"kind": "method",
|
|
1676
|
-
"name": "
|
|
1844
|
+
"name": "onStateSnapshot",
|
|
1677
1845
|
"privacy": "public",
|
|
1678
1846
|
"return": {
|
|
1679
1847
|
"type": {
|
|
1680
|
-
"text": "
|
|
1848
|
+
"text": "Subscription"
|
|
1681
1849
|
}
|
|
1682
1850
|
},
|
|
1683
1851
|
"parameters": [
|
|
1684
1852
|
{
|
|
1685
|
-
"name": "
|
|
1853
|
+
"name": "callback",
|
|
1686
1854
|
"type": {
|
|
1687
|
-
"text": "
|
|
1855
|
+
"text": "(event: StateSnapshotAgentEvent) => void"
|
|
1688
1856
|
}
|
|
1689
1857
|
}
|
|
1690
|
-
]
|
|
1858
|
+
],
|
|
1859
|
+
"inheritedFrom": {
|
|
1860
|
+
"name": "AgentAdapter",
|
|
1861
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1862
|
+
}
|
|
1691
1863
|
},
|
|
1692
1864
|
{
|
|
1693
1865
|
"kind": "method",
|
|
1694
|
-
"name": "
|
|
1866
|
+
"name": "onStateDelta",
|
|
1695
1867
|
"privacy": "public",
|
|
1696
1868
|
"return": {
|
|
1697
1869
|
"type": {
|
|
1698
|
-
"text": "
|
|
1870
|
+
"text": "Subscription"
|
|
1699
1871
|
}
|
|
1700
1872
|
},
|
|
1701
1873
|
"parameters": [
|
|
1702
1874
|
{
|
|
1703
|
-
"name": "
|
|
1875
|
+
"name": "callback",
|
|
1876
|
+
"type": {
|
|
1877
|
+
"text": "(event: StateDeltaAgentEvent) => void"
|
|
1878
|
+
}
|
|
1879
|
+
}
|
|
1880
|
+
],
|
|
1881
|
+
"inheritedFrom": {
|
|
1882
|
+
"name": "AgentAdapter",
|
|
1883
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1884
|
+
}
|
|
1885
|
+
},
|
|
1886
|
+
{
|
|
1887
|
+
"kind": "method",
|
|
1888
|
+
"name": "onActivitySnapshot",
|
|
1889
|
+
"privacy": "public",
|
|
1890
|
+
"return": {
|
|
1891
|
+
"type": {
|
|
1892
|
+
"text": "Subscription"
|
|
1893
|
+
}
|
|
1894
|
+
},
|
|
1895
|
+
"parameters": [
|
|
1896
|
+
{
|
|
1897
|
+
"name": "callback",
|
|
1898
|
+
"type": {
|
|
1899
|
+
"text": "(event: ActivitySnapshotAgentEvent) => void"
|
|
1900
|
+
}
|
|
1901
|
+
}
|
|
1902
|
+
],
|
|
1903
|
+
"inheritedFrom": {
|
|
1904
|
+
"name": "AgentAdapter",
|
|
1905
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1906
|
+
}
|
|
1907
|
+
},
|
|
1908
|
+
{
|
|
1909
|
+
"kind": "method",
|
|
1910
|
+
"name": "onActivityDelta",
|
|
1911
|
+
"privacy": "public",
|
|
1912
|
+
"return": {
|
|
1913
|
+
"type": {
|
|
1914
|
+
"text": "Subscription"
|
|
1915
|
+
}
|
|
1916
|
+
},
|
|
1917
|
+
"parameters": [
|
|
1918
|
+
{
|
|
1919
|
+
"name": "callback",
|
|
1920
|
+
"type": {
|
|
1921
|
+
"text": "(event: ActivityDeltaAgentEvent) => void"
|
|
1922
|
+
}
|
|
1923
|
+
}
|
|
1924
|
+
],
|
|
1925
|
+
"inheritedFrom": {
|
|
1926
|
+
"name": "AgentAdapter",
|
|
1927
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1928
|
+
}
|
|
1929
|
+
},
|
|
1930
|
+
{
|
|
1931
|
+
"kind": "method",
|
|
1932
|
+
"name": "emitFileUpload",
|
|
1933
|
+
"privacy": "public",
|
|
1934
|
+
"return": {
|
|
1935
|
+
"type": {
|
|
1936
|
+
"text": "void"
|
|
1937
|
+
}
|
|
1938
|
+
},
|
|
1939
|
+
"parameters": [
|
|
1940
|
+
{
|
|
1941
|
+
"name": "file",
|
|
1942
|
+
"type": {
|
|
1943
|
+
"text": "File"
|
|
1944
|
+
}
|
|
1945
|
+
},
|
|
1946
|
+
{
|
|
1947
|
+
"name": "callbacks",
|
|
1948
|
+
"type": {
|
|
1949
|
+
"text": "FileUploadCallbacks"
|
|
1950
|
+
}
|
|
1951
|
+
}
|
|
1952
|
+
],
|
|
1953
|
+
"inheritedFrom": {
|
|
1954
|
+
"name": "AgentAdapter",
|
|
1955
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1956
|
+
}
|
|
1957
|
+
},
|
|
1958
|
+
{
|
|
1959
|
+
"kind": "method",
|
|
1960
|
+
"name": "emitFileRemove",
|
|
1961
|
+
"privacy": "public",
|
|
1962
|
+
"return": {
|
|
1963
|
+
"type": {
|
|
1964
|
+
"text": "void"
|
|
1965
|
+
}
|
|
1966
|
+
},
|
|
1967
|
+
"parameters": [
|
|
1968
|
+
{
|
|
1969
|
+
"name": "fileId",
|
|
1970
|
+
"type": {
|
|
1971
|
+
"text": "string"
|
|
1972
|
+
}
|
|
1973
|
+
},
|
|
1974
|
+
{
|
|
1975
|
+
"name": "callbacks",
|
|
1976
|
+
"type": {
|
|
1977
|
+
"text": "{ onSuccess: () => void; onError: (error: string) => void }"
|
|
1978
|
+
}
|
|
1979
|
+
}
|
|
1980
|
+
],
|
|
1981
|
+
"inheritedFrom": {
|
|
1982
|
+
"name": "AgentAdapter",
|
|
1983
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1984
|
+
}
|
|
1985
|
+
}
|
|
1986
|
+
],
|
|
1987
|
+
"superclass": {
|
|
1988
|
+
"name": "AgentAdapter",
|
|
1989
|
+
"module": "/src/lib/ai-chatbot/agent-adapter.js"
|
|
1990
|
+
}
|
|
1991
|
+
},
|
|
1992
|
+
{
|
|
1993
|
+
"kind": "variable",
|
|
1994
|
+
"name": "args"
|
|
1995
|
+
}
|
|
1996
|
+
],
|
|
1997
|
+
"exports": [
|
|
1998
|
+
{
|
|
1999
|
+
"kind": "js",
|
|
2000
|
+
"name": "AgUiAdapter",
|
|
2001
|
+
"declaration": {
|
|
2002
|
+
"name": "AgUiAdapter",
|
|
2003
|
+
"module": "src/lib/ai-chatbot/ag-ui-adapter.ts"
|
|
2004
|
+
}
|
|
2005
|
+
}
|
|
2006
|
+
]
|
|
2007
|
+
},
|
|
2008
|
+
{
|
|
2009
|
+
"kind": "javascript-module",
|
|
2010
|
+
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
2011
|
+
"declarations": [
|
|
2012
|
+
{
|
|
2013
|
+
"kind": "class",
|
|
2014
|
+
"description": "",
|
|
2015
|
+
"name": "AgentAdapter",
|
|
2016
|
+
"members": [
|
|
2017
|
+
{
|
|
2018
|
+
"kind": "method",
|
|
2019
|
+
"name": "connect",
|
|
2020
|
+
"privacy": "public",
|
|
2021
|
+
"return": {
|
|
2022
|
+
"type": {
|
|
2023
|
+
"text": "Promise<void>"
|
|
2024
|
+
}
|
|
2025
|
+
}
|
|
2026
|
+
},
|
|
2027
|
+
{
|
|
2028
|
+
"kind": "method",
|
|
2029
|
+
"name": "disconnect",
|
|
2030
|
+
"privacy": "public",
|
|
2031
|
+
"return": {
|
|
2032
|
+
"type": {
|
|
2033
|
+
"text": "Promise<void>"
|
|
2034
|
+
}
|
|
2035
|
+
}
|
|
2036
|
+
},
|
|
2037
|
+
{
|
|
2038
|
+
"kind": "method",
|
|
2039
|
+
"name": "sendMessage",
|
|
2040
|
+
"privacy": "public",
|
|
2041
|
+
"return": {
|
|
2042
|
+
"type": {
|
|
2043
|
+
"text": "void"
|
|
2044
|
+
}
|
|
2045
|
+
},
|
|
2046
|
+
"parameters": [
|
|
2047
|
+
{
|
|
2048
|
+
"name": "messages",
|
|
2049
|
+
"type": {
|
|
2050
|
+
"text": "ChatMessage[]"
|
|
2051
|
+
}
|
|
2052
|
+
}
|
|
2053
|
+
]
|
|
2054
|
+
},
|
|
2055
|
+
{
|
|
2056
|
+
"kind": "method",
|
|
2057
|
+
"name": "sendToolResult",
|
|
2058
|
+
"privacy": "public",
|
|
2059
|
+
"return": {
|
|
2060
|
+
"type": {
|
|
2061
|
+
"text": "void"
|
|
2062
|
+
}
|
|
2063
|
+
},
|
|
2064
|
+
"parameters": [
|
|
2065
|
+
{
|
|
2066
|
+
"name": "toolCallId",
|
|
1704
2067
|
"type": {
|
|
1705
2068
|
"text": "string"
|
|
1706
2069
|
}
|
|
@@ -2084,97 +2447,259 @@
|
|
|
2084
2447
|
},
|
|
2085
2448
|
{
|
|
2086
2449
|
"kind": "method",
|
|
2087
|
-
"name": "
|
|
2450
|
+
"name": "onCustomEvent",
|
|
2088
2451
|
"privacy": "public",
|
|
2089
2452
|
"return": {
|
|
2090
2453
|
"type": {
|
|
2091
|
-
"text": "
|
|
2454
|
+
"text": "Subscription"
|
|
2092
2455
|
}
|
|
2093
2456
|
},
|
|
2094
2457
|
"parameters": [
|
|
2095
2458
|
{
|
|
2096
|
-
"name": "
|
|
2097
|
-
"type": {
|
|
2098
|
-
"text": "File"
|
|
2099
|
-
}
|
|
2100
|
-
},
|
|
2101
|
-
{
|
|
2102
|
-
"name": "callbacks",
|
|
2459
|
+
"name": "callback",
|
|
2103
2460
|
"type": {
|
|
2104
|
-
"text": "
|
|
2461
|
+
"text": "(event: CustomAgentEvent) => void"
|
|
2105
2462
|
}
|
|
2106
2463
|
}
|
|
2107
2464
|
]
|
|
2108
2465
|
},
|
|
2109
2466
|
{
|
|
2110
2467
|
"kind": "method",
|
|
2111
|
-
"name": "
|
|
2468
|
+
"name": "onRawEvent",
|
|
2112
2469
|
"privacy": "public",
|
|
2113
2470
|
"return": {
|
|
2114
2471
|
"type": {
|
|
2115
|
-
"text": "
|
|
2472
|
+
"text": "Subscription"
|
|
2116
2473
|
}
|
|
2117
2474
|
},
|
|
2118
2475
|
"parameters": [
|
|
2119
2476
|
{
|
|
2120
|
-
"name": "
|
|
2477
|
+
"name": "callback",
|
|
2121
2478
|
"type": {
|
|
2122
|
-
"text": "
|
|
2479
|
+
"text": "(event: RawAgentEvent) => void"
|
|
2123
2480
|
}
|
|
2124
|
-
}
|
|
2481
|
+
}
|
|
2482
|
+
]
|
|
2483
|
+
},
|
|
2484
|
+
{
|
|
2485
|
+
"kind": "method",
|
|
2486
|
+
"name": "onRunStartedEvent",
|
|
2487
|
+
"privacy": "public",
|
|
2488
|
+
"return": {
|
|
2489
|
+
"type": {
|
|
2490
|
+
"text": "Subscription"
|
|
2491
|
+
}
|
|
2492
|
+
},
|
|
2493
|
+
"parameters": [
|
|
2125
2494
|
{
|
|
2126
|
-
"name": "
|
|
2495
|
+
"name": "callback",
|
|
2127
2496
|
"type": {
|
|
2128
|
-
"text": "
|
|
2497
|
+
"text": "(event: RunStartedAgentEvent) => void"
|
|
2129
2498
|
}
|
|
2130
2499
|
}
|
|
2131
2500
|
]
|
|
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": [
|
|
2501
|
+
},
|
|
2156
2502
|
{
|
|
2157
2503
|
"kind": "method",
|
|
2158
|
-
"name": "
|
|
2504
|
+
"name": "onStepStarted",
|
|
2159
2505
|
"privacy": "public",
|
|
2160
|
-
"static": true,
|
|
2161
2506
|
"return": {
|
|
2162
2507
|
"type": {
|
|
2163
|
-
"text": "
|
|
2508
|
+
"text": "Subscription"
|
|
2164
2509
|
}
|
|
2165
2510
|
},
|
|
2166
2511
|
"parameters": [
|
|
2167
2512
|
{
|
|
2168
|
-
"name": "
|
|
2513
|
+
"name": "callback",
|
|
2169
2514
|
"type": {
|
|
2170
|
-
"text": "
|
|
2515
|
+
"text": "(event: StepStartedAgentEvent) => void"
|
|
2171
2516
|
}
|
|
2172
2517
|
}
|
|
2173
2518
|
]
|
|
2174
|
-
}
|
|
2175
|
-
|
|
2176
|
-
|
|
2177
|
-
|
|
2519
|
+
},
|
|
2520
|
+
{
|
|
2521
|
+
"kind": "method",
|
|
2522
|
+
"name": "onStepFinished",
|
|
2523
|
+
"privacy": "public",
|
|
2524
|
+
"return": {
|
|
2525
|
+
"type": {
|
|
2526
|
+
"text": "Subscription"
|
|
2527
|
+
}
|
|
2528
|
+
},
|
|
2529
|
+
"parameters": [
|
|
2530
|
+
{
|
|
2531
|
+
"name": "callback",
|
|
2532
|
+
"type": {
|
|
2533
|
+
"text": "(event: StepFinishedAgentEvent) => void"
|
|
2534
|
+
}
|
|
2535
|
+
}
|
|
2536
|
+
]
|
|
2537
|
+
},
|
|
2538
|
+
{
|
|
2539
|
+
"kind": "method",
|
|
2540
|
+
"name": "onStateSnapshot",
|
|
2541
|
+
"privacy": "public",
|
|
2542
|
+
"return": {
|
|
2543
|
+
"type": {
|
|
2544
|
+
"text": "Subscription"
|
|
2545
|
+
}
|
|
2546
|
+
},
|
|
2547
|
+
"parameters": [
|
|
2548
|
+
{
|
|
2549
|
+
"name": "callback",
|
|
2550
|
+
"type": {
|
|
2551
|
+
"text": "(event: StateSnapshotAgentEvent) => void"
|
|
2552
|
+
}
|
|
2553
|
+
}
|
|
2554
|
+
]
|
|
2555
|
+
},
|
|
2556
|
+
{
|
|
2557
|
+
"kind": "method",
|
|
2558
|
+
"name": "onStateDelta",
|
|
2559
|
+
"privacy": "public",
|
|
2560
|
+
"return": {
|
|
2561
|
+
"type": {
|
|
2562
|
+
"text": "Subscription"
|
|
2563
|
+
}
|
|
2564
|
+
},
|
|
2565
|
+
"parameters": [
|
|
2566
|
+
{
|
|
2567
|
+
"name": "callback",
|
|
2568
|
+
"type": {
|
|
2569
|
+
"text": "(event: StateDeltaAgentEvent) => void"
|
|
2570
|
+
}
|
|
2571
|
+
}
|
|
2572
|
+
]
|
|
2573
|
+
},
|
|
2574
|
+
{
|
|
2575
|
+
"kind": "method",
|
|
2576
|
+
"name": "onActivitySnapshot",
|
|
2577
|
+
"privacy": "public",
|
|
2578
|
+
"return": {
|
|
2579
|
+
"type": {
|
|
2580
|
+
"text": "Subscription"
|
|
2581
|
+
}
|
|
2582
|
+
},
|
|
2583
|
+
"parameters": [
|
|
2584
|
+
{
|
|
2585
|
+
"name": "callback",
|
|
2586
|
+
"type": {
|
|
2587
|
+
"text": "(event: ActivitySnapshotAgentEvent) => void"
|
|
2588
|
+
}
|
|
2589
|
+
}
|
|
2590
|
+
]
|
|
2591
|
+
},
|
|
2592
|
+
{
|
|
2593
|
+
"kind": "method",
|
|
2594
|
+
"name": "onActivityDelta",
|
|
2595
|
+
"privacy": "public",
|
|
2596
|
+
"return": {
|
|
2597
|
+
"type": {
|
|
2598
|
+
"text": "Subscription"
|
|
2599
|
+
}
|
|
2600
|
+
},
|
|
2601
|
+
"parameters": [
|
|
2602
|
+
{
|
|
2603
|
+
"name": "callback",
|
|
2604
|
+
"type": {
|
|
2605
|
+
"text": "(event: ActivityDeltaAgentEvent) => void"
|
|
2606
|
+
}
|
|
2607
|
+
}
|
|
2608
|
+
]
|
|
2609
|
+
},
|
|
2610
|
+
{
|
|
2611
|
+
"kind": "method",
|
|
2612
|
+
"name": "emitFileUpload",
|
|
2613
|
+
"privacy": "public",
|
|
2614
|
+
"return": {
|
|
2615
|
+
"type": {
|
|
2616
|
+
"text": "void"
|
|
2617
|
+
}
|
|
2618
|
+
},
|
|
2619
|
+
"parameters": [
|
|
2620
|
+
{
|
|
2621
|
+
"name": "file",
|
|
2622
|
+
"type": {
|
|
2623
|
+
"text": "File"
|
|
2624
|
+
}
|
|
2625
|
+
},
|
|
2626
|
+
{
|
|
2627
|
+
"name": "callbacks",
|
|
2628
|
+
"type": {
|
|
2629
|
+
"text": "FileUploadCallbacks"
|
|
2630
|
+
}
|
|
2631
|
+
}
|
|
2632
|
+
]
|
|
2633
|
+
},
|
|
2634
|
+
{
|
|
2635
|
+
"kind": "method",
|
|
2636
|
+
"name": "emitFileRemove",
|
|
2637
|
+
"privacy": "public",
|
|
2638
|
+
"return": {
|
|
2639
|
+
"type": {
|
|
2640
|
+
"text": "void"
|
|
2641
|
+
}
|
|
2642
|
+
},
|
|
2643
|
+
"parameters": [
|
|
2644
|
+
{
|
|
2645
|
+
"name": "fileId",
|
|
2646
|
+
"type": {
|
|
2647
|
+
"text": "string"
|
|
2648
|
+
}
|
|
2649
|
+
},
|
|
2650
|
+
{
|
|
2651
|
+
"name": "callbacks",
|
|
2652
|
+
"type": {
|
|
2653
|
+
"text": "{ onSuccess: () => void; onError: (error: string) => void }"
|
|
2654
|
+
}
|
|
2655
|
+
}
|
|
2656
|
+
]
|
|
2657
|
+
}
|
|
2658
|
+
]
|
|
2659
|
+
}
|
|
2660
|
+
],
|
|
2661
|
+
"exports": [
|
|
2662
|
+
{
|
|
2663
|
+
"kind": "js",
|
|
2664
|
+
"name": "AgentAdapter",
|
|
2665
|
+
"declaration": {
|
|
2666
|
+
"name": "AgentAdapter",
|
|
2667
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
2668
|
+
}
|
|
2669
|
+
}
|
|
2670
|
+
]
|
|
2671
|
+
},
|
|
2672
|
+
{
|
|
2673
|
+
"kind": "javascript-module",
|
|
2674
|
+
"path": "src/lib/ai-chatbot/agent-runner.ts",
|
|
2675
|
+
"declarations": [
|
|
2676
|
+
{
|
|
2677
|
+
"kind": "class",
|
|
2678
|
+
"description": "",
|
|
2679
|
+
"name": "AgentRunner",
|
|
2680
|
+
"members": [
|
|
2681
|
+
{
|
|
2682
|
+
"kind": "method",
|
|
2683
|
+
"name": "run",
|
|
2684
|
+
"privacy": "public",
|
|
2685
|
+
"static": true,
|
|
2686
|
+
"return": {
|
|
2687
|
+
"type": {
|
|
2688
|
+
"text": "Promise<AgentRunnerResult>"
|
|
2689
|
+
}
|
|
2690
|
+
},
|
|
2691
|
+
"parameters": [
|
|
2692
|
+
{
|
|
2693
|
+
"name": "config",
|
|
2694
|
+
"type": {
|
|
2695
|
+
"text": "AgentRunnerConfig"
|
|
2696
|
+
}
|
|
2697
|
+
}
|
|
2698
|
+
]
|
|
2699
|
+
}
|
|
2700
|
+
]
|
|
2701
|
+
}
|
|
2702
|
+
],
|
|
2178
2703
|
"exports": [
|
|
2179
2704
|
{
|
|
2180
2705
|
"kind": "js",
|
|
@@ -2313,7 +2838,7 @@
|
|
|
2313
2838
|
"kind": "field",
|
|
2314
2839
|
"name": "adapter",
|
|
2315
2840
|
"type": {
|
|
2316
|
-
"text": "AgentAdapter"
|
|
2841
|
+
"text": "AgentAdapter | undefined"
|
|
2317
2842
|
},
|
|
2318
2843
|
"privacy": "public"
|
|
2319
2844
|
},
|
|
@@ -2337,6 +2862,16 @@
|
|
|
2337
2862
|
"default": "'on'",
|
|
2338
2863
|
"attribute": "voice-input"
|
|
2339
2864
|
},
|
|
2865
|
+
{
|
|
2866
|
+
"kind": "field",
|
|
2867
|
+
"name": "debugCommand",
|
|
2868
|
+
"type": {
|
|
2869
|
+
"text": "FeatureToggle"
|
|
2870
|
+
},
|
|
2871
|
+
"privacy": "public",
|
|
2872
|
+
"default": "'on'",
|
|
2873
|
+
"attribute": "debug-command"
|
|
2874
|
+
},
|
|
2340
2875
|
{
|
|
2341
2876
|
"kind": "field",
|
|
2342
2877
|
"name": "placeholder",
|
|
@@ -2421,6 +2956,7 @@
|
|
|
2421
2956
|
},
|
|
2422
2957
|
"privacy": "public",
|
|
2423
2958
|
"default": "'AI Assistant'",
|
|
2959
|
+
"description": "The title text to display in the header (default: 'AI Assistant')",
|
|
2424
2960
|
"attribute": "title-text"
|
|
2425
2961
|
},
|
|
2426
2962
|
{
|
|
@@ -2431,6 +2967,7 @@
|
|
|
2431
2967
|
},
|
|
2432
2968
|
"privacy": "public",
|
|
2433
2969
|
"default": "2",
|
|
2970
|
+
"description": "Controls the heading level for the title content (default: 2)",
|
|
2434
2971
|
"attribute": "heading-level"
|
|
2435
2972
|
},
|
|
2436
2973
|
{
|
|
@@ -2443,6 +2980,17 @@
|
|
|
2443
2980
|
"default": "false",
|
|
2444
2981
|
"attribute": "debug-mode"
|
|
2445
2982
|
},
|
|
2983
|
+
{
|
|
2984
|
+
"kind": "field",
|
|
2985
|
+
"name": "disclaimerText",
|
|
2986
|
+
"type": {
|
|
2987
|
+
"text": "string | null | undefined"
|
|
2988
|
+
},
|
|
2989
|
+
"privacy": "public",
|
|
2990
|
+
"default": "'AI can make mistakes. Always verify responses.'",
|
|
2991
|
+
"description": "The disclaimer text to display below the prompt. Set to empty string, null, or undefined to hide.",
|
|
2992
|
+
"attribute": "disclaimer-text"
|
|
2993
|
+
},
|
|
2446
2994
|
{
|
|
2447
2995
|
"kind": "method",
|
|
2448
2996
|
"name": "clearMessages",
|
|
@@ -2665,6 +3213,14 @@
|
|
|
2665
3213
|
"default": "'on'",
|
|
2666
3214
|
"fieldName": "voiceInput"
|
|
2667
3215
|
},
|
|
3216
|
+
{
|
|
3217
|
+
"name": "debug-command",
|
|
3218
|
+
"type": {
|
|
3219
|
+
"text": "FeatureToggle"
|
|
3220
|
+
},
|
|
3221
|
+
"default": "'on'",
|
|
3222
|
+
"fieldName": "debugCommand"
|
|
3223
|
+
},
|
|
2668
3224
|
{
|
|
2669
3225
|
"name": "placeholder",
|
|
2670
3226
|
"type": {
|
|
@@ -2719,6 +3275,7 @@
|
|
|
2719
3275
|
"text": "string"
|
|
2720
3276
|
},
|
|
2721
3277
|
"default": "'AI Assistant'",
|
|
3278
|
+
"description": "The title text to display in the header (default: 'AI Assistant')",
|
|
2722
3279
|
"fieldName": "titleText"
|
|
2723
3280
|
},
|
|
2724
3281
|
{
|
|
@@ -2727,6 +3284,7 @@
|
|
|
2727
3284
|
"text": "HeadingLevel"
|
|
2728
3285
|
},
|
|
2729
3286
|
"default": "2",
|
|
3287
|
+
"description": "Controls the heading level for the title content (default: 2)",
|
|
2730
3288
|
"fieldName": "headingLevel"
|
|
2731
3289
|
},
|
|
2732
3290
|
{
|
|
@@ -2736,6 +3294,15 @@
|
|
|
2736
3294
|
},
|
|
2737
3295
|
"default": "false",
|
|
2738
3296
|
"fieldName": "debugMode"
|
|
3297
|
+
},
|
|
3298
|
+
{
|
|
3299
|
+
"name": "disclaimer-text",
|
|
3300
|
+
"type": {
|
|
3301
|
+
"text": "string | null | undefined"
|
|
3302
|
+
},
|
|
3303
|
+
"default": "'AI can make mistakes. Always verify responses.'",
|
|
3304
|
+
"description": "The disclaimer text to display below the prompt. Set to empty string, null, or undefined to hide.",
|
|
3305
|
+
"fieldName": "disclaimerText"
|
|
2739
3306
|
}
|
|
2740
3307
|
],
|
|
2741
3308
|
"superclass": {
|
|
@@ -3419,25 +3986,27 @@
|
|
|
3419
3986
|
},
|
|
3420
3987
|
{
|
|
3421
3988
|
"kind": "method",
|
|
3422
|
-
"name": "
|
|
3989
|
+
"name": "getActiveResponse",
|
|
3423
3990
|
"privacy": "public",
|
|
3424
3991
|
"return": {
|
|
3425
3992
|
"type": {
|
|
3426
|
-
"text": "
|
|
3993
|
+
"text": "AssistantResponse | null"
|
|
3427
3994
|
}
|
|
3428
|
-
}
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
|
|
3434
|
-
|
|
3995
|
+
}
|
|
3996
|
+
},
|
|
3997
|
+
{
|
|
3998
|
+
"kind": "method",
|
|
3999
|
+
"name": "startResponse",
|
|
4000
|
+
"privacy": "public",
|
|
4001
|
+
"return": {
|
|
4002
|
+
"type": {
|
|
4003
|
+
"text": "AssistantResponse"
|
|
3435
4004
|
}
|
|
3436
|
-
|
|
4005
|
+
}
|
|
3437
4006
|
},
|
|
3438
4007
|
{
|
|
3439
4008
|
"kind": "method",
|
|
3440
|
-
"name": "
|
|
4009
|
+
"name": "addTextToResponse",
|
|
3441
4010
|
"privacy": "public",
|
|
3442
4011
|
"return": {
|
|
3443
4012
|
"type": {
|
|
@@ -3446,9 +4015,15 @@
|
|
|
3446
4015
|
},
|
|
3447
4016
|
"parameters": [
|
|
3448
4017
|
{
|
|
3449
|
-
"name": "
|
|
4018
|
+
"name": "messageId",
|
|
3450
4019
|
"type": {
|
|
3451
|
-
"text": "
|
|
4020
|
+
"text": "string"
|
|
4021
|
+
}
|
|
4022
|
+
},
|
|
4023
|
+
{
|
|
4024
|
+
"name": "content",
|
|
4025
|
+
"type": {
|
|
4026
|
+
"text": "string"
|
|
3452
4027
|
}
|
|
3453
4028
|
},
|
|
3454
4029
|
{
|
|
@@ -3462,7 +4037,7 @@
|
|
|
3462
4037
|
},
|
|
3463
4038
|
{
|
|
3464
4039
|
"kind": "method",
|
|
3465
|
-
"name": "
|
|
4040
|
+
"name": "appendTextDelta",
|
|
3466
4041
|
"privacy": "public",
|
|
3467
4042
|
"return": {
|
|
3468
4043
|
"type": {
|
|
@@ -3471,23 +4046,29 @@
|
|
|
3471
4046
|
},
|
|
3472
4047
|
"parameters": [
|
|
3473
4048
|
{
|
|
3474
|
-
"name": "
|
|
4049
|
+
"name": "messageId",
|
|
3475
4050
|
"type": {
|
|
3476
|
-
"text": "
|
|
4051
|
+
"text": "string"
|
|
4052
|
+
}
|
|
4053
|
+
},
|
|
4054
|
+
{
|
|
4055
|
+
"name": "delta",
|
|
4056
|
+
"type": {
|
|
4057
|
+
"text": "string"
|
|
3477
4058
|
}
|
|
3478
4059
|
},
|
|
3479
4060
|
{
|
|
3480
4061
|
"name": "event",
|
|
3481
4062
|
"optional": true,
|
|
3482
4063
|
"type": {
|
|
3483
|
-
"text": "
|
|
4064
|
+
"text": "MessageDeltaEvent"
|
|
3484
4065
|
}
|
|
3485
4066
|
}
|
|
3486
4067
|
]
|
|
3487
4068
|
},
|
|
3488
4069
|
{
|
|
3489
4070
|
"kind": "method",
|
|
3490
|
-
"name": "
|
|
4071
|
+
"name": "markTextComplete",
|
|
3491
4072
|
"privacy": "public",
|
|
3492
4073
|
"return": {
|
|
3493
4074
|
"type": {
|
|
@@ -3496,29 +4077,23 @@
|
|
|
3496
4077
|
},
|
|
3497
4078
|
"parameters": [
|
|
3498
4079
|
{
|
|
3499
|
-
"name": "
|
|
4080
|
+
"name": "messageId",
|
|
3500
4081
|
"type": {
|
|
3501
4082
|
"text": "string"
|
|
3502
4083
|
}
|
|
3503
4084
|
},
|
|
3504
4085
|
{
|
|
3505
|
-
"name": "
|
|
3506
|
-
"type": {
|
|
3507
|
-
"text": "Partial<ToolCall>"
|
|
3508
|
-
}
|
|
3509
|
-
},
|
|
3510
|
-
{
|
|
3511
|
-
"name": "eventData",
|
|
4086
|
+
"name": "event",
|
|
3512
4087
|
"optional": true,
|
|
3513
4088
|
"type": {
|
|
3514
|
-
"text": "
|
|
4089
|
+
"text": "MessageEndEvent"
|
|
3515
4090
|
}
|
|
3516
4091
|
}
|
|
3517
4092
|
]
|
|
3518
4093
|
},
|
|
3519
4094
|
{
|
|
3520
4095
|
"kind": "method",
|
|
3521
|
-
"name": "
|
|
4096
|
+
"name": "addToolCallToResponse",
|
|
3522
4097
|
"privacy": "public",
|
|
3523
4098
|
"return": {
|
|
3524
4099
|
"type": {
|
|
@@ -3527,22 +4102,131 @@
|
|
|
3527
4102
|
},
|
|
3528
4103
|
"parameters": [
|
|
3529
4104
|
{
|
|
3530
|
-
"name": "
|
|
4105
|
+
"name": "toolCall",
|
|
4106
|
+
"type": {
|
|
4107
|
+
"text": "ToolCall"
|
|
4108
|
+
}
|
|
4109
|
+
},
|
|
4110
|
+
{
|
|
4111
|
+
"name": "event",
|
|
4112
|
+
"optional": true,
|
|
4113
|
+
"type": {
|
|
4114
|
+
"text": "ToolCallStartEvent"
|
|
4115
|
+
}
|
|
4116
|
+
}
|
|
4117
|
+
]
|
|
4118
|
+
},
|
|
4119
|
+
{
|
|
4120
|
+
"kind": "method",
|
|
4121
|
+
"name": "updateToolCallInResponse",
|
|
4122
|
+
"privacy": "public",
|
|
4123
|
+
"return": {
|
|
4124
|
+
"type": {
|
|
4125
|
+
"text": "void"
|
|
4126
|
+
}
|
|
4127
|
+
},
|
|
4128
|
+
"parameters": [
|
|
4129
|
+
{
|
|
4130
|
+
"name": "toolCallId",
|
|
3531
4131
|
"type": {
|
|
3532
4132
|
"text": "string"
|
|
3533
4133
|
}
|
|
3534
4134
|
},
|
|
3535
4135
|
{
|
|
3536
|
-
"name": "
|
|
4136
|
+
"name": "updates",
|
|
4137
|
+
"type": {
|
|
4138
|
+
"text": "Partial<ToolCall>"
|
|
4139
|
+
}
|
|
4140
|
+
},
|
|
4141
|
+
{
|
|
4142
|
+
"name": "eventData",
|
|
4143
|
+
"optional": true,
|
|
4144
|
+
"type": {
|
|
4145
|
+
"text": "{\n eventType: 'tool-call-args' | 'tool-call-end';\n event: ToolCallArgsEvent | ToolCallEndEvent;\n }"
|
|
4146
|
+
}
|
|
4147
|
+
}
|
|
4148
|
+
]
|
|
4149
|
+
},
|
|
4150
|
+
{
|
|
4151
|
+
"kind": "method",
|
|
4152
|
+
"name": "completeToolCallInResponse",
|
|
4153
|
+
"privacy": "public",
|
|
4154
|
+
"return": {
|
|
4155
|
+
"type": {
|
|
4156
|
+
"text": "void"
|
|
4157
|
+
}
|
|
4158
|
+
},
|
|
4159
|
+
"parameters": [
|
|
4160
|
+
{
|
|
4161
|
+
"name": "toolCallId",
|
|
3537
4162
|
"type": {
|
|
3538
4163
|
"text": "string"
|
|
3539
4164
|
}
|
|
3540
4165
|
},
|
|
4166
|
+
{
|
|
4167
|
+
"name": "result",
|
|
4168
|
+
"type": {
|
|
4169
|
+
"text": "unknown"
|
|
4170
|
+
}
|
|
4171
|
+
},
|
|
3541
4172
|
{
|
|
3542
4173
|
"name": "event",
|
|
3543
4174
|
"optional": true,
|
|
3544
4175
|
"type": {
|
|
3545
|
-
"text": "
|
|
4176
|
+
"text": "ToolResultEvent"
|
|
4177
|
+
}
|
|
4178
|
+
}
|
|
4179
|
+
]
|
|
4180
|
+
},
|
|
4181
|
+
{
|
|
4182
|
+
"kind": "method",
|
|
4183
|
+
"name": "completeResponse",
|
|
4184
|
+
"privacy": "public",
|
|
4185
|
+
"return": {
|
|
4186
|
+
"type": {
|
|
4187
|
+
"text": "void"
|
|
4188
|
+
}
|
|
4189
|
+
}
|
|
4190
|
+
},
|
|
4191
|
+
{
|
|
4192
|
+
"kind": "method",
|
|
4193
|
+
"name": "addMessageItem",
|
|
4194
|
+
"privacy": "public",
|
|
4195
|
+
"return": {
|
|
4196
|
+
"type": {
|
|
4197
|
+
"text": "void"
|
|
4198
|
+
}
|
|
4199
|
+
},
|
|
4200
|
+
"parameters": [
|
|
4201
|
+
{
|
|
4202
|
+
"name": "item",
|
|
4203
|
+
"type": {
|
|
4204
|
+
"text": "MessageItem"
|
|
4205
|
+
}
|
|
4206
|
+
}
|
|
4207
|
+
]
|
|
4208
|
+
},
|
|
4209
|
+
{
|
|
4210
|
+
"kind": "method",
|
|
4211
|
+
"name": "addMessage",
|
|
4212
|
+
"privacy": "public",
|
|
4213
|
+
"return": {
|
|
4214
|
+
"type": {
|
|
4215
|
+
"text": "void"
|
|
4216
|
+
}
|
|
4217
|
+
},
|
|
4218
|
+
"parameters": [
|
|
4219
|
+
{
|
|
4220
|
+
"name": "message",
|
|
4221
|
+
"type": {
|
|
4222
|
+
"text": "ChatMessage"
|
|
4223
|
+
}
|
|
4224
|
+
},
|
|
4225
|
+
{
|
|
4226
|
+
"name": "event",
|
|
4227
|
+
"optional": true,
|
|
4228
|
+
"type": {
|
|
4229
|
+
"text": "MessageStartEvent"
|
|
3546
4230
|
}
|
|
3547
4231
|
}
|
|
3548
4232
|
]
|
|
@@ -3626,36 +4310,36 @@
|
|
|
3626
4310
|
},
|
|
3627
4311
|
{
|
|
3628
4312
|
"kind": "method",
|
|
3629
|
-
"name": "
|
|
4313
|
+
"name": "removeMessageItemsFrom",
|
|
3630
4314
|
"privacy": "public",
|
|
3631
4315
|
"return": {
|
|
3632
4316
|
"type": {
|
|
3633
|
-
"text": "
|
|
4317
|
+
"text": "void"
|
|
3634
4318
|
}
|
|
3635
4319
|
},
|
|
3636
|
-
"
|
|
4320
|
+
"parameters": [
|
|
4321
|
+
{
|
|
4322
|
+
"name": "index",
|
|
4323
|
+
"type": {
|
|
4324
|
+
"text": "number"
|
|
4325
|
+
}
|
|
4326
|
+
}
|
|
4327
|
+
]
|
|
3637
4328
|
},
|
|
3638
4329
|
{
|
|
3639
4330
|
"kind": "method",
|
|
3640
|
-
"name": "
|
|
4331
|
+
"name": "getMessages",
|
|
3641
4332
|
"privacy": "public",
|
|
3642
4333
|
"return": {
|
|
3643
4334
|
"type": {
|
|
3644
|
-
"text": "
|
|
4335
|
+
"text": "ChatMessage[]"
|
|
3645
4336
|
}
|
|
3646
4337
|
},
|
|
3647
|
-
"
|
|
3648
|
-
{
|
|
3649
|
-
"name": "messages",
|
|
3650
|
-
"type": {
|
|
3651
|
-
"text": "ChatMessage[]"
|
|
3652
|
-
}
|
|
3653
|
-
}
|
|
3654
|
-
]
|
|
4338
|
+
"description": "Reconstructs the message hierarchy for API compatibility.\nConverts assistant responses back to ChatMessage format with tool calls."
|
|
3655
4339
|
},
|
|
3656
4340
|
{
|
|
3657
4341
|
"kind": "method",
|
|
3658
|
-
"name": "
|
|
4342
|
+
"name": "setMessages",
|
|
3659
4343
|
"privacy": "public",
|
|
3660
4344
|
"return": {
|
|
3661
4345
|
"type": {
|
|
@@ -3664,22 +4348,9 @@
|
|
|
3664
4348
|
},
|
|
3665
4349
|
"parameters": [
|
|
3666
4350
|
{
|
|
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,
|
|
4351
|
+
"name": "messages",
|
|
3681
4352
|
"type": {
|
|
3682
|
-
"text": "
|
|
4353
|
+
"text": "ChatMessage[]"
|
|
3683
4354
|
}
|
|
3684
4355
|
}
|
|
3685
4356
|
]
|
|
@@ -5900,6 +6571,81 @@
|
|
|
5900
6571
|
}
|
|
5901
6572
|
]
|
|
5902
6573
|
},
|
|
6574
|
+
{
|
|
6575
|
+
"kind": "javascript-module",
|
|
6576
|
+
"path": "src/lib/ai-icon-button/ai-icon-button.ts",
|
|
6577
|
+
"declarations": [
|
|
6578
|
+
{
|
|
6579
|
+
"kind": "variable",
|
|
6580
|
+
"name": "AiIconButtonComponentTagName",
|
|
6581
|
+
"type": {
|
|
6582
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
6583
|
+
},
|
|
6584
|
+
"default": "'forge-ai-icon-button'"
|
|
6585
|
+
},
|
|
6586
|
+
{
|
|
6587
|
+
"kind": "class",
|
|
6588
|
+
"description": "",
|
|
6589
|
+
"name": "AiIconButtonComponent",
|
|
6590
|
+
"members": [
|
|
6591
|
+
{
|
|
6592
|
+
"kind": "field",
|
|
6593
|
+
"name": "disabled",
|
|
6594
|
+
"type": {
|
|
6595
|
+
"text": "boolean"
|
|
6596
|
+
},
|
|
6597
|
+
"privacy": "public",
|
|
6598
|
+
"default": "false",
|
|
6599
|
+
"description": "Whether the button is disabled",
|
|
6600
|
+
"attribute": "disabled",
|
|
6601
|
+
"reflects": true
|
|
6602
|
+
}
|
|
6603
|
+
],
|
|
6604
|
+
"attributes": [
|
|
6605
|
+
{
|
|
6606
|
+
"name": "disabled",
|
|
6607
|
+
"type": {
|
|
6608
|
+
"text": "boolean"
|
|
6609
|
+
},
|
|
6610
|
+
"default": "false",
|
|
6611
|
+
"description": "Whether the button is disabled",
|
|
6612
|
+
"fieldName": "disabled"
|
|
6613
|
+
}
|
|
6614
|
+
],
|
|
6615
|
+
"superclass": {
|
|
6616
|
+
"name": "LitElement",
|
|
6617
|
+
"package": "lit"
|
|
6618
|
+
},
|
|
6619
|
+
"tagName": "forge-ai-icon-button",
|
|
6620
|
+
"customElement": true
|
|
6621
|
+
}
|
|
6622
|
+
],
|
|
6623
|
+
"exports": [
|
|
6624
|
+
{
|
|
6625
|
+
"kind": "js",
|
|
6626
|
+
"name": "AiIconButtonComponentTagName",
|
|
6627
|
+
"declaration": {
|
|
6628
|
+
"name": "AiIconButtonComponentTagName",
|
|
6629
|
+
"module": "src/lib/ai-icon-button/ai-icon-button.ts"
|
|
6630
|
+
}
|
|
6631
|
+
},
|
|
6632
|
+
{
|
|
6633
|
+
"kind": "js",
|
|
6634
|
+
"name": "AiIconButtonComponent",
|
|
6635
|
+
"declaration": {
|
|
6636
|
+
"name": "AiIconButtonComponent",
|
|
6637
|
+
"module": "src/lib/ai-icon-button/ai-icon-button.ts"
|
|
6638
|
+
}
|
|
6639
|
+
},
|
|
6640
|
+
{
|
|
6641
|
+
"kind": "custom-element-definition",
|
|
6642
|
+
"declaration": {
|
|
6643
|
+
"name": "AiIconButtonComponent",
|
|
6644
|
+
"module": "src/lib/ai-icon-button/ai-icon-button.ts"
|
|
6645
|
+
}
|
|
6646
|
+
}
|
|
6647
|
+
]
|
|
6648
|
+
},
|
|
5903
6649
|
{
|
|
5904
6650
|
"kind": "javascript-module",
|
|
5905
6651
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
@@ -6105,103 +6851,28 @@
|
|
|
6105
6851
|
},
|
|
6106
6852
|
{
|
|
6107
6853
|
"kind": "javascript-module",
|
|
6108
|
-
"path": "src/lib/ai-
|
|
6854
|
+
"path": "src/lib/ai-modal/ai-modal.ts",
|
|
6109
6855
|
"declarations": [
|
|
6110
|
-
{
|
|
6111
|
-
"kind": "variable",
|
|
6112
|
-
"name": "AiIconButtonComponentTagName",
|
|
6113
|
-
"type": {
|
|
6114
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
6115
|
-
},
|
|
6116
|
-
"default": "'forge-ai-icon-button'"
|
|
6117
|
-
},
|
|
6118
6856
|
{
|
|
6119
6857
|
"kind": "class",
|
|
6120
6858
|
"description": "",
|
|
6121
|
-
"name": "
|
|
6122
|
-
"
|
|
6123
|
-
{
|
|
6124
|
-
"
|
|
6125
|
-
"name": "
|
|
6126
|
-
|
|
6127
|
-
|
|
6128
|
-
|
|
6129
|
-
"
|
|
6130
|
-
|
|
6131
|
-
|
|
6132
|
-
|
|
6133
|
-
|
|
6134
|
-
|
|
6135
|
-
|
|
6136
|
-
|
|
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
|
-
],
|
|
6859
|
+
"name": "AiModalComponent",
|
|
6860
|
+
"cssProperties": [
|
|
6861
|
+
{
|
|
6862
|
+
"description": "Width of the modal in non-fullscreen mode",
|
|
6863
|
+
"name": "--forge-ai-modal-width"
|
|
6864
|
+
},
|
|
6865
|
+
{
|
|
6866
|
+
"description": "Height of the modal in non-fullscreen mode",
|
|
6867
|
+
"name": "--forge-ai-modal-height"
|
|
6868
|
+
}
|
|
6869
|
+
],
|
|
6870
|
+
"slots": [
|
|
6871
|
+
{
|
|
6872
|
+
"description": "Default slot for modal content",
|
|
6873
|
+
"name": ""
|
|
6874
|
+
}
|
|
6875
|
+
],
|
|
6205
6876
|
"members": [
|
|
6206
6877
|
{
|
|
6207
6878
|
"kind": "field",
|
|
@@ -6653,6 +7324,133 @@
|
|
|
6653
7324
|
}
|
|
6654
7325
|
]
|
|
6655
7326
|
},
|
|
7327
|
+
{
|
|
7328
|
+
"kind": "javascript-module",
|
|
7329
|
+
"path": "src/lib/ai-reasoning/ai-reasoning.ts",
|
|
7330
|
+
"declarations": [
|
|
7331
|
+
{
|
|
7332
|
+
"kind": "variable",
|
|
7333
|
+
"name": "AiReasoningComponentTagName",
|
|
7334
|
+
"type": {
|
|
7335
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
7336
|
+
},
|
|
7337
|
+
"default": "'forge-ai-reasoning'"
|
|
7338
|
+
},
|
|
7339
|
+
{
|
|
7340
|
+
"kind": "class",
|
|
7341
|
+
"description": "",
|
|
7342
|
+
"name": "AiReasoningComponent",
|
|
7343
|
+
"members": [
|
|
7344
|
+
{
|
|
7345
|
+
"kind": "field",
|
|
7346
|
+
"name": "expanded",
|
|
7347
|
+
"type": {
|
|
7348
|
+
"text": "boolean"
|
|
7349
|
+
},
|
|
7350
|
+
"privacy": "public",
|
|
7351
|
+
"default": "false",
|
|
7352
|
+
"description": "Whether the reasoning is expanded",
|
|
7353
|
+
"attribute": "expanded",
|
|
7354
|
+
"reflects": true
|
|
7355
|
+
}
|
|
7356
|
+
],
|
|
7357
|
+
"attributes": [
|
|
7358
|
+
{
|
|
7359
|
+
"name": "expanded",
|
|
7360
|
+
"type": {
|
|
7361
|
+
"text": "boolean"
|
|
7362
|
+
},
|
|
7363
|
+
"default": "false",
|
|
7364
|
+
"description": "Whether the reasoning is expanded",
|
|
7365
|
+
"fieldName": "expanded"
|
|
7366
|
+
}
|
|
7367
|
+
],
|
|
7368
|
+
"superclass": {
|
|
7369
|
+
"name": "LitElement",
|
|
7370
|
+
"package": "lit"
|
|
7371
|
+
},
|
|
7372
|
+
"tagName": "forge-ai-reasoning",
|
|
7373
|
+
"customElement": true
|
|
7374
|
+
}
|
|
7375
|
+
],
|
|
7376
|
+
"exports": [
|
|
7377
|
+
{
|
|
7378
|
+
"kind": "js",
|
|
7379
|
+
"name": "AiReasoningComponentTagName",
|
|
7380
|
+
"declaration": {
|
|
7381
|
+
"name": "AiReasoningComponentTagName",
|
|
7382
|
+
"module": "src/lib/ai-reasoning/ai-reasoning.ts"
|
|
7383
|
+
}
|
|
7384
|
+
},
|
|
7385
|
+
{
|
|
7386
|
+
"kind": "js",
|
|
7387
|
+
"name": "AiReasoningComponent",
|
|
7388
|
+
"declaration": {
|
|
7389
|
+
"name": "AiReasoningComponent",
|
|
7390
|
+
"module": "src/lib/ai-reasoning/ai-reasoning.ts"
|
|
7391
|
+
}
|
|
7392
|
+
},
|
|
7393
|
+
{
|
|
7394
|
+
"kind": "custom-element-definition",
|
|
7395
|
+
"declaration": {
|
|
7396
|
+
"name": "AiReasoningComponent",
|
|
7397
|
+
"module": "src/lib/ai-reasoning/ai-reasoning.ts"
|
|
7398
|
+
}
|
|
7399
|
+
}
|
|
7400
|
+
]
|
|
7401
|
+
},
|
|
7402
|
+
{
|
|
7403
|
+
"kind": "javascript-module",
|
|
7404
|
+
"path": "src/lib/ai-response-message/ai-response-message.ts",
|
|
7405
|
+
"declarations": [
|
|
7406
|
+
{
|
|
7407
|
+
"kind": "variable",
|
|
7408
|
+
"name": "AiResponseMessageComponentTagName",
|
|
7409
|
+
"type": {
|
|
7410
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
7411
|
+
},
|
|
7412
|
+
"default": "'forge-ai-response-message'"
|
|
7413
|
+
},
|
|
7414
|
+
{
|
|
7415
|
+
"kind": "class",
|
|
7416
|
+
"description": "",
|
|
7417
|
+
"name": "AiResponseMessageComponent",
|
|
7418
|
+
"members": [],
|
|
7419
|
+
"superclass": {
|
|
7420
|
+
"name": "LitElement",
|
|
7421
|
+
"package": "lit"
|
|
7422
|
+
},
|
|
7423
|
+
"tagName": "forge-ai-response-message",
|
|
7424
|
+
"customElement": true,
|
|
7425
|
+
"summary": "A simple wrapper component for rendering assistant response message content."
|
|
7426
|
+
}
|
|
7427
|
+
],
|
|
7428
|
+
"exports": [
|
|
7429
|
+
{
|
|
7430
|
+
"kind": "js",
|
|
7431
|
+
"name": "AiResponseMessageComponentTagName",
|
|
7432
|
+
"declaration": {
|
|
7433
|
+
"name": "AiResponseMessageComponentTagName",
|
|
7434
|
+
"module": "src/lib/ai-response-message/ai-response-message.ts"
|
|
7435
|
+
}
|
|
7436
|
+
},
|
|
7437
|
+
{
|
|
7438
|
+
"kind": "js",
|
|
7439
|
+
"name": "AiResponseMessageComponent",
|
|
7440
|
+
"declaration": {
|
|
7441
|
+
"name": "AiResponseMessageComponent",
|
|
7442
|
+
"module": "src/lib/ai-response-message/ai-response-message.ts"
|
|
7443
|
+
}
|
|
7444
|
+
},
|
|
7445
|
+
{
|
|
7446
|
+
"kind": "custom-element-definition",
|
|
7447
|
+
"declaration": {
|
|
7448
|
+
"name": "AiResponseMessageComponent",
|
|
7449
|
+
"module": "src/lib/ai-response-message/ai-response-message.ts"
|
|
7450
|
+
}
|
|
7451
|
+
}
|
|
7452
|
+
]
|
|
7453
|
+
},
|
|
6656
7454
|
{
|
|
6657
7455
|
"kind": "javascript-module",
|
|
6658
7456
|
"path": "src/lib/ai-reasoning-header/ai-reasoning-header.ts",
|
|
@@ -6770,268 +7568,44 @@
|
|
|
6770
7568
|
},
|
|
6771
7569
|
{
|
|
6772
7570
|
"kind": "javascript-module",
|
|
6773
|
-
"path": "src/lib/ai-
|
|
7571
|
+
"path": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts",
|
|
6774
7572
|
"declarations": [
|
|
6775
7573
|
{
|
|
6776
7574
|
"kind": "variable",
|
|
6777
|
-
"name": "
|
|
7575
|
+
"name": "AiSidebarChatComponentTagName",
|
|
6778
7576
|
"type": {
|
|
6779
7577
|
"text": "keyof HTMLElementTagNameMap"
|
|
6780
7578
|
},
|
|
6781
|
-
"default": "'forge-ai-
|
|
7579
|
+
"default": "'forge-ai-sidebar-chat'"
|
|
6782
7580
|
},
|
|
6783
7581
|
{
|
|
6784
7582
|
"kind": "class",
|
|
6785
7583
|
"description": "",
|
|
6786
|
-
"name": "
|
|
7584
|
+
"name": "AiSidebarChatComponent",
|
|
7585
|
+
"slots": [
|
|
7586
|
+
{
|
|
7587
|
+
"description": "Default slot for chatbot component",
|
|
7588
|
+
"name": ""
|
|
7589
|
+
}
|
|
7590
|
+
],
|
|
6787
7591
|
"members": [
|
|
6788
7592
|
{
|
|
6789
7593
|
"kind": "field",
|
|
6790
|
-
"name": "
|
|
7594
|
+
"name": "open",
|
|
6791
7595
|
"type": {
|
|
6792
7596
|
"text": "boolean"
|
|
6793
7597
|
},
|
|
6794
7598
|
"privacy": "public",
|
|
6795
7599
|
"default": "false",
|
|
6796
|
-
"
|
|
6797
|
-
|
|
6798
|
-
"reflects": true
|
|
6799
|
-
}
|
|
6800
|
-
],
|
|
6801
|
-
"attributes": [
|
|
7600
|
+
"attribute": "open"
|
|
7601
|
+
},
|
|
6802
7602
|
{
|
|
7603
|
+
"kind": "field",
|
|
6803
7604
|
"name": "expanded",
|
|
6804
7605
|
"type": {
|
|
6805
7606
|
"text": "boolean"
|
|
6806
7607
|
},
|
|
6807
|
-
"
|
|
6808
|
-
"description": "Whether the reasoning is expanded",
|
|
6809
|
-
"fieldName": "expanded"
|
|
6810
|
-
}
|
|
6811
|
-
],
|
|
6812
|
-
"superclass": {
|
|
6813
|
-
"name": "LitElement",
|
|
6814
|
-
"package": "lit"
|
|
6815
|
-
},
|
|
6816
|
-
"tagName": "forge-ai-reasoning",
|
|
6817
|
-
"customElement": true
|
|
6818
|
-
}
|
|
6819
|
-
],
|
|
6820
|
-
"exports": [
|
|
6821
|
-
{
|
|
6822
|
-
"kind": "js",
|
|
6823
|
-
"name": "AiReasoningComponentTagName",
|
|
6824
|
-
"declaration": {
|
|
6825
|
-
"name": "AiReasoningComponentTagName",
|
|
6826
|
-
"module": "src/lib/ai-reasoning/ai-reasoning.ts"
|
|
6827
|
-
}
|
|
6828
|
-
},
|
|
6829
|
-
{
|
|
6830
|
-
"kind": "js",
|
|
6831
|
-
"name": "AiReasoningComponent",
|
|
6832
|
-
"declaration": {
|
|
6833
|
-
"name": "AiReasoningComponent",
|
|
6834
|
-
"module": "src/lib/ai-reasoning/ai-reasoning.ts"
|
|
6835
|
-
}
|
|
6836
|
-
},
|
|
6837
|
-
{
|
|
6838
|
-
"kind": "custom-element-definition",
|
|
6839
|
-
"declaration": {
|
|
6840
|
-
"name": "AiReasoningComponent",
|
|
6841
|
-
"module": "src/lib/ai-reasoning/ai-reasoning.ts"
|
|
6842
|
-
}
|
|
6843
|
-
}
|
|
6844
|
-
]
|
|
6845
|
-
},
|
|
6846
|
-
{
|
|
6847
|
-
"kind": "javascript-module",
|
|
6848
|
-
"path": "src/lib/ai-response-message/ai-response-message.ts",
|
|
6849
|
-
"declarations": [
|
|
6850
|
-
{
|
|
6851
|
-
"kind": "variable",
|
|
6852
|
-
"name": "AiResponseMessageComponentTagName",
|
|
6853
|
-
"type": {
|
|
6854
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
6855
|
-
},
|
|
6856
|
-
"default": "'forge-ai-response-message'"
|
|
6857
|
-
},
|
|
6858
|
-
{
|
|
6859
|
-
"kind": "class",
|
|
6860
|
-
"description": "",
|
|
6861
|
-
"name": "AiResponseMessageComponent",
|
|
6862
|
-
"members": [
|
|
6863
|
-
{
|
|
6864
|
-
"kind": "field",
|
|
6865
|
-
"name": "complete",
|
|
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
|
|
6874
|
-
},
|
|
6875
|
-
{
|
|
6876
|
-
"kind": "field",
|
|
6877
|
-
"name": "enableReactions",
|
|
6878
|
-
"type": {
|
|
6879
|
-
"text": "boolean"
|
|
6880
|
-
},
|
|
6881
|
-
"privacy": "public",
|
|
6882
|
-
"default": "false",
|
|
6883
|
-
"attribute": "enable-reactions"
|
|
6884
|
-
},
|
|
6885
|
-
{
|
|
6886
|
-
"kind": "field",
|
|
6887
|
-
"name": "hasDebugData",
|
|
6888
|
-
"type": {
|
|
6889
|
-
"text": "boolean"
|
|
6890
|
-
},
|
|
6891
|
-
"privacy": "public",
|
|
6892
|
-
"default": "false",
|
|
6893
|
-
"attribute": "has-debug-data"
|
|
6894
|
-
},
|
|
6895
|
-
{
|
|
6896
|
-
"kind": "field",
|
|
6897
|
-
"name": "eventStream",
|
|
6898
|
-
"type": {
|
|
6899
|
-
"text": "StreamEvent[] | undefined"
|
|
6900
|
-
},
|
|
6901
|
-
"privacy": "public"
|
|
6902
|
-
}
|
|
6903
|
-
],
|
|
6904
|
-
"events": [
|
|
6905
|
-
{
|
|
6906
|
-
"type": {
|
|
6907
|
-
"text": "CustomEvent<void>"
|
|
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>"
|
|
6929
|
-
},
|
|
6930
|
-
"description": "Fired when thumbs-down action is clicked.",
|
|
6931
|
-
"name": "forge-ai-response-message-thumbs-down"
|
|
6932
|
-
}
|
|
6933
|
-
],
|
|
6934
|
-
"attributes": [
|
|
6935
|
-
{
|
|
6936
|
-
"name": "complete",
|
|
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",
|
|
6946
|
-
"type": {
|
|
6947
|
-
"text": "boolean"
|
|
6948
|
-
},
|
|
6949
|
-
"default": "false",
|
|
6950
|
-
"fieldName": "enableReactions"
|
|
6951
|
-
},
|
|
6952
|
-
{
|
|
6953
|
-
"name": "has-debug-data",
|
|
6954
|
-
"type": {
|
|
6955
|
-
"text": "boolean"
|
|
6956
|
-
},
|
|
6957
|
-
"default": "false",
|
|
6958
|
-
"fieldName": "hasDebugData"
|
|
6959
|
-
}
|
|
6960
|
-
],
|
|
6961
|
-
"superclass": {
|
|
6962
|
-
"name": "LitElement",
|
|
6963
|
-
"package": "lit"
|
|
6964
|
-
},
|
|
6965
|
-
"tagName": "forge-ai-response-message",
|
|
6966
|
-
"customElement": true
|
|
6967
|
-
}
|
|
6968
|
-
],
|
|
6969
|
-
"exports": [
|
|
6970
|
-
{
|
|
6971
|
-
"kind": "js",
|
|
6972
|
-
"name": "AiResponseMessageComponentTagName",
|
|
6973
|
-
"declaration": {
|
|
6974
|
-
"name": "AiResponseMessageComponentTagName",
|
|
6975
|
-
"module": "src/lib/ai-response-message/ai-response-message.ts"
|
|
6976
|
-
}
|
|
6977
|
-
},
|
|
6978
|
-
{
|
|
6979
|
-
"kind": "js",
|
|
6980
|
-
"name": "AiResponseMessageComponent",
|
|
6981
|
-
"declaration": {
|
|
6982
|
-
"name": "AiResponseMessageComponent",
|
|
6983
|
-
"module": "src/lib/ai-response-message/ai-response-message.ts"
|
|
6984
|
-
}
|
|
6985
|
-
},
|
|
6986
|
-
{
|
|
6987
|
-
"kind": "custom-element-definition",
|
|
6988
|
-
"declaration": {
|
|
6989
|
-
"name": "AiResponseMessageComponent",
|
|
6990
|
-
"module": "src/lib/ai-response-message/ai-response-message.ts"
|
|
6991
|
-
}
|
|
6992
|
-
}
|
|
6993
|
-
]
|
|
6994
|
-
},
|
|
6995
|
-
{
|
|
6996
|
-
"kind": "javascript-module",
|
|
6997
|
-
"path": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts",
|
|
6998
|
-
"declarations": [
|
|
6999
|
-
{
|
|
7000
|
-
"kind": "variable",
|
|
7001
|
-
"name": "AiSidebarChatComponentTagName",
|
|
7002
|
-
"type": {
|
|
7003
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
7004
|
-
},
|
|
7005
|
-
"default": "'forge-ai-sidebar-chat'"
|
|
7006
|
-
},
|
|
7007
|
-
{
|
|
7008
|
-
"kind": "class",
|
|
7009
|
-
"description": "",
|
|
7010
|
-
"name": "AiSidebarChatComponent",
|
|
7011
|
-
"slots": [
|
|
7012
|
-
{
|
|
7013
|
-
"description": "Default slot for chatbot component",
|
|
7014
|
-
"name": ""
|
|
7015
|
-
}
|
|
7016
|
-
],
|
|
7017
|
-
"members": [
|
|
7018
|
-
{
|
|
7019
|
-
"kind": "field",
|
|
7020
|
-
"name": "open",
|
|
7021
|
-
"type": {
|
|
7022
|
-
"text": "boolean"
|
|
7023
|
-
},
|
|
7024
|
-
"privacy": "public",
|
|
7025
|
-
"default": "false",
|
|
7026
|
-
"attribute": "open"
|
|
7027
|
-
},
|
|
7028
|
-
{
|
|
7029
|
-
"kind": "field",
|
|
7030
|
-
"name": "expanded",
|
|
7031
|
-
"type": {
|
|
7032
|
-
"text": "boolean"
|
|
7033
|
-
},
|
|
7034
|
-
"privacy": "public",
|
|
7608
|
+
"privacy": "public",
|
|
7035
7609
|
"default": "false",
|
|
7036
7610
|
"attribute": "expanded"
|
|
7037
7611
|
},
|
|
@@ -7279,6 +7853,89 @@
|
|
|
7279
7853
|
}
|
|
7280
7854
|
]
|
|
7281
7855
|
},
|
|
7856
|
+
{
|
|
7857
|
+
"kind": "javascript-module",
|
|
7858
|
+
"path": "src/lib/ai-spinner/ai-spinner.ts",
|
|
7859
|
+
"declarations": [
|
|
7860
|
+
{
|
|
7861
|
+
"kind": "variable",
|
|
7862
|
+
"name": "AiSpinnerComponentTagName",
|
|
7863
|
+
"type": {
|
|
7864
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
7865
|
+
},
|
|
7866
|
+
"default": "'forge-ai-spinner'"
|
|
7867
|
+
},
|
|
7868
|
+
{
|
|
7869
|
+
"kind": "class",
|
|
7870
|
+
"description": "",
|
|
7871
|
+
"name": "AiSpinnerComponent",
|
|
7872
|
+
"cssProperties": [
|
|
7873
|
+
{
|
|
7874
|
+
"description": "Color of the spinner indicator",
|
|
7875
|
+
"name": "--forge-ai-spinner-color"
|
|
7876
|
+
},
|
|
7877
|
+
{
|
|
7878
|
+
"description": "Color of the spinner track",
|
|
7879
|
+
"name": "--forge-ai-spinner-track-color"
|
|
7880
|
+
}
|
|
7881
|
+
],
|
|
7882
|
+
"members": [
|
|
7883
|
+
{
|
|
7884
|
+
"kind": "field",
|
|
7885
|
+
"name": "size",
|
|
7886
|
+
"type": {
|
|
7887
|
+
"text": "SpinnerSize"
|
|
7888
|
+
},
|
|
7889
|
+
"privacy": "public",
|
|
7890
|
+
"default": "'medium'",
|
|
7891
|
+
"attribute": "size"
|
|
7892
|
+
}
|
|
7893
|
+
],
|
|
7894
|
+
"attributes": [
|
|
7895
|
+
{
|
|
7896
|
+
"name": "size",
|
|
7897
|
+
"type": {
|
|
7898
|
+
"text": "SpinnerSize"
|
|
7899
|
+
},
|
|
7900
|
+
"default": "'medium'",
|
|
7901
|
+
"fieldName": "size"
|
|
7902
|
+
}
|
|
7903
|
+
],
|
|
7904
|
+
"superclass": {
|
|
7905
|
+
"name": "LitElement",
|
|
7906
|
+
"package": "lit"
|
|
7907
|
+
},
|
|
7908
|
+
"tagName": "forge-ai-spinner",
|
|
7909
|
+
"customElement": true,
|
|
7910
|
+
"summary": "Indeterminate circular progress indicator."
|
|
7911
|
+
}
|
|
7912
|
+
],
|
|
7913
|
+
"exports": [
|
|
7914
|
+
{
|
|
7915
|
+
"kind": "js",
|
|
7916
|
+
"name": "AiSpinnerComponentTagName",
|
|
7917
|
+
"declaration": {
|
|
7918
|
+
"name": "AiSpinnerComponentTagName",
|
|
7919
|
+
"module": "src/lib/ai-spinner/ai-spinner.ts"
|
|
7920
|
+
}
|
|
7921
|
+
},
|
|
7922
|
+
{
|
|
7923
|
+
"kind": "js",
|
|
7924
|
+
"name": "AiSpinnerComponent",
|
|
7925
|
+
"declaration": {
|
|
7926
|
+
"name": "AiSpinnerComponent",
|
|
7927
|
+
"module": "src/lib/ai-spinner/ai-spinner.ts"
|
|
7928
|
+
}
|
|
7929
|
+
},
|
|
7930
|
+
{
|
|
7931
|
+
"kind": "custom-element-definition",
|
|
7932
|
+
"declaration": {
|
|
7933
|
+
"name": "AiSpinnerComponent",
|
|
7934
|
+
"module": "src/lib/ai-spinner/ai-spinner.ts"
|
|
7935
|
+
}
|
|
7936
|
+
}
|
|
7937
|
+
]
|
|
7938
|
+
},
|
|
7282
7939
|
{
|
|
7283
7940
|
"kind": "javascript-module",
|
|
7284
7941
|
"path": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts",
|
|
@@ -7440,89 +8097,6 @@
|
|
|
7440
8097
|
}
|
|
7441
8098
|
]
|
|
7442
8099
|
},
|
|
7443
|
-
{
|
|
7444
|
-
"kind": "javascript-module",
|
|
7445
|
-
"path": "src/lib/ai-spinner/ai-spinner.ts",
|
|
7446
|
-
"declarations": [
|
|
7447
|
-
{
|
|
7448
|
-
"kind": "variable",
|
|
7449
|
-
"name": "AiSpinnerComponentTagName",
|
|
7450
|
-
"type": {
|
|
7451
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
7452
|
-
},
|
|
7453
|
-
"default": "'forge-ai-spinner'"
|
|
7454
|
-
},
|
|
7455
|
-
{
|
|
7456
|
-
"kind": "class",
|
|
7457
|
-
"description": "",
|
|
7458
|
-
"name": "AiSpinnerComponent",
|
|
7459
|
-
"cssProperties": [
|
|
7460
|
-
{
|
|
7461
|
-
"description": "Color of the spinner indicator",
|
|
7462
|
-
"name": "--forge-ai-spinner-color"
|
|
7463
|
-
},
|
|
7464
|
-
{
|
|
7465
|
-
"description": "Color of the spinner track",
|
|
7466
|
-
"name": "--forge-ai-spinner-track-color"
|
|
7467
|
-
}
|
|
7468
|
-
],
|
|
7469
|
-
"members": [
|
|
7470
|
-
{
|
|
7471
|
-
"kind": "field",
|
|
7472
|
-
"name": "size",
|
|
7473
|
-
"type": {
|
|
7474
|
-
"text": "SpinnerSize"
|
|
7475
|
-
},
|
|
7476
|
-
"privacy": "public",
|
|
7477
|
-
"default": "'medium'",
|
|
7478
|
-
"attribute": "size"
|
|
7479
|
-
}
|
|
7480
|
-
],
|
|
7481
|
-
"attributes": [
|
|
7482
|
-
{
|
|
7483
|
-
"name": "size",
|
|
7484
|
-
"type": {
|
|
7485
|
-
"text": "SpinnerSize"
|
|
7486
|
-
},
|
|
7487
|
-
"default": "'medium'",
|
|
7488
|
-
"fieldName": "size"
|
|
7489
|
-
}
|
|
7490
|
-
],
|
|
7491
|
-
"superclass": {
|
|
7492
|
-
"name": "LitElement",
|
|
7493
|
-
"package": "lit"
|
|
7494
|
-
},
|
|
7495
|
-
"tagName": "forge-ai-spinner",
|
|
7496
|
-
"customElement": true,
|
|
7497
|
-
"summary": "Indeterminate circular progress indicator."
|
|
7498
|
-
}
|
|
7499
|
-
],
|
|
7500
|
-
"exports": [
|
|
7501
|
-
{
|
|
7502
|
-
"kind": "js",
|
|
7503
|
-
"name": "AiSpinnerComponentTagName",
|
|
7504
|
-
"declaration": {
|
|
7505
|
-
"name": "AiSpinnerComponentTagName",
|
|
7506
|
-
"module": "src/lib/ai-spinner/ai-spinner.ts"
|
|
7507
|
-
}
|
|
7508
|
-
},
|
|
7509
|
-
{
|
|
7510
|
-
"kind": "js",
|
|
7511
|
-
"name": "AiSpinnerComponent",
|
|
7512
|
-
"declaration": {
|
|
7513
|
-
"name": "AiSpinnerComponent",
|
|
7514
|
-
"module": "src/lib/ai-spinner/ai-spinner.ts"
|
|
7515
|
-
}
|
|
7516
|
-
},
|
|
7517
|
-
{
|
|
7518
|
-
"kind": "custom-element-definition",
|
|
7519
|
-
"declaration": {
|
|
7520
|
-
"name": "AiSpinnerComponent",
|
|
7521
|
-
"module": "src/lib/ai-spinner/ai-spinner.ts"
|
|
7522
|
-
}
|
|
7523
|
-
}
|
|
7524
|
-
]
|
|
7525
|
-
},
|
|
7526
8100
|
{
|
|
7527
8101
|
"kind": "javascript-module",
|
|
7528
8102
|
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
@@ -8044,10 +8618,61 @@
|
|
|
8044
8618
|
"exports": [
|
|
8045
8619
|
{
|
|
8046
8620
|
"kind": "js",
|
|
8047
|
-
"name": "DragController",
|
|
8621
|
+
"name": "DragController",
|
|
8622
|
+
"declaration": {
|
|
8623
|
+
"name": "DragController",
|
|
8624
|
+
"module": "src/lib/core/drag-controller.ts"
|
|
8625
|
+
}
|
|
8626
|
+
}
|
|
8627
|
+
]
|
|
8628
|
+
},
|
|
8629
|
+
{
|
|
8630
|
+
"kind": "javascript-module",
|
|
8631
|
+
"path": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts",
|
|
8632
|
+
"declarations": [
|
|
8633
|
+
{
|
|
8634
|
+
"kind": "variable",
|
|
8635
|
+
"name": "ThoughtDetailComponentTagName",
|
|
8636
|
+
"type": {
|
|
8637
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
8638
|
+
},
|
|
8639
|
+
"default": "'forge-ai-thought-detail'"
|
|
8640
|
+
},
|
|
8641
|
+
{
|
|
8642
|
+
"kind": "class",
|
|
8643
|
+
"description": "",
|
|
8644
|
+
"name": "ThoughtDetailComponent",
|
|
8645
|
+
"members": [],
|
|
8646
|
+
"superclass": {
|
|
8647
|
+
"name": "LitElement",
|
|
8648
|
+
"package": "lit"
|
|
8649
|
+
},
|
|
8650
|
+
"tagName": "forge-ai-thought-detail",
|
|
8651
|
+
"customElement": true
|
|
8652
|
+
}
|
|
8653
|
+
],
|
|
8654
|
+
"exports": [
|
|
8655
|
+
{
|
|
8656
|
+
"kind": "js",
|
|
8657
|
+
"name": "ThoughtDetailComponentTagName",
|
|
8658
|
+
"declaration": {
|
|
8659
|
+
"name": "ThoughtDetailComponentTagName",
|
|
8660
|
+
"module": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts"
|
|
8661
|
+
}
|
|
8662
|
+
},
|
|
8663
|
+
{
|
|
8664
|
+
"kind": "js",
|
|
8665
|
+
"name": "ThoughtDetailComponent",
|
|
8048
8666
|
"declaration": {
|
|
8049
|
-
"name": "
|
|
8050
|
-
"module": "src/lib/
|
|
8667
|
+
"name": "ThoughtDetailComponent",
|
|
8668
|
+
"module": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts"
|
|
8669
|
+
}
|
|
8670
|
+
},
|
|
8671
|
+
{
|
|
8672
|
+
"kind": "custom-element-definition",
|
|
8673
|
+
"declaration": {
|
|
8674
|
+
"name": "ThoughtDetailComponent",
|
|
8675
|
+
"module": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts"
|
|
8051
8676
|
}
|
|
8052
8677
|
}
|
|
8053
8678
|
]
|
|
@@ -8138,57 +8763,6 @@
|
|
|
8138
8763
|
}
|
|
8139
8764
|
]
|
|
8140
8765
|
},
|
|
8141
|
-
{
|
|
8142
|
-
"kind": "javascript-module",
|
|
8143
|
-
"path": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts",
|
|
8144
|
-
"declarations": [
|
|
8145
|
-
{
|
|
8146
|
-
"kind": "variable",
|
|
8147
|
-
"name": "ThoughtDetailComponentTagName",
|
|
8148
|
-
"type": {
|
|
8149
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
8150
|
-
},
|
|
8151
|
-
"default": "'forge-ai-thought-detail'"
|
|
8152
|
-
},
|
|
8153
|
-
{
|
|
8154
|
-
"kind": "class",
|
|
8155
|
-
"description": "",
|
|
8156
|
-
"name": "ThoughtDetailComponent",
|
|
8157
|
-
"members": [],
|
|
8158
|
-
"superclass": {
|
|
8159
|
-
"name": "LitElement",
|
|
8160
|
-
"package": "lit"
|
|
8161
|
-
},
|
|
8162
|
-
"tagName": "forge-ai-thought-detail",
|
|
8163
|
-
"customElement": true
|
|
8164
|
-
}
|
|
8165
|
-
],
|
|
8166
|
-
"exports": [
|
|
8167
|
-
{
|
|
8168
|
-
"kind": "js",
|
|
8169
|
-
"name": "ThoughtDetailComponentTagName",
|
|
8170
|
-
"declaration": {
|
|
8171
|
-
"name": "ThoughtDetailComponentTagName",
|
|
8172
|
-
"module": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts"
|
|
8173
|
-
}
|
|
8174
|
-
},
|
|
8175
|
-
{
|
|
8176
|
-
"kind": "js",
|
|
8177
|
-
"name": "ThoughtDetailComponent",
|
|
8178
|
-
"declaration": {
|
|
8179
|
-
"name": "ThoughtDetailComponent",
|
|
8180
|
-
"module": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts"
|
|
8181
|
-
}
|
|
8182
|
-
},
|
|
8183
|
-
{
|
|
8184
|
-
"kind": "custom-element-definition",
|
|
8185
|
-
"declaration": {
|
|
8186
|
-
"name": "ThoughtDetailComponent",
|
|
8187
|
-
"module": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts"
|
|
8188
|
-
}
|
|
8189
|
-
}
|
|
8190
|
-
]
|
|
8191
|
-
},
|
|
8192
8766
|
{
|
|
8193
8767
|
"kind": "javascript-module",
|
|
8194
8768
|
"path": "src/lib/ai-chain-of-thought/thought-image/thought-image.ts",
|
|
@@ -8449,32 +9023,239 @@
|
|
|
8449
9023
|
"name": "LitElement",
|
|
8450
9024
|
"package": "lit"
|
|
8451
9025
|
},
|
|
8452
|
-
"tagName": "forge-ai-reasoning-content",
|
|
9026
|
+
"tagName": "forge-ai-reasoning-content",
|
|
9027
|
+
"customElement": true
|
|
9028
|
+
}
|
|
9029
|
+
],
|
|
9030
|
+
"exports": [
|
|
9031
|
+
{
|
|
9032
|
+
"kind": "js",
|
|
9033
|
+
"name": "ReasoningContentComponentTagName",
|
|
9034
|
+
"declaration": {
|
|
9035
|
+
"name": "ReasoningContentComponentTagName",
|
|
9036
|
+
"module": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts"
|
|
9037
|
+
}
|
|
9038
|
+
},
|
|
9039
|
+
{
|
|
9040
|
+
"kind": "js",
|
|
9041
|
+
"name": "ReasoningContentComponent",
|
|
9042
|
+
"declaration": {
|
|
9043
|
+
"name": "ReasoningContentComponent",
|
|
9044
|
+
"module": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts"
|
|
9045
|
+
}
|
|
9046
|
+
},
|
|
9047
|
+
{
|
|
9048
|
+
"kind": "custom-element-definition",
|
|
9049
|
+
"declaration": {
|
|
9050
|
+
"name": "ReasoningContentComponent",
|
|
9051
|
+
"module": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts"
|
|
9052
|
+
}
|
|
9053
|
+
}
|
|
9054
|
+
]
|
|
9055
|
+
},
|
|
9056
|
+
{
|
|
9057
|
+
"kind": "javascript-module",
|
|
9058
|
+
"path": "src/lib/core/overlay/overlay.ts",
|
|
9059
|
+
"declarations": [
|
|
9060
|
+
{
|
|
9061
|
+
"kind": "class",
|
|
9062
|
+
"description": "",
|
|
9063
|
+
"name": "ForgeAiOverlayComponent",
|
|
9064
|
+
"slots": [
|
|
9065
|
+
{
|
|
9066
|
+
"description": "The default slot for overlay content.",
|
|
9067
|
+
"name": ""
|
|
9068
|
+
}
|
|
9069
|
+
],
|
|
9070
|
+
"members": [
|
|
9071
|
+
{
|
|
9072
|
+
"kind": "field",
|
|
9073
|
+
"name": "anchor",
|
|
9074
|
+
"type": {
|
|
9075
|
+
"text": "Element | null"
|
|
9076
|
+
},
|
|
9077
|
+
"privacy": "public",
|
|
9078
|
+
"default": "null",
|
|
9079
|
+
"description": "The anchor element to position the overlay relative to.",
|
|
9080
|
+
"attribute": "anchor"
|
|
9081
|
+
},
|
|
9082
|
+
{
|
|
9083
|
+
"kind": "field",
|
|
9084
|
+
"name": "placement",
|
|
9085
|
+
"type": {
|
|
9086
|
+
"text": "OverlayPlacement"
|
|
9087
|
+
},
|
|
9088
|
+
"privacy": "public",
|
|
9089
|
+
"default": "'bottom-start'",
|
|
9090
|
+
"description": "The placement of the overlay relative to the anchor.",
|
|
9091
|
+
"attribute": "placement"
|
|
9092
|
+
},
|
|
9093
|
+
{
|
|
9094
|
+
"kind": "field",
|
|
9095
|
+
"name": "flip",
|
|
9096
|
+
"type": {
|
|
9097
|
+
"text": "boolean"
|
|
9098
|
+
},
|
|
9099
|
+
"privacy": "public",
|
|
9100
|
+
"default": "true",
|
|
9101
|
+
"description": "Whether the overlay should flip to the opposite side when there's no space.",
|
|
9102
|
+
"attribute": "flip"
|
|
9103
|
+
},
|
|
9104
|
+
{
|
|
9105
|
+
"kind": "field",
|
|
9106
|
+
"name": "shift",
|
|
9107
|
+
"type": {
|
|
9108
|
+
"text": "boolean"
|
|
9109
|
+
},
|
|
9110
|
+
"privacy": "public",
|
|
9111
|
+
"default": "false",
|
|
9112
|
+
"description": "Whether the overlay should shift to stay in view.",
|
|
9113
|
+
"attribute": "shift"
|
|
9114
|
+
},
|
|
9115
|
+
{
|
|
9116
|
+
"kind": "field",
|
|
9117
|
+
"name": "open",
|
|
9118
|
+
"type": {
|
|
9119
|
+
"text": "boolean"
|
|
9120
|
+
},
|
|
9121
|
+
"privacy": "public",
|
|
9122
|
+
"default": "false",
|
|
9123
|
+
"description": "Whether the overlay is open.",
|
|
9124
|
+
"attribute": "open",
|
|
9125
|
+
"reflects": true
|
|
9126
|
+
},
|
|
9127
|
+
{
|
|
9128
|
+
"kind": "field",
|
|
9129
|
+
"name": "arrowElement",
|
|
9130
|
+
"type": {
|
|
9131
|
+
"text": "HTMLElement | null"
|
|
9132
|
+
},
|
|
9133
|
+
"privacy": "public",
|
|
9134
|
+
"default": "null",
|
|
9135
|
+
"description": "The arrow element to position relative to the overlay.",
|
|
9136
|
+
"attribute": "arrowElement"
|
|
9137
|
+
},
|
|
9138
|
+
{
|
|
9139
|
+
"kind": "field",
|
|
9140
|
+
"name": "offset",
|
|
9141
|
+
"type": {
|
|
9142
|
+
"text": "OverlayOffset | undefined"
|
|
9143
|
+
},
|
|
9144
|
+
"privacy": "public",
|
|
9145
|
+
"default": "undefined",
|
|
9146
|
+
"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.",
|
|
9147
|
+
"attribute": "offset"
|
|
9148
|
+
},
|
|
9149
|
+
{
|
|
9150
|
+
"kind": "field",
|
|
9151
|
+
"name": "dismissMode",
|
|
9152
|
+
"type": {
|
|
9153
|
+
"text": "'auto' | 'manual'"
|
|
9154
|
+
},
|
|
9155
|
+
"privacy": "public",
|
|
9156
|
+
"default": "'auto'",
|
|
9157
|
+
"description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
9158
|
+
"attribute": "dismiss-mode"
|
|
9159
|
+
}
|
|
9160
|
+
],
|
|
9161
|
+
"attributes": [
|
|
9162
|
+
{
|
|
9163
|
+
"name": "anchor",
|
|
9164
|
+
"type": {
|
|
9165
|
+
"text": "Element | null"
|
|
9166
|
+
},
|
|
9167
|
+
"default": "null",
|
|
9168
|
+
"description": "The anchor element to position the overlay relative to.",
|
|
9169
|
+
"fieldName": "anchor"
|
|
9170
|
+
},
|
|
9171
|
+
{
|
|
9172
|
+
"name": "placement",
|
|
9173
|
+
"type": {
|
|
9174
|
+
"text": "OverlayPlacement"
|
|
9175
|
+
},
|
|
9176
|
+
"default": "'bottom-start'",
|
|
9177
|
+
"description": "The placement of the overlay relative to the anchor.",
|
|
9178
|
+
"fieldName": "placement"
|
|
9179
|
+
},
|
|
9180
|
+
{
|
|
9181
|
+
"name": "flip",
|
|
9182
|
+
"type": {
|
|
9183
|
+
"text": "boolean"
|
|
9184
|
+
},
|
|
9185
|
+
"default": "true",
|
|
9186
|
+
"description": "Whether the overlay should flip to the opposite side when there's no space.",
|
|
9187
|
+
"fieldName": "flip"
|
|
9188
|
+
},
|
|
9189
|
+
{
|
|
9190
|
+
"name": "shift",
|
|
9191
|
+
"type": {
|
|
9192
|
+
"text": "boolean"
|
|
9193
|
+
},
|
|
9194
|
+
"default": "false",
|
|
9195
|
+
"description": "Whether the overlay should shift to stay in view.",
|
|
9196
|
+
"fieldName": "shift"
|
|
9197
|
+
},
|
|
9198
|
+
{
|
|
9199
|
+
"name": "open",
|
|
9200
|
+
"type": {
|
|
9201
|
+
"text": "boolean"
|
|
9202
|
+
},
|
|
9203
|
+
"default": "false",
|
|
9204
|
+
"description": "Whether the overlay is open.",
|
|
9205
|
+
"fieldName": "open"
|
|
9206
|
+
},
|
|
9207
|
+
{
|
|
9208
|
+
"name": "arrowElement",
|
|
9209
|
+
"type": {
|
|
9210
|
+
"text": "HTMLElement | null"
|
|
9211
|
+
},
|
|
9212
|
+
"default": "null",
|
|
9213
|
+
"description": "The arrow element to position relative to the overlay.",
|
|
9214
|
+
"fieldName": "arrowElement"
|
|
9215
|
+
},
|
|
9216
|
+
{
|
|
9217
|
+
"name": "offset",
|
|
9218
|
+
"type": {
|
|
9219
|
+
"text": "OverlayOffset | undefined"
|
|
9220
|
+
},
|
|
9221
|
+
"default": "undefined",
|
|
9222
|
+
"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.",
|
|
9223
|
+
"fieldName": "offset"
|
|
9224
|
+
},
|
|
9225
|
+
{
|
|
9226
|
+
"name": "dismiss-mode",
|
|
9227
|
+
"type": {
|
|
9228
|
+
"text": "'auto' | 'manual'"
|
|
9229
|
+
},
|
|
9230
|
+
"default": "'auto'",
|
|
9231
|
+
"description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
9232
|
+
"fieldName": "dismissMode"
|
|
9233
|
+
}
|
|
9234
|
+
],
|
|
9235
|
+
"superclass": {
|
|
9236
|
+
"name": "LitElement",
|
|
9237
|
+
"package": "lit"
|
|
9238
|
+
},
|
|
9239
|
+
"summary": "A low-level overlay component for internal use within AI components.",
|
|
9240
|
+
"tagName": "forge-ai-overlay",
|
|
8453
9241
|
"customElement": true
|
|
8454
9242
|
}
|
|
8455
9243
|
],
|
|
8456
9244
|
"exports": [
|
|
8457
9245
|
{
|
|
8458
9246
|
"kind": "js",
|
|
8459
|
-
"name": "
|
|
8460
|
-
"declaration": {
|
|
8461
|
-
"name": "ReasoningContentComponentTagName",
|
|
8462
|
-
"module": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts"
|
|
8463
|
-
}
|
|
8464
|
-
},
|
|
8465
|
-
{
|
|
8466
|
-
"kind": "js",
|
|
8467
|
-
"name": "ReasoningContentComponent",
|
|
9247
|
+
"name": "ForgeAiOverlayComponent",
|
|
8468
9248
|
"declaration": {
|
|
8469
|
-
"name": "
|
|
8470
|
-
"module": "src/lib/
|
|
9249
|
+
"name": "ForgeAiOverlayComponent",
|
|
9250
|
+
"module": "src/lib/core/overlay/overlay.ts"
|
|
8471
9251
|
}
|
|
8472
9252
|
},
|
|
8473
9253
|
{
|
|
8474
9254
|
"kind": "custom-element-definition",
|
|
9255
|
+
"name": "forge-ai-overlay",
|
|
8475
9256
|
"declaration": {
|
|
8476
|
-
"name": "
|
|
8477
|
-
"module": "src/lib/
|
|
9257
|
+
"name": "ForgeAiOverlayComponent",
|
|
9258
|
+
"module": "src/lib/core/overlay/overlay.ts"
|
|
8478
9259
|
}
|
|
8479
9260
|
}
|
|
8480
9261
|
]
|
|
@@ -8776,287 +9557,89 @@
|
|
|
8776
9557
|
"privacy": "public",
|
|
8777
9558
|
"default": "500",
|
|
8778
9559
|
"description": "Delay in milliseconds before showing the tooltip.",
|
|
8779
|
-
"attribute": "delay"
|
|
8780
|
-
},
|
|
8781
|
-
{
|
|
8782
|
-
"kind": "field",
|
|
8783
|
-
"name": "hideDelay",
|
|
8784
|
-
"type": {
|
|
8785
|
-
"text": "number"
|
|
8786
|
-
},
|
|
8787
|
-
"privacy": "public",
|
|
8788
|
-
"default": "0",
|
|
8789
|
-
"description": "Delay in milliseconds before hiding the tooltip.",
|
|
8790
|
-
"attribute": "hide-delay"
|
|
8791
|
-
},
|
|
8792
|
-
{
|
|
8793
|
-
"kind": "method",
|
|
8794
|
-
"name": "show",
|
|
8795
|
-
"privacy": "public",
|
|
8796
|
-
"return": {
|
|
8797
|
-
"type": {
|
|
8798
|
-
"text": "void"
|
|
8799
|
-
}
|
|
8800
|
-
},
|
|
8801
|
-
"description": "Show the tooltip programmatically."
|
|
8802
|
-
},
|
|
8803
|
-
{
|
|
8804
|
-
"kind": "method",
|
|
8805
|
-
"name": "hide",
|
|
8806
|
-
"privacy": "public",
|
|
8807
|
-
"return": {
|
|
8808
|
-
"type": {
|
|
8809
|
-
"text": "void"
|
|
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."
|
|
8824
|
-
}
|
|
8825
|
-
],
|
|
8826
|
-
"attributes": [
|
|
8827
|
-
{
|
|
8828
|
-
"name": "for",
|
|
8829
|
-
"type": {
|
|
8830
|
-
"text": "string"
|
|
8831
|
-
},
|
|
8832
|
-
"default": "''",
|
|
8833
|
-
"description": "The ID of the anchor element to attach the tooltip to.",
|
|
8834
|
-
"fieldName": "for"
|
|
8835
|
-
},
|
|
8836
|
-
{
|
|
8837
|
-
"name": "text",
|
|
8838
|
-
"type": {
|
|
8839
|
-
"text": "string"
|
|
8840
|
-
},
|
|
8841
|
-
"default": "''",
|
|
8842
|
-
"description": "The text content of the tooltip (alternative to slotted content).",
|
|
8843
|
-
"fieldName": "text"
|
|
8844
|
-
},
|
|
8845
|
-
{
|
|
8846
|
-
"name": "placement",
|
|
8847
|
-
"type": {
|
|
8848
|
-
"text": "TooltipPlacement"
|
|
8849
|
-
},
|
|
8850
|
-
"default": "'top'",
|
|
8851
|
-
"description": "The placement of the tooltip relative to the anchor.",
|
|
8852
|
-
"fieldName": "placement"
|
|
8853
|
-
},
|
|
8854
|
-
{
|
|
8855
|
-
"name": "trigger",
|
|
8856
|
-
"type": {
|
|
8857
|
-
"text": "TooltipTrigger"
|
|
8858
|
-
},
|
|
8859
|
-
"default": "'hover'",
|
|
8860
|
-
"description": "How the tooltip should be triggered.",
|
|
8861
|
-
"fieldName": "trigger"
|
|
8862
|
-
},
|
|
8863
|
-
{
|
|
8864
|
-
"name": "open",
|
|
8865
|
-
"type": {
|
|
8866
|
-
"text": "boolean"
|
|
8867
|
-
},
|
|
8868
|
-
"default": "false",
|
|
8869
|
-
"description": "Whether the tooltip is open.",
|
|
8870
|
-
"fieldName": "open"
|
|
8871
|
-
},
|
|
8872
|
-
{
|
|
8873
|
-
"name": "delay",
|
|
8874
|
-
"type": {
|
|
8875
|
-
"text": "number"
|
|
8876
|
-
},
|
|
8877
|
-
"default": "500",
|
|
8878
|
-
"description": "Delay in milliseconds before showing the tooltip.",
|
|
8879
|
-
"fieldName": "delay"
|
|
8880
|
-
},
|
|
8881
|
-
{
|
|
8882
|
-
"name": "hide-delay",
|
|
8883
|
-
"type": {
|
|
8884
|
-
"text": "number"
|
|
8885
|
-
},
|
|
8886
|
-
"default": "0",
|
|
8887
|
-
"description": "Delay in milliseconds before hiding the tooltip.",
|
|
8888
|
-
"fieldName": "hideDelay"
|
|
8889
|
-
}
|
|
8890
|
-
],
|
|
8891
|
-
"superclass": {
|
|
8892
|
-
"name": "LitElement",
|
|
8893
|
-
"package": "lit"
|
|
8894
|
-
},
|
|
8895
|
-
"summary": "A tooltip component with accessibility features and dynamic positioning.",
|
|
8896
|
-
"tagName": "forge-ai-tooltip",
|
|
8897
|
-
"customElement": true
|
|
8898
|
-
}
|
|
8899
|
-
],
|
|
8900
|
-
"exports": [
|
|
8901
|
-
{
|
|
8902
|
-
"kind": "js",
|
|
8903
|
-
"name": "ForgeAiTooltipComponent",
|
|
8904
|
-
"declaration": {
|
|
8905
|
-
"name": "ForgeAiTooltipComponent",
|
|
8906
|
-
"module": "src/lib/core/tooltip/tooltip.ts"
|
|
8907
|
-
}
|
|
8908
|
-
},
|
|
8909
|
-
{
|
|
8910
|
-
"kind": "custom-element-definition",
|
|
8911
|
-
"name": "forge-ai-tooltip",
|
|
8912
|
-
"declaration": {
|
|
8913
|
-
"name": "ForgeAiTooltipComponent",
|
|
8914
|
-
"module": "src/lib/core/tooltip/tooltip.ts"
|
|
8915
|
-
}
|
|
8916
|
-
}
|
|
8917
|
-
]
|
|
8918
|
-
},
|
|
8919
|
-
{
|
|
8920
|
-
"kind": "javascript-module",
|
|
8921
|
-
"path": "src/lib/core/overlay/overlay.ts",
|
|
8922
|
-
"declarations": [
|
|
8923
|
-
{
|
|
8924
|
-
"kind": "class",
|
|
8925
|
-
"description": "",
|
|
8926
|
-
"name": "ForgeAiOverlayComponent",
|
|
8927
|
-
"slots": [
|
|
8928
|
-
{
|
|
8929
|
-
"description": "The default slot for overlay content.",
|
|
8930
|
-
"name": ""
|
|
8931
|
-
}
|
|
8932
|
-
],
|
|
8933
|
-
"members": [
|
|
8934
|
-
{
|
|
8935
|
-
"kind": "field",
|
|
8936
|
-
"name": "anchor",
|
|
8937
|
-
"type": {
|
|
8938
|
-
"text": "Element | null"
|
|
8939
|
-
},
|
|
8940
|
-
"privacy": "public",
|
|
8941
|
-
"default": "null",
|
|
8942
|
-
"description": "The anchor element to position the overlay relative to.",
|
|
8943
|
-
"attribute": "anchor"
|
|
8944
|
-
},
|
|
8945
|
-
{
|
|
8946
|
-
"kind": "field",
|
|
8947
|
-
"name": "placement",
|
|
8948
|
-
"type": {
|
|
8949
|
-
"text": "OverlayPlacement"
|
|
8950
|
-
},
|
|
8951
|
-
"privacy": "public",
|
|
8952
|
-
"default": "'bottom-start'",
|
|
8953
|
-
"description": "The placement of the overlay relative to the anchor.",
|
|
8954
|
-
"attribute": "placement"
|
|
8955
|
-
},
|
|
8956
|
-
{
|
|
8957
|
-
"kind": "field",
|
|
8958
|
-
"name": "flip",
|
|
8959
|
-
"type": {
|
|
8960
|
-
"text": "boolean"
|
|
8961
|
-
},
|
|
8962
|
-
"privacy": "public",
|
|
8963
|
-
"default": "true",
|
|
8964
|
-
"description": "Whether the overlay should flip to the opposite side when there's no space.",
|
|
8965
|
-
"attribute": "flip"
|
|
8966
|
-
},
|
|
8967
|
-
{
|
|
8968
|
-
"kind": "field",
|
|
8969
|
-
"name": "shift",
|
|
8970
|
-
"type": {
|
|
8971
|
-
"text": "boolean"
|
|
8972
|
-
},
|
|
8973
|
-
"privacy": "public",
|
|
8974
|
-
"default": "false",
|
|
8975
|
-
"description": "Whether the overlay should shift to stay in view.",
|
|
8976
|
-
"attribute": "shift"
|
|
8977
|
-
},
|
|
8978
|
-
{
|
|
8979
|
-
"kind": "field",
|
|
8980
|
-
"name": "open",
|
|
8981
|
-
"type": {
|
|
8982
|
-
"text": "boolean"
|
|
8983
|
-
},
|
|
8984
|
-
"privacy": "public",
|
|
8985
|
-
"default": "false",
|
|
8986
|
-
"description": "Whether the overlay is open.",
|
|
8987
|
-
"attribute": "open",
|
|
8988
|
-
"reflects": true
|
|
9560
|
+
"attribute": "delay"
|
|
8989
9561
|
},
|
|
8990
9562
|
{
|
|
8991
9563
|
"kind": "field",
|
|
8992
|
-
"name": "
|
|
9564
|
+
"name": "hideDelay",
|
|
8993
9565
|
"type": {
|
|
8994
|
-
"text": "
|
|
9566
|
+
"text": "number"
|
|
8995
9567
|
},
|
|
8996
9568
|
"privacy": "public",
|
|
8997
|
-
"default": "
|
|
8998
|
-
"description": "
|
|
8999
|
-
"attribute": "
|
|
9569
|
+
"default": "0",
|
|
9570
|
+
"description": "Delay in milliseconds before hiding the tooltip.",
|
|
9571
|
+
"attribute": "hide-delay"
|
|
9000
9572
|
},
|
|
9001
9573
|
{
|
|
9002
|
-
"kind": "
|
|
9003
|
-
"name": "
|
|
9004
|
-
"type": {
|
|
9005
|
-
"text": "OverlayOffset | undefined"
|
|
9006
|
-
},
|
|
9574
|
+
"kind": "method",
|
|
9575
|
+
"name": "show",
|
|
9007
9576
|
"privacy": "public",
|
|
9008
|
-
"
|
|
9009
|
-
|
|
9010
|
-
|
|
9577
|
+
"return": {
|
|
9578
|
+
"type": {
|
|
9579
|
+
"text": "void"
|
|
9580
|
+
}
|
|
9581
|
+
},
|
|
9582
|
+
"description": "Show the tooltip programmatically."
|
|
9011
9583
|
},
|
|
9012
9584
|
{
|
|
9013
|
-
"kind": "
|
|
9014
|
-
"name": "
|
|
9015
|
-
"
|
|
9016
|
-
|
|
9585
|
+
"kind": "method",
|
|
9586
|
+
"name": "hide",
|
|
9587
|
+
"privacy": "public",
|
|
9588
|
+
"return": {
|
|
9589
|
+
"type": {
|
|
9590
|
+
"text": "void"
|
|
9591
|
+
}
|
|
9017
9592
|
},
|
|
9593
|
+
"description": "Hide the tooltip programmatically."
|
|
9594
|
+
},
|
|
9595
|
+
{
|
|
9596
|
+
"kind": "method",
|
|
9597
|
+
"name": "toggle",
|
|
9018
9598
|
"privacy": "public",
|
|
9019
|
-
"
|
|
9020
|
-
|
|
9021
|
-
|
|
9599
|
+
"return": {
|
|
9600
|
+
"type": {
|
|
9601
|
+
"text": "void"
|
|
9602
|
+
}
|
|
9603
|
+
},
|
|
9604
|
+
"description": "Toggle the tooltip programmatically."
|
|
9022
9605
|
}
|
|
9023
9606
|
],
|
|
9024
9607
|
"attributes": [
|
|
9025
9608
|
{
|
|
9026
|
-
"name": "
|
|
9609
|
+
"name": "for",
|
|
9027
9610
|
"type": {
|
|
9028
|
-
"text": "
|
|
9611
|
+
"text": "string"
|
|
9029
9612
|
},
|
|
9030
|
-
"default": "
|
|
9031
|
-
"description": "The anchor element to
|
|
9032
|
-
"fieldName": "
|
|
9613
|
+
"default": "''",
|
|
9614
|
+
"description": "The ID of the anchor element to attach the tooltip to.",
|
|
9615
|
+
"fieldName": "for"
|
|
9033
9616
|
},
|
|
9034
9617
|
{
|
|
9035
|
-
"name": "
|
|
9618
|
+
"name": "text",
|
|
9036
9619
|
"type": {
|
|
9037
|
-
"text": "
|
|
9620
|
+
"text": "string"
|
|
9038
9621
|
},
|
|
9039
|
-
"default": "'
|
|
9040
|
-
"description": "The
|
|
9041
|
-
"fieldName": "
|
|
9622
|
+
"default": "''",
|
|
9623
|
+
"description": "The text content of the tooltip (alternative to slotted content).",
|
|
9624
|
+
"fieldName": "text"
|
|
9042
9625
|
},
|
|
9043
9626
|
{
|
|
9044
|
-
"name": "
|
|
9627
|
+
"name": "placement",
|
|
9045
9628
|
"type": {
|
|
9046
|
-
"text": "
|
|
9629
|
+
"text": "TooltipPlacement"
|
|
9047
9630
|
},
|
|
9048
|
-
"default": "
|
|
9049
|
-
"description": "
|
|
9050
|
-
"fieldName": "
|
|
9631
|
+
"default": "'top'",
|
|
9632
|
+
"description": "The placement of the tooltip relative to the anchor.",
|
|
9633
|
+
"fieldName": "placement"
|
|
9051
9634
|
},
|
|
9052
9635
|
{
|
|
9053
|
-
"name": "
|
|
9636
|
+
"name": "trigger",
|
|
9054
9637
|
"type": {
|
|
9055
|
-
"text": "
|
|
9638
|
+
"text": "TooltipTrigger"
|
|
9056
9639
|
},
|
|
9057
|
-
"default": "
|
|
9058
|
-
"description": "
|
|
9059
|
-
"fieldName": "
|
|
9640
|
+
"default": "'hover'",
|
|
9641
|
+
"description": "How the tooltip should be triggered.",
|
|
9642
|
+
"fieldName": "trigger"
|
|
9060
9643
|
},
|
|
9061
9644
|
{
|
|
9062
9645
|
"name": "open",
|
|
@@ -9064,61 +9647,52 @@
|
|
|
9064
9647
|
"text": "boolean"
|
|
9065
9648
|
},
|
|
9066
9649
|
"default": "false",
|
|
9067
|
-
"description": "Whether the
|
|
9650
|
+
"description": "Whether the tooltip is open.",
|
|
9068
9651
|
"fieldName": "open"
|
|
9069
9652
|
},
|
|
9070
9653
|
{
|
|
9071
|
-
"name": "
|
|
9072
|
-
"type": {
|
|
9073
|
-
"text": "HTMLElement | null"
|
|
9074
|
-
},
|
|
9075
|
-
"default": "null",
|
|
9076
|
-
"description": "The arrow element to position relative to the overlay.",
|
|
9077
|
-
"fieldName": "arrowElement"
|
|
9078
|
-
},
|
|
9079
|
-
{
|
|
9080
|
-
"name": "offset",
|
|
9654
|
+
"name": "delay",
|
|
9081
9655
|
"type": {
|
|
9082
|
-
"text": "
|
|
9656
|
+
"text": "number"
|
|
9083
9657
|
},
|
|
9084
|
-
"default": "
|
|
9085
|
-
"description": "
|
|
9086
|
-
"fieldName": "
|
|
9658
|
+
"default": "500",
|
|
9659
|
+
"description": "Delay in milliseconds before showing the tooltip.",
|
|
9660
|
+
"fieldName": "delay"
|
|
9087
9661
|
},
|
|
9088
9662
|
{
|
|
9089
|
-
"name": "
|
|
9663
|
+
"name": "hide-delay",
|
|
9090
9664
|
"type": {
|
|
9091
|
-
"text": "
|
|
9665
|
+
"text": "number"
|
|
9092
9666
|
},
|
|
9093
|
-
"default": "
|
|
9094
|
-
"description": "
|
|
9095
|
-
"fieldName": "
|
|
9667
|
+
"default": "0",
|
|
9668
|
+
"description": "Delay in milliseconds before hiding the tooltip.",
|
|
9669
|
+
"fieldName": "hideDelay"
|
|
9096
9670
|
}
|
|
9097
9671
|
],
|
|
9098
9672
|
"superclass": {
|
|
9099
9673
|
"name": "LitElement",
|
|
9100
9674
|
"package": "lit"
|
|
9101
9675
|
},
|
|
9102
|
-
"summary": "A
|
|
9103
|
-
"tagName": "forge-ai-
|
|
9676
|
+
"summary": "A tooltip component with accessibility features and dynamic positioning.",
|
|
9677
|
+
"tagName": "forge-ai-tooltip",
|
|
9104
9678
|
"customElement": true
|
|
9105
9679
|
}
|
|
9106
9680
|
],
|
|
9107
9681
|
"exports": [
|
|
9108
9682
|
{
|
|
9109
9683
|
"kind": "js",
|
|
9110
|
-
"name": "
|
|
9684
|
+
"name": "ForgeAiTooltipComponent",
|
|
9111
9685
|
"declaration": {
|
|
9112
|
-
"name": "
|
|
9113
|
-
"module": "src/lib/core/
|
|
9686
|
+
"name": "ForgeAiTooltipComponent",
|
|
9687
|
+
"module": "src/lib/core/tooltip/tooltip.ts"
|
|
9114
9688
|
}
|
|
9115
9689
|
},
|
|
9116
9690
|
{
|
|
9117
9691
|
"kind": "custom-element-definition",
|
|
9118
|
-
"name": "forge-ai-
|
|
9692
|
+
"name": "forge-ai-tooltip",
|
|
9119
9693
|
"declaration": {
|
|
9120
|
-
"name": "
|
|
9121
|
-
"module": "src/lib/core/
|
|
9694
|
+
"name": "ForgeAiTooltipComponent",
|
|
9695
|
+
"module": "src/lib/core/tooltip/tooltip.ts"
|
|
9122
9696
|
}
|
|
9123
9697
|
}
|
|
9124
9698
|
]
|
|
@@ -9133,7 +9707,7 @@
|
|
|
9133
9707
|
"type": {
|
|
9134
9708
|
"text": "ToolDefinition"
|
|
9135
9709
|
},
|
|
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:
|
|
9710
|
+
"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' }) }"
|
|
9137
9711
|
}
|
|
9138
9712
|
],
|
|
9139
9713
|
"exports": [
|
|
@@ -9306,10 +9880,6 @@
|
|
|
9306
9880
|
"path": "src/lib/ai-actions-toolbar/ai-actions-toolbar.ts",
|
|
9307
9881
|
"lineNumber": 41
|
|
9308
9882
|
},
|
|
9309
|
-
"AiArtifactComponent": {
|
|
9310
|
-
"path": "src/lib/ai-artifact/ai-artifact.ts",
|
|
9311
|
-
"lineNumber": 23
|
|
9312
|
-
},
|
|
9313
9883
|
"AgentInfo": {
|
|
9314
9884
|
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
9315
9885
|
"lineNumber": 39
|
|
@@ -9318,6 +9888,10 @@
|
|
|
9318
9888
|
"path": "src/lib/ai-agent-info/ai-agent-info.ts",
|
|
9319
9889
|
"lineNumber": 29
|
|
9320
9890
|
},
|
|
9891
|
+
"AiArtifactComponent": {
|
|
9892
|
+
"path": "src/lib/ai-artifact/ai-artifact.ts",
|
|
9893
|
+
"lineNumber": 23
|
|
9894
|
+
},
|
|
9321
9895
|
"ForgeAiAttachmentRemoveEventData": {
|
|
9322
9896
|
"path": "src/lib/ai-attachment/ai-attachment.ts",
|
|
9323
9897
|
"lineNumber": 19
|
|
@@ -9326,14 +9900,18 @@
|
|
|
9326
9900
|
"path": "src/lib/ai-attachment/ai-attachment.ts",
|
|
9327
9901
|
"lineNumber": 41
|
|
9328
9902
|
},
|
|
9329
|
-
"
|
|
9330
|
-
"path": "src/lib/ai-
|
|
9331
|
-
"lineNumber":
|
|
9903
|
+
"AiAssistantResponseComponent": {
|
|
9904
|
+
"path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
|
|
9905
|
+
"lineNumber": 40
|
|
9332
9906
|
},
|
|
9333
9907
|
"AiChainOfThoughtComponent": {
|
|
9334
9908
|
"path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
|
|
9335
9909
|
"lineNumber": 17
|
|
9336
9910
|
},
|
|
9911
|
+
"AiButtonComponent": {
|
|
9912
|
+
"path": "src/lib/ai-button/ai-button.ts",
|
|
9913
|
+
"lineNumber": 22
|
|
9914
|
+
},
|
|
9337
9915
|
"MinimizeIconType": {
|
|
9338
9916
|
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
9339
9917
|
"lineNumber": 35
|
|
@@ -9352,15 +9930,15 @@
|
|
|
9352
9930
|
},
|
|
9353
9931
|
"AgUiAdapterConfig": {
|
|
9354
9932
|
"path": "src/lib/ai-chatbot/ag-ui-adapter.ts",
|
|
9355
|
-
"lineNumber":
|
|
9933
|
+
"lineNumber": 27
|
|
9356
9934
|
},
|
|
9357
9935
|
"ToolCallState": {
|
|
9358
9936
|
"path": "src/lib/ai-chatbot/ag-ui-adapter.ts",
|
|
9359
|
-
"lineNumber":
|
|
9937
|
+
"lineNumber": 34
|
|
9360
9938
|
},
|
|
9361
9939
|
"AgUiAdapter": {
|
|
9362
9940
|
"path": "src/lib/ai-chatbot/ag-ui-adapter.ts",
|
|
9363
|
-
"lineNumber":
|
|
9941
|
+
"lineNumber": 40
|
|
9364
9942
|
},
|
|
9365
9943
|
"MessageStartEvent": {
|
|
9366
9944
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
@@ -9404,16 +9982,52 @@
|
|
|
9404
9982
|
},
|
|
9405
9983
|
"FileRemoveEvent": {
|
|
9406
9984
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
9407
|
-
"lineNumber":
|
|
9985
|
+
"lineNumber": 194
|
|
9408
9986
|
},
|
|
9409
9987
|
"ErrorEvent": {
|
|
9410
9988
|
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
9411
9989
|
"lineNumber": 75
|
|
9412
9990
|
},
|
|
9413
|
-
"
|
|
9991
|
+
"CustomAgentEvent": {
|
|
9414
9992
|
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
9415
9993
|
"lineNumber": 79
|
|
9416
9994
|
},
|
|
9995
|
+
"RawAgentEvent": {
|
|
9996
|
+
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
9997
|
+
"lineNumber": 85
|
|
9998
|
+
},
|
|
9999
|
+
"RunStartedAgentEvent": {
|
|
10000
|
+
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
10001
|
+
"lineNumber": 90
|
|
10002
|
+
},
|
|
10003
|
+
"StepStartedAgentEvent": {
|
|
10004
|
+
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
10005
|
+
"lineNumber": 96
|
|
10006
|
+
},
|
|
10007
|
+
"StepFinishedAgentEvent": {
|
|
10008
|
+
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
10009
|
+
"lineNumber": 101
|
|
10010
|
+
},
|
|
10011
|
+
"StateSnapshotAgentEvent": {
|
|
10012
|
+
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
10013
|
+
"lineNumber": 106
|
|
10014
|
+
},
|
|
10015
|
+
"StateDeltaAgentEvent": {
|
|
10016
|
+
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
10017
|
+
"lineNumber": 111
|
|
10018
|
+
},
|
|
10019
|
+
"ActivitySnapshotAgentEvent": {
|
|
10020
|
+
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
10021
|
+
"lineNumber": 116
|
|
10022
|
+
},
|
|
10023
|
+
"ActivityDeltaAgentEvent": {
|
|
10024
|
+
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
10025
|
+
"lineNumber": 123
|
|
10026
|
+
},
|
|
10027
|
+
"AgentAdapter": {
|
|
10028
|
+
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
10029
|
+
"lineNumber": 129
|
|
10030
|
+
},
|
|
9417
10031
|
"AgentRunnerConfig": {
|
|
9418
10032
|
"path": "src/lib/ai-chatbot/agent-runner.ts",
|
|
9419
10033
|
"lineNumber": 6
|
|
@@ -9456,7 +10070,7 @@
|
|
|
9456
10070
|
},
|
|
9457
10071
|
"AiChatbotComponent": {
|
|
9458
10072
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
9459
|
-
"lineNumber":
|
|
10073
|
+
"lineNumber": 134
|
|
9460
10074
|
},
|
|
9461
10075
|
"CreateToolRendererElementConfig": {
|
|
9462
10076
|
"path": "src/lib/ai-chatbot/create-tool-renderer.ts",
|
|
@@ -9504,11 +10118,11 @@
|
|
|
9504
10118
|
},
|
|
9505
10119
|
"MessageStateControllerConfig": {
|
|
9506
10120
|
"path": "src/lib/ai-chatbot/message-state-controller.ts",
|
|
9507
|
-
"lineNumber":
|
|
10121
|
+
"lineNumber": 22
|
|
9508
10122
|
},
|
|
9509
10123
|
"MessageStateController": {
|
|
9510
10124
|
"path": "src/lib/ai-chatbot/message-state-controller.ts",
|
|
9511
|
-
"lineNumber":
|
|
10125
|
+
"lineNumber": 35
|
|
9512
10126
|
},
|
|
9513
10127
|
"HeadingLevel": {
|
|
9514
10128
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
@@ -9562,37 +10176,45 @@
|
|
|
9562
10176
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
9563
10177
|
"lineNumber": 135
|
|
9564
10178
|
},
|
|
9565
|
-
"
|
|
10179
|
+
"ResponseItem": {
|
|
9566
10180
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
9567
10181
|
"lineNumber": 147
|
|
9568
10182
|
},
|
|
10183
|
+
"AssistantResponse": {
|
|
10184
|
+
"path": "src/lib/ai-chatbot/types.ts",
|
|
10185
|
+
"lineNumber": 151
|
|
10186
|
+
},
|
|
10187
|
+
"FileAttachment": {
|
|
10188
|
+
"path": "src/lib/ai-chatbot/types.ts",
|
|
10189
|
+
"lineNumber": 159
|
|
10190
|
+
},
|
|
9569
10191
|
"UploadedFileMetadata": {
|
|
9570
10192
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
9571
|
-
"lineNumber":
|
|
10193
|
+
"lineNumber": 172
|
|
9572
10194
|
},
|
|
9573
10195
|
"FileUploadCallbacks": {
|
|
9574
10196
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
9575
|
-
"lineNumber":
|
|
10197
|
+
"lineNumber": 180
|
|
9576
10198
|
},
|
|
9577
10199
|
"FileUploadHandler": {
|
|
9578
10200
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
9579
|
-
"lineNumber":
|
|
10201
|
+
"lineNumber": 187
|
|
9580
10202
|
},
|
|
9581
10203
|
"FileRemoveCallbacks": {
|
|
9582
10204
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
9583
|
-
"lineNumber":
|
|
10205
|
+
"lineNumber": 189
|
|
9584
10206
|
},
|
|
9585
10207
|
"ForgeAiChatbotFileSelectEventData": {
|
|
9586
10208
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
9587
|
-
"lineNumber":
|
|
10209
|
+
"lineNumber": 198
|
|
9588
10210
|
},
|
|
9589
10211
|
"MessageItem": {
|
|
9590
10212
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
9591
|
-
"lineNumber":
|
|
10213
|
+
"lineNumber": 211
|
|
9592
10214
|
},
|
|
9593
10215
|
"ThreadState": {
|
|
9594
10216
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
9595
|
-
"lineNumber":
|
|
10217
|
+
"lineNumber": 216
|
|
9596
10218
|
},
|
|
9597
10219
|
"AiConfirmationPromptComponent": {
|
|
9598
10220
|
"path": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts",
|
|
@@ -9714,25 +10336,25 @@
|
|
|
9714
10336
|
"path": "src/lib/ai-icon/ai-icon.ts",
|
|
9715
10337
|
"lineNumber": 23
|
|
9716
10338
|
},
|
|
10339
|
+
"AiIconButtonComponent": {
|
|
10340
|
+
"path": "src/lib/ai-icon-button/ai-icon-button.ts",
|
|
10341
|
+
"lineNumber": 19
|
|
10342
|
+
},
|
|
9717
10343
|
"ForgeAiMessageThreadCopyEventData": {
|
|
9718
10344
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
9719
|
-
"lineNumber":
|
|
10345
|
+
"lineNumber": 32
|
|
9720
10346
|
},
|
|
9721
10347
|
"ForgeAiMessageThreadRefreshEventData": {
|
|
9722
10348
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
9723
|
-
"lineNumber":
|
|
10349
|
+
"lineNumber": 36
|
|
9724
10350
|
},
|
|
9725
10351
|
"ForgeAiMessageThreadThumbsEventData": {
|
|
9726
10352
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
9727
|
-
"lineNumber":
|
|
10353
|
+
"lineNumber": 40
|
|
9728
10354
|
},
|
|
9729
10355
|
"AiMessageThreadComponent": {
|
|
9730
10356
|
"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
|
|
10357
|
+
"lineNumber": 65
|
|
9736
10358
|
},
|
|
9737
10359
|
"AiModalComponent": {
|
|
9738
10360
|
"path": "src/lib/ai-modal/ai-modal.ts",
|
|
@@ -9758,17 +10380,17 @@
|
|
|
9758
10380
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
9759
10381
|
"lineNumber": 60
|
|
9760
10382
|
},
|
|
9761
|
-
"AiReasoningHeaderComponent": {
|
|
9762
|
-
"path": "src/lib/ai-reasoning-header/ai-reasoning-header.ts",
|
|
9763
|
-
"lineNumber": 22
|
|
9764
|
-
},
|
|
9765
10383
|
"AiReasoningComponent": {
|
|
9766
10384
|
"path": "src/lib/ai-reasoning/ai-reasoning.ts",
|
|
9767
10385
|
"lineNumber": 17
|
|
9768
10386
|
},
|
|
9769
10387
|
"AiResponseMessageComponent": {
|
|
9770
10388
|
"path": "src/lib/ai-response-message/ai-response-message.ts",
|
|
9771
|
-
"lineNumber":
|
|
10389
|
+
"lineNumber": 19
|
|
10390
|
+
},
|
|
10391
|
+
"AiReasoningHeaderComponent": {
|
|
10392
|
+
"path": "src/lib/ai-reasoning-header/ai-reasoning-header.ts",
|
|
10393
|
+
"lineNumber": 22
|
|
9772
10394
|
},
|
|
9773
10395
|
"AiSidebarChatComponent": {
|
|
9774
10396
|
"path": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts",
|
|
@@ -9778,10 +10400,6 @@
|
|
|
9778
10400
|
"path": "src/lib/ai-sidebar/ai-sidebar.ts",
|
|
9779
10401
|
"lineNumber": 28
|
|
9780
10402
|
},
|
|
9781
|
-
"AiSlashCommandMenuComponent": {
|
|
9782
|
-
"path": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts",
|
|
9783
|
-
"lineNumber": 32
|
|
9784
|
-
},
|
|
9785
10403
|
"SpinnerSize": {
|
|
9786
10404
|
"path": "src/lib/ai-spinner/ai-spinner.ts",
|
|
9787
10405
|
"lineNumber": 14
|
|
@@ -9790,6 +10408,10 @@
|
|
|
9790
10408
|
"path": "src/lib/ai-spinner/ai-spinner.ts",
|
|
9791
10409
|
"lineNumber": 27
|
|
9792
10410
|
},
|
|
10411
|
+
"AiSlashCommandMenuComponent": {
|
|
10412
|
+
"path": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts",
|
|
10413
|
+
"lineNumber": 32
|
|
10414
|
+
},
|
|
9793
10415
|
"Suggestion": {
|
|
9794
10416
|
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
9795
10417
|
"lineNumber": 20
|
|
@@ -9862,14 +10484,14 @@
|
|
|
9862
10484
|
"path": "src/lib/core/drag-controller.ts",
|
|
9863
10485
|
"lineNumber": 21
|
|
9864
10486
|
},
|
|
9865
|
-
"ThoughtBaseComponent": {
|
|
9866
|
-
"path": "src/lib/ai-chain-of-thought/thought-base/thought-base.ts",
|
|
9867
|
-
"lineNumber": 21
|
|
9868
|
-
},
|
|
9869
10487
|
"ThoughtDetailComponent": {
|
|
9870
10488
|
"path": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts",
|
|
9871
10489
|
"lineNumber": 18
|
|
9872
10490
|
},
|
|
10491
|
+
"ThoughtBaseComponent": {
|
|
10492
|
+
"path": "src/lib/ai-chain-of-thought/thought-base/thought-base.ts",
|
|
10493
|
+
"lineNumber": 21
|
|
10494
|
+
},
|
|
9873
10495
|
"ThoughtImageComponent": {
|
|
9874
10496
|
"path": "src/lib/ai-chain-of-thought/thought-image/thought-image.ts",
|
|
9875
10497
|
"lineNumber": 19
|
|
@@ -9890,6 +10512,18 @@
|
|
|
9890
10512
|
"path": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts",
|
|
9891
10513
|
"lineNumber": 17
|
|
9892
10514
|
},
|
|
10515
|
+
"OverlayPlacement": {
|
|
10516
|
+
"path": "src/lib/core/overlay/overlay.ts",
|
|
10517
|
+
"lineNumber": 31
|
|
10518
|
+
},
|
|
10519
|
+
"OverlayOffset": {
|
|
10520
|
+
"path": "src/lib/core/overlay/overlay.ts",
|
|
10521
|
+
"lineNumber": 33
|
|
10522
|
+
},
|
|
10523
|
+
"ForgeAiOverlayComponent": {
|
|
10524
|
+
"path": "src/lib/core/overlay/overlay.ts",
|
|
10525
|
+
"lineNumber": 40
|
|
10526
|
+
},
|
|
9893
10527
|
"PopoverToggleEventData": {
|
|
9894
10528
|
"path": "src/lib/core/popover/popover.ts",
|
|
9895
10529
|
"lineNumber": 18
|
|
@@ -9922,18 +10556,6 @@
|
|
|
9922
10556
|
"path": "src/lib/core/tooltip/tooltip.ts",
|
|
9923
10557
|
"lineNumber": 44
|
|
9924
10558
|
},
|
|
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
10559
|
"TableData": {
|
|
9938
10560
|
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
9939
10561
|
"lineNumber": 16
|