@tylertech/forge-ai 0.8.0 → 0.8.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 +1574 -1507
- package/dist/ai-assistant-response/ai-assistant-response.d.ts +2 -2
- package/dist/ai-assistant-response/ai-assistant-response.mjs +6 -5
- package/dist/ai-assistant-response/ai-assistant-response.scss.mjs +1 -1
- package/dist/ai-chatbot/ai-chatbot.mjs +18 -4
- package/dist/ai-message-thread/ai-message-thread.d.ts +4 -4
- package/dist/ai-message-thread/ai-message-thread.mjs +4 -4
- package/dist/ai-message-thread/index.d.ts +1 -1
- package/dist/ai-response-message-toolbar/ai-response-message-toolbar.d.ts +41 -0
- package/dist/ai-response-message-toolbar/ai-response-message-toolbar.mjs +230 -0
- package/dist/{ai-actions-toolbar/ai-actions-toolbar.scss.mjs → ai-response-message-toolbar/ai-response-message-toolbar.scss.mjs} +1 -1
- package/dist/ai-response-message-toolbar/index.d.ts +1 -0
- package/dist/ai-response-message-toolbar/index.mjs +5 -0
- package/dist/ai-user-message/ai-user-message.mjs +13 -83
- package/dist/ai-user-message/ai-user-message.scss.mjs +1 -1
- package/dist/ai-user-message-toolbar/ai-user-message-toolbar.d.ts +28 -0
- package/dist/ai-user-message-toolbar/ai-user-message-toolbar.mjs +160 -0
- package/dist/ai-user-message-toolbar/ai-user-message-toolbar.scss.mjs +4 -0
- package/dist/ai-user-message-toolbar/index.d.ts +1 -0
- package/dist/ai-user-message-toolbar/index.mjs +5 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.mjs +6 -3
- package/package.json +1 -1
- package/dist/ai-actions-toolbar/ai-actions-toolbar.d.ts +0 -51
- package/dist/ai-actions-toolbar/ai-actions-toolbar.mjs +0 -211
- package/dist/ai-actions-toolbar/index.d.ts +0 -1
- package/dist/ai-actions-toolbar/index.mjs +0 -5
- package/dist/tools/ai-confirm-tool-call/ai-confirm-tool-call-definition.d.ts +0 -10
- package/dist/tools/ai-confirm-tool-call/ai-confirm-tool-call-definition.mjs +0 -20
- package/dist/tools/ai-confirm-tool-call/index.d.ts +0 -1
- package/dist/tools/ai-confirm-tool-call/index.mjs +0 -5
package/custom-elements.json
CHANGED
|
@@ -78,166 +78,133 @@
|
|
|
78
78
|
},
|
|
79
79
|
{
|
|
80
80
|
"kind": "javascript-module",
|
|
81
|
-
"path": "src/lib/ai-
|
|
81
|
+
"path": "src/lib/ai-agent-info/ai-agent-info.ts",
|
|
82
82
|
"declarations": [
|
|
83
83
|
{
|
|
84
84
|
"kind": "variable",
|
|
85
|
-
"name": "
|
|
85
|
+
"name": "AiAgentInfoComponentTagName",
|
|
86
86
|
"type": {
|
|
87
87
|
"text": "keyof HTMLElementTagNameMap"
|
|
88
88
|
},
|
|
89
|
-
"default": "'forge-ai-
|
|
89
|
+
"default": "'forge-ai-agent-info'"
|
|
90
90
|
},
|
|
91
91
|
{
|
|
92
92
|
"kind": "class",
|
|
93
93
|
"description": "",
|
|
94
|
-
"name": "
|
|
94
|
+
"name": "AiAgentInfoComponent",
|
|
95
95
|
"members": [
|
|
96
96
|
{
|
|
97
97
|
"kind": "field",
|
|
98
|
-
"name": "
|
|
99
|
-
"type": {
|
|
100
|
-
"text": "boolean"
|
|
101
|
-
},
|
|
102
|
-
"privacy": "public",
|
|
103
|
-
"default": "false",
|
|
104
|
-
"attribute": "enable-reactions"
|
|
105
|
-
},
|
|
106
|
-
{
|
|
107
|
-
"kind": "field",
|
|
108
|
-
"name": "feedbackType",
|
|
98
|
+
"name": "agentInfo",
|
|
109
99
|
"type": {
|
|
110
|
-
"text": "
|
|
100
|
+
"text": "AgentInfo | undefined"
|
|
111
101
|
},
|
|
112
102
|
"privacy": "public",
|
|
113
|
-
"
|
|
114
|
-
}
|
|
115
|
-
],
|
|
116
|
-
"events": [
|
|
117
|
-
{
|
|
118
|
-
"type": {
|
|
119
|
-
"text": "CustomEvent<ForgeAiActionsToolbarActionEventData>"
|
|
120
|
-
},
|
|
121
|
-
"description": "Fired when an action button is clicked. The detail contains the action type.",
|
|
122
|
-
"name": "forge-ai-actions-toolbar-action"
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
"type": {
|
|
126
|
-
"text": "CustomEvent<ForgeAiActionsToolbarFeedbackEventData>"
|
|
127
|
-
},
|
|
128
|
-
"description": "Fired when feedback is submitted. The detail contains the action and optional feedback text.",
|
|
129
|
-
"name": "forge-ai-actions-toolbar-feedback"
|
|
130
|
-
}
|
|
131
|
-
],
|
|
132
|
-
"attributes": [
|
|
133
|
-
{
|
|
134
|
-
"name": "enable-reactions",
|
|
135
|
-
"type": {
|
|
136
|
-
"text": "boolean"
|
|
137
|
-
},
|
|
138
|
-
"default": "false",
|
|
139
|
-
"fieldName": "enableReactions"
|
|
140
|
-
},
|
|
141
|
-
{
|
|
142
|
-
"name": "feedback-type",
|
|
143
|
-
"type": {
|
|
144
|
-
"text": "FeedbackType | undefined"
|
|
145
|
-
},
|
|
146
|
-
"fieldName": "feedbackType"
|
|
103
|
+
"description": "Agent information to display"
|
|
147
104
|
}
|
|
148
105
|
],
|
|
149
106
|
"superclass": {
|
|
150
107
|
"name": "LitElement",
|
|
151
108
|
"package": "lit"
|
|
152
109
|
},
|
|
153
|
-
"tagName": "forge-ai-
|
|
154
|
-
"customElement": true
|
|
110
|
+
"tagName": "forge-ai-agent-info",
|
|
111
|
+
"customElement": true,
|
|
112
|
+
"summary": "Displays agent information in a grid layout"
|
|
155
113
|
}
|
|
156
114
|
],
|
|
157
115
|
"exports": [
|
|
158
116
|
{
|
|
159
117
|
"kind": "js",
|
|
160
|
-
"name": "
|
|
118
|
+
"name": "AiAgentInfoComponentTagName",
|
|
161
119
|
"declaration": {
|
|
162
|
-
"name": "
|
|
163
|
-
"module": "src/lib/ai-
|
|
120
|
+
"name": "AiAgentInfoComponentTagName",
|
|
121
|
+
"module": "src/lib/ai-agent-info/ai-agent-info.ts"
|
|
164
122
|
}
|
|
165
123
|
},
|
|
166
124
|
{
|
|
167
125
|
"kind": "js",
|
|
168
|
-
"name": "
|
|
126
|
+
"name": "AiAgentInfoComponent",
|
|
169
127
|
"declaration": {
|
|
170
|
-
"name": "
|
|
171
|
-
"module": "src/lib/ai-
|
|
128
|
+
"name": "AiAgentInfoComponent",
|
|
129
|
+
"module": "src/lib/ai-agent-info/ai-agent-info.ts"
|
|
172
130
|
}
|
|
173
131
|
},
|
|
174
132
|
{
|
|
175
133
|
"kind": "custom-element-definition",
|
|
176
134
|
"declaration": {
|
|
177
|
-
"name": "
|
|
178
|
-
"module": "src/lib/ai-
|
|
135
|
+
"name": "AiAgentInfoComponent",
|
|
136
|
+
"module": "src/lib/ai-agent-info/ai-agent-info.ts"
|
|
179
137
|
}
|
|
180
138
|
}
|
|
181
139
|
]
|
|
182
140
|
},
|
|
183
141
|
{
|
|
184
142
|
"kind": "javascript-module",
|
|
185
|
-
"path": "src/lib/ai-
|
|
143
|
+
"path": "src/lib/ai-artifact/ai-artifact.ts",
|
|
186
144
|
"declarations": [
|
|
187
145
|
{
|
|
188
146
|
"kind": "variable",
|
|
189
|
-
"name": "
|
|
147
|
+
"name": "AiArtifactComponentTagName",
|
|
190
148
|
"type": {
|
|
191
149
|
"text": "keyof HTMLElementTagNameMap"
|
|
192
150
|
},
|
|
193
|
-
"default": "'forge-ai-
|
|
151
|
+
"default": "'forge-ai-artifact'"
|
|
194
152
|
},
|
|
195
153
|
{
|
|
196
154
|
"kind": "class",
|
|
197
155
|
"description": "",
|
|
198
|
-
"name": "
|
|
199
|
-
"
|
|
156
|
+
"name": "AiArtifactComponent",
|
|
157
|
+
"cssProperties": [
|
|
200
158
|
{
|
|
201
|
-
"
|
|
202
|
-
"name": "
|
|
203
|
-
"type": {
|
|
204
|
-
"text": "AgentInfo | undefined"
|
|
205
|
-
},
|
|
206
|
-
"privacy": "public",
|
|
207
|
-
"description": "Agent information to display"
|
|
159
|
+
"description": "Surface color override for the toolbar (defaults to transparent)",
|
|
160
|
+
"name": "--forge-theme-surface"
|
|
208
161
|
}
|
|
209
162
|
],
|
|
163
|
+
"slots": [
|
|
164
|
+
{
|
|
165
|
+
"description": "Content for the start (left) side of the toolbar, typically used for titles or headings",
|
|
166
|
+
"name": "start"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"description": "Action buttons for the end (right) side of the toolbar",
|
|
170
|
+
"name": "actions"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"description": "Main content area below the toolbar",
|
|
174
|
+
"name": ""
|
|
175
|
+
}
|
|
176
|
+
],
|
|
177
|
+
"members": [],
|
|
210
178
|
"superclass": {
|
|
211
179
|
"name": "LitElement",
|
|
212
180
|
"package": "lit"
|
|
213
181
|
},
|
|
214
|
-
"tagName": "forge-ai-
|
|
215
|
-
"customElement": true
|
|
216
|
-
"summary": "Displays agent information in a grid layout"
|
|
182
|
+
"tagName": "forge-ai-artifact",
|
|
183
|
+
"customElement": true
|
|
217
184
|
}
|
|
218
185
|
],
|
|
219
186
|
"exports": [
|
|
220
187
|
{
|
|
221
188
|
"kind": "js",
|
|
222
|
-
"name": "
|
|
189
|
+
"name": "AiArtifactComponentTagName",
|
|
223
190
|
"declaration": {
|
|
224
|
-
"name": "
|
|
225
|
-
"module": "src/lib/ai-
|
|
191
|
+
"name": "AiArtifactComponentTagName",
|
|
192
|
+
"module": "src/lib/ai-artifact/ai-artifact.ts"
|
|
226
193
|
}
|
|
227
194
|
},
|
|
228
195
|
{
|
|
229
196
|
"kind": "js",
|
|
230
|
-
"name": "
|
|
197
|
+
"name": "AiArtifactComponent",
|
|
231
198
|
"declaration": {
|
|
232
|
-
"name": "
|
|
233
|
-
"module": "src/lib/ai-
|
|
199
|
+
"name": "AiArtifactComponent",
|
|
200
|
+
"module": "src/lib/ai-artifact/ai-artifact.ts"
|
|
234
201
|
}
|
|
235
202
|
},
|
|
236
203
|
{
|
|
237
204
|
"kind": "custom-element-definition",
|
|
238
205
|
"declaration": {
|
|
239
|
-
"name": "
|
|
240
|
-
"module": "src/lib/ai-
|
|
206
|
+
"name": "AiArtifactComponent",
|
|
207
|
+
"module": "src/lib/ai-artifact/ai-artifact.ts"
|
|
241
208
|
}
|
|
242
209
|
}
|
|
243
210
|
]
|
|
@@ -308,8 +275,8 @@
|
|
|
308
275
|
"type": {
|
|
309
276
|
"text": "CustomEvent<{ responseId: string }>"
|
|
310
277
|
},
|
|
311
|
-
"description": "Fired when
|
|
312
|
-
"name": "forge-ai-assistant-response-
|
|
278
|
+
"description": "Fired when resend action is clicked",
|
|
279
|
+
"name": "forge-ai-assistant-response-resend"
|
|
313
280
|
},
|
|
314
281
|
{
|
|
315
282
|
"type": {
|
|
@@ -381,71 +348,170 @@
|
|
|
381
348
|
},
|
|
382
349
|
{
|
|
383
350
|
"kind": "javascript-module",
|
|
384
|
-
"path": "src/lib/ai-
|
|
351
|
+
"path": "src/lib/ai-attachment/ai-attachment.ts",
|
|
385
352
|
"declarations": [
|
|
386
353
|
{
|
|
387
354
|
"kind": "variable",
|
|
388
|
-
"name": "
|
|
355
|
+
"name": "AiAttachmentComponentTagName",
|
|
389
356
|
"type": {
|
|
390
357
|
"text": "keyof HTMLElementTagNameMap"
|
|
391
358
|
},
|
|
392
|
-
"default": "'forge-ai-
|
|
359
|
+
"default": "'forge-ai-attachment'"
|
|
393
360
|
},
|
|
394
361
|
{
|
|
395
362
|
"kind": "class",
|
|
396
363
|
"description": "",
|
|
397
|
-
"name": "
|
|
364
|
+
"name": "AiAttachmentComponent",
|
|
398
365
|
"cssProperties": [
|
|
399
366
|
{
|
|
400
|
-
"description": "
|
|
401
|
-
"name": "--forge-
|
|
367
|
+
"description": "Background color of the attachment",
|
|
368
|
+
"name": "--forge-ai-attachment-background"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"description": "Border color of the attachment",
|
|
372
|
+
"name": "--forge-ai-attachment-border-color"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"description": "Padding inside the attachment",
|
|
376
|
+
"name": "--forge-ai-attachment-padding"
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"description": "Gap between elements",
|
|
380
|
+
"name": "--forge-ai-attachment-gap"
|
|
402
381
|
}
|
|
403
382
|
],
|
|
404
|
-
"
|
|
383
|
+
"members": [
|
|
405
384
|
{
|
|
406
|
-
"
|
|
407
|
-
"name": "
|
|
385
|
+
"kind": "field",
|
|
386
|
+
"name": "filename",
|
|
387
|
+
"type": {
|
|
388
|
+
"text": "string"
|
|
389
|
+
},
|
|
390
|
+
"privacy": "public",
|
|
391
|
+
"default": "''",
|
|
392
|
+
"attribute": "filename"
|
|
408
393
|
},
|
|
409
394
|
{
|
|
410
|
-
"
|
|
411
|
-
"name": "
|
|
395
|
+
"kind": "field",
|
|
396
|
+
"name": "size",
|
|
397
|
+
"type": {
|
|
398
|
+
"text": "number"
|
|
399
|
+
},
|
|
400
|
+
"privacy": "public",
|
|
401
|
+
"default": "0",
|
|
402
|
+
"attribute": "size"
|
|
412
403
|
},
|
|
413
404
|
{
|
|
414
|
-
"
|
|
415
|
-
"name": ""
|
|
405
|
+
"kind": "field",
|
|
406
|
+
"name": "removable",
|
|
407
|
+
"type": {
|
|
408
|
+
"text": "boolean"
|
|
409
|
+
},
|
|
410
|
+
"privacy": "public",
|
|
411
|
+
"default": "false",
|
|
412
|
+
"attribute": "removable"
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"kind": "field",
|
|
416
|
+
"name": "uploading",
|
|
417
|
+
"type": {
|
|
418
|
+
"text": "boolean"
|
|
419
|
+
},
|
|
420
|
+
"privacy": "public",
|
|
421
|
+
"default": "false",
|
|
422
|
+
"attribute": "uploading"
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"kind": "field",
|
|
426
|
+
"name": "progress",
|
|
427
|
+
"type": {
|
|
428
|
+
"text": "number | undefined"
|
|
429
|
+
},
|
|
430
|
+
"privacy": "public",
|
|
431
|
+
"attribute": "progress"
|
|
432
|
+
}
|
|
433
|
+
],
|
|
434
|
+
"events": [
|
|
435
|
+
{
|
|
436
|
+
"name": "forge-ai-attachment-remove",
|
|
437
|
+
"type": {
|
|
438
|
+
"text": "CustomEvent<ForgeAiAttachmentRemoveEventData>"
|
|
439
|
+
},
|
|
440
|
+
"description": "Fired when the remove button is clicked"
|
|
441
|
+
}
|
|
442
|
+
],
|
|
443
|
+
"attributes": [
|
|
444
|
+
{
|
|
445
|
+
"name": "filename",
|
|
446
|
+
"type": {
|
|
447
|
+
"text": "string"
|
|
448
|
+
},
|
|
449
|
+
"default": "''",
|
|
450
|
+
"fieldName": "filename"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"name": "size",
|
|
454
|
+
"type": {
|
|
455
|
+
"text": "number"
|
|
456
|
+
},
|
|
457
|
+
"default": "0",
|
|
458
|
+
"fieldName": "size"
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"name": "removable",
|
|
462
|
+
"type": {
|
|
463
|
+
"text": "boolean"
|
|
464
|
+
},
|
|
465
|
+
"default": "false",
|
|
466
|
+
"fieldName": "removable"
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"name": "uploading",
|
|
470
|
+
"type": {
|
|
471
|
+
"text": "boolean"
|
|
472
|
+
},
|
|
473
|
+
"default": "false",
|
|
474
|
+
"fieldName": "uploading"
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"name": "progress",
|
|
478
|
+
"type": {
|
|
479
|
+
"text": "number | undefined"
|
|
480
|
+
},
|
|
481
|
+
"fieldName": "progress"
|
|
416
482
|
}
|
|
417
483
|
],
|
|
418
|
-
"members": [],
|
|
419
484
|
"superclass": {
|
|
420
485
|
"name": "LitElement",
|
|
421
486
|
"package": "lit"
|
|
422
487
|
},
|
|
423
|
-
"tagName": "forge-ai-
|
|
424
|
-
"customElement": true
|
|
488
|
+
"tagName": "forge-ai-attachment",
|
|
489
|
+
"customElement": true,
|
|
490
|
+
"summary": "Displays file attachment information with removal capability."
|
|
425
491
|
}
|
|
426
492
|
],
|
|
427
493
|
"exports": [
|
|
428
494
|
{
|
|
429
495
|
"kind": "js",
|
|
430
|
-
"name": "
|
|
496
|
+
"name": "AiAttachmentComponentTagName",
|
|
431
497
|
"declaration": {
|
|
432
|
-
"name": "
|
|
433
|
-
"module": "src/lib/ai-
|
|
498
|
+
"name": "AiAttachmentComponentTagName",
|
|
499
|
+
"module": "src/lib/ai-attachment/ai-attachment.ts"
|
|
434
500
|
}
|
|
435
501
|
},
|
|
436
502
|
{
|
|
437
503
|
"kind": "js",
|
|
438
|
-
"name": "
|
|
504
|
+
"name": "AiAttachmentComponent",
|
|
439
505
|
"declaration": {
|
|
440
|
-
"name": "
|
|
441
|
-
"module": "src/lib/ai-
|
|
506
|
+
"name": "AiAttachmentComponent",
|
|
507
|
+
"module": "src/lib/ai-attachment/ai-attachment.ts"
|
|
442
508
|
}
|
|
443
509
|
},
|
|
444
510
|
{
|
|
445
511
|
"kind": "custom-element-definition",
|
|
446
512
|
"declaration": {
|
|
447
|
-
"name": "
|
|
448
|
-
"module": "src/lib/ai-
|
|
513
|
+
"name": "AiAttachmentComponent",
|
|
514
|
+
"module": "src/lib/ai-attachment/ai-attachment.ts"
|
|
449
515
|
}
|
|
450
516
|
}
|
|
451
517
|
]
|
|
@@ -533,170 +599,75 @@
|
|
|
533
599
|
},
|
|
534
600
|
{
|
|
535
601
|
"kind": "javascript-module",
|
|
536
|
-
"path": "src/lib/ai-
|
|
602
|
+
"path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
|
|
537
603
|
"declarations": [
|
|
538
604
|
{
|
|
539
605
|
"kind": "variable",
|
|
540
|
-
"name": "
|
|
606
|
+
"name": "AiChainOfThoughtComponentTagName",
|
|
541
607
|
"type": {
|
|
542
608
|
"text": "keyof HTMLElementTagNameMap"
|
|
543
609
|
},
|
|
544
|
-
"default": "'forge-ai-
|
|
610
|
+
"default": "'forge-ai-chain-of-thought'"
|
|
545
611
|
},
|
|
546
612
|
{
|
|
547
613
|
"kind": "class",
|
|
548
614
|
"description": "",
|
|
549
|
-
"name": "
|
|
550
|
-
"cssProperties": [
|
|
551
|
-
{
|
|
552
|
-
"description": "Background color of the attachment",
|
|
553
|
-
"name": "--forge-ai-attachment-background"
|
|
554
|
-
},
|
|
555
|
-
{
|
|
556
|
-
"description": "Border color of the attachment",
|
|
557
|
-
"name": "--forge-ai-attachment-border-color"
|
|
558
|
-
},
|
|
559
|
-
{
|
|
560
|
-
"description": "Padding inside the attachment",
|
|
561
|
-
"name": "--forge-ai-attachment-padding"
|
|
562
|
-
},
|
|
563
|
-
{
|
|
564
|
-
"description": "Gap between elements",
|
|
565
|
-
"name": "--forge-ai-attachment-gap"
|
|
566
|
-
}
|
|
567
|
-
],
|
|
615
|
+
"name": "AiChainOfThoughtComponent",
|
|
568
616
|
"members": [
|
|
569
617
|
{
|
|
570
618
|
"kind": "field",
|
|
571
|
-
"name": "
|
|
572
|
-
"type": {
|
|
573
|
-
"text": "string"
|
|
574
|
-
},
|
|
575
|
-
"privacy": "public",
|
|
576
|
-
"default": "''",
|
|
577
|
-
"attribute": "filename"
|
|
578
|
-
},
|
|
579
|
-
{
|
|
580
|
-
"kind": "field",
|
|
581
|
-
"name": "size",
|
|
582
|
-
"type": {
|
|
583
|
-
"text": "number"
|
|
584
|
-
},
|
|
585
|
-
"privacy": "public",
|
|
586
|
-
"default": "0",
|
|
587
|
-
"attribute": "size"
|
|
588
|
-
},
|
|
589
|
-
{
|
|
590
|
-
"kind": "field",
|
|
591
|
-
"name": "removable",
|
|
592
|
-
"type": {
|
|
593
|
-
"text": "boolean"
|
|
594
|
-
},
|
|
595
|
-
"privacy": "public",
|
|
596
|
-
"default": "false",
|
|
597
|
-
"attribute": "removable"
|
|
598
|
-
},
|
|
599
|
-
{
|
|
600
|
-
"kind": "field",
|
|
601
|
-
"name": "uploading",
|
|
619
|
+
"name": "expanded",
|
|
602
620
|
"type": {
|
|
603
621
|
"text": "boolean"
|
|
604
622
|
},
|
|
605
623
|
"privacy": "public",
|
|
606
624
|
"default": "false",
|
|
607
|
-
"
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
"kind": "field",
|
|
611
|
-
"name": "progress",
|
|
612
|
-
"type": {
|
|
613
|
-
"text": "number | undefined"
|
|
614
|
-
},
|
|
615
|
-
"privacy": "public",
|
|
616
|
-
"attribute": "progress"
|
|
617
|
-
}
|
|
618
|
-
],
|
|
619
|
-
"events": [
|
|
620
|
-
{
|
|
621
|
-
"name": "forge-ai-attachment-remove",
|
|
622
|
-
"type": {
|
|
623
|
-
"text": "CustomEvent<ForgeAiAttachmentRemoveEventData>"
|
|
624
|
-
},
|
|
625
|
-
"description": "Fired when the remove button is clicked"
|
|
625
|
+
"description": "Whether the chain of thought is expanded",
|
|
626
|
+
"attribute": "expanded",
|
|
627
|
+
"reflects": true
|
|
626
628
|
}
|
|
627
629
|
],
|
|
628
630
|
"attributes": [
|
|
629
631
|
{
|
|
630
|
-
"name": "
|
|
631
|
-
"type": {
|
|
632
|
-
"text": "string"
|
|
633
|
-
},
|
|
634
|
-
"default": "''",
|
|
635
|
-
"fieldName": "filename"
|
|
636
|
-
},
|
|
637
|
-
{
|
|
638
|
-
"name": "size",
|
|
639
|
-
"type": {
|
|
640
|
-
"text": "number"
|
|
641
|
-
},
|
|
642
|
-
"default": "0",
|
|
643
|
-
"fieldName": "size"
|
|
644
|
-
},
|
|
645
|
-
{
|
|
646
|
-
"name": "removable",
|
|
647
|
-
"type": {
|
|
648
|
-
"text": "boolean"
|
|
649
|
-
},
|
|
650
|
-
"default": "false",
|
|
651
|
-
"fieldName": "removable"
|
|
652
|
-
},
|
|
653
|
-
{
|
|
654
|
-
"name": "uploading",
|
|
632
|
+
"name": "expanded",
|
|
655
633
|
"type": {
|
|
656
634
|
"text": "boolean"
|
|
657
635
|
},
|
|
658
636
|
"default": "false",
|
|
659
|
-
"
|
|
660
|
-
|
|
661
|
-
{
|
|
662
|
-
"name": "progress",
|
|
663
|
-
"type": {
|
|
664
|
-
"text": "number | undefined"
|
|
665
|
-
},
|
|
666
|
-
"fieldName": "progress"
|
|
637
|
+
"description": "Whether the chain of thought is expanded",
|
|
638
|
+
"fieldName": "expanded"
|
|
667
639
|
}
|
|
668
640
|
],
|
|
669
641
|
"superclass": {
|
|
670
642
|
"name": "LitElement",
|
|
671
643
|
"package": "lit"
|
|
672
644
|
},
|
|
673
|
-
"tagName": "forge-ai-
|
|
674
|
-
"customElement": true
|
|
675
|
-
"summary": "Displays file attachment information with removal capability."
|
|
645
|
+
"tagName": "forge-ai-chain-of-thought",
|
|
646
|
+
"customElement": true
|
|
676
647
|
}
|
|
677
648
|
],
|
|
678
649
|
"exports": [
|
|
679
650
|
{
|
|
680
651
|
"kind": "js",
|
|
681
|
-
"name": "
|
|
652
|
+
"name": "AiChainOfThoughtComponentTagName",
|
|
682
653
|
"declaration": {
|
|
683
|
-
"name": "
|
|
684
|
-
"module": "src/lib/ai-
|
|
654
|
+
"name": "AiChainOfThoughtComponentTagName",
|
|
655
|
+
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
685
656
|
}
|
|
686
657
|
},
|
|
687
658
|
{
|
|
688
659
|
"kind": "js",
|
|
689
|
-
"name": "
|
|
660
|
+
"name": "AiChainOfThoughtComponent",
|
|
690
661
|
"declaration": {
|
|
691
|
-
"name": "
|
|
692
|
-
"module": "src/lib/ai-
|
|
662
|
+
"name": "AiChainOfThoughtComponent",
|
|
663
|
+
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
693
664
|
}
|
|
694
665
|
},
|
|
695
666
|
{
|
|
696
667
|
"kind": "custom-element-definition",
|
|
697
668
|
"declaration": {
|
|
698
|
-
"name": "
|
|
699
|
-
"module": "src/lib/ai-
|
|
669
|
+
"name": "AiChainOfThoughtComponent",
|
|
670
|
+
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
700
671
|
}
|
|
701
672
|
}
|
|
702
673
|
]
|
|
@@ -986,81 +957,6 @@
|
|
|
986
957
|
}
|
|
987
958
|
]
|
|
988
959
|
},
|
|
989
|
-
{
|
|
990
|
-
"kind": "javascript-module",
|
|
991
|
-
"path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
|
|
992
|
-
"declarations": [
|
|
993
|
-
{
|
|
994
|
-
"kind": "variable",
|
|
995
|
-
"name": "AiChainOfThoughtComponentTagName",
|
|
996
|
-
"type": {
|
|
997
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
998
|
-
},
|
|
999
|
-
"default": "'forge-ai-chain-of-thought'"
|
|
1000
|
-
},
|
|
1001
|
-
{
|
|
1002
|
-
"kind": "class",
|
|
1003
|
-
"description": "",
|
|
1004
|
-
"name": "AiChainOfThoughtComponent",
|
|
1005
|
-
"members": [
|
|
1006
|
-
{
|
|
1007
|
-
"kind": "field",
|
|
1008
|
-
"name": "expanded",
|
|
1009
|
-
"type": {
|
|
1010
|
-
"text": "boolean"
|
|
1011
|
-
},
|
|
1012
|
-
"privacy": "public",
|
|
1013
|
-
"default": "false",
|
|
1014
|
-
"description": "Whether the chain of thought is expanded",
|
|
1015
|
-
"attribute": "expanded",
|
|
1016
|
-
"reflects": true
|
|
1017
|
-
}
|
|
1018
|
-
],
|
|
1019
|
-
"attributes": [
|
|
1020
|
-
{
|
|
1021
|
-
"name": "expanded",
|
|
1022
|
-
"type": {
|
|
1023
|
-
"text": "boolean"
|
|
1024
|
-
},
|
|
1025
|
-
"default": "false",
|
|
1026
|
-
"description": "Whether the chain of thought is expanded",
|
|
1027
|
-
"fieldName": "expanded"
|
|
1028
|
-
}
|
|
1029
|
-
],
|
|
1030
|
-
"superclass": {
|
|
1031
|
-
"name": "LitElement",
|
|
1032
|
-
"package": "lit"
|
|
1033
|
-
},
|
|
1034
|
-
"tagName": "forge-ai-chain-of-thought",
|
|
1035
|
-
"customElement": true
|
|
1036
|
-
}
|
|
1037
|
-
],
|
|
1038
|
-
"exports": [
|
|
1039
|
-
{
|
|
1040
|
-
"kind": "js",
|
|
1041
|
-
"name": "AiChainOfThoughtComponentTagName",
|
|
1042
|
-
"declaration": {
|
|
1043
|
-
"name": "AiChainOfThoughtComponentTagName",
|
|
1044
|
-
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
1045
|
-
}
|
|
1046
|
-
},
|
|
1047
|
-
{
|
|
1048
|
-
"kind": "js",
|
|
1049
|
-
"name": "AiChainOfThoughtComponent",
|
|
1050
|
-
"declaration": {
|
|
1051
|
-
"name": "AiChainOfThoughtComponent",
|
|
1052
|
-
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
1053
|
-
}
|
|
1054
|
-
},
|
|
1055
|
-
{
|
|
1056
|
-
"kind": "custom-element-definition",
|
|
1057
|
-
"declaration": {
|
|
1058
|
-
"name": "AiChainOfThoughtComponent",
|
|
1059
|
-
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
1060
|
-
}
|
|
1061
|
-
}
|
|
1062
|
-
]
|
|
1063
|
-
},
|
|
1064
960
|
{
|
|
1065
961
|
"kind": "javascript-module",
|
|
1066
962
|
"path": "src/lib/ai-chat-interface/ai-chat-interface.ts",
|
|
@@ -1097,10 +993,6 @@
|
|
|
1097
993
|
{
|
|
1098
994
|
"description": "Slot for AI prompt component",
|
|
1099
995
|
"name": "prompt"
|
|
1100
|
-
},
|
|
1101
|
-
{
|
|
1102
|
-
"description": "Slot for confirmation prompt overlay",
|
|
1103
|
-
"name": "confirmation"
|
|
1104
996
|
}
|
|
1105
997
|
],
|
|
1106
998
|
"members": [
|
|
@@ -1151,38 +1043,181 @@
|
|
|
1151
1043
|
},
|
|
1152
1044
|
{
|
|
1153
1045
|
"kind": "javascript-module",
|
|
1154
|
-
"path": "src/lib/ai-
|
|
1046
|
+
"path": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts",
|
|
1155
1047
|
"declarations": [
|
|
1048
|
+
{
|
|
1049
|
+
"kind": "variable",
|
|
1050
|
+
"name": "AiConfirmationPromptComponentTagName",
|
|
1051
|
+
"type": {
|
|
1052
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
1053
|
+
},
|
|
1054
|
+
"default": "'forge-ai-confirmation-prompt'"
|
|
1055
|
+
},
|
|
1156
1056
|
{
|
|
1157
1057
|
"kind": "class",
|
|
1158
1058
|
"description": "",
|
|
1159
|
-
"name": "
|
|
1059
|
+
"name": "AiConfirmationPromptComponent",
|
|
1160
1060
|
"members": [
|
|
1161
1061
|
{
|
|
1162
1062
|
"kind": "field",
|
|
1163
|
-
"name": "
|
|
1063
|
+
"name": "text",
|
|
1164
1064
|
"type": {
|
|
1165
1065
|
"text": "string"
|
|
1166
1066
|
},
|
|
1167
1067
|
"privacy": "public",
|
|
1168
|
-
"
|
|
1169
|
-
|
|
1170
|
-
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1171
|
-
}
|
|
1068
|
+
"default": "''",
|
|
1069
|
+
"attribute": "text"
|
|
1172
1070
|
},
|
|
1173
1071
|
{
|
|
1174
|
-
"kind": "
|
|
1175
|
-
"name": "
|
|
1176
|
-
"
|
|
1177
|
-
|
|
1178
|
-
"type": {
|
|
1179
|
-
"text": "void"
|
|
1180
|
-
}
|
|
1072
|
+
"kind": "field",
|
|
1073
|
+
"name": "confirmText",
|
|
1074
|
+
"type": {
|
|
1075
|
+
"text": "string"
|
|
1181
1076
|
},
|
|
1182
|
-
"
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1077
|
+
"privacy": "public",
|
|
1078
|
+
"default": "'Confirm'",
|
|
1079
|
+
"attribute": "confirm-text"
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
"kind": "field",
|
|
1083
|
+
"name": "denyText",
|
|
1084
|
+
"type": {
|
|
1085
|
+
"text": "string"
|
|
1086
|
+
},
|
|
1087
|
+
"privacy": "public",
|
|
1088
|
+
"default": "'Deny'",
|
|
1089
|
+
"attribute": "deny-text"
|
|
1090
|
+
},
|
|
1091
|
+
{
|
|
1092
|
+
"kind": "field",
|
|
1093
|
+
"name": "disabled",
|
|
1094
|
+
"type": {
|
|
1095
|
+
"text": "boolean"
|
|
1096
|
+
},
|
|
1097
|
+
"privacy": "public",
|
|
1098
|
+
"default": "false",
|
|
1099
|
+
"attribute": "disabled"
|
|
1100
|
+
}
|
|
1101
|
+
],
|
|
1102
|
+
"events": [
|
|
1103
|
+
{
|
|
1104
|
+
"type": {
|
|
1105
|
+
"text": "CustomEvent<void>"
|
|
1106
|
+
},
|
|
1107
|
+
"description": "Fired when user confirms the prompt",
|
|
1108
|
+
"name": "forge-ai-confirmation-prompt-confirm"
|
|
1109
|
+
},
|
|
1110
|
+
{
|
|
1111
|
+
"type": {
|
|
1112
|
+
"text": "CustomEvent<void>"
|
|
1113
|
+
},
|
|
1114
|
+
"description": "Fired when user denies the prompt",
|
|
1115
|
+
"name": "forge-ai-confirmation-prompt-deny"
|
|
1116
|
+
}
|
|
1117
|
+
],
|
|
1118
|
+
"attributes": [
|
|
1119
|
+
{
|
|
1120
|
+
"name": "text",
|
|
1121
|
+
"type": {
|
|
1122
|
+
"text": "string"
|
|
1123
|
+
},
|
|
1124
|
+
"default": "''",
|
|
1125
|
+
"fieldName": "text"
|
|
1126
|
+
},
|
|
1127
|
+
{
|
|
1128
|
+
"name": "confirm-text",
|
|
1129
|
+
"type": {
|
|
1130
|
+
"text": "string"
|
|
1131
|
+
},
|
|
1132
|
+
"default": "'Confirm'",
|
|
1133
|
+
"fieldName": "confirmText"
|
|
1134
|
+
},
|
|
1135
|
+
{
|
|
1136
|
+
"name": "deny-text",
|
|
1137
|
+
"type": {
|
|
1138
|
+
"text": "string"
|
|
1139
|
+
},
|
|
1140
|
+
"default": "'Deny'",
|
|
1141
|
+
"fieldName": "denyText"
|
|
1142
|
+
},
|
|
1143
|
+
{
|
|
1144
|
+
"name": "disabled",
|
|
1145
|
+
"type": {
|
|
1146
|
+
"text": "boolean"
|
|
1147
|
+
},
|
|
1148
|
+
"default": "false",
|
|
1149
|
+
"fieldName": "disabled"
|
|
1150
|
+
}
|
|
1151
|
+
],
|
|
1152
|
+
"superclass": {
|
|
1153
|
+
"name": "LitElement",
|
|
1154
|
+
"package": "lit"
|
|
1155
|
+
},
|
|
1156
|
+
"tagName": "forge-ai-confirmation-prompt",
|
|
1157
|
+
"customElement": true,
|
|
1158
|
+
"summary": "Displays a confirmation UI for requiring human approval."
|
|
1159
|
+
}
|
|
1160
|
+
],
|
|
1161
|
+
"exports": [
|
|
1162
|
+
{
|
|
1163
|
+
"kind": "js",
|
|
1164
|
+
"name": "AiConfirmationPromptComponentTagName",
|
|
1165
|
+
"declaration": {
|
|
1166
|
+
"name": "AiConfirmationPromptComponentTagName",
|
|
1167
|
+
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
1168
|
+
}
|
|
1169
|
+
},
|
|
1170
|
+
{
|
|
1171
|
+
"kind": "js",
|
|
1172
|
+
"name": "AiConfirmationPromptComponent",
|
|
1173
|
+
"declaration": {
|
|
1174
|
+
"name": "AiConfirmationPromptComponent",
|
|
1175
|
+
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
1176
|
+
}
|
|
1177
|
+
},
|
|
1178
|
+
{
|
|
1179
|
+
"kind": "custom-element-definition",
|
|
1180
|
+
"declaration": {
|
|
1181
|
+
"name": "AiConfirmationPromptComponent",
|
|
1182
|
+
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
1183
|
+
}
|
|
1184
|
+
}
|
|
1185
|
+
]
|
|
1186
|
+
},
|
|
1187
|
+
{
|
|
1188
|
+
"kind": "javascript-module",
|
|
1189
|
+
"path": "src/lib/ai-chatbot/ag-ui-adapter.ts",
|
|
1190
|
+
"declarations": [
|
|
1191
|
+
{
|
|
1192
|
+
"kind": "class",
|
|
1193
|
+
"description": "",
|
|
1194
|
+
"name": "AgUiAdapter",
|
|
1195
|
+
"members": [
|
|
1196
|
+
{
|
|
1197
|
+
"kind": "field",
|
|
1198
|
+
"name": "threadId",
|
|
1199
|
+
"type": {
|
|
1200
|
+
"text": "string"
|
|
1201
|
+
},
|
|
1202
|
+
"privacy": "public",
|
|
1203
|
+
"inheritedFrom": {
|
|
1204
|
+
"name": "AgentAdapter",
|
|
1205
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1206
|
+
}
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
"kind": "method",
|
|
1210
|
+
"name": "setContext",
|
|
1211
|
+
"privacy": "public",
|
|
1212
|
+
"return": {
|
|
1213
|
+
"type": {
|
|
1214
|
+
"text": "void"
|
|
1215
|
+
}
|
|
1216
|
+
},
|
|
1217
|
+
"parameters": [
|
|
1218
|
+
{
|
|
1219
|
+
"name": "context",
|
|
1220
|
+
"type": {
|
|
1186
1221
|
"text": "Record<string, unknown>"
|
|
1187
1222
|
}
|
|
1188
1223
|
}
|
|
@@ -3340,11 +3375,6 @@
|
|
|
3340
3375
|
"customElement": true,
|
|
3341
3376
|
"summary": "A complete, self-contained AI chatbot component that implements the AG-UI protocol using an adapter pattern."
|
|
3342
3377
|
},
|
|
3343
|
-
{
|
|
3344
|
-
"kind": "variable",
|
|
3345
|
-
"name": "args",
|
|
3346
|
-
"default": "event.args as unknown"
|
|
3347
|
-
},
|
|
3348
3378
|
{
|
|
3349
3379
|
"kind": "variable",
|
|
3350
3380
|
"name": "event"
|
|
@@ -4545,266 +4575,123 @@
|
|
|
4545
4575
|
},
|
|
4546
4576
|
{
|
|
4547
4577
|
"kind": "javascript-module",
|
|
4548
|
-
"path": "src/lib/ai-
|
|
4578
|
+
"path": "src/lib/ai-dialog/ai-dialog.ts",
|
|
4549
4579
|
"declarations": [
|
|
4550
4580
|
{
|
|
4551
4581
|
"kind": "variable",
|
|
4552
|
-
"name": "
|
|
4582
|
+
"name": "AiDialogComponentTagName",
|
|
4553
4583
|
"type": {
|
|
4554
4584
|
"text": "keyof HTMLElementTagNameMap"
|
|
4555
4585
|
},
|
|
4556
|
-
"default": "'forge-ai-
|
|
4586
|
+
"default": "'forge-ai-dialog'"
|
|
4557
4587
|
},
|
|
4558
4588
|
{
|
|
4559
4589
|
"kind": "class",
|
|
4560
4590
|
"description": "",
|
|
4561
|
-
"name": "
|
|
4591
|
+
"name": "AiDialogComponent",
|
|
4592
|
+
"slots": [
|
|
4593
|
+
{
|
|
4594
|
+
"description": "Default slot for dialog content (typically ai-chat-interface)",
|
|
4595
|
+
"name": ""
|
|
4596
|
+
}
|
|
4597
|
+
],
|
|
4562
4598
|
"members": [
|
|
4563
4599
|
{
|
|
4564
4600
|
"kind": "field",
|
|
4565
|
-
"name": "
|
|
4601
|
+
"name": "open",
|
|
4566
4602
|
"type": {
|
|
4567
|
-
"text": "
|
|
4603
|
+
"text": "boolean"
|
|
4568
4604
|
},
|
|
4569
4605
|
"privacy": "public",
|
|
4570
|
-
"default": "
|
|
4571
|
-
"
|
|
4606
|
+
"default": "false",
|
|
4607
|
+
"description": "Indicates whether the dialog is open.",
|
|
4608
|
+
"attribute": "open"
|
|
4572
4609
|
},
|
|
4573
4610
|
{
|
|
4574
4611
|
"kind": "field",
|
|
4575
|
-
"name": "
|
|
4612
|
+
"name": "expanded",
|
|
4576
4613
|
"type": {
|
|
4577
|
-
"text": "
|
|
4614
|
+
"text": "boolean"
|
|
4578
4615
|
},
|
|
4579
4616
|
"privacy": "public",
|
|
4580
|
-
"default": "
|
|
4581
|
-
"
|
|
4617
|
+
"default": "false",
|
|
4618
|
+
"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.",
|
|
4619
|
+
"attribute": "expanded"
|
|
4582
4620
|
},
|
|
4583
4621
|
{
|
|
4584
4622
|
"kind": "field",
|
|
4585
|
-
"name": "
|
|
4623
|
+
"name": "isFullscreen",
|
|
4586
4624
|
"type": {
|
|
4587
|
-
"text": "
|
|
4625
|
+
"text": "boolean"
|
|
4588
4626
|
},
|
|
4589
4627
|
"privacy": "public",
|
|
4590
|
-
"
|
|
4591
|
-
"
|
|
4628
|
+
"description": "Gets the current fullscreen state (readonly)",
|
|
4629
|
+
"readonly": true
|
|
4592
4630
|
},
|
|
4593
4631
|
{
|
|
4594
|
-
"kind": "
|
|
4595
|
-
"name": "
|
|
4596
|
-
"
|
|
4597
|
-
|
|
4632
|
+
"kind": "method",
|
|
4633
|
+
"name": "show",
|
|
4634
|
+
"privacy": "public",
|
|
4635
|
+
"return": {
|
|
4636
|
+
"type": {
|
|
4637
|
+
"text": "void"
|
|
4638
|
+
}
|
|
4598
4639
|
},
|
|
4640
|
+
"description": "Opens the dialog."
|
|
4641
|
+
},
|
|
4642
|
+
{
|
|
4643
|
+
"kind": "method",
|
|
4644
|
+
"name": "close",
|
|
4599
4645
|
"privacy": "public",
|
|
4600
|
-
"
|
|
4601
|
-
|
|
4646
|
+
"return": {
|
|
4647
|
+
"type": {
|
|
4648
|
+
"text": "void"
|
|
4649
|
+
}
|
|
4650
|
+
},
|
|
4651
|
+
"description": "Closes the dialog."
|
|
4652
|
+
},
|
|
4653
|
+
{
|
|
4654
|
+
"kind": "method",
|
|
4655
|
+
"name": "toggle",
|
|
4656
|
+
"privacy": "public",
|
|
4657
|
+
"return": {
|
|
4658
|
+
"type": {
|
|
4659
|
+
"text": "void"
|
|
4660
|
+
}
|
|
4661
|
+
},
|
|
4662
|
+
"description": "Toggles the dialog open state."
|
|
4602
4663
|
}
|
|
4603
4664
|
],
|
|
4604
4665
|
"events": [
|
|
4605
4666
|
{
|
|
4606
4667
|
"type": {
|
|
4607
|
-
"text": "CustomEvent<
|
|
4668
|
+
"text": "CustomEvent<{ isFullscreen: boolean }>"
|
|
4608
4669
|
},
|
|
4609
|
-
"description": "Fired when
|
|
4610
|
-
"name": "forge-ai-
|
|
4670
|
+
"description": "Fired when the fullscreen state changes due to viewport size",
|
|
4671
|
+
"name": "forge-ai-dialog-fullscreen-change"
|
|
4611
4672
|
},
|
|
4612
4673
|
{
|
|
4613
4674
|
"type": {
|
|
4614
4675
|
"text": "CustomEvent<void>"
|
|
4615
4676
|
},
|
|
4616
|
-
"description": "Fired when
|
|
4617
|
-
"name": "forge-ai-
|
|
4677
|
+
"description": "Fired when the dialog is closed",
|
|
4678
|
+
"name": "forge-ai-dialog-close"
|
|
4618
4679
|
}
|
|
4619
4680
|
],
|
|
4620
4681
|
"attributes": [
|
|
4621
4682
|
{
|
|
4622
|
-
"name": "
|
|
4623
|
-
"type": {
|
|
4624
|
-
"text": "string"
|
|
4625
|
-
},
|
|
4626
|
-
"default": "''",
|
|
4627
|
-
"fieldName": "text"
|
|
4628
|
-
},
|
|
4629
|
-
{
|
|
4630
|
-
"name": "confirm-text",
|
|
4683
|
+
"name": "open",
|
|
4631
4684
|
"type": {
|
|
4632
|
-
"text": "
|
|
4685
|
+
"text": "boolean"
|
|
4633
4686
|
},
|
|
4634
|
-
"default": "
|
|
4635
|
-
"
|
|
4687
|
+
"default": "false",
|
|
4688
|
+
"description": "Indicates whether the dialog is open.",
|
|
4689
|
+
"fieldName": "open"
|
|
4636
4690
|
},
|
|
4637
4691
|
{
|
|
4638
|
-
"name": "
|
|
4692
|
+
"name": "expanded",
|
|
4639
4693
|
"type": {
|
|
4640
|
-
"text": "
|
|
4641
|
-
},
|
|
4642
|
-
"default": "'Deny'",
|
|
4643
|
-
"fieldName": "denyText"
|
|
4644
|
-
},
|
|
4645
|
-
{
|
|
4646
|
-
"name": "disabled",
|
|
4647
|
-
"type": {
|
|
4648
|
-
"text": "boolean"
|
|
4649
|
-
},
|
|
4650
|
-
"default": "false",
|
|
4651
|
-
"fieldName": "disabled"
|
|
4652
|
-
}
|
|
4653
|
-
],
|
|
4654
|
-
"superclass": {
|
|
4655
|
-
"name": "LitElement",
|
|
4656
|
-
"package": "lit"
|
|
4657
|
-
},
|
|
4658
|
-
"tagName": "forge-ai-confirmation-prompt",
|
|
4659
|
-
"customElement": true,
|
|
4660
|
-
"summary": "Displays a confirmation UI for requiring human approval."
|
|
4661
|
-
}
|
|
4662
|
-
],
|
|
4663
|
-
"exports": [
|
|
4664
|
-
{
|
|
4665
|
-
"kind": "js",
|
|
4666
|
-
"name": "AiConfirmationPromptComponentTagName",
|
|
4667
|
-
"declaration": {
|
|
4668
|
-
"name": "AiConfirmationPromptComponentTagName",
|
|
4669
|
-
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
4670
|
-
}
|
|
4671
|
-
},
|
|
4672
|
-
{
|
|
4673
|
-
"kind": "js",
|
|
4674
|
-
"name": "AiConfirmationPromptComponent",
|
|
4675
|
-
"declaration": {
|
|
4676
|
-
"name": "AiConfirmationPromptComponent",
|
|
4677
|
-
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
4678
|
-
}
|
|
4679
|
-
},
|
|
4680
|
-
{
|
|
4681
|
-
"kind": "custom-element-definition",
|
|
4682
|
-
"declaration": {
|
|
4683
|
-
"name": "AiConfirmationPromptComponent",
|
|
4684
|
-
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
4685
|
-
}
|
|
4686
|
-
}
|
|
4687
|
-
]
|
|
4688
|
-
},
|
|
4689
|
-
{
|
|
4690
|
-
"kind": "javascript-module",
|
|
4691
|
-
"path": "src/lib/ai-dialog/ai-dialog.ts",
|
|
4692
|
-
"declarations": [
|
|
4693
|
-
{
|
|
4694
|
-
"kind": "variable",
|
|
4695
|
-
"name": "AiDialogComponentTagName",
|
|
4696
|
-
"type": {
|
|
4697
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
4698
|
-
},
|
|
4699
|
-
"default": "'forge-ai-dialog'"
|
|
4700
|
-
},
|
|
4701
|
-
{
|
|
4702
|
-
"kind": "class",
|
|
4703
|
-
"description": "",
|
|
4704
|
-
"name": "AiDialogComponent",
|
|
4705
|
-
"slots": [
|
|
4706
|
-
{
|
|
4707
|
-
"description": "Default slot for dialog content (typically ai-chat-interface)",
|
|
4708
|
-
"name": ""
|
|
4709
|
-
}
|
|
4710
|
-
],
|
|
4711
|
-
"members": [
|
|
4712
|
-
{
|
|
4713
|
-
"kind": "field",
|
|
4714
|
-
"name": "open",
|
|
4715
|
-
"type": {
|
|
4716
|
-
"text": "boolean"
|
|
4717
|
-
},
|
|
4718
|
-
"privacy": "public",
|
|
4719
|
-
"default": "false",
|
|
4720
|
-
"description": "Indicates whether the dialog is open.",
|
|
4721
|
-
"attribute": "open"
|
|
4722
|
-
},
|
|
4723
|
-
{
|
|
4724
|
-
"kind": "field",
|
|
4725
|
-
"name": "expanded",
|
|
4726
|
-
"type": {
|
|
4727
|
-
"text": "boolean"
|
|
4728
|
-
},
|
|
4729
|
-
"privacy": "public",
|
|
4730
|
-
"default": "false",
|
|
4731
|
-
"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.",
|
|
4732
|
-
"attribute": "expanded"
|
|
4733
|
-
},
|
|
4734
|
-
{
|
|
4735
|
-
"kind": "field",
|
|
4736
|
-
"name": "isFullscreen",
|
|
4737
|
-
"type": {
|
|
4738
|
-
"text": "boolean"
|
|
4739
|
-
},
|
|
4740
|
-
"privacy": "public",
|
|
4741
|
-
"description": "Gets the current fullscreen state (readonly)",
|
|
4742
|
-
"readonly": true
|
|
4743
|
-
},
|
|
4744
|
-
{
|
|
4745
|
-
"kind": "method",
|
|
4746
|
-
"name": "show",
|
|
4747
|
-
"privacy": "public",
|
|
4748
|
-
"return": {
|
|
4749
|
-
"type": {
|
|
4750
|
-
"text": "void"
|
|
4751
|
-
}
|
|
4752
|
-
},
|
|
4753
|
-
"description": "Opens the dialog."
|
|
4754
|
-
},
|
|
4755
|
-
{
|
|
4756
|
-
"kind": "method",
|
|
4757
|
-
"name": "close",
|
|
4758
|
-
"privacy": "public",
|
|
4759
|
-
"return": {
|
|
4760
|
-
"type": {
|
|
4761
|
-
"text": "void"
|
|
4762
|
-
}
|
|
4763
|
-
},
|
|
4764
|
-
"description": "Closes the dialog."
|
|
4765
|
-
},
|
|
4766
|
-
{
|
|
4767
|
-
"kind": "method",
|
|
4768
|
-
"name": "toggle",
|
|
4769
|
-
"privacy": "public",
|
|
4770
|
-
"return": {
|
|
4771
|
-
"type": {
|
|
4772
|
-
"text": "void"
|
|
4773
|
-
}
|
|
4774
|
-
},
|
|
4775
|
-
"description": "Toggles the dialog open state."
|
|
4776
|
-
}
|
|
4777
|
-
],
|
|
4778
|
-
"events": [
|
|
4779
|
-
{
|
|
4780
|
-
"type": {
|
|
4781
|
-
"text": "CustomEvent<{ isFullscreen: boolean }>"
|
|
4782
|
-
},
|
|
4783
|
-
"description": "Fired when the fullscreen state changes due to viewport size",
|
|
4784
|
-
"name": "forge-ai-dialog-fullscreen-change"
|
|
4785
|
-
},
|
|
4786
|
-
{
|
|
4787
|
-
"type": {
|
|
4788
|
-
"text": "CustomEvent<void>"
|
|
4789
|
-
},
|
|
4790
|
-
"description": "Fired when the dialog is closed",
|
|
4791
|
-
"name": "forge-ai-dialog-close"
|
|
4792
|
-
}
|
|
4793
|
-
],
|
|
4794
|
-
"attributes": [
|
|
4795
|
-
{
|
|
4796
|
-
"name": "open",
|
|
4797
|
-
"type": {
|
|
4798
|
-
"text": "boolean"
|
|
4799
|
-
},
|
|
4800
|
-
"default": "false",
|
|
4801
|
-
"description": "Indicates whether the dialog is open.",
|
|
4802
|
-
"fieldName": "open"
|
|
4803
|
-
},
|
|
4804
|
-
{
|
|
4805
|
-
"name": "expanded",
|
|
4806
|
-
"type": {
|
|
4807
|
-
"text": "boolean"
|
|
4694
|
+
"text": "boolean"
|
|
4808
4695
|
},
|
|
4809
4696
|
"default": "false",
|
|
4810
4697
|
"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.",
|
|
@@ -5909,124 +5796,124 @@
|
|
|
5909
5796
|
},
|
|
5910
5797
|
{
|
|
5911
5798
|
"kind": "javascript-module",
|
|
5912
|
-
"path": "src/lib/ai-
|
|
5799
|
+
"path": "src/lib/ai-event-stream-viewer/ai-event-stream-viewer.ts",
|
|
5913
5800
|
"declarations": [
|
|
5914
5801
|
{
|
|
5915
5802
|
"kind": "variable",
|
|
5916
|
-
"name": "
|
|
5803
|
+
"name": "AiEventStreamViewerComponentTagName",
|
|
5917
5804
|
"type": {
|
|
5918
5805
|
"text": "keyof HTMLElementTagNameMap"
|
|
5919
5806
|
},
|
|
5920
|
-
"default": "'forge-ai-
|
|
5807
|
+
"default": "'forge-ai-event-stream-viewer'"
|
|
5921
5808
|
},
|
|
5922
5809
|
{
|
|
5923
5810
|
"kind": "class",
|
|
5924
5811
|
"description": "",
|
|
5925
|
-
"name": "
|
|
5926
|
-
"
|
|
5927
|
-
{
|
|
5928
|
-
"description": "The error title text",
|
|
5929
|
-
"name": "title"
|
|
5930
|
-
},
|
|
5812
|
+
"name": "AiEventStreamViewerComponent",
|
|
5813
|
+
"members": [
|
|
5931
5814
|
{
|
|
5932
|
-
"
|
|
5933
|
-
"name": ""
|
|
5815
|
+
"kind": "field",
|
|
5816
|
+
"name": "events",
|
|
5817
|
+
"type": {
|
|
5818
|
+
"text": "StreamEvent[]"
|
|
5819
|
+
},
|
|
5820
|
+
"privacy": "public",
|
|
5821
|
+
"default": "[]"
|
|
5934
5822
|
}
|
|
5935
5823
|
],
|
|
5936
|
-
"members": [],
|
|
5937
5824
|
"superclass": {
|
|
5938
5825
|
"name": "LitElement",
|
|
5939
5826
|
"package": "lit"
|
|
5940
5827
|
},
|
|
5941
|
-
"tagName": "forge-ai-
|
|
5828
|
+
"tagName": "forge-ai-event-stream-viewer",
|
|
5942
5829
|
"customElement": true,
|
|
5943
|
-
"summary": "Displays
|
|
5830
|
+
"summary": "Displays a timeline of adapter events with expandable JSON data."
|
|
5944
5831
|
}
|
|
5945
5832
|
],
|
|
5946
5833
|
"exports": [
|
|
5947
5834
|
{
|
|
5948
5835
|
"kind": "js",
|
|
5949
|
-
"name": "
|
|
5836
|
+
"name": "AiEventStreamViewerComponentTagName",
|
|
5950
5837
|
"declaration": {
|
|
5951
|
-
"name": "
|
|
5952
|
-
"module": "src/lib/ai-
|
|
5838
|
+
"name": "AiEventStreamViewerComponentTagName",
|
|
5839
|
+
"module": "src/lib/ai-event-stream-viewer/ai-event-stream-viewer.ts"
|
|
5953
5840
|
}
|
|
5954
5841
|
},
|
|
5955
5842
|
{
|
|
5956
5843
|
"kind": "js",
|
|
5957
|
-
"name": "
|
|
5844
|
+
"name": "AiEventStreamViewerComponent",
|
|
5958
5845
|
"declaration": {
|
|
5959
|
-
"name": "
|
|
5960
|
-
"module": "src/lib/ai-
|
|
5846
|
+
"name": "AiEventStreamViewerComponent",
|
|
5847
|
+
"module": "src/lib/ai-event-stream-viewer/ai-event-stream-viewer.ts"
|
|
5961
5848
|
}
|
|
5962
5849
|
},
|
|
5963
5850
|
{
|
|
5964
5851
|
"kind": "custom-element-definition",
|
|
5965
5852
|
"declaration": {
|
|
5966
|
-
"name": "
|
|
5967
|
-
"module": "src/lib/ai-
|
|
5853
|
+
"name": "AiEventStreamViewerComponent",
|
|
5854
|
+
"module": "src/lib/ai-event-stream-viewer/ai-event-stream-viewer.ts"
|
|
5968
5855
|
}
|
|
5969
5856
|
}
|
|
5970
5857
|
]
|
|
5971
5858
|
},
|
|
5972
5859
|
{
|
|
5973
5860
|
"kind": "javascript-module",
|
|
5974
|
-
"path": "src/lib/ai-
|
|
5861
|
+
"path": "src/lib/ai-error-message/ai-error-message.ts",
|
|
5975
5862
|
"declarations": [
|
|
5976
5863
|
{
|
|
5977
5864
|
"kind": "variable",
|
|
5978
|
-
"name": "
|
|
5865
|
+
"name": "AiErrorMessageComponentTagName",
|
|
5979
5866
|
"type": {
|
|
5980
5867
|
"text": "keyof HTMLElementTagNameMap"
|
|
5981
5868
|
},
|
|
5982
|
-
"default": "'forge-ai-
|
|
5869
|
+
"default": "'forge-ai-error-message'"
|
|
5983
5870
|
},
|
|
5984
5871
|
{
|
|
5985
5872
|
"kind": "class",
|
|
5986
5873
|
"description": "",
|
|
5987
|
-
"name": "
|
|
5988
|
-
"
|
|
5874
|
+
"name": "AiErrorMessageComponent",
|
|
5875
|
+
"slots": [
|
|
5989
5876
|
{
|
|
5990
|
-
"
|
|
5991
|
-
"name": "
|
|
5992
|
-
|
|
5993
|
-
|
|
5994
|
-
|
|
5995
|
-
"
|
|
5996
|
-
"default": "[]"
|
|
5877
|
+
"description": "The error title text",
|
|
5878
|
+
"name": "title"
|
|
5879
|
+
},
|
|
5880
|
+
{
|
|
5881
|
+
"description": "The error message content",
|
|
5882
|
+
"name": ""
|
|
5997
5883
|
}
|
|
5998
5884
|
],
|
|
5885
|
+
"members": [],
|
|
5999
5886
|
"superclass": {
|
|
6000
5887
|
"name": "LitElement",
|
|
6001
5888
|
"package": "lit"
|
|
6002
5889
|
},
|
|
6003
|
-
"tagName": "forge-ai-
|
|
5890
|
+
"tagName": "forge-ai-error-message",
|
|
6004
5891
|
"customElement": true,
|
|
6005
|
-
"summary": "Displays
|
|
5892
|
+
"summary": "Displays error messages using Forge inline message banner style."
|
|
6006
5893
|
}
|
|
6007
5894
|
],
|
|
6008
5895
|
"exports": [
|
|
6009
5896
|
{
|
|
6010
5897
|
"kind": "js",
|
|
6011
|
-
"name": "
|
|
5898
|
+
"name": "AiErrorMessageComponentTagName",
|
|
6012
5899
|
"declaration": {
|
|
6013
|
-
"name": "
|
|
6014
|
-
"module": "src/lib/ai-
|
|
5900
|
+
"name": "AiErrorMessageComponentTagName",
|
|
5901
|
+
"module": "src/lib/ai-error-message/ai-error-message.ts"
|
|
6015
5902
|
}
|
|
6016
5903
|
},
|
|
6017
5904
|
{
|
|
6018
5905
|
"kind": "js",
|
|
6019
|
-
"name": "
|
|
5906
|
+
"name": "AiErrorMessageComponent",
|
|
6020
5907
|
"declaration": {
|
|
6021
|
-
"name": "
|
|
6022
|
-
"module": "src/lib/ai-
|
|
5908
|
+
"name": "AiErrorMessageComponent",
|
|
5909
|
+
"module": "src/lib/ai-error-message/ai-error-message.ts"
|
|
6023
5910
|
}
|
|
6024
5911
|
},
|
|
6025
5912
|
{
|
|
6026
5913
|
"kind": "custom-element-definition",
|
|
6027
5914
|
"declaration": {
|
|
6028
|
-
"name": "
|
|
6029
|
-
"module": "src/lib/ai-
|
|
5915
|
+
"name": "AiErrorMessageComponent",
|
|
5916
|
+
"module": "src/lib/ai-error-message/ai-error-message.ts"
|
|
6030
5917
|
}
|
|
6031
5918
|
}
|
|
6032
5919
|
]
|
|
@@ -6840,10 +6727,10 @@
|
|
|
6840
6727
|
},
|
|
6841
6728
|
{
|
|
6842
6729
|
"type": {
|
|
6843
|
-
"text": "CustomEvent<
|
|
6730
|
+
"text": "CustomEvent<ForgeAiMessageThreadResendEventData>"
|
|
6844
6731
|
},
|
|
6845
|
-
"description": "Fired when user clicks
|
|
6846
|
-
"name": "forge-ai-message-thread-
|
|
6732
|
+
"description": "Fired when user clicks resend on a message",
|
|
6733
|
+
"name": "forge-ai-message-thread-resend"
|
|
6847
6734
|
},
|
|
6848
6735
|
{
|
|
6849
6736
|
"type": {
|
|
@@ -7686,20 +7573,140 @@
|
|
|
7686
7573
|
},
|
|
7687
7574
|
{
|
|
7688
7575
|
"kind": "javascript-module",
|
|
7689
|
-
"path": "src/lib/ai-
|
|
7576
|
+
"path": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts",
|
|
7690
7577
|
"declarations": [
|
|
7691
7578
|
{
|
|
7692
7579
|
"kind": "variable",
|
|
7693
|
-
"name": "
|
|
7580
|
+
"name": "AiResponseMessageToolbarComponentTagName",
|
|
7694
7581
|
"type": {
|
|
7695
7582
|
"text": "keyof HTMLElementTagNameMap"
|
|
7696
7583
|
},
|
|
7697
|
-
"default": "'forge-ai-
|
|
7584
|
+
"default": "'forge-ai-response-message-toolbar'"
|
|
7698
7585
|
},
|
|
7699
7586
|
{
|
|
7700
7587
|
"kind": "class",
|
|
7701
7588
|
"description": "",
|
|
7702
|
-
"name": "
|
|
7589
|
+
"name": "AiResponseMessageToolbarComponent",
|
|
7590
|
+
"members": [
|
|
7591
|
+
{
|
|
7592
|
+
"kind": "field",
|
|
7593
|
+
"name": "enableReactions",
|
|
7594
|
+
"type": {
|
|
7595
|
+
"text": "boolean"
|
|
7596
|
+
},
|
|
7597
|
+
"privacy": "public",
|
|
7598
|
+
"default": "false",
|
|
7599
|
+
"attribute": "enable-reactions"
|
|
7600
|
+
},
|
|
7601
|
+
{
|
|
7602
|
+
"kind": "field",
|
|
7603
|
+
"name": "feedbackType",
|
|
7604
|
+
"type": {
|
|
7605
|
+
"text": "FeedbackType | undefined"
|
|
7606
|
+
},
|
|
7607
|
+
"privacy": "public",
|
|
7608
|
+
"attribute": "feedback-type"
|
|
7609
|
+
},
|
|
7610
|
+
{
|
|
7611
|
+
"kind": "field",
|
|
7612
|
+
"name": "feedbackReason",
|
|
7613
|
+
"type": {
|
|
7614
|
+
"text": "string | undefined"
|
|
7615
|
+
},
|
|
7616
|
+
"privacy": "public",
|
|
7617
|
+
"attribute": "feedback-reason"
|
|
7618
|
+
}
|
|
7619
|
+
],
|
|
7620
|
+
"events": [
|
|
7621
|
+
{
|
|
7622
|
+
"type": {
|
|
7623
|
+
"text": "CustomEvent<ForgeAiResponseMessageToolbarActionEventData>"
|
|
7624
|
+
},
|
|
7625
|
+
"description": "Fired when an action button is clicked. The detail contains the action type.",
|
|
7626
|
+
"name": "forge-ai-response-message-toolbar-action"
|
|
7627
|
+
},
|
|
7628
|
+
{
|
|
7629
|
+
"type": {
|
|
7630
|
+
"text": "CustomEvent<ForgeAiResponseMessageToolbarFeedbackEventData>"
|
|
7631
|
+
},
|
|
7632
|
+
"description": "Fired when feedback is submitted. The detail contains the action and optional feedback text.",
|
|
7633
|
+
"name": "forge-ai-response-message-toolbar-feedback"
|
|
7634
|
+
}
|
|
7635
|
+
],
|
|
7636
|
+
"attributes": [
|
|
7637
|
+
{
|
|
7638
|
+
"name": "enable-reactions",
|
|
7639
|
+
"type": {
|
|
7640
|
+
"text": "boolean"
|
|
7641
|
+
},
|
|
7642
|
+
"default": "false",
|
|
7643
|
+
"fieldName": "enableReactions"
|
|
7644
|
+
},
|
|
7645
|
+
{
|
|
7646
|
+
"name": "feedback-type",
|
|
7647
|
+
"type": {
|
|
7648
|
+
"text": "FeedbackType | undefined"
|
|
7649
|
+
},
|
|
7650
|
+
"fieldName": "feedbackType"
|
|
7651
|
+
},
|
|
7652
|
+
{
|
|
7653
|
+
"name": "feedback-reason",
|
|
7654
|
+
"type": {
|
|
7655
|
+
"text": "string | undefined"
|
|
7656
|
+
},
|
|
7657
|
+
"fieldName": "feedbackReason"
|
|
7658
|
+
}
|
|
7659
|
+
],
|
|
7660
|
+
"superclass": {
|
|
7661
|
+
"name": "LitElement",
|
|
7662
|
+
"package": "lit"
|
|
7663
|
+
},
|
|
7664
|
+
"tagName": "forge-ai-response-message-toolbar",
|
|
7665
|
+
"customElement": true
|
|
7666
|
+
}
|
|
7667
|
+
],
|
|
7668
|
+
"exports": [
|
|
7669
|
+
{
|
|
7670
|
+
"kind": "js",
|
|
7671
|
+
"name": "AiResponseMessageToolbarComponentTagName",
|
|
7672
|
+
"declaration": {
|
|
7673
|
+
"name": "AiResponseMessageToolbarComponentTagName",
|
|
7674
|
+
"module": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts"
|
|
7675
|
+
}
|
|
7676
|
+
},
|
|
7677
|
+
{
|
|
7678
|
+
"kind": "js",
|
|
7679
|
+
"name": "AiResponseMessageToolbarComponent",
|
|
7680
|
+
"declaration": {
|
|
7681
|
+
"name": "AiResponseMessageToolbarComponent",
|
|
7682
|
+
"module": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts"
|
|
7683
|
+
}
|
|
7684
|
+
},
|
|
7685
|
+
{
|
|
7686
|
+
"kind": "custom-element-definition",
|
|
7687
|
+
"declaration": {
|
|
7688
|
+
"name": "AiResponseMessageToolbarComponent",
|
|
7689
|
+
"module": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts"
|
|
7690
|
+
}
|
|
7691
|
+
}
|
|
7692
|
+
]
|
|
7693
|
+
},
|
|
7694
|
+
{
|
|
7695
|
+
"kind": "javascript-module",
|
|
7696
|
+
"path": "src/lib/ai-sidebar/ai-sidebar.ts",
|
|
7697
|
+
"declarations": [
|
|
7698
|
+
{
|
|
7699
|
+
"kind": "variable",
|
|
7700
|
+
"name": "AiSidebarComponentTagName",
|
|
7701
|
+
"type": {
|
|
7702
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
7703
|
+
},
|
|
7704
|
+
"default": "'forge-ai-sidebar'"
|
|
7705
|
+
},
|
|
7706
|
+
{
|
|
7707
|
+
"kind": "class",
|
|
7708
|
+
"description": "",
|
|
7709
|
+
"name": "AiSidebarComponent",
|
|
7703
7710
|
"slots": [
|
|
7704
7711
|
{
|
|
7705
7712
|
"description": "Default slot for sidebar content (typically ai-chat-interface)",
|
|
@@ -7971,89 +7978,6 @@
|
|
|
7971
7978
|
}
|
|
7972
7979
|
]
|
|
7973
7980
|
},
|
|
7974
|
-
{
|
|
7975
|
-
"kind": "javascript-module",
|
|
7976
|
-
"path": "src/lib/ai-spinner/ai-spinner.ts",
|
|
7977
|
-
"declarations": [
|
|
7978
|
-
{
|
|
7979
|
-
"kind": "variable",
|
|
7980
|
-
"name": "AiSpinnerComponentTagName",
|
|
7981
|
-
"type": {
|
|
7982
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
7983
|
-
},
|
|
7984
|
-
"default": "'forge-ai-spinner'"
|
|
7985
|
-
},
|
|
7986
|
-
{
|
|
7987
|
-
"kind": "class",
|
|
7988
|
-
"description": "",
|
|
7989
|
-
"name": "AiSpinnerComponent",
|
|
7990
|
-
"cssProperties": [
|
|
7991
|
-
{
|
|
7992
|
-
"description": "Color of the spinner indicator",
|
|
7993
|
-
"name": "--forge-ai-spinner-color"
|
|
7994
|
-
},
|
|
7995
|
-
{
|
|
7996
|
-
"description": "Color of the spinner track",
|
|
7997
|
-
"name": "--forge-ai-spinner-track-color"
|
|
7998
|
-
}
|
|
7999
|
-
],
|
|
8000
|
-
"members": [
|
|
8001
|
-
{
|
|
8002
|
-
"kind": "field",
|
|
8003
|
-
"name": "size",
|
|
8004
|
-
"type": {
|
|
8005
|
-
"text": "SpinnerSize"
|
|
8006
|
-
},
|
|
8007
|
-
"privacy": "public",
|
|
8008
|
-
"default": "'medium'",
|
|
8009
|
-
"attribute": "size"
|
|
8010
|
-
}
|
|
8011
|
-
],
|
|
8012
|
-
"attributes": [
|
|
8013
|
-
{
|
|
8014
|
-
"name": "size",
|
|
8015
|
-
"type": {
|
|
8016
|
-
"text": "SpinnerSize"
|
|
8017
|
-
},
|
|
8018
|
-
"default": "'medium'",
|
|
8019
|
-
"fieldName": "size"
|
|
8020
|
-
}
|
|
8021
|
-
],
|
|
8022
|
-
"superclass": {
|
|
8023
|
-
"name": "LitElement",
|
|
8024
|
-
"package": "lit"
|
|
8025
|
-
},
|
|
8026
|
-
"tagName": "forge-ai-spinner",
|
|
8027
|
-
"customElement": true,
|
|
8028
|
-
"summary": "Indeterminate circular progress indicator."
|
|
8029
|
-
}
|
|
8030
|
-
],
|
|
8031
|
-
"exports": [
|
|
8032
|
-
{
|
|
8033
|
-
"kind": "js",
|
|
8034
|
-
"name": "AiSpinnerComponentTagName",
|
|
8035
|
-
"declaration": {
|
|
8036
|
-
"name": "AiSpinnerComponentTagName",
|
|
8037
|
-
"module": "src/lib/ai-spinner/ai-spinner.ts"
|
|
8038
|
-
}
|
|
8039
|
-
},
|
|
8040
|
-
{
|
|
8041
|
-
"kind": "js",
|
|
8042
|
-
"name": "AiSpinnerComponent",
|
|
8043
|
-
"declaration": {
|
|
8044
|
-
"name": "AiSpinnerComponent",
|
|
8045
|
-
"module": "src/lib/ai-spinner/ai-spinner.ts"
|
|
8046
|
-
}
|
|
8047
|
-
},
|
|
8048
|
-
{
|
|
8049
|
-
"kind": "custom-element-definition",
|
|
8050
|
-
"declaration": {
|
|
8051
|
-
"name": "AiSpinnerComponent",
|
|
8052
|
-
"module": "src/lib/ai-spinner/ai-spinner.ts"
|
|
8053
|
-
}
|
|
8054
|
-
}
|
|
8055
|
-
]
|
|
8056
|
-
},
|
|
8057
7981
|
{
|
|
8058
7982
|
"kind": "javascript-module",
|
|
8059
7983
|
"path": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts",
|
|
@@ -8217,212 +8141,83 @@
|
|
|
8217
8141
|
},
|
|
8218
8142
|
{
|
|
8219
8143
|
"kind": "javascript-module",
|
|
8220
|
-
"path": "src/lib/ai-
|
|
8144
|
+
"path": "src/lib/ai-spinner/ai-spinner.ts",
|
|
8221
8145
|
"declarations": [
|
|
8222
8146
|
{
|
|
8223
8147
|
"kind": "variable",
|
|
8224
|
-
"name": "
|
|
8148
|
+
"name": "AiSpinnerComponentTagName",
|
|
8225
8149
|
"type": {
|
|
8226
8150
|
"text": "keyof HTMLElementTagNameMap"
|
|
8227
8151
|
},
|
|
8228
|
-
"default": "'forge-ai-
|
|
8152
|
+
"default": "'forge-ai-spinner'"
|
|
8229
8153
|
},
|
|
8230
8154
|
{
|
|
8231
8155
|
"kind": "class",
|
|
8232
8156
|
"description": "",
|
|
8233
|
-
"name": "
|
|
8234
|
-
"
|
|
8157
|
+
"name": "AiSpinnerComponent",
|
|
8158
|
+
"cssProperties": [
|
|
8235
8159
|
{
|
|
8236
|
-
"
|
|
8237
|
-
"name": "
|
|
8238
|
-
"type": {
|
|
8239
|
-
"text": "boolean"
|
|
8240
|
-
},
|
|
8241
|
-
"privacy": "public",
|
|
8242
|
-
"default": "false",
|
|
8243
|
-
"attribute": "show-text"
|
|
8160
|
+
"description": "Color of the spinner indicator",
|
|
8161
|
+
"name": "--forge-ai-spinner-color"
|
|
8244
8162
|
},
|
|
8245
8163
|
{
|
|
8246
|
-
"
|
|
8247
|
-
"name": "
|
|
8248
|
-
|
|
8249
|
-
|
|
8250
|
-
|
|
8251
|
-
"privacy": "public",
|
|
8252
|
-
"default": "0",
|
|
8253
|
-
"attribute": "initial-delay"
|
|
8254
|
-
},
|
|
8164
|
+
"description": "Color of the spinner track",
|
|
8165
|
+
"name": "--forge-ai-spinner-track-color"
|
|
8166
|
+
}
|
|
8167
|
+
],
|
|
8168
|
+
"members": [
|
|
8255
8169
|
{
|
|
8256
8170
|
"kind": "field",
|
|
8257
|
-
"name": "
|
|
8171
|
+
"name": "size",
|
|
8258
8172
|
"type": {
|
|
8259
|
-
"text": "
|
|
8173
|
+
"text": "SpinnerSize"
|
|
8260
8174
|
},
|
|
8261
8175
|
"privacy": "public",
|
|
8262
|
-
"default": "
|
|
8263
|
-
"attribute": "
|
|
8176
|
+
"default": "'medium'",
|
|
8177
|
+
"attribute": "size"
|
|
8264
8178
|
}
|
|
8265
8179
|
],
|
|
8266
8180
|
"attributes": [
|
|
8267
8181
|
{
|
|
8268
|
-
"name": "
|
|
8269
|
-
"type": {
|
|
8270
|
-
"text": "boolean"
|
|
8271
|
-
},
|
|
8272
|
-
"default": "false",
|
|
8273
|
-
"fieldName": "showText"
|
|
8274
|
-
},
|
|
8275
|
-
{
|
|
8276
|
-
"name": "initial-delay",
|
|
8277
|
-
"type": {
|
|
8278
|
-
"text": "number"
|
|
8279
|
-
},
|
|
8280
|
-
"default": "0",
|
|
8281
|
-
"fieldName": "initialDelay"
|
|
8282
|
-
},
|
|
8283
|
-
{
|
|
8284
|
-
"name": "cycle-interval",
|
|
8182
|
+
"name": "size",
|
|
8285
8183
|
"type": {
|
|
8286
|
-
"text": "
|
|
8184
|
+
"text": "SpinnerSize"
|
|
8287
8185
|
},
|
|
8288
|
-
"default": "
|
|
8289
|
-
"fieldName": "
|
|
8186
|
+
"default": "'medium'",
|
|
8187
|
+
"fieldName": "size"
|
|
8290
8188
|
}
|
|
8291
8189
|
],
|
|
8292
8190
|
"superclass": {
|
|
8293
8191
|
"name": "LitElement",
|
|
8294
8192
|
"package": "lit"
|
|
8295
8193
|
},
|
|
8296
|
-
"tagName": "forge-ai-
|
|
8194
|
+
"tagName": "forge-ai-spinner",
|
|
8297
8195
|
"customElement": true,
|
|
8298
|
-
"summary": "
|
|
8196
|
+
"summary": "Indeterminate circular progress indicator."
|
|
8299
8197
|
}
|
|
8300
8198
|
],
|
|
8301
8199
|
"exports": [
|
|
8302
8200
|
{
|
|
8303
8201
|
"kind": "js",
|
|
8304
|
-
"name": "
|
|
8305
|
-
"declaration": {
|
|
8306
|
-
"name": "AiThinkingIndicatorComponentTagName",
|
|
8307
|
-
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
8308
|
-
}
|
|
8309
|
-
},
|
|
8310
|
-
{
|
|
8311
|
-
"kind": "js",
|
|
8312
|
-
"name": "AiThinkingIndicatorComponent",
|
|
8313
|
-
"declaration": {
|
|
8314
|
-
"name": "AiThinkingIndicatorComponent",
|
|
8315
|
-
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
8316
|
-
}
|
|
8317
|
-
},
|
|
8318
|
-
{
|
|
8319
|
-
"kind": "custom-element-definition",
|
|
8320
|
-
"declaration": {
|
|
8321
|
-
"name": "AiThinkingIndicatorComponent",
|
|
8322
|
-
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
8323
|
-
}
|
|
8324
|
-
}
|
|
8325
|
-
]
|
|
8326
|
-
},
|
|
8327
|
-
{
|
|
8328
|
-
"kind": "javascript-module",
|
|
8329
|
-
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
8330
|
-
"declarations": [
|
|
8331
|
-
{
|
|
8332
|
-
"kind": "variable",
|
|
8333
|
-
"name": "AiThreadsComponentTagName",
|
|
8334
|
-
"type": {
|
|
8335
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
8336
|
-
},
|
|
8337
|
-
"default": "'forge-ai-threads'"
|
|
8338
|
-
},
|
|
8339
|
-
{
|
|
8340
|
-
"kind": "class",
|
|
8341
|
-
"description": "",
|
|
8342
|
-
"name": "AiThreadsComponent",
|
|
8343
|
-
"slots": [
|
|
8344
|
-
{
|
|
8345
|
-
"description": "Default slot for chatbot component",
|
|
8346
|
-
"name": ""
|
|
8347
|
-
}
|
|
8348
|
-
],
|
|
8349
|
-
"members": [
|
|
8350
|
-
{
|
|
8351
|
-
"kind": "field",
|
|
8352
|
-
"name": "threads",
|
|
8353
|
-
"type": {
|
|
8354
|
-
"text": "Thread[]"
|
|
8355
|
-
},
|
|
8356
|
-
"privacy": "public",
|
|
8357
|
-
"default": "[]",
|
|
8358
|
-
"description": "Array of threads to display in the navigation list",
|
|
8359
|
-
"attribute": "threads"
|
|
8360
|
-
}
|
|
8361
|
-
],
|
|
8362
|
-
"events": [
|
|
8363
|
-
{
|
|
8364
|
-
"type": {
|
|
8365
|
-
"text": "CustomEvent<ForgeAiThreadsSelectEventData>"
|
|
8366
|
-
},
|
|
8367
|
-
"description": "Fired when a thread is selected.",
|
|
8368
|
-
"name": "forge-ai-threads-select"
|
|
8369
|
-
},
|
|
8370
|
-
{
|
|
8371
|
-
"type": {
|
|
8372
|
-
"text": "CustomEvent"
|
|
8373
|
-
},
|
|
8374
|
-
"description": "Fired when the new chat button is clicked.",
|
|
8375
|
-
"name": "forge-ai-threads-new-chat"
|
|
8376
|
-
},
|
|
8377
|
-
{
|
|
8378
|
-
"type": {
|
|
8379
|
-
"text": "CustomEvent"
|
|
8380
|
-
},
|
|
8381
|
-
"description": "Fired when the clear history button is clicked.",
|
|
8382
|
-
"name": "forge-ai-threads-clear-history"
|
|
8383
|
-
}
|
|
8384
|
-
],
|
|
8385
|
-
"attributes": [
|
|
8386
|
-
{
|
|
8387
|
-
"name": "threads",
|
|
8388
|
-
"type": {
|
|
8389
|
-
"text": "Thread[]"
|
|
8390
|
-
},
|
|
8391
|
-
"default": "[]",
|
|
8392
|
-
"description": "Array of threads to display in the navigation list",
|
|
8393
|
-
"fieldName": "threads"
|
|
8394
|
-
}
|
|
8395
|
-
],
|
|
8396
|
-
"superclass": {
|
|
8397
|
-
"name": "LitElement",
|
|
8398
|
-
"package": "lit"
|
|
8399
|
-
},
|
|
8400
|
-
"tagName": "forge-ai-threads",
|
|
8401
|
-
"customElement": true
|
|
8402
|
-
}
|
|
8403
|
-
],
|
|
8404
|
-
"exports": [
|
|
8405
|
-
{
|
|
8406
|
-
"kind": "js",
|
|
8407
|
-
"name": "AiThreadsComponentTagName",
|
|
8202
|
+
"name": "AiSpinnerComponentTagName",
|
|
8408
8203
|
"declaration": {
|
|
8409
|
-
"name": "
|
|
8410
|
-
"module": "src/lib/ai-
|
|
8204
|
+
"name": "AiSpinnerComponentTagName",
|
|
8205
|
+
"module": "src/lib/ai-spinner/ai-spinner.ts"
|
|
8411
8206
|
}
|
|
8412
8207
|
},
|
|
8413
8208
|
{
|
|
8414
8209
|
"kind": "js",
|
|
8415
|
-
"name": "
|
|
8210
|
+
"name": "AiSpinnerComponent",
|
|
8416
8211
|
"declaration": {
|
|
8417
|
-
"name": "
|
|
8418
|
-
"module": "src/lib/ai-
|
|
8212
|
+
"name": "AiSpinnerComponent",
|
|
8213
|
+
"module": "src/lib/ai-spinner/ai-spinner.ts"
|
|
8419
8214
|
}
|
|
8420
8215
|
},
|
|
8421
8216
|
{
|
|
8422
8217
|
"kind": "custom-element-definition",
|
|
8423
8218
|
"declaration": {
|
|
8424
|
-
"name": "
|
|
8425
|
-
"module": "src/lib/ai-
|
|
8219
|
+
"name": "AiSpinnerComponent",
|
|
8220
|
+
"module": "src/lib/ai-spinner/ai-spinner.ts"
|
|
8426
8221
|
}
|
|
8427
8222
|
}
|
|
8428
8223
|
]
|
|
@@ -8538,167 +8333,483 @@
|
|
|
8538
8333
|
},
|
|
8539
8334
|
{
|
|
8540
8335
|
"kind": "javascript-module",
|
|
8541
|
-
"path": "src/lib/ai-
|
|
8336
|
+
"path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
|
|
8542
8337
|
"declarations": [
|
|
8543
8338
|
{
|
|
8544
8339
|
"kind": "variable",
|
|
8545
|
-
"name": "
|
|
8340
|
+
"name": "AiThinkingIndicatorComponentTagName",
|
|
8546
8341
|
"type": {
|
|
8547
8342
|
"text": "keyof HTMLElementTagNameMap"
|
|
8548
8343
|
},
|
|
8549
|
-
"default": "'forge-ai-
|
|
8344
|
+
"default": "'forge-ai-thinking-indicator'"
|
|
8550
8345
|
},
|
|
8551
8346
|
{
|
|
8552
8347
|
"kind": "class",
|
|
8553
8348
|
"description": "",
|
|
8554
|
-
"name": "
|
|
8349
|
+
"name": "AiThinkingIndicatorComponent",
|
|
8555
8350
|
"members": [
|
|
8556
8351
|
{
|
|
8557
8352
|
"kind": "field",
|
|
8558
|
-
"name": "
|
|
8559
|
-
"type": {
|
|
8560
|
-
"text": "number | undefined"
|
|
8561
|
-
},
|
|
8562
|
-
"privacy": "public"
|
|
8563
|
-
},
|
|
8564
|
-
{
|
|
8565
|
-
"kind": "field",
|
|
8566
|
-
"name": "messageId",
|
|
8353
|
+
"name": "showText",
|
|
8567
8354
|
"type": {
|
|
8568
|
-
"text": "
|
|
8355
|
+
"text": "boolean"
|
|
8569
8356
|
},
|
|
8570
8357
|
"privacy": "public",
|
|
8571
|
-
"
|
|
8358
|
+
"default": "false",
|
|
8359
|
+
"attribute": "show-text"
|
|
8572
8360
|
},
|
|
8573
8361
|
{
|
|
8574
8362
|
"kind": "field",
|
|
8575
|
-
"name": "
|
|
8363
|
+
"name": "initialDelay",
|
|
8576
8364
|
"type": {
|
|
8577
|
-
"text": "
|
|
8365
|
+
"text": "number"
|
|
8578
8366
|
},
|
|
8579
8367
|
"privacy": "public",
|
|
8580
|
-
"default": "
|
|
8581
|
-
"attribute": "
|
|
8368
|
+
"default": "0",
|
|
8369
|
+
"attribute": "initial-delay"
|
|
8582
8370
|
},
|
|
8583
8371
|
{
|
|
8584
8372
|
"kind": "field",
|
|
8585
|
-
"name": "
|
|
8373
|
+
"name": "cycleInterval",
|
|
8586
8374
|
"type": {
|
|
8587
|
-
"text": "
|
|
8375
|
+
"text": "number"
|
|
8588
8376
|
},
|
|
8589
|
-
"privacy": "public"
|
|
8377
|
+
"privacy": "public",
|
|
8378
|
+
"default": "5000",
|
|
8379
|
+
"attribute": "cycle-interval"
|
|
8590
8380
|
}
|
|
8591
8381
|
],
|
|
8592
|
-
"
|
|
8593
|
-
{
|
|
8594
|
-
"name": "forge-ai-user-message-copy",
|
|
8595
|
-
"type": {
|
|
8596
|
-
"text": "CustomEvent<ForgeAiUserMessageCopyEventData>"
|
|
8597
|
-
},
|
|
8598
|
-
"description": "Fired when user clicks copy button"
|
|
8599
|
-
},
|
|
8382
|
+
"attributes": [
|
|
8600
8383
|
{
|
|
8601
|
-
"name": "
|
|
8384
|
+
"name": "show-text",
|
|
8602
8385
|
"type": {
|
|
8603
|
-
"text": "
|
|
8386
|
+
"text": "boolean"
|
|
8604
8387
|
},
|
|
8605
|
-
"
|
|
8388
|
+
"default": "false",
|
|
8389
|
+
"fieldName": "showText"
|
|
8606
8390
|
},
|
|
8607
8391
|
{
|
|
8608
|
-
"name": "
|
|
8609
|
-
"type": {
|
|
8610
|
-
"text": "CustomEvent<ForgeAiUserMessageEditEventData>"
|
|
8611
|
-
},
|
|
8612
|
-
"description": "Fired when user saves edited message"
|
|
8613
|
-
}
|
|
8614
|
-
],
|
|
8615
|
-
"attributes": [
|
|
8616
|
-
{
|
|
8617
|
-
"name": "message-id",
|
|
8392
|
+
"name": "initial-delay",
|
|
8618
8393
|
"type": {
|
|
8619
|
-
"text": "
|
|
8394
|
+
"text": "number"
|
|
8620
8395
|
},
|
|
8621
|
-
"
|
|
8396
|
+
"default": "0",
|
|
8397
|
+
"fieldName": "initialDelay"
|
|
8622
8398
|
},
|
|
8623
8399
|
{
|
|
8624
|
-
"name": "
|
|
8400
|
+
"name": "cycle-interval",
|
|
8625
8401
|
"type": {
|
|
8626
|
-
"text": "
|
|
8402
|
+
"text": "number"
|
|
8627
8403
|
},
|
|
8628
|
-
"default": "
|
|
8629
|
-
"fieldName": "
|
|
8404
|
+
"default": "5000",
|
|
8405
|
+
"fieldName": "cycleInterval"
|
|
8630
8406
|
}
|
|
8631
8407
|
],
|
|
8632
8408
|
"superclass": {
|
|
8633
8409
|
"name": "LitElement",
|
|
8634
8410
|
"package": "lit"
|
|
8635
8411
|
},
|
|
8636
|
-
"tagName": "forge-ai-
|
|
8637
|
-
"customElement": true
|
|
8412
|
+
"tagName": "forge-ai-thinking-indicator",
|
|
8413
|
+
"customElement": true,
|
|
8414
|
+
"summary": "A thinking indicator component that displays three animated dots to show that the system is processing or awaiting a response."
|
|
8638
8415
|
}
|
|
8639
8416
|
],
|
|
8640
8417
|
"exports": [
|
|
8641
8418
|
{
|
|
8642
8419
|
"kind": "js",
|
|
8643
|
-
"name": "
|
|
8420
|
+
"name": "AiThinkingIndicatorComponentTagName",
|
|
8644
8421
|
"declaration": {
|
|
8645
|
-
"name": "
|
|
8646
|
-
"module": "src/lib/ai-
|
|
8422
|
+
"name": "AiThinkingIndicatorComponentTagName",
|
|
8423
|
+
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
8647
8424
|
}
|
|
8648
8425
|
},
|
|
8649
8426
|
{
|
|
8650
8427
|
"kind": "js",
|
|
8651
|
-
"name": "
|
|
8428
|
+
"name": "AiThinkingIndicatorComponent",
|
|
8652
8429
|
"declaration": {
|
|
8653
|
-
"name": "
|
|
8654
|
-
"module": "src/lib/ai-
|
|
8430
|
+
"name": "AiThinkingIndicatorComponent",
|
|
8431
|
+
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
8655
8432
|
}
|
|
8656
8433
|
},
|
|
8657
8434
|
{
|
|
8658
8435
|
"kind": "custom-element-definition",
|
|
8659
8436
|
"declaration": {
|
|
8660
|
-
"name": "
|
|
8661
|
-
"module": "src/lib/ai-
|
|
8437
|
+
"name": "AiThinkingIndicatorComponent",
|
|
8438
|
+
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
8662
8439
|
}
|
|
8663
8440
|
}
|
|
8664
8441
|
]
|
|
8665
8442
|
},
|
|
8666
8443
|
{
|
|
8667
8444
|
"kind": "javascript-module",
|
|
8668
|
-
"path": "src/lib/ai-
|
|
8445
|
+
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
8669
8446
|
"declarations": [
|
|
8670
8447
|
{
|
|
8671
8448
|
"kind": "variable",
|
|
8672
|
-
"name": "
|
|
8449
|
+
"name": "AiThreadsComponentTagName",
|
|
8673
8450
|
"type": {
|
|
8674
8451
|
"text": "keyof HTMLElementTagNameMap"
|
|
8675
8452
|
},
|
|
8676
|
-
"default": "'forge-ai-
|
|
8453
|
+
"default": "'forge-ai-threads'"
|
|
8677
8454
|
},
|
|
8678
8455
|
{
|
|
8679
8456
|
"kind": "class",
|
|
8680
8457
|
"description": "",
|
|
8681
|
-
"name": "
|
|
8682
|
-
"
|
|
8683
|
-
"events": [
|
|
8458
|
+
"name": "AiThreadsComponent",
|
|
8459
|
+
"slots": [
|
|
8684
8460
|
{
|
|
8685
|
-
"
|
|
8461
|
+
"description": "Default slot for chatbot component",
|
|
8462
|
+
"name": ""
|
|
8463
|
+
}
|
|
8464
|
+
],
|
|
8465
|
+
"members": [
|
|
8466
|
+
{
|
|
8467
|
+
"kind": "field",
|
|
8468
|
+
"name": "threads",
|
|
8686
8469
|
"type": {
|
|
8687
|
-
"text": "
|
|
8470
|
+
"text": "Thread[]"
|
|
8688
8471
|
},
|
|
8689
|
-
"
|
|
8472
|
+
"privacy": "public",
|
|
8473
|
+
"default": "[]",
|
|
8474
|
+
"description": "Array of threads to display in the navigation list",
|
|
8475
|
+
"attribute": "threads"
|
|
8690
8476
|
}
|
|
8691
8477
|
],
|
|
8692
|
-
"
|
|
8693
|
-
|
|
8694
|
-
|
|
8695
|
-
|
|
8696
|
-
|
|
8697
|
-
|
|
8698
|
-
|
|
8699
|
-
|
|
8700
|
-
|
|
8701
|
-
|
|
8478
|
+
"events": [
|
|
8479
|
+
{
|
|
8480
|
+
"type": {
|
|
8481
|
+
"text": "CustomEvent<ForgeAiThreadsSelectEventData>"
|
|
8482
|
+
},
|
|
8483
|
+
"description": "Fired when a thread is selected.",
|
|
8484
|
+
"name": "forge-ai-threads-select"
|
|
8485
|
+
},
|
|
8486
|
+
{
|
|
8487
|
+
"type": {
|
|
8488
|
+
"text": "CustomEvent"
|
|
8489
|
+
},
|
|
8490
|
+
"description": "Fired when the new chat button is clicked.",
|
|
8491
|
+
"name": "forge-ai-threads-new-chat"
|
|
8492
|
+
},
|
|
8493
|
+
{
|
|
8494
|
+
"type": {
|
|
8495
|
+
"text": "CustomEvent"
|
|
8496
|
+
},
|
|
8497
|
+
"description": "Fired when the clear history button is clicked.",
|
|
8498
|
+
"name": "forge-ai-threads-clear-history"
|
|
8499
|
+
}
|
|
8500
|
+
],
|
|
8501
|
+
"attributes": [
|
|
8502
|
+
{
|
|
8503
|
+
"name": "threads",
|
|
8504
|
+
"type": {
|
|
8505
|
+
"text": "Thread[]"
|
|
8506
|
+
},
|
|
8507
|
+
"default": "[]",
|
|
8508
|
+
"description": "Array of threads to display in the navigation list",
|
|
8509
|
+
"fieldName": "threads"
|
|
8510
|
+
}
|
|
8511
|
+
],
|
|
8512
|
+
"superclass": {
|
|
8513
|
+
"name": "LitElement",
|
|
8514
|
+
"package": "lit"
|
|
8515
|
+
},
|
|
8516
|
+
"tagName": "forge-ai-threads",
|
|
8517
|
+
"customElement": true
|
|
8518
|
+
}
|
|
8519
|
+
],
|
|
8520
|
+
"exports": [
|
|
8521
|
+
{
|
|
8522
|
+
"kind": "js",
|
|
8523
|
+
"name": "AiThreadsComponentTagName",
|
|
8524
|
+
"declaration": {
|
|
8525
|
+
"name": "AiThreadsComponentTagName",
|
|
8526
|
+
"module": "src/lib/ai-threads/ai-threads.ts"
|
|
8527
|
+
}
|
|
8528
|
+
},
|
|
8529
|
+
{
|
|
8530
|
+
"kind": "js",
|
|
8531
|
+
"name": "AiThreadsComponent",
|
|
8532
|
+
"declaration": {
|
|
8533
|
+
"name": "AiThreadsComponent",
|
|
8534
|
+
"module": "src/lib/ai-threads/ai-threads.ts"
|
|
8535
|
+
}
|
|
8536
|
+
},
|
|
8537
|
+
{
|
|
8538
|
+
"kind": "custom-element-definition",
|
|
8539
|
+
"declaration": {
|
|
8540
|
+
"name": "AiThreadsComponent",
|
|
8541
|
+
"module": "src/lib/ai-threads/ai-threads.ts"
|
|
8542
|
+
}
|
|
8543
|
+
}
|
|
8544
|
+
]
|
|
8545
|
+
},
|
|
8546
|
+
{
|
|
8547
|
+
"kind": "javascript-module",
|
|
8548
|
+
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
8549
|
+
"declarations": [
|
|
8550
|
+
{
|
|
8551
|
+
"kind": "variable",
|
|
8552
|
+
"name": "AiUserMessageComponentTagName",
|
|
8553
|
+
"type": {
|
|
8554
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
8555
|
+
},
|
|
8556
|
+
"default": "'forge-ai-user-message'"
|
|
8557
|
+
},
|
|
8558
|
+
{
|
|
8559
|
+
"kind": "class",
|
|
8560
|
+
"description": "",
|
|
8561
|
+
"name": "AiUserMessageComponent",
|
|
8562
|
+
"members": [
|
|
8563
|
+
{
|
|
8564
|
+
"kind": "field",
|
|
8565
|
+
"name": "timestamp",
|
|
8566
|
+
"type": {
|
|
8567
|
+
"text": "number | undefined"
|
|
8568
|
+
},
|
|
8569
|
+
"privacy": "public"
|
|
8570
|
+
},
|
|
8571
|
+
{
|
|
8572
|
+
"kind": "field",
|
|
8573
|
+
"name": "messageId",
|
|
8574
|
+
"type": {
|
|
8575
|
+
"text": "string | undefined"
|
|
8576
|
+
},
|
|
8577
|
+
"privacy": "public",
|
|
8578
|
+
"attribute": "message-id"
|
|
8579
|
+
},
|
|
8580
|
+
{
|
|
8581
|
+
"kind": "field",
|
|
8582
|
+
"name": "streaming",
|
|
8583
|
+
"type": {
|
|
8584
|
+
"text": "boolean"
|
|
8585
|
+
},
|
|
8586
|
+
"privacy": "public",
|
|
8587
|
+
"default": "false",
|
|
8588
|
+
"attribute": "streaming"
|
|
8589
|
+
},
|
|
8590
|
+
{
|
|
8591
|
+
"kind": "field",
|
|
8592
|
+
"name": "content",
|
|
8593
|
+
"type": {
|
|
8594
|
+
"text": "string | undefined"
|
|
8595
|
+
},
|
|
8596
|
+
"privacy": "public"
|
|
8597
|
+
}
|
|
8598
|
+
],
|
|
8599
|
+
"events": [
|
|
8600
|
+
{
|
|
8601
|
+
"name": "forge-ai-user-message-copy",
|
|
8602
|
+
"type": {
|
|
8603
|
+
"text": "CustomEvent<ForgeAiUserMessageCopyEventData>"
|
|
8604
|
+
},
|
|
8605
|
+
"description": "Fired when user clicks copy button"
|
|
8606
|
+
},
|
|
8607
|
+
{
|
|
8608
|
+
"name": "forge-ai-user-message-resend",
|
|
8609
|
+
"type": {
|
|
8610
|
+
"text": "CustomEvent<ForgeAiUserMessageResendEventData>"
|
|
8611
|
+
},
|
|
8612
|
+
"description": "Fired when user clicks resend button"
|
|
8613
|
+
},
|
|
8614
|
+
{
|
|
8615
|
+
"name": "forge-ai-user-message-edit",
|
|
8616
|
+
"type": {
|
|
8617
|
+
"text": "CustomEvent<ForgeAiUserMessageEditEventData>"
|
|
8618
|
+
},
|
|
8619
|
+
"description": "Fired when user saves edited message"
|
|
8620
|
+
}
|
|
8621
|
+
],
|
|
8622
|
+
"attributes": [
|
|
8623
|
+
{
|
|
8624
|
+
"name": "message-id",
|
|
8625
|
+
"type": {
|
|
8626
|
+
"text": "string | undefined"
|
|
8627
|
+
},
|
|
8628
|
+
"fieldName": "messageId"
|
|
8629
|
+
},
|
|
8630
|
+
{
|
|
8631
|
+
"name": "streaming",
|
|
8632
|
+
"type": {
|
|
8633
|
+
"text": "boolean"
|
|
8634
|
+
},
|
|
8635
|
+
"default": "false",
|
|
8636
|
+
"fieldName": "streaming"
|
|
8637
|
+
}
|
|
8638
|
+
],
|
|
8639
|
+
"superclass": {
|
|
8640
|
+
"name": "LitElement",
|
|
8641
|
+
"package": "lit"
|
|
8642
|
+
},
|
|
8643
|
+
"tagName": "forge-ai-user-message",
|
|
8644
|
+
"customElement": true
|
|
8645
|
+
}
|
|
8646
|
+
],
|
|
8647
|
+
"exports": [
|
|
8648
|
+
{
|
|
8649
|
+
"kind": "js",
|
|
8650
|
+
"name": "AiUserMessageComponentTagName",
|
|
8651
|
+
"declaration": {
|
|
8652
|
+
"name": "AiUserMessageComponentTagName",
|
|
8653
|
+
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
8654
|
+
}
|
|
8655
|
+
},
|
|
8656
|
+
{
|
|
8657
|
+
"kind": "js",
|
|
8658
|
+
"name": "AiUserMessageComponent",
|
|
8659
|
+
"declaration": {
|
|
8660
|
+
"name": "AiUserMessageComponent",
|
|
8661
|
+
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
8662
|
+
}
|
|
8663
|
+
},
|
|
8664
|
+
{
|
|
8665
|
+
"kind": "custom-element-definition",
|
|
8666
|
+
"declaration": {
|
|
8667
|
+
"name": "AiUserMessageComponent",
|
|
8668
|
+
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
8669
|
+
}
|
|
8670
|
+
}
|
|
8671
|
+
]
|
|
8672
|
+
},
|
|
8673
|
+
{
|
|
8674
|
+
"kind": "javascript-module",
|
|
8675
|
+
"path": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts",
|
|
8676
|
+
"declarations": [
|
|
8677
|
+
{
|
|
8678
|
+
"kind": "variable",
|
|
8679
|
+
"name": "AiUserMessageToolbarComponentTagName",
|
|
8680
|
+
"type": {
|
|
8681
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
8682
|
+
},
|
|
8683
|
+
"default": "'forge-ai-user-message-toolbar'"
|
|
8684
|
+
},
|
|
8685
|
+
{
|
|
8686
|
+
"kind": "class",
|
|
8687
|
+
"description": "",
|
|
8688
|
+
"name": "AiUserMessageToolbarComponent",
|
|
8689
|
+
"members": [
|
|
8690
|
+
{
|
|
8691
|
+
"kind": "field",
|
|
8692
|
+
"name": "timestamp",
|
|
8693
|
+
"type": {
|
|
8694
|
+
"text": "number"
|
|
8695
|
+
},
|
|
8696
|
+
"privacy": "public"
|
|
8697
|
+
},
|
|
8698
|
+
{
|
|
8699
|
+
"kind": "field",
|
|
8700
|
+
"name": "streaming",
|
|
8701
|
+
"type": {
|
|
8702
|
+
"text": "boolean"
|
|
8703
|
+
},
|
|
8704
|
+
"privacy": "public",
|
|
8705
|
+
"default": "false",
|
|
8706
|
+
"attribute": "streaming"
|
|
8707
|
+
}
|
|
8708
|
+
],
|
|
8709
|
+
"events": [
|
|
8710
|
+
{
|
|
8711
|
+
"name": "forge-ai-user-message-toolbar-copy",
|
|
8712
|
+
"type": {
|
|
8713
|
+
"text": "CustomEvent<void>"
|
|
8714
|
+
},
|
|
8715
|
+
"description": "Fired when copy button is clicked"
|
|
8716
|
+
},
|
|
8717
|
+
{
|
|
8718
|
+
"name": "forge-ai-user-message-toolbar-resend",
|
|
8719
|
+
"type": {
|
|
8720
|
+
"text": "CustomEvent<void>"
|
|
8721
|
+
},
|
|
8722
|
+
"description": "Fired when resend button is clicked"
|
|
8723
|
+
},
|
|
8724
|
+
{
|
|
8725
|
+
"name": "forge-ai-user-message-toolbar-edit",
|
|
8726
|
+
"type": {
|
|
8727
|
+
"text": "CustomEvent<void>"
|
|
8728
|
+
},
|
|
8729
|
+
"description": "Fired when edit button is clicked"
|
|
8730
|
+
}
|
|
8731
|
+
],
|
|
8732
|
+
"attributes": [
|
|
8733
|
+
{
|
|
8734
|
+
"name": "streaming",
|
|
8735
|
+
"type": {
|
|
8736
|
+
"text": "boolean"
|
|
8737
|
+
},
|
|
8738
|
+
"default": "false",
|
|
8739
|
+
"fieldName": "streaming"
|
|
8740
|
+
}
|
|
8741
|
+
],
|
|
8742
|
+
"superclass": {
|
|
8743
|
+
"name": "LitElement",
|
|
8744
|
+
"package": "lit"
|
|
8745
|
+
},
|
|
8746
|
+
"tagName": "forge-ai-user-message-toolbar",
|
|
8747
|
+
"customElement": true,
|
|
8748
|
+
"summary": "Toolbar for user message actions including copy, resend, and edit."
|
|
8749
|
+
}
|
|
8750
|
+
],
|
|
8751
|
+
"exports": [
|
|
8752
|
+
{
|
|
8753
|
+
"kind": "js",
|
|
8754
|
+
"name": "AiUserMessageToolbarComponentTagName",
|
|
8755
|
+
"declaration": {
|
|
8756
|
+
"name": "AiUserMessageToolbarComponentTagName",
|
|
8757
|
+
"module": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts"
|
|
8758
|
+
}
|
|
8759
|
+
},
|
|
8760
|
+
{
|
|
8761
|
+
"kind": "js",
|
|
8762
|
+
"name": "AiUserMessageToolbarComponent",
|
|
8763
|
+
"declaration": {
|
|
8764
|
+
"name": "AiUserMessageToolbarComponent",
|
|
8765
|
+
"module": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts"
|
|
8766
|
+
}
|
|
8767
|
+
},
|
|
8768
|
+
{
|
|
8769
|
+
"kind": "custom-element-definition",
|
|
8770
|
+
"declaration": {
|
|
8771
|
+
"name": "AiUserMessageToolbarComponent",
|
|
8772
|
+
"module": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts"
|
|
8773
|
+
}
|
|
8774
|
+
}
|
|
8775
|
+
]
|
|
8776
|
+
},
|
|
8777
|
+
{
|
|
8778
|
+
"kind": "javascript-module",
|
|
8779
|
+
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
8780
|
+
"declarations": [
|
|
8781
|
+
{
|
|
8782
|
+
"kind": "variable",
|
|
8783
|
+
"name": "AiVoiceInputComponentTagName",
|
|
8784
|
+
"type": {
|
|
8785
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
8786
|
+
},
|
|
8787
|
+
"default": "'forge-ai-voice-input'"
|
|
8788
|
+
},
|
|
8789
|
+
{
|
|
8790
|
+
"kind": "class",
|
|
8791
|
+
"description": "",
|
|
8792
|
+
"name": "AiVoiceInputComponent",
|
|
8793
|
+
"members": [],
|
|
8794
|
+
"events": [
|
|
8795
|
+
{
|
|
8796
|
+
"name": "forge-ai-voice-input-result",
|
|
8797
|
+
"type": {
|
|
8798
|
+
"text": "CustomEvent<AiVoiceInputResultEvent>"
|
|
8799
|
+
},
|
|
8800
|
+
"description": "Fired when speech recognition produces a result. The event detail contains the transcript and confidence score of the recognized speech."
|
|
8801
|
+
}
|
|
8802
|
+
],
|
|
8803
|
+
"superclass": {
|
|
8804
|
+
"name": "LitElement",
|
|
8805
|
+
"package": "lit"
|
|
8806
|
+
},
|
|
8807
|
+
"tagName": "forge-ai-voice-input",
|
|
8808
|
+
"customElement": true
|
|
8809
|
+
}
|
|
8810
|
+
],
|
|
8811
|
+
"exports": [
|
|
8812
|
+
{
|
|
8702
8813
|
"kind": "js",
|
|
8703
8814
|
"name": "AiVoiceInputComponentTagName",
|
|
8704
8815
|
"declaration": {
|
|
@@ -8893,66 +9004,158 @@
|
|
|
8893
9004
|
"kind": "js",
|
|
8894
9005
|
"name": "ThoughtBaseComponent",
|
|
8895
9006
|
"declaration": {
|
|
8896
|
-
"name": "ThoughtBaseComponent",
|
|
8897
|
-
"module": "src/lib/ai-chain-of-thought/thought-base/thought-base.ts"
|
|
9007
|
+
"name": "ThoughtBaseComponent",
|
|
9008
|
+
"module": "src/lib/ai-chain-of-thought/thought-base/thought-base.ts"
|
|
9009
|
+
}
|
|
9010
|
+
},
|
|
9011
|
+
{
|
|
9012
|
+
"kind": "custom-element-definition",
|
|
9013
|
+
"declaration": {
|
|
9014
|
+
"name": "ThoughtBaseComponent",
|
|
9015
|
+
"module": "src/lib/ai-chain-of-thought/thought-base/thought-base.ts"
|
|
9016
|
+
}
|
|
9017
|
+
}
|
|
9018
|
+
]
|
|
9019
|
+
},
|
|
9020
|
+
{
|
|
9021
|
+
"kind": "javascript-module",
|
|
9022
|
+
"path": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts",
|
|
9023
|
+
"declarations": [
|
|
9024
|
+
{
|
|
9025
|
+
"kind": "variable",
|
|
9026
|
+
"name": "ThoughtDetailComponentTagName",
|
|
9027
|
+
"type": {
|
|
9028
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
9029
|
+
},
|
|
9030
|
+
"default": "'forge-ai-thought-detail'"
|
|
9031
|
+
},
|
|
9032
|
+
{
|
|
9033
|
+
"kind": "class",
|
|
9034
|
+
"description": "",
|
|
9035
|
+
"name": "ThoughtDetailComponent",
|
|
9036
|
+
"members": [],
|
|
9037
|
+
"superclass": {
|
|
9038
|
+
"name": "LitElement",
|
|
9039
|
+
"package": "lit"
|
|
9040
|
+
},
|
|
9041
|
+
"tagName": "forge-ai-thought-detail",
|
|
9042
|
+
"customElement": true
|
|
9043
|
+
}
|
|
9044
|
+
],
|
|
9045
|
+
"exports": [
|
|
9046
|
+
{
|
|
9047
|
+
"kind": "js",
|
|
9048
|
+
"name": "ThoughtDetailComponentTagName",
|
|
9049
|
+
"declaration": {
|
|
9050
|
+
"name": "ThoughtDetailComponentTagName",
|
|
9051
|
+
"module": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts"
|
|
9052
|
+
}
|
|
9053
|
+
},
|
|
9054
|
+
{
|
|
9055
|
+
"kind": "js",
|
|
9056
|
+
"name": "ThoughtDetailComponent",
|
|
9057
|
+
"declaration": {
|
|
9058
|
+
"name": "ThoughtDetailComponent",
|
|
9059
|
+
"module": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts"
|
|
8898
9060
|
}
|
|
8899
9061
|
},
|
|
8900
9062
|
{
|
|
8901
9063
|
"kind": "custom-element-definition",
|
|
8902
9064
|
"declaration": {
|
|
8903
|
-
"name": "
|
|
8904
|
-
"module": "src/lib/ai-chain-of-thought/thought-
|
|
9065
|
+
"name": "ThoughtDetailComponent",
|
|
9066
|
+
"module": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts"
|
|
8905
9067
|
}
|
|
8906
9068
|
}
|
|
8907
9069
|
]
|
|
8908
9070
|
},
|
|
8909
9071
|
{
|
|
8910
9072
|
"kind": "javascript-module",
|
|
8911
|
-
"path": "src/lib/ai-chain-of-thought/thought-
|
|
9073
|
+
"path": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts",
|
|
8912
9074
|
"declarations": [
|
|
8913
9075
|
{
|
|
8914
9076
|
"kind": "variable",
|
|
8915
|
-
"name": "
|
|
9077
|
+
"name": "ThoughtSearchResultComponentTagName",
|
|
8916
9078
|
"type": {
|
|
8917
9079
|
"text": "keyof HTMLElementTagNameMap"
|
|
8918
9080
|
},
|
|
8919
|
-
"default": "'forge-ai-thought-
|
|
9081
|
+
"default": "'forge-ai-thought-search-result'"
|
|
8920
9082
|
},
|
|
8921
9083
|
{
|
|
8922
9084
|
"kind": "class",
|
|
8923
9085
|
"description": "",
|
|
8924
|
-
"name": "
|
|
8925
|
-
"members": [
|
|
9086
|
+
"name": "ThoughtSearchResultComponent",
|
|
9087
|
+
"members": [
|
|
9088
|
+
{
|
|
9089
|
+
"kind": "field",
|
|
9090
|
+
"name": "step",
|
|
9091
|
+
"type": {
|
|
9092
|
+
"text": "number | undefined"
|
|
9093
|
+
},
|
|
9094
|
+
"privacy": "public",
|
|
9095
|
+
"description": "The step number for this thought search result",
|
|
9096
|
+
"attribute": "step"
|
|
9097
|
+
},
|
|
9098
|
+
{
|
|
9099
|
+
"kind": "field",
|
|
9100
|
+
"name": "sources",
|
|
9101
|
+
"type": {
|
|
9102
|
+
"text": "Source[]"
|
|
9103
|
+
},
|
|
9104
|
+
"privacy": "public",
|
|
9105
|
+
"default": "[]",
|
|
9106
|
+
"description": "Array of sources for the search result",
|
|
9107
|
+
"attribute": "sources"
|
|
9108
|
+
}
|
|
9109
|
+
],
|
|
9110
|
+
"attributes": [
|
|
9111
|
+
{
|
|
9112
|
+
"name": "step",
|
|
9113
|
+
"type": {
|
|
9114
|
+
"text": "number | undefined"
|
|
9115
|
+
},
|
|
9116
|
+
"description": "The step number for this thought search result",
|
|
9117
|
+
"fieldName": "step"
|
|
9118
|
+
},
|
|
9119
|
+
{
|
|
9120
|
+
"name": "sources",
|
|
9121
|
+
"type": {
|
|
9122
|
+
"text": "Source[]"
|
|
9123
|
+
},
|
|
9124
|
+
"default": "[]",
|
|
9125
|
+
"description": "Array of sources for the search result",
|
|
9126
|
+
"fieldName": "sources"
|
|
9127
|
+
}
|
|
9128
|
+
],
|
|
8926
9129
|
"superclass": {
|
|
8927
9130
|
"name": "LitElement",
|
|
8928
9131
|
"package": "lit"
|
|
8929
9132
|
},
|
|
8930
|
-
"tagName": "forge-ai-thought-
|
|
9133
|
+
"tagName": "forge-ai-thought-search-result",
|
|
8931
9134
|
"customElement": true
|
|
8932
9135
|
}
|
|
8933
9136
|
],
|
|
8934
9137
|
"exports": [
|
|
8935
9138
|
{
|
|
8936
9139
|
"kind": "js",
|
|
8937
|
-
"name": "
|
|
9140
|
+
"name": "ThoughtSearchResultComponentTagName",
|
|
8938
9141
|
"declaration": {
|
|
8939
|
-
"name": "
|
|
8940
|
-
"module": "src/lib/ai-chain-of-thought/thought-
|
|
9142
|
+
"name": "ThoughtSearchResultComponentTagName",
|
|
9143
|
+
"module": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts"
|
|
8941
9144
|
}
|
|
8942
9145
|
},
|
|
8943
9146
|
{
|
|
8944
9147
|
"kind": "js",
|
|
8945
|
-
"name": "
|
|
9148
|
+
"name": "ThoughtSearchResultComponent",
|
|
8946
9149
|
"declaration": {
|
|
8947
|
-
"name": "
|
|
8948
|
-
"module": "src/lib/ai-chain-of-thought/thought-
|
|
9150
|
+
"name": "ThoughtSearchResultComponent",
|
|
9151
|
+
"module": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts"
|
|
8949
9152
|
}
|
|
8950
9153
|
},
|
|
8951
9154
|
{
|
|
8952
9155
|
"kind": "custom-element-definition",
|
|
8953
9156
|
"declaration": {
|
|
8954
|
-
"name": "
|
|
8955
|
-
"module": "src/lib/ai-chain-of-thought/thought-
|
|
9157
|
+
"name": "ThoughtSearchResultComponent",
|
|
9158
|
+
"module": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts"
|
|
8956
9159
|
}
|
|
8957
9160
|
}
|
|
8958
9161
|
]
|
|
@@ -9031,113 +9234,221 @@
|
|
|
9031
9234
|
},
|
|
9032
9235
|
{
|
|
9033
9236
|
"kind": "javascript-module",
|
|
9034
|
-
"path": "src/lib/ai-
|
|
9237
|
+
"path": "src/lib/ai-prompt/prompt-button/prompt-button.ts",
|
|
9035
9238
|
"declarations": [
|
|
9036
9239
|
{
|
|
9037
9240
|
"kind": "variable",
|
|
9038
|
-
"name": "
|
|
9241
|
+
"name": "PromptButtonComponentTagName",
|
|
9039
9242
|
"type": {
|
|
9040
9243
|
"text": "keyof HTMLElementTagNameMap"
|
|
9041
9244
|
},
|
|
9042
|
-
"default": "'forge-
|
|
9245
|
+
"default": "'forge-prompt-button'"
|
|
9043
9246
|
},
|
|
9044
9247
|
{
|
|
9045
9248
|
"kind": "class",
|
|
9046
9249
|
"description": "",
|
|
9047
|
-
"name": "
|
|
9250
|
+
"name": "PromptButtonComponent",
|
|
9048
9251
|
"members": [
|
|
9049
9252
|
{
|
|
9050
9253
|
"kind": "field",
|
|
9051
|
-
"name": "
|
|
9052
|
-
"type": {
|
|
9053
|
-
"text": "number | undefined"
|
|
9054
|
-
},
|
|
9055
|
-
"privacy": "public",
|
|
9056
|
-
"description": "The step number for this thought search result",
|
|
9057
|
-
"attribute": "step"
|
|
9058
|
-
},
|
|
9059
|
-
{
|
|
9060
|
-
"kind": "field",
|
|
9061
|
-
"name": "sources",
|
|
9254
|
+
"name": "disabled",
|
|
9062
9255
|
"type": {
|
|
9063
|
-
"text": "
|
|
9256
|
+
"text": "boolean"
|
|
9064
9257
|
},
|
|
9065
9258
|
"privacy": "public",
|
|
9066
|
-
"default": "
|
|
9067
|
-
"description": "
|
|
9068
|
-
"attribute": "
|
|
9259
|
+
"default": "false",
|
|
9260
|
+
"description": "Whether the button is disabled",
|
|
9261
|
+
"attribute": "disabled",
|
|
9262
|
+
"reflects": true
|
|
9069
9263
|
}
|
|
9070
9264
|
],
|
|
9071
9265
|
"attributes": [
|
|
9072
9266
|
{
|
|
9073
|
-
"name": "
|
|
9074
|
-
"type": {
|
|
9075
|
-
"text": "number | undefined"
|
|
9076
|
-
},
|
|
9077
|
-
"description": "The step number for this thought search result",
|
|
9078
|
-
"fieldName": "step"
|
|
9079
|
-
},
|
|
9080
|
-
{
|
|
9081
|
-
"name": "sources",
|
|
9267
|
+
"name": "disabled",
|
|
9082
9268
|
"type": {
|
|
9083
|
-
"text": "
|
|
9269
|
+
"text": "boolean"
|
|
9084
9270
|
},
|
|
9085
|
-
"default": "
|
|
9086
|
-
"description": "
|
|
9087
|
-
"fieldName": "
|
|
9271
|
+
"default": "false",
|
|
9272
|
+
"description": "Whether the button is disabled",
|
|
9273
|
+
"fieldName": "disabled"
|
|
9088
9274
|
}
|
|
9089
9275
|
],
|
|
9090
9276
|
"superclass": {
|
|
9091
9277
|
"name": "LitElement",
|
|
9092
9278
|
"package": "lit"
|
|
9093
9279
|
},
|
|
9094
|
-
"tagName": "forge-
|
|
9280
|
+
"tagName": "forge-prompt-button",
|
|
9095
9281
|
"customElement": true
|
|
9096
9282
|
}
|
|
9097
9283
|
],
|
|
9098
9284
|
"exports": [
|
|
9099
9285
|
{
|
|
9100
9286
|
"kind": "js",
|
|
9101
|
-
"name": "
|
|
9287
|
+
"name": "PromptButtonComponentTagName",
|
|
9102
9288
|
"declaration": {
|
|
9103
|
-
"name": "
|
|
9104
|
-
"module": "src/lib/ai-
|
|
9289
|
+
"name": "PromptButtonComponentTagName",
|
|
9290
|
+
"module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
|
|
9105
9291
|
}
|
|
9106
9292
|
},
|
|
9107
9293
|
{
|
|
9108
9294
|
"kind": "js",
|
|
9109
|
-
"name": "
|
|
9295
|
+
"name": "PromptButtonComponent",
|
|
9110
9296
|
"declaration": {
|
|
9111
|
-
"name": "
|
|
9112
|
-
"module": "src/lib/ai-
|
|
9297
|
+
"name": "PromptButtonComponent",
|
|
9298
|
+
"module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
|
|
9113
9299
|
}
|
|
9114
9300
|
},
|
|
9115
9301
|
{
|
|
9116
9302
|
"kind": "custom-element-definition",
|
|
9117
9303
|
"declaration": {
|
|
9118
|
-
"name": "
|
|
9119
|
-
"module": "src/lib/ai-
|
|
9304
|
+
"name": "PromptButtonComponent",
|
|
9305
|
+
"module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
|
|
9120
9306
|
}
|
|
9121
9307
|
}
|
|
9122
9308
|
]
|
|
9123
9309
|
},
|
|
9124
9310
|
{
|
|
9125
9311
|
"kind": "javascript-module",
|
|
9126
|
-
"path": "src/lib/ai-
|
|
9312
|
+
"path": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts",
|
|
9127
9313
|
"declarations": [
|
|
9128
9314
|
{
|
|
9129
9315
|
"kind": "variable",
|
|
9130
|
-
"name": "
|
|
9316
|
+
"name": "ReasoningContentComponentTagName",
|
|
9131
9317
|
"type": {
|
|
9132
9318
|
"text": "keyof HTMLElementTagNameMap"
|
|
9133
9319
|
},
|
|
9134
|
-
"default": "'forge-
|
|
9320
|
+
"default": "'forge-ai-reasoning-content'"
|
|
9135
9321
|
},
|
|
9136
9322
|
{
|
|
9137
9323
|
"kind": "class",
|
|
9138
9324
|
"description": "",
|
|
9139
|
-
"name": "
|
|
9325
|
+
"name": "ReasoningContentComponent",
|
|
9326
|
+
"members": [],
|
|
9327
|
+
"superclass": {
|
|
9328
|
+
"name": "LitElement",
|
|
9329
|
+
"package": "lit"
|
|
9330
|
+
},
|
|
9331
|
+
"tagName": "forge-ai-reasoning-content",
|
|
9332
|
+
"customElement": true
|
|
9333
|
+
}
|
|
9334
|
+
],
|
|
9335
|
+
"exports": [
|
|
9336
|
+
{
|
|
9337
|
+
"kind": "js",
|
|
9338
|
+
"name": "ReasoningContentComponentTagName",
|
|
9339
|
+
"declaration": {
|
|
9340
|
+
"name": "ReasoningContentComponentTagName",
|
|
9341
|
+
"module": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts"
|
|
9342
|
+
}
|
|
9343
|
+
},
|
|
9344
|
+
{
|
|
9345
|
+
"kind": "js",
|
|
9346
|
+
"name": "ReasoningContentComponent",
|
|
9347
|
+
"declaration": {
|
|
9348
|
+
"name": "ReasoningContentComponent",
|
|
9349
|
+
"module": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts"
|
|
9350
|
+
}
|
|
9351
|
+
},
|
|
9352
|
+
{
|
|
9353
|
+
"kind": "custom-element-definition",
|
|
9354
|
+
"declaration": {
|
|
9355
|
+
"name": "ReasoningContentComponent",
|
|
9356
|
+
"module": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts"
|
|
9357
|
+
}
|
|
9358
|
+
}
|
|
9359
|
+
]
|
|
9360
|
+
},
|
|
9361
|
+
{
|
|
9362
|
+
"kind": "javascript-module",
|
|
9363
|
+
"path": "src/lib/tools/ai-data-table/ai-data-table-definition.ts",
|
|
9364
|
+
"declarations": [
|
|
9365
|
+
{
|
|
9366
|
+
"kind": "variable",
|
|
9367
|
+
"name": "displayDataTableTool",
|
|
9368
|
+
"type": {
|
|
9369
|
+
"text": "ToolDefinition"
|
|
9370
|
+
},
|
|
9371
|
+
"default": "{ name: 'displayDataTable', displayName: 'Display Data Table', description: 'Display tabular data in a formatted table with headers and rows. Use this tool when you want to present structured data, lists where there are 2 or more columns, statistics, or any information that works well in a table format.', parameters: { type: 'object' as const, properties: { title: { type: 'string', description: 'Table title or caption displayed above the data.' }, headers: { type: 'array', items: { type: 'string' }, description: 'Column names displayed as table headers. Order matches the row data order.' }, maxNumberOfRows: { type: 'number', description: 'Limit total rows shown. Useful for large datasets to prevent overwhelming display.' }, rows: { type: 'array', items: { type: 'array', items: { anyOf: [{ type: 'string' }, { type: 'number' }] } }, description: 'Data rows where each row is an array of values matching header order.' } }, required: ['headers', 'rows'] }, renderer: createToolRenderer({ elementTag: 'forge-ai-tool-data-table' }) }"
|
|
9372
|
+
}
|
|
9373
|
+
],
|
|
9374
|
+
"exports": [
|
|
9375
|
+
{
|
|
9376
|
+
"kind": "js",
|
|
9377
|
+
"name": "displayDataTableTool",
|
|
9378
|
+
"declaration": {
|
|
9379
|
+
"name": "displayDataTableTool",
|
|
9380
|
+
"module": "src/lib/tools/ai-data-table/ai-data-table-definition.ts"
|
|
9381
|
+
}
|
|
9382
|
+
}
|
|
9383
|
+
]
|
|
9384
|
+
},
|
|
9385
|
+
{
|
|
9386
|
+
"kind": "javascript-module",
|
|
9387
|
+
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
9388
|
+
"declarations": [
|
|
9389
|
+
{
|
|
9390
|
+
"kind": "class",
|
|
9391
|
+
"description": "Data table component tool renderer for displaying tabular data with pagination and filtering.",
|
|
9392
|
+
"name": "DataTableToolElement",
|
|
9393
|
+
"members": [
|
|
9394
|
+
{
|
|
9395
|
+
"kind": "field",
|
|
9396
|
+
"name": "toolCall",
|
|
9397
|
+
"type": {
|
|
9398
|
+
"text": "ToolCall<TableData>"
|
|
9399
|
+
},
|
|
9400
|
+
"privacy": "public",
|
|
9401
|
+
"description": "Tool call data containing table configuration and data"
|
|
9402
|
+
}
|
|
9403
|
+
],
|
|
9404
|
+
"superclass": {
|
|
9405
|
+
"name": "LitElement",
|
|
9406
|
+
"package": "lit"
|
|
9407
|
+
},
|
|
9408
|
+
"tagName": "forge-ai-tool-data-table",
|
|
9409
|
+
"customElement": true
|
|
9410
|
+
}
|
|
9411
|
+
],
|
|
9412
|
+
"exports": [
|
|
9413
|
+
{
|
|
9414
|
+
"kind": "custom-element-definition",
|
|
9415
|
+
"name": "forge-ai-tool-data-table",
|
|
9416
|
+
"declaration": {
|
|
9417
|
+
"name": "DataTableToolElement",
|
|
9418
|
+
"module": "src/lib/tools/ai-data-table/ai-data-table.ts"
|
|
9419
|
+
}
|
|
9420
|
+
}
|
|
9421
|
+
]
|
|
9422
|
+
},
|
|
9423
|
+
{
|
|
9424
|
+
"kind": "javascript-module",
|
|
9425
|
+
"path": "src/lib/tools/ai-paginator/ai-paginator.ts",
|
|
9426
|
+
"declarations": [
|
|
9427
|
+
{
|
|
9428
|
+
"kind": "class",
|
|
9429
|
+
"description": "",
|
|
9430
|
+
"name": "AiPaginator",
|
|
9140
9431
|
"members": [
|
|
9432
|
+
{
|
|
9433
|
+
"kind": "field",
|
|
9434
|
+
"name": "currentPage",
|
|
9435
|
+
"type": {
|
|
9436
|
+
"text": "number"
|
|
9437
|
+
},
|
|
9438
|
+
"privacy": "public",
|
|
9439
|
+
"default": "1",
|
|
9440
|
+
"attribute": "current-page"
|
|
9441
|
+
},
|
|
9442
|
+
{
|
|
9443
|
+
"kind": "field",
|
|
9444
|
+
"name": "totalPages",
|
|
9445
|
+
"type": {
|
|
9446
|
+
"text": "number"
|
|
9447
|
+
},
|
|
9448
|
+
"privacy": "public",
|
|
9449
|
+
"default": "1",
|
|
9450
|
+
"attribute": "total-pages"
|
|
9451
|
+
},
|
|
9141
9452
|
{
|
|
9142
9453
|
"kind": "field",
|
|
9143
9454
|
"name": "disabled",
|
|
@@ -9146,19 +9457,41 @@
|
|
|
9146
9457
|
},
|
|
9147
9458
|
"privacy": "public",
|
|
9148
9459
|
"default": "false",
|
|
9149
|
-
"description": "Whether the button is disabled",
|
|
9150
9460
|
"attribute": "disabled",
|
|
9151
9461
|
"reflects": true
|
|
9152
9462
|
}
|
|
9153
9463
|
],
|
|
9464
|
+
"events": [
|
|
9465
|
+
{
|
|
9466
|
+
"name": "page-change",
|
|
9467
|
+
"type": {
|
|
9468
|
+
"text": "CustomEvent"
|
|
9469
|
+
}
|
|
9470
|
+
}
|
|
9471
|
+
],
|
|
9154
9472
|
"attributes": [
|
|
9473
|
+
{
|
|
9474
|
+
"name": "current-page",
|
|
9475
|
+
"type": {
|
|
9476
|
+
"text": "number"
|
|
9477
|
+
},
|
|
9478
|
+
"default": "1",
|
|
9479
|
+
"fieldName": "currentPage"
|
|
9480
|
+
},
|
|
9481
|
+
{
|
|
9482
|
+
"name": "total-pages",
|
|
9483
|
+
"type": {
|
|
9484
|
+
"text": "number"
|
|
9485
|
+
},
|
|
9486
|
+
"default": "1",
|
|
9487
|
+
"fieldName": "totalPages"
|
|
9488
|
+
},
|
|
9155
9489
|
{
|
|
9156
9490
|
"name": "disabled",
|
|
9157
9491
|
"type": {
|
|
9158
9492
|
"text": "boolean"
|
|
9159
9493
|
},
|
|
9160
9494
|
"default": "false",
|
|
9161
|
-
"description": "Whether the button is disabled",
|
|
9162
9495
|
"fieldName": "disabled"
|
|
9163
9496
|
}
|
|
9164
9497
|
],
|
|
@@ -9166,98 +9499,40 @@
|
|
|
9166
9499
|
"name": "LitElement",
|
|
9167
9500
|
"package": "lit"
|
|
9168
9501
|
},
|
|
9169
|
-
"tagName": "forge-
|
|
9170
|
-
"customElement": true
|
|
9171
|
-
}
|
|
9172
|
-
],
|
|
9173
|
-
"exports": [
|
|
9174
|
-
{
|
|
9175
|
-
"kind": "js",
|
|
9176
|
-
"name": "PromptButtonComponentTagName",
|
|
9177
|
-
"declaration": {
|
|
9178
|
-
"name": "PromptButtonComponentTagName",
|
|
9179
|
-
"module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
|
|
9180
|
-
}
|
|
9181
|
-
},
|
|
9182
|
-
{
|
|
9183
|
-
"kind": "js",
|
|
9184
|
-
"name": "PromptButtonComponent",
|
|
9185
|
-
"declaration": {
|
|
9186
|
-
"name": "PromptButtonComponent",
|
|
9187
|
-
"module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
|
|
9188
|
-
}
|
|
9189
|
-
},
|
|
9190
|
-
{
|
|
9191
|
-
"kind": "custom-element-definition",
|
|
9192
|
-
"declaration": {
|
|
9193
|
-
"name": "PromptButtonComponent",
|
|
9194
|
-
"module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
|
|
9195
|
-
}
|
|
9196
|
-
}
|
|
9197
|
-
]
|
|
9198
|
-
},
|
|
9199
|
-
{
|
|
9200
|
-
"kind": "javascript-module",
|
|
9201
|
-
"path": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts",
|
|
9202
|
-
"declarations": [
|
|
9203
|
-
{
|
|
9204
|
-
"kind": "variable",
|
|
9205
|
-
"name": "ReasoningContentComponentTagName",
|
|
9206
|
-
"type": {
|
|
9207
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
9208
|
-
},
|
|
9209
|
-
"default": "'forge-ai-reasoning-content'"
|
|
9210
|
-
},
|
|
9211
|
-
{
|
|
9212
|
-
"kind": "class",
|
|
9213
|
-
"description": "",
|
|
9214
|
-
"name": "ReasoningContentComponent",
|
|
9215
|
-
"members": [],
|
|
9216
|
-
"superclass": {
|
|
9217
|
-
"name": "LitElement",
|
|
9218
|
-
"package": "lit"
|
|
9219
|
-
},
|
|
9220
|
-
"tagName": "forge-ai-reasoning-content",
|
|
9502
|
+
"tagName": "forge-ai-paginator",
|
|
9221
9503
|
"customElement": true
|
|
9222
9504
|
}
|
|
9223
9505
|
],
|
|
9224
9506
|
"exports": [
|
|
9225
9507
|
{
|
|
9226
9508
|
"kind": "js",
|
|
9227
|
-
"name": "
|
|
9228
|
-
"declaration": {
|
|
9229
|
-
"name": "ReasoningContentComponentTagName",
|
|
9230
|
-
"module": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts"
|
|
9231
|
-
}
|
|
9232
|
-
},
|
|
9233
|
-
{
|
|
9234
|
-
"kind": "js",
|
|
9235
|
-
"name": "ReasoningContentComponent",
|
|
9509
|
+
"name": "AiPaginator",
|
|
9236
9510
|
"declaration": {
|
|
9237
|
-
"name": "
|
|
9238
|
-
"module": "src/lib/ai-
|
|
9511
|
+
"name": "AiPaginator",
|
|
9512
|
+
"module": "src/lib/tools/ai-paginator/ai-paginator.ts"
|
|
9239
9513
|
}
|
|
9240
9514
|
},
|
|
9241
9515
|
{
|
|
9242
9516
|
"kind": "custom-element-definition",
|
|
9517
|
+
"name": "forge-ai-paginator",
|
|
9243
9518
|
"declaration": {
|
|
9244
|
-
"name": "
|
|
9245
|
-
"module": "src/lib/ai-
|
|
9519
|
+
"name": "AiPaginator",
|
|
9520
|
+
"module": "src/lib/tools/ai-paginator/ai-paginator.ts"
|
|
9246
9521
|
}
|
|
9247
9522
|
}
|
|
9248
9523
|
]
|
|
9249
9524
|
},
|
|
9250
9525
|
{
|
|
9251
9526
|
"kind": "javascript-module",
|
|
9252
|
-
"path": "src/lib/core/
|
|
9527
|
+
"path": "src/lib/core/popover/popover.ts",
|
|
9253
9528
|
"declarations": [
|
|
9254
9529
|
{
|
|
9255
9530
|
"kind": "class",
|
|
9256
9531
|
"description": "",
|
|
9257
|
-
"name": "
|
|
9532
|
+
"name": "ForgeAiPopoverComponent",
|
|
9258
9533
|
"slots": [
|
|
9259
9534
|
{
|
|
9260
|
-
"description": "The default slot for
|
|
9535
|
+
"description": "The default slot for popover content.",
|
|
9261
9536
|
"name": ""
|
|
9262
9537
|
}
|
|
9263
9538
|
],
|
|
@@ -9270,18 +9545,18 @@
|
|
|
9270
9545
|
},
|
|
9271
9546
|
"privacy": "public",
|
|
9272
9547
|
"default": "null",
|
|
9273
|
-
"description": "The anchor element to position the
|
|
9548
|
+
"description": "The anchor element to position the popover relative to.",
|
|
9274
9549
|
"attribute": "anchor"
|
|
9275
9550
|
},
|
|
9276
9551
|
{
|
|
9277
9552
|
"kind": "field",
|
|
9278
9553
|
"name": "placement",
|
|
9279
9554
|
"type": {
|
|
9280
|
-
"text": "
|
|
9555
|
+
"text": "PopoverPlacement"
|
|
9281
9556
|
},
|
|
9282
9557
|
"privacy": "public",
|
|
9283
9558
|
"default": "'bottom-start'",
|
|
9284
|
-
"description": "The placement of the
|
|
9559
|
+
"description": "The placement of the popover relative to the anchor.",
|
|
9285
9560
|
"attribute": "placement"
|
|
9286
9561
|
},
|
|
9287
9562
|
{
|
|
@@ -9291,8 +9566,8 @@
|
|
|
9291
9566
|
"text": "boolean"
|
|
9292
9567
|
},
|
|
9293
9568
|
"privacy": "public",
|
|
9294
|
-
"default": "
|
|
9295
|
-
"description": "Whether the
|
|
9569
|
+
"default": "false",
|
|
9570
|
+
"description": "Whether the popover should flip to the opposite side when there's no space.",
|
|
9296
9571
|
"attribute": "flip"
|
|
9297
9572
|
},
|
|
9298
9573
|
{
|
|
@@ -9303,7 +9578,7 @@
|
|
|
9303
9578
|
},
|
|
9304
9579
|
"privacy": "public",
|
|
9305
9580
|
"default": "false",
|
|
9306
|
-
"description": "Whether the
|
|
9581
|
+
"description": "Whether the popover should shift to stay in view.",
|
|
9307
9582
|
"attribute": "shift"
|
|
9308
9583
|
},
|
|
9309
9584
|
{
|
|
@@ -9314,30 +9589,30 @@
|
|
|
9314
9589
|
},
|
|
9315
9590
|
"privacy": "public",
|
|
9316
9591
|
"default": "false",
|
|
9317
|
-
"description": "Whether the
|
|
9592
|
+
"description": "Whether the popover is open.",
|
|
9318
9593
|
"attribute": "open",
|
|
9319
9594
|
"reflects": true
|
|
9320
9595
|
},
|
|
9321
9596
|
{
|
|
9322
9597
|
"kind": "field",
|
|
9323
|
-
"name": "
|
|
9598
|
+
"name": "arrow",
|
|
9324
9599
|
"type": {
|
|
9325
|
-
"text": "
|
|
9600
|
+
"text": "boolean"
|
|
9326
9601
|
},
|
|
9327
9602
|
"privacy": "public",
|
|
9328
|
-
"default": "
|
|
9329
|
-
"description": "
|
|
9330
|
-
"attribute": "
|
|
9603
|
+
"default": "false",
|
|
9604
|
+
"description": "Whether to show an arrow pointing to the anchor element.",
|
|
9605
|
+
"attribute": "arrow"
|
|
9331
9606
|
},
|
|
9332
9607
|
{
|
|
9333
9608
|
"kind": "field",
|
|
9334
9609
|
"name": "offset",
|
|
9335
9610
|
"type": {
|
|
9336
|
-
"text": "
|
|
9611
|
+
"text": "PopoverOffset | undefined"
|
|
9337
9612
|
},
|
|
9338
9613
|
"privacy": "public",
|
|
9339
9614
|
"default": "undefined",
|
|
9340
|
-
"description": "The offset of the
|
|
9615
|
+
"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.",
|
|
9341
9616
|
"attribute": "offset"
|
|
9342
9617
|
},
|
|
9343
9618
|
{
|
|
@@ -9348,7 +9623,7 @@
|
|
|
9348
9623
|
},
|
|
9349
9624
|
"privacy": "public",
|
|
9350
9625
|
"default": "'auto'",
|
|
9351
|
-
"description": "The dismiss mode for the
|
|
9626
|
+
"description": "The dismiss mode for the popover.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
9352
9627
|
"attribute": "dismiss-mode"
|
|
9353
9628
|
}
|
|
9354
9629
|
],
|
|
@@ -9359,16 +9634,16 @@
|
|
|
9359
9634
|
"text": "Element | null"
|
|
9360
9635
|
},
|
|
9361
9636
|
"default": "null",
|
|
9362
|
-
"description": "The anchor element to position the
|
|
9637
|
+
"description": "The anchor element to position the popover relative to.",
|
|
9363
9638
|
"fieldName": "anchor"
|
|
9364
9639
|
},
|
|
9365
9640
|
{
|
|
9366
9641
|
"name": "placement",
|
|
9367
9642
|
"type": {
|
|
9368
|
-
"text": "
|
|
9643
|
+
"text": "PopoverPlacement"
|
|
9369
9644
|
},
|
|
9370
9645
|
"default": "'bottom-start'",
|
|
9371
|
-
"description": "The placement of the
|
|
9646
|
+
"description": "The placement of the popover relative to the anchor.",
|
|
9372
9647
|
"fieldName": "placement"
|
|
9373
9648
|
},
|
|
9374
9649
|
{
|
|
@@ -9376,8 +9651,8 @@
|
|
|
9376
9651
|
"type": {
|
|
9377
9652
|
"text": "boolean"
|
|
9378
9653
|
},
|
|
9379
|
-
"default": "
|
|
9380
|
-
"description": "Whether the
|
|
9654
|
+
"default": "false",
|
|
9655
|
+
"description": "Whether the popover should flip to the opposite side when there's no space.",
|
|
9381
9656
|
"fieldName": "flip"
|
|
9382
9657
|
},
|
|
9383
9658
|
{
|
|
@@ -9386,7 +9661,7 @@
|
|
|
9386
9661
|
"text": "boolean"
|
|
9387
9662
|
},
|
|
9388
9663
|
"default": "false",
|
|
9389
|
-
"description": "Whether the
|
|
9664
|
+
"description": "Whether the popover should shift to stay in view.",
|
|
9390
9665
|
"fieldName": "shift"
|
|
9391
9666
|
},
|
|
9392
9667
|
{
|
|
@@ -9395,138 +9670,76 @@
|
|
|
9395
9670
|
"text": "boolean"
|
|
9396
9671
|
},
|
|
9397
9672
|
"default": "false",
|
|
9398
|
-
"description": "Whether the
|
|
9673
|
+
"description": "Whether the popover is open.",
|
|
9399
9674
|
"fieldName": "open"
|
|
9400
9675
|
},
|
|
9401
9676
|
{
|
|
9402
|
-
"name": "
|
|
9403
|
-
"type": {
|
|
9404
|
-
"text": "
|
|
9405
|
-
},
|
|
9406
|
-
"default": "
|
|
9407
|
-
"description": "
|
|
9408
|
-
"fieldName": "
|
|
9409
|
-
},
|
|
9410
|
-
{
|
|
9411
|
-
"name": "offset",
|
|
9412
|
-
"type": {
|
|
9413
|
-
"text": "OverlayOffset | undefined"
|
|
9414
|
-
},
|
|
9415
|
-
"default": "undefined",
|
|
9416
|
-
"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.",
|
|
9417
|
-
"fieldName": "offset"
|
|
9418
|
-
},
|
|
9419
|
-
{
|
|
9420
|
-
"name": "dismiss-mode",
|
|
9421
|
-
"type": {
|
|
9422
|
-
"text": "'auto' | 'manual'"
|
|
9423
|
-
},
|
|
9424
|
-
"default": "'auto'",
|
|
9425
|
-
"description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
9426
|
-
"fieldName": "dismissMode"
|
|
9427
|
-
}
|
|
9428
|
-
],
|
|
9429
|
-
"superclass": {
|
|
9430
|
-
"name": "LitElement",
|
|
9431
|
-
"package": "lit"
|
|
9432
|
-
},
|
|
9433
|
-
"summary": "A low-level overlay component for internal use within AI components.",
|
|
9434
|
-
"tagName": "forge-ai-overlay",
|
|
9435
|
-
"customElement": true
|
|
9436
|
-
}
|
|
9437
|
-
],
|
|
9438
|
-
"exports": [
|
|
9439
|
-
{
|
|
9440
|
-
"kind": "js",
|
|
9441
|
-
"name": "ForgeAiOverlayComponent",
|
|
9442
|
-
"declaration": {
|
|
9443
|
-
"name": "ForgeAiOverlayComponent",
|
|
9444
|
-
"module": "src/lib/core/overlay/overlay.ts"
|
|
9445
|
-
}
|
|
9446
|
-
},
|
|
9447
|
-
{
|
|
9448
|
-
"kind": "custom-element-definition",
|
|
9449
|
-
"name": "forge-ai-overlay",
|
|
9450
|
-
"declaration": {
|
|
9451
|
-
"name": "ForgeAiOverlayComponent",
|
|
9452
|
-
"module": "src/lib/core/overlay/overlay.ts"
|
|
9453
|
-
}
|
|
9454
|
-
}
|
|
9455
|
-
]
|
|
9456
|
-
},
|
|
9457
|
-
{
|
|
9458
|
-
"kind": "javascript-module",
|
|
9459
|
-
"path": "src/lib/tools/ai-data-table/ai-data-table-definition.ts",
|
|
9460
|
-
"declarations": [
|
|
9461
|
-
{
|
|
9462
|
-
"kind": "variable",
|
|
9463
|
-
"name": "displayDataTableTool",
|
|
9464
|
-
"type": {
|
|
9465
|
-
"text": "ToolDefinition"
|
|
9466
|
-
},
|
|
9467
|
-
"default": "{ name: 'displayDataTable', displayName: 'Display Data Table', description: 'Display tabular data in a formatted table with headers and rows. Use this tool when you want to present structured data, lists where there are 2 or more columns, statistics, or any information that works well in a table format.', parameters: { type: 'object' as const, properties: { title: { type: 'string', description: 'Table title or caption displayed above the data.' }, headers: { type: 'array', items: { type: 'string' }, description: 'Column names displayed as table headers. Order matches the row data order.' }, maxNumberOfRows: { type: 'number', description: 'Limit total rows shown. Useful for large datasets to prevent overwhelming display.' }, rows: { type: 'array', items: { type: 'array', items: { anyOf: [{ type: 'string' }, { type: 'number' }] } }, description: 'Data rows where each row is an array of values matching header order.' } }, required: ['headers', 'rows'] }, renderer: createToolRenderer({ elementTag: 'forge-ai-tool-data-table' }) }"
|
|
9468
|
-
}
|
|
9469
|
-
],
|
|
9470
|
-
"exports": [
|
|
9471
|
-
{
|
|
9472
|
-
"kind": "js",
|
|
9473
|
-
"name": "displayDataTableTool",
|
|
9474
|
-
"declaration": {
|
|
9475
|
-
"name": "displayDataTableTool",
|
|
9476
|
-
"module": "src/lib/tools/ai-data-table/ai-data-table-definition.ts"
|
|
9477
|
-
}
|
|
9478
|
-
}
|
|
9479
|
-
]
|
|
9480
|
-
},
|
|
9481
|
-
{
|
|
9482
|
-
"kind": "javascript-module",
|
|
9483
|
-
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
9484
|
-
"declarations": [
|
|
9485
|
-
{
|
|
9486
|
-
"kind": "class",
|
|
9487
|
-
"description": "Data table component tool renderer for displaying tabular data with pagination and filtering.",
|
|
9488
|
-
"name": "DataTableToolElement",
|
|
9489
|
-
"members": [
|
|
9677
|
+
"name": "arrow",
|
|
9678
|
+
"type": {
|
|
9679
|
+
"text": "boolean"
|
|
9680
|
+
},
|
|
9681
|
+
"default": "false",
|
|
9682
|
+
"description": "Whether to show an arrow pointing to the anchor element.",
|
|
9683
|
+
"fieldName": "arrow"
|
|
9684
|
+
},
|
|
9490
9685
|
{
|
|
9491
|
-
"
|
|
9492
|
-
"name": "toolCall",
|
|
9686
|
+
"name": "offset",
|
|
9493
9687
|
"type": {
|
|
9494
|
-
"text": "
|
|
9688
|
+
"text": "PopoverOffset | undefined"
|
|
9495
9689
|
},
|
|
9496
|
-
"
|
|
9497
|
-
"description": "
|
|
9690
|
+
"default": "undefined",
|
|
9691
|
+
"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.",
|
|
9692
|
+
"fieldName": "offset"
|
|
9693
|
+
},
|
|
9694
|
+
{
|
|
9695
|
+
"name": "dismiss-mode",
|
|
9696
|
+
"type": {
|
|
9697
|
+
"text": "'auto' | 'manual'"
|
|
9698
|
+
},
|
|
9699
|
+
"default": "'auto'",
|
|
9700
|
+
"description": "The dismiss mode for the popover.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
9701
|
+
"fieldName": "dismissMode"
|
|
9498
9702
|
}
|
|
9499
9703
|
],
|
|
9500
9704
|
"superclass": {
|
|
9501
9705
|
"name": "LitElement",
|
|
9502
9706
|
"package": "lit"
|
|
9503
9707
|
},
|
|
9504
|
-
"
|
|
9708
|
+
"summary": "A popover component that provides styled overlay functionality.",
|
|
9709
|
+
"tagName": "forge-ai-popover",
|
|
9505
9710
|
"customElement": true
|
|
9506
9711
|
}
|
|
9507
9712
|
],
|
|
9508
9713
|
"exports": [
|
|
9714
|
+
{
|
|
9715
|
+
"kind": "js",
|
|
9716
|
+
"name": "ForgeAiPopoverComponent",
|
|
9717
|
+
"declaration": {
|
|
9718
|
+
"name": "ForgeAiPopoverComponent",
|
|
9719
|
+
"module": "src/lib/core/popover/popover.ts"
|
|
9720
|
+
}
|
|
9721
|
+
},
|
|
9509
9722
|
{
|
|
9510
9723
|
"kind": "custom-element-definition",
|
|
9511
|
-
"name": "forge-ai-
|
|
9724
|
+
"name": "forge-ai-popover",
|
|
9512
9725
|
"declaration": {
|
|
9513
|
-
"name": "
|
|
9514
|
-
"module": "src/lib/
|
|
9726
|
+
"name": "ForgeAiPopoverComponent",
|
|
9727
|
+
"module": "src/lib/core/popover/popover.ts"
|
|
9515
9728
|
}
|
|
9516
9729
|
}
|
|
9517
9730
|
]
|
|
9518
9731
|
},
|
|
9519
9732
|
{
|
|
9520
9733
|
"kind": "javascript-module",
|
|
9521
|
-
"path": "src/lib/core/
|
|
9734
|
+
"path": "src/lib/core/overlay/overlay.ts",
|
|
9522
9735
|
"declarations": [
|
|
9523
9736
|
{
|
|
9524
9737
|
"kind": "class",
|
|
9525
9738
|
"description": "",
|
|
9526
|
-
"name": "
|
|
9739
|
+
"name": "ForgeAiOverlayComponent",
|
|
9527
9740
|
"slots": [
|
|
9528
9741
|
{
|
|
9529
|
-
"description": "The default slot for
|
|
9742
|
+
"description": "The default slot for overlay content.",
|
|
9530
9743
|
"name": ""
|
|
9531
9744
|
}
|
|
9532
9745
|
],
|
|
@@ -9539,18 +9752,18 @@
|
|
|
9539
9752
|
},
|
|
9540
9753
|
"privacy": "public",
|
|
9541
9754
|
"default": "null",
|
|
9542
|
-
"description": "The anchor element to position the
|
|
9755
|
+
"description": "The anchor element to position the overlay relative to.",
|
|
9543
9756
|
"attribute": "anchor"
|
|
9544
9757
|
},
|
|
9545
9758
|
{
|
|
9546
9759
|
"kind": "field",
|
|
9547
9760
|
"name": "placement",
|
|
9548
9761
|
"type": {
|
|
9549
|
-
"text": "
|
|
9762
|
+
"text": "OverlayPlacement"
|
|
9550
9763
|
},
|
|
9551
9764
|
"privacy": "public",
|
|
9552
9765
|
"default": "'bottom-start'",
|
|
9553
|
-
"description": "The placement of the
|
|
9766
|
+
"description": "The placement of the overlay relative to the anchor.",
|
|
9554
9767
|
"attribute": "placement"
|
|
9555
9768
|
},
|
|
9556
9769
|
{
|
|
@@ -9560,8 +9773,8 @@
|
|
|
9560
9773
|
"text": "boolean"
|
|
9561
9774
|
},
|
|
9562
9775
|
"privacy": "public",
|
|
9563
|
-
"default": "
|
|
9564
|
-
"description": "Whether the
|
|
9776
|
+
"default": "true",
|
|
9777
|
+
"description": "Whether the overlay should flip to the opposite side when there's no space.",
|
|
9565
9778
|
"attribute": "flip"
|
|
9566
9779
|
},
|
|
9567
9780
|
{
|
|
@@ -9572,7 +9785,7 @@
|
|
|
9572
9785
|
},
|
|
9573
9786
|
"privacy": "public",
|
|
9574
9787
|
"default": "false",
|
|
9575
|
-
"description": "Whether the
|
|
9788
|
+
"description": "Whether the overlay should shift to stay in view.",
|
|
9576
9789
|
"attribute": "shift"
|
|
9577
9790
|
},
|
|
9578
9791
|
{
|
|
@@ -9583,30 +9796,30 @@
|
|
|
9583
9796
|
},
|
|
9584
9797
|
"privacy": "public",
|
|
9585
9798
|
"default": "false",
|
|
9586
|
-
"description": "Whether the
|
|
9799
|
+
"description": "Whether the overlay is open.",
|
|
9587
9800
|
"attribute": "open",
|
|
9588
9801
|
"reflects": true
|
|
9589
9802
|
},
|
|
9590
9803
|
{
|
|
9591
9804
|
"kind": "field",
|
|
9592
|
-
"name": "
|
|
9805
|
+
"name": "arrowElement",
|
|
9593
9806
|
"type": {
|
|
9594
|
-
"text": "
|
|
9807
|
+
"text": "HTMLElement | null"
|
|
9595
9808
|
},
|
|
9596
9809
|
"privacy": "public",
|
|
9597
|
-
"default": "
|
|
9598
|
-
"description": "
|
|
9599
|
-
"attribute": "
|
|
9810
|
+
"default": "null",
|
|
9811
|
+
"description": "The arrow element to position relative to the overlay.",
|
|
9812
|
+
"attribute": "arrowElement"
|
|
9600
9813
|
},
|
|
9601
9814
|
{
|
|
9602
9815
|
"kind": "field",
|
|
9603
9816
|
"name": "offset",
|
|
9604
9817
|
"type": {
|
|
9605
|
-
"text": "
|
|
9818
|
+
"text": "OverlayOffset | undefined"
|
|
9606
9819
|
},
|
|
9607
9820
|
"privacy": "public",
|
|
9608
9821
|
"default": "undefined",
|
|
9609
|
-
"description": "The offset of the
|
|
9822
|
+
"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.",
|
|
9610
9823
|
"attribute": "offset"
|
|
9611
9824
|
},
|
|
9612
9825
|
{
|
|
@@ -9617,7 +9830,7 @@
|
|
|
9617
9830
|
},
|
|
9618
9831
|
"privacy": "public",
|
|
9619
9832
|
"default": "'auto'",
|
|
9620
|
-
"description": "The dismiss mode for the
|
|
9833
|
+
"description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
9621
9834
|
"attribute": "dismiss-mode"
|
|
9622
9835
|
}
|
|
9623
9836
|
],
|
|
@@ -9628,16 +9841,16 @@
|
|
|
9628
9841
|
"text": "Element | null"
|
|
9629
9842
|
},
|
|
9630
9843
|
"default": "null",
|
|
9631
|
-
"description": "The anchor element to position the
|
|
9844
|
+
"description": "The anchor element to position the overlay relative to.",
|
|
9632
9845
|
"fieldName": "anchor"
|
|
9633
9846
|
},
|
|
9634
9847
|
{
|
|
9635
9848
|
"name": "placement",
|
|
9636
9849
|
"type": {
|
|
9637
|
-
"text": "
|
|
9850
|
+
"text": "OverlayPlacement"
|
|
9638
9851
|
},
|
|
9639
9852
|
"default": "'bottom-start'",
|
|
9640
|
-
"description": "The placement of the
|
|
9853
|
+
"description": "The placement of the overlay relative to the anchor.",
|
|
9641
9854
|
"fieldName": "placement"
|
|
9642
9855
|
},
|
|
9643
9856
|
{
|
|
@@ -9645,8 +9858,8 @@
|
|
|
9645
9858
|
"type": {
|
|
9646
9859
|
"text": "boolean"
|
|
9647
9860
|
},
|
|
9648
|
-
"default": "
|
|
9649
|
-
"description": "Whether the
|
|
9861
|
+
"default": "true",
|
|
9862
|
+
"description": "Whether the overlay should flip to the opposite side when there's no space.",
|
|
9650
9863
|
"fieldName": "flip"
|
|
9651
9864
|
},
|
|
9652
9865
|
{
|
|
@@ -9655,7 +9868,7 @@
|
|
|
9655
9868
|
"text": "boolean"
|
|
9656
9869
|
},
|
|
9657
9870
|
"default": "false",
|
|
9658
|
-
"description": "Whether the
|
|
9871
|
+
"description": "Whether the overlay should shift to stay in view.",
|
|
9659
9872
|
"fieldName": "shift"
|
|
9660
9873
|
},
|
|
9661
9874
|
{
|
|
@@ -9664,25 +9877,25 @@
|
|
|
9664
9877
|
"text": "boolean"
|
|
9665
9878
|
},
|
|
9666
9879
|
"default": "false",
|
|
9667
|
-
"description": "Whether the
|
|
9880
|
+
"description": "Whether the overlay is open.",
|
|
9668
9881
|
"fieldName": "open"
|
|
9669
9882
|
},
|
|
9670
9883
|
{
|
|
9671
|
-
"name": "
|
|
9884
|
+
"name": "arrowElement",
|
|
9672
9885
|
"type": {
|
|
9673
|
-
"text": "
|
|
9886
|
+
"text": "HTMLElement | null"
|
|
9674
9887
|
},
|
|
9675
|
-
"default": "
|
|
9676
|
-
"description": "
|
|
9677
|
-
"fieldName": "
|
|
9888
|
+
"default": "null",
|
|
9889
|
+
"description": "The arrow element to position relative to the overlay.",
|
|
9890
|
+
"fieldName": "arrowElement"
|
|
9678
9891
|
},
|
|
9679
9892
|
{
|
|
9680
9893
|
"name": "offset",
|
|
9681
9894
|
"type": {
|
|
9682
|
-
"text": "
|
|
9895
|
+
"text": "OverlayOffset | undefined"
|
|
9683
9896
|
},
|
|
9684
9897
|
"default": "undefined",
|
|
9685
|
-
"description": "The offset of the
|
|
9898
|
+
"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.",
|
|
9686
9899
|
"fieldName": "offset"
|
|
9687
9900
|
},
|
|
9688
9901
|
{
|
|
@@ -9691,7 +9904,7 @@
|
|
|
9691
9904
|
"text": "'auto' | 'manual'"
|
|
9692
9905
|
},
|
|
9693
9906
|
"default": "'auto'",
|
|
9694
|
-
"description": "The dismiss mode for the
|
|
9907
|
+
"description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
9695
9908
|
"fieldName": "dismissMode"
|
|
9696
9909
|
}
|
|
9697
9910
|
],
|
|
@@ -9699,26 +9912,26 @@
|
|
|
9699
9912
|
"name": "LitElement",
|
|
9700
9913
|
"package": "lit"
|
|
9701
9914
|
},
|
|
9702
|
-
"summary": "A
|
|
9703
|
-
"tagName": "forge-ai-
|
|
9915
|
+
"summary": "A low-level overlay component for internal use within AI components.",
|
|
9916
|
+
"tagName": "forge-ai-overlay",
|
|
9704
9917
|
"customElement": true
|
|
9705
9918
|
}
|
|
9706
9919
|
],
|
|
9707
9920
|
"exports": [
|
|
9708
9921
|
{
|
|
9709
9922
|
"kind": "js",
|
|
9710
|
-
"name": "
|
|
9923
|
+
"name": "ForgeAiOverlayComponent",
|
|
9711
9924
|
"declaration": {
|
|
9712
|
-
"name": "
|
|
9713
|
-
"module": "src/lib/core/
|
|
9925
|
+
"name": "ForgeAiOverlayComponent",
|
|
9926
|
+
"module": "src/lib/core/overlay/overlay.ts"
|
|
9714
9927
|
}
|
|
9715
9928
|
},
|
|
9716
9929
|
{
|
|
9717
9930
|
"kind": "custom-element-definition",
|
|
9718
|
-
"name": "forge-ai-
|
|
9931
|
+
"name": "forge-ai-overlay",
|
|
9719
9932
|
"declaration": {
|
|
9720
|
-
"name": "
|
|
9721
|
-
"module": "src/lib/core/
|
|
9933
|
+
"name": "ForgeAiOverlayComponent",
|
|
9934
|
+
"module": "src/lib/core/overlay/overlay.ts"
|
|
9722
9935
|
}
|
|
9723
9936
|
}
|
|
9724
9937
|
]
|
|
@@ -9861,259 +10074,101 @@
|
|
|
9861
10074
|
}
|
|
9862
10075
|
],
|
|
9863
10076
|
"attributes": [
|
|
9864
|
-
{
|
|
9865
|
-
"name": "for",
|
|
9866
|
-
"type": {
|
|
9867
|
-
"text": "string"
|
|
9868
|
-
},
|
|
9869
|
-
"default": "''",
|
|
9870
|
-
"description": "The ID of the anchor element to attach the tooltip to.",
|
|
9871
|
-
"fieldName": "for"
|
|
9872
|
-
},
|
|
9873
|
-
{
|
|
9874
|
-
"name": "text",
|
|
9875
|
-
"type": {
|
|
9876
|
-
"text": "string"
|
|
9877
|
-
},
|
|
9878
|
-
"default": "''",
|
|
9879
|
-
"description": "The text content of the tooltip (alternative to slotted content).",
|
|
9880
|
-
"fieldName": "text"
|
|
9881
|
-
},
|
|
9882
|
-
{
|
|
9883
|
-
"name": "placement",
|
|
9884
|
-
"type": {
|
|
9885
|
-
"text": "TooltipPlacement"
|
|
9886
|
-
},
|
|
9887
|
-
"default": "'top'",
|
|
9888
|
-
"description": "The placement of the tooltip relative to the anchor.",
|
|
9889
|
-
"fieldName": "placement"
|
|
9890
|
-
},
|
|
9891
|
-
{
|
|
9892
|
-
"name": "trigger",
|
|
9893
|
-
"type": {
|
|
9894
|
-
"text": "TooltipTrigger"
|
|
9895
|
-
},
|
|
9896
|
-
"default": "'hover'",
|
|
9897
|
-
"description": "How the tooltip should be triggered.",
|
|
9898
|
-
"fieldName": "trigger"
|
|
9899
|
-
},
|
|
9900
|
-
{
|
|
9901
|
-
"name": "open",
|
|
9902
|
-
"type": {
|
|
9903
|
-
"text": "boolean"
|
|
9904
|
-
},
|
|
9905
|
-
"default": "false",
|
|
9906
|
-
"description": "Whether the tooltip is open.",
|
|
9907
|
-
"fieldName": "open"
|
|
9908
|
-
},
|
|
9909
|
-
{
|
|
9910
|
-
"name": "delay",
|
|
9911
|
-
"type": {
|
|
9912
|
-
"text": "number"
|
|
9913
|
-
},
|
|
9914
|
-
"default": "500",
|
|
9915
|
-
"description": "Delay in milliseconds before showing the tooltip.",
|
|
9916
|
-
"fieldName": "delay"
|
|
9917
|
-
},
|
|
9918
|
-
{
|
|
9919
|
-
"name": "hide-delay",
|
|
9920
|
-
"type": {
|
|
9921
|
-
"text": "number"
|
|
9922
|
-
},
|
|
9923
|
-
"default": "0",
|
|
9924
|
-
"description": "Delay in milliseconds before hiding the tooltip.",
|
|
9925
|
-
"fieldName": "hideDelay"
|
|
9926
|
-
}
|
|
9927
|
-
],
|
|
9928
|
-
"superclass": {
|
|
9929
|
-
"name": "LitElement",
|
|
9930
|
-
"package": "lit"
|
|
9931
|
-
},
|
|
9932
|
-
"summary": "A tooltip component with accessibility features and dynamic positioning.",
|
|
9933
|
-
"tagName": "forge-ai-tooltip",
|
|
9934
|
-
"customElement": true
|
|
9935
|
-
}
|
|
9936
|
-
],
|
|
9937
|
-
"exports": [
|
|
9938
|
-
{
|
|
9939
|
-
"kind": "js",
|
|
9940
|
-
"name": "ForgeAiTooltipComponent",
|
|
9941
|
-
"declaration": {
|
|
9942
|
-
"name": "ForgeAiTooltipComponent",
|
|
9943
|
-
"module": "src/lib/core/tooltip/tooltip.ts"
|
|
9944
|
-
}
|
|
9945
|
-
},
|
|
9946
|
-
{
|
|
9947
|
-
"kind": "custom-element-definition",
|
|
9948
|
-
"name": "forge-ai-tooltip",
|
|
9949
|
-
"declaration": {
|
|
9950
|
-
"name": "ForgeAiTooltipComponent",
|
|
9951
|
-
"module": "src/lib/core/tooltip/tooltip.ts"
|
|
9952
|
-
}
|
|
9953
|
-
}
|
|
9954
|
-
]
|
|
9955
|
-
},
|
|
9956
|
-
{
|
|
9957
|
-
"kind": "javascript-module",
|
|
9958
|
-
"path": "src/lib/tools/ai-confirm-tool-call/ai-confirm-tool-call-definition.ts",
|
|
9959
|
-
"declarations": [
|
|
9960
|
-
{
|
|
9961
|
-
"kind": "variable",
|
|
9962
|
-
"name": "CONFIRM_TOOL_CALL_NAME",
|
|
9963
|
-
"type": {
|
|
9964
|
-
"text": "string"
|
|
9965
|
-
},
|
|
9966
|
-
"default": "'confirmToolCall'"
|
|
9967
|
-
},
|
|
9968
|
-
{
|
|
9969
|
-
"kind": "variable",
|
|
9970
|
-
"name": "confirmActionTool",
|
|
9971
|
-
"type": {
|
|
9972
|
-
"text": "ToolDefinition<ConfirmActionToolArgs>"
|
|
9973
|
-
},
|
|
9974
|
-
"default": "{ name: CONFIRM_TOOL_CALL_NAME, displayName: 'Confirm Action', description: 'Request user confirmation before executing a tool. The user will see a prompt with the action description and can confirm or deny. Use this tool before executing ANY other tools.', parameters: { type: 'object' as const, properties: { action: { type: 'string', description: 'A clear, user-friendly description of the action to be confirmed' } }, required: ['action'] } }"
|
|
9975
|
-
}
|
|
9976
|
-
],
|
|
9977
|
-
"exports": [
|
|
9978
|
-
{
|
|
9979
|
-
"kind": "js",
|
|
9980
|
-
"name": "CONFIRM_TOOL_CALL_NAME",
|
|
9981
|
-
"declaration": {
|
|
9982
|
-
"name": "CONFIRM_TOOL_CALL_NAME",
|
|
9983
|
-
"module": "src/lib/tools/ai-confirm-tool-call/ai-confirm-tool-call-definition.ts"
|
|
9984
|
-
}
|
|
9985
|
-
},
|
|
9986
|
-
{
|
|
9987
|
-
"kind": "js",
|
|
9988
|
-
"name": "confirmActionTool",
|
|
9989
|
-
"declaration": {
|
|
9990
|
-
"name": "confirmActionTool",
|
|
9991
|
-
"module": "src/lib/tools/ai-confirm-tool-call/ai-confirm-tool-call-definition.ts"
|
|
9992
|
-
}
|
|
9993
|
-
}
|
|
9994
|
-
]
|
|
9995
|
-
},
|
|
9996
|
-
{
|
|
9997
|
-
"kind": "javascript-module",
|
|
9998
|
-
"path": "src/lib/tools/ai-paginator/ai-paginator.ts",
|
|
9999
|
-
"declarations": [
|
|
10000
|
-
{
|
|
10001
|
-
"kind": "class",
|
|
10002
|
-
"description": "",
|
|
10003
|
-
"name": "AiPaginator",
|
|
10004
|
-
"members": [
|
|
10005
|
-
{
|
|
10006
|
-
"kind": "field",
|
|
10007
|
-
"name": "currentPage",
|
|
10077
|
+
{
|
|
10078
|
+
"name": "for",
|
|
10008
10079
|
"type": {
|
|
10009
|
-
"text": "
|
|
10080
|
+
"text": "string"
|
|
10010
10081
|
},
|
|
10011
|
-
"
|
|
10012
|
-
"
|
|
10013
|
-
"
|
|
10082
|
+
"default": "''",
|
|
10083
|
+
"description": "The ID of the anchor element to attach the tooltip to.",
|
|
10084
|
+
"fieldName": "for"
|
|
10014
10085
|
},
|
|
10015
10086
|
{
|
|
10016
|
-
"
|
|
10017
|
-
"name": "totalPages",
|
|
10087
|
+
"name": "text",
|
|
10018
10088
|
"type": {
|
|
10019
|
-
"text": "
|
|
10089
|
+
"text": "string"
|
|
10020
10090
|
},
|
|
10021
|
-
"
|
|
10022
|
-
"
|
|
10023
|
-
"
|
|
10091
|
+
"default": "''",
|
|
10092
|
+
"description": "The text content of the tooltip (alternative to slotted content).",
|
|
10093
|
+
"fieldName": "text"
|
|
10024
10094
|
},
|
|
10025
10095
|
{
|
|
10026
|
-
"
|
|
10027
|
-
"name": "disabled",
|
|
10096
|
+
"name": "placement",
|
|
10028
10097
|
"type": {
|
|
10029
|
-
"text": "
|
|
10098
|
+
"text": "TooltipPlacement"
|
|
10030
10099
|
},
|
|
10031
|
-
"
|
|
10032
|
-
"
|
|
10033
|
-
"
|
|
10034
|
-
|
|
10035
|
-
}
|
|
10036
|
-
],
|
|
10037
|
-
"events": [
|
|
10100
|
+
"default": "'top'",
|
|
10101
|
+
"description": "The placement of the tooltip relative to the anchor.",
|
|
10102
|
+
"fieldName": "placement"
|
|
10103
|
+
},
|
|
10038
10104
|
{
|
|
10039
|
-
"name": "
|
|
10105
|
+
"name": "trigger",
|
|
10040
10106
|
"type": {
|
|
10041
|
-
"text": "
|
|
10042
|
-
}
|
|
10043
|
-
|
|
10044
|
-
|
|
10045
|
-
|
|
10107
|
+
"text": "TooltipTrigger"
|
|
10108
|
+
},
|
|
10109
|
+
"default": "'hover'",
|
|
10110
|
+
"description": "How the tooltip should be triggered.",
|
|
10111
|
+
"fieldName": "trigger"
|
|
10112
|
+
},
|
|
10046
10113
|
{
|
|
10047
|
-
"name": "
|
|
10114
|
+
"name": "open",
|
|
10048
10115
|
"type": {
|
|
10049
|
-
"text": "
|
|
10116
|
+
"text": "boolean"
|
|
10050
10117
|
},
|
|
10051
|
-
"default": "
|
|
10052
|
-
"
|
|
10118
|
+
"default": "false",
|
|
10119
|
+
"description": "Whether the tooltip is open.",
|
|
10120
|
+
"fieldName": "open"
|
|
10053
10121
|
},
|
|
10054
10122
|
{
|
|
10055
|
-
"name": "
|
|
10123
|
+
"name": "delay",
|
|
10056
10124
|
"type": {
|
|
10057
10125
|
"text": "number"
|
|
10058
10126
|
},
|
|
10059
|
-
"default": "
|
|
10060
|
-
"
|
|
10127
|
+
"default": "500",
|
|
10128
|
+
"description": "Delay in milliseconds before showing the tooltip.",
|
|
10129
|
+
"fieldName": "delay"
|
|
10061
10130
|
},
|
|
10062
10131
|
{
|
|
10063
|
-
"name": "
|
|
10132
|
+
"name": "hide-delay",
|
|
10064
10133
|
"type": {
|
|
10065
|
-
"text": "
|
|
10134
|
+
"text": "number"
|
|
10066
10135
|
},
|
|
10067
|
-
"default": "
|
|
10068
|
-
"
|
|
10136
|
+
"default": "0",
|
|
10137
|
+
"description": "Delay in milliseconds before hiding the tooltip.",
|
|
10138
|
+
"fieldName": "hideDelay"
|
|
10069
10139
|
}
|
|
10070
10140
|
],
|
|
10071
10141
|
"superclass": {
|
|
10072
10142
|
"name": "LitElement",
|
|
10073
10143
|
"package": "lit"
|
|
10074
10144
|
},
|
|
10075
|
-
"
|
|
10145
|
+
"summary": "A tooltip component with accessibility features and dynamic positioning.",
|
|
10146
|
+
"tagName": "forge-ai-tooltip",
|
|
10076
10147
|
"customElement": true
|
|
10077
10148
|
}
|
|
10078
10149
|
],
|
|
10079
10150
|
"exports": [
|
|
10080
10151
|
{
|
|
10081
10152
|
"kind": "js",
|
|
10082
|
-
"name": "
|
|
10153
|
+
"name": "ForgeAiTooltipComponent",
|
|
10083
10154
|
"declaration": {
|
|
10084
|
-
"name": "
|
|
10085
|
-
"module": "src/lib/
|
|
10155
|
+
"name": "ForgeAiTooltipComponent",
|
|
10156
|
+
"module": "src/lib/core/tooltip/tooltip.ts"
|
|
10086
10157
|
}
|
|
10087
10158
|
},
|
|
10088
10159
|
{
|
|
10089
10160
|
"kind": "custom-element-definition",
|
|
10090
|
-
"name": "forge-ai-
|
|
10161
|
+
"name": "forge-ai-tooltip",
|
|
10091
10162
|
"declaration": {
|
|
10092
|
-
"name": "
|
|
10093
|
-
"module": "src/lib/
|
|
10163
|
+
"name": "ForgeAiTooltipComponent",
|
|
10164
|
+
"module": "src/lib/core/tooltip/tooltip.ts"
|
|
10094
10165
|
}
|
|
10095
10166
|
}
|
|
10096
10167
|
]
|
|
10097
10168
|
}
|
|
10098
10169
|
],
|
|
10099
|
-
"branchName": "
|
|
10170
|
+
"branchName": "main",
|
|
10100
10171
|
"forgeTypes": {
|
|
10101
|
-
"ForgeAiActionsToolbarActionEventData": {
|
|
10102
|
-
"path": "src/lib/ai-actions-toolbar/ai-actions-toolbar.ts",
|
|
10103
|
-
"lineNumber": 23
|
|
10104
|
-
},
|
|
10105
|
-
"ForgeAiActionsToolbarFeedbackEventData": {
|
|
10106
|
-
"path": "src/lib/ai-actions-toolbar/ai-actions-toolbar.ts",
|
|
10107
|
-
"lineNumber": 27
|
|
10108
|
-
},
|
|
10109
|
-
"AiActionsToolbarAction": {
|
|
10110
|
-
"path": "src/lib/ai-actions-toolbar/ai-actions-toolbar.ts",
|
|
10111
|
-
"lineNumber": 32
|
|
10112
|
-
},
|
|
10113
|
-
"AiActionsToolbarComponent": {
|
|
10114
|
-
"path": "src/lib/ai-actions-toolbar/ai-actions-toolbar.ts",
|
|
10115
|
-
"lineNumber": 42
|
|
10116
|
-
},
|
|
10117
10172
|
"AgentInfo": {
|
|
10118
10173
|
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
10119
10174
|
"lineNumber": 39
|
|
@@ -10122,6 +10177,10 @@
|
|
|
10122
10177
|
"path": "src/lib/ai-agent-info/ai-agent-info.ts",
|
|
10123
10178
|
"lineNumber": 29
|
|
10124
10179
|
},
|
|
10180
|
+
"AiArtifactComponent": {
|
|
10181
|
+
"path": "src/lib/ai-artifact/ai-artifact.ts",
|
|
10182
|
+
"lineNumber": 23
|
|
10183
|
+
},
|
|
10125
10184
|
"ForgeAiAssistantResponseFeedbackEventData": {
|
|
10126
10185
|
"path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
|
|
10127
10186
|
"lineNumber": 30
|
|
@@ -10130,14 +10189,6 @@
|
|
|
10130
10189
|
"path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
|
|
10131
10190
|
"lineNumber": 47
|
|
10132
10191
|
},
|
|
10133
|
-
"AiArtifactComponent": {
|
|
10134
|
-
"path": "src/lib/ai-artifact/ai-artifact.ts",
|
|
10135
|
-
"lineNumber": 23
|
|
10136
|
-
},
|
|
10137
|
-
"AiButtonComponent": {
|
|
10138
|
-
"path": "src/lib/ai-button/ai-button.ts",
|
|
10139
|
-
"lineNumber": 22
|
|
10140
|
-
},
|
|
10141
10192
|
"ForgeAiAttachmentRemoveEventData": {
|
|
10142
10193
|
"path": "src/lib/ai-attachment/ai-attachment.ts",
|
|
10143
10194
|
"lineNumber": 19
|
|
@@ -10146,6 +10197,14 @@
|
|
|
10146
10197
|
"path": "src/lib/ai-attachment/ai-attachment.ts",
|
|
10147
10198
|
"lineNumber": 41
|
|
10148
10199
|
},
|
|
10200
|
+
"AiButtonComponent": {
|
|
10201
|
+
"path": "src/lib/ai-button/ai-button.ts",
|
|
10202
|
+
"lineNumber": 22
|
|
10203
|
+
},
|
|
10204
|
+
"AiChainOfThoughtComponent": {
|
|
10205
|
+
"path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
|
|
10206
|
+
"lineNumber": 17
|
|
10207
|
+
},
|
|
10149
10208
|
"MinimizeIconType": {
|
|
10150
10209
|
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
10151
10210
|
"lineNumber": 35
|
|
@@ -10158,13 +10217,13 @@
|
|
|
10158
10217
|
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
10159
10218
|
"lineNumber": 68
|
|
10160
10219
|
},
|
|
10161
|
-
"AiChainOfThoughtComponent": {
|
|
10162
|
-
"path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
|
|
10163
|
-
"lineNumber": 17
|
|
10164
|
-
},
|
|
10165
10220
|
"AiChatInterfaceComponent": {
|
|
10166
10221
|
"path": "src/lib/ai-chat-interface/ai-chat-interface.ts",
|
|
10167
|
-
"lineNumber":
|
|
10222
|
+
"lineNumber": 25
|
|
10223
|
+
},
|
|
10224
|
+
"AiConfirmationPromptComponent": {
|
|
10225
|
+
"path": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts",
|
|
10226
|
+
"lineNumber": 27
|
|
10168
10227
|
},
|
|
10169
10228
|
"AgUiAdapterConfig": {
|
|
10170
10229
|
"path": "src/lib/ai-chatbot/ag-ui-adapter.ts",
|
|
@@ -10180,15 +10239,15 @@
|
|
|
10180
10239
|
},
|
|
10181
10240
|
"MessageStartEvent": {
|
|
10182
10241
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10183
|
-
"lineNumber":
|
|
10242
|
+
"lineNumber": 75
|
|
10184
10243
|
},
|
|
10185
10244
|
"MessageDeltaEvent": {
|
|
10186
10245
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10187
|
-
"lineNumber":
|
|
10246
|
+
"lineNumber": 79
|
|
10188
10247
|
},
|
|
10189
10248
|
"MessageEndEvent": {
|
|
10190
10249
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10191
|
-
"lineNumber":
|
|
10250
|
+
"lineNumber": 84
|
|
10192
10251
|
},
|
|
10193
10252
|
"ToolCallEvent": {
|
|
10194
10253
|
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
@@ -10196,19 +10255,19 @@
|
|
|
10196
10255
|
},
|
|
10197
10256
|
"ToolCallStartEvent": {
|
|
10198
10257
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10199
|
-
"lineNumber":
|
|
10258
|
+
"lineNumber": 88
|
|
10200
10259
|
},
|
|
10201
10260
|
"ToolCallArgsEvent": {
|
|
10202
10261
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10203
|
-
"lineNumber":
|
|
10262
|
+
"lineNumber": 94
|
|
10204
10263
|
},
|
|
10205
10264
|
"ToolCallEndEvent": {
|
|
10206
10265
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10207
|
-
"lineNumber":
|
|
10266
|
+
"lineNumber": 102
|
|
10208
10267
|
},
|
|
10209
10268
|
"ToolResultEvent": {
|
|
10210
10269
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10211
|
-
"lineNumber":
|
|
10270
|
+
"lineNumber": 109
|
|
10212
10271
|
},
|
|
10213
10272
|
"AdapterState": {
|
|
10214
10273
|
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
@@ -10220,7 +10279,7 @@
|
|
|
10220
10279
|
},
|
|
10221
10280
|
"FileRemoveEvent": {
|
|
10222
10281
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10223
|
-
"lineNumber":
|
|
10282
|
+
"lineNumber": 204
|
|
10224
10283
|
},
|
|
10225
10284
|
"ErrorEvent": {
|
|
10226
10285
|
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
@@ -10288,31 +10347,31 @@
|
|
|
10288
10347
|
},
|
|
10289
10348
|
"ForgeAiChatbotMessageEventData": {
|
|
10290
10349
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10291
|
-
"lineNumber":
|
|
10350
|
+
"lineNumber": 83
|
|
10292
10351
|
},
|
|
10293
10352
|
"ForgeAiChatbotToolCallEventData": {
|
|
10294
10353
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10295
|
-
"lineNumber":
|
|
10354
|
+
"lineNumber": 87
|
|
10296
10355
|
},
|
|
10297
10356
|
"ForgeAiChatbotErrorEventData": {
|
|
10298
10357
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10299
|
-
"lineNumber":
|
|
10358
|
+
"lineNumber": 93
|
|
10300
10359
|
},
|
|
10301
10360
|
"ForgeAiChatbotFileRemoveEventData": {
|
|
10302
10361
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10303
|
-
"lineNumber":
|
|
10362
|
+
"lineNumber": 97
|
|
10304
10363
|
},
|
|
10305
10364
|
"ForgeAiChatbotResponseFeedbackEventData": {
|
|
10306
10365
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10307
|
-
"lineNumber":
|
|
10366
|
+
"lineNumber": 101
|
|
10308
10367
|
},
|
|
10309
10368
|
"FeatureToggle": {
|
|
10310
10369
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10311
|
-
"lineNumber":
|
|
10370
|
+
"lineNumber": 112
|
|
10312
10371
|
},
|
|
10313
10372
|
"AiChatbotComponent": {
|
|
10314
10373
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10315
|
-
"lineNumber":
|
|
10374
|
+
"lineNumber": 143
|
|
10316
10375
|
},
|
|
10317
10376
|
"CreateToolRendererElementConfig": {
|
|
10318
10377
|
"path": "src/lib/ai-chatbot/create-tool-renderer.ts",
|
|
@@ -10408,67 +10467,63 @@
|
|
|
10408
10467
|
},
|
|
10409
10468
|
"StreamEvent": {
|
|
10410
10469
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10411
|
-
"lineNumber":
|
|
10470
|
+
"lineNumber": 115
|
|
10412
10471
|
},
|
|
10413
10472
|
"ChatMessage": {
|
|
10414
10473
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10415
|
-
"lineNumber":
|
|
10474
|
+
"lineNumber": 124
|
|
10416
10475
|
},
|
|
10417
10476
|
"ToolCall": {
|
|
10418
10477
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10419
|
-
"lineNumber":
|
|
10478
|
+
"lineNumber": 137
|
|
10420
10479
|
},
|
|
10421
10480
|
"ResponseItem": {
|
|
10422
10481
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10423
|
-
"lineNumber":
|
|
10482
|
+
"lineNumber": 149
|
|
10424
10483
|
},
|
|
10425
10484
|
"FeedbackType": {
|
|
10426
10485
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10427
|
-
"lineNumber":
|
|
10486
|
+
"lineNumber": 153
|
|
10428
10487
|
},
|
|
10429
10488
|
"ResponseFeedback": {
|
|
10430
10489
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10431
|
-
"lineNumber":
|
|
10490
|
+
"lineNumber": 155
|
|
10432
10491
|
},
|
|
10433
10492
|
"AssistantResponse": {
|
|
10434
10493
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10435
|
-
"lineNumber":
|
|
10494
|
+
"lineNumber": 160
|
|
10436
10495
|
},
|
|
10437
10496
|
"FileAttachment": {
|
|
10438
10497
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10439
|
-
"lineNumber":
|
|
10498
|
+
"lineNumber": 169
|
|
10440
10499
|
},
|
|
10441
10500
|
"UploadedFileMetadata": {
|
|
10442
10501
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10443
|
-
"lineNumber":
|
|
10502
|
+
"lineNumber": 182
|
|
10444
10503
|
},
|
|
10445
10504
|
"FileUploadCallbacks": {
|
|
10446
10505
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10447
|
-
"lineNumber":
|
|
10506
|
+
"lineNumber": 190
|
|
10448
10507
|
},
|
|
10449
10508
|
"FileUploadHandler": {
|
|
10450
10509
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10451
|
-
"lineNumber":
|
|
10510
|
+
"lineNumber": 197
|
|
10452
10511
|
},
|
|
10453
10512
|
"FileRemoveCallbacks": {
|
|
10454
10513
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10455
|
-
"lineNumber":
|
|
10514
|
+
"lineNumber": 199
|
|
10456
10515
|
},
|
|
10457
10516
|
"ForgeAiChatbotFileSelectEventData": {
|
|
10458
10517
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10459
|
-
"lineNumber":
|
|
10518
|
+
"lineNumber": 208
|
|
10460
10519
|
},
|
|
10461
10520
|
"MessageItem": {
|
|
10462
10521
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10463
|
-
"lineNumber":
|
|
10522
|
+
"lineNumber": 221
|
|
10464
10523
|
},
|
|
10465
10524
|
"ThreadState": {
|
|
10466
10525
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10467
|
-
"lineNumber":
|
|
10468
|
-
},
|
|
10469
|
-
"AiConfirmationPromptComponent": {
|
|
10470
|
-
"path": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts",
|
|
10471
|
-
"lineNumber": 27
|
|
10526
|
+
"lineNumber": 226
|
|
10472
10527
|
},
|
|
10473
10528
|
"AiDialogComponent": {
|
|
10474
10529
|
"path": "src/lib/ai-dialog/ai-dialog.ts",
|
|
@@ -10542,14 +10597,14 @@
|
|
|
10542
10597
|
"path": "src/lib/ai-empty-state/ai-empty-state.ts",
|
|
10543
10598
|
"lineNumber": 23
|
|
10544
10599
|
},
|
|
10545
|
-
"AiErrorMessageComponent": {
|
|
10546
|
-
"path": "src/lib/ai-error-message/ai-error-message.ts",
|
|
10547
|
-
"lineNumber": 22
|
|
10548
|
-
},
|
|
10549
10600
|
"AiEventStreamViewerComponent": {
|
|
10550
10601
|
"path": "src/lib/ai-event-stream-viewer/ai-event-stream-viewer.ts",
|
|
10551
10602
|
"lineNumber": 21
|
|
10552
10603
|
},
|
|
10604
|
+
"AiErrorMessageComponent": {
|
|
10605
|
+
"path": "src/lib/ai-error-message/ai-error-message.ts",
|
|
10606
|
+
"lineNumber": 22
|
|
10607
|
+
},
|
|
10553
10608
|
"AiFabComponent": {
|
|
10554
10609
|
"path": "src/lib/ai-fab/ai-fab.ts",
|
|
10555
10610
|
"lineNumber": 22
|
|
@@ -10594,7 +10649,7 @@
|
|
|
10594
10649
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
10595
10650
|
"lineNumber": 37
|
|
10596
10651
|
},
|
|
10597
|
-
"
|
|
10652
|
+
"ForgeAiMessageThreadResendEventData": {
|
|
10598
10653
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
10599
10654
|
"lineNumber": 41
|
|
10600
10655
|
},
|
|
@@ -10646,6 +10701,22 @@
|
|
|
10646
10701
|
"path": "src/lib/ai-response-message/ai-response-message.ts",
|
|
10647
10702
|
"lineNumber": 19
|
|
10648
10703
|
},
|
|
10704
|
+
"ForgeAiResponseMessageToolbarActionEventData": {
|
|
10705
|
+
"path": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts",
|
|
10706
|
+
"lineNumber": 23
|
|
10707
|
+
},
|
|
10708
|
+
"ForgeAiResponseMessageToolbarFeedbackEventData": {
|
|
10709
|
+
"path": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts",
|
|
10710
|
+
"lineNumber": 27
|
|
10711
|
+
},
|
|
10712
|
+
"AiResponseMessageToolbarAction": {
|
|
10713
|
+
"path": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts",
|
|
10714
|
+
"lineNumber": 32
|
|
10715
|
+
},
|
|
10716
|
+
"AiResponseMessageToolbarComponent": {
|
|
10717
|
+
"path": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts",
|
|
10718
|
+
"lineNumber": 43
|
|
10719
|
+
},
|
|
10649
10720
|
"AiSidebarComponent": {
|
|
10650
10721
|
"path": "src/lib/ai-sidebar/ai-sidebar.ts",
|
|
10651
10722
|
"lineNumber": 28
|
|
@@ -10654,6 +10725,10 @@
|
|
|
10654
10725
|
"path": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts",
|
|
10655
10726
|
"lineNumber": 42
|
|
10656
10727
|
},
|
|
10728
|
+
"AiSlashCommandMenuComponent": {
|
|
10729
|
+
"path": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts",
|
|
10730
|
+
"lineNumber": 32
|
|
10731
|
+
},
|
|
10657
10732
|
"SpinnerSize": {
|
|
10658
10733
|
"path": "src/lib/ai-spinner/ai-spinner.ts",
|
|
10659
10734
|
"lineNumber": 14
|
|
@@ -10662,9 +10737,21 @@
|
|
|
10662
10737
|
"path": "src/lib/ai-spinner/ai-spinner.ts",
|
|
10663
10738
|
"lineNumber": 27
|
|
10664
10739
|
},
|
|
10665
|
-
"
|
|
10666
|
-
"path": "src/lib/ai-
|
|
10667
|
-
"lineNumber":
|
|
10740
|
+
"Suggestion": {
|
|
10741
|
+
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
10742
|
+
"lineNumber": 20
|
|
10743
|
+
},
|
|
10744
|
+
"ForgeAiSuggestionsEventData": {
|
|
10745
|
+
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
10746
|
+
"lineNumber": 25
|
|
10747
|
+
},
|
|
10748
|
+
"AiSuggestionsVariant": {
|
|
10749
|
+
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
10750
|
+
"lineNumber": 30
|
|
10751
|
+
},
|
|
10752
|
+
"AiSuggestionsComponent": {
|
|
10753
|
+
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
10754
|
+
"lineNumber": 44
|
|
10668
10755
|
},
|
|
10669
10756
|
"AiThinkingIndicatorComponent": {
|
|
10670
10757
|
"path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
|
|
@@ -10682,37 +10769,25 @@
|
|
|
10682
10769
|
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
10683
10770
|
"lineNumber": 46
|
|
10684
10771
|
},
|
|
10685
|
-
"Suggestion": {
|
|
10686
|
-
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
10687
|
-
"lineNumber": 20
|
|
10688
|
-
},
|
|
10689
|
-
"ForgeAiSuggestionsEventData": {
|
|
10690
|
-
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
10691
|
-
"lineNumber": 25
|
|
10692
|
-
},
|
|
10693
|
-
"AiSuggestionsVariant": {
|
|
10694
|
-
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
10695
|
-
"lineNumber": 30
|
|
10696
|
-
},
|
|
10697
|
-
"AiSuggestionsComponent": {
|
|
10698
|
-
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
10699
|
-
"lineNumber": 44
|
|
10700
|
-
},
|
|
10701
10772
|
"ForgeAiUserMessageCopyEventData": {
|
|
10702
10773
|
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
10703
|
-
"lineNumber":
|
|
10774
|
+
"lineNumber": 20
|
|
10704
10775
|
},
|
|
10705
10776
|
"ForgeAiUserMessageResendEventData": {
|
|
10706
10777
|
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
10707
|
-
"lineNumber":
|
|
10778
|
+
"lineNumber": 24
|
|
10708
10779
|
},
|
|
10709
10780
|
"ForgeAiUserMessageEditEventData": {
|
|
10710
10781
|
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
10711
|
-
"lineNumber":
|
|
10782
|
+
"lineNumber": 28
|
|
10712
10783
|
},
|
|
10713
10784
|
"AiUserMessageComponent": {
|
|
10714
10785
|
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
10715
|
-
"lineNumber":
|
|
10786
|
+
"lineNumber": 42
|
|
10787
|
+
},
|
|
10788
|
+
"AiUserMessageToolbarComponent": {
|
|
10789
|
+
"path": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts",
|
|
10790
|
+
"lineNumber": 31
|
|
10716
10791
|
},
|
|
10717
10792
|
"SpeechRecognitionAlternative": {
|
|
10718
10793
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
@@ -10758,10 +10833,6 @@
|
|
|
10758
10833
|
"path": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts",
|
|
10759
10834
|
"lineNumber": 18
|
|
10760
10835
|
},
|
|
10761
|
-
"ThoughtImageComponent": {
|
|
10762
|
-
"path": "src/lib/ai-chain-of-thought/thought-image/thought-image.ts",
|
|
10763
|
-
"lineNumber": 19
|
|
10764
|
-
},
|
|
10765
10836
|
"Source": {
|
|
10766
10837
|
"path": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts",
|
|
10767
10838
|
"lineNumber": 14
|
|
@@ -10770,6 +10841,10 @@
|
|
|
10770
10841
|
"path": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts",
|
|
10771
10842
|
"lineNumber": 24
|
|
10772
10843
|
},
|
|
10844
|
+
"ThoughtImageComponent": {
|
|
10845
|
+
"path": "src/lib/ai-chain-of-thought/thought-image/thought-image.ts",
|
|
10846
|
+
"lineNumber": 19
|
|
10847
|
+
},
|
|
10773
10848
|
"PromptButtonComponent": {
|
|
10774
10849
|
"path": "src/lib/ai-prompt/prompt-button/prompt-button.ts",
|
|
10775
10850
|
"lineNumber": 17
|
|
@@ -10778,18 +10853,6 @@
|
|
|
10778
10853
|
"path": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts",
|
|
10779
10854
|
"lineNumber": 17
|
|
10780
10855
|
},
|
|
10781
|
-
"OverlayPlacement": {
|
|
10782
|
-
"path": "src/lib/core/overlay/overlay.ts",
|
|
10783
|
-
"lineNumber": 31
|
|
10784
|
-
},
|
|
10785
|
-
"OverlayOffset": {
|
|
10786
|
-
"path": "src/lib/core/overlay/overlay.ts",
|
|
10787
|
-
"lineNumber": 33
|
|
10788
|
-
},
|
|
10789
|
-
"ForgeAiOverlayComponent": {
|
|
10790
|
-
"path": "src/lib/core/overlay/overlay.ts",
|
|
10791
|
-
"lineNumber": 40
|
|
10792
|
-
},
|
|
10793
10856
|
"TableData": {
|
|
10794
10857
|
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
10795
10858
|
"lineNumber": 16
|
|
@@ -10798,6 +10861,10 @@
|
|
|
10798
10861
|
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
10799
10862
|
"lineNumber": 32
|
|
10800
10863
|
},
|
|
10864
|
+
"AiPaginator": {
|
|
10865
|
+
"path": "src/lib/tools/ai-paginator/ai-paginator.ts",
|
|
10866
|
+
"lineNumber": 13
|
|
10867
|
+
},
|
|
10801
10868
|
"PopoverToggleEventData": {
|
|
10802
10869
|
"path": "src/lib/core/popover/popover.ts",
|
|
10803
10870
|
"lineNumber": 18
|
|
@@ -10814,6 +10881,18 @@
|
|
|
10814
10881
|
"path": "src/lib/core/popover/popover.ts",
|
|
10815
10882
|
"lineNumber": 37
|
|
10816
10883
|
},
|
|
10884
|
+
"OverlayPlacement": {
|
|
10885
|
+
"path": "src/lib/core/overlay/overlay.ts",
|
|
10886
|
+
"lineNumber": 31
|
|
10887
|
+
},
|
|
10888
|
+
"OverlayOffset": {
|
|
10889
|
+
"path": "src/lib/core/overlay/overlay.ts",
|
|
10890
|
+
"lineNumber": 33
|
|
10891
|
+
},
|
|
10892
|
+
"ForgeAiOverlayComponent": {
|
|
10893
|
+
"path": "src/lib/core/overlay/overlay.ts",
|
|
10894
|
+
"lineNumber": 40
|
|
10895
|
+
},
|
|
10817
10896
|
"TooltipToggleEventDetail": {
|
|
10818
10897
|
"path": "src/lib/core/tooltip/tooltip.ts",
|
|
10819
10898
|
"lineNumber": 20
|
|
@@ -10829,18 +10908,6 @@
|
|
|
10829
10908
|
"ForgeAiTooltipComponent": {
|
|
10830
10909
|
"path": "src/lib/core/tooltip/tooltip.ts",
|
|
10831
10910
|
"lineNumber": 44
|
|
10832
|
-
},
|
|
10833
|
-
"ConfirmActionToolArgs": {
|
|
10834
|
-
"path": "src/lib/tools/ai-confirm-tool-call/ai-confirm-tool-call-definition.ts",
|
|
10835
|
-
"lineNumber": 5
|
|
10836
|
-
},
|
|
10837
|
-
"ConfirmActionToolResult": {
|
|
10838
|
-
"path": "src/lib/tools/ai-confirm-tool-call/ai-confirm-tool-call-definition.ts",
|
|
10839
|
-
"lineNumber": 9
|
|
10840
|
-
},
|
|
10841
|
-
"AiPaginator": {
|
|
10842
|
-
"path": "src/lib/tools/ai-paginator/ai-paginator.ts",
|
|
10843
|
-
"lineNumber": 13
|
|
10844
10911
|
}
|
|
10845
10912
|
}
|
|
10846
10913
|
}
|