@progress/kendo-angular-conversational-ui 19.3.0-develop.24 → 19.3.0-develop.26

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.
Files changed (45) hide show
  1. package/conversational-ui.module.d.ts +4 -1
  2. package/directives.d.ts +5 -1
  3. package/esm2022/ai-prompt/views/prompt-view.component.mjs +1 -1
  4. package/esm2022/chat/message-box.component.mjs +1 -1
  5. package/esm2022/conversational-ui.module.mjs +5 -2
  6. package/esm2022/directives.mjs +10 -1
  7. package/esm2022/index.mjs +5 -0
  8. package/esm2022/inline-ai-prompt/inlineaiprompt-content.component.mjs +549 -0
  9. package/esm2022/inline-ai-prompt/inlineaiprompt.component.mjs +342 -0
  10. package/esm2022/inline-ai-prompt/inlineaiprompt.service.mjs +85 -0
  11. package/esm2022/inline-ai-prompt/localization/custom-messages.component.mjs +53 -0
  12. package/esm2022/inline-ai-prompt/localization/localized-messages.directive.mjs +39 -0
  13. package/esm2022/inline-ai-prompt/localization/messages.mjs +35 -0
  14. package/esm2022/inline-ai-prompt/models/command.interface.mjs +5 -0
  15. package/esm2022/inline-ai-prompt/models/index.mjs +5 -0
  16. package/esm2022/inline-ai-prompt/models/inlineaiprompt-popupsettings.mjs +5 -0
  17. package/esm2022/inline-ai-prompt/models/inlineaiprompt-settings.mjs +59 -0
  18. package/esm2022/inline-ai-prompt/models/messages.mjs +8 -0
  19. package/esm2022/inline-ai-prompt/models/output-action-click-event.mjs +5 -0
  20. package/esm2022/inline-ai-prompt/models/output-action.interface.mjs +5 -0
  21. package/esm2022/inline-ai-prompt/models/prompt-output.interface.mjs +5 -0
  22. package/esm2022/inline-ai-prompt/models/prompt-request-event.mjs +5 -0
  23. package/esm2022/inline-ai-prompt/output-template.directive.mjs +38 -0
  24. package/esm2022/inline-ai-prompt/utils.mjs +22 -0
  25. package/esm2022/package-metadata.mjs +2 -2
  26. package/fesm2022/progress-kendo-angular-conversational-ui.mjs +1195 -42
  27. package/index.d.ts +5 -0
  28. package/inline-ai-prompt/inlineaiprompt-content.component.d.ts +82 -0
  29. package/inline-ai-prompt/inlineaiprompt.component.d.ts +150 -0
  30. package/inline-ai-prompt/inlineaiprompt.service.d.ts +41 -0
  31. package/inline-ai-prompt/localization/custom-messages.component.d.ts +27 -0
  32. package/inline-ai-prompt/localization/localized-messages.directive.d.ts +16 -0
  33. package/inline-ai-prompt/localization/messages.d.ts +25 -0
  34. package/inline-ai-prompt/models/command.interface.d.ts +38 -0
  35. package/inline-ai-prompt/models/index.d.ts +12 -0
  36. package/inline-ai-prompt/models/inlineaiprompt-popupsettings.d.ts +10 -0
  37. package/inline-ai-prompt/models/inlineaiprompt-settings.d.ts +66 -0
  38. package/inline-ai-prompt/models/messages.d.ts +21 -0
  39. package/inline-ai-prompt/models/output-action-click-event.d.ts +19 -0
  40. package/inline-ai-prompt/models/output-action.interface.d.ts +52 -0
  41. package/inline-ai-prompt/models/prompt-output.interface.d.ts +25 -0
  42. package/inline-ai-prompt/models/prompt-request-event.d.ts +17 -0
  43. package/inline-ai-prompt/output-template.directive.d.ts +27 -0
  44. package/inline-ai-prompt/utils.d.ts +13 -0
  45. package/package.json +12 -11
@@ -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.24",
3
+ "version": "19.3.0-develop.26",
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": 1754485309,
23
+ "publishDate": 1754555245,
24
24
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
25
25
  }
26
26
  },
@@ -30,19 +30,20 @@
30
30
  "@angular/core": "16 - 20",
31
31
  "@angular/platform-browser": "16 - 20",
32
32
  "@progress/kendo-licensing": "^1.7.0",
33
- "@progress/kendo-angular-buttons": "19.3.0-develop.24",
34
- "@progress/kendo-angular-inputs": "19.3.0-develop.24",
35
- "@progress/kendo-angular-layout": "19.3.0-develop.24",
36
- "@progress/kendo-angular-icons": "19.3.0-develop.24",
37
- "@progress/kendo-angular-common": "19.3.0-develop.24",
38
- "@progress/kendo-angular-intl": "19.3.0-develop.24",
39
- "@progress/kendo-angular-l10n": "19.3.0-develop.24",
40
- "@progress/kendo-angular-popup": "19.3.0-develop.24",
33
+ "@progress/kendo-angular-buttons": "19.3.0-develop.26",
34
+ "@progress/kendo-angular-inputs": "19.3.0-develop.26",
35
+ "@progress/kendo-angular-layout": "19.3.0-develop.26",
36
+ "@progress/kendo-angular-icons": "19.3.0-develop.26",
37
+ "@progress/kendo-angular-common": "19.3.0-develop.26",
38
+ "@progress/kendo-angular-intl": "19.3.0-develop.26",
39
+ "@progress/kendo-angular-l10n": "19.3.0-develop.26",
40
+ "@progress/kendo-angular-menu": "19.3.0-develop.26",
41
+ "@progress/kendo-angular-popup": "19.3.0-develop.26",
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.24"
46
+ "@progress/kendo-angular-schematics": "19.3.0-develop.26"
46
47
  },
47
48
  "schematics": "./schematics/collection.json",
48
49
  "module": "fesm2022/progress-kendo-angular-conversational-ui.mjs",