@tylertech/forge-ai 0.9.1 → 0.10.1
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 +1006 -912
- package/dist/ai-agent-selector/ai-agent-selector.scss.mjs +1 -1
- package/dist/ai-assistant-response/ai-assistant-response.mjs +43 -6
- package/dist/ai-chat-header/ai-chat-header.scss.mjs +1 -1
- package/dist/ai-chatbot/ag-ui-adapter.mjs +4 -8
- package/dist/ai-chatbot/ai-chatbot.mjs +11 -8
- package/dist/ai-chatbot/ai-chatbot.scss.mjs +1 -1
- package/dist/ai-chatbot/message-state-controller.mjs +17 -13
- package/dist/ai-chatbot/types.d.ts +2 -0
- package/dist/ai-embedded-chat/ai-embedded-chat.mjs +0 -1
- package/dist/ai-empty-state/ai-empty-state.mjs +5 -5
- package/dist/ai-empty-state/ai-empty-state.scss.mjs +1 -1
- package/dist/ai-file-picker/ai-file-picker.mjs +2 -1
- package/dist/ai-file-picker/ai-file-picker.scss.mjs +1 -1
- package/dist/ai-message-thread/ai-message-thread.mjs +13 -5
- package/dist/ai-message-thread/ai-message-thread.scss.mjs +1 -1
- package/dist/ai-prompt/ai-prompt.d.ts +0 -1
- package/dist/ai-prompt/ai-prompt.mjs +84 -70
- package/dist/ai-prompt/ai-prompt.scss.mjs +1 -1
- package/dist/ai-suggestions/ai-suggestions.mjs +24 -15
- package/dist/ai-suggestions/ai-suggestions.scss.mjs +901 -1
- package/dist/ai-tool-call-indicator/ai-tool-call-indicator.d.ts +24 -0
- package/dist/ai-tool-call-indicator/ai-tool-call-indicator.mjs +87 -0
- package/dist/ai-tool-call-indicator/ai-tool-call-indicator.scss.mjs +4 -0
- package/dist/ai-tool-call-indicator/index.d.ts +1 -0
- package/dist/ai-tool-call-indicator/index.mjs +5 -0
- package/dist/ai-voice-input/ai-voice-input.mjs +2 -1
- package/dist/ai-voice-input/ai-voice-input.scss.mjs +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +3 -0
- package/dist/tools/ai-data-table/ai-data-table.d.ts +1 -0
- package/dist/tools/ai-data-table/ai-data-table.mjs +13 -1
- package/dist/tools/ai-data-table/ai-data-table.scss.mjs +1 -1
- package/package.json +1 -1
package/custom-elements.json
CHANGED
|
@@ -138,77 +138,6 @@
|
|
|
138
138
|
}
|
|
139
139
|
]
|
|
140
140
|
},
|
|
141
|
-
{
|
|
142
|
-
"kind": "javascript-module",
|
|
143
|
-
"path": "src/lib/ai-artifact/ai-artifact.ts",
|
|
144
|
-
"declarations": [
|
|
145
|
-
{
|
|
146
|
-
"kind": "variable",
|
|
147
|
-
"name": "AiArtifactComponentTagName",
|
|
148
|
-
"type": {
|
|
149
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
150
|
-
},
|
|
151
|
-
"default": "'forge-ai-artifact'"
|
|
152
|
-
},
|
|
153
|
-
{
|
|
154
|
-
"kind": "class",
|
|
155
|
-
"description": "",
|
|
156
|
-
"name": "AiArtifactComponent",
|
|
157
|
-
"cssProperties": [
|
|
158
|
-
{
|
|
159
|
-
"description": "Surface color override for the toolbar (defaults to transparent)",
|
|
160
|
-
"name": "--forge-theme-surface"
|
|
161
|
-
}
|
|
162
|
-
],
|
|
163
|
-
"slots": [
|
|
164
|
-
{
|
|
165
|
-
"description": "Content for the start (left) side of the toolbar, typically used for titles or headings",
|
|
166
|
-
"name": "start"
|
|
167
|
-
},
|
|
168
|
-
{
|
|
169
|
-
"description": "Action buttons for the end (right) side of the toolbar",
|
|
170
|
-
"name": "actions"
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
"description": "Main content area below the toolbar",
|
|
174
|
-
"name": ""
|
|
175
|
-
}
|
|
176
|
-
],
|
|
177
|
-
"members": [],
|
|
178
|
-
"superclass": {
|
|
179
|
-
"name": "LitElement",
|
|
180
|
-
"package": "lit"
|
|
181
|
-
},
|
|
182
|
-
"tagName": "forge-ai-artifact",
|
|
183
|
-
"customElement": true
|
|
184
|
-
}
|
|
185
|
-
],
|
|
186
|
-
"exports": [
|
|
187
|
-
{
|
|
188
|
-
"kind": "js",
|
|
189
|
-
"name": "AiArtifactComponentTagName",
|
|
190
|
-
"declaration": {
|
|
191
|
-
"name": "AiArtifactComponentTagName",
|
|
192
|
-
"module": "src/lib/ai-artifact/ai-artifact.ts"
|
|
193
|
-
}
|
|
194
|
-
},
|
|
195
|
-
{
|
|
196
|
-
"kind": "js",
|
|
197
|
-
"name": "AiArtifactComponent",
|
|
198
|
-
"declaration": {
|
|
199
|
-
"name": "AiArtifactComponent",
|
|
200
|
-
"module": "src/lib/ai-artifact/ai-artifact.ts"
|
|
201
|
-
}
|
|
202
|
-
},
|
|
203
|
-
{
|
|
204
|
-
"kind": "custom-element-definition",
|
|
205
|
-
"declaration": {
|
|
206
|
-
"name": "AiArtifactComponent",
|
|
207
|
-
"module": "src/lib/ai-artifact/ai-artifact.ts"
|
|
208
|
-
}
|
|
209
|
-
}
|
|
210
|
-
]
|
|
211
|
-
},
|
|
212
141
|
{
|
|
213
142
|
"kind": "javascript-module",
|
|
214
143
|
"path": "src/lib/ai-agent-selector/ai-agent-selector.ts",
|
|
@@ -342,6 +271,77 @@
|
|
|
342
271
|
}
|
|
343
272
|
]
|
|
344
273
|
},
|
|
274
|
+
{
|
|
275
|
+
"kind": "javascript-module",
|
|
276
|
+
"path": "src/lib/ai-artifact/ai-artifact.ts",
|
|
277
|
+
"declarations": [
|
|
278
|
+
{
|
|
279
|
+
"kind": "variable",
|
|
280
|
+
"name": "AiArtifactComponentTagName",
|
|
281
|
+
"type": {
|
|
282
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
283
|
+
},
|
|
284
|
+
"default": "'forge-ai-artifact'"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"kind": "class",
|
|
288
|
+
"description": "",
|
|
289
|
+
"name": "AiArtifactComponent",
|
|
290
|
+
"cssProperties": [
|
|
291
|
+
{
|
|
292
|
+
"description": "Surface color override for the toolbar (defaults to transparent)",
|
|
293
|
+
"name": "--forge-theme-surface"
|
|
294
|
+
}
|
|
295
|
+
],
|
|
296
|
+
"slots": [
|
|
297
|
+
{
|
|
298
|
+
"description": "Content for the start (left) side of the toolbar, typically used for titles or headings",
|
|
299
|
+
"name": "start"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"description": "Action buttons for the end (right) side of the toolbar",
|
|
303
|
+
"name": "actions"
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"description": "Main content area below the toolbar",
|
|
307
|
+
"name": ""
|
|
308
|
+
}
|
|
309
|
+
],
|
|
310
|
+
"members": [],
|
|
311
|
+
"superclass": {
|
|
312
|
+
"name": "LitElement",
|
|
313
|
+
"package": "lit"
|
|
314
|
+
},
|
|
315
|
+
"tagName": "forge-ai-artifact",
|
|
316
|
+
"customElement": true
|
|
317
|
+
}
|
|
318
|
+
],
|
|
319
|
+
"exports": [
|
|
320
|
+
{
|
|
321
|
+
"kind": "js",
|
|
322
|
+
"name": "AiArtifactComponentTagName",
|
|
323
|
+
"declaration": {
|
|
324
|
+
"name": "AiArtifactComponentTagName",
|
|
325
|
+
"module": "src/lib/ai-artifact/ai-artifact.ts"
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"kind": "js",
|
|
330
|
+
"name": "AiArtifactComponent",
|
|
331
|
+
"declaration": {
|
|
332
|
+
"name": "AiArtifactComponent",
|
|
333
|
+
"module": "src/lib/ai-artifact/ai-artifact.ts"
|
|
334
|
+
}
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"kind": "custom-element-definition",
|
|
338
|
+
"declaration": {
|
|
339
|
+
"name": "AiArtifactComponent",
|
|
340
|
+
"module": "src/lib/ai-artifact/ai-artifact.ts"
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
]
|
|
344
|
+
},
|
|
345
345
|
{
|
|
346
346
|
"kind": "javascript-module",
|
|
347
347
|
"path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
|
|
@@ -560,6 +560,81 @@
|
|
|
560
560
|
}
|
|
561
561
|
]
|
|
562
562
|
},
|
|
563
|
+
{
|
|
564
|
+
"kind": "javascript-module",
|
|
565
|
+
"path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
|
|
566
|
+
"declarations": [
|
|
567
|
+
{
|
|
568
|
+
"kind": "variable",
|
|
569
|
+
"name": "AiChainOfThoughtComponentTagName",
|
|
570
|
+
"type": {
|
|
571
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
572
|
+
},
|
|
573
|
+
"default": "'forge-ai-chain-of-thought'"
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
"kind": "class",
|
|
577
|
+
"description": "",
|
|
578
|
+
"name": "AiChainOfThoughtComponent",
|
|
579
|
+
"members": [
|
|
580
|
+
{
|
|
581
|
+
"kind": "field",
|
|
582
|
+
"name": "expanded",
|
|
583
|
+
"type": {
|
|
584
|
+
"text": "boolean"
|
|
585
|
+
},
|
|
586
|
+
"privacy": "public",
|
|
587
|
+
"default": "false",
|
|
588
|
+
"description": "Whether the chain of thought is expanded",
|
|
589
|
+
"attribute": "expanded",
|
|
590
|
+
"reflects": true
|
|
591
|
+
}
|
|
592
|
+
],
|
|
593
|
+
"attributes": [
|
|
594
|
+
{
|
|
595
|
+
"name": "expanded",
|
|
596
|
+
"type": {
|
|
597
|
+
"text": "boolean"
|
|
598
|
+
},
|
|
599
|
+
"default": "false",
|
|
600
|
+
"description": "Whether the chain of thought is expanded",
|
|
601
|
+
"fieldName": "expanded"
|
|
602
|
+
}
|
|
603
|
+
],
|
|
604
|
+
"superclass": {
|
|
605
|
+
"name": "LitElement",
|
|
606
|
+
"package": "lit"
|
|
607
|
+
},
|
|
608
|
+
"tagName": "forge-ai-chain-of-thought",
|
|
609
|
+
"customElement": true
|
|
610
|
+
}
|
|
611
|
+
],
|
|
612
|
+
"exports": [
|
|
613
|
+
{
|
|
614
|
+
"kind": "js",
|
|
615
|
+
"name": "AiChainOfThoughtComponentTagName",
|
|
616
|
+
"declaration": {
|
|
617
|
+
"name": "AiChainOfThoughtComponentTagName",
|
|
618
|
+
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
619
|
+
}
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
"kind": "js",
|
|
623
|
+
"name": "AiChainOfThoughtComponent",
|
|
624
|
+
"declaration": {
|
|
625
|
+
"name": "AiChainOfThoughtComponent",
|
|
626
|
+
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
627
|
+
}
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
"kind": "custom-element-definition",
|
|
631
|
+
"declaration": {
|
|
632
|
+
"name": "AiChainOfThoughtComponent",
|
|
633
|
+
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
634
|
+
}
|
|
635
|
+
}
|
|
636
|
+
]
|
|
637
|
+
},
|
|
563
638
|
{
|
|
564
639
|
"kind": "javascript-module",
|
|
565
640
|
"path": "src/lib/ai-attachment/ai-attachment.ts",
|
|
@@ -732,131 +807,56 @@
|
|
|
732
807
|
},
|
|
733
808
|
{
|
|
734
809
|
"kind": "javascript-module",
|
|
735
|
-
"path": "src/lib/ai-
|
|
810
|
+
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
736
811
|
"declarations": [
|
|
737
812
|
{
|
|
738
813
|
"kind": "variable",
|
|
739
|
-
"name": "
|
|
814
|
+
"name": "AiChatHeaderComponentTagName",
|
|
740
815
|
"type": {
|
|
741
816
|
"text": "keyof HTMLElementTagNameMap"
|
|
742
817
|
},
|
|
743
|
-
"default": "'forge-ai-
|
|
818
|
+
"default": "'forge-ai-chat-header'"
|
|
744
819
|
},
|
|
745
820
|
{
|
|
746
821
|
"kind": "class",
|
|
747
822
|
"description": "",
|
|
748
|
-
"name": "
|
|
823
|
+
"name": "AiChatHeaderComponent",
|
|
824
|
+
"slots": [
|
|
825
|
+
{
|
|
826
|
+
"description": "Slot for custom icon (default: forge-ai-icon)",
|
|
827
|
+
"name": "icon"
|
|
828
|
+
}
|
|
829
|
+
],
|
|
749
830
|
"members": [
|
|
750
831
|
{
|
|
751
832
|
"kind": "field",
|
|
752
|
-
"name": "
|
|
833
|
+
"name": "showExpandButton",
|
|
753
834
|
"type": {
|
|
754
835
|
"text": "boolean"
|
|
755
836
|
},
|
|
756
837
|
"privacy": "public",
|
|
757
838
|
"default": "false",
|
|
758
|
-
"description": "
|
|
759
|
-
"attribute": "
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
839
|
+
"description": "Controls whether the expand button is visible",
|
|
840
|
+
"attribute": "show-expand-button"
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
"kind": "field",
|
|
844
|
+
"name": "showMinimizeButton",
|
|
845
|
+
"type": {
|
|
846
|
+
"text": "boolean"
|
|
847
|
+
},
|
|
848
|
+
"privacy": "public",
|
|
849
|
+
"default": "false",
|
|
850
|
+
"description": "Controls whether the minimize button is visible",
|
|
851
|
+
"attribute": "show-minimize-button"
|
|
852
|
+
},
|
|
764
853
|
{
|
|
854
|
+
"kind": "field",
|
|
765
855
|
"name": "expanded",
|
|
766
856
|
"type": {
|
|
767
857
|
"text": "boolean"
|
|
768
858
|
},
|
|
769
|
-
"
|
|
770
|
-
"description": "Whether the chain of thought is expanded",
|
|
771
|
-
"fieldName": "expanded"
|
|
772
|
-
}
|
|
773
|
-
],
|
|
774
|
-
"superclass": {
|
|
775
|
-
"name": "LitElement",
|
|
776
|
-
"package": "lit"
|
|
777
|
-
},
|
|
778
|
-
"tagName": "forge-ai-chain-of-thought",
|
|
779
|
-
"customElement": true
|
|
780
|
-
}
|
|
781
|
-
],
|
|
782
|
-
"exports": [
|
|
783
|
-
{
|
|
784
|
-
"kind": "js",
|
|
785
|
-
"name": "AiChainOfThoughtComponentTagName",
|
|
786
|
-
"declaration": {
|
|
787
|
-
"name": "AiChainOfThoughtComponentTagName",
|
|
788
|
-
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
789
|
-
}
|
|
790
|
-
},
|
|
791
|
-
{
|
|
792
|
-
"kind": "js",
|
|
793
|
-
"name": "AiChainOfThoughtComponent",
|
|
794
|
-
"declaration": {
|
|
795
|
-
"name": "AiChainOfThoughtComponent",
|
|
796
|
-
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
797
|
-
}
|
|
798
|
-
},
|
|
799
|
-
{
|
|
800
|
-
"kind": "custom-element-definition",
|
|
801
|
-
"declaration": {
|
|
802
|
-
"name": "AiChainOfThoughtComponent",
|
|
803
|
-
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
804
|
-
}
|
|
805
|
-
}
|
|
806
|
-
]
|
|
807
|
-
},
|
|
808
|
-
{
|
|
809
|
-
"kind": "javascript-module",
|
|
810
|
-
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
811
|
-
"declarations": [
|
|
812
|
-
{
|
|
813
|
-
"kind": "variable",
|
|
814
|
-
"name": "AiChatHeaderComponentTagName",
|
|
815
|
-
"type": {
|
|
816
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
817
|
-
},
|
|
818
|
-
"default": "'forge-ai-chat-header'"
|
|
819
|
-
},
|
|
820
|
-
{
|
|
821
|
-
"kind": "class",
|
|
822
|
-
"description": "",
|
|
823
|
-
"name": "AiChatHeaderComponent",
|
|
824
|
-
"slots": [
|
|
825
|
-
{
|
|
826
|
-
"description": "Slot for custom icon (default: forge-ai-icon)",
|
|
827
|
-
"name": "icon"
|
|
828
|
-
}
|
|
829
|
-
],
|
|
830
|
-
"members": [
|
|
831
|
-
{
|
|
832
|
-
"kind": "field",
|
|
833
|
-
"name": "showExpandButton",
|
|
834
|
-
"type": {
|
|
835
|
-
"text": "boolean"
|
|
836
|
-
},
|
|
837
|
-
"privacy": "public",
|
|
838
|
-
"default": "false",
|
|
839
|
-
"description": "Controls whether the expand button is visible",
|
|
840
|
-
"attribute": "show-expand-button"
|
|
841
|
-
},
|
|
842
|
-
{
|
|
843
|
-
"kind": "field",
|
|
844
|
-
"name": "showMinimizeButton",
|
|
845
|
-
"type": {
|
|
846
|
-
"text": "boolean"
|
|
847
|
-
},
|
|
848
|
-
"privacy": "public",
|
|
849
|
-
"default": "false",
|
|
850
|
-
"description": "Controls whether the minimize button is visible",
|
|
851
|
-
"attribute": "show-minimize-button"
|
|
852
|
-
},
|
|
853
|
-
{
|
|
854
|
-
"kind": "field",
|
|
855
|
-
"name": "expanded",
|
|
856
|
-
"type": {
|
|
857
|
-
"text": "boolean"
|
|
858
|
-
},
|
|
859
|
-
"privacy": "public",
|
|
859
|
+
"privacy": "public",
|
|
860
860
|
"default": "false",
|
|
861
861
|
"description": "Indicates the current expanded state for displaying the appropriate expand/collapse icon",
|
|
862
862
|
"attribute": "expanded"
|
|
@@ -7201,81 +7201,6 @@
|
|
|
7201
7201
|
}
|
|
7202
7202
|
]
|
|
7203
7203
|
},
|
|
7204
|
-
{
|
|
7205
|
-
"kind": "javascript-module",
|
|
7206
|
-
"path": "src/lib/ai-reasoning/ai-reasoning.ts",
|
|
7207
|
-
"declarations": [
|
|
7208
|
-
{
|
|
7209
|
-
"kind": "variable",
|
|
7210
|
-
"name": "AiReasoningComponentTagName",
|
|
7211
|
-
"type": {
|
|
7212
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
7213
|
-
},
|
|
7214
|
-
"default": "'forge-ai-reasoning'"
|
|
7215
|
-
},
|
|
7216
|
-
{
|
|
7217
|
-
"kind": "class",
|
|
7218
|
-
"description": "",
|
|
7219
|
-
"name": "AiReasoningComponent",
|
|
7220
|
-
"members": [
|
|
7221
|
-
{
|
|
7222
|
-
"kind": "field",
|
|
7223
|
-
"name": "expanded",
|
|
7224
|
-
"type": {
|
|
7225
|
-
"text": "boolean"
|
|
7226
|
-
},
|
|
7227
|
-
"privacy": "public",
|
|
7228
|
-
"default": "false",
|
|
7229
|
-
"description": "Whether the reasoning is expanded",
|
|
7230
|
-
"attribute": "expanded",
|
|
7231
|
-
"reflects": true
|
|
7232
|
-
}
|
|
7233
|
-
],
|
|
7234
|
-
"attributes": [
|
|
7235
|
-
{
|
|
7236
|
-
"name": "expanded",
|
|
7237
|
-
"type": {
|
|
7238
|
-
"text": "boolean"
|
|
7239
|
-
},
|
|
7240
|
-
"default": "false",
|
|
7241
|
-
"description": "Whether the reasoning is expanded",
|
|
7242
|
-
"fieldName": "expanded"
|
|
7243
|
-
}
|
|
7244
|
-
],
|
|
7245
|
-
"superclass": {
|
|
7246
|
-
"name": "LitElement",
|
|
7247
|
-
"package": "lit"
|
|
7248
|
-
},
|
|
7249
|
-
"tagName": "forge-ai-reasoning",
|
|
7250
|
-
"customElement": true
|
|
7251
|
-
}
|
|
7252
|
-
],
|
|
7253
|
-
"exports": [
|
|
7254
|
-
{
|
|
7255
|
-
"kind": "js",
|
|
7256
|
-
"name": "AiReasoningComponentTagName",
|
|
7257
|
-
"declaration": {
|
|
7258
|
-
"name": "AiReasoningComponentTagName",
|
|
7259
|
-
"module": "src/lib/ai-reasoning/ai-reasoning.ts"
|
|
7260
|
-
}
|
|
7261
|
-
},
|
|
7262
|
-
{
|
|
7263
|
-
"kind": "js",
|
|
7264
|
-
"name": "AiReasoningComponent",
|
|
7265
|
-
"declaration": {
|
|
7266
|
-
"name": "AiReasoningComponent",
|
|
7267
|
-
"module": "src/lib/ai-reasoning/ai-reasoning.ts"
|
|
7268
|
-
}
|
|
7269
|
-
},
|
|
7270
|
-
{
|
|
7271
|
-
"kind": "custom-element-definition",
|
|
7272
|
-
"declaration": {
|
|
7273
|
-
"name": "AiReasoningComponent",
|
|
7274
|
-
"module": "src/lib/ai-reasoning/ai-reasoning.ts"
|
|
7275
|
-
}
|
|
7276
|
-
}
|
|
7277
|
-
]
|
|
7278
|
-
},
|
|
7279
7204
|
{
|
|
7280
7205
|
"kind": "javascript-module",
|
|
7281
7206
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
@@ -7647,52 +7572,75 @@
|
|
|
7647
7572
|
},
|
|
7648
7573
|
{
|
|
7649
7574
|
"kind": "javascript-module",
|
|
7650
|
-
"path": "src/lib/ai-
|
|
7575
|
+
"path": "src/lib/ai-reasoning/ai-reasoning.ts",
|
|
7651
7576
|
"declarations": [
|
|
7652
7577
|
{
|
|
7653
7578
|
"kind": "variable",
|
|
7654
|
-
"name": "
|
|
7579
|
+
"name": "AiReasoningComponentTagName",
|
|
7655
7580
|
"type": {
|
|
7656
7581
|
"text": "keyof HTMLElementTagNameMap"
|
|
7657
7582
|
},
|
|
7658
|
-
"default": "'forge-ai-
|
|
7583
|
+
"default": "'forge-ai-reasoning'"
|
|
7659
7584
|
},
|
|
7660
7585
|
{
|
|
7661
7586
|
"kind": "class",
|
|
7662
7587
|
"description": "",
|
|
7663
|
-
"name": "
|
|
7664
|
-
"members": [
|
|
7588
|
+
"name": "AiReasoningComponent",
|
|
7589
|
+
"members": [
|
|
7590
|
+
{
|
|
7591
|
+
"kind": "field",
|
|
7592
|
+
"name": "expanded",
|
|
7593
|
+
"type": {
|
|
7594
|
+
"text": "boolean"
|
|
7595
|
+
},
|
|
7596
|
+
"privacy": "public",
|
|
7597
|
+
"default": "false",
|
|
7598
|
+
"description": "Whether the reasoning is expanded",
|
|
7599
|
+
"attribute": "expanded",
|
|
7600
|
+
"reflects": true
|
|
7601
|
+
}
|
|
7602
|
+
],
|
|
7603
|
+
"attributes": [
|
|
7604
|
+
{
|
|
7605
|
+
"name": "expanded",
|
|
7606
|
+
"type": {
|
|
7607
|
+
"text": "boolean"
|
|
7608
|
+
},
|
|
7609
|
+
"default": "false",
|
|
7610
|
+
"description": "Whether the reasoning is expanded",
|
|
7611
|
+
"fieldName": "expanded"
|
|
7612
|
+
}
|
|
7613
|
+
],
|
|
7665
7614
|
"superclass": {
|
|
7666
7615
|
"name": "LitElement",
|
|
7667
7616
|
"package": "lit"
|
|
7668
7617
|
},
|
|
7669
|
-
"tagName": "forge-ai-
|
|
7670
|
-
"customElement": true
|
|
7671
|
-
"summary": "A simple wrapper component for rendering assistant response message content."
|
|
7618
|
+
"tagName": "forge-ai-reasoning",
|
|
7619
|
+
"customElement": true
|
|
7672
7620
|
}
|
|
7673
7621
|
],
|
|
7674
7622
|
"exports": [
|
|
7675
7623
|
{
|
|
7676
7624
|
"kind": "js",
|
|
7677
|
-
"name": "
|
|
7625
|
+
"name": "AiReasoningComponentTagName",
|
|
7678
7626
|
"declaration": {
|
|
7679
|
-
"name": "
|
|
7680
|
-
"module": "src/lib/ai-
|
|
7627
|
+
"name": "AiReasoningComponentTagName",
|
|
7628
|
+
"module": "src/lib/ai-reasoning/ai-reasoning.ts"
|
|
7681
7629
|
}
|
|
7682
7630
|
},
|
|
7683
7631
|
{
|
|
7684
7632
|
"kind": "js",
|
|
7685
|
-
"name": "
|
|
7633
|
+
"name": "AiReasoningComponent",
|
|
7686
7634
|
"declaration": {
|
|
7687
|
-
"name": "
|
|
7688
|
-
"module": "src/lib/ai-
|
|
7635
|
+
"name": "AiReasoningComponent",
|
|
7636
|
+
"module": "src/lib/ai-reasoning/ai-reasoning.ts"
|
|
7689
7637
|
}
|
|
7690
7638
|
},
|
|
7691
7639
|
{
|
|
7692
7640
|
"kind": "custom-element-definition",
|
|
7693
7641
|
"declaration": {
|
|
7694
|
-
"name": "
|
|
7695
|
-
"module": "src/lib/ai-
|
|
7642
|
+
"name": "AiReasoningComponent",
|
|
7643
|
+
"module": "src/lib/ai-reasoning/ai-reasoning.ts"
|
|
7696
7644
|
}
|
|
7697
7645
|
}
|
|
7698
7646
|
]
|
|
@@ -7814,49 +7762,101 @@
|
|
|
7814
7762
|
},
|
|
7815
7763
|
{
|
|
7816
7764
|
"kind": "javascript-module",
|
|
7817
|
-
"path": "src/lib/ai-response-message
|
|
7765
|
+
"path": "src/lib/ai-response-message/ai-response-message.ts",
|
|
7818
7766
|
"declarations": [
|
|
7819
7767
|
{
|
|
7820
7768
|
"kind": "variable",
|
|
7821
|
-
"name": "
|
|
7769
|
+
"name": "AiResponseMessageComponentTagName",
|
|
7822
7770
|
"type": {
|
|
7823
7771
|
"text": "keyof HTMLElementTagNameMap"
|
|
7824
7772
|
},
|
|
7825
|
-
"default": "'forge-ai-response-message
|
|
7773
|
+
"default": "'forge-ai-response-message'"
|
|
7826
7774
|
},
|
|
7827
7775
|
{
|
|
7828
7776
|
"kind": "class",
|
|
7829
7777
|
"description": "",
|
|
7830
|
-
"name": "
|
|
7831
|
-
"members": [
|
|
7832
|
-
|
|
7833
|
-
|
|
7834
|
-
|
|
7835
|
-
|
|
7836
|
-
|
|
7837
|
-
|
|
7838
|
-
|
|
7839
|
-
|
|
7840
|
-
|
|
7841
|
-
|
|
7842
|
-
|
|
7843
|
-
|
|
7844
|
-
|
|
7845
|
-
|
|
7846
|
-
|
|
7847
|
-
|
|
7848
|
-
|
|
7849
|
-
|
|
7850
|
-
|
|
7851
|
-
|
|
7852
|
-
|
|
7853
|
-
|
|
7854
|
-
|
|
7855
|
-
|
|
7856
|
-
|
|
7857
|
-
|
|
7858
|
-
|
|
7859
|
-
|
|
7778
|
+
"name": "AiResponseMessageComponent",
|
|
7779
|
+
"members": [],
|
|
7780
|
+
"superclass": {
|
|
7781
|
+
"name": "LitElement",
|
|
7782
|
+
"package": "lit"
|
|
7783
|
+
},
|
|
7784
|
+
"tagName": "forge-ai-response-message",
|
|
7785
|
+
"customElement": true,
|
|
7786
|
+
"summary": "A simple wrapper component for rendering assistant response message content."
|
|
7787
|
+
}
|
|
7788
|
+
],
|
|
7789
|
+
"exports": [
|
|
7790
|
+
{
|
|
7791
|
+
"kind": "js",
|
|
7792
|
+
"name": "AiResponseMessageComponentTagName",
|
|
7793
|
+
"declaration": {
|
|
7794
|
+
"name": "AiResponseMessageComponentTagName",
|
|
7795
|
+
"module": "src/lib/ai-response-message/ai-response-message.ts"
|
|
7796
|
+
}
|
|
7797
|
+
},
|
|
7798
|
+
{
|
|
7799
|
+
"kind": "js",
|
|
7800
|
+
"name": "AiResponseMessageComponent",
|
|
7801
|
+
"declaration": {
|
|
7802
|
+
"name": "AiResponseMessageComponent",
|
|
7803
|
+
"module": "src/lib/ai-response-message/ai-response-message.ts"
|
|
7804
|
+
}
|
|
7805
|
+
},
|
|
7806
|
+
{
|
|
7807
|
+
"kind": "custom-element-definition",
|
|
7808
|
+
"declaration": {
|
|
7809
|
+
"name": "AiResponseMessageComponent",
|
|
7810
|
+
"module": "src/lib/ai-response-message/ai-response-message.ts"
|
|
7811
|
+
}
|
|
7812
|
+
}
|
|
7813
|
+
]
|
|
7814
|
+
},
|
|
7815
|
+
{
|
|
7816
|
+
"kind": "javascript-module",
|
|
7817
|
+
"path": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts",
|
|
7818
|
+
"declarations": [
|
|
7819
|
+
{
|
|
7820
|
+
"kind": "variable",
|
|
7821
|
+
"name": "AiResponseMessageToolbarComponentTagName",
|
|
7822
|
+
"type": {
|
|
7823
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
7824
|
+
},
|
|
7825
|
+
"default": "'forge-ai-response-message-toolbar'"
|
|
7826
|
+
},
|
|
7827
|
+
{
|
|
7828
|
+
"kind": "class",
|
|
7829
|
+
"description": "",
|
|
7830
|
+
"name": "AiResponseMessageToolbarComponent",
|
|
7831
|
+
"members": [
|
|
7832
|
+
{
|
|
7833
|
+
"kind": "field",
|
|
7834
|
+
"name": "enableReactions",
|
|
7835
|
+
"type": {
|
|
7836
|
+
"text": "boolean"
|
|
7837
|
+
},
|
|
7838
|
+
"privacy": "public",
|
|
7839
|
+
"default": "false",
|
|
7840
|
+
"attribute": "enable-reactions"
|
|
7841
|
+
},
|
|
7842
|
+
{
|
|
7843
|
+
"kind": "field",
|
|
7844
|
+
"name": "feedbackType",
|
|
7845
|
+
"type": {
|
|
7846
|
+
"text": "FeedbackType | undefined"
|
|
7847
|
+
},
|
|
7848
|
+
"privacy": "public",
|
|
7849
|
+
"attribute": "feedback-type"
|
|
7850
|
+
},
|
|
7851
|
+
{
|
|
7852
|
+
"kind": "field",
|
|
7853
|
+
"name": "feedbackReason",
|
|
7854
|
+
"type": {
|
|
7855
|
+
"text": "string | undefined"
|
|
7856
|
+
},
|
|
7857
|
+
"privacy": "public",
|
|
7858
|
+
"attribute": "feedback-reason"
|
|
7859
|
+
}
|
|
7860
7860
|
],
|
|
7861
7861
|
"events": [
|
|
7862
7862
|
{
|
|
@@ -8219,6 +8219,89 @@
|
|
|
8219
8219
|
}
|
|
8220
8220
|
]
|
|
8221
8221
|
},
|
|
8222
|
+
{
|
|
8223
|
+
"kind": "javascript-module",
|
|
8224
|
+
"path": "src/lib/ai-spinner/ai-spinner.ts",
|
|
8225
|
+
"declarations": [
|
|
8226
|
+
{
|
|
8227
|
+
"kind": "variable",
|
|
8228
|
+
"name": "AiSpinnerComponentTagName",
|
|
8229
|
+
"type": {
|
|
8230
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
8231
|
+
},
|
|
8232
|
+
"default": "'forge-ai-spinner'"
|
|
8233
|
+
},
|
|
8234
|
+
{
|
|
8235
|
+
"kind": "class",
|
|
8236
|
+
"description": "",
|
|
8237
|
+
"name": "AiSpinnerComponent",
|
|
8238
|
+
"cssProperties": [
|
|
8239
|
+
{
|
|
8240
|
+
"description": "Color of the spinner indicator",
|
|
8241
|
+
"name": "--forge-ai-spinner-color"
|
|
8242
|
+
},
|
|
8243
|
+
{
|
|
8244
|
+
"description": "Color of the spinner track",
|
|
8245
|
+
"name": "--forge-ai-spinner-track-color"
|
|
8246
|
+
}
|
|
8247
|
+
],
|
|
8248
|
+
"members": [
|
|
8249
|
+
{
|
|
8250
|
+
"kind": "field",
|
|
8251
|
+
"name": "size",
|
|
8252
|
+
"type": {
|
|
8253
|
+
"text": "SpinnerSize"
|
|
8254
|
+
},
|
|
8255
|
+
"privacy": "public",
|
|
8256
|
+
"default": "'medium'",
|
|
8257
|
+
"attribute": "size"
|
|
8258
|
+
}
|
|
8259
|
+
],
|
|
8260
|
+
"attributes": [
|
|
8261
|
+
{
|
|
8262
|
+
"name": "size",
|
|
8263
|
+
"type": {
|
|
8264
|
+
"text": "SpinnerSize"
|
|
8265
|
+
},
|
|
8266
|
+
"default": "'medium'",
|
|
8267
|
+
"fieldName": "size"
|
|
8268
|
+
}
|
|
8269
|
+
],
|
|
8270
|
+
"superclass": {
|
|
8271
|
+
"name": "LitElement",
|
|
8272
|
+
"package": "lit"
|
|
8273
|
+
},
|
|
8274
|
+
"tagName": "forge-ai-spinner",
|
|
8275
|
+
"customElement": true,
|
|
8276
|
+
"summary": "Indeterminate circular progress indicator."
|
|
8277
|
+
}
|
|
8278
|
+
],
|
|
8279
|
+
"exports": [
|
|
8280
|
+
{
|
|
8281
|
+
"kind": "js",
|
|
8282
|
+
"name": "AiSpinnerComponentTagName",
|
|
8283
|
+
"declaration": {
|
|
8284
|
+
"name": "AiSpinnerComponentTagName",
|
|
8285
|
+
"module": "src/lib/ai-spinner/ai-spinner.ts"
|
|
8286
|
+
}
|
|
8287
|
+
},
|
|
8288
|
+
{
|
|
8289
|
+
"kind": "js",
|
|
8290
|
+
"name": "AiSpinnerComponent",
|
|
8291
|
+
"declaration": {
|
|
8292
|
+
"name": "AiSpinnerComponent",
|
|
8293
|
+
"module": "src/lib/ai-spinner/ai-spinner.ts"
|
|
8294
|
+
}
|
|
8295
|
+
},
|
|
8296
|
+
{
|
|
8297
|
+
"kind": "custom-element-definition",
|
|
8298
|
+
"declaration": {
|
|
8299
|
+
"name": "AiSpinnerComponent",
|
|
8300
|
+
"module": "src/lib/ai-spinner/ai-spinner.ts"
|
|
8301
|
+
}
|
|
8302
|
+
}
|
|
8303
|
+
]
|
|
8304
|
+
},
|
|
8222
8305
|
{
|
|
8223
8306
|
"kind": "javascript-module",
|
|
8224
8307
|
"path": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts",
|
|
@@ -8382,83 +8465,113 @@
|
|
|
8382
8465
|
},
|
|
8383
8466
|
{
|
|
8384
8467
|
"kind": "javascript-module",
|
|
8385
|
-
"path": "src/lib/ai-
|
|
8468
|
+
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
8386
8469
|
"declarations": [
|
|
8387
8470
|
{
|
|
8388
8471
|
"kind": "variable",
|
|
8389
|
-
"name": "
|
|
8472
|
+
"name": "AiSuggestionsComponentTagName",
|
|
8390
8473
|
"type": {
|
|
8391
8474
|
"text": "keyof HTMLElementTagNameMap"
|
|
8392
8475
|
},
|
|
8393
|
-
"default": "'forge-ai-
|
|
8476
|
+
"default": "'forge-ai-suggestions'"
|
|
8394
8477
|
},
|
|
8395
8478
|
{
|
|
8396
8479
|
"kind": "class",
|
|
8397
8480
|
"description": "",
|
|
8398
|
-
"name": "
|
|
8481
|
+
"name": "AiSuggestionsComponent",
|
|
8399
8482
|
"cssProperties": [
|
|
8400
8483
|
{
|
|
8401
|
-
"description": "
|
|
8402
|
-
"name": "--forge-ai-
|
|
8484
|
+
"description": "The maximum inline size of the suggestions container.",
|
|
8485
|
+
"name": "--forge-ai-suggestions-inline-size"
|
|
8403
8486
|
},
|
|
8404
8487
|
{
|
|
8405
|
-
"description": "
|
|
8406
|
-
"name": "--forge-ai-
|
|
8488
|
+
"description": "The maximum width of the suggestion buttons in inline layout.",
|
|
8489
|
+
"name": "--forge-ai-suggestion-max-width"
|
|
8407
8490
|
}
|
|
8408
8491
|
],
|
|
8409
8492
|
"members": [
|
|
8410
8493
|
{
|
|
8411
8494
|
"kind": "field",
|
|
8412
|
-
"name": "
|
|
8495
|
+
"name": "suggestions",
|
|
8413
8496
|
"type": {
|
|
8414
|
-
"text": "
|
|
8497
|
+
"text": "Suggestion[]"
|
|
8415
8498
|
},
|
|
8416
8499
|
"privacy": "public",
|
|
8417
|
-
"default": "
|
|
8418
|
-
"
|
|
8500
|
+
"default": "[]",
|
|
8501
|
+
"description": "Array of suggestion objects to display"
|
|
8502
|
+
},
|
|
8503
|
+
{
|
|
8504
|
+
"kind": "field",
|
|
8505
|
+
"name": "variant",
|
|
8506
|
+
"type": {
|
|
8507
|
+
"text": "AiSuggestionsVariant"
|
|
8508
|
+
},
|
|
8509
|
+
"privacy": "public",
|
|
8510
|
+
"default": "'inline'",
|
|
8511
|
+
"description": "Display variant for suggestions layout",
|
|
8512
|
+
"attribute": "variant"
|
|
8513
|
+
}
|
|
8514
|
+
],
|
|
8515
|
+
"events": [
|
|
8516
|
+
{
|
|
8517
|
+
"type": {
|
|
8518
|
+
"text": "CustomEvent<ForgeAiSuggestionsEventData>"
|
|
8519
|
+
},
|
|
8520
|
+
"description": "Fired when a suggestion is selected.",
|
|
8521
|
+
"name": "forge-ai-suggestions-select"
|
|
8419
8522
|
}
|
|
8420
8523
|
],
|
|
8421
8524
|
"attributes": [
|
|
8422
8525
|
{
|
|
8423
|
-
"name": "
|
|
8526
|
+
"name": "variant",
|
|
8424
8527
|
"type": {
|
|
8425
|
-
"text": "
|
|
8528
|
+
"text": "AiSuggestionsVariant"
|
|
8426
8529
|
},
|
|
8427
|
-
"default": "'
|
|
8428
|
-
"
|
|
8530
|
+
"default": "'inline'",
|
|
8531
|
+
"description": "Display variant for suggestions layout",
|
|
8532
|
+
"fieldName": "variant"
|
|
8429
8533
|
}
|
|
8430
8534
|
],
|
|
8431
8535
|
"superclass": {
|
|
8432
8536
|
"name": "LitElement",
|
|
8433
8537
|
"package": "lit"
|
|
8434
8538
|
},
|
|
8435
|
-
"tagName": "forge-ai-
|
|
8539
|
+
"tagName": "forge-ai-suggestions",
|
|
8436
8540
|
"customElement": true,
|
|
8437
|
-
"
|
|
8541
|
+
"states": [
|
|
8542
|
+
{
|
|
8543
|
+
"name": "inline",
|
|
8544
|
+
"description": "The suggestions are displayed inline."
|
|
8545
|
+
},
|
|
8546
|
+
{
|
|
8547
|
+
"name": "block",
|
|
8548
|
+
"description": "The suggestions are displayed as blocks."
|
|
8549
|
+
}
|
|
8550
|
+
]
|
|
8438
8551
|
}
|
|
8439
8552
|
],
|
|
8440
8553
|
"exports": [
|
|
8441
8554
|
{
|
|
8442
8555
|
"kind": "js",
|
|
8443
|
-
"name": "
|
|
8556
|
+
"name": "AiSuggestionsComponentTagName",
|
|
8444
8557
|
"declaration": {
|
|
8445
|
-
"name": "
|
|
8446
|
-
"module": "src/lib/ai-
|
|
8558
|
+
"name": "AiSuggestionsComponentTagName",
|
|
8559
|
+
"module": "src/lib/ai-suggestions/ai-suggestions.ts"
|
|
8447
8560
|
}
|
|
8448
8561
|
},
|
|
8449
8562
|
{
|
|
8450
8563
|
"kind": "js",
|
|
8451
|
-
"name": "
|
|
8564
|
+
"name": "AiSuggestionsComponent",
|
|
8452
8565
|
"declaration": {
|
|
8453
|
-
"name": "
|
|
8454
|
-
"module": "src/lib/ai-
|
|
8566
|
+
"name": "AiSuggestionsComponent",
|
|
8567
|
+
"module": "src/lib/ai-suggestions/ai-suggestions.ts"
|
|
8455
8568
|
}
|
|
8456
8569
|
},
|
|
8457
8570
|
{
|
|
8458
8571
|
"kind": "custom-element-definition",
|
|
8459
8572
|
"declaration": {
|
|
8460
|
-
"name": "
|
|
8461
|
-
"module": "src/lib/ai-
|
|
8573
|
+
"name": "AiSuggestionsComponent",
|
|
8574
|
+
"module": "src/lib/ai-suggestions/ai-suggestions.ts"
|
|
8462
8575
|
}
|
|
8463
8576
|
}
|
|
8464
8577
|
]
|
|
@@ -8574,113 +8687,193 @@
|
|
|
8574
8687
|
},
|
|
8575
8688
|
{
|
|
8576
8689
|
"kind": "javascript-module",
|
|
8577
|
-
"path": "src/lib/ai-
|
|
8690
|
+
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
8578
8691
|
"declarations": [
|
|
8579
8692
|
{
|
|
8580
8693
|
"kind": "variable",
|
|
8581
|
-
"name": "
|
|
8694
|
+
"name": "AiThreadsComponentTagName",
|
|
8582
8695
|
"type": {
|
|
8583
8696
|
"text": "keyof HTMLElementTagNameMap"
|
|
8584
8697
|
},
|
|
8585
|
-
"default": "'forge-ai-
|
|
8698
|
+
"default": "'forge-ai-threads'"
|
|
8586
8699
|
},
|
|
8587
8700
|
{
|
|
8588
8701
|
"kind": "class",
|
|
8589
8702
|
"description": "",
|
|
8590
|
-
"name": "
|
|
8591
|
-
"
|
|
8592
|
-
{
|
|
8593
|
-
"description": "The maximum inline size of the suggestions container.",
|
|
8594
|
-
"name": "--forge-ai-suggestions-inline-size"
|
|
8595
|
-
},
|
|
8703
|
+
"name": "AiThreadsComponent",
|
|
8704
|
+
"slots": [
|
|
8596
8705
|
{
|
|
8597
|
-
"description": "
|
|
8598
|
-
"name": "
|
|
8706
|
+
"description": "Default slot for chatbot component",
|
|
8707
|
+
"name": ""
|
|
8599
8708
|
}
|
|
8600
8709
|
],
|
|
8601
8710
|
"members": [
|
|
8602
8711
|
{
|
|
8603
8712
|
"kind": "field",
|
|
8604
|
-
"name": "
|
|
8713
|
+
"name": "threads",
|
|
8605
8714
|
"type": {
|
|
8606
|
-
"text": "
|
|
8715
|
+
"text": "Thread[]"
|
|
8607
8716
|
},
|
|
8608
8717
|
"privacy": "public",
|
|
8609
8718
|
"default": "[]",
|
|
8610
|
-
"description": "Array of
|
|
8719
|
+
"description": "Array of threads to display in the navigation list",
|
|
8720
|
+
"attribute": "threads"
|
|
8721
|
+
}
|
|
8722
|
+
],
|
|
8723
|
+
"events": [
|
|
8724
|
+
{
|
|
8725
|
+
"type": {
|
|
8726
|
+
"text": "CustomEvent<ForgeAiThreadsSelectEventData>"
|
|
8727
|
+
},
|
|
8728
|
+
"description": "Fired when a thread is selected.",
|
|
8729
|
+
"name": "forge-ai-threads-select"
|
|
8611
8730
|
},
|
|
8612
8731
|
{
|
|
8613
|
-
"kind": "field",
|
|
8614
|
-
"name": "variant",
|
|
8615
8732
|
"type": {
|
|
8616
|
-
"text": "
|
|
8733
|
+
"text": "CustomEvent"
|
|
8617
8734
|
},
|
|
8618
|
-
"
|
|
8619
|
-
"
|
|
8620
|
-
|
|
8621
|
-
"attribute": "variant"
|
|
8622
|
-
}
|
|
8623
|
-
],
|
|
8624
|
-
"events": [
|
|
8735
|
+
"description": "Fired when the new chat button is clicked.",
|
|
8736
|
+
"name": "forge-ai-threads-new-chat"
|
|
8737
|
+
},
|
|
8625
8738
|
{
|
|
8626
8739
|
"type": {
|
|
8627
|
-
"text": "CustomEvent
|
|
8740
|
+
"text": "CustomEvent"
|
|
8628
8741
|
},
|
|
8629
|
-
"description": "Fired when
|
|
8630
|
-
"name": "forge-ai-
|
|
8742
|
+
"description": "Fired when the clear history button is clicked.",
|
|
8743
|
+
"name": "forge-ai-threads-clear-history"
|
|
8631
8744
|
}
|
|
8632
8745
|
],
|
|
8633
8746
|
"attributes": [
|
|
8634
8747
|
{
|
|
8635
|
-
"name": "
|
|
8748
|
+
"name": "threads",
|
|
8636
8749
|
"type": {
|
|
8637
|
-
"text": "
|
|
8750
|
+
"text": "Thread[]"
|
|
8638
8751
|
},
|
|
8639
|
-
"default": "
|
|
8640
|
-
"description": "
|
|
8641
|
-
"fieldName": "
|
|
8752
|
+
"default": "[]",
|
|
8753
|
+
"description": "Array of threads to display in the navigation list",
|
|
8754
|
+
"fieldName": "threads"
|
|
8642
8755
|
}
|
|
8643
8756
|
],
|
|
8644
8757
|
"superclass": {
|
|
8645
8758
|
"name": "LitElement",
|
|
8646
8759
|
"package": "lit"
|
|
8647
8760
|
},
|
|
8648
|
-
"tagName": "forge-ai-
|
|
8649
|
-
"customElement": true
|
|
8650
|
-
|
|
8761
|
+
"tagName": "forge-ai-threads",
|
|
8762
|
+
"customElement": true
|
|
8763
|
+
}
|
|
8764
|
+
],
|
|
8765
|
+
"exports": [
|
|
8766
|
+
{
|
|
8767
|
+
"kind": "js",
|
|
8768
|
+
"name": "AiThreadsComponentTagName",
|
|
8769
|
+
"declaration": {
|
|
8770
|
+
"name": "AiThreadsComponentTagName",
|
|
8771
|
+
"module": "src/lib/ai-threads/ai-threads.ts"
|
|
8772
|
+
}
|
|
8773
|
+
},
|
|
8774
|
+
{
|
|
8775
|
+
"kind": "js",
|
|
8776
|
+
"name": "AiThreadsComponent",
|
|
8777
|
+
"declaration": {
|
|
8778
|
+
"name": "AiThreadsComponent",
|
|
8779
|
+
"module": "src/lib/ai-threads/ai-threads.ts"
|
|
8780
|
+
}
|
|
8781
|
+
},
|
|
8782
|
+
{
|
|
8783
|
+
"kind": "custom-element-definition",
|
|
8784
|
+
"declaration": {
|
|
8785
|
+
"name": "AiThreadsComponent",
|
|
8786
|
+
"module": "src/lib/ai-threads/ai-threads.ts"
|
|
8787
|
+
}
|
|
8788
|
+
}
|
|
8789
|
+
]
|
|
8790
|
+
},
|
|
8791
|
+
{
|
|
8792
|
+
"kind": "javascript-module",
|
|
8793
|
+
"path": "src/lib/ai-tool-call-indicator/ai-tool-call-indicator.ts",
|
|
8794
|
+
"declarations": [
|
|
8795
|
+
{
|
|
8796
|
+
"kind": "variable",
|
|
8797
|
+
"name": "AiToolCallIndicatorComponentTagName",
|
|
8798
|
+
"type": {
|
|
8799
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
8800
|
+
},
|
|
8801
|
+
"default": "'forge-ai-tool-call-indicator'"
|
|
8802
|
+
},
|
|
8803
|
+
{
|
|
8804
|
+
"kind": "class",
|
|
8805
|
+
"description": "",
|
|
8806
|
+
"name": "AiToolCallIndicatorComponent",
|
|
8807
|
+
"members": [
|
|
8651
8808
|
{
|
|
8652
|
-
"
|
|
8653
|
-
"
|
|
8809
|
+
"kind": "field",
|
|
8810
|
+
"name": "complete",
|
|
8811
|
+
"type": {
|
|
8812
|
+
"text": "boolean"
|
|
8813
|
+
},
|
|
8814
|
+
"privacy": "public",
|
|
8815
|
+
"default": "false",
|
|
8816
|
+
"attribute": "complete",
|
|
8817
|
+
"reflects": true
|
|
8654
8818
|
},
|
|
8655
8819
|
{
|
|
8656
|
-
"
|
|
8657
|
-
"
|
|
8820
|
+
"kind": "field",
|
|
8821
|
+
"name": "elapsedMs",
|
|
8822
|
+
"type": {
|
|
8823
|
+
"text": "number | undefined"
|
|
8824
|
+
},
|
|
8825
|
+
"privacy": "public",
|
|
8826
|
+
"attribute": "elapsed-ms"
|
|
8658
8827
|
}
|
|
8659
|
-
]
|
|
8828
|
+
],
|
|
8829
|
+
"attributes": [
|
|
8830
|
+
{
|
|
8831
|
+
"name": "complete",
|
|
8832
|
+
"type": {
|
|
8833
|
+
"text": "boolean"
|
|
8834
|
+
},
|
|
8835
|
+
"default": "false",
|
|
8836
|
+
"fieldName": "complete"
|
|
8837
|
+
},
|
|
8838
|
+
{
|
|
8839
|
+
"name": "elapsed-ms",
|
|
8840
|
+
"type": {
|
|
8841
|
+
"text": "number | undefined"
|
|
8842
|
+
},
|
|
8843
|
+
"fieldName": "elapsedMs"
|
|
8844
|
+
}
|
|
8845
|
+
],
|
|
8846
|
+
"superclass": {
|
|
8847
|
+
"name": "LitElement",
|
|
8848
|
+
"package": "lit"
|
|
8849
|
+
},
|
|
8850
|
+
"tagName": "forge-ai-tool-call-indicator",
|
|
8851
|
+
"customElement": true,
|
|
8852
|
+
"summary": "Indicator showing agent tool call processing status."
|
|
8660
8853
|
}
|
|
8661
8854
|
],
|
|
8662
8855
|
"exports": [
|
|
8663
8856
|
{
|
|
8664
8857
|
"kind": "js",
|
|
8665
|
-
"name": "
|
|
8858
|
+
"name": "AiToolCallIndicatorComponentTagName",
|
|
8666
8859
|
"declaration": {
|
|
8667
|
-
"name": "
|
|
8668
|
-
"module": "src/lib/ai-
|
|
8860
|
+
"name": "AiToolCallIndicatorComponentTagName",
|
|
8861
|
+
"module": "src/lib/ai-tool-call-indicator/ai-tool-call-indicator.ts"
|
|
8669
8862
|
}
|
|
8670
8863
|
},
|
|
8671
8864
|
{
|
|
8672
8865
|
"kind": "js",
|
|
8673
|
-
"name": "
|
|
8866
|
+
"name": "AiToolCallIndicatorComponent",
|
|
8674
8867
|
"declaration": {
|
|
8675
|
-
"name": "
|
|
8676
|
-
"module": "src/lib/ai-
|
|
8868
|
+
"name": "AiToolCallIndicatorComponent",
|
|
8869
|
+
"module": "src/lib/ai-tool-call-indicator/ai-tool-call-indicator.ts"
|
|
8677
8870
|
}
|
|
8678
8871
|
},
|
|
8679
8872
|
{
|
|
8680
8873
|
"kind": "custom-element-definition",
|
|
8681
8874
|
"declaration": {
|
|
8682
|
-
"name": "
|
|
8683
|
-
"module": "src/lib/ai-
|
|
8875
|
+
"name": "AiToolCallIndicatorComponent",
|
|
8876
|
+
"module": "src/lib/ai-tool-call-indicator/ai-tool-call-indicator.ts"
|
|
8684
8877
|
}
|
|
8685
8878
|
}
|
|
8686
8879
|
]
|
|
@@ -8812,109 +9005,6 @@
|
|
|
8812
9005
|
}
|
|
8813
9006
|
]
|
|
8814
9007
|
},
|
|
8815
|
-
{
|
|
8816
|
-
"kind": "javascript-module",
|
|
8817
|
-
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
8818
|
-
"declarations": [
|
|
8819
|
-
{
|
|
8820
|
-
"kind": "variable",
|
|
8821
|
-
"name": "AiThreadsComponentTagName",
|
|
8822
|
-
"type": {
|
|
8823
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
8824
|
-
},
|
|
8825
|
-
"default": "'forge-ai-threads'"
|
|
8826
|
-
},
|
|
8827
|
-
{
|
|
8828
|
-
"kind": "class",
|
|
8829
|
-
"description": "",
|
|
8830
|
-
"name": "AiThreadsComponent",
|
|
8831
|
-
"slots": [
|
|
8832
|
-
{
|
|
8833
|
-
"description": "Default slot for chatbot component",
|
|
8834
|
-
"name": ""
|
|
8835
|
-
}
|
|
8836
|
-
],
|
|
8837
|
-
"members": [
|
|
8838
|
-
{
|
|
8839
|
-
"kind": "field",
|
|
8840
|
-
"name": "threads",
|
|
8841
|
-
"type": {
|
|
8842
|
-
"text": "Thread[]"
|
|
8843
|
-
},
|
|
8844
|
-
"privacy": "public",
|
|
8845
|
-
"default": "[]",
|
|
8846
|
-
"description": "Array of threads to display in the navigation list",
|
|
8847
|
-
"attribute": "threads"
|
|
8848
|
-
}
|
|
8849
|
-
],
|
|
8850
|
-
"events": [
|
|
8851
|
-
{
|
|
8852
|
-
"type": {
|
|
8853
|
-
"text": "CustomEvent<ForgeAiThreadsSelectEventData>"
|
|
8854
|
-
},
|
|
8855
|
-
"description": "Fired when a thread is selected.",
|
|
8856
|
-
"name": "forge-ai-threads-select"
|
|
8857
|
-
},
|
|
8858
|
-
{
|
|
8859
|
-
"type": {
|
|
8860
|
-
"text": "CustomEvent"
|
|
8861
|
-
},
|
|
8862
|
-
"description": "Fired when the new chat button is clicked.",
|
|
8863
|
-
"name": "forge-ai-threads-new-chat"
|
|
8864
|
-
},
|
|
8865
|
-
{
|
|
8866
|
-
"type": {
|
|
8867
|
-
"text": "CustomEvent"
|
|
8868
|
-
},
|
|
8869
|
-
"description": "Fired when the clear history button is clicked.",
|
|
8870
|
-
"name": "forge-ai-threads-clear-history"
|
|
8871
|
-
}
|
|
8872
|
-
],
|
|
8873
|
-
"attributes": [
|
|
8874
|
-
{
|
|
8875
|
-
"name": "threads",
|
|
8876
|
-
"type": {
|
|
8877
|
-
"text": "Thread[]"
|
|
8878
|
-
},
|
|
8879
|
-
"default": "[]",
|
|
8880
|
-
"description": "Array of threads to display in the navigation list",
|
|
8881
|
-
"fieldName": "threads"
|
|
8882
|
-
}
|
|
8883
|
-
],
|
|
8884
|
-
"superclass": {
|
|
8885
|
-
"name": "LitElement",
|
|
8886
|
-
"package": "lit"
|
|
8887
|
-
},
|
|
8888
|
-
"tagName": "forge-ai-threads",
|
|
8889
|
-
"customElement": true
|
|
8890
|
-
}
|
|
8891
|
-
],
|
|
8892
|
-
"exports": [
|
|
8893
|
-
{
|
|
8894
|
-
"kind": "js",
|
|
8895
|
-
"name": "AiThreadsComponentTagName",
|
|
8896
|
-
"declaration": {
|
|
8897
|
-
"name": "AiThreadsComponentTagName",
|
|
8898
|
-
"module": "src/lib/ai-threads/ai-threads.ts"
|
|
8899
|
-
}
|
|
8900
|
-
},
|
|
8901
|
-
{
|
|
8902
|
-
"kind": "js",
|
|
8903
|
-
"name": "AiThreadsComponent",
|
|
8904
|
-
"declaration": {
|
|
8905
|
-
"name": "AiThreadsComponent",
|
|
8906
|
-
"module": "src/lib/ai-threads/ai-threads.ts"
|
|
8907
|
-
}
|
|
8908
|
-
},
|
|
8909
|
-
{
|
|
8910
|
-
"kind": "custom-element-definition",
|
|
8911
|
-
"declaration": {
|
|
8912
|
-
"name": "AiThreadsComponent",
|
|
8913
|
-
"module": "src/lib/ai-threads/ai-threads.ts"
|
|
8914
|
-
}
|
|
8915
|
-
}
|
|
8916
|
-
]
|
|
8917
|
-
},
|
|
8918
9008
|
{
|
|
8919
9009
|
"kind": "javascript-module",
|
|
8920
9010
|
"path": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts",
|
|
@@ -9479,126 +9569,126 @@
|
|
|
9479
9569
|
},
|
|
9480
9570
|
{
|
|
9481
9571
|
"kind": "javascript-module",
|
|
9482
|
-
"path": "src/lib/ai-
|
|
9572
|
+
"path": "src/lib/ai-prompt/prompt-button/prompt-button.ts",
|
|
9483
9573
|
"declarations": [
|
|
9484
9574
|
{
|
|
9485
9575
|
"kind": "variable",
|
|
9486
|
-
"name": "
|
|
9576
|
+
"name": "PromptButtonComponentTagName",
|
|
9487
9577
|
"type": {
|
|
9488
9578
|
"text": "keyof HTMLElementTagNameMap"
|
|
9489
9579
|
},
|
|
9490
|
-
"default": "'forge-
|
|
9580
|
+
"default": "'forge-prompt-button'"
|
|
9491
9581
|
},
|
|
9492
9582
|
{
|
|
9493
9583
|
"kind": "class",
|
|
9494
9584
|
"description": "",
|
|
9495
|
-
"name": "
|
|
9496
|
-
"members": [
|
|
9585
|
+
"name": "PromptButtonComponent",
|
|
9586
|
+
"members": [
|
|
9587
|
+
{
|
|
9588
|
+
"kind": "field",
|
|
9589
|
+
"name": "disabled",
|
|
9590
|
+
"type": {
|
|
9591
|
+
"text": "boolean"
|
|
9592
|
+
},
|
|
9593
|
+
"privacy": "public",
|
|
9594
|
+
"default": "false",
|
|
9595
|
+
"description": "Whether the button is disabled",
|
|
9596
|
+
"attribute": "disabled",
|
|
9597
|
+
"reflects": true
|
|
9598
|
+
}
|
|
9599
|
+
],
|
|
9600
|
+
"attributes": [
|
|
9601
|
+
{
|
|
9602
|
+
"name": "disabled",
|
|
9603
|
+
"type": {
|
|
9604
|
+
"text": "boolean"
|
|
9605
|
+
},
|
|
9606
|
+
"default": "false",
|
|
9607
|
+
"description": "Whether the button is disabled",
|
|
9608
|
+
"fieldName": "disabled"
|
|
9609
|
+
}
|
|
9610
|
+
],
|
|
9497
9611
|
"superclass": {
|
|
9498
9612
|
"name": "LitElement",
|
|
9499
9613
|
"package": "lit"
|
|
9500
9614
|
},
|
|
9501
|
-
"tagName": "forge-
|
|
9615
|
+
"tagName": "forge-prompt-button",
|
|
9502
9616
|
"customElement": true
|
|
9503
9617
|
}
|
|
9504
9618
|
],
|
|
9505
9619
|
"exports": [
|
|
9506
9620
|
{
|
|
9507
9621
|
"kind": "js",
|
|
9508
|
-
"name": "
|
|
9622
|
+
"name": "PromptButtonComponentTagName",
|
|
9509
9623
|
"declaration": {
|
|
9510
|
-
"name": "
|
|
9511
|
-
"module": "src/lib/ai-
|
|
9624
|
+
"name": "PromptButtonComponentTagName",
|
|
9625
|
+
"module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
|
|
9512
9626
|
}
|
|
9513
9627
|
},
|
|
9514
9628
|
{
|
|
9515
9629
|
"kind": "js",
|
|
9516
|
-
"name": "
|
|
9630
|
+
"name": "PromptButtonComponent",
|
|
9517
9631
|
"declaration": {
|
|
9518
|
-
"name": "
|
|
9519
|
-
"module": "src/lib/ai-
|
|
9632
|
+
"name": "PromptButtonComponent",
|
|
9633
|
+
"module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
|
|
9520
9634
|
}
|
|
9521
9635
|
},
|
|
9522
9636
|
{
|
|
9523
9637
|
"kind": "custom-element-definition",
|
|
9524
9638
|
"declaration": {
|
|
9525
|
-
"name": "
|
|
9526
|
-
"module": "src/lib/ai-
|
|
9639
|
+
"name": "PromptButtonComponent",
|
|
9640
|
+
"module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
|
|
9527
9641
|
}
|
|
9528
9642
|
}
|
|
9529
9643
|
]
|
|
9530
9644
|
},
|
|
9531
9645
|
{
|
|
9532
9646
|
"kind": "javascript-module",
|
|
9533
|
-
"path": "src/lib/ai-
|
|
9647
|
+
"path": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts",
|
|
9534
9648
|
"declarations": [
|
|
9535
9649
|
{
|
|
9536
9650
|
"kind": "variable",
|
|
9537
|
-
"name": "
|
|
9651
|
+
"name": "ReasoningContentComponentTagName",
|
|
9538
9652
|
"type": {
|
|
9539
9653
|
"text": "keyof HTMLElementTagNameMap"
|
|
9540
9654
|
},
|
|
9541
|
-
"default": "'forge-
|
|
9655
|
+
"default": "'forge-ai-reasoning-content'"
|
|
9542
9656
|
},
|
|
9543
9657
|
{
|
|
9544
9658
|
"kind": "class",
|
|
9545
9659
|
"description": "",
|
|
9546
|
-
"name": "
|
|
9547
|
-
"members": [
|
|
9548
|
-
{
|
|
9549
|
-
"kind": "field",
|
|
9550
|
-
"name": "disabled",
|
|
9551
|
-
"type": {
|
|
9552
|
-
"text": "boolean"
|
|
9553
|
-
},
|
|
9554
|
-
"privacy": "public",
|
|
9555
|
-
"default": "false",
|
|
9556
|
-
"description": "Whether the button is disabled",
|
|
9557
|
-
"attribute": "disabled",
|
|
9558
|
-
"reflects": true
|
|
9559
|
-
}
|
|
9560
|
-
],
|
|
9561
|
-
"attributes": [
|
|
9562
|
-
{
|
|
9563
|
-
"name": "disabled",
|
|
9564
|
-
"type": {
|
|
9565
|
-
"text": "boolean"
|
|
9566
|
-
},
|
|
9567
|
-
"default": "false",
|
|
9568
|
-
"description": "Whether the button is disabled",
|
|
9569
|
-
"fieldName": "disabled"
|
|
9570
|
-
}
|
|
9571
|
-
],
|
|
9660
|
+
"name": "ReasoningContentComponent",
|
|
9661
|
+
"members": [],
|
|
9572
9662
|
"superclass": {
|
|
9573
9663
|
"name": "LitElement",
|
|
9574
9664
|
"package": "lit"
|
|
9575
9665
|
},
|
|
9576
|
-
"tagName": "forge-
|
|
9666
|
+
"tagName": "forge-ai-reasoning-content",
|
|
9577
9667
|
"customElement": true
|
|
9578
9668
|
}
|
|
9579
9669
|
],
|
|
9580
9670
|
"exports": [
|
|
9581
9671
|
{
|
|
9582
9672
|
"kind": "js",
|
|
9583
|
-
"name": "
|
|
9673
|
+
"name": "ReasoningContentComponentTagName",
|
|
9584
9674
|
"declaration": {
|
|
9585
|
-
"name": "
|
|
9586
|
-
"module": "src/lib/ai-
|
|
9675
|
+
"name": "ReasoningContentComponentTagName",
|
|
9676
|
+
"module": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts"
|
|
9587
9677
|
}
|
|
9588
9678
|
},
|
|
9589
9679
|
{
|
|
9590
9680
|
"kind": "js",
|
|
9591
|
-
"name": "
|
|
9681
|
+
"name": "ReasoningContentComponent",
|
|
9592
9682
|
"declaration": {
|
|
9593
|
-
"name": "
|
|
9594
|
-
"module": "src/lib/ai-
|
|
9683
|
+
"name": "ReasoningContentComponent",
|
|
9684
|
+
"module": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts"
|
|
9595
9685
|
}
|
|
9596
9686
|
},
|
|
9597
9687
|
{
|
|
9598
9688
|
"kind": "custom-element-definition",
|
|
9599
9689
|
"declaration": {
|
|
9600
|
-
"name": "
|
|
9601
|
-
"module": "src/lib/ai-
|
|
9690
|
+
"name": "ReasoningContentComponent",
|
|
9691
|
+
"module": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts"
|
|
9602
9692
|
}
|
|
9603
9693
|
}
|
|
9604
9694
|
]
|
|
@@ -9812,124 +9902,174 @@
|
|
|
9812
9902
|
},
|
|
9813
9903
|
{
|
|
9814
9904
|
"kind": "javascript-module",
|
|
9815
|
-
"path": "src/lib/tools/ai-
|
|
9816
|
-
"declarations": [
|
|
9817
|
-
{
|
|
9818
|
-
"kind": "variable",
|
|
9819
|
-
"name": "displayDataTableTool",
|
|
9820
|
-
"type": {
|
|
9821
|
-
"text": "ToolDefinition"
|
|
9822
|
-
},
|
|
9823
|
-
"default": "{ name: 'displayDataTable', displayName: 'Display Data Table', description: 'Display tabular data in a formatted table with headers and rows. Use this tool when you want to present structured data, lists where there are 2 or more columns, statistics, or any information that works well in a table format.', parameters: { type: 'object' as const, properties: { title: { type: 'string', description: 'Table title or caption displayed above the data.' }, headers: { type: 'array', items: { type: 'string' }, description: 'Column names displayed as table headers. Order matches the row data order.' }, maxNumberOfRows: { type: 'number', description: 'Limit total rows shown. Useful for large datasets to prevent overwhelming display.' }, rows: { type: 'array', items: { type: 'array', items: { anyOf: [{ type: 'string' }, { type: 'number' }] } }, description: 'Data rows where each row is an array of values matching header order.' } }, required: ['headers', 'rows'] }, renderer: createToolRenderer({ elementTag: 'forge-ai-tool-data-table' }) }"
|
|
9824
|
-
}
|
|
9825
|
-
],
|
|
9826
|
-
"exports": [
|
|
9827
|
-
{
|
|
9828
|
-
"kind": "js",
|
|
9829
|
-
"name": "displayDataTableTool",
|
|
9830
|
-
"declaration": {
|
|
9831
|
-
"name": "displayDataTableTool",
|
|
9832
|
-
"module": "src/lib/tools/ai-data-table/ai-data-table-definition.ts"
|
|
9833
|
-
}
|
|
9834
|
-
}
|
|
9835
|
-
]
|
|
9836
|
-
},
|
|
9837
|
-
{
|
|
9838
|
-
"kind": "javascript-module",
|
|
9839
|
-
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
9905
|
+
"path": "src/lib/tools/ai-paginator/ai-paginator.ts",
|
|
9840
9906
|
"declarations": [
|
|
9841
9907
|
{
|
|
9842
9908
|
"kind": "class",
|
|
9843
|
-
"description": "
|
|
9844
|
-
"name": "
|
|
9909
|
+
"description": "",
|
|
9910
|
+
"name": "AiPaginator",
|
|
9845
9911
|
"members": [
|
|
9846
9912
|
{
|
|
9847
9913
|
"kind": "field",
|
|
9848
|
-
"name": "
|
|
9914
|
+
"name": "currentPage",
|
|
9849
9915
|
"type": {
|
|
9850
|
-
"text": "
|
|
9916
|
+
"text": "number"
|
|
9851
9917
|
},
|
|
9852
9918
|
"privacy": "public",
|
|
9853
|
-
"
|
|
9919
|
+
"default": "1",
|
|
9920
|
+
"attribute": "current-page"
|
|
9921
|
+
},
|
|
9922
|
+
{
|
|
9923
|
+
"kind": "field",
|
|
9924
|
+
"name": "totalPages",
|
|
9925
|
+
"type": {
|
|
9926
|
+
"text": "number"
|
|
9927
|
+
},
|
|
9928
|
+
"privacy": "public",
|
|
9929
|
+
"default": "1",
|
|
9930
|
+
"attribute": "total-pages"
|
|
9931
|
+
},
|
|
9932
|
+
{
|
|
9933
|
+
"kind": "field",
|
|
9934
|
+
"name": "disabled",
|
|
9935
|
+
"type": {
|
|
9936
|
+
"text": "boolean"
|
|
9937
|
+
},
|
|
9938
|
+
"privacy": "public",
|
|
9939
|
+
"default": "false",
|
|
9940
|
+
"attribute": "disabled",
|
|
9941
|
+
"reflects": true
|
|
9942
|
+
}
|
|
9943
|
+
],
|
|
9944
|
+
"events": [
|
|
9945
|
+
{
|
|
9946
|
+
"name": "page-change",
|
|
9947
|
+
"type": {
|
|
9948
|
+
"text": "CustomEvent"
|
|
9949
|
+
}
|
|
9950
|
+
}
|
|
9951
|
+
],
|
|
9952
|
+
"attributes": [
|
|
9953
|
+
{
|
|
9954
|
+
"name": "current-page",
|
|
9955
|
+
"type": {
|
|
9956
|
+
"text": "number"
|
|
9957
|
+
},
|
|
9958
|
+
"default": "1",
|
|
9959
|
+
"fieldName": "currentPage"
|
|
9960
|
+
},
|
|
9961
|
+
{
|
|
9962
|
+
"name": "total-pages",
|
|
9963
|
+
"type": {
|
|
9964
|
+
"text": "number"
|
|
9965
|
+
},
|
|
9966
|
+
"default": "1",
|
|
9967
|
+
"fieldName": "totalPages"
|
|
9968
|
+
},
|
|
9969
|
+
{
|
|
9970
|
+
"name": "disabled",
|
|
9971
|
+
"type": {
|
|
9972
|
+
"text": "boolean"
|
|
9973
|
+
},
|
|
9974
|
+
"default": "false",
|
|
9975
|
+
"fieldName": "disabled"
|
|
9854
9976
|
}
|
|
9855
9977
|
],
|
|
9856
9978
|
"superclass": {
|
|
9857
9979
|
"name": "LitElement",
|
|
9858
9980
|
"package": "lit"
|
|
9859
9981
|
},
|
|
9860
|
-
"tagName": "forge-ai-
|
|
9982
|
+
"tagName": "forge-ai-paginator",
|
|
9861
9983
|
"customElement": true
|
|
9862
9984
|
}
|
|
9863
9985
|
],
|
|
9864
9986
|
"exports": [
|
|
9987
|
+
{
|
|
9988
|
+
"kind": "js",
|
|
9989
|
+
"name": "AiPaginator",
|
|
9990
|
+
"declaration": {
|
|
9991
|
+
"name": "AiPaginator",
|
|
9992
|
+
"module": "src/lib/tools/ai-paginator/ai-paginator.ts"
|
|
9993
|
+
}
|
|
9994
|
+
},
|
|
9865
9995
|
{
|
|
9866
9996
|
"kind": "custom-element-definition",
|
|
9867
|
-
"name": "forge-ai-
|
|
9997
|
+
"name": "forge-ai-paginator",
|
|
9868
9998
|
"declaration": {
|
|
9869
|
-
"name": "
|
|
9870
|
-
"module": "src/lib/tools/ai-
|
|
9999
|
+
"name": "AiPaginator",
|
|
10000
|
+
"module": "src/lib/tools/ai-paginator/ai-paginator.ts"
|
|
9871
10001
|
}
|
|
9872
10002
|
}
|
|
9873
10003
|
]
|
|
9874
10004
|
},
|
|
9875
10005
|
{
|
|
9876
10006
|
"kind": "javascript-module",
|
|
9877
|
-
"path": "src/lib/core/
|
|
10007
|
+
"path": "src/lib/core/tooltip/tooltip.ts",
|
|
9878
10008
|
"declarations": [
|
|
9879
10009
|
{
|
|
9880
10010
|
"kind": "class",
|
|
9881
10011
|
"description": "",
|
|
9882
|
-
"name": "
|
|
10012
|
+
"name": "ForgeAiTooltipComponent",
|
|
10013
|
+
"cssProperties": [
|
|
10014
|
+
{
|
|
10015
|
+
"description": "The maximum width of the tooltip.",
|
|
10016
|
+
"name": "--forge-ai-tooltip-max-width"
|
|
10017
|
+
},
|
|
10018
|
+
{
|
|
10019
|
+
"description": "The z-index of the tooltip overlay.",
|
|
10020
|
+
"name": "--forge-ai-tooltip-z-index"
|
|
10021
|
+
}
|
|
10022
|
+
],
|
|
9883
10023
|
"slots": [
|
|
9884
10024
|
{
|
|
9885
|
-
"description": "The default slot for
|
|
10025
|
+
"description": "The default slot for tooltip content.",
|
|
9886
10026
|
"name": ""
|
|
9887
10027
|
}
|
|
9888
10028
|
],
|
|
9889
10029
|
"members": [
|
|
9890
10030
|
{
|
|
9891
10031
|
"kind": "field",
|
|
9892
|
-
"name": "
|
|
10032
|
+
"name": "for",
|
|
9893
10033
|
"type": {
|
|
9894
|
-
"text": "
|
|
10034
|
+
"text": "string"
|
|
9895
10035
|
},
|
|
9896
10036
|
"privacy": "public",
|
|
9897
|
-
"default": "
|
|
9898
|
-
"description": "The anchor element to
|
|
9899
|
-
"attribute": "
|
|
10037
|
+
"default": "''",
|
|
10038
|
+
"description": "The ID of the anchor element to attach the tooltip to.",
|
|
10039
|
+
"attribute": "for"
|
|
9900
10040
|
},
|
|
9901
10041
|
{
|
|
9902
10042
|
"kind": "field",
|
|
9903
|
-
"name": "
|
|
10043
|
+
"name": "text",
|
|
9904
10044
|
"type": {
|
|
9905
|
-
"text": "
|
|
10045
|
+
"text": "string"
|
|
9906
10046
|
},
|
|
9907
10047
|
"privacy": "public",
|
|
9908
|
-
"default": "'
|
|
9909
|
-
"description": "The
|
|
9910
|
-
"attribute": "
|
|
10048
|
+
"default": "''",
|
|
10049
|
+
"description": "The text content of the tooltip (alternative to slotted content).",
|
|
10050
|
+
"attribute": "text"
|
|
9911
10051
|
},
|
|
9912
10052
|
{
|
|
9913
10053
|
"kind": "field",
|
|
9914
|
-
"name": "
|
|
10054
|
+
"name": "placement",
|
|
9915
10055
|
"type": {
|
|
9916
|
-
"text": "
|
|
10056
|
+
"text": "TooltipPlacement"
|
|
9917
10057
|
},
|
|
9918
10058
|
"privacy": "public",
|
|
9919
|
-
"default": "
|
|
9920
|
-
"description": "
|
|
9921
|
-
"attribute": "
|
|
10059
|
+
"default": "'top'",
|
|
10060
|
+
"description": "The placement of the tooltip relative to the anchor.",
|
|
10061
|
+
"attribute": "placement"
|
|
9922
10062
|
},
|
|
9923
10063
|
{
|
|
9924
10064
|
"kind": "field",
|
|
9925
|
-
"name": "
|
|
10065
|
+
"name": "trigger",
|
|
9926
10066
|
"type": {
|
|
9927
|
-
"text": "
|
|
10067
|
+
"text": "TooltipTrigger"
|
|
9928
10068
|
},
|
|
9929
10069
|
"privacy": "public",
|
|
9930
|
-
"default": "
|
|
9931
|
-
"description": "
|
|
9932
|
-
"attribute": "
|
|
10070
|
+
"default": "'hover'",
|
|
10071
|
+
"description": "How the tooltip should be triggered.",
|
|
10072
|
+
"attribute": "trigger"
|
|
9933
10073
|
},
|
|
9934
10074
|
{
|
|
9935
10075
|
"kind": "field",
|
|
@@ -9939,80 +10079,102 @@
|
|
|
9939
10079
|
},
|
|
9940
10080
|
"privacy": "public",
|
|
9941
10081
|
"default": "false",
|
|
9942
|
-
"description": "Whether the
|
|
10082
|
+
"description": "Whether the tooltip is open.",
|
|
9943
10083
|
"attribute": "open",
|
|
9944
10084
|
"reflects": true
|
|
9945
10085
|
},
|
|
9946
10086
|
{
|
|
9947
10087
|
"kind": "field",
|
|
9948
|
-
"name": "
|
|
10088
|
+
"name": "delay",
|
|
9949
10089
|
"type": {
|
|
9950
|
-
"text": "
|
|
10090
|
+
"text": "number"
|
|
9951
10091
|
},
|
|
9952
10092
|
"privacy": "public",
|
|
9953
|
-
"default": "
|
|
9954
|
-
"description": "
|
|
9955
|
-
"attribute": "
|
|
10093
|
+
"default": "500",
|
|
10094
|
+
"description": "Delay in milliseconds before showing the tooltip.",
|
|
10095
|
+
"attribute": "delay"
|
|
9956
10096
|
},
|
|
9957
10097
|
{
|
|
9958
10098
|
"kind": "field",
|
|
9959
|
-
"name": "
|
|
10099
|
+
"name": "hideDelay",
|
|
9960
10100
|
"type": {
|
|
9961
|
-
"text": "
|
|
10101
|
+
"text": "number"
|
|
9962
10102
|
},
|
|
9963
10103
|
"privacy": "public",
|
|
9964
|
-
"default": "
|
|
9965
|
-
"description": "
|
|
9966
|
-
"attribute": "
|
|
10104
|
+
"default": "0",
|
|
10105
|
+
"description": "Delay in milliseconds before hiding the tooltip.",
|
|
10106
|
+
"attribute": "hide-delay"
|
|
9967
10107
|
},
|
|
9968
10108
|
{
|
|
9969
|
-
"kind": "
|
|
9970
|
-
"name": "
|
|
9971
|
-
"
|
|
9972
|
-
|
|
10109
|
+
"kind": "method",
|
|
10110
|
+
"name": "show",
|
|
10111
|
+
"privacy": "public",
|
|
10112
|
+
"return": {
|
|
10113
|
+
"type": {
|
|
10114
|
+
"text": "void"
|
|
10115
|
+
}
|
|
10116
|
+
},
|
|
10117
|
+
"description": "Show the tooltip programmatically."
|
|
10118
|
+
},
|
|
10119
|
+
{
|
|
10120
|
+
"kind": "method",
|
|
10121
|
+
"name": "hide",
|
|
10122
|
+
"privacy": "public",
|
|
10123
|
+
"return": {
|
|
10124
|
+
"type": {
|
|
10125
|
+
"text": "void"
|
|
10126
|
+
}
|
|
9973
10127
|
},
|
|
10128
|
+
"description": "Hide the tooltip programmatically."
|
|
10129
|
+
},
|
|
10130
|
+
{
|
|
10131
|
+
"kind": "method",
|
|
10132
|
+
"name": "toggle",
|
|
9974
10133
|
"privacy": "public",
|
|
9975
|
-
"
|
|
9976
|
-
|
|
9977
|
-
|
|
10134
|
+
"return": {
|
|
10135
|
+
"type": {
|
|
10136
|
+
"text": "void"
|
|
10137
|
+
}
|
|
10138
|
+
},
|
|
10139
|
+
"description": "Toggle the tooltip programmatically."
|
|
9978
10140
|
}
|
|
9979
10141
|
],
|
|
9980
10142
|
"attributes": [
|
|
9981
10143
|
{
|
|
9982
|
-
"name": "
|
|
10144
|
+
"name": "for",
|
|
9983
10145
|
"type": {
|
|
9984
|
-
"text": "
|
|
10146
|
+
"text": "string"
|
|
9985
10147
|
},
|
|
9986
|
-
"default": "
|
|
9987
|
-
"description": "The anchor element to
|
|
9988
|
-
"fieldName": "
|
|
10148
|
+
"default": "''",
|
|
10149
|
+
"description": "The ID of the anchor element to attach the tooltip to.",
|
|
10150
|
+
"fieldName": "for"
|
|
9989
10151
|
},
|
|
9990
10152
|
{
|
|
9991
|
-
"name": "
|
|
10153
|
+
"name": "text",
|
|
9992
10154
|
"type": {
|
|
9993
|
-
"text": "
|
|
10155
|
+
"text": "string"
|
|
9994
10156
|
},
|
|
9995
|
-
"default": "'
|
|
9996
|
-
"description": "The
|
|
9997
|
-
"fieldName": "
|
|
10157
|
+
"default": "''",
|
|
10158
|
+
"description": "The text content of the tooltip (alternative to slotted content).",
|
|
10159
|
+
"fieldName": "text"
|
|
9998
10160
|
},
|
|
9999
10161
|
{
|
|
10000
|
-
"name": "
|
|
10162
|
+
"name": "placement",
|
|
10001
10163
|
"type": {
|
|
10002
|
-
"text": "
|
|
10164
|
+
"text": "TooltipPlacement"
|
|
10003
10165
|
},
|
|
10004
|
-
"default": "
|
|
10005
|
-
"description": "
|
|
10006
|
-
"fieldName": "
|
|
10166
|
+
"default": "'top'",
|
|
10167
|
+
"description": "The placement of the tooltip relative to the anchor.",
|
|
10168
|
+
"fieldName": "placement"
|
|
10007
10169
|
},
|
|
10008
10170
|
{
|
|
10009
|
-
"name": "
|
|
10171
|
+
"name": "trigger",
|
|
10010
10172
|
"type": {
|
|
10011
|
-
"text": "
|
|
10173
|
+
"text": "TooltipTrigger"
|
|
10012
10174
|
},
|
|
10013
|
-
"default": "
|
|
10014
|
-
"description": "
|
|
10015
|
-
"fieldName": "
|
|
10175
|
+
"default": "'hover'",
|
|
10176
|
+
"description": "How the tooltip should be triggered.",
|
|
10177
|
+
"fieldName": "trigger"
|
|
10016
10178
|
},
|
|
10017
10179
|
{
|
|
10018
10180
|
"name": "open",
|
|
@@ -10020,133 +10182,114 @@
|
|
|
10020
10182
|
"text": "boolean"
|
|
10021
10183
|
},
|
|
10022
10184
|
"default": "false",
|
|
10023
|
-
"description": "Whether the
|
|
10185
|
+
"description": "Whether the tooltip is open.",
|
|
10024
10186
|
"fieldName": "open"
|
|
10025
10187
|
},
|
|
10026
10188
|
{
|
|
10027
|
-
"name": "
|
|
10028
|
-
"type": {
|
|
10029
|
-
"text": "boolean"
|
|
10030
|
-
},
|
|
10031
|
-
"default": "false",
|
|
10032
|
-
"description": "Whether to show an arrow pointing to the anchor element.",
|
|
10033
|
-
"fieldName": "arrow"
|
|
10034
|
-
},
|
|
10035
|
-
{
|
|
10036
|
-
"name": "offset",
|
|
10189
|
+
"name": "delay",
|
|
10037
10190
|
"type": {
|
|
10038
|
-
"text": "
|
|
10191
|
+
"text": "number"
|
|
10039
10192
|
},
|
|
10040
|
-
"default": "
|
|
10041
|
-
"description": "
|
|
10042
|
-
"fieldName": "
|
|
10193
|
+
"default": "500",
|
|
10194
|
+
"description": "Delay in milliseconds before showing the tooltip.",
|
|
10195
|
+
"fieldName": "delay"
|
|
10043
10196
|
},
|
|
10044
10197
|
{
|
|
10045
|
-
"name": "
|
|
10198
|
+
"name": "hide-delay",
|
|
10046
10199
|
"type": {
|
|
10047
|
-
"text": "
|
|
10200
|
+
"text": "number"
|
|
10048
10201
|
},
|
|
10049
|
-
"default": "
|
|
10050
|
-
"description": "
|
|
10051
|
-
"fieldName": "
|
|
10202
|
+
"default": "0",
|
|
10203
|
+
"description": "Delay in milliseconds before hiding the tooltip.",
|
|
10204
|
+
"fieldName": "hideDelay"
|
|
10052
10205
|
}
|
|
10053
10206
|
],
|
|
10054
10207
|
"superclass": {
|
|
10055
10208
|
"name": "LitElement",
|
|
10056
10209
|
"package": "lit"
|
|
10057
10210
|
},
|
|
10058
|
-
"summary": "A
|
|
10059
|
-
"tagName": "forge-ai-
|
|
10211
|
+
"summary": "A tooltip component with accessibility features and dynamic positioning.",
|
|
10212
|
+
"tagName": "forge-ai-tooltip",
|
|
10060
10213
|
"customElement": true
|
|
10061
10214
|
}
|
|
10062
10215
|
],
|
|
10063
10216
|
"exports": [
|
|
10064
10217
|
{
|
|
10065
10218
|
"kind": "js",
|
|
10066
|
-
"name": "
|
|
10219
|
+
"name": "ForgeAiTooltipComponent",
|
|
10067
10220
|
"declaration": {
|
|
10068
|
-
"name": "
|
|
10069
|
-
"module": "src/lib/core/
|
|
10221
|
+
"name": "ForgeAiTooltipComponent",
|
|
10222
|
+
"module": "src/lib/core/tooltip/tooltip.ts"
|
|
10070
10223
|
}
|
|
10071
10224
|
},
|
|
10072
10225
|
{
|
|
10073
10226
|
"kind": "custom-element-definition",
|
|
10074
|
-
"name": "forge-ai-
|
|
10227
|
+
"name": "forge-ai-tooltip",
|
|
10075
10228
|
"declaration": {
|
|
10076
|
-
"name": "
|
|
10077
|
-
"module": "src/lib/core/
|
|
10229
|
+
"name": "ForgeAiTooltipComponent",
|
|
10230
|
+
"module": "src/lib/core/tooltip/tooltip.ts"
|
|
10078
10231
|
}
|
|
10079
10232
|
}
|
|
10080
10233
|
]
|
|
10081
10234
|
},
|
|
10082
10235
|
{
|
|
10083
10236
|
"kind": "javascript-module",
|
|
10084
|
-
"path": "src/lib/core/
|
|
10237
|
+
"path": "src/lib/core/popover/popover.ts",
|
|
10085
10238
|
"declarations": [
|
|
10086
10239
|
{
|
|
10087
10240
|
"kind": "class",
|
|
10088
10241
|
"description": "",
|
|
10089
|
-
"name": "
|
|
10090
|
-
"cssProperties": [
|
|
10091
|
-
{
|
|
10092
|
-
"description": "The maximum width of the tooltip.",
|
|
10093
|
-
"name": "--forge-ai-tooltip-max-width"
|
|
10094
|
-
},
|
|
10095
|
-
{
|
|
10096
|
-
"description": "The z-index of the tooltip overlay.",
|
|
10097
|
-
"name": "--forge-ai-tooltip-z-index"
|
|
10098
|
-
}
|
|
10099
|
-
],
|
|
10242
|
+
"name": "ForgeAiPopoverComponent",
|
|
10100
10243
|
"slots": [
|
|
10101
10244
|
{
|
|
10102
|
-
"description": "The default slot for
|
|
10245
|
+
"description": "The default slot for popover content.",
|
|
10103
10246
|
"name": ""
|
|
10104
10247
|
}
|
|
10105
10248
|
],
|
|
10106
10249
|
"members": [
|
|
10107
10250
|
{
|
|
10108
10251
|
"kind": "field",
|
|
10109
|
-
"name": "
|
|
10252
|
+
"name": "anchor",
|
|
10110
10253
|
"type": {
|
|
10111
|
-
"text": "
|
|
10254
|
+
"text": "Element | null"
|
|
10112
10255
|
},
|
|
10113
10256
|
"privacy": "public",
|
|
10114
|
-
"default": "
|
|
10115
|
-
"description": "The
|
|
10116
|
-
"attribute": "
|
|
10257
|
+
"default": "null",
|
|
10258
|
+
"description": "The anchor element to position the popover relative to.",
|
|
10259
|
+
"attribute": "anchor"
|
|
10117
10260
|
},
|
|
10118
10261
|
{
|
|
10119
10262
|
"kind": "field",
|
|
10120
|
-
"name": "
|
|
10263
|
+
"name": "placement",
|
|
10121
10264
|
"type": {
|
|
10122
|
-
"text": "
|
|
10265
|
+
"text": "PopoverPlacement"
|
|
10123
10266
|
},
|
|
10124
10267
|
"privacy": "public",
|
|
10125
|
-
"default": "''",
|
|
10126
|
-
"description": "The
|
|
10127
|
-
"attribute": "
|
|
10268
|
+
"default": "'bottom-start'",
|
|
10269
|
+
"description": "The placement of the popover relative to the anchor.",
|
|
10270
|
+
"attribute": "placement"
|
|
10128
10271
|
},
|
|
10129
10272
|
{
|
|
10130
10273
|
"kind": "field",
|
|
10131
|
-
"name": "
|
|
10274
|
+
"name": "flip",
|
|
10132
10275
|
"type": {
|
|
10133
|
-
"text": "
|
|
10276
|
+
"text": "boolean"
|
|
10134
10277
|
},
|
|
10135
10278
|
"privacy": "public",
|
|
10136
|
-
"default": "
|
|
10137
|
-
"description": "
|
|
10138
|
-
"attribute": "
|
|
10279
|
+
"default": "false",
|
|
10280
|
+
"description": "Whether the popover should flip to the opposite side when there's no space.",
|
|
10281
|
+
"attribute": "flip"
|
|
10139
10282
|
},
|
|
10140
10283
|
{
|
|
10141
10284
|
"kind": "field",
|
|
10142
|
-
"name": "
|
|
10285
|
+
"name": "shift",
|
|
10143
10286
|
"type": {
|
|
10144
|
-
"text": "
|
|
10287
|
+
"text": "boolean"
|
|
10145
10288
|
},
|
|
10146
10289
|
"privacy": "public",
|
|
10147
|
-
"default": "
|
|
10148
|
-
"description": "
|
|
10149
|
-
"attribute": "
|
|
10290
|
+
"default": "false",
|
|
10291
|
+
"description": "Whether the popover should shift to stay in view.",
|
|
10292
|
+
"attribute": "shift"
|
|
10150
10293
|
},
|
|
10151
10294
|
{
|
|
10152
10295
|
"kind": "field",
|
|
@@ -10156,102 +10299,80 @@
|
|
|
10156
10299
|
},
|
|
10157
10300
|
"privacy": "public",
|
|
10158
10301
|
"default": "false",
|
|
10159
|
-
"description": "Whether the
|
|
10302
|
+
"description": "Whether the popover is open.",
|
|
10160
10303
|
"attribute": "open",
|
|
10161
10304
|
"reflects": true
|
|
10162
10305
|
},
|
|
10163
10306
|
{
|
|
10164
10307
|
"kind": "field",
|
|
10165
|
-
"name": "
|
|
10308
|
+
"name": "arrow",
|
|
10166
10309
|
"type": {
|
|
10167
|
-
"text": "
|
|
10310
|
+
"text": "boolean"
|
|
10168
10311
|
},
|
|
10169
10312
|
"privacy": "public",
|
|
10170
|
-
"default": "
|
|
10171
|
-
"description": "
|
|
10172
|
-
"attribute": "
|
|
10313
|
+
"default": "false",
|
|
10314
|
+
"description": "Whether to show an arrow pointing to the anchor element.",
|
|
10315
|
+
"attribute": "arrow"
|
|
10173
10316
|
},
|
|
10174
10317
|
{
|
|
10175
10318
|
"kind": "field",
|
|
10176
|
-
"name": "
|
|
10319
|
+
"name": "offset",
|
|
10177
10320
|
"type": {
|
|
10178
|
-
"text": "
|
|
10321
|
+
"text": "PopoverOffset | undefined"
|
|
10179
10322
|
},
|
|
10180
10323
|
"privacy": "public",
|
|
10181
|
-
"default": "
|
|
10182
|
-
"description": "
|
|
10183
|
-
"attribute": "
|
|
10184
|
-
},
|
|
10185
|
-
{
|
|
10186
|
-
"kind": "method",
|
|
10187
|
-
"name": "show",
|
|
10188
|
-
"privacy": "public",
|
|
10189
|
-
"return": {
|
|
10190
|
-
"type": {
|
|
10191
|
-
"text": "void"
|
|
10192
|
-
}
|
|
10193
|
-
},
|
|
10194
|
-
"description": "Show the tooltip programmatically."
|
|
10324
|
+
"default": "undefined",
|
|
10325
|
+
"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.",
|
|
10326
|
+
"attribute": "offset"
|
|
10195
10327
|
},
|
|
10196
10328
|
{
|
|
10197
|
-
"kind": "
|
|
10198
|
-
"name": "
|
|
10199
|
-
"
|
|
10200
|
-
|
|
10201
|
-
"type": {
|
|
10202
|
-
"text": "void"
|
|
10203
|
-
}
|
|
10329
|
+
"kind": "field",
|
|
10330
|
+
"name": "dismissMode",
|
|
10331
|
+
"type": {
|
|
10332
|
+
"text": "'auto' | 'manual'"
|
|
10204
10333
|
},
|
|
10205
|
-
"description": "Hide the tooltip programmatically."
|
|
10206
|
-
},
|
|
10207
|
-
{
|
|
10208
|
-
"kind": "method",
|
|
10209
|
-
"name": "toggle",
|
|
10210
10334
|
"privacy": "public",
|
|
10211
|
-
"
|
|
10212
|
-
|
|
10213
|
-
|
|
10214
|
-
}
|
|
10215
|
-
},
|
|
10216
|
-
"description": "Toggle the tooltip programmatically."
|
|
10335
|
+
"default": "'auto'",
|
|
10336
|
+
"description": "The dismiss mode for the popover.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
10337
|
+
"attribute": "dismiss-mode"
|
|
10217
10338
|
}
|
|
10218
10339
|
],
|
|
10219
10340
|
"attributes": [
|
|
10220
10341
|
{
|
|
10221
|
-
"name": "
|
|
10342
|
+
"name": "anchor",
|
|
10222
10343
|
"type": {
|
|
10223
|
-
"text": "
|
|
10344
|
+
"text": "Element | null"
|
|
10224
10345
|
},
|
|
10225
|
-
"default": "
|
|
10226
|
-
"description": "The
|
|
10227
|
-
"fieldName": "
|
|
10346
|
+
"default": "null",
|
|
10347
|
+
"description": "The anchor element to position the popover relative to.",
|
|
10348
|
+
"fieldName": "anchor"
|
|
10228
10349
|
},
|
|
10229
10350
|
{
|
|
10230
|
-
"name": "
|
|
10351
|
+
"name": "placement",
|
|
10231
10352
|
"type": {
|
|
10232
|
-
"text": "
|
|
10353
|
+
"text": "PopoverPlacement"
|
|
10233
10354
|
},
|
|
10234
|
-
"default": "''",
|
|
10235
|
-
"description": "The
|
|
10236
|
-
"fieldName": "
|
|
10355
|
+
"default": "'bottom-start'",
|
|
10356
|
+
"description": "The placement of the popover relative to the anchor.",
|
|
10357
|
+
"fieldName": "placement"
|
|
10237
10358
|
},
|
|
10238
10359
|
{
|
|
10239
|
-
"name": "
|
|
10360
|
+
"name": "flip",
|
|
10240
10361
|
"type": {
|
|
10241
|
-
"text": "
|
|
10362
|
+
"text": "boolean"
|
|
10242
10363
|
},
|
|
10243
|
-
"default": "
|
|
10244
|
-
"description": "
|
|
10245
|
-
"fieldName": "
|
|
10364
|
+
"default": "false",
|
|
10365
|
+
"description": "Whether the popover should flip to the opposite side when there's no space.",
|
|
10366
|
+
"fieldName": "flip"
|
|
10246
10367
|
},
|
|
10247
10368
|
{
|
|
10248
|
-
"name": "
|
|
10369
|
+
"name": "shift",
|
|
10249
10370
|
"type": {
|
|
10250
|
-
"text": "
|
|
10371
|
+
"text": "boolean"
|
|
10251
10372
|
},
|
|
10252
|
-
"default": "
|
|
10253
|
-
"description": "
|
|
10254
|
-
"fieldName": "
|
|
10373
|
+
"default": "false",
|
|
10374
|
+
"description": "Whether the popover should shift to stay in view.",
|
|
10375
|
+
"fieldName": "shift"
|
|
10255
10376
|
},
|
|
10256
10377
|
{
|
|
10257
10378
|
"name": "open",
|
|
@@ -10259,154 +10380,123 @@
|
|
|
10259
10380
|
"text": "boolean"
|
|
10260
10381
|
},
|
|
10261
10382
|
"default": "false",
|
|
10262
|
-
"description": "Whether the
|
|
10383
|
+
"description": "Whether the popover is open.",
|
|
10263
10384
|
"fieldName": "open"
|
|
10264
10385
|
},
|
|
10265
10386
|
{
|
|
10266
|
-
"name": "
|
|
10387
|
+
"name": "arrow",
|
|
10267
10388
|
"type": {
|
|
10268
|
-
"text": "
|
|
10389
|
+
"text": "boolean"
|
|
10269
10390
|
},
|
|
10270
|
-
"default": "
|
|
10271
|
-
"description": "
|
|
10272
|
-
"fieldName": "
|
|
10391
|
+
"default": "false",
|
|
10392
|
+
"description": "Whether to show an arrow pointing to the anchor element.",
|
|
10393
|
+
"fieldName": "arrow"
|
|
10273
10394
|
},
|
|
10274
10395
|
{
|
|
10275
|
-
"name": "
|
|
10396
|
+
"name": "offset",
|
|
10276
10397
|
"type": {
|
|
10277
|
-
"text": "
|
|
10398
|
+
"text": "PopoverOffset | undefined"
|
|
10278
10399
|
},
|
|
10279
|
-
"default": "
|
|
10280
|
-
"description": "
|
|
10281
|
-
"fieldName": "
|
|
10400
|
+
"default": "undefined",
|
|
10401
|
+
"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.",
|
|
10402
|
+
"fieldName": "offset"
|
|
10403
|
+
},
|
|
10404
|
+
{
|
|
10405
|
+
"name": "dismiss-mode",
|
|
10406
|
+
"type": {
|
|
10407
|
+
"text": "'auto' | 'manual'"
|
|
10408
|
+
},
|
|
10409
|
+
"default": "'auto'",
|
|
10410
|
+
"description": "The dismiss mode for the popover.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
10411
|
+
"fieldName": "dismissMode"
|
|
10282
10412
|
}
|
|
10283
10413
|
],
|
|
10284
10414
|
"superclass": {
|
|
10285
10415
|
"name": "LitElement",
|
|
10286
10416
|
"package": "lit"
|
|
10287
10417
|
},
|
|
10288
|
-
"summary": "A
|
|
10289
|
-
"tagName": "forge-ai-
|
|
10418
|
+
"summary": "A popover component that provides styled overlay functionality.",
|
|
10419
|
+
"tagName": "forge-ai-popover",
|
|
10290
10420
|
"customElement": true
|
|
10291
10421
|
}
|
|
10292
10422
|
],
|
|
10293
10423
|
"exports": [
|
|
10294
10424
|
{
|
|
10295
10425
|
"kind": "js",
|
|
10296
|
-
"name": "
|
|
10426
|
+
"name": "ForgeAiPopoverComponent",
|
|
10297
10427
|
"declaration": {
|
|
10298
|
-
"name": "
|
|
10299
|
-
"module": "src/lib/core/
|
|
10428
|
+
"name": "ForgeAiPopoverComponent",
|
|
10429
|
+
"module": "src/lib/core/popover/popover.ts"
|
|
10300
10430
|
}
|
|
10301
10431
|
},
|
|
10302
10432
|
{
|
|
10303
10433
|
"kind": "custom-element-definition",
|
|
10304
|
-
"name": "forge-ai-
|
|
10434
|
+
"name": "forge-ai-popover",
|
|
10305
10435
|
"declaration": {
|
|
10306
|
-
"name": "
|
|
10307
|
-
"module": "src/lib/core/
|
|
10436
|
+
"name": "ForgeAiPopoverComponent",
|
|
10437
|
+
"module": "src/lib/core/popover/popover.ts"
|
|
10308
10438
|
}
|
|
10309
10439
|
}
|
|
10310
10440
|
]
|
|
10311
10441
|
},
|
|
10312
10442
|
{
|
|
10313
10443
|
"kind": "javascript-module",
|
|
10314
|
-
"path": "src/lib/tools/ai-
|
|
10444
|
+
"path": "src/lib/tools/ai-data-table/ai-data-table-definition.ts",
|
|
10445
|
+
"declarations": [
|
|
10446
|
+
{
|
|
10447
|
+
"kind": "variable",
|
|
10448
|
+
"name": "displayDataTableTool",
|
|
10449
|
+
"type": {
|
|
10450
|
+
"text": "ToolDefinition"
|
|
10451
|
+
},
|
|
10452
|
+
"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' }) }"
|
|
10453
|
+
}
|
|
10454
|
+
],
|
|
10455
|
+
"exports": [
|
|
10456
|
+
{
|
|
10457
|
+
"kind": "js",
|
|
10458
|
+
"name": "displayDataTableTool",
|
|
10459
|
+
"declaration": {
|
|
10460
|
+
"name": "displayDataTableTool",
|
|
10461
|
+
"module": "src/lib/tools/ai-data-table/ai-data-table-definition.ts"
|
|
10462
|
+
}
|
|
10463
|
+
}
|
|
10464
|
+
]
|
|
10465
|
+
},
|
|
10466
|
+
{
|
|
10467
|
+
"kind": "javascript-module",
|
|
10468
|
+
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
10315
10469
|
"declarations": [
|
|
10316
10470
|
{
|
|
10317
10471
|
"kind": "class",
|
|
10318
|
-
"description": "",
|
|
10319
|
-
"name": "
|
|
10472
|
+
"description": "Data table component tool renderer for displaying tabular data with pagination and filtering.",
|
|
10473
|
+
"name": "DataTableToolElement",
|
|
10320
10474
|
"members": [
|
|
10321
10475
|
{
|
|
10322
10476
|
"kind": "field",
|
|
10323
|
-
"name": "
|
|
10324
|
-
"type": {
|
|
10325
|
-
"text": "number"
|
|
10326
|
-
},
|
|
10327
|
-
"privacy": "public",
|
|
10328
|
-
"default": "1",
|
|
10329
|
-
"attribute": "current-page"
|
|
10330
|
-
},
|
|
10331
|
-
{
|
|
10332
|
-
"kind": "field",
|
|
10333
|
-
"name": "totalPages",
|
|
10334
|
-
"type": {
|
|
10335
|
-
"text": "number"
|
|
10336
|
-
},
|
|
10337
|
-
"privacy": "public",
|
|
10338
|
-
"default": "1",
|
|
10339
|
-
"attribute": "total-pages"
|
|
10340
|
-
},
|
|
10341
|
-
{
|
|
10342
|
-
"kind": "field",
|
|
10343
|
-
"name": "disabled",
|
|
10477
|
+
"name": "toolCall",
|
|
10344
10478
|
"type": {
|
|
10345
|
-
"text": "
|
|
10479
|
+
"text": "ToolCall<TableData>"
|
|
10346
10480
|
},
|
|
10347
10481
|
"privacy": "public",
|
|
10348
|
-
"
|
|
10349
|
-
"attribute": "disabled",
|
|
10350
|
-
"reflects": true
|
|
10351
|
-
}
|
|
10352
|
-
],
|
|
10353
|
-
"events": [
|
|
10354
|
-
{
|
|
10355
|
-
"name": "page-change",
|
|
10356
|
-
"type": {
|
|
10357
|
-
"text": "CustomEvent"
|
|
10358
|
-
}
|
|
10359
|
-
}
|
|
10360
|
-
],
|
|
10361
|
-
"attributes": [
|
|
10362
|
-
{
|
|
10363
|
-
"name": "current-page",
|
|
10364
|
-
"type": {
|
|
10365
|
-
"text": "number"
|
|
10366
|
-
},
|
|
10367
|
-
"default": "1",
|
|
10368
|
-
"fieldName": "currentPage"
|
|
10369
|
-
},
|
|
10370
|
-
{
|
|
10371
|
-
"name": "total-pages",
|
|
10372
|
-
"type": {
|
|
10373
|
-
"text": "number"
|
|
10374
|
-
},
|
|
10375
|
-
"default": "1",
|
|
10376
|
-
"fieldName": "totalPages"
|
|
10377
|
-
},
|
|
10378
|
-
{
|
|
10379
|
-
"name": "disabled",
|
|
10380
|
-
"type": {
|
|
10381
|
-
"text": "boolean"
|
|
10382
|
-
},
|
|
10383
|
-
"default": "false",
|
|
10384
|
-
"fieldName": "disabled"
|
|
10482
|
+
"description": "Tool call data containing table configuration and data"
|
|
10385
10483
|
}
|
|
10386
10484
|
],
|
|
10387
10485
|
"superclass": {
|
|
10388
10486
|
"name": "LitElement",
|
|
10389
10487
|
"package": "lit"
|
|
10390
10488
|
},
|
|
10391
|
-
"tagName": "forge-ai-
|
|
10489
|
+
"tagName": "forge-ai-tool-data-table",
|
|
10392
10490
|
"customElement": true
|
|
10393
10491
|
}
|
|
10394
10492
|
],
|
|
10395
10493
|
"exports": [
|
|
10396
|
-
{
|
|
10397
|
-
"kind": "js",
|
|
10398
|
-
"name": "AiPaginator",
|
|
10399
|
-
"declaration": {
|
|
10400
|
-
"name": "AiPaginator",
|
|
10401
|
-
"module": "src/lib/tools/ai-paginator/ai-paginator.ts"
|
|
10402
|
-
}
|
|
10403
|
-
},
|
|
10404
10494
|
{
|
|
10405
10495
|
"kind": "custom-element-definition",
|
|
10406
|
-
"name": "forge-ai-
|
|
10496
|
+
"name": "forge-ai-tool-data-table",
|
|
10407
10497
|
"declaration": {
|
|
10408
|
-
"name": "
|
|
10409
|
-
"module": "src/lib/tools/ai-
|
|
10498
|
+
"name": "DataTableToolElement",
|
|
10499
|
+
"module": "src/lib/tools/ai-data-table/ai-data-table.ts"
|
|
10410
10500
|
}
|
|
10411
10501
|
}
|
|
10412
10502
|
]
|
|
@@ -10422,10 +10512,6 @@
|
|
|
10422
10512
|
"path": "src/lib/ai-agent-info/ai-agent-info.ts",
|
|
10423
10513
|
"lineNumber": 29
|
|
10424
10514
|
},
|
|
10425
|
-
"AiArtifactComponent": {
|
|
10426
|
-
"path": "src/lib/ai-artifact/ai-artifact.ts",
|
|
10427
|
-
"lineNumber": 23
|
|
10428
|
-
},
|
|
10429
10515
|
"ForgeAiAgentSelectorChangeEventData": {
|
|
10430
10516
|
"path": "src/lib/ai-agent-selector/ai-agent-selector.ts",
|
|
10431
10517
|
"lineNumber": 23
|
|
@@ -10434,18 +10520,26 @@
|
|
|
10434
10520
|
"path": "src/lib/ai-agent-selector/ai-agent-selector.ts",
|
|
10435
10521
|
"lineNumber": 48
|
|
10436
10522
|
},
|
|
10523
|
+
"AiArtifactComponent": {
|
|
10524
|
+
"path": "src/lib/ai-artifact/ai-artifact.ts",
|
|
10525
|
+
"lineNumber": 23
|
|
10526
|
+
},
|
|
10437
10527
|
"ForgeAiAssistantResponseFeedbackEventData": {
|
|
10438
10528
|
"path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
|
|
10439
|
-
"lineNumber":
|
|
10529
|
+
"lineNumber": 31
|
|
10440
10530
|
},
|
|
10441
10531
|
"AiAssistantResponseComponent": {
|
|
10442
10532
|
"path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
|
|
10443
|
-
"lineNumber":
|
|
10533
|
+
"lineNumber": 48
|
|
10444
10534
|
},
|
|
10445
10535
|
"AiButtonComponent": {
|
|
10446
10536
|
"path": "src/lib/ai-button/ai-button.ts",
|
|
10447
10537
|
"lineNumber": 22
|
|
10448
10538
|
},
|
|
10539
|
+
"AiChainOfThoughtComponent": {
|
|
10540
|
+
"path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
|
|
10541
|
+
"lineNumber": 17
|
|
10542
|
+
},
|
|
10449
10543
|
"ForgeAiAttachmentRemoveEventData": {
|
|
10450
10544
|
"path": "src/lib/ai-attachment/ai-attachment.ts",
|
|
10451
10545
|
"lineNumber": 19
|
|
@@ -10454,10 +10548,6 @@
|
|
|
10454
10548
|
"path": "src/lib/ai-attachment/ai-attachment.ts",
|
|
10455
10549
|
"lineNumber": 41
|
|
10456
10550
|
},
|
|
10457
|
-
"AiChainOfThoughtComponent": {
|
|
10458
|
-
"path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
|
|
10459
|
-
"lineNumber": 17
|
|
10460
|
-
},
|
|
10461
10551
|
"ForgeAiChatHeaderAgentChangeEventData": {
|
|
10462
10552
|
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
10463
10553
|
"lineNumber": 38
|
|
@@ -10536,7 +10626,7 @@
|
|
|
10536
10626
|
},
|
|
10537
10627
|
"FileRemoveEvent": {
|
|
10538
10628
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10539
|
-
"lineNumber":
|
|
10629
|
+
"lineNumber": 213
|
|
10540
10630
|
},
|
|
10541
10631
|
"ErrorEvent": {
|
|
10542
10632
|
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
@@ -10744,51 +10834,51 @@
|
|
|
10744
10834
|
},
|
|
10745
10835
|
"ResponseItem": {
|
|
10746
10836
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10747
|
-
"lineNumber":
|
|
10837
|
+
"lineNumber": 158
|
|
10748
10838
|
},
|
|
10749
10839
|
"FeedbackType": {
|
|
10750
10840
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10751
|
-
"lineNumber":
|
|
10841
|
+
"lineNumber": 162
|
|
10752
10842
|
},
|
|
10753
10843
|
"ResponseFeedback": {
|
|
10754
10844
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10755
|
-
"lineNumber":
|
|
10845
|
+
"lineNumber": 164
|
|
10756
10846
|
},
|
|
10757
10847
|
"AssistantResponse": {
|
|
10758
10848
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10759
|
-
"lineNumber":
|
|
10849
|
+
"lineNumber": 169
|
|
10760
10850
|
},
|
|
10761
10851
|
"FileAttachment": {
|
|
10762
10852
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10763
|
-
"lineNumber":
|
|
10853
|
+
"lineNumber": 178
|
|
10764
10854
|
},
|
|
10765
10855
|
"UploadedFileMetadata": {
|
|
10766
10856
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10767
|
-
"lineNumber":
|
|
10857
|
+
"lineNumber": 191
|
|
10768
10858
|
},
|
|
10769
10859
|
"FileUploadCallbacks": {
|
|
10770
10860
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10771
|
-
"lineNumber":
|
|
10861
|
+
"lineNumber": 199
|
|
10772
10862
|
},
|
|
10773
10863
|
"FileUploadHandler": {
|
|
10774
10864
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10775
|
-
"lineNumber":
|
|
10865
|
+
"lineNumber": 206
|
|
10776
10866
|
},
|
|
10777
10867
|
"FileRemoveCallbacks": {
|
|
10778
10868
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10779
|
-
"lineNumber":
|
|
10869
|
+
"lineNumber": 208
|
|
10780
10870
|
},
|
|
10781
10871
|
"ForgeAiChatbotFileSelectEventData": {
|
|
10782
10872
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10783
|
-
"lineNumber":
|
|
10873
|
+
"lineNumber": 217
|
|
10784
10874
|
},
|
|
10785
10875
|
"MessageItem": {
|
|
10786
10876
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10787
|
-
"lineNumber":
|
|
10877
|
+
"lineNumber": 230
|
|
10788
10878
|
},
|
|
10789
10879
|
"ThreadState": {
|
|
10790
10880
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10791
|
-
"lineNumber":
|
|
10881
|
+
"lineNumber": 235
|
|
10792
10882
|
},
|
|
10793
10883
|
"AiDialogComponent": {
|
|
10794
10884
|
"path": "src/lib/ai-dialog/ai-dialog.ts",
|
|
@@ -10934,10 +11024,6 @@
|
|
|
10934
11024
|
"path": "src/lib/ai-modal/ai-modal.ts",
|
|
10935
11025
|
"lineNumber": 36
|
|
10936
11026
|
},
|
|
10937
|
-
"AiReasoningComponent": {
|
|
10938
|
-
"path": "src/lib/ai-reasoning/ai-reasoning.ts",
|
|
10939
|
-
"lineNumber": 17
|
|
10940
|
-
},
|
|
10941
11027
|
"ForgeAiPromptSendEventData": {
|
|
10942
11028
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
10943
11029
|
"lineNumber": 29
|
|
@@ -10958,14 +11044,18 @@
|
|
|
10958
11044
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
10959
11045
|
"lineNumber": 63
|
|
10960
11046
|
},
|
|
10961
|
-
"
|
|
10962
|
-
"path": "src/lib/ai-
|
|
10963
|
-
"lineNumber":
|
|
11047
|
+
"AiReasoningComponent": {
|
|
11048
|
+
"path": "src/lib/ai-reasoning/ai-reasoning.ts",
|
|
11049
|
+
"lineNumber": 17
|
|
10964
11050
|
},
|
|
10965
11051
|
"AiReasoningHeaderComponent": {
|
|
10966
11052
|
"path": "src/lib/ai-reasoning-header/ai-reasoning-header.ts",
|
|
10967
11053
|
"lineNumber": 22
|
|
10968
11054
|
},
|
|
11055
|
+
"AiResponseMessageComponent": {
|
|
11056
|
+
"path": "src/lib/ai-response-message/ai-response-message.ts",
|
|
11057
|
+
"lineNumber": 19
|
|
11058
|
+
},
|
|
10969
11059
|
"ForgeAiResponseMessageToolbarActionEventData": {
|
|
10970
11060
|
"path": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts",
|
|
10971
11061
|
"lineNumber": 23
|
|
@@ -10990,10 +11080,6 @@
|
|
|
10990
11080
|
"path": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts",
|
|
10991
11081
|
"lineNumber": 42
|
|
10992
11082
|
},
|
|
10993
|
-
"AiSlashCommandMenuComponent": {
|
|
10994
|
-
"path": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts",
|
|
10995
|
-
"lineNumber": 32
|
|
10996
|
-
},
|
|
10997
11083
|
"SpinnerSize": {
|
|
10998
11084
|
"path": "src/lib/ai-spinner/ai-spinner.ts",
|
|
10999
11085
|
"lineNumber": 14
|
|
@@ -11002,9 +11088,9 @@
|
|
|
11002
11088
|
"path": "src/lib/ai-spinner/ai-spinner.ts",
|
|
11003
11089
|
"lineNumber": 27
|
|
11004
11090
|
},
|
|
11005
|
-
"
|
|
11006
|
-
"path": "src/lib/ai-
|
|
11007
|
-
"lineNumber":
|
|
11091
|
+
"AiSlashCommandMenuComponent": {
|
|
11092
|
+
"path": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts",
|
|
11093
|
+
"lineNumber": 32
|
|
11008
11094
|
},
|
|
11009
11095
|
"Suggestion": {
|
|
11010
11096
|
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
@@ -11022,6 +11108,26 @@
|
|
|
11022
11108
|
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
11023
11109
|
"lineNumber": 45
|
|
11024
11110
|
},
|
|
11111
|
+
"AiThinkingIndicatorComponent": {
|
|
11112
|
+
"path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
|
|
11113
|
+
"lineNumber": 38
|
|
11114
|
+
},
|
|
11115
|
+
"Thread": {
|
|
11116
|
+
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
11117
|
+
"lineNumber": 19
|
|
11118
|
+
},
|
|
11119
|
+
"ForgeAiThreadsSelectEventData": {
|
|
11120
|
+
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
11121
|
+
"lineNumber": 26
|
|
11122
|
+
},
|
|
11123
|
+
"AiThreadsComponent": {
|
|
11124
|
+
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
11125
|
+
"lineNumber": 46
|
|
11126
|
+
},
|
|
11127
|
+
"AiToolCallIndicatorComponent": {
|
|
11128
|
+
"path": "src/lib/ai-tool-call-indicator/ai-tool-call-indicator.ts",
|
|
11129
|
+
"lineNumber": 25
|
|
11130
|
+
},
|
|
11025
11131
|
"ForgeAiUserMessageCopyEventData": {
|
|
11026
11132
|
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
11027
11133
|
"lineNumber": 20
|
|
@@ -11038,18 +11144,6 @@
|
|
|
11038
11144
|
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
11039
11145
|
"lineNumber": 42
|
|
11040
11146
|
},
|
|
11041
|
-
"Thread": {
|
|
11042
|
-
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
11043
|
-
"lineNumber": 19
|
|
11044
|
-
},
|
|
11045
|
-
"ForgeAiThreadsSelectEventData": {
|
|
11046
|
-
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
11047
|
-
"lineNumber": 26
|
|
11048
|
-
},
|
|
11049
|
-
"AiThreadsComponent": {
|
|
11050
|
-
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
11051
|
-
"lineNumber": 46
|
|
11052
|
-
},
|
|
11053
11147
|
"AiUserMessageToolbarComponent": {
|
|
11054
11148
|
"path": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts",
|
|
11055
11149
|
"lineNumber": 31
|
|
@@ -11110,14 +11204,14 @@
|
|
|
11110
11204
|
"path": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts",
|
|
11111
11205
|
"lineNumber": 24
|
|
11112
11206
|
},
|
|
11113
|
-
"ReasoningContentComponent": {
|
|
11114
|
-
"path": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts",
|
|
11115
|
-
"lineNumber": 17
|
|
11116
|
-
},
|
|
11117
11207
|
"PromptButtonComponent": {
|
|
11118
11208
|
"path": "src/lib/ai-prompt/prompt-button/prompt-button.ts",
|
|
11119
11209
|
"lineNumber": 17
|
|
11120
11210
|
},
|
|
11211
|
+
"ReasoningContentComponent": {
|
|
11212
|
+
"path": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts",
|
|
11213
|
+
"lineNumber": 17
|
|
11214
|
+
},
|
|
11121
11215
|
"OverlayPlacement": {
|
|
11122
11216
|
"path": "src/lib/core/overlay/overlay.ts",
|
|
11123
11217
|
"lineNumber": 31
|
|
@@ -11130,13 +11224,25 @@
|
|
|
11130
11224
|
"path": "src/lib/core/overlay/overlay.ts",
|
|
11131
11225
|
"lineNumber": 40
|
|
11132
11226
|
},
|
|
11133
|
-
"
|
|
11134
|
-
"path": "src/lib/tools/ai-
|
|
11135
|
-
"lineNumber":
|
|
11227
|
+
"AiPaginator": {
|
|
11228
|
+
"path": "src/lib/tools/ai-paginator/ai-paginator.ts",
|
|
11229
|
+
"lineNumber": 13
|
|
11136
11230
|
},
|
|
11137
|
-
"
|
|
11138
|
-
"path": "src/lib/
|
|
11139
|
-
"lineNumber":
|
|
11231
|
+
"TooltipToggleEventDetail": {
|
|
11232
|
+
"path": "src/lib/core/tooltip/tooltip.ts",
|
|
11233
|
+
"lineNumber": 20
|
|
11234
|
+
},
|
|
11235
|
+
"TooltipPlacement": {
|
|
11236
|
+
"path": "src/lib/core/tooltip/tooltip.ts",
|
|
11237
|
+
"lineNumber": 26
|
|
11238
|
+
},
|
|
11239
|
+
"TooltipTrigger": {
|
|
11240
|
+
"path": "src/lib/core/tooltip/tooltip.ts",
|
|
11241
|
+
"lineNumber": 27
|
|
11242
|
+
},
|
|
11243
|
+
"ForgeAiTooltipComponent": {
|
|
11244
|
+
"path": "src/lib/core/tooltip/tooltip.ts",
|
|
11245
|
+
"lineNumber": 44
|
|
11140
11246
|
},
|
|
11141
11247
|
"PopoverToggleEventData": {
|
|
11142
11248
|
"path": "src/lib/core/popover/popover.ts",
|
|
@@ -11154,25 +11260,13 @@
|
|
|
11154
11260
|
"path": "src/lib/core/popover/popover.ts",
|
|
11155
11261
|
"lineNumber": 37
|
|
11156
11262
|
},
|
|
11157
|
-
"
|
|
11158
|
-
"path": "src/lib/
|
|
11159
|
-
"lineNumber":
|
|
11160
|
-
},
|
|
11161
|
-
"TooltipPlacement": {
|
|
11162
|
-
"path": "src/lib/core/tooltip/tooltip.ts",
|
|
11163
|
-
"lineNumber": 26
|
|
11164
|
-
},
|
|
11165
|
-
"TooltipTrigger": {
|
|
11166
|
-
"path": "src/lib/core/tooltip/tooltip.ts",
|
|
11167
|
-
"lineNumber": 27
|
|
11168
|
-
},
|
|
11169
|
-
"ForgeAiTooltipComponent": {
|
|
11170
|
-
"path": "src/lib/core/tooltip/tooltip.ts",
|
|
11171
|
-
"lineNumber": 44
|
|
11263
|
+
"TableData": {
|
|
11264
|
+
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
11265
|
+
"lineNumber": 16
|
|
11172
11266
|
},
|
|
11173
|
-
"
|
|
11174
|
-
"path": "src/lib/tools/ai-
|
|
11175
|
-
"lineNumber":
|
|
11267
|
+
"DataTableToolElement": {
|
|
11268
|
+
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
11269
|
+
"lineNumber": 32
|
|
11176
11270
|
}
|
|
11177
11271
|
}
|
|
11178
11272
|
}
|