@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
@@ -0,0 +1,8 @@
1
+ import { ChatHistoryMessageItemModel } from './chat-history-message-item.model';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ChatHistoryMessageItemComponent {
4
+ chatHistoryMessageItemModel: ChatHistoryMessageItemModel;
5
+ constructor();
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChatHistoryMessageItemComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChatHistoryMessageItemComponent, "symphony-chat-history-message-item", never, { "chatHistoryMessageItemModel": "chatHistoryMessageItemModel"; }, {}, never, never>;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { ChatHistoryMessageBubbleModel } from '../../atoms/chat-history-message-bubble/chat-history-message-bubble.model';
2
+ export interface ChatHistoryMessageItemModel {
3
+ isSent: boolean;
4
+ initials: string;
5
+ imgSource?: string;
6
+ chatHistoryMessageBubble: ChatHistoryMessageBubbleModel;
7
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./chat-history-message-item.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../../atoms/chat-history-message-avatar/chat-history-message-avatar.module";
5
+ import * as i4 from "../../atoms/chat-history-message-bubble/chat-history-message-bubble.module";
6
+ export declare class ChatHistoryMessageItemModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChatHistoryMessageItemModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ChatHistoryMessageItemModule, [typeof i1.ChatHistoryMessageItemComponent], [typeof i2.CommonModule, typeof i3.ChatHistoryMessageAvatarModule, typeof i4.ChatHistoryMessageBubbleModule], [typeof i1.ChatHistoryMessageItemComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<ChatHistoryMessageItemModule>;
10
+ }
@@ -24,9 +24,10 @@ import * as i22 from "./tabs/tabs.module";
24
24
  import * as i23 from "../atoms/input-toggle/input-toggle.module";
25
25
  import * as i24 from "./labelled-input-toggle/labelled-input-toggle.module";
26
26
  import * as i25 from "./labelled-toggle-list/labelled-toggle-list.module";
27
- import * as i26 from "./phaser-card/phaser-card.module";
27
+ import * as i26 from "./chat-history-message-item/chat-history-message-item.module";
28
+ import * as i27 from "./phaser-card/phaser-card.module";
28
29
  export declare class MoleculesModule {
29
30
  static ɵfac: i0.ɵɵFactoryDeclaration<MoleculesModule, never>;
30
- static ɵmod: i0.ɵɵNgModuleDeclaration<MoleculesModule, never, [typeof i1.CommonModule, typeof i2.AvatarModule, typeof i3.ContextualMenuModule, typeof i4.PillsModule, typeof i5.ColorSwatchModule, typeof i6.IconSwatchModule, typeof i7.BreadcrumbModule, typeof i8.H5WithIconModule, typeof i9.InvoiceLineItemModule, typeof i10.FeedbackCardModule, typeof i11.SfxAccordionHeaderModule, typeof i12.FileUploadModule, typeof i13.FileUploadStatusModule, typeof i10.FeedbackCardModule, typeof i14.ButtonWithIconModule, typeof i15.IconWithTooltipModule, typeof i16.DocumentManagementItemModule, typeof i17.ActionBarSelectionCounterModule, typeof i18.InputTextareaModule, typeof i19.CharacterCounterModule, typeof i20.SettingsDetailNavigationItemModule, typeof i21.EditableSettingItemModule, typeof i22.TabsModules, typeof i23.InputToggleModule, typeof i24.LabelledInputToggleModule, typeof i25.LabelledToggleListModule], [typeof i4.PillsModule, typeof i7.BreadcrumbModule, typeof i10.FeedbackCardModule, typeof i16.DocumentManagementItemModule, typeof i26.PhaserCardModule, typeof i20.SettingsDetailNavigationItemModule]>;
31
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MoleculesModule, never, [typeof i1.CommonModule, typeof i2.AvatarModule, typeof i3.ContextualMenuModule, typeof i4.PillsModule, typeof i5.ColorSwatchModule, typeof i6.IconSwatchModule, typeof i7.BreadcrumbModule, typeof i8.H5WithIconModule, typeof i9.InvoiceLineItemModule, typeof i10.FeedbackCardModule, typeof i11.SfxAccordionHeaderModule, typeof i12.FileUploadModule, typeof i13.FileUploadStatusModule, typeof i10.FeedbackCardModule, typeof i14.ButtonWithIconModule, typeof i15.IconWithTooltipModule, typeof i16.DocumentManagementItemModule, typeof i17.ActionBarSelectionCounterModule, typeof i18.InputTextareaModule, typeof i19.CharacterCounterModule, typeof i20.SettingsDetailNavigationItemModule, typeof i21.EditableSettingItemModule, typeof i22.TabsModules, typeof i23.InputToggleModule, typeof i24.LabelledInputToggleModule, typeof i25.LabelledToggleListModule, typeof i26.ChatHistoryMessageItemModule], [typeof i4.PillsModule, typeof i7.BreadcrumbModule, typeof i10.FeedbackCardModule, typeof i16.DocumentManagementItemModule, typeof i27.PhaserCardModule, typeof i20.SettingsDetailNavigationItemModule]>;
31
32
  static ɵinj: i0.ɵɵInjectorDeclaration<MoleculesModule>;
32
33
  }
@@ -0,0 +1,8 @@
1
+ import { ChatHistoryMessageItemModel } from '../../molecules/chat-history-message-item/chat-history-message-item.model';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ChatHistoryMessageListComponent {
4
+ messageItemsList: ChatHistoryMessageItemModel[];
5
+ constructor();
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChatHistoryMessageListComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChatHistoryMessageListComponent, "symphony-chat-history-message-list", never, { "messageItemsList": "messageItemsList"; }, {}, never, never>;
8
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./chat-history-message-list.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../../molecules/chat-history-message-item/chat-history-message-item.module";
5
+ export declare class ChatHistoryMessageListModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChatHistoryMessageListModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ChatHistoryMessageListModule, [typeof i1.ChatHistoryMessageListComponent], [typeof i2.CommonModule, typeof i3.ChatHistoryMessageItemModule], [typeof i1.ChatHistoryMessageListComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<ChatHistoryMessageListModule>;
9
+ }
@@ -26,8 +26,9 @@ import * as i24 from "../atoms/h4/h4.module";
26
26
  import * as i25 from "../atoms/paragraph/paragraph.module";
27
27
  import * as i26 from "../atoms/button/button.module";
28
28
  import * as i27 from "./information-modal/information-modal.module";
29
+ import * as i28 from "./chat-history-message-list/chat-history-message-list.module";
29
30
  export declare class OrganismsModule {
30
31
  static ɵfac: i0.ɵɵFactoryDeclaration<OrganismsModule, never>;
31
- static ɵmod: i0.ɵɵNgModuleDeclaration<OrganismsModule, never, [typeof i1.CommonModule, typeof i2.NoteListModule, typeof i3.TaskListModule, typeof i4.TypographyModule, typeof i5.IconExplorerModule, typeof i6.CardListModule, typeof i7.ConfirmationModalModule, typeof i8.UploadResumeModalModule, typeof i9.FeedbackCardListModule, typeof i10.FeedbackDetailHeaderModule, typeof i11.FeedbackDetailCandidateInfoModule, typeof i12.FeedbackLoginModalModule, typeof i13.GridActionsModule, typeof i14.GridControlsModule, typeof i15.GridDownloadModule, typeof i16.ActionBarModule, typeof i17.ActionBarJobListModule, typeof i18.DocumentManagementListModule, typeof i19.InputCheckboxListModule, typeof i20.SettingsDetailNavigationListModule, typeof i21.EditableSettingItemListModule, typeof i22.AdditionalInformationCardListModule, typeof i23.AdditionModalModule, typeof i24.H4Module, typeof i25.ParagraphModule, typeof i26.ButtonModule, typeof i27.InformationModalModule], never>;
32
+ static ɵmod: i0.ɵɵNgModuleDeclaration<OrganismsModule, never, [typeof i1.CommonModule, typeof i2.NoteListModule, typeof i3.TaskListModule, typeof i4.TypographyModule, typeof i5.IconExplorerModule, typeof i6.CardListModule, typeof i7.ConfirmationModalModule, typeof i8.UploadResumeModalModule, typeof i9.FeedbackCardListModule, typeof i10.FeedbackDetailHeaderModule, typeof i11.FeedbackDetailCandidateInfoModule, typeof i12.FeedbackLoginModalModule, typeof i13.GridActionsModule, typeof i14.GridControlsModule, typeof i15.GridDownloadModule, typeof i16.ActionBarModule, typeof i17.ActionBarJobListModule, typeof i18.DocumentManagementListModule, typeof i19.InputCheckboxListModule, typeof i20.SettingsDetailNavigationListModule, typeof i21.EditableSettingItemListModule, typeof i22.AdditionalInformationCardListModule, typeof i23.AdditionModalModule, typeof i24.H4Module, typeof i25.ParagraphModule, typeof i26.ButtonModule, typeof i27.InformationModalModule, typeof i28.ChatHistoryMessageListModule], never>;
32
33
  static ɵinj: i0.ɵɵInjectorDeclaration<OrganismsModule>;
33
34
  }
@@ -0,0 +1,11 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { ChatbotHistoryModel } from './chatbot-history-modal.model';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ChatbotHistoryModalComponent {
5
+ chatbotHistoryModel: ChatbotHistoryModel;
6
+ closeButtonClicked: EventEmitter<void>;
7
+ constructor();
8
+ onCloseButtonClick(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChatbotHistoryModalComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChatbotHistoryModalComponent, "symphony-chatbot-history-modal", never, { "chatbotHistoryModel": "chatbotHistoryModel"; }, { "closeButtonClicked": "closeButtonClicked"; }, never, never>;
11
+ }
@@ -0,0 +1,8 @@
1
+ import { ChatHistoryMessageItemModel } from "../../../molecules/chat-history-message-item/chat-history-message-item.model";
2
+ export interface ChatbotHistoryModel {
3
+ isLoading: boolean;
4
+ errorText: string;
5
+ modalTitle: string;
6
+ modalSubtitle: string;
7
+ messageItemsList: ChatHistoryMessageItemModel[];
8
+ }
@@ -0,0 +1,14 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./chatbot-history-modal.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../../../templates/modal-templates/two-column-modal-template/two-column-modal-template.module";
5
+ import * as i4 from "../../../atoms/icon/icon.module";
6
+ import * as i5 from "../../../atoms/h4/h4.module";
7
+ import * as i6 from "../../../organisms/chat-history-message-list/chat-history-message-list.module";
8
+ import * as i7 from "../../../atoms/paragraph/paragraph.module";
9
+ import * as i8 from "../../../atoms/sfx-loader/sfx-loader.module";
10
+ export declare class ChatbotHistoryModalModule {
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChatbotHistoryModalModule, never>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ChatbotHistoryModalModule, [typeof i1.ChatbotHistoryModalComponent], [typeof i2.CommonModule, typeof i3.TwoColumnModalModule, typeof i4.IconModule, typeof i5.H4Module, typeof i6.ChatHistoryMessageListModule, typeof i7.ParagraphModule, typeof i8.SfxLoaderModule], [typeof i1.ChatbotHistoryModalComponent]>;
13
+ static ɵinj: i0.ɵɵInjectorDeclaration<ChatbotHistoryModalModule>;
14
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symphony-talent/component-library",
3
- "version": "4.85.0",
3
+ "version": "4.87.0",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "ag-grid-angular": "^24.0.0",
@@ -0,0 +1,8 @@
1
+ import { ChatHistoryMessageItemModel } from './chat-history-message-item.model';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ChatHistoryMessageItemComponent {
4
+ chatHistoryMessageItemModel: ChatHistoryMessageItemModel;
5
+ constructor();
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChatHistoryMessageItemComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChatHistoryMessageItemComponent, "symphony-chat-history-message-item", never, { "chatHistoryMessageItemModel": "chatHistoryMessageItemModel"; }, {}, never, never>;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { ChatHistoryMessageBubbleModel } from '../../atoms/chat-history-message-bubble/chat-history-message-bubble.model';
2
+ export interface ChatHistoryMessageItemModel {
3
+ isSent: boolean;
4
+ initials: string;
5
+ imgSource?: string;
6
+ chatHistoryMessageBubble: ChatHistoryMessageBubbleModel;
7
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./chat-history-message-item.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../../atoms/chat-history-message-avatar/chat-history-message-avatar.module";
5
+ import * as i4 from "../../atoms/chat-history-message-bubble/chat-history-message-bubble.module";
6
+ export declare class ChatHistoryMessageItemModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChatHistoryMessageItemModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ChatHistoryMessageItemModule, [typeof i1.ChatHistoryMessageItemComponent], [typeof i2.CommonModule, typeof i3.ChatHistoryMessageAvatarModule, typeof i4.ChatHistoryMessageBubbleModule], [typeof i1.ChatHistoryMessageItemComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<ChatHistoryMessageItemModule>;
10
+ }
@@ -24,9 +24,10 @@ import * as i22 from "./tabs/tabs.module";
24
24
  import * as i23 from "../atoms/input-toggle/input-toggle.module";
25
25
  import * as i24 from "./labelled-input-toggle/labelled-input-toggle.module";
26
26
  import * as i25 from "./labelled-toggle-list/labelled-toggle-list.module";
27
- import * as i26 from "./phaser-card/phaser-card.module";
27
+ import * as i26 from "./chat-history-message-item/chat-history-message-item.module";
28
+ import * as i27 from "./phaser-card/phaser-card.module";
28
29
  export declare class MoleculesModule {
29
30
  static ɵfac: i0.ɵɵFactoryDeclaration<MoleculesModule, never>;
30
- static ɵmod: i0.ɵɵNgModuleDeclaration<MoleculesModule, never, [typeof i1.CommonModule, typeof i2.AvatarModule, typeof i3.ContextualMenuModule, typeof i4.PillsModule, typeof i5.ColorSwatchModule, typeof i6.IconSwatchModule, typeof i7.BreadcrumbModule, typeof i8.H5WithIconModule, typeof i9.InvoiceLineItemModule, typeof i10.FeedbackCardModule, typeof i11.SfxAccordionHeaderModule, typeof i12.FileUploadModule, typeof i13.FileUploadStatusModule, typeof i10.FeedbackCardModule, typeof i14.ButtonWithIconModule, typeof i15.IconWithTooltipModule, typeof i16.DocumentManagementItemModule, typeof i17.ActionBarSelectionCounterModule, typeof i18.InputTextareaModule, typeof i19.CharacterCounterModule, typeof i20.SettingsDetailNavigationItemModule, typeof i21.EditableSettingItemModule, typeof i22.TabsModules, typeof i23.InputToggleModule, typeof i24.LabelledInputToggleModule, typeof i25.LabelledToggleListModule], [typeof i4.PillsModule, typeof i7.BreadcrumbModule, typeof i10.FeedbackCardModule, typeof i16.DocumentManagementItemModule, typeof i26.PhaserCardModule, typeof i20.SettingsDetailNavigationItemModule]>;
31
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MoleculesModule, never, [typeof i1.CommonModule, typeof i2.AvatarModule, typeof i3.ContextualMenuModule, typeof i4.PillsModule, typeof i5.ColorSwatchModule, typeof i6.IconSwatchModule, typeof i7.BreadcrumbModule, typeof i8.H5WithIconModule, typeof i9.InvoiceLineItemModule, typeof i10.FeedbackCardModule, typeof i11.SfxAccordionHeaderModule, typeof i12.FileUploadModule, typeof i13.FileUploadStatusModule, typeof i10.FeedbackCardModule, typeof i14.ButtonWithIconModule, typeof i15.IconWithTooltipModule, typeof i16.DocumentManagementItemModule, typeof i17.ActionBarSelectionCounterModule, typeof i18.InputTextareaModule, typeof i19.CharacterCounterModule, typeof i20.SettingsDetailNavigationItemModule, typeof i21.EditableSettingItemModule, typeof i22.TabsModules, typeof i23.InputToggleModule, typeof i24.LabelledInputToggleModule, typeof i25.LabelledToggleListModule, typeof i26.ChatHistoryMessageItemModule], [typeof i4.PillsModule, typeof i7.BreadcrumbModule, typeof i10.FeedbackCardModule, typeof i16.DocumentManagementItemModule, typeof i27.PhaserCardModule, typeof i20.SettingsDetailNavigationItemModule]>;
31
32
  static ɵinj: i0.ɵɵInjectorDeclaration<MoleculesModule>;
32
33
  }
@@ -0,0 +1,8 @@
1
+ import { ChatHistoryMessageItemModel } from '../../molecules/chat-history-message-item/chat-history-message-item.model';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ChatHistoryMessageListComponent {
4
+ messageItemsList: ChatHistoryMessageItemModel[];
5
+ constructor();
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChatHistoryMessageListComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChatHistoryMessageListComponent, "symphony-chat-history-message-list", never, { "messageItemsList": "messageItemsList"; }, {}, never, never>;
8
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./chat-history-message-list.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../../molecules/chat-history-message-item/chat-history-message-item.module";
5
+ export declare class ChatHistoryMessageListModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChatHistoryMessageListModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ChatHistoryMessageListModule, [typeof i1.ChatHistoryMessageListComponent], [typeof i2.CommonModule, typeof i3.ChatHistoryMessageItemModule], [typeof i1.ChatHistoryMessageListComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<ChatHistoryMessageListModule>;
9
+ }
@@ -26,8 +26,9 @@ import * as i24 from "../atoms/h4/h4.module";
26
26
  import * as i25 from "../atoms/paragraph/paragraph.module";
27
27
  import * as i26 from "../atoms/button/button.module";
28
28
  import * as i27 from "./information-modal/information-modal.module";
29
+ import * as i28 from "./chat-history-message-list/chat-history-message-list.module";
29
30
  export declare class OrganismsModule {
30
31
  static ɵfac: i0.ɵɵFactoryDeclaration<OrganismsModule, never>;
31
- static ɵmod: i0.ɵɵNgModuleDeclaration<OrganismsModule, never, [typeof i1.CommonModule, typeof i2.NoteListModule, typeof i3.TaskListModule, typeof i4.TypographyModule, typeof i5.IconExplorerModule, typeof i6.CardListModule, typeof i7.ConfirmationModalModule, typeof i8.UploadResumeModalModule, typeof i9.FeedbackCardListModule, typeof i10.FeedbackDetailHeaderModule, typeof i11.FeedbackDetailCandidateInfoModule, typeof i12.FeedbackLoginModalModule, typeof i13.GridActionsModule, typeof i14.GridControlsModule, typeof i15.GridDownloadModule, typeof i16.ActionBarModule, typeof i17.ActionBarJobListModule, typeof i18.DocumentManagementListModule, typeof i19.InputCheckboxListModule, typeof i20.SettingsDetailNavigationListModule, typeof i21.EditableSettingItemListModule, typeof i22.AdditionalInformationCardListModule, typeof i23.AdditionModalModule, typeof i24.H4Module, typeof i25.ParagraphModule, typeof i26.ButtonModule, typeof i27.InformationModalModule], never>;
32
+ static ɵmod: i0.ɵɵNgModuleDeclaration<OrganismsModule, never, [typeof i1.CommonModule, typeof i2.NoteListModule, typeof i3.TaskListModule, typeof i4.TypographyModule, typeof i5.IconExplorerModule, typeof i6.CardListModule, typeof i7.ConfirmationModalModule, typeof i8.UploadResumeModalModule, typeof i9.FeedbackCardListModule, typeof i10.FeedbackDetailHeaderModule, typeof i11.FeedbackDetailCandidateInfoModule, typeof i12.FeedbackLoginModalModule, typeof i13.GridActionsModule, typeof i14.GridControlsModule, typeof i15.GridDownloadModule, typeof i16.ActionBarModule, typeof i17.ActionBarJobListModule, typeof i18.DocumentManagementListModule, typeof i19.InputCheckboxListModule, typeof i20.SettingsDetailNavigationListModule, typeof i21.EditableSettingItemListModule, typeof i22.AdditionalInformationCardListModule, typeof i23.AdditionModalModule, typeof i24.H4Module, typeof i25.ParagraphModule, typeof i26.ButtonModule, typeof i27.InformationModalModule, typeof i28.ChatHistoryMessageListModule], never>;
32
33
  static ɵinj: i0.ɵɵInjectorDeclaration<OrganismsModule>;
33
34
  }
@@ -0,0 +1,11 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { ChatbotHistoryModel } from './chatbot-history-modal.model';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ChatbotHistoryModalComponent {
5
+ chatbotHistoryModel: ChatbotHistoryModel;
6
+ closeButtonClicked: EventEmitter<void>;
7
+ constructor();
8
+ onCloseButtonClick(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChatbotHistoryModalComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChatbotHistoryModalComponent, "symphony-chatbot-history-modal", never, { "chatbotHistoryModel": "chatbotHistoryModel"; }, { "closeButtonClicked": "closeButtonClicked"; }, never, never>;
11
+ }
@@ -0,0 +1,8 @@
1
+ import { ChatHistoryMessageItemModel } from "../../../molecules/chat-history-message-item/chat-history-message-item.model";
2
+ export interface ChatbotHistoryModel {
3
+ isLoading: boolean;
4
+ errorText: string;
5
+ modalTitle: string;
6
+ modalSubtitle: string;
7
+ messageItemsList: ChatHistoryMessageItemModel[];
8
+ }
@@ -0,0 +1,14 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./chatbot-history-modal.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../../../templates/modal-templates/two-column-modal-template/two-column-modal-template.module";
5
+ import * as i4 from "../../../atoms/icon/icon.module";
6
+ import * as i5 from "../../../atoms/h4/h4.module";
7
+ import * as i6 from "../../../organisms/chat-history-message-list/chat-history-message-list.module";
8
+ import * as i7 from "../../../atoms/paragraph/paragraph.module";
9
+ import * as i8 from "../../../atoms/sfx-loader/sfx-loader.module";
10
+ export declare class ChatbotHistoryModalModule {
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChatbotHistoryModalModule, never>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ChatbotHistoryModalModule, [typeof i1.ChatbotHistoryModalComponent], [typeof i2.CommonModule, typeof i3.TwoColumnModalModule, typeof i4.IconModule, typeof i5.H4Module, typeof i6.ChatHistoryMessageListModule, typeof i7.ParagraphModule, typeof i8.SfxLoaderModule], [typeof i1.ChatbotHistoryModalComponent]>;
13
+ static ɵinj: i0.ɵɵInjectorDeclaration<ChatbotHistoryModalModule>;
14
+ }
@@ -127,6 +127,9 @@ export * from './lib/molecules/breadcrumb/breadcrumb.model';
127
127
  export * from './lib/molecules/card/card.component';
128
128
  export * from './lib/molecules/card/card.module';
129
129
  export * from './lib/molecules/card/card.model';
130
+ export * from './lib/molecules//chat-history-message-item/chat-history-message-item.component';
131
+ export * from './lib/molecules/chat-history-message-item/chat-history-message-item.module';
132
+ export * from './lib/molecules/chat-history-message-item/chat-history-message-item.module';
130
133
  export * from './lib/molecules/feedback-card/feedback-card.component';
131
134
  export * from './lib/molecules/feedback-card/feedback-card.module';
132
135
  export * from './lib/molecules/feedback-card/feedback-card.model';
@@ -161,6 +164,8 @@ export * from './lib/molecules/tabs/tabs.module';
161
164
  export * from './lib/molecules/molecules.module';
162
165
  export * from './lib/organisms/card-list/card-list.component';
163
166
  export * from './lib/organisms/card-list/card-list.module';
167
+ export * from './lib/organisms/chat-history-message-list/chat-history-message-list.component';
168
+ export * from './lib/organisms/chat-history-message-list/chat-history-message-list.module';
164
169
  export * from './lib/organisms/feedback-card-list/feedback-card-list.component';
165
170
  export * from './lib/organisms/feedback-card-list/feedback-card-list.module';
166
171
  export * from './lib/organisms/feedback-login-modal/feedback-login-modal.component';
@@ -235,6 +240,9 @@ export * from './lib/pages/modals/linkedin-premium-job-postings-modal/linkedin-p
235
240
  export * from './lib/pages/modals/linkedin-premium-job-postings-modal/linkedin-premium-job-postings-modal.module';
236
241
  export * from './lib/pages/modals/advance-search-modal/advance-search-modal.component';
237
242
  export * from './lib/pages/modals/advance-search-modal/advance-search-modal.module';
243
+ export * from './lib/pages/modals/chatbot-history-modal/chatbot-history-modal.component';
244
+ export * from './lib/pages/modals/chatbot-history-modal/chatbot-history-modal.module';
245
+ export * from './lib/pages/modals/chatbot-history-modal/chatbot-history-modal.model';
238
246
  export * from './lib/pages/job-list-page/job-list-page.component';
239
247
  export * from './lib/pages/job-list-page/job-list-page.module';
240
248
  export * from './lib/pages/job-list-page/job-list-page.model';
package/public-api.d.ts CHANGED
@@ -127,6 +127,9 @@ export * from './lib/molecules/breadcrumb/breadcrumb.model';
127
127
  export * from './lib/molecules/card/card.component';
128
128
  export * from './lib/molecules/card/card.module';
129
129
  export * from './lib/molecules/card/card.model';
130
+ export * from './lib/molecules//chat-history-message-item/chat-history-message-item.component';
131
+ export * from './lib/molecules/chat-history-message-item/chat-history-message-item.module';
132
+ export * from './lib/molecules/chat-history-message-item/chat-history-message-item.module';
130
133
  export * from './lib/molecules/feedback-card/feedback-card.component';
131
134
  export * from './lib/molecules/feedback-card/feedback-card.module';
132
135
  export * from './lib/molecules/feedback-card/feedback-card.model';
@@ -161,6 +164,8 @@ export * from './lib/molecules/tabs/tabs.module';
161
164
  export * from './lib/molecules/molecules.module';
162
165
  export * from './lib/organisms/card-list/card-list.component';
163
166
  export * from './lib/organisms/card-list/card-list.module';
167
+ export * from './lib/organisms/chat-history-message-list/chat-history-message-list.component';
168
+ export * from './lib/organisms/chat-history-message-list/chat-history-message-list.module';
164
169
  export * from './lib/organisms/feedback-card-list/feedback-card-list.component';
165
170
  export * from './lib/organisms/feedback-card-list/feedback-card-list.module';
166
171
  export * from './lib/organisms/feedback-login-modal/feedback-login-modal.component';
@@ -235,6 +240,9 @@ export * from './lib/pages/modals/linkedin-premium-job-postings-modal/linkedin-p
235
240
  export * from './lib/pages/modals/linkedin-premium-job-postings-modal/linkedin-premium-job-postings-modal.module';
236
241
  export * from './lib/pages/modals/advance-search-modal/advance-search-modal.component';
237
242
  export * from './lib/pages/modals/advance-search-modal/advance-search-modal.module';
243
+ export * from './lib/pages/modals/chatbot-history-modal/chatbot-history-modal.component';
244
+ export * from './lib/pages/modals/chatbot-history-modal/chatbot-history-modal.module';
245
+ export * from './lib/pages/modals/chatbot-history-modal/chatbot-history-modal.model';
238
246
  export * from './lib/pages/job-list-page/job-list-page.component';
239
247
  export * from './lib/pages/job-list-page/job-list-page.module';
240
248
  export * from './lib/pages/job-list-page/job-list-page.model';