@progress/kendo-angular-conversational-ui 19.1.1-develop.2 → 19.1.1
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/ai-prompt/aiprompt.component.d.ts +26 -15
- package/ai-prompt/aiprompt.module.d.ts +8 -11
- package/ai-prompt/localization/custom-messages.component.d.ts +12 -2
- package/ai-prompt/localization/messages.d.ts +9 -9
- package/ai-prompt/models/command-execute-event.d.ts +4 -4
- package/ai-prompt/models/command.interface.d.ts +4 -4
- package/ai-prompt/models/output-rating-change-event.d.ts +4 -4
- package/ai-prompt/models/prompt-output.interface.d.ts +8 -8
- package/ai-prompt/models/prompt-request-event.d.ts +5 -5
- package/ai-prompt/templates/toolbar-actions.template.d.ts +12 -2
- package/ai-prompt/views/base-view.d.ts +5 -5
- package/ai-prompt/views/command-view.component.d.ts +8 -1
- package/ai-prompt/views/custom-view.component.d.ts +11 -1
- package/ai-prompt/views/output-view.component.d.ts +8 -1
- package/ai-prompt/views/prompt-view.component.d.ts +8 -1
- package/chat/api/action.interface.d.ts +7 -8
- package/chat/api/attachment.interface.d.ts +8 -10
- package/chat/api/execute-action-event.d.ts +6 -4
- package/chat/api/message.interface.d.ts +12 -18
- package/chat/api/post-message-event.d.ts +4 -5
- package/chat/api/user.interface.d.ts +4 -10
- package/chat/attachment-template.directive.d.ts +13 -5
- package/chat/cards/hero-card.component.d.ts +17 -5
- package/chat/chat.component.d.ts +25 -16
- package/chat/chat.module.d.ts +5 -5
- package/chat/common/models/message-box-options.d.ts +1 -1
- package/chat/l10n/custom-messages.component.d.ts +12 -2
- package/chat/l10n/messages.d.ts +6 -7
- package/chat/message-box.directive.d.ts +13 -3
- package/chat/message-template.directive.d.ts +13 -5
- package/conversational-ui.module.d.ts +8 -21
- package/directives.d.ts +48 -3
- package/esm2022/ai-prompt/aiprompt.component.mjs +26 -15
- package/esm2022/ai-prompt/aiprompt.module.mjs +8 -11
- package/esm2022/ai-prompt/localization/custom-messages.component.mjs +12 -2
- package/esm2022/ai-prompt/localization/messages.mjs +9 -9
- package/esm2022/ai-prompt/templates/toolbar-actions.template.mjs +12 -2
- package/esm2022/ai-prompt/views/base-view.mjs +5 -5
- package/esm2022/ai-prompt/views/command-view.component.mjs +8 -1
- package/esm2022/ai-prompt/views/custom-view.component.mjs +11 -1
- package/esm2022/ai-prompt/views/output-view.component.mjs +8 -1
- package/esm2022/ai-prompt/views/prompt-view.component.mjs +8 -1
- package/esm2022/chat/api/action.interface.mjs +0 -1
- package/esm2022/chat/api/execute-action-event.mjs +6 -4
- package/esm2022/chat/api/post-message-event.mjs +4 -5
- package/esm2022/chat/attachment-template.directive.mjs +13 -5
- package/esm2022/chat/cards/hero-card.component.mjs +17 -5
- package/esm2022/chat/chat.component.mjs +25 -16
- package/esm2022/chat/chat.module.mjs +5 -5
- package/esm2022/chat/l10n/custom-messages.component.mjs +12 -2
- package/esm2022/chat/l10n/messages.mjs +6 -7
- package/esm2022/chat/message-box.directive.mjs +13 -3
- package/esm2022/chat/message-template.directive.mjs +13 -5
- package/esm2022/conversational-ui.module.mjs +8 -21
- package/esm2022/directives.mjs +48 -3
- package/esm2022/package-metadata.mjs +2 -2
- package/fesm2022/progress-kendo-angular-conversational-ui.mjs +279 -133
- package/package.json +11 -11
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-conversational-ui",
|
3
|
-
"version": "19.1.1
|
3
|
+
"version": "19.1.1",
|
4
4
|
"description": "Kendo UI for Angular Conversational UI components",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
6
6
|
"author": "Progress",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
"package": {
|
21
21
|
"productName": "Kendo UI for Angular",
|
22
22
|
"productCode": "KENDOUIANGULAR",
|
23
|
-
"publishDate":
|
23
|
+
"publishDate": 1749540414,
|
24
24
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
25
25
|
}
|
26
26
|
},
|
@@ -30,19 +30,19 @@
|
|
30
30
|
"@angular/core": "16 - 20",
|
31
31
|
"@angular/platform-browser": "16 - 20",
|
32
32
|
"@progress/kendo-licensing": "^1.5.0",
|
33
|
-
"@progress/kendo-angular-buttons": "19.1.1
|
34
|
-
"@progress/kendo-angular-inputs": "19.1.1
|
35
|
-
"@progress/kendo-angular-layout": "19.1.1
|
36
|
-
"@progress/kendo-angular-icons": "19.1.1
|
37
|
-
"@progress/kendo-angular-common": "19.1.1
|
38
|
-
"@progress/kendo-angular-intl": "19.1.1
|
39
|
-
"@progress/kendo-angular-l10n": "19.1.1
|
40
|
-
"@progress/kendo-angular-popup": "19.1.1
|
33
|
+
"@progress/kendo-angular-buttons": "19.1.1",
|
34
|
+
"@progress/kendo-angular-inputs": "19.1.1",
|
35
|
+
"@progress/kendo-angular-layout": "19.1.1",
|
36
|
+
"@progress/kendo-angular-icons": "19.1.1",
|
37
|
+
"@progress/kendo-angular-common": "19.1.1",
|
38
|
+
"@progress/kendo-angular-intl": "19.1.1",
|
39
|
+
"@progress/kendo-angular-l10n": "19.1.1",
|
40
|
+
"@progress/kendo-angular-popup": "19.1.1",
|
41
41
|
"rxjs": "^6.5.3 || ^7.0.0"
|
42
42
|
},
|
43
43
|
"dependencies": {
|
44
44
|
"tslib": "^2.3.1",
|
45
|
-
"@progress/kendo-angular-schematics": "19.1.1
|
45
|
+
"@progress/kendo-angular-schematics": "19.1.1"
|
46
46
|
},
|
47
47
|
"schematics": "./schematics/collection.json",
|
48
48
|
"module": "fesm2022/progress-kendo-angular-conversational-ui.mjs",
|