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

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
package/index.d.ts CHANGED
@@ -1,11 +1,19 @@
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, AttachmentTemplateDirective, MessageTemplateDirective } from './chat/chat.directives';
6
6
  export { Action, ActionType, Attachment, AttachmentLayout, ExecuteActionEvent, Message, User, SendMessageEvent } from './api';
7
+ export { AIPromptModule } from './ai-prompt/aiprompt.module';
7
8
  export { ChatModule } from './chat/chat.module';
9
+ export { ConversationalUIModule } from './conversational-ui.module';
8
10
  export { HeroCardComponent } from './cards/hero-card.component';
9
11
  export { CustomMessagesComponent } from './chat/l10n/custom-messages.component';
10
12
  export { MessageBoxType } from './common/models/message-box-options';
11
13
  export { ChatMessageBoxTemplateDirective } from './chat/message-box.directive';
14
+ export { AIPromptComponent } from './ai-prompt/aiprompt.component';
15
+ export { AIPromptCustomMessagesComponent } from './ai-prompt/localization/custom-messages.component';
16
+ export { AIPromptToolbarActionsDirective } from './ai-prompt/templates/toolbar-actions.template';
17
+ export { AIPromptToolbarFocusableDirective } from './ai-prompt/common/toolbar-focusable.directive';
18
+ export * from './ai-prompt/views';
19
+ export * from './ai-prompt/models';
@@ -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 { PackageMetadata } from '@progress/kendo-licensing';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-conversational-ui",
3
- "version": "14.4.0-develop.2",
3
+ "version": "14.4.0-develop.21",
4
4
  "description": "Kendo UI for Angular Conversational UI components",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -24,16 +24,18 @@
24
24
  "@angular/core": "13 - 17",
25
25
  "@angular/platform-browser": "13 - 17",
26
26
  "@progress/kendo-licensing": "^1.0.2",
27
- "@progress/kendo-angular-buttons": "14.4.0-develop.2",
28
- "@progress/kendo-angular-common": "14.4.0-develop.2",
29
- "@progress/kendo-angular-intl": "14.4.0-develop.2",
30
- "@progress/kendo-angular-l10n": "14.4.0-develop.2",
31
- "@progress/kendo-angular-popup": "14.4.0-develop.2",
27
+ "@progress/kendo-angular-buttons": "14.4.0-develop.21",
28
+ "@progress/kendo-angular-inputs": "14.4.0-develop.21",
29
+ "@progress/kendo-angular-layout": "14.4.0-develop.21",
30
+ "@progress/kendo-angular-common": "14.4.0-develop.21",
31
+ "@progress/kendo-angular-intl": "14.4.0-develop.21",
32
+ "@progress/kendo-angular-l10n": "14.4.0-develop.21",
33
+ "@progress/kendo-angular-popup": "14.4.0-develop.21",
32
34
  "rxjs": "^6.5.3 || ^7.0.0"
33
35
  },
34
36
  "dependencies": {
35
37
  "tslib": "^2.3.1",
36
- "@progress/kendo-angular-schematics": "14.4.0-develop.2"
38
+ "@progress/kendo-angular-schematics": "14.4.0-develop.21"
37
39
  },
38
40
  "schematics": "./schematics/collection.json",
39
41
  "module": "fesm2015/progress-kendo-angular-conversational-ui.mjs",
@@ -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
  /**