@progress/kendo-angular-conversational-ui 21.0.0-develop.8 → 21.0.0-develop.9

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 (62) hide show
  1. package/chat/api/files-layout.d.ts +12 -0
  2. package/chat/api/index.d.ts +3 -1
  3. package/chat/api/message-settings.interface.d.ts +33 -0
  4. package/chat/api/message.interface.d.ts +5 -1
  5. package/chat/api/suggestions-layout.d.ts +20 -0
  6. package/chat/chat.component.d.ts +92 -34
  7. package/chat/chat.directives.d.ts +18 -0
  8. package/chat/chat.module.d.ts +15 -8
  9. package/chat/common/chat.service.d.ts +32 -3
  10. package/chat/common/models/model-fields.d.ts +0 -6
  11. package/chat/common/scroll-button.component.d.ts +32 -0
  12. package/chat/common/scroll.service.d.ts +39 -0
  13. package/chat/common/utils.d.ts +13 -1
  14. package/chat/l10n/messages.d.ts +9 -1
  15. package/chat/message-list.component.d.ts +20 -3
  16. package/chat/message.component.d.ts +40 -16
  17. package/chat/suggested-actions.component.d.ts +30 -5
  18. package/chat/templates/author-message-content-template.directive.d.ts +28 -0
  19. package/chat/templates/author-message-template.directive.d.ts +28 -0
  20. package/chat/templates/message-content-template.directive.d.ts +28 -0
  21. package/chat/templates/message-template.directive.d.ts +1 -1
  22. package/chat/templates/no-data-template.directive.d.ts +27 -0
  23. package/chat/templates/receiver-message-content-template.directive.d.ts +28 -0
  24. package/chat/templates/receiver-message-template.directive.d.ts +28 -0
  25. package/chat/templates/user-status-template.directive.d.ts +27 -0
  26. package/conversational-ui.module.d.ts +18 -11
  27. package/directives.d.ts +9 -2
  28. package/esm2022/chat/api/index.mjs +3 -1
  29. package/{chat/api/message-toolbar-visibility.d.ts → esm2022/chat/api/message-settings.interface.mjs} +1 -4
  30. package/esm2022/chat/api/suggestions-layout.mjs +5 -0
  31. package/esm2022/chat/builtin-actions.mjs +2 -0
  32. package/esm2022/chat/chat-file.component.mjs +2 -2
  33. package/esm2022/chat/chat.component.mjs +265 -71
  34. package/esm2022/chat/chat.directives.mjs +18 -0
  35. package/esm2022/chat/chat.module.mjs +16 -9
  36. package/esm2022/chat/common/chat.service.mjs +83 -4
  37. package/esm2022/chat/common/models/default-model-fields.mjs +0 -1
  38. package/esm2022/chat/common/scroll-button.component.mjs +81 -0
  39. package/esm2022/chat/common/scroll.service.mjs +110 -0
  40. package/esm2022/chat/common/utils.mjs +22 -3
  41. package/esm2022/chat/l10n/messages.mjs +13 -1
  42. package/esm2022/chat/message-attachments.component.mjs +2 -2
  43. package/esm2022/chat/message-box.component.mjs +5 -2
  44. package/esm2022/chat/message-list.component.mjs +165 -19
  45. package/esm2022/chat/message.component.mjs +487 -326
  46. package/esm2022/chat/suggested-actions.component.mjs +298 -80
  47. package/esm2022/chat/templates/author-message-content-template.directive.mjs +39 -0
  48. package/esm2022/chat/templates/author-message-template.directive.mjs +39 -0
  49. package/esm2022/chat/templates/message-content-template.directive.mjs +39 -0
  50. package/esm2022/chat/templates/message-template.directive.mjs +1 -1
  51. package/esm2022/chat/templates/no-data-template.directive.mjs +38 -0
  52. package/esm2022/chat/templates/receiver-message-content-template.directive.mjs +39 -0
  53. package/esm2022/chat/templates/receiver-message-template.directive.mjs +39 -0
  54. package/esm2022/chat/templates/user-status-template.directive.mjs +38 -0
  55. package/esm2022/conversational-ui.module.mjs +19 -12
  56. package/esm2022/directives.mjs +15 -1
  57. package/esm2022/index.mjs +7 -0
  58. package/esm2022/package-metadata.mjs +2 -2
  59. package/fesm2022/progress-kendo-angular-conversational-ui.mjs +1771 -547
  60. package/index.d.ts +7 -0
  61. package/package.json +14 -14
  62. /package/esm2022/chat/api/{message-toolbar-visibility.mjs → files-layout.mjs} +0 -0
@@ -0,0 +1,39 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { Directive, Optional, TemplateRef } from "@angular/core";
6
+ import * as i0 from "@angular/core";
7
+ /**
8
+ * Defines a template for displaying custom content inside the other users' messages in the Chat.
9
+ *
10
+ * To define a message template, nest an `<ng-template>` tag with the `kendoChatReceiverMessageContentTemplate` directive inside the `<kendo-chat>` component.
11
+ * The template context is set to the `message` instance.
12
+ * For more information, refer to the article on [message templates](slug:message_templates_chat).
13
+ *
14
+ * @example
15
+ * ```html
16
+ * <kendo-chat>
17
+ * <ng-template kendoChatReceiverMessageContentTemplate let-message>
18
+ * <div>Message: {{ message.text }}</div>
19
+ * </ng-template>
20
+ * </kendo-chat>
21
+ * ```
22
+ */
23
+ export class ReceiverMessageContentTemplateDirective {
24
+ templateRef;
25
+ constructor(templateRef) {
26
+ this.templateRef = templateRef;
27
+ }
28
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ReceiverMessageContentTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
29
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: ReceiverMessageContentTemplateDirective, isStandalone: true, selector: "[kendoChatReceiverMessageContentTemplate]", ngImport: i0 });
30
+ }
31
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ReceiverMessageContentTemplateDirective, decorators: [{
32
+ type: Directive,
33
+ args: [{
34
+ selector: '[kendoChatReceiverMessageContentTemplate]',
35
+ standalone: true
36
+ }]
37
+ }], ctorParameters: () => [{ type: i0.TemplateRef, decorators: [{
38
+ type: Optional
39
+ }] }] });
@@ -0,0 +1,39 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { Directive, Optional, TemplateRef } from "@angular/core";
6
+ import * as i0 from "@angular/core";
7
+ /**
8
+ * Defines a template for displaying fully custom Chat message bubbles for the other users.
9
+ *
10
+ * To define a message template, nest an `<ng-template>` tag with the `kendoChatReceiverMessageTemplate` directive inside the `<kendo-chat>` component.
11
+ * The template context is set to the `message` instance.
12
+ * For more information, refer to the article on [message templates](slug:message_templates_chat).
13
+ *
14
+ * @example
15
+ * ```html
16
+ * <kendo-chat>
17
+ * <ng-template kendoChatReceiverMessageTemplate let-message>
18
+ * <div>Message: {{ message.text }}</div>
19
+ * </ng-template>
20
+ * </kendo-chat>
21
+ * ```
22
+ */
23
+ export class ReceiverMessageTemplateDirective {
24
+ templateRef;
25
+ constructor(templateRef) {
26
+ this.templateRef = templateRef;
27
+ }
28
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ReceiverMessageTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
29
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: ReceiverMessageTemplateDirective, isStandalone: true, selector: "[kendoChatReceiverMessageTemplate]", ngImport: i0 });
30
+ }
31
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ReceiverMessageTemplateDirective, decorators: [{
32
+ type: Directive,
33
+ args: [{
34
+ selector: '[kendoChatReceiverMessageTemplate]',
35
+ standalone: true
36
+ }]
37
+ }], ctorParameters: () => [{ type: i0.TemplateRef, decorators: [{
38
+ type: Optional
39
+ }] }] });
@@ -0,0 +1,38 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { Directive, Optional, TemplateRef } from "@angular/core";
6
+ import * as i0 from "@angular/core";
7
+ /**
8
+ * Defines a template for displaying user status in the Chat.
9
+ *
10
+ * To define a user status template, nest an `<ng-template>` tag with the `kendoChatUserStatusTemplate` directive inside the `<kendo-chat>` component.
11
+ * For more information, refer to the article on [message templates](slug:message_templates_chat).
12
+ *
13
+ * @example
14
+ * ```html
15
+ * <kendo-chat>
16
+ * <ng-template kendoChatUserStatusTemplate let-status>
17
+ * <div>{{ status }}</div>
18
+ * </ng-template>
19
+ * </kendo-chat>
20
+ * ```
21
+ */
22
+ export class ChatUserStatusTemplateDirective {
23
+ templateRef;
24
+ constructor(templateRef) {
25
+ this.templateRef = templateRef;
26
+ }
27
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChatUserStatusTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
28
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: ChatUserStatusTemplateDirective, isStandalone: true, selector: "[kendoChatUserStatusTemplate]", ngImport: i0 });
29
+ }
30
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChatUserStatusTemplateDirective, decorators: [{
31
+ type: Directive,
32
+ args: [{
33
+ selector: '[kendoChatUserStatusTemplate]',
34
+ standalone: true
35
+ }]
36
+ }], ctorParameters: () => [{ type: i0.TemplateRef, decorators: [{
37
+ type: Optional
38
+ }] }] });
@@ -22,16 +22,23 @@ import * as i10 from "./ai-prompt/templates/aiprompt-output-body-template.direct
22
22
  import * as i11 from "./chat/chat.component";
23
23
  import * as i12 from "./chat/l10n/custom-messages.component";
24
24
  import * as i13 from "./chat/templates/attachment-template.directive";
25
- import * as i14 from "./chat/templates/message-template.directive";
26
- import * as i15 from "./chat/cards/hero-card.component";
27
- import * as i16 from "./chat/templates/message-box.directive";
28
- import * as i17 from "./chat/templates/header-template.directive";
29
- import * as i18 from "./chat/templates/timestamp-template.directive";
30
- import * as i19 from "./chat/templates/status-template.directive";
31
- import * as i20 from "./chat/templates/suggestion-template.directive";
32
- import * as i21 from "./inline-ai-prompt/inlineaiprompt.component";
33
- import * as i22 from "./inline-ai-prompt/output-template.directive";
34
- import * as i23 from "./inline-ai-prompt/localization/custom-messages.component";
25
+ import * as i14 from "./chat/templates/author-message-content-template.directive";
26
+ import * as i15 from "./chat/templates/receiver-message-content-template.directive";
27
+ import * as i16 from "./chat/templates/message-content-template.directive";
28
+ import * as i17 from "./chat/templates/author-message-template.directive";
29
+ import * as i18 from "./chat/templates/receiver-message-template.directive";
30
+ import * as i19 from "./chat/templates/message-template.directive";
31
+ import * as i20 from "./chat/cards/hero-card.component";
32
+ import * as i21 from "./chat/templates/message-box.directive";
33
+ import * as i22 from "./chat/templates/header-template.directive";
34
+ import * as i23 from "./chat/templates/no-data-template.directive";
35
+ import * as i24 from "./chat/templates/timestamp-template.directive";
36
+ import * as i25 from "./chat/templates/status-template.directive";
37
+ import * as i26 from "./chat/templates/suggestion-template.directive";
38
+ import * as i27 from "./chat/templates/user-status-template.directive";
39
+ import * as i28 from "./inline-ai-prompt/inlineaiprompt.component";
40
+ import * as i29 from "./inline-ai-prompt/output-template.directive";
41
+ import * as i30 from "./inline-ai-prompt/localization/custom-messages.component";
35
42
  // IMPORTANT: NgModule export kept for backwards compatibility
36
43
  /**
37
44
  * Represents the [`NgModule`](link:site.data.urls.angular['ngmodules']) for the Conversational UI components.
@@ -53,8 +60,8 @@ import * as i23 from "./inline-ai-prompt/localization/custom-messages.component"
53
60
  */
54
61
  export class ConversationalUIModule {
55
62
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ConversationalUIModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
56
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: ConversationalUIModule, imports: [i1.AIPromptComponent, i2.PromptViewComponent, i3.OutputViewComponent, i4.CommandViewComponent, i5.CustomViewComponent, i6.AIPromptCustomMessagesComponent, i7.AIPromptToolbarActionsDirective, i8.AIPromptToolbarFocusableDirective, i9.AIPromptOutputTemplateDirective, i10.AIPromptOutputBodyTemplateDirective, i11.ChatComponent, i12.CustomMessagesComponent, i13.AttachmentTemplateDirective, i14.MessageTemplateDirective, i15.HeroCardComponent, i16.ChatMessageBoxTemplateDirective, i17.ChatHeaderTemplateDirective, i18.ChatTimestampTemplateDirective, i19.ChatStatusTemplateDirective, i20.ChatSuggestionTemplateDirective, i21.InlineAIPromptComponent, i22.InlineAIPromptOutputTemplateDirective, i23.InlineAIPromptCustomMessagesComponent], exports: [i1.AIPromptComponent, i2.PromptViewComponent, i3.OutputViewComponent, i4.CommandViewComponent, i5.CustomViewComponent, i6.AIPromptCustomMessagesComponent, i7.AIPromptToolbarActionsDirective, i8.AIPromptToolbarFocusableDirective, i9.AIPromptOutputTemplateDirective, i10.AIPromptOutputBodyTemplateDirective, i11.ChatComponent, i12.CustomMessagesComponent, i13.AttachmentTemplateDirective, i14.MessageTemplateDirective, i15.HeroCardComponent, i16.ChatMessageBoxTemplateDirective, i17.ChatHeaderTemplateDirective, i18.ChatTimestampTemplateDirective, i19.ChatStatusTemplateDirective, i20.ChatSuggestionTemplateDirective, i21.InlineAIPromptComponent, i22.InlineAIPromptOutputTemplateDirective, i23.InlineAIPromptCustomMessagesComponent] });
57
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ConversationalUIModule, providers: [IconsService, PopupService, ResizeBatchService, DialogContainerService, DialogService, WindowService, WindowContainerService], imports: [i1.AIPromptComponent, i2.PromptViewComponent, i3.OutputViewComponent, i4.CommandViewComponent, i11.ChatComponent, i15.HeroCardComponent, i21.InlineAIPromptComponent] });
63
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: ConversationalUIModule, imports: [i1.AIPromptComponent, i2.PromptViewComponent, i3.OutputViewComponent, i4.CommandViewComponent, i5.CustomViewComponent, i6.AIPromptCustomMessagesComponent, i7.AIPromptToolbarActionsDirective, i8.AIPromptToolbarFocusableDirective, i9.AIPromptOutputTemplateDirective, i10.AIPromptOutputBodyTemplateDirective, i11.ChatComponent, i12.CustomMessagesComponent, i13.AttachmentTemplateDirective, i14.AuthorMessageContentTemplateDirective, i15.ReceiverMessageContentTemplateDirective, i16.MessageContentTemplateDirective, i17.AuthorMessageTemplateDirective, i18.ReceiverMessageTemplateDirective, i19.MessageTemplateDirective, i20.HeroCardComponent, i21.ChatMessageBoxTemplateDirective, i22.ChatHeaderTemplateDirective, i23.NoDataTemplateDirective, i24.ChatTimestampTemplateDirective, i25.ChatStatusTemplateDirective, i26.ChatSuggestionTemplateDirective, i27.ChatUserStatusTemplateDirective, i28.InlineAIPromptComponent, i29.InlineAIPromptOutputTemplateDirective, i30.InlineAIPromptCustomMessagesComponent], exports: [i1.AIPromptComponent, i2.PromptViewComponent, i3.OutputViewComponent, i4.CommandViewComponent, i5.CustomViewComponent, i6.AIPromptCustomMessagesComponent, i7.AIPromptToolbarActionsDirective, i8.AIPromptToolbarFocusableDirective, i9.AIPromptOutputTemplateDirective, i10.AIPromptOutputBodyTemplateDirective, i11.ChatComponent, i12.CustomMessagesComponent, i13.AttachmentTemplateDirective, i14.AuthorMessageContentTemplateDirective, i15.ReceiverMessageContentTemplateDirective, i16.MessageContentTemplateDirective, i17.AuthorMessageTemplateDirective, i18.ReceiverMessageTemplateDirective, i19.MessageTemplateDirective, i20.HeroCardComponent, i21.ChatMessageBoxTemplateDirective, i22.ChatHeaderTemplateDirective, i23.NoDataTemplateDirective, i24.ChatTimestampTemplateDirective, i25.ChatStatusTemplateDirective, i26.ChatSuggestionTemplateDirective, i27.ChatUserStatusTemplateDirective, i28.InlineAIPromptComponent, i29.InlineAIPromptOutputTemplateDirective, i30.InlineAIPromptCustomMessagesComponent] });
64
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ConversationalUIModule, providers: [IconsService, PopupService, ResizeBatchService, DialogContainerService, DialogService, WindowService, WindowContainerService], imports: [i1.AIPromptComponent, i2.PromptViewComponent, i3.OutputViewComponent, i4.CommandViewComponent, i11.ChatComponent, i20.HeroCardComponent, i28.InlineAIPromptComponent] });
58
65
  }
59
66
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ConversationalUIModule, decorators: [{
60
67
  type: NgModule,
@@ -12,11 +12,17 @@ import { OutputViewComponent, PromptViewComponent } from "./ai-prompt/views";
12
12
  import { ChatComponent } from "./chat/chat.component";
13
13
  import { CustomMessagesComponent } from "./chat/l10n/custom-messages.component";
14
14
  import { AttachmentTemplateDirective } from "./chat/templates/attachment-template.directive";
15
+ import { AuthorMessageContentTemplateDirective } from "./chat/templates/author-message-content-template.directive";
16
+ import { ReceiverMessageContentTemplateDirective } from "./chat/templates/receiver-message-content-template.directive";
17
+ import { MessageContentTemplateDirective } from "./chat/templates/message-content-template.directive";
18
+ import { AuthorMessageTemplateDirective } from "./chat/templates/author-message-template.directive";
19
+ import { ReceiverMessageTemplateDirective } from "./chat/templates/receiver-message-template.directive";
15
20
  import { MessageTemplateDirective } from "./chat/templates/message-template.directive";
16
21
  import { ChatTimestampTemplateDirective } from "./chat/templates/timestamp-template.directive";
17
22
  import { HeroCardComponent } from "./chat/cards/hero-card.component";
18
23
  import { ChatMessageBoxTemplateDirective } from "./chat/templates/message-box.directive";
19
24
  import { ChatHeaderTemplateDirective } from "./chat/templates/header-template.directive";
25
+ import { NoDataTemplateDirective } from "./chat/templates/no-data-template.directive";
20
26
  import { AIPromptOutputBodyTemplateDirective } from "./ai-prompt/templates/aiprompt-output-body-template.directive";
21
27
  import { AIPromptOutputTemplateDirective } from "./ai-prompt/templates/aiprompt-output-template.directive";
22
28
  import { InlineAIPromptComponent } from "./inline-ai-prompt/inlineaiprompt.component";
@@ -24,6 +30,7 @@ import { InlineAIPromptOutputTemplateDirective } from "./inline-ai-prompt/output
24
30
  import { InlineAIPromptCustomMessagesComponent } from "./inline-ai-prompt/localization/custom-messages.component";
25
31
  import { ChatStatusTemplateDirective } from "./chat/templates/status-template.directive";
26
32
  import { ChatSuggestionTemplateDirective } from "./chat/templates/suggestion-template.directive";
33
+ import { ChatUserStatusTemplateDirective } from "./chat/templates/user-status-template.directive";
27
34
  /**
28
35
  * Utility array that contains all AIPrompt related components and directives.
29
36
  *
@@ -74,13 +81,20 @@ export const KENDO_CHAT = [
74
81
  ChatComponent,
75
82
  CustomMessagesComponent,
76
83
  AttachmentTemplateDirective,
84
+ AuthorMessageContentTemplateDirective,
85
+ ReceiverMessageContentTemplateDirective,
86
+ MessageContentTemplateDirective,
87
+ AuthorMessageTemplateDirective,
88
+ ReceiverMessageTemplateDirective,
77
89
  MessageTemplateDirective,
78
90
  HeroCardComponent,
79
91
  ChatMessageBoxTemplateDirective,
80
92
  ChatHeaderTemplateDirective,
93
+ NoDataTemplateDirective,
81
94
  ChatTimestampTemplateDirective,
82
95
  ChatStatusTemplateDirective,
83
- ChatSuggestionTemplateDirective
96
+ ChatSuggestionTemplateDirective,
97
+ ChatUserStatusTemplateDirective
84
98
  ];
85
99
  /**
86
100
  * Utility array that contains all InlineAIPrompt related components and directives.
package/esm2022/index.mjs CHANGED
@@ -12,8 +12,15 @@ export { HeroCardComponent } from './chat/cards/hero-card.component';
12
12
  export { CustomMessagesComponent } from './chat/l10n/custom-messages.component';
13
13
  export { ChatMessageBoxTemplateDirective } from './chat/templates/message-box.directive';
14
14
  export { ChatHeaderTemplateDirective } from './chat/templates/header-template.directive';
15
+ export { NoDataTemplateDirective } from './chat/templates/no-data-template.directive';
16
+ export { ChatUserStatusTemplateDirective } from './chat/templates/user-status-template.directive';
15
17
  export { ChatTimestampTemplateDirective } from './chat/templates/timestamp-template.directive';
16
18
  export { AttachmentTemplateDirective } from './chat/templates/attachment-template.directive';
19
+ export { AuthorMessageContentTemplateDirective } from './chat/templates/author-message-content-template.directive';
20
+ export { ReceiverMessageContentTemplateDirective } from './chat/templates/receiver-message-content-template.directive';
21
+ export { MessageContentTemplateDirective } from './chat/templates/message-content-template.directive';
22
+ export { AuthorMessageTemplateDirective } from './chat/templates/author-message-template.directive';
23
+ export { ReceiverMessageTemplateDirective } from './chat/templates/receiver-message-template.directive';
17
24
  export { MessageTemplateDirective } from './chat/templates/message-template.directive';
18
25
  export { ChatSuggestionTemplateDirective } from './chat/templates/suggestion-template.directive';
19
26
  export { ChatStatusTemplateDirective } from './chat/templates/status-template.directive';
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1761844485,
14
- version: '21.0.0-develop.8',
13
+ publishDate: 1761910356,
14
+ version: '21.0.0-develop.9',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
16
16
  };