@symphony-talent/component-library 4.85.0 → 4.87.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 +28 -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 +46 -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 +28 -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 +46 -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 +130 -7
  26. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  27. package/fesm2015/symphony-talent-component-library.mjs +130 -7
  28. package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
  29. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +130 -7
  30. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  31. package/fesm2020/symphony-talent-component-library.mjs +130 -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 +8 -0
  42. package/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.module.d.ts +14 -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 +8 -0
  53. package/projects/component-library/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.module.d.ts +14 -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
  }] } });
@@ -2844,6 +2844,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
2844
2844
  }]
2845
2845
  }] });
2846
2846
 
2847
+ class ChatHistoryMessageItemComponent {
2848
+ constructor() { }
2849
+ }
2850
+ ChatHistoryMessageItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2851
+ 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"] }] });
2852
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageItemComponent, decorators: [{
2853
+ type: Component,
2854
+ 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"] }]
2855
+ }], ctorParameters: function () { return []; }, propDecorators: { chatHistoryMessageItemModel: [{
2856
+ type: Input
2857
+ }] } });
2858
+
2859
+ class ChatHistoryMessageItemModule {
2860
+ }
2861
+ ChatHistoryMessageItemModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageItemModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2862
+ ChatHistoryMessageItemModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageItemModule, declarations: [ChatHistoryMessageItemComponent], imports: [CommonModule,
2863
+ ChatHistoryMessageAvatarModule,
2864
+ ChatHistoryMessageBubbleModule], exports: [ChatHistoryMessageItemComponent] });
2865
+ ChatHistoryMessageItemModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageItemModule, imports: [[
2866
+ CommonModule,
2867
+ ChatHistoryMessageAvatarModule,
2868
+ ChatHistoryMessageBubbleModule,
2869
+ ]] });
2870
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageItemModule, decorators: [{
2871
+ type: NgModule,
2872
+ args: [{
2873
+ declarations: [ChatHistoryMessageItemComponent],
2874
+ imports: [
2875
+ CommonModule,
2876
+ ChatHistoryMessageAvatarModule,
2877
+ ChatHistoryMessageBubbleModule,
2878
+ ],
2879
+ exports: [ChatHistoryMessageItemComponent],
2880
+ }]
2881
+ }] });
2882
+
2847
2883
  var FeedbackCardState;
2848
2884
  (function (FeedbackCardState) {
2849
2885
  FeedbackCardState["None"] = "None";
@@ -3713,7 +3749,8 @@ MoleculesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
3713
3749
  TabsModules,
3714
3750
  InputToggleModule,
3715
3751
  LabelledInputToggleModule,
3716
- LabelledToggleListModule], exports: [PillsModule,
3752
+ LabelledToggleListModule,
3753
+ ChatHistoryMessageItemModule], exports: [PillsModule,
3717
3754
  BreadcrumbModule,
3718
3755
  FeedbackCardModule,
3719
3756
  DocumentManagementItemModule,
@@ -3745,7 +3782,8 @@ MoleculesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
3745
3782
  TabsModules,
3746
3783
  InputToggleModule,
3747
3784
  LabelledInputToggleModule,
3748
- LabelledToggleListModule
3785
+ LabelledToggleListModule,
3786
+ ChatHistoryMessageItemModule
3749
3787
  ], PillsModule,
3750
3788
  BreadcrumbModule,
3751
3789
  FeedbackCardModule,
@@ -3790,7 +3828,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
3790
3828
  TabsModules,
3791
3829
  InputToggleModule,
3792
3830
  LabelledInputToggleModule,
3793
- LabelledToggleListModule
3831
+ LabelledToggleListModule,
3832
+ ChatHistoryMessageItemModule
3794
3833
  ]
3795
3834
  }]
3796
3835
  }] });
@@ -3828,6 +3867,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
3828
3867
  }]
3829
3868
  }] });
3830
3869
 
3870
+ class ChatHistoryMessageListComponent {
3871
+ constructor() { }
3872
+ }
3873
+ ChatHistoryMessageListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
3874
+ 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"] }] });
3875
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageListComponent, decorators: [{
3876
+ type: Component,
3877
+ 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: [""] }]
3878
+ }], ctorParameters: function () { return []; }, propDecorators: { messageItemsList: [{
3879
+ type: Input
3880
+ }] } });
3881
+
3882
+ class ChatHistoryMessageListModule {
3883
+ }
3884
+ ChatHistoryMessageListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
3885
+ ChatHistoryMessageListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageListModule, declarations: [ChatHistoryMessageListComponent], imports: [CommonModule, ChatHistoryMessageItemModule], exports: [ChatHistoryMessageListComponent] });
3886
+ ChatHistoryMessageListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageListModule, imports: [[CommonModule, ChatHistoryMessageItemModule]] });
3887
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageListModule, decorators: [{
3888
+ type: NgModule,
3889
+ args: [{
3890
+ declarations: [ChatHistoryMessageListComponent],
3891
+ imports: [CommonModule, ChatHistoryMessageItemModule],
3892
+ exports: [ChatHistoryMessageListComponent],
3893
+ }]
3894
+ }] });
3895
+
3831
3896
  class FeedbackCardListComponent {
3832
3897
  constructor() {
3833
3898
  this.cardClick = new EventEmitter();
@@ -6008,7 +6073,8 @@ OrganismsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
6008
6073
  H4Module,
6009
6074
  ParagraphModule,
6010
6075
  ButtonModule,
6011
- InformationModalModule] });
6076
+ InformationModalModule,
6077
+ ChatHistoryMessageListModule] });
6012
6078
  OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, imports: [[
6013
6079
  CommonModule,
6014
6080
  NoteListModule,
@@ -6037,6 +6103,7 @@ OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
6037
6103
  ParagraphModule,
6038
6104
  ButtonModule,
6039
6105
  InformationModalModule,
6106
+ ChatHistoryMessageListModule
6040
6107
  ]] });
6041
6108
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, decorators: [{
6042
6109
  type: NgModule,
@@ -6070,6 +6137,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
6070
6137
  ParagraphModule,
6071
6138
  ButtonModule,
6072
6139
  InformationModalModule,
6140
+ ChatHistoryMessageListModule
6073
6141
  ]
6074
6142
  }]
6075
6143
  }] });
@@ -7782,6 +7850,61 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
7782
7850
  }]
7783
7851
  }] });
7784
7852
 
7853
+ class ChatbotHistoryModalComponent {
7854
+ constructor() {
7855
+ this.closeButtonClicked = new EventEmitter();
7856
+ }
7857
+ onCloseButtonClick() {
7858
+ this.closeButtonClicked.emit();
7859
+ }
7860
+ }
7861
+ ChatbotHistoryModalComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatbotHistoryModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
7862
+ 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\n *ngIf=\"chatbotHistoryModel\"\n [hideSubtitle]=\"false\"\n>\n <symphony-h4 sfx-modal-title>{{\n chatbotHistoryModel.modalTitle\n }}</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\n }}</symphony-paragraph>\n <section\n *ngIf=\"!chatbotHistoryModel.isLoading\"\n class=\"sfx-p-30 chatModal-body\"\n sfx-modal-body-area\n >\n <symphony-chat-history-message-list\n *ngIf=\"!chatbotHistoryModel.errorText\"\n [messageItemsList]=\"chatbotHistoryModel.messageItemsList\"\n ></symphony-chat-history-message-list>\n <section class=\"sfx-pt-40 sfx-pb-40 sfx-txt-center\" *ngIf=\"chatbotHistoryModel.errorText\">\n <symphony-paragraph>{{\n chatbotHistoryModel.errorText\n }}</symphony-paragraph>\n </section>\n </section>\n <section\n *ngIf=\"chatbotHistoryModel.isLoading\"\n class=\"sfx-pt-40 sfx-pb-40\"\n sfx-modal-body-area\n >\n <symphony-sfx-loader> </symphony-sfx-loader>\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"] }, { type: SfxLoaderComponent, selector: "symphony-sfx-loader", inputs: ["leftStyle", "message", "hasCustomMessage"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
7863
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatbotHistoryModalComponent, decorators: [{
7864
+ type: Component,
7865
+ args: [{ selector: 'symphony-chatbot-history-modal', template: "<symphony-two-column-modal-template\n *ngIf=\"chatbotHistoryModel\"\n [hideSubtitle]=\"false\"\n>\n <symphony-h4 sfx-modal-title>{{\n chatbotHistoryModel.modalTitle\n }}</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\n }}</symphony-paragraph>\n <section\n *ngIf=\"!chatbotHistoryModel.isLoading\"\n class=\"sfx-p-30 chatModal-body\"\n sfx-modal-body-area\n >\n <symphony-chat-history-message-list\n *ngIf=\"!chatbotHistoryModel.errorText\"\n [messageItemsList]=\"chatbotHistoryModel.messageItemsList\"\n ></symphony-chat-history-message-list>\n <section class=\"sfx-pt-40 sfx-pb-40 sfx-txt-center\" *ngIf=\"chatbotHistoryModel.errorText\">\n <symphony-paragraph>{{\n chatbotHistoryModel.errorText\n }}</symphony-paragraph>\n </section>\n </section>\n <section\n *ngIf=\"chatbotHistoryModel.isLoading\"\n class=\"sfx-pt-40 sfx-pb-40\"\n sfx-modal-body-area\n >\n <symphony-sfx-loader> </symphony-sfx-loader>\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"] }]
7866
+ }], ctorParameters: function () { return []; }, propDecorators: { chatbotHistoryModel: [{
7867
+ type: Input
7868
+ }], closeButtonClicked: [{
7869
+ type: Output
7870
+ }] } });
7871
+
7872
+ class ChatbotHistoryModalModule {
7873
+ }
7874
+ ChatbotHistoryModalModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatbotHistoryModalModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
7875
+ ChatbotHistoryModalModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatbotHistoryModalModule, declarations: [ChatbotHistoryModalComponent], imports: [CommonModule,
7876
+ TwoColumnModalModule,
7877
+ IconModule,
7878
+ H4Module,
7879
+ ChatHistoryMessageListModule,
7880
+ ParagraphModule,
7881
+ SfxLoaderModule], exports: [ChatbotHistoryModalComponent] });
7882
+ ChatbotHistoryModalModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatbotHistoryModalModule, imports: [[
7883
+ CommonModule,
7884
+ TwoColumnModalModule,
7885
+ IconModule,
7886
+ H4Module,
7887
+ ChatHistoryMessageListModule,
7888
+ ParagraphModule,
7889
+ SfxLoaderModule
7890
+ ]] });
7891
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatbotHistoryModalModule, decorators: [{
7892
+ type: NgModule,
7893
+ args: [{
7894
+ declarations: [ChatbotHistoryModalComponent],
7895
+ imports: [
7896
+ CommonModule,
7897
+ TwoColumnModalModule,
7898
+ IconModule,
7899
+ H4Module,
7900
+ ChatHistoryMessageListModule,
7901
+ ParagraphModule,
7902
+ SfxLoaderModule
7903
+ ],
7904
+ exports: [ChatbotHistoryModalComponent],
7905
+ }]
7906
+ }] });
7907
+
7785
7908
  class ContactListTemplateComponent {
7786
7909
  constructor() { }
7787
7910
  }
@@ -8487,5 +8610,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
8487
8610
  * Generated bundle index. Do not edit.
8488
8611
  */
8489
8612
 
8490
- 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 };
8613
+ 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 };
8491
8614
  //# sourceMappingURL=symphony-talent-component-library.mjs.map