@symphony-talent/component-library 4.84.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.
- package/esm2020/lib/atoms/atoms.module.mjs +12 -4
- package/esm2020/lib/atoms/chat-history-message-avatar/chat-history-message-avatar.component.mjs +17 -0
- package/esm2020/lib/atoms/chat-history-message-avatar/chat-history-message-avatar.module.mjs +18 -0
- package/esm2020/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.component.mjs +15 -0
- package/esm2020/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.model.mjs +2 -0
- package/esm2020/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.module.mjs +18 -0
- package/esm2020/lib/molecules/chat-history-message-item/chat-history-message-item.component.mjs +17 -0
- package/esm2020/lib/molecules/chat-history-message-item/chat-history-message-item.model.mjs +2 -0
- package/esm2020/lib/molecules/chat-history-message-item/chat-history-message-item.module.mjs +30 -0
- package/esm2020/lib/molecules/molecules.module.mjs +8 -4
- package/esm2020/lib/organisms/chat-history-message-list/chat-history-message-list.component.mjs +16 -0
- package/esm2020/lib/organisms/chat-history-message-list/chat-history-message-list.module.mjs +19 -0
- package/esm2020/lib/organisms/organisms.module.mjs +6 -2
- package/esm2020/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.component.mjs +27 -0
- package/esm2020/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.model.mjs +2 -0
- package/esm2020/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.module.mjs +42 -0
- package/esm2020/projects/component-library/lib/atoms/atoms.module.mjs +12 -4
- package/esm2020/projects/component-library/lib/atoms/chat-history-message-avatar/chat-history-message-avatar.component.mjs +17 -0
- package/esm2020/projects/component-library/lib/atoms/chat-history-message-avatar/chat-history-message-avatar.module.mjs +18 -0
- package/esm2020/projects/component-library/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.component.mjs +15 -0
- package/esm2020/projects/component-library/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.module.mjs +18 -0
- package/esm2020/projects/component-library/lib/molecules/chat-history-message-item/chat-history-message-item.component.mjs +17 -0
- package/esm2020/projects/component-library/lib/molecules/chat-history-message-item/chat-history-message-item.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/molecules/chat-history-message-item/chat-history-message-item.module.mjs +30 -0
- package/esm2020/projects/component-library/lib/molecules/molecules.module.mjs +8 -4
- package/esm2020/projects/component-library/lib/organisms/chat-history-message-list/chat-history-message-list.component.mjs +16 -0
- package/esm2020/projects/component-library/lib/organisms/chat-history-message-list/chat-history-message-list.module.mjs +19 -0
- package/esm2020/projects/component-library/lib/organisms/organisms.module.mjs +6 -2
- package/esm2020/projects/component-library/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.component.mjs +27 -0
- package/esm2020/projects/component-library/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.module.mjs +42 -0
- package/esm2020/projects/component-library/public-api.mjs +14 -1
- package/esm2020/public-api.mjs +14 -1
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +188 -8
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +188 -8
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +188 -8
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +188 -8
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/atoms/atoms.module.d.ts +3 -1
- package/lib/atoms/chat-history-message-avatar/chat-history-message-avatar.component.d.ts +8 -0
- package/lib/atoms/chat-history-message-avatar/chat-history-message-avatar.module.d.ts +8 -0
- package/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.component.d.ts +8 -0
- package/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.model.d.ts +6 -0
- package/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.module.d.ts +8 -0
- package/lib/molecules/chat-history-message-item/chat-history-message-item.component.d.ts +8 -0
- package/lib/molecules/chat-history-message-item/chat-history-message-item.model.d.ts +7 -0
- package/lib/molecules/chat-history-message-item/chat-history-message-item.module.d.ts +10 -0
- package/lib/molecules/molecules.module.d.ts +3 -2
- package/lib/organisms/chat-history-message-list/chat-history-message-list.component.d.ts +8 -0
- package/lib/organisms/chat-history-message-list/chat-history-message-list.module.d.ts +9 -0
- package/lib/organisms/organisms.module.d.ts +2 -1
- package/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.component.d.ts +11 -0
- package/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.model.d.ts +6 -0
- package/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.module.d.ts +13 -0
- package/package.json +1 -1
- package/projects/component-library/lib/atoms/atoms.module.d.ts +3 -1
- package/projects/component-library/lib/atoms/chat-history-message-avatar/chat-history-message-avatar.component.d.ts +8 -0
- package/projects/component-library/lib/atoms/chat-history-message-avatar/chat-history-message-avatar.module.d.ts +8 -0
- package/projects/component-library/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.component.d.ts +8 -0
- package/projects/component-library/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.model.d.ts +6 -0
- package/projects/component-library/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.module.d.ts +8 -0
- package/projects/component-library/lib/molecules/chat-history-message-item/chat-history-message-item.component.d.ts +8 -0
- package/projects/component-library/lib/molecules/chat-history-message-item/chat-history-message-item.model.d.ts +7 -0
- package/projects/component-library/lib/molecules/chat-history-message-item/chat-history-message-item.module.d.ts +10 -0
- package/projects/component-library/lib/molecules/molecules.module.d.ts +3 -2
- package/projects/component-library/lib/organisms/chat-history-message-list/chat-history-message-list.component.d.ts +8 -0
- package/projects/component-library/lib/organisms/chat-history-message-list/chat-history-message-list.module.d.ts +9 -0
- package/projects/component-library/lib/organisms/organisms.module.d.ts +2 -1
- package/projects/component-library/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.component.d.ts +11 -0
- package/projects/component-library/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.model.d.ts +6 -0
- package/projects/component-library/lib/pages/modals/chatbot-history-modal/chatbot-history-modal.module.d.ts +13 -0
- package/projects/component-library/public-api.d.ts +13 -0
- package/public-api.d.ts +13 -0
|
@@ -338,6 +338,60 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
338
338
|
}]
|
|
339
339
|
}] });
|
|
340
340
|
|
|
341
|
+
class ChatHistoryMessageAvatarComponent {
|
|
342
|
+
constructor() { }
|
|
343
|
+
}
|
|
344
|
+
ChatHistoryMessageAvatarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageAvatarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
345
|
+
ChatHistoryMessageAvatarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ChatHistoryMessageAvatarComponent, selector: "symphony-chat-history-message-avatar", inputs: { initials: "initials", imgSource: "imgSource" }, ngImport: i0, template: "<div class=\"sfx-d-flex chat-avatar-wrap\">\n <span *ngIf=\"initials && !imgSource\" class=\"sfx-font18\">{{ initials }}</span>\n <img\n *ngIf=\"imgSource && initials\"\n src=\"{{ imgSource }}\"\n class=\"img-responsive\"\n />\n</div>\n", styles: [".chat-avatar-wrap{width:40px;height:40px;border-radius:50%;background:#5b6d80;justify-content:center;align-items:center;color:#fff}.chat-avatar-wrap img{-o-object-fit:cover;object-fit:cover;width:100%;height:100%;border-radius:50%}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
346
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageAvatarComponent, decorators: [{
|
|
347
|
+
type: Component,
|
|
348
|
+
args: [{ selector: 'symphony-chat-history-message-avatar', template: "<div class=\"sfx-d-flex chat-avatar-wrap\">\n <span *ngIf=\"initials && !imgSource\" class=\"sfx-font18\">{{ initials }}</span>\n <img\n *ngIf=\"imgSource && initials\"\n src=\"{{ imgSource }}\"\n class=\"img-responsive\"\n />\n</div>\n", styles: [".chat-avatar-wrap{width:40px;height:40px;border-radius:50%;background:#5b6d80;justify-content:center;align-items:center;color:#fff}.chat-avatar-wrap img{-o-object-fit:cover;object-fit:cover;width:100%;height:100%;border-radius:50%}\n"] }]
|
|
349
|
+
}], ctorParameters: function () { return []; }, propDecorators: { initials: [{
|
|
350
|
+
type: Input
|
|
351
|
+
}], imgSource: [{
|
|
352
|
+
type: Input
|
|
353
|
+
}] } });
|
|
354
|
+
|
|
355
|
+
class ChatHistoryMessageAvatarModule {
|
|
356
|
+
}
|
|
357
|
+
ChatHistoryMessageAvatarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageAvatarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
358
|
+
ChatHistoryMessageAvatarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageAvatarModule, declarations: [ChatHistoryMessageAvatarComponent], imports: [CommonModule], exports: [ChatHistoryMessageAvatarComponent] });
|
|
359
|
+
ChatHistoryMessageAvatarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageAvatarModule, imports: [[CommonModule]] });
|
|
360
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageAvatarModule, decorators: [{
|
|
361
|
+
type: NgModule,
|
|
362
|
+
args: [{
|
|
363
|
+
declarations: [ChatHistoryMessageAvatarComponent],
|
|
364
|
+
imports: [CommonModule],
|
|
365
|
+
exports: [ChatHistoryMessageAvatarComponent],
|
|
366
|
+
}]
|
|
367
|
+
}] });
|
|
368
|
+
|
|
369
|
+
class ChatHistoryMessageBubbleComponent {
|
|
370
|
+
constructor() { }
|
|
371
|
+
}
|
|
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;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
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageBubbleComponent, decorators: [{
|
|
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;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
|
+
}], ctorParameters: function () { return []; }, propDecorators: { chatHistoryMessageBubbleModel: [{
|
|
378
|
+
type: Input
|
|
379
|
+
}] } });
|
|
380
|
+
|
|
381
|
+
class ChatHistoryMessageBubbleModule {
|
|
382
|
+
}
|
|
383
|
+
ChatHistoryMessageBubbleModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageBubbleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
384
|
+
ChatHistoryMessageBubbleModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageBubbleModule, declarations: [ChatHistoryMessageBubbleComponent], imports: [CommonModule], exports: [ChatHistoryMessageBubbleComponent] });
|
|
385
|
+
ChatHistoryMessageBubbleModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageBubbleModule, imports: [[CommonModule]] });
|
|
386
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageBubbleModule, decorators: [{
|
|
387
|
+
type: NgModule,
|
|
388
|
+
args: [{
|
|
389
|
+
declarations: [ChatHistoryMessageBubbleComponent],
|
|
390
|
+
imports: [CommonModule],
|
|
391
|
+
exports: [ChatHistoryMessageBubbleComponent],
|
|
392
|
+
}]
|
|
393
|
+
}] });
|
|
394
|
+
|
|
341
395
|
class FilterAreaComponent {
|
|
342
396
|
constructor() { }
|
|
343
397
|
}
|
|
@@ -2626,7 +2680,9 @@ AtomsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "1
|
|
|
2626
2680
|
CharacterCounterModule,
|
|
2627
2681
|
InputTextareaModule,
|
|
2628
2682
|
ColoredTextIndicatorModule,
|
|
2629
|
-
InputFileUploadModule
|
|
2683
|
+
InputFileUploadModule,
|
|
2684
|
+
ChatHistoryMessageAvatarModule,
|
|
2685
|
+
ChatHistoryMessageBubbleModule] });
|
|
2630
2686
|
AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, imports: [[], ButtonModule,
|
|
2631
2687
|
ContextualMenuModule,
|
|
2632
2688
|
AvatarModule,
|
|
@@ -2663,7 +2719,9 @@ AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "1
|
|
|
2663
2719
|
CharacterCounterModule,
|
|
2664
2720
|
InputTextareaModule,
|
|
2665
2721
|
ColoredTextIndicatorModule,
|
|
2666
|
-
InputFileUploadModule
|
|
2722
|
+
InputFileUploadModule,
|
|
2723
|
+
ChatHistoryMessageAvatarModule,
|
|
2724
|
+
ChatHistoryMessageBubbleModule] });
|
|
2667
2725
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, decorators: [{
|
|
2668
2726
|
type: NgModule,
|
|
2669
2727
|
args: [{
|
|
@@ -2706,7 +2764,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
2706
2764
|
CharacterCounterModule,
|
|
2707
2765
|
InputTextareaModule,
|
|
2708
2766
|
ColoredTextIndicatorModule,
|
|
2709
|
-
InputFileUploadModule
|
|
2767
|
+
InputFileUploadModule,
|
|
2768
|
+
ChatHistoryMessageAvatarModule,
|
|
2769
|
+
ChatHistoryMessageBubbleModule
|
|
2710
2770
|
]
|
|
2711
2771
|
}]
|
|
2712
2772
|
}] });
|
|
@@ -2784,6 +2844,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
2784
2844
|
}]
|
|
2785
2845
|
}] });
|
|
2786
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
|
+
|
|
2787
2883
|
var FeedbackCardState;
|
|
2788
2884
|
(function (FeedbackCardState) {
|
|
2789
2885
|
FeedbackCardState["None"] = "None";
|
|
@@ -3653,7 +3749,8 @@ MoleculesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
|
|
|
3653
3749
|
TabsModules,
|
|
3654
3750
|
InputToggleModule,
|
|
3655
3751
|
LabelledInputToggleModule,
|
|
3656
|
-
LabelledToggleListModule
|
|
3752
|
+
LabelledToggleListModule,
|
|
3753
|
+
ChatHistoryMessageItemModule], exports: [PillsModule,
|
|
3657
3754
|
BreadcrumbModule,
|
|
3658
3755
|
FeedbackCardModule,
|
|
3659
3756
|
DocumentManagementItemModule,
|
|
@@ -3685,7 +3782,8 @@ MoleculesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
|
|
|
3685
3782
|
TabsModules,
|
|
3686
3783
|
InputToggleModule,
|
|
3687
3784
|
LabelledInputToggleModule,
|
|
3688
|
-
LabelledToggleListModule
|
|
3785
|
+
LabelledToggleListModule,
|
|
3786
|
+
ChatHistoryMessageItemModule
|
|
3689
3787
|
], PillsModule,
|
|
3690
3788
|
BreadcrumbModule,
|
|
3691
3789
|
FeedbackCardModule,
|
|
@@ -3730,7 +3828,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
3730
3828
|
TabsModules,
|
|
3731
3829
|
InputToggleModule,
|
|
3732
3830
|
LabelledInputToggleModule,
|
|
3733
|
-
LabelledToggleListModule
|
|
3831
|
+
LabelledToggleListModule,
|
|
3832
|
+
ChatHistoryMessageItemModule
|
|
3734
3833
|
]
|
|
3735
3834
|
}]
|
|
3736
3835
|
}] });
|
|
@@ -3768,6 +3867,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
3768
3867
|
}]
|
|
3769
3868
|
}] });
|
|
3770
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
|
+
|
|
3771
3896
|
class FeedbackCardListComponent {
|
|
3772
3897
|
constructor() {
|
|
3773
3898
|
this.cardClick = new EventEmitter();
|
|
@@ -5948,7 +6073,8 @@ OrganismsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
|
|
|
5948
6073
|
H4Module,
|
|
5949
6074
|
ParagraphModule,
|
|
5950
6075
|
ButtonModule,
|
|
5951
|
-
InformationModalModule
|
|
6076
|
+
InformationModalModule,
|
|
6077
|
+
ChatHistoryMessageListModule] });
|
|
5952
6078
|
OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, imports: [[
|
|
5953
6079
|
CommonModule,
|
|
5954
6080
|
NoteListModule,
|
|
@@ -5977,6 +6103,7 @@ OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
|
|
|
5977
6103
|
ParagraphModule,
|
|
5978
6104
|
ButtonModule,
|
|
5979
6105
|
InformationModalModule,
|
|
6106
|
+
ChatHistoryMessageListModule
|
|
5980
6107
|
]] });
|
|
5981
6108
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, decorators: [{
|
|
5982
6109
|
type: NgModule,
|
|
@@ -6010,6 +6137,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
6010
6137
|
ParagraphModule,
|
|
6011
6138
|
ButtonModule,
|
|
6012
6139
|
InformationModalModule,
|
|
6140
|
+
ChatHistoryMessageListModule
|
|
6013
6141
|
]
|
|
6014
6142
|
}]
|
|
6015
6143
|
}] });
|
|
@@ -7722,6 +7850,58 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
7722
7850
|
}]
|
|
7723
7851
|
}] });
|
|
7724
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 *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"] }] });
|
|
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 *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"] }]
|
|
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], exports: [ChatbotHistoryModalComponent] });
|
|
7881
|
+
ChatbotHistoryModalModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatbotHistoryModalModule, imports: [[
|
|
7882
|
+
CommonModule,
|
|
7883
|
+
TwoColumnModalModule,
|
|
7884
|
+
IconModule,
|
|
7885
|
+
H4Module,
|
|
7886
|
+
ChatHistoryMessageListModule,
|
|
7887
|
+
ParagraphModule,
|
|
7888
|
+
]] });
|
|
7889
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatbotHistoryModalModule, decorators: [{
|
|
7890
|
+
type: NgModule,
|
|
7891
|
+
args: [{
|
|
7892
|
+
declarations: [ChatbotHistoryModalComponent],
|
|
7893
|
+
imports: [
|
|
7894
|
+
CommonModule,
|
|
7895
|
+
TwoColumnModalModule,
|
|
7896
|
+
IconModule,
|
|
7897
|
+
H4Module,
|
|
7898
|
+
ChatHistoryMessageListModule,
|
|
7899
|
+
ParagraphModule,
|
|
7900
|
+
],
|
|
7901
|
+
exports: [ChatbotHistoryModalComponent],
|
|
7902
|
+
}]
|
|
7903
|
+
}] });
|
|
7904
|
+
|
|
7725
7905
|
class ContactListTemplateComponent {
|
|
7726
7906
|
constructor() { }
|
|
7727
7907
|
}
|
|
@@ -8427,5 +8607,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
8427
8607
|
* Generated bundle index. Do not edit.
|
|
8428
8608
|
*/
|
|
8429
8609
|
|
|
8430
|
-
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, 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 };
|
|
8610
|
+
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 };
|
|
8431
8611
|
//# sourceMappingURL=symphony-talent-component-library.mjs.map
|