@symphony-talent/component-library 4.90.0 → 4.91.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 (41) hide show
  1. package/esm2020/lib/atoms/atoms.module.mjs +8 -4
  2. package/esm2020/lib/atoms/chat-history-date-stamp/chat-history-date-stamp.component.mjs +18 -0
  3. package/esm2020/lib/atoms/chat-history-date-stamp/chat-history-date-stamp.module.mjs +19 -0
  4. package/esm2020/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.component.mjs +3 -3
  5. package/esm2020/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.model.mjs +1 -1
  6. package/esm2020/lib/molecules/chat-history-message-item/chat-history-message-item.component.mjs +8 -7
  7. package/esm2020/lib/molecules/chat-history-message-item/chat-history-message-item.model.mjs +1 -1
  8. package/esm2020/lib/molecules/chat-history-message-item/chat-history-message-item.module.mjs +6 -2
  9. package/esm2020/projects/component-library/lib/atoms/atoms.module.mjs +8 -4
  10. package/esm2020/projects/component-library/lib/atoms/chat-history-date-stamp/chat-history-date-stamp.component.mjs +18 -0
  11. package/esm2020/projects/component-library/lib/atoms/chat-history-date-stamp/chat-history-date-stamp.module.mjs +19 -0
  12. package/esm2020/projects/component-library/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.component.mjs +3 -3
  13. package/esm2020/projects/component-library/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.model.mjs +1 -1
  14. package/esm2020/projects/component-library/lib/molecules/chat-history-message-item/chat-history-message-item.component.mjs +8 -7
  15. package/esm2020/projects/component-library/lib/molecules/chat-history-message-item/chat-history-message-item.model.mjs +1 -1
  16. package/esm2020/projects/component-library/lib/molecules/chat-history-message-item/chat-history-message-item.module.mjs +6 -2
  17. package/esm2020/projects/component-library/public-api.mjs +3 -1
  18. package/esm2020/public-api.mjs +3 -1
  19. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +73 -39
  20. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  21. package/fesm2015/symphony-talent-component-library.mjs +73 -39
  22. package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
  23. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +73 -39
  24. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  25. package/fesm2020/symphony-talent-component-library.mjs +73 -39
  26. package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
  27. package/lib/atoms/atoms.module.d.ts +2 -1
  28. package/lib/atoms/chat-history-date-stamp/chat-history-date-stamp.component.d.ts +8 -0
  29. package/lib/atoms/chat-history-date-stamp/chat-history-date-stamp.module.d.ts +9 -0
  30. package/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.model.d.ts +2 -2
  31. package/lib/molecules/chat-history-message-item/chat-history-message-item.model.d.ts +3 -1
  32. package/lib/molecules/chat-history-message-item/chat-history-message-item.module.d.ts +2 -1
  33. package/package.json +1 -1
  34. package/projects/component-library/lib/atoms/atoms.module.d.ts +2 -1
  35. package/projects/component-library/lib/atoms/chat-history-date-stamp/chat-history-date-stamp.component.d.ts +8 -0
  36. package/projects/component-library/lib/atoms/chat-history-date-stamp/chat-history-date-stamp.module.d.ts +9 -0
  37. package/projects/component-library/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.model.d.ts +2 -2
  38. package/projects/component-library/lib/molecules/chat-history-message-item/chat-history-message-item.model.d.ts +3 -1
  39. package/projects/component-library/lib/molecules/chat-history-message-item/chat-history-message-item.module.d.ts +2 -1
  40. package/projects/component-library/public-api.d.ts +2 -0
  41. package/public-api.d.ts +2 -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;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"] }] });
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.isReceiver,\n 'sent-bubble': !chatHistoryMessageBubbleModel.isReceiver\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;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"] }]
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.isReceiver,\n 'sent-bubble': !chatHistoryMessageBubbleModel.isReceiver\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
  }] } });
@@ -392,6 +392,64 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
392
392
  }]
393
393
  }] });
394
394
 
395
+ class ParagraphComponent {
396
+ constructor() { }
397
+ }
398
+ ParagraphComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ParagraphComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
399
+ ParagraphComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ParagraphComponent, selector: "symphony-paragraph", inputs: { text: "text", isSecondary: "isSecondary", isFontBold: "isFontBold" }, ngImport: i0, template: "<p\n [ngClass]=\"{\n 'body-copy-secondary': isSecondary,\n 'body-copy-primary': !isSecondary, 'sfx-font-bold': isFontBold\n }\"\n>\n {{ text }}\n <ng-content></ng-content>\n</p>\n", styles: [".body-copy-primary,.body-copy-secondary{margin-bottom:0;line-height:20px}.body-copy-secondary{color:#fff}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
400
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ParagraphComponent, decorators: [{
401
+ type: Component,
402
+ args: [{ selector: 'symphony-paragraph', template: "<p\n [ngClass]=\"{\n 'body-copy-secondary': isSecondary,\n 'body-copy-primary': !isSecondary, 'sfx-font-bold': isFontBold\n }\"\n>\n {{ text }}\n <ng-content></ng-content>\n</p>\n", styles: [".body-copy-primary,.body-copy-secondary{margin-bottom:0;line-height:20px}.body-copy-secondary{color:#fff}\n"] }]
403
+ }], ctorParameters: function () { return []; }, propDecorators: { text: [{
404
+ type: Input
405
+ }], isSecondary: [{
406
+ type: Input
407
+ }], isFontBold: [{
408
+ type: Input
409
+ }] } });
410
+
411
+ class ChatHistoryDateStampComponent {
412
+ constructor() { }
413
+ }
414
+ ChatHistoryDateStampComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryDateStampComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
415
+ ChatHistoryDateStampComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ChatHistoryDateStampComponent, selector: "symphony-chat-history-date-stamp", inputs: { chatDateStamp: "chatDateStamp", hasBorder: "hasBorder" }, ngImport: i0, template: "<div *ngIf=\"hasBorder\" class=\"chat-border\"></div>\n<symphony-paragraph class=\"dateStamp\"\n ><span>{{ chatDateStamp }}</span></symphony-paragraph\n>\n", styles: [".dateStamp p{color:#5b6d80;text-align:center}.chat-border{margin-bottom:15px;width:100%;height:1px;background:#e4e7ef}\n"], components: [{ type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary", "isFontBold"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
416
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryDateStampComponent, decorators: [{
417
+ type: Component,
418
+ args: [{ selector: 'symphony-chat-history-date-stamp', encapsulation: ViewEncapsulation.None, template: "<div *ngIf=\"hasBorder\" class=\"chat-border\"></div>\n<symphony-paragraph class=\"dateStamp\"\n ><span>{{ chatDateStamp }}</span></symphony-paragraph\n>\n", styles: [".dateStamp p{color:#5b6d80;text-align:center}.chat-border{margin-bottom:15px;width:100%;height:1px;background:#e4e7ef}\n"] }]
419
+ }], ctorParameters: function () { return []; }, propDecorators: { chatDateStamp: [{
420
+ type: Input
421
+ }], hasBorder: [{
422
+ type: Input
423
+ }] } });
424
+
425
+ class ParagraphModule {
426
+ }
427
+ ParagraphModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ParagraphModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
428
+ ParagraphModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ParagraphModule, declarations: [ParagraphComponent], imports: [CommonModule], exports: [ParagraphComponent] });
429
+ ParagraphModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ParagraphModule, imports: [[CommonModule]] });
430
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ParagraphModule, decorators: [{
431
+ type: NgModule,
432
+ args: [{
433
+ declarations: [ParagraphComponent],
434
+ imports: [CommonModule],
435
+ exports: [ParagraphComponent],
436
+ }]
437
+ }] });
438
+
439
+ class ChatHistoryDateStampModule {
440
+ }
441
+ ChatHistoryDateStampModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryDateStampModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
442
+ ChatHistoryDateStampModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryDateStampModule, declarations: [ChatHistoryDateStampComponent], imports: [CommonModule, ParagraphModule], exports: [ChatHistoryDateStampComponent] });
443
+ ChatHistoryDateStampModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryDateStampModule, imports: [[CommonModule, ParagraphModule]] });
444
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryDateStampModule, decorators: [{
445
+ type: NgModule,
446
+ args: [{
447
+ declarations: [ChatHistoryDateStampComponent],
448
+ imports: [CommonModule, ParagraphModule],
449
+ exports: [ChatHistoryDateStampComponent],
450
+ }]
451
+ }] });
452
+
395
453
  class FilterAreaComponent {
396
454
  constructor() { }
397
455
  }
@@ -637,22 +695,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
637
695
  args: [{ selector: 'symphony-overflow-text', template: "<div class=\"cell-wrap-text\">{{ params.value }}</div>\n", styles: [""] }]
638
696
  }], ctorParameters: function () { return []; } });
639
697
 
640
- class ParagraphComponent {
641
- constructor() { }
642
- }
643
- ParagraphComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ParagraphComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
644
- ParagraphComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ParagraphComponent, selector: "symphony-paragraph", inputs: { text: "text", isSecondary: "isSecondary", isFontBold: "isFontBold" }, ngImport: i0, template: "<p\n [ngClass]=\"{\n 'body-copy-secondary': isSecondary,\n 'body-copy-primary': !isSecondary, 'sfx-font-bold': isFontBold\n }\"\n>\n {{ text }}\n <ng-content></ng-content>\n</p>\n", styles: [".body-copy-primary,.body-copy-secondary{margin-bottom:0;line-height:20px}.body-copy-secondary{color:#fff}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
645
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ParagraphComponent, decorators: [{
646
- type: Component,
647
- args: [{ selector: 'symphony-paragraph', template: "<p\n [ngClass]=\"{\n 'body-copy-secondary': isSecondary,\n 'body-copy-primary': !isSecondary, 'sfx-font-bold': isFontBold\n }\"\n>\n {{ text }}\n <ng-content></ng-content>\n</p>\n", styles: [".body-copy-primary,.body-copy-secondary{margin-bottom:0;line-height:20px}.body-copy-secondary{color:#fff}\n"] }]
648
- }], ctorParameters: function () { return []; }, propDecorators: { text: [{
649
- type: Input
650
- }], isSecondary: [{
651
- type: Input
652
- }], isFontBold: [{
653
- type: Input
654
- }] } });
655
-
656
698
  class GridCellClickableComponent {
657
699
  constructor() { }
658
700
  refresh(params) {
@@ -962,20 +1004,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
962
1004
  }]
963
1005
  }] });
964
1006
 
965
- class ParagraphModule {
966
- }
967
- ParagraphModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ParagraphModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
968
- ParagraphModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ParagraphModule, declarations: [ParagraphComponent], imports: [CommonModule], exports: [ParagraphComponent] });
969
- ParagraphModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ParagraphModule, imports: [[CommonModule]] });
970
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ParagraphModule, decorators: [{
971
- type: NgModule,
972
- args: [{
973
- declarations: [ParagraphComponent],
974
- imports: [CommonModule],
975
- exports: [ParagraphComponent],
976
- }]
977
- }] });
978
-
979
1007
  class GridCellClickableModule {
980
1008
  }
981
1009
  GridCellClickableModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridCellClickableModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
@@ -2681,7 +2709,8 @@ AtomsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "1
2681
2709
  ColoredTextIndicatorModule,
2682
2710
  InputFileUploadModule,
2683
2711
  ChatHistoryMessageAvatarModule,
2684
- ChatHistoryMessageBubbleModule] });
2712
+ ChatHistoryMessageBubbleModule,
2713
+ ChatHistoryDateStampModule] });
2685
2714
  AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, imports: [[], ButtonModule,
2686
2715
  ContextualMenuModule,
2687
2716
  AvatarModule,
@@ -2720,7 +2749,8 @@ AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "1
2720
2749
  ColoredTextIndicatorModule,
2721
2750
  InputFileUploadModule,
2722
2751
  ChatHistoryMessageAvatarModule,
2723
- ChatHistoryMessageBubbleModule] });
2752
+ ChatHistoryMessageBubbleModule,
2753
+ ChatHistoryDateStampModule] });
2724
2754
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, decorators: [{
2725
2755
  type: NgModule,
2726
2756
  args: [{
@@ -2765,7 +2795,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
2765
2795
  ColoredTextIndicatorModule,
2766
2796
  InputFileUploadModule,
2767
2797
  ChatHistoryMessageAvatarModule,
2768
- ChatHistoryMessageBubbleModule
2798
+ ChatHistoryMessageBubbleModule,
2799
+ ChatHistoryDateStampModule
2769
2800
  ]
2770
2801
  }]
2771
2802
  }] });
@@ -2847,10 +2878,10 @@ class ChatHistoryMessageItemComponent {
2847
2878
  constructor() { }
2848
2879
  }
2849
2880
  ChatHistoryMessageItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2850
- 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"] }] });
2881
+ 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 <symphony-chat-history-date-stamp\n class=\"sfx-d-inline-block sfx-wid-100 sfx-mb-20\"\n *ngIf=\"chatHistoryMessageItemModel.dateStamp\"\n [hasBorder]=\"chatHistoryMessageItemModel.dateStampBorder\"\n chatDateStamp=\"{{ chatHistoryMessageItemModel.dateStamp }}\"\n ></symphony-chat-history-date-stamp>\n <div\n class=\"sfx-d-flex\"\n [ngClass]=\"{\n 'received-item': chatHistoryMessageItemModel.isSender,\n 'sent-item': !chatHistoryMessageItemModel.isSender\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</div>\n", styles: [".sent-item .chat-avatar{margin-right:10px}.received-item{flex-direction:row-reverse}.received-item .chat-avatar{margin-left:10px}.received-item .chat-avatar .chat-avatar-wrap{background:#48DEDA;color:#000}\n"], components: [{ type: ChatHistoryDateStampComponent, selector: "symphony-chat-history-date-stamp", inputs: ["chatDateStamp", "hasBorder"] }, { 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"] }], encapsulation: i0.ViewEncapsulation.None });
2851
2882
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageItemComponent, decorators: [{
2852
2883
  type: Component,
2853
- 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"] }]
2884
+ args: [{ selector: 'symphony-chat-history-message-item', encapsulation: ViewEncapsulation.None, template: "<div *ngIf=\"chatHistoryMessageItemModel\">\n <symphony-chat-history-date-stamp\n class=\"sfx-d-inline-block sfx-wid-100 sfx-mb-20\"\n *ngIf=\"chatHistoryMessageItemModel.dateStamp\"\n [hasBorder]=\"chatHistoryMessageItemModel.dateStampBorder\"\n chatDateStamp=\"{{ chatHistoryMessageItemModel.dateStamp }}\"\n ></symphony-chat-history-date-stamp>\n <div\n class=\"sfx-d-flex\"\n [ngClass]=\"{\n 'received-item': chatHistoryMessageItemModel.isSender,\n 'sent-item': !chatHistoryMessageItemModel.isSender\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</div>\n", styles: [".sent-item .chat-avatar{margin-right:10px}.received-item{flex-direction:row-reverse}.received-item .chat-avatar{margin-left:10px}.received-item .chat-avatar .chat-avatar-wrap{background:#48DEDA;color:#000}\n"] }]
2854
2885
  }], ctorParameters: function () { return []; }, propDecorators: { chatHistoryMessageItemModel: [{
2855
2886
  type: Input
2856
2887
  }] } });
@@ -2860,11 +2891,13 @@ class ChatHistoryMessageItemModule {
2860
2891
  ChatHistoryMessageItemModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageItemModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2861
2892
  ChatHistoryMessageItemModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageItemModule, declarations: [ChatHistoryMessageItemComponent], imports: [CommonModule,
2862
2893
  ChatHistoryMessageAvatarModule,
2863
- ChatHistoryMessageBubbleModule], exports: [ChatHistoryMessageItemComponent] });
2894
+ ChatHistoryMessageBubbleModule,
2895
+ ChatHistoryDateStampModule], exports: [ChatHistoryMessageItemComponent] });
2864
2896
  ChatHistoryMessageItemModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageItemModule, imports: [[
2865
2897
  CommonModule,
2866
2898
  ChatHistoryMessageAvatarModule,
2867
2899
  ChatHistoryMessageBubbleModule,
2900
+ ChatHistoryDateStampModule
2868
2901
  ]] });
2869
2902
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChatHistoryMessageItemModule, decorators: [{
2870
2903
  type: NgModule,
@@ -2874,6 +2907,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
2874
2907
  CommonModule,
2875
2908
  ChatHistoryMessageAvatarModule,
2876
2909
  ChatHistoryMessageBubbleModule,
2910
+ ChatHistoryDateStampModule
2877
2911
  ],
2878
2912
  exports: [ChatHistoryMessageItemComponent],
2879
2913
  }]
@@ -8671,5 +8705,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
8671
8705
  * Generated bundle index. Do not edit.
8672
8706
  */
8673
8707
 
8674
- 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, ScheduleInterviewModalComponent, ScheduleInterviewModalModule, 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 };
8708
+ 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, ChatHistoryDateStampComponent, ChatHistoryDateStampModule, 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, ScheduleInterviewModalComponent, ScheduleInterviewModalModule, 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 };
8675
8709
  //# sourceMappingURL=symphony-talent-component-library-projects-component-library.mjs.map