@tylertech/forge-ai 0.11.0 → 0.11.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/custom-elements.json +1130 -1119
- package/dist/ai-chatbot-launcher/ai-chatbot-launcher.mjs +31 -25
- package/dist/ai-chatbot-launcher/ai-chatbot-launcher.scss.mjs +1 -1
- package/dist/ai-prompt/ai-prompt.d.ts +4 -0
- package/dist/ai-prompt/ai-prompt.mjs +6 -0
- package/dist/ai-prompt/ai-prompt.scss.mjs +1 -1
- package/package.json +1 -1
package/custom-elements.json
CHANGED
|
@@ -138,6 +138,77 @@
|
|
|
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
|
+
},
|
|
141
212
|
{
|
|
142
213
|
"kind": "javascript-module",
|
|
143
214
|
"path": "src/lib/ai-agent-selector/ai-agent-selector.ts",
|
|
@@ -271,77 +342,6 @@
|
|
|
271
342
|
}
|
|
272
343
|
]
|
|
273
344
|
},
|
|
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,6 +479,87 @@
|
|
|
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
|
+
},
|
|
482
563
|
{
|
|
483
564
|
"kind": "javascript-module",
|
|
484
565
|
"path": "src/lib/ai-attachment/ai-attachment.ts",
|
|
@@ -651,138 +732,57 @@
|
|
|
651
732
|
},
|
|
652
733
|
{
|
|
653
734
|
"kind": "javascript-module",
|
|
654
|
-
"path": "src/lib/ai-
|
|
735
|
+
"path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
|
|
655
736
|
"declarations": [
|
|
656
737
|
{
|
|
657
738
|
"kind": "variable",
|
|
658
|
-
"name": "
|
|
739
|
+
"name": "AiChainOfThoughtComponentTagName",
|
|
659
740
|
"type": {
|
|
660
741
|
"text": "keyof HTMLElementTagNameMap"
|
|
661
742
|
},
|
|
662
|
-
"default": "'forge-ai-
|
|
743
|
+
"default": "'forge-ai-chain-of-thought'"
|
|
663
744
|
},
|
|
664
745
|
{
|
|
665
746
|
"kind": "class",
|
|
666
747
|
"description": "",
|
|
667
|
-
"name": "
|
|
668
|
-
"slots": [
|
|
669
|
-
{
|
|
670
|
-
"description": "Default slot for button content",
|
|
671
|
-
"name": ""
|
|
672
|
-
}
|
|
673
|
-
],
|
|
748
|
+
"name": "AiChainOfThoughtComponent",
|
|
674
749
|
"members": [
|
|
675
750
|
{
|
|
676
751
|
"kind": "field",
|
|
677
|
-
"name": "
|
|
752
|
+
"name": "expanded",
|
|
678
753
|
"type": {
|
|
679
754
|
"text": "boolean"
|
|
680
755
|
},
|
|
681
756
|
"privacy": "public",
|
|
682
757
|
"default": "false",
|
|
683
|
-
"description": "Whether the
|
|
684
|
-
"attribute": "
|
|
758
|
+
"description": "Whether the chain of thought is expanded",
|
|
759
|
+
"attribute": "expanded",
|
|
685
760
|
"reflects": true
|
|
686
761
|
}
|
|
687
762
|
],
|
|
688
763
|
"attributes": [
|
|
689
764
|
{
|
|
690
|
-
"name": "
|
|
765
|
+
"name": "expanded",
|
|
691
766
|
"type": {
|
|
692
767
|
"text": "boolean"
|
|
693
768
|
},
|
|
694
769
|
"default": "false",
|
|
695
|
-
"description": "Whether the
|
|
696
|
-
"fieldName": "
|
|
770
|
+
"description": "Whether the chain of thought is expanded",
|
|
771
|
+
"fieldName": "expanded"
|
|
697
772
|
}
|
|
698
773
|
],
|
|
699
774
|
"superclass": {
|
|
700
775
|
"name": "LitElement",
|
|
701
776
|
"package": "lit"
|
|
702
777
|
},
|
|
703
|
-
"tagName": "forge-ai-
|
|
778
|
+
"tagName": "forge-ai-chain-of-thought",
|
|
704
779
|
"customElement": true
|
|
705
780
|
}
|
|
706
781
|
],
|
|
707
782
|
"exports": [
|
|
708
783
|
{
|
|
709
784
|
"kind": "js",
|
|
710
|
-
"name": "
|
|
711
|
-
"declaration": {
|
|
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",
|
|
785
|
+
"name": "AiChainOfThoughtComponentTagName",
|
|
786
786
|
"declaration": {
|
|
787
787
|
"name": "AiChainOfThoughtComponentTagName",
|
|
788
788
|
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
@@ -6122,195 +6122,411 @@
|
|
|
6122
6122
|
},
|
|
6123
6123
|
{
|
|
6124
6124
|
"kind": "javascript-module",
|
|
6125
|
-
"path": "src/lib/ai-
|
|
6125
|
+
"path": "src/lib/ai-embedded-chat/ai-embedded-chat.ts",
|
|
6126
6126
|
"declarations": [
|
|
6127
6127
|
{
|
|
6128
|
-
"kind": "
|
|
6129
|
-
"
|
|
6130
|
-
"
|
|
6131
|
-
|
|
6132
|
-
{
|
|
6133
|
-
"description": "The default slot for dropdown menu items.",
|
|
6134
|
-
"name": ""
|
|
6135
|
-
},
|
|
6136
|
-
{
|
|
6137
|
-
"description": "The label slot for the group heading text.",
|
|
6138
|
-
"name": "label"
|
|
6139
|
-
}
|
|
6140
|
-
],
|
|
6141
|
-
"members": [],
|
|
6142
|
-
"superclass": {
|
|
6143
|
-
"name": "LitElement",
|
|
6144
|
-
"package": "lit"
|
|
6128
|
+
"kind": "variable",
|
|
6129
|
+
"name": "AiEmbeddedChatComponentTagName",
|
|
6130
|
+
"type": {
|
|
6131
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
6145
6132
|
},
|
|
6146
|
-
"
|
|
6147
|
-
"tagName": "forge-ai-dropdown-menu-item-group",
|
|
6148
|
-
"customElement": true
|
|
6149
|
-
}
|
|
6150
|
-
],
|
|
6151
|
-
"exports": [
|
|
6152
|
-
{
|
|
6153
|
-
"kind": "js",
|
|
6154
|
-
"name": "ForgeAiDropdownMenuItemGroupComponent",
|
|
6155
|
-
"declaration": {
|
|
6156
|
-
"name": "ForgeAiDropdownMenuItemGroupComponent",
|
|
6157
|
-
"module": "src/lib/ai-dropdown-menu/ai-dropdown-menu-item-group.ts"
|
|
6158
|
-
}
|
|
6133
|
+
"default": "'forge-ai-embedded-chat'"
|
|
6159
6134
|
},
|
|
6160
|
-
{
|
|
6161
|
-
"kind": "custom-element-definition",
|
|
6162
|
-
"name": "forge-ai-dropdown-menu-item-group",
|
|
6163
|
-
"declaration": {
|
|
6164
|
-
"name": "ForgeAiDropdownMenuItemGroupComponent",
|
|
6165
|
-
"module": "src/lib/ai-dropdown-menu/ai-dropdown-menu-item-group.ts"
|
|
6166
|
-
}
|
|
6167
|
-
}
|
|
6168
|
-
]
|
|
6169
|
-
},
|
|
6170
|
-
{
|
|
6171
|
-
"kind": "javascript-module",
|
|
6172
|
-
"path": "src/lib/ai-dropdown-menu/ai-dropdown-menu-item.ts",
|
|
6173
|
-
"declarations": [
|
|
6174
6135
|
{
|
|
6175
6136
|
"kind": "class",
|
|
6176
6137
|
"description": "",
|
|
6177
|
-
"name": "
|
|
6178
|
-
"cssProperties": [
|
|
6179
|
-
{
|
|
6180
|
-
"description": "Size of selection and submenu icons.",
|
|
6181
|
-
"name": "--forge-ai-dropdown-menu-item-selection-icon-size"
|
|
6182
|
-
}
|
|
6183
|
-
],
|
|
6138
|
+
"name": "AiEmbeddedChatComponent",
|
|
6184
6139
|
"slots": [
|
|
6185
6140
|
{
|
|
6186
|
-
"description": "
|
|
6187
|
-
"name": ""
|
|
6188
|
-
},
|
|
6189
|
-
{
|
|
6190
|
-
"description": "The description slot for additional item details.",
|
|
6191
|
-
"name": "description"
|
|
6192
|
-
},
|
|
6193
|
-
{
|
|
6194
|
-
"description": "The start icon slot.",
|
|
6195
|
-
"name": "start"
|
|
6196
|
-
},
|
|
6197
|
-
{
|
|
6198
|
-
"description": "The end icon slot.",
|
|
6199
|
-
"name": "end"
|
|
6141
|
+
"description": "Slot for custom header title content (default: \"AI Assistant\")",
|
|
6142
|
+
"name": "header-title"
|
|
6200
6143
|
},
|
|
6201
6144
|
{
|
|
6202
|
-
"description": "
|
|
6203
|
-
"name": "
|
|
6145
|
+
"description": "Slot for custom empty state heading",
|
|
6146
|
+
"name": "empty-state-heading"
|
|
6204
6147
|
}
|
|
6205
6148
|
],
|
|
6206
6149
|
"members": [
|
|
6207
6150
|
{
|
|
6208
6151
|
"kind": "field",
|
|
6209
|
-
"name": "
|
|
6152
|
+
"name": "expanded",
|
|
6210
6153
|
"type": {
|
|
6211
|
-
"text": "
|
|
6154
|
+
"text": "boolean"
|
|
6212
6155
|
},
|
|
6213
6156
|
"privacy": "public",
|
|
6214
|
-
"default": "
|
|
6215
|
-
"description": "
|
|
6216
|
-
"attribute": "
|
|
6157
|
+
"default": "false",
|
|
6158
|
+
"description": "Controls whether the modal view is open when expanded.",
|
|
6159
|
+
"attribute": "expanded"
|
|
6217
6160
|
},
|
|
6218
6161
|
{
|
|
6219
6162
|
"kind": "field",
|
|
6220
|
-
"name": "
|
|
6163
|
+
"name": "gradientVariant",
|
|
6221
6164
|
"type": {
|
|
6222
|
-
"text": "
|
|
6165
|
+
"text": "string"
|
|
6223
6166
|
},
|
|
6224
6167
|
"privacy": "public",
|
|
6225
|
-
"default": "
|
|
6226
|
-
"description": "
|
|
6227
|
-
"attribute": "
|
|
6228
|
-
"reflects": true
|
|
6168
|
+
"default": "'medium'",
|
|
6169
|
+
"description": "Gradient variant for embedded view ('low' | 'medium' | 'high', default: 'medium')",
|
|
6170
|
+
"attribute": "gradient-variant"
|
|
6229
6171
|
},
|
|
6230
6172
|
{
|
|
6231
6173
|
"kind": "field",
|
|
6232
|
-
"name": "
|
|
6174
|
+
"name": "adapter",
|
|
6233
6175
|
"type": {
|
|
6234
|
-
"text": "
|
|
6176
|
+
"text": "AgentAdapter"
|
|
6235
6177
|
},
|
|
6236
6178
|
"privacy": "public",
|
|
6237
|
-
"
|
|
6238
|
-
"description": "Whether this menu item is disabled.",
|
|
6239
|
-
"attribute": "disabled",
|
|
6240
|
-
"reflects": true
|
|
6179
|
+
"description": "Required. The adapter for communication with the AI service"
|
|
6241
6180
|
},
|
|
6242
6181
|
{
|
|
6243
6182
|
"kind": "field",
|
|
6244
|
-
"name": "
|
|
6183
|
+
"name": "threadId",
|
|
6245
6184
|
"type": {
|
|
6246
|
-
"text": "
|
|
6185
|
+
"text": "string | undefined"
|
|
6247
6186
|
},
|
|
6248
6187
|
"privacy": "public",
|
|
6249
|
-
"
|
|
6250
|
-
"description": "The selection mode for this menu item.\nThis is typically set by the parent dropdown menu component.",
|
|
6251
|
-
"attribute": "selection-mode"
|
|
6188
|
+
"attribute": "thread-id"
|
|
6252
6189
|
},
|
|
6253
6190
|
{
|
|
6254
6191
|
"kind": "field",
|
|
6255
|
-
"name": "
|
|
6192
|
+
"name": "fileUpload",
|
|
6256
6193
|
"type": {
|
|
6257
|
-
"text": "
|
|
6194
|
+
"text": "FeatureToggle"
|
|
6258
6195
|
},
|
|
6259
6196
|
"privacy": "public",
|
|
6260
|
-
"default": "'
|
|
6261
|
-
"description": "
|
|
6262
|
-
"attribute": "
|
|
6197
|
+
"default": "'off'",
|
|
6198
|
+
"description": "Enable file upload functionality (default: 'off')",
|
|
6199
|
+
"attribute": "file-upload"
|
|
6263
6200
|
},
|
|
6264
6201
|
{
|
|
6265
6202
|
"kind": "field",
|
|
6266
|
-
"name": "
|
|
6203
|
+
"name": "placeholder",
|
|
6267
6204
|
"type": {
|
|
6268
|
-
"text": "
|
|
6205
|
+
"text": "string"
|
|
6269
6206
|
},
|
|
6270
6207
|
"privacy": "public",
|
|
6271
|
-
"default": "
|
|
6272
|
-
"description": "
|
|
6273
|
-
"attribute": "
|
|
6208
|
+
"default": "'Ask a question...'",
|
|
6209
|
+
"description": "Placeholder text for input (default: \"Ask a question...\")",
|
|
6210
|
+
"attribute": "placeholder"
|
|
6274
6211
|
},
|
|
6275
6212
|
{
|
|
6276
6213
|
"kind": "field",
|
|
6277
|
-
"name": "
|
|
6214
|
+
"name": "suggestions",
|
|
6278
6215
|
"type": {
|
|
6279
|
-
"text": "
|
|
6216
|
+
"text": "Suggestion[]"
|
|
6280
6217
|
},
|
|
6281
6218
|
"privacy": "public",
|
|
6282
|
-
"
|
|
6283
|
-
"description": "The delay in milliseconds before closing a submenu when mouse leaves.",
|
|
6284
|
-
"attribute": "submenu-close-delay"
|
|
6219
|
+
"description": "Optional suggestions for empty state"
|
|
6285
6220
|
},
|
|
6286
6221
|
{
|
|
6287
|
-
"kind": "
|
|
6288
|
-
"name": "
|
|
6289
|
-
"
|
|
6290
|
-
|
|
6222
|
+
"kind": "method",
|
|
6223
|
+
"name": "expand",
|
|
6224
|
+
"privacy": "public",
|
|
6225
|
+
"return": {
|
|
6226
|
+
"type": {
|
|
6227
|
+
"text": "void"
|
|
6228
|
+
}
|
|
6291
6229
|
},
|
|
6230
|
+
"description": "Expands the chat to modal view."
|
|
6231
|
+
},
|
|
6232
|
+
{
|
|
6233
|
+
"kind": "method",
|
|
6234
|
+
"name": "collapse",
|
|
6292
6235
|
"privacy": "public",
|
|
6293
|
-
"
|
|
6294
|
-
|
|
6236
|
+
"return": {
|
|
6237
|
+
"type": {
|
|
6238
|
+
"text": "void"
|
|
6239
|
+
}
|
|
6240
|
+
},
|
|
6241
|
+
"description": "Collapses the chat from modal view back to embedded view."
|
|
6295
6242
|
}
|
|
6296
6243
|
],
|
|
6297
|
-
"
|
|
6244
|
+
"events": [
|
|
6298
6245
|
{
|
|
6299
|
-
"name": "value",
|
|
6300
6246
|
"type": {
|
|
6301
|
-
"text": "
|
|
6247
|
+
"text": "CustomEvent<void>"
|
|
6302
6248
|
},
|
|
6303
|
-
"
|
|
6304
|
-
"
|
|
6305
|
-
"fieldName": "value"
|
|
6249
|
+
"description": "Fired when the chat is expanded to modal view",
|
|
6250
|
+
"name": "forge-ai-embedded-chat-expand"
|
|
6306
6251
|
},
|
|
6307
6252
|
{
|
|
6308
|
-
"name": "selected",
|
|
6309
6253
|
"type": {
|
|
6310
|
-
"text": "
|
|
6254
|
+
"text": "CustomEvent<void>"
|
|
6311
6255
|
},
|
|
6312
|
-
"
|
|
6313
|
-
"
|
|
6256
|
+
"description": "Fired when the chat is collapsed from modal view",
|
|
6257
|
+
"name": "forge-ai-embedded-chat-collapse"
|
|
6258
|
+
}
|
|
6259
|
+
],
|
|
6260
|
+
"attributes": [
|
|
6261
|
+
{
|
|
6262
|
+
"name": "expanded",
|
|
6263
|
+
"type": {
|
|
6264
|
+
"text": "boolean"
|
|
6265
|
+
},
|
|
6266
|
+
"default": "false",
|
|
6267
|
+
"description": "Controls whether the modal view is open when expanded.",
|
|
6268
|
+
"fieldName": "expanded"
|
|
6269
|
+
},
|
|
6270
|
+
{
|
|
6271
|
+
"name": "gradient-variant",
|
|
6272
|
+
"type": {
|
|
6273
|
+
"text": "string"
|
|
6274
|
+
},
|
|
6275
|
+
"default": "'medium'",
|
|
6276
|
+
"description": "Gradient variant for embedded view ('low' | 'medium' | 'high', default: 'medium')",
|
|
6277
|
+
"fieldName": "gradientVariant"
|
|
6278
|
+
},
|
|
6279
|
+
{
|
|
6280
|
+
"name": "thread-id",
|
|
6281
|
+
"type": {
|
|
6282
|
+
"text": "string | undefined"
|
|
6283
|
+
},
|
|
6284
|
+
"fieldName": "threadId"
|
|
6285
|
+
},
|
|
6286
|
+
{
|
|
6287
|
+
"name": "file-upload",
|
|
6288
|
+
"type": {
|
|
6289
|
+
"text": "FeatureToggle"
|
|
6290
|
+
},
|
|
6291
|
+
"default": "'off'",
|
|
6292
|
+
"description": "Enable file upload functionality (default: 'off')",
|
|
6293
|
+
"fieldName": "fileUpload"
|
|
6294
|
+
},
|
|
6295
|
+
{
|
|
6296
|
+
"name": "placeholder",
|
|
6297
|
+
"type": {
|
|
6298
|
+
"text": "string"
|
|
6299
|
+
},
|
|
6300
|
+
"default": "'Ask a question...'",
|
|
6301
|
+
"description": "Placeholder text for input (default: \"Ask a question...\")",
|
|
6302
|
+
"fieldName": "placeholder"
|
|
6303
|
+
}
|
|
6304
|
+
],
|
|
6305
|
+
"superclass": {
|
|
6306
|
+
"name": "LitElement",
|
|
6307
|
+
"package": "lit"
|
|
6308
|
+
},
|
|
6309
|
+
"tagName": "forge-ai-embedded-chat",
|
|
6310
|
+
"customElement": true
|
|
6311
|
+
}
|
|
6312
|
+
],
|
|
6313
|
+
"exports": [
|
|
6314
|
+
{
|
|
6315
|
+
"kind": "js",
|
|
6316
|
+
"name": "AiEmbeddedChatComponentTagName",
|
|
6317
|
+
"declaration": {
|
|
6318
|
+
"name": "AiEmbeddedChatComponentTagName",
|
|
6319
|
+
"module": "src/lib/ai-embedded-chat/ai-embedded-chat.ts"
|
|
6320
|
+
}
|
|
6321
|
+
},
|
|
6322
|
+
{
|
|
6323
|
+
"kind": "js",
|
|
6324
|
+
"name": "AiEmbeddedChatComponent",
|
|
6325
|
+
"declaration": {
|
|
6326
|
+
"name": "AiEmbeddedChatComponent",
|
|
6327
|
+
"module": "src/lib/ai-embedded-chat/ai-embedded-chat.ts"
|
|
6328
|
+
}
|
|
6329
|
+
},
|
|
6330
|
+
{
|
|
6331
|
+
"kind": "custom-element-definition",
|
|
6332
|
+
"declaration": {
|
|
6333
|
+
"name": "AiEmbeddedChatComponent",
|
|
6334
|
+
"module": "src/lib/ai-embedded-chat/ai-embedded-chat.ts"
|
|
6335
|
+
}
|
|
6336
|
+
}
|
|
6337
|
+
]
|
|
6338
|
+
},
|
|
6339
|
+
{
|
|
6340
|
+
"kind": "javascript-module",
|
|
6341
|
+
"path": "src/lib/ai-dropdown-menu/ai-dropdown-menu-item-group.ts",
|
|
6342
|
+
"declarations": [
|
|
6343
|
+
{
|
|
6344
|
+
"kind": "class",
|
|
6345
|
+
"description": "",
|
|
6346
|
+
"name": "ForgeAiDropdownMenuItemGroupComponent",
|
|
6347
|
+
"slots": [
|
|
6348
|
+
{
|
|
6349
|
+
"description": "The default slot for dropdown menu items.",
|
|
6350
|
+
"name": ""
|
|
6351
|
+
},
|
|
6352
|
+
{
|
|
6353
|
+
"description": "The label slot for the group heading text.",
|
|
6354
|
+
"name": "label"
|
|
6355
|
+
}
|
|
6356
|
+
],
|
|
6357
|
+
"members": [],
|
|
6358
|
+
"superclass": {
|
|
6359
|
+
"name": "LitElement",
|
|
6360
|
+
"package": "lit"
|
|
6361
|
+
},
|
|
6362
|
+
"summary": "A group component for organizing items within ai-dropdown-menu.",
|
|
6363
|
+
"tagName": "forge-ai-dropdown-menu-item-group",
|
|
6364
|
+
"customElement": true
|
|
6365
|
+
}
|
|
6366
|
+
],
|
|
6367
|
+
"exports": [
|
|
6368
|
+
{
|
|
6369
|
+
"kind": "js",
|
|
6370
|
+
"name": "ForgeAiDropdownMenuItemGroupComponent",
|
|
6371
|
+
"declaration": {
|
|
6372
|
+
"name": "ForgeAiDropdownMenuItemGroupComponent",
|
|
6373
|
+
"module": "src/lib/ai-dropdown-menu/ai-dropdown-menu-item-group.ts"
|
|
6374
|
+
}
|
|
6375
|
+
},
|
|
6376
|
+
{
|
|
6377
|
+
"kind": "custom-element-definition",
|
|
6378
|
+
"name": "forge-ai-dropdown-menu-item-group",
|
|
6379
|
+
"declaration": {
|
|
6380
|
+
"name": "ForgeAiDropdownMenuItemGroupComponent",
|
|
6381
|
+
"module": "src/lib/ai-dropdown-menu/ai-dropdown-menu-item-group.ts"
|
|
6382
|
+
}
|
|
6383
|
+
}
|
|
6384
|
+
]
|
|
6385
|
+
},
|
|
6386
|
+
{
|
|
6387
|
+
"kind": "javascript-module",
|
|
6388
|
+
"path": "src/lib/ai-dropdown-menu/ai-dropdown-menu-item.ts",
|
|
6389
|
+
"declarations": [
|
|
6390
|
+
{
|
|
6391
|
+
"kind": "class",
|
|
6392
|
+
"description": "",
|
|
6393
|
+
"name": "ForgeAiDropdownMenuItemComponent",
|
|
6394
|
+
"cssProperties": [
|
|
6395
|
+
{
|
|
6396
|
+
"description": "Size of selection and submenu icons.",
|
|
6397
|
+
"name": "--forge-ai-dropdown-menu-item-selection-icon-size"
|
|
6398
|
+
}
|
|
6399
|
+
],
|
|
6400
|
+
"slots": [
|
|
6401
|
+
{
|
|
6402
|
+
"description": "The default slot for item text content.",
|
|
6403
|
+
"name": ""
|
|
6404
|
+
},
|
|
6405
|
+
{
|
|
6406
|
+
"description": "The description slot for additional item details.",
|
|
6407
|
+
"name": "description"
|
|
6408
|
+
},
|
|
6409
|
+
{
|
|
6410
|
+
"description": "The start icon slot.",
|
|
6411
|
+
"name": "start"
|
|
6412
|
+
},
|
|
6413
|
+
{
|
|
6414
|
+
"description": "The end icon slot.",
|
|
6415
|
+
"name": "end"
|
|
6416
|
+
},
|
|
6417
|
+
{
|
|
6418
|
+
"description": "The slot for nested dropdown menu components.",
|
|
6419
|
+
"name": "submenu"
|
|
6420
|
+
}
|
|
6421
|
+
],
|
|
6422
|
+
"members": [
|
|
6423
|
+
{
|
|
6424
|
+
"kind": "field",
|
|
6425
|
+
"name": "value",
|
|
6426
|
+
"type": {
|
|
6427
|
+
"text": "string"
|
|
6428
|
+
},
|
|
6429
|
+
"privacy": "public",
|
|
6430
|
+
"default": "''",
|
|
6431
|
+
"description": "The value associated with this menu item.",
|
|
6432
|
+
"attribute": "value"
|
|
6433
|
+
},
|
|
6434
|
+
{
|
|
6435
|
+
"kind": "field",
|
|
6436
|
+
"name": "selected",
|
|
6437
|
+
"type": {
|
|
6438
|
+
"text": "boolean"
|
|
6439
|
+
},
|
|
6440
|
+
"privacy": "public",
|
|
6441
|
+
"default": "false",
|
|
6442
|
+
"description": "Whether this menu item is selected.",
|
|
6443
|
+
"attribute": "selected",
|
|
6444
|
+
"reflects": true
|
|
6445
|
+
},
|
|
6446
|
+
{
|
|
6447
|
+
"kind": "field",
|
|
6448
|
+
"name": "disabled",
|
|
6449
|
+
"type": {
|
|
6450
|
+
"text": "boolean"
|
|
6451
|
+
},
|
|
6452
|
+
"privacy": "public",
|
|
6453
|
+
"default": "false",
|
|
6454
|
+
"description": "Whether this menu item is disabled.",
|
|
6455
|
+
"attribute": "disabled",
|
|
6456
|
+
"reflects": true
|
|
6457
|
+
},
|
|
6458
|
+
{
|
|
6459
|
+
"kind": "field",
|
|
6460
|
+
"name": "selectionMode",
|
|
6461
|
+
"type": {
|
|
6462
|
+
"text": "DropdownMenuSelectionMode"
|
|
6463
|
+
},
|
|
6464
|
+
"privacy": "public",
|
|
6465
|
+
"default": "'none'",
|
|
6466
|
+
"description": "The selection mode for this menu item.\nThis is typically set by the parent dropdown menu component.",
|
|
6467
|
+
"attribute": "selection-mode"
|
|
6468
|
+
},
|
|
6469
|
+
{
|
|
6470
|
+
"kind": "field",
|
|
6471
|
+
"name": "submenuTrigger",
|
|
6472
|
+
"type": {
|
|
6473
|
+
"text": "'hover' | 'click' | 'both'"
|
|
6474
|
+
},
|
|
6475
|
+
"privacy": "public",
|
|
6476
|
+
"default": "'hover'",
|
|
6477
|
+
"description": "The trigger behavior for submenu opening.\n- 'hover': Opens on mouse hover (default)\n- 'click': Opens on click\n- 'both': Opens on both hover and click",
|
|
6478
|
+
"attribute": "submenu-trigger"
|
|
6479
|
+
},
|
|
6480
|
+
{
|
|
6481
|
+
"kind": "field",
|
|
6482
|
+
"name": "submenuOpenDelay",
|
|
6483
|
+
"type": {
|
|
6484
|
+
"text": "number"
|
|
6485
|
+
},
|
|
6486
|
+
"privacy": "public",
|
|
6487
|
+
"default": "150",
|
|
6488
|
+
"description": "The delay in milliseconds before opening a submenu on hover.",
|
|
6489
|
+
"attribute": "submenu-open-delay"
|
|
6490
|
+
},
|
|
6491
|
+
{
|
|
6492
|
+
"kind": "field",
|
|
6493
|
+
"name": "submenuCloseDelay",
|
|
6494
|
+
"type": {
|
|
6495
|
+
"text": "number"
|
|
6496
|
+
},
|
|
6497
|
+
"privacy": "public",
|
|
6498
|
+
"default": "300",
|
|
6499
|
+
"description": "The delay in milliseconds before closing a submenu when mouse leaves.",
|
|
6500
|
+
"attribute": "submenu-close-delay"
|
|
6501
|
+
},
|
|
6502
|
+
{
|
|
6503
|
+
"kind": "field",
|
|
6504
|
+
"name": "labelText",
|
|
6505
|
+
"type": {
|
|
6506
|
+
"text": "string"
|
|
6507
|
+
},
|
|
6508
|
+
"privacy": "public",
|
|
6509
|
+
"description": "Gets the text content from the default slot (label text only).",
|
|
6510
|
+
"readonly": true
|
|
6511
|
+
}
|
|
6512
|
+
],
|
|
6513
|
+
"attributes": [
|
|
6514
|
+
{
|
|
6515
|
+
"name": "value",
|
|
6516
|
+
"type": {
|
|
6517
|
+
"text": "string"
|
|
6518
|
+
},
|
|
6519
|
+
"default": "''",
|
|
6520
|
+
"description": "The value associated with this menu item.",
|
|
6521
|
+
"fieldName": "value"
|
|
6522
|
+
},
|
|
6523
|
+
{
|
|
6524
|
+
"name": "selected",
|
|
6525
|
+
"type": {
|
|
6526
|
+
"text": "boolean"
|
|
6527
|
+
},
|
|
6528
|
+
"default": "false",
|
|
6529
|
+
"description": "Whether this menu item is selected.",
|
|
6314
6530
|
"fieldName": "selected"
|
|
6315
6531
|
},
|
|
6316
6532
|
{
|
|
@@ -6812,299 +7028,83 @@
|
|
|
6812
7028
|
"type": {
|
|
6813
7029
|
"text": "Partial<SelectionConfig>"
|
|
6814
7030
|
}
|
|
6815
|
-
}
|
|
6816
|
-
],
|
|
6817
|
-
"description": "Updates the selection configuration"
|
|
6818
|
-
},
|
|
6819
|
-
{
|
|
6820
|
-
"kind": "method",
|
|
6821
|
-
"name": "selectItem",
|
|
6822
|
-
"privacy": "public",
|
|
6823
|
-
"return": {
|
|
6824
|
-
"type": {
|
|
6825
|
-
"text": "{ shouldClose: boolean }"
|
|
6826
|
-
}
|
|
6827
|
-
},
|
|
6828
|
-
"parameters": [
|
|
6829
|
-
{
|
|
6830
|
-
"name": "item",
|
|
6831
|
-
"type": {
|
|
6832
|
-
"text": "ForgeAiDropdownMenuItemComponent"
|
|
6833
|
-
}
|
|
6834
|
-
}
|
|
6835
|
-
],
|
|
6836
|
-
"description": "Handles item selection based on the current mode"
|
|
6837
|
-
},
|
|
6838
|
-
{
|
|
6839
|
-
"kind": "method",
|
|
6840
|
-
"name": "getSelectedItems",
|
|
6841
|
-
"privacy": "public",
|
|
6842
|
-
"return": {
|
|
6843
|
-
"type": {
|
|
6844
|
-
"text": "ForgeAiDropdownMenuItemComponent[]"
|
|
6845
|
-
}
|
|
6846
|
-
},
|
|
6847
|
-
"description": "Gets the currently selected items"
|
|
6848
|
-
},
|
|
6849
|
-
{
|
|
6850
|
-
"kind": "method",
|
|
6851
|
-
"name": "getSelectedText",
|
|
6852
|
-
"privacy": "public",
|
|
6853
|
-
"return": {
|
|
6854
|
-
"type": {
|
|
6855
|
-
"text": "string"
|
|
6856
|
-
}
|
|
6857
|
-
},
|
|
6858
|
-
"description": "Gets text representation of the current selection"
|
|
6859
|
-
},
|
|
6860
|
-
{
|
|
6861
|
-
"kind": "method",
|
|
6862
|
-
"name": "shouldShowSelectedText",
|
|
6863
|
-
"privacy": "public",
|
|
6864
|
-
"return": {
|
|
6865
|
-
"type": {
|
|
6866
|
-
"text": "boolean"
|
|
6867
|
-
}
|
|
6868
|
-
},
|
|
6869
|
-
"description": "Checks if selection text should be displayed"
|
|
6870
|
-
},
|
|
6871
|
-
{
|
|
6872
|
-
"kind": "method",
|
|
6873
|
-
"name": "reset",
|
|
6874
|
-
"privacy": "public",
|
|
6875
|
-
"return": {
|
|
6876
|
-
"type": {
|
|
6877
|
-
"text": "void"
|
|
6878
|
-
}
|
|
6879
|
-
},
|
|
6880
|
-
"description": "Resets the selection state"
|
|
6881
|
-
}
|
|
6882
|
-
]
|
|
6883
|
-
}
|
|
6884
|
-
],
|
|
6885
|
-
"exports": [
|
|
6886
|
-
{
|
|
6887
|
-
"kind": "js",
|
|
6888
|
-
"name": "SelectionManager",
|
|
6889
|
-
"declaration": {
|
|
6890
|
-
"name": "SelectionManager",
|
|
6891
|
-
"module": "src/lib/ai-dropdown-menu/selection-manager.ts"
|
|
6892
|
-
}
|
|
6893
|
-
}
|
|
6894
|
-
]
|
|
6895
|
-
},
|
|
6896
|
-
{
|
|
6897
|
-
"kind": "javascript-module",
|
|
6898
|
-
"path": "src/lib/ai-embedded-chat/ai-embedded-chat.ts",
|
|
6899
|
-
"declarations": [
|
|
6900
|
-
{
|
|
6901
|
-
"kind": "variable",
|
|
6902
|
-
"name": "AiEmbeddedChatComponentTagName",
|
|
6903
|
-
"type": {
|
|
6904
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
6905
|
-
},
|
|
6906
|
-
"default": "'forge-ai-embedded-chat'"
|
|
6907
|
-
},
|
|
6908
|
-
{
|
|
6909
|
-
"kind": "class",
|
|
6910
|
-
"description": "",
|
|
6911
|
-
"name": "AiEmbeddedChatComponent",
|
|
6912
|
-
"slots": [
|
|
6913
|
-
{
|
|
6914
|
-
"description": "Slot for custom header title content (default: \"AI Assistant\")",
|
|
6915
|
-
"name": "header-title"
|
|
6916
|
-
},
|
|
6917
|
-
{
|
|
6918
|
-
"description": "Slot for custom empty state heading",
|
|
6919
|
-
"name": "empty-state-heading"
|
|
6920
|
-
}
|
|
6921
|
-
],
|
|
6922
|
-
"members": [
|
|
6923
|
-
{
|
|
6924
|
-
"kind": "field",
|
|
6925
|
-
"name": "expanded",
|
|
6926
|
-
"type": {
|
|
6927
|
-
"text": "boolean"
|
|
6928
|
-
},
|
|
6929
|
-
"privacy": "public",
|
|
6930
|
-
"default": "false",
|
|
6931
|
-
"description": "Controls whether the modal view is open when expanded.",
|
|
6932
|
-
"attribute": "expanded"
|
|
6933
|
-
},
|
|
6934
|
-
{
|
|
6935
|
-
"kind": "field",
|
|
6936
|
-
"name": "gradientVariant",
|
|
6937
|
-
"type": {
|
|
6938
|
-
"text": "string"
|
|
6939
|
-
},
|
|
6940
|
-
"privacy": "public",
|
|
6941
|
-
"default": "'medium'",
|
|
6942
|
-
"description": "Gradient variant for embedded view ('low' | 'medium' | 'high', default: 'medium')",
|
|
6943
|
-
"attribute": "gradient-variant"
|
|
6944
|
-
},
|
|
6945
|
-
{
|
|
6946
|
-
"kind": "field",
|
|
6947
|
-
"name": "adapter",
|
|
6948
|
-
"type": {
|
|
6949
|
-
"text": "AgentAdapter"
|
|
6950
|
-
},
|
|
6951
|
-
"privacy": "public",
|
|
6952
|
-
"description": "Required. The adapter for communication with the AI service"
|
|
6953
|
-
},
|
|
6954
|
-
{
|
|
6955
|
-
"kind": "field",
|
|
6956
|
-
"name": "threadId",
|
|
6957
|
-
"type": {
|
|
6958
|
-
"text": "string | undefined"
|
|
6959
|
-
},
|
|
6960
|
-
"privacy": "public",
|
|
6961
|
-
"attribute": "thread-id"
|
|
6962
|
-
},
|
|
6963
|
-
{
|
|
6964
|
-
"kind": "field",
|
|
6965
|
-
"name": "fileUpload",
|
|
6966
|
-
"type": {
|
|
6967
|
-
"text": "FeatureToggle"
|
|
6968
|
-
},
|
|
6969
|
-
"privacy": "public",
|
|
6970
|
-
"default": "'off'",
|
|
6971
|
-
"description": "Enable file upload functionality (default: 'off')",
|
|
6972
|
-
"attribute": "file-upload"
|
|
6973
|
-
},
|
|
6974
|
-
{
|
|
6975
|
-
"kind": "field",
|
|
6976
|
-
"name": "placeholder",
|
|
6977
|
-
"type": {
|
|
6978
|
-
"text": "string"
|
|
6979
|
-
},
|
|
6980
|
-
"privacy": "public",
|
|
6981
|
-
"default": "'Ask a question...'",
|
|
6982
|
-
"description": "Placeholder text for input (default: \"Ask a question...\")",
|
|
6983
|
-
"attribute": "placeholder"
|
|
6984
|
-
},
|
|
6985
|
-
{
|
|
6986
|
-
"kind": "field",
|
|
6987
|
-
"name": "suggestions",
|
|
6988
|
-
"type": {
|
|
6989
|
-
"text": "Suggestion[]"
|
|
6990
|
-
},
|
|
6991
|
-
"privacy": "public",
|
|
6992
|
-
"description": "Optional suggestions for empty state"
|
|
7031
|
+
}
|
|
7032
|
+
],
|
|
7033
|
+
"description": "Updates the selection configuration"
|
|
6993
7034
|
},
|
|
6994
7035
|
{
|
|
6995
7036
|
"kind": "method",
|
|
6996
|
-
"name": "
|
|
7037
|
+
"name": "selectItem",
|
|
6997
7038
|
"privacy": "public",
|
|
6998
7039
|
"return": {
|
|
6999
7040
|
"type": {
|
|
7000
|
-
"text": "
|
|
7041
|
+
"text": "{ shouldClose: boolean }"
|
|
7001
7042
|
}
|
|
7002
7043
|
},
|
|
7003
|
-
"
|
|
7044
|
+
"parameters": [
|
|
7045
|
+
{
|
|
7046
|
+
"name": "item",
|
|
7047
|
+
"type": {
|
|
7048
|
+
"text": "ForgeAiDropdownMenuItemComponent"
|
|
7049
|
+
}
|
|
7050
|
+
}
|
|
7051
|
+
],
|
|
7052
|
+
"description": "Handles item selection based on the current mode"
|
|
7004
7053
|
},
|
|
7005
7054
|
{
|
|
7006
7055
|
"kind": "method",
|
|
7007
|
-
"name": "
|
|
7056
|
+
"name": "getSelectedItems",
|
|
7008
7057
|
"privacy": "public",
|
|
7009
7058
|
"return": {
|
|
7010
7059
|
"type": {
|
|
7011
|
-
"text": "
|
|
7060
|
+
"text": "ForgeAiDropdownMenuItemComponent[]"
|
|
7012
7061
|
}
|
|
7013
7062
|
},
|
|
7014
|
-
"description": "
|
|
7015
|
-
}
|
|
7016
|
-
],
|
|
7017
|
-
"events": [
|
|
7018
|
-
{
|
|
7019
|
-
"type": {
|
|
7020
|
-
"text": "CustomEvent<void>"
|
|
7021
|
-
},
|
|
7022
|
-
"description": "Fired when the chat is expanded to modal view",
|
|
7023
|
-
"name": "forge-ai-embedded-chat-expand"
|
|
7024
|
-
},
|
|
7025
|
-
{
|
|
7026
|
-
"type": {
|
|
7027
|
-
"text": "CustomEvent<void>"
|
|
7028
|
-
},
|
|
7029
|
-
"description": "Fired when the chat is collapsed from modal view",
|
|
7030
|
-
"name": "forge-ai-embedded-chat-collapse"
|
|
7031
|
-
}
|
|
7032
|
-
],
|
|
7033
|
-
"attributes": [
|
|
7034
|
-
{
|
|
7035
|
-
"name": "expanded",
|
|
7036
|
-
"type": {
|
|
7037
|
-
"text": "boolean"
|
|
7038
|
-
},
|
|
7039
|
-
"default": "false",
|
|
7040
|
-
"description": "Controls whether the modal view is open when expanded.",
|
|
7041
|
-
"fieldName": "expanded"
|
|
7042
|
-
},
|
|
7043
|
-
{
|
|
7044
|
-
"name": "gradient-variant",
|
|
7045
|
-
"type": {
|
|
7046
|
-
"text": "string"
|
|
7047
|
-
},
|
|
7048
|
-
"default": "'medium'",
|
|
7049
|
-
"description": "Gradient variant for embedded view ('low' | 'medium' | 'high', default: 'medium')",
|
|
7050
|
-
"fieldName": "gradientVariant"
|
|
7063
|
+
"description": "Gets the currently selected items"
|
|
7051
7064
|
},
|
|
7052
7065
|
{
|
|
7053
|
-
"
|
|
7054
|
-
"
|
|
7055
|
-
|
|
7066
|
+
"kind": "method",
|
|
7067
|
+
"name": "getSelectedText",
|
|
7068
|
+
"privacy": "public",
|
|
7069
|
+
"return": {
|
|
7070
|
+
"type": {
|
|
7071
|
+
"text": "string"
|
|
7072
|
+
}
|
|
7056
7073
|
},
|
|
7057
|
-
"
|
|
7074
|
+
"description": "Gets text representation of the current selection"
|
|
7058
7075
|
},
|
|
7059
7076
|
{
|
|
7060
|
-
"
|
|
7061
|
-
"
|
|
7062
|
-
|
|
7077
|
+
"kind": "method",
|
|
7078
|
+
"name": "shouldShowSelectedText",
|
|
7079
|
+
"privacy": "public",
|
|
7080
|
+
"return": {
|
|
7081
|
+
"type": {
|
|
7082
|
+
"text": "boolean"
|
|
7083
|
+
}
|
|
7063
7084
|
},
|
|
7064
|
-
"
|
|
7065
|
-
"description": "Enable file upload functionality (default: 'off')",
|
|
7066
|
-
"fieldName": "fileUpload"
|
|
7085
|
+
"description": "Checks if selection text should be displayed"
|
|
7067
7086
|
},
|
|
7068
7087
|
{
|
|
7069
|
-
"
|
|
7070
|
-
"
|
|
7071
|
-
|
|
7088
|
+
"kind": "method",
|
|
7089
|
+
"name": "reset",
|
|
7090
|
+
"privacy": "public",
|
|
7091
|
+
"return": {
|
|
7092
|
+
"type": {
|
|
7093
|
+
"text": "void"
|
|
7094
|
+
}
|
|
7072
7095
|
},
|
|
7073
|
-
"
|
|
7074
|
-
"description": "Placeholder text for input (default: \"Ask a question...\")",
|
|
7075
|
-
"fieldName": "placeholder"
|
|
7096
|
+
"description": "Resets the selection state"
|
|
7076
7097
|
}
|
|
7077
|
-
]
|
|
7078
|
-
"superclass": {
|
|
7079
|
-
"name": "LitElement",
|
|
7080
|
-
"package": "lit"
|
|
7081
|
-
},
|
|
7082
|
-
"tagName": "forge-ai-embedded-chat",
|
|
7083
|
-
"customElement": true
|
|
7098
|
+
]
|
|
7084
7099
|
}
|
|
7085
7100
|
],
|
|
7086
7101
|
"exports": [
|
|
7087
7102
|
{
|
|
7088
7103
|
"kind": "js",
|
|
7089
|
-
"name": "
|
|
7090
|
-
"declaration": {
|
|
7091
|
-
"name": "AiEmbeddedChatComponentTagName",
|
|
7092
|
-
"module": "src/lib/ai-embedded-chat/ai-embedded-chat.ts"
|
|
7093
|
-
}
|
|
7094
|
-
},
|
|
7095
|
-
{
|
|
7096
|
-
"kind": "js",
|
|
7097
|
-
"name": "AiEmbeddedChatComponent",
|
|
7098
|
-
"declaration": {
|
|
7099
|
-
"name": "AiEmbeddedChatComponent",
|
|
7100
|
-
"module": "src/lib/ai-embedded-chat/ai-embedded-chat.ts"
|
|
7101
|
-
}
|
|
7102
|
-
},
|
|
7103
|
-
{
|
|
7104
|
-
"kind": "custom-element-definition",
|
|
7104
|
+
"name": "SelectionManager",
|
|
7105
7105
|
"declaration": {
|
|
7106
|
-
"name": "
|
|
7107
|
-
"module": "src/lib/ai-
|
|
7106
|
+
"name": "SelectionManager",
|
|
7107
|
+
"module": "src/lib/ai-dropdown-menu/selection-manager.ts"
|
|
7108
7108
|
}
|
|
7109
7109
|
}
|
|
7110
7110
|
]
|
|
@@ -8524,6 +8524,17 @@
|
|
|
8524
8524
|
],
|
|
8525
8525
|
"description": "Replaces the entire message history with the provided messages.\nUse this when restoring thread state from persistence."
|
|
8526
8526
|
},
|
|
8527
|
+
{
|
|
8528
|
+
"kind": "method",
|
|
8529
|
+
"name": "getHistory",
|
|
8530
|
+
"privacy": "public",
|
|
8531
|
+
"return": {
|
|
8532
|
+
"type": {
|
|
8533
|
+
"text": "string[]"
|
|
8534
|
+
}
|
|
8535
|
+
},
|
|
8536
|
+
"description": "Returns a copy of the current message history."
|
|
8537
|
+
},
|
|
8527
8538
|
{
|
|
8528
8539
|
"kind": "method",
|
|
8529
8540
|
"name": "closeSlashMenu",
|
|
@@ -9055,32 +9066,155 @@
|
|
|
9055
9066
|
"name": "LitElement",
|
|
9056
9067
|
"package": "lit"
|
|
9057
9068
|
},
|
|
9058
|
-
"tagName": "forge-ai-response-message-toolbar",
|
|
9069
|
+
"tagName": "forge-ai-response-message-toolbar",
|
|
9070
|
+
"customElement": true
|
|
9071
|
+
}
|
|
9072
|
+
],
|
|
9073
|
+
"exports": [
|
|
9074
|
+
{
|
|
9075
|
+
"kind": "js",
|
|
9076
|
+
"name": "AiResponseMessageToolbarComponentTagName",
|
|
9077
|
+
"declaration": {
|
|
9078
|
+
"name": "AiResponseMessageToolbarComponentTagName",
|
|
9079
|
+
"module": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts"
|
|
9080
|
+
}
|
|
9081
|
+
},
|
|
9082
|
+
{
|
|
9083
|
+
"kind": "js",
|
|
9084
|
+
"name": "AiResponseMessageToolbarComponent",
|
|
9085
|
+
"declaration": {
|
|
9086
|
+
"name": "AiResponseMessageToolbarComponent",
|
|
9087
|
+
"module": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts"
|
|
9088
|
+
}
|
|
9089
|
+
},
|
|
9090
|
+
{
|
|
9091
|
+
"kind": "custom-element-definition",
|
|
9092
|
+
"declaration": {
|
|
9093
|
+
"name": "AiResponseMessageToolbarComponent",
|
|
9094
|
+
"module": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts"
|
|
9095
|
+
}
|
|
9096
|
+
}
|
|
9097
|
+
]
|
|
9098
|
+
},
|
|
9099
|
+
{
|
|
9100
|
+
"kind": "javascript-module",
|
|
9101
|
+
"path": "src/lib/ai-sidebar/ai-sidebar.ts",
|
|
9102
|
+
"declarations": [
|
|
9103
|
+
{
|
|
9104
|
+
"kind": "variable",
|
|
9105
|
+
"name": "AiSidebarComponentTagName",
|
|
9106
|
+
"type": {
|
|
9107
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
9108
|
+
},
|
|
9109
|
+
"default": "'forge-ai-sidebar'"
|
|
9110
|
+
},
|
|
9111
|
+
{
|
|
9112
|
+
"kind": "class",
|
|
9113
|
+
"description": "",
|
|
9114
|
+
"name": "AiSidebarComponent",
|
|
9115
|
+
"slots": [
|
|
9116
|
+
{
|
|
9117
|
+
"description": "Default slot for sidebar content (typically ai-chat-interface)",
|
|
9118
|
+
"name": ""
|
|
9119
|
+
}
|
|
9120
|
+
],
|
|
9121
|
+
"members": [
|
|
9122
|
+
{
|
|
9123
|
+
"kind": "field",
|
|
9124
|
+
"name": "open",
|
|
9125
|
+
"type": {
|
|
9126
|
+
"text": "boolean"
|
|
9127
|
+
},
|
|
9128
|
+
"privacy": "public",
|
|
9129
|
+
"default": "false",
|
|
9130
|
+
"description": "Indicates whether the sidebar is open.",
|
|
9131
|
+
"attribute": "open"
|
|
9132
|
+
},
|
|
9133
|
+
{
|
|
9134
|
+
"kind": "method",
|
|
9135
|
+
"name": "show",
|
|
9136
|
+
"privacy": "public",
|
|
9137
|
+
"return": {
|
|
9138
|
+
"type": {
|
|
9139
|
+
"text": "void"
|
|
9140
|
+
}
|
|
9141
|
+
},
|
|
9142
|
+
"description": "Opens the sidebar."
|
|
9143
|
+
},
|
|
9144
|
+
{
|
|
9145
|
+
"kind": "method",
|
|
9146
|
+
"name": "close",
|
|
9147
|
+
"privacy": "public",
|
|
9148
|
+
"return": {
|
|
9149
|
+
"type": {
|
|
9150
|
+
"text": "void"
|
|
9151
|
+
}
|
|
9152
|
+
},
|
|
9153
|
+
"description": "Closes the sidebar."
|
|
9154
|
+
},
|
|
9155
|
+
{
|
|
9156
|
+
"kind": "method",
|
|
9157
|
+
"name": "toggle",
|
|
9158
|
+
"privacy": "public",
|
|
9159
|
+
"return": {
|
|
9160
|
+
"type": {
|
|
9161
|
+
"text": "void"
|
|
9162
|
+
}
|
|
9163
|
+
},
|
|
9164
|
+
"description": "Toggles the sidebar open state."
|
|
9165
|
+
}
|
|
9166
|
+
],
|
|
9167
|
+
"events": [
|
|
9168
|
+
{
|
|
9169
|
+
"description": "Fired when the sidebar is opened",
|
|
9170
|
+
"name": "forge-ai-sidebar-open"
|
|
9171
|
+
},
|
|
9172
|
+
{
|
|
9173
|
+
"description": "Fired when the sidebar is closed",
|
|
9174
|
+
"name": "forge-ai-sidebar-close"
|
|
9175
|
+
}
|
|
9176
|
+
],
|
|
9177
|
+
"attributes": [
|
|
9178
|
+
{
|
|
9179
|
+
"name": "open",
|
|
9180
|
+
"type": {
|
|
9181
|
+
"text": "boolean"
|
|
9182
|
+
},
|
|
9183
|
+
"default": "false",
|
|
9184
|
+
"description": "Indicates whether the sidebar is open.",
|
|
9185
|
+
"fieldName": "open"
|
|
9186
|
+
}
|
|
9187
|
+
],
|
|
9188
|
+
"superclass": {
|
|
9189
|
+
"name": "LitElement",
|
|
9190
|
+
"package": "lit"
|
|
9191
|
+
},
|
|
9192
|
+
"tagName": "forge-ai-sidebar",
|
|
9059
9193
|
"customElement": true
|
|
9060
9194
|
}
|
|
9061
9195
|
],
|
|
9062
9196
|
"exports": [
|
|
9063
9197
|
{
|
|
9064
9198
|
"kind": "js",
|
|
9065
|
-
"name": "
|
|
9199
|
+
"name": "AiSidebarComponentTagName",
|
|
9066
9200
|
"declaration": {
|
|
9067
|
-
"name": "
|
|
9068
|
-
"module": "src/lib/ai-
|
|
9201
|
+
"name": "AiSidebarComponentTagName",
|
|
9202
|
+
"module": "src/lib/ai-sidebar/ai-sidebar.ts"
|
|
9069
9203
|
}
|
|
9070
9204
|
},
|
|
9071
9205
|
{
|
|
9072
9206
|
"kind": "js",
|
|
9073
|
-
"name": "
|
|
9207
|
+
"name": "AiSidebarComponent",
|
|
9074
9208
|
"declaration": {
|
|
9075
|
-
"name": "
|
|
9076
|
-
"module": "src/lib/ai-
|
|
9209
|
+
"name": "AiSidebarComponent",
|
|
9210
|
+
"module": "src/lib/ai-sidebar/ai-sidebar.ts"
|
|
9077
9211
|
}
|
|
9078
9212
|
},
|
|
9079
9213
|
{
|
|
9080
9214
|
"kind": "custom-element-definition",
|
|
9081
9215
|
"declaration": {
|
|
9082
|
-
"name": "
|
|
9083
|
-
"module": "src/lib/ai-
|
|
9216
|
+
"name": "AiSidebarComponent",
|
|
9217
|
+
"module": "src/lib/ai-sidebar/ai-sidebar.ts"
|
|
9084
9218
|
}
|
|
9085
9219
|
}
|
|
9086
9220
|
]
|
|
@@ -9249,129 +9383,6 @@
|
|
|
9249
9383
|
}
|
|
9250
9384
|
]
|
|
9251
9385
|
},
|
|
9252
|
-
{
|
|
9253
|
-
"kind": "javascript-module",
|
|
9254
|
-
"path": "src/lib/ai-sidebar/ai-sidebar.ts",
|
|
9255
|
-
"declarations": [
|
|
9256
|
-
{
|
|
9257
|
-
"kind": "variable",
|
|
9258
|
-
"name": "AiSidebarComponentTagName",
|
|
9259
|
-
"type": {
|
|
9260
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
9261
|
-
},
|
|
9262
|
-
"default": "'forge-ai-sidebar'"
|
|
9263
|
-
},
|
|
9264
|
-
{
|
|
9265
|
-
"kind": "class",
|
|
9266
|
-
"description": "",
|
|
9267
|
-
"name": "AiSidebarComponent",
|
|
9268
|
-
"slots": [
|
|
9269
|
-
{
|
|
9270
|
-
"description": "Default slot for sidebar content (typically ai-chat-interface)",
|
|
9271
|
-
"name": ""
|
|
9272
|
-
}
|
|
9273
|
-
],
|
|
9274
|
-
"members": [
|
|
9275
|
-
{
|
|
9276
|
-
"kind": "field",
|
|
9277
|
-
"name": "open",
|
|
9278
|
-
"type": {
|
|
9279
|
-
"text": "boolean"
|
|
9280
|
-
},
|
|
9281
|
-
"privacy": "public",
|
|
9282
|
-
"default": "false",
|
|
9283
|
-
"description": "Indicates whether the sidebar is open.",
|
|
9284
|
-
"attribute": "open"
|
|
9285
|
-
},
|
|
9286
|
-
{
|
|
9287
|
-
"kind": "method",
|
|
9288
|
-
"name": "show",
|
|
9289
|
-
"privacy": "public",
|
|
9290
|
-
"return": {
|
|
9291
|
-
"type": {
|
|
9292
|
-
"text": "void"
|
|
9293
|
-
}
|
|
9294
|
-
},
|
|
9295
|
-
"description": "Opens the sidebar."
|
|
9296
|
-
},
|
|
9297
|
-
{
|
|
9298
|
-
"kind": "method",
|
|
9299
|
-
"name": "close",
|
|
9300
|
-
"privacy": "public",
|
|
9301
|
-
"return": {
|
|
9302
|
-
"type": {
|
|
9303
|
-
"text": "void"
|
|
9304
|
-
}
|
|
9305
|
-
},
|
|
9306
|
-
"description": "Closes the sidebar."
|
|
9307
|
-
},
|
|
9308
|
-
{
|
|
9309
|
-
"kind": "method",
|
|
9310
|
-
"name": "toggle",
|
|
9311
|
-
"privacy": "public",
|
|
9312
|
-
"return": {
|
|
9313
|
-
"type": {
|
|
9314
|
-
"text": "void"
|
|
9315
|
-
}
|
|
9316
|
-
},
|
|
9317
|
-
"description": "Toggles the sidebar open state."
|
|
9318
|
-
}
|
|
9319
|
-
],
|
|
9320
|
-
"events": [
|
|
9321
|
-
{
|
|
9322
|
-
"description": "Fired when the sidebar is opened",
|
|
9323
|
-
"name": "forge-ai-sidebar-open"
|
|
9324
|
-
},
|
|
9325
|
-
{
|
|
9326
|
-
"description": "Fired when the sidebar is closed",
|
|
9327
|
-
"name": "forge-ai-sidebar-close"
|
|
9328
|
-
}
|
|
9329
|
-
],
|
|
9330
|
-
"attributes": [
|
|
9331
|
-
{
|
|
9332
|
-
"name": "open",
|
|
9333
|
-
"type": {
|
|
9334
|
-
"text": "boolean"
|
|
9335
|
-
},
|
|
9336
|
-
"default": "false",
|
|
9337
|
-
"description": "Indicates whether the sidebar is open.",
|
|
9338
|
-
"fieldName": "open"
|
|
9339
|
-
}
|
|
9340
|
-
],
|
|
9341
|
-
"superclass": {
|
|
9342
|
-
"name": "LitElement",
|
|
9343
|
-
"package": "lit"
|
|
9344
|
-
},
|
|
9345
|
-
"tagName": "forge-ai-sidebar",
|
|
9346
|
-
"customElement": true
|
|
9347
|
-
}
|
|
9348
|
-
],
|
|
9349
|
-
"exports": [
|
|
9350
|
-
{
|
|
9351
|
-
"kind": "js",
|
|
9352
|
-
"name": "AiSidebarComponentTagName",
|
|
9353
|
-
"declaration": {
|
|
9354
|
-
"name": "AiSidebarComponentTagName",
|
|
9355
|
-
"module": "src/lib/ai-sidebar/ai-sidebar.ts"
|
|
9356
|
-
}
|
|
9357
|
-
},
|
|
9358
|
-
{
|
|
9359
|
-
"kind": "js",
|
|
9360
|
-
"name": "AiSidebarComponent",
|
|
9361
|
-
"declaration": {
|
|
9362
|
-
"name": "AiSidebarComponent",
|
|
9363
|
-
"module": "src/lib/ai-sidebar/ai-sidebar.ts"
|
|
9364
|
-
}
|
|
9365
|
-
},
|
|
9366
|
-
{
|
|
9367
|
-
"kind": "custom-element-definition",
|
|
9368
|
-
"declaration": {
|
|
9369
|
-
"name": "AiSidebarComponent",
|
|
9370
|
-
"module": "src/lib/ai-sidebar/ai-sidebar.ts"
|
|
9371
|
-
}
|
|
9372
|
-
}
|
|
9373
|
-
]
|
|
9374
|
-
},
|
|
9375
9386
|
{
|
|
9376
9387
|
"kind": "javascript-module",
|
|
9377
9388
|
"path": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts",
|
|
@@ -9689,42 +9700,145 @@
|
|
|
9689
9700
|
"name": "LitElement",
|
|
9690
9701
|
"package": "lit"
|
|
9691
9702
|
},
|
|
9692
|
-
"tagName": "forge-ai-suggestions",
|
|
9693
|
-
"customElement": true,
|
|
9694
|
-
"states": [
|
|
9695
|
-
{
|
|
9696
|
-
"name": "inline",
|
|
9697
|
-
"description": "The suggestions are displayed inline."
|
|
9698
|
-
},
|
|
9699
|
-
{
|
|
9700
|
-
"name": "block",
|
|
9701
|
-
"description": "The suggestions are displayed as blocks."
|
|
9702
|
-
}
|
|
9703
|
-
]
|
|
9703
|
+
"tagName": "forge-ai-suggestions",
|
|
9704
|
+
"customElement": true,
|
|
9705
|
+
"states": [
|
|
9706
|
+
{
|
|
9707
|
+
"name": "inline",
|
|
9708
|
+
"description": "The suggestions are displayed inline."
|
|
9709
|
+
},
|
|
9710
|
+
{
|
|
9711
|
+
"name": "block",
|
|
9712
|
+
"description": "The suggestions are displayed as blocks."
|
|
9713
|
+
}
|
|
9714
|
+
]
|
|
9715
|
+
}
|
|
9716
|
+
],
|
|
9717
|
+
"exports": [
|
|
9718
|
+
{
|
|
9719
|
+
"kind": "js",
|
|
9720
|
+
"name": "AiSuggestionsComponentTagName",
|
|
9721
|
+
"declaration": {
|
|
9722
|
+
"name": "AiSuggestionsComponentTagName",
|
|
9723
|
+
"module": "src/lib/ai-suggestions/ai-suggestions.ts"
|
|
9724
|
+
}
|
|
9725
|
+
},
|
|
9726
|
+
{
|
|
9727
|
+
"kind": "js",
|
|
9728
|
+
"name": "AiSuggestionsComponent",
|
|
9729
|
+
"declaration": {
|
|
9730
|
+
"name": "AiSuggestionsComponent",
|
|
9731
|
+
"module": "src/lib/ai-suggestions/ai-suggestions.ts"
|
|
9732
|
+
}
|
|
9733
|
+
},
|
|
9734
|
+
{
|
|
9735
|
+
"kind": "custom-element-definition",
|
|
9736
|
+
"declaration": {
|
|
9737
|
+
"name": "AiSuggestionsComponent",
|
|
9738
|
+
"module": "src/lib/ai-suggestions/ai-suggestions.ts"
|
|
9739
|
+
}
|
|
9740
|
+
}
|
|
9741
|
+
]
|
|
9742
|
+
},
|
|
9743
|
+
{
|
|
9744
|
+
"kind": "javascript-module",
|
|
9745
|
+
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
9746
|
+
"declarations": [
|
|
9747
|
+
{
|
|
9748
|
+
"kind": "variable",
|
|
9749
|
+
"name": "AiThreadsComponentTagName",
|
|
9750
|
+
"type": {
|
|
9751
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
9752
|
+
},
|
|
9753
|
+
"default": "'forge-ai-threads'"
|
|
9754
|
+
},
|
|
9755
|
+
{
|
|
9756
|
+
"kind": "class",
|
|
9757
|
+
"description": "",
|
|
9758
|
+
"name": "AiThreadsComponent",
|
|
9759
|
+
"slots": [
|
|
9760
|
+
{
|
|
9761
|
+
"description": "Default slot for chatbot component",
|
|
9762
|
+
"name": ""
|
|
9763
|
+
}
|
|
9764
|
+
],
|
|
9765
|
+
"members": [
|
|
9766
|
+
{
|
|
9767
|
+
"kind": "field",
|
|
9768
|
+
"name": "threads",
|
|
9769
|
+
"type": {
|
|
9770
|
+
"text": "Thread[]"
|
|
9771
|
+
},
|
|
9772
|
+
"privacy": "public",
|
|
9773
|
+
"default": "[]",
|
|
9774
|
+
"description": "Array of threads to display in the navigation list",
|
|
9775
|
+
"attribute": "threads"
|
|
9776
|
+
}
|
|
9777
|
+
],
|
|
9778
|
+
"events": [
|
|
9779
|
+
{
|
|
9780
|
+
"type": {
|
|
9781
|
+
"text": "CustomEvent<ForgeAiThreadsSelectEventData>"
|
|
9782
|
+
},
|
|
9783
|
+
"description": "Fired when a thread is selected.",
|
|
9784
|
+
"name": "forge-ai-threads-select"
|
|
9785
|
+
},
|
|
9786
|
+
{
|
|
9787
|
+
"type": {
|
|
9788
|
+
"text": "CustomEvent"
|
|
9789
|
+
},
|
|
9790
|
+
"description": "Fired when the new chat button is clicked.",
|
|
9791
|
+
"name": "forge-ai-threads-new-chat"
|
|
9792
|
+
},
|
|
9793
|
+
{
|
|
9794
|
+
"type": {
|
|
9795
|
+
"text": "CustomEvent"
|
|
9796
|
+
},
|
|
9797
|
+
"description": "Fired when the clear history button is clicked.",
|
|
9798
|
+
"name": "forge-ai-threads-clear-history"
|
|
9799
|
+
}
|
|
9800
|
+
],
|
|
9801
|
+
"attributes": [
|
|
9802
|
+
{
|
|
9803
|
+
"name": "threads",
|
|
9804
|
+
"type": {
|
|
9805
|
+
"text": "Thread[]"
|
|
9806
|
+
},
|
|
9807
|
+
"default": "[]",
|
|
9808
|
+
"description": "Array of threads to display in the navigation list",
|
|
9809
|
+
"fieldName": "threads"
|
|
9810
|
+
}
|
|
9811
|
+
],
|
|
9812
|
+
"superclass": {
|
|
9813
|
+
"name": "LitElement",
|
|
9814
|
+
"package": "lit"
|
|
9815
|
+
},
|
|
9816
|
+
"tagName": "forge-ai-threads",
|
|
9817
|
+
"customElement": true
|
|
9704
9818
|
}
|
|
9705
9819
|
],
|
|
9706
9820
|
"exports": [
|
|
9707
9821
|
{
|
|
9708
9822
|
"kind": "js",
|
|
9709
|
-
"name": "
|
|
9823
|
+
"name": "AiThreadsComponentTagName",
|
|
9710
9824
|
"declaration": {
|
|
9711
|
-
"name": "
|
|
9712
|
-
"module": "src/lib/ai-
|
|
9825
|
+
"name": "AiThreadsComponentTagName",
|
|
9826
|
+
"module": "src/lib/ai-threads/ai-threads.ts"
|
|
9713
9827
|
}
|
|
9714
9828
|
},
|
|
9715
9829
|
{
|
|
9716
9830
|
"kind": "js",
|
|
9717
|
-
"name": "
|
|
9831
|
+
"name": "AiThreadsComponent",
|
|
9718
9832
|
"declaration": {
|
|
9719
|
-
"name": "
|
|
9720
|
-
"module": "src/lib/ai-
|
|
9833
|
+
"name": "AiThreadsComponent",
|
|
9834
|
+
"module": "src/lib/ai-threads/ai-threads.ts"
|
|
9721
9835
|
}
|
|
9722
9836
|
},
|
|
9723
9837
|
{
|
|
9724
9838
|
"kind": "custom-element-definition",
|
|
9725
9839
|
"declaration": {
|
|
9726
|
-
"name": "
|
|
9727
|
-
"module": "src/lib/ai-
|
|
9840
|
+
"name": "AiThreadsComponent",
|
|
9841
|
+
"module": "src/lib/ai-threads/ai-threads.ts"
|
|
9728
9842
|
}
|
|
9729
9843
|
}
|
|
9730
9844
|
]
|
|
@@ -9838,109 +9952,6 @@
|
|
|
9838
9952
|
}
|
|
9839
9953
|
]
|
|
9840
9954
|
},
|
|
9841
|
-
{
|
|
9842
|
-
"kind": "javascript-module",
|
|
9843
|
-
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
9844
|
-
"declarations": [
|
|
9845
|
-
{
|
|
9846
|
-
"kind": "variable",
|
|
9847
|
-
"name": "AiThreadsComponentTagName",
|
|
9848
|
-
"type": {
|
|
9849
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
9850
|
-
},
|
|
9851
|
-
"default": "'forge-ai-threads'"
|
|
9852
|
-
},
|
|
9853
|
-
{
|
|
9854
|
-
"kind": "class",
|
|
9855
|
-
"description": "",
|
|
9856
|
-
"name": "AiThreadsComponent",
|
|
9857
|
-
"slots": [
|
|
9858
|
-
{
|
|
9859
|
-
"description": "Default slot for chatbot component",
|
|
9860
|
-
"name": ""
|
|
9861
|
-
}
|
|
9862
|
-
],
|
|
9863
|
-
"members": [
|
|
9864
|
-
{
|
|
9865
|
-
"kind": "field",
|
|
9866
|
-
"name": "threads",
|
|
9867
|
-
"type": {
|
|
9868
|
-
"text": "Thread[]"
|
|
9869
|
-
},
|
|
9870
|
-
"privacy": "public",
|
|
9871
|
-
"default": "[]",
|
|
9872
|
-
"description": "Array of threads to display in the navigation list",
|
|
9873
|
-
"attribute": "threads"
|
|
9874
|
-
}
|
|
9875
|
-
],
|
|
9876
|
-
"events": [
|
|
9877
|
-
{
|
|
9878
|
-
"type": {
|
|
9879
|
-
"text": "CustomEvent<ForgeAiThreadsSelectEventData>"
|
|
9880
|
-
},
|
|
9881
|
-
"description": "Fired when a thread is selected.",
|
|
9882
|
-
"name": "forge-ai-threads-select"
|
|
9883
|
-
},
|
|
9884
|
-
{
|
|
9885
|
-
"type": {
|
|
9886
|
-
"text": "CustomEvent"
|
|
9887
|
-
},
|
|
9888
|
-
"description": "Fired when the new chat button is clicked.",
|
|
9889
|
-
"name": "forge-ai-threads-new-chat"
|
|
9890
|
-
},
|
|
9891
|
-
{
|
|
9892
|
-
"type": {
|
|
9893
|
-
"text": "CustomEvent"
|
|
9894
|
-
},
|
|
9895
|
-
"description": "Fired when the clear history button is clicked.",
|
|
9896
|
-
"name": "forge-ai-threads-clear-history"
|
|
9897
|
-
}
|
|
9898
|
-
],
|
|
9899
|
-
"attributes": [
|
|
9900
|
-
{
|
|
9901
|
-
"name": "threads",
|
|
9902
|
-
"type": {
|
|
9903
|
-
"text": "Thread[]"
|
|
9904
|
-
},
|
|
9905
|
-
"default": "[]",
|
|
9906
|
-
"description": "Array of threads to display in the navigation list",
|
|
9907
|
-
"fieldName": "threads"
|
|
9908
|
-
}
|
|
9909
|
-
],
|
|
9910
|
-
"superclass": {
|
|
9911
|
-
"name": "LitElement",
|
|
9912
|
-
"package": "lit"
|
|
9913
|
-
},
|
|
9914
|
-
"tagName": "forge-ai-threads",
|
|
9915
|
-
"customElement": true
|
|
9916
|
-
}
|
|
9917
|
-
],
|
|
9918
|
-
"exports": [
|
|
9919
|
-
{
|
|
9920
|
-
"kind": "js",
|
|
9921
|
-
"name": "AiThreadsComponentTagName",
|
|
9922
|
-
"declaration": {
|
|
9923
|
-
"name": "AiThreadsComponentTagName",
|
|
9924
|
-
"module": "src/lib/ai-threads/ai-threads.ts"
|
|
9925
|
-
}
|
|
9926
|
-
},
|
|
9927
|
-
{
|
|
9928
|
-
"kind": "js",
|
|
9929
|
-
"name": "AiThreadsComponent",
|
|
9930
|
-
"declaration": {
|
|
9931
|
-
"name": "AiThreadsComponent",
|
|
9932
|
-
"module": "src/lib/ai-threads/ai-threads.ts"
|
|
9933
|
-
}
|
|
9934
|
-
},
|
|
9935
|
-
{
|
|
9936
|
-
"kind": "custom-element-definition",
|
|
9937
|
-
"declaration": {
|
|
9938
|
-
"name": "AiThreadsComponent",
|
|
9939
|
-
"module": "src/lib/ai-threads/ai-threads.ts"
|
|
9940
|
-
}
|
|
9941
|
-
}
|
|
9942
|
-
]
|
|
9943
|
-
},
|
|
9944
9955
|
{
|
|
9945
9956
|
"kind": "javascript-module",
|
|
9946
9957
|
"path": "src/lib/ai-tool-call-indicator/ai-tool-call-indicator.ts",
|
|
@@ -10160,164 +10171,164 @@
|
|
|
10160
10171
|
},
|
|
10161
10172
|
{
|
|
10162
10173
|
"kind": "javascript-module",
|
|
10163
|
-
"path": "src/lib/ai-
|
|
10174
|
+
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
10164
10175
|
"declarations": [
|
|
10165
10176
|
{
|
|
10166
10177
|
"kind": "variable",
|
|
10167
|
-
"name": "
|
|
10178
|
+
"name": "AiVoiceInputComponentTagName",
|
|
10168
10179
|
"type": {
|
|
10169
10180
|
"text": "keyof HTMLElementTagNameMap"
|
|
10170
10181
|
},
|
|
10171
|
-
"default": "'forge-ai-
|
|
10182
|
+
"default": "'forge-ai-voice-input'"
|
|
10172
10183
|
},
|
|
10173
10184
|
{
|
|
10174
10185
|
"kind": "class",
|
|
10175
10186
|
"description": "",
|
|
10176
|
-
"name": "
|
|
10177
|
-
"members": [
|
|
10178
|
-
{
|
|
10179
|
-
"kind": "field",
|
|
10180
|
-
"name": "timestamp",
|
|
10181
|
-
"type": {
|
|
10182
|
-
"text": "number"
|
|
10183
|
-
},
|
|
10184
|
-
"privacy": "public"
|
|
10185
|
-
},
|
|
10186
|
-
{
|
|
10187
|
-
"kind": "field",
|
|
10188
|
-
"name": "streaming",
|
|
10189
|
-
"type": {
|
|
10190
|
-
"text": "boolean"
|
|
10191
|
-
},
|
|
10192
|
-
"privacy": "public",
|
|
10193
|
-
"default": "false",
|
|
10194
|
-
"attribute": "streaming"
|
|
10195
|
-
}
|
|
10196
|
-
],
|
|
10187
|
+
"name": "AiVoiceInputComponent",
|
|
10188
|
+
"members": [],
|
|
10197
10189
|
"events": [
|
|
10198
10190
|
{
|
|
10199
|
-
"name": "forge-ai-
|
|
10200
|
-
"type": {
|
|
10201
|
-
"text": "CustomEvent<void>"
|
|
10202
|
-
},
|
|
10203
|
-
"description": "Fired when copy button is clicked"
|
|
10204
|
-
},
|
|
10205
|
-
{
|
|
10206
|
-
"name": "forge-ai-user-message-toolbar-resend",
|
|
10207
|
-
"type": {
|
|
10208
|
-
"text": "CustomEvent<void>"
|
|
10209
|
-
},
|
|
10210
|
-
"description": "Fired when resend button is clicked"
|
|
10211
|
-
},
|
|
10212
|
-
{
|
|
10213
|
-
"name": "forge-ai-user-message-toolbar-edit",
|
|
10214
|
-
"type": {
|
|
10215
|
-
"text": "CustomEvent<void>"
|
|
10216
|
-
},
|
|
10217
|
-
"description": "Fired when edit button is clicked"
|
|
10218
|
-
}
|
|
10219
|
-
],
|
|
10220
|
-
"attributes": [
|
|
10221
|
-
{
|
|
10222
|
-
"name": "streaming",
|
|
10191
|
+
"name": "forge-ai-voice-input-result",
|
|
10223
10192
|
"type": {
|
|
10224
|
-
"text": "
|
|
10193
|
+
"text": "CustomEvent<AiVoiceInputResultEvent>"
|
|
10225
10194
|
},
|
|
10226
|
-
"
|
|
10227
|
-
"fieldName": "streaming"
|
|
10195
|
+
"description": "Fired when speech recognition produces a result. The event detail contains the transcript and confidence score of the recognized speech."
|
|
10228
10196
|
}
|
|
10229
10197
|
],
|
|
10230
10198
|
"superclass": {
|
|
10231
10199
|
"name": "LitElement",
|
|
10232
10200
|
"package": "lit"
|
|
10233
10201
|
},
|
|
10234
|
-
"tagName": "forge-ai-
|
|
10235
|
-
"customElement": true
|
|
10236
|
-
"summary": "Toolbar for user message actions including copy, resend, and edit."
|
|
10202
|
+
"tagName": "forge-ai-voice-input",
|
|
10203
|
+
"customElement": true
|
|
10237
10204
|
}
|
|
10238
10205
|
],
|
|
10239
10206
|
"exports": [
|
|
10240
10207
|
{
|
|
10241
10208
|
"kind": "js",
|
|
10242
|
-
"name": "
|
|
10209
|
+
"name": "AiVoiceInputComponentTagName",
|
|
10243
10210
|
"declaration": {
|
|
10244
|
-
"name": "
|
|
10245
|
-
"module": "src/lib/ai-
|
|
10211
|
+
"name": "AiVoiceInputComponentTagName",
|
|
10212
|
+
"module": "src/lib/ai-voice-input/ai-voice-input.ts"
|
|
10246
10213
|
}
|
|
10247
10214
|
},
|
|
10248
10215
|
{
|
|
10249
10216
|
"kind": "js",
|
|
10250
|
-
"name": "
|
|
10217
|
+
"name": "AiVoiceInputComponent",
|
|
10251
10218
|
"declaration": {
|
|
10252
|
-
"name": "
|
|
10253
|
-
"module": "src/lib/ai-
|
|
10219
|
+
"name": "AiVoiceInputComponent",
|
|
10220
|
+
"module": "src/lib/ai-voice-input/ai-voice-input.ts"
|
|
10254
10221
|
}
|
|
10255
10222
|
},
|
|
10256
10223
|
{
|
|
10257
10224
|
"kind": "custom-element-definition",
|
|
10258
10225
|
"declaration": {
|
|
10259
|
-
"name": "
|
|
10260
|
-
"module": "src/lib/ai-
|
|
10226
|
+
"name": "AiVoiceInputComponent",
|
|
10227
|
+
"module": "src/lib/ai-voice-input/ai-voice-input.ts"
|
|
10261
10228
|
}
|
|
10262
10229
|
}
|
|
10263
10230
|
]
|
|
10264
10231
|
},
|
|
10265
10232
|
{
|
|
10266
10233
|
"kind": "javascript-module",
|
|
10267
|
-
"path": "src/lib/ai-
|
|
10234
|
+
"path": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts",
|
|
10268
10235
|
"declarations": [
|
|
10269
10236
|
{
|
|
10270
10237
|
"kind": "variable",
|
|
10271
|
-
"name": "
|
|
10238
|
+
"name": "AiUserMessageToolbarComponentTagName",
|
|
10272
10239
|
"type": {
|
|
10273
10240
|
"text": "keyof HTMLElementTagNameMap"
|
|
10274
10241
|
},
|
|
10275
|
-
"default": "'forge-ai-
|
|
10242
|
+
"default": "'forge-ai-user-message-toolbar'"
|
|
10276
10243
|
},
|
|
10277
10244
|
{
|
|
10278
10245
|
"kind": "class",
|
|
10279
10246
|
"description": "",
|
|
10280
|
-
"name": "
|
|
10281
|
-
"members": [
|
|
10247
|
+
"name": "AiUserMessageToolbarComponent",
|
|
10248
|
+
"members": [
|
|
10249
|
+
{
|
|
10250
|
+
"kind": "field",
|
|
10251
|
+
"name": "timestamp",
|
|
10252
|
+
"type": {
|
|
10253
|
+
"text": "number"
|
|
10254
|
+
},
|
|
10255
|
+
"privacy": "public"
|
|
10256
|
+
},
|
|
10257
|
+
{
|
|
10258
|
+
"kind": "field",
|
|
10259
|
+
"name": "streaming",
|
|
10260
|
+
"type": {
|
|
10261
|
+
"text": "boolean"
|
|
10262
|
+
},
|
|
10263
|
+
"privacy": "public",
|
|
10264
|
+
"default": "false",
|
|
10265
|
+
"attribute": "streaming"
|
|
10266
|
+
}
|
|
10267
|
+
],
|
|
10282
10268
|
"events": [
|
|
10283
10269
|
{
|
|
10284
|
-
"name": "forge-ai-
|
|
10270
|
+
"name": "forge-ai-user-message-toolbar-copy",
|
|
10271
|
+
"type": {
|
|
10272
|
+
"text": "CustomEvent<void>"
|
|
10273
|
+
},
|
|
10274
|
+
"description": "Fired when copy button is clicked"
|
|
10275
|
+
},
|
|
10276
|
+
{
|
|
10277
|
+
"name": "forge-ai-user-message-toolbar-resend",
|
|
10278
|
+
"type": {
|
|
10279
|
+
"text": "CustomEvent<void>"
|
|
10280
|
+
},
|
|
10281
|
+
"description": "Fired when resend button is clicked"
|
|
10282
|
+
},
|
|
10283
|
+
{
|
|
10284
|
+
"name": "forge-ai-user-message-toolbar-edit",
|
|
10285
10285
|
"type": {
|
|
10286
|
-
"text": "CustomEvent<
|
|
10286
|
+
"text": "CustomEvent<void>"
|
|
10287
10287
|
},
|
|
10288
|
-
"description": "Fired when
|
|
10288
|
+
"description": "Fired when edit button is clicked"
|
|
10289
|
+
}
|
|
10290
|
+
],
|
|
10291
|
+
"attributes": [
|
|
10292
|
+
{
|
|
10293
|
+
"name": "streaming",
|
|
10294
|
+
"type": {
|
|
10295
|
+
"text": "boolean"
|
|
10296
|
+
},
|
|
10297
|
+
"default": "false",
|
|
10298
|
+
"fieldName": "streaming"
|
|
10289
10299
|
}
|
|
10290
10300
|
],
|
|
10291
10301
|
"superclass": {
|
|
10292
10302
|
"name": "LitElement",
|
|
10293
10303
|
"package": "lit"
|
|
10294
10304
|
},
|
|
10295
|
-
"tagName": "forge-ai-
|
|
10296
|
-
"customElement": true
|
|
10305
|
+
"tagName": "forge-ai-user-message-toolbar",
|
|
10306
|
+
"customElement": true,
|
|
10307
|
+
"summary": "Toolbar for user message actions including copy, resend, and edit."
|
|
10297
10308
|
}
|
|
10298
10309
|
],
|
|
10299
10310
|
"exports": [
|
|
10300
10311
|
{
|
|
10301
10312
|
"kind": "js",
|
|
10302
|
-
"name": "
|
|
10313
|
+
"name": "AiUserMessageToolbarComponentTagName",
|
|
10303
10314
|
"declaration": {
|
|
10304
|
-
"name": "
|
|
10305
|
-
"module": "src/lib/ai-
|
|
10315
|
+
"name": "AiUserMessageToolbarComponentTagName",
|
|
10316
|
+
"module": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts"
|
|
10306
10317
|
}
|
|
10307
10318
|
},
|
|
10308
10319
|
{
|
|
10309
10320
|
"kind": "js",
|
|
10310
|
-
"name": "
|
|
10321
|
+
"name": "AiUserMessageToolbarComponent",
|
|
10311
10322
|
"declaration": {
|
|
10312
|
-
"name": "
|
|
10313
|
-
"module": "src/lib/ai-
|
|
10323
|
+
"name": "AiUserMessageToolbarComponent",
|
|
10324
|
+
"module": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts"
|
|
10314
10325
|
}
|
|
10315
10326
|
},
|
|
10316
10327
|
{
|
|
10317
10328
|
"kind": "custom-element-definition",
|
|
10318
10329
|
"declaration": {
|
|
10319
|
-
"name": "
|
|
10320
|
-
"module": "src/lib/ai-
|
|
10330
|
+
"name": "AiUserMessageToolbarComponent",
|
|
10331
|
+
"module": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts"
|
|
10321
10332
|
}
|
|
10322
10333
|
}
|
|
10323
10334
|
]
|
|
@@ -10923,123 +10934,123 @@
|
|
|
10923
10934
|
},
|
|
10924
10935
|
{
|
|
10925
10936
|
"kind": "javascript-module",
|
|
10926
|
-
"path": "src/lib/ai-chain-of-thought/thought-
|
|
10937
|
+
"path": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts",
|
|
10927
10938
|
"declarations": [
|
|
10928
10939
|
{
|
|
10929
10940
|
"kind": "variable",
|
|
10930
|
-
"name": "
|
|
10941
|
+
"name": "ThoughtDetailComponentTagName",
|
|
10931
10942
|
"type": {
|
|
10932
10943
|
"text": "keyof HTMLElementTagNameMap"
|
|
10933
10944
|
},
|
|
10934
|
-
"default": "'forge-ai-thought-
|
|
10945
|
+
"default": "'forge-ai-thought-detail'"
|
|
10935
10946
|
},
|
|
10936
10947
|
{
|
|
10937
10948
|
"kind": "class",
|
|
10938
10949
|
"description": "",
|
|
10939
|
-
"name": "
|
|
10940
|
-
"members": [
|
|
10941
|
-
{
|
|
10942
|
-
"kind": "field",
|
|
10943
|
-
"name": "step",
|
|
10944
|
-
"type": {
|
|
10945
|
-
"text": "number | undefined"
|
|
10946
|
-
},
|
|
10947
|
-
"privacy": "public",
|
|
10948
|
-
"description": "The step number for this thought image",
|
|
10949
|
-
"attribute": "step"
|
|
10950
|
-
}
|
|
10951
|
-
],
|
|
10952
|
-
"attributes": [
|
|
10953
|
-
{
|
|
10954
|
-
"name": "step",
|
|
10955
|
-
"type": {
|
|
10956
|
-
"text": "number | undefined"
|
|
10957
|
-
},
|
|
10958
|
-
"description": "The step number for this thought image",
|
|
10959
|
-
"fieldName": "step"
|
|
10960
|
-
}
|
|
10961
|
-
],
|
|
10950
|
+
"name": "ThoughtDetailComponent",
|
|
10951
|
+
"members": [],
|
|
10962
10952
|
"superclass": {
|
|
10963
10953
|
"name": "LitElement",
|
|
10964
10954
|
"package": "lit"
|
|
10965
10955
|
},
|
|
10966
|
-
"tagName": "forge-ai-thought-
|
|
10956
|
+
"tagName": "forge-ai-thought-detail",
|
|
10967
10957
|
"customElement": true
|
|
10968
10958
|
}
|
|
10969
10959
|
],
|
|
10970
10960
|
"exports": [
|
|
10971
10961
|
{
|
|
10972
10962
|
"kind": "js",
|
|
10973
|
-
"name": "
|
|
10963
|
+
"name": "ThoughtDetailComponentTagName",
|
|
10974
10964
|
"declaration": {
|
|
10975
|
-
"name": "
|
|
10976
|
-
"module": "src/lib/ai-chain-of-thought/thought-
|
|
10965
|
+
"name": "ThoughtDetailComponentTagName",
|
|
10966
|
+
"module": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts"
|
|
10977
10967
|
}
|
|
10978
10968
|
},
|
|
10979
10969
|
{
|
|
10980
10970
|
"kind": "js",
|
|
10981
|
-
"name": "
|
|
10971
|
+
"name": "ThoughtDetailComponent",
|
|
10982
10972
|
"declaration": {
|
|
10983
|
-
"name": "
|
|
10984
|
-
"module": "src/lib/ai-chain-of-thought/thought-
|
|
10973
|
+
"name": "ThoughtDetailComponent",
|
|
10974
|
+
"module": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts"
|
|
10985
10975
|
}
|
|
10986
10976
|
},
|
|
10987
10977
|
{
|
|
10988
10978
|
"kind": "custom-element-definition",
|
|
10989
10979
|
"declaration": {
|
|
10990
|
-
"name": "
|
|
10991
|
-
"module": "src/lib/ai-chain-of-thought/thought-
|
|
10980
|
+
"name": "ThoughtDetailComponent",
|
|
10981
|
+
"module": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts"
|
|
10992
10982
|
}
|
|
10993
10983
|
}
|
|
10994
10984
|
]
|
|
10995
10985
|
},
|
|
10996
10986
|
{
|
|
10997
10987
|
"kind": "javascript-module",
|
|
10998
|
-
"path": "src/lib/ai-chain-of-thought/thought-
|
|
10988
|
+
"path": "src/lib/ai-chain-of-thought/thought-image/thought-image.ts",
|
|
10999
10989
|
"declarations": [
|
|
11000
10990
|
{
|
|
11001
10991
|
"kind": "variable",
|
|
11002
|
-
"name": "
|
|
10992
|
+
"name": "ThoughtImageComponentTagName",
|
|
11003
10993
|
"type": {
|
|
11004
10994
|
"text": "keyof HTMLElementTagNameMap"
|
|
11005
10995
|
},
|
|
11006
|
-
"default": "'forge-ai-thought-
|
|
10996
|
+
"default": "'forge-ai-thought-image'"
|
|
11007
10997
|
},
|
|
11008
10998
|
{
|
|
11009
10999
|
"kind": "class",
|
|
11010
11000
|
"description": "",
|
|
11011
|
-
"name": "
|
|
11012
|
-
"members": [
|
|
11001
|
+
"name": "ThoughtImageComponent",
|
|
11002
|
+
"members": [
|
|
11003
|
+
{
|
|
11004
|
+
"kind": "field",
|
|
11005
|
+
"name": "step",
|
|
11006
|
+
"type": {
|
|
11007
|
+
"text": "number | undefined"
|
|
11008
|
+
},
|
|
11009
|
+
"privacy": "public",
|
|
11010
|
+
"description": "The step number for this thought image",
|
|
11011
|
+
"attribute": "step"
|
|
11012
|
+
}
|
|
11013
|
+
],
|
|
11014
|
+
"attributes": [
|
|
11015
|
+
{
|
|
11016
|
+
"name": "step",
|
|
11017
|
+
"type": {
|
|
11018
|
+
"text": "number | undefined"
|
|
11019
|
+
},
|
|
11020
|
+
"description": "The step number for this thought image",
|
|
11021
|
+
"fieldName": "step"
|
|
11022
|
+
}
|
|
11023
|
+
],
|
|
11013
11024
|
"superclass": {
|
|
11014
11025
|
"name": "LitElement",
|
|
11015
11026
|
"package": "lit"
|
|
11016
11027
|
},
|
|
11017
|
-
"tagName": "forge-ai-thought-
|
|
11028
|
+
"tagName": "forge-ai-thought-image",
|
|
11018
11029
|
"customElement": true
|
|
11019
11030
|
}
|
|
11020
11031
|
],
|
|
11021
11032
|
"exports": [
|
|
11022
11033
|
{
|
|
11023
11034
|
"kind": "js",
|
|
11024
|
-
"name": "
|
|
11035
|
+
"name": "ThoughtImageComponentTagName",
|
|
11025
11036
|
"declaration": {
|
|
11026
|
-
"name": "
|
|
11027
|
-
"module": "src/lib/ai-chain-of-thought/thought-
|
|
11037
|
+
"name": "ThoughtImageComponentTagName",
|
|
11038
|
+
"module": "src/lib/ai-chain-of-thought/thought-image/thought-image.ts"
|
|
11028
11039
|
}
|
|
11029
11040
|
},
|
|
11030
11041
|
{
|
|
11031
11042
|
"kind": "js",
|
|
11032
|
-
"name": "
|
|
11043
|
+
"name": "ThoughtImageComponent",
|
|
11033
11044
|
"declaration": {
|
|
11034
|
-
"name": "
|
|
11035
|
-
"module": "src/lib/ai-chain-of-thought/thought-
|
|
11045
|
+
"name": "ThoughtImageComponent",
|
|
11046
|
+
"module": "src/lib/ai-chain-of-thought/thought-image/thought-image.ts"
|
|
11036
11047
|
}
|
|
11037
11048
|
},
|
|
11038
11049
|
{
|
|
11039
11050
|
"kind": "custom-element-definition",
|
|
11040
11051
|
"declaration": {
|
|
11041
|
-
"name": "
|
|
11042
|
-
"module": "src/lib/ai-chain-of-thought/thought-
|
|
11052
|
+
"name": "ThoughtImageComponent",
|
|
11053
|
+
"module": "src/lib/ai-chain-of-thought/thought-image/thought-image.ts"
|
|
11043
11054
|
}
|
|
11044
11055
|
}
|
|
11045
11056
|
]
|
|
@@ -11264,15 +11275,15 @@
|
|
|
11264
11275
|
},
|
|
11265
11276
|
{
|
|
11266
11277
|
"kind": "javascript-module",
|
|
11267
|
-
"path": "src/lib/core/
|
|
11278
|
+
"path": "src/lib/core/popover/popover.ts",
|
|
11268
11279
|
"declarations": [
|
|
11269
11280
|
{
|
|
11270
11281
|
"kind": "class",
|
|
11271
11282
|
"description": "",
|
|
11272
|
-
"name": "
|
|
11283
|
+
"name": "ForgeAiPopoverComponent",
|
|
11273
11284
|
"slots": [
|
|
11274
11285
|
{
|
|
11275
|
-
"description": "The default slot for
|
|
11286
|
+
"description": "The default slot for popover content.",
|
|
11276
11287
|
"name": ""
|
|
11277
11288
|
}
|
|
11278
11289
|
],
|
|
@@ -11285,18 +11296,18 @@
|
|
|
11285
11296
|
},
|
|
11286
11297
|
"privacy": "public",
|
|
11287
11298
|
"default": "null",
|
|
11288
|
-
"description": "The anchor element to position the
|
|
11299
|
+
"description": "The anchor element to position the popover relative to.",
|
|
11289
11300
|
"attribute": "anchor"
|
|
11290
11301
|
},
|
|
11291
11302
|
{
|
|
11292
11303
|
"kind": "field",
|
|
11293
11304
|
"name": "placement",
|
|
11294
11305
|
"type": {
|
|
11295
|
-
"text": "
|
|
11306
|
+
"text": "PopoverPlacement"
|
|
11296
11307
|
},
|
|
11297
11308
|
"privacy": "public",
|
|
11298
11309
|
"default": "'bottom-start'",
|
|
11299
|
-
"description": "The placement of the
|
|
11310
|
+
"description": "The placement of the popover relative to the anchor.",
|
|
11300
11311
|
"attribute": "placement"
|
|
11301
11312
|
},
|
|
11302
11313
|
{
|
|
@@ -11306,8 +11317,8 @@
|
|
|
11306
11317
|
"text": "boolean"
|
|
11307
11318
|
},
|
|
11308
11319
|
"privacy": "public",
|
|
11309
|
-
"default": "
|
|
11310
|
-
"description": "Whether the
|
|
11320
|
+
"default": "false",
|
|
11321
|
+
"description": "Whether the popover should flip to the opposite side when there's no space.",
|
|
11311
11322
|
"attribute": "flip"
|
|
11312
11323
|
},
|
|
11313
11324
|
{
|
|
@@ -11318,7 +11329,7 @@
|
|
|
11318
11329
|
},
|
|
11319
11330
|
"privacy": "public",
|
|
11320
11331
|
"default": "false",
|
|
11321
|
-
"description": "Whether the
|
|
11332
|
+
"description": "Whether the popover should shift to stay in view.",
|
|
11322
11333
|
"attribute": "shift"
|
|
11323
11334
|
},
|
|
11324
11335
|
{
|
|
@@ -11329,30 +11340,30 @@
|
|
|
11329
11340
|
},
|
|
11330
11341
|
"privacy": "public",
|
|
11331
11342
|
"default": "false",
|
|
11332
|
-
"description": "Whether the
|
|
11343
|
+
"description": "Whether the popover is open.",
|
|
11333
11344
|
"attribute": "open",
|
|
11334
11345
|
"reflects": true
|
|
11335
11346
|
},
|
|
11336
11347
|
{
|
|
11337
11348
|
"kind": "field",
|
|
11338
|
-
"name": "
|
|
11349
|
+
"name": "arrow",
|
|
11339
11350
|
"type": {
|
|
11340
|
-
"text": "
|
|
11351
|
+
"text": "boolean"
|
|
11341
11352
|
},
|
|
11342
11353
|
"privacy": "public",
|
|
11343
|
-
"default": "
|
|
11344
|
-
"description": "
|
|
11345
|
-
"attribute": "
|
|
11354
|
+
"default": "false",
|
|
11355
|
+
"description": "Whether to show an arrow pointing to the anchor element.",
|
|
11356
|
+
"attribute": "arrow"
|
|
11346
11357
|
},
|
|
11347
11358
|
{
|
|
11348
11359
|
"kind": "field",
|
|
11349
11360
|
"name": "offset",
|
|
11350
11361
|
"type": {
|
|
11351
|
-
"text": "
|
|
11362
|
+
"text": "PopoverOffset | undefined"
|
|
11352
11363
|
},
|
|
11353
11364
|
"privacy": "public",
|
|
11354
11365
|
"default": "undefined",
|
|
11355
|
-
"description": "The offset of the
|
|
11366
|
+
"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.",
|
|
11356
11367
|
"attribute": "offset"
|
|
11357
11368
|
},
|
|
11358
11369
|
{
|
|
@@ -11363,7 +11374,7 @@
|
|
|
11363
11374
|
},
|
|
11364
11375
|
"privacy": "public",
|
|
11365
11376
|
"default": "'auto'",
|
|
11366
|
-
"description": "The dismiss mode for the
|
|
11377
|
+
"description": "The dismiss mode for the popover.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
11367
11378
|
"attribute": "dismiss-mode"
|
|
11368
11379
|
}
|
|
11369
11380
|
],
|
|
@@ -11374,16 +11385,16 @@
|
|
|
11374
11385
|
"text": "Element | null"
|
|
11375
11386
|
},
|
|
11376
11387
|
"default": "null",
|
|
11377
|
-
"description": "The anchor element to position the
|
|
11388
|
+
"description": "The anchor element to position the popover relative to.",
|
|
11378
11389
|
"fieldName": "anchor"
|
|
11379
11390
|
},
|
|
11380
11391
|
{
|
|
11381
11392
|
"name": "placement",
|
|
11382
11393
|
"type": {
|
|
11383
|
-
"text": "
|
|
11394
|
+
"text": "PopoverPlacement"
|
|
11384
11395
|
},
|
|
11385
11396
|
"default": "'bottom-start'",
|
|
11386
|
-
"description": "The placement of the
|
|
11397
|
+
"description": "The placement of the popover relative to the anchor.",
|
|
11387
11398
|
"fieldName": "placement"
|
|
11388
11399
|
},
|
|
11389
11400
|
{
|
|
@@ -11391,8 +11402,8 @@
|
|
|
11391
11402
|
"type": {
|
|
11392
11403
|
"text": "boolean"
|
|
11393
11404
|
},
|
|
11394
|
-
"default": "
|
|
11395
|
-
"description": "Whether the
|
|
11405
|
+
"default": "false",
|
|
11406
|
+
"description": "Whether the popover should flip to the opposite side when there's no space.",
|
|
11396
11407
|
"fieldName": "flip"
|
|
11397
11408
|
},
|
|
11398
11409
|
{
|
|
@@ -11401,7 +11412,7 @@
|
|
|
11401
11412
|
"text": "boolean"
|
|
11402
11413
|
},
|
|
11403
11414
|
"default": "false",
|
|
11404
|
-
"description": "Whether the
|
|
11415
|
+
"description": "Whether the popover should shift to stay in view.",
|
|
11405
11416
|
"fieldName": "shift"
|
|
11406
11417
|
},
|
|
11407
11418
|
{
|
|
@@ -11410,25 +11421,25 @@
|
|
|
11410
11421
|
"text": "boolean"
|
|
11411
11422
|
},
|
|
11412
11423
|
"default": "false",
|
|
11413
|
-
"description": "Whether the
|
|
11424
|
+
"description": "Whether the popover is open.",
|
|
11414
11425
|
"fieldName": "open"
|
|
11415
11426
|
},
|
|
11416
11427
|
{
|
|
11417
|
-
"name": "
|
|
11428
|
+
"name": "arrow",
|
|
11418
11429
|
"type": {
|
|
11419
|
-
"text": "
|
|
11430
|
+
"text": "boolean"
|
|
11420
11431
|
},
|
|
11421
|
-
"default": "
|
|
11422
|
-
"description": "
|
|
11423
|
-
"fieldName": "
|
|
11432
|
+
"default": "false",
|
|
11433
|
+
"description": "Whether to show an arrow pointing to the anchor element.",
|
|
11434
|
+
"fieldName": "arrow"
|
|
11424
11435
|
},
|
|
11425
11436
|
{
|
|
11426
11437
|
"name": "offset",
|
|
11427
11438
|
"type": {
|
|
11428
|
-
"text": "
|
|
11439
|
+
"text": "PopoverOffset | undefined"
|
|
11429
11440
|
},
|
|
11430
11441
|
"default": "undefined",
|
|
11431
|
-
"description": "The offset of the
|
|
11442
|
+
"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.",
|
|
11432
11443
|
"fieldName": "offset"
|
|
11433
11444
|
},
|
|
11434
11445
|
{
|
|
@@ -11437,7 +11448,7 @@
|
|
|
11437
11448
|
"text": "'auto' | 'manual'"
|
|
11438
11449
|
},
|
|
11439
11450
|
"default": "'auto'",
|
|
11440
|
-
"description": "The dismiss mode for the
|
|
11451
|
+
"description": "The dismiss mode for the popover.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
11441
11452
|
"fieldName": "dismissMode"
|
|
11442
11453
|
}
|
|
11443
11454
|
],
|
|
@@ -11445,41 +11456,41 @@
|
|
|
11445
11456
|
"name": "LitElement",
|
|
11446
11457
|
"package": "lit"
|
|
11447
11458
|
},
|
|
11448
|
-
"summary": "A
|
|
11449
|
-
"tagName": "forge-ai-
|
|
11459
|
+
"summary": "A popover component that provides styled overlay functionality.",
|
|
11460
|
+
"tagName": "forge-ai-popover",
|
|
11450
11461
|
"customElement": true
|
|
11451
11462
|
}
|
|
11452
11463
|
],
|
|
11453
11464
|
"exports": [
|
|
11454
11465
|
{
|
|
11455
11466
|
"kind": "js",
|
|
11456
|
-
"name": "
|
|
11467
|
+
"name": "ForgeAiPopoverComponent",
|
|
11457
11468
|
"declaration": {
|
|
11458
|
-
"name": "
|
|
11459
|
-
"module": "src/lib/core/
|
|
11469
|
+
"name": "ForgeAiPopoverComponent",
|
|
11470
|
+
"module": "src/lib/core/popover/popover.ts"
|
|
11460
11471
|
}
|
|
11461
11472
|
},
|
|
11462
11473
|
{
|
|
11463
11474
|
"kind": "custom-element-definition",
|
|
11464
|
-
"name": "forge-ai-
|
|
11475
|
+
"name": "forge-ai-popover",
|
|
11465
11476
|
"declaration": {
|
|
11466
|
-
"name": "
|
|
11467
|
-
"module": "src/lib/core/
|
|
11477
|
+
"name": "ForgeAiPopoverComponent",
|
|
11478
|
+
"module": "src/lib/core/popover/popover.ts"
|
|
11468
11479
|
}
|
|
11469
11480
|
}
|
|
11470
11481
|
]
|
|
11471
11482
|
},
|
|
11472
11483
|
{
|
|
11473
11484
|
"kind": "javascript-module",
|
|
11474
|
-
"path": "src/lib/core/
|
|
11485
|
+
"path": "src/lib/core/overlay/overlay.ts",
|
|
11475
11486
|
"declarations": [
|
|
11476
11487
|
{
|
|
11477
11488
|
"kind": "class",
|
|
11478
11489
|
"description": "",
|
|
11479
|
-
"name": "
|
|
11490
|
+
"name": "ForgeAiOverlayComponent",
|
|
11480
11491
|
"slots": [
|
|
11481
11492
|
{
|
|
11482
|
-
"description": "The default slot for
|
|
11493
|
+
"description": "The default slot for overlay content.",
|
|
11483
11494
|
"name": ""
|
|
11484
11495
|
}
|
|
11485
11496
|
],
|
|
@@ -11492,18 +11503,18 @@
|
|
|
11492
11503
|
},
|
|
11493
11504
|
"privacy": "public",
|
|
11494
11505
|
"default": "null",
|
|
11495
|
-
"description": "The anchor element to position the
|
|
11506
|
+
"description": "The anchor element to position the overlay relative to.",
|
|
11496
11507
|
"attribute": "anchor"
|
|
11497
11508
|
},
|
|
11498
11509
|
{
|
|
11499
11510
|
"kind": "field",
|
|
11500
11511
|
"name": "placement",
|
|
11501
11512
|
"type": {
|
|
11502
|
-
"text": "
|
|
11513
|
+
"text": "OverlayPlacement"
|
|
11503
11514
|
},
|
|
11504
11515
|
"privacy": "public",
|
|
11505
11516
|
"default": "'bottom-start'",
|
|
11506
|
-
"description": "The placement of the
|
|
11517
|
+
"description": "The placement of the overlay relative to the anchor.",
|
|
11507
11518
|
"attribute": "placement"
|
|
11508
11519
|
},
|
|
11509
11520
|
{
|
|
@@ -11513,8 +11524,8 @@
|
|
|
11513
11524
|
"text": "boolean"
|
|
11514
11525
|
},
|
|
11515
11526
|
"privacy": "public",
|
|
11516
|
-
"default": "
|
|
11517
|
-
"description": "Whether the
|
|
11527
|
+
"default": "true",
|
|
11528
|
+
"description": "Whether the overlay should flip to the opposite side when there's no space.",
|
|
11518
11529
|
"attribute": "flip"
|
|
11519
11530
|
},
|
|
11520
11531
|
{
|
|
@@ -11525,7 +11536,7 @@
|
|
|
11525
11536
|
},
|
|
11526
11537
|
"privacy": "public",
|
|
11527
11538
|
"default": "false",
|
|
11528
|
-
"description": "Whether the
|
|
11539
|
+
"description": "Whether the overlay should shift to stay in view.",
|
|
11529
11540
|
"attribute": "shift"
|
|
11530
11541
|
},
|
|
11531
11542
|
{
|
|
@@ -11536,30 +11547,30 @@
|
|
|
11536
11547
|
},
|
|
11537
11548
|
"privacy": "public",
|
|
11538
11549
|
"default": "false",
|
|
11539
|
-
"description": "Whether the
|
|
11550
|
+
"description": "Whether the overlay is open.",
|
|
11540
11551
|
"attribute": "open",
|
|
11541
11552
|
"reflects": true
|
|
11542
11553
|
},
|
|
11543
11554
|
{
|
|
11544
11555
|
"kind": "field",
|
|
11545
|
-
"name": "
|
|
11556
|
+
"name": "arrowElement",
|
|
11546
11557
|
"type": {
|
|
11547
|
-
"text": "
|
|
11558
|
+
"text": "HTMLElement | null"
|
|
11548
11559
|
},
|
|
11549
11560
|
"privacy": "public",
|
|
11550
|
-
"default": "
|
|
11551
|
-
"description": "
|
|
11552
|
-
"attribute": "
|
|
11561
|
+
"default": "null",
|
|
11562
|
+
"description": "The arrow element to position relative to the overlay.",
|
|
11563
|
+
"attribute": "arrowElement"
|
|
11553
11564
|
},
|
|
11554
11565
|
{
|
|
11555
11566
|
"kind": "field",
|
|
11556
11567
|
"name": "offset",
|
|
11557
11568
|
"type": {
|
|
11558
|
-
"text": "
|
|
11569
|
+
"text": "OverlayOffset | undefined"
|
|
11559
11570
|
},
|
|
11560
11571
|
"privacy": "public",
|
|
11561
11572
|
"default": "undefined",
|
|
11562
|
-
"description": "The offset of the
|
|
11573
|
+
"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.",
|
|
11563
11574
|
"attribute": "offset"
|
|
11564
11575
|
},
|
|
11565
11576
|
{
|
|
@@ -11570,7 +11581,7 @@
|
|
|
11570
11581
|
},
|
|
11571
11582
|
"privacy": "public",
|
|
11572
11583
|
"default": "'auto'",
|
|
11573
|
-
"description": "The dismiss mode for the
|
|
11584
|
+
"description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
11574
11585
|
"attribute": "dismiss-mode"
|
|
11575
11586
|
}
|
|
11576
11587
|
],
|
|
@@ -11581,16 +11592,16 @@
|
|
|
11581
11592
|
"text": "Element | null"
|
|
11582
11593
|
},
|
|
11583
11594
|
"default": "null",
|
|
11584
|
-
"description": "The anchor element to position the
|
|
11595
|
+
"description": "The anchor element to position the overlay relative to.",
|
|
11585
11596
|
"fieldName": "anchor"
|
|
11586
11597
|
},
|
|
11587
11598
|
{
|
|
11588
11599
|
"name": "placement",
|
|
11589
11600
|
"type": {
|
|
11590
|
-
"text": "
|
|
11601
|
+
"text": "OverlayPlacement"
|
|
11591
11602
|
},
|
|
11592
11603
|
"default": "'bottom-start'",
|
|
11593
|
-
"description": "The placement of the
|
|
11604
|
+
"description": "The placement of the overlay relative to the anchor.",
|
|
11594
11605
|
"fieldName": "placement"
|
|
11595
11606
|
},
|
|
11596
11607
|
{
|
|
@@ -11598,8 +11609,8 @@
|
|
|
11598
11609
|
"type": {
|
|
11599
11610
|
"text": "boolean"
|
|
11600
11611
|
},
|
|
11601
|
-
"default": "
|
|
11602
|
-
"description": "Whether the
|
|
11612
|
+
"default": "true",
|
|
11613
|
+
"description": "Whether the overlay should flip to the opposite side when there's no space.",
|
|
11603
11614
|
"fieldName": "flip"
|
|
11604
11615
|
},
|
|
11605
11616
|
{
|
|
@@ -11608,7 +11619,7 @@
|
|
|
11608
11619
|
"text": "boolean"
|
|
11609
11620
|
},
|
|
11610
11621
|
"default": "false",
|
|
11611
|
-
"description": "Whether the
|
|
11622
|
+
"description": "Whether the overlay should shift to stay in view.",
|
|
11612
11623
|
"fieldName": "shift"
|
|
11613
11624
|
},
|
|
11614
11625
|
{
|
|
@@ -11617,25 +11628,25 @@
|
|
|
11617
11628
|
"text": "boolean"
|
|
11618
11629
|
},
|
|
11619
11630
|
"default": "false",
|
|
11620
|
-
"description": "Whether the
|
|
11631
|
+
"description": "Whether the overlay is open.",
|
|
11621
11632
|
"fieldName": "open"
|
|
11622
11633
|
},
|
|
11623
11634
|
{
|
|
11624
|
-
"name": "
|
|
11635
|
+
"name": "arrowElement",
|
|
11625
11636
|
"type": {
|
|
11626
|
-
"text": "
|
|
11637
|
+
"text": "HTMLElement | null"
|
|
11627
11638
|
},
|
|
11628
|
-
"default": "
|
|
11629
|
-
"description": "
|
|
11630
|
-
"fieldName": "
|
|
11639
|
+
"default": "null",
|
|
11640
|
+
"description": "The arrow element to position relative to the overlay.",
|
|
11641
|
+
"fieldName": "arrowElement"
|
|
11631
11642
|
},
|
|
11632
11643
|
{
|
|
11633
11644
|
"name": "offset",
|
|
11634
11645
|
"type": {
|
|
11635
|
-
"text": "
|
|
11646
|
+
"text": "OverlayOffset | undefined"
|
|
11636
11647
|
},
|
|
11637
11648
|
"default": "undefined",
|
|
11638
|
-
"description": "The offset of the
|
|
11649
|
+
"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.",
|
|
11639
11650
|
"fieldName": "offset"
|
|
11640
11651
|
},
|
|
11641
11652
|
{
|
|
@@ -11644,7 +11655,7 @@
|
|
|
11644
11655
|
"text": "'auto' | 'manual'"
|
|
11645
11656
|
},
|
|
11646
11657
|
"default": "'auto'",
|
|
11647
|
-
"description": "The dismiss mode for the
|
|
11658
|
+
"description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
11648
11659
|
"fieldName": "dismissMode"
|
|
11649
11660
|
}
|
|
11650
11661
|
],
|
|
@@ -11652,26 +11663,26 @@
|
|
|
11652
11663
|
"name": "LitElement",
|
|
11653
11664
|
"package": "lit"
|
|
11654
11665
|
},
|
|
11655
|
-
"summary": "A
|
|
11656
|
-
"tagName": "forge-ai-
|
|
11666
|
+
"summary": "A low-level overlay component for internal use within AI components.",
|
|
11667
|
+
"tagName": "forge-ai-overlay",
|
|
11657
11668
|
"customElement": true
|
|
11658
11669
|
}
|
|
11659
11670
|
],
|
|
11660
11671
|
"exports": [
|
|
11661
11672
|
{
|
|
11662
11673
|
"kind": "js",
|
|
11663
|
-
"name": "
|
|
11674
|
+
"name": "ForgeAiOverlayComponent",
|
|
11664
11675
|
"declaration": {
|
|
11665
|
-
"name": "
|
|
11666
|
-
"module": "src/lib/core/
|
|
11676
|
+
"name": "ForgeAiOverlayComponent",
|
|
11677
|
+
"module": "src/lib/core/overlay/overlay.ts"
|
|
11667
11678
|
}
|
|
11668
11679
|
},
|
|
11669
11680
|
{
|
|
11670
11681
|
"kind": "custom-element-definition",
|
|
11671
|
-
"name": "forge-ai-
|
|
11682
|
+
"name": "forge-ai-overlay",
|
|
11672
11683
|
"declaration": {
|
|
11673
|
-
"name": "
|
|
11674
|
-
"module": "src/lib/core/
|
|
11684
|
+
"name": "ForgeAiOverlayComponent",
|
|
11685
|
+
"module": "src/lib/core/overlay/overlay.ts"
|
|
11675
11686
|
}
|
|
11676
11687
|
}
|
|
11677
11688
|
]
|
|
@@ -11906,6 +11917,68 @@
|
|
|
11906
11917
|
}
|
|
11907
11918
|
]
|
|
11908
11919
|
},
|
|
11920
|
+
{
|
|
11921
|
+
"kind": "javascript-module",
|
|
11922
|
+
"path": "src/lib/tools/ai-data-table/ai-data-table-definition.ts",
|
|
11923
|
+
"declarations": [
|
|
11924
|
+
{
|
|
11925
|
+
"kind": "variable",
|
|
11926
|
+
"name": "displayDataTableTool",
|
|
11927
|
+
"type": {
|
|
11928
|
+
"text": "ToolDefinition"
|
|
11929
|
+
},
|
|
11930
|
+
"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' }) }"
|
|
11931
|
+
}
|
|
11932
|
+
],
|
|
11933
|
+
"exports": [
|
|
11934
|
+
{
|
|
11935
|
+
"kind": "js",
|
|
11936
|
+
"name": "displayDataTableTool",
|
|
11937
|
+
"declaration": {
|
|
11938
|
+
"name": "displayDataTableTool",
|
|
11939
|
+
"module": "src/lib/tools/ai-data-table/ai-data-table-definition.ts"
|
|
11940
|
+
}
|
|
11941
|
+
}
|
|
11942
|
+
]
|
|
11943
|
+
},
|
|
11944
|
+
{
|
|
11945
|
+
"kind": "javascript-module",
|
|
11946
|
+
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
11947
|
+
"declarations": [
|
|
11948
|
+
{
|
|
11949
|
+
"kind": "class",
|
|
11950
|
+
"description": "Data table component tool renderer for displaying tabular data with pagination and filtering.",
|
|
11951
|
+
"name": "DataTableToolElement",
|
|
11952
|
+
"members": [
|
|
11953
|
+
{
|
|
11954
|
+
"kind": "field",
|
|
11955
|
+
"name": "toolCall",
|
|
11956
|
+
"type": {
|
|
11957
|
+
"text": "ToolCall<TableData>"
|
|
11958
|
+
},
|
|
11959
|
+
"privacy": "public",
|
|
11960
|
+
"description": "Tool call data containing table configuration and data"
|
|
11961
|
+
}
|
|
11962
|
+
],
|
|
11963
|
+
"superclass": {
|
|
11964
|
+
"name": "LitElement",
|
|
11965
|
+
"package": "lit"
|
|
11966
|
+
},
|
|
11967
|
+
"tagName": "forge-ai-tool-data-table",
|
|
11968
|
+
"customElement": true
|
|
11969
|
+
}
|
|
11970
|
+
],
|
|
11971
|
+
"exports": [
|
|
11972
|
+
{
|
|
11973
|
+
"kind": "custom-element-definition",
|
|
11974
|
+
"name": "forge-ai-tool-data-table",
|
|
11975
|
+
"declaration": {
|
|
11976
|
+
"name": "DataTableToolElement",
|
|
11977
|
+
"module": "src/lib/tools/ai-data-table/ai-data-table.ts"
|
|
11978
|
+
}
|
|
11979
|
+
}
|
|
11980
|
+
]
|
|
11981
|
+
},
|
|
11909
11982
|
{
|
|
11910
11983
|
"kind": "javascript-module",
|
|
11911
11984
|
"path": "src/lib/tools/ai-paginator/ai-paginator.ts",
|
|
@@ -12007,71 +12080,9 @@
|
|
|
12007
12080
|
}
|
|
12008
12081
|
}
|
|
12009
12082
|
]
|
|
12010
|
-
},
|
|
12011
|
-
{
|
|
12012
|
-
"kind": "javascript-module",
|
|
12013
|
-
"path": "src/lib/tools/ai-data-table/ai-data-table-definition.ts",
|
|
12014
|
-
"declarations": [
|
|
12015
|
-
{
|
|
12016
|
-
"kind": "variable",
|
|
12017
|
-
"name": "displayDataTableTool",
|
|
12018
|
-
"type": {
|
|
12019
|
-
"text": "ToolDefinition"
|
|
12020
|
-
},
|
|
12021
|
-
"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' }) }"
|
|
12022
|
-
}
|
|
12023
|
-
],
|
|
12024
|
-
"exports": [
|
|
12025
|
-
{
|
|
12026
|
-
"kind": "js",
|
|
12027
|
-
"name": "displayDataTableTool",
|
|
12028
|
-
"declaration": {
|
|
12029
|
-
"name": "displayDataTableTool",
|
|
12030
|
-
"module": "src/lib/tools/ai-data-table/ai-data-table-definition.ts"
|
|
12031
|
-
}
|
|
12032
|
-
}
|
|
12033
|
-
]
|
|
12034
|
-
},
|
|
12035
|
-
{
|
|
12036
|
-
"kind": "javascript-module",
|
|
12037
|
-
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
12038
|
-
"declarations": [
|
|
12039
|
-
{
|
|
12040
|
-
"kind": "class",
|
|
12041
|
-
"description": "Data table component tool renderer for displaying tabular data with pagination and filtering.",
|
|
12042
|
-
"name": "DataTableToolElement",
|
|
12043
|
-
"members": [
|
|
12044
|
-
{
|
|
12045
|
-
"kind": "field",
|
|
12046
|
-
"name": "toolCall",
|
|
12047
|
-
"type": {
|
|
12048
|
-
"text": "ToolCall<TableData>"
|
|
12049
|
-
},
|
|
12050
|
-
"privacy": "public",
|
|
12051
|
-
"description": "Tool call data containing table configuration and data"
|
|
12052
|
-
}
|
|
12053
|
-
],
|
|
12054
|
-
"superclass": {
|
|
12055
|
-
"name": "LitElement",
|
|
12056
|
-
"package": "lit"
|
|
12057
|
-
},
|
|
12058
|
-
"tagName": "forge-ai-tool-data-table",
|
|
12059
|
-
"customElement": true
|
|
12060
|
-
}
|
|
12061
|
-
],
|
|
12062
|
-
"exports": [
|
|
12063
|
-
{
|
|
12064
|
-
"kind": "custom-element-definition",
|
|
12065
|
-
"name": "forge-ai-tool-data-table",
|
|
12066
|
-
"declaration": {
|
|
12067
|
-
"name": "DataTableToolElement",
|
|
12068
|
-
"module": "src/lib/tools/ai-data-table/ai-data-table.ts"
|
|
12069
|
-
}
|
|
12070
|
-
}
|
|
12071
|
-
]
|
|
12072
12083
|
}
|
|
12073
12084
|
],
|
|
12074
|
-
"branchName": "
|
|
12085
|
+
"branchName": "main",
|
|
12075
12086
|
"forgeTypes": {
|
|
12076
12087
|
"AgentInfo": {
|
|
12077
12088
|
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
@@ -12081,6 +12092,10 @@
|
|
|
12081
12092
|
"path": "src/lib/ai-agent-info/ai-agent-info.ts",
|
|
12082
12093
|
"lineNumber": 29
|
|
12083
12094
|
},
|
|
12095
|
+
"AiArtifactComponent": {
|
|
12096
|
+
"path": "src/lib/ai-artifact/ai-artifact.ts",
|
|
12097
|
+
"lineNumber": 23
|
|
12098
|
+
},
|
|
12084
12099
|
"ForgeAiAgentSelectorChangeEventData": {
|
|
12085
12100
|
"path": "src/lib/ai-agent-selector/ai-agent-selector.ts",
|
|
12086
12101
|
"lineNumber": 23
|
|
@@ -12089,10 +12104,6 @@
|
|
|
12089
12104
|
"path": "src/lib/ai-agent-selector/ai-agent-selector.ts",
|
|
12090
12105
|
"lineNumber": 48
|
|
12091
12106
|
},
|
|
12092
|
-
"AiArtifactComponent": {
|
|
12093
|
-
"path": "src/lib/ai-artifact/ai-artifact.ts",
|
|
12094
|
-
"lineNumber": 23
|
|
12095
|
-
},
|
|
12096
12107
|
"ForgeAiAssistantResponseFeedbackEventData": {
|
|
12097
12108
|
"path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
|
|
12098
12109
|
"lineNumber": 31
|
|
@@ -12101,6 +12112,10 @@
|
|
|
12101
12112
|
"path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
|
|
12102
12113
|
"lineNumber": 48
|
|
12103
12114
|
},
|
|
12115
|
+
"AiButtonComponent": {
|
|
12116
|
+
"path": "src/lib/ai-button/ai-button.ts",
|
|
12117
|
+
"lineNumber": 22
|
|
12118
|
+
},
|
|
12104
12119
|
"ForgeAiAttachmentRemoveEventData": {
|
|
12105
12120
|
"path": "src/lib/ai-attachment/ai-attachment.ts",
|
|
12106
12121
|
"lineNumber": 19
|
|
@@ -12109,10 +12124,6 @@
|
|
|
12109
12124
|
"path": "src/lib/ai-attachment/ai-attachment.ts",
|
|
12110
12125
|
"lineNumber": 41
|
|
12111
12126
|
},
|
|
12112
|
-
"AiButtonComponent": {
|
|
12113
|
-
"path": "src/lib/ai-button/ai-button.ts",
|
|
12114
|
-
"lineNumber": 22
|
|
12115
|
-
},
|
|
12116
12127
|
"AiChainOfThoughtComponent": {
|
|
12117
12128
|
"path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
|
|
12118
12129
|
"lineNumber": 17
|
|
@@ -12465,6 +12476,10 @@
|
|
|
12465
12476
|
"path": "src/lib/ai-dialog/ai-dialog.ts",
|
|
12466
12477
|
"lineNumber": 35
|
|
12467
12478
|
},
|
|
12479
|
+
"AiEmbeddedChatComponent": {
|
|
12480
|
+
"path": "src/lib/ai-embedded-chat/ai-embedded-chat.ts",
|
|
12481
|
+
"lineNumber": 47
|
|
12482
|
+
},
|
|
12468
12483
|
"ForgeAiDropdownMenuItemGroupComponent": {
|
|
12469
12484
|
"path": "src/lib/ai-dropdown-menu/ai-dropdown-menu-item-group.ts",
|
|
12470
12485
|
"lineNumber": 29
|
|
@@ -12525,10 +12540,6 @@
|
|
|
12525
12540
|
"path": "src/lib/ai-dropdown-menu/selection-manager.ts",
|
|
12526
12541
|
"lineNumber": 85
|
|
12527
12542
|
},
|
|
12528
|
-
"AiEmbeddedChatComponent": {
|
|
12529
|
-
"path": "src/lib/ai-embedded-chat/ai-embedded-chat.ts",
|
|
12530
|
-
"lineNumber": 47
|
|
12531
|
-
},
|
|
12532
12543
|
"AiEmptyStateComponent": {
|
|
12533
12544
|
"path": "src/lib/ai-empty-state/ai-empty-state.ts",
|
|
12534
12545
|
"lineNumber": 23
|
|
@@ -12653,14 +12664,14 @@
|
|
|
12653
12664
|
"path": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts",
|
|
12654
12665
|
"lineNumber": 43
|
|
12655
12666
|
},
|
|
12656
|
-
"AiSidebarChatComponent": {
|
|
12657
|
-
"path": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts",
|
|
12658
|
-
"lineNumber": 42
|
|
12659
|
-
},
|
|
12660
12667
|
"AiSidebarComponent": {
|
|
12661
12668
|
"path": "src/lib/ai-sidebar/ai-sidebar.ts",
|
|
12662
12669
|
"lineNumber": 28
|
|
12663
12670
|
},
|
|
12671
|
+
"AiSidebarChatComponent": {
|
|
12672
|
+
"path": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts",
|
|
12673
|
+
"lineNumber": 42
|
|
12674
|
+
},
|
|
12664
12675
|
"AiSlashCommandMenuComponent": {
|
|
12665
12676
|
"path": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts",
|
|
12666
12677
|
"lineNumber": 32
|
|
@@ -12689,10 +12700,6 @@
|
|
|
12689
12700
|
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
12690
12701
|
"lineNumber": 45
|
|
12691
12702
|
},
|
|
12692
|
-
"AiThinkingIndicatorComponent": {
|
|
12693
|
-
"path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
|
|
12694
|
-
"lineNumber": 38
|
|
12695
|
-
},
|
|
12696
12703
|
"Thread": {
|
|
12697
12704
|
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
12698
12705
|
"lineNumber": 19
|
|
@@ -12705,6 +12712,10 @@
|
|
|
12705
12712
|
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
12706
12713
|
"lineNumber": 46
|
|
12707
12714
|
},
|
|
12715
|
+
"AiThinkingIndicatorComponent": {
|
|
12716
|
+
"path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
|
|
12717
|
+
"lineNumber": 38
|
|
12718
|
+
},
|
|
12708
12719
|
"AiToolCallIndicatorComponent": {
|
|
12709
12720
|
"path": "src/lib/ai-tool-call-indicator/ai-tool-call-indicator.ts",
|
|
12710
12721
|
"lineNumber": 25
|
|
@@ -12725,10 +12736,6 @@
|
|
|
12725
12736
|
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
12726
12737
|
"lineNumber": 42
|
|
12727
12738
|
},
|
|
12728
|
-
"AiUserMessageToolbarComponent": {
|
|
12729
|
-
"path": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts",
|
|
12730
|
-
"lineNumber": 31
|
|
12731
|
-
},
|
|
12732
12739
|
"SpeechRecognitionAlternative": {
|
|
12733
12740
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
12734
12741
|
"lineNumber": 20
|
|
@@ -12757,6 +12764,10 @@
|
|
|
12757
12764
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
12758
12765
|
"lineNumber": 76
|
|
12759
12766
|
},
|
|
12767
|
+
"AiUserMessageToolbarComponent": {
|
|
12768
|
+
"path": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts",
|
|
12769
|
+
"lineNumber": 31
|
|
12770
|
+
},
|
|
12760
12771
|
"ChatbotCoreCallbacks": {
|
|
12761
12772
|
"path": "src/lib/core/chatbot-core-controller.ts",
|
|
12762
12773
|
"lineNumber": 31
|
|
@@ -12781,14 +12792,14 @@
|
|
|
12781
12792
|
"path": "src/lib/ai-chain-of-thought/thought-base/thought-base.ts",
|
|
12782
12793
|
"lineNumber": 21
|
|
12783
12794
|
},
|
|
12784
|
-
"ThoughtImageComponent": {
|
|
12785
|
-
"path": "src/lib/ai-chain-of-thought/thought-image/thought-image.ts",
|
|
12786
|
-
"lineNumber": 19
|
|
12787
|
-
},
|
|
12788
12795
|
"ThoughtDetailComponent": {
|
|
12789
12796
|
"path": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts",
|
|
12790
12797
|
"lineNumber": 18
|
|
12791
12798
|
},
|
|
12799
|
+
"ThoughtImageComponent": {
|
|
12800
|
+
"path": "src/lib/ai-chain-of-thought/thought-image/thought-image.ts",
|
|
12801
|
+
"lineNumber": 19
|
|
12802
|
+
},
|
|
12792
12803
|
"Source": {
|
|
12793
12804
|
"path": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts",
|
|
12794
12805
|
"lineNumber": 14
|
|
@@ -12805,18 +12816,6 @@
|
|
|
12805
12816
|
"path": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts",
|
|
12806
12817
|
"lineNumber": 17
|
|
12807
12818
|
},
|
|
12808
|
-
"OverlayPlacement": {
|
|
12809
|
-
"path": "src/lib/core/overlay/overlay.ts",
|
|
12810
|
-
"lineNumber": 31
|
|
12811
|
-
},
|
|
12812
|
-
"OverlayOffset": {
|
|
12813
|
-
"path": "src/lib/core/overlay/overlay.ts",
|
|
12814
|
-
"lineNumber": 33
|
|
12815
|
-
},
|
|
12816
|
-
"ForgeAiOverlayComponent": {
|
|
12817
|
-
"path": "src/lib/core/overlay/overlay.ts",
|
|
12818
|
-
"lineNumber": 40
|
|
12819
|
-
},
|
|
12820
12819
|
"PopoverToggleEventData": {
|
|
12821
12820
|
"path": "src/lib/core/popover/popover.ts",
|
|
12822
12821
|
"lineNumber": 18
|
|
@@ -12833,6 +12832,18 @@
|
|
|
12833
12832
|
"path": "src/lib/core/popover/popover.ts",
|
|
12834
12833
|
"lineNumber": 37
|
|
12835
12834
|
},
|
|
12835
|
+
"OverlayPlacement": {
|
|
12836
|
+
"path": "src/lib/core/overlay/overlay.ts",
|
|
12837
|
+
"lineNumber": 31
|
|
12838
|
+
},
|
|
12839
|
+
"OverlayOffset": {
|
|
12840
|
+
"path": "src/lib/core/overlay/overlay.ts",
|
|
12841
|
+
"lineNumber": 33
|
|
12842
|
+
},
|
|
12843
|
+
"ForgeAiOverlayComponent": {
|
|
12844
|
+
"path": "src/lib/core/overlay/overlay.ts",
|
|
12845
|
+
"lineNumber": 40
|
|
12846
|
+
},
|
|
12836
12847
|
"TooltipToggleEventDetail": {
|
|
12837
12848
|
"path": "src/lib/core/tooltip/tooltip.ts",
|
|
12838
12849
|
"lineNumber": 20
|
|
@@ -12849,10 +12860,6 @@
|
|
|
12849
12860
|
"path": "src/lib/core/tooltip/tooltip.ts",
|
|
12850
12861
|
"lineNumber": 44
|
|
12851
12862
|
},
|
|
12852
|
-
"AiPaginator": {
|
|
12853
|
-
"path": "src/lib/tools/ai-paginator/ai-paginator.ts",
|
|
12854
|
-
"lineNumber": 13
|
|
12855
|
-
},
|
|
12856
12863
|
"TableData": {
|
|
12857
12864
|
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
12858
12865
|
"lineNumber": 16
|
|
@@ -12860,6 +12867,10 @@
|
|
|
12860
12867
|
"DataTableToolElement": {
|
|
12861
12868
|
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
12862
12869
|
"lineNumber": 32
|
|
12870
|
+
},
|
|
12871
|
+
"AiPaginator": {
|
|
12872
|
+
"path": "src/lib/tools/ai-paginator/ai-paginator.ts",
|
|
12873
|
+
"lineNumber": 13
|
|
12863
12874
|
}
|
|
12864
12875
|
}
|
|
12865
12876
|
}
|