@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.
- package/chat/api/action.interface.d.ts +1 -1
- package/chat/api/attachment.interface.d.ts +1 -1
- package/chat/api/chat-file-interface.d.ts +41 -0
- package/chat/api/chat-suggestion.interface.d.ts +25 -0
- package/chat/api/file-action.d.ts +42 -0
- package/chat/api/file-download-event.interface.d.ts +21 -0
- package/chat/api/index.d.ts +8 -0
- package/chat/api/message-action.d.ts +42 -0
- package/{esm2022/chat/chat.directives.mjs → chat/api/message-toolbar-visibility.d.ts} +4 -4
- package/chat/api/message-width-mode.d.ts +10 -0
- package/chat/api/message.interface.d.ts +30 -12
- package/chat/api/send-button-settings.d.ts +15 -0
- package/chat/api/user.interface.d.ts +4 -0
- package/chat/attachment.component.d.ts +1 -1
- package/chat/cards/hero-card.component.d.ts +1 -1
- package/chat/chat-file.component.d.ts +34 -0
- package/chat/chat-item.d.ts +1 -0
- package/chat/chat-view.d.ts +1 -1
- package/chat/chat.component.d.ts +218 -19
- package/chat/chat.module.d.ts +8 -4
- package/chat/common/chat.service.d.ts +51 -0
- package/chat/{chat.directives.d.ts → common/models/default-model-fields.d.ts} +5 -4
- package/chat/common/models/message-box-options.d.ts +1 -1
- package/chat/common/models/model-fields.d.ts +111 -0
- package/chat/common/utils.d.ts +50 -0
- package/chat/l10n/messages.d.ts +40 -3
- package/chat/message-attachments.component.d.ts +1 -4
- package/chat/message-box.component.d.ts +54 -25
- package/chat/message-list.component.d.ts +18 -11
- package/chat/message-reference-content.component.d.ts +24 -0
- package/chat/message.component.d.ts +54 -6
- package/chat/suggested-actions.component.d.ts +17 -4
- package/chat/templates/header-template.directive.d.ts +24 -0
- package/chat/{message-box.directive.d.ts → templates/message-box.directive.d.ts} +1 -1
- package/chat/templates/status-template.directive.d.ts +24 -0
- package/chat/templates/suggestion-template.directive.d.ts +24 -0
- package/chat/templates/timestamp-template.directive.d.ts +28 -0
- package/codemods/template-transformer/index.js +94 -0
- package/codemods/utils.js +609 -0
- package/codemods/v20/chat-user.js +50 -0
- package/conversational-ui.module.d.ts +11 -7
- package/directives.d.ts +9 -5
- package/esm2022/chat/api/chat-file-interface.mjs +5 -0
- package/esm2022/chat/api/chat-suggestion.interface.mjs +5 -0
- package/esm2022/chat/api/file-action.mjs +5 -0
- package/esm2022/chat/api/file-download-event.interface.mjs +5 -0
- package/esm2022/chat/api/index.mjs +8 -0
- package/esm2022/chat/api/message-action.mjs +5 -0
- package/esm2022/chat/api/message-toolbar-visibility.mjs +5 -0
- package/esm2022/chat/api/message-width-mode.mjs +5 -0
- package/esm2022/chat/api/send-button-settings.mjs +5 -0
- package/esm2022/chat/attachment.component.mjs +1 -1
- package/esm2022/chat/builtin-actions.mjs +1 -1
- package/esm2022/chat/cards/hero-card.component.mjs +1 -1
- package/esm2022/chat/chat-file.component.mjs +141 -0
- package/esm2022/chat/chat-item.mjs +1 -0
- package/esm2022/chat/chat-view.mjs +2 -2
- package/esm2022/chat/chat.component.mjs +518 -57
- package/esm2022/chat/chat.module.mjs +8 -4
- package/esm2022/chat/common/chat.service.mjs +97 -0
- package/esm2022/chat/common/models/default-model-fields.mjs +26 -0
- package/esm2022/chat/common/models/model-fields.mjs +5 -0
- package/esm2022/chat/common/utils.mjs +127 -0
- package/esm2022/chat/l10n/messages.mjs +60 -5
- package/esm2022/chat/message-attachments.component.mjs +1 -4
- package/esm2022/chat/message-box.component.mjs +360 -111
- package/esm2022/chat/message-list.component.mjs +166 -96
- package/esm2022/chat/message-reference-content.component.mjs +75 -0
- package/esm2022/chat/message.component.mjs +448 -35
- package/esm2022/chat/suggested-actions.component.mjs +151 -41
- package/esm2022/chat/templates/header-template.directive.mjs +33 -0
- package/esm2022/chat/{message-box.directive.mjs → templates/message-box.directive.mjs} +1 -1
- package/esm2022/chat/templates/status-template.directive.mjs +33 -0
- package/esm2022/chat/templates/suggestion-template.directive.mjs +33 -0
- package/esm2022/chat/templates/timestamp-template.directive.mjs +39 -0
- package/esm2022/conversational-ui.module.mjs +12 -8
- package/esm2022/directives.mjs +12 -4
- package/esm2022/index.mjs +9 -3
- package/esm2022/package-metadata.mjs +2 -2
- package/fesm2022/progress-kendo-angular-conversational-ui.mjs +4986 -3125
- package/index.d.ts +10 -3
- package/package.json +29 -12
- /package/chat/{attachment-template.directive.d.ts → templates/attachment-template.directive.d.ts} +0 -0
- /package/chat/{message-template.directive.d.ts → templates/message-template.directive.d.ts} +0 -0
- /package/esm2022/chat/{attachment-template.directive.mjs → templates/attachment-template.directive.mjs} +0 -0
- /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
|
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 {
|
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
|
+
"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":
|
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.
|
34
|
-
"@progress/kendo-angular-inputs": "20.0.0-develop.
|
35
|
-
"@progress/kendo-angular-layout": "20.0.0-develop.
|
36
|
-
"@progress/kendo-angular-icons": "20.0.0-develop.
|
37
|
-
"@progress/kendo-angular-common": "20.0.0-develop.
|
38
|
-
"@progress/kendo-angular-intl": "20.0.0-develop.
|
39
|
-
"@progress/kendo-angular-l10n": "20.0.0-develop.
|
40
|
-
"@progress/kendo-angular-menu": "20.0.0-develop.
|
41
|
-
"@progress/kendo-angular-popup": "20.0.0-develop.
|
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.
|
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",
|
/package/chat/{attachment-template.directive.d.ts → templates/attachment-template.directive.d.ts}
RENAMED
File without changes
|
File without changes
|
File without changes
|
/package/esm2022/chat/{message-template.directive.mjs → templates/message-template.directive.mjs}
RENAMED
File without changes
|