@tylertech/forge-ai 0.9.1 → 0.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/custom-elements.json +896 -802
  2. package/dist/ai-agent-selector/ai-agent-selector.scss.mjs +1 -1
  3. package/dist/ai-assistant-response/ai-assistant-response.mjs +43 -6
  4. package/dist/ai-chat-header/ai-chat-header.scss.mjs +1 -1
  5. package/dist/ai-chatbot/ag-ui-adapter.mjs +4 -8
  6. package/dist/ai-chatbot/ai-chatbot.mjs +11 -8
  7. package/dist/ai-chatbot/ai-chatbot.scss.mjs +1 -1
  8. package/dist/ai-chatbot/message-state-controller.mjs +17 -13
  9. package/dist/ai-chatbot/types.d.ts +2 -0
  10. package/dist/ai-embedded-chat/ai-embedded-chat.mjs +0 -1
  11. package/dist/ai-empty-state/ai-empty-state.mjs +5 -5
  12. package/dist/ai-empty-state/ai-empty-state.scss.mjs +1 -1
  13. package/dist/ai-file-picker/ai-file-picker.mjs +2 -1
  14. package/dist/ai-file-picker/ai-file-picker.scss.mjs +1 -1
  15. package/dist/ai-message-thread/ai-message-thread.mjs +13 -5
  16. package/dist/ai-message-thread/ai-message-thread.scss.mjs +1 -1
  17. package/dist/ai-prompt/ai-prompt.d.ts +0 -1
  18. package/dist/ai-prompt/ai-prompt.mjs +84 -70
  19. package/dist/ai-prompt/ai-prompt.scss.mjs +1 -1
  20. package/dist/ai-suggestions/ai-suggestions.mjs +24 -15
  21. package/dist/ai-suggestions/ai-suggestions.scss.mjs +901 -1
  22. package/dist/ai-tool-call-indicator/ai-tool-call-indicator.d.ts +24 -0
  23. package/dist/ai-tool-call-indicator/ai-tool-call-indicator.mjs +87 -0
  24. package/dist/ai-tool-call-indicator/ai-tool-call-indicator.scss.mjs +4 -0
  25. package/dist/ai-tool-call-indicator/index.d.ts +1 -0
  26. package/dist/ai-tool-call-indicator/index.mjs +5 -0
  27. package/dist/ai-voice-input/ai-voice-input.mjs +2 -1
  28. package/dist/ai-voice-input/ai-voice-input.scss.mjs +1 -1
  29. package/dist/index.d.ts +1 -0
  30. package/dist/index.mjs +3 -0
  31. package/dist/tools/ai-data-table/ai-data-table.d.ts +1 -0
  32. package/dist/tools/ai-data-table/ai-data-table.mjs +13 -1
  33. package/dist/tools/ai-data-table/ai-data-table.scss.mjs +1 -1
  34. package/package.json +1 -1
@@ -138,77 +138,6 @@
138
138
  }
139
139
  ]
140
140
  },
141
- {
142
- "kind": "javascript-module",
143
- "path": "src/lib/ai-artifact/ai-artifact.ts",
144
- "declarations": [
145
- {
146
- "kind": "variable",
147
- "name": "AiArtifactComponentTagName",
148
- "type": {
149
- "text": "keyof HTMLElementTagNameMap"
150
- },
151
- "default": "'forge-ai-artifact'"
152
- },
153
- {
154
- "kind": "class",
155
- "description": "",
156
- "name": "AiArtifactComponent",
157
- "cssProperties": [
158
- {
159
- "description": "Surface color override for the toolbar (defaults to transparent)",
160
- "name": "--forge-theme-surface"
161
- }
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": [],
178
- "superclass": {
179
- "name": "LitElement",
180
- "package": "lit"
181
- },
182
- "tagName": "forge-ai-artifact",
183
- "customElement": true
184
- }
185
- ],
186
- "exports": [
187
- {
188
- "kind": "js",
189
- "name": "AiArtifactComponentTagName",
190
- "declaration": {
191
- "name": "AiArtifactComponentTagName",
192
- "module": "src/lib/ai-artifact/ai-artifact.ts"
193
- }
194
- },
195
- {
196
- "kind": "js",
197
- "name": "AiArtifactComponent",
198
- "declaration": {
199
- "name": "AiArtifactComponent",
200
- "module": "src/lib/ai-artifact/ai-artifact.ts"
201
- }
202
- },
203
- {
204
- "kind": "custom-element-definition",
205
- "declaration": {
206
- "name": "AiArtifactComponent",
207
- "module": "src/lib/ai-artifact/ai-artifact.ts"
208
- }
209
- }
210
- ]
211
- },
212
141
  {
213
142
  "kind": "javascript-module",
214
143
  "path": "src/lib/ai-agent-selector/ai-agent-selector.ts",
@@ -342,6 +271,77 @@
342
271
  }
343
272
  ]
344
273
  },
274
+ {
275
+ "kind": "javascript-module",
276
+ "path": "src/lib/ai-artifact/ai-artifact.ts",
277
+ "declarations": [
278
+ {
279
+ "kind": "variable",
280
+ "name": "AiArtifactComponentTagName",
281
+ "type": {
282
+ "text": "keyof HTMLElementTagNameMap"
283
+ },
284
+ "default": "'forge-ai-artifact'"
285
+ },
286
+ {
287
+ "kind": "class",
288
+ "description": "",
289
+ "name": "AiArtifactComponent",
290
+ "cssProperties": [
291
+ {
292
+ "description": "Surface color override for the toolbar (defaults to transparent)",
293
+ "name": "--forge-theme-surface"
294
+ }
295
+ ],
296
+ "slots": [
297
+ {
298
+ "description": "Content for the start (left) side of the toolbar, typically used for titles or headings",
299
+ "name": "start"
300
+ },
301
+ {
302
+ "description": "Action buttons for the end (right) side of the toolbar",
303
+ "name": "actions"
304
+ },
305
+ {
306
+ "description": "Main content area below the toolbar",
307
+ "name": ""
308
+ }
309
+ ],
310
+ "members": [],
311
+ "superclass": {
312
+ "name": "LitElement",
313
+ "package": "lit"
314
+ },
315
+ "tagName": "forge-ai-artifact",
316
+ "customElement": true
317
+ }
318
+ ],
319
+ "exports": [
320
+ {
321
+ "kind": "js",
322
+ "name": "AiArtifactComponentTagName",
323
+ "declaration": {
324
+ "name": "AiArtifactComponentTagName",
325
+ "module": "src/lib/ai-artifact/ai-artifact.ts"
326
+ }
327
+ },
328
+ {
329
+ "kind": "js",
330
+ "name": "AiArtifactComponent",
331
+ "declaration": {
332
+ "name": "AiArtifactComponent",
333
+ "module": "src/lib/ai-artifact/ai-artifact.ts"
334
+ }
335
+ },
336
+ {
337
+ "kind": "custom-element-definition",
338
+ "declaration": {
339
+ "name": "AiArtifactComponent",
340
+ "module": "src/lib/ai-artifact/ai-artifact.ts"
341
+ }
342
+ }
343
+ ]
344
+ },
345
345
  {
346
346
  "kind": "javascript-module",
347
347
  "path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
@@ -479,87 +479,6 @@
479
479
  }
480
480
  ]
481
481
  },
482
- {
483
- "kind": "javascript-module",
484
- "path": "src/lib/ai-button/ai-button.ts",
485
- "declarations": [
486
- {
487
- "kind": "variable",
488
- "name": "AiButtonComponentTagName",
489
- "type": {
490
- "text": "keyof HTMLElementTagNameMap"
491
- },
492
- "default": "'forge-ai-button'"
493
- },
494
- {
495
- "kind": "class",
496
- "description": "",
497
- "name": "AiButtonComponent",
498
- "slots": [
499
- {
500
- "description": "Default slot for button content",
501
- "name": ""
502
- }
503
- ],
504
- "members": [
505
- {
506
- "kind": "field",
507
- "name": "disabled",
508
- "type": {
509
- "text": "boolean"
510
- },
511
- "privacy": "public",
512
- "default": "false",
513
- "description": "Whether the button is disabled",
514
- "attribute": "disabled",
515
- "reflects": true
516
- }
517
- ],
518
- "attributes": [
519
- {
520
- "name": "disabled",
521
- "type": {
522
- "text": "boolean"
523
- },
524
- "default": "false",
525
- "description": "Whether the button is disabled",
526
- "fieldName": "disabled"
527
- }
528
- ],
529
- "superclass": {
530
- "name": "LitElement",
531
- "package": "lit"
532
- },
533
- "tagName": "forge-ai-button",
534
- "customElement": true
535
- }
536
- ],
537
- "exports": [
538
- {
539
- "kind": "js",
540
- "name": "AiButtonComponentTagName",
541
- "declaration": {
542
- "name": "AiButtonComponentTagName",
543
- "module": "src/lib/ai-button/ai-button.ts"
544
- }
545
- },
546
- {
547
- "kind": "js",
548
- "name": "AiButtonComponent",
549
- "declaration": {
550
- "name": "AiButtonComponent",
551
- "module": "src/lib/ai-button/ai-button.ts"
552
- }
553
- },
554
- {
555
- "kind": "custom-element-definition",
556
- "declaration": {
557
- "name": "AiButtonComponent",
558
- "module": "src/lib/ai-button/ai-button.ts"
559
- }
560
- }
561
- ]
562
- },
563
482
  {
564
483
  "kind": "javascript-module",
565
484
  "path": "src/lib/ai-attachment/ai-attachment.ts",
@@ -732,61 +651,142 @@
732
651
  },
733
652
  {
734
653
  "kind": "javascript-module",
735
- "path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
654
+ "path": "src/lib/ai-button/ai-button.ts",
736
655
  "declarations": [
737
656
  {
738
657
  "kind": "variable",
739
- "name": "AiChainOfThoughtComponentTagName",
658
+ "name": "AiButtonComponentTagName",
740
659
  "type": {
741
660
  "text": "keyof HTMLElementTagNameMap"
742
661
  },
743
- "default": "'forge-ai-chain-of-thought'"
662
+ "default": "'forge-ai-button'"
744
663
  },
745
664
  {
746
665
  "kind": "class",
747
666
  "description": "",
748
- "name": "AiChainOfThoughtComponent",
667
+ "name": "AiButtonComponent",
668
+ "slots": [
669
+ {
670
+ "description": "Default slot for button content",
671
+ "name": ""
672
+ }
673
+ ],
749
674
  "members": [
750
675
  {
751
676
  "kind": "field",
752
- "name": "expanded",
677
+ "name": "disabled",
753
678
  "type": {
754
679
  "text": "boolean"
755
680
  },
756
681
  "privacy": "public",
757
682
  "default": "false",
758
- "description": "Whether the chain of thought is expanded",
759
- "attribute": "expanded",
683
+ "description": "Whether the button is disabled",
684
+ "attribute": "disabled",
760
685
  "reflects": true
761
686
  }
762
687
  ],
763
688
  "attributes": [
764
689
  {
765
- "name": "expanded",
690
+ "name": "disabled",
766
691
  "type": {
767
692
  "text": "boolean"
768
693
  },
769
694
  "default": "false",
770
- "description": "Whether the chain of thought is expanded",
771
- "fieldName": "expanded"
695
+ "description": "Whether the button is disabled",
696
+ "fieldName": "disabled"
772
697
  }
773
698
  ],
774
699
  "superclass": {
775
700
  "name": "LitElement",
776
701
  "package": "lit"
777
702
  },
778
- "tagName": "forge-ai-chain-of-thought",
703
+ "tagName": "forge-ai-button",
779
704
  "customElement": true
780
705
  }
781
706
  ],
782
707
  "exports": [
783
708
  {
784
709
  "kind": "js",
785
- "name": "AiChainOfThoughtComponentTagName",
710
+ "name": "AiButtonComponentTagName",
786
711
  "declaration": {
787
- "name": "AiChainOfThoughtComponentTagName",
788
- "module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
789
- }
712
+ "name": "AiButtonComponentTagName",
713
+ "module": "src/lib/ai-button/ai-button.ts"
714
+ }
715
+ },
716
+ {
717
+ "kind": "js",
718
+ "name": "AiButtonComponent",
719
+ "declaration": {
720
+ "name": "AiButtonComponent",
721
+ "module": "src/lib/ai-button/ai-button.ts"
722
+ }
723
+ },
724
+ {
725
+ "kind": "custom-element-definition",
726
+ "declaration": {
727
+ "name": "AiButtonComponent",
728
+ "module": "src/lib/ai-button/ai-button.ts"
729
+ }
730
+ }
731
+ ]
732
+ },
733
+ {
734
+ "kind": "javascript-module",
735
+ "path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
736
+ "declarations": [
737
+ {
738
+ "kind": "variable",
739
+ "name": "AiChainOfThoughtComponentTagName",
740
+ "type": {
741
+ "text": "keyof HTMLElementTagNameMap"
742
+ },
743
+ "default": "'forge-ai-chain-of-thought'"
744
+ },
745
+ {
746
+ "kind": "class",
747
+ "description": "",
748
+ "name": "AiChainOfThoughtComponent",
749
+ "members": [
750
+ {
751
+ "kind": "field",
752
+ "name": "expanded",
753
+ "type": {
754
+ "text": "boolean"
755
+ },
756
+ "privacy": "public",
757
+ "default": "false",
758
+ "description": "Whether the chain of thought is expanded",
759
+ "attribute": "expanded",
760
+ "reflects": true
761
+ }
762
+ ],
763
+ "attributes": [
764
+ {
765
+ "name": "expanded",
766
+ "type": {
767
+ "text": "boolean"
768
+ },
769
+ "default": "false",
770
+ "description": "Whether the chain of thought is expanded",
771
+ "fieldName": "expanded"
772
+ }
773
+ ],
774
+ "superclass": {
775
+ "name": "LitElement",
776
+ "package": "lit"
777
+ },
778
+ "tagName": "forge-ai-chain-of-thought",
779
+ "customElement": true
780
+ }
781
+ ],
782
+ "exports": [
783
+ {
784
+ "kind": "js",
785
+ "name": "AiChainOfThoughtComponentTagName",
786
+ "declaration": {
787
+ "name": "AiChainOfThoughtComponentTagName",
788
+ "module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
789
+ }
790
790
  },
791
791
  {
792
792
  "kind": "js",
@@ -1228,149 +1228,6 @@
1228
1228
  }
1229
1229
  ]
1230
1230
  },
1231
- {
1232
- "kind": "javascript-module",
1233
- "path": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts",
1234
- "declarations": [
1235
- {
1236
- "kind": "variable",
1237
- "name": "AiConfirmationPromptComponentTagName",
1238
- "type": {
1239
- "text": "keyof HTMLElementTagNameMap"
1240
- },
1241
- "default": "'forge-ai-confirmation-prompt'"
1242
- },
1243
- {
1244
- "kind": "class",
1245
- "description": "",
1246
- "name": "AiConfirmationPromptComponent",
1247
- "members": [
1248
- {
1249
- "kind": "field",
1250
- "name": "text",
1251
- "type": {
1252
- "text": "string"
1253
- },
1254
- "privacy": "public",
1255
- "default": "''",
1256
- "attribute": "text"
1257
- },
1258
- {
1259
- "kind": "field",
1260
- "name": "confirmText",
1261
- "type": {
1262
- "text": "string"
1263
- },
1264
- "privacy": "public",
1265
- "default": "'Confirm'",
1266
- "attribute": "confirm-text"
1267
- },
1268
- {
1269
- "kind": "field",
1270
- "name": "denyText",
1271
- "type": {
1272
- "text": "string"
1273
- },
1274
- "privacy": "public",
1275
- "default": "'Deny'",
1276
- "attribute": "deny-text"
1277
- },
1278
- {
1279
- "kind": "field",
1280
- "name": "disabled",
1281
- "type": {
1282
- "text": "boolean"
1283
- },
1284
- "privacy": "public",
1285
- "default": "false",
1286
- "attribute": "disabled"
1287
- }
1288
- ],
1289
- "events": [
1290
- {
1291
- "type": {
1292
- "text": "CustomEvent<void>"
1293
- },
1294
- "description": "Fired when user confirms the prompt",
1295
- "name": "forge-ai-confirmation-prompt-confirm"
1296
- },
1297
- {
1298
- "type": {
1299
- "text": "CustomEvent<void>"
1300
- },
1301
- "description": "Fired when user denies the prompt",
1302
- "name": "forge-ai-confirmation-prompt-deny"
1303
- }
1304
- ],
1305
- "attributes": [
1306
- {
1307
- "name": "text",
1308
- "type": {
1309
- "text": "string"
1310
- },
1311
- "default": "''",
1312
- "fieldName": "text"
1313
- },
1314
- {
1315
- "name": "confirm-text",
1316
- "type": {
1317
- "text": "string"
1318
- },
1319
- "default": "'Confirm'",
1320
- "fieldName": "confirmText"
1321
- },
1322
- {
1323
- "name": "deny-text",
1324
- "type": {
1325
- "text": "string"
1326
- },
1327
- "default": "'Deny'",
1328
- "fieldName": "denyText"
1329
- },
1330
- {
1331
- "name": "disabled",
1332
- "type": {
1333
- "text": "boolean"
1334
- },
1335
- "default": "false",
1336
- "fieldName": "disabled"
1337
- }
1338
- ],
1339
- "superclass": {
1340
- "name": "LitElement",
1341
- "package": "lit"
1342
- },
1343
- "tagName": "forge-ai-confirmation-prompt",
1344
- "customElement": true,
1345
- "summary": "Displays a confirmation UI for requiring human approval."
1346
- }
1347
- ],
1348
- "exports": [
1349
- {
1350
- "kind": "js",
1351
- "name": "AiConfirmationPromptComponentTagName",
1352
- "declaration": {
1353
- "name": "AiConfirmationPromptComponentTagName",
1354
- "module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
1355
- }
1356
- },
1357
- {
1358
- "kind": "js",
1359
- "name": "AiConfirmationPromptComponent",
1360
- "declaration": {
1361
- "name": "AiConfirmationPromptComponent",
1362
- "module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
1363
- }
1364
- },
1365
- {
1366
- "kind": "custom-element-definition",
1367
- "declaration": {
1368
- "name": "AiConfirmationPromptComponent",
1369
- "module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
1370
- }
1371
- }
1372
- ]
1373
- },
1374
1231
  {
1375
1232
  "kind": "javascript-module",
1376
1233
  "path": "src/lib/ai-chatbot/ag-ui-adapter.ts",
@@ -4816,54 +4673,197 @@
4816
4673
  },
4817
4674
  {
4818
4675
  "kind": "javascript-module",
4819
- "path": "src/lib/ai-dialog/ai-dialog.ts",
4676
+ "path": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts",
4820
4677
  "declarations": [
4821
4678
  {
4822
4679
  "kind": "variable",
4823
- "name": "AiDialogComponentTagName",
4680
+ "name": "AiConfirmationPromptComponentTagName",
4824
4681
  "type": {
4825
4682
  "text": "keyof HTMLElementTagNameMap"
4826
4683
  },
4827
- "default": "'forge-ai-dialog'"
4684
+ "default": "'forge-ai-confirmation-prompt'"
4828
4685
  },
4829
4686
  {
4830
4687
  "kind": "class",
4831
4688
  "description": "",
4832
- "name": "AiDialogComponent",
4833
- "slots": [
4834
- {
4835
- "description": "Default slot for dialog content (typically ai-chat-interface)",
4836
- "name": ""
4837
- }
4838
- ],
4689
+ "name": "AiConfirmationPromptComponent",
4839
4690
  "members": [
4840
4691
  {
4841
4692
  "kind": "field",
4842
- "name": "open",
4693
+ "name": "text",
4843
4694
  "type": {
4844
- "text": "boolean"
4695
+ "text": "string"
4845
4696
  },
4846
4697
  "privacy": "public",
4847
- "default": "false",
4848
- "description": "Indicates whether the dialog is open.",
4849
- "attribute": "open"
4698
+ "default": "''",
4699
+ "attribute": "text"
4850
4700
  },
4851
4701
  {
4852
4702
  "kind": "field",
4853
- "name": "expanded",
4703
+ "name": "confirmText",
4854
4704
  "type": {
4855
- "text": "boolean"
4705
+ "text": "string"
4856
4706
  },
4857
4707
  "privacy": "public",
4858
- "default": "false",
4859
- "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.",
4860
- "attribute": "expanded"
4708
+ "default": "'Confirm'",
4709
+ "attribute": "confirm-text"
4861
4710
  },
4862
4711
  {
4863
4712
  "kind": "field",
4864
- "name": "isFullscreen",
4713
+ "name": "denyText",
4865
4714
  "type": {
4866
- "text": "boolean"
4715
+ "text": "string"
4716
+ },
4717
+ "privacy": "public",
4718
+ "default": "'Deny'",
4719
+ "attribute": "deny-text"
4720
+ },
4721
+ {
4722
+ "kind": "field",
4723
+ "name": "disabled",
4724
+ "type": {
4725
+ "text": "boolean"
4726
+ },
4727
+ "privacy": "public",
4728
+ "default": "false",
4729
+ "attribute": "disabled"
4730
+ }
4731
+ ],
4732
+ "events": [
4733
+ {
4734
+ "type": {
4735
+ "text": "CustomEvent<void>"
4736
+ },
4737
+ "description": "Fired when user confirms the prompt",
4738
+ "name": "forge-ai-confirmation-prompt-confirm"
4739
+ },
4740
+ {
4741
+ "type": {
4742
+ "text": "CustomEvent<void>"
4743
+ },
4744
+ "description": "Fired when user denies the prompt",
4745
+ "name": "forge-ai-confirmation-prompt-deny"
4746
+ }
4747
+ ],
4748
+ "attributes": [
4749
+ {
4750
+ "name": "text",
4751
+ "type": {
4752
+ "text": "string"
4753
+ },
4754
+ "default": "''",
4755
+ "fieldName": "text"
4756
+ },
4757
+ {
4758
+ "name": "confirm-text",
4759
+ "type": {
4760
+ "text": "string"
4761
+ },
4762
+ "default": "'Confirm'",
4763
+ "fieldName": "confirmText"
4764
+ },
4765
+ {
4766
+ "name": "deny-text",
4767
+ "type": {
4768
+ "text": "string"
4769
+ },
4770
+ "default": "'Deny'",
4771
+ "fieldName": "denyText"
4772
+ },
4773
+ {
4774
+ "name": "disabled",
4775
+ "type": {
4776
+ "text": "boolean"
4777
+ },
4778
+ "default": "false",
4779
+ "fieldName": "disabled"
4780
+ }
4781
+ ],
4782
+ "superclass": {
4783
+ "name": "LitElement",
4784
+ "package": "lit"
4785
+ },
4786
+ "tagName": "forge-ai-confirmation-prompt",
4787
+ "customElement": true,
4788
+ "summary": "Displays a confirmation UI for requiring human approval."
4789
+ }
4790
+ ],
4791
+ "exports": [
4792
+ {
4793
+ "kind": "js",
4794
+ "name": "AiConfirmationPromptComponentTagName",
4795
+ "declaration": {
4796
+ "name": "AiConfirmationPromptComponentTagName",
4797
+ "module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
4798
+ }
4799
+ },
4800
+ {
4801
+ "kind": "js",
4802
+ "name": "AiConfirmationPromptComponent",
4803
+ "declaration": {
4804
+ "name": "AiConfirmationPromptComponent",
4805
+ "module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
4806
+ }
4807
+ },
4808
+ {
4809
+ "kind": "custom-element-definition",
4810
+ "declaration": {
4811
+ "name": "AiConfirmationPromptComponent",
4812
+ "module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
4813
+ }
4814
+ }
4815
+ ]
4816
+ },
4817
+ {
4818
+ "kind": "javascript-module",
4819
+ "path": "src/lib/ai-dialog/ai-dialog.ts",
4820
+ "declarations": [
4821
+ {
4822
+ "kind": "variable",
4823
+ "name": "AiDialogComponentTagName",
4824
+ "type": {
4825
+ "text": "keyof HTMLElementTagNameMap"
4826
+ },
4827
+ "default": "'forge-ai-dialog'"
4828
+ },
4829
+ {
4830
+ "kind": "class",
4831
+ "description": "",
4832
+ "name": "AiDialogComponent",
4833
+ "slots": [
4834
+ {
4835
+ "description": "Default slot for dialog content (typically ai-chat-interface)",
4836
+ "name": ""
4837
+ }
4838
+ ],
4839
+ "members": [
4840
+ {
4841
+ "kind": "field",
4842
+ "name": "open",
4843
+ "type": {
4844
+ "text": "boolean"
4845
+ },
4846
+ "privacy": "public",
4847
+ "default": "false",
4848
+ "description": "Indicates whether the dialog is open.",
4849
+ "attribute": "open"
4850
+ },
4851
+ {
4852
+ "kind": "field",
4853
+ "name": "expanded",
4854
+ "type": {
4855
+ "text": "boolean"
4856
+ },
4857
+ "privacy": "public",
4858
+ "default": "false",
4859
+ "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.",
4860
+ "attribute": "expanded"
4861
+ },
4862
+ {
4863
+ "kind": "field",
4864
+ "name": "isFullscreen",
4865
+ "type": {
4866
+ "text": "boolean"
4867
4867
  },
4868
4868
  "privacy": "public",
4869
4869
  "description": "Gets the current fullscreen state (readonly)",
@@ -7201,81 +7201,6 @@
7201
7201
  }
7202
7202
  ]
7203
7203
  },
7204
- {
7205
- "kind": "javascript-module",
7206
- "path": "src/lib/ai-reasoning/ai-reasoning.ts",
7207
- "declarations": [
7208
- {
7209
- "kind": "variable",
7210
- "name": "AiReasoningComponentTagName",
7211
- "type": {
7212
- "text": "keyof HTMLElementTagNameMap"
7213
- },
7214
- "default": "'forge-ai-reasoning'"
7215
- },
7216
- {
7217
- "kind": "class",
7218
- "description": "",
7219
- "name": "AiReasoningComponent",
7220
- "members": [
7221
- {
7222
- "kind": "field",
7223
- "name": "expanded",
7224
- "type": {
7225
- "text": "boolean"
7226
- },
7227
- "privacy": "public",
7228
- "default": "false",
7229
- "description": "Whether the reasoning is expanded",
7230
- "attribute": "expanded",
7231
- "reflects": true
7232
- }
7233
- ],
7234
- "attributes": [
7235
- {
7236
- "name": "expanded",
7237
- "type": {
7238
- "text": "boolean"
7239
- },
7240
- "default": "false",
7241
- "description": "Whether the reasoning is expanded",
7242
- "fieldName": "expanded"
7243
- }
7244
- ],
7245
- "superclass": {
7246
- "name": "LitElement",
7247
- "package": "lit"
7248
- },
7249
- "tagName": "forge-ai-reasoning",
7250
- "customElement": true
7251
- }
7252
- ],
7253
- "exports": [
7254
- {
7255
- "kind": "js",
7256
- "name": "AiReasoningComponentTagName",
7257
- "declaration": {
7258
- "name": "AiReasoningComponentTagName",
7259
- "module": "src/lib/ai-reasoning/ai-reasoning.ts"
7260
- }
7261
- },
7262
- {
7263
- "kind": "js",
7264
- "name": "AiReasoningComponent",
7265
- "declaration": {
7266
- "name": "AiReasoningComponent",
7267
- "module": "src/lib/ai-reasoning/ai-reasoning.ts"
7268
- }
7269
- },
7270
- {
7271
- "kind": "custom-element-definition",
7272
- "declaration": {
7273
- "name": "AiReasoningComponent",
7274
- "module": "src/lib/ai-reasoning/ai-reasoning.ts"
7275
- }
7276
- }
7277
- ]
7278
- },
7279
7204
  {
7280
7205
  "kind": "javascript-module",
7281
7206
  "path": "src/lib/ai-prompt/ai-prompt.ts",
@@ -7647,52 +7572,75 @@
7647
7572
  },
7648
7573
  {
7649
7574
  "kind": "javascript-module",
7650
- "path": "src/lib/ai-response-message/ai-response-message.ts",
7575
+ "path": "src/lib/ai-reasoning/ai-reasoning.ts",
7651
7576
  "declarations": [
7652
7577
  {
7653
7578
  "kind": "variable",
7654
- "name": "AiResponseMessageComponentTagName",
7579
+ "name": "AiReasoningComponentTagName",
7655
7580
  "type": {
7656
7581
  "text": "keyof HTMLElementTagNameMap"
7657
7582
  },
7658
- "default": "'forge-ai-response-message'"
7583
+ "default": "'forge-ai-reasoning'"
7659
7584
  },
7660
7585
  {
7661
7586
  "kind": "class",
7662
7587
  "description": "",
7663
- "name": "AiResponseMessageComponent",
7664
- "members": [],
7665
- "superclass": {
7666
- "name": "LitElement",
7667
- "package": "lit"
7668
- },
7669
- "tagName": "forge-ai-response-message",
7670
- "customElement": true,
7671
- "summary": "A simple wrapper component for rendering assistant response message content."
7672
- }
7673
- ],
7674
- "exports": [
7675
- {
7676
- "kind": "js",
7677
- "name": "AiResponseMessageComponentTagName",
7678
- "declaration": {
7679
- "name": "AiResponseMessageComponentTagName",
7680
- "module": "src/lib/ai-response-message/ai-response-message.ts"
7681
- }
7682
- },
7683
- {
7684
- "kind": "js",
7685
- "name": "AiResponseMessageComponent",
7588
+ "name": "AiReasoningComponent",
7589
+ "members": [
7590
+ {
7591
+ "kind": "field",
7592
+ "name": "expanded",
7593
+ "type": {
7594
+ "text": "boolean"
7595
+ },
7596
+ "privacy": "public",
7597
+ "default": "false",
7598
+ "description": "Whether the reasoning is expanded",
7599
+ "attribute": "expanded",
7600
+ "reflects": true
7601
+ }
7602
+ ],
7603
+ "attributes": [
7604
+ {
7605
+ "name": "expanded",
7606
+ "type": {
7607
+ "text": "boolean"
7608
+ },
7609
+ "default": "false",
7610
+ "description": "Whether the reasoning is expanded",
7611
+ "fieldName": "expanded"
7612
+ }
7613
+ ],
7614
+ "superclass": {
7615
+ "name": "LitElement",
7616
+ "package": "lit"
7617
+ },
7618
+ "tagName": "forge-ai-reasoning",
7619
+ "customElement": true
7620
+ }
7621
+ ],
7622
+ "exports": [
7623
+ {
7624
+ "kind": "js",
7625
+ "name": "AiReasoningComponentTagName",
7686
7626
  "declaration": {
7687
- "name": "AiResponseMessageComponent",
7688
- "module": "src/lib/ai-response-message/ai-response-message.ts"
7627
+ "name": "AiReasoningComponentTagName",
7628
+ "module": "src/lib/ai-reasoning/ai-reasoning.ts"
7629
+ }
7630
+ },
7631
+ {
7632
+ "kind": "js",
7633
+ "name": "AiReasoningComponent",
7634
+ "declaration": {
7635
+ "name": "AiReasoningComponent",
7636
+ "module": "src/lib/ai-reasoning/ai-reasoning.ts"
7689
7637
  }
7690
7638
  },
7691
7639
  {
7692
7640
  "kind": "custom-element-definition",
7693
7641
  "declaration": {
7694
- "name": "AiResponseMessageComponent",
7695
- "module": "src/lib/ai-response-message/ai-response-message.ts"
7642
+ "name": "AiReasoningComponent",
7643
+ "module": "src/lib/ai-reasoning/ai-reasoning.ts"
7696
7644
  }
7697
7645
  }
7698
7646
  ]
@@ -7812,6 +7760,58 @@
7812
7760
  }
7813
7761
  ]
7814
7762
  },
7763
+ {
7764
+ "kind": "javascript-module",
7765
+ "path": "src/lib/ai-response-message/ai-response-message.ts",
7766
+ "declarations": [
7767
+ {
7768
+ "kind": "variable",
7769
+ "name": "AiResponseMessageComponentTagName",
7770
+ "type": {
7771
+ "text": "keyof HTMLElementTagNameMap"
7772
+ },
7773
+ "default": "'forge-ai-response-message'"
7774
+ },
7775
+ {
7776
+ "kind": "class",
7777
+ "description": "",
7778
+ "name": "AiResponseMessageComponent",
7779
+ "members": [],
7780
+ "superclass": {
7781
+ "name": "LitElement",
7782
+ "package": "lit"
7783
+ },
7784
+ "tagName": "forge-ai-response-message",
7785
+ "customElement": true,
7786
+ "summary": "A simple wrapper component for rendering assistant response message content."
7787
+ }
7788
+ ],
7789
+ "exports": [
7790
+ {
7791
+ "kind": "js",
7792
+ "name": "AiResponseMessageComponentTagName",
7793
+ "declaration": {
7794
+ "name": "AiResponseMessageComponentTagName",
7795
+ "module": "src/lib/ai-response-message/ai-response-message.ts"
7796
+ }
7797
+ },
7798
+ {
7799
+ "kind": "js",
7800
+ "name": "AiResponseMessageComponent",
7801
+ "declaration": {
7802
+ "name": "AiResponseMessageComponent",
7803
+ "module": "src/lib/ai-response-message/ai-response-message.ts"
7804
+ }
7805
+ },
7806
+ {
7807
+ "kind": "custom-element-definition",
7808
+ "declaration": {
7809
+ "name": "AiResponseMessageComponent",
7810
+ "module": "src/lib/ai-response-message/ai-response-message.ts"
7811
+ }
7812
+ }
7813
+ ]
7814
+ },
7815
7815
  {
7816
7816
  "kind": "javascript-module",
7817
7817
  "path": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts",
@@ -8463,6 +8463,119 @@
8463
8463
  }
8464
8464
  ]
8465
8465
  },
8466
+ {
8467
+ "kind": "javascript-module",
8468
+ "path": "src/lib/ai-suggestions/ai-suggestions.ts",
8469
+ "declarations": [
8470
+ {
8471
+ "kind": "variable",
8472
+ "name": "AiSuggestionsComponentTagName",
8473
+ "type": {
8474
+ "text": "keyof HTMLElementTagNameMap"
8475
+ },
8476
+ "default": "'forge-ai-suggestions'"
8477
+ },
8478
+ {
8479
+ "kind": "class",
8480
+ "description": "",
8481
+ "name": "AiSuggestionsComponent",
8482
+ "cssProperties": [
8483
+ {
8484
+ "description": "The maximum inline size of the suggestions container.",
8485
+ "name": "--forge-ai-suggestions-inline-size"
8486
+ },
8487
+ {
8488
+ "description": "The maximum width of the suggestion buttons in inline layout.",
8489
+ "name": "--forge-ai-suggestion-max-width"
8490
+ }
8491
+ ],
8492
+ "members": [
8493
+ {
8494
+ "kind": "field",
8495
+ "name": "suggestions",
8496
+ "type": {
8497
+ "text": "Suggestion[]"
8498
+ },
8499
+ "privacy": "public",
8500
+ "default": "[]",
8501
+ "description": "Array of suggestion objects to display"
8502
+ },
8503
+ {
8504
+ "kind": "field",
8505
+ "name": "variant",
8506
+ "type": {
8507
+ "text": "AiSuggestionsVariant"
8508
+ },
8509
+ "privacy": "public",
8510
+ "default": "'inline'",
8511
+ "description": "Display variant for suggestions layout",
8512
+ "attribute": "variant"
8513
+ }
8514
+ ],
8515
+ "events": [
8516
+ {
8517
+ "type": {
8518
+ "text": "CustomEvent<ForgeAiSuggestionsEventData>"
8519
+ },
8520
+ "description": "Fired when a suggestion is selected.",
8521
+ "name": "forge-ai-suggestions-select"
8522
+ }
8523
+ ],
8524
+ "attributes": [
8525
+ {
8526
+ "name": "variant",
8527
+ "type": {
8528
+ "text": "AiSuggestionsVariant"
8529
+ },
8530
+ "default": "'inline'",
8531
+ "description": "Display variant for suggestions layout",
8532
+ "fieldName": "variant"
8533
+ }
8534
+ ],
8535
+ "superclass": {
8536
+ "name": "LitElement",
8537
+ "package": "lit"
8538
+ },
8539
+ "tagName": "forge-ai-suggestions",
8540
+ "customElement": true,
8541
+ "states": [
8542
+ {
8543
+ "name": "inline",
8544
+ "description": "The suggestions are displayed inline."
8545
+ },
8546
+ {
8547
+ "name": "block",
8548
+ "description": "The suggestions are displayed as blocks."
8549
+ }
8550
+ ]
8551
+ }
8552
+ ],
8553
+ "exports": [
8554
+ {
8555
+ "kind": "js",
8556
+ "name": "AiSuggestionsComponentTagName",
8557
+ "declaration": {
8558
+ "name": "AiSuggestionsComponentTagName",
8559
+ "module": "src/lib/ai-suggestions/ai-suggestions.ts"
8560
+ }
8561
+ },
8562
+ {
8563
+ "kind": "js",
8564
+ "name": "AiSuggestionsComponent",
8565
+ "declaration": {
8566
+ "name": "AiSuggestionsComponent",
8567
+ "module": "src/lib/ai-suggestions/ai-suggestions.ts"
8568
+ }
8569
+ },
8570
+ {
8571
+ "kind": "custom-element-definition",
8572
+ "declaration": {
8573
+ "name": "AiSuggestionsComponent",
8574
+ "module": "src/lib/ai-suggestions/ai-suggestions.ts"
8575
+ }
8576
+ }
8577
+ ]
8578
+ },
8466
8579
  {
8467
8580
  "kind": "javascript-module",
8468
8581
  "path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
@@ -8574,372 +8687,335 @@
8574
8687
  },
8575
8688
  {
8576
8689
  "kind": "javascript-module",
8577
- "path": "src/lib/ai-suggestions/ai-suggestions.ts",
8690
+ "path": "src/lib/ai-threads/ai-threads.ts",
8578
8691
  "declarations": [
8579
8692
  {
8580
8693
  "kind": "variable",
8581
- "name": "AiSuggestionsComponentTagName",
8694
+ "name": "AiThreadsComponentTagName",
8582
8695
  "type": {
8583
8696
  "text": "keyof HTMLElementTagNameMap"
8584
8697
  },
8585
- "default": "'forge-ai-suggestions'"
8698
+ "default": "'forge-ai-threads'"
8586
8699
  },
8587
8700
  {
8588
8701
  "kind": "class",
8589
8702
  "description": "",
8590
- "name": "AiSuggestionsComponent",
8591
- "cssProperties": [
8592
- {
8593
- "description": "The maximum inline size of the suggestions container.",
8594
- "name": "--forge-ai-suggestions-inline-size"
8595
- },
8703
+ "name": "AiThreadsComponent",
8704
+ "slots": [
8596
8705
  {
8597
- "description": "The maximum width of the suggestion buttons in inline layout.",
8598
- "name": "--forge-ai-suggestion-max-width"
8706
+ "description": "Default slot for chatbot component",
8707
+ "name": ""
8599
8708
  }
8600
8709
  ],
8601
8710
  "members": [
8602
8711
  {
8603
8712
  "kind": "field",
8604
- "name": "suggestions",
8713
+ "name": "threads",
8605
8714
  "type": {
8606
- "text": "Suggestion[]"
8715
+ "text": "Thread[]"
8607
8716
  },
8608
8717
  "privacy": "public",
8609
8718
  "default": "[]",
8610
- "description": "Array of suggestion objects to display"
8719
+ "description": "Array of threads to display in the navigation list",
8720
+ "attribute": "threads"
8721
+ }
8722
+ ],
8723
+ "events": [
8724
+ {
8725
+ "type": {
8726
+ "text": "CustomEvent<ForgeAiThreadsSelectEventData>"
8727
+ },
8728
+ "description": "Fired when a thread is selected.",
8729
+ "name": "forge-ai-threads-select"
8611
8730
  },
8612
8731
  {
8613
- "kind": "field",
8614
- "name": "variant",
8615
8732
  "type": {
8616
- "text": "AiSuggestionsVariant"
8733
+ "text": "CustomEvent"
8617
8734
  },
8618
- "privacy": "public",
8619
- "default": "'inline'",
8620
- "description": "Display variant for suggestions layout",
8621
- "attribute": "variant"
8622
- }
8623
- ],
8624
- "events": [
8735
+ "description": "Fired when the new chat button is clicked.",
8736
+ "name": "forge-ai-threads-new-chat"
8737
+ },
8625
8738
  {
8626
8739
  "type": {
8627
- "text": "CustomEvent<ForgeAiSuggestionsEventData>"
8740
+ "text": "CustomEvent"
8628
8741
  },
8629
- "description": "Fired when a suggestion is selected.",
8630
- "name": "forge-ai-suggestions-select"
8742
+ "description": "Fired when the clear history button is clicked.",
8743
+ "name": "forge-ai-threads-clear-history"
8631
8744
  }
8632
8745
  ],
8633
8746
  "attributes": [
8634
8747
  {
8635
- "name": "variant",
8748
+ "name": "threads",
8636
8749
  "type": {
8637
- "text": "AiSuggestionsVariant"
8750
+ "text": "Thread[]"
8638
8751
  },
8639
- "default": "'inline'",
8640
- "description": "Display variant for suggestions layout",
8641
- "fieldName": "variant"
8752
+ "default": "[]",
8753
+ "description": "Array of threads to display in the navigation list",
8754
+ "fieldName": "threads"
8642
8755
  }
8643
8756
  ],
8644
8757
  "superclass": {
8645
8758
  "name": "LitElement",
8646
8759
  "package": "lit"
8647
8760
  },
8648
- "tagName": "forge-ai-suggestions",
8649
- "customElement": true,
8650
- "states": [
8651
- {
8652
- "name": "inline",
8653
- "description": "The suggestions are displayed inline."
8654
- },
8655
- {
8656
- "name": "block",
8657
- "description": "The suggestions are displayed as blocks."
8658
- }
8659
- ]
8761
+ "tagName": "forge-ai-threads",
8762
+ "customElement": true
8660
8763
  }
8661
8764
  ],
8662
8765
  "exports": [
8663
8766
  {
8664
8767
  "kind": "js",
8665
- "name": "AiSuggestionsComponentTagName",
8768
+ "name": "AiThreadsComponentTagName",
8666
8769
  "declaration": {
8667
- "name": "AiSuggestionsComponentTagName",
8668
- "module": "src/lib/ai-suggestions/ai-suggestions.ts"
8770
+ "name": "AiThreadsComponentTagName",
8771
+ "module": "src/lib/ai-threads/ai-threads.ts"
8669
8772
  }
8670
8773
  },
8671
8774
  {
8672
8775
  "kind": "js",
8673
- "name": "AiSuggestionsComponent",
8776
+ "name": "AiThreadsComponent",
8674
8777
  "declaration": {
8675
- "name": "AiSuggestionsComponent",
8676
- "module": "src/lib/ai-suggestions/ai-suggestions.ts"
8778
+ "name": "AiThreadsComponent",
8779
+ "module": "src/lib/ai-threads/ai-threads.ts"
8677
8780
  }
8678
8781
  },
8679
8782
  {
8680
8783
  "kind": "custom-element-definition",
8681
8784
  "declaration": {
8682
- "name": "AiSuggestionsComponent",
8683
- "module": "src/lib/ai-suggestions/ai-suggestions.ts"
8785
+ "name": "AiThreadsComponent",
8786
+ "module": "src/lib/ai-threads/ai-threads.ts"
8684
8787
  }
8685
8788
  }
8686
8789
  ]
8687
8790
  },
8688
8791
  {
8689
8792
  "kind": "javascript-module",
8690
- "path": "src/lib/ai-user-message/ai-user-message.ts",
8793
+ "path": "src/lib/ai-tool-call-indicator/ai-tool-call-indicator.ts",
8691
8794
  "declarations": [
8692
8795
  {
8693
8796
  "kind": "variable",
8694
- "name": "AiUserMessageComponentTagName",
8797
+ "name": "AiToolCallIndicatorComponentTagName",
8695
8798
  "type": {
8696
8799
  "text": "keyof HTMLElementTagNameMap"
8697
8800
  },
8698
- "default": "'forge-ai-user-message'"
8801
+ "default": "'forge-ai-tool-call-indicator'"
8699
8802
  },
8700
8803
  {
8701
8804
  "kind": "class",
8702
8805
  "description": "",
8703
- "name": "AiUserMessageComponent",
8806
+ "name": "AiToolCallIndicatorComponent",
8704
8807
  "members": [
8705
8808
  {
8706
8809
  "kind": "field",
8707
- "name": "timestamp",
8708
- "type": {
8709
- "text": "number | undefined"
8710
- },
8711
- "privacy": "public"
8712
- },
8713
- {
8714
- "kind": "field",
8715
- "name": "messageId",
8716
- "type": {
8717
- "text": "string | undefined"
8718
- },
8719
- "privacy": "public",
8720
- "attribute": "message-id"
8721
- },
8722
- {
8723
- "kind": "field",
8724
- "name": "streaming",
8810
+ "name": "complete",
8725
8811
  "type": {
8726
8812
  "text": "boolean"
8727
8813
  },
8728
8814
  "privacy": "public",
8729
8815
  "default": "false",
8730
- "attribute": "streaming"
8816
+ "attribute": "complete",
8817
+ "reflects": true
8731
8818
  },
8732
8819
  {
8733
8820
  "kind": "field",
8734
- "name": "content",
8735
- "type": {
8736
- "text": "string | undefined"
8737
- },
8738
- "privacy": "public"
8739
- }
8740
- ],
8741
- "events": [
8742
- {
8743
- "name": "forge-ai-user-message-copy",
8744
- "type": {
8745
- "text": "CustomEvent<ForgeAiUserMessageCopyEventData>"
8746
- },
8747
- "description": "Fired when user clicks copy button"
8748
- },
8749
- {
8750
- "name": "forge-ai-user-message-resend",
8751
- "type": {
8752
- "text": "CustomEvent<ForgeAiUserMessageResendEventData>"
8753
- },
8754
- "description": "Fired when user clicks resend button"
8755
- },
8756
- {
8757
- "name": "forge-ai-user-message-edit",
8821
+ "name": "elapsedMs",
8758
8822
  "type": {
8759
- "text": "CustomEvent<ForgeAiUserMessageEditEventData>"
8823
+ "text": "number | undefined"
8760
8824
  },
8761
- "description": "Fired when user saves edited message"
8825
+ "privacy": "public",
8826
+ "attribute": "elapsed-ms"
8762
8827
  }
8763
8828
  ],
8764
8829
  "attributes": [
8765
8830
  {
8766
- "name": "message-id",
8767
- "type": {
8768
- "text": "string | undefined"
8769
- },
8770
- "fieldName": "messageId"
8771
- },
8772
- {
8773
- "name": "streaming",
8831
+ "name": "complete",
8774
8832
  "type": {
8775
8833
  "text": "boolean"
8776
8834
  },
8777
8835
  "default": "false",
8778
- "fieldName": "streaming"
8836
+ "fieldName": "complete"
8837
+ },
8838
+ {
8839
+ "name": "elapsed-ms",
8840
+ "type": {
8841
+ "text": "number | undefined"
8842
+ },
8843
+ "fieldName": "elapsedMs"
8779
8844
  }
8780
8845
  ],
8781
8846
  "superclass": {
8782
8847
  "name": "LitElement",
8783
8848
  "package": "lit"
8784
8849
  },
8785
- "tagName": "forge-ai-user-message",
8786
- "customElement": true
8850
+ "tagName": "forge-ai-tool-call-indicator",
8851
+ "customElement": true,
8852
+ "summary": "Indicator showing agent tool call processing status."
8787
8853
  }
8788
8854
  ],
8789
8855
  "exports": [
8790
8856
  {
8791
8857
  "kind": "js",
8792
- "name": "AiUserMessageComponentTagName",
8858
+ "name": "AiToolCallIndicatorComponentTagName",
8793
8859
  "declaration": {
8794
- "name": "AiUserMessageComponentTagName",
8795
- "module": "src/lib/ai-user-message/ai-user-message.ts"
8860
+ "name": "AiToolCallIndicatorComponentTagName",
8861
+ "module": "src/lib/ai-tool-call-indicator/ai-tool-call-indicator.ts"
8796
8862
  }
8797
8863
  },
8798
8864
  {
8799
8865
  "kind": "js",
8800
- "name": "AiUserMessageComponent",
8866
+ "name": "AiToolCallIndicatorComponent",
8801
8867
  "declaration": {
8802
- "name": "AiUserMessageComponent",
8803
- "module": "src/lib/ai-user-message/ai-user-message.ts"
8868
+ "name": "AiToolCallIndicatorComponent",
8869
+ "module": "src/lib/ai-tool-call-indicator/ai-tool-call-indicator.ts"
8804
8870
  }
8805
8871
  },
8806
8872
  {
8807
8873
  "kind": "custom-element-definition",
8808
8874
  "declaration": {
8809
- "name": "AiUserMessageComponent",
8810
- "module": "src/lib/ai-user-message/ai-user-message.ts"
8875
+ "name": "AiToolCallIndicatorComponent",
8876
+ "module": "src/lib/ai-tool-call-indicator/ai-tool-call-indicator.ts"
8811
8877
  }
8812
8878
  }
8813
8879
  ]
8814
8880
  },
8815
8881
  {
8816
8882
  "kind": "javascript-module",
8817
- "path": "src/lib/ai-threads/ai-threads.ts",
8883
+ "path": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts",
8818
8884
  "declarations": [
8819
8885
  {
8820
8886
  "kind": "variable",
8821
- "name": "AiThreadsComponentTagName",
8887
+ "name": "AiUserMessageToolbarComponentTagName",
8822
8888
  "type": {
8823
8889
  "text": "keyof HTMLElementTagNameMap"
8824
8890
  },
8825
- "default": "'forge-ai-threads'"
8891
+ "default": "'forge-ai-user-message-toolbar'"
8826
8892
  },
8827
8893
  {
8828
8894
  "kind": "class",
8829
8895
  "description": "",
8830
- "name": "AiThreadsComponent",
8831
- "slots": [
8832
- {
8833
- "description": "Default slot for chatbot component",
8834
- "name": ""
8835
- }
8836
- ],
8896
+ "name": "AiUserMessageToolbarComponent",
8837
8897
  "members": [
8838
8898
  {
8839
8899
  "kind": "field",
8840
- "name": "threads",
8900
+ "name": "timestamp",
8841
8901
  "type": {
8842
- "text": "Thread[]"
8902
+ "text": "number"
8903
+ },
8904
+ "privacy": "public"
8905
+ },
8906
+ {
8907
+ "kind": "field",
8908
+ "name": "streaming",
8909
+ "type": {
8910
+ "text": "boolean"
8843
8911
  },
8844
8912
  "privacy": "public",
8845
- "default": "[]",
8846
- "description": "Array of threads to display in the navigation list",
8847
- "attribute": "threads"
8913
+ "default": "false",
8914
+ "attribute": "streaming"
8848
8915
  }
8849
8916
  ],
8850
8917
  "events": [
8851
8918
  {
8919
+ "name": "forge-ai-user-message-toolbar-copy",
8852
8920
  "type": {
8853
- "text": "CustomEvent<ForgeAiThreadsSelectEventData>"
8921
+ "text": "CustomEvent<void>"
8854
8922
  },
8855
- "description": "Fired when a thread is selected.",
8856
- "name": "forge-ai-threads-select"
8923
+ "description": "Fired when copy button is clicked"
8857
8924
  },
8858
8925
  {
8926
+ "name": "forge-ai-user-message-toolbar-resend",
8859
8927
  "type": {
8860
- "text": "CustomEvent"
8928
+ "text": "CustomEvent<void>"
8861
8929
  },
8862
- "description": "Fired when the new chat button is clicked.",
8863
- "name": "forge-ai-threads-new-chat"
8930
+ "description": "Fired when resend button is clicked"
8864
8931
  },
8865
8932
  {
8933
+ "name": "forge-ai-user-message-toolbar-edit",
8866
8934
  "type": {
8867
- "text": "CustomEvent"
8935
+ "text": "CustomEvent<void>"
8868
8936
  },
8869
- "description": "Fired when the clear history button is clicked.",
8870
- "name": "forge-ai-threads-clear-history"
8937
+ "description": "Fired when edit button is clicked"
8871
8938
  }
8872
8939
  ],
8873
8940
  "attributes": [
8874
8941
  {
8875
- "name": "threads",
8942
+ "name": "streaming",
8876
8943
  "type": {
8877
- "text": "Thread[]"
8944
+ "text": "boolean"
8878
8945
  },
8879
- "default": "[]",
8880
- "description": "Array of threads to display in the navigation list",
8881
- "fieldName": "threads"
8946
+ "default": "false",
8947
+ "fieldName": "streaming"
8882
8948
  }
8883
8949
  ],
8884
8950
  "superclass": {
8885
8951
  "name": "LitElement",
8886
8952
  "package": "lit"
8887
8953
  },
8888
- "tagName": "forge-ai-threads",
8889
- "customElement": true
8954
+ "tagName": "forge-ai-user-message-toolbar",
8955
+ "customElement": true,
8956
+ "summary": "Toolbar for user message actions including copy, resend, and edit."
8890
8957
  }
8891
8958
  ],
8892
8959
  "exports": [
8893
8960
  {
8894
8961
  "kind": "js",
8895
- "name": "AiThreadsComponentTagName",
8962
+ "name": "AiUserMessageToolbarComponentTagName",
8896
8963
  "declaration": {
8897
- "name": "AiThreadsComponentTagName",
8898
- "module": "src/lib/ai-threads/ai-threads.ts"
8964
+ "name": "AiUserMessageToolbarComponentTagName",
8965
+ "module": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts"
8899
8966
  }
8900
8967
  },
8901
8968
  {
8902
8969
  "kind": "js",
8903
- "name": "AiThreadsComponent",
8970
+ "name": "AiUserMessageToolbarComponent",
8904
8971
  "declaration": {
8905
- "name": "AiThreadsComponent",
8906
- "module": "src/lib/ai-threads/ai-threads.ts"
8972
+ "name": "AiUserMessageToolbarComponent",
8973
+ "module": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts"
8907
8974
  }
8908
8975
  },
8909
8976
  {
8910
8977
  "kind": "custom-element-definition",
8911
8978
  "declaration": {
8912
- "name": "AiThreadsComponent",
8913
- "module": "src/lib/ai-threads/ai-threads.ts"
8979
+ "name": "AiUserMessageToolbarComponent",
8980
+ "module": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts"
8914
8981
  }
8915
8982
  }
8916
8983
  ]
8917
8984
  },
8918
8985
  {
8919
8986
  "kind": "javascript-module",
8920
- "path": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts",
8987
+ "path": "src/lib/ai-user-message/ai-user-message.ts",
8921
8988
  "declarations": [
8922
8989
  {
8923
8990
  "kind": "variable",
8924
- "name": "AiUserMessageToolbarComponentTagName",
8991
+ "name": "AiUserMessageComponentTagName",
8925
8992
  "type": {
8926
8993
  "text": "keyof HTMLElementTagNameMap"
8927
8994
  },
8928
- "default": "'forge-ai-user-message-toolbar'"
8995
+ "default": "'forge-ai-user-message'"
8929
8996
  },
8930
8997
  {
8931
8998
  "kind": "class",
8932
8999
  "description": "",
8933
- "name": "AiUserMessageToolbarComponent",
9000
+ "name": "AiUserMessageComponent",
8934
9001
  "members": [
8935
9002
  {
8936
9003
  "kind": "field",
8937
9004
  "name": "timestamp",
8938
9005
  "type": {
8939
- "text": "number"
9006
+ "text": "number | undefined"
8940
9007
  },
8941
9008
  "privacy": "public"
8942
9009
  },
9010
+ {
9011
+ "kind": "field",
9012
+ "name": "messageId",
9013
+ "type": {
9014
+ "text": "string | undefined"
9015
+ },
9016
+ "privacy": "public",
9017
+ "attribute": "message-id"
9018
+ },
8943
9019
  {
8944
9020
  "kind": "field",
8945
9021
  "name": "streaming",
@@ -8949,32 +9025,47 @@
8949
9025
  "privacy": "public",
8950
9026
  "default": "false",
8951
9027
  "attribute": "streaming"
9028
+ },
9029
+ {
9030
+ "kind": "field",
9031
+ "name": "content",
9032
+ "type": {
9033
+ "text": "string | undefined"
9034
+ },
9035
+ "privacy": "public"
8952
9036
  }
8953
9037
  ],
8954
9038
  "events": [
8955
9039
  {
8956
- "name": "forge-ai-user-message-toolbar-copy",
9040
+ "name": "forge-ai-user-message-copy",
8957
9041
  "type": {
8958
- "text": "CustomEvent<void>"
9042
+ "text": "CustomEvent<ForgeAiUserMessageCopyEventData>"
8959
9043
  },
8960
- "description": "Fired when copy button is clicked"
9044
+ "description": "Fired when user clicks copy button"
8961
9045
  },
8962
9046
  {
8963
- "name": "forge-ai-user-message-toolbar-resend",
9047
+ "name": "forge-ai-user-message-resend",
8964
9048
  "type": {
8965
- "text": "CustomEvent<void>"
9049
+ "text": "CustomEvent<ForgeAiUserMessageResendEventData>"
8966
9050
  },
8967
- "description": "Fired when resend button is clicked"
9051
+ "description": "Fired when user clicks resend button"
8968
9052
  },
8969
9053
  {
8970
- "name": "forge-ai-user-message-toolbar-edit",
9054
+ "name": "forge-ai-user-message-edit",
8971
9055
  "type": {
8972
- "text": "CustomEvent<void>"
9056
+ "text": "CustomEvent<ForgeAiUserMessageEditEventData>"
8973
9057
  },
8974
- "description": "Fired when edit button is clicked"
9058
+ "description": "Fired when user saves edited message"
8975
9059
  }
8976
9060
  ],
8977
9061
  "attributes": [
9062
+ {
9063
+ "name": "message-id",
9064
+ "type": {
9065
+ "text": "string | undefined"
9066
+ },
9067
+ "fieldName": "messageId"
9068
+ },
8978
9069
  {
8979
9070
  "name": "streaming",
8980
9071
  "type": {
@@ -8988,33 +9079,32 @@
8988
9079
  "name": "LitElement",
8989
9080
  "package": "lit"
8990
9081
  },
8991
- "tagName": "forge-ai-user-message-toolbar",
8992
- "customElement": true,
8993
- "summary": "Toolbar for user message actions including copy, resend, and edit."
9082
+ "tagName": "forge-ai-user-message",
9083
+ "customElement": true
8994
9084
  }
8995
9085
  ],
8996
9086
  "exports": [
8997
9087
  {
8998
9088
  "kind": "js",
8999
- "name": "AiUserMessageToolbarComponentTagName",
9089
+ "name": "AiUserMessageComponentTagName",
9000
9090
  "declaration": {
9001
- "name": "AiUserMessageToolbarComponentTagName",
9002
- "module": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts"
9091
+ "name": "AiUserMessageComponentTagName",
9092
+ "module": "src/lib/ai-user-message/ai-user-message.ts"
9003
9093
  }
9004
9094
  },
9005
9095
  {
9006
9096
  "kind": "js",
9007
- "name": "AiUserMessageToolbarComponent",
9097
+ "name": "AiUserMessageComponent",
9008
9098
  "declaration": {
9009
- "name": "AiUserMessageToolbarComponent",
9010
- "module": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts"
9099
+ "name": "AiUserMessageComponent",
9100
+ "module": "src/lib/ai-user-message/ai-user-message.ts"
9011
9101
  }
9012
9102
  },
9013
9103
  {
9014
9104
  "kind": "custom-element-definition",
9015
9105
  "declaration": {
9016
- "name": "AiUserMessageToolbarComponent",
9017
- "module": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts"
9106
+ "name": "AiUserMessageComponent",
9107
+ "module": "src/lib/ai-user-message/ai-user-message.ts"
9018
9108
  }
9019
9109
  }
9020
9110
  ]
@@ -9479,126 +9569,126 @@
9479
9569
  },
9480
9570
  {
9481
9571
  "kind": "javascript-module",
9482
- "path": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts",
9572
+ "path": "src/lib/ai-prompt/prompt-button/prompt-button.ts",
9483
9573
  "declarations": [
9484
9574
  {
9485
9575
  "kind": "variable",
9486
- "name": "ReasoningContentComponentTagName",
9576
+ "name": "PromptButtonComponentTagName",
9487
9577
  "type": {
9488
9578
  "text": "keyof HTMLElementTagNameMap"
9489
9579
  },
9490
- "default": "'forge-ai-reasoning-content'"
9580
+ "default": "'forge-prompt-button'"
9491
9581
  },
9492
9582
  {
9493
9583
  "kind": "class",
9494
9584
  "description": "",
9495
- "name": "ReasoningContentComponent",
9496
- "members": [],
9585
+ "name": "PromptButtonComponent",
9586
+ "members": [
9587
+ {
9588
+ "kind": "field",
9589
+ "name": "disabled",
9590
+ "type": {
9591
+ "text": "boolean"
9592
+ },
9593
+ "privacy": "public",
9594
+ "default": "false",
9595
+ "description": "Whether the button is disabled",
9596
+ "attribute": "disabled",
9597
+ "reflects": true
9598
+ }
9599
+ ],
9600
+ "attributes": [
9601
+ {
9602
+ "name": "disabled",
9603
+ "type": {
9604
+ "text": "boolean"
9605
+ },
9606
+ "default": "false",
9607
+ "description": "Whether the button is disabled",
9608
+ "fieldName": "disabled"
9609
+ }
9610
+ ],
9497
9611
  "superclass": {
9498
9612
  "name": "LitElement",
9499
9613
  "package": "lit"
9500
9614
  },
9501
- "tagName": "forge-ai-reasoning-content",
9615
+ "tagName": "forge-prompt-button",
9502
9616
  "customElement": true
9503
9617
  }
9504
9618
  ],
9505
9619
  "exports": [
9506
9620
  {
9507
9621
  "kind": "js",
9508
- "name": "ReasoningContentComponentTagName",
9622
+ "name": "PromptButtonComponentTagName",
9509
9623
  "declaration": {
9510
- "name": "ReasoningContentComponentTagName",
9511
- "module": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts"
9624
+ "name": "PromptButtonComponentTagName",
9625
+ "module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
9512
9626
  }
9513
9627
  },
9514
9628
  {
9515
9629
  "kind": "js",
9516
- "name": "ReasoningContentComponent",
9630
+ "name": "PromptButtonComponent",
9517
9631
  "declaration": {
9518
- "name": "ReasoningContentComponent",
9519
- "module": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts"
9632
+ "name": "PromptButtonComponent",
9633
+ "module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
9520
9634
  }
9521
9635
  },
9522
9636
  {
9523
9637
  "kind": "custom-element-definition",
9524
9638
  "declaration": {
9525
- "name": "ReasoningContentComponent",
9526
- "module": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts"
9639
+ "name": "PromptButtonComponent",
9640
+ "module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
9527
9641
  }
9528
9642
  }
9529
9643
  ]
9530
9644
  },
9531
9645
  {
9532
9646
  "kind": "javascript-module",
9533
- "path": "src/lib/ai-prompt/prompt-button/prompt-button.ts",
9647
+ "path": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts",
9534
9648
  "declarations": [
9535
9649
  {
9536
9650
  "kind": "variable",
9537
- "name": "PromptButtonComponentTagName",
9651
+ "name": "ReasoningContentComponentTagName",
9538
9652
  "type": {
9539
9653
  "text": "keyof HTMLElementTagNameMap"
9540
9654
  },
9541
- "default": "'forge-prompt-button'"
9655
+ "default": "'forge-ai-reasoning-content'"
9542
9656
  },
9543
9657
  {
9544
- "kind": "class",
9545
- "description": "",
9546
- "name": "PromptButtonComponent",
9547
- "members": [
9548
- {
9549
- "kind": "field",
9550
- "name": "disabled",
9551
- "type": {
9552
- "text": "boolean"
9553
- },
9554
- "privacy": "public",
9555
- "default": "false",
9556
- "description": "Whether the button is disabled",
9557
- "attribute": "disabled",
9558
- "reflects": true
9559
- }
9560
- ],
9561
- "attributes": [
9562
- {
9563
- "name": "disabled",
9564
- "type": {
9565
- "text": "boolean"
9566
- },
9567
- "default": "false",
9568
- "description": "Whether the button is disabled",
9569
- "fieldName": "disabled"
9570
- }
9571
- ],
9658
+ "kind": "class",
9659
+ "description": "",
9660
+ "name": "ReasoningContentComponent",
9661
+ "members": [],
9572
9662
  "superclass": {
9573
9663
  "name": "LitElement",
9574
9664
  "package": "lit"
9575
9665
  },
9576
- "tagName": "forge-prompt-button",
9666
+ "tagName": "forge-ai-reasoning-content",
9577
9667
  "customElement": true
9578
9668
  }
9579
9669
  ],
9580
9670
  "exports": [
9581
9671
  {
9582
9672
  "kind": "js",
9583
- "name": "PromptButtonComponentTagName",
9673
+ "name": "ReasoningContentComponentTagName",
9584
9674
  "declaration": {
9585
- "name": "PromptButtonComponentTagName",
9586
- "module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
9675
+ "name": "ReasoningContentComponentTagName",
9676
+ "module": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts"
9587
9677
  }
9588
9678
  },
9589
9679
  {
9590
9680
  "kind": "js",
9591
- "name": "PromptButtonComponent",
9681
+ "name": "ReasoningContentComponent",
9592
9682
  "declaration": {
9593
- "name": "PromptButtonComponent",
9594
- "module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
9683
+ "name": "ReasoningContentComponent",
9684
+ "module": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts"
9595
9685
  }
9596
9686
  },
9597
9687
  {
9598
9688
  "kind": "custom-element-definition",
9599
9689
  "declaration": {
9600
- "name": "PromptButtonComponent",
9601
- "module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
9690
+ "name": "ReasoningContentComponent",
9691
+ "module": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts"
9602
9692
  }
9603
9693
  }
9604
9694
  ]
@@ -9810,68 +9900,6 @@
9810
9900
  }
9811
9901
  ]
9812
9902
  },
9813
- {
9814
- "kind": "javascript-module",
9815
- "path": "src/lib/tools/ai-data-table/ai-data-table-definition.ts",
9816
- "declarations": [
9817
- {
9818
- "kind": "variable",
9819
- "name": "displayDataTableTool",
9820
- "type": {
9821
- "text": "ToolDefinition"
9822
- },
9823
- "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' }) }"
9824
- }
9825
- ],
9826
- "exports": [
9827
- {
9828
- "kind": "js",
9829
- "name": "displayDataTableTool",
9830
- "declaration": {
9831
- "name": "displayDataTableTool",
9832
- "module": "src/lib/tools/ai-data-table/ai-data-table-definition.ts"
9833
- }
9834
- }
9835
- ]
9836
- },
9837
- {
9838
- "kind": "javascript-module",
9839
- "path": "src/lib/tools/ai-data-table/ai-data-table.ts",
9840
- "declarations": [
9841
- {
9842
- "kind": "class",
9843
- "description": "Data table component tool renderer for displaying tabular data with pagination and filtering.",
9844
- "name": "DataTableToolElement",
9845
- "members": [
9846
- {
9847
- "kind": "field",
9848
- "name": "toolCall",
9849
- "type": {
9850
- "text": "ToolCall<TableData>"
9851
- },
9852
- "privacy": "public",
9853
- "description": "Tool call data containing table configuration and data"
9854
- }
9855
- ],
9856
- "superclass": {
9857
- "name": "LitElement",
9858
- "package": "lit"
9859
- },
9860
- "tagName": "forge-ai-tool-data-table",
9861
- "customElement": true
9862
- }
9863
- ],
9864
- "exports": [
9865
- {
9866
- "kind": "custom-element-definition",
9867
- "name": "forge-ai-tool-data-table",
9868
- "declaration": {
9869
- "name": "DataTableToolElement",
9870
- "module": "src/lib/tools/ai-data-table/ai-data-table.ts"
9871
- }
9872
- }
9873
- ]
9874
- },
9875
9903
  {
9876
9904
  "kind": "javascript-module",
9877
9905
  "path": "src/lib/core/popover/popover.ts",
@@ -10309,6 +10337,68 @@
10309
10337
  }
10310
10338
  ]
10311
10339
  },
10340
+ {
10341
+ "kind": "javascript-module",
10342
+ "path": "src/lib/tools/ai-data-table/ai-data-table-definition.ts",
10343
+ "declarations": [
10344
+ {
10345
+ "kind": "variable",
10346
+ "name": "displayDataTableTool",
10347
+ "type": {
10348
+ "text": "ToolDefinition"
10349
+ },
10350
+ "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' }) }"
10351
+ }
10352
+ ],
10353
+ "exports": [
10354
+ {
10355
+ "kind": "js",
10356
+ "name": "displayDataTableTool",
10357
+ "declaration": {
10358
+ "name": "displayDataTableTool",
10359
+ "module": "src/lib/tools/ai-data-table/ai-data-table-definition.ts"
10360
+ }
10361
+ }
10362
+ ]
10363
+ },
10364
+ {
10365
+ "kind": "javascript-module",
10366
+ "path": "src/lib/tools/ai-data-table/ai-data-table.ts",
10367
+ "declarations": [
10368
+ {
10369
+ "kind": "class",
10370
+ "description": "Data table component tool renderer for displaying tabular data with pagination and filtering.",
10371
+ "name": "DataTableToolElement",
10372
+ "members": [
10373
+ {
10374
+ "kind": "field",
10375
+ "name": "toolCall",
10376
+ "type": {
10377
+ "text": "ToolCall<TableData>"
10378
+ },
10379
+ "privacy": "public",
10380
+ "description": "Tool call data containing table configuration and data"
10381
+ }
10382
+ ],
10383
+ "superclass": {
10384
+ "name": "LitElement",
10385
+ "package": "lit"
10386
+ },
10387
+ "tagName": "forge-ai-tool-data-table",
10388
+ "customElement": true
10389
+ }
10390
+ ],
10391
+ "exports": [
10392
+ {
10393
+ "kind": "custom-element-definition",
10394
+ "name": "forge-ai-tool-data-table",
10395
+ "declaration": {
10396
+ "name": "DataTableToolElement",
10397
+ "module": "src/lib/tools/ai-data-table/ai-data-table.ts"
10398
+ }
10399
+ }
10400
+ ]
10401
+ },
10312
10402
  {
10313
10403
  "kind": "javascript-module",
10314
10404
  "path": "src/lib/tools/ai-paginator/ai-paginator.ts",
@@ -10422,10 +10512,6 @@
10422
10512
  "path": "src/lib/ai-agent-info/ai-agent-info.ts",
10423
10513
  "lineNumber": 29
10424
10514
  },
10425
- "AiArtifactComponent": {
10426
- "path": "src/lib/ai-artifact/ai-artifact.ts",
10427
- "lineNumber": 23
10428
- },
10429
10515
  "ForgeAiAgentSelectorChangeEventData": {
10430
10516
  "path": "src/lib/ai-agent-selector/ai-agent-selector.ts",
10431
10517
  "lineNumber": 23
@@ -10434,17 +10520,17 @@
10434
10520
  "path": "src/lib/ai-agent-selector/ai-agent-selector.ts",
10435
10521
  "lineNumber": 48
10436
10522
  },
10523
+ "AiArtifactComponent": {
10524
+ "path": "src/lib/ai-artifact/ai-artifact.ts",
10525
+ "lineNumber": 23
10526
+ },
10437
10527
  "ForgeAiAssistantResponseFeedbackEventData": {
10438
10528
  "path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
10439
- "lineNumber": 30
10529
+ "lineNumber": 31
10440
10530
  },
10441
10531
  "AiAssistantResponseComponent": {
10442
10532
  "path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
10443
- "lineNumber": 47
10444
- },
10445
- "AiButtonComponent": {
10446
- "path": "src/lib/ai-button/ai-button.ts",
10447
- "lineNumber": 22
10533
+ "lineNumber": 48
10448
10534
  },
10449
10535
  "ForgeAiAttachmentRemoveEventData": {
10450
10536
  "path": "src/lib/ai-attachment/ai-attachment.ts",
@@ -10454,6 +10540,10 @@
10454
10540
  "path": "src/lib/ai-attachment/ai-attachment.ts",
10455
10541
  "lineNumber": 41
10456
10542
  },
10543
+ "AiButtonComponent": {
10544
+ "path": "src/lib/ai-button/ai-button.ts",
10545
+ "lineNumber": 22
10546
+ },
10457
10547
  "AiChainOfThoughtComponent": {
10458
10548
  "path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
10459
10549
  "lineNumber": 17
@@ -10478,10 +10568,6 @@
10478
10568
  "path": "src/lib/ai-chat-interface/ai-chat-interface.ts",
10479
10569
  "lineNumber": 25
10480
10570
  },
10481
- "AiConfirmationPromptComponent": {
10482
- "path": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts",
10483
- "lineNumber": 27
10484
- },
10485
10571
  "AgUiAdapterConfig": {
10486
10572
  "path": "src/lib/ai-chatbot/ag-ui-adapter.ts",
10487
10573
  "lineNumber": 27
@@ -10536,7 +10622,7 @@
10536
10622
  },
10537
10623
  "FileRemoveEvent": {
10538
10624
  "path": "src/lib/ai-chatbot/types.ts",
10539
- "lineNumber": 211
10625
+ "lineNumber": 213
10540
10626
  },
10541
10627
  "ErrorEvent": {
10542
10628
  "path": "src/lib/ai-chatbot/agent-adapter.ts",
@@ -10744,51 +10830,55 @@
10744
10830
  },
10745
10831
  "ResponseItem": {
10746
10832
  "path": "src/lib/ai-chatbot/types.ts",
10747
- "lineNumber": 156
10833
+ "lineNumber": 158
10748
10834
  },
10749
10835
  "FeedbackType": {
10750
10836
  "path": "src/lib/ai-chatbot/types.ts",
10751
- "lineNumber": 160
10837
+ "lineNumber": 162
10752
10838
  },
10753
10839
  "ResponseFeedback": {
10754
10840
  "path": "src/lib/ai-chatbot/types.ts",
10755
- "lineNumber": 162
10841
+ "lineNumber": 164
10756
10842
  },
10757
10843
  "AssistantResponse": {
10758
10844
  "path": "src/lib/ai-chatbot/types.ts",
10759
- "lineNumber": 167
10845
+ "lineNumber": 169
10760
10846
  },
10761
10847
  "FileAttachment": {
10762
10848
  "path": "src/lib/ai-chatbot/types.ts",
10763
- "lineNumber": 176
10849
+ "lineNumber": 178
10764
10850
  },
10765
10851
  "UploadedFileMetadata": {
10766
10852
  "path": "src/lib/ai-chatbot/types.ts",
10767
- "lineNumber": 189
10853
+ "lineNumber": 191
10768
10854
  },
10769
10855
  "FileUploadCallbacks": {
10770
10856
  "path": "src/lib/ai-chatbot/types.ts",
10771
- "lineNumber": 197
10857
+ "lineNumber": 199
10772
10858
  },
10773
10859
  "FileUploadHandler": {
10774
10860
  "path": "src/lib/ai-chatbot/types.ts",
10775
- "lineNumber": 204
10861
+ "lineNumber": 206
10776
10862
  },
10777
10863
  "FileRemoveCallbacks": {
10778
10864
  "path": "src/lib/ai-chatbot/types.ts",
10779
- "lineNumber": 206
10865
+ "lineNumber": 208
10780
10866
  },
10781
10867
  "ForgeAiChatbotFileSelectEventData": {
10782
10868
  "path": "src/lib/ai-chatbot/types.ts",
10783
- "lineNumber": 215
10869
+ "lineNumber": 217
10784
10870
  },
10785
10871
  "MessageItem": {
10786
10872
  "path": "src/lib/ai-chatbot/types.ts",
10787
- "lineNumber": 228
10873
+ "lineNumber": 230
10788
10874
  },
10789
10875
  "ThreadState": {
10790
10876
  "path": "src/lib/ai-chatbot/types.ts",
10791
- "lineNumber": 233
10877
+ "lineNumber": 235
10878
+ },
10879
+ "AiConfirmationPromptComponent": {
10880
+ "path": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts",
10881
+ "lineNumber": 27
10792
10882
  },
10793
10883
  "AiDialogComponent": {
10794
10884
  "path": "src/lib/ai-dialog/ai-dialog.ts",
@@ -10934,10 +11024,6 @@
10934
11024
  "path": "src/lib/ai-modal/ai-modal.ts",
10935
11025
  "lineNumber": 36
10936
11026
  },
10937
- "AiReasoningComponent": {
10938
- "path": "src/lib/ai-reasoning/ai-reasoning.ts",
10939
- "lineNumber": 17
10940
- },
10941
11027
  "ForgeAiPromptSendEventData": {
10942
11028
  "path": "src/lib/ai-prompt/ai-prompt.ts",
10943
11029
  "lineNumber": 29
@@ -10958,14 +11044,18 @@
10958
11044
  "path": "src/lib/ai-prompt/ai-prompt.ts",
10959
11045
  "lineNumber": 63
10960
11046
  },
10961
- "AiResponseMessageComponent": {
10962
- "path": "src/lib/ai-response-message/ai-response-message.ts",
10963
- "lineNumber": 19
11047
+ "AiReasoningComponent": {
11048
+ "path": "src/lib/ai-reasoning/ai-reasoning.ts",
11049
+ "lineNumber": 17
10964
11050
  },
10965
11051
  "AiReasoningHeaderComponent": {
10966
11052
  "path": "src/lib/ai-reasoning-header/ai-reasoning-header.ts",
10967
11053
  "lineNumber": 22
10968
11054
  },
11055
+ "AiResponseMessageComponent": {
11056
+ "path": "src/lib/ai-response-message/ai-response-message.ts",
11057
+ "lineNumber": 19
11058
+ },
10969
11059
  "ForgeAiResponseMessageToolbarActionEventData": {
10970
11060
  "path": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts",
10971
11061
  "lineNumber": 23
@@ -11002,10 +11092,6 @@
11002
11092
  "path": "src/lib/ai-spinner/ai-spinner.ts",
11003
11093
  "lineNumber": 27
11004
11094
  },
11005
- "AiThinkingIndicatorComponent": {
11006
- "path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
11007
- "lineNumber": 38
11008
- },
11009
11095
  "Suggestion": {
11010
11096
  "path": "src/lib/ai-suggestions/ai-suggestions.ts",
11011
11097
  "lineNumber": 20
@@ -11022,21 +11108,9 @@
11022
11108
  "path": "src/lib/ai-suggestions/ai-suggestions.ts",
11023
11109
  "lineNumber": 45
11024
11110
  },
11025
- "ForgeAiUserMessageCopyEventData": {
11026
- "path": "src/lib/ai-user-message/ai-user-message.ts",
11027
- "lineNumber": 20
11028
- },
11029
- "ForgeAiUserMessageResendEventData": {
11030
- "path": "src/lib/ai-user-message/ai-user-message.ts",
11031
- "lineNumber": 24
11032
- },
11033
- "ForgeAiUserMessageEditEventData": {
11034
- "path": "src/lib/ai-user-message/ai-user-message.ts",
11035
- "lineNumber": 28
11036
- },
11037
- "AiUserMessageComponent": {
11038
- "path": "src/lib/ai-user-message/ai-user-message.ts",
11039
- "lineNumber": 42
11111
+ "AiThinkingIndicatorComponent": {
11112
+ "path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
11113
+ "lineNumber": 38
11040
11114
  },
11041
11115
  "Thread": {
11042
11116
  "path": "src/lib/ai-threads/ai-threads.ts",
@@ -11050,10 +11124,30 @@
11050
11124
  "path": "src/lib/ai-threads/ai-threads.ts",
11051
11125
  "lineNumber": 46
11052
11126
  },
11127
+ "AiToolCallIndicatorComponent": {
11128
+ "path": "src/lib/ai-tool-call-indicator/ai-tool-call-indicator.ts",
11129
+ "lineNumber": 25
11130
+ },
11053
11131
  "AiUserMessageToolbarComponent": {
11054
11132
  "path": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts",
11055
11133
  "lineNumber": 31
11056
11134
  },
11135
+ "ForgeAiUserMessageCopyEventData": {
11136
+ "path": "src/lib/ai-user-message/ai-user-message.ts",
11137
+ "lineNumber": 20
11138
+ },
11139
+ "ForgeAiUserMessageResendEventData": {
11140
+ "path": "src/lib/ai-user-message/ai-user-message.ts",
11141
+ "lineNumber": 24
11142
+ },
11143
+ "ForgeAiUserMessageEditEventData": {
11144
+ "path": "src/lib/ai-user-message/ai-user-message.ts",
11145
+ "lineNumber": 28
11146
+ },
11147
+ "AiUserMessageComponent": {
11148
+ "path": "src/lib/ai-user-message/ai-user-message.ts",
11149
+ "lineNumber": 42
11150
+ },
11057
11151
  "SpeechRecognitionAlternative": {
11058
11152
  "path": "src/lib/ai-voice-input/ai-voice-input.ts",
11059
11153
  "lineNumber": 20
@@ -11110,14 +11204,14 @@
11110
11204
  "path": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts",
11111
11205
  "lineNumber": 24
11112
11206
  },
11113
- "ReasoningContentComponent": {
11114
- "path": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts",
11115
- "lineNumber": 17
11116
- },
11117
11207
  "PromptButtonComponent": {
11118
11208
  "path": "src/lib/ai-prompt/prompt-button/prompt-button.ts",
11119
11209
  "lineNumber": 17
11120
11210
  },
11211
+ "ReasoningContentComponent": {
11212
+ "path": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts",
11213
+ "lineNumber": 17
11214
+ },
11121
11215
  "OverlayPlacement": {
11122
11216
  "path": "src/lib/core/overlay/overlay.ts",
11123
11217
  "lineNumber": 31
@@ -11130,14 +11224,6 @@
11130
11224
  "path": "src/lib/core/overlay/overlay.ts",
11131
11225
  "lineNumber": 40
11132
11226
  },
11133
- "TableData": {
11134
- "path": "src/lib/tools/ai-data-table/ai-data-table.ts",
11135
- "lineNumber": 16
11136
- },
11137
- "DataTableToolElement": {
11138
- "path": "src/lib/tools/ai-data-table/ai-data-table.ts",
11139
- "lineNumber": 32
11140
- },
11141
11227
  "PopoverToggleEventData": {
11142
11228
  "path": "src/lib/core/popover/popover.ts",
11143
11229
  "lineNumber": 18
@@ -11170,6 +11256,14 @@
11170
11256
  "path": "src/lib/core/tooltip/tooltip.ts",
11171
11257
  "lineNumber": 44
11172
11258
  },
11259
+ "TableData": {
11260
+ "path": "src/lib/tools/ai-data-table/ai-data-table.ts",
11261
+ "lineNumber": 16
11262
+ },
11263
+ "DataTableToolElement": {
11264
+ "path": "src/lib/tools/ai-data-table/ai-data-table.ts",
11265
+ "lineNumber": 32
11266
+ },
11173
11267
  "AiPaginator": {
11174
11268
  "path": "src/lib/tools/ai-paginator/ai-paginator.ts",
11175
11269
  "lineNumber": 13