Skip to content

Commit 4a303cc

Browse files
authored
Merge pull request #3874 from IgniteUI/gedinakova/update-chat-imports-master
fix(Chat): Updated chat imports
2 parents c924e6c + d1523bc commit 4a303cc

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

src/app/interactions/chat/features-sample/features-sample.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { AsyncPipe } from '@angular/common';
22
import { Component, effect, signal, viewChild } from '@angular/core';
3-
import { IgxChatComponent, IgxChatMessageContextDirective, type IgxChatOptions } from 'igniteui-angular';
3+
import { IgxChatComponent, IgxChatMessageContextDirective, type IgxChatOptions } from 'igniteui-angular/chat';
44
import { MarkdownPipe } from 'igniteui-angular/chat-extras';
55

66
@Component({

src/app/interactions/chat/overview-sample/overview-sample.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Component, OnInit, signal } from '@angular/core';
2-
import { IgxChatComponent, IgxChatOptions } from 'igniteui-angular';
1+
import { Component, signal } from '@angular/core';
2+
import { IgxChatComponent, IgxChatOptions } from 'igniteui-angular/chat';
33

44
@Component({
55
selector: 'app-chat-overview-sample',

src/app/interactions/chat/styling-sample/styling-sample.component.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
import { AsyncPipe } from '@angular/common';
21
import { Component, signal, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
3-
import { IgxAvatarComponent, IgxChatComponent, IgxChatOptions } from 'igniteui-angular';
4-
2+
import { IgxAvatarComponent } from 'igniteui-angular/avatar';
3+
import { IgxChatComponent, IgxChatOptions } from 'igniteui-angular/chat';
54

65
@Component({
76
selector: 'app-chat-styling-sample',
87
styleUrls: ['./styling-sample.component.scss'],
98
templateUrl: './styling-sample.component.html',
10-
imports: [IgxAvatarComponent, IgxChatComponent, AsyncPipe],
9+
imports: [IgxAvatarComponent, IgxChatComponent],
1110
schemas: [CUSTOM_ELEMENTS_SCHEMA]
1211
})
1312
export class ChatStylingSampleComponent {

0 commit comments

Comments
 (0)