@progress/kendo-angular-conversational-ui 20.1.2-develop.2 → 21.0.0-develop.10
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/files-layout.d.ts +12 -0
- package/chat/api/index.d.ts +3 -1
- package/chat/api/message-settings.interface.d.ts +33 -0
- package/chat/api/message.interface.d.ts +5 -1
- package/chat/api/suggestions-layout.d.ts +20 -0
- package/chat/chat.component.d.ts +92 -34
- package/chat/chat.directives.d.ts +18 -0
- package/chat/chat.module.d.ts +15 -8
- package/chat/common/chat.service.d.ts +32 -3
- package/chat/common/models/model-fields.d.ts +0 -6
- package/chat/common/scroll-button.component.d.ts +32 -0
- package/chat/common/scroll.service.d.ts +39 -0
- package/chat/common/utils.d.ts +13 -1
- package/chat/l10n/messages.d.ts +9 -1
- package/chat/message-list.component.d.ts +20 -3
- package/chat/message.component.d.ts +40 -16
- package/chat/suggested-actions.component.d.ts +30 -5
- package/chat/templates/author-message-content-template.directive.d.ts +28 -0
- package/chat/templates/author-message-template.directive.d.ts +28 -0
- package/chat/templates/message-content-template.directive.d.ts +28 -0
- package/chat/templates/message-template.directive.d.ts +1 -1
- package/chat/templates/no-data-template.directive.d.ts +27 -0
- package/chat/templates/receiver-message-content-template.directive.d.ts +28 -0
- package/chat/templates/receiver-message-template.directive.d.ts +28 -0
- package/chat/templates/user-status-template.directive.d.ts +27 -0
- package/codemods/template-transformer/index.js +1 -2
- package/codemods/utils.js +2 -2
- package/codemods/v20/chat-user.js +1 -1
- package/conversational-ui.module.d.ts +18 -11
- package/directives.d.ts +9 -2
- package/esm2022/ai-prompt/aiprompt.component.mjs +13 -11
- package/esm2022/ai-prompt/aiprompt.module.mjs +4 -4
- package/esm2022/ai-prompt/common/aiprompt.service.mjs +3 -3
- package/esm2022/ai-prompt/common/output-card.component.mjs +4 -4
- package/esm2022/ai-prompt/common/toolbar-focusable.directive.mjs +4 -4
- package/esm2022/ai-prompt/common/toolbar-navigation.service.mjs +4 -4
- package/esm2022/ai-prompt/localization/custom-messages.component.mjs +4 -4
- package/esm2022/ai-prompt/localization/localized-messages.directive.mjs +4 -4
- package/esm2022/ai-prompt/localization/messages.mjs +3 -3
- package/esm2022/ai-prompt/templates/aiprompt-output-body-template.directive.mjs +4 -4
- package/esm2022/ai-prompt/templates/aiprompt-output-template.directive.mjs +4 -4
- package/esm2022/ai-prompt/templates/toolbar-actions.template.mjs +5 -5
- package/esm2022/ai-prompt/views/base-view.mjs +5 -5
- package/esm2022/ai-prompt/views/command-view.component.mjs +4 -4
- package/esm2022/ai-prompt/views/custom-view.component.mjs +4 -4
- package/esm2022/ai-prompt/views/output-view.component.mjs +4 -4
- package/esm2022/ai-prompt/views/prompt-view.component.mjs +4 -4
- package/esm2022/chat/api/index.mjs +3 -1
- package/{chat/api/message-toolbar-visibility.d.ts → esm2022/chat/api/message-settings.interface.mjs} +1 -4
- package/esm2022/chat/api/suggestions-layout.mjs +5 -0
- package/esm2022/chat/attachment.component.mjs +3 -3
- package/esm2022/chat/builtin-actions.mjs +2 -0
- package/esm2022/chat/cards/hero-card.component.mjs +3 -3
- package/esm2022/chat/chat-file.component.mjs +6 -6
- package/esm2022/chat/chat.component.mjs +268 -74
- package/esm2022/chat/chat.directives.mjs +18 -0
- package/esm2022/chat/chat.module.mjs +18 -11
- package/esm2022/chat/common/chat.service.mjs +86 -7
- package/esm2022/chat/common/models/default-model-fields.mjs +0 -1
- package/esm2022/chat/common/scroll-anchor.directive.mjs +4 -4
- package/esm2022/chat/common/scroll-button.component.mjs +81 -0
- package/esm2022/chat/common/scroll.service.mjs +110 -0
- package/esm2022/chat/common/utils.mjs +22 -3
- package/esm2022/chat/l10n/custom-messages.component.mjs +4 -4
- package/esm2022/chat/l10n/localized-messages.directive.mjs +4 -4
- package/esm2022/chat/l10n/messages.mjs +15 -3
- package/esm2022/chat/message-attachments.component.mjs +6 -6
- package/esm2022/chat/message-box.component.mjs +12 -7
- package/esm2022/chat/message-list.component.mjs +168 -22
- package/esm2022/chat/message-reference-content.component.mjs +4 -4
- package/esm2022/chat/message.component.mjs +491 -328
- package/esm2022/chat/suggested-actions.component.mjs +299 -81
- package/esm2022/chat/templates/attachment-template.directive.mjs +5 -5
- package/esm2022/chat/templates/author-message-content-template.directive.mjs +39 -0
- package/esm2022/chat/templates/author-message-template.directive.mjs +39 -0
- package/esm2022/chat/templates/header-template.directive.mjs +4 -4
- package/esm2022/chat/templates/message-box.directive.mjs +4 -4
- package/esm2022/chat/templates/message-content-template.directive.mjs +39 -0
- package/esm2022/chat/templates/message-template.directive.mjs +6 -6
- package/esm2022/chat/templates/no-data-template.directive.mjs +38 -0
- package/esm2022/chat/templates/receiver-message-content-template.directive.mjs +39 -0
- package/esm2022/chat/templates/receiver-message-template.directive.mjs +39 -0
- package/esm2022/chat/templates/status-template.directive.mjs +4 -4
- package/esm2022/chat/templates/suggestion-template.directive.mjs +4 -4
- package/esm2022/chat/templates/timestamp-template.directive.mjs +5 -5
- package/esm2022/chat/templates/user-status-template.directive.mjs +38 -0
- package/esm2022/conversational-ui.module.mjs +21 -14
- package/esm2022/directives.mjs +15 -1
- package/esm2022/index.mjs +7 -0
- package/esm2022/inline-ai-prompt/inlineaiprompt-content.component.mjs +5 -5
- package/esm2022/inline-ai-prompt/inlineaiprompt.component.mjs +4 -4
- package/esm2022/inline-ai-prompt/inlineaiprompt.module.mjs +4 -4
- package/esm2022/inline-ai-prompt/inlineaiprompt.service.mjs +4 -4
- package/esm2022/inline-ai-prompt/localization/custom-messages.component.mjs +4 -4
- package/esm2022/inline-ai-prompt/localization/localized-messages.directive.mjs +4 -4
- package/esm2022/inline-ai-prompt/localization/messages.mjs +3 -3
- package/esm2022/inline-ai-prompt/output-template.directive.mjs +5 -5
- package/esm2022/package-metadata.mjs +2 -2
- package/fesm2022/progress-kendo-angular-conversational-ui.mjs +1969 -739
- package/index.d.ts +7 -0
- package/package.json +18 -18
- package/schematics/ngAdd/index.js +1 -1
- /package/esm2022/chat/api/{message-toolbar-visibility.mjs → files-layout.mjs} +0 -0
package/index.d.ts
CHANGED
|
@@ -14,8 +14,15 @@ export { MessageBoxType } from './chat/common/models/message-box-options';
|
|
|
14
14
|
export { ConversationalUIModelFields } from './chat/common/models/model-fields';
|
|
15
15
|
export { ChatMessageBoxTemplateDirective } from './chat/templates/message-box.directive';
|
|
16
16
|
export { ChatHeaderTemplateDirective } from './chat/templates/header-template.directive';
|
|
17
|
+
export { NoDataTemplateDirective } from './chat/templates/no-data-template.directive';
|
|
18
|
+
export { ChatUserStatusTemplateDirective } from './chat/templates/user-status-template.directive';
|
|
17
19
|
export { ChatTimestampTemplateDirective } from './chat/templates/timestamp-template.directive';
|
|
18
20
|
export { AttachmentTemplateDirective } from './chat/templates/attachment-template.directive';
|
|
21
|
+
export { AuthorMessageContentTemplateDirective } from './chat/templates/author-message-content-template.directive';
|
|
22
|
+
export { ReceiverMessageContentTemplateDirective } from './chat/templates/receiver-message-content-template.directive';
|
|
23
|
+
export { MessageContentTemplateDirective } from './chat/templates/message-content-template.directive';
|
|
24
|
+
export { AuthorMessageTemplateDirective } from './chat/templates/author-message-template.directive';
|
|
25
|
+
export { ReceiverMessageTemplateDirective } from './chat/templates/receiver-message-template.directive';
|
|
19
26
|
export { MessageTemplateDirective } from './chat/templates/message-template.directive';
|
|
20
27
|
export { ChatSuggestionTemplateDirective } from './chat/templates/suggestion-template.directive';
|
|
21
28
|
export { ChatStatusTemplateDirective } from './chat/templates/status-template.directive';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-conversational-ui",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "21.0.0-develop.10",
|
|
4
4
|
"description": "Kendo UI for Angular Conversational UI components",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -35,32 +35,32 @@
|
|
|
35
35
|
"package": {
|
|
36
36
|
"productName": "Kendo UI for Angular",
|
|
37
37
|
"productCode": "KENDOUIANGULAR",
|
|
38
|
-
"publishDate":
|
|
38
|
+
"publishDate": 1761912984,
|
|
39
39
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
40
40
|
}
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
|
-
"@angular/animations": "
|
|
44
|
-
"@angular/common": "
|
|
45
|
-
"@angular/core": "
|
|
46
|
-
"@angular/platform-browser": "
|
|
43
|
+
"@angular/animations": "18 - 20",
|
|
44
|
+
"@angular/common": "18 - 20",
|
|
45
|
+
"@angular/core": "18 - 20",
|
|
46
|
+
"@angular/platform-browser": "18 - 20",
|
|
47
47
|
"@progress/kendo-licensing": "^1.7.0",
|
|
48
|
-
"@progress/kendo-angular-buttons": "
|
|
49
|
-
"@progress/kendo-angular-inputs": "
|
|
50
|
-
"@progress/kendo-angular-layout": "
|
|
51
|
-
"@progress/kendo-angular-icons": "
|
|
52
|
-
"@progress/kendo-angular-common": "
|
|
53
|
-
"@progress/kendo-angular-intl": "
|
|
54
|
-
"@progress/kendo-angular-l10n": "
|
|
55
|
-
"@progress/kendo-angular-menu": "
|
|
56
|
-
"@progress/kendo-angular-popup": "
|
|
57
|
-
"@progress/kendo-angular-toolbar": "
|
|
58
|
-
"@progress/kendo-angular-upload": "
|
|
48
|
+
"@progress/kendo-angular-buttons": "21.0.0-develop.10",
|
|
49
|
+
"@progress/kendo-angular-inputs": "21.0.0-develop.10",
|
|
50
|
+
"@progress/kendo-angular-layout": "21.0.0-develop.10",
|
|
51
|
+
"@progress/kendo-angular-icons": "21.0.0-develop.10",
|
|
52
|
+
"@progress/kendo-angular-common": "21.0.0-develop.10",
|
|
53
|
+
"@progress/kendo-angular-intl": "21.0.0-develop.10",
|
|
54
|
+
"@progress/kendo-angular-l10n": "21.0.0-develop.10",
|
|
55
|
+
"@progress/kendo-angular-menu": "21.0.0-develop.10",
|
|
56
|
+
"@progress/kendo-angular-popup": "21.0.0-develop.10",
|
|
57
|
+
"@progress/kendo-angular-toolbar": "21.0.0-develop.10",
|
|
58
|
+
"@progress/kendo-angular-upload": "21.0.0-develop.10",
|
|
59
59
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
62
|
"tslib": "^2.3.1",
|
|
63
|
-
"@progress/kendo-angular-schematics": "
|
|
63
|
+
"@progress/kendo-angular-schematics": "21.0.0-develop.10"
|
|
64
64
|
},
|
|
65
65
|
"schematics": "./schematics/collection.json",
|
|
66
66
|
"module": "fesm2022/progress-kendo-angular-conversational-ui.mjs",
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.default = default_1;
|
|
3
4
|
const schematics_1 = require("@angular-devkit/schematics");
|
|
4
5
|
function default_1(options) {
|
|
5
6
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'ConversationalUIModule', package: 'conversational-ui', peerDependencies: {
|
|
@@ -8,4 +9,3 @@ function default_1(options) {
|
|
|
8
9
|
} });
|
|
9
10
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
10
11
|
}
|
|
11
|
-
exports.default = default_1;
|
|
File without changes
|