@progress/kendo-angular-conversational-ui 14.4.0-develop.2 → 14.4.0-develop.20

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 (124) hide show
  1. package/LICENSE.md +1 -1
  2. package/NOTICE.txt +147 -594
  3. package/README.md +1 -1
  4. package/ai-prompt/aiprompt.component.d.ts +120 -0
  5. package/ai-prompt/aiprompt.module.d.ts +25 -0
  6. package/ai-prompt/common/aiprompt.service.d.ts +26 -0
  7. package/ai-prompt/common/output-card.component.d.ts +36 -0
  8. package/ai-prompt/common/toolbar-focusable.directive.d.ts +24 -0
  9. package/ai-prompt/common/toolbar-navigation.service.d.ts +24 -0
  10. package/ai-prompt/localization/custom-messages.component.d.ts +17 -0
  11. package/ai-prompt/localization/localized-messages.directive.d.ts +16 -0
  12. package/ai-prompt/localization/messages.d.ts +49 -0
  13. package/ai-prompt/models/command-execute-event.d.ts +23 -0
  14. package/ai-prompt/models/command.interface.d.ts +30 -0
  15. package/ai-prompt/models/index.d.ts +10 -0
  16. package/ai-prompt/models/output-rating-change-event.d.ts +18 -0
  17. package/ai-prompt/models/prompt-output.interface.d.ts +41 -0
  18. package/ai-prompt/models/prompt-request-event.d.ts +22 -0
  19. package/ai-prompt/models/view-type.d.ts +8 -0
  20. package/ai-prompt/templates/toolbar-actions.template.d.ts +18 -0
  21. package/ai-prompt/utils.d.ts +19 -0
  22. package/ai-prompt/views/base-view.d.ts +46 -0
  23. package/ai-prompt/views/command-view.component.d.ts +23 -0
  24. package/ai-prompt/views/custom-view.component.d.ts +20 -0
  25. package/ai-prompt/views/index.d.ts +8 -0
  26. package/ai-prompt/views/output-view.component.d.ts +22 -0
  27. package/ai-prompt/views/prompt-view.component.d.ts +47 -0
  28. package/api/action.interface.d.ts +1 -1
  29. package/api/attachment.interface.d.ts +1 -1
  30. package/api/execute-action-event.d.ts +1 -1
  31. package/api/index.d.ts +1 -1
  32. package/api/message.interface.d.ts +1 -1
  33. package/api/post-message-event.d.ts +1 -1
  34. package/api/preventable-event.d.ts +1 -1
  35. package/api/user.interface.d.ts +1 -1
  36. package/cards/hero-card.component.d.ts +1 -1
  37. package/chat/attachment-template.directive.d.ts +1 -1
  38. package/chat/attachment.component.d.ts +1 -1
  39. package/chat/builtin-actions.d.ts +1 -1
  40. package/chat/chat-item.d.ts +1 -1
  41. package/chat/chat-view.d.ts +1 -1
  42. package/chat/chat.component.d.ts +1 -1
  43. package/chat/chat.directives.d.ts +1 -1
  44. package/chat/chat.module.d.ts +1 -1
  45. package/chat/l10n/custom-messages.component.d.ts +1 -1
  46. package/chat/l10n/localized-messages.directive.d.ts +1 -1
  47. package/chat/l10n/messages.d.ts +1 -1
  48. package/chat/message-attachments.component.d.ts +1 -1
  49. package/chat/message-box.component.d.ts +1 -1
  50. package/chat/message-box.directive.d.ts +1 -1
  51. package/chat/message-list.component.d.ts +1 -1
  52. package/chat/message-template.directive.d.ts +1 -1
  53. package/chat/message.component.d.ts +1 -1
  54. package/chat/suggested-actions.component.d.ts +1 -1
  55. package/common/focused-state.directive.d.ts +1 -1
  56. package/common/models/message-box-options.d.ts +1 -1
  57. package/common/scroll-anchor.directive.d.ts +1 -1
  58. package/common/utils.d.ts +1 -1
  59. package/conversational-ui.module.d.ts +43 -0
  60. package/esm2020/ai-prompt/aiprompt.component.mjs +348 -0
  61. package/esm2020/ai-prompt/aiprompt.module.mjs +79 -0
  62. package/esm2020/ai-prompt/common/aiprompt.service.mjs +38 -0
  63. package/esm2020/ai-prompt/common/output-card.component.mjs +199 -0
  64. package/esm2020/ai-prompt/common/toolbar-focusable.directive.mjs +67 -0
  65. package/esm2020/ai-prompt/common/toolbar-navigation.service.mjs +55 -0
  66. package/esm2020/ai-prompt/localization/custom-messages.component.mjs +41 -0
  67. package/esm2020/ai-prompt/localization/localized-messages.directive.mjs +37 -0
  68. package/esm2020/ai-prompt/localization/messages.mjs +35 -0
  69. package/esm2020/ai-prompt/models/command-execute-event.mjs +5 -0
  70. package/esm2020/ai-prompt/models/command.interface.mjs +5 -0
  71. package/esm2020/ai-prompt/models/index.mjs +5 -0
  72. package/esm2020/ai-prompt/models/output-rating-change-event.mjs +5 -0
  73. package/esm2020/ai-prompt/models/prompt-output.interface.mjs +5 -0
  74. package/esm2020/ai-prompt/models/prompt-request-event.mjs +5 -0
  75. package/esm2020/ai-prompt/models/view-type.mjs +5 -0
  76. package/esm2020/ai-prompt/templates/toolbar-actions.template.mjs +27 -0
  77. package/esm2020/ai-prompt/utils.mjs +26 -0
  78. package/esm2020/ai-prompt/views/base-view.mjs +89 -0
  79. package/esm2020/ai-prompt/views/command-view.component.mjs +82 -0
  80. package/esm2020/ai-prompt/views/custom-view.component.mjs +35 -0
  81. package/esm2020/ai-prompt/views/index.mjs +8 -0
  82. package/esm2020/ai-prompt/views/output-view.component.mjs +66 -0
  83. package/esm2020/ai-prompt/views/prompt-view.component.mjs +146 -0
  84. package/esm2020/api/action.interface.mjs +1 -1
  85. package/esm2020/api/attachment.interface.mjs +1 -1
  86. package/esm2020/api/execute-action-event.mjs +1 -1
  87. package/esm2020/api/index.mjs +1 -1
  88. package/esm2020/api/message.interface.mjs +1 -1
  89. package/esm2020/api/post-message-event.mjs +1 -1
  90. package/esm2020/api/preventable-event.mjs +1 -1
  91. package/esm2020/api/user.interface.mjs +1 -1
  92. package/esm2020/cards/hero-card.component.mjs +1 -1
  93. package/esm2020/chat/attachment-template.directive.mjs +1 -1
  94. package/esm2020/chat/attachment.component.mjs +1 -1
  95. package/esm2020/chat/builtin-actions.mjs +1 -1
  96. package/esm2020/chat/chat-item.mjs +1 -1
  97. package/esm2020/chat/chat-view.mjs +1 -1
  98. package/esm2020/chat/chat.component.mjs +1 -1
  99. package/esm2020/chat/chat.directives.mjs +1 -1
  100. package/esm2020/chat/chat.module.mjs +1 -1
  101. package/esm2020/chat/l10n/custom-messages.component.mjs +1 -1
  102. package/esm2020/chat/l10n/localized-messages.directive.mjs +1 -1
  103. package/esm2020/chat/l10n/messages.mjs +1 -1
  104. package/esm2020/chat/message-attachments.component.mjs +1 -1
  105. package/esm2020/chat/message-box.component.mjs +1 -1
  106. package/esm2020/chat/message-box.directive.mjs +1 -1
  107. package/esm2020/chat/message-list.component.mjs +1 -1
  108. package/esm2020/chat/message-template.directive.mjs +1 -1
  109. package/esm2020/chat/message.component.mjs +1 -1
  110. package/esm2020/chat/suggested-actions.component.mjs +1 -1
  111. package/esm2020/common/focused-state.directive.mjs +1 -1
  112. package/esm2020/common/models/message-box-options.mjs +1 -1
  113. package/esm2020/common/scroll-anchor.directive.mjs +1 -1
  114. package/esm2020/common/utils.mjs +1 -1
  115. package/esm2020/conversational-ui.module.mjs +50 -0
  116. package/esm2020/index.mjs +9 -1
  117. package/esm2020/package-metadata.mjs +3 -3
  118. package/esm2020/progress-kendo-angular-conversational-ui.mjs +1 -1
  119. package/fesm2015/progress-kendo-angular-conversational-ui.mjs +1412 -150
  120. package/fesm2020/progress-kendo-angular-conversational-ui.mjs +1300 -44
  121. package/index.d.ts +9 -1
  122. package/package-metadata.d.ts +1 -1
  123. package/package.json +9 -7
  124. package/progress-kendo-angular-conversational-ui.d.ts +1 -1
@@ -0,0 +1,8 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ export { CommandViewComponent } from './command-view.component';
6
+ export { CustomViewComponent } from './custom-view.component';
7
+ export { OutputViewComponent } from './output-view.component';
8
+ export { PromptViewComponent } from './prompt-view.component';
@@ -0,0 +1,22 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { LocalizationService } from '@progress/kendo-angular-l10n';
6
+ import { BaseView } from './base-view';
7
+ import { PromptOutput } from '../models/prompt-output.interface';
8
+ import { AIPromptService } from '../common/aiprompt.service';
9
+ import * as i0 from "@angular/core";
10
+ /**
11
+ * The component for rendering the **Output** view.
12
+ */
13
+ export declare class OutputViewComponent extends BaseView {
14
+ private service;
15
+ constructor(localization: LocalizationService, service: AIPromptService);
16
+ /**
17
+ * @hidden
18
+ */
19
+ get promptOutputs(): Array<PromptOutput>;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<OutputViewComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<OutputViewComponent, "kendo-aiprompt-output-view", never, {}, {}, never, never>;
22
+ }
@@ -0,0 +1,47 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { LocalizationService } from '@progress/kendo-angular-l10n';
6
+ import { SVGIcon } from '@progress/kendo-svg-icons';
7
+ import { BaseView } from './base-view';
8
+ import { AIPromptService } from '../common/aiprompt.service';
9
+ import * as i0 from "@angular/core";
10
+ /**
11
+ * The component for rendering the **Prompt** view.
12
+ */
13
+ export declare class PromptViewComponent extends BaseView {
14
+ private service;
15
+ constructor(localization: LocalizationService, service: AIPromptService);
16
+ /**
17
+ * @hidden
18
+ */
19
+ get suggestionsIcons(): {
20
+ font: string;
21
+ svg: SVGIcon;
22
+ };
23
+ /**
24
+ * @hidden
25
+ */
26
+ showSuggestions: boolean;
27
+ /**
28
+ * @hidden
29
+ */
30
+ contentId: string;
31
+ /**
32
+ * @hidden
33
+ */
34
+ get promptSuggestions(): string[];
35
+ /**
36
+ *
37
+ * @hidden
38
+ */
39
+ set textAreaValue(value: string);
40
+ get textAreaValue(): string;
41
+ /**
42
+ * @hidden
43
+ */
44
+ suggestionClick(suggestion: string): void;
45
+ static ɵfac: i0.ɵɵFactoryDeclaration<PromptViewComponent, never>;
46
+ static ɵcmp: i0.ɵɵComponentDeclaration<PromptViewComponent, "kendo-aiprompt-prompt-view", never, {}, {}, never, never>;
47
+ }
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { PreventableEvent } from "./preventable-event";
package/api/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  export * from './action.interface';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Action } from './action.interface';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Message } from './message.interface';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { SafeUrl } from '@angular/platform-browser';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { EventEmitter } from '@angular/core';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { TemplateRef } from "@angular/core";
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Attachment } from '../api/attachment.interface';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Action } from '../api/action.interface';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Message, User, Action, Attachment, AttachmentLayout } from '../api';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { AfterViewInit, ElementRef, EventEmitter, OnDestroy, NgZone } from '@angular/core';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  export { ChatComponent } from './chat.component';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import * as i0 from "@angular/core";
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { LocalizationService } from '@progress/kendo-angular-l10n';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { LocalizationService } from '@progress/kendo-angular-l10n';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ComponentMessages } from '@progress/kendo-angular-l10n';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { AfterViewInit, ElementRef, NgZone, OnDestroy, QueryList } from '@angular/core';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ElementRef, EventEmitter } from '@angular/core';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { TemplateRef } from '@angular/core';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { AfterViewInit, ElementRef, EventEmitter, OnDestroy, OnInit, QueryList, Renderer2 } from '@angular/core';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { TemplateRef } from "@angular/core";
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ElementRef } from '@angular/core';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ElementRef, EventEmitter, QueryList } from '@angular/core';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import * as i0 from "@angular/core";
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { AfterViewInit, ElementRef, EventEmitter, NgZone, OnDestroy, OnInit, Renderer2 } from '@angular/core';
package/common/utils.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
@@ -0,0 +1,43 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import * as i0 from "@angular/core";
6
+ import * as i1 from "./ai-prompt/aiprompt.module";
7
+ import * as i2 from "./chat/chat.module";
8
+ /**
9
+ * Represents the [NgModule](link:site.data.urls.angular['ngmodules'])
10
+ * definition for the Conversational UI components.
11
+ *
12
+ * @example
13
+ *
14
+ * ```ts-no-run
15
+ * // Import the Conversational UI module
16
+ * import { ConversationalUIModule } from '@progress/kendo-angular-conversational-ui';
17
+ *
18
+ * // The browser platform with a compiler
19
+ * import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
20
+ *
21
+ * import { NgModule } from '@angular/core';
22
+ *
23
+ * // Import the app component
24
+ * import { AppComponent } from './app.component';
25
+ *
26
+ * // Define the app module
27
+ * _@NgModule({
28
+ * declarations: [AppComponent], // declare app component
29
+ * imports: [BrowserModule, ConversationalUIModule], // import Conversational UI module
30
+ * bootstrap: [AppComponent]
31
+ * })
32
+ * export class AppModule {}
33
+ *
34
+ * // Compile and launch the module
35
+ * platformBrowserDynamic().bootstrapModule(AppModule);
36
+ *
37
+ * ```
38
+ */
39
+ export declare class ConversationalUIModule {
40
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConversationalUIModule, never>;
41
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ConversationalUIModule, never, never, [typeof i1.AIPromptModule, typeof i2.ChatModule]>;
42
+ static ɵinj: i0.ɵɵInjectorDeclaration<ConversationalUIModule>;
43
+ }