@tylertech/forge-ai 0.7.1 → 0.7.2
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 +1015 -933
- package/dist/ai-actions-toolbar/ai-actions-toolbar.d.ts +4 -1
- package/dist/ai-actions-toolbar/ai-actions-toolbar.mjs +10 -3
- package/dist/ai-assistant-response/ai-assistant-response.d.ts +8 -8
- package/dist/ai-assistant-response/ai-assistant-response.mjs +14 -5
- package/dist/ai-chatbot/ai-chatbot.d.ts +7 -0
- package/dist/ai-chatbot/ai-chatbot.mjs +21 -2
- package/dist/ai-chatbot/ai-chatbot.scss.mjs +1 -1
- package/dist/ai-chatbot/index.d.ts +2 -2
- package/dist/ai-chatbot/message-state-controller.d.ts +2 -1
- package/dist/ai-chatbot/message-state-controller.mjs +11 -2
- package/dist/ai-chatbot/types.d.ts +7 -0
- package/dist/ai-message-thread/ai-message-thread.d.ts +1 -0
- package/dist/ai-message-thread/ai-message-thread.mjs +8 -12
- package/dist/ai-prompt/ai-prompt.d.ts +5 -0
- package/dist/ai-prompt/ai-prompt.mjs +94 -2
- package/package.json +1 -1
package/custom-elements.json
CHANGED
|
@@ -102,6 +102,15 @@
|
|
|
102
102
|
"privacy": "public",
|
|
103
103
|
"default": "false",
|
|
104
104
|
"attribute": "enable-reactions"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"kind": "field",
|
|
108
|
+
"name": "feedbackType",
|
|
109
|
+
"type": {
|
|
110
|
+
"text": "FeedbackType | undefined"
|
|
111
|
+
},
|
|
112
|
+
"privacy": "public",
|
|
113
|
+
"attribute": "feedback-type"
|
|
105
114
|
}
|
|
106
115
|
],
|
|
107
116
|
"events": [
|
|
@@ -128,6 +137,13 @@
|
|
|
128
137
|
},
|
|
129
138
|
"default": "false",
|
|
130
139
|
"fieldName": "enableReactions"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"name": "feedback-type",
|
|
143
|
+
"type": {
|
|
144
|
+
"text": "FeedbackType | undefined"
|
|
145
|
+
},
|
|
146
|
+
"fieldName": "feedbackType"
|
|
131
147
|
}
|
|
132
148
|
],
|
|
133
149
|
"superclass": {
|
|
@@ -164,6 +180,77 @@
|
|
|
164
180
|
}
|
|
165
181
|
]
|
|
166
182
|
},
|
|
183
|
+
{
|
|
184
|
+
"kind": "javascript-module",
|
|
185
|
+
"path": "src/lib/ai-artifact/ai-artifact.ts",
|
|
186
|
+
"declarations": [
|
|
187
|
+
{
|
|
188
|
+
"kind": "variable",
|
|
189
|
+
"name": "AiArtifactComponentTagName",
|
|
190
|
+
"type": {
|
|
191
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
192
|
+
},
|
|
193
|
+
"default": "'forge-ai-artifact'"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"kind": "class",
|
|
197
|
+
"description": "",
|
|
198
|
+
"name": "AiArtifactComponent",
|
|
199
|
+
"cssProperties": [
|
|
200
|
+
{
|
|
201
|
+
"description": "Surface color override for the toolbar (defaults to transparent)",
|
|
202
|
+
"name": "--forge-theme-surface"
|
|
203
|
+
}
|
|
204
|
+
],
|
|
205
|
+
"slots": [
|
|
206
|
+
{
|
|
207
|
+
"description": "Content for the start (left) side of the toolbar, typically used for titles or headings",
|
|
208
|
+
"name": "start"
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"description": "Action buttons for the end (right) side of the toolbar",
|
|
212
|
+
"name": "actions"
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"description": "Main content area below the toolbar",
|
|
216
|
+
"name": ""
|
|
217
|
+
}
|
|
218
|
+
],
|
|
219
|
+
"members": [],
|
|
220
|
+
"superclass": {
|
|
221
|
+
"name": "LitElement",
|
|
222
|
+
"package": "lit"
|
|
223
|
+
},
|
|
224
|
+
"tagName": "forge-ai-artifact",
|
|
225
|
+
"customElement": true
|
|
226
|
+
}
|
|
227
|
+
],
|
|
228
|
+
"exports": [
|
|
229
|
+
{
|
|
230
|
+
"kind": "js",
|
|
231
|
+
"name": "AiArtifactComponentTagName",
|
|
232
|
+
"declaration": {
|
|
233
|
+
"name": "AiArtifactComponentTagName",
|
|
234
|
+
"module": "src/lib/ai-artifact/ai-artifact.ts"
|
|
235
|
+
}
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"kind": "js",
|
|
239
|
+
"name": "AiArtifactComponent",
|
|
240
|
+
"declaration": {
|
|
241
|
+
"name": "AiArtifactComponent",
|
|
242
|
+
"module": "src/lib/ai-artifact/ai-artifact.ts"
|
|
243
|
+
}
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"kind": "custom-element-definition",
|
|
247
|
+
"declaration": {
|
|
248
|
+
"name": "AiArtifactComponent",
|
|
249
|
+
"module": "src/lib/ai-artifact/ai-artifact.ts"
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
]
|
|
253
|
+
},
|
|
167
254
|
{
|
|
168
255
|
"kind": "javascript-module",
|
|
169
256
|
"path": "src/lib/ai-agent-info/ai-agent-info.ts",
|
|
@@ -228,71 +315,137 @@
|
|
|
228
315
|
},
|
|
229
316
|
{
|
|
230
317
|
"kind": "javascript-module",
|
|
231
|
-
"path": "src/lib/ai-
|
|
318
|
+
"path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
|
|
232
319
|
"declarations": [
|
|
233
320
|
{
|
|
234
321
|
"kind": "variable",
|
|
235
|
-
"name": "
|
|
322
|
+
"name": "AiAssistantResponseComponentTagName",
|
|
236
323
|
"type": {
|
|
237
324
|
"text": "keyof HTMLElementTagNameMap"
|
|
238
325
|
},
|
|
239
|
-
"default": "'forge-ai-
|
|
326
|
+
"default": "'forge-ai-assistant-response'"
|
|
240
327
|
},
|
|
241
328
|
{
|
|
242
329
|
"kind": "class",
|
|
243
330
|
"description": "",
|
|
244
|
-
"name": "
|
|
245
|
-
"
|
|
331
|
+
"name": "AiAssistantResponseComponent",
|
|
332
|
+
"members": [
|
|
246
333
|
{
|
|
247
|
-
"
|
|
248
|
-
"name": "
|
|
334
|
+
"kind": "field",
|
|
335
|
+
"name": "response",
|
|
336
|
+
"type": {
|
|
337
|
+
"text": "AssistantResponse"
|
|
338
|
+
},
|
|
339
|
+
"privacy": "public"
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"kind": "field",
|
|
343
|
+
"name": "tools",
|
|
344
|
+
"type": {
|
|
345
|
+
"text": "Map<string, ToolDefinition> | undefined"
|
|
346
|
+
},
|
|
347
|
+
"privacy": "public"
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"kind": "field",
|
|
351
|
+
"name": "enableReactions",
|
|
352
|
+
"type": {
|
|
353
|
+
"text": "boolean"
|
|
354
|
+
},
|
|
355
|
+
"privacy": "public",
|
|
356
|
+
"default": "false",
|
|
357
|
+
"attribute": "enable-reactions"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"kind": "field",
|
|
361
|
+
"name": "debugMode",
|
|
362
|
+
"type": {
|
|
363
|
+
"text": "boolean"
|
|
364
|
+
},
|
|
365
|
+
"privacy": "public",
|
|
366
|
+
"default": "false",
|
|
367
|
+
"attribute": "debug-mode"
|
|
249
368
|
}
|
|
250
369
|
],
|
|
251
|
-
"
|
|
370
|
+
"events": [
|
|
252
371
|
{
|
|
253
|
-
"
|
|
254
|
-
|
|
372
|
+
"type": {
|
|
373
|
+
"text": "CustomEvent<{ responseId: string }>"
|
|
374
|
+
},
|
|
375
|
+
"description": "Fired when copy action is clicked",
|
|
376
|
+
"name": "forge-ai-assistant-response-copy"
|
|
255
377
|
},
|
|
256
378
|
{
|
|
257
|
-
"
|
|
258
|
-
|
|
379
|
+
"type": {
|
|
380
|
+
"text": "CustomEvent<{ responseId: string }>"
|
|
381
|
+
},
|
|
382
|
+
"description": "Fired when refresh action is clicked",
|
|
383
|
+
"name": "forge-ai-assistant-response-refresh"
|
|
259
384
|
},
|
|
260
385
|
{
|
|
261
|
-
"
|
|
262
|
-
|
|
386
|
+
"type": {
|
|
387
|
+
"text": "CustomEvent<ForgeAiAssistantResponseFeedbackEventData>"
|
|
388
|
+
},
|
|
389
|
+
"description": "Fired when thumbs up is clicked",
|
|
390
|
+
"name": "forge-ai-assistant-response-thumbs-up"
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"type": {
|
|
394
|
+
"text": "CustomEvent<ForgeAiAssistantResponseFeedbackEventData>"
|
|
395
|
+
},
|
|
396
|
+
"description": "Fired when thumbs down is clicked",
|
|
397
|
+
"name": "forge-ai-assistant-response-thumbs-down"
|
|
398
|
+
}
|
|
399
|
+
],
|
|
400
|
+
"attributes": [
|
|
401
|
+
{
|
|
402
|
+
"name": "enable-reactions",
|
|
403
|
+
"type": {
|
|
404
|
+
"text": "boolean"
|
|
405
|
+
},
|
|
406
|
+
"default": "false",
|
|
407
|
+
"fieldName": "enableReactions"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"name": "debug-mode",
|
|
411
|
+
"type": {
|
|
412
|
+
"text": "boolean"
|
|
413
|
+
},
|
|
414
|
+
"default": "false",
|
|
415
|
+
"fieldName": "debugMode"
|
|
263
416
|
}
|
|
264
417
|
],
|
|
265
|
-
"members": [],
|
|
266
418
|
"superclass": {
|
|
267
419
|
"name": "LitElement",
|
|
268
420
|
"package": "lit"
|
|
269
421
|
},
|
|
270
|
-
"tagName": "forge-ai-
|
|
271
|
-
"customElement": true
|
|
422
|
+
"tagName": "forge-ai-assistant-response",
|
|
423
|
+
"customElement": true,
|
|
424
|
+
"summary": "Renders a complete assistant response with interleaved text chunks and tool calls."
|
|
272
425
|
}
|
|
273
426
|
],
|
|
274
427
|
"exports": [
|
|
275
428
|
{
|
|
276
429
|
"kind": "js",
|
|
277
|
-
"name": "
|
|
430
|
+
"name": "AiAssistantResponseComponentTagName",
|
|
278
431
|
"declaration": {
|
|
279
|
-
"name": "
|
|
280
|
-
"module": "src/lib/ai-
|
|
432
|
+
"name": "AiAssistantResponseComponentTagName",
|
|
433
|
+
"module": "src/lib/ai-assistant-response/ai-assistant-response.ts"
|
|
281
434
|
}
|
|
282
435
|
},
|
|
283
436
|
{
|
|
284
437
|
"kind": "js",
|
|
285
|
-
"name": "
|
|
438
|
+
"name": "AiAssistantResponseComponent",
|
|
286
439
|
"declaration": {
|
|
287
|
-
"name": "
|
|
288
|
-
"module": "src/lib/ai-
|
|
440
|
+
"name": "AiAssistantResponseComponent",
|
|
441
|
+
"module": "src/lib/ai-assistant-response/ai-assistant-response.ts"
|
|
289
442
|
}
|
|
290
443
|
},
|
|
291
444
|
{
|
|
292
445
|
"kind": "custom-element-definition",
|
|
293
446
|
"declaration": {
|
|
294
|
-
"name": "
|
|
295
|
-
"module": "src/lib/ai-
|
|
447
|
+
"name": "AiAssistantResponseComponent",
|
|
448
|
+
"module": "src/lib/ai-assistant-response/ai-assistant-response.ts"
|
|
296
449
|
}
|
|
297
450
|
}
|
|
298
451
|
]
|
|
@@ -469,137 +622,81 @@
|
|
|
469
622
|
},
|
|
470
623
|
{
|
|
471
624
|
"kind": "javascript-module",
|
|
472
|
-
"path": "src/lib/ai-
|
|
625
|
+
"path": "src/lib/ai-button/ai-button.ts",
|
|
473
626
|
"declarations": [
|
|
474
627
|
{
|
|
475
628
|
"kind": "variable",
|
|
476
|
-
"name": "
|
|
629
|
+
"name": "AiButtonComponentTagName",
|
|
477
630
|
"type": {
|
|
478
631
|
"text": "keyof HTMLElementTagNameMap"
|
|
479
632
|
},
|
|
480
|
-
"default": "'forge-ai-
|
|
633
|
+
"default": "'forge-ai-button'"
|
|
481
634
|
},
|
|
482
635
|
{
|
|
483
636
|
"kind": "class",
|
|
484
637
|
"description": "",
|
|
485
|
-
"name": "
|
|
486
|
-
"
|
|
487
|
-
{
|
|
488
|
-
"kind": "field",
|
|
489
|
-
"name": "response",
|
|
490
|
-
"type": {
|
|
491
|
-
"text": "AssistantResponse"
|
|
492
|
-
},
|
|
493
|
-
"privacy": "public"
|
|
494
|
-
},
|
|
638
|
+
"name": "AiButtonComponent",
|
|
639
|
+
"slots": [
|
|
495
640
|
{
|
|
496
|
-
"
|
|
497
|
-
"name": "
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
"privacy": "public"
|
|
502
|
-
},
|
|
641
|
+
"description": "Default slot for button content",
|
|
642
|
+
"name": ""
|
|
643
|
+
}
|
|
644
|
+
],
|
|
645
|
+
"members": [
|
|
503
646
|
{
|
|
504
647
|
"kind": "field",
|
|
505
|
-
"name": "
|
|
648
|
+
"name": "disabled",
|
|
506
649
|
"type": {
|
|
507
650
|
"text": "boolean"
|
|
508
651
|
},
|
|
509
652
|
"privacy": "public",
|
|
510
653
|
"default": "false",
|
|
511
|
-
"
|
|
512
|
-
|
|
654
|
+
"description": "Whether the button is disabled",
|
|
655
|
+
"attribute": "disabled",
|
|
656
|
+
"reflects": true
|
|
657
|
+
}
|
|
658
|
+
],
|
|
659
|
+
"attributes": [
|
|
513
660
|
{
|
|
514
|
-
"
|
|
515
|
-
"name": "debugMode",
|
|
661
|
+
"name": "disabled",
|
|
516
662
|
"type": {
|
|
517
663
|
"text": "boolean"
|
|
518
664
|
},
|
|
519
|
-
"privacy": "public",
|
|
520
665
|
"default": "false",
|
|
521
|
-
"
|
|
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"
|
|
552
|
-
}
|
|
553
|
-
],
|
|
554
|
-
"attributes": [
|
|
555
|
-
{
|
|
556
|
-
"name": "enable-reactions",
|
|
557
|
-
"type": {
|
|
558
|
-
"text": "boolean"
|
|
559
|
-
},
|
|
560
|
-
"default": "false",
|
|
561
|
-
"fieldName": "enableReactions"
|
|
562
|
-
},
|
|
563
|
-
{
|
|
564
|
-
"name": "debug-mode",
|
|
565
|
-
"type": {
|
|
566
|
-
"text": "boolean"
|
|
567
|
-
},
|
|
568
|
-
"default": "false",
|
|
569
|
-
"fieldName": "debugMode"
|
|
666
|
+
"description": "Whether the button is disabled",
|
|
667
|
+
"fieldName": "disabled"
|
|
570
668
|
}
|
|
571
669
|
],
|
|
572
670
|
"superclass": {
|
|
573
671
|
"name": "LitElement",
|
|
574
672
|
"package": "lit"
|
|
575
673
|
},
|
|
576
|
-
"tagName": "forge-ai-
|
|
577
|
-
"customElement": true
|
|
578
|
-
"summary": "Renders a complete assistant response with interleaved text chunks and tool calls."
|
|
674
|
+
"tagName": "forge-ai-button",
|
|
675
|
+
"customElement": true
|
|
579
676
|
}
|
|
580
677
|
],
|
|
581
678
|
"exports": [
|
|
582
679
|
{
|
|
583
680
|
"kind": "js",
|
|
584
|
-
"name": "
|
|
681
|
+
"name": "AiButtonComponentTagName",
|
|
585
682
|
"declaration": {
|
|
586
|
-
"name": "
|
|
587
|
-
"module": "src/lib/ai-
|
|
683
|
+
"name": "AiButtonComponentTagName",
|
|
684
|
+
"module": "src/lib/ai-button/ai-button.ts"
|
|
588
685
|
}
|
|
589
686
|
},
|
|
590
687
|
{
|
|
591
688
|
"kind": "js",
|
|
592
|
-
"name": "
|
|
689
|
+
"name": "AiButtonComponent",
|
|
593
690
|
"declaration": {
|
|
594
|
-
"name": "
|
|
595
|
-
"module": "src/lib/ai-
|
|
691
|
+
"name": "AiButtonComponent",
|
|
692
|
+
"module": "src/lib/ai-button/ai-button.ts"
|
|
596
693
|
}
|
|
597
694
|
},
|
|
598
695
|
{
|
|
599
696
|
"kind": "custom-element-definition",
|
|
600
697
|
"declaration": {
|
|
601
|
-
"name": "
|
|
602
|
-
"module": "src/lib/ai-
|
|
698
|
+
"name": "AiButtonComponent",
|
|
699
|
+
"module": "src/lib/ai-button/ai-button.ts"
|
|
603
700
|
}
|
|
604
701
|
}
|
|
605
702
|
]
|
|
@@ -679,87 +776,6 @@
|
|
|
679
776
|
}
|
|
680
777
|
]
|
|
681
778
|
},
|
|
682
|
-
{
|
|
683
|
-
"kind": "javascript-module",
|
|
684
|
-
"path": "src/lib/ai-button/ai-button.ts",
|
|
685
|
-
"declarations": [
|
|
686
|
-
{
|
|
687
|
-
"kind": "variable",
|
|
688
|
-
"name": "AiButtonComponentTagName",
|
|
689
|
-
"type": {
|
|
690
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
691
|
-
},
|
|
692
|
-
"default": "'forge-ai-button'"
|
|
693
|
-
},
|
|
694
|
-
{
|
|
695
|
-
"kind": "class",
|
|
696
|
-
"description": "",
|
|
697
|
-
"name": "AiButtonComponent",
|
|
698
|
-
"slots": [
|
|
699
|
-
{
|
|
700
|
-
"description": "Default slot for button content",
|
|
701
|
-
"name": ""
|
|
702
|
-
}
|
|
703
|
-
],
|
|
704
|
-
"members": [
|
|
705
|
-
{
|
|
706
|
-
"kind": "field",
|
|
707
|
-
"name": "disabled",
|
|
708
|
-
"type": {
|
|
709
|
-
"text": "boolean"
|
|
710
|
-
},
|
|
711
|
-
"privacy": "public",
|
|
712
|
-
"default": "false",
|
|
713
|
-
"description": "Whether the button is disabled",
|
|
714
|
-
"attribute": "disabled",
|
|
715
|
-
"reflects": true
|
|
716
|
-
}
|
|
717
|
-
],
|
|
718
|
-
"attributes": [
|
|
719
|
-
{
|
|
720
|
-
"name": "disabled",
|
|
721
|
-
"type": {
|
|
722
|
-
"text": "boolean"
|
|
723
|
-
},
|
|
724
|
-
"default": "false",
|
|
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
779
|
{
|
|
764
780
|
"kind": "javascript-module",
|
|
765
781
|
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
@@ -1131,110 +1147,253 @@
|
|
|
1131
1147
|
},
|
|
1132
1148
|
{
|
|
1133
1149
|
"kind": "javascript-module",
|
|
1134
|
-
"path": "src/lib/ai-
|
|
1150
|
+
"path": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts",
|
|
1135
1151
|
"declarations": [
|
|
1152
|
+
{
|
|
1153
|
+
"kind": "variable",
|
|
1154
|
+
"name": "AiConfirmationPromptComponentTagName",
|
|
1155
|
+
"type": {
|
|
1156
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
1157
|
+
},
|
|
1158
|
+
"default": "'forge-ai-confirmation-prompt'"
|
|
1159
|
+
},
|
|
1136
1160
|
{
|
|
1137
1161
|
"kind": "class",
|
|
1138
1162
|
"description": "",
|
|
1139
|
-
"name": "
|
|
1163
|
+
"name": "AiConfirmationPromptComponent",
|
|
1140
1164
|
"members": [
|
|
1141
1165
|
{
|
|
1142
1166
|
"kind": "field",
|
|
1143
|
-
"name": "
|
|
1167
|
+
"name": "text",
|
|
1144
1168
|
"type": {
|
|
1145
1169
|
"text": "string"
|
|
1146
1170
|
},
|
|
1147
1171
|
"privacy": "public",
|
|
1148
|
-
"
|
|
1149
|
-
|
|
1150
|
-
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1151
|
-
}
|
|
1172
|
+
"default": "''",
|
|
1173
|
+
"attribute": "text"
|
|
1152
1174
|
},
|
|
1153
1175
|
{
|
|
1154
|
-
"kind": "
|
|
1155
|
-
"name": "
|
|
1156
|
-
"
|
|
1157
|
-
|
|
1158
|
-
"type": {
|
|
1159
|
-
"text": "void"
|
|
1160
|
-
}
|
|
1176
|
+
"kind": "field",
|
|
1177
|
+
"name": "confirmText",
|
|
1178
|
+
"type": {
|
|
1179
|
+
"text": "string"
|
|
1161
1180
|
},
|
|
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
1181
|
"privacy": "public",
|
|
1175
|
-
"
|
|
1176
|
-
|
|
1177
|
-
"text": "Record<string, unknown>"
|
|
1178
|
-
}
|
|
1179
|
-
}
|
|
1182
|
+
"default": "'Confirm'",
|
|
1183
|
+
"attribute": "confirm-text"
|
|
1180
1184
|
},
|
|
1181
1185
|
{
|
|
1182
|
-
"kind": "
|
|
1183
|
-
"name": "
|
|
1184
|
-
"
|
|
1185
|
-
|
|
1186
|
-
"return": {
|
|
1187
|
-
"type": {
|
|
1188
|
-
"text": "Promise<AgUiAdapter>"
|
|
1189
|
-
}
|
|
1186
|
+
"kind": "field",
|
|
1187
|
+
"name": "denyText",
|
|
1188
|
+
"type": {
|
|
1189
|
+
"text": "string"
|
|
1190
1190
|
},
|
|
1191
|
-
"parameters": [
|
|
1192
|
-
{
|
|
1193
|
-
"name": "config",
|
|
1194
|
-
"type": {
|
|
1195
|
-
"text": "AgUiAdapterConfig & { threadId?: string }"
|
|
1196
|
-
}
|
|
1197
|
-
}
|
|
1198
|
-
]
|
|
1199
|
-
},
|
|
1200
|
-
{
|
|
1201
|
-
"kind": "method",
|
|
1202
|
-
"name": "connect",
|
|
1203
1191
|
"privacy": "public",
|
|
1204
|
-
"
|
|
1205
|
-
|
|
1206
|
-
"text": "Promise<void>"
|
|
1207
|
-
}
|
|
1208
|
-
},
|
|
1209
|
-
"inheritedFrom": {
|
|
1210
|
-
"name": "AgentAdapter",
|
|
1211
|
-
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1212
|
-
}
|
|
1192
|
+
"default": "'Deny'",
|
|
1193
|
+
"attribute": "deny-text"
|
|
1213
1194
|
},
|
|
1214
1195
|
{
|
|
1215
|
-
"kind": "
|
|
1216
|
-
"name": "
|
|
1196
|
+
"kind": "field",
|
|
1197
|
+
"name": "disabled",
|
|
1198
|
+
"type": {
|
|
1199
|
+
"text": "boolean"
|
|
1200
|
+
},
|
|
1217
1201
|
"privacy": "public",
|
|
1218
|
-
"
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1202
|
+
"default": "false",
|
|
1203
|
+
"attribute": "disabled"
|
|
1204
|
+
}
|
|
1205
|
+
],
|
|
1206
|
+
"events": [
|
|
1207
|
+
{
|
|
1208
|
+
"type": {
|
|
1209
|
+
"text": "CustomEvent<void>"
|
|
1222
1210
|
},
|
|
1223
|
-
"
|
|
1224
|
-
|
|
1225
|
-
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1226
|
-
}
|
|
1211
|
+
"description": "Fired when user confirms the prompt",
|
|
1212
|
+
"name": "forge-ai-confirmation-prompt-confirm"
|
|
1227
1213
|
},
|
|
1228
1214
|
{
|
|
1229
|
-
"
|
|
1230
|
-
|
|
1231
|
-
"privacy": "public",
|
|
1232
|
-
"return": {
|
|
1233
|
-
"type": {
|
|
1234
|
-
"text": "void"
|
|
1235
|
-
}
|
|
1215
|
+
"type": {
|
|
1216
|
+
"text": "CustomEvent<void>"
|
|
1236
1217
|
},
|
|
1237
|
-
"
|
|
1218
|
+
"description": "Fired when user denies the prompt",
|
|
1219
|
+
"name": "forge-ai-confirmation-prompt-deny"
|
|
1220
|
+
}
|
|
1221
|
+
],
|
|
1222
|
+
"attributes": [
|
|
1223
|
+
{
|
|
1224
|
+
"name": "text",
|
|
1225
|
+
"type": {
|
|
1226
|
+
"text": "string"
|
|
1227
|
+
},
|
|
1228
|
+
"default": "''",
|
|
1229
|
+
"fieldName": "text"
|
|
1230
|
+
},
|
|
1231
|
+
{
|
|
1232
|
+
"name": "confirm-text",
|
|
1233
|
+
"type": {
|
|
1234
|
+
"text": "string"
|
|
1235
|
+
},
|
|
1236
|
+
"default": "'Confirm'",
|
|
1237
|
+
"fieldName": "confirmText"
|
|
1238
|
+
},
|
|
1239
|
+
{
|
|
1240
|
+
"name": "deny-text",
|
|
1241
|
+
"type": {
|
|
1242
|
+
"text": "string"
|
|
1243
|
+
},
|
|
1244
|
+
"default": "'Deny'",
|
|
1245
|
+
"fieldName": "denyText"
|
|
1246
|
+
},
|
|
1247
|
+
{
|
|
1248
|
+
"name": "disabled",
|
|
1249
|
+
"type": {
|
|
1250
|
+
"text": "boolean"
|
|
1251
|
+
},
|
|
1252
|
+
"default": "false",
|
|
1253
|
+
"fieldName": "disabled"
|
|
1254
|
+
}
|
|
1255
|
+
],
|
|
1256
|
+
"superclass": {
|
|
1257
|
+
"name": "LitElement",
|
|
1258
|
+
"package": "lit"
|
|
1259
|
+
},
|
|
1260
|
+
"tagName": "forge-ai-confirmation-prompt",
|
|
1261
|
+
"customElement": true,
|
|
1262
|
+
"summary": "Displays a confirmation UI for requiring human approval."
|
|
1263
|
+
}
|
|
1264
|
+
],
|
|
1265
|
+
"exports": [
|
|
1266
|
+
{
|
|
1267
|
+
"kind": "js",
|
|
1268
|
+
"name": "AiConfirmationPromptComponentTagName",
|
|
1269
|
+
"declaration": {
|
|
1270
|
+
"name": "AiConfirmationPromptComponentTagName",
|
|
1271
|
+
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
1272
|
+
}
|
|
1273
|
+
},
|
|
1274
|
+
{
|
|
1275
|
+
"kind": "js",
|
|
1276
|
+
"name": "AiConfirmationPromptComponent",
|
|
1277
|
+
"declaration": {
|
|
1278
|
+
"name": "AiConfirmationPromptComponent",
|
|
1279
|
+
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
1280
|
+
}
|
|
1281
|
+
},
|
|
1282
|
+
{
|
|
1283
|
+
"kind": "custom-element-definition",
|
|
1284
|
+
"declaration": {
|
|
1285
|
+
"name": "AiConfirmationPromptComponent",
|
|
1286
|
+
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
1287
|
+
}
|
|
1288
|
+
}
|
|
1289
|
+
]
|
|
1290
|
+
},
|
|
1291
|
+
{
|
|
1292
|
+
"kind": "javascript-module",
|
|
1293
|
+
"path": "src/lib/ai-chatbot/ag-ui-adapter.ts",
|
|
1294
|
+
"declarations": [
|
|
1295
|
+
{
|
|
1296
|
+
"kind": "class",
|
|
1297
|
+
"description": "",
|
|
1298
|
+
"name": "AgUiAdapter",
|
|
1299
|
+
"members": [
|
|
1300
|
+
{
|
|
1301
|
+
"kind": "field",
|
|
1302
|
+
"name": "threadId",
|
|
1303
|
+
"type": {
|
|
1304
|
+
"text": "string"
|
|
1305
|
+
},
|
|
1306
|
+
"privacy": "public",
|
|
1307
|
+
"inheritedFrom": {
|
|
1308
|
+
"name": "AgentAdapter",
|
|
1309
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1310
|
+
}
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
"kind": "method",
|
|
1314
|
+
"name": "setContext",
|
|
1315
|
+
"privacy": "public",
|
|
1316
|
+
"return": {
|
|
1317
|
+
"type": {
|
|
1318
|
+
"text": "void"
|
|
1319
|
+
}
|
|
1320
|
+
},
|
|
1321
|
+
"parameters": [
|
|
1322
|
+
{
|
|
1323
|
+
"name": "context",
|
|
1324
|
+
"type": {
|
|
1325
|
+
"text": "Record<string, unknown>"
|
|
1326
|
+
}
|
|
1327
|
+
}
|
|
1328
|
+
]
|
|
1329
|
+
},
|
|
1330
|
+
{
|
|
1331
|
+
"kind": "method",
|
|
1332
|
+
"name": "getContext",
|
|
1333
|
+
"privacy": "public",
|
|
1334
|
+
"return": {
|
|
1335
|
+
"type": {
|
|
1336
|
+
"text": "Record<string, unknown>"
|
|
1337
|
+
}
|
|
1338
|
+
}
|
|
1339
|
+
},
|
|
1340
|
+
{
|
|
1341
|
+
"kind": "method",
|
|
1342
|
+
"name": "create",
|
|
1343
|
+
"privacy": "public",
|
|
1344
|
+
"static": true,
|
|
1345
|
+
"return": {
|
|
1346
|
+
"type": {
|
|
1347
|
+
"text": "Promise<AgUiAdapter>"
|
|
1348
|
+
}
|
|
1349
|
+
},
|
|
1350
|
+
"parameters": [
|
|
1351
|
+
{
|
|
1352
|
+
"name": "config",
|
|
1353
|
+
"type": {
|
|
1354
|
+
"text": "AgUiAdapterConfig & { threadId?: string }"
|
|
1355
|
+
}
|
|
1356
|
+
}
|
|
1357
|
+
]
|
|
1358
|
+
},
|
|
1359
|
+
{
|
|
1360
|
+
"kind": "method",
|
|
1361
|
+
"name": "connect",
|
|
1362
|
+
"privacy": "public",
|
|
1363
|
+
"return": {
|
|
1364
|
+
"type": {
|
|
1365
|
+
"text": "Promise<void>"
|
|
1366
|
+
}
|
|
1367
|
+
},
|
|
1368
|
+
"inheritedFrom": {
|
|
1369
|
+
"name": "AgentAdapter",
|
|
1370
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1371
|
+
}
|
|
1372
|
+
},
|
|
1373
|
+
{
|
|
1374
|
+
"kind": "method",
|
|
1375
|
+
"name": "disconnect",
|
|
1376
|
+
"privacy": "public",
|
|
1377
|
+
"return": {
|
|
1378
|
+
"type": {
|
|
1379
|
+
"text": "Promise<void>"
|
|
1380
|
+
}
|
|
1381
|
+
},
|
|
1382
|
+
"inheritedFrom": {
|
|
1383
|
+
"name": "AgentAdapter",
|
|
1384
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1385
|
+
}
|
|
1386
|
+
},
|
|
1387
|
+
{
|
|
1388
|
+
"kind": "method",
|
|
1389
|
+
"name": "sendMessage",
|
|
1390
|
+
"privacy": "public",
|
|
1391
|
+
"return": {
|
|
1392
|
+
"type": {
|
|
1393
|
+
"text": "void"
|
|
1394
|
+
}
|
|
1395
|
+
},
|
|
1396
|
+
"parameters": [
|
|
1238
1397
|
{
|
|
1239
1398
|
"name": "messages",
|
|
1240
1399
|
"type": {
|
|
@@ -3194,6 +3353,13 @@
|
|
|
3194
3353
|
},
|
|
3195
3354
|
"description": "Fired when header info option is selected",
|
|
3196
3355
|
"name": "forge-ai-chatbot-info"
|
|
3356
|
+
},
|
|
3357
|
+
{
|
|
3358
|
+
"type": {
|
|
3359
|
+
"text": "CustomEvent<ForgeAiChatbotResponseFeedbackEventData>"
|
|
3360
|
+
},
|
|
3361
|
+
"description": "Fired when user provides feedback on a response (thumbs up/down)",
|
|
3362
|
+
"name": "forge-ai-chatbot-response-feedback"
|
|
3197
3363
|
}
|
|
3198
3364
|
],
|
|
3199
3365
|
"attributes": [
|
|
@@ -4354,6 +4520,30 @@
|
|
|
4354
4520
|
}
|
|
4355
4521
|
}
|
|
4356
4522
|
]
|
|
4523
|
+
},
|
|
4524
|
+
{
|
|
4525
|
+
"kind": "method",
|
|
4526
|
+
"name": "setResponseFeedback",
|
|
4527
|
+
"privacy": "public",
|
|
4528
|
+
"return": {
|
|
4529
|
+
"type": {
|
|
4530
|
+
"text": "void"
|
|
4531
|
+
}
|
|
4532
|
+
},
|
|
4533
|
+
"parameters": [
|
|
4534
|
+
{
|
|
4535
|
+
"name": "responseId",
|
|
4536
|
+
"type": {
|
|
4537
|
+
"text": "string"
|
|
4538
|
+
}
|
|
4539
|
+
},
|
|
4540
|
+
{
|
|
4541
|
+
"name": "feedback",
|
|
4542
|
+
"type": {
|
|
4543
|
+
"text": "ResponseFeedback"
|
|
4544
|
+
}
|
|
4545
|
+
}
|
|
4546
|
+
]
|
|
4357
4547
|
}
|
|
4358
4548
|
]
|
|
4359
4549
|
}
|
|
@@ -4465,205 +4655,62 @@
|
|
|
4465
4655
|
},
|
|
4466
4656
|
{
|
|
4467
4657
|
"kind": "javascript-module",
|
|
4468
|
-
"path": "src/lib/ai-
|
|
4658
|
+
"path": "src/lib/ai-dialog/ai-dialog.ts",
|
|
4469
4659
|
"declarations": [
|
|
4470
4660
|
{
|
|
4471
4661
|
"kind": "variable",
|
|
4472
|
-
"name": "
|
|
4662
|
+
"name": "AiDialogComponentTagName",
|
|
4473
4663
|
"type": {
|
|
4474
4664
|
"text": "keyof HTMLElementTagNameMap"
|
|
4475
4665
|
},
|
|
4476
|
-
"default": "'forge-ai-
|
|
4666
|
+
"default": "'forge-ai-dialog'"
|
|
4477
4667
|
},
|
|
4478
4668
|
{
|
|
4479
4669
|
"kind": "class",
|
|
4480
4670
|
"description": "",
|
|
4481
|
-
"name": "
|
|
4671
|
+
"name": "AiDialogComponent",
|
|
4672
|
+
"slots": [
|
|
4673
|
+
{
|
|
4674
|
+
"description": "Default slot for dialog content (typically ai-chat-interface)",
|
|
4675
|
+
"name": ""
|
|
4676
|
+
}
|
|
4677
|
+
],
|
|
4482
4678
|
"members": [
|
|
4483
4679
|
{
|
|
4484
4680
|
"kind": "field",
|
|
4485
|
-
"name": "
|
|
4681
|
+
"name": "open",
|
|
4486
4682
|
"type": {
|
|
4487
|
-
"text": "
|
|
4683
|
+
"text": "boolean"
|
|
4488
4684
|
},
|
|
4489
4685
|
"privacy": "public",
|
|
4490
|
-
"default": "
|
|
4491
|
-
"
|
|
4686
|
+
"default": "false",
|
|
4687
|
+
"description": "Indicates whether the dialog is open.",
|
|
4688
|
+
"attribute": "open"
|
|
4492
4689
|
},
|
|
4493
4690
|
{
|
|
4494
4691
|
"kind": "field",
|
|
4495
|
-
"name": "
|
|
4692
|
+
"name": "expanded",
|
|
4496
4693
|
"type": {
|
|
4497
|
-
"text": "
|
|
4694
|
+
"text": "boolean"
|
|
4498
4695
|
},
|
|
4499
4696
|
"privacy": "public",
|
|
4500
|
-
"default": "
|
|
4501
|
-
"
|
|
4697
|
+
"default": "false",
|
|
4698
|
+
"description": "Controls the dialog's positioning and size behavior.\nWhen true, the dialog will have an expanded width and be centered on the screen.\nWhen false, the dialog will be positioned at the bottom-right corner with a fixed width.",
|
|
4699
|
+
"attribute": "expanded"
|
|
4502
4700
|
},
|
|
4503
4701
|
{
|
|
4504
4702
|
"kind": "field",
|
|
4505
|
-
"name": "
|
|
4703
|
+
"name": "isFullscreen",
|
|
4506
4704
|
"type": {
|
|
4507
|
-
"text": "
|
|
4705
|
+
"text": "boolean"
|
|
4508
4706
|
},
|
|
4509
4707
|
"privacy": "public",
|
|
4510
|
-
"
|
|
4511
|
-
"
|
|
4708
|
+
"description": "Gets the current fullscreen state (readonly)",
|
|
4709
|
+
"readonly": true
|
|
4512
4710
|
},
|
|
4513
4711
|
{
|
|
4514
|
-
"kind": "
|
|
4515
|
-
"name": "
|
|
4516
|
-
"type": {
|
|
4517
|
-
"text": "boolean"
|
|
4518
|
-
},
|
|
4519
|
-
"privacy": "public",
|
|
4520
|
-
"default": "false",
|
|
4521
|
-
"attribute": "disabled"
|
|
4522
|
-
}
|
|
4523
|
-
],
|
|
4524
|
-
"events": [
|
|
4525
|
-
{
|
|
4526
|
-
"type": {
|
|
4527
|
-
"text": "CustomEvent<void>"
|
|
4528
|
-
},
|
|
4529
|
-
"description": "Fired when user confirms the prompt",
|
|
4530
|
-
"name": "forge-ai-confirmation-prompt-confirm"
|
|
4531
|
-
},
|
|
4532
|
-
{
|
|
4533
|
-
"type": {
|
|
4534
|
-
"text": "CustomEvent<void>"
|
|
4535
|
-
},
|
|
4536
|
-
"description": "Fired when user denies the prompt",
|
|
4537
|
-
"name": "forge-ai-confirmation-prompt-deny"
|
|
4538
|
-
}
|
|
4539
|
-
],
|
|
4540
|
-
"attributes": [
|
|
4541
|
-
{
|
|
4542
|
-
"name": "text",
|
|
4543
|
-
"type": {
|
|
4544
|
-
"text": "string"
|
|
4545
|
-
},
|
|
4546
|
-
"default": "''",
|
|
4547
|
-
"fieldName": "text"
|
|
4548
|
-
},
|
|
4549
|
-
{
|
|
4550
|
-
"name": "confirm-text",
|
|
4551
|
-
"type": {
|
|
4552
|
-
"text": "string"
|
|
4553
|
-
},
|
|
4554
|
-
"default": "'Confirm'",
|
|
4555
|
-
"fieldName": "confirmText"
|
|
4556
|
-
},
|
|
4557
|
-
{
|
|
4558
|
-
"name": "deny-text",
|
|
4559
|
-
"type": {
|
|
4560
|
-
"text": "string"
|
|
4561
|
-
},
|
|
4562
|
-
"default": "'Deny'",
|
|
4563
|
-
"fieldName": "denyText"
|
|
4564
|
-
},
|
|
4565
|
-
{
|
|
4566
|
-
"name": "disabled",
|
|
4567
|
-
"type": {
|
|
4568
|
-
"text": "boolean"
|
|
4569
|
-
},
|
|
4570
|
-
"default": "false",
|
|
4571
|
-
"fieldName": "disabled"
|
|
4572
|
-
}
|
|
4573
|
-
],
|
|
4574
|
-
"superclass": {
|
|
4575
|
-
"name": "LitElement",
|
|
4576
|
-
"package": "lit"
|
|
4577
|
-
},
|
|
4578
|
-
"tagName": "forge-ai-confirmation-prompt",
|
|
4579
|
-
"customElement": true,
|
|
4580
|
-
"summary": "Displays a confirmation UI for requiring human approval."
|
|
4581
|
-
}
|
|
4582
|
-
],
|
|
4583
|
-
"exports": [
|
|
4584
|
-
{
|
|
4585
|
-
"kind": "js",
|
|
4586
|
-
"name": "AiConfirmationPromptComponentTagName",
|
|
4587
|
-
"declaration": {
|
|
4588
|
-
"name": "AiConfirmationPromptComponentTagName",
|
|
4589
|
-
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
4590
|
-
}
|
|
4591
|
-
},
|
|
4592
|
-
{
|
|
4593
|
-
"kind": "js",
|
|
4594
|
-
"name": "AiConfirmationPromptComponent",
|
|
4595
|
-
"declaration": {
|
|
4596
|
-
"name": "AiConfirmationPromptComponent",
|
|
4597
|
-
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
4598
|
-
}
|
|
4599
|
-
},
|
|
4600
|
-
{
|
|
4601
|
-
"kind": "custom-element-definition",
|
|
4602
|
-
"declaration": {
|
|
4603
|
-
"name": "AiConfirmationPromptComponent",
|
|
4604
|
-
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
4605
|
-
}
|
|
4606
|
-
}
|
|
4607
|
-
]
|
|
4608
|
-
},
|
|
4609
|
-
{
|
|
4610
|
-
"kind": "javascript-module",
|
|
4611
|
-
"path": "src/lib/ai-dialog/ai-dialog.ts",
|
|
4612
|
-
"declarations": [
|
|
4613
|
-
{
|
|
4614
|
-
"kind": "variable",
|
|
4615
|
-
"name": "AiDialogComponentTagName",
|
|
4616
|
-
"type": {
|
|
4617
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
4618
|
-
},
|
|
4619
|
-
"default": "'forge-ai-dialog'"
|
|
4620
|
-
},
|
|
4621
|
-
{
|
|
4622
|
-
"kind": "class",
|
|
4623
|
-
"description": "",
|
|
4624
|
-
"name": "AiDialogComponent",
|
|
4625
|
-
"slots": [
|
|
4626
|
-
{
|
|
4627
|
-
"description": "Default slot for dialog content (typically ai-chat-interface)",
|
|
4628
|
-
"name": ""
|
|
4629
|
-
}
|
|
4630
|
-
],
|
|
4631
|
-
"members": [
|
|
4632
|
-
{
|
|
4633
|
-
"kind": "field",
|
|
4634
|
-
"name": "open",
|
|
4635
|
-
"type": {
|
|
4636
|
-
"text": "boolean"
|
|
4637
|
-
},
|
|
4638
|
-
"privacy": "public",
|
|
4639
|
-
"default": "false",
|
|
4640
|
-
"description": "Indicates whether the dialog is open.",
|
|
4641
|
-
"attribute": "open"
|
|
4642
|
-
},
|
|
4643
|
-
{
|
|
4644
|
-
"kind": "field",
|
|
4645
|
-
"name": "expanded",
|
|
4646
|
-
"type": {
|
|
4647
|
-
"text": "boolean"
|
|
4648
|
-
},
|
|
4649
|
-
"privacy": "public",
|
|
4650
|
-
"default": "false",
|
|
4651
|
-
"description": "Controls the dialog's positioning and size behavior.\nWhen true, the dialog will have an expanded width and be centered on the screen.\nWhen false, the dialog will be positioned at the bottom-right corner with a fixed width.",
|
|
4652
|
-
"attribute": "expanded"
|
|
4653
|
-
},
|
|
4654
|
-
{
|
|
4655
|
-
"kind": "field",
|
|
4656
|
-
"name": "isFullscreen",
|
|
4657
|
-
"type": {
|
|
4658
|
-
"text": "boolean"
|
|
4659
|
-
},
|
|
4660
|
-
"privacy": "public",
|
|
4661
|
-
"description": "Gets the current fullscreen state (readonly)",
|
|
4662
|
-
"readonly": true
|
|
4663
|
-
},
|
|
4664
|
-
{
|
|
4665
|
-
"kind": "method",
|
|
4666
|
-
"name": "show",
|
|
4712
|
+
"kind": "method",
|
|
4713
|
+
"name": "show",
|
|
4667
4714
|
"privacy": "public",
|
|
4668
4715
|
"return": {
|
|
4669
4716
|
"type": {
|
|
@@ -7125,6 +7172,25 @@
|
|
|
7125
7172
|
"default": "[]",
|
|
7126
7173
|
"description": "Available slash commands"
|
|
7127
7174
|
},
|
|
7175
|
+
{
|
|
7176
|
+
"kind": "method",
|
|
7177
|
+
"name": "addToHistory",
|
|
7178
|
+
"privacy": "public",
|
|
7179
|
+
"return": {
|
|
7180
|
+
"type": {
|
|
7181
|
+
"text": "void"
|
|
7182
|
+
}
|
|
7183
|
+
},
|
|
7184
|
+
"parameters": [
|
|
7185
|
+
{
|
|
7186
|
+
"name": "message",
|
|
7187
|
+
"type": {
|
|
7188
|
+
"text": "string"
|
|
7189
|
+
}
|
|
7190
|
+
}
|
|
7191
|
+
],
|
|
7192
|
+
"description": "Adds a message to the input history for up/down arrow navigation.\nUse this when sending messages externally (e.g., from suggestions)."
|
|
7193
|
+
},
|
|
7128
7194
|
{
|
|
7129
7195
|
"kind": "method",
|
|
7130
7196
|
"name": "closeSlashMenu",
|
|
@@ -7324,6 +7390,58 @@
|
|
|
7324
7390
|
}
|
|
7325
7391
|
]
|
|
7326
7392
|
},
|
|
7393
|
+
{
|
|
7394
|
+
"kind": "javascript-module",
|
|
7395
|
+
"path": "src/lib/ai-response-message/ai-response-message.ts",
|
|
7396
|
+
"declarations": [
|
|
7397
|
+
{
|
|
7398
|
+
"kind": "variable",
|
|
7399
|
+
"name": "AiResponseMessageComponentTagName",
|
|
7400
|
+
"type": {
|
|
7401
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
7402
|
+
},
|
|
7403
|
+
"default": "'forge-ai-response-message'"
|
|
7404
|
+
},
|
|
7405
|
+
{
|
|
7406
|
+
"kind": "class",
|
|
7407
|
+
"description": "",
|
|
7408
|
+
"name": "AiResponseMessageComponent",
|
|
7409
|
+
"members": [],
|
|
7410
|
+
"superclass": {
|
|
7411
|
+
"name": "LitElement",
|
|
7412
|
+
"package": "lit"
|
|
7413
|
+
},
|
|
7414
|
+
"tagName": "forge-ai-response-message",
|
|
7415
|
+
"customElement": true,
|
|
7416
|
+
"summary": "A simple wrapper component for rendering assistant response message content."
|
|
7417
|
+
}
|
|
7418
|
+
],
|
|
7419
|
+
"exports": [
|
|
7420
|
+
{
|
|
7421
|
+
"kind": "js",
|
|
7422
|
+
"name": "AiResponseMessageComponentTagName",
|
|
7423
|
+
"declaration": {
|
|
7424
|
+
"name": "AiResponseMessageComponentTagName",
|
|
7425
|
+
"module": "src/lib/ai-response-message/ai-response-message.ts"
|
|
7426
|
+
}
|
|
7427
|
+
},
|
|
7428
|
+
{
|
|
7429
|
+
"kind": "js",
|
|
7430
|
+
"name": "AiResponseMessageComponent",
|
|
7431
|
+
"declaration": {
|
|
7432
|
+
"name": "AiResponseMessageComponent",
|
|
7433
|
+
"module": "src/lib/ai-response-message/ai-response-message.ts"
|
|
7434
|
+
}
|
|
7435
|
+
},
|
|
7436
|
+
{
|
|
7437
|
+
"kind": "custom-element-definition",
|
|
7438
|
+
"declaration": {
|
|
7439
|
+
"name": "AiResponseMessageComponent",
|
|
7440
|
+
"module": "src/lib/ai-response-message/ai-response-message.ts"
|
|
7441
|
+
}
|
|
7442
|
+
}
|
|
7443
|
+
]
|
|
7444
|
+
},
|
|
7327
7445
|
{
|
|
7328
7446
|
"kind": "javascript-module",
|
|
7329
7447
|
"path": "src/lib/ai-reasoning/ai-reasoning.ts",
|
|
@@ -7401,67 +7519,15 @@
|
|
|
7401
7519
|
},
|
|
7402
7520
|
{
|
|
7403
7521
|
"kind": "javascript-module",
|
|
7404
|
-
"path": "src/lib/ai-
|
|
7522
|
+
"path": "src/lib/ai-reasoning-header/ai-reasoning-header.ts",
|
|
7405
7523
|
"declarations": [
|
|
7406
7524
|
{
|
|
7407
7525
|
"kind": "variable",
|
|
7408
|
-
"name": "
|
|
7526
|
+
"name": "AiReasoningHeaderComponentTagName",
|
|
7409
7527
|
"type": {
|
|
7410
7528
|
"text": "keyof HTMLElementTagNameMap"
|
|
7411
7529
|
},
|
|
7412
|
-
"default": "'forge-ai-
|
|
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
|
-
},
|
|
7454
|
-
{
|
|
7455
|
-
"kind": "javascript-module",
|
|
7456
|
-
"path": "src/lib/ai-reasoning-header/ai-reasoning-header.ts",
|
|
7457
|
-
"declarations": [
|
|
7458
|
-
{
|
|
7459
|
-
"kind": "variable",
|
|
7460
|
-
"name": "AiReasoningHeaderComponentTagName",
|
|
7461
|
-
"type": {
|
|
7462
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
7463
|
-
},
|
|
7464
|
-
"default": "'forge-ai-reasoning-header'"
|
|
7530
|
+
"default": "'forge-ai-reasoning-header'"
|
|
7465
7531
|
},
|
|
7466
7532
|
{
|
|
7467
7533
|
"kind": "class",
|
|
@@ -7568,23 +7634,23 @@
|
|
|
7568
7634
|
},
|
|
7569
7635
|
{
|
|
7570
7636
|
"kind": "javascript-module",
|
|
7571
|
-
"path": "src/lib/ai-sidebar
|
|
7637
|
+
"path": "src/lib/ai-sidebar/ai-sidebar.ts",
|
|
7572
7638
|
"declarations": [
|
|
7573
7639
|
{
|
|
7574
7640
|
"kind": "variable",
|
|
7575
|
-
"name": "
|
|
7641
|
+
"name": "AiSidebarComponentTagName",
|
|
7576
7642
|
"type": {
|
|
7577
7643
|
"text": "keyof HTMLElementTagNameMap"
|
|
7578
7644
|
},
|
|
7579
|
-
"default": "'forge-ai-sidebar
|
|
7645
|
+
"default": "'forge-ai-sidebar'"
|
|
7580
7646
|
},
|
|
7581
7647
|
{
|
|
7582
7648
|
"kind": "class",
|
|
7583
7649
|
"description": "",
|
|
7584
|
-
"name": "
|
|
7650
|
+
"name": "AiSidebarComponent",
|
|
7585
7651
|
"slots": [
|
|
7586
7652
|
{
|
|
7587
|
-
"description": "Default slot for
|
|
7653
|
+
"description": "Default slot for sidebar content (typically ai-chat-interface)",
|
|
7588
7654
|
"name": ""
|
|
7589
7655
|
}
|
|
7590
7656
|
],
|
|
@@ -7597,18 +7663,9 @@
|
|
|
7597
7663
|
},
|
|
7598
7664
|
"privacy": "public",
|
|
7599
7665
|
"default": "false",
|
|
7666
|
+
"description": "Indicates whether the sidebar is open.",
|
|
7600
7667
|
"attribute": "open"
|
|
7601
7668
|
},
|
|
7602
|
-
{
|
|
7603
|
-
"kind": "field",
|
|
7604
|
-
"name": "expanded",
|
|
7605
|
-
"type": {
|
|
7606
|
-
"text": "boolean"
|
|
7607
|
-
},
|
|
7608
|
-
"privacy": "public",
|
|
7609
|
-
"default": "false",
|
|
7610
|
-
"attribute": "expanded"
|
|
7611
|
-
},
|
|
7612
7669
|
{
|
|
7613
7670
|
"kind": "method",
|
|
7614
7671
|
"name": "show",
|
|
@@ -7617,7 +7674,8 @@
|
|
|
7617
7674
|
"type": {
|
|
7618
7675
|
"text": "void"
|
|
7619
7676
|
}
|
|
7620
|
-
}
|
|
7677
|
+
},
|
|
7678
|
+
"description": "Opens the sidebar."
|
|
7621
7679
|
},
|
|
7622
7680
|
{
|
|
7623
7681
|
"kind": "method",
|
|
@@ -7627,7 +7685,8 @@
|
|
|
7627
7685
|
"type": {
|
|
7628
7686
|
"text": "void"
|
|
7629
7687
|
}
|
|
7630
|
-
}
|
|
7688
|
+
},
|
|
7689
|
+
"description": "Closes the sidebar."
|
|
7631
7690
|
},
|
|
7632
7691
|
{
|
|
7633
7692
|
"kind": "method",
|
|
@@ -7637,45 +7696,18 @@
|
|
|
7637
7696
|
"type": {
|
|
7638
7697
|
"text": "void"
|
|
7639
7698
|
}
|
|
7640
|
-
}
|
|
7641
|
-
|
|
7642
|
-
{
|
|
7643
|
-
"kind": "method",
|
|
7644
|
-
"name": "expand",
|
|
7645
|
-
"privacy": "public",
|
|
7646
|
-
"return": {
|
|
7647
|
-
"type": {
|
|
7648
|
-
"text": "void"
|
|
7649
|
-
}
|
|
7650
|
-
}
|
|
7651
|
-
},
|
|
7652
|
-
{
|
|
7653
|
-
"kind": "method",
|
|
7654
|
-
"name": "collapse",
|
|
7655
|
-
"privacy": "public",
|
|
7656
|
-
"return": {
|
|
7657
|
-
"type": {
|
|
7658
|
-
"text": "void"
|
|
7659
|
-
}
|
|
7660
|
-
}
|
|
7699
|
+
},
|
|
7700
|
+
"description": "Toggles the sidebar open state."
|
|
7661
7701
|
}
|
|
7662
7702
|
],
|
|
7663
7703
|
"events": [
|
|
7664
7704
|
{
|
|
7665
|
-
"description": "Fired when the sidebar
|
|
7666
|
-
"name": "forge-ai-sidebar-
|
|
7667
|
-
},
|
|
7668
|
-
{
|
|
7669
|
-
"description": "Fired when the sidebar chat is closed",
|
|
7670
|
-
"name": "forge-ai-sidebar-chat-close"
|
|
7671
|
-
},
|
|
7672
|
-
{
|
|
7673
|
-
"description": "Fired when the sidebar chat is expanded to modal",
|
|
7674
|
-
"name": "forge-ai-sidebar-chat-expand"
|
|
7705
|
+
"description": "Fired when the sidebar is opened",
|
|
7706
|
+
"name": "forge-ai-sidebar-open"
|
|
7675
7707
|
},
|
|
7676
7708
|
{
|
|
7677
|
-
"description": "Fired when the sidebar
|
|
7678
|
-
"name": "forge-ai-sidebar-
|
|
7709
|
+
"description": "Fired when the sidebar is closed",
|
|
7710
|
+
"name": "forge-ai-sidebar-close"
|
|
7679
7711
|
}
|
|
7680
7712
|
],
|
|
7681
7713
|
"attributes": [
|
|
@@ -7685,70 +7717,63 @@
|
|
|
7685
7717
|
"text": "boolean"
|
|
7686
7718
|
},
|
|
7687
7719
|
"default": "false",
|
|
7720
|
+
"description": "Indicates whether the sidebar is open.",
|
|
7688
7721
|
"fieldName": "open"
|
|
7689
|
-
},
|
|
7690
|
-
{
|
|
7691
|
-
"name": "expanded",
|
|
7692
|
-
"type": {
|
|
7693
|
-
"text": "boolean"
|
|
7694
|
-
},
|
|
7695
|
-
"default": "false",
|
|
7696
|
-
"fieldName": "expanded"
|
|
7697
7722
|
}
|
|
7698
7723
|
],
|
|
7699
7724
|
"superclass": {
|
|
7700
7725
|
"name": "LitElement",
|
|
7701
7726
|
"package": "lit"
|
|
7702
7727
|
},
|
|
7703
|
-
"tagName": "forge-ai-sidebar
|
|
7728
|
+
"tagName": "forge-ai-sidebar",
|
|
7704
7729
|
"customElement": true
|
|
7705
7730
|
}
|
|
7706
7731
|
],
|
|
7707
7732
|
"exports": [
|
|
7708
7733
|
{
|
|
7709
7734
|
"kind": "js",
|
|
7710
|
-
"name": "
|
|
7735
|
+
"name": "AiSidebarComponentTagName",
|
|
7711
7736
|
"declaration": {
|
|
7712
|
-
"name": "
|
|
7713
|
-
"module": "src/lib/ai-sidebar
|
|
7737
|
+
"name": "AiSidebarComponentTagName",
|
|
7738
|
+
"module": "src/lib/ai-sidebar/ai-sidebar.ts"
|
|
7714
7739
|
}
|
|
7715
7740
|
},
|
|
7716
7741
|
{
|
|
7717
7742
|
"kind": "js",
|
|
7718
|
-
"name": "
|
|
7743
|
+
"name": "AiSidebarComponent",
|
|
7719
7744
|
"declaration": {
|
|
7720
|
-
"name": "
|
|
7721
|
-
"module": "src/lib/ai-sidebar
|
|
7745
|
+
"name": "AiSidebarComponent",
|
|
7746
|
+
"module": "src/lib/ai-sidebar/ai-sidebar.ts"
|
|
7722
7747
|
}
|
|
7723
7748
|
},
|
|
7724
7749
|
{
|
|
7725
7750
|
"kind": "custom-element-definition",
|
|
7726
7751
|
"declaration": {
|
|
7727
|
-
"name": "
|
|
7728
|
-
"module": "src/lib/ai-sidebar
|
|
7752
|
+
"name": "AiSidebarComponent",
|
|
7753
|
+
"module": "src/lib/ai-sidebar/ai-sidebar.ts"
|
|
7729
7754
|
}
|
|
7730
7755
|
}
|
|
7731
7756
|
]
|
|
7732
7757
|
},
|
|
7733
7758
|
{
|
|
7734
7759
|
"kind": "javascript-module",
|
|
7735
|
-
"path": "src/lib/ai-sidebar/ai-sidebar.ts",
|
|
7760
|
+
"path": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts",
|
|
7736
7761
|
"declarations": [
|
|
7737
7762
|
{
|
|
7738
7763
|
"kind": "variable",
|
|
7739
|
-
"name": "
|
|
7764
|
+
"name": "AiSidebarChatComponentTagName",
|
|
7740
7765
|
"type": {
|
|
7741
7766
|
"text": "keyof HTMLElementTagNameMap"
|
|
7742
7767
|
},
|
|
7743
|
-
"default": "'forge-ai-sidebar'"
|
|
7768
|
+
"default": "'forge-ai-sidebar-chat'"
|
|
7744
7769
|
},
|
|
7745
7770
|
{
|
|
7746
7771
|
"kind": "class",
|
|
7747
7772
|
"description": "",
|
|
7748
|
-
"name": "
|
|
7773
|
+
"name": "AiSidebarChatComponent",
|
|
7749
7774
|
"slots": [
|
|
7750
7775
|
{
|
|
7751
|
-
"description": "Default slot for
|
|
7776
|
+
"description": "Default slot for chatbot component",
|
|
7752
7777
|
"name": ""
|
|
7753
7778
|
}
|
|
7754
7779
|
],
|
|
@@ -7761,9 +7786,18 @@
|
|
|
7761
7786
|
},
|
|
7762
7787
|
"privacy": "public",
|
|
7763
7788
|
"default": "false",
|
|
7764
|
-
"description": "Indicates whether the sidebar is open.",
|
|
7765
7789
|
"attribute": "open"
|
|
7766
7790
|
},
|
|
7791
|
+
{
|
|
7792
|
+
"kind": "field",
|
|
7793
|
+
"name": "expanded",
|
|
7794
|
+
"type": {
|
|
7795
|
+
"text": "boolean"
|
|
7796
|
+
},
|
|
7797
|
+
"privacy": "public",
|
|
7798
|
+
"default": "false",
|
|
7799
|
+
"attribute": "expanded"
|
|
7800
|
+
},
|
|
7767
7801
|
{
|
|
7768
7802
|
"kind": "method",
|
|
7769
7803
|
"name": "show",
|
|
@@ -7772,8 +7806,7 @@
|
|
|
7772
7806
|
"type": {
|
|
7773
7807
|
"text": "void"
|
|
7774
7808
|
}
|
|
7775
|
-
}
|
|
7776
|
-
"description": "Opens the sidebar."
|
|
7809
|
+
}
|
|
7777
7810
|
},
|
|
7778
7811
|
{
|
|
7779
7812
|
"kind": "method",
|
|
@@ -7783,8 +7816,7 @@
|
|
|
7783
7816
|
"type": {
|
|
7784
7817
|
"text": "void"
|
|
7785
7818
|
}
|
|
7786
|
-
}
|
|
7787
|
-
"description": "Closes the sidebar."
|
|
7819
|
+
}
|
|
7788
7820
|
},
|
|
7789
7821
|
{
|
|
7790
7822
|
"kind": "method",
|
|
@@ -7794,18 +7826,45 @@
|
|
|
7794
7826
|
"type": {
|
|
7795
7827
|
"text": "void"
|
|
7796
7828
|
}
|
|
7797
|
-
}
|
|
7798
|
-
|
|
7829
|
+
}
|
|
7830
|
+
},
|
|
7831
|
+
{
|
|
7832
|
+
"kind": "method",
|
|
7833
|
+
"name": "expand",
|
|
7834
|
+
"privacy": "public",
|
|
7835
|
+
"return": {
|
|
7836
|
+
"type": {
|
|
7837
|
+
"text": "void"
|
|
7838
|
+
}
|
|
7839
|
+
}
|
|
7840
|
+
},
|
|
7841
|
+
{
|
|
7842
|
+
"kind": "method",
|
|
7843
|
+
"name": "collapse",
|
|
7844
|
+
"privacy": "public",
|
|
7845
|
+
"return": {
|
|
7846
|
+
"type": {
|
|
7847
|
+
"text": "void"
|
|
7848
|
+
}
|
|
7849
|
+
}
|
|
7799
7850
|
}
|
|
7800
7851
|
],
|
|
7801
7852
|
"events": [
|
|
7802
7853
|
{
|
|
7803
|
-
"description": "Fired when the sidebar is opened",
|
|
7804
|
-
"name": "forge-ai-sidebar-open"
|
|
7854
|
+
"description": "Fired when the sidebar chat is opened",
|
|
7855
|
+
"name": "forge-ai-sidebar-chat-open"
|
|
7805
7856
|
},
|
|
7806
7857
|
{
|
|
7807
|
-
"description": "Fired when the sidebar is closed",
|
|
7808
|
-
"name": "forge-ai-sidebar-close"
|
|
7858
|
+
"description": "Fired when the sidebar chat is closed",
|
|
7859
|
+
"name": "forge-ai-sidebar-chat-close"
|
|
7860
|
+
},
|
|
7861
|
+
{
|
|
7862
|
+
"description": "Fired when the sidebar chat is expanded to modal",
|
|
7863
|
+
"name": "forge-ai-sidebar-chat-expand"
|
|
7864
|
+
},
|
|
7865
|
+
{
|
|
7866
|
+
"description": "Fired when the sidebar chat is collapsed from modal",
|
|
7867
|
+
"name": "forge-ai-sidebar-chat-collapse"
|
|
7809
7868
|
}
|
|
7810
7869
|
],
|
|
7811
7870
|
"attributes": [
|
|
@@ -7815,123 +7874,47 @@
|
|
|
7815
7874
|
"text": "boolean"
|
|
7816
7875
|
},
|
|
7817
7876
|
"default": "false",
|
|
7818
|
-
"description": "Indicates whether the sidebar is open.",
|
|
7819
7877
|
"fieldName": "open"
|
|
7820
|
-
}
|
|
7821
|
-
],
|
|
7822
|
-
"superclass": {
|
|
7823
|
-
"name": "LitElement",
|
|
7824
|
-
"package": "lit"
|
|
7825
|
-
},
|
|
7826
|
-
"tagName": "forge-ai-sidebar",
|
|
7827
|
-
"customElement": true
|
|
7828
|
-
}
|
|
7829
|
-
],
|
|
7830
|
-
"exports": [
|
|
7831
|
-
{
|
|
7832
|
-
"kind": "js",
|
|
7833
|
-
"name": "AiSidebarComponentTagName",
|
|
7834
|
-
"declaration": {
|
|
7835
|
-
"name": "AiSidebarComponentTagName",
|
|
7836
|
-
"module": "src/lib/ai-sidebar/ai-sidebar.ts"
|
|
7837
|
-
}
|
|
7838
|
-
},
|
|
7839
|
-
{
|
|
7840
|
-
"kind": "js",
|
|
7841
|
-
"name": "AiSidebarComponent",
|
|
7842
|
-
"declaration": {
|
|
7843
|
-
"name": "AiSidebarComponent",
|
|
7844
|
-
"module": "src/lib/ai-sidebar/ai-sidebar.ts"
|
|
7845
|
-
}
|
|
7846
|
-
},
|
|
7847
|
-
{
|
|
7848
|
-
"kind": "custom-element-definition",
|
|
7849
|
-
"declaration": {
|
|
7850
|
-
"name": "AiSidebarComponent",
|
|
7851
|
-
"module": "src/lib/ai-sidebar/ai-sidebar.ts"
|
|
7852
|
-
}
|
|
7853
|
-
}
|
|
7854
|
-
]
|
|
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
7878
|
},
|
|
7877
7879
|
{
|
|
7878
|
-
"
|
|
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",
|
|
7880
|
+
"name": "expanded",
|
|
7897
7881
|
"type": {
|
|
7898
|
-
"text": "
|
|
7882
|
+
"text": "boolean"
|
|
7899
7883
|
},
|
|
7900
|
-
"default": "
|
|
7901
|
-
"fieldName": "
|
|
7884
|
+
"default": "false",
|
|
7885
|
+
"fieldName": "expanded"
|
|
7902
7886
|
}
|
|
7903
7887
|
],
|
|
7904
7888
|
"superclass": {
|
|
7905
7889
|
"name": "LitElement",
|
|
7906
7890
|
"package": "lit"
|
|
7907
7891
|
},
|
|
7908
|
-
"tagName": "forge-ai-
|
|
7909
|
-
"customElement": true
|
|
7910
|
-
"summary": "Indeterminate circular progress indicator."
|
|
7892
|
+
"tagName": "forge-ai-sidebar-chat",
|
|
7893
|
+
"customElement": true
|
|
7911
7894
|
}
|
|
7912
7895
|
],
|
|
7913
7896
|
"exports": [
|
|
7914
7897
|
{
|
|
7915
7898
|
"kind": "js",
|
|
7916
|
-
"name": "
|
|
7899
|
+
"name": "AiSidebarChatComponentTagName",
|
|
7917
7900
|
"declaration": {
|
|
7918
|
-
"name": "
|
|
7919
|
-
"module": "src/lib/ai-
|
|
7901
|
+
"name": "AiSidebarChatComponentTagName",
|
|
7902
|
+
"module": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts"
|
|
7920
7903
|
}
|
|
7921
7904
|
},
|
|
7922
7905
|
{
|
|
7923
7906
|
"kind": "js",
|
|
7924
|
-
"name": "
|
|
7907
|
+
"name": "AiSidebarChatComponent",
|
|
7925
7908
|
"declaration": {
|
|
7926
|
-
"name": "
|
|
7927
|
-
"module": "src/lib/ai-
|
|
7909
|
+
"name": "AiSidebarChatComponent",
|
|
7910
|
+
"module": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts"
|
|
7928
7911
|
}
|
|
7929
7912
|
},
|
|
7930
7913
|
{
|
|
7931
7914
|
"kind": "custom-element-definition",
|
|
7932
7915
|
"declaration": {
|
|
7933
|
-
"name": "
|
|
7934
|
-
"module": "src/lib/ai-
|
|
7916
|
+
"name": "AiSidebarChatComponent",
|
|
7917
|
+
"module": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts"
|
|
7935
7918
|
}
|
|
7936
7919
|
}
|
|
7937
7920
|
]
|
|
@@ -8084,15 +8067,98 @@
|
|
|
8084
8067
|
"kind": "js",
|
|
8085
8068
|
"name": "AiSlashCommandMenuComponent",
|
|
8086
8069
|
"declaration": {
|
|
8087
|
-
"name": "AiSlashCommandMenuComponent",
|
|
8088
|
-
"module": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts"
|
|
8070
|
+
"name": "AiSlashCommandMenuComponent",
|
|
8071
|
+
"module": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts"
|
|
8072
|
+
}
|
|
8073
|
+
},
|
|
8074
|
+
{
|
|
8075
|
+
"kind": "custom-element-definition",
|
|
8076
|
+
"declaration": {
|
|
8077
|
+
"name": "AiSlashCommandMenuComponent",
|
|
8078
|
+
"module": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts"
|
|
8079
|
+
}
|
|
8080
|
+
}
|
|
8081
|
+
]
|
|
8082
|
+
},
|
|
8083
|
+
{
|
|
8084
|
+
"kind": "javascript-module",
|
|
8085
|
+
"path": "src/lib/ai-spinner/ai-spinner.ts",
|
|
8086
|
+
"declarations": [
|
|
8087
|
+
{
|
|
8088
|
+
"kind": "variable",
|
|
8089
|
+
"name": "AiSpinnerComponentTagName",
|
|
8090
|
+
"type": {
|
|
8091
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
8092
|
+
},
|
|
8093
|
+
"default": "'forge-ai-spinner'"
|
|
8094
|
+
},
|
|
8095
|
+
{
|
|
8096
|
+
"kind": "class",
|
|
8097
|
+
"description": "",
|
|
8098
|
+
"name": "AiSpinnerComponent",
|
|
8099
|
+
"cssProperties": [
|
|
8100
|
+
{
|
|
8101
|
+
"description": "Color of the spinner indicator",
|
|
8102
|
+
"name": "--forge-ai-spinner-color"
|
|
8103
|
+
},
|
|
8104
|
+
{
|
|
8105
|
+
"description": "Color of the spinner track",
|
|
8106
|
+
"name": "--forge-ai-spinner-track-color"
|
|
8107
|
+
}
|
|
8108
|
+
],
|
|
8109
|
+
"members": [
|
|
8110
|
+
{
|
|
8111
|
+
"kind": "field",
|
|
8112
|
+
"name": "size",
|
|
8113
|
+
"type": {
|
|
8114
|
+
"text": "SpinnerSize"
|
|
8115
|
+
},
|
|
8116
|
+
"privacy": "public",
|
|
8117
|
+
"default": "'medium'",
|
|
8118
|
+
"attribute": "size"
|
|
8119
|
+
}
|
|
8120
|
+
],
|
|
8121
|
+
"attributes": [
|
|
8122
|
+
{
|
|
8123
|
+
"name": "size",
|
|
8124
|
+
"type": {
|
|
8125
|
+
"text": "SpinnerSize"
|
|
8126
|
+
},
|
|
8127
|
+
"default": "'medium'",
|
|
8128
|
+
"fieldName": "size"
|
|
8129
|
+
}
|
|
8130
|
+
],
|
|
8131
|
+
"superclass": {
|
|
8132
|
+
"name": "LitElement",
|
|
8133
|
+
"package": "lit"
|
|
8134
|
+
},
|
|
8135
|
+
"tagName": "forge-ai-spinner",
|
|
8136
|
+
"customElement": true,
|
|
8137
|
+
"summary": "Indeterminate circular progress indicator."
|
|
8138
|
+
}
|
|
8139
|
+
],
|
|
8140
|
+
"exports": [
|
|
8141
|
+
{
|
|
8142
|
+
"kind": "js",
|
|
8143
|
+
"name": "AiSpinnerComponentTagName",
|
|
8144
|
+
"declaration": {
|
|
8145
|
+
"name": "AiSpinnerComponentTagName",
|
|
8146
|
+
"module": "src/lib/ai-spinner/ai-spinner.ts"
|
|
8147
|
+
}
|
|
8148
|
+
},
|
|
8149
|
+
{
|
|
8150
|
+
"kind": "js",
|
|
8151
|
+
"name": "AiSpinnerComponent",
|
|
8152
|
+
"declaration": {
|
|
8153
|
+
"name": "AiSpinnerComponent",
|
|
8154
|
+
"module": "src/lib/ai-spinner/ai-spinner.ts"
|
|
8089
8155
|
}
|
|
8090
8156
|
},
|
|
8091
8157
|
{
|
|
8092
8158
|
"kind": "custom-element-definition",
|
|
8093
8159
|
"declaration": {
|
|
8094
|
-
"name": "
|
|
8095
|
-
"module": "src/lib/ai-
|
|
8160
|
+
"name": "AiSpinnerComponent",
|
|
8161
|
+
"module": "src/lib/ai-spinner/ai-spinner.ts"
|
|
8096
8162
|
}
|
|
8097
8163
|
}
|
|
8098
8164
|
]
|
|
@@ -8315,6 +8381,57 @@
|
|
|
8315
8381
|
}
|
|
8316
8382
|
]
|
|
8317
8383
|
},
|
|
8384
|
+
{
|
|
8385
|
+
"kind": "javascript-module",
|
|
8386
|
+
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
8387
|
+
"declarations": [
|
|
8388
|
+
{
|
|
8389
|
+
"kind": "variable",
|
|
8390
|
+
"name": "AiUserMessageComponentTagName",
|
|
8391
|
+
"type": {
|
|
8392
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
8393
|
+
},
|
|
8394
|
+
"default": "'forge-ai-user-message'"
|
|
8395
|
+
},
|
|
8396
|
+
{
|
|
8397
|
+
"kind": "class",
|
|
8398
|
+
"description": "",
|
|
8399
|
+
"name": "AiUserMessageComponent",
|
|
8400
|
+
"members": [],
|
|
8401
|
+
"superclass": {
|
|
8402
|
+
"name": "LitElement",
|
|
8403
|
+
"package": "lit"
|
|
8404
|
+
},
|
|
8405
|
+
"tagName": "forge-ai-user-message",
|
|
8406
|
+
"customElement": true
|
|
8407
|
+
}
|
|
8408
|
+
],
|
|
8409
|
+
"exports": [
|
|
8410
|
+
{
|
|
8411
|
+
"kind": "js",
|
|
8412
|
+
"name": "AiUserMessageComponentTagName",
|
|
8413
|
+
"declaration": {
|
|
8414
|
+
"name": "AiUserMessageComponentTagName",
|
|
8415
|
+
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
8416
|
+
}
|
|
8417
|
+
},
|
|
8418
|
+
{
|
|
8419
|
+
"kind": "js",
|
|
8420
|
+
"name": "AiUserMessageComponent",
|
|
8421
|
+
"declaration": {
|
|
8422
|
+
"name": "AiUserMessageComponent",
|
|
8423
|
+
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
8424
|
+
}
|
|
8425
|
+
},
|
|
8426
|
+
{
|
|
8427
|
+
"kind": "custom-element-definition",
|
|
8428
|
+
"declaration": {
|
|
8429
|
+
"name": "AiUserMessageComponent",
|
|
8430
|
+
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
8431
|
+
}
|
|
8432
|
+
}
|
|
8433
|
+
]
|
|
8434
|
+
},
|
|
8318
8435
|
{
|
|
8319
8436
|
"kind": "javascript-module",
|
|
8320
8437
|
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
@@ -8418,57 +8535,6 @@
|
|
|
8418
8535
|
}
|
|
8419
8536
|
]
|
|
8420
8537
|
},
|
|
8421
|
-
{
|
|
8422
|
-
"kind": "javascript-module",
|
|
8423
|
-
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
8424
|
-
"declarations": [
|
|
8425
|
-
{
|
|
8426
|
-
"kind": "variable",
|
|
8427
|
-
"name": "AiUserMessageComponentTagName",
|
|
8428
|
-
"type": {
|
|
8429
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
8430
|
-
},
|
|
8431
|
-
"default": "'forge-ai-user-message'"
|
|
8432
|
-
},
|
|
8433
|
-
{
|
|
8434
|
-
"kind": "class",
|
|
8435
|
-
"description": "",
|
|
8436
|
-
"name": "AiUserMessageComponent",
|
|
8437
|
-
"members": [],
|
|
8438
|
-
"superclass": {
|
|
8439
|
-
"name": "LitElement",
|
|
8440
|
-
"package": "lit"
|
|
8441
|
-
},
|
|
8442
|
-
"tagName": "forge-ai-user-message",
|
|
8443
|
-
"customElement": true
|
|
8444
|
-
}
|
|
8445
|
-
],
|
|
8446
|
-
"exports": [
|
|
8447
|
-
{
|
|
8448
|
-
"kind": "js",
|
|
8449
|
-
"name": "AiUserMessageComponentTagName",
|
|
8450
|
-
"declaration": {
|
|
8451
|
-
"name": "AiUserMessageComponentTagName",
|
|
8452
|
-
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
8453
|
-
}
|
|
8454
|
-
},
|
|
8455
|
-
{
|
|
8456
|
-
"kind": "js",
|
|
8457
|
-
"name": "AiUserMessageComponent",
|
|
8458
|
-
"declaration": {
|
|
8459
|
-
"name": "AiUserMessageComponent",
|
|
8460
|
-
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
8461
|
-
}
|
|
8462
|
-
},
|
|
8463
|
-
{
|
|
8464
|
-
"kind": "custom-element-definition",
|
|
8465
|
-
"declaration": {
|
|
8466
|
-
"name": "AiUserMessageComponent",
|
|
8467
|
-
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
8468
|
-
}
|
|
8469
|
-
}
|
|
8470
|
-
]
|
|
8471
|
-
},
|
|
8472
8538
|
{
|
|
8473
8539
|
"kind": "javascript-module",
|
|
8474
8540
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
@@ -8626,57 +8692,6 @@
|
|
|
8626
8692
|
}
|
|
8627
8693
|
]
|
|
8628
8694
|
},
|
|
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",
|
|
8666
|
-
"declaration": {
|
|
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"
|
|
8676
|
-
}
|
|
8677
|
-
}
|
|
8678
|
-
]
|
|
8679
|
-
},
|
|
8680
8695
|
{
|
|
8681
8696
|
"kind": "javascript-module",
|
|
8682
8697
|
"path": "src/lib/ai-chain-of-thought/thought-base/thought-base.ts",
|
|
@@ -8763,6 +8778,57 @@
|
|
|
8763
8778
|
}
|
|
8764
8779
|
]
|
|
8765
8780
|
},
|
|
8781
|
+
{
|
|
8782
|
+
"kind": "javascript-module",
|
|
8783
|
+
"path": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts",
|
|
8784
|
+
"declarations": [
|
|
8785
|
+
{
|
|
8786
|
+
"kind": "variable",
|
|
8787
|
+
"name": "ThoughtDetailComponentTagName",
|
|
8788
|
+
"type": {
|
|
8789
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
8790
|
+
},
|
|
8791
|
+
"default": "'forge-ai-thought-detail'"
|
|
8792
|
+
},
|
|
8793
|
+
{
|
|
8794
|
+
"kind": "class",
|
|
8795
|
+
"description": "",
|
|
8796
|
+
"name": "ThoughtDetailComponent",
|
|
8797
|
+
"members": [],
|
|
8798
|
+
"superclass": {
|
|
8799
|
+
"name": "LitElement",
|
|
8800
|
+
"package": "lit"
|
|
8801
|
+
},
|
|
8802
|
+
"tagName": "forge-ai-thought-detail",
|
|
8803
|
+
"customElement": true
|
|
8804
|
+
}
|
|
8805
|
+
],
|
|
8806
|
+
"exports": [
|
|
8807
|
+
{
|
|
8808
|
+
"kind": "js",
|
|
8809
|
+
"name": "ThoughtDetailComponentTagName",
|
|
8810
|
+
"declaration": {
|
|
8811
|
+
"name": "ThoughtDetailComponentTagName",
|
|
8812
|
+
"module": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts"
|
|
8813
|
+
}
|
|
8814
|
+
},
|
|
8815
|
+
{
|
|
8816
|
+
"kind": "js",
|
|
8817
|
+
"name": "ThoughtDetailComponent",
|
|
8818
|
+
"declaration": {
|
|
8819
|
+
"name": "ThoughtDetailComponent",
|
|
8820
|
+
"module": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts"
|
|
8821
|
+
}
|
|
8822
|
+
},
|
|
8823
|
+
{
|
|
8824
|
+
"kind": "custom-element-definition",
|
|
8825
|
+
"declaration": {
|
|
8826
|
+
"name": "ThoughtDetailComponent",
|
|
8827
|
+
"module": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts"
|
|
8828
|
+
}
|
|
8829
|
+
}
|
|
8830
|
+
]
|
|
8831
|
+
},
|
|
8766
8832
|
{
|
|
8767
8833
|
"kind": "javascript-module",
|
|
8768
8834
|
"path": "src/lib/ai-chain-of-thought/thought-image/thought-image.ts",
|
|
@@ -9055,15 +9121,15 @@
|
|
|
9055
9121
|
},
|
|
9056
9122
|
{
|
|
9057
9123
|
"kind": "javascript-module",
|
|
9058
|
-
"path": "src/lib/core/
|
|
9124
|
+
"path": "src/lib/core/popover/popover.ts",
|
|
9059
9125
|
"declarations": [
|
|
9060
9126
|
{
|
|
9061
9127
|
"kind": "class",
|
|
9062
9128
|
"description": "",
|
|
9063
|
-
"name": "
|
|
9129
|
+
"name": "ForgeAiPopoverComponent",
|
|
9064
9130
|
"slots": [
|
|
9065
9131
|
{
|
|
9066
|
-
"description": "The default slot for
|
|
9132
|
+
"description": "The default slot for popover content.",
|
|
9067
9133
|
"name": ""
|
|
9068
9134
|
}
|
|
9069
9135
|
],
|
|
@@ -9076,18 +9142,18 @@
|
|
|
9076
9142
|
},
|
|
9077
9143
|
"privacy": "public",
|
|
9078
9144
|
"default": "null",
|
|
9079
|
-
"description": "The anchor element to position the
|
|
9145
|
+
"description": "The anchor element to position the popover relative to.",
|
|
9080
9146
|
"attribute": "anchor"
|
|
9081
9147
|
},
|
|
9082
9148
|
{
|
|
9083
9149
|
"kind": "field",
|
|
9084
9150
|
"name": "placement",
|
|
9085
9151
|
"type": {
|
|
9086
|
-
"text": "
|
|
9152
|
+
"text": "PopoverPlacement"
|
|
9087
9153
|
},
|
|
9088
9154
|
"privacy": "public",
|
|
9089
9155
|
"default": "'bottom-start'",
|
|
9090
|
-
"description": "The placement of the
|
|
9156
|
+
"description": "The placement of the popover relative to the anchor.",
|
|
9091
9157
|
"attribute": "placement"
|
|
9092
9158
|
},
|
|
9093
9159
|
{
|
|
@@ -9097,8 +9163,8 @@
|
|
|
9097
9163
|
"text": "boolean"
|
|
9098
9164
|
},
|
|
9099
9165
|
"privacy": "public",
|
|
9100
|
-
"default": "
|
|
9101
|
-
"description": "Whether the
|
|
9166
|
+
"default": "false",
|
|
9167
|
+
"description": "Whether the popover should flip to the opposite side when there's no space.",
|
|
9102
9168
|
"attribute": "flip"
|
|
9103
9169
|
},
|
|
9104
9170
|
{
|
|
@@ -9109,7 +9175,7 @@
|
|
|
9109
9175
|
},
|
|
9110
9176
|
"privacy": "public",
|
|
9111
9177
|
"default": "false",
|
|
9112
|
-
"description": "Whether the
|
|
9178
|
+
"description": "Whether the popover should shift to stay in view.",
|
|
9113
9179
|
"attribute": "shift"
|
|
9114
9180
|
},
|
|
9115
9181
|
{
|
|
@@ -9120,30 +9186,30 @@
|
|
|
9120
9186
|
},
|
|
9121
9187
|
"privacy": "public",
|
|
9122
9188
|
"default": "false",
|
|
9123
|
-
"description": "Whether the
|
|
9189
|
+
"description": "Whether the popover is open.",
|
|
9124
9190
|
"attribute": "open",
|
|
9125
9191
|
"reflects": true
|
|
9126
9192
|
},
|
|
9127
9193
|
{
|
|
9128
9194
|
"kind": "field",
|
|
9129
|
-
"name": "
|
|
9195
|
+
"name": "arrow",
|
|
9130
9196
|
"type": {
|
|
9131
|
-
"text": "
|
|
9197
|
+
"text": "boolean"
|
|
9132
9198
|
},
|
|
9133
9199
|
"privacy": "public",
|
|
9134
|
-
"default": "
|
|
9135
|
-
"description": "
|
|
9136
|
-
"attribute": "
|
|
9200
|
+
"default": "false",
|
|
9201
|
+
"description": "Whether to show an arrow pointing to the anchor element.",
|
|
9202
|
+
"attribute": "arrow"
|
|
9137
9203
|
},
|
|
9138
9204
|
{
|
|
9139
9205
|
"kind": "field",
|
|
9140
9206
|
"name": "offset",
|
|
9141
9207
|
"type": {
|
|
9142
|
-
"text": "
|
|
9208
|
+
"text": "PopoverOffset | undefined"
|
|
9143
9209
|
},
|
|
9144
9210
|
"privacy": "public",
|
|
9145
9211
|
"default": "undefined",
|
|
9146
|
-
"description": "The offset of the
|
|
9212
|
+
"description": "The offset of the popover from the anchor element.\nCan be a number (main axis offset) or an object with mainAxis, crossAxis, and alignmentAxis properties.",
|
|
9147
9213
|
"attribute": "offset"
|
|
9148
9214
|
},
|
|
9149
9215
|
{
|
|
@@ -9154,7 +9220,7 @@
|
|
|
9154
9220
|
},
|
|
9155
9221
|
"privacy": "public",
|
|
9156
9222
|
"default": "'auto'",
|
|
9157
|
-
"description": "The dismiss mode for the
|
|
9223
|
+
"description": "The dismiss mode for the popover.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
9158
9224
|
"attribute": "dismiss-mode"
|
|
9159
9225
|
}
|
|
9160
9226
|
],
|
|
@@ -9165,16 +9231,16 @@
|
|
|
9165
9231
|
"text": "Element | null"
|
|
9166
9232
|
},
|
|
9167
9233
|
"default": "null",
|
|
9168
|
-
"description": "The anchor element to position the
|
|
9234
|
+
"description": "The anchor element to position the popover relative to.",
|
|
9169
9235
|
"fieldName": "anchor"
|
|
9170
9236
|
},
|
|
9171
9237
|
{
|
|
9172
9238
|
"name": "placement",
|
|
9173
9239
|
"type": {
|
|
9174
|
-
"text": "
|
|
9240
|
+
"text": "PopoverPlacement"
|
|
9175
9241
|
},
|
|
9176
9242
|
"default": "'bottom-start'",
|
|
9177
|
-
"description": "The placement of the
|
|
9243
|
+
"description": "The placement of the popover relative to the anchor.",
|
|
9178
9244
|
"fieldName": "placement"
|
|
9179
9245
|
},
|
|
9180
9246
|
{
|
|
@@ -9182,8 +9248,8 @@
|
|
|
9182
9248
|
"type": {
|
|
9183
9249
|
"text": "boolean"
|
|
9184
9250
|
},
|
|
9185
|
-
"default": "
|
|
9186
|
-
"description": "Whether the
|
|
9251
|
+
"default": "false",
|
|
9252
|
+
"description": "Whether the popover should flip to the opposite side when there's no space.",
|
|
9187
9253
|
"fieldName": "flip"
|
|
9188
9254
|
},
|
|
9189
9255
|
{
|
|
@@ -9192,7 +9258,7 @@
|
|
|
9192
9258
|
"text": "boolean"
|
|
9193
9259
|
},
|
|
9194
9260
|
"default": "false",
|
|
9195
|
-
"description": "Whether the
|
|
9261
|
+
"description": "Whether the popover should shift to stay in view.",
|
|
9196
9262
|
"fieldName": "shift"
|
|
9197
9263
|
},
|
|
9198
9264
|
{
|
|
@@ -9201,25 +9267,25 @@
|
|
|
9201
9267
|
"text": "boolean"
|
|
9202
9268
|
},
|
|
9203
9269
|
"default": "false",
|
|
9204
|
-
"description": "Whether the
|
|
9270
|
+
"description": "Whether the popover is open.",
|
|
9205
9271
|
"fieldName": "open"
|
|
9206
9272
|
},
|
|
9207
9273
|
{
|
|
9208
|
-
"name": "
|
|
9274
|
+
"name": "arrow",
|
|
9209
9275
|
"type": {
|
|
9210
|
-
"text": "
|
|
9276
|
+
"text": "boolean"
|
|
9211
9277
|
},
|
|
9212
|
-
"default": "
|
|
9213
|
-
"description": "
|
|
9214
|
-
"fieldName": "
|
|
9278
|
+
"default": "false",
|
|
9279
|
+
"description": "Whether to show an arrow pointing to the anchor element.",
|
|
9280
|
+
"fieldName": "arrow"
|
|
9215
9281
|
},
|
|
9216
9282
|
{
|
|
9217
9283
|
"name": "offset",
|
|
9218
9284
|
"type": {
|
|
9219
|
-
"text": "
|
|
9285
|
+
"text": "PopoverOffset | undefined"
|
|
9220
9286
|
},
|
|
9221
9287
|
"default": "undefined",
|
|
9222
|
-
"description": "The offset of the
|
|
9288
|
+
"description": "The offset of the popover from the anchor element.\nCan be a number (main axis offset) or an object with mainAxis, crossAxis, and alignmentAxis properties.",
|
|
9223
9289
|
"fieldName": "offset"
|
|
9224
9290
|
},
|
|
9225
9291
|
{
|
|
@@ -9228,7 +9294,7 @@
|
|
|
9228
9294
|
"text": "'auto' | 'manual'"
|
|
9229
9295
|
},
|
|
9230
9296
|
"default": "'auto'",
|
|
9231
|
-
"description": "The dismiss mode for the
|
|
9297
|
+
"description": "The dismiss mode for the popover.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
9232
9298
|
"fieldName": "dismissMode"
|
|
9233
9299
|
}
|
|
9234
9300
|
],
|
|
@@ -9236,41 +9302,41 @@
|
|
|
9236
9302
|
"name": "LitElement",
|
|
9237
9303
|
"package": "lit"
|
|
9238
9304
|
},
|
|
9239
|
-
"summary": "A
|
|
9240
|
-
"tagName": "forge-ai-
|
|
9305
|
+
"summary": "A popover component that provides styled overlay functionality.",
|
|
9306
|
+
"tagName": "forge-ai-popover",
|
|
9241
9307
|
"customElement": true
|
|
9242
9308
|
}
|
|
9243
9309
|
],
|
|
9244
9310
|
"exports": [
|
|
9245
9311
|
{
|
|
9246
9312
|
"kind": "js",
|
|
9247
|
-
"name": "
|
|
9313
|
+
"name": "ForgeAiPopoverComponent",
|
|
9248
9314
|
"declaration": {
|
|
9249
|
-
"name": "
|
|
9250
|
-
"module": "src/lib/core/
|
|
9315
|
+
"name": "ForgeAiPopoverComponent",
|
|
9316
|
+
"module": "src/lib/core/popover/popover.ts"
|
|
9251
9317
|
}
|
|
9252
9318
|
},
|
|
9253
9319
|
{
|
|
9254
9320
|
"kind": "custom-element-definition",
|
|
9255
|
-
"name": "forge-ai-
|
|
9321
|
+
"name": "forge-ai-popover",
|
|
9256
9322
|
"declaration": {
|
|
9257
|
-
"name": "
|
|
9258
|
-
"module": "src/lib/core/
|
|
9323
|
+
"name": "ForgeAiPopoverComponent",
|
|
9324
|
+
"module": "src/lib/core/popover/popover.ts"
|
|
9259
9325
|
}
|
|
9260
9326
|
}
|
|
9261
9327
|
]
|
|
9262
9328
|
},
|
|
9263
9329
|
{
|
|
9264
9330
|
"kind": "javascript-module",
|
|
9265
|
-
"path": "src/lib/core/
|
|
9331
|
+
"path": "src/lib/core/overlay/overlay.ts",
|
|
9266
9332
|
"declarations": [
|
|
9267
9333
|
{
|
|
9268
9334
|
"kind": "class",
|
|
9269
9335
|
"description": "",
|
|
9270
|
-
"name": "
|
|
9336
|
+
"name": "ForgeAiOverlayComponent",
|
|
9271
9337
|
"slots": [
|
|
9272
9338
|
{
|
|
9273
|
-
"description": "The default slot for
|
|
9339
|
+
"description": "The default slot for overlay content.",
|
|
9274
9340
|
"name": ""
|
|
9275
9341
|
}
|
|
9276
9342
|
],
|
|
@@ -9283,18 +9349,18 @@
|
|
|
9283
9349
|
},
|
|
9284
9350
|
"privacy": "public",
|
|
9285
9351
|
"default": "null",
|
|
9286
|
-
"description": "The anchor element to position the
|
|
9352
|
+
"description": "The anchor element to position the overlay relative to.",
|
|
9287
9353
|
"attribute": "anchor"
|
|
9288
9354
|
},
|
|
9289
9355
|
{
|
|
9290
9356
|
"kind": "field",
|
|
9291
9357
|
"name": "placement",
|
|
9292
9358
|
"type": {
|
|
9293
|
-
"text": "
|
|
9359
|
+
"text": "OverlayPlacement"
|
|
9294
9360
|
},
|
|
9295
9361
|
"privacy": "public",
|
|
9296
9362
|
"default": "'bottom-start'",
|
|
9297
|
-
"description": "The placement of the
|
|
9363
|
+
"description": "The placement of the overlay relative to the anchor.",
|
|
9298
9364
|
"attribute": "placement"
|
|
9299
9365
|
},
|
|
9300
9366
|
{
|
|
@@ -9304,8 +9370,8 @@
|
|
|
9304
9370
|
"text": "boolean"
|
|
9305
9371
|
},
|
|
9306
9372
|
"privacy": "public",
|
|
9307
|
-
"default": "
|
|
9308
|
-
"description": "Whether the
|
|
9373
|
+
"default": "true",
|
|
9374
|
+
"description": "Whether the overlay should flip to the opposite side when there's no space.",
|
|
9309
9375
|
"attribute": "flip"
|
|
9310
9376
|
},
|
|
9311
9377
|
{
|
|
@@ -9316,7 +9382,7 @@
|
|
|
9316
9382
|
},
|
|
9317
9383
|
"privacy": "public",
|
|
9318
9384
|
"default": "false",
|
|
9319
|
-
"description": "Whether the
|
|
9385
|
+
"description": "Whether the overlay should shift to stay in view.",
|
|
9320
9386
|
"attribute": "shift"
|
|
9321
9387
|
},
|
|
9322
9388
|
{
|
|
@@ -9327,30 +9393,30 @@
|
|
|
9327
9393
|
},
|
|
9328
9394
|
"privacy": "public",
|
|
9329
9395
|
"default": "false",
|
|
9330
|
-
"description": "Whether the
|
|
9396
|
+
"description": "Whether the overlay is open.",
|
|
9331
9397
|
"attribute": "open",
|
|
9332
9398
|
"reflects": true
|
|
9333
9399
|
},
|
|
9334
9400
|
{
|
|
9335
9401
|
"kind": "field",
|
|
9336
|
-
"name": "
|
|
9402
|
+
"name": "arrowElement",
|
|
9337
9403
|
"type": {
|
|
9338
|
-
"text": "
|
|
9404
|
+
"text": "HTMLElement | null"
|
|
9339
9405
|
},
|
|
9340
9406
|
"privacy": "public",
|
|
9341
|
-
"default": "
|
|
9342
|
-
"description": "
|
|
9343
|
-
"attribute": "
|
|
9407
|
+
"default": "null",
|
|
9408
|
+
"description": "The arrow element to position relative to the overlay.",
|
|
9409
|
+
"attribute": "arrowElement"
|
|
9344
9410
|
},
|
|
9345
9411
|
{
|
|
9346
9412
|
"kind": "field",
|
|
9347
9413
|
"name": "offset",
|
|
9348
9414
|
"type": {
|
|
9349
|
-
"text": "
|
|
9415
|
+
"text": "OverlayOffset | undefined"
|
|
9350
9416
|
},
|
|
9351
9417
|
"privacy": "public",
|
|
9352
9418
|
"default": "undefined",
|
|
9353
|
-
"description": "The offset of the
|
|
9419
|
+
"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.",
|
|
9354
9420
|
"attribute": "offset"
|
|
9355
9421
|
},
|
|
9356
9422
|
{
|
|
@@ -9361,7 +9427,7 @@
|
|
|
9361
9427
|
},
|
|
9362
9428
|
"privacy": "public",
|
|
9363
9429
|
"default": "'auto'",
|
|
9364
|
-
"description": "The dismiss mode for the
|
|
9430
|
+
"description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
9365
9431
|
"attribute": "dismiss-mode"
|
|
9366
9432
|
}
|
|
9367
9433
|
],
|
|
@@ -9372,16 +9438,16 @@
|
|
|
9372
9438
|
"text": "Element | null"
|
|
9373
9439
|
},
|
|
9374
9440
|
"default": "null",
|
|
9375
|
-
"description": "The anchor element to position the
|
|
9441
|
+
"description": "The anchor element to position the overlay relative to.",
|
|
9376
9442
|
"fieldName": "anchor"
|
|
9377
9443
|
},
|
|
9378
9444
|
{
|
|
9379
9445
|
"name": "placement",
|
|
9380
9446
|
"type": {
|
|
9381
|
-
"text": "
|
|
9447
|
+
"text": "OverlayPlacement"
|
|
9382
9448
|
},
|
|
9383
9449
|
"default": "'bottom-start'",
|
|
9384
|
-
"description": "The placement of the
|
|
9450
|
+
"description": "The placement of the overlay relative to the anchor.",
|
|
9385
9451
|
"fieldName": "placement"
|
|
9386
9452
|
},
|
|
9387
9453
|
{
|
|
@@ -9389,8 +9455,8 @@
|
|
|
9389
9455
|
"type": {
|
|
9390
9456
|
"text": "boolean"
|
|
9391
9457
|
},
|
|
9392
|
-
"default": "
|
|
9393
|
-
"description": "Whether the
|
|
9458
|
+
"default": "true",
|
|
9459
|
+
"description": "Whether the overlay should flip to the opposite side when there's no space.",
|
|
9394
9460
|
"fieldName": "flip"
|
|
9395
9461
|
},
|
|
9396
9462
|
{
|
|
@@ -9399,7 +9465,7 @@
|
|
|
9399
9465
|
"text": "boolean"
|
|
9400
9466
|
},
|
|
9401
9467
|
"default": "false",
|
|
9402
|
-
"description": "Whether the
|
|
9468
|
+
"description": "Whether the overlay should shift to stay in view.",
|
|
9403
9469
|
"fieldName": "shift"
|
|
9404
9470
|
},
|
|
9405
9471
|
{
|
|
@@ -9408,25 +9474,25 @@
|
|
|
9408
9474
|
"text": "boolean"
|
|
9409
9475
|
},
|
|
9410
9476
|
"default": "false",
|
|
9411
|
-
"description": "Whether the
|
|
9477
|
+
"description": "Whether the overlay is open.",
|
|
9412
9478
|
"fieldName": "open"
|
|
9413
9479
|
},
|
|
9414
9480
|
{
|
|
9415
|
-
"name": "
|
|
9481
|
+
"name": "arrowElement",
|
|
9416
9482
|
"type": {
|
|
9417
|
-
"text": "
|
|
9483
|
+
"text": "HTMLElement | null"
|
|
9418
9484
|
},
|
|
9419
|
-
"default": "
|
|
9420
|
-
"description": "
|
|
9421
|
-
"fieldName": "
|
|
9485
|
+
"default": "null",
|
|
9486
|
+
"description": "The arrow element to position relative to the overlay.",
|
|
9487
|
+
"fieldName": "arrowElement"
|
|
9422
9488
|
},
|
|
9423
9489
|
{
|
|
9424
9490
|
"name": "offset",
|
|
9425
9491
|
"type": {
|
|
9426
|
-
"text": "
|
|
9492
|
+
"text": "OverlayOffset | undefined"
|
|
9427
9493
|
},
|
|
9428
9494
|
"default": "undefined",
|
|
9429
|
-
"description": "The offset of the
|
|
9495
|
+
"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.",
|
|
9430
9496
|
"fieldName": "offset"
|
|
9431
9497
|
},
|
|
9432
9498
|
{
|
|
@@ -9435,7 +9501,7 @@
|
|
|
9435
9501
|
"text": "'auto' | 'manual'"
|
|
9436
9502
|
},
|
|
9437
9503
|
"default": "'auto'",
|
|
9438
|
-
"description": "The dismiss mode for the
|
|
9504
|
+
"description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
9439
9505
|
"fieldName": "dismissMode"
|
|
9440
9506
|
}
|
|
9441
9507
|
],
|
|
@@ -9443,26 +9509,26 @@
|
|
|
9443
9509
|
"name": "LitElement",
|
|
9444
9510
|
"package": "lit"
|
|
9445
9511
|
},
|
|
9446
|
-
"summary": "A
|
|
9447
|
-
"tagName": "forge-ai-
|
|
9512
|
+
"summary": "A low-level overlay component for internal use within AI components.",
|
|
9513
|
+
"tagName": "forge-ai-overlay",
|
|
9448
9514
|
"customElement": true
|
|
9449
9515
|
}
|
|
9450
9516
|
],
|
|
9451
9517
|
"exports": [
|
|
9452
9518
|
{
|
|
9453
9519
|
"kind": "js",
|
|
9454
|
-
"name": "
|
|
9520
|
+
"name": "ForgeAiOverlayComponent",
|
|
9455
9521
|
"declaration": {
|
|
9456
|
-
"name": "
|
|
9457
|
-
"module": "src/lib/core/
|
|
9522
|
+
"name": "ForgeAiOverlayComponent",
|
|
9523
|
+
"module": "src/lib/core/overlay/overlay.ts"
|
|
9458
9524
|
}
|
|
9459
9525
|
},
|
|
9460
9526
|
{
|
|
9461
9527
|
"kind": "custom-element-definition",
|
|
9462
|
-
"name": "forge-ai-
|
|
9528
|
+
"name": "forge-ai-overlay",
|
|
9463
9529
|
"declaration": {
|
|
9464
|
-
"name": "
|
|
9465
|
-
"module": "src/lib/core/
|
|
9530
|
+
"name": "ForgeAiOverlayComponent",
|
|
9531
|
+
"module": "src/lib/core/overlay/overlay.ts"
|
|
9466
9532
|
}
|
|
9467
9533
|
}
|
|
9468
9534
|
]
|
|
@@ -9866,19 +9932,23 @@
|
|
|
9866
9932
|
"forgeTypes": {
|
|
9867
9933
|
"ForgeAiActionsToolbarActionEventData": {
|
|
9868
9934
|
"path": "src/lib/ai-actions-toolbar/ai-actions-toolbar.ts",
|
|
9869
|
-
"lineNumber":
|
|
9935
|
+
"lineNumber": 23
|
|
9870
9936
|
},
|
|
9871
9937
|
"ForgeAiActionsToolbarFeedbackEventData": {
|
|
9872
9938
|
"path": "src/lib/ai-actions-toolbar/ai-actions-toolbar.ts",
|
|
9873
|
-
"lineNumber":
|
|
9939
|
+
"lineNumber": 27
|
|
9874
9940
|
},
|
|
9875
9941
|
"AiActionsToolbarAction": {
|
|
9876
9942
|
"path": "src/lib/ai-actions-toolbar/ai-actions-toolbar.ts",
|
|
9877
|
-
"lineNumber":
|
|
9943
|
+
"lineNumber": 32
|
|
9878
9944
|
},
|
|
9879
9945
|
"AiActionsToolbarComponent": {
|
|
9880
9946
|
"path": "src/lib/ai-actions-toolbar/ai-actions-toolbar.ts",
|
|
9881
|
-
"lineNumber":
|
|
9947
|
+
"lineNumber": 42
|
|
9948
|
+
},
|
|
9949
|
+
"AiArtifactComponent": {
|
|
9950
|
+
"path": "src/lib/ai-artifact/ai-artifact.ts",
|
|
9951
|
+
"lineNumber": 23
|
|
9882
9952
|
},
|
|
9883
9953
|
"AgentInfo": {
|
|
9884
9954
|
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
@@ -9888,9 +9958,13 @@
|
|
|
9888
9958
|
"path": "src/lib/ai-agent-info/ai-agent-info.ts",
|
|
9889
9959
|
"lineNumber": 29
|
|
9890
9960
|
},
|
|
9891
|
-
"
|
|
9892
|
-
"path": "src/lib/ai-
|
|
9893
|
-
"lineNumber":
|
|
9961
|
+
"ForgeAiAssistantResponseFeedbackEventData": {
|
|
9962
|
+
"path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
|
|
9963
|
+
"lineNumber": 30
|
|
9964
|
+
},
|
|
9965
|
+
"AiAssistantResponseComponent": {
|
|
9966
|
+
"path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
|
|
9967
|
+
"lineNumber": 47
|
|
9894
9968
|
},
|
|
9895
9969
|
"ForgeAiAttachmentRemoveEventData": {
|
|
9896
9970
|
"path": "src/lib/ai-attachment/ai-attachment.ts",
|
|
@@ -9900,18 +9974,14 @@
|
|
|
9900
9974
|
"path": "src/lib/ai-attachment/ai-attachment.ts",
|
|
9901
9975
|
"lineNumber": 41
|
|
9902
9976
|
},
|
|
9903
|
-
"
|
|
9904
|
-
"path": "src/lib/ai-
|
|
9905
|
-
"lineNumber":
|
|
9977
|
+
"AiButtonComponent": {
|
|
9978
|
+
"path": "src/lib/ai-button/ai-button.ts",
|
|
9979
|
+
"lineNumber": 22
|
|
9906
9980
|
},
|
|
9907
9981
|
"AiChainOfThoughtComponent": {
|
|
9908
9982
|
"path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
|
|
9909
9983
|
"lineNumber": 17
|
|
9910
9984
|
},
|
|
9911
|
-
"AiButtonComponent": {
|
|
9912
|
-
"path": "src/lib/ai-button/ai-button.ts",
|
|
9913
|
-
"lineNumber": 22
|
|
9914
|
-
},
|
|
9915
9985
|
"MinimizeIconType": {
|
|
9916
9986
|
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
9917
9987
|
"lineNumber": 35
|
|
@@ -9928,6 +9998,10 @@
|
|
|
9928
9998
|
"path": "src/lib/ai-chat-interface/ai-chat-interface.ts",
|
|
9929
9999
|
"lineNumber": 25
|
|
9930
10000
|
},
|
|
10001
|
+
"AiConfirmationPromptComponent": {
|
|
10002
|
+
"path": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts",
|
|
10003
|
+
"lineNumber": 27
|
|
10004
|
+
},
|
|
9931
10005
|
"AgUiAdapterConfig": {
|
|
9932
10006
|
"path": "src/lib/ai-chatbot/ag-ui-adapter.ts",
|
|
9933
10007
|
"lineNumber": 27
|
|
@@ -9982,7 +10056,7 @@
|
|
|
9982
10056
|
},
|
|
9983
10057
|
"FileRemoveEvent": {
|
|
9984
10058
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
9985
|
-
"lineNumber":
|
|
10059
|
+
"lineNumber": 203
|
|
9986
10060
|
},
|
|
9987
10061
|
"ErrorEvent": {
|
|
9988
10062
|
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
@@ -10050,27 +10124,31 @@
|
|
|
10050
10124
|
},
|
|
10051
10125
|
"ForgeAiChatbotMessageEventData": {
|
|
10052
10126
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10053
|
-
"lineNumber":
|
|
10127
|
+
"lineNumber": 83
|
|
10054
10128
|
},
|
|
10055
10129
|
"ForgeAiChatbotToolCallEventData": {
|
|
10056
10130
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10057
|
-
"lineNumber":
|
|
10131
|
+
"lineNumber": 87
|
|
10058
10132
|
},
|
|
10059
10133
|
"ForgeAiChatbotErrorEventData": {
|
|
10060
10134
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10061
|
-
"lineNumber":
|
|
10135
|
+
"lineNumber": 93
|
|
10062
10136
|
},
|
|
10063
10137
|
"ForgeAiChatbotFileRemoveEventData": {
|
|
10064
10138
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10065
|
-
"lineNumber":
|
|
10139
|
+
"lineNumber": 97
|
|
10140
|
+
},
|
|
10141
|
+
"ForgeAiChatbotResponseFeedbackEventData": {
|
|
10142
|
+
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10143
|
+
"lineNumber": 101
|
|
10066
10144
|
},
|
|
10067
10145
|
"FeatureToggle": {
|
|
10068
10146
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10069
|
-
"lineNumber":
|
|
10147
|
+
"lineNumber": 112
|
|
10070
10148
|
},
|
|
10071
10149
|
"AiChatbotComponent": {
|
|
10072
10150
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10073
|
-
"lineNumber":
|
|
10151
|
+
"lineNumber": 143
|
|
10074
10152
|
},
|
|
10075
10153
|
"CreateToolRendererElementConfig": {
|
|
10076
10154
|
"path": "src/lib/ai-chatbot/create-tool-renderer.ts",
|
|
@@ -10118,11 +10196,11 @@
|
|
|
10118
10196
|
},
|
|
10119
10197
|
"MessageStateControllerConfig": {
|
|
10120
10198
|
"path": "src/lib/ai-chatbot/message-state-controller.ts",
|
|
10121
|
-
"lineNumber":
|
|
10199
|
+
"lineNumber": 23
|
|
10122
10200
|
},
|
|
10123
10201
|
"MessageStateController": {
|
|
10124
10202
|
"path": "src/lib/ai-chatbot/message-state-controller.ts",
|
|
10125
|
-
"lineNumber":
|
|
10203
|
+
"lineNumber": 36
|
|
10126
10204
|
},
|
|
10127
10205
|
"HeadingLevel": {
|
|
10128
10206
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
@@ -10174,51 +10252,55 @@
|
|
|
10174
10252
|
},
|
|
10175
10253
|
"ToolCall": {
|
|
10176
10254
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10177
|
-
"lineNumber":
|
|
10255
|
+
"lineNumber": 136
|
|
10178
10256
|
},
|
|
10179
10257
|
"ResponseItem": {
|
|
10180
10258
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10181
|
-
"lineNumber":
|
|
10259
|
+
"lineNumber": 148
|
|
10260
|
+
},
|
|
10261
|
+
"FeedbackType": {
|
|
10262
|
+
"path": "src/lib/ai-chatbot/types.ts",
|
|
10263
|
+
"lineNumber": 152
|
|
10264
|
+
},
|
|
10265
|
+
"ResponseFeedback": {
|
|
10266
|
+
"path": "src/lib/ai-chatbot/types.ts",
|
|
10267
|
+
"lineNumber": 154
|
|
10182
10268
|
},
|
|
10183
10269
|
"AssistantResponse": {
|
|
10184
10270
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10185
|
-
"lineNumber":
|
|
10271
|
+
"lineNumber": 159
|
|
10186
10272
|
},
|
|
10187
10273
|
"FileAttachment": {
|
|
10188
10274
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10189
|
-
"lineNumber":
|
|
10275
|
+
"lineNumber": 168
|
|
10190
10276
|
},
|
|
10191
10277
|
"UploadedFileMetadata": {
|
|
10192
10278
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10193
|
-
"lineNumber":
|
|
10279
|
+
"lineNumber": 181
|
|
10194
10280
|
},
|
|
10195
10281
|
"FileUploadCallbacks": {
|
|
10196
10282
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10197
|
-
"lineNumber":
|
|
10283
|
+
"lineNumber": 189
|
|
10198
10284
|
},
|
|
10199
10285
|
"FileUploadHandler": {
|
|
10200
10286
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10201
|
-
"lineNumber":
|
|
10287
|
+
"lineNumber": 196
|
|
10202
10288
|
},
|
|
10203
10289
|
"FileRemoveCallbacks": {
|
|
10204
10290
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10205
|
-
"lineNumber":
|
|
10291
|
+
"lineNumber": 198
|
|
10206
10292
|
},
|
|
10207
10293
|
"ForgeAiChatbotFileSelectEventData": {
|
|
10208
10294
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10209
|
-
"lineNumber":
|
|
10295
|
+
"lineNumber": 207
|
|
10210
10296
|
},
|
|
10211
10297
|
"MessageItem": {
|
|
10212
10298
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10213
|
-
"lineNumber":
|
|
10299
|
+
"lineNumber": 220
|
|
10214
10300
|
},
|
|
10215
10301
|
"ThreadState": {
|
|
10216
10302
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10217
|
-
"lineNumber":
|
|
10218
|
-
},
|
|
10219
|
-
"AiConfirmationPromptComponent": {
|
|
10220
|
-
"path": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts",
|
|
10221
|
-
"lineNumber": 27
|
|
10303
|
+
"lineNumber": 225
|
|
10222
10304
|
},
|
|
10223
10305
|
"AiDialogComponent": {
|
|
10224
10306
|
"path": "src/lib/ai-dialog/ai-dialog.ts",
|
|
@@ -10342,19 +10424,19 @@
|
|
|
10342
10424
|
},
|
|
10343
10425
|
"ForgeAiMessageThreadCopyEventData": {
|
|
10344
10426
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
10345
|
-
"lineNumber":
|
|
10427
|
+
"lineNumber": 33
|
|
10346
10428
|
},
|
|
10347
10429
|
"ForgeAiMessageThreadRefreshEventData": {
|
|
10348
10430
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
10349
|
-
"lineNumber":
|
|
10431
|
+
"lineNumber": 37
|
|
10350
10432
|
},
|
|
10351
10433
|
"ForgeAiMessageThreadThumbsEventData": {
|
|
10352
10434
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
10353
|
-
"lineNumber":
|
|
10435
|
+
"lineNumber": 41
|
|
10354
10436
|
},
|
|
10355
10437
|
"AiMessageThreadComponent": {
|
|
10356
10438
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
10357
|
-
"lineNumber":
|
|
10439
|
+
"lineNumber": 67
|
|
10358
10440
|
},
|
|
10359
10441
|
"AiModalComponent": {
|
|
10360
10442
|
"path": "src/lib/ai-modal/ai-modal.ts",
|
|
@@ -10362,43 +10444,47 @@
|
|
|
10362
10444
|
},
|
|
10363
10445
|
"ForgeAiPromptSendEventData": {
|
|
10364
10446
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
10365
|
-
"lineNumber":
|
|
10447
|
+
"lineNumber": 28
|
|
10366
10448
|
},
|
|
10367
10449
|
"ForgeAiPromptAttachmentEventData": {
|
|
10368
10450
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
10369
|
-
"lineNumber":
|
|
10451
|
+
"lineNumber": 34
|
|
10370
10452
|
},
|
|
10371
10453
|
"ForgeAiPromptCommandEventData": {
|
|
10372
10454
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
10373
|
-
"lineNumber":
|
|
10455
|
+
"lineNumber": 38
|
|
10374
10456
|
},
|
|
10375
10457
|
"AiPromptVariant": {
|
|
10376
10458
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
10377
|
-
"lineNumber":
|
|
10459
|
+
"lineNumber": 44
|
|
10378
10460
|
},
|
|
10379
10461
|
"AiPromptComponent": {
|
|
10380
10462
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
10381
|
-
"lineNumber":
|
|
10382
|
-
},
|
|
10383
|
-
"AiReasoningComponent": {
|
|
10384
|
-
"path": "src/lib/ai-reasoning/ai-reasoning.ts",
|
|
10385
|
-
"lineNumber": 17
|
|
10463
|
+
"lineNumber": 62
|
|
10386
10464
|
},
|
|
10387
10465
|
"AiResponseMessageComponent": {
|
|
10388
10466
|
"path": "src/lib/ai-response-message/ai-response-message.ts",
|
|
10389
10467
|
"lineNumber": 19
|
|
10390
10468
|
},
|
|
10469
|
+
"AiReasoningComponent": {
|
|
10470
|
+
"path": "src/lib/ai-reasoning/ai-reasoning.ts",
|
|
10471
|
+
"lineNumber": 17
|
|
10472
|
+
},
|
|
10391
10473
|
"AiReasoningHeaderComponent": {
|
|
10392
10474
|
"path": "src/lib/ai-reasoning-header/ai-reasoning-header.ts",
|
|
10393
10475
|
"lineNumber": 22
|
|
10394
10476
|
},
|
|
10477
|
+
"AiSidebarComponent": {
|
|
10478
|
+
"path": "src/lib/ai-sidebar/ai-sidebar.ts",
|
|
10479
|
+
"lineNumber": 28
|
|
10480
|
+
},
|
|
10395
10481
|
"AiSidebarChatComponent": {
|
|
10396
10482
|
"path": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts",
|
|
10397
10483
|
"lineNumber": 42
|
|
10398
10484
|
},
|
|
10399
|
-
"
|
|
10400
|
-
"path": "src/lib/ai-
|
|
10401
|
-
"lineNumber":
|
|
10485
|
+
"AiSlashCommandMenuComponent": {
|
|
10486
|
+
"path": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts",
|
|
10487
|
+
"lineNumber": 32
|
|
10402
10488
|
},
|
|
10403
10489
|
"SpinnerSize": {
|
|
10404
10490
|
"path": "src/lib/ai-spinner/ai-spinner.ts",
|
|
@@ -10408,10 +10494,6 @@
|
|
|
10408
10494
|
"path": "src/lib/ai-spinner/ai-spinner.ts",
|
|
10409
10495
|
"lineNumber": 27
|
|
10410
10496
|
},
|
|
10411
|
-
"AiSlashCommandMenuComponent": {
|
|
10412
|
-
"path": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts",
|
|
10413
|
-
"lineNumber": 32
|
|
10414
|
-
},
|
|
10415
10497
|
"Suggestion": {
|
|
10416
10498
|
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
10417
10499
|
"lineNumber": 20
|
|
@@ -10432,6 +10514,10 @@
|
|
|
10432
10514
|
"path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
|
|
10433
10515
|
"lineNumber": 38
|
|
10434
10516
|
},
|
|
10517
|
+
"AiUserMessageComponent": {
|
|
10518
|
+
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
10519
|
+
"lineNumber": 17
|
|
10520
|
+
},
|
|
10435
10521
|
"Thread": {
|
|
10436
10522
|
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
10437
10523
|
"lineNumber": 19
|
|
@@ -10444,10 +10530,6 @@
|
|
|
10444
10530
|
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
10445
10531
|
"lineNumber": 46
|
|
10446
10532
|
},
|
|
10447
|
-
"AiUserMessageComponent": {
|
|
10448
|
-
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
10449
|
-
"lineNumber": 17
|
|
10450
|
-
},
|
|
10451
10533
|
"SpeechRecognitionAlternative": {
|
|
10452
10534
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
10453
10535
|
"lineNumber": 18
|
|
@@ -10484,14 +10566,14 @@
|
|
|
10484
10566
|
"path": "src/lib/core/drag-controller.ts",
|
|
10485
10567
|
"lineNumber": 21
|
|
10486
10568
|
},
|
|
10487
|
-
"ThoughtDetailComponent": {
|
|
10488
|
-
"path": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts",
|
|
10489
|
-
"lineNumber": 18
|
|
10490
|
-
},
|
|
10491
10569
|
"ThoughtBaseComponent": {
|
|
10492
10570
|
"path": "src/lib/ai-chain-of-thought/thought-base/thought-base.ts",
|
|
10493
10571
|
"lineNumber": 21
|
|
10494
10572
|
},
|
|
10573
|
+
"ThoughtDetailComponent": {
|
|
10574
|
+
"path": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts",
|
|
10575
|
+
"lineNumber": 18
|
|
10576
|
+
},
|
|
10495
10577
|
"ThoughtImageComponent": {
|
|
10496
10578
|
"path": "src/lib/ai-chain-of-thought/thought-image/thought-image.ts",
|
|
10497
10579
|
"lineNumber": 19
|
|
@@ -10512,18 +10594,6 @@
|
|
|
10512
10594
|
"path": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts",
|
|
10513
10595
|
"lineNumber": 17
|
|
10514
10596
|
},
|
|
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
|
-
},
|
|
10527
10597
|
"PopoverToggleEventData": {
|
|
10528
10598
|
"path": "src/lib/core/popover/popover.ts",
|
|
10529
10599
|
"lineNumber": 18
|
|
@@ -10540,6 +10610,18 @@
|
|
|
10540
10610
|
"path": "src/lib/core/popover/popover.ts",
|
|
10541
10611
|
"lineNumber": 37
|
|
10542
10612
|
},
|
|
10613
|
+
"OverlayPlacement": {
|
|
10614
|
+
"path": "src/lib/core/overlay/overlay.ts",
|
|
10615
|
+
"lineNumber": 31
|
|
10616
|
+
},
|
|
10617
|
+
"OverlayOffset": {
|
|
10618
|
+
"path": "src/lib/core/overlay/overlay.ts",
|
|
10619
|
+
"lineNumber": 33
|
|
10620
|
+
},
|
|
10621
|
+
"ForgeAiOverlayComponent": {
|
|
10622
|
+
"path": "src/lib/core/overlay/overlay.ts",
|
|
10623
|
+
"lineNumber": 40
|
|
10624
|
+
},
|
|
10543
10625
|
"TooltipToggleEventDetail": {
|
|
10544
10626
|
"path": "src/lib/core/tooltip/tooltip.ts",
|
|
10545
10627
|
"lineNumber": 20
|