@tylertech/forge-ai 0.5.0 → 0.6.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 (89) hide show
  1. package/custom-elements.json +1329 -579
  2. package/dist/ai-artifact/ai-artifact.scss.mjs +1 -1
  3. package/dist/ai-attachment/ai-attachment.d.ts +4 -4
  4. package/dist/ai-chat-header/ai-chat-header.d.ts +4 -0
  5. package/dist/ai-chat-header/ai-chat-header.mjs +6 -0
  6. package/dist/ai-chat-header/ai-chat-header.scss.mjs +1 -1
  7. package/dist/ai-chatbot/ag-ui-adapter.mjs +34 -25
  8. package/dist/ai-chatbot/agent-adapter.d.ts +16 -8
  9. package/dist/ai-chatbot/agent-adapter.mjs +16 -16
  10. package/dist/ai-chatbot/agent-runner.mjs +3 -3
  11. package/dist/ai-chatbot/ai-chatbot-tool-call.d.ts +5 -2
  12. package/dist/ai-chatbot/ai-chatbot-tool-call.mjs +68 -5
  13. package/dist/ai-chatbot/ai-chatbot-tool-call.scss.mjs +1 -1
  14. package/dist/ai-chatbot/ai-chatbot.d.ts +1 -0
  15. package/dist/ai-chatbot/ai-chatbot.mjs +84 -23
  16. package/dist/ai-chatbot/create-tool-renderer.d.ts +1 -4
  17. package/dist/ai-chatbot/create-tool-renderer.mjs +1 -13
  18. package/dist/ai-chatbot/index.d.ts +1 -1
  19. package/dist/ai-chatbot/message-state-controller.d.ts +10 -6
  20. package/dist/ai-chatbot/message-state-controller.mjs +95 -6
  21. package/dist/ai-chatbot/types.d.ts +91 -2
  22. package/dist/ai-chatbot/utils.d.ts +2 -2
  23. package/dist/ai-chatbot/utils.mjs +3 -2
  24. package/dist/ai-dropdown-menu/ai-dropdown-menu-item.d.ts +1 -3
  25. package/dist/ai-dropdown-menu/ai-dropdown-menu-item.scss.mjs +1 -1
  26. package/dist/ai-dropdown-menu/ai-dropdown-menu.d.ts +5 -6
  27. package/dist/ai-dropdown-menu/ai-dropdown-menu.mjs +7 -1
  28. package/dist/ai-dropdown-menu/ai-dropdown-menu.scss.mjs +1 -1
  29. package/dist/ai-dropdown-menu/selection-manager.mjs +3 -3
  30. package/dist/ai-embedded-chat/ai-embedded-chat.mjs +1 -0
  31. package/dist/ai-empty-state/ai-empty-state.scss.mjs +1 -1
  32. package/dist/ai-event-stream-viewer/ai-event-stream-viewer.d.ts +19 -0
  33. package/dist/ai-event-stream-viewer/ai-event-stream-viewer.mjs +164 -0
  34. package/dist/ai-event-stream-viewer/ai-event-stream-viewer.scss.mjs +4 -0
  35. package/dist/ai-event-stream-viewer/index.d.ts +1 -0
  36. package/dist/ai-event-stream-viewer/index.mjs +5 -0
  37. package/dist/ai-file-picker/ai-file-picker.d.ts +0 -13
  38. package/dist/ai-gradient-container/ai-gradient-container.scss.mjs +1 -1
  39. package/dist/ai-icon/ai-icon.scss.mjs +1 -1
  40. package/dist/ai-icon-button/ai-icon-button.d.ts +19 -0
  41. package/dist/ai-icon-button/ai-icon-button.mjs +63 -0
  42. package/dist/ai-icon-button/ai-icon-button.scss.mjs +4 -0
  43. package/dist/ai-icon-button/index.d.ts +1 -0
  44. package/dist/ai-icon-button/index.mjs +5 -0
  45. package/dist/ai-message-thread/ai-message-thread.d.ts +3 -2
  46. package/dist/ai-message-thread/ai-message-thread.mjs +23 -9
  47. package/dist/ai-prompt/ai-prompt.d.ts +21 -0
  48. package/dist/ai-prompt/ai-prompt.mjs +133 -10
  49. package/dist/ai-prompt/ai-prompt.scss.mjs +1 -1
  50. package/dist/ai-response-message/ai-response-message.d.ts +5 -0
  51. package/dist/ai-response-message/ai-response-message.mjs +61 -3
  52. package/dist/ai-response-message/ai-response-message.scss.mjs +1 -1
  53. package/dist/ai-slash-command-menu/ai-slash-command-menu.d.ts +33 -0
  54. package/dist/ai-slash-command-menu/ai-slash-command-menu.mjs +200 -0
  55. package/dist/ai-slash-command-menu/ai-slash-command-menu.scss.mjs +4 -0
  56. package/dist/ai-slash-command-menu/index.d.ts +1 -0
  57. package/dist/ai-slash-command-menu/index.mjs +5 -0
  58. package/dist/ai-spinner/ai-spinner.d.ts +2 -2
  59. package/dist/ai-suggestions/ai-suggestions.d.ts +2 -0
  60. package/dist/ai-suggestions/ai-suggestions.scss.mjs +1 -1
  61. package/dist/ai-thinking-indicator/ai-thinking-indicator.d.ts +3 -0
  62. package/dist/ai-thinking-indicator/ai-thinking-indicator.mjs +24 -15
  63. package/dist/ai-thinking-indicator/ai-thinking-indicator.scss.mjs +14 -11
  64. package/dist/core/overlay/index.d.ts +1 -1
  65. package/dist/core/overlay/overlay.d.ts +10 -5
  66. package/dist/core/overlay/overlay.mjs +7 -2
  67. package/dist/core/popover/index.d.ts +1 -1
  68. package/dist/core/popover/popover.d.ts +7 -6
  69. package/dist/core/popover/popover.mjs +5 -0
  70. package/dist/core/tooltip/tooltip.d.ts +2 -2
  71. package/dist/index.d.ts +2 -0
  72. package/dist/index.mjs +6 -0
  73. package/dist/tools/ai-data-table/ai-data-table-definition.d.ts +2 -0
  74. package/dist/tools/ai-data-table/ai-data-table-definition.mjs +43 -0
  75. package/dist/tools/ai-data-table/ai-data-table.d.ts +33 -0
  76. package/dist/tools/ai-data-table/ai-data-table.mjs +206 -0
  77. package/dist/tools/ai-data-table/ai-data-table.scss.mjs +4 -0
  78. package/dist/tools/ai-data-table/index.d.ts +2 -0
  79. package/dist/tools/ai-data-table/index.mjs +6 -0
  80. package/dist/tools/ai-paginator/ai-paginator.d.ts +17 -0
  81. package/dist/tools/ai-paginator/ai-paginator.mjs +110 -0
  82. package/dist/tools/ai-paginator/ai-paginator.scss.mjs +4 -0
  83. package/dist/tools/ai-paginator/index.d.ts +1 -0
  84. package/dist/tools/ai-paginator/index.mjs +4 -0
  85. package/dist/tools/index.d.ts +2 -0
  86. package/dist/tools/index.mjs +8 -0
  87. package/dist/utils/keyboard-navigation-controller.d.ts +13 -0
  88. package/dist/utils/keyboard-navigation-controller.mjs +71 -0
  89. package/package.json +64 -63
@@ -166,133 +166,133 @@
166
166
  },
167
167
  {
168
168
  "kind": "javascript-module",
169
- "path": "src/lib/ai-agent-info/ai-agent-info.ts",
169
+ "path": "src/lib/ai-artifact/ai-artifact.ts",
170
170
  "declarations": [
171
171
  {
172
172
  "kind": "variable",
173
- "name": "AiAgentInfoComponentTagName",
173
+ "name": "AiArtifactComponentTagName",
174
174
  "type": {
175
175
  "text": "keyof HTMLElementTagNameMap"
176
176
  },
177
- "default": "'forge-ai-agent-info'"
177
+ "default": "'forge-ai-artifact'"
178
178
  },
179
179
  {
180
180
  "kind": "class",
181
181
  "description": "",
182
- "name": "AiAgentInfoComponent",
183
- "members": [
182
+ "name": "AiArtifactComponent",
183
+ "cssProperties": [
184
184
  {
185
- "kind": "field",
186
- "name": "agentInfo",
187
- "type": {
188
- "text": "AgentInfo | undefined"
189
- },
190
- "privacy": "public",
191
- "description": "Agent information to display"
185
+ "description": "Surface color override for the toolbar (defaults to transparent)",
186
+ "name": "--forge-theme-surface"
187
+ }
188
+ ],
189
+ "slots": [
190
+ {
191
+ "description": "Content for the start (left) side of the toolbar, typically used for titles or headings",
192
+ "name": "start"
193
+ },
194
+ {
195
+ "description": "Action buttons for the end (right) side of the toolbar",
196
+ "name": "actions"
197
+ },
198
+ {
199
+ "description": "Main content area below the toolbar",
200
+ "name": ""
192
201
  }
193
202
  ],
203
+ "members": [],
194
204
  "superclass": {
195
205
  "name": "LitElement",
196
206
  "package": "lit"
197
207
  },
198
- "tagName": "forge-ai-agent-info",
199
- "customElement": true,
200
- "summary": "Displays agent information in a grid layout"
208
+ "tagName": "forge-ai-artifact",
209
+ "customElement": true
201
210
  }
202
211
  ],
203
212
  "exports": [
204
213
  {
205
214
  "kind": "js",
206
- "name": "AiAgentInfoComponentTagName",
215
+ "name": "AiArtifactComponentTagName",
207
216
  "declaration": {
208
- "name": "AiAgentInfoComponentTagName",
209
- "module": "src/lib/ai-agent-info/ai-agent-info.ts"
217
+ "name": "AiArtifactComponentTagName",
218
+ "module": "src/lib/ai-artifact/ai-artifact.ts"
210
219
  }
211
220
  },
212
221
  {
213
222
  "kind": "js",
214
- "name": "AiAgentInfoComponent",
223
+ "name": "AiArtifactComponent",
215
224
  "declaration": {
216
- "name": "AiAgentInfoComponent",
217
- "module": "src/lib/ai-agent-info/ai-agent-info.ts"
225
+ "name": "AiArtifactComponent",
226
+ "module": "src/lib/ai-artifact/ai-artifact.ts"
218
227
  }
219
228
  },
220
229
  {
221
230
  "kind": "custom-element-definition",
222
231
  "declaration": {
223
- "name": "AiAgentInfoComponent",
224
- "module": "src/lib/ai-agent-info/ai-agent-info.ts"
232
+ "name": "AiArtifactComponent",
233
+ "module": "src/lib/ai-artifact/ai-artifact.ts"
225
234
  }
226
235
  }
227
236
  ]
228
237
  },
229
238
  {
230
239
  "kind": "javascript-module",
231
- "path": "src/lib/ai-artifact/ai-artifact.ts",
240
+ "path": "src/lib/ai-agent-info/ai-agent-info.ts",
232
241
  "declarations": [
233
242
  {
234
243
  "kind": "variable",
235
- "name": "AiArtifactComponentTagName",
244
+ "name": "AiAgentInfoComponentTagName",
236
245
  "type": {
237
246
  "text": "keyof HTMLElementTagNameMap"
238
247
  },
239
- "default": "'forge-ai-artifact'"
248
+ "default": "'forge-ai-agent-info'"
240
249
  },
241
250
  {
242
251
  "kind": "class",
243
252
  "description": "",
244
- "name": "AiArtifactComponent",
245
- "cssProperties": [
246
- {
247
- "description": "Surface color override for the toolbar (defaults to transparent)",
248
- "name": "--forge-theme-surface"
249
- }
250
- ],
251
- "slots": [
252
- {
253
- "description": "Content for the start (left) side of the toolbar, typically used for titles or headings",
254
- "name": "start"
255
- },
256
- {
257
- "description": "Action buttons for the end (right) side of the toolbar",
258
- "name": "actions"
259
- },
253
+ "name": "AiAgentInfoComponent",
254
+ "members": [
260
255
  {
261
- "description": "Main content area below the toolbar",
262
- "name": ""
256
+ "kind": "field",
257
+ "name": "agentInfo",
258
+ "type": {
259
+ "text": "AgentInfo | undefined"
260
+ },
261
+ "privacy": "public",
262
+ "description": "Agent information to display"
263
263
  }
264
264
  ],
265
- "members": [],
266
265
  "superclass": {
267
266
  "name": "LitElement",
268
267
  "package": "lit"
269
268
  },
270
- "tagName": "forge-ai-artifact",
271
- "customElement": true
269
+ "tagName": "forge-ai-agent-info",
270
+ "customElement": true,
271
+ "summary": "Displays agent information in a grid layout"
272
272
  }
273
273
  ],
274
274
  "exports": [
275
275
  {
276
276
  "kind": "js",
277
- "name": "AiArtifactComponentTagName",
277
+ "name": "AiAgentInfoComponentTagName",
278
278
  "declaration": {
279
- "name": "AiArtifactComponentTagName",
280
- "module": "src/lib/ai-artifact/ai-artifact.ts"
279
+ "name": "AiAgentInfoComponentTagName",
280
+ "module": "src/lib/ai-agent-info/ai-agent-info.ts"
281
281
  }
282
282
  },
283
283
  {
284
284
  "kind": "js",
285
- "name": "AiArtifactComponent",
285
+ "name": "AiAgentInfoComponent",
286
286
  "declaration": {
287
- "name": "AiArtifactComponent",
288
- "module": "src/lib/ai-artifact/ai-artifact.ts"
287
+ "name": "AiAgentInfoComponent",
288
+ "module": "src/lib/ai-agent-info/ai-agent-info.ts"
289
289
  }
290
290
  },
291
291
  {
292
292
  "kind": "custom-element-definition",
293
293
  "declaration": {
294
- "name": "AiArtifactComponent",
295
- "module": "src/lib/ai-artifact/ai-artifact.ts"
294
+ "name": "AiAgentInfoComponent",
295
+ "module": "src/lib/ai-agent-info/ai-agent-info.ts"
296
296
  }
297
297
  }
298
298
  ]
@@ -753,6 +753,17 @@
753
753
  "default": "'AI Assistant'",
754
754
  "description": "The title text to display in the header (default: 'AI Assistant')",
755
755
  "attribute": "title-text"
756
+ },
757
+ {
758
+ "kind": "method",
759
+ "name": "showAgentInfo",
760
+ "privacy": "public",
761
+ "return": {
762
+ "type": {
763
+ "text": "void"
764
+ }
765
+ },
766
+ "description": "Shows the agent info modal"
756
767
  }
757
768
  ],
758
769
  "events": [
@@ -2207,6 +2218,16 @@
2207
2218
  "text": "ToolDefinition | undefined"
2208
2219
  },
2209
2220
  "privacy": "public"
2221
+ },
2222
+ {
2223
+ "kind": "field",
2224
+ "name": "debugMode",
2225
+ "type": {
2226
+ "text": "boolean"
2227
+ },
2228
+ "privacy": "public",
2229
+ "default": "false",
2230
+ "attribute": "debug-mode"
2210
2231
  }
2211
2232
  ],
2212
2233
  "events": [
@@ -2217,6 +2238,16 @@
2217
2238
  }
2218
2239
  }
2219
2240
  ],
2241
+ "attributes": [
2242
+ {
2243
+ "name": "debug-mode",
2244
+ "type": {
2245
+ "text": "boolean"
2246
+ },
2247
+ "default": "false",
2248
+ "fieldName": "debugMode"
2249
+ }
2250
+ ],
2220
2251
  "superclass": {
2221
2252
  "name": "LitElement",
2222
2253
  "package": "lit"
@@ -2282,7 +2313,7 @@
2282
2313
  "kind": "field",
2283
2314
  "name": "adapter",
2284
2315
  "type": {
2285
- "text": "AgentAdapter | undefined"
2316
+ "text": "AgentAdapter"
2286
2317
  },
2287
2318
  "privacy": "public"
2288
2319
  },
@@ -2390,7 +2421,6 @@
2390
2421
  },
2391
2422
  "privacy": "public",
2392
2423
  "default": "'AI Assistant'",
2393
- "description": "The title text to display in the header (default: 'AI Assistant')",
2394
2424
  "attribute": "title-text"
2395
2425
  },
2396
2426
  {
@@ -2401,9 +2431,18 @@
2401
2431
  },
2402
2432
  "privacy": "public",
2403
2433
  "default": "2",
2404
- "description": "Controls the heading level for the title content (default: 2)",
2405
2434
  "attribute": "heading-level"
2406
2435
  },
2436
+ {
2437
+ "kind": "field",
2438
+ "name": "debugMode",
2439
+ "type": {
2440
+ "text": "boolean"
2441
+ },
2442
+ "privacy": "public",
2443
+ "default": "false",
2444
+ "attribute": "debug-mode"
2445
+ },
2407
2446
  {
2408
2447
  "kind": "method",
2409
2448
  "name": "clearMessages",
@@ -2680,7 +2719,6 @@
2680
2719
  "text": "string"
2681
2720
  },
2682
2721
  "default": "'AI Assistant'",
2683
- "description": "The title text to display in the header (default: 'AI Assistant')",
2684
2722
  "fieldName": "titleText"
2685
2723
  },
2686
2724
  {
@@ -2689,8 +2727,15 @@
2689
2727
  "text": "HeadingLevel"
2690
2728
  },
2691
2729
  "default": "2",
2692
- "description": "Controls the heading level for the title content (default: 2)",
2693
2730
  "fieldName": "headingLevel"
2731
+ },
2732
+ {
2733
+ "name": "debug-mode",
2734
+ "type": {
2735
+ "text": "boolean"
2736
+ },
2737
+ "default": "false",
2738
+ "fieldName": "debugMode"
2694
2739
  }
2695
2740
  ],
2696
2741
  "superclass": {
@@ -2700,6 +2745,10 @@
2700
2745
  "tagName": "forge-ai-chatbot",
2701
2746
  "customElement": true,
2702
2747
  "summary": "A complete, self-contained AI chatbot component that implements the AG-UI protocol using an adapter pattern."
2748
+ },
2749
+ {
2750
+ "kind": "variable",
2751
+ "name": "event"
2703
2752
  }
2704
2753
  ],
2705
2754
  "exports": [
@@ -3401,6 +3450,13 @@
3401
3450
  "type": {
3402
3451
  "text": "ChatMessage"
3403
3452
  }
3453
+ },
3454
+ {
3455
+ "name": "event",
3456
+ "optional": true,
3457
+ "type": {
3458
+ "text": "MessageStartEvent"
3459
+ }
3404
3460
  }
3405
3461
  ]
3406
3462
  },
@@ -3419,6 +3475,13 @@
3419
3475
  "type": {
3420
3476
  "text": "ToolCall"
3421
3477
  }
3478
+ },
3479
+ {
3480
+ "name": "event",
3481
+ "optional": true,
3482
+ "type": {
3483
+ "text": "ToolCallStartEvent"
3484
+ }
3422
3485
  }
3423
3486
  ]
3424
3487
  },
@@ -3443,6 +3506,13 @@
3443
3506
  "type": {
3444
3507
  "text": "Partial<ToolCall>"
3445
3508
  }
3509
+ },
3510
+ {
3511
+ "name": "eventData",
3512
+ "optional": true,
3513
+ "type": {
3514
+ "text": "{\n eventType: 'tool-call-args' | 'tool-call-end';\n event: ToolCallArgsEvent | ToolCallEndEvent;\n }"
3515
+ }
3446
3516
  }
3447
3517
  ]
3448
3518
  },
@@ -3467,6 +3537,13 @@
3467
3537
  "type": {
3468
3538
  "text": "string"
3469
3539
  }
3540
+ },
3541
+ {
3542
+ "name": "event",
3543
+ "optional": true,
3544
+ "type": {
3545
+ "text": "MessageDeltaEvent"
3546
+ }
3470
3547
  }
3471
3548
  ]
3472
3549
  },
@@ -3509,6 +3586,13 @@
3509
3586
  "type": {
3510
3587
  "text": "ChatMessage['status']"
3511
3588
  }
3589
+ },
3590
+ {
3591
+ "name": "event",
3592
+ "optional": true,
3593
+ "type": {
3594
+ "text": "MessageEndEvent"
3595
+ }
3512
3596
  }
3513
3597
  ]
3514
3598
  },
@@ -3590,6 +3674,13 @@
3590
3674
  "type": {
3591
3675
  "text": "unknown"
3592
3676
  }
3677
+ },
3678
+ {
3679
+ "name": "event",
3680
+ "optional": true,
3681
+ "type": {
3682
+ "text": "ToolResultEvent"
3683
+ }
3593
3684
  }
3594
3685
  ]
3595
3686
  }
@@ -3625,15 +3716,7 @@
3625
3716
  "text": "string"
3626
3717
  }
3627
3718
  },
3628
- "parameters": [
3629
- {
3630
- "name": "prefix",
3631
- "type": {
3632
- "text": "string"
3633
- }
3634
- }
3635
- ],
3636
- "description": "Generates a unique ID with a given prefix"
3719
+ "description": "Generates a unique ID using UUID v4"
3637
3720
  },
3638
3721
  {
3639
3722
  "kind": "function",
@@ -4067,17 +4150,9 @@
4067
4150
  "description": "",
4068
4151
  "name": "ForgeAiDropdownMenuItemComponent",
4069
4152
  "cssProperties": [
4070
- {
4071
- "description": "Delay before opening submenu on hover.",
4072
- "name": "--ai-dropdown-menu-item-submenu-open-delay"
4073
- },
4074
- {
4075
- "description": "Delay before closing submenu when mouse leaves.",
4076
- "name": "--ai-dropdown-menu-item-submenu-close-delay"
4077
- },
4078
4153
  {
4079
4154
  "description": "Size of selection and submenu icons.",
4080
- "name": "--ai-dropdown-menu-item-selection-icon-size"
4155
+ "name": "--forge-ai-dropdown-menu-item-selection-icon-size"
4081
4156
  }
4082
4157
  ],
4083
4158
  "slots": [
@@ -4334,27 +4409,19 @@
4334
4409
  "cssProperties": [
4335
4410
  {
4336
4411
  "description": "Minimum width of the dropdown menu.",
4337
- "name": "--ai-dropdown-menu-min-width"
4412
+ "name": "--forge-ai-dropdown-menu-min-width"
4338
4413
  },
4339
4414
  {
4340
4415
  "description": "Maximum width of the dropdown menu.",
4341
- "name": "--ai-dropdown-menu-max-width"
4416
+ "name": "--forge-ai-dropdown-menu-max-width"
4342
4417
  },
4343
4418
  {
4344
4419
  "description": "Maximum height of the dropdown menu.",
4345
- "name": "--ai-dropdown-menu-max-height"
4420
+ "name": "--forge-ai-dropdown-menu-max-height"
4346
4421
  },
4347
4422
  {
4348
4423
  "description": "Padding inside the dropdown menu.",
4349
- "name": "--ai-dropdown-menu-padding"
4350
- },
4351
- {
4352
- "description": "The width of the trigger button.",
4353
- "name": "--ai-dropdown-menu-trigger-width"
4354
- },
4355
- {
4356
- "description": "The height of the trigger button.",
4357
- "name": "--ai-dropdown-menu-trigger-height"
4424
+ "name": "--forge-ai-dropdown-menu-padding"
4358
4425
  }
4359
4426
  ],
4360
4427
  "slots": [
@@ -5151,6 +5218,68 @@
5151
5218
  }
5152
5219
  ]
5153
5220
  },
5221
+ {
5222
+ "kind": "javascript-module",
5223
+ "path": "src/lib/ai-event-stream-viewer/ai-event-stream-viewer.ts",
5224
+ "declarations": [
5225
+ {
5226
+ "kind": "variable",
5227
+ "name": "AiEventStreamViewerComponentTagName",
5228
+ "type": {
5229
+ "text": "keyof HTMLElementTagNameMap"
5230
+ },
5231
+ "default": "'forge-ai-event-stream-viewer'"
5232
+ },
5233
+ {
5234
+ "kind": "class",
5235
+ "description": "",
5236
+ "name": "AiEventStreamViewerComponent",
5237
+ "members": [
5238
+ {
5239
+ "kind": "field",
5240
+ "name": "events",
5241
+ "type": {
5242
+ "text": "StreamEvent[]"
5243
+ },
5244
+ "privacy": "public",
5245
+ "default": "[]"
5246
+ }
5247
+ ],
5248
+ "superclass": {
5249
+ "name": "LitElement",
5250
+ "package": "lit"
5251
+ },
5252
+ "tagName": "forge-ai-event-stream-viewer",
5253
+ "customElement": true,
5254
+ "summary": "Displays a timeline of adapter events with expandable JSON data."
5255
+ }
5256
+ ],
5257
+ "exports": [
5258
+ {
5259
+ "kind": "js",
5260
+ "name": "AiEventStreamViewerComponentTagName",
5261
+ "declaration": {
5262
+ "name": "AiEventStreamViewerComponentTagName",
5263
+ "module": "src/lib/ai-event-stream-viewer/ai-event-stream-viewer.ts"
5264
+ }
5265
+ },
5266
+ {
5267
+ "kind": "js",
5268
+ "name": "AiEventStreamViewerComponent",
5269
+ "declaration": {
5270
+ "name": "AiEventStreamViewerComponent",
5271
+ "module": "src/lib/ai-event-stream-viewer/ai-event-stream-viewer.ts"
5272
+ }
5273
+ },
5274
+ {
5275
+ "kind": "custom-element-definition",
5276
+ "declaration": {
5277
+ "name": "AiEventStreamViewerComponent",
5278
+ "module": "src/lib/ai-event-stream-viewer/ai-event-stream-viewer.ts"
5279
+ }
5280
+ }
5281
+ ]
5282
+ },
5154
5283
  {
5155
5284
  "kind": "javascript-module",
5156
5285
  "path": "src/lib/ai-fab/ai-fab.ts",
@@ -5261,17 +5390,7 @@
5261
5390
  "kind": "class",
5262
5391
  "description": "",
5263
5392
  "name": "AiFilePickerComponent",
5264
- "cssProperties": [
5265
- {
5266
- "description": "The width of the file picker button.",
5267
- "name": "--ai-file-picker-width"
5268
- },
5269
- {
5270
- "description": "The height of the file picker button.",
5271
- "name": "--ai-file-picker-height"
5272
- }
5273
- ],
5274
- "slots": [
5393
+ "slots": [
5275
5394
  {
5276
5395
  "description": "The default slot for button content when no file is selected.",
5277
5396
  "name": ""
@@ -5855,6 +5974,16 @@
5855
5974
  "default": "'on'",
5856
5975
  "attribute": "auto-scroll"
5857
5976
  },
5977
+ {
5978
+ "kind": "field",
5979
+ "name": "debugMode",
5980
+ "type": {
5981
+ "text": "boolean"
5982
+ },
5983
+ "privacy": "public",
5984
+ "default": "false",
5985
+ "attribute": "debug-mode"
5986
+ },
5858
5987
  {
5859
5988
  "kind": "method",
5860
5989
  "name": "scrollToBottom",
@@ -5929,6 +6058,14 @@
5929
6058
  },
5930
6059
  "default": "'on'",
5931
6060
  "fieldName": "autoScroll"
6061
+ },
6062
+ {
6063
+ "name": "debug-mode",
6064
+ "type": {
6065
+ "text": "boolean"
6066
+ },
6067
+ "default": "false",
6068
+ "fieldName": "debugMode"
5932
6069
  }
5933
6070
  ],
5934
6071
  "superclass": {
@@ -5966,6 +6103,81 @@
5966
6103
  }
5967
6104
  ]
5968
6105
  },
6106
+ {
6107
+ "kind": "javascript-module",
6108
+ "path": "src/lib/ai-icon-button/ai-icon-button.ts",
6109
+ "declarations": [
6110
+ {
6111
+ "kind": "variable",
6112
+ "name": "AiIconButtonComponentTagName",
6113
+ "type": {
6114
+ "text": "keyof HTMLElementTagNameMap"
6115
+ },
6116
+ "default": "'forge-ai-icon-button'"
6117
+ },
6118
+ {
6119
+ "kind": "class",
6120
+ "description": "",
6121
+ "name": "AiIconButtonComponent",
6122
+ "members": [
6123
+ {
6124
+ "kind": "field",
6125
+ "name": "disabled",
6126
+ "type": {
6127
+ "text": "boolean"
6128
+ },
6129
+ "privacy": "public",
6130
+ "default": "false",
6131
+ "description": "Whether the button is disabled",
6132
+ "attribute": "disabled",
6133
+ "reflects": true
6134
+ }
6135
+ ],
6136
+ "attributes": [
6137
+ {
6138
+ "name": "disabled",
6139
+ "type": {
6140
+ "text": "boolean"
6141
+ },
6142
+ "default": "false",
6143
+ "description": "Whether the button is disabled",
6144
+ "fieldName": "disabled"
6145
+ }
6146
+ ],
6147
+ "superclass": {
6148
+ "name": "LitElement",
6149
+ "package": "lit"
6150
+ },
6151
+ "tagName": "forge-ai-icon-button",
6152
+ "customElement": true
6153
+ }
6154
+ ],
6155
+ "exports": [
6156
+ {
6157
+ "kind": "js",
6158
+ "name": "AiIconButtonComponentTagName",
6159
+ "declaration": {
6160
+ "name": "AiIconButtonComponentTagName",
6161
+ "module": "src/lib/ai-icon-button/ai-icon-button.ts"
6162
+ }
6163
+ },
6164
+ {
6165
+ "kind": "js",
6166
+ "name": "AiIconButtonComponent",
6167
+ "declaration": {
6168
+ "name": "AiIconButtonComponent",
6169
+ "module": "src/lib/ai-icon-button/ai-icon-button.ts"
6170
+ }
6171
+ },
6172
+ {
6173
+ "kind": "custom-element-definition",
6174
+ "declaration": {
6175
+ "name": "AiIconButtonComponent",
6176
+ "module": "src/lib/ai-icon-button/ai-icon-button.ts"
6177
+ }
6178
+ }
6179
+ ]
6180
+ },
5969
6181
  {
5970
6182
  "kind": "javascript-module",
5971
6183
  "path": "src/lib/ai-modal/ai-modal.ts",
@@ -6221,6 +6433,38 @@
6221
6433
  "description": "Whether the component is in running state (shows stop button instead of send button)",
6222
6434
  "attribute": "running"
6223
6435
  },
6436
+ {
6437
+ "kind": "field",
6438
+ "name": "debugMode",
6439
+ "type": {
6440
+ "text": "boolean"
6441
+ },
6442
+ "privacy": "public",
6443
+ "default": "false",
6444
+ "description": "Whether debug mode is active (shows debug icon button)",
6445
+ "attribute": "debug-mode"
6446
+ },
6447
+ {
6448
+ "kind": "field",
6449
+ "name": "slashCommands",
6450
+ "type": {
6451
+ "text": "SlashCommand[]"
6452
+ },
6453
+ "privacy": "public",
6454
+ "default": "[]",
6455
+ "description": "Available slash commands"
6456
+ },
6457
+ {
6458
+ "kind": "method",
6459
+ "name": "closeSlashMenu",
6460
+ "privacy": "public",
6461
+ "return": {
6462
+ "type": {
6463
+ "text": "void"
6464
+ }
6465
+ },
6466
+ "description": "Closes the slash command menu"
6467
+ },
6224
6468
  {
6225
6469
  "kind": "method",
6226
6470
  "name": "focus",
@@ -6234,6 +6478,18 @@
6234
6478
  }
6235
6479
  ],
6236
6480
  "events": [
6481
+ {
6482
+ "name": "input",
6483
+ "type": {
6484
+ "text": "Event"
6485
+ }
6486
+ },
6487
+ {
6488
+ "name": "forge-ai-prompt-command",
6489
+ "type": {
6490
+ "text": "CustomEvent"
6491
+ }
6492
+ },
6237
6493
  {
6238
6494
  "type": {
6239
6495
  "text": "CustomEvent<ForgeAiPromptSendEventData>"
@@ -6261,6 +6517,13 @@
6261
6517
  },
6262
6518
  "description": "Fired when the stop button is clicked. Cancelable - if cancelled, running state remains true.",
6263
6519
  "name": "forge-ai-prompt-stop"
6520
+ },
6521
+ {
6522
+ "type": {
6523
+ "text": "CustomEvent<void>"
6524
+ },
6525
+ "description": "Fired when the debug icon button is clicked.",
6526
+ "name": "forge-ai-prompt-debug-toggle"
6264
6527
  }
6265
6528
  ],
6266
6529
  "attributes": [
@@ -6335,6 +6598,15 @@
6335
6598
  "default": "false",
6336
6599
  "description": "Whether the component is in running state (shows stop button instead of send button)",
6337
6600
  "fieldName": "running"
6601
+ },
6602
+ {
6603
+ "name": "debug-mode",
6604
+ "type": {
6605
+ "text": "boolean"
6606
+ },
6607
+ "default": "false",
6608
+ "description": "Whether debug mode is active (shows debug icon button)",
6609
+ "fieldName": "debugMode"
6338
6610
  }
6339
6611
  ],
6340
6612
  "superclass": {
@@ -6381,81 +6653,6 @@
6381
6653
  }
6382
6654
  ]
6383
6655
  },
6384
- {
6385
- "kind": "javascript-module",
6386
- "path": "src/lib/ai-reasoning/ai-reasoning.ts",
6387
- "declarations": [
6388
- {
6389
- "kind": "variable",
6390
- "name": "AiReasoningComponentTagName",
6391
- "type": {
6392
- "text": "keyof HTMLElementTagNameMap"
6393
- },
6394
- "default": "'forge-ai-reasoning'"
6395
- },
6396
- {
6397
- "kind": "class",
6398
- "description": "",
6399
- "name": "AiReasoningComponent",
6400
- "members": [
6401
- {
6402
- "kind": "field",
6403
- "name": "expanded",
6404
- "type": {
6405
- "text": "boolean"
6406
- },
6407
- "privacy": "public",
6408
- "default": "false",
6409
- "description": "Whether the reasoning is expanded",
6410
- "attribute": "expanded",
6411
- "reflects": true
6412
- }
6413
- ],
6414
- "attributes": [
6415
- {
6416
- "name": "expanded",
6417
- "type": {
6418
- "text": "boolean"
6419
- },
6420
- "default": "false",
6421
- "description": "Whether the reasoning is expanded",
6422
- "fieldName": "expanded"
6423
- }
6424
- ],
6425
- "superclass": {
6426
- "name": "LitElement",
6427
- "package": "lit"
6428
- },
6429
- "tagName": "forge-ai-reasoning",
6430
- "customElement": true
6431
- }
6432
- ],
6433
- "exports": [
6434
- {
6435
- "kind": "js",
6436
- "name": "AiReasoningComponentTagName",
6437
- "declaration": {
6438
- "name": "AiReasoningComponentTagName",
6439
- "module": "src/lib/ai-reasoning/ai-reasoning.ts"
6440
- }
6441
- },
6442
- {
6443
- "kind": "js",
6444
- "name": "AiReasoningComponent",
6445
- "declaration": {
6446
- "name": "AiReasoningComponent",
6447
- "module": "src/lib/ai-reasoning/ai-reasoning.ts"
6448
- }
6449
- },
6450
- {
6451
- "kind": "custom-element-definition",
6452
- "declaration": {
6453
- "name": "AiReasoningComponent",
6454
- "module": "src/lib/ai-reasoning/ai-reasoning.ts"
6455
- }
6456
- }
6457
- ]
6458
- },
6459
6656
  {
6460
6657
  "kind": "javascript-module",
6461
6658
  "path": "src/lib/ai-reasoning-header/ai-reasoning-header.ts",
@@ -6573,246 +6770,224 @@
6573
6770
  },
6574
6771
  {
6575
6772
  "kind": "javascript-module",
6576
- "path": "src/lib/ai-response-message/ai-response-message.ts",
6773
+ "path": "src/lib/ai-reasoning/ai-reasoning.ts",
6577
6774
  "declarations": [
6578
6775
  {
6579
6776
  "kind": "variable",
6580
- "name": "AiResponseMessageComponentTagName",
6777
+ "name": "AiReasoningComponentTagName",
6581
6778
  "type": {
6582
6779
  "text": "keyof HTMLElementTagNameMap"
6583
6780
  },
6584
- "default": "'forge-ai-response-message'"
6781
+ "default": "'forge-ai-reasoning'"
6585
6782
  },
6586
6783
  {
6587
6784
  "kind": "class",
6588
6785
  "description": "",
6589
- "name": "AiResponseMessageComponent",
6786
+ "name": "AiReasoningComponent",
6590
6787
  "members": [
6591
6788
  {
6592
6789
  "kind": "field",
6593
- "name": "complete",
6790
+ "name": "expanded",
6594
6791
  "type": {
6595
6792
  "text": "boolean"
6596
6793
  },
6597
6794
  "privacy": "public",
6598
6795
  "default": "false",
6599
- "description": "Whether the message is complete. Toolbar only shows when true.",
6600
- "attribute": "complete",
6796
+ "description": "Whether the reasoning is expanded",
6797
+ "attribute": "expanded",
6601
6798
  "reflects": true
6602
- },
6603
- {
6604
- "kind": "field",
6605
- "name": "enableReactions",
6606
- "type": {
6607
- "text": "boolean"
6608
- },
6609
- "privacy": "public",
6610
- "default": "false",
6611
- "attribute": "enable-reactions"
6612
6799
  }
6613
6800
  ],
6614
- "events": [
6615
- {
6616
- "type": {
6617
- "text": "CustomEvent<void>"
6618
- },
6619
- "description": "Fired when copy action is clicked.",
6620
- "name": "forge-ai-response-message-copy"
6621
- },
6622
- {
6623
- "type": {
6624
- "text": "CustomEvent<void>"
6625
- },
6626
- "description": "Fired when refresh action is clicked.",
6627
- "name": "forge-ai-response-message-refresh"
6628
- },
6629
- {
6630
- "type": {
6631
- "text": "CustomEvent<void>"
6632
- },
6633
- "description": "Fired when thumbs-up action is clicked.",
6634
- "name": "forge-ai-response-message-thumbs-up"
6635
- },
6801
+ "attributes": [
6636
6802
  {
6803
+ "name": "expanded",
6637
6804
  "type": {
6638
- "text": "CustomEvent<void>"
6805
+ "text": "boolean"
6639
6806
  },
6640
- "description": "Fired when thumbs-down action is clicked.",
6641
- "name": "forge-ai-response-message-thumbs-down"
6642
- }
6643
- ],
6644
- "attributes": [
6645
- {
6646
- "name": "complete",
6647
- "type": {
6648
- "text": "boolean"
6649
- },
6650
- "default": "false",
6651
- "description": "Whether the message is complete. Toolbar only shows when true.",
6652
- "fieldName": "complete"
6653
- },
6654
- {
6655
- "name": "enable-reactions",
6656
- "type": {
6657
- "text": "boolean"
6658
- },
6659
- "default": "false",
6660
- "fieldName": "enableReactions"
6807
+ "default": "false",
6808
+ "description": "Whether the reasoning is expanded",
6809
+ "fieldName": "expanded"
6661
6810
  }
6662
6811
  ],
6663
6812
  "superclass": {
6664
6813
  "name": "LitElement",
6665
6814
  "package": "lit"
6666
6815
  },
6667
- "tagName": "forge-ai-response-message",
6816
+ "tagName": "forge-ai-reasoning",
6668
6817
  "customElement": true
6669
6818
  }
6670
6819
  ],
6671
6820
  "exports": [
6672
6821
  {
6673
6822
  "kind": "js",
6674
- "name": "AiResponseMessageComponentTagName",
6823
+ "name": "AiReasoningComponentTagName",
6675
6824
  "declaration": {
6676
- "name": "AiResponseMessageComponentTagName",
6677
- "module": "src/lib/ai-response-message/ai-response-message.ts"
6825
+ "name": "AiReasoningComponentTagName",
6826
+ "module": "src/lib/ai-reasoning/ai-reasoning.ts"
6678
6827
  }
6679
6828
  },
6680
6829
  {
6681
6830
  "kind": "js",
6682
- "name": "AiResponseMessageComponent",
6831
+ "name": "AiReasoningComponent",
6683
6832
  "declaration": {
6684
- "name": "AiResponseMessageComponent",
6685
- "module": "src/lib/ai-response-message/ai-response-message.ts"
6833
+ "name": "AiReasoningComponent",
6834
+ "module": "src/lib/ai-reasoning/ai-reasoning.ts"
6686
6835
  }
6687
6836
  },
6688
6837
  {
6689
6838
  "kind": "custom-element-definition",
6690
6839
  "declaration": {
6691
- "name": "AiResponseMessageComponent",
6692
- "module": "src/lib/ai-response-message/ai-response-message.ts"
6840
+ "name": "AiReasoningComponent",
6841
+ "module": "src/lib/ai-reasoning/ai-reasoning.ts"
6693
6842
  }
6694
6843
  }
6695
6844
  ]
6696
6845
  },
6697
6846
  {
6698
6847
  "kind": "javascript-module",
6699
- "path": "src/lib/ai-sidebar/ai-sidebar.ts",
6848
+ "path": "src/lib/ai-response-message/ai-response-message.ts",
6700
6849
  "declarations": [
6701
6850
  {
6702
6851
  "kind": "variable",
6703
- "name": "AiSidebarComponentTagName",
6852
+ "name": "AiResponseMessageComponentTagName",
6704
6853
  "type": {
6705
6854
  "text": "keyof HTMLElementTagNameMap"
6706
6855
  },
6707
- "default": "'forge-ai-sidebar'"
6856
+ "default": "'forge-ai-response-message'"
6708
6857
  },
6709
6858
  {
6710
6859
  "kind": "class",
6711
6860
  "description": "",
6712
- "name": "AiSidebarComponent",
6713
- "slots": [
6714
- {
6715
- "description": "Default slot for sidebar content (typically ai-chat-interface)",
6716
- "name": ""
6717
- }
6718
- ],
6861
+ "name": "AiResponseMessageComponent",
6719
6862
  "members": [
6720
6863
  {
6721
6864
  "kind": "field",
6722
- "name": "open",
6865
+ "name": "complete",
6723
6866
  "type": {
6724
6867
  "text": "boolean"
6725
6868
  },
6726
6869
  "privacy": "public",
6727
6870
  "default": "false",
6728
- "description": "Indicates whether the sidebar is open.",
6729
- "attribute": "open"
6871
+ "description": "Whether the message is complete. Toolbar only shows when true.",
6872
+ "attribute": "complete",
6873
+ "reflects": true
6730
6874
  },
6731
6875
  {
6732
- "kind": "method",
6733
- "name": "show",
6734
- "privacy": "public",
6735
- "return": {
6736
- "type": {
6737
- "text": "void"
6738
- }
6876
+ "kind": "field",
6877
+ "name": "enableReactions",
6878
+ "type": {
6879
+ "text": "boolean"
6739
6880
  },
6740
- "description": "Opens the sidebar."
6881
+ "privacy": "public",
6882
+ "default": "false",
6883
+ "attribute": "enable-reactions"
6741
6884
  },
6742
6885
  {
6743
- "kind": "method",
6744
- "name": "close",
6745
- "privacy": "public",
6746
- "return": {
6747
- "type": {
6748
- "text": "void"
6749
- }
6886
+ "kind": "field",
6887
+ "name": "hasDebugData",
6888
+ "type": {
6889
+ "text": "boolean"
6750
6890
  },
6751
- "description": "Closes the sidebar."
6891
+ "privacy": "public",
6892
+ "default": "false",
6893
+ "attribute": "has-debug-data"
6752
6894
  },
6753
6895
  {
6754
- "kind": "method",
6755
- "name": "toggle",
6756
- "privacy": "public",
6757
- "return": {
6758
- "type": {
6759
- "text": "void"
6760
- }
6896
+ "kind": "field",
6897
+ "name": "eventStream",
6898
+ "type": {
6899
+ "text": "StreamEvent[] | undefined"
6761
6900
  },
6762
- "description": "Toggles the sidebar open state."
6901
+ "privacy": "public"
6763
6902
  }
6764
6903
  ],
6765
6904
  "events": [
6766
6905
  {
6767
- "description": "Fired when the sidebar is opened",
6768
- "name": "forge-ai-sidebar-open"
6906
+ "type": {
6907
+ "text": "CustomEvent<void>"
6908
+ },
6909
+ "description": "Fired when copy action is clicked.",
6910
+ "name": "forge-ai-response-message-copy"
6769
6911
  },
6770
6912
  {
6771
- "description": "Fired when the sidebar is closed",
6772
- "name": "forge-ai-sidebar-close"
6913
+ "type": {
6914
+ "text": "CustomEvent<void>"
6915
+ },
6916
+ "description": "Fired when refresh action is clicked.",
6917
+ "name": "forge-ai-response-message-refresh"
6918
+ },
6919
+ {
6920
+ "type": {
6921
+ "text": "CustomEvent<void>"
6922
+ },
6923
+ "description": "Fired when thumbs-up action is clicked.",
6924
+ "name": "forge-ai-response-message-thumbs-up"
6925
+ },
6926
+ {
6927
+ "type": {
6928
+ "text": "CustomEvent<void>"
6929
+ },
6930
+ "description": "Fired when thumbs-down action is clicked.",
6931
+ "name": "forge-ai-response-message-thumbs-down"
6773
6932
  }
6774
6933
  ],
6775
6934
  "attributes": [
6776
6935
  {
6777
- "name": "open",
6936
+ "name": "complete",
6778
6937
  "type": {
6779
6938
  "text": "boolean"
6780
6939
  },
6781
6940
  "default": "false",
6782
- "description": "Indicates whether the sidebar is open.",
6783
- "fieldName": "open"
6941
+ "description": "Whether the message is complete. Toolbar only shows when true.",
6942
+ "fieldName": "complete"
6943
+ },
6944
+ {
6945
+ "name": "enable-reactions",
6946
+ "type": {
6947
+ "text": "boolean"
6948
+ },
6949
+ "default": "false",
6950
+ "fieldName": "enableReactions"
6951
+ },
6952
+ {
6953
+ "name": "has-debug-data",
6954
+ "type": {
6955
+ "text": "boolean"
6956
+ },
6957
+ "default": "false",
6958
+ "fieldName": "hasDebugData"
6784
6959
  }
6785
6960
  ],
6786
6961
  "superclass": {
6787
6962
  "name": "LitElement",
6788
6963
  "package": "lit"
6789
6964
  },
6790
- "tagName": "forge-ai-sidebar",
6965
+ "tagName": "forge-ai-response-message",
6791
6966
  "customElement": true
6792
6967
  }
6793
6968
  ],
6794
6969
  "exports": [
6795
6970
  {
6796
6971
  "kind": "js",
6797
- "name": "AiSidebarComponentTagName",
6972
+ "name": "AiResponseMessageComponentTagName",
6798
6973
  "declaration": {
6799
- "name": "AiSidebarComponentTagName",
6800
- "module": "src/lib/ai-sidebar/ai-sidebar.ts"
6974
+ "name": "AiResponseMessageComponentTagName",
6975
+ "module": "src/lib/ai-response-message/ai-response-message.ts"
6801
6976
  }
6802
6977
  },
6803
6978
  {
6804
6979
  "kind": "js",
6805
- "name": "AiSidebarComponent",
6980
+ "name": "AiResponseMessageComponent",
6806
6981
  "declaration": {
6807
- "name": "AiSidebarComponent",
6808
- "module": "src/lib/ai-sidebar/ai-sidebar.ts"
6982
+ "name": "AiResponseMessageComponent",
6983
+ "module": "src/lib/ai-response-message/ai-response-message.ts"
6809
6984
  }
6810
6985
  },
6811
6986
  {
6812
6987
  "kind": "custom-element-definition",
6813
6988
  "declaration": {
6814
- "name": "AiSidebarComponent",
6815
- "module": "src/lib/ai-sidebar/ai-sidebar.ts"
6989
+ "name": "AiResponseMessageComponent",
6990
+ "module": "src/lib/ai-response-message/ai-response-message.ts"
6816
6991
  }
6817
6992
  }
6818
6993
  ]
@@ -6983,75 +7158,359 @@
6983
7158
  },
6984
7159
  {
6985
7160
  "kind": "javascript-module",
6986
- "path": "src/lib/ai-spinner/ai-spinner.ts",
7161
+ "path": "src/lib/ai-sidebar/ai-sidebar.ts",
6987
7162
  "declarations": [
6988
7163
  {
6989
7164
  "kind": "variable",
6990
- "name": "AiSpinnerComponentTagName",
7165
+ "name": "AiSidebarComponentTagName",
6991
7166
  "type": {
6992
7167
  "text": "keyof HTMLElementTagNameMap"
6993
7168
  },
6994
- "default": "'forge-ai-spinner'"
7169
+ "default": "'forge-ai-sidebar'"
6995
7170
  },
6996
7171
  {
6997
7172
  "kind": "class",
6998
7173
  "description": "",
6999
- "name": "AiSpinnerComponent",
7000
- "cssProperties": [
7001
- {
7002
- "description": "Color of the spinner indicator",
7003
- "name": "--forge-ai-spinner-color"
7004
- },
7174
+ "name": "AiSidebarComponent",
7175
+ "slots": [
7005
7176
  {
7006
- "description": "Color of the spinner track",
7007
- "name": "--forge-ai-spinner-track-color"
7177
+ "description": "Default slot for sidebar content (typically ai-chat-interface)",
7178
+ "name": ""
7008
7179
  }
7009
7180
  ],
7010
7181
  "members": [
7011
7182
  {
7012
7183
  "kind": "field",
7013
- "name": "size",
7184
+ "name": "open",
7014
7185
  "type": {
7015
- "text": "SpinnerSize"
7186
+ "text": "boolean"
7016
7187
  },
7017
7188
  "privacy": "public",
7018
- "default": "'medium'",
7019
- "attribute": "size"
7189
+ "default": "false",
7190
+ "description": "Indicates whether the sidebar is open.",
7191
+ "attribute": "open"
7192
+ },
7193
+ {
7194
+ "kind": "method",
7195
+ "name": "show",
7196
+ "privacy": "public",
7197
+ "return": {
7198
+ "type": {
7199
+ "text": "void"
7200
+ }
7201
+ },
7202
+ "description": "Opens the sidebar."
7203
+ },
7204
+ {
7205
+ "kind": "method",
7206
+ "name": "close",
7207
+ "privacy": "public",
7208
+ "return": {
7209
+ "type": {
7210
+ "text": "void"
7211
+ }
7212
+ },
7213
+ "description": "Closes the sidebar."
7214
+ },
7215
+ {
7216
+ "kind": "method",
7217
+ "name": "toggle",
7218
+ "privacy": "public",
7219
+ "return": {
7220
+ "type": {
7221
+ "text": "void"
7222
+ }
7223
+ },
7224
+ "description": "Toggles the sidebar open state."
7225
+ }
7226
+ ],
7227
+ "events": [
7228
+ {
7229
+ "description": "Fired when the sidebar is opened",
7230
+ "name": "forge-ai-sidebar-open"
7231
+ },
7232
+ {
7233
+ "description": "Fired when the sidebar is closed",
7234
+ "name": "forge-ai-sidebar-close"
7020
7235
  }
7021
7236
  ],
7022
7237
  "attributes": [
7023
7238
  {
7024
- "name": "size",
7239
+ "name": "open",
7025
7240
  "type": {
7026
- "text": "SpinnerSize"
7241
+ "text": "boolean"
7027
7242
  },
7028
- "default": "'medium'",
7029
- "fieldName": "size"
7243
+ "default": "false",
7244
+ "description": "Indicates whether the sidebar is open.",
7245
+ "fieldName": "open"
7030
7246
  }
7031
7247
  ],
7032
7248
  "superclass": {
7033
7249
  "name": "LitElement",
7034
7250
  "package": "lit"
7035
7251
  },
7036
- "tagName": "forge-ai-spinner",
7037
- "customElement": true,
7038
- "summary": "Indeterminate circular progress indicator."
7252
+ "tagName": "forge-ai-sidebar",
7253
+ "customElement": true
7039
7254
  }
7040
7255
  ],
7041
7256
  "exports": [
7042
7257
  {
7043
7258
  "kind": "js",
7044
- "name": "AiSpinnerComponentTagName",
7259
+ "name": "AiSidebarComponentTagName",
7045
7260
  "declaration": {
7046
- "name": "AiSpinnerComponentTagName",
7047
- "module": "src/lib/ai-spinner/ai-spinner.ts"
7261
+ "name": "AiSidebarComponentTagName",
7262
+ "module": "src/lib/ai-sidebar/ai-sidebar.ts"
7048
7263
  }
7049
7264
  },
7050
7265
  {
7051
7266
  "kind": "js",
7052
- "name": "AiSpinnerComponent",
7267
+ "name": "AiSidebarComponent",
7053
7268
  "declaration": {
7054
- "name": "AiSpinnerComponent",
7269
+ "name": "AiSidebarComponent",
7270
+ "module": "src/lib/ai-sidebar/ai-sidebar.ts"
7271
+ }
7272
+ },
7273
+ {
7274
+ "kind": "custom-element-definition",
7275
+ "declaration": {
7276
+ "name": "AiSidebarComponent",
7277
+ "module": "src/lib/ai-sidebar/ai-sidebar.ts"
7278
+ }
7279
+ }
7280
+ ]
7281
+ },
7282
+ {
7283
+ "kind": "javascript-module",
7284
+ "path": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts",
7285
+ "declarations": [
7286
+ {
7287
+ "kind": "variable",
7288
+ "name": "AiSlashCommandMenuComponentTagName",
7289
+ "type": {
7290
+ "text": "keyof HTMLElementTagNameMap"
7291
+ },
7292
+ "default": "'forge-ai-slash-command-menu'"
7293
+ },
7294
+ {
7295
+ "kind": "class",
7296
+ "description": "",
7297
+ "name": "AiSlashCommandMenuComponent",
7298
+ "members": [
7299
+ {
7300
+ "kind": "field",
7301
+ "name": "commands",
7302
+ "type": {
7303
+ "text": "SlashCommand[]"
7304
+ },
7305
+ "privacy": "public",
7306
+ "default": "[]"
7307
+ },
7308
+ {
7309
+ "kind": "field",
7310
+ "name": "filterQuery",
7311
+ "type": {
7312
+ "text": "string"
7313
+ },
7314
+ "privacy": "public",
7315
+ "default": "''",
7316
+ "attribute": "filter-query"
7317
+ },
7318
+ {
7319
+ "kind": "field",
7320
+ "name": "open",
7321
+ "type": {
7322
+ "text": "boolean"
7323
+ },
7324
+ "privacy": "public",
7325
+ "default": "false",
7326
+ "attribute": "open"
7327
+ },
7328
+ {
7329
+ "kind": "field",
7330
+ "name": "anchor",
7331
+ "type": {
7332
+ "text": "HTMLElement | null"
7333
+ },
7334
+ "privacy": "public",
7335
+ "default": "null"
7336
+ },
7337
+ {
7338
+ "kind": "field",
7339
+ "name": "widthReference",
7340
+ "type": {
7341
+ "text": "HTMLElement | null"
7342
+ },
7343
+ "privacy": "public",
7344
+ "default": "null"
7345
+ },
7346
+ {
7347
+ "kind": "method",
7348
+ "name": "handleKeyDown",
7349
+ "privacy": "public",
7350
+ "return": {
7351
+ "type": {
7352
+ "text": "boolean"
7353
+ }
7354
+ },
7355
+ "parameters": [
7356
+ {
7357
+ "name": "event",
7358
+ "type": {
7359
+ "text": "KeyboardEvent"
7360
+ }
7361
+ }
7362
+ ]
7363
+ },
7364
+ {
7365
+ "kind": "method",
7366
+ "name": "reset",
7367
+ "privacy": "public",
7368
+ "return": {
7369
+ "type": {
7370
+ "text": "void"
7371
+ }
7372
+ }
7373
+ }
7374
+ ],
7375
+ "events": [
7376
+ {
7377
+ "name": "forge-ai-slash-command-menu-select",
7378
+ "type": {
7379
+ "text": "CustomEvent<ForgeAiSlashCommandMenuSelectEventData>"
7380
+ },
7381
+ "description": "Fired when a command is selected."
7382
+ },
7383
+ {
7384
+ "name": "forge-ai-slash-command-menu-close",
7385
+ "type": {
7386
+ "text": "CustomEvent<void>"
7387
+ },
7388
+ "description": "Fired when the menu should close."
7389
+ }
7390
+ ],
7391
+ "attributes": [
7392
+ {
7393
+ "name": "filter-query",
7394
+ "type": {
7395
+ "text": "string"
7396
+ },
7397
+ "default": "''",
7398
+ "fieldName": "filterQuery"
7399
+ },
7400
+ {
7401
+ "name": "open",
7402
+ "type": {
7403
+ "text": "boolean"
7404
+ },
7405
+ "default": "false",
7406
+ "fieldName": "open"
7407
+ }
7408
+ ],
7409
+ "superclass": {
7410
+ "name": "LitElement",
7411
+ "package": "lit"
7412
+ },
7413
+ "tagName": "forge-ai-slash-command-menu",
7414
+ "customElement": true
7415
+ }
7416
+ ],
7417
+ "exports": [
7418
+ {
7419
+ "kind": "js",
7420
+ "name": "AiSlashCommandMenuComponentTagName",
7421
+ "declaration": {
7422
+ "name": "AiSlashCommandMenuComponentTagName",
7423
+ "module": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts"
7424
+ }
7425
+ },
7426
+ {
7427
+ "kind": "js",
7428
+ "name": "AiSlashCommandMenuComponent",
7429
+ "declaration": {
7430
+ "name": "AiSlashCommandMenuComponent",
7431
+ "module": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts"
7432
+ }
7433
+ },
7434
+ {
7435
+ "kind": "custom-element-definition",
7436
+ "declaration": {
7437
+ "name": "AiSlashCommandMenuComponent",
7438
+ "module": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts"
7439
+ }
7440
+ }
7441
+ ]
7442
+ },
7443
+ {
7444
+ "kind": "javascript-module",
7445
+ "path": "src/lib/ai-spinner/ai-spinner.ts",
7446
+ "declarations": [
7447
+ {
7448
+ "kind": "variable",
7449
+ "name": "AiSpinnerComponentTagName",
7450
+ "type": {
7451
+ "text": "keyof HTMLElementTagNameMap"
7452
+ },
7453
+ "default": "'forge-ai-spinner'"
7454
+ },
7455
+ {
7456
+ "kind": "class",
7457
+ "description": "",
7458
+ "name": "AiSpinnerComponent",
7459
+ "cssProperties": [
7460
+ {
7461
+ "description": "Color of the spinner indicator",
7462
+ "name": "--forge-ai-spinner-color"
7463
+ },
7464
+ {
7465
+ "description": "Color of the spinner track",
7466
+ "name": "--forge-ai-spinner-track-color"
7467
+ }
7468
+ ],
7469
+ "members": [
7470
+ {
7471
+ "kind": "field",
7472
+ "name": "size",
7473
+ "type": {
7474
+ "text": "SpinnerSize"
7475
+ },
7476
+ "privacy": "public",
7477
+ "default": "'medium'",
7478
+ "attribute": "size"
7479
+ }
7480
+ ],
7481
+ "attributes": [
7482
+ {
7483
+ "name": "size",
7484
+ "type": {
7485
+ "text": "SpinnerSize"
7486
+ },
7487
+ "default": "'medium'",
7488
+ "fieldName": "size"
7489
+ }
7490
+ ],
7491
+ "superclass": {
7492
+ "name": "LitElement",
7493
+ "package": "lit"
7494
+ },
7495
+ "tagName": "forge-ai-spinner",
7496
+ "customElement": true,
7497
+ "summary": "Indeterminate circular progress indicator."
7498
+ }
7499
+ ],
7500
+ "exports": [
7501
+ {
7502
+ "kind": "js",
7503
+ "name": "AiSpinnerComponentTagName",
7504
+ "declaration": {
7505
+ "name": "AiSpinnerComponentTagName",
7506
+ "module": "src/lib/ai-spinner/ai-spinner.ts"
7507
+ }
7508
+ },
7509
+ {
7510
+ "kind": "js",
7511
+ "name": "AiSpinnerComponent",
7512
+ "declaration": {
7513
+ "name": "AiSpinnerComponent",
7055
7514
  "module": "src/lib/ai-spinner/ai-spinner.ts"
7056
7515
  }
7057
7516
  },
@@ -7080,6 +7539,12 @@
7080
7539
  "kind": "class",
7081
7540
  "description": "",
7082
7541
  "name": "AiSuggestionsComponent",
7542
+ "cssProperties": [
7543
+ {
7544
+ "description": "The maximum width of the suggestion buttons in inline layout.",
7545
+ "name": "--forge-ai-suggestion-max-width"
7546
+ }
7547
+ ],
7083
7548
  "members": [
7084
7549
  {
7085
7550
  "kind": "field",
@@ -7183,7 +7648,64 @@
7183
7648
  "kind": "class",
7184
7649
  "description": "",
7185
7650
  "name": "AiThinkingIndicatorComponent",
7186
- "members": [],
7651
+ "members": [
7652
+ {
7653
+ "kind": "field",
7654
+ "name": "showText",
7655
+ "type": {
7656
+ "text": "boolean"
7657
+ },
7658
+ "privacy": "public",
7659
+ "default": "false",
7660
+ "attribute": "show-text"
7661
+ },
7662
+ {
7663
+ "kind": "field",
7664
+ "name": "initialDelay",
7665
+ "type": {
7666
+ "text": "number"
7667
+ },
7668
+ "privacy": "public",
7669
+ "default": "0",
7670
+ "attribute": "initial-delay"
7671
+ },
7672
+ {
7673
+ "kind": "field",
7674
+ "name": "cycleInterval",
7675
+ "type": {
7676
+ "text": "number"
7677
+ },
7678
+ "privacy": "public",
7679
+ "default": "5000",
7680
+ "attribute": "cycle-interval"
7681
+ }
7682
+ ],
7683
+ "attributes": [
7684
+ {
7685
+ "name": "show-text",
7686
+ "type": {
7687
+ "text": "boolean"
7688
+ },
7689
+ "default": "false",
7690
+ "fieldName": "showText"
7691
+ },
7692
+ {
7693
+ "name": "initial-delay",
7694
+ "type": {
7695
+ "text": "number"
7696
+ },
7697
+ "default": "0",
7698
+ "fieldName": "initialDelay"
7699
+ },
7700
+ {
7701
+ "name": "cycle-interval",
7702
+ "type": {
7703
+ "text": "number"
7704
+ },
7705
+ "default": "5000",
7706
+ "fieldName": "cycleInterval"
7707
+ }
7708
+ ],
7187
7709
  "superclass": {
7188
7710
  "name": "LitElement",
7189
7711
  "package": "lit"
@@ -7959,33 +8481,15 @@
7959
8481
  },
7960
8482
  {
7961
8483
  "kind": "javascript-module",
7962
- "path": "src/lib/core/overlay/overlay.ts",
8484
+ "path": "src/lib/core/popover/popover.ts",
7963
8485
  "declarations": [
7964
8486
  {
7965
8487
  "kind": "class",
7966
8488
  "description": "",
7967
- "name": "ForgeAiOverlayComponent",
7968
- "cssProperties": [
7969
- {
7970
- "description": "The maximum width of the overlay.",
7971
- "name": "--ai-overlay-max-width"
7972
- },
7973
- {
7974
- "description": "The maximum height of the overlay.",
7975
- "name": "--ai-overlay-max-height"
7976
- },
7977
- {
7978
- "description": "The minimum width of the overlay.",
7979
- "name": "--ai-overlay-min-width"
7980
- },
7981
- {
7982
- "description": "The minimum height of the overlay.",
7983
- "name": "--ai-overlay-min-height"
7984
- }
7985
- ],
8489
+ "name": "ForgeAiPopoverComponent",
7986
8490
  "slots": [
7987
8491
  {
7988
- "description": "The default slot for overlay content.",
8492
+ "description": "The default slot for popover content.",
7989
8493
  "name": ""
7990
8494
  }
7991
8495
  ],
@@ -7998,18 +8502,18 @@
7998
8502
  },
7999
8503
  "privacy": "public",
8000
8504
  "default": "null",
8001
- "description": "The anchor element to position the overlay relative to.",
8505
+ "description": "The anchor element to position the popover relative to.",
8002
8506
  "attribute": "anchor"
8003
8507
  },
8004
8508
  {
8005
8509
  "kind": "field",
8006
8510
  "name": "placement",
8007
8511
  "type": {
8008
- "text": "OverlayPlacement"
8512
+ "text": "PopoverPlacement"
8009
8513
  },
8010
8514
  "privacy": "public",
8011
8515
  "default": "'bottom-start'",
8012
- "description": "The placement of the overlay relative to the anchor.",
8516
+ "description": "The placement of the popover relative to the anchor.",
8013
8517
  "attribute": "placement"
8014
8518
  },
8015
8519
  {
@@ -8019,8 +8523,8 @@
8019
8523
  "text": "boolean"
8020
8524
  },
8021
8525
  "privacy": "public",
8022
- "default": "true",
8023
- "description": "Whether the overlay should flip to the opposite side when there's no space.",
8526
+ "default": "false",
8527
+ "description": "Whether the popover should flip to the opposite side when there's no space.",
8024
8528
  "attribute": "flip"
8025
8529
  },
8026
8530
  {
@@ -8031,7 +8535,7 @@
8031
8535
  },
8032
8536
  "privacy": "public",
8033
8537
  "default": "false",
8034
- "description": "Whether the overlay should shift to stay in view.",
8538
+ "description": "Whether the popover should shift to stay in view.",
8035
8539
  "attribute": "shift"
8036
8540
  },
8037
8541
  {
@@ -8042,20 +8546,31 @@
8042
8546
  },
8043
8547
  "privacy": "public",
8044
8548
  "default": "false",
8045
- "description": "Whether the overlay is open.",
8549
+ "description": "Whether the popover is open.",
8046
8550
  "attribute": "open",
8047
8551
  "reflects": true
8048
8552
  },
8049
8553
  {
8050
8554
  "kind": "field",
8051
- "name": "arrowElement",
8555
+ "name": "arrow",
8052
8556
  "type": {
8053
- "text": "HTMLElement | null"
8557
+ "text": "boolean"
8054
8558
  },
8055
8559
  "privacy": "public",
8056
- "default": "null",
8057
- "description": "The arrow element to position relative to the overlay.",
8058
- "attribute": "arrowElement"
8560
+ "default": "false",
8561
+ "description": "Whether to show an arrow pointing to the anchor element.",
8562
+ "attribute": "arrow"
8563
+ },
8564
+ {
8565
+ "kind": "field",
8566
+ "name": "offset",
8567
+ "type": {
8568
+ "text": "PopoverOffset | undefined"
8569
+ },
8570
+ "privacy": "public",
8571
+ "default": "undefined",
8572
+ "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.",
8573
+ "attribute": "offset"
8059
8574
  },
8060
8575
  {
8061
8576
  "kind": "field",
@@ -8065,7 +8580,7 @@
8065
8580
  },
8066
8581
  "privacy": "public",
8067
8582
  "default": "'auto'",
8068
- "description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
8583
+ "description": "The dismiss mode for the popover.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
8069
8584
  "attribute": "dismiss-mode"
8070
8585
  }
8071
8586
  ],
@@ -8076,16 +8591,16 @@
8076
8591
  "text": "Element | null"
8077
8592
  },
8078
8593
  "default": "null",
8079
- "description": "The anchor element to position the overlay relative to.",
8594
+ "description": "The anchor element to position the popover relative to.",
8080
8595
  "fieldName": "anchor"
8081
8596
  },
8082
8597
  {
8083
8598
  "name": "placement",
8084
8599
  "type": {
8085
- "text": "OverlayPlacement"
8600
+ "text": "PopoverPlacement"
8086
8601
  },
8087
8602
  "default": "'bottom-start'",
8088
- "description": "The placement of the overlay relative to the anchor.",
8603
+ "description": "The placement of the popover relative to the anchor.",
8089
8604
  "fieldName": "placement"
8090
8605
  },
8091
8606
  {
@@ -8093,8 +8608,8 @@
8093
8608
  "type": {
8094
8609
  "text": "boolean"
8095
8610
  },
8096
- "default": "true",
8097
- "description": "Whether the overlay should flip to the opposite side when there's no space.",
8611
+ "default": "false",
8612
+ "description": "Whether the popover should flip to the opposite side when there's no space.",
8098
8613
  "fieldName": "flip"
8099
8614
  },
8100
8615
  {
@@ -8103,26 +8618,35 @@
8103
8618
  "text": "boolean"
8104
8619
  },
8105
8620
  "default": "false",
8106
- "description": "Whether the overlay should shift to stay in view.",
8621
+ "description": "Whether the popover should shift to stay in view.",
8107
8622
  "fieldName": "shift"
8108
8623
  },
8109
8624
  {
8110
- "name": "open",
8625
+ "name": "open",
8626
+ "type": {
8627
+ "text": "boolean"
8628
+ },
8629
+ "default": "false",
8630
+ "description": "Whether the popover is open.",
8631
+ "fieldName": "open"
8632
+ },
8633
+ {
8634
+ "name": "arrow",
8111
8635
  "type": {
8112
8636
  "text": "boolean"
8113
8637
  },
8114
8638
  "default": "false",
8115
- "description": "Whether the overlay is open.",
8116
- "fieldName": "open"
8639
+ "description": "Whether to show an arrow pointing to the anchor element.",
8640
+ "fieldName": "arrow"
8117
8641
  },
8118
8642
  {
8119
- "name": "arrowElement",
8643
+ "name": "offset",
8120
8644
  "type": {
8121
- "text": "HTMLElement | null"
8645
+ "text": "PopoverOffset | undefined"
8122
8646
  },
8123
- "default": "null",
8124
- "description": "The arrow element to position relative to the overlay.",
8125
- "fieldName": "arrowElement"
8647
+ "default": "undefined",
8648
+ "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.",
8649
+ "fieldName": "offset"
8126
8650
  },
8127
8651
  {
8128
8652
  "name": "dismiss-mode",
@@ -8130,7 +8654,7 @@
8130
8654
  "text": "'auto' | 'manual'"
8131
8655
  },
8132
8656
  "default": "'auto'",
8133
- "description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
8657
+ "description": "The dismiss mode for the popover.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
8134
8658
  "fieldName": "dismissMode"
8135
8659
  }
8136
8660
  ],
@@ -8138,26 +8662,26 @@
8138
8662
  "name": "LitElement",
8139
8663
  "package": "lit"
8140
8664
  },
8141
- "summary": "A low-level overlay component for internal use within AI components.",
8142
- "tagName": "forge-ai-overlay",
8665
+ "summary": "A popover component that provides styled overlay functionality.",
8666
+ "tagName": "forge-ai-popover",
8143
8667
  "customElement": true
8144
8668
  }
8145
8669
  ],
8146
8670
  "exports": [
8147
8671
  {
8148
8672
  "kind": "js",
8149
- "name": "ForgeAiOverlayComponent",
8673
+ "name": "ForgeAiPopoverComponent",
8150
8674
  "declaration": {
8151
- "name": "ForgeAiOverlayComponent",
8152
- "module": "src/lib/core/overlay/overlay.ts"
8675
+ "name": "ForgeAiPopoverComponent",
8676
+ "module": "src/lib/core/popover/popover.ts"
8153
8677
  }
8154
8678
  },
8155
8679
  {
8156
8680
  "kind": "custom-element-definition",
8157
- "name": "forge-ai-overlay",
8681
+ "name": "forge-ai-popover",
8158
8682
  "declaration": {
8159
- "name": "ForgeAiOverlayComponent",
8160
- "module": "src/lib/core/overlay/overlay.ts"
8683
+ "name": "ForgeAiPopoverComponent",
8684
+ "module": "src/lib/core/popover/popover.ts"
8161
8685
  }
8162
8686
  }
8163
8687
  ]
@@ -8173,11 +8697,11 @@
8173
8697
  "cssProperties": [
8174
8698
  {
8175
8699
  "description": "The maximum width of the tooltip.",
8176
- "name": "--ai-tooltip-max-width"
8700
+ "name": "--forge-ai-tooltip-max-width"
8177
8701
  },
8178
8702
  {
8179
8703
  "description": "The z-index of the tooltip overlay.",
8180
- "name": "--ai-tooltip-z-index"
8704
+ "name": "--forge-ai-tooltip-z-index"
8181
8705
  }
8182
8706
  ],
8183
8707
  "slots": [
@@ -8394,33 +8918,15 @@
8394
8918
  },
8395
8919
  {
8396
8920
  "kind": "javascript-module",
8397
- "path": "src/lib/core/popover/popover.ts",
8921
+ "path": "src/lib/core/overlay/overlay.ts",
8398
8922
  "declarations": [
8399
8923
  {
8400
8924
  "kind": "class",
8401
8925
  "description": "",
8402
- "name": "ForgeAiPopoverComponent",
8403
- "cssProperties": [
8404
- {
8405
- "description": "The maximum width of the popover.",
8406
- "name": "--ai-popover-max-width"
8407
- },
8408
- {
8409
- "description": "The maximum height of the popover.",
8410
- "name": "--ai-popover-max-height"
8411
- },
8412
- {
8413
- "description": "The minimum width of the popover.",
8414
- "name": "--ai-popover-min-width"
8415
- },
8416
- {
8417
- "description": "The minimum height of the popover.",
8418
- "name": "--ai-popover-min-height"
8419
- }
8420
- ],
8926
+ "name": "ForgeAiOverlayComponent",
8421
8927
  "slots": [
8422
8928
  {
8423
- "description": "The default slot for popover content.",
8929
+ "description": "The default slot for overlay content.",
8424
8930
  "name": ""
8425
8931
  }
8426
8932
  ],
@@ -8433,166 +8939,350 @@
8433
8939
  },
8434
8940
  "privacy": "public",
8435
8941
  "default": "null",
8436
- "description": "The anchor element to position the popover relative to.",
8942
+ "description": "The anchor element to position the overlay relative to.",
8437
8943
  "attribute": "anchor"
8438
8944
  },
8439
8945
  {
8440
8946
  "kind": "field",
8441
8947
  "name": "placement",
8442
8948
  "type": {
8443
- "text": "PopoverPlacement"
8949
+ "text": "OverlayPlacement"
8444
8950
  },
8445
8951
  "privacy": "public",
8446
8952
  "default": "'bottom-start'",
8447
- "description": "The placement of the popover relative to the anchor.",
8953
+ "description": "The placement of the overlay relative to the anchor.",
8448
8954
  "attribute": "placement"
8449
8955
  },
8450
8956
  {
8451
8957
  "kind": "field",
8452
- "name": "flip",
8958
+ "name": "flip",
8959
+ "type": {
8960
+ "text": "boolean"
8961
+ },
8962
+ "privacy": "public",
8963
+ "default": "true",
8964
+ "description": "Whether the overlay should flip to the opposite side when there's no space.",
8965
+ "attribute": "flip"
8966
+ },
8967
+ {
8968
+ "kind": "field",
8969
+ "name": "shift",
8970
+ "type": {
8971
+ "text": "boolean"
8972
+ },
8973
+ "privacy": "public",
8974
+ "default": "false",
8975
+ "description": "Whether the overlay should shift to stay in view.",
8976
+ "attribute": "shift"
8977
+ },
8978
+ {
8979
+ "kind": "field",
8980
+ "name": "open",
8981
+ "type": {
8982
+ "text": "boolean"
8983
+ },
8984
+ "privacy": "public",
8985
+ "default": "false",
8986
+ "description": "Whether the overlay is open.",
8987
+ "attribute": "open",
8988
+ "reflects": true
8989
+ },
8990
+ {
8991
+ "kind": "field",
8992
+ "name": "arrowElement",
8993
+ "type": {
8994
+ "text": "HTMLElement | null"
8995
+ },
8996
+ "privacy": "public",
8997
+ "default": "null",
8998
+ "description": "The arrow element to position relative to the overlay.",
8999
+ "attribute": "arrowElement"
9000
+ },
9001
+ {
9002
+ "kind": "field",
9003
+ "name": "offset",
9004
+ "type": {
9005
+ "text": "OverlayOffset | undefined"
9006
+ },
9007
+ "privacy": "public",
9008
+ "default": "undefined",
9009
+ "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.",
9010
+ "attribute": "offset"
9011
+ },
9012
+ {
9013
+ "kind": "field",
9014
+ "name": "dismissMode",
9015
+ "type": {
9016
+ "text": "'auto' | 'manual'"
9017
+ },
9018
+ "privacy": "public",
9019
+ "default": "'auto'",
9020
+ "description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
9021
+ "attribute": "dismiss-mode"
9022
+ }
9023
+ ],
9024
+ "attributes": [
9025
+ {
9026
+ "name": "anchor",
9027
+ "type": {
9028
+ "text": "Element | null"
9029
+ },
9030
+ "default": "null",
9031
+ "description": "The anchor element to position the overlay relative to.",
9032
+ "fieldName": "anchor"
9033
+ },
9034
+ {
9035
+ "name": "placement",
9036
+ "type": {
9037
+ "text": "OverlayPlacement"
9038
+ },
9039
+ "default": "'bottom-start'",
9040
+ "description": "The placement of the overlay relative to the anchor.",
9041
+ "fieldName": "placement"
9042
+ },
9043
+ {
9044
+ "name": "flip",
9045
+ "type": {
9046
+ "text": "boolean"
9047
+ },
9048
+ "default": "true",
9049
+ "description": "Whether the overlay should flip to the opposite side when there's no space.",
9050
+ "fieldName": "flip"
9051
+ },
9052
+ {
9053
+ "name": "shift",
9054
+ "type": {
9055
+ "text": "boolean"
9056
+ },
9057
+ "default": "false",
9058
+ "description": "Whether the overlay should shift to stay in view.",
9059
+ "fieldName": "shift"
9060
+ },
9061
+ {
9062
+ "name": "open",
9063
+ "type": {
9064
+ "text": "boolean"
9065
+ },
9066
+ "default": "false",
9067
+ "description": "Whether the overlay is open.",
9068
+ "fieldName": "open"
9069
+ },
9070
+ {
9071
+ "name": "arrowElement",
9072
+ "type": {
9073
+ "text": "HTMLElement | null"
9074
+ },
9075
+ "default": "null",
9076
+ "description": "The arrow element to position relative to the overlay.",
9077
+ "fieldName": "arrowElement"
9078
+ },
9079
+ {
9080
+ "name": "offset",
9081
+ "type": {
9082
+ "text": "OverlayOffset | undefined"
9083
+ },
9084
+ "default": "undefined",
9085
+ "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.",
9086
+ "fieldName": "offset"
9087
+ },
9088
+ {
9089
+ "name": "dismiss-mode",
9090
+ "type": {
9091
+ "text": "'auto' | 'manual'"
9092
+ },
9093
+ "default": "'auto'",
9094
+ "description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
9095
+ "fieldName": "dismissMode"
9096
+ }
9097
+ ],
9098
+ "superclass": {
9099
+ "name": "LitElement",
9100
+ "package": "lit"
9101
+ },
9102
+ "summary": "A low-level overlay component for internal use within AI components.",
9103
+ "tagName": "forge-ai-overlay",
9104
+ "customElement": true
9105
+ }
9106
+ ],
9107
+ "exports": [
9108
+ {
9109
+ "kind": "js",
9110
+ "name": "ForgeAiOverlayComponent",
9111
+ "declaration": {
9112
+ "name": "ForgeAiOverlayComponent",
9113
+ "module": "src/lib/core/overlay/overlay.ts"
9114
+ }
9115
+ },
9116
+ {
9117
+ "kind": "custom-element-definition",
9118
+ "name": "forge-ai-overlay",
9119
+ "declaration": {
9120
+ "name": "ForgeAiOverlayComponent",
9121
+ "module": "src/lib/core/overlay/overlay.ts"
9122
+ }
9123
+ }
9124
+ ]
9125
+ },
9126
+ {
9127
+ "kind": "javascript-module",
9128
+ "path": "src/lib/tools/ai-data-table/ai-data-table-definition.ts",
9129
+ "declarations": [
9130
+ {
9131
+ "kind": "variable",
9132
+ "name": "displayDataTableTool",
9133
+ "type": {
9134
+ "text": "ToolDefinition"
9135
+ },
9136
+ "default": "{ name: 'displayDataTable', displayName: 'Display Data Table', description: 'Display tabular data in a formatted table with headers and rows. Use this tool when you want to present structured data, lists where there are 2 or more columns, statistics, or any information that works well in a table format.', parameters: { type: 'object' as const, properties: { title: { type: 'string', description: 'Table title or caption displayed above the data.' }, headers: { type: 'array', items: { type: 'string' }, description: 'Column names displayed as table headers. Order matches the row data order.' }, maxNumberOfRows: { type: 'number', description: 'Limit total rows shown. Useful for large datasets to prevent overwhelming display.' }, rows: { type: 'array', items: { type: 'array', items: { type: ['string', 'number'] } }, description: 'Data rows where each row is an array of values matching header order.' } }, required: ['headers', 'rows'] }, renderer: createToolRenderer({ elementTag: 'forge-ai-tool-data-table' }) }"
9137
+ }
9138
+ ],
9139
+ "exports": [
9140
+ {
9141
+ "kind": "js",
9142
+ "name": "displayDataTableTool",
9143
+ "declaration": {
9144
+ "name": "displayDataTableTool",
9145
+ "module": "src/lib/tools/ai-data-table/ai-data-table-definition.ts"
9146
+ }
9147
+ }
9148
+ ]
9149
+ },
9150
+ {
9151
+ "kind": "javascript-module",
9152
+ "path": "src/lib/tools/ai-data-table/ai-data-table.ts",
9153
+ "declarations": [
9154
+ {
9155
+ "kind": "class",
9156
+ "description": "Data table component tool renderer for displaying tabular data with pagination and filtering.",
9157
+ "name": "DataTableToolElement",
9158
+ "members": [
9159
+ {
9160
+ "kind": "field",
9161
+ "name": "toolCall",
9162
+ "type": {
9163
+ "text": "ToolCall<TableData>"
9164
+ },
9165
+ "privacy": "public",
9166
+ "description": "Tool call data containing table configuration and data"
9167
+ }
9168
+ ],
9169
+ "superclass": {
9170
+ "name": "LitElement",
9171
+ "package": "lit"
9172
+ },
9173
+ "tagName": "forge-ai-tool-data-table",
9174
+ "customElement": true
9175
+ }
9176
+ ],
9177
+ "exports": [
9178
+ {
9179
+ "kind": "custom-element-definition",
9180
+ "name": "forge-ai-tool-data-table",
9181
+ "declaration": {
9182
+ "name": "DataTableToolElement",
9183
+ "module": "src/lib/tools/ai-data-table/ai-data-table.ts"
9184
+ }
9185
+ }
9186
+ ]
9187
+ },
9188
+ {
9189
+ "kind": "javascript-module",
9190
+ "path": "src/lib/tools/ai-paginator/ai-paginator.ts",
9191
+ "declarations": [
9192
+ {
9193
+ "kind": "class",
9194
+ "description": "",
9195
+ "name": "AiPaginator",
9196
+ "members": [
9197
+ {
9198
+ "kind": "field",
9199
+ "name": "currentPage",
8453
9200
  "type": {
8454
- "text": "boolean"
9201
+ "text": "number"
8455
9202
  },
8456
9203
  "privacy": "public",
8457
- "default": "false",
8458
- "description": "Whether the popover should flip to the opposite side when there's no space.",
8459
- "attribute": "flip"
9204
+ "default": "1",
9205
+ "attribute": "current-page"
8460
9206
  },
8461
9207
  {
8462
9208
  "kind": "field",
8463
- "name": "shift",
9209
+ "name": "totalPages",
8464
9210
  "type": {
8465
- "text": "boolean"
9211
+ "text": "number"
8466
9212
  },
8467
9213
  "privacy": "public",
8468
- "default": "false",
8469
- "description": "Whether the popover should shift to stay in view.",
8470
- "attribute": "shift"
9214
+ "default": "1",
9215
+ "attribute": "total-pages"
8471
9216
  },
8472
9217
  {
8473
9218
  "kind": "field",
8474
- "name": "open",
9219
+ "name": "disabled",
8475
9220
  "type": {
8476
9221
  "text": "boolean"
8477
9222
  },
8478
9223
  "privacy": "public",
8479
9224
  "default": "false",
8480
- "description": "Whether the popover is open.",
8481
- "attribute": "open",
9225
+ "attribute": "disabled",
8482
9226
  "reflects": true
8483
- },
8484
- {
8485
- "kind": "field",
8486
- "name": "arrow",
8487
- "type": {
8488
- "text": "boolean"
8489
- },
8490
- "privacy": "public",
8491
- "default": "false",
8492
- "description": "Whether to show an arrow pointing to the anchor element.",
8493
- "attribute": "arrow"
8494
- },
9227
+ }
9228
+ ],
9229
+ "events": [
8495
9230
  {
8496
- "kind": "field",
8497
- "name": "dismissMode",
9231
+ "name": "page-change",
8498
9232
  "type": {
8499
- "text": "'auto' | 'manual'"
8500
- },
8501
- "privacy": "public",
8502
- "default": "'auto'",
8503
- "description": "The dismiss mode for the popover.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
8504
- "attribute": "dismiss-mode"
9233
+ "text": "CustomEvent"
9234
+ }
8505
9235
  }
8506
9236
  ],
8507
9237
  "attributes": [
8508
9238
  {
8509
- "name": "anchor",
8510
- "type": {
8511
- "text": "Element | null"
8512
- },
8513
- "default": "null",
8514
- "description": "The anchor element to position the popover relative to.",
8515
- "fieldName": "anchor"
8516
- },
8517
- {
8518
- "name": "placement",
8519
- "type": {
8520
- "text": "PopoverPlacement"
8521
- },
8522
- "default": "'bottom-start'",
8523
- "description": "The placement of the popover relative to the anchor.",
8524
- "fieldName": "placement"
8525
- },
8526
- {
8527
- "name": "flip",
8528
- "type": {
8529
- "text": "boolean"
8530
- },
8531
- "default": "false",
8532
- "description": "Whether the popover should flip to the opposite side when there's no space.",
8533
- "fieldName": "flip"
8534
- },
8535
- {
8536
- "name": "shift",
9239
+ "name": "current-page",
8537
9240
  "type": {
8538
- "text": "boolean"
9241
+ "text": "number"
8539
9242
  },
8540
- "default": "false",
8541
- "description": "Whether the popover should shift to stay in view.",
8542
- "fieldName": "shift"
9243
+ "default": "1",
9244
+ "fieldName": "currentPage"
8543
9245
  },
8544
9246
  {
8545
- "name": "open",
9247
+ "name": "total-pages",
8546
9248
  "type": {
8547
- "text": "boolean"
9249
+ "text": "number"
8548
9250
  },
8549
- "default": "false",
8550
- "description": "Whether the popover is open.",
8551
- "fieldName": "open"
9251
+ "default": "1",
9252
+ "fieldName": "totalPages"
8552
9253
  },
8553
9254
  {
8554
- "name": "arrow",
9255
+ "name": "disabled",
8555
9256
  "type": {
8556
9257
  "text": "boolean"
8557
9258
  },
8558
9259
  "default": "false",
8559
- "description": "Whether to show an arrow pointing to the anchor element.",
8560
- "fieldName": "arrow"
8561
- },
8562
- {
8563
- "name": "dismiss-mode",
8564
- "type": {
8565
- "text": "'auto' | 'manual'"
8566
- },
8567
- "default": "'auto'",
8568
- "description": "The dismiss mode for the popover.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
8569
- "fieldName": "dismissMode"
9260
+ "fieldName": "disabled"
8570
9261
  }
8571
9262
  ],
8572
9263
  "superclass": {
8573
9264
  "name": "LitElement",
8574
9265
  "package": "lit"
8575
9266
  },
8576
- "summary": "A popover component that provides styled overlay functionality.",
8577
- "tagName": "forge-ai-popover",
9267
+ "tagName": "forge-ai-paginator",
8578
9268
  "customElement": true
8579
9269
  }
8580
9270
  ],
8581
9271
  "exports": [
8582
9272
  {
8583
9273
  "kind": "js",
8584
- "name": "ForgeAiPopoverComponent",
9274
+ "name": "AiPaginator",
8585
9275
  "declaration": {
8586
- "name": "ForgeAiPopoverComponent",
8587
- "module": "src/lib/core/popover/popover.ts"
9276
+ "name": "AiPaginator",
9277
+ "module": "src/lib/tools/ai-paginator/ai-paginator.ts"
8588
9278
  }
8589
9279
  },
8590
9280
  {
8591
9281
  "kind": "custom-element-definition",
8592
- "name": "forge-ai-popover",
9282
+ "name": "forge-ai-paginator",
8593
9283
  "declaration": {
8594
- "name": "ForgeAiPopoverComponent",
8595
- "module": "src/lib/core/popover/popover.ts"
9284
+ "name": "AiPaginator",
9285
+ "module": "src/lib/tools/ai-paginator/ai-paginator.ts"
8596
9286
  }
8597
9287
  }
8598
9288
  ]
@@ -8616,6 +9306,10 @@
8616
9306
  "path": "src/lib/ai-actions-toolbar/ai-actions-toolbar.ts",
8617
9307
  "lineNumber": 41
8618
9308
  },
9309
+ "AiArtifactComponent": {
9310
+ "path": "src/lib/ai-artifact/ai-artifact.ts",
9311
+ "lineNumber": 23
9312
+ },
8619
9313
  "AgentInfo": {
8620
9314
  "path": "src/lib/ai-chat-header/ai-chat-header.ts",
8621
9315
  "lineNumber": 39
@@ -8624,10 +9318,6 @@
8624
9318
  "path": "src/lib/ai-agent-info/ai-agent-info.ts",
8625
9319
  "lineNumber": 29
8626
9320
  },
8627
- "AiArtifactComponent": {
8628
- "path": "src/lib/ai-artifact/ai-artifact.ts",
8629
- "lineNumber": 23
8630
- },
8631
9321
  "ForgeAiAttachmentRemoveEventData": {
8632
9322
  "path": "src/lib/ai-attachment/ai-attachment.ts",
8633
9323
  "lineNumber": 19
@@ -8673,56 +9363,56 @@
8673
9363
  "lineNumber": 30
8674
9364
  },
8675
9365
  "MessageStartEvent": {
8676
- "path": "src/lib/ai-chatbot/agent-adapter.ts",
8677
- "lineNumber": 4
9366
+ "path": "src/lib/ai-chatbot/types.ts",
9367
+ "lineNumber": 75
8678
9368
  },
8679
9369
  "MessageDeltaEvent": {
8680
- "path": "src/lib/ai-chatbot/agent-adapter.ts",
8681
- "lineNumber": 8
9370
+ "path": "src/lib/ai-chatbot/types.ts",
9371
+ "lineNumber": 79
8682
9372
  },
8683
9373
  "MessageEndEvent": {
8684
- "path": "src/lib/ai-chatbot/agent-adapter.ts",
8685
- "lineNumber": 13
9374
+ "path": "src/lib/ai-chatbot/types.ts",
9375
+ "lineNumber": 84
8686
9376
  },
8687
9377
  "ToolCallEvent": {
8688
9378
  "path": "src/lib/ai-chatbot/agent-adapter.ts",
8689
- "lineNumber": 17
9379
+ "lineNumber": 20
8690
9380
  },
8691
9381
  "ToolCallStartEvent": {
8692
- "path": "src/lib/ai-chatbot/agent-adapter.ts",
8693
- "lineNumber": 24
9382
+ "path": "src/lib/ai-chatbot/types.ts",
9383
+ "lineNumber": 88
8694
9384
  },
8695
9385
  "ToolCallArgsEvent": {
8696
- "path": "src/lib/ai-chatbot/agent-adapter.ts",
8697
- "lineNumber": 30
9386
+ "path": "src/lib/ai-chatbot/types.ts",
9387
+ "lineNumber": 94
8698
9388
  },
8699
9389
  "ToolCallEndEvent": {
8700
- "path": "src/lib/ai-chatbot/agent-adapter.ts",
8701
- "lineNumber": 38
9390
+ "path": "src/lib/ai-chatbot/types.ts",
9391
+ "lineNumber": 102
8702
9392
  },
8703
9393
  "ToolResultEvent": {
8704
- "path": "src/lib/ai-chatbot/agent-adapter.ts",
8705
- "lineNumber": 45
9394
+ "path": "src/lib/ai-chatbot/types.ts",
9395
+ "lineNumber": 109
8706
9396
  },
8707
9397
  "AdapterState": {
8708
9398
  "path": "src/lib/ai-chatbot/agent-adapter.ts",
8709
- "lineNumber": 51
9399
+ "lineNumber": 59
8710
9400
  },
8711
9401
  "FileUploadEvent": {
8712
9402
  "path": "src/lib/ai-chatbot/agent-adapter.ts",
8713
- "lineNumber": 57
9403
+ "lineNumber": 65
8714
9404
  },
8715
9405
  "FileRemoveEvent": {
8716
9406
  "path": "src/lib/ai-chatbot/types.ts",
8717
- "lineNumber": 108
9407
+ "lineNumber": 182
8718
9408
  },
8719
9409
  "ErrorEvent": {
8720
9410
  "path": "src/lib/ai-chatbot/agent-adapter.ts",
8721
- "lineNumber": 67
9411
+ "lineNumber": 75
8722
9412
  },
8723
9413
  "AgentAdapter": {
8724
9414
  "path": "src/lib/ai-chatbot/agent-adapter.ts",
8725
- "lineNumber": 71
9415
+ "lineNumber": 79
8726
9416
  },
8727
9417
  "AgentRunnerConfig": {
8728
9418
  "path": "src/lib/ai-chatbot/agent-runner.ts",
@@ -8742,27 +9432,27 @@
8742
9432
  },
8743
9433
  "AiChatbotToolCallComponent": {
8744
9434
  "path": "src/lib/ai-chatbot/ai-chatbot-tool-call.ts",
8745
- "lineNumber": 23
9435
+ "lineNumber": 25
8746
9436
  },
8747
9437
  "ForgeAiChatbotMessageEventData": {
8748
9438
  "path": "src/lib/ai-chatbot/ai-chatbot.ts",
8749
- "lineNumber": 78
9439
+ "lineNumber": 81
8750
9440
  },
8751
9441
  "ForgeAiChatbotToolCallEventData": {
8752
9442
  "path": "src/lib/ai-chatbot/ai-chatbot.ts",
8753
- "lineNumber": 82
9443
+ "lineNumber": 85
8754
9444
  },
8755
9445
  "ForgeAiChatbotErrorEventData": {
8756
9446
  "path": "src/lib/ai-chatbot/ai-chatbot.ts",
8757
- "lineNumber": 88
9447
+ "lineNumber": 91
8758
9448
  },
8759
9449
  "ForgeAiChatbotFileRemoveEventData": {
8760
9450
  "path": "src/lib/ai-chatbot/ai-chatbot.ts",
8761
- "lineNumber": 92
9451
+ "lineNumber": 95
8762
9452
  },
8763
9453
  "FeatureToggle": {
8764
9454
  "path": "src/lib/ai-chatbot/ai-chatbot.ts",
8765
- "lineNumber": 101
9455
+ "lineNumber": 104
8766
9456
  },
8767
9457
  "AiChatbotComponent": {
8768
9458
  "path": "src/lib/ai-chatbot/ai-chatbot.ts",
@@ -8774,11 +9464,11 @@
8774
9464
  },
8775
9465
  "CreateToolRendererFunctionConfig": {
8776
9466
  "path": "src/lib/ai-chatbot/create-tool-renderer.ts",
8777
- "lineNumber": 9
9467
+ "lineNumber": 7
8778
9468
  },
8779
9469
  "CreateToolRendererConfig": {
8780
9470
  "path": "src/lib/ai-chatbot/create-tool-renderer.ts",
8781
- "lineNumber": 14
9471
+ "lineNumber": 11
8782
9472
  },
8783
9473
  "Subscription": {
8784
9474
  "path": "src/lib/ai-chatbot/event-emitter.ts",
@@ -8814,71 +9504,95 @@
8814
9504
  },
8815
9505
  "MessageStateControllerConfig": {
8816
9506
  "path": "src/lib/ai-chatbot/message-state-controller.ts",
8817
- "lineNumber": 4
9507
+ "lineNumber": 13
8818
9508
  },
8819
9509
  "MessageStateController": {
8820
9510
  "path": "src/lib/ai-chatbot/message-state-controller.ts",
8821
- "lineNumber": 17
9511
+ "lineNumber": 26
8822
9512
  },
8823
9513
  "HeadingLevel": {
8824
9514
  "path": "src/lib/ai-chatbot/types.ts",
8825
9515
  "lineNumber": 4
8826
9516
  },
8827
- "ToolRenderer": {
9517
+ "SlashCommandId": {
8828
9518
  "path": "src/lib/ai-chatbot/types.ts",
8829
9519
  "lineNumber": 6
8830
9520
  },
9521
+ "SlashCommandGroup": {
9522
+ "path": "src/lib/ai-chatbot/types.ts",
9523
+ "lineNumber": 8
9524
+ },
9525
+ "SlashCommand": {
9526
+ "path": "src/lib/ai-chatbot/types.ts",
9527
+ "lineNumber": 10
9528
+ },
9529
+ "ForgeAiSlashCommandMenuSelectEventData": {
9530
+ "path": "src/lib/ai-chatbot/types.ts",
9531
+ "lineNumber": 16
9532
+ },
9533
+ "ToolRenderer": {
9534
+ "path": "src/lib/ai-chatbot/types.ts",
9535
+ "lineNumber": 21
9536
+ },
9537
+ "IToolRenderer": {
9538
+ "path": "src/lib/ai-chatbot/types.ts",
9539
+ "lineNumber": 30
9540
+ },
8831
9541
  "HandlerContext": {
8832
9542
  "path": "src/lib/ai-chatbot/types.ts",
8833
- "lineNumber": 15
9543
+ "lineNumber": 38
8834
9544
  },
8835
9545
  "ToolType": {
8836
9546
  "path": "src/lib/ai-chatbot/types.ts",
8837
- "lineNumber": 26
9547
+ "lineNumber": 49
8838
9548
  },
8839
9549
  "ToolDefinition": {
8840
9550
  "path": "src/lib/ai-chatbot/types.ts",
8841
- "lineNumber": 32
9551
+ "lineNumber": 55
9552
+ },
9553
+ "StreamEvent": {
9554
+ "path": "src/lib/ai-chatbot/types.ts",
9555
+ "lineNumber": 115
8842
9556
  },
8843
9557
  "ChatMessage": {
8844
9558
  "path": "src/lib/ai-chatbot/types.ts",
8845
- "lineNumber": 52
9559
+ "lineNumber": 124
8846
9560
  },
8847
9561
  "ToolCall": {
8848
9562
  "path": "src/lib/ai-chatbot/types.ts",
8849
- "lineNumber": 62
9563
+ "lineNumber": 135
8850
9564
  },
8851
9565
  "FileAttachment": {
8852
9566
  "path": "src/lib/ai-chatbot/types.ts",
8853
- "lineNumber": 73
9567
+ "lineNumber": 147
8854
9568
  },
8855
9569
  "UploadedFileMetadata": {
8856
9570
  "path": "src/lib/ai-chatbot/types.ts",
8857
- "lineNumber": 86
9571
+ "lineNumber": 160
8858
9572
  },
8859
9573
  "FileUploadCallbacks": {
8860
9574
  "path": "src/lib/ai-chatbot/types.ts",
8861
- "lineNumber": 94
9575
+ "lineNumber": 168
8862
9576
  },
8863
9577
  "FileUploadHandler": {
8864
9578
  "path": "src/lib/ai-chatbot/types.ts",
8865
- "lineNumber": 101
9579
+ "lineNumber": 175
8866
9580
  },
8867
9581
  "FileRemoveCallbacks": {
8868
9582
  "path": "src/lib/ai-chatbot/types.ts",
8869
- "lineNumber": 103
9583
+ "lineNumber": 177
8870
9584
  },
8871
9585
  "ForgeAiChatbotFileSelectEventData": {
8872
9586
  "path": "src/lib/ai-chatbot/types.ts",
8873
- "lineNumber": 112
9587
+ "lineNumber": 186
8874
9588
  },
8875
9589
  "MessageItem": {
8876
9590
  "path": "src/lib/ai-chatbot/types.ts",
8877
- "lineNumber": 125
9591
+ "lineNumber": 199
8878
9592
  },
8879
9593
  "ThreadState": {
8880
9594
  "path": "src/lib/ai-chatbot/types.ts",
8881
- "lineNumber": 127
9595
+ "lineNumber": 201
8882
9596
  },
8883
9597
  "AiConfirmationPromptComponent": {
8884
9598
  "path": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts",
@@ -8894,7 +9608,7 @@
8894
9608
  },
8895
9609
  "ForgeAiDropdownMenuItemComponent": {
8896
9610
  "path": "src/lib/ai-dropdown-menu/ai-dropdown-menu-item.ts",
8897
- "lineNumber": 71
9611
+ "lineNumber": 69
8898
9612
  },
8899
9613
  "ForgeAiDropdownMenuSeparatorComponent": {
8900
9614
  "path": "src/lib/ai-dropdown-menu/ai-dropdown-menu-separator.ts",
@@ -8910,7 +9624,7 @@
8910
9624
  },
8911
9625
  "ForgeAiDropdownMenuComponent": {
8912
9626
  "path": "src/lib/ai-dropdown-menu/ai-dropdown-menu.ts",
8913
- "lineNumber": 99
9627
+ "lineNumber": 97
8914
9628
  },
8915
9629
  "DropdownNavigationController": {
8916
9630
  "path": "src/lib/ai-dropdown-menu/navigation-controller.ts",
@@ -8960,6 +9674,10 @@
8960
9674
  "path": "src/lib/ai-error-message/ai-error-message.ts",
8961
9675
  "lineNumber": 22
8962
9676
  },
9677
+ "AiEventStreamViewerComponent": {
9678
+ "path": "src/lib/ai-event-stream-viewer/ai-event-stream-viewer.ts",
9679
+ "lineNumber": 21
9680
+ },
8963
9681
  "AiFabComponent": {
8964
9682
  "path": "src/lib/ai-fab/ai-fab.ts",
8965
9683
  "lineNumber": 22
@@ -8978,7 +9696,7 @@
8978
9696
  },
8979
9697
  "AiFilePickerComponent": {
8980
9698
  "path": "src/lib/ai-file-picker/ai-file-picker.ts",
8981
- "lineNumber": 69
9699
+ "lineNumber": 56
8982
9700
  },
8983
9701
  "AiFloatingChatComponent": {
8984
9702
  "path": "src/lib/ai-floating-chat/ai-floating-chat.ts",
@@ -9012,45 +9730,57 @@
9012
9730
  "path": "src/lib/ai-message-thread/ai-message-thread.ts",
9013
9731
  "lineNumber": 64
9014
9732
  },
9733
+ "AiIconButtonComponent": {
9734
+ "path": "src/lib/ai-icon-button/ai-icon-button.ts",
9735
+ "lineNumber": 19
9736
+ },
9015
9737
  "AiModalComponent": {
9016
9738
  "path": "src/lib/ai-modal/ai-modal.ts",
9017
9739
  "lineNumber": 36
9018
9740
  },
9019
9741
  "ForgeAiPromptSendEventData": {
9020
9742
  "path": "src/lib/ai-prompt/ai-prompt.ts",
9021
- "lineNumber": 21
9743
+ "lineNumber": 26
9022
9744
  },
9023
9745
  "ForgeAiPromptAttachmentEventData": {
9024
9746
  "path": "src/lib/ai-prompt/ai-prompt.ts",
9025
- "lineNumber": 27
9747
+ "lineNumber": 32
9748
+ },
9749
+ "ForgeAiPromptCommandEventData": {
9750
+ "path": "src/lib/ai-prompt/ai-prompt.ts",
9751
+ "lineNumber": 36
9026
9752
  },
9027
9753
  "AiPromptVariant": {
9028
9754
  "path": "src/lib/ai-prompt/ai-prompt.ts",
9029
- "lineNumber": 31
9755
+ "lineNumber": 42
9030
9756
  },
9031
9757
  "AiPromptComponent": {
9032
9758
  "path": "src/lib/ai-prompt/ai-prompt.ts",
9033
- "lineNumber": 48
9034
- },
9035
- "AiReasoningComponent": {
9036
- "path": "src/lib/ai-reasoning/ai-reasoning.ts",
9037
- "lineNumber": 17
9759
+ "lineNumber": 60
9038
9760
  },
9039
9761
  "AiReasoningHeaderComponent": {
9040
9762
  "path": "src/lib/ai-reasoning-header/ai-reasoning-header.ts",
9041
9763
  "lineNumber": 22
9042
9764
  },
9765
+ "AiReasoningComponent": {
9766
+ "path": "src/lib/ai-reasoning/ai-reasoning.ts",
9767
+ "lineNumber": 17
9768
+ },
9043
9769
  "AiResponseMessageComponent": {
9044
9770
  "path": "src/lib/ai-response-message/ai-response-message.ts",
9045
- "lineNumber": 33
9771
+ "lineNumber": 37
9772
+ },
9773
+ "AiSidebarChatComponent": {
9774
+ "path": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts",
9775
+ "lineNumber": 42
9046
9776
  },
9047
9777
  "AiSidebarComponent": {
9048
9778
  "path": "src/lib/ai-sidebar/ai-sidebar.ts",
9049
9779
  "lineNumber": 28
9050
9780
  },
9051
- "AiSidebarChatComponent": {
9052
- "path": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts",
9053
- "lineNumber": 42
9781
+ "AiSlashCommandMenuComponent": {
9782
+ "path": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts",
9783
+ "lineNumber": 32
9054
9784
  },
9055
9785
  "SpinnerSize": {
9056
9786
  "path": "src/lib/ai-spinner/ai-spinner.ts",
@@ -9074,11 +9804,11 @@
9074
9804
  },
9075
9805
  "AiSuggestionsComponent": {
9076
9806
  "path": "src/lib/ai-suggestions/ai-suggestions.ts",
9077
- "lineNumber": 42
9807
+ "lineNumber": 44
9078
9808
  },
9079
9809
  "AiThinkingIndicatorComponent": {
9080
9810
  "path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
9081
- "lineNumber": 42
9811
+ "lineNumber": 38
9082
9812
  },
9083
9813
  "Thread": {
9084
9814
  "path": "src/lib/ai-threads/ai-threads.ts",
@@ -9160,13 +9890,21 @@
9160
9890
  "path": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts",
9161
9891
  "lineNumber": 17
9162
9892
  },
9163
- "OverlayPlacement": {
9164
- "path": "src/lib/core/overlay/overlay.ts",
9165
- "lineNumber": 30
9893
+ "PopoverToggleEventData": {
9894
+ "path": "src/lib/core/popover/popover.ts",
9895
+ "lineNumber": 18
9166
9896
  },
9167
- "ForgeAiOverlayComponent": {
9168
- "path": "src/lib/core/overlay/overlay.ts",
9169
- "lineNumber": 42
9897
+ "PopoverPlacement": {
9898
+ "path": "src/lib/core/popover/popover.ts",
9899
+ "lineNumber": 24
9900
+ },
9901
+ "PopoverOffset": {
9902
+ "path": "src/lib/core/popover/popover.ts",
9903
+ "lineNumber": 26
9904
+ },
9905
+ "ForgeAiPopoverComponent": {
9906
+ "path": "src/lib/core/popover/popover.ts",
9907
+ "lineNumber": 37
9170
9908
  },
9171
9909
  "TooltipToggleEventDetail": {
9172
9910
  "path": "src/lib/core/tooltip/tooltip.ts",
@@ -9184,17 +9922,29 @@
9184
9922
  "path": "src/lib/core/tooltip/tooltip.ts",
9185
9923
  "lineNumber": 44
9186
9924
  },
9187
- "PopoverToggleEventData": {
9188
- "path": "src/lib/core/popover/popover.ts",
9189
- "lineNumber": 18
9925
+ "OverlayPlacement": {
9926
+ "path": "src/lib/core/overlay/overlay.ts",
9927
+ "lineNumber": 31
9190
9928
  },
9191
- "PopoverPlacement": {
9192
- "path": "src/lib/core/popover/popover.ts",
9193
- "lineNumber": 24
9929
+ "OverlayOffset": {
9930
+ "path": "src/lib/core/overlay/overlay.ts",
9931
+ "lineNumber": 33
9194
9932
  },
9195
- "ForgeAiPopoverComponent": {
9196
- "path": "src/lib/core/popover/popover.ts",
9933
+ "ForgeAiOverlayComponent": {
9934
+ "path": "src/lib/core/overlay/overlay.ts",
9197
9935
  "lineNumber": 40
9936
+ },
9937
+ "TableData": {
9938
+ "path": "src/lib/tools/ai-data-table/ai-data-table.ts",
9939
+ "lineNumber": 16
9940
+ },
9941
+ "DataTableToolElement": {
9942
+ "path": "src/lib/tools/ai-data-table/ai-data-table.ts",
9943
+ "lineNumber": 32
9944
+ },
9945
+ "AiPaginator": {
9946
+ "path": "src/lib/tools/ai-paginator/ai-paginator.ts",
9947
+ "lineNumber": 11
9198
9948
  }
9199
9949
  }
9200
9950
  }