@tylertech/forge-ai 0.11.5 → 0.11.7

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.
@@ -342,6 +342,176 @@
342
342
  }
343
343
  ]
344
344
  },
345
+ {
346
+ "kind": "javascript-module",
347
+ "path": "src/lib/ai-attachment/ai-attachment.ts",
348
+ "declarations": [
349
+ {
350
+ "kind": "variable",
351
+ "name": "AiAttachmentComponentTagName",
352
+ "type": {
353
+ "text": "keyof HTMLElementTagNameMap"
354
+ },
355
+ "default": "'forge-ai-attachment'"
356
+ },
357
+ {
358
+ "kind": "class",
359
+ "description": "",
360
+ "name": "AiAttachmentComponent",
361
+ "cssProperties": [
362
+ {
363
+ "description": "Background color of the attachment",
364
+ "name": "--forge-ai-attachment-background"
365
+ },
366
+ {
367
+ "description": "Border color of the attachment",
368
+ "name": "--forge-ai-attachment-border-color"
369
+ },
370
+ {
371
+ "description": "Padding inside the attachment",
372
+ "name": "--forge-ai-attachment-padding"
373
+ },
374
+ {
375
+ "description": "Gap between elements",
376
+ "name": "--forge-ai-attachment-gap"
377
+ }
378
+ ],
379
+ "members": [
380
+ {
381
+ "kind": "field",
382
+ "name": "filename",
383
+ "type": {
384
+ "text": "string"
385
+ },
386
+ "privacy": "public",
387
+ "default": "''",
388
+ "attribute": "filename"
389
+ },
390
+ {
391
+ "kind": "field",
392
+ "name": "size",
393
+ "type": {
394
+ "text": "number"
395
+ },
396
+ "privacy": "public",
397
+ "default": "0",
398
+ "attribute": "size"
399
+ },
400
+ {
401
+ "kind": "field",
402
+ "name": "removable",
403
+ "type": {
404
+ "text": "boolean"
405
+ },
406
+ "privacy": "public",
407
+ "default": "false",
408
+ "attribute": "removable"
409
+ },
410
+ {
411
+ "kind": "field",
412
+ "name": "uploading",
413
+ "type": {
414
+ "text": "boolean"
415
+ },
416
+ "privacy": "public",
417
+ "default": "false",
418
+ "attribute": "uploading"
419
+ },
420
+ {
421
+ "kind": "field",
422
+ "name": "progress",
423
+ "type": {
424
+ "text": "number | undefined"
425
+ },
426
+ "privacy": "public",
427
+ "attribute": "progress"
428
+ }
429
+ ],
430
+ "events": [
431
+ {
432
+ "name": "forge-ai-attachment-remove",
433
+ "type": {
434
+ "text": "CustomEvent<ForgeAiAttachmentRemoveEventData>"
435
+ },
436
+ "description": "Fired when the remove button is clicked"
437
+ }
438
+ ],
439
+ "attributes": [
440
+ {
441
+ "name": "filename",
442
+ "type": {
443
+ "text": "string"
444
+ },
445
+ "default": "''",
446
+ "fieldName": "filename"
447
+ },
448
+ {
449
+ "name": "size",
450
+ "type": {
451
+ "text": "number"
452
+ },
453
+ "default": "0",
454
+ "fieldName": "size"
455
+ },
456
+ {
457
+ "name": "removable",
458
+ "type": {
459
+ "text": "boolean"
460
+ },
461
+ "default": "false",
462
+ "fieldName": "removable"
463
+ },
464
+ {
465
+ "name": "uploading",
466
+ "type": {
467
+ "text": "boolean"
468
+ },
469
+ "default": "false",
470
+ "fieldName": "uploading"
471
+ },
472
+ {
473
+ "name": "progress",
474
+ "type": {
475
+ "text": "number | undefined"
476
+ },
477
+ "fieldName": "progress"
478
+ }
479
+ ],
480
+ "superclass": {
481
+ "name": "LitElement",
482
+ "package": "lit"
483
+ },
484
+ "tagName": "forge-ai-attachment",
485
+ "customElement": true,
486
+ "summary": "Displays file attachment information with removal capability."
487
+ }
488
+ ],
489
+ "exports": [
490
+ {
491
+ "kind": "js",
492
+ "name": "AiAttachmentComponentTagName",
493
+ "declaration": {
494
+ "name": "AiAttachmentComponentTagName",
495
+ "module": "src/lib/ai-attachment/ai-attachment.ts"
496
+ }
497
+ },
498
+ {
499
+ "kind": "js",
500
+ "name": "AiAttachmentComponent",
501
+ "declaration": {
502
+ "name": "AiAttachmentComponent",
503
+ "module": "src/lib/ai-attachment/ai-attachment.ts"
504
+ }
505
+ },
506
+ {
507
+ "kind": "custom-element-definition",
508
+ "declaration": {
509
+ "name": "AiAttachmentComponent",
510
+ "module": "src/lib/ai-attachment/ai-attachment.ts"
511
+ }
512
+ }
513
+ ]
514
+ },
345
515
  {
346
516
  "kind": "javascript-module",
347
517
  "path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
@@ -479,6 +649,81 @@
479
649
  }
480
650
  ]
481
651
  },
652
+ {
653
+ "kind": "javascript-module",
654
+ "path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
655
+ "declarations": [
656
+ {
657
+ "kind": "variable",
658
+ "name": "AiChainOfThoughtComponentTagName",
659
+ "type": {
660
+ "text": "keyof HTMLElementTagNameMap"
661
+ },
662
+ "default": "'forge-ai-chain-of-thought'"
663
+ },
664
+ {
665
+ "kind": "class",
666
+ "description": "",
667
+ "name": "AiChainOfThoughtComponent",
668
+ "members": [
669
+ {
670
+ "kind": "field",
671
+ "name": "expanded",
672
+ "type": {
673
+ "text": "boolean"
674
+ },
675
+ "privacy": "public",
676
+ "default": "false",
677
+ "description": "Whether the chain of thought is expanded",
678
+ "attribute": "expanded",
679
+ "reflects": true
680
+ }
681
+ ],
682
+ "attributes": [
683
+ {
684
+ "name": "expanded",
685
+ "type": {
686
+ "text": "boolean"
687
+ },
688
+ "default": "false",
689
+ "description": "Whether the chain of thought is expanded",
690
+ "fieldName": "expanded"
691
+ }
692
+ ],
693
+ "superclass": {
694
+ "name": "LitElement",
695
+ "package": "lit"
696
+ },
697
+ "tagName": "forge-ai-chain-of-thought",
698
+ "customElement": true
699
+ }
700
+ ],
701
+ "exports": [
702
+ {
703
+ "kind": "js",
704
+ "name": "AiChainOfThoughtComponentTagName",
705
+ "declaration": {
706
+ "name": "AiChainOfThoughtComponentTagName",
707
+ "module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
708
+ }
709
+ },
710
+ {
711
+ "kind": "js",
712
+ "name": "AiChainOfThoughtComponent",
713
+ "declaration": {
714
+ "name": "AiChainOfThoughtComponent",
715
+ "module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
716
+ }
717
+ },
718
+ {
719
+ "kind": "custom-element-definition",
720
+ "declaration": {
721
+ "name": "AiChainOfThoughtComponent",
722
+ "module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
723
+ }
724
+ }
725
+ ]
726
+ },
482
727
  {
483
728
  "kind": "javascript-module",
484
729
  "path": "src/lib/ai-button/ai-button.ts",
@@ -562,266 +807,21 @@
562
807
  },
563
808
  {
564
809
  "kind": "javascript-module",
565
- "path": "src/lib/ai-attachment/ai-attachment.ts",
810
+ "path": "src/lib/ai-chat-header/ai-chat-header.ts",
566
811
  "declarations": [
567
812
  {
568
813
  "kind": "variable",
569
- "name": "AiAttachmentComponentTagName",
814
+ "name": "AiChatHeaderComponentTagName",
570
815
  "type": {
571
816
  "text": "keyof HTMLElementTagNameMap"
572
817
  },
573
- "default": "'forge-ai-attachment'"
818
+ "default": "'forge-ai-chat-header'"
574
819
  },
575
820
  {
576
821
  "kind": "class",
577
822
  "description": "",
578
- "name": "AiAttachmentComponent",
579
- "cssProperties": [
580
- {
581
- "description": "Background color of the attachment",
582
- "name": "--forge-ai-attachment-background"
583
- },
584
- {
585
- "description": "Border color of the attachment",
586
- "name": "--forge-ai-attachment-border-color"
587
- },
588
- {
589
- "description": "Padding inside the attachment",
590
- "name": "--forge-ai-attachment-padding"
591
- },
592
- {
593
- "description": "Gap between elements",
594
- "name": "--forge-ai-attachment-gap"
595
- }
596
- ],
597
- "members": [
598
- {
599
- "kind": "field",
600
- "name": "filename",
601
- "type": {
602
- "text": "string"
603
- },
604
- "privacy": "public",
605
- "default": "''",
606
- "attribute": "filename"
607
- },
608
- {
609
- "kind": "field",
610
- "name": "size",
611
- "type": {
612
- "text": "number"
613
- },
614
- "privacy": "public",
615
- "default": "0",
616
- "attribute": "size"
617
- },
618
- {
619
- "kind": "field",
620
- "name": "removable",
621
- "type": {
622
- "text": "boolean"
623
- },
624
- "privacy": "public",
625
- "default": "false",
626
- "attribute": "removable"
627
- },
628
- {
629
- "kind": "field",
630
- "name": "uploading",
631
- "type": {
632
- "text": "boolean"
633
- },
634
- "privacy": "public",
635
- "default": "false",
636
- "attribute": "uploading"
637
- },
638
- {
639
- "kind": "field",
640
- "name": "progress",
641
- "type": {
642
- "text": "number | undefined"
643
- },
644
- "privacy": "public",
645
- "attribute": "progress"
646
- }
647
- ],
648
- "events": [
649
- {
650
- "name": "forge-ai-attachment-remove",
651
- "type": {
652
- "text": "CustomEvent<ForgeAiAttachmentRemoveEventData>"
653
- },
654
- "description": "Fired when the remove button is clicked"
655
- }
656
- ],
657
- "attributes": [
658
- {
659
- "name": "filename",
660
- "type": {
661
- "text": "string"
662
- },
663
- "default": "''",
664
- "fieldName": "filename"
665
- },
666
- {
667
- "name": "size",
668
- "type": {
669
- "text": "number"
670
- },
671
- "default": "0",
672
- "fieldName": "size"
673
- },
674
- {
675
- "name": "removable",
676
- "type": {
677
- "text": "boolean"
678
- },
679
- "default": "false",
680
- "fieldName": "removable"
681
- },
682
- {
683
- "name": "uploading",
684
- "type": {
685
- "text": "boolean"
686
- },
687
- "default": "false",
688
- "fieldName": "uploading"
689
- },
690
- {
691
- "name": "progress",
692
- "type": {
693
- "text": "number | undefined"
694
- },
695
- "fieldName": "progress"
696
- }
697
- ],
698
- "superclass": {
699
- "name": "LitElement",
700
- "package": "lit"
701
- },
702
- "tagName": "forge-ai-attachment",
703
- "customElement": true,
704
- "summary": "Displays file attachment information with removal capability."
705
- }
706
- ],
707
- "exports": [
708
- {
709
- "kind": "js",
710
- "name": "AiAttachmentComponentTagName",
711
- "declaration": {
712
- "name": "AiAttachmentComponentTagName",
713
- "module": "src/lib/ai-attachment/ai-attachment.ts"
714
- }
715
- },
716
- {
717
- "kind": "js",
718
- "name": "AiAttachmentComponent",
719
- "declaration": {
720
- "name": "AiAttachmentComponent",
721
- "module": "src/lib/ai-attachment/ai-attachment.ts"
722
- }
723
- },
724
- {
725
- "kind": "custom-element-definition",
726
- "declaration": {
727
- "name": "AiAttachmentComponent",
728
- "module": "src/lib/ai-attachment/ai-attachment.ts"
729
- }
730
- }
731
- ]
732
- },
733
- {
734
- "kind": "javascript-module",
735
- "path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
736
- "declarations": [
737
- {
738
- "kind": "variable",
739
- "name": "AiChainOfThoughtComponentTagName",
740
- "type": {
741
- "text": "keyof HTMLElementTagNameMap"
742
- },
743
- "default": "'forge-ai-chain-of-thought'"
744
- },
745
- {
746
- "kind": "class",
747
- "description": "",
748
- "name": "AiChainOfThoughtComponent",
749
- "members": [
750
- {
751
- "kind": "field",
752
- "name": "expanded",
753
- "type": {
754
- "text": "boolean"
755
- },
756
- "privacy": "public",
757
- "default": "false",
758
- "description": "Whether the chain of thought is expanded",
759
- "attribute": "expanded",
760
- "reflects": true
761
- }
762
- ],
763
- "attributes": [
764
- {
765
- "name": "expanded",
766
- "type": {
767
- "text": "boolean"
768
- },
769
- "default": "false",
770
- "description": "Whether the chain of thought is expanded",
771
- "fieldName": "expanded"
772
- }
773
- ],
774
- "superclass": {
775
- "name": "LitElement",
776
- "package": "lit"
777
- },
778
- "tagName": "forge-ai-chain-of-thought",
779
- "customElement": true
780
- }
781
- ],
782
- "exports": [
783
- {
784
- "kind": "js",
785
- "name": "AiChainOfThoughtComponentTagName",
786
- "declaration": {
787
- "name": "AiChainOfThoughtComponentTagName",
788
- "module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
789
- }
790
- },
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": [
823
+ "name": "AiChatHeaderComponent",
824
+ "slots": [
825
825
  {
826
826
  "description": "Slot for custom icon (default: forge-ai-icon)",
827
827
  "name": "icon"
@@ -4436,6 +4436,13 @@
4436
4436
  "description": "Fired when adapter disconnects",
4437
4437
  "name": "forge-ai-chatbot-disconnected"
4438
4438
  },
4439
+ {
4440
+ "type": {
4441
+ "text": "CustomEvent<void>"
4442
+ },
4443
+ "description": "Fired synchronously when a run starts, before the request is sent. Use this to set adapter context just-in-time.",
4444
+ "name": "forge-ai-chatbot-run-started"
4445
+ },
4439
4446
  {
4440
4447
  "type": {
4441
4448
  "text": "CustomEvent<ForgeAiChatbotMessageEventData>"
@@ -6940,20 +6947,93 @@
6940
6947
  },
6941
6948
  {
6942
6949
  "kind": "javascript-module",
6943
- "path": "src/lib/ai-embedded-chat/ai-embedded-chat.ts",
6950
+ "path": "src/lib/ai-empty-state/ai-empty-state.ts",
6944
6951
  "declarations": [
6945
6952
  {
6946
6953
  "kind": "variable",
6947
- "name": "AiEmbeddedChatComponentTagName",
6954
+ "name": "AiEmptyStateComponentTagName",
6948
6955
  "type": {
6949
6956
  "text": "keyof HTMLElementTagNameMap"
6950
6957
  },
6951
- "default": "'forge-ai-embedded-chat'"
6958
+ "default": "'forge-ai-empty-state'"
6952
6959
  },
6953
6960
  {
6954
6961
  "kind": "class",
6955
6962
  "description": "",
6956
- "name": "AiEmbeddedChatComponent",
6963
+ "name": "AiEmptyStateComponent",
6964
+ "slots": [
6965
+ {
6966
+ "description": "The welcome message content (overrides the default message).",
6967
+ "name": ""
6968
+ },
6969
+ {
6970
+ "description": "The custom icon/graphic to display.",
6971
+ "name": "icon"
6972
+ },
6973
+ {
6974
+ "description": "The custom heading/title to display.",
6975
+ "name": "heading"
6976
+ },
6977
+ {
6978
+ "description": "The custom body message content.",
6979
+ "name": "body"
6980
+ },
6981
+ {
6982
+ "description": "The actions or suggestions to display below the message.",
6983
+ "name": "actions"
6984
+ }
6985
+ ],
6986
+ "members": [],
6987
+ "superclass": {
6988
+ "name": "LitElement",
6989
+ "package": "lit"
6990
+ },
6991
+ "tagName": "forge-ai-empty-state",
6992
+ "customElement": true
6993
+ }
6994
+ ],
6995
+ "exports": [
6996
+ {
6997
+ "kind": "js",
6998
+ "name": "AiEmptyStateComponentTagName",
6999
+ "declaration": {
7000
+ "name": "AiEmptyStateComponentTagName",
7001
+ "module": "src/lib/ai-empty-state/ai-empty-state.ts"
7002
+ }
7003
+ },
7004
+ {
7005
+ "kind": "js",
7006
+ "name": "AiEmptyStateComponent",
7007
+ "declaration": {
7008
+ "name": "AiEmptyStateComponent",
7009
+ "module": "src/lib/ai-empty-state/ai-empty-state.ts"
7010
+ }
7011
+ },
7012
+ {
7013
+ "kind": "custom-element-definition",
7014
+ "declaration": {
7015
+ "name": "AiEmptyStateComponent",
7016
+ "module": "src/lib/ai-empty-state/ai-empty-state.ts"
7017
+ }
7018
+ }
7019
+ ]
7020
+ },
7021
+ {
7022
+ "kind": "javascript-module",
7023
+ "path": "src/lib/ai-embedded-chat/ai-embedded-chat.ts",
7024
+ "declarations": [
7025
+ {
7026
+ "kind": "variable",
7027
+ "name": "AiEmbeddedChatComponentTagName",
7028
+ "type": {
7029
+ "text": "keyof HTMLElementTagNameMap"
7030
+ },
7031
+ "default": "'forge-ai-embedded-chat'"
7032
+ },
7033
+ {
7034
+ "kind": "class",
7035
+ "description": "",
7036
+ "name": "AiEmbeddedChatComponent",
6957
7037
  "slots": [
6958
7038
  {
6959
7039
  "description": "Slot for custom header title content (default: \"AI Assistant\")",
@@ -7154,79 +7234,6 @@
7154
7234
  }
7155
7235
  ]
7156
7236
  },
7157
- {
7158
- "kind": "javascript-module",
7159
- "path": "src/lib/ai-empty-state/ai-empty-state.ts",
7160
- "declarations": [
7161
- {
7162
- "kind": "variable",
7163
- "name": "AiEmptyStateComponentTagName",
7164
- "type": {
7165
- "text": "keyof HTMLElementTagNameMap"
7166
- },
7167
- "default": "'forge-ai-empty-state'"
7168
- },
7169
- {
7170
- "kind": "class",
7171
- "description": "",
7172
- "name": "AiEmptyStateComponent",
7173
- "slots": [
7174
- {
7175
- "description": "The welcome message content (overrides the default message).",
7176
- "name": ""
7177
- },
7178
- {
7179
- "description": "The custom icon/graphic to display.",
7180
- "name": "icon"
7181
- },
7182
- {
7183
- "description": "The custom heading/title to display.",
7184
- "name": "heading"
7185
- },
7186
- {
7187
- "description": "The custom body message content.",
7188
- "name": "body"
7189
- },
7190
- {
7191
- "description": "The actions or suggestions to display below the message.",
7192
- "name": "actions"
7193
- }
7194
- ],
7195
- "members": [],
7196
- "superclass": {
7197
- "name": "LitElement",
7198
- "package": "lit"
7199
- },
7200
- "tagName": "forge-ai-empty-state",
7201
- "customElement": true
7202
- }
7203
- ],
7204
- "exports": [
7205
- {
7206
- "kind": "js",
7207
- "name": "AiEmptyStateComponentTagName",
7208
- "declaration": {
7209
- "name": "AiEmptyStateComponentTagName",
7210
- "module": "src/lib/ai-empty-state/ai-empty-state.ts"
7211
- }
7212
- },
7213
- {
7214
- "kind": "js",
7215
- "name": "AiEmptyStateComponent",
7216
- "declaration": {
7217
- "name": "AiEmptyStateComponent",
7218
- "module": "src/lib/ai-empty-state/ai-empty-state.ts"
7219
- }
7220
- },
7221
- {
7222
- "kind": "custom-element-definition",
7223
- "declaration": {
7224
- "name": "AiEmptyStateComponent",
7225
- "module": "src/lib/ai-empty-state/ai-empty-state.ts"
7226
- }
7227
- }
7228
- ]
7229
- },
7230
7237
  {
7231
7238
  "kind": "javascript-module",
7232
7239
  "path": "src/lib/ai-error-message/ai-error-message.ts",
@@ -9023,243 +9030,243 @@
9023
9030
  },
9024
9031
  {
9025
9032
  "kind": "javascript-module",
9026
- "path": "src/lib/ai-sidebar/ai-sidebar.ts",
9033
+ "path": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts",
9027
9034
  "declarations": [
9028
9035
  {
9029
9036
  "kind": "variable",
9030
- "name": "AiSidebarComponentTagName",
9037
+ "name": "AiResponseMessageToolbarComponentTagName",
9031
9038
  "type": {
9032
9039
  "text": "keyof HTMLElementTagNameMap"
9033
9040
  },
9034
- "default": "'forge-ai-sidebar'"
9041
+ "default": "'forge-ai-response-message-toolbar'"
9035
9042
  },
9036
9043
  {
9037
9044
  "kind": "class",
9038
9045
  "description": "",
9039
- "name": "AiSidebarComponent",
9040
- "slots": [
9041
- {
9042
- "description": "Default slot for sidebar content (typically ai-chat-interface)",
9043
- "name": ""
9044
- }
9045
- ],
9046
+ "name": "AiResponseMessageToolbarComponent",
9046
9047
  "members": [
9047
9048
  {
9048
9049
  "kind": "field",
9049
- "name": "open",
9050
+ "name": "enableReactions",
9050
9051
  "type": {
9051
9052
  "text": "boolean"
9052
9053
  },
9053
9054
  "privacy": "public",
9054
9055
  "default": "false",
9055
- "description": "Indicates whether the sidebar is open.",
9056
- "attribute": "open"
9056
+ "attribute": "enable-reactions"
9057
9057
  },
9058
9058
  {
9059
- "kind": "method",
9060
- "name": "show",
9061
- "privacy": "public",
9062
- "return": {
9063
- "type": {
9064
- "text": "void"
9065
- }
9059
+ "kind": "field",
9060
+ "name": "feedbackType",
9061
+ "type": {
9062
+ "text": "FeedbackType | undefined"
9066
9063
  },
9067
- "description": "Opens the sidebar."
9068
- },
9069
- {
9070
- "kind": "method",
9071
- "name": "close",
9072
9064
  "privacy": "public",
9073
- "return": {
9074
- "type": {
9075
- "text": "void"
9076
- }
9077
- },
9078
- "description": "Closes the sidebar."
9065
+ "attribute": "feedback-type"
9079
9066
  },
9080
9067
  {
9081
- "kind": "method",
9082
- "name": "toggle",
9083
- "privacy": "public",
9084
- "return": {
9085
- "type": {
9086
- "text": "void"
9087
- }
9068
+ "kind": "field",
9069
+ "name": "feedbackReason",
9070
+ "type": {
9071
+ "text": "string | undefined"
9088
9072
  },
9089
- "description": "Toggles the sidebar open state."
9073
+ "privacy": "public",
9074
+ "attribute": "feedback-reason"
9090
9075
  }
9091
9076
  ],
9092
9077
  "events": [
9093
9078
  {
9094
- "description": "Fired when the sidebar is opened",
9095
- "name": "forge-ai-sidebar-open"
9079
+ "type": {
9080
+ "text": "CustomEvent<ForgeAiResponseMessageToolbarActionEventData>"
9081
+ },
9082
+ "description": "Fired when an action button is clicked. The detail contains the action type.",
9083
+ "name": "forge-ai-response-message-toolbar-action"
9096
9084
  },
9097
9085
  {
9098
- "description": "Fired when the sidebar is closed",
9099
- "name": "forge-ai-sidebar-close"
9086
+ "type": {
9087
+ "text": "CustomEvent<ForgeAiResponseMessageToolbarFeedbackEventData>"
9088
+ },
9089
+ "description": "Fired when feedback is submitted. The detail contains the action and optional feedback text.",
9090
+ "name": "forge-ai-response-message-toolbar-feedback"
9100
9091
  }
9101
9092
  ],
9102
9093
  "attributes": [
9103
9094
  {
9104
- "name": "open",
9095
+ "name": "enable-reactions",
9105
9096
  "type": {
9106
9097
  "text": "boolean"
9107
9098
  },
9108
9099
  "default": "false",
9109
- "description": "Indicates whether the sidebar is open.",
9110
- "fieldName": "open"
9100
+ "fieldName": "enableReactions"
9101
+ },
9102
+ {
9103
+ "name": "feedback-type",
9104
+ "type": {
9105
+ "text": "FeedbackType | undefined"
9106
+ },
9107
+ "fieldName": "feedbackType"
9108
+ },
9109
+ {
9110
+ "name": "feedback-reason",
9111
+ "type": {
9112
+ "text": "string | undefined"
9113
+ },
9114
+ "fieldName": "feedbackReason"
9111
9115
  }
9112
9116
  ],
9113
9117
  "superclass": {
9114
9118
  "name": "LitElement",
9115
9119
  "package": "lit"
9116
9120
  },
9117
- "tagName": "forge-ai-sidebar",
9121
+ "tagName": "forge-ai-response-message-toolbar",
9118
9122
  "customElement": true
9119
9123
  }
9120
9124
  ],
9121
9125
  "exports": [
9122
9126
  {
9123
9127
  "kind": "js",
9124
- "name": "AiSidebarComponentTagName",
9128
+ "name": "AiResponseMessageToolbarComponentTagName",
9125
9129
  "declaration": {
9126
- "name": "AiSidebarComponentTagName",
9127
- "module": "src/lib/ai-sidebar/ai-sidebar.ts"
9130
+ "name": "AiResponseMessageToolbarComponentTagName",
9131
+ "module": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts"
9128
9132
  }
9129
9133
  },
9130
9134
  {
9131
9135
  "kind": "js",
9132
- "name": "AiSidebarComponent",
9136
+ "name": "AiResponseMessageToolbarComponent",
9133
9137
  "declaration": {
9134
- "name": "AiSidebarComponent",
9135
- "module": "src/lib/ai-sidebar/ai-sidebar.ts"
9138
+ "name": "AiResponseMessageToolbarComponent",
9139
+ "module": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts"
9136
9140
  }
9137
9141
  },
9138
9142
  {
9139
9143
  "kind": "custom-element-definition",
9140
9144
  "declaration": {
9141
- "name": "AiSidebarComponent",
9142
- "module": "src/lib/ai-sidebar/ai-sidebar.ts"
9145
+ "name": "AiResponseMessageToolbarComponent",
9146
+ "module": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts"
9143
9147
  }
9144
9148
  }
9145
9149
  ]
9146
9150
  },
9147
9151
  {
9148
9152
  "kind": "javascript-module",
9149
- "path": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts",
9153
+ "path": "src/lib/ai-sidebar/ai-sidebar.ts",
9150
9154
  "declarations": [
9151
9155
  {
9152
9156
  "kind": "variable",
9153
- "name": "AiResponseMessageToolbarComponentTagName",
9157
+ "name": "AiSidebarComponentTagName",
9154
9158
  "type": {
9155
9159
  "text": "keyof HTMLElementTagNameMap"
9156
9160
  },
9157
- "default": "'forge-ai-response-message-toolbar'"
9161
+ "default": "'forge-ai-sidebar'"
9158
9162
  },
9159
9163
  {
9160
9164
  "kind": "class",
9161
9165
  "description": "",
9162
- "name": "AiResponseMessageToolbarComponent",
9166
+ "name": "AiSidebarComponent",
9167
+ "slots": [
9168
+ {
9169
+ "description": "Default slot for sidebar content (typically ai-chat-interface)",
9170
+ "name": ""
9171
+ }
9172
+ ],
9163
9173
  "members": [
9164
9174
  {
9165
9175
  "kind": "field",
9166
- "name": "enableReactions",
9176
+ "name": "open",
9167
9177
  "type": {
9168
9178
  "text": "boolean"
9169
9179
  },
9170
9180
  "privacy": "public",
9171
9181
  "default": "false",
9172
- "attribute": "enable-reactions"
9182
+ "description": "Indicates whether the sidebar is open.",
9183
+ "attribute": "open"
9173
9184
  },
9174
9185
  {
9175
- "kind": "field",
9176
- "name": "feedbackType",
9177
- "type": {
9178
- "text": "FeedbackType | undefined"
9179
- },
9186
+ "kind": "method",
9187
+ "name": "show",
9180
9188
  "privacy": "public",
9181
- "attribute": "feedback-type"
9189
+ "return": {
9190
+ "type": {
9191
+ "text": "void"
9192
+ }
9193
+ },
9194
+ "description": "Opens the sidebar."
9182
9195
  },
9183
9196
  {
9184
- "kind": "field",
9185
- "name": "feedbackReason",
9186
- "type": {
9187
- "text": "string | undefined"
9197
+ "kind": "method",
9198
+ "name": "close",
9199
+ "privacy": "public",
9200
+ "return": {
9201
+ "type": {
9202
+ "text": "void"
9203
+ }
9188
9204
  },
9205
+ "description": "Closes the sidebar."
9206
+ },
9207
+ {
9208
+ "kind": "method",
9209
+ "name": "toggle",
9189
9210
  "privacy": "public",
9190
- "attribute": "feedback-reason"
9211
+ "return": {
9212
+ "type": {
9213
+ "text": "void"
9214
+ }
9215
+ },
9216
+ "description": "Toggles the sidebar open state."
9191
9217
  }
9192
9218
  ],
9193
9219
  "events": [
9194
9220
  {
9195
- "type": {
9196
- "text": "CustomEvent<ForgeAiResponseMessageToolbarActionEventData>"
9197
- },
9198
- "description": "Fired when an action button is clicked. The detail contains the action type.",
9199
- "name": "forge-ai-response-message-toolbar-action"
9221
+ "description": "Fired when the sidebar is opened",
9222
+ "name": "forge-ai-sidebar-open"
9200
9223
  },
9201
9224
  {
9202
- "type": {
9203
- "text": "CustomEvent<ForgeAiResponseMessageToolbarFeedbackEventData>"
9204
- },
9205
- "description": "Fired when feedback is submitted. The detail contains the action and optional feedback text.",
9206
- "name": "forge-ai-response-message-toolbar-feedback"
9225
+ "description": "Fired when the sidebar is closed",
9226
+ "name": "forge-ai-sidebar-close"
9207
9227
  }
9208
9228
  ],
9209
9229
  "attributes": [
9210
9230
  {
9211
- "name": "enable-reactions",
9231
+ "name": "open",
9212
9232
  "type": {
9213
9233
  "text": "boolean"
9214
9234
  },
9215
9235
  "default": "false",
9216
- "fieldName": "enableReactions"
9217
- },
9218
- {
9219
- "name": "feedback-type",
9220
- "type": {
9221
- "text": "FeedbackType | undefined"
9222
- },
9223
- "fieldName": "feedbackType"
9224
- },
9225
- {
9226
- "name": "feedback-reason",
9227
- "type": {
9228
- "text": "string | undefined"
9229
- },
9230
- "fieldName": "feedbackReason"
9236
+ "description": "Indicates whether the sidebar is open.",
9237
+ "fieldName": "open"
9231
9238
  }
9232
9239
  ],
9233
9240
  "superclass": {
9234
9241
  "name": "LitElement",
9235
9242
  "package": "lit"
9236
9243
  },
9237
- "tagName": "forge-ai-response-message-toolbar",
9244
+ "tagName": "forge-ai-sidebar",
9238
9245
  "customElement": true
9239
9246
  }
9240
9247
  ],
9241
9248
  "exports": [
9242
9249
  {
9243
9250
  "kind": "js",
9244
- "name": "AiResponseMessageToolbarComponentTagName",
9251
+ "name": "AiSidebarComponentTagName",
9245
9252
  "declaration": {
9246
- "name": "AiResponseMessageToolbarComponentTagName",
9247
- "module": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts"
9253
+ "name": "AiSidebarComponentTagName",
9254
+ "module": "src/lib/ai-sidebar/ai-sidebar.ts"
9248
9255
  }
9249
9256
  },
9250
9257
  {
9251
9258
  "kind": "js",
9252
- "name": "AiResponseMessageToolbarComponent",
9259
+ "name": "AiSidebarComponent",
9253
9260
  "declaration": {
9254
- "name": "AiResponseMessageToolbarComponent",
9255
- "module": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts"
9261
+ "name": "AiSidebarComponent",
9262
+ "module": "src/lib/ai-sidebar/ai-sidebar.ts"
9256
9263
  }
9257
9264
  },
9258
9265
  {
9259
9266
  "kind": "custom-element-definition",
9260
9267
  "declaration": {
9261
- "name": "AiResponseMessageToolbarComponent",
9262
- "module": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts"
9268
+ "name": "AiSidebarComponent",
9269
+ "module": "src/lib/ai-sidebar/ai-sidebar.ts"
9263
9270
  }
9264
9271
  }
9265
9272
  ]
@@ -11106,167 +11113,167 @@
11106
11113
  },
11107
11114
  {
11108
11115
  "kind": "javascript-module",
11109
- "path": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts",
11116
+ "path": "src/lib/ai-prompt/prompt-button/prompt-button.ts",
11110
11117
  "declarations": [
11111
11118
  {
11112
11119
  "kind": "variable",
11113
- "name": "ThoughtSearchResultComponentTagName",
11120
+ "name": "PromptButtonComponentTagName",
11114
11121
  "type": {
11115
11122
  "text": "keyof HTMLElementTagNameMap"
11116
11123
  },
11117
- "default": "'forge-ai-thought-search-result'"
11124
+ "default": "'forge-prompt-button'"
11118
11125
  },
11119
11126
  {
11120
11127
  "kind": "class",
11121
11128
  "description": "",
11122
- "name": "ThoughtSearchResultComponent",
11129
+ "name": "PromptButtonComponent",
11123
11130
  "members": [
11124
11131
  {
11125
11132
  "kind": "field",
11126
- "name": "step",
11127
- "type": {
11128
- "text": "number | undefined"
11129
- },
11130
- "privacy": "public",
11131
- "description": "The step number for this thought search result",
11132
- "attribute": "step"
11133
- },
11134
- {
11135
- "kind": "field",
11136
- "name": "sources",
11133
+ "name": "disabled",
11137
11134
  "type": {
11138
- "text": "Source[]"
11135
+ "text": "boolean"
11139
11136
  },
11140
11137
  "privacy": "public",
11141
- "default": "[]",
11142
- "description": "Array of sources for the search result",
11143
- "attribute": "sources"
11138
+ "default": "false",
11139
+ "description": "Whether the button is disabled",
11140
+ "attribute": "disabled",
11141
+ "reflects": true
11144
11142
  }
11145
11143
  ],
11146
11144
  "attributes": [
11147
11145
  {
11148
- "name": "step",
11149
- "type": {
11150
- "text": "number | undefined"
11151
- },
11152
- "description": "The step number for this thought search result",
11153
- "fieldName": "step"
11154
- },
11155
- {
11156
- "name": "sources",
11146
+ "name": "disabled",
11157
11147
  "type": {
11158
- "text": "Source[]"
11148
+ "text": "boolean"
11159
11149
  },
11160
- "default": "[]",
11161
- "description": "Array of sources for the search result",
11162
- "fieldName": "sources"
11150
+ "default": "false",
11151
+ "description": "Whether the button is disabled",
11152
+ "fieldName": "disabled"
11163
11153
  }
11164
11154
  ],
11165
11155
  "superclass": {
11166
11156
  "name": "LitElement",
11167
11157
  "package": "lit"
11168
11158
  },
11169
- "tagName": "forge-ai-thought-search-result",
11159
+ "tagName": "forge-prompt-button",
11170
11160
  "customElement": true
11171
11161
  }
11172
11162
  ],
11173
11163
  "exports": [
11174
11164
  {
11175
11165
  "kind": "js",
11176
- "name": "ThoughtSearchResultComponentTagName",
11166
+ "name": "PromptButtonComponentTagName",
11177
11167
  "declaration": {
11178
- "name": "ThoughtSearchResultComponentTagName",
11179
- "module": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts"
11168
+ "name": "PromptButtonComponentTagName",
11169
+ "module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
11180
11170
  }
11181
11171
  },
11182
11172
  {
11183
11173
  "kind": "js",
11184
- "name": "ThoughtSearchResultComponent",
11174
+ "name": "PromptButtonComponent",
11185
11175
  "declaration": {
11186
- "name": "ThoughtSearchResultComponent",
11187
- "module": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts"
11176
+ "name": "PromptButtonComponent",
11177
+ "module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
11188
11178
  }
11189
11179
  },
11190
11180
  {
11191
11181
  "kind": "custom-element-definition",
11192
11182
  "declaration": {
11193
- "name": "ThoughtSearchResultComponent",
11194
- "module": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts"
11183
+ "name": "PromptButtonComponent",
11184
+ "module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
11195
11185
  }
11196
11186
  }
11197
11187
  ]
11198
11188
  },
11199
11189
  {
11200
11190
  "kind": "javascript-module",
11201
- "path": "src/lib/ai-prompt/prompt-button/prompt-button.ts",
11191
+ "path": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts",
11202
11192
  "declarations": [
11203
11193
  {
11204
11194
  "kind": "variable",
11205
- "name": "PromptButtonComponentTagName",
11195
+ "name": "ThoughtSearchResultComponentTagName",
11206
11196
  "type": {
11207
11197
  "text": "keyof HTMLElementTagNameMap"
11208
11198
  },
11209
- "default": "'forge-prompt-button'"
11199
+ "default": "'forge-ai-thought-search-result'"
11210
11200
  },
11211
11201
  {
11212
11202
  "kind": "class",
11213
11203
  "description": "",
11214
- "name": "PromptButtonComponent",
11204
+ "name": "ThoughtSearchResultComponent",
11215
11205
  "members": [
11216
11206
  {
11217
11207
  "kind": "field",
11218
- "name": "disabled",
11208
+ "name": "step",
11219
11209
  "type": {
11220
- "text": "boolean"
11210
+ "text": "number | undefined"
11221
11211
  },
11222
11212
  "privacy": "public",
11223
- "default": "false",
11224
- "description": "Whether the button is disabled",
11225
- "attribute": "disabled",
11226
- "reflects": true
11213
+ "description": "The step number for this thought search result",
11214
+ "attribute": "step"
11215
+ },
11216
+ {
11217
+ "kind": "field",
11218
+ "name": "sources",
11219
+ "type": {
11220
+ "text": "Source[]"
11221
+ },
11222
+ "privacy": "public",
11223
+ "default": "[]",
11224
+ "description": "Array of sources for the search result",
11225
+ "attribute": "sources"
11227
11226
  }
11228
11227
  ],
11229
11228
  "attributes": [
11230
11229
  {
11231
- "name": "disabled",
11230
+ "name": "step",
11232
11231
  "type": {
11233
- "text": "boolean"
11232
+ "text": "number | undefined"
11234
11233
  },
11235
- "default": "false",
11236
- "description": "Whether the button is disabled",
11237
- "fieldName": "disabled"
11234
+ "description": "The step number for this thought search result",
11235
+ "fieldName": "step"
11236
+ },
11237
+ {
11238
+ "name": "sources",
11239
+ "type": {
11240
+ "text": "Source[]"
11241
+ },
11242
+ "default": "[]",
11243
+ "description": "Array of sources for the search result",
11244
+ "fieldName": "sources"
11238
11245
  }
11239
11246
  ],
11240
11247
  "superclass": {
11241
11248
  "name": "LitElement",
11242
11249
  "package": "lit"
11243
11250
  },
11244
- "tagName": "forge-prompt-button",
11251
+ "tagName": "forge-ai-thought-search-result",
11245
11252
  "customElement": true
11246
11253
  }
11247
11254
  ],
11248
11255
  "exports": [
11249
11256
  {
11250
11257
  "kind": "js",
11251
- "name": "PromptButtonComponentTagName",
11258
+ "name": "ThoughtSearchResultComponentTagName",
11252
11259
  "declaration": {
11253
- "name": "PromptButtonComponentTagName",
11254
- "module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
11260
+ "name": "ThoughtSearchResultComponentTagName",
11261
+ "module": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts"
11255
11262
  }
11256
11263
  },
11257
11264
  {
11258
11265
  "kind": "js",
11259
- "name": "PromptButtonComponent",
11266
+ "name": "ThoughtSearchResultComponent",
11260
11267
  "declaration": {
11261
- "name": "PromptButtonComponent",
11262
- "module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
11268
+ "name": "ThoughtSearchResultComponent",
11269
+ "module": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts"
11263
11270
  }
11264
11271
  },
11265
11272
  {
11266
11273
  "kind": "custom-element-definition",
11267
11274
  "declaration": {
11268
- "name": "PromptButtonComponent",
11269
- "module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
11275
+ "name": "ThoughtSearchResultComponent",
11276
+ "module": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts"
11270
11277
  }
11271
11278
  }
11272
11279
  ]
@@ -11405,303 +11412,64 @@
11405
11412
  "attribute": "arrowElement"
11406
11413
  },
11407
11414
  {
11408
- "kind": "field",
11409
- "name": "offset",
11410
- "type": {
11411
- "text": "OverlayOffset | undefined"
11412
- },
11413
- "privacy": "public",
11414
- "default": "undefined",
11415
- "description": "The offset of the overlay from the anchor element.\nCan be a number (main axis offset) or an object with mainAxis, crossAxis, and alignmentAxis properties.",
11416
- "attribute": "offset"
11417
- },
11418
- {
11419
- "kind": "field",
11420
- "name": "dismissMode",
11421
- "type": {
11422
- "text": "'auto' | 'manual'"
11423
- },
11424
- "privacy": "public",
11425
- "default": "'auto'",
11426
- "description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
11427
- "attribute": "dismiss-mode"
11428
- }
11429
- ],
11430
- "attributes": [
11431
- {
11432
- "name": "anchor",
11433
- "type": {
11434
- "text": "Element | null"
11435
- },
11436
- "default": "null",
11437
- "description": "The anchor element to position the overlay relative to.",
11438
- "fieldName": "anchor"
11439
- },
11440
- {
11441
- "name": "placement",
11442
- "type": {
11443
- "text": "OverlayPlacement"
11444
- },
11445
- "default": "'bottom-start'",
11446
- "description": "The placement of the overlay relative to the anchor.",
11447
- "fieldName": "placement"
11448
- },
11449
- {
11450
- "name": "flip",
11451
- "type": {
11452
- "text": "boolean"
11453
- },
11454
- "default": "true",
11455
- "description": "Whether the overlay should flip to the opposite side when there's no space.",
11456
- "fieldName": "flip"
11457
- },
11458
- {
11459
- "name": "shift",
11460
- "type": {
11461
- "text": "boolean"
11462
- },
11463
- "default": "false",
11464
- "description": "Whether the overlay should shift to stay in view.",
11465
- "fieldName": "shift"
11466
- },
11467
- {
11468
- "name": "open",
11469
- "type": {
11470
- "text": "boolean"
11471
- },
11472
- "default": "false",
11473
- "description": "Whether the overlay is open.",
11474
- "fieldName": "open"
11475
- },
11476
- {
11477
- "name": "arrowElement",
11478
- "type": {
11479
- "text": "HTMLElement | null"
11480
- },
11481
- "default": "null",
11482
- "description": "The arrow element to position relative to the overlay.",
11483
- "fieldName": "arrowElement"
11484
- },
11485
- {
11486
- "name": "offset",
11487
- "type": {
11488
- "text": "OverlayOffset | undefined"
11489
- },
11490
- "default": "undefined",
11491
- "description": "The offset of the overlay from the anchor element.\nCan be a number (main axis offset) or an object with mainAxis, crossAxis, and alignmentAxis properties.",
11492
- "fieldName": "offset"
11493
- },
11494
- {
11495
- "name": "dismiss-mode",
11496
- "type": {
11497
- "text": "'auto' | 'manual'"
11498
- },
11499
- "default": "'auto'",
11500
- "description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
11501
- "fieldName": "dismissMode"
11502
- }
11503
- ],
11504
- "superclass": {
11505
- "name": "LitElement",
11506
- "package": "lit"
11507
- },
11508
- "summary": "A low-level overlay component for internal use within AI components.",
11509
- "tagName": "forge-ai-overlay",
11510
- "customElement": true
11511
- }
11512
- ],
11513
- "exports": [
11514
- {
11515
- "kind": "js",
11516
- "name": "ForgeAiOverlayComponent",
11517
- "declaration": {
11518
- "name": "ForgeAiOverlayComponent",
11519
- "module": "src/lib/core/overlay/overlay.ts"
11520
- }
11521
- },
11522
- {
11523
- "kind": "custom-element-definition",
11524
- "name": "forge-ai-overlay",
11525
- "declaration": {
11526
- "name": "ForgeAiOverlayComponent",
11527
- "module": "src/lib/core/overlay/overlay.ts"
11528
- }
11529
- }
11530
- ]
11531
- },
11532
- {
11533
- "kind": "javascript-module",
11534
- "path": "src/lib/core/tooltip/tooltip.ts",
11535
- "declarations": [
11536
- {
11537
- "kind": "class",
11538
- "description": "",
11539
- "name": "ForgeAiTooltipComponent",
11540
- "cssProperties": [
11541
- {
11542
- "description": "The maximum width of the tooltip.",
11543
- "name": "--forge-ai-tooltip-max-width"
11544
- },
11545
- {
11546
- "description": "The z-index of the tooltip overlay.",
11547
- "name": "--forge-ai-tooltip-z-index"
11548
- }
11549
- ],
11550
- "slots": [
11551
- {
11552
- "description": "The default slot for tooltip content.",
11553
- "name": ""
11554
- }
11555
- ],
11556
- "members": [
11557
- {
11558
- "kind": "field",
11559
- "name": "for",
11560
- "type": {
11561
- "text": "string"
11562
- },
11563
- "privacy": "public",
11564
- "default": "''",
11565
- "description": "The ID of the anchor element to attach the tooltip to.",
11566
- "attribute": "for"
11567
- },
11568
- {
11569
- "kind": "field",
11570
- "name": "text",
11571
- "type": {
11572
- "text": "string"
11573
- },
11574
- "privacy": "public",
11575
- "default": "''",
11576
- "description": "The text content of the tooltip (alternative to slotted content).",
11577
- "attribute": "text"
11578
- },
11579
- {
11580
- "kind": "field",
11581
- "name": "placement",
11582
- "type": {
11583
- "text": "TooltipPlacement"
11584
- },
11585
- "privacy": "public",
11586
- "default": "'top'",
11587
- "description": "The placement of the tooltip relative to the anchor.",
11588
- "attribute": "placement"
11589
- },
11590
- {
11591
- "kind": "field",
11592
- "name": "trigger",
11593
- "type": {
11594
- "text": "TooltipTrigger"
11595
- },
11596
- "privacy": "public",
11597
- "default": "'hover'",
11598
- "description": "How the tooltip should be triggered.",
11599
- "attribute": "trigger"
11600
- },
11601
- {
11602
- "kind": "field",
11603
- "name": "open",
11604
- "type": {
11605
- "text": "boolean"
11606
- },
11607
- "privacy": "public",
11608
- "default": "false",
11609
- "description": "Whether the tooltip is open.",
11610
- "attribute": "open",
11611
- "reflects": true
11612
- },
11613
- {
11614
- "kind": "field",
11615
- "name": "delay",
11616
- "type": {
11617
- "text": "number"
11618
- },
11619
- "privacy": "public",
11620
- "default": "500",
11621
- "description": "Delay in milliseconds before showing the tooltip.",
11622
- "attribute": "delay"
11623
- },
11624
- {
11625
- "kind": "field",
11626
- "name": "hideDelay",
11627
- "type": {
11628
- "text": "number"
11629
- },
11630
- "privacy": "public",
11631
- "default": "0",
11632
- "description": "Delay in milliseconds before hiding the tooltip.",
11633
- "attribute": "hide-delay"
11634
- },
11635
- {
11636
- "kind": "method",
11637
- "name": "show",
11638
- "privacy": "public",
11639
- "return": {
11640
- "type": {
11641
- "text": "void"
11642
- }
11643
- },
11644
- "description": "Show the tooltip programmatically."
11645
- },
11646
- {
11647
- "kind": "method",
11648
- "name": "hide",
11649
- "privacy": "public",
11650
- "return": {
11651
- "type": {
11652
- "text": "void"
11653
- }
11415
+ "kind": "field",
11416
+ "name": "offset",
11417
+ "type": {
11418
+ "text": "OverlayOffset | undefined"
11654
11419
  },
11655
- "description": "Hide the tooltip programmatically."
11420
+ "privacy": "public",
11421
+ "default": "undefined",
11422
+ "description": "The offset of the overlay from the anchor element.\nCan be a number (main axis offset) or an object with mainAxis, crossAxis, and alignmentAxis properties.",
11423
+ "attribute": "offset"
11656
11424
  },
11657
11425
  {
11658
- "kind": "method",
11659
- "name": "toggle",
11660
- "privacy": "public",
11661
- "return": {
11662
- "type": {
11663
- "text": "void"
11664
- }
11426
+ "kind": "field",
11427
+ "name": "dismissMode",
11428
+ "type": {
11429
+ "text": "'auto' | 'manual'"
11665
11430
  },
11666
- "description": "Toggle the tooltip programmatically."
11431
+ "privacy": "public",
11432
+ "default": "'auto'",
11433
+ "description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
11434
+ "attribute": "dismiss-mode"
11667
11435
  }
11668
11436
  ],
11669
11437
  "attributes": [
11670
11438
  {
11671
- "name": "for",
11439
+ "name": "anchor",
11672
11440
  "type": {
11673
- "text": "string"
11441
+ "text": "Element | null"
11674
11442
  },
11675
- "default": "''",
11676
- "description": "The ID of the anchor element to attach the tooltip to.",
11677
- "fieldName": "for"
11443
+ "default": "null",
11444
+ "description": "The anchor element to position the overlay relative to.",
11445
+ "fieldName": "anchor"
11678
11446
  },
11679
11447
  {
11680
- "name": "text",
11448
+ "name": "placement",
11681
11449
  "type": {
11682
- "text": "string"
11450
+ "text": "OverlayPlacement"
11683
11451
  },
11684
- "default": "''",
11685
- "description": "The text content of the tooltip (alternative to slotted content).",
11686
- "fieldName": "text"
11452
+ "default": "'bottom-start'",
11453
+ "description": "The placement of the overlay relative to the anchor.",
11454
+ "fieldName": "placement"
11687
11455
  },
11688
11456
  {
11689
- "name": "placement",
11457
+ "name": "flip",
11690
11458
  "type": {
11691
- "text": "TooltipPlacement"
11459
+ "text": "boolean"
11692
11460
  },
11693
- "default": "'top'",
11694
- "description": "The placement of the tooltip relative to the anchor.",
11695
- "fieldName": "placement"
11461
+ "default": "true",
11462
+ "description": "Whether the overlay should flip to the opposite side when there's no space.",
11463
+ "fieldName": "flip"
11696
11464
  },
11697
11465
  {
11698
- "name": "trigger",
11466
+ "name": "shift",
11699
11467
  "type": {
11700
- "text": "TooltipTrigger"
11468
+ "text": "boolean"
11701
11469
  },
11702
- "default": "'hover'",
11703
- "description": "How the tooltip should be triggered.",
11704
- "fieldName": "trigger"
11470
+ "default": "false",
11471
+ "description": "Whether the overlay should shift to stay in view.",
11472
+ "fieldName": "shift"
11705
11473
  },
11706
11474
  {
11707
11475
  "name": "open",
@@ -11709,52 +11477,61 @@
11709
11477
  "text": "boolean"
11710
11478
  },
11711
11479
  "default": "false",
11712
- "description": "Whether the tooltip is open.",
11480
+ "description": "Whether the overlay is open.",
11713
11481
  "fieldName": "open"
11714
11482
  },
11715
11483
  {
11716
- "name": "delay",
11484
+ "name": "arrowElement",
11717
11485
  "type": {
11718
- "text": "number"
11486
+ "text": "HTMLElement | null"
11719
11487
  },
11720
- "default": "500",
11721
- "description": "Delay in milliseconds before showing the tooltip.",
11722
- "fieldName": "delay"
11488
+ "default": "null",
11489
+ "description": "The arrow element to position relative to the overlay.",
11490
+ "fieldName": "arrowElement"
11723
11491
  },
11724
11492
  {
11725
- "name": "hide-delay",
11493
+ "name": "offset",
11726
11494
  "type": {
11727
- "text": "number"
11495
+ "text": "OverlayOffset | undefined"
11728
11496
  },
11729
- "default": "0",
11730
- "description": "Delay in milliseconds before hiding the tooltip.",
11731
- "fieldName": "hideDelay"
11497
+ "default": "undefined",
11498
+ "description": "The offset of the overlay from the anchor element.\nCan be a number (main axis offset) or an object with mainAxis, crossAxis, and alignmentAxis properties.",
11499
+ "fieldName": "offset"
11500
+ },
11501
+ {
11502
+ "name": "dismiss-mode",
11503
+ "type": {
11504
+ "text": "'auto' | 'manual'"
11505
+ },
11506
+ "default": "'auto'",
11507
+ "description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
11508
+ "fieldName": "dismissMode"
11732
11509
  }
11733
11510
  ],
11734
11511
  "superclass": {
11735
11512
  "name": "LitElement",
11736
11513
  "package": "lit"
11737
11514
  },
11738
- "summary": "A tooltip component with accessibility features and dynamic positioning.",
11739
- "tagName": "forge-ai-tooltip",
11515
+ "summary": "A low-level overlay component for internal use within AI components.",
11516
+ "tagName": "forge-ai-overlay",
11740
11517
  "customElement": true
11741
11518
  }
11742
11519
  ],
11743
11520
  "exports": [
11744
11521
  {
11745
11522
  "kind": "js",
11746
- "name": "ForgeAiTooltipComponent",
11523
+ "name": "ForgeAiOverlayComponent",
11747
11524
  "declaration": {
11748
- "name": "ForgeAiTooltipComponent",
11749
- "module": "src/lib/core/tooltip/tooltip.ts"
11525
+ "name": "ForgeAiOverlayComponent",
11526
+ "module": "src/lib/core/overlay/overlay.ts"
11750
11527
  }
11751
11528
  },
11752
11529
  {
11753
11530
  "kind": "custom-element-definition",
11754
- "name": "forge-ai-tooltip",
11531
+ "name": "forge-ai-overlay",
11755
11532
  "declaration": {
11756
- "name": "ForgeAiTooltipComponent",
11757
- "module": "src/lib/core/tooltip/tooltip.ts"
11533
+ "name": "ForgeAiOverlayComponent",
11534
+ "module": "src/lib/core/overlay/overlay.ts"
11758
11535
  }
11759
11536
  }
11760
11537
  ]
@@ -11966,6 +11743,108 @@
11966
11743
  }
11967
11744
  ]
11968
11745
  },
11746
+ {
11747
+ "kind": "javascript-module",
11748
+ "path": "src/lib/tools/ai-paginator/ai-paginator.ts",
11749
+ "declarations": [
11750
+ {
11751
+ "kind": "class",
11752
+ "description": "",
11753
+ "name": "AiPaginator",
11754
+ "members": [
11755
+ {
11756
+ "kind": "field",
11757
+ "name": "currentPage",
11758
+ "type": {
11759
+ "text": "number"
11760
+ },
11761
+ "privacy": "public",
11762
+ "default": "1",
11763
+ "attribute": "current-page"
11764
+ },
11765
+ {
11766
+ "kind": "field",
11767
+ "name": "totalPages",
11768
+ "type": {
11769
+ "text": "number"
11770
+ },
11771
+ "privacy": "public",
11772
+ "default": "1",
11773
+ "attribute": "total-pages"
11774
+ },
11775
+ {
11776
+ "kind": "field",
11777
+ "name": "disabled",
11778
+ "type": {
11779
+ "text": "boolean"
11780
+ },
11781
+ "privacy": "public",
11782
+ "default": "false",
11783
+ "attribute": "disabled",
11784
+ "reflects": true
11785
+ }
11786
+ ],
11787
+ "events": [
11788
+ {
11789
+ "name": "page-change",
11790
+ "type": {
11791
+ "text": "CustomEvent"
11792
+ }
11793
+ }
11794
+ ],
11795
+ "attributes": [
11796
+ {
11797
+ "name": "current-page",
11798
+ "type": {
11799
+ "text": "number"
11800
+ },
11801
+ "default": "1",
11802
+ "fieldName": "currentPage"
11803
+ },
11804
+ {
11805
+ "name": "total-pages",
11806
+ "type": {
11807
+ "text": "number"
11808
+ },
11809
+ "default": "1",
11810
+ "fieldName": "totalPages"
11811
+ },
11812
+ {
11813
+ "name": "disabled",
11814
+ "type": {
11815
+ "text": "boolean"
11816
+ },
11817
+ "default": "false",
11818
+ "fieldName": "disabled"
11819
+ }
11820
+ ],
11821
+ "superclass": {
11822
+ "name": "LitElement",
11823
+ "package": "lit"
11824
+ },
11825
+ "tagName": "forge-ai-paginator",
11826
+ "customElement": true
11827
+ }
11828
+ ],
11829
+ "exports": [
11830
+ {
11831
+ "kind": "js",
11832
+ "name": "AiPaginator",
11833
+ "declaration": {
11834
+ "name": "AiPaginator",
11835
+ "module": "src/lib/tools/ai-paginator/ai-paginator.ts"
11836
+ }
11837
+ },
11838
+ {
11839
+ "kind": "custom-element-definition",
11840
+ "name": "forge-ai-paginator",
11841
+ "declaration": {
11842
+ "name": "AiPaginator",
11843
+ "module": "src/lib/tools/ai-paginator/ai-paginator.ts"
11844
+ }
11845
+ }
11846
+ ]
11847
+ },
11969
11848
  {
11970
11849
  "kind": "javascript-module",
11971
11850
  "path": "src/lib/tools/ai-data-table/ai-data-table-definition.ts",
@@ -12030,102 +11909,230 @@
12030
11909
  },
12031
11910
  {
12032
11911
  "kind": "javascript-module",
12033
- "path": "src/lib/tools/ai-paginator/ai-paginator.ts",
11912
+ "path": "src/lib/core/tooltip/tooltip.ts",
12034
11913
  "declarations": [
12035
11914
  {
12036
11915
  "kind": "class",
12037
11916
  "description": "",
12038
- "name": "AiPaginator",
11917
+ "name": "ForgeAiTooltipComponent",
11918
+ "cssProperties": [
11919
+ {
11920
+ "description": "The maximum width of the tooltip.",
11921
+ "name": "--forge-ai-tooltip-max-width"
11922
+ },
11923
+ {
11924
+ "description": "The z-index of the tooltip overlay.",
11925
+ "name": "--forge-ai-tooltip-z-index"
11926
+ }
11927
+ ],
11928
+ "slots": [
11929
+ {
11930
+ "description": "The default slot for tooltip content.",
11931
+ "name": ""
11932
+ }
11933
+ ],
12039
11934
  "members": [
12040
11935
  {
12041
11936
  "kind": "field",
12042
- "name": "currentPage",
11937
+ "name": "for",
11938
+ "type": {
11939
+ "text": "string"
11940
+ },
11941
+ "privacy": "public",
11942
+ "default": "''",
11943
+ "description": "The ID of the anchor element to attach the tooltip to.",
11944
+ "attribute": "for"
11945
+ },
11946
+ {
11947
+ "kind": "field",
11948
+ "name": "text",
11949
+ "type": {
11950
+ "text": "string"
11951
+ },
11952
+ "privacy": "public",
11953
+ "default": "''",
11954
+ "description": "The text content of the tooltip (alternative to slotted content).",
11955
+ "attribute": "text"
11956
+ },
11957
+ {
11958
+ "kind": "field",
11959
+ "name": "placement",
12043
11960
  "type": {
12044
- "text": "number"
11961
+ "text": "TooltipPlacement"
12045
11962
  },
12046
11963
  "privacy": "public",
12047
- "default": "1",
12048
- "attribute": "current-page"
11964
+ "default": "'top'",
11965
+ "description": "The placement of the tooltip relative to the anchor.",
11966
+ "attribute": "placement"
12049
11967
  },
12050
11968
  {
12051
11969
  "kind": "field",
12052
- "name": "totalPages",
11970
+ "name": "trigger",
12053
11971
  "type": {
12054
- "text": "number"
11972
+ "text": "TooltipTrigger"
12055
11973
  },
12056
11974
  "privacy": "public",
12057
- "default": "1",
12058
- "attribute": "total-pages"
11975
+ "default": "'hover'",
11976
+ "description": "How the tooltip should be triggered.",
11977
+ "attribute": "trigger"
12059
11978
  },
12060
11979
  {
12061
11980
  "kind": "field",
12062
- "name": "disabled",
11981
+ "name": "open",
12063
11982
  "type": {
12064
11983
  "text": "boolean"
12065
11984
  },
12066
11985
  "privacy": "public",
12067
11986
  "default": "false",
12068
- "attribute": "disabled",
11987
+ "description": "Whether the tooltip is open.",
11988
+ "attribute": "open",
12069
11989
  "reflects": true
12070
- }
12071
- ],
12072
- "events": [
11990
+ },
12073
11991
  {
12074
- "name": "page-change",
11992
+ "kind": "field",
11993
+ "name": "delay",
12075
11994
  "type": {
12076
- "text": "CustomEvent"
12077
- }
11995
+ "text": "number"
11996
+ },
11997
+ "privacy": "public",
11998
+ "default": "500",
11999
+ "description": "Delay in milliseconds before showing the tooltip.",
12000
+ "attribute": "delay"
12001
+ },
12002
+ {
12003
+ "kind": "field",
12004
+ "name": "hideDelay",
12005
+ "type": {
12006
+ "text": "number"
12007
+ },
12008
+ "privacy": "public",
12009
+ "default": "0",
12010
+ "description": "Delay in milliseconds before hiding the tooltip.",
12011
+ "attribute": "hide-delay"
12012
+ },
12013
+ {
12014
+ "kind": "method",
12015
+ "name": "show",
12016
+ "privacy": "public",
12017
+ "return": {
12018
+ "type": {
12019
+ "text": "void"
12020
+ }
12021
+ },
12022
+ "description": "Show the tooltip programmatically."
12023
+ },
12024
+ {
12025
+ "kind": "method",
12026
+ "name": "hide",
12027
+ "privacy": "public",
12028
+ "return": {
12029
+ "type": {
12030
+ "text": "void"
12031
+ }
12032
+ },
12033
+ "description": "Hide the tooltip programmatically."
12034
+ },
12035
+ {
12036
+ "kind": "method",
12037
+ "name": "toggle",
12038
+ "privacy": "public",
12039
+ "return": {
12040
+ "type": {
12041
+ "text": "void"
12042
+ }
12043
+ },
12044
+ "description": "Toggle the tooltip programmatically."
12078
12045
  }
12079
12046
  ],
12080
12047
  "attributes": [
12081
12048
  {
12082
- "name": "current-page",
12049
+ "name": "for",
12083
12050
  "type": {
12084
- "text": "number"
12051
+ "text": "string"
12085
12052
  },
12086
- "default": "1",
12087
- "fieldName": "currentPage"
12053
+ "default": "''",
12054
+ "description": "The ID of the anchor element to attach the tooltip to.",
12055
+ "fieldName": "for"
12088
12056
  },
12089
12057
  {
12090
- "name": "total-pages",
12058
+ "name": "text",
12091
12059
  "type": {
12092
- "text": "number"
12060
+ "text": "string"
12093
12061
  },
12094
- "default": "1",
12095
- "fieldName": "totalPages"
12062
+ "default": "''",
12063
+ "description": "The text content of the tooltip (alternative to slotted content).",
12064
+ "fieldName": "text"
12096
12065
  },
12097
12066
  {
12098
- "name": "disabled",
12067
+ "name": "placement",
12068
+ "type": {
12069
+ "text": "TooltipPlacement"
12070
+ },
12071
+ "default": "'top'",
12072
+ "description": "The placement of the tooltip relative to the anchor.",
12073
+ "fieldName": "placement"
12074
+ },
12075
+ {
12076
+ "name": "trigger",
12077
+ "type": {
12078
+ "text": "TooltipTrigger"
12079
+ },
12080
+ "default": "'hover'",
12081
+ "description": "How the tooltip should be triggered.",
12082
+ "fieldName": "trigger"
12083
+ },
12084
+ {
12085
+ "name": "open",
12099
12086
  "type": {
12100
12087
  "text": "boolean"
12101
12088
  },
12102
12089
  "default": "false",
12103
- "fieldName": "disabled"
12090
+ "description": "Whether the tooltip is open.",
12091
+ "fieldName": "open"
12092
+ },
12093
+ {
12094
+ "name": "delay",
12095
+ "type": {
12096
+ "text": "number"
12097
+ },
12098
+ "default": "500",
12099
+ "description": "Delay in milliseconds before showing the tooltip.",
12100
+ "fieldName": "delay"
12101
+ },
12102
+ {
12103
+ "name": "hide-delay",
12104
+ "type": {
12105
+ "text": "number"
12106
+ },
12107
+ "default": "0",
12108
+ "description": "Delay in milliseconds before hiding the tooltip.",
12109
+ "fieldName": "hideDelay"
12104
12110
  }
12105
12111
  ],
12106
12112
  "superclass": {
12107
12113
  "name": "LitElement",
12108
12114
  "package": "lit"
12109
12115
  },
12110
- "tagName": "forge-ai-paginator",
12116
+ "summary": "A tooltip component with accessibility features and dynamic positioning.",
12117
+ "tagName": "forge-ai-tooltip",
12111
12118
  "customElement": true
12112
12119
  }
12113
12120
  ],
12114
12121
  "exports": [
12115
12122
  {
12116
12123
  "kind": "js",
12117
- "name": "AiPaginator",
12124
+ "name": "ForgeAiTooltipComponent",
12118
12125
  "declaration": {
12119
- "name": "AiPaginator",
12120
- "module": "src/lib/tools/ai-paginator/ai-paginator.ts"
12126
+ "name": "ForgeAiTooltipComponent",
12127
+ "module": "src/lib/core/tooltip/tooltip.ts"
12121
12128
  }
12122
12129
  },
12123
12130
  {
12124
12131
  "kind": "custom-element-definition",
12125
- "name": "forge-ai-paginator",
12132
+ "name": "forge-ai-tooltip",
12126
12133
  "declaration": {
12127
- "name": "AiPaginator",
12128
- "module": "src/lib/tools/ai-paginator/ai-paginator.ts"
12134
+ "name": "ForgeAiTooltipComponent",
12135
+ "module": "src/lib/core/tooltip/tooltip.ts"
12129
12136
  }
12130
12137
  }
12131
12138
  ]
@@ -12153,18 +12160,6 @@
12153
12160
  "path": "src/lib/ai-agent-selector/ai-agent-selector.ts",
12154
12161
  "lineNumber": 48
12155
12162
  },
12156
- "ForgeAiAssistantResponseFeedbackEventData": {
12157
- "path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
12158
- "lineNumber": 31
12159
- },
12160
- "AiAssistantResponseComponent": {
12161
- "path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
12162
- "lineNumber": 48
12163
- },
12164
- "AiButtonComponent": {
12165
- "path": "src/lib/ai-button/ai-button.ts",
12166
- "lineNumber": 22
12167
- },
12168
12163
  "ForgeAiAttachmentRemoveEventData": {
12169
12164
  "path": "src/lib/ai-attachment/ai-attachment.ts",
12170
12165
  "lineNumber": 19
@@ -12173,10 +12168,22 @@
12173
12168
  "path": "src/lib/ai-attachment/ai-attachment.ts",
12174
12169
  "lineNumber": 41
12175
12170
  },
12171
+ "ForgeAiAssistantResponseFeedbackEventData": {
12172
+ "path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
12173
+ "lineNumber": 31
12174
+ },
12175
+ "AiAssistantResponseComponent": {
12176
+ "path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
12177
+ "lineNumber": 48
12178
+ },
12176
12179
  "AiChainOfThoughtComponent": {
12177
12180
  "path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
12178
12181
  "lineNumber": 17
12179
12182
  },
12183
+ "AiButtonComponent": {
12184
+ "path": "src/lib/ai-button/ai-button.ts",
12185
+ "lineNumber": 22
12186
+ },
12180
12187
  "ForgeAiChatHeaderAgentChangeEventData": {
12181
12188
  "path": "src/lib/ai-chat-header/ai-chat-header.ts",
12182
12189
  "lineNumber": 38
@@ -12335,15 +12342,15 @@
12335
12342
  },
12336
12343
  "ForgeAiChatbotMessageEventData": {
12337
12344
  "path": "src/lib/ai-chatbot/ai-chatbot.ts",
12338
- "lineNumber": 48
12345
+ "lineNumber": 49
12339
12346
  },
12340
12347
  "ForgeAiChatbotToolCallEventData": {
12341
12348
  "path": "src/lib/ai-chatbot/ai-chatbot.ts",
12342
- "lineNumber": 52
12349
+ "lineNumber": 53
12343
12350
  },
12344
12351
  "ForgeAiChatbotErrorEventData": {
12345
12352
  "path": "src/lib/ai-chatbot/ai-chatbot.ts",
12346
- "lineNumber": 58
12353
+ "lineNumber": 59
12347
12354
  },
12348
12355
  "ForgeAiChatbotFileSelectEventData": {
12349
12356
  "path": "src/lib/ai-chatbot/types.ts",
@@ -12351,19 +12358,19 @@
12351
12358
  },
12352
12359
  "ForgeAiChatbotFileRemoveEventData": {
12353
12360
  "path": "src/lib/ai-chatbot/ai-chatbot.ts",
12354
- "lineNumber": 74
12361
+ "lineNumber": 75
12355
12362
  },
12356
12363
  "ForgeAiChatbotResponseFeedbackEventData": {
12357
12364
  "path": "src/lib/ai-chatbot/ai-chatbot.ts",
12358
- "lineNumber": 78
12365
+ "lineNumber": 79
12359
12366
  },
12360
12367
  "ForgeAiChatbotAgentChangeEventData": {
12361
12368
  "path": "src/lib/ai-chatbot/ai-chatbot.ts",
12362
- "lineNumber": 84
12369
+ "lineNumber": 85
12363
12370
  },
12364
12371
  "AiChatbotComponent": {
12365
12372
  "path": "src/lib/ai-chatbot/ai-chatbot.ts",
12366
- "lineNumber": 125
12373
+ "lineNumber": 127
12367
12374
  },
12368
12375
  "CreateToolRendererElementConfig": {
12369
12376
  "path": "src/lib/ai-chatbot/create-tool-renderer.ts",
@@ -12585,14 +12592,14 @@
12585
12592
  "path": "src/lib/ai-dropdown-menu/selection-manager.ts",
12586
12593
  "lineNumber": 85
12587
12594
  },
12588
- "AiEmbeddedChatComponent": {
12589
- "path": "src/lib/ai-embedded-chat/ai-embedded-chat.ts",
12590
- "lineNumber": 47
12591
- },
12592
12595
  "AiEmptyStateComponent": {
12593
12596
  "path": "src/lib/ai-empty-state/ai-empty-state.ts",
12594
12597
  "lineNumber": 23
12595
12598
  },
12599
+ "AiEmbeddedChatComponent": {
12600
+ "path": "src/lib/ai-embedded-chat/ai-embedded-chat.ts",
12601
+ "lineNumber": 47
12602
+ },
12596
12603
  "AiErrorMessageComponent": {
12597
12604
  "path": "src/lib/ai-error-message/ai-error-message.ts",
12598
12605
  "lineNumber": 22
@@ -12697,10 +12704,6 @@
12697
12704
  "path": "src/lib/ai-response-message/ai-response-message.ts",
12698
12705
  "lineNumber": 19
12699
12706
  },
12700
- "AiSidebarComponent": {
12701
- "path": "src/lib/ai-sidebar/ai-sidebar.ts",
12702
- "lineNumber": 28
12703
- },
12704
12707
  "ForgeAiResponseMessageToolbarActionEventData": {
12705
12708
  "path": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts",
12706
12709
  "lineNumber": 23
@@ -12717,6 +12720,10 @@
12717
12720
  "path": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts",
12718
12721
  "lineNumber": 43
12719
12722
  },
12723
+ "AiSidebarComponent": {
12724
+ "path": "src/lib/ai-sidebar/ai-sidebar.ts",
12725
+ "lineNumber": 28
12726
+ },
12720
12727
  "AiSidebarChatComponent": {
12721
12728
  "path": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts",
12722
12729
  "lineNumber": 42
@@ -12849,6 +12856,10 @@
12849
12856
  "path": "src/lib/ai-chain-of-thought/thought-image/thought-image.ts",
12850
12857
  "lineNumber": 19
12851
12858
  },
12859
+ "PromptButtonComponent": {
12860
+ "path": "src/lib/ai-prompt/prompt-button/prompt-button.ts",
12861
+ "lineNumber": 17
12862
+ },
12852
12863
  "Source": {
12853
12864
  "path": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts",
12854
12865
  "lineNumber": 14
@@ -12857,10 +12868,6 @@
12857
12868
  "path": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts",
12858
12869
  "lineNumber": 24
12859
12870
  },
12860
- "PromptButtonComponent": {
12861
- "path": "src/lib/ai-prompt/prompt-button/prompt-button.ts",
12862
- "lineNumber": 17
12863
- },
12864
12871
  "ReasoningContentComponent": {
12865
12872
  "path": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts",
12866
12873
  "lineNumber": 17
@@ -12877,22 +12884,6 @@
12877
12884
  "path": "src/lib/core/overlay/overlay.ts",
12878
12885
  "lineNumber": 40
12879
12886
  },
12880
- "TooltipToggleEventDetail": {
12881
- "path": "src/lib/core/tooltip/tooltip.ts",
12882
- "lineNumber": 20
12883
- },
12884
- "TooltipPlacement": {
12885
- "path": "src/lib/core/tooltip/tooltip.ts",
12886
- "lineNumber": 26
12887
- },
12888
- "TooltipTrigger": {
12889
- "path": "src/lib/core/tooltip/tooltip.ts",
12890
- "lineNumber": 27
12891
- },
12892
- "ForgeAiTooltipComponent": {
12893
- "path": "src/lib/core/tooltip/tooltip.ts",
12894
- "lineNumber": 44
12895
- },
12896
12887
  "PopoverToggleEventData": {
12897
12888
  "path": "src/lib/core/popover/popover.ts",
12898
12889
  "lineNumber": 18
@@ -12909,6 +12900,10 @@
12909
12900
  "path": "src/lib/core/popover/popover.ts",
12910
12901
  "lineNumber": 37
12911
12902
  },
12903
+ "AiPaginator": {
12904
+ "path": "src/lib/tools/ai-paginator/ai-paginator.ts",
12905
+ "lineNumber": 13
12906
+ },
12912
12907
  "TableData": {
12913
12908
  "path": "src/lib/tools/ai-data-table/ai-data-table.ts",
12914
12909
  "lineNumber": 16
@@ -12917,9 +12912,21 @@
12917
12912
  "path": "src/lib/tools/ai-data-table/ai-data-table.ts",
12918
12913
  "lineNumber": 32
12919
12914
  },
12920
- "AiPaginator": {
12921
- "path": "src/lib/tools/ai-paginator/ai-paginator.ts",
12922
- "lineNumber": 13
12915
+ "TooltipToggleEventDetail": {
12916
+ "path": "src/lib/core/tooltip/tooltip.ts",
12917
+ "lineNumber": 20
12918
+ },
12919
+ "TooltipPlacement": {
12920
+ "path": "src/lib/core/tooltip/tooltip.ts",
12921
+ "lineNumber": 26
12922
+ },
12923
+ "TooltipTrigger": {
12924
+ "path": "src/lib/core/tooltip/tooltip.ts",
12925
+ "lineNumber": 27
12926
+ },
12927
+ "ForgeAiTooltipComponent": {
12928
+ "path": "src/lib/core/tooltip/tooltip.ts",
12929
+ "lineNumber": 44
12923
12930
  }
12924
12931
  }
12925
12932
  }