@progress/kendo-angular-conversational-ui 17.0.0-develop.4 → 17.0.0-develop.40
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/README.md +36 -17
- package/ai-prompt/aiprompt.component.d.ts +1 -1
- package/ai-prompt/common/output-card.component.d.ts +1 -1
- package/ai-prompt/localization/messages.d.ts +1 -1
- package/ai-prompt/models/prompt-output.interface.d.ts +1 -1
- package/ai-prompt/models/view-type.d.ts +1 -1
- package/ai-prompt/views/base-view.d.ts +1 -1
- package/ai-prompt/views/custom-view.component.d.ts +1 -1
- package/chat/api/action.interface.d.ts +1 -1
- package/chat/api/attachment.interface.d.ts +1 -1
- package/chat/attachment.component.d.ts +1 -1
- package/chat/builtin-actions.d.ts +1 -1
- package/chat/cards/hero-card.component.d.ts +1 -1
- package/chat/chat-view.d.ts +1 -1
- package/chat/chat.component.d.ts +1 -1
- package/chat/common/models/message-box-options.d.ts +1 -1
- package/chat/common/scroll-anchor.directive.d.ts +1 -1
- package/chat/l10n/messages.d.ts +1 -1
- package/chat/message-attachments.component.d.ts +1 -1
- package/chat/message-box.component.d.ts +1 -1
- package/chat/message-list.component.d.ts +1 -1
- package/chat/message.component.d.ts +1 -1
- package/chat/suggested-actions.component.d.ts +1 -2
- package/{esm2020 → esm2022}/ai-prompt/aiprompt.component.mjs +62 -49
- package/{esm2020 → esm2022}/ai-prompt/aiprompt.module.mjs +4 -4
- package/{esm2020 → esm2022}/ai-prompt/common/aiprompt.service.mjs +13 -11
- package/{esm2020 → esm2022}/ai-prompt/common/output-card.component.mjs +20 -17
- package/{esm2020 → esm2022}/ai-prompt/common/toolbar-focusable.directive.mjs +28 -25
- package/{esm2020 → esm2022}/ai-prompt/common/toolbar-navigation.service.mjs +6 -5
- package/{esm2020 → esm2022}/ai-prompt/localization/custom-messages.component.mjs +9 -8
- package/{esm2020 → esm2022}/ai-prompt/localization/localized-messages.directive.mjs +9 -8
- package/esm2022/ai-prompt/localization/messages.mjs +71 -0
- package/{esm2020 → esm2022}/ai-prompt/templates/toolbar-actions.template.mjs +4 -3
- package/{esm2020 → esm2022}/ai-prompt/views/base-view.mjs +13 -4
- package/{esm2020 → esm2022}/ai-prompt/views/command-view.component.mjs +12 -11
- package/{esm2020 → esm2022}/ai-prompt/views/custom-view.component.mjs +10 -6
- package/{esm2020 → esm2022}/ai-prompt/views/output-view.component.mjs +8 -7
- package/{esm2020 → esm2022}/ai-prompt/views/prompt-view.component.mjs +19 -18
- package/{esm2020 → esm2022}/chat/api/execute-action-event.mjs +8 -0
- package/{esm2020 → esm2022}/chat/api/post-message-event.mjs +7 -0
- package/{esm2020 → esm2022}/chat/api/preventable-event.mjs +1 -3
- package/{esm2020 → esm2022}/chat/attachment-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/chat/attachment.component.mjs +7 -4
- package/{esm2020 → esm2022}/chat/cards/hero-card.component.mjs +26 -12
- package/{esm2020 → esm2022}/chat/chat-item.mjs +1 -0
- package/{esm2020 → esm2022}/chat/chat.component.mjs +67 -44
- package/{esm2020 → esm2022}/chat/chat.module.mjs +4 -4
- package/{esm2020 → esm2022}/chat/common/scroll-anchor.directive.mjs +11 -7
- package/{esm2020 → esm2022}/chat/l10n/custom-messages.component.mjs +9 -8
- package/{esm2020 → esm2022}/chat/l10n/localized-messages.directive.mjs +9 -8
- package/esm2022/chat/l10n/messages.mjs +64 -0
- package/{esm2020 → esm2022}/chat/message-attachments.component.mjs +43 -32
- package/{esm2020 → esm2022}/chat/message-box.component.mjs +17 -13
- package/{esm2020 → esm2022}/chat/message-box.directive.mjs +4 -3
- package/{esm2020 → esm2022}/chat/message-list.component.mjs +32 -22
- package/{esm2020 → esm2022}/chat/message-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/chat/message.component.mjs +17 -11
- package/{esm2020 → esm2022}/chat/suggested-actions.component.mjs +18 -18
- package/{esm2020 → esm2022}/conversational-ui.module.mjs +4 -4
- package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
- package/{fesm2020 → fesm2022}/progress-kendo-angular-conversational-ui.mjs +584 -384
- package/package.json +18 -24
- package/esm2020/ai-prompt/localization/messages.mjs +0 -35
- package/esm2020/chat/l10n/messages.mjs +0 -35
- package/fesm2015/progress-kendo-angular-conversational-ui.mjs +0 -3242
- /package/{esm2020 → esm2022}/ai-prompt/models/command-execute-event.mjs +0 -0
- /package/{esm2020 → esm2022}/ai-prompt/models/command.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/ai-prompt/models/index.mjs +0 -0
- /package/{esm2020 → esm2022}/ai-prompt/models/output-rating-change-event.mjs +0 -0
- /package/{esm2020 → esm2022}/ai-prompt/models/prompt-output.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/ai-prompt/models/prompt-request-event.mjs +0 -0
- /package/{esm2020 → esm2022}/ai-prompt/models/view-type.mjs +0 -0
- /package/{esm2020 → esm2022}/ai-prompt/utils.mjs +0 -0
- /package/{esm2020 → esm2022}/ai-prompt/views/index.mjs +0 -0
- /package/{esm2020 → esm2022}/chat/api/action.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/chat/api/attachment.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/chat/api/index.mjs +0 -0
- /package/{esm2020 → esm2022}/chat/api/message.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/chat/api/user.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/chat/builtin-actions.mjs +0 -0
- /package/{esm2020 → esm2022}/chat/chat-view.mjs +0 -0
- /package/{esm2020 → esm2022}/chat/chat.directives.mjs +0 -0
- /package/{esm2020 → esm2022}/chat/common/models/message-box-options.mjs +0 -0
- /package/{esm2020 → esm2022}/chat/common/utils.mjs +0 -0
- /package/{esm2020 → esm2022}/directives.mjs +0 -0
- /package/{esm2020 → esm2022}/index.mjs +0 -0
- /package/{esm2020 → esm2022}/progress-kendo-angular-conversational-ui.mjs +0 -0
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-conversational-ui",
|
3
|
-
"version": "17.0.0-develop.
|
3
|
+
"version": "17.0.0-develop.40",
|
4
4
|
"description": "Kendo UI for Angular Conversational UI components",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
6
6
|
"author": "Progress",
|
@@ -19,31 +19,27 @@
|
|
19
19
|
"friendlyName": "Conversational UI"
|
20
20
|
},
|
21
21
|
"peerDependencies": {
|
22
|
-
"@angular/animations": "
|
23
|
-
"@angular/common": "
|
24
|
-
"@angular/core": "
|
25
|
-
"@angular/platform-browser": "
|
22
|
+
"@angular/animations": "16 - 18",
|
23
|
+
"@angular/common": "16 - 18",
|
24
|
+
"@angular/core": "16 - 18",
|
25
|
+
"@angular/platform-browser": "16 - 18",
|
26
26
|
"@progress/kendo-licensing": "^1.0.2",
|
27
|
-
"@progress/kendo-angular-buttons": "17.0.0-develop.
|
28
|
-
"@progress/kendo-angular-inputs": "17.0.0-develop.
|
29
|
-
"@progress/kendo-angular-layout": "17.0.0-develop.
|
30
|
-
"@progress/kendo-angular-icons": "17.0.0-develop.
|
31
|
-
"@progress/kendo-angular-common": "17.0.0-develop.
|
32
|
-
"@progress/kendo-angular-intl": "17.0.0-develop.
|
33
|
-
"@progress/kendo-angular-l10n": "17.0.0-develop.
|
34
|
-
"@progress/kendo-angular-popup": "17.0.0-develop.
|
27
|
+
"@progress/kendo-angular-buttons": "17.0.0-develop.40",
|
28
|
+
"@progress/kendo-angular-inputs": "17.0.0-develop.40",
|
29
|
+
"@progress/kendo-angular-layout": "17.0.0-develop.40",
|
30
|
+
"@progress/kendo-angular-icons": "17.0.0-develop.40",
|
31
|
+
"@progress/kendo-angular-common": "17.0.0-develop.40",
|
32
|
+
"@progress/kendo-angular-intl": "17.0.0-develop.40",
|
33
|
+
"@progress/kendo-angular-l10n": "17.0.0-develop.40",
|
34
|
+
"@progress/kendo-angular-popup": "17.0.0-develop.40",
|
35
35
|
"rxjs": "^6.5.3 || ^7.0.0"
|
36
36
|
},
|
37
37
|
"dependencies": {
|
38
38
|
"tslib": "^2.3.1",
|
39
|
-
"@progress/kendo-angular-schematics": "17.0.0-develop.
|
39
|
+
"@progress/kendo-angular-schematics": "17.0.0-develop.40"
|
40
40
|
},
|
41
41
|
"schematics": "./schematics/collection.json",
|
42
|
-
"module": "
|
43
|
-
"es2020": "fesm2020/progress-kendo-angular-conversational-ui.mjs",
|
44
|
-
"esm2020": "esm2020/progress-kendo-angular-conversational-ui.mjs",
|
45
|
-
"fesm2020": "fesm2020/progress-kendo-angular-conversational-ui.mjs",
|
46
|
-
"fesm2015": "fesm2015/progress-kendo-angular-conversational-ui.mjs",
|
42
|
+
"module": "fesm2022/progress-kendo-angular-conversational-ui.mjs",
|
47
43
|
"typings": "index.d.ts",
|
48
44
|
"exports": {
|
49
45
|
"./package.json": {
|
@@ -51,11 +47,9 @@
|
|
51
47
|
},
|
52
48
|
".": {
|
53
49
|
"types": "./index.d.ts",
|
54
|
-
"
|
55
|
-
"
|
56
|
-
"
|
57
|
-
"node": "./fesm2015/progress-kendo-angular-conversational-ui.mjs",
|
58
|
-
"default": "./fesm2020/progress-kendo-angular-conversational-ui.mjs"
|
50
|
+
"esm2022": "./esm2022/progress-kendo-angular-conversational-ui.mjs",
|
51
|
+
"esm": "./esm2022/progress-kendo-angular-conversational-ui.mjs",
|
52
|
+
"default": "./fesm2022/progress-kendo-angular-conversational-ui.mjs"
|
59
53
|
}
|
60
54
|
},
|
61
55
|
"sideEffects": false
|
@@ -1,35 +0,0 @@
|
|
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 { Directive, Input } from '@angular/core';
|
6
|
-
import { ComponentMessages } from '@progress/kendo-angular-l10n';
|
7
|
-
import * as i0 from "@angular/core";
|
8
|
-
/**
|
9
|
-
* @hidden
|
10
|
-
*/
|
11
|
-
export class Messages extends ComponentMessages {
|
12
|
-
}
|
13
|
-
Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
14
|
-
Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: Messages, inputs: { promptView: "promptView", outputView: "outputView", generateOutput: "generateOutput", promptPlaceholder: "promptPlaceholder", copyOutput: "copyOutput", retryGeneration: "retryGeneration", outputTitle: "outputTitle", outputRetryTitle: "outputRetryTitle", promptSuggestions: "promptSuggestions" }, usesInheritance: true, ngImport: i0 });
|
15
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: Messages, decorators: [{
|
16
|
-
type: Directive
|
17
|
-
}], propDecorators: { promptView: [{
|
18
|
-
type: Input
|
19
|
-
}], outputView: [{
|
20
|
-
type: Input
|
21
|
-
}], generateOutput: [{
|
22
|
-
type: Input
|
23
|
-
}], promptPlaceholder: [{
|
24
|
-
type: Input
|
25
|
-
}], copyOutput: [{
|
26
|
-
type: Input
|
27
|
-
}], retryGeneration: [{
|
28
|
-
type: Input
|
29
|
-
}], outputTitle: [{
|
30
|
-
type: Input
|
31
|
-
}], outputRetryTitle: [{
|
32
|
-
type: Input
|
33
|
-
}], promptSuggestions: [{
|
34
|
-
type: Input
|
35
|
-
}] } });
|
@@ -1,35 +0,0 @@
|
|
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 { Directive, Input } from '@angular/core';
|
6
|
-
import { ComponentMessages } from '@progress/kendo-angular-l10n';
|
7
|
-
import * as i0 from "@angular/core";
|
8
|
-
/**
|
9
|
-
* @hidden
|
10
|
-
*/
|
11
|
-
export class Messages extends ComponentMessages {
|
12
|
-
}
|
13
|
-
Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
14
|
-
Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: Messages, selector: "kendoConversationalUIMessages", inputs: { messagePlaceholder: "messagePlaceholder", send: "send", messageListLabel: "messageListLabel", messageBoxInputLabel: "messageBoxInputLabel", messageAttachmentLeftArrow: "messageAttachmentLeftArrow", messageAttachmentRightArrow: "messageAttachmentRightArrow", messageAvatarAlt: "messageAvatarAlt" }, usesInheritance: true, ngImport: i0 });
|
15
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: Messages, decorators: [{
|
16
|
-
type: Directive,
|
17
|
-
args: [{
|
18
|
-
// eslint-disable-next-line @angular-eslint/directive-selector
|
19
|
-
selector: 'kendoConversationalUIMessages'
|
20
|
-
}]
|
21
|
-
}], propDecorators: { messagePlaceholder: [{
|
22
|
-
type: Input
|
23
|
-
}], send: [{
|
24
|
-
type: Input
|
25
|
-
}], messageListLabel: [{
|
26
|
-
type: Input
|
27
|
-
}], messageBoxInputLabel: [{
|
28
|
-
type: Input
|
29
|
-
}], messageAttachmentLeftArrow: [{
|
30
|
-
type: Input
|
31
|
-
}], messageAttachmentRightArrow: [{
|
32
|
-
type: Input
|
33
|
-
}], messageAvatarAlt: [{
|
34
|
-
type: Input
|
35
|
-
}] } });
|