@progress/kendo-angular-conversational-ui 19.3.0-develop.3 → 19.3.0-develop.31
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 +80 -13
- package/ai-prompt/aiprompt.module.d.ts +3 -1
- package/ai-prompt/common/aiprompt.service.d.ts +10 -0
- package/ai-prompt/common/output-card.component.d.ts +4 -0
- package/ai-prompt/localization/messages.d.ts +5 -1
- package/ai-prompt/models/ai-prompt-settings.d.ts +60 -0
- package/ai-prompt/models/index.d.ts +1 -0
- package/ai-prompt/templates/aiprompt-output-body-template.directive.d.ts +24 -0
- package/ai-prompt/templates/aiprompt-output-template.directive.d.ts +24 -0
- package/ai-prompt/views/output-view.component.d.ts +4 -0
- package/ai-prompt/views/prompt-view.component.d.ts +23 -1
- package/conversational-ui.module.d.ts +12 -7
- package/directives.d.ts +8 -2
- package/esm2022/ai-prompt/aiprompt.component.mjs +177 -25
- package/esm2022/ai-prompt/aiprompt.module.mjs +3 -1
- package/esm2022/ai-prompt/common/aiprompt.service.mjs +35 -0
- package/esm2022/ai-prompt/common/output-card.component.mjs +23 -5
- package/esm2022/ai-prompt/localization/messages.mjs +7 -1
- package/esm2022/ai-prompt/models/ai-prompt-settings.mjs +5 -0
- package/esm2022/ai-prompt/templates/aiprompt-output-body-template.directive.mjs +33 -0
- package/esm2022/ai-prompt/templates/aiprompt-output-template.directive.mjs +33 -0
- package/esm2022/ai-prompt/views/output-view.component.mjs +27 -11
- package/esm2022/ai-prompt/views/prompt-view.component.mjs +139 -21
- package/esm2022/chat/message-box.component.mjs +1 -1
- package/esm2022/conversational-ui.module.mjs +13 -8
- package/esm2022/directives.mjs +15 -2
- package/esm2022/index.mjs +7 -0
- package/esm2022/inline-ai-prompt/inlineaiprompt-content.component.mjs +552 -0
- package/esm2022/inline-ai-prompt/inlineaiprompt.component.mjs +342 -0
- package/esm2022/inline-ai-prompt/inlineaiprompt.service.mjs +85 -0
- package/esm2022/inline-ai-prompt/localization/custom-messages.component.mjs +53 -0
- package/esm2022/inline-ai-prompt/localization/localized-messages.directive.mjs +39 -0
- package/esm2022/inline-ai-prompt/localization/messages.mjs +35 -0
- package/esm2022/inline-ai-prompt/models/command.interface.mjs +5 -0
- package/esm2022/inline-ai-prompt/models/index.mjs +5 -0
- package/esm2022/inline-ai-prompt/models/inlineaiprompt-popupsettings.mjs +5 -0
- package/esm2022/inline-ai-prompt/models/inlineaiprompt-settings.mjs +59 -0
- package/esm2022/inline-ai-prompt/models/messages.mjs +8 -0
- package/esm2022/inline-ai-prompt/models/output-action-click-event.mjs +5 -0
- package/esm2022/inline-ai-prompt/models/output-action.interface.mjs +5 -0
- package/esm2022/inline-ai-prompt/models/prompt-output.interface.mjs +5 -0
- package/esm2022/inline-ai-prompt/models/prompt-request-event.mjs +5 -0
- package/esm2022/inline-ai-prompt/output-template.directive.mjs +38 -0
- package/esm2022/inline-ai-prompt/utils.mjs +22 -0
- package/esm2022/package-metadata.mjs +2 -2
- package/fesm2022/progress-kendo-angular-conversational-ui.mjs +1696 -140
- package/index.d.ts +7 -0
- package/inline-ai-prompt/inlineaiprompt-content.component.d.ts +82 -0
- package/inline-ai-prompt/inlineaiprompt.component.d.ts +150 -0
- package/inline-ai-prompt/inlineaiprompt.service.d.ts +41 -0
- package/inline-ai-prompt/localization/custom-messages.component.d.ts +27 -0
- package/inline-ai-prompt/localization/localized-messages.directive.d.ts +16 -0
- package/inline-ai-prompt/localization/messages.d.ts +25 -0
- package/inline-ai-prompt/models/command.interface.d.ts +38 -0
- package/inline-ai-prompt/models/index.d.ts +12 -0
- package/inline-ai-prompt/models/inlineaiprompt-popupsettings.d.ts +10 -0
- package/inline-ai-prompt/models/inlineaiprompt-settings.d.ts +66 -0
- package/inline-ai-prompt/models/messages.d.ts +21 -0
- package/inline-ai-prompt/models/output-action-click-event.d.ts +19 -0
- package/inline-ai-prompt/models/output-action.interface.d.ts +52 -0
- package/inline-ai-prompt/models/prompt-output.interface.d.ts +25 -0
- package/inline-ai-prompt/models/prompt-request-event.d.ts +17 -0
- package/inline-ai-prompt/output-template.directive.d.ts +27 -0
- package/inline-ai-prompt/utils.d.ts +13 -0
- package/package.json +13 -12
@@ -0,0 +1,13 @@
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
5
|
+
import { InlineAIPromptPopupSettings } from "./models";
|
6
|
+
/**
|
7
|
+
* @hidden
|
8
|
+
*/
|
9
|
+
export declare const defaultPopupSettings: InlineAIPromptPopupSettings;
|
10
|
+
/**
|
11
|
+
* @hidden
|
12
|
+
*/
|
13
|
+
export declare const calculateMeasurement: (value: string | number) => string;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-conversational-ui",
|
3
|
-
"version": "19.3.0-develop.
|
3
|
+
"version": "19.3.0-develop.31",
|
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": 1754576682,
|
24
24
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
25
25
|
}
|
26
26
|
},
|
@@ -29,20 +29,21 @@
|
|
29
29
|
"@angular/common": "16 - 20",
|
30
30
|
"@angular/core": "16 - 20",
|
31
31
|
"@angular/platform-browser": "16 - 20",
|
32
|
-
"@progress/kendo-licensing": "^1.
|
33
|
-
"@progress/kendo-angular-buttons": "19.3.0-develop.
|
34
|
-
"@progress/kendo-angular-inputs": "19.3.0-develop.
|
35
|
-
"@progress/kendo-angular-layout": "19.3.0-develop.
|
36
|
-
"@progress/kendo-angular-icons": "19.3.0-develop.
|
37
|
-
"@progress/kendo-angular-common": "19.3.0-develop.
|
38
|
-
"@progress/kendo-angular-intl": "19.3.0-develop.
|
39
|
-
"@progress/kendo-angular-l10n": "19.3.0-develop.
|
40
|
-
"@progress/kendo-angular-
|
32
|
+
"@progress/kendo-licensing": "^1.7.0",
|
33
|
+
"@progress/kendo-angular-buttons": "19.3.0-develop.31",
|
34
|
+
"@progress/kendo-angular-inputs": "19.3.0-develop.31",
|
35
|
+
"@progress/kendo-angular-layout": "19.3.0-develop.31",
|
36
|
+
"@progress/kendo-angular-icons": "19.3.0-develop.31",
|
37
|
+
"@progress/kendo-angular-common": "19.3.0-develop.31",
|
38
|
+
"@progress/kendo-angular-intl": "19.3.0-develop.31",
|
39
|
+
"@progress/kendo-angular-l10n": "19.3.0-develop.31",
|
40
|
+
"@progress/kendo-angular-menu": "19.3.0-develop.31",
|
41
|
+
"@progress/kendo-angular-popup": "19.3.0-develop.31",
|
41
42
|
"rxjs": "^6.5.3 || ^7.0.0"
|
42
43
|
},
|
43
44
|
"dependencies": {
|
44
45
|
"tslib": "^2.3.1",
|
45
|
-
"@progress/kendo-angular-schematics": "19.3.0-develop.
|
46
|
+
"@progress/kendo-angular-schematics": "19.3.0-develop.31"
|
46
47
|
},
|
47
48
|
"schematics": "./schematics/collection.json",
|
48
49
|
"module": "fesm2022/progress-kendo-angular-conversational-ui.mjs",
|