@tylertech/forge-ai 0.1.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/custom-elements.json +298 -183
- package/dist/ai-actions-toolbar/ai-actions-toolbar.d.ts +3 -3
- package/dist/ai-button/ai-button.scss.mjs +1 -1
- package/dist/ai-chat-header/ai-chat-header.mjs +4 -4
- package/dist/ai-chat-interface/ai-chat-interface.d.ts +5 -17
- package/dist/ai-chat-interface/ai-chat-interface.mjs +20 -33
- package/dist/ai-chat-interface/ai-chat-interface.scss.mjs +1 -1
- package/dist/ai-dialog/ai-dialog.d.ts +1 -0
- package/dist/ai-dialog/ai-dialog.mjs +30 -3
- package/dist/ai-dialog/ai-dialog.scss.mjs +1 -1
- package/dist/ai-dropdown-menu/ai-dropdown-menu.d.ts +0 -1
- package/dist/ai-dropdown-menu/ai-dropdown-menu.mjs +5 -7
- package/dist/ai-embedded-chat/ai-embedded-chat.mjs +9 -5
- package/dist/ai-file-picker/ai-file-picker.d.ts +5 -6
- package/dist/ai-file-picker/ai-file-picker.mjs +17 -20
- package/dist/ai-file-picker/index.d.ts +1 -1
- package/dist/ai-file-picker/index.mjs +2 -2
- package/dist/ai-floating-chat/ai-floating-chat.mjs +11 -7
- package/dist/ai-prompt/ai-prompt.d.ts +36 -7
- package/dist/ai-prompt/ai-prompt.mjs +134 -33
- package/dist/ai-prompt/ai-prompt.scss.mjs +1 -1
- package/dist/ai-response-message/ai-response-message.d.ts +3 -4
- package/dist/ai-response-message/ai-response-message.mjs +1 -6
- package/dist/ai-response-message/ai-response-message.scss.mjs +1 -1
- package/dist/ai-sidebar/ai-sidebar.d.ts +4 -0
- package/dist/ai-sidebar/ai-sidebar.mjs +32 -13
- package/dist/ai-sidebar/ai-sidebar.scss.mjs +1 -1
- package/dist/ai-sidebar-chat/ai-sidebar-chat.mjs +11 -7
- package/dist/ai-suggestions/ai-suggestions.d.ts +3 -3
- package/dist/ai-suggestions/ai-suggestions.mjs +2 -2
- package/dist/ai-thinking-indicator/ai-thinking-indicator.d.ts +22 -0
- package/dist/ai-thinking-indicator/ai-thinking-indicator.mjs +41 -0
- package/dist/ai-thinking-indicator/ai-thinking-indicator.scss.mjs +4 -0
- package/dist/ai-thinking-indicator/index.d.ts +1 -0
- package/dist/ai-thinking-indicator/index.mjs +5 -0
- package/dist/ai-threads/ai-threads.d.ts +3 -3
- package/dist/ai-voice-input/ai-voice-input.d.ts +1 -1
- package/dist/core/overlay/overlay.scss.mjs +1 -1
- package/dist/core/popover/popover.mjs +1 -1
- package/dist/core/tooltip/tooltip.mjs +2 -1
- package/dist/core/tooltip/tooltip.scss.mjs +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +5 -2
- package/package.json +1 -1
package/custom-elements.json
CHANGED
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"events": [
|
|
97
97
|
{
|
|
98
98
|
"type": {
|
|
99
|
-
"text": "CustomEvent<
|
|
99
|
+
"text": "CustomEvent<ForgeAiActionsToolbarActionEventData>"
|
|
100
100
|
},
|
|
101
101
|
"description": "Fired when an action button is clicked. The detail contains the action type.",
|
|
102
102
|
"name": "forge-ai-actions-toolbar-action"
|
|
@@ -708,6 +708,10 @@
|
|
|
708
708
|
"description": "Default slot for messages",
|
|
709
709
|
"name": ""
|
|
710
710
|
},
|
|
711
|
+
{
|
|
712
|
+
"description": "Slot for AI chat header component",
|
|
713
|
+
"name": "header"
|
|
714
|
+
},
|
|
711
715
|
{
|
|
712
716
|
"description": "Slot for AI suggestions component",
|
|
713
717
|
"name": "suggestions"
|
|
@@ -719,86 +723,15 @@
|
|
|
719
723
|
],
|
|
720
724
|
"members": [
|
|
721
725
|
{
|
|
722
|
-
"kind": "
|
|
723
|
-
"name": "
|
|
724
|
-
"type": {
|
|
725
|
-
"text": "boolean"
|
|
726
|
-
},
|
|
727
|
-
"privacy": "public",
|
|
728
|
-
"default": "false",
|
|
729
|
-
"description": "Controls whether the expand button is visible in the header",
|
|
730
|
-
"attribute": "show-expand-button"
|
|
731
|
-
},
|
|
732
|
-
{
|
|
733
|
-
"kind": "field",
|
|
734
|
-
"name": "showMinimizeButton",
|
|
735
|
-
"type": {
|
|
736
|
-
"text": "boolean"
|
|
737
|
-
},
|
|
738
|
-
"privacy": "public",
|
|
739
|
-
"default": "false",
|
|
740
|
-
"description": "Controls whether the minimize button is visible in the header",
|
|
741
|
-
"attribute": "show-minimize-button"
|
|
742
|
-
},
|
|
743
|
-
{
|
|
744
|
-
"kind": "field",
|
|
745
|
-
"name": "expanded",
|
|
746
|
-
"type": {
|
|
747
|
-
"text": "boolean"
|
|
748
|
-
},
|
|
749
|
-
"privacy": "public",
|
|
750
|
-
"default": "false",
|
|
751
|
-
"description": "Indicates the current expanded state for displaying the appropriate expand/collapse icon",
|
|
752
|
-
"attribute": "expanded"
|
|
753
|
-
},
|
|
754
|
-
{
|
|
755
|
-
"kind": "field",
|
|
756
|
-
"name": "minimizeIcon",
|
|
757
|
-
"type": {
|
|
758
|
-
"text": "MinimizeIconType"
|
|
759
|
-
},
|
|
726
|
+
"kind": "method",
|
|
727
|
+
"name": "scrollToBottom",
|
|
760
728
|
"privacy": "public",
|
|
761
|
-
"
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
],
|
|
766
|
-
"attributes": [
|
|
767
|
-
{
|
|
768
|
-
"name": "show-expand-button",
|
|
769
|
-
"type": {
|
|
770
|
-
"text": "boolean"
|
|
771
|
-
},
|
|
772
|
-
"default": "false",
|
|
773
|
-
"description": "Controls whether the expand button is visible in the header",
|
|
774
|
-
"fieldName": "showExpandButton"
|
|
775
|
-
},
|
|
776
|
-
{
|
|
777
|
-
"name": "show-minimize-button",
|
|
778
|
-
"type": {
|
|
779
|
-
"text": "boolean"
|
|
780
|
-
},
|
|
781
|
-
"default": "false",
|
|
782
|
-
"description": "Controls whether the minimize button is visible in the header",
|
|
783
|
-
"fieldName": "showMinimizeButton"
|
|
784
|
-
},
|
|
785
|
-
{
|
|
786
|
-
"name": "expanded",
|
|
787
|
-
"type": {
|
|
788
|
-
"text": "boolean"
|
|
789
|
-
},
|
|
790
|
-
"default": "false",
|
|
791
|
-
"description": "Indicates the current expanded state for displaying the appropriate expand/collapse icon",
|
|
792
|
-
"fieldName": "expanded"
|
|
793
|
-
},
|
|
794
|
-
{
|
|
795
|
-
"name": "minimize-icon",
|
|
796
|
-
"type": {
|
|
797
|
-
"text": "MinimizeIconType"
|
|
729
|
+
"return": {
|
|
730
|
+
"type": {
|
|
731
|
+
"text": "void"
|
|
732
|
+
}
|
|
798
733
|
},
|
|
799
|
-
"
|
|
800
|
-
"description": "Controls which minimize icon to display in the header",
|
|
801
|
-
"fieldName": "minimizeIcon"
|
|
734
|
+
"description": "Scrolls the messages container to the bottom with smooth animation"
|
|
802
735
|
}
|
|
803
736
|
],
|
|
804
737
|
"superclass": {
|
|
@@ -1920,7 +1853,7 @@
|
|
|
1920
1853
|
{
|
|
1921
1854
|
"kind": "class",
|
|
1922
1855
|
"description": "",
|
|
1923
|
-
"name": "
|
|
1856
|
+
"name": "AiFilePickerComponent",
|
|
1924
1857
|
"cssProperties": [
|
|
1925
1858
|
{
|
|
1926
1859
|
"description": "The width of the file picker button.",
|
|
@@ -1949,7 +1882,7 @@
|
|
|
1949
1882
|
"text": "AiFilePickerVariant"
|
|
1950
1883
|
},
|
|
1951
1884
|
"privacy": "public",
|
|
1952
|
-
"default": "'button'",
|
|
1885
|
+
"default": "'icon-button'",
|
|
1953
1886
|
"description": "The variant of the file picker button.",
|
|
1954
1887
|
"attribute": "variant"
|
|
1955
1888
|
},
|
|
@@ -1992,7 +1925,7 @@
|
|
|
1992
1925
|
{
|
|
1993
1926
|
"name": "forge-ai-file-picker-change",
|
|
1994
1927
|
"type": {
|
|
1995
|
-
"text": "CustomEvent<
|
|
1928
|
+
"text": "CustomEvent<ForgeAiFilePickerChangeEventData>"
|
|
1996
1929
|
},
|
|
1997
1930
|
"description": "Fired when a file is selected via click or drag & drop. The event detail contains the selected file and timestamp."
|
|
1998
1931
|
}
|
|
@@ -2003,7 +1936,7 @@
|
|
|
2003
1936
|
"type": {
|
|
2004
1937
|
"text": "AiFilePickerVariant"
|
|
2005
1938
|
},
|
|
2006
|
-
"default": "'button'",
|
|
1939
|
+
"default": "'icon-button'",
|
|
2007
1940
|
"description": "The variant of the file picker button.",
|
|
2008
1941
|
"fieldName": "variant"
|
|
2009
1942
|
},
|
|
@@ -2047,9 +1980,9 @@
|
|
|
2047
1980
|
"exports": [
|
|
2048
1981
|
{
|
|
2049
1982
|
"kind": "js",
|
|
2050
|
-
"name": "
|
|
1983
|
+
"name": "AiFilePickerComponent",
|
|
2051
1984
|
"declaration": {
|
|
2052
|
-
"name": "
|
|
1985
|
+
"name": "AiFilePickerComponent",
|
|
2053
1986
|
"module": "src/lib/ai-file-picker/ai-file-picker.ts"
|
|
2054
1987
|
}
|
|
2055
1988
|
},
|
|
@@ -2057,7 +1990,7 @@
|
|
|
2057
1990
|
"kind": "custom-element-definition",
|
|
2058
1991
|
"name": "forge-ai-file-picker",
|
|
2059
1992
|
"declaration": {
|
|
2060
|
-
"name": "
|
|
1993
|
+
"name": "AiFilePickerComponent",
|
|
2061
1994
|
"module": "src/lib/ai-file-picker/ai-file-picker.ts"
|
|
2062
1995
|
}
|
|
2063
1996
|
}
|
|
@@ -2568,7 +2501,7 @@
|
|
|
2568
2501
|
"name": "AiPromptComponent",
|
|
2569
2502
|
"slots": [
|
|
2570
2503
|
{
|
|
2571
|
-
"description": "Slot for action components
|
|
2504
|
+
"description": "Slot for action components that are hidden in inline mode (voice input, file picker, model selectors, web search, etc.)",
|
|
2572
2505
|
"name": "actions"
|
|
2573
2506
|
}
|
|
2574
2507
|
],
|
|
@@ -2581,7 +2514,7 @@
|
|
|
2581
2514
|
},
|
|
2582
2515
|
"privacy": "public",
|
|
2583
2516
|
"default": "'Ask a question...'",
|
|
2584
|
-
"description": "Placeholder text for the
|
|
2517
|
+
"description": "Placeholder text for the textarea field",
|
|
2585
2518
|
"attribute": "placeholder"
|
|
2586
2519
|
},
|
|
2587
2520
|
{
|
|
@@ -2592,7 +2525,7 @@
|
|
|
2592
2525
|
},
|
|
2593
2526
|
"privacy": "public",
|
|
2594
2527
|
"default": "''",
|
|
2595
|
-
"description": "Current value of the
|
|
2528
|
+
"description": "Current value of the textarea field",
|
|
2596
2529
|
"attribute": "value"
|
|
2597
2530
|
},
|
|
2598
2531
|
{
|
|
@@ -2605,15 +2538,102 @@
|
|
|
2605
2538
|
"default": "'stacked'",
|
|
2606
2539
|
"description": "Layout variant for the prompt component",
|
|
2607
2540
|
"attribute": "variant"
|
|
2541
|
+
},
|
|
2542
|
+
{
|
|
2543
|
+
"kind": "field",
|
|
2544
|
+
"name": "sendDisabled",
|
|
2545
|
+
"type": {
|
|
2546
|
+
"text": "boolean"
|
|
2547
|
+
},
|
|
2548
|
+
"privacy": "public",
|
|
2549
|
+
"default": "false",
|
|
2550
|
+
"description": "Whether the send button is disabled",
|
|
2551
|
+
"attribute": "send-disabled"
|
|
2552
|
+
},
|
|
2553
|
+
{
|
|
2554
|
+
"kind": "field",
|
|
2555
|
+
"name": "autofocus",
|
|
2556
|
+
"type": {
|
|
2557
|
+
"text": "boolean"
|
|
2558
|
+
},
|
|
2559
|
+
"privacy": "public",
|
|
2560
|
+
"default": "false",
|
|
2561
|
+
"description": "Whether to autofocus the textarea field when the component renders",
|
|
2562
|
+
"attribute": "autofocus"
|
|
2563
|
+
},
|
|
2564
|
+
{
|
|
2565
|
+
"kind": "field",
|
|
2566
|
+
"name": "inputDisabled",
|
|
2567
|
+
"type": {
|
|
2568
|
+
"text": "boolean"
|
|
2569
|
+
},
|
|
2570
|
+
"privacy": "public",
|
|
2571
|
+
"default": "false",
|
|
2572
|
+
"description": "Whether the textarea field is disabled",
|
|
2573
|
+
"attribute": "input-disabled"
|
|
2574
|
+
},
|
|
2575
|
+
{
|
|
2576
|
+
"kind": "field",
|
|
2577
|
+
"name": "cancelOnEscape",
|
|
2578
|
+
"type": {
|
|
2579
|
+
"text": "boolean"
|
|
2580
|
+
},
|
|
2581
|
+
"privacy": "public",
|
|
2582
|
+
"default": "true",
|
|
2583
|
+
"description": "Whether to dispatch escape events when Escape key is pressed",
|
|
2584
|
+
"attribute": "cancel-on-escape"
|
|
2585
|
+
},
|
|
2586
|
+
{
|
|
2587
|
+
"kind": "field",
|
|
2588
|
+
"name": "running",
|
|
2589
|
+
"type": {
|
|
2590
|
+
"text": "boolean"
|
|
2591
|
+
},
|
|
2592
|
+
"privacy": "public",
|
|
2593
|
+
"default": "false",
|
|
2594
|
+
"description": "Whether the component is in running state (shows stop button instead of send button)",
|
|
2595
|
+
"attribute": "running"
|
|
2596
|
+
},
|
|
2597
|
+
{
|
|
2598
|
+
"kind": "method",
|
|
2599
|
+
"name": "focus",
|
|
2600
|
+
"privacy": "public",
|
|
2601
|
+
"return": {
|
|
2602
|
+
"type": {
|
|
2603
|
+
"text": "void"
|
|
2604
|
+
}
|
|
2605
|
+
},
|
|
2606
|
+
"description": "Focuses the textarea element"
|
|
2608
2607
|
}
|
|
2609
2608
|
],
|
|
2610
2609
|
"events": [
|
|
2611
2610
|
{
|
|
2612
2611
|
"type": {
|
|
2613
|
-
"text": "CustomEvent<
|
|
2612
|
+
"text": "CustomEvent<ForgeAiPromptSendEventData>"
|
|
2614
2613
|
},
|
|
2615
|
-
"description": "Fired when the send button is clicked or Enter is pressed.",
|
|
2614
|
+
"description": "Fired when the send button is clicked or Enter is pressed (without Shift). Cancelable - if cancelled, running state is not set and input is not cleared.",
|
|
2616
2615
|
"name": "forge-ai-prompt-send"
|
|
2616
|
+
},
|
|
2617
|
+
{
|
|
2618
|
+
"type": {
|
|
2619
|
+
"text": "CustomEvent<void>"
|
|
2620
|
+
},
|
|
2621
|
+
"description": "Fired when the Escape key is pressed (if cancelOnEscape is true).",
|
|
2622
|
+
"name": "forge-ai-prompt-cancel"
|
|
2623
|
+
},
|
|
2624
|
+
{
|
|
2625
|
+
"type": {
|
|
2626
|
+
"text": "CustomEvent<ForgeAiPromptAttachmentEventData>"
|
|
2627
|
+
},
|
|
2628
|
+
"description": "Fired when files are pasted into the textarea.",
|
|
2629
|
+
"name": "forge-ai-prompt-attachment"
|
|
2630
|
+
},
|
|
2631
|
+
{
|
|
2632
|
+
"type": {
|
|
2633
|
+
"text": "CustomEvent<void>"
|
|
2634
|
+
},
|
|
2635
|
+
"description": "Fired when the stop button is clicked. Cancelable - if cancelled, running state remains true.",
|
|
2636
|
+
"name": "forge-ai-prompt-stop"
|
|
2617
2637
|
}
|
|
2618
2638
|
],
|
|
2619
2639
|
"attributes": [
|
|
@@ -2623,7 +2643,7 @@
|
|
|
2623
2643
|
"text": "string"
|
|
2624
2644
|
},
|
|
2625
2645
|
"default": "'Ask a question...'",
|
|
2626
|
-
"description": "Placeholder text for the
|
|
2646
|
+
"description": "Placeholder text for the textarea field",
|
|
2627
2647
|
"fieldName": "placeholder"
|
|
2628
2648
|
},
|
|
2629
2649
|
{
|
|
@@ -2632,7 +2652,7 @@
|
|
|
2632
2652
|
"text": "string"
|
|
2633
2653
|
},
|
|
2634
2654
|
"default": "''",
|
|
2635
|
-
"description": "Current value of the
|
|
2655
|
+
"description": "Current value of the textarea field",
|
|
2636
2656
|
"fieldName": "value"
|
|
2637
2657
|
},
|
|
2638
2658
|
{
|
|
@@ -2643,6 +2663,51 @@
|
|
|
2643
2663
|
"default": "'stacked'",
|
|
2644
2664
|
"description": "Layout variant for the prompt component",
|
|
2645
2665
|
"fieldName": "variant"
|
|
2666
|
+
},
|
|
2667
|
+
{
|
|
2668
|
+
"name": "send-disabled",
|
|
2669
|
+
"type": {
|
|
2670
|
+
"text": "boolean"
|
|
2671
|
+
},
|
|
2672
|
+
"default": "false",
|
|
2673
|
+
"description": "Whether the send button is disabled",
|
|
2674
|
+
"fieldName": "sendDisabled"
|
|
2675
|
+
},
|
|
2676
|
+
{
|
|
2677
|
+
"name": "autofocus",
|
|
2678
|
+
"type": {
|
|
2679
|
+
"text": "boolean"
|
|
2680
|
+
},
|
|
2681
|
+
"default": "false",
|
|
2682
|
+
"description": "Whether to autofocus the textarea field when the component renders",
|
|
2683
|
+
"fieldName": "autofocus"
|
|
2684
|
+
},
|
|
2685
|
+
{
|
|
2686
|
+
"name": "input-disabled",
|
|
2687
|
+
"type": {
|
|
2688
|
+
"text": "boolean"
|
|
2689
|
+
},
|
|
2690
|
+
"default": "false",
|
|
2691
|
+
"description": "Whether the textarea field is disabled",
|
|
2692
|
+
"fieldName": "inputDisabled"
|
|
2693
|
+
},
|
|
2694
|
+
{
|
|
2695
|
+
"name": "cancel-on-escape",
|
|
2696
|
+
"type": {
|
|
2697
|
+
"text": "boolean"
|
|
2698
|
+
},
|
|
2699
|
+
"default": "true",
|
|
2700
|
+
"description": "Whether to dispatch escape events when Escape key is pressed",
|
|
2701
|
+
"fieldName": "cancelOnEscape"
|
|
2702
|
+
},
|
|
2703
|
+
{
|
|
2704
|
+
"name": "running",
|
|
2705
|
+
"type": {
|
|
2706
|
+
"text": "boolean"
|
|
2707
|
+
},
|
|
2708
|
+
"default": "false",
|
|
2709
|
+
"description": "Whether the component is in running state (shows stop button instead of send button)",
|
|
2710
|
+
"fieldName": "running"
|
|
2646
2711
|
}
|
|
2647
2712
|
],
|
|
2648
2713
|
"superclass": {
|
|
@@ -2899,7 +2964,7 @@
|
|
|
2899
2964
|
"events": [
|
|
2900
2965
|
{
|
|
2901
2966
|
"type": {
|
|
2902
|
-
"text": "CustomEvent<
|
|
2967
|
+
"text": "CustomEvent<ForgeAiResponseMessageActionEventData>"
|
|
2903
2968
|
},
|
|
2904
2969
|
"description": "Fired when an action button is clicked.",
|
|
2905
2970
|
"name": "forge-ai-response-message-action"
|
|
@@ -3268,8 +3333,7 @@
|
|
|
3268
3333
|
},
|
|
3269
3334
|
"privacy": "public",
|
|
3270
3335
|
"default": "[]",
|
|
3271
|
-
"description": "Array of suggestion objects to display"
|
|
3272
|
-
"attribute": "suggestions"
|
|
3336
|
+
"description": "Array of suggestion objects to display"
|
|
3273
3337
|
},
|
|
3274
3338
|
{
|
|
3275
3339
|
"kind": "field",
|
|
@@ -3286,22 +3350,13 @@
|
|
|
3286
3350
|
"events": [
|
|
3287
3351
|
{
|
|
3288
3352
|
"type": {
|
|
3289
|
-
"text": "CustomEvent<
|
|
3353
|
+
"text": "CustomEvent<ForgeAiSuggestionsEventData>"
|
|
3290
3354
|
},
|
|
3291
3355
|
"description": "Fired when a suggestion is selected.",
|
|
3292
3356
|
"name": "forge-ai-suggestions-select"
|
|
3293
3357
|
}
|
|
3294
3358
|
],
|
|
3295
3359
|
"attributes": [
|
|
3296
|
-
{
|
|
3297
|
-
"name": "suggestions",
|
|
3298
|
-
"type": {
|
|
3299
|
-
"text": "Suggestion[]"
|
|
3300
|
-
},
|
|
3301
|
-
"default": "[]",
|
|
3302
|
-
"description": "Array of suggestion objects to display",
|
|
3303
|
-
"fieldName": "suggestions"
|
|
3304
|
-
},
|
|
3305
3360
|
{
|
|
3306
3361
|
"name": "variant",
|
|
3307
3362
|
"type": {
|
|
@@ -3356,6 +3411,109 @@
|
|
|
3356
3411
|
}
|
|
3357
3412
|
]
|
|
3358
3413
|
},
|
|
3414
|
+
{
|
|
3415
|
+
"kind": "javascript-module",
|
|
3416
|
+
"path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
|
|
3417
|
+
"declarations": [
|
|
3418
|
+
{
|
|
3419
|
+
"kind": "variable",
|
|
3420
|
+
"name": "AiThinkingIndicatorComponentTagName",
|
|
3421
|
+
"type": {
|
|
3422
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
3423
|
+
},
|
|
3424
|
+
"default": "'forge-ai-thinking-indicator'"
|
|
3425
|
+
},
|
|
3426
|
+
{
|
|
3427
|
+
"kind": "class",
|
|
3428
|
+
"description": "",
|
|
3429
|
+
"name": "AiThinkingIndicatorComponent",
|
|
3430
|
+
"members": [],
|
|
3431
|
+
"superclass": {
|
|
3432
|
+
"name": "LitElement",
|
|
3433
|
+
"package": "lit"
|
|
3434
|
+
},
|
|
3435
|
+
"tagName": "forge-ai-thinking-indicator",
|
|
3436
|
+
"customElement": true,
|
|
3437
|
+
"summary": "A thinking indicator component that displays three animated dots to show that the system is processing or awaiting a response."
|
|
3438
|
+
}
|
|
3439
|
+
],
|
|
3440
|
+
"exports": [
|
|
3441
|
+
{
|
|
3442
|
+
"kind": "js",
|
|
3443
|
+
"name": "AiThinkingIndicatorComponentTagName",
|
|
3444
|
+
"declaration": {
|
|
3445
|
+
"name": "AiThinkingIndicatorComponentTagName",
|
|
3446
|
+
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
3447
|
+
}
|
|
3448
|
+
},
|
|
3449
|
+
{
|
|
3450
|
+
"kind": "js",
|
|
3451
|
+
"name": "AiThinkingIndicatorComponent",
|
|
3452
|
+
"declaration": {
|
|
3453
|
+
"name": "AiThinkingIndicatorComponent",
|
|
3454
|
+
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
3455
|
+
}
|
|
3456
|
+
},
|
|
3457
|
+
{
|
|
3458
|
+
"kind": "custom-element-definition",
|
|
3459
|
+
"declaration": {
|
|
3460
|
+
"name": "AiThinkingIndicatorComponent",
|
|
3461
|
+
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
3462
|
+
}
|
|
3463
|
+
}
|
|
3464
|
+
]
|
|
3465
|
+
},
|
|
3466
|
+
{
|
|
3467
|
+
"kind": "javascript-module",
|
|
3468
|
+
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
3469
|
+
"declarations": [
|
|
3470
|
+
{
|
|
3471
|
+
"kind": "variable",
|
|
3472
|
+
"name": "AiUserMessageComponentTagName",
|
|
3473
|
+
"type": {
|
|
3474
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
3475
|
+
},
|
|
3476
|
+
"default": "'forge-ai-user-message'"
|
|
3477
|
+
},
|
|
3478
|
+
{
|
|
3479
|
+
"kind": "class",
|
|
3480
|
+
"description": "",
|
|
3481
|
+
"name": "AiUserMessageComponent",
|
|
3482
|
+
"members": [],
|
|
3483
|
+
"superclass": {
|
|
3484
|
+
"name": "LitElement",
|
|
3485
|
+
"package": "lit"
|
|
3486
|
+
},
|
|
3487
|
+
"tagName": "forge-ai-user-message",
|
|
3488
|
+
"customElement": true
|
|
3489
|
+
}
|
|
3490
|
+
],
|
|
3491
|
+
"exports": [
|
|
3492
|
+
{
|
|
3493
|
+
"kind": "js",
|
|
3494
|
+
"name": "AiUserMessageComponentTagName",
|
|
3495
|
+
"declaration": {
|
|
3496
|
+
"name": "AiUserMessageComponentTagName",
|
|
3497
|
+
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
3498
|
+
}
|
|
3499
|
+
},
|
|
3500
|
+
{
|
|
3501
|
+
"kind": "js",
|
|
3502
|
+
"name": "AiUserMessageComponent",
|
|
3503
|
+
"declaration": {
|
|
3504
|
+
"name": "AiUserMessageComponent",
|
|
3505
|
+
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
3506
|
+
}
|
|
3507
|
+
},
|
|
3508
|
+
{
|
|
3509
|
+
"kind": "custom-element-definition",
|
|
3510
|
+
"declaration": {
|
|
3511
|
+
"name": "AiUserMessageComponent",
|
|
3512
|
+
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
3513
|
+
}
|
|
3514
|
+
}
|
|
3515
|
+
]
|
|
3516
|
+
},
|
|
3359
3517
|
{
|
|
3360
3518
|
"kind": "javascript-module",
|
|
3361
3519
|
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
@@ -3388,7 +3546,7 @@
|
|
|
3388
3546
|
"events": [
|
|
3389
3547
|
{
|
|
3390
3548
|
"type": {
|
|
3391
|
-
"text": "CustomEvent<
|
|
3549
|
+
"text": "CustomEvent<ForgeAiThreadsSelectEventData>"
|
|
3392
3550
|
},
|
|
3393
3551
|
"description": "Fired when a thread is selected.",
|
|
3394
3552
|
"name": "forge-ai-threads-select"
|
|
@@ -3453,57 +3611,6 @@
|
|
|
3453
3611
|
}
|
|
3454
3612
|
]
|
|
3455
3613
|
},
|
|
3456
|
-
{
|
|
3457
|
-
"kind": "javascript-module",
|
|
3458
|
-
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
3459
|
-
"declarations": [
|
|
3460
|
-
{
|
|
3461
|
-
"kind": "variable",
|
|
3462
|
-
"name": "AiUserMessageComponentTagName",
|
|
3463
|
-
"type": {
|
|
3464
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
3465
|
-
},
|
|
3466
|
-
"default": "'forge-ai-user-message'"
|
|
3467
|
-
},
|
|
3468
|
-
{
|
|
3469
|
-
"kind": "class",
|
|
3470
|
-
"description": "",
|
|
3471
|
-
"name": "AiUserMessageComponent",
|
|
3472
|
-
"members": [],
|
|
3473
|
-
"superclass": {
|
|
3474
|
-
"name": "LitElement",
|
|
3475
|
-
"package": "lit"
|
|
3476
|
-
},
|
|
3477
|
-
"tagName": "forge-ai-user-message",
|
|
3478
|
-
"customElement": true
|
|
3479
|
-
}
|
|
3480
|
-
],
|
|
3481
|
-
"exports": [
|
|
3482
|
-
{
|
|
3483
|
-
"kind": "js",
|
|
3484
|
-
"name": "AiUserMessageComponentTagName",
|
|
3485
|
-
"declaration": {
|
|
3486
|
-
"name": "AiUserMessageComponentTagName",
|
|
3487
|
-
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
3488
|
-
}
|
|
3489
|
-
},
|
|
3490
|
-
{
|
|
3491
|
-
"kind": "js",
|
|
3492
|
-
"name": "AiUserMessageComponent",
|
|
3493
|
-
"declaration": {
|
|
3494
|
-
"name": "AiUserMessageComponent",
|
|
3495
|
-
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
3496
|
-
}
|
|
3497
|
-
},
|
|
3498
|
-
{
|
|
3499
|
-
"kind": "custom-element-definition",
|
|
3500
|
-
"declaration": {
|
|
3501
|
-
"name": "AiUserMessageComponent",
|
|
3502
|
-
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
3503
|
-
}
|
|
3504
|
-
}
|
|
3505
|
-
]
|
|
3506
|
-
},
|
|
3507
3614
|
{
|
|
3508
3615
|
"kind": "javascript-module",
|
|
3509
3616
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
@@ -4315,7 +4422,7 @@
|
|
|
4315
4422
|
"text": "boolean"
|
|
4316
4423
|
},
|
|
4317
4424
|
"privacy": "public",
|
|
4318
|
-
"default": "
|
|
4425
|
+
"default": "false",
|
|
4319
4426
|
"description": "Whether the popover should flip to the opposite side when there's no space.",
|
|
4320
4427
|
"attribute": "flip"
|
|
4321
4428
|
},
|
|
@@ -4367,7 +4474,7 @@
|
|
|
4367
4474
|
"type": {
|
|
4368
4475
|
"text": "boolean"
|
|
4369
4476
|
},
|
|
4370
|
-
"default": "
|
|
4477
|
+
"default": "false",
|
|
4371
4478
|
"description": "Whether the popover should flip to the opposite side when there's no space.",
|
|
4372
4479
|
"fieldName": "flip"
|
|
4373
4480
|
},
|
|
@@ -4651,7 +4758,7 @@
|
|
|
4651
4758
|
],
|
|
4652
4759
|
"branchName": "main",
|
|
4653
4760
|
"forgeTypes": {
|
|
4654
|
-
"
|
|
4761
|
+
"ForgeAiActionsToolbarActionEventData": {
|
|
4655
4762
|
"path": "src/lib/ai-actions-toolbar/ai-actions-toolbar.ts",
|
|
4656
4763
|
"lineNumber": 16
|
|
4657
4764
|
},
|
|
@@ -4685,11 +4792,11 @@
|
|
|
4685
4792
|
},
|
|
4686
4793
|
"AiDialogComponent": {
|
|
4687
4794
|
"path": "src/lib/ai-dialog/ai-dialog.ts",
|
|
4688
|
-
"lineNumber":
|
|
4795
|
+
"lineNumber": 35
|
|
4689
4796
|
},
|
|
4690
4797
|
"AiChatInterfaceComponent": {
|
|
4691
4798
|
"path": "src/lib/ai-chat-interface/ai-chat-interface.ts",
|
|
4692
|
-
"lineNumber":
|
|
4799
|
+
"lineNumber": 25
|
|
4693
4800
|
},
|
|
4694
4801
|
"ForgeAiDropdownMenuItemGroupComponent": {
|
|
4695
4802
|
"path": "src/lib/ai-dropdown-menu/ai-dropdown-menu-item-group.ts",
|
|
@@ -4705,15 +4812,15 @@
|
|
|
4705
4812
|
},
|
|
4706
4813
|
"DropdownMenuEvents": {
|
|
4707
4814
|
"path": "src/lib/ai-dropdown-menu/ai-dropdown-menu.ts",
|
|
4708
|
-
"lineNumber":
|
|
4815
|
+
"lineNumber": 24
|
|
4709
4816
|
},
|
|
4710
4817
|
"DropdownMenuVariant": {
|
|
4711
4818
|
"path": "src/lib/ai-dropdown-menu/ai-dropdown-menu.ts",
|
|
4712
|
-
"lineNumber":
|
|
4819
|
+
"lineNumber": 38
|
|
4713
4820
|
},
|
|
4714
4821
|
"ForgeAiDropdownMenuComponent": {
|
|
4715
4822
|
"path": "src/lib/ai-dropdown-menu/ai-dropdown-menu.ts",
|
|
4716
|
-
"lineNumber":
|
|
4823
|
+
"lineNumber": 99
|
|
4717
4824
|
},
|
|
4718
4825
|
"DropdownNavigationController": {
|
|
4719
4826
|
"path": "src/lib/ai-dropdown-menu/navigation-controller.ts",
|
|
@@ -4753,7 +4860,7 @@
|
|
|
4753
4860
|
},
|
|
4754
4861
|
"AiEmbeddedChatComponent": {
|
|
4755
4862
|
"path": "src/lib/ai-embedded-chat/ai-embedded-chat.ts",
|
|
4756
|
-
"lineNumber":
|
|
4863
|
+
"lineNumber": 39
|
|
4757
4864
|
},
|
|
4758
4865
|
"AiEmptyStateComponent": {
|
|
4759
4866
|
"path": "src/lib/ai-empty-state/ai-empty-state.ts",
|
|
@@ -4763,7 +4870,7 @@
|
|
|
4763
4870
|
"path": "src/lib/ai-fab/ai-fab.ts",
|
|
4764
4871
|
"lineNumber": 22
|
|
4765
4872
|
},
|
|
4766
|
-
"
|
|
4873
|
+
"ForgeAiFilePickerChangeEventData": {
|
|
4767
4874
|
"path": "src/lib/ai-file-picker/ai-file-picker.ts",
|
|
4768
4875
|
"lineNumber": 21
|
|
4769
4876
|
},
|
|
@@ -4771,13 +4878,13 @@
|
|
|
4771
4878
|
"path": "src/lib/ai-file-picker/ai-file-picker.ts",
|
|
4772
4879
|
"lineNumber": 28
|
|
4773
4880
|
},
|
|
4774
|
-
"
|
|
4881
|
+
"AiFilePickerComponent": {
|
|
4775
4882
|
"path": "src/lib/ai-file-picker/ai-file-picker.ts",
|
|
4776
4883
|
"lineNumber": 56
|
|
4777
4884
|
},
|
|
4778
4885
|
"AiFloatingChatComponent": {
|
|
4779
4886
|
"path": "src/lib/ai-floating-chat/ai-floating-chat.ts",
|
|
4780
|
-
"lineNumber":
|
|
4887
|
+
"lineNumber": 41
|
|
4781
4888
|
},
|
|
4782
4889
|
"AiGradientContainerVariant": {
|
|
4783
4890
|
"path": "src/lib/ai-gradient-container/ai-gradient-container.ts",
|
|
@@ -4795,17 +4902,21 @@
|
|
|
4795
4902
|
"path": "src/lib/ai-modal/ai-modal.ts",
|
|
4796
4903
|
"lineNumber": 30
|
|
4797
4904
|
},
|
|
4798
|
-
"
|
|
4905
|
+
"ForgeAiPromptSendEventData": {
|
|
4799
4906
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
4800
|
-
"lineNumber":
|
|
4907
|
+
"lineNumber": 21
|
|
4908
|
+
},
|
|
4909
|
+
"ForgeAiPromptAttachmentEventData": {
|
|
4910
|
+
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
4911
|
+
"lineNumber": 27
|
|
4801
4912
|
},
|
|
4802
4913
|
"AiPromptVariant": {
|
|
4803
4914
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
4804
|
-
"lineNumber":
|
|
4915
|
+
"lineNumber": 31
|
|
4805
4916
|
},
|
|
4806
4917
|
"AiPromptComponent": {
|
|
4807
4918
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
4808
|
-
"lineNumber":
|
|
4919
|
+
"lineNumber": 48
|
|
4809
4920
|
},
|
|
4810
4921
|
"AiReasoningComponent": {
|
|
4811
4922
|
"path": "src/lib/ai-reasoning/ai-reasoning.ts",
|
|
@@ -4819,7 +4930,7 @@
|
|
|
4819
4930
|
"path": "src/lib/ai-response-message/ai-response-message.ts",
|
|
4820
4931
|
"lineNumber": 18
|
|
4821
4932
|
},
|
|
4822
|
-
"
|
|
4933
|
+
"ForgeAiResponseMessageActionEventData": {
|
|
4823
4934
|
"path": "src/lib/ai-response-message/ai-response-message.ts",
|
|
4824
4935
|
"lineNumber": 20
|
|
4825
4936
|
},
|
|
@@ -4833,13 +4944,13 @@
|
|
|
4833
4944
|
},
|
|
4834
4945
|
"AiSidebarChatComponent": {
|
|
4835
4946
|
"path": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts",
|
|
4836
|
-
"lineNumber":
|
|
4947
|
+
"lineNumber": 45
|
|
4837
4948
|
},
|
|
4838
4949
|
"Suggestion": {
|
|
4839
4950
|
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
4840
4951
|
"lineNumber": 17
|
|
4841
4952
|
},
|
|
4842
|
-
"
|
|
4953
|
+
"ForgeAiSuggestionsEventData": {
|
|
4843
4954
|
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
4844
4955
|
"lineNumber": 22
|
|
4845
4956
|
},
|
|
@@ -4851,11 +4962,19 @@
|
|
|
4851
4962
|
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
4852
4963
|
"lineNumber": 39
|
|
4853
4964
|
},
|
|
4965
|
+
"AiThinkingIndicatorComponent": {
|
|
4966
|
+
"path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
|
|
4967
|
+
"lineNumber": 24
|
|
4968
|
+
},
|
|
4969
|
+
"AiUserMessageComponent": {
|
|
4970
|
+
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
4971
|
+
"lineNumber": 17
|
|
4972
|
+
},
|
|
4854
4973
|
"Thread": {
|
|
4855
4974
|
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
4856
4975
|
"lineNumber": 19
|
|
4857
4976
|
},
|
|
4858
|
-
"
|
|
4977
|
+
"ForgeAiThreadsSelectEventData": {
|
|
4859
4978
|
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
4860
4979
|
"lineNumber": 26
|
|
4861
4980
|
},
|
|
@@ -4863,10 +4982,6 @@
|
|
|
4863
4982
|
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
4864
4983
|
"lineNumber": 40
|
|
4865
4984
|
},
|
|
4866
|
-
"AiUserMessageComponent": {
|
|
4867
|
-
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
4868
|
-
"lineNumber": 17
|
|
4869
|
-
},
|
|
4870
4985
|
"SpeechRecognitionAlternative": {
|
|
4871
4986
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
4872
4987
|
"lineNumber": 18
|
|
@@ -4887,7 +5002,7 @@
|
|
|
4887
5002
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
4888
5003
|
"lineNumber": 39
|
|
4889
5004
|
},
|
|
4890
|
-
"
|
|
5005
|
+
"ForgeAiVoiceInputResultEvent": {
|
|
4891
5006
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
4892
5007
|
"lineNumber": 61
|
|
4893
5008
|
},
|