@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
|
@@ -36,8 +36,10 @@ import * as i34 from "./character-counter/character-counter.module";
|
|
|
36
36
|
import * as i35 from "./input-textarea/input-textarea.module";
|
|
37
37
|
import * as i36 from "./grid/framework/colored-text-indicator/colored-text-indicator.module";
|
|
38
38
|
import * as i37 from "./input-file-upload/input-file-upload.module";
|
|
39
|
+
import * as i38 from "./chat-history-message-avatar/chat-history-message-avatar.module";
|
|
40
|
+
import * as i39 from "./chat-history-message-bubble/chat-history-message-bubble.module";
|
|
39
41
|
export declare class AtomsModule {
|
|
40
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<AtomsModule, never>;
|
|
41
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AtomsModule, never, never, [typeof i1.ButtonModule, typeof i2.ContextualMenuModule, typeof i3.AvatarModule, typeof i4.PillModule, typeof i5.H1Module, typeof i6.H2Module, typeof i7.H3Module, typeof i8.H4Module, typeof i9.H5Module, typeof i10.ParagraphModule, typeof i11.IconModule, typeof i12.IconWrapperModule, typeof i13.FilterAreaModule, typeof i14.TwoColumnFilterAreaModule, typeof i15.InputRadioModule, typeof i16.InputCheckboxModule, typeof i17.InputTextModule, typeof i18.InputDropdownModule, typeof i19.GridModule, typeof i20.ContactActivityScoreModule, typeof i21.RelevanceScoreModule, typeof i22.ToasterAlertModule, typeof i23.SfxLoaderModule, typeof i24.SfxPageLoaderModule, typeof i25.SfxProgressBarModule, typeof i26.TooltipWrapperModule, typeof i27.InputSearchCheckboxDropdownModule, typeof i28.InputChipsModule, typeof i29.PhaserModule, typeof i30.VerticalSeparatorModule, typeof i31.FormattedCounterModule, typeof i32.AdvanceFilterSelectedCounterModule, typeof i33.NotificationsModule, typeof i34.CharacterCounterModule, typeof i35.InputTextareaModule, typeof i36.ColoredTextIndicatorModule, typeof i37.InputFileUploadModule]>;
|
|
43
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AtomsModule, never, never, [typeof i1.ButtonModule, typeof i2.ContextualMenuModule, typeof i3.AvatarModule, typeof i4.PillModule, typeof i5.H1Module, typeof i6.H2Module, typeof i7.H3Module, typeof i8.H4Module, typeof i9.H5Module, typeof i10.ParagraphModule, typeof i11.IconModule, typeof i12.IconWrapperModule, typeof i13.FilterAreaModule, typeof i14.TwoColumnFilterAreaModule, typeof i15.InputRadioModule, typeof i16.InputCheckboxModule, typeof i17.InputTextModule, typeof i18.InputDropdownModule, typeof i19.GridModule, typeof i20.ContactActivityScoreModule, typeof i21.RelevanceScoreModule, typeof i22.ToasterAlertModule, typeof i23.SfxLoaderModule, typeof i24.SfxPageLoaderModule, typeof i25.SfxProgressBarModule, typeof i26.TooltipWrapperModule, typeof i27.InputSearchCheckboxDropdownModule, typeof i28.InputChipsModule, typeof i29.PhaserModule, typeof i30.VerticalSeparatorModule, typeof i31.FormattedCounterModule, typeof i32.AdvanceFilterSelectedCounterModule, typeof i33.NotificationsModule, typeof i34.CharacterCounterModule, typeof i35.InputTextareaModule, typeof i36.ColoredTextIndicatorModule, typeof i37.InputFileUploadModule, typeof i38.ChatHistoryMessageAvatarModule, typeof i39.ChatHistoryMessageBubbleModule]>;
|
|
42
44
|
static ɵinj: i0.ɵɵInjectorDeclaration<AtomsModule>;
|
|
43
45
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ChatHistoryMessageAvatarComponent {
|
|
3
|
+
initials: string;
|
|
4
|
+
imgSource: string;
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChatHistoryMessageAvatarComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChatHistoryMessageAvatarComponent, "symphony-chat-history-message-avatar", never, { "initials": "initials"; "imgSource": "imgSource"; }, {}, never, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./chat-history-message-avatar.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class ChatHistoryMessageAvatarModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChatHistoryMessageAvatarModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ChatHistoryMessageAvatarModule, [typeof i1.ChatHistoryMessageAvatarComponent], [typeof i2.CommonModule], [typeof i1.ChatHistoryMessageAvatarComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ChatHistoryMessageAvatarModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ChatHistoryMessageBubbleModel } from './chat-history-message-bubble.model';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ChatHistoryMessageBubbleComponent {
|
|
4
|
+
chatHistoryMessageBubbleModel: ChatHistoryMessageBubbleModel;
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChatHistoryMessageBubbleComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChatHistoryMessageBubbleComponent, "symphony-chat-history-message-bubble", never, { "chatHistoryMessageBubbleModel": "chatHistoryMessageBubbleModel"; }, {}, never, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./chat-history-message-bubble.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class ChatHistoryMessageBubbleModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChatHistoryMessageBubbleModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ChatHistoryMessageBubbleModule, [typeof i1.ChatHistoryMessageBubbleComponent], [typeof i2.CommonModule], [typeof i1.ChatHistoryMessageBubbleComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ChatHistoryMessageBubbleModule>;
|
|
8
|
+
}
|
|
@@ -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 "./
|
|
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
|
|
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,13 @@
|
|
|
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
|
+
export declare class ChatbotHistoryModalModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChatbotHistoryModalModule, never>;
|
|
11
|
+
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 i1.ChatbotHistoryModalComponent]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ChatbotHistoryModalModule>;
|
|
13
|
+
}
|
package/package.json
CHANGED
|
@@ -36,8 +36,10 @@ import * as i34 from "./character-counter/character-counter.module";
|
|
|
36
36
|
import * as i35 from "./input-textarea/input-textarea.module";
|
|
37
37
|
import * as i36 from "./grid/framework/colored-text-indicator/colored-text-indicator.module";
|
|
38
38
|
import * as i37 from "./input-file-upload/input-file-upload.module";
|
|
39
|
+
import * as i38 from "./chat-history-message-avatar/chat-history-message-avatar.module";
|
|
40
|
+
import * as i39 from "./chat-history-message-bubble/chat-history-message-bubble.module";
|
|
39
41
|
export declare class AtomsModule {
|
|
40
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<AtomsModule, never>;
|
|
41
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AtomsModule, never, never, [typeof i1.ButtonModule, typeof i2.ContextualMenuModule, typeof i3.AvatarModule, typeof i4.PillModule, typeof i5.H1Module, typeof i6.H2Module, typeof i7.H3Module, typeof i8.H4Module, typeof i9.H5Module, typeof i10.ParagraphModule, typeof i11.IconModule, typeof i12.IconWrapperModule, typeof i13.FilterAreaModule, typeof i14.TwoColumnFilterAreaModule, typeof i15.InputRadioModule, typeof i16.InputCheckboxModule, typeof i17.InputTextModule, typeof i18.InputDropdownModule, typeof i19.GridModule, typeof i20.ContactActivityScoreModule, typeof i21.RelevanceScoreModule, typeof i22.ToasterAlertModule, typeof i23.SfxLoaderModule, typeof i24.SfxPageLoaderModule, typeof i25.SfxProgressBarModule, typeof i26.TooltipWrapperModule, typeof i27.InputSearchCheckboxDropdownModule, typeof i28.InputChipsModule, typeof i29.PhaserModule, typeof i30.VerticalSeparatorModule, typeof i31.FormattedCounterModule, typeof i32.AdvanceFilterSelectedCounterModule, typeof i33.NotificationsModule, typeof i34.CharacterCounterModule, typeof i35.InputTextareaModule, typeof i36.ColoredTextIndicatorModule, typeof i37.InputFileUploadModule]>;
|
|
43
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AtomsModule, never, never, [typeof i1.ButtonModule, typeof i2.ContextualMenuModule, typeof i3.AvatarModule, typeof i4.PillModule, typeof i5.H1Module, typeof i6.H2Module, typeof i7.H3Module, typeof i8.H4Module, typeof i9.H5Module, typeof i10.ParagraphModule, typeof i11.IconModule, typeof i12.IconWrapperModule, typeof i13.FilterAreaModule, typeof i14.TwoColumnFilterAreaModule, typeof i15.InputRadioModule, typeof i16.InputCheckboxModule, typeof i17.InputTextModule, typeof i18.InputDropdownModule, typeof i19.GridModule, typeof i20.ContactActivityScoreModule, typeof i21.RelevanceScoreModule, typeof i22.ToasterAlertModule, typeof i23.SfxLoaderModule, typeof i24.SfxPageLoaderModule, typeof i25.SfxProgressBarModule, typeof i26.TooltipWrapperModule, typeof i27.InputSearchCheckboxDropdownModule, typeof i28.InputChipsModule, typeof i29.PhaserModule, typeof i30.VerticalSeparatorModule, typeof i31.FormattedCounterModule, typeof i32.AdvanceFilterSelectedCounterModule, typeof i33.NotificationsModule, typeof i34.CharacterCounterModule, typeof i35.InputTextareaModule, typeof i36.ColoredTextIndicatorModule, typeof i37.InputFileUploadModule, typeof i38.ChatHistoryMessageAvatarModule, typeof i39.ChatHistoryMessageBubbleModule]>;
|
|
42
44
|
static ɵinj: i0.ɵɵInjectorDeclaration<AtomsModule>;
|
|
43
45
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ChatHistoryMessageAvatarComponent {
|
|
3
|
+
initials: string;
|
|
4
|
+
imgSource: string;
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChatHistoryMessageAvatarComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChatHistoryMessageAvatarComponent, "symphony-chat-history-message-avatar", never, { "initials": "initials"; "imgSource": "imgSource"; }, {}, never, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./chat-history-message-avatar.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class ChatHistoryMessageAvatarModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChatHistoryMessageAvatarModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ChatHistoryMessageAvatarModule, [typeof i1.ChatHistoryMessageAvatarComponent], [typeof i2.CommonModule], [typeof i1.ChatHistoryMessageAvatarComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ChatHistoryMessageAvatarModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ChatHistoryMessageBubbleModel } from './chat-history-message-bubble.model';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ChatHistoryMessageBubbleComponent {
|
|
4
|
+
chatHistoryMessageBubbleModel: ChatHistoryMessageBubbleModel;
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChatHistoryMessageBubbleComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChatHistoryMessageBubbleComponent, "symphony-chat-history-message-bubble", never, { "chatHistoryMessageBubbleModel": "chatHistoryMessageBubbleModel"; }, {}, never, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./chat-history-message-bubble.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class ChatHistoryMessageBubbleModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChatHistoryMessageBubbleModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ChatHistoryMessageBubbleModule, [typeof i1.ChatHistoryMessageBubbleComponent], [typeof i2.CommonModule], [typeof i1.ChatHistoryMessageBubbleComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ChatHistoryMessageBubbleModule>;
|
|
8
|
+
}
|
|
@@ -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 "./
|
|
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
|
|
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,13 @@
|
|
|
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
|
+
export declare class ChatbotHistoryModalModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChatbotHistoryModalModule, never>;
|
|
11
|
+
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 i1.ChatbotHistoryModalComponent]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ChatbotHistoryModalModule>;
|
|
13
|
+
}
|
|
@@ -9,6 +9,11 @@ export * from './lib/atoms/character-counter/character-counter.module';
|
|
|
9
9
|
export * from './lib/atoms/contextual-menu/contextual-menu.component';
|
|
10
10
|
export * from './lib/atoms/contextual-menu/contextual-menu.module';
|
|
11
11
|
export * from './lib/atoms/contextual-menu/contextual-menu.model';
|
|
12
|
+
export * from './lib/atoms/chat-history-message-avatar/chat-history-message-avatar.component';
|
|
13
|
+
export * from './lib/atoms/chat-history-message-avatar/chat-history-message-avatar.module';
|
|
14
|
+
export * from './lib/atoms/chat-history-message-bubble/chat-history-message-bubble.component';
|
|
15
|
+
export * from './lib/atoms/chat-history-message-bubble/chat-history-message-bubble.module';
|
|
16
|
+
export * from './lib/atoms/chat-history-message-bubble/chat-history-message-bubble.model';
|
|
12
17
|
export * from './lib/atoms/filter-area/filter-area.component';
|
|
13
18
|
export * from './lib/atoms/filter-area/filter-area.module';
|
|
14
19
|
export * from './lib/atoms/grid/grid.component';
|
|
@@ -122,6 +127,9 @@ export * from './lib/molecules/breadcrumb/breadcrumb.model';
|
|
|
122
127
|
export * from './lib/molecules/card/card.component';
|
|
123
128
|
export * from './lib/molecules/card/card.module';
|
|
124
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';
|
|
125
133
|
export * from './lib/molecules/feedback-card/feedback-card.component';
|
|
126
134
|
export * from './lib/molecules/feedback-card/feedback-card.module';
|
|
127
135
|
export * from './lib/molecules/feedback-card/feedback-card.model';
|
|
@@ -156,6 +164,8 @@ export * from './lib/molecules/tabs/tabs.module';
|
|
|
156
164
|
export * from './lib/molecules/molecules.module';
|
|
157
165
|
export * from './lib/organisms/card-list/card-list.component';
|
|
158
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';
|
|
159
169
|
export * from './lib/organisms/feedback-card-list/feedback-card-list.component';
|
|
160
170
|
export * from './lib/organisms/feedback-card-list/feedback-card-list.module';
|
|
161
171
|
export * from './lib/organisms/feedback-login-modal/feedback-login-modal.component';
|
|
@@ -230,6 +240,9 @@ export * from './lib/pages/modals/linkedin-premium-job-postings-modal/linkedin-p
|
|
|
230
240
|
export * from './lib/pages/modals/linkedin-premium-job-postings-modal/linkedin-premium-job-postings-modal.module';
|
|
231
241
|
export * from './lib/pages/modals/advance-search-modal/advance-search-modal.component';
|
|
232
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';
|
|
233
246
|
export * from './lib/pages/job-list-page/job-list-page.component';
|
|
234
247
|
export * from './lib/pages/job-list-page/job-list-page.module';
|
|
235
248
|
export * from './lib/pages/job-list-page/job-list-page.model';
|
package/public-api.d.ts
CHANGED
|
@@ -9,6 +9,11 @@ export * from './lib/atoms/character-counter/character-counter.module';
|
|
|
9
9
|
export * from './lib/atoms/contextual-menu/contextual-menu.component';
|
|
10
10
|
export * from './lib/atoms/contextual-menu/contextual-menu.module';
|
|
11
11
|
export * from './lib/atoms/contextual-menu/contextual-menu.model';
|
|
12
|
+
export * from './lib/atoms/chat-history-message-avatar/chat-history-message-avatar.component';
|
|
13
|
+
export * from './lib/atoms/chat-history-message-avatar/chat-history-message-avatar.module';
|
|
14
|
+
export * from './lib/atoms/chat-history-message-bubble/chat-history-message-bubble.component';
|
|
15
|
+
export * from './lib/atoms/chat-history-message-bubble/chat-history-message-bubble.module';
|
|
16
|
+
export * from './lib/atoms/chat-history-message-bubble/chat-history-message-bubble.model';
|
|
12
17
|
export * from './lib/atoms/filter-area/filter-area.component';
|
|
13
18
|
export * from './lib/atoms/filter-area/filter-area.module';
|
|
14
19
|
export * from './lib/atoms/grid/grid.component';
|
|
@@ -122,6 +127,9 @@ export * from './lib/molecules/breadcrumb/breadcrumb.model';
|
|
|
122
127
|
export * from './lib/molecules/card/card.component';
|
|
123
128
|
export * from './lib/molecules/card/card.module';
|
|
124
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';
|
|
125
133
|
export * from './lib/molecules/feedback-card/feedback-card.component';
|
|
126
134
|
export * from './lib/molecules/feedback-card/feedback-card.module';
|
|
127
135
|
export * from './lib/molecules/feedback-card/feedback-card.model';
|
|
@@ -156,6 +164,8 @@ export * from './lib/molecules/tabs/tabs.module';
|
|
|
156
164
|
export * from './lib/molecules/molecules.module';
|
|
157
165
|
export * from './lib/organisms/card-list/card-list.component';
|
|
158
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';
|
|
159
169
|
export * from './lib/organisms/feedback-card-list/feedback-card-list.component';
|
|
160
170
|
export * from './lib/organisms/feedback-card-list/feedback-card-list.module';
|
|
161
171
|
export * from './lib/organisms/feedback-login-modal/feedback-login-modal.component';
|
|
@@ -230,6 +240,9 @@ export * from './lib/pages/modals/linkedin-premium-job-postings-modal/linkedin-p
|
|
|
230
240
|
export * from './lib/pages/modals/linkedin-premium-job-postings-modal/linkedin-premium-job-postings-modal.module';
|
|
231
241
|
export * from './lib/pages/modals/advance-search-modal/advance-search-modal.component';
|
|
232
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';
|
|
233
246
|
export * from './lib/pages/job-list-page/job-list-page.component';
|
|
234
247
|
export * from './lib/pages/job-list-page/job-list-page.module';
|
|
235
248
|
export * from './lib/pages/job-list-page/job-list-page.model';
|