@progress/kendo-angular-conversational-ui 20.0.0-develop.3 → 20.0.0-develop.5

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 (86) hide show
  1. package/chat/api/action.interface.d.ts +1 -1
  2. package/chat/api/attachment.interface.d.ts +1 -1
  3. package/chat/api/chat-file-interface.d.ts +41 -0
  4. package/chat/api/chat-suggestion.interface.d.ts +25 -0
  5. package/chat/api/file-action.d.ts +42 -0
  6. package/chat/api/file-download-event.interface.d.ts +21 -0
  7. package/chat/api/index.d.ts +8 -0
  8. package/chat/api/message-action.d.ts +42 -0
  9. package/{esm2022/chat/chat.directives.mjs → chat/api/message-toolbar-visibility.d.ts} +4 -4
  10. package/chat/api/message-width-mode.d.ts +10 -0
  11. package/chat/api/message.interface.d.ts +30 -12
  12. package/chat/api/send-button-settings.d.ts +15 -0
  13. package/chat/api/user.interface.d.ts +4 -0
  14. package/chat/attachment.component.d.ts +1 -1
  15. package/chat/cards/hero-card.component.d.ts +1 -1
  16. package/chat/chat-file.component.d.ts +34 -0
  17. package/chat/chat-item.d.ts +1 -0
  18. package/chat/chat-view.d.ts +1 -1
  19. package/chat/chat.component.d.ts +218 -19
  20. package/chat/chat.module.d.ts +8 -4
  21. package/chat/common/chat.service.d.ts +51 -0
  22. package/chat/{chat.directives.d.ts → common/models/default-model-fields.d.ts} +5 -4
  23. package/chat/common/models/message-box-options.d.ts +1 -1
  24. package/chat/common/models/model-fields.d.ts +111 -0
  25. package/chat/common/utils.d.ts +50 -0
  26. package/chat/l10n/messages.d.ts +40 -3
  27. package/chat/message-attachments.component.d.ts +1 -4
  28. package/chat/message-box.component.d.ts +54 -25
  29. package/chat/message-list.component.d.ts +18 -11
  30. package/chat/message-reference-content.component.d.ts +24 -0
  31. package/chat/message.component.d.ts +54 -6
  32. package/chat/suggested-actions.component.d.ts +17 -4
  33. package/chat/templates/header-template.directive.d.ts +24 -0
  34. package/chat/{message-box.directive.d.ts → templates/message-box.directive.d.ts} +1 -1
  35. package/chat/templates/status-template.directive.d.ts +24 -0
  36. package/chat/templates/suggestion-template.directive.d.ts +24 -0
  37. package/chat/templates/timestamp-template.directive.d.ts +28 -0
  38. package/codemods/template-transformer/index.js +94 -0
  39. package/codemods/utils.js +609 -0
  40. package/codemods/v20/chat-user.js +50 -0
  41. package/conversational-ui.module.d.ts +11 -7
  42. package/directives.d.ts +9 -5
  43. package/esm2022/chat/api/chat-file-interface.mjs +5 -0
  44. package/esm2022/chat/api/chat-suggestion.interface.mjs +5 -0
  45. package/esm2022/chat/api/file-action.mjs +5 -0
  46. package/esm2022/chat/api/file-download-event.interface.mjs +5 -0
  47. package/esm2022/chat/api/index.mjs +8 -0
  48. package/esm2022/chat/api/message-action.mjs +5 -0
  49. package/esm2022/chat/api/message-toolbar-visibility.mjs +5 -0
  50. package/esm2022/chat/api/message-width-mode.mjs +5 -0
  51. package/esm2022/chat/api/send-button-settings.mjs +5 -0
  52. package/esm2022/chat/attachment.component.mjs +1 -1
  53. package/esm2022/chat/builtin-actions.mjs +1 -1
  54. package/esm2022/chat/cards/hero-card.component.mjs +1 -1
  55. package/esm2022/chat/chat-file.component.mjs +141 -0
  56. package/esm2022/chat/chat-item.mjs +1 -0
  57. package/esm2022/chat/chat-view.mjs +2 -2
  58. package/esm2022/chat/chat.component.mjs +518 -57
  59. package/esm2022/chat/chat.module.mjs +8 -4
  60. package/esm2022/chat/common/chat.service.mjs +97 -0
  61. package/esm2022/chat/common/models/default-model-fields.mjs +26 -0
  62. package/esm2022/chat/common/models/model-fields.mjs +5 -0
  63. package/esm2022/chat/common/utils.mjs +127 -0
  64. package/esm2022/chat/l10n/messages.mjs +60 -5
  65. package/esm2022/chat/message-attachments.component.mjs +1 -4
  66. package/esm2022/chat/message-box.component.mjs +360 -111
  67. package/esm2022/chat/message-list.component.mjs +166 -96
  68. package/esm2022/chat/message-reference-content.component.mjs +75 -0
  69. package/esm2022/chat/message.component.mjs +448 -35
  70. package/esm2022/chat/suggested-actions.component.mjs +151 -41
  71. package/esm2022/chat/templates/header-template.directive.mjs +33 -0
  72. package/esm2022/chat/{message-box.directive.mjs → templates/message-box.directive.mjs} +1 -1
  73. package/esm2022/chat/templates/status-template.directive.mjs +33 -0
  74. package/esm2022/chat/templates/suggestion-template.directive.mjs +33 -0
  75. package/esm2022/chat/templates/timestamp-template.directive.mjs +39 -0
  76. package/esm2022/conversational-ui.module.mjs +12 -8
  77. package/esm2022/directives.mjs +12 -4
  78. package/esm2022/index.mjs +9 -3
  79. package/esm2022/package-metadata.mjs +2 -2
  80. package/fesm2022/progress-kendo-angular-conversational-ui.mjs +4986 -3125
  81. package/index.d.ts +10 -3
  82. package/package.json +29 -12
  83. /package/chat/{attachment-template.directive.d.ts → templates/attachment-template.directive.d.ts} +0 -0
  84. /package/chat/{message-template.directive.d.ts → templates/message-template.directive.d.ts} +0 -0
  85. /package/esm2022/chat/{attachment-template.directive.mjs → templates/attachment-template.directive.mjs} +0 -0
  86. /package/esm2022/chat/{message-template.directive.mjs → templates/message-template.directive.mjs} +0 -0
package/index.d.ts CHANGED
@@ -2,16 +2,23 @@
2
2
  * Copyright © 2025 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
- export { ChatComponent, AttachmentTemplateDirective, MessageTemplateDirective } from './chat/chat.directives';
6
- export { Action, ActionType, Attachment, AttachmentLayout, ExecuteActionEvent, Message, User, SendMessageEvent } from './chat/api';
5
+ export * from './chat/api';
7
6
  export { AIPromptModule } from './ai-prompt/aiprompt.module';
8
7
  export { ChatModule } from './chat/chat.module';
9
8
  export { ConversationalUIModule } from './conversational-ui.module';
10
9
  export { InlineAIPromptModule } from './inline-ai-prompt/inlineaiprompt.module';
10
+ export { ChatComponent } from './chat/chat.component';
11
11
  export { HeroCardComponent } from './chat/cards/hero-card.component';
12
12
  export { CustomMessagesComponent } from './chat/l10n/custom-messages.component';
13
13
  export { MessageBoxType } from './chat/common/models/message-box-options';
14
- export { ChatMessageBoxTemplateDirective } from './chat/message-box.directive';
14
+ export { ConversationalUIModelFields } from './chat/common/models/model-fields';
15
+ export { ChatMessageBoxTemplateDirective } from './chat/templates/message-box.directive';
16
+ export { ChatHeaderTemplateDirective } from './chat/templates/header-template.directive';
17
+ export { ChatTimestampTemplateDirective } from './chat/templates/timestamp-template.directive';
18
+ export { AttachmentTemplateDirective } from './chat/templates/attachment-template.directive';
19
+ export { MessageTemplateDirective } from './chat/templates/message-template.directive';
20
+ export { ChatSuggestionTemplateDirective } from './chat/templates/suggestion-template.directive';
21
+ export { ChatStatusTemplateDirective } from './chat/templates/status-template.directive';
15
22
  export { AIPromptComponent } from './ai-prompt/aiprompt.component';
16
23
  export { AIPromptCustomMessagesComponent } from './ai-prompt/localization/custom-messages.component';
17
24
  export { AIPromptToolbarActionsDirective } from './ai-prompt/templates/toolbar-actions.template';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-conversational-ui",
3
- "version": "20.0.0-develop.3",
3
+ "version": "20.0.0-develop.5",
4
4
  "description": "Kendo UI for Angular Conversational UI components",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -17,10 +17,25 @@
17
17
  ],
18
18
  "@progress": {
19
19
  "friendlyName": "Conversational UI",
20
+ "migrations": {
21
+ "options": {
22
+ "parser": "tsx",
23
+ "pattern": "*.{ts,html}"
24
+ },
25
+ "codemods": {
26
+ "20": [
27
+ {
28
+ "description": "The Chat's user input property is deprecated",
29
+ "file": "codemods/v20/chat-user.js",
30
+ "prompt": "true"
31
+ }
32
+ ]
33
+ }
34
+ },
20
35
  "package": {
21
36
  "productName": "Kendo UI for Angular",
22
37
  "productCode": "KENDOUIANGULAR",
23
- "publishDate": 1755793114,
38
+ "publishDate": 1755868973,
24
39
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
25
40
  }
26
41
  },
@@ -30,20 +45,22 @@
30
45
  "@angular/core": "16 - 20",
31
46
  "@angular/platform-browser": "16 - 20",
32
47
  "@progress/kendo-licensing": "^1.7.0",
33
- "@progress/kendo-angular-buttons": "20.0.0-develop.3",
34
- "@progress/kendo-angular-inputs": "20.0.0-develop.3",
35
- "@progress/kendo-angular-layout": "20.0.0-develop.3",
36
- "@progress/kendo-angular-icons": "20.0.0-develop.3",
37
- "@progress/kendo-angular-common": "20.0.0-develop.3",
38
- "@progress/kendo-angular-intl": "20.0.0-develop.3",
39
- "@progress/kendo-angular-l10n": "20.0.0-develop.3",
40
- "@progress/kendo-angular-menu": "20.0.0-develop.3",
41
- "@progress/kendo-angular-popup": "20.0.0-develop.3",
48
+ "@progress/kendo-angular-buttons": "20.0.0-develop.5",
49
+ "@progress/kendo-angular-inputs": "20.0.0-develop.5",
50
+ "@progress/kendo-angular-layout": "20.0.0-develop.5",
51
+ "@progress/kendo-angular-icons": "20.0.0-develop.5",
52
+ "@progress/kendo-angular-common": "20.0.0-develop.5",
53
+ "@progress/kendo-angular-intl": "20.0.0-develop.5",
54
+ "@progress/kendo-angular-l10n": "20.0.0-develop.5",
55
+ "@progress/kendo-angular-menu": "20.0.0-develop.5",
56
+ "@progress/kendo-angular-popup": "20.0.0-develop.5",
57
+ "@progress/kendo-angular-toolbar": "20.0.0-develop.5",
58
+ "@progress/kendo-angular-upload": "20.0.0-develop.5",
42
59
  "rxjs": "^6.5.3 || ^7.0.0"
43
60
  },
44
61
  "dependencies": {
45
62
  "tslib": "^2.3.1",
46
- "@progress/kendo-angular-schematics": "20.0.0-develop.3"
63
+ "@progress/kendo-angular-schematics": "20.0.0-develop.5"
47
64
  },
48
65
  "schematics": "./schematics/collection.json",
49
66
  "module": "fesm2022/progress-kendo-angular-conversational-ui.mjs",