@symphony-talent/component-library 4.85.0 → 4.86.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/esm2020/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.component.mjs +2 -2
  2. package/esm2020/lib/molecules/chat-history-message-item/chat-history-message-item.component.mjs +17 -0
  3. package/esm2020/lib/molecules/chat-history-message-item/chat-history-message-item.model.mjs +2 -0
  4. package/esm2020/lib/molecules/chat-history-message-item/chat-history-message-item.module.mjs +30 -0
  5. package/esm2020/lib/molecules/molecules.module.mjs +8 -4
  6. package/esm2020/lib/organisms/chat-history-message-list/chat-history-message-list.component.mjs +16 -0
  7. package/esm2020/lib/organisms/chat-history-message-list/chat-history-message-list.module.mjs +19 -0
  8. package/esm2020/lib/organisms/organisms.module.mjs +6 -2
  9. package/esm2020/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.component.mjs +27 -0
  10. package/esm2020/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.model.mjs +2 -0
  11. package/esm2020/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.module.mjs +42 -0
  12. package/esm2020/projects/component-library/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.component.mjs +2 -2
  13. package/esm2020/projects/component-library/lib/molecules/chat-history-message-item/chat-history-message-item.component.mjs +17 -0
  14. package/esm2020/projects/component-library/lib/molecules/chat-history-message-item/chat-history-message-item.model.mjs +2 -0
  15. package/esm2020/projects/component-library/lib/molecules/chat-history-message-item/chat-history-message-item.module.mjs +30 -0
  16. package/esm2020/projects/component-library/lib/molecules/molecules.module.mjs +8 -4
  17. package/esm2020/projects/component-library/lib/organisms/chat-history-message-list/chat-history-message-list.component.mjs +16 -0
  18. package/esm2020/projects/component-library/lib/organisms/chat-history-message-list/chat-history-message-list.module.mjs +19 -0
  19. package/esm2020/projects/component-library/lib/organisms/organisms.module.mjs +6 -2
  20. package/esm2020/projects/component-library/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.component.mjs +27 -0
  21. package/esm2020/projects/component-library/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.model.mjs +2 -0
  22. package/esm2020/projects/component-library/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.module.mjs +42 -0
  23. package/esm2020/projects/component-library/public-api.mjs +9 -1
  24. package/esm2020/public-api.mjs +9 -1
  25. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +127 -7
  26. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  27. package/fesm2015/symphony-talent-component-library.mjs +127 -7
  28. package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
  29. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +127 -7
  30. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  31. package/fesm2020/symphony-talent-component-library.mjs +127 -7
  32. package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
  33. package/lib/molecules/chat-history-message-item/chat-history-message-item.component.d.ts +8 -0
  34. package/lib/molecules/chat-history-message-item/chat-history-message-item.model.d.ts +7 -0
  35. package/lib/molecules/chat-history-message-item/chat-history-message-item.module.d.ts +10 -0
  36. package/lib/molecules/molecules.module.d.ts +3 -2
  37. package/lib/organisms/chat-history-message-list/chat-history-message-list.component.d.ts +8 -0
  38. package/lib/organisms/chat-history-message-list/chat-history-message-list.module.d.ts +9 -0
  39. package/lib/organisms/organisms.module.d.ts +2 -1
  40. package/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.component.d.ts +11 -0
  41. package/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.model.d.ts +6 -0
  42. package/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.module.d.ts +13 -0
  43. package/package.json +1 -1
  44. package/projects/component-library/lib/molecules/chat-history-message-item/chat-history-message-item.component.d.ts +8 -0
  45. package/projects/component-library/lib/molecules/chat-history-message-item/chat-history-message-item.model.d.ts +7 -0
  46. package/projects/component-library/lib/molecules/chat-history-message-item/chat-history-message-item.module.d.ts +10 -0
  47. package/projects/component-library/lib/molecules/molecules.module.d.ts +3 -2
  48. package/projects/component-library/lib/organisms/chat-history-message-list/chat-history-message-list.component.d.ts +8 -0
  49. package/projects/component-library/lib/organisms/chat-history-message-list/chat-history-message-list.module.d.ts +9 -0
  50. package/projects/component-library/lib/organisms/organisms.module.d.ts +2 -1
  51. package/projects/component-library/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.component.d.ts +11 -0
  52. package/projects/component-library/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.model.d.ts +6 -0
  53. package/projects/component-library/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.module.d.ts +13 -0
  54. package/projects/component-library/public-api.d.ts +8 -0
  55. package/public-api.d.ts +8 -0
@@ -370,10 +370,10 @@ class ChatHistoryMessageBubbleComponent {
370
370
  constructor() { }
371
371
  }
372
372
  ChatHistoryMessageBubbleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageBubbleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
373
- ChatHistoryMessageBubbleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ChatHistoryMessageBubbleComponent, selector: "symphony-chat-history-message-bubble", inputs: { chatHistoryMessageBubbleModel: "chatHistoryMessageBubbleModel" }, ngImport: i0, template: "<div *ngIf=\"chatHistoryMessageBubbleModel\">\n <div\n class=\"chat-bubble sfx-p-20\"\n [ngClass]=\"{\n 'receive-bubble': chatHistoryMessageBubbleModel.hasReceive,\n 'sent-bubble': !chatHistoryMessageBubbleModel.hasReceive\n }\"\n >\n <p class=\"receive-tag sfx-mb-5 sfx-font-bold\">\n {{ chatHistoryMessageBubbleModel.nameTag }}\n </p>\n <p class=\"sfx-mb-0\">\n {{ chatHistoryMessageBubbleModel.messageContent }}\n </p>\n <span class=\"time-stamp\">{{\n chatHistoryMessageBubbleModel.timeStamp\n }}</span>\n </div>\n</div>\n", styles: [".chat-bubble{border-radius:6px;max-width:415px;position:relative}.chat-bubble .receive-tag{display:none}.chat-bubble:after{content:\" \";height:0;width:0;position:absolute;pointer-events:none;border-style:solid}.chat-bubble.sent-bubble{background:#2b8ff3;color:#fff;border-top-right-radius:0}.chat-bubble.sent-bubble .time-stamp{color:#d2d8e5}.chat-bubble.sent-bubble:after{border-width:0 0 13px 13px;border-color:transparent transparent transparent #2b8ff3;right:-13px;top:0px;border-radius:0 4px 0 0}.chat-bubble.receive-bubble{background:#e4e7ef;color:#000;border-top-left-radius:0}.chat-bubble.receive-bubble .receive-tag{display:block}.chat-bubble.receive-bubble .time-stamp{color:#82919f}.chat-bubble.receive-bubble:after{border-width:0px 13px 13px 0px;border-color:transparent #e4e7ef transparent transparent;left:-13px;top:0px;border-radius:4px 0 0}.chat-bubble .time-stamp{position:absolute;right:10px;bottom:10px}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
373
+ ChatHistoryMessageBubbleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ChatHistoryMessageBubbleComponent, selector: "symphony-chat-history-message-bubble", inputs: { chatHistoryMessageBubbleModel: "chatHistoryMessageBubbleModel" }, ngImport: i0, template: "<div *ngIf=\"chatHistoryMessageBubbleModel\">\n <div\n class=\"chat-bubble sfx-p-20\"\n [ngClass]=\"{\n 'receive-bubble': chatHistoryMessageBubbleModel.hasReceive,\n 'sent-bubble': !chatHistoryMessageBubbleModel.hasReceive\n }\"\n >\n <p class=\"receive-tag sfx-mb-5 sfx-font-bold\">\n {{ chatHistoryMessageBubbleModel.nameTag }}\n </p>\n <p class=\"sfx-mb-0\">\n {{ chatHistoryMessageBubbleModel.messageContent }}\n </p>\n <span class=\"time-stamp\">{{\n chatHistoryMessageBubbleModel.timeStamp\n }}</span>\n </div>\n</div>\n", styles: [".chat-bubble{border-radius:6px;min-width:100px;max-width:415px;position:relative}.chat-bubble .receive-tag{display:none}.chat-bubble:after{content:\" \";height:0;width:0;position:absolute;pointer-events:none;border-style:solid}.chat-bubble.sent-bubble{background:#2b8ff3;color:#fff;border-top-right-radius:0}.chat-bubble.sent-bubble .time-stamp{color:#d2d8e5}.chat-bubble.sent-bubble:after{border-width:0 0 13px 13px;border-color:transparent transparent transparent #2b8ff3;right:-13px;top:0px;border-radius:0 4px 0 0}.chat-bubble.receive-bubble{background:#e4e7ef;color:#000;border-top-left-radius:0}.chat-bubble.receive-bubble .receive-tag{display:block}.chat-bubble.receive-bubble .time-stamp{color:#82919f}.chat-bubble.receive-bubble:after{border-width:0px 13px 13px 0px;border-color:transparent #e4e7ef transparent transparent;left:-13px;top:0px;border-radius:4px 0 0}.chat-bubble .time-stamp{font-size:12px;line-height:16px;position:absolute;right:10px;bottom:5px}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
374
374
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageBubbleComponent, decorators: [{
375
375
  type: Component,
376
- args: [{ selector: 'symphony-chat-history-message-bubble', template: "<div *ngIf=\"chatHistoryMessageBubbleModel\">\n <div\n class=\"chat-bubble sfx-p-20\"\n [ngClass]=\"{\n 'receive-bubble': chatHistoryMessageBubbleModel.hasReceive,\n 'sent-bubble': !chatHistoryMessageBubbleModel.hasReceive\n }\"\n >\n <p class=\"receive-tag sfx-mb-5 sfx-font-bold\">\n {{ chatHistoryMessageBubbleModel.nameTag }}\n </p>\n <p class=\"sfx-mb-0\">\n {{ chatHistoryMessageBubbleModel.messageContent }}\n </p>\n <span class=\"time-stamp\">{{\n chatHistoryMessageBubbleModel.timeStamp\n }}</span>\n </div>\n</div>\n", styles: [".chat-bubble{border-radius:6px;max-width:415px;position:relative}.chat-bubble .receive-tag{display:none}.chat-bubble:after{content:\" \";height:0;width:0;position:absolute;pointer-events:none;border-style:solid}.chat-bubble.sent-bubble{background:#2b8ff3;color:#fff;border-top-right-radius:0}.chat-bubble.sent-bubble .time-stamp{color:#d2d8e5}.chat-bubble.sent-bubble:after{border-width:0 0 13px 13px;border-color:transparent transparent transparent #2b8ff3;right:-13px;top:0px;border-radius:0 4px 0 0}.chat-bubble.receive-bubble{background:#e4e7ef;color:#000;border-top-left-radius:0}.chat-bubble.receive-bubble .receive-tag{display:block}.chat-bubble.receive-bubble .time-stamp{color:#82919f}.chat-bubble.receive-bubble:after{border-width:0px 13px 13px 0px;border-color:transparent #e4e7ef transparent transparent;left:-13px;top:0px;border-radius:4px 0 0}.chat-bubble .time-stamp{position:absolute;right:10px;bottom:10px}\n"] }]
376
+ args: [{ selector: 'symphony-chat-history-message-bubble', template: "<div *ngIf=\"chatHistoryMessageBubbleModel\">\n <div\n class=\"chat-bubble sfx-p-20\"\n [ngClass]=\"{\n 'receive-bubble': chatHistoryMessageBubbleModel.hasReceive,\n 'sent-bubble': !chatHistoryMessageBubbleModel.hasReceive\n }\"\n >\n <p class=\"receive-tag sfx-mb-5 sfx-font-bold\">\n {{ chatHistoryMessageBubbleModel.nameTag }}\n </p>\n <p class=\"sfx-mb-0\">\n {{ chatHistoryMessageBubbleModel.messageContent }}\n </p>\n <span class=\"time-stamp\">{{\n chatHistoryMessageBubbleModel.timeStamp\n }}</span>\n </div>\n</div>\n", styles: [".chat-bubble{border-radius:6px;min-width:100px;max-width:415px;position:relative}.chat-bubble .receive-tag{display:none}.chat-bubble:after{content:\" \";height:0;width:0;position:absolute;pointer-events:none;border-style:solid}.chat-bubble.sent-bubble{background:#2b8ff3;color:#fff;border-top-right-radius:0}.chat-bubble.sent-bubble .time-stamp{color:#d2d8e5}.chat-bubble.sent-bubble:after{border-width:0 0 13px 13px;border-color:transparent transparent transparent #2b8ff3;right:-13px;top:0px;border-radius:0 4px 0 0}.chat-bubble.receive-bubble{background:#e4e7ef;color:#000;border-top-left-radius:0}.chat-bubble.receive-bubble .receive-tag{display:block}.chat-bubble.receive-bubble .time-stamp{color:#82919f}.chat-bubble.receive-bubble:after{border-width:0px 13px 13px 0px;border-color:transparent #e4e7ef transparent transparent;left:-13px;top:0px;border-radius:4px 0 0}.chat-bubble .time-stamp{font-size:12px;line-height:16px;position:absolute;right:10px;bottom:5px}\n"] }]
377
377
  }], ctorParameters: function () { return []; }, propDecorators: { chatHistoryMessageBubbleModel: [{
378
378
  type: Input
379
379
  }] } });
@@ -2842,6 +2842,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
2842
2842
  }]
2843
2843
  }] });
2844
2844
 
2845
+ class ChatHistoryMessageItemComponent {
2846
+ constructor() { }
2847
+ }
2848
+ ChatHistoryMessageItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2849
+ ChatHistoryMessageItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ChatHistoryMessageItemComponent, selector: "symphony-chat-history-message-item", inputs: { chatHistoryMessageItemModel: "chatHistoryMessageItemModel" }, ngImport: i0, template: "<div *ngIf=\"chatHistoryMessageItemModel\"\n class=\"sfx-d-flex\"\n [ngClass]=\"{\n 'received-item': chatHistoryMessageItemModel.isSent,\n 'sent-item': !chatHistoryMessageItemModel.isSent\n }\"\n>\n <symphony-chat-history-message-avatar\n class=\"chat-avatar\"\n initials=\"{{ chatHistoryMessageItemModel.initials }}\"\n imgSource=\"{{ chatHistoryMessageItemModel.imgSource }}\"\n ></symphony-chat-history-message-avatar>\n <symphony-chat-history-message-bubble\n [chatHistoryMessageBubbleModel]=\"\n chatHistoryMessageItemModel.chatHistoryMessageBubble\n \"\n ></symphony-chat-history-message-bubble>\n</div>\n", styles: [".sent-item .chat-avatar{margin-right:10px}.received-item{flex-direction:row-reverse}.received-item .chat-avatar{margin-left:10px}\n"], components: [{ type: ChatHistoryMessageAvatarComponent, selector: "symphony-chat-history-message-avatar", inputs: ["initials", "imgSource"] }, { type: ChatHistoryMessageBubbleComponent, selector: "symphony-chat-history-message-bubble", inputs: ["chatHistoryMessageBubbleModel"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
2850
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageItemComponent, decorators: [{
2851
+ type: Component,
2852
+ args: [{ selector: 'symphony-chat-history-message-item', template: "<div *ngIf=\"chatHistoryMessageItemModel\"\n class=\"sfx-d-flex\"\n [ngClass]=\"{\n 'received-item': chatHistoryMessageItemModel.isSent,\n 'sent-item': !chatHistoryMessageItemModel.isSent\n }\"\n>\n <symphony-chat-history-message-avatar\n class=\"chat-avatar\"\n initials=\"{{ chatHistoryMessageItemModel.initials }}\"\n imgSource=\"{{ chatHistoryMessageItemModel.imgSource }}\"\n ></symphony-chat-history-message-avatar>\n <symphony-chat-history-message-bubble\n [chatHistoryMessageBubbleModel]=\"\n chatHistoryMessageItemModel.chatHistoryMessageBubble\n \"\n ></symphony-chat-history-message-bubble>\n</div>\n", styles: [".sent-item .chat-avatar{margin-right:10px}.received-item{flex-direction:row-reverse}.received-item .chat-avatar{margin-left:10px}\n"] }]
2853
+ }], ctorParameters: function () { return []; }, propDecorators: { chatHistoryMessageItemModel: [{
2854
+ type: Input
2855
+ }] } });
2856
+
2857
+ class ChatHistoryMessageItemModule {
2858
+ }
2859
+ ChatHistoryMessageItemModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageItemModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2860
+ ChatHistoryMessageItemModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageItemModule, declarations: [ChatHistoryMessageItemComponent], imports: [CommonModule,
2861
+ ChatHistoryMessageAvatarModule,
2862
+ ChatHistoryMessageBubbleModule], exports: [ChatHistoryMessageItemComponent] });
2863
+ ChatHistoryMessageItemModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageItemModule, imports: [[
2864
+ CommonModule,
2865
+ ChatHistoryMessageAvatarModule,
2866
+ ChatHistoryMessageBubbleModule,
2867
+ ]] });
2868
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageItemModule, decorators: [{
2869
+ type: NgModule,
2870
+ args: [{
2871
+ declarations: [ChatHistoryMessageItemComponent],
2872
+ imports: [
2873
+ CommonModule,
2874
+ ChatHistoryMessageAvatarModule,
2875
+ ChatHistoryMessageBubbleModule,
2876
+ ],
2877
+ exports: [ChatHistoryMessageItemComponent],
2878
+ }]
2879
+ }] });
2880
+
2845
2881
  var FeedbackCardState;
2846
2882
  (function (FeedbackCardState) {
2847
2883
  FeedbackCardState["None"] = "None";
@@ -3711,7 +3747,8 @@ MoleculesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
3711
3747
  TabsModules,
3712
3748
  InputToggleModule,
3713
3749
  LabelledInputToggleModule,
3714
- LabelledToggleListModule], exports: [PillsModule,
3750
+ LabelledToggleListModule,
3751
+ ChatHistoryMessageItemModule], exports: [PillsModule,
3715
3752
  BreadcrumbModule,
3716
3753
  FeedbackCardModule,
3717
3754
  DocumentManagementItemModule,
@@ -3743,7 +3780,8 @@ MoleculesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
3743
3780
  TabsModules,
3744
3781
  InputToggleModule,
3745
3782
  LabelledInputToggleModule,
3746
- LabelledToggleListModule
3783
+ LabelledToggleListModule,
3784
+ ChatHistoryMessageItemModule
3747
3785
  ], PillsModule,
3748
3786
  BreadcrumbModule,
3749
3787
  FeedbackCardModule,
@@ -3788,7 +3826,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
3788
3826
  TabsModules,
3789
3827
  InputToggleModule,
3790
3828
  LabelledInputToggleModule,
3791
- LabelledToggleListModule
3829
+ LabelledToggleListModule,
3830
+ ChatHistoryMessageItemModule
3792
3831
  ]
3793
3832
  }]
3794
3833
  }] });
@@ -3826,6 +3865,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
3826
3865
  }]
3827
3866
  }] });
3828
3867
 
3868
+ class ChatHistoryMessageListComponent {
3869
+ constructor() { }
3870
+ }
3871
+ ChatHistoryMessageListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
3872
+ ChatHistoryMessageListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ChatHistoryMessageListComponent, selector: "symphony-chat-history-message-list", inputs: { messageItemsList: "messageItemsList" }, ngImport: i0, template: "<symphony-chat-history-message-item\n class=\"sfx-mb-20 sfx-d-block\"\n *ngFor=\"let messageItem of messageItemsList\"\n [chatHistoryMessageItemModel]=\"messageItem\"\n></symphony-chat-history-message-item>\n", styles: [""], components: [{ type: ChatHistoryMessageItemComponent, selector: "symphony-chat-history-message-item", inputs: ["chatHistoryMessageItemModel"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
3873
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageListComponent, decorators: [{
3874
+ type: Component,
3875
+ args: [{ selector: 'symphony-chat-history-message-list', template: "<symphony-chat-history-message-item\n class=\"sfx-mb-20 sfx-d-block\"\n *ngFor=\"let messageItem of messageItemsList\"\n [chatHistoryMessageItemModel]=\"messageItem\"\n></symphony-chat-history-message-item>\n", styles: [""] }]
3876
+ }], ctorParameters: function () { return []; }, propDecorators: { messageItemsList: [{
3877
+ type: Input
3878
+ }] } });
3879
+
3880
+ class ChatHistoryMessageListModule {
3881
+ }
3882
+ ChatHistoryMessageListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
3883
+ ChatHistoryMessageListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageListModule, declarations: [ChatHistoryMessageListComponent], imports: [CommonModule, ChatHistoryMessageItemModule], exports: [ChatHistoryMessageListComponent] });
3884
+ ChatHistoryMessageListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageListModule, imports: [[CommonModule, ChatHistoryMessageItemModule]] });
3885
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageListModule, decorators: [{
3886
+ type: NgModule,
3887
+ args: [{
3888
+ declarations: [ChatHistoryMessageListComponent],
3889
+ imports: [CommonModule, ChatHistoryMessageItemModule],
3890
+ exports: [ChatHistoryMessageListComponent],
3891
+ }]
3892
+ }] });
3893
+
3829
3894
  class FeedbackCardListComponent {
3830
3895
  constructor() {
3831
3896
  this.cardClick = new EventEmitter();
@@ -6005,7 +6070,8 @@ OrganismsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
6005
6070
  H4Module,
6006
6071
  ParagraphModule,
6007
6072
  ButtonModule,
6008
- InformationModalModule] });
6073
+ InformationModalModule,
6074
+ ChatHistoryMessageListModule] });
6009
6075
  OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, imports: [[
6010
6076
  CommonModule,
6011
6077
  NoteListModule,
@@ -6034,6 +6100,7 @@ OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
6034
6100
  ParagraphModule,
6035
6101
  ButtonModule,
6036
6102
  InformationModalModule,
6103
+ ChatHistoryMessageListModule
6037
6104
  ]] });
6038
6105
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, decorators: [{
6039
6106
  type: NgModule,
@@ -6067,6 +6134,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
6067
6134
  ParagraphModule,
6068
6135
  ButtonModule,
6069
6136
  InformationModalModule,
6137
+ ChatHistoryMessageListModule
6070
6138
  ]
6071
6139
  }]
6072
6140
  }] });
@@ -7778,6 +7846,58 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
7778
7846
  }]
7779
7847
  }] });
7780
7848
 
7849
+ class ChatbotHistoryModalComponent {
7850
+ constructor() {
7851
+ this.closeButtonClicked = new EventEmitter();
7852
+ }
7853
+ onCloseButtonClick() {
7854
+ this.closeButtonClicked.emit();
7855
+ }
7856
+ }
7857
+ ChatbotHistoryModalComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatbotHistoryModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
7858
+ ChatbotHistoryModalComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ChatbotHistoryModalComponent, selector: "symphony-chatbot-history-modal", inputs: { chatbotHistoryModel: "chatbotHistoryModel" }, outputs: { closeButtonClicked: "closeButtonClicked" }, ngImport: i0, template: "<symphony-two-column-modal-template *ngIf=\"chatbotHistoryModel\" [hideSubtitle]=\"false\">\n <symphony-h4 sfx-modal-title>{{chatbotHistoryModel.modalTitle}}</symphony-h4>\n <symphony-icon\n sfx-close-button\n [icon]=\"'si-close-modal'\"\n (clicked)=\"onCloseButtonClick()\"\n ></symphony-icon>\n <symphony-paragraph sfx-modal-subtitle\n >{{chatbotHistoryModel.modalSubtitle}}</symphony-paragraph\n >\n <section class=\"sfx-p-30 chatModal-body\" sfx-modal-body-area>\n <symphony-chat-history-message-list\n [messageItemsList]=\"chatbotHistoryModel.messageItemsList\"\n ></symphony-chat-history-message-list>\n </section>\n</symphony-two-column-modal-template>\n", styles: [".chatModal-body{max-height:470px;overflow-y:auto}.chatModal-body::-webkit-scrollbar{width:12px}.chatModal-body::-webkit-scrollbar-track{box-shadow:inset 0 0 3px transparent;border-radius:30px}.chatModal-body::-webkit-scrollbar-thumb{background:#d4d4d4;border-radius:30px}.chatModal-body::-webkit-scrollbar-thumb:hover{cursor:pointer}\n"], components: [{ type: TwoColumnModalTemplateComponent, selector: "symphony-two-column-modal-template", inputs: ["hideFooter", "hideSubtitle"] }, { type: H4Component, selector: "symphony-h4", inputs: ["text", "isSecondary"] }, { type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size", "iconColor"], outputs: ["clicked"] }, { type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary", "isFontBold"] }, { type: ChatHistoryMessageListComponent, selector: "symphony-chat-history-message-list", inputs: ["messageItemsList"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
7859
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatbotHistoryModalComponent, decorators: [{
7860
+ type: Component,
7861
+ args: [{ selector: 'symphony-chatbot-history-modal', template: "<symphony-two-column-modal-template *ngIf=\"chatbotHistoryModel\" [hideSubtitle]=\"false\">\n <symphony-h4 sfx-modal-title>{{chatbotHistoryModel.modalTitle}}</symphony-h4>\n <symphony-icon\n sfx-close-button\n [icon]=\"'si-close-modal'\"\n (clicked)=\"onCloseButtonClick()\"\n ></symphony-icon>\n <symphony-paragraph sfx-modal-subtitle\n >{{chatbotHistoryModel.modalSubtitle}}</symphony-paragraph\n >\n <section class=\"sfx-p-30 chatModal-body\" sfx-modal-body-area>\n <symphony-chat-history-message-list\n [messageItemsList]=\"chatbotHistoryModel.messageItemsList\"\n ></symphony-chat-history-message-list>\n </section>\n</symphony-two-column-modal-template>\n", styles: [".chatModal-body{max-height:470px;overflow-y:auto}.chatModal-body::-webkit-scrollbar{width:12px}.chatModal-body::-webkit-scrollbar-track{box-shadow:inset 0 0 3px transparent;border-radius:30px}.chatModal-body::-webkit-scrollbar-thumb{background:#d4d4d4;border-radius:30px}.chatModal-body::-webkit-scrollbar-thumb:hover{cursor:pointer}\n"] }]
7862
+ }], ctorParameters: function () { return []; }, propDecorators: { chatbotHistoryModel: [{
7863
+ type: Input
7864
+ }], closeButtonClicked: [{
7865
+ type: Output
7866
+ }] } });
7867
+
7868
+ class ChatbotHistoryModalModule {
7869
+ }
7870
+ ChatbotHistoryModalModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatbotHistoryModalModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
7871
+ ChatbotHistoryModalModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatbotHistoryModalModule, declarations: [ChatbotHistoryModalComponent], imports: [CommonModule,
7872
+ TwoColumnModalModule,
7873
+ IconModule,
7874
+ H4Module,
7875
+ ChatHistoryMessageListModule,
7876
+ ParagraphModule], exports: [ChatbotHistoryModalComponent] });
7877
+ ChatbotHistoryModalModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatbotHistoryModalModule, imports: [[
7878
+ CommonModule,
7879
+ TwoColumnModalModule,
7880
+ IconModule,
7881
+ H4Module,
7882
+ ChatHistoryMessageListModule,
7883
+ ParagraphModule,
7884
+ ]] });
7885
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatbotHistoryModalModule, decorators: [{
7886
+ type: NgModule,
7887
+ args: [{
7888
+ declarations: [ChatbotHistoryModalComponent],
7889
+ imports: [
7890
+ CommonModule,
7891
+ TwoColumnModalModule,
7892
+ IconModule,
7893
+ H4Module,
7894
+ ChatHistoryMessageListModule,
7895
+ ParagraphModule,
7896
+ ],
7897
+ exports: [ChatbotHistoryModalComponent],
7898
+ }]
7899
+ }] });
7900
+
7781
7901
  class ContactListTemplateComponent {
7782
7902
  constructor() { }
7783
7903
  }
@@ -8483,5 +8603,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
8483
8603
  * Generated bundle index. Do not edit.
8484
8604
  */
8485
8605
 
8486
- export { ActionBarComponent, ActionBarJobListComponent, ActionBarJobListModule, ActionBarModule, ActionBarSelectionCounterComponent, ActionBarSelectionCounterModule, ActivityScoreLevel, AdditionModalComponent, AdditionModalModule, AdditionalInformationCardListComponent, AdditionalInformationCardListModule, AdvanceFilterSelectedCounterComponent, AdvanceFilterSelectedCounterModule, AdvanceSearchModalComponent, AdvanceSearchModalModule, AdvertiseModalComponent, AdvertiseModalModule, AdvertisedJobPostingsListPageComponent, AdvertisedJobPostingsListPageModule, AdvertisedJobPostingsModalComponent, AdvertisedJobPostingsModalModule, AdvertisedJobsCostComponent, AdvertisedJobsCostModule, AlertDuration, AssignToUserModalComponent, AssignToUserModalModule, AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, ButtonComponent, ButtonModule, ButtonV2Component, ButtonV2Module, CapitalizeFirstCharacterPipe, CardComponent, CardListComponent, CardListModule, CardModule, CharacterCounterComponent, CharacterCounterModule, ChatHistoryMessageAvatarComponent, ChatHistoryMessageAvatarModule, ChatHistoryMessageBubbleComponent, ChatHistoryMessageBubbleModule, ColorNames, ColoredTextIndicatorComponent, ColoredTextIndicatorModule, ConfirmationModalComponent, ConfirmationModalModule, ContactActivityScoreComponent, ContactActivityScoreModule, ContextualMenuComponent, ContextualMenuModule, DocumentManagementItemComponent, DocumentManagementItemModule, DocumentManagementListComponent, DocumentManagementListModule, DomainWhitelistingPartialPageComponent, DomainWhitelistingPartialPageModule, EditableSettingItemComponent, EditableSettingItemListComponent, EditableSettingItemListModule, EditableSettingItemModule, EditableSettingKey, EditableSettingPartialPageComponent, EditableSettingPartialPageModule, EmailValidator, EventSettingsMoreOptionsComponent, EventSettingsMoreOptionsModule, EventsSettingsPageComponent, EventsSettingsPageModule, FeedbackCardComponent, FeedbackCardListComponent, FeedbackCardListModule, FeedbackCardModule, FeedbackCardState, FeedbackDetailPageComponent, FeedbackDetailPageModule, FeedbackListPageComponent, FeedbackListPageModule, FeedbackLoginModalComponent, FeedbackLoginModalModule, FeedbackRequestListPageComponent, FeedbackRequestListPageModule, FeedbackSettingDetailsPageComponent, FeedbackSettingDetailsPageModule, FileUploadComponent, FileUploadModule, FileUploadV2Component, FileUploadV2Module, FilterAreaComponent, FilterAreaModule, FormattedCounterComponent, FormattedCounterModule, FrameworkModule, GridActionsComponent, GridActionsModule, GridCellClickableComponent, GridCellClickableModule, GridCellLoaderModule, GridComponent, GridControlsComponent, GridControlsModule, GridDownloadComponent, GridDownloadModule, GridLoadingCellComponent, GridModule, GridNoRowsOverlayComponent, GridNoRowsOverlayModule, GridToggleCellRendererComponent, GridToggleCellRendererModule, H1Component, H1Module, H2Component, H2Module, H3Component, H3Module, H4Component, H4Module, H5Component, H5Module, H5WithIconComponent, H5WithIconModule, IconComponent, IconModule, IconWithTooltipComponent, IconWithTooltipModule, IconWrapperComponent, IconWrapperModule, Icons, InformationModalComponent, InformationModalModule, InputCheckboxComponent, InputCheckboxListComponent, InputCheckboxListModule, InputCheckboxModule, InputChipsComponent, InputChipsModule, InputDropdownComponent, InputDropdownList, InputDropdownListItemModel, InputDropdownModule, InputFileUploadComponent, InputFileUploadModule, InputRadioComponent, InputRadioModule, InputSearchCheckboxDropdownComponent, InputSearchCheckboxDropdownModule, InputTextComponent, InputTextModule, InputTextareaComponent, InputTextareaModule, InputToggleComponent, InputToggleModule, JobListPageComponent, JobListPageModule, LibrariesPageComponent, LibrariesPageModule, LinkedinPremiumJobPostingsModalComponent, LinkedinPremiumJobPostingsModalModule, MoleculesModule, MultiSelectDataModule, MultiselectSearchCheckbox, NavigationLinkComponent, NavigationLinkModule, NotificationsComponent, NotificationsModule, OrganismsModule, OverflowTextComponent, OverflowTextModule, OverflowTextTooltipComponent, OverflowTextTooltipModule, ParagraphComponent, ParagraphModule, PartialPages, PhaserCardComponent, PhaserCardModule, PhaserComponent, PhaserModule, PillComponent, PillModule, PillsComponent, PillsModule, PipeModule, RelevanceScoreComponent, RelevanceScoreModule, SettingDetailPageComponent, SettingDetailPageModule, SettingListPageComponent, SettingListPageModule, SettingsDetailNavigationItemComponent, SettingsDetailNavigationItemModule, SettingsDetailNavigationListComponent, SettingsDetailNavigationListModule, SfxLoaderComponent, SfxLoaderModule, SfxPageLoaderComponent, SfxPageLoaderModule, SfxProgressBarComponent, SfxProgressBarModule, SidebarNavigationComponent, SidebarNavigationModule, SidebarNavigationV2Component, SidebarNavigationV2Module, TabsComponent, TabsModules, ToasterAlertComponent, ToasterAlertModel, ToasterAlertModule, ToasterAlertType, TooltipWrapperComponent, TooltipWrapperModule, TrimIdPipe, TwoColumnFilterAreaComponent, TwoColumnFilterAreaModule, UploadResumeModalComponent, UploadResumeModalModule, VerticalSeparatorComponent, VerticalSeparatorModule, gridType };
8606
+ export { ActionBarComponent, ActionBarJobListComponent, ActionBarJobListModule, ActionBarModule, ActionBarSelectionCounterComponent, ActionBarSelectionCounterModule, ActivityScoreLevel, AdditionModalComponent, AdditionModalModule, AdditionalInformationCardListComponent, AdditionalInformationCardListModule, AdvanceFilterSelectedCounterComponent, AdvanceFilterSelectedCounterModule, AdvanceSearchModalComponent, AdvanceSearchModalModule, AdvertiseModalComponent, AdvertiseModalModule, AdvertisedJobPostingsListPageComponent, AdvertisedJobPostingsListPageModule, AdvertisedJobPostingsModalComponent, AdvertisedJobPostingsModalModule, AdvertisedJobsCostComponent, AdvertisedJobsCostModule, AlertDuration, AssignToUserModalComponent, AssignToUserModalModule, AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, ButtonComponent, ButtonModule, ButtonV2Component, ButtonV2Module, CapitalizeFirstCharacterPipe, CardComponent, CardListComponent, CardListModule, CardModule, CharacterCounterComponent, CharacterCounterModule, ChatHistoryMessageAvatarComponent, ChatHistoryMessageAvatarModule, ChatHistoryMessageBubbleComponent, ChatHistoryMessageBubbleModule, ChatHistoryMessageItemComponent, ChatHistoryMessageItemModule, ChatHistoryMessageListComponent, ChatHistoryMessageListModule, ChatbotHistoryModalComponent, ChatbotHistoryModalModule, ColorNames, ColoredTextIndicatorComponent, ColoredTextIndicatorModule, ConfirmationModalComponent, ConfirmationModalModule, ContactActivityScoreComponent, ContactActivityScoreModule, ContextualMenuComponent, ContextualMenuModule, DocumentManagementItemComponent, DocumentManagementItemModule, DocumentManagementListComponent, DocumentManagementListModule, DomainWhitelistingPartialPageComponent, DomainWhitelistingPartialPageModule, EditableSettingItemComponent, EditableSettingItemListComponent, EditableSettingItemListModule, EditableSettingItemModule, EditableSettingKey, EditableSettingPartialPageComponent, EditableSettingPartialPageModule, EmailValidator, EventSettingsMoreOptionsComponent, EventSettingsMoreOptionsModule, EventsSettingsPageComponent, EventsSettingsPageModule, FeedbackCardComponent, FeedbackCardListComponent, FeedbackCardListModule, FeedbackCardModule, FeedbackCardState, FeedbackDetailPageComponent, FeedbackDetailPageModule, FeedbackListPageComponent, FeedbackListPageModule, FeedbackLoginModalComponent, FeedbackLoginModalModule, FeedbackRequestListPageComponent, FeedbackRequestListPageModule, FeedbackSettingDetailsPageComponent, FeedbackSettingDetailsPageModule, FileUploadComponent, FileUploadModule, FileUploadV2Component, FileUploadV2Module, FilterAreaComponent, FilterAreaModule, FormattedCounterComponent, FormattedCounterModule, FrameworkModule, GridActionsComponent, GridActionsModule, GridCellClickableComponent, GridCellClickableModule, GridCellLoaderModule, GridComponent, GridControlsComponent, GridControlsModule, GridDownloadComponent, GridDownloadModule, GridLoadingCellComponent, GridModule, GridNoRowsOverlayComponent, GridNoRowsOverlayModule, GridToggleCellRendererComponent, GridToggleCellRendererModule, H1Component, H1Module, H2Component, H2Module, H3Component, H3Module, H4Component, H4Module, H5Component, H5Module, H5WithIconComponent, H5WithIconModule, IconComponent, IconModule, IconWithTooltipComponent, IconWithTooltipModule, IconWrapperComponent, IconWrapperModule, Icons, InformationModalComponent, InformationModalModule, InputCheckboxComponent, InputCheckboxListComponent, InputCheckboxListModule, InputCheckboxModule, InputChipsComponent, InputChipsModule, InputDropdownComponent, InputDropdownList, InputDropdownListItemModel, InputDropdownModule, InputFileUploadComponent, InputFileUploadModule, InputRadioComponent, InputRadioModule, InputSearchCheckboxDropdownComponent, InputSearchCheckboxDropdownModule, InputTextComponent, InputTextModule, InputTextareaComponent, InputTextareaModule, InputToggleComponent, InputToggleModule, JobListPageComponent, JobListPageModule, LibrariesPageComponent, LibrariesPageModule, LinkedinPremiumJobPostingsModalComponent, LinkedinPremiumJobPostingsModalModule, MoleculesModule, MultiSelectDataModule, MultiselectSearchCheckbox, NavigationLinkComponent, NavigationLinkModule, NotificationsComponent, NotificationsModule, OrganismsModule, OverflowTextComponent, OverflowTextModule, OverflowTextTooltipComponent, OverflowTextTooltipModule, ParagraphComponent, ParagraphModule, PartialPages, PhaserCardComponent, PhaserCardModule, PhaserComponent, PhaserModule, PillComponent, PillModule, PillsComponent, PillsModule, PipeModule, RelevanceScoreComponent, RelevanceScoreModule, SettingDetailPageComponent, SettingDetailPageModule, SettingListPageComponent, SettingListPageModule, SettingsDetailNavigationItemComponent, SettingsDetailNavigationItemModule, SettingsDetailNavigationListComponent, SettingsDetailNavigationListModule, SfxLoaderComponent, SfxLoaderModule, SfxPageLoaderComponent, SfxPageLoaderModule, SfxProgressBarComponent, SfxProgressBarModule, SidebarNavigationComponent, SidebarNavigationModule, SidebarNavigationV2Component, SidebarNavigationV2Module, TabsComponent, TabsModules, ToasterAlertComponent, ToasterAlertModel, ToasterAlertModule, ToasterAlertType, TooltipWrapperComponent, TooltipWrapperModule, TrimIdPipe, TwoColumnFilterAreaComponent, TwoColumnFilterAreaModule, UploadResumeModalComponent, UploadResumeModalModule, VerticalSeparatorComponent, VerticalSeparatorModule, gridType };
8487
8607
  //# sourceMappingURL=symphony-talent-component-library.mjs.map