@progress/kendo-angular-conversational-ui 22.1.0-develop.9 → 23.0.0-develop.2

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 (67) hide show
  1. package/ai-prompt/aiprompt.component.d.ts +3 -3
  2. package/ai-prompt/localization/custom-messages.component.d.ts +1 -1
  3. package/ai-prompt/models/command-execute-event.d.ts +1 -1
  4. package/ai-prompt/models/command.interface.d.ts +2 -2
  5. package/ai-prompt/models/output-rating-change-event.d.ts +1 -1
  6. package/ai-prompt/models/prompt-request-event.d.ts +1 -1
  7. package/chat/api/action.interface.d.ts +3 -3
  8. package/chat/api/attachment.interface.d.ts +1 -1
  9. package/chat/api/chat-file-interface.d.ts +9 -9
  10. package/chat/api/chat-suggestion.interface.d.ts +5 -5
  11. package/chat/api/file-action.d.ts +8 -8
  12. package/chat/api/message-action.d.ts +8 -8
  13. package/chat/api/message-box.d.ts +28 -0
  14. package/chat/api/message-settings.interface.d.ts +9 -9
  15. package/chat/api/message-status.interface.d.ts +19 -0
  16. package/chat/api/message.interface.d.ts +7 -2
  17. package/chat/api/post-message-event.d.ts +10 -1
  18. package/chat/api/send-button-settings.d.ts +11 -2
  19. package/chat/api/user.interface.d.ts +2 -2
  20. package/chat/cards/hero-card.component.d.ts +5 -5
  21. package/chat/chat.component.d.ts +45 -14
  22. package/chat/common/chat.service.d.ts +14 -8
  23. package/chat/common/models/model-fields.d.ts +7 -1
  24. package/chat/common/scroll-anchor.directive.d.ts +10 -2
  25. package/chat/common/utils.d.ts +4 -2
  26. package/chat/l10n/custom-messages.component.d.ts +1 -1
  27. package/chat/l10n/messages.d.ts +15 -3
  28. package/chat/message-box.component.d.ts +16 -16
  29. package/chat/message.component.d.ts +7 -0
  30. package/chat/suggested-actions.component.d.ts +8 -1
  31. package/chat/templates/attachment-template.directive.d.ts +1 -1
  32. package/chat/templates/author-message-content-template.directive.d.ts +1 -1
  33. package/chat/templates/author-message-template.directive.d.ts +1 -1
  34. package/chat/templates/message-box.directive.d.ts +1 -1
  35. package/chat/templates/message-content-template.directive.d.ts +1 -1
  36. package/chat/templates/message-template.directive.d.ts +1 -1
  37. package/chat/templates/no-data-template.directive.d.ts +1 -1
  38. package/chat/templates/receiver-message-content-template.directive.d.ts +1 -1
  39. package/chat/templates/receiver-message-template.directive.d.ts +1 -1
  40. package/chat/templates/timestamp-template.directive.d.ts +1 -1
  41. package/chat/templates/user-status-template.directive.d.ts +1 -1
  42. package/conversational-ui.module.d.ts +10 -1
  43. package/directives.d.ts +28 -1
  44. package/fesm2022/progress-kendo-angular-conversational-ui.mjs +3938 -1389
  45. package/index.d.ts +11 -1
  46. package/inline-ai-prompt/localization/custom-messages.component.d.ts +1 -1
  47. package/inline-ai-prompt/models/command.interface.d.ts +2 -2
  48. package/package-metadata.mjs +2 -2
  49. package/package.json +14 -14
  50. package/promptbox/affixes/promptbox-end-affix.component.d.ts +26 -0
  51. package/promptbox/affixes/promptbox-start-affix.component.d.ts +26 -0
  52. package/promptbox/affixes/promptbox-top-affix.component.d.ts +26 -0
  53. package/promptbox/common/header-template.directive.d.ts +17 -0
  54. package/promptbox/common/models/action-button.d.ts +62 -0
  55. package/promptbox/common/models/fileselect-button.d.ts +62 -0
  56. package/{chat/common/models/message-box-options.d.ts → promptbox/common/models/index.d.ts} +3 -5
  57. package/promptbox/common/models/promptbox-mode.d.ts +12 -0
  58. package/promptbox/common/utils.d.ts +18 -0
  59. package/promptbox/localization/custom-messages.component.d.ts +26 -0
  60. package/promptbox/localization/localized-messages.directive.d.ts +16 -0
  61. package/promptbox/localization/messages.d.ts +37 -0
  62. package/promptbox/promptbox.component.d.ts +383 -0
  63. package/promptbox/tools/action-button.component.d.ts +63 -0
  64. package/promptbox/tools/base-tool.d.ts +62 -0
  65. package/promptbox/tools/fileselect-button.component.d.ts +63 -0
  66. package/promptbox/tools/promptbox-file.component.d.ts +30 -0
  67. package/promptbox/tools/speech-to-text-button.component.d.ts +87 -0
package/index.d.ts CHANGED
@@ -10,7 +10,7 @@ export { InlineAIPromptModule } from './inline-ai-prompt/inlineaiprompt.module';
10
10
  export { ChatComponent } from './chat/chat.component';
11
11
  export { HeroCardComponent } from './chat/cards/hero-card.component';
12
12
  export { CustomMessagesComponent } from './chat/l10n/custom-messages.component';
13
- export { MessageBoxType } from './chat/common/models/message-box-options';
13
+ export { MessageBoxType, MessageBoxSettings } from './chat/api/message-box';
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';
@@ -39,4 +39,14 @@ export { InlineAIPromptOutputTemplateDirective } from './inline-ai-prompt/output
39
39
  export { InlineAIPromptService } from './inline-ai-prompt/inlineaiprompt.service';
40
40
  export { InlineAIPromptCustomMessagesComponent } from './inline-ai-prompt/localization/custom-messages.component';
41
41
  export * from './inline-ai-prompt/models';
42
+ export { PromptBoxComponent } from './promptbox/promptbox.component';
43
+ export { PromptBoxCustomMessagesComponent } from './promptbox/localization/custom-messages.component';
44
+ export { PromptBoxTopAffixComponent } from './promptbox/affixes/promptbox-top-affix.component';
45
+ export { PromptBoxStartAffixComponent } from './promptbox/affixes/promptbox-start-affix.component';
46
+ export { PromptBoxEndAffixComponent } from './promptbox/affixes/promptbox-end-affix.component';
47
+ export { PromptBoxSpeechToTextButtonComponent } from './promptbox/tools/speech-to-text-button.component';
48
+ export { PromptBoxActionButtonComponent } from './promptbox/tools/action-button.component';
49
+ export { PromptBoxFileSelectButtonComponent } from './promptbox/tools/fileselect-button.component';
50
+ export { PromptBoxHeaderTemplateDirective } from './promptbox/common/header-template.directive';
51
+ export * from './promptbox/common/models';
42
52
  export * from './directives';
@@ -6,7 +6,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
6
6
  import { Messages } from './messages';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
- * Provides a component for customizing messages in the Inline AI Prompt. [See example](slug:globalization_chat#custom-messages).
9
+ * Provides a component for customizing messages in the Inline AI Prompt. [See example](https://www.telerik.com/kendo-angular-ui/components/conversational-ui/globalization#custom-messages).
10
10
  *
11
11
  * @example
12
12
  * ```html
@@ -20,11 +20,11 @@ export interface InlineAIPromptCommand {
20
20
  */
21
21
  prompt?: string;
22
22
  /**
23
- * The font icon name. See [icons list](slug:icons#icons-list).
23
+ * The font icon name. See [icons list](https://www.telerik.com/kendo-angular-ui/components/styling/icons#icons-list).
24
24
  */
25
25
  icon?: string;
26
26
  /**
27
- * The SVG icon. See [SVG icons list](slug:svgicon_list).
27
+ * The SVG icon. See [SVG icons list](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list).
28
28
  */
29
29
  svgIcon?: SVGIcon;
30
30
  /**
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1769600023,
11
- "version": "22.1.0-develop.9",
10
+ "publishDate": 1770290221,
11
+ "version": "23.0.0-develop.2",
12
12
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
13
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-conversational-ui",
3
- "version": "22.1.0-develop.9",
3
+ "version": "23.0.0-develop.2",
4
4
  "description": "Kendo UI for Angular Conversational UI components",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -47,7 +47,7 @@
47
47
  "package": {
48
48
  "productName": "Kendo UI for Angular",
49
49
  "productCode": "KENDOUIANGULAR",
50
- "publishDate": 1769600023,
50
+ "publishDate": 1770290221,
51
51
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
52
52
  }
53
53
  },
@@ -57,22 +57,22 @@
57
57
  "@angular/core": "19 - 21",
58
58
  "@angular/platform-browser": "19 - 21",
59
59
  "@progress/kendo-licensing": "^1.10.0",
60
- "@progress/kendo-angular-buttons": "22.1.0-develop.9",
61
- "@progress/kendo-angular-inputs": "22.1.0-develop.9",
62
- "@progress/kendo-angular-layout": "22.1.0-develop.9",
63
- "@progress/kendo-angular-icons": "22.1.0-develop.9",
64
- "@progress/kendo-angular-common": "22.1.0-develop.9",
65
- "@progress/kendo-angular-intl": "22.1.0-develop.9",
66
- "@progress/kendo-angular-l10n": "22.1.0-develop.9",
67
- "@progress/kendo-angular-menu": "22.1.0-develop.9",
68
- "@progress/kendo-angular-popup": "22.1.0-develop.9",
69
- "@progress/kendo-angular-toolbar": "22.1.0-develop.9",
70
- "@progress/kendo-angular-upload": "22.1.0-develop.9",
60
+ "@progress/kendo-angular-buttons": "23.0.0-develop.2",
61
+ "@progress/kendo-angular-inputs": "23.0.0-develop.2",
62
+ "@progress/kendo-angular-layout": "23.0.0-develop.2",
63
+ "@progress/kendo-angular-icons": "23.0.0-develop.2",
64
+ "@progress/kendo-angular-common": "23.0.0-develop.2",
65
+ "@progress/kendo-angular-intl": "23.0.0-develop.2",
66
+ "@progress/kendo-angular-l10n": "23.0.0-develop.2",
67
+ "@progress/kendo-angular-menu": "23.0.0-develop.2",
68
+ "@progress/kendo-angular-popup": "23.0.0-develop.2",
69
+ "@progress/kendo-angular-toolbar": "23.0.0-develop.2",
70
+ "@progress/kendo-angular-upload": "23.0.0-develop.2",
71
71
  "rxjs": "^6.5.3 || ^7.0.0"
72
72
  },
73
73
  "dependencies": {
74
74
  "tslib": "^2.3.1",
75
- "@progress/kendo-angular-schematics": "22.1.0-develop.9"
75
+ "@progress/kendo-angular-schematics": "23.0.0-develop.2"
76
76
  },
77
77
  "schematics": "./schematics/collection.json",
78
78
  "module": "fesm2022/progress-kendo-angular-conversational-ui.mjs",
@@ -0,0 +1,26 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { TemplateRef } from '@angular/core';
6
+ import * as i0 from "@angular/core";
7
+ /**
8
+ * Defines a container for custom content displayed at the end of the PromptBox.
9
+ *
10
+ * @example
11
+ * ```html
12
+ * <kendo-promptbox>
13
+ * <kendo-promptbox-end-affix>
14
+ * <button kendoButton look="clear" icon="image"></button>
15
+ * </kendo-promptbox-end-affix>
16
+ * </kendo-promptbox>
17
+ * ```
18
+ */
19
+ export declare class PromptBoxEndAffixComponent {
20
+ /**
21
+ * @hidden
22
+ */
23
+ templateRef: TemplateRef<any>;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<PromptBoxEndAffixComponent, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<PromptBoxEndAffixComponent, "kendo-promptbox-end-affix", ["kendoPromptBoxEndAffix"], {}, {}, never, ["*"], true, never>;
26
+ }
@@ -0,0 +1,26 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { TemplateRef } from '@angular/core';
6
+ import * as i0 from "@angular/core";
7
+ /**
8
+ * Defines a container for custom content displayed at the start of the PromptBox.
9
+ *
10
+ * @example
11
+ * ```html
12
+ * <kendo-promptbox>
13
+ * <kendo-promptbox-start-affix>
14
+ * <button kendoButton look="clear" icon="image"></button>
15
+ * </kendo-promptbox-start-affix>
16
+ * </kendo-promptbox>
17
+ * ```
18
+ */
19
+ export declare class PromptBoxStartAffixComponent {
20
+ /**
21
+ * @hidden
22
+ */
23
+ templateRef: TemplateRef<any>;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<PromptBoxStartAffixComponent, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<PromptBoxStartAffixComponent, "kendo-promptbox-start-affix", ["kendoPromptBoxStartAffix"], {}, {}, never, ["*"], true, never>;
26
+ }
@@ -0,0 +1,26 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { TemplateRef } from '@angular/core';
6
+ import * as i0 from "@angular/core";
7
+ /**
8
+ * Defines a container for custom content displayed at the top of the PromptBox when in `'multi'` mode.
9
+ *
10
+ * @example
11
+ * ```html
12
+ * <kendo-promptbox>
13
+ * <kendo-promptbox-top-affix>
14
+ * <button kendoButton look="clear" icon="image"></button>
15
+ * </kendo-promptbox-top-affix>
16
+ * </kendo-promptbox>
17
+ * ```
18
+ */
19
+ export declare class PromptBoxTopAffixComponent {
20
+ /**
21
+ * @hidden
22
+ */
23
+ templateRef: TemplateRef<any>;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<PromptBoxTopAffixComponent, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<PromptBoxTopAffixComponent, "kendo-promptbox-top-affix", ["kendoPromptBoxTopAffix"], {}, {}, never, ["*"], true, never>;
26
+ }
@@ -0,0 +1,17 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { TemplateRef } from '@angular/core';
6
+ import * as i0 from "@angular/core";
7
+ /**
8
+ * Defines a template for customizing the content above the PromptBox attachments.
9
+ *
10
+ * @hidden
11
+ */
12
+ export declare class PromptBoxHeaderTemplateDirective {
13
+ templateRef: TemplateRef<any>;
14
+ constructor(templateRef: TemplateRef<any>);
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<PromptBoxHeaderTemplateDirective, [{ optional: true; }]>;
16
+ static ɵdir: i0.ɵɵDirectiveDeclaration<PromptBoxHeaderTemplateDirective, "[kendoPromptBoxHeaderTemplate]", never, {}, {}, never, never, true, never>;
17
+ }
@@ -0,0 +1,62 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { ButtonFillMode, ButtonRounded, ButtonSize, ButtonThemeColor } from '@progress/kendo-angular-buttons';
6
+ import { SVGIcon } from '@progress/kendo-svg-icons';
7
+ /**
8
+ * Defines the configuration settings for the PromptBox Action button.
9
+ */
10
+ export interface ActionButtonSettings {
11
+ /**
12
+ * Sets the disabled state of the **Action** button.
13
+ */
14
+ disabled?: boolean;
15
+ /**
16
+ * Sets the background and border styles of the **Action** button.
17
+ */
18
+ fillMode?: ButtonFillMode;
19
+ /**
20
+ * Sets the border radius of the **Action** button.
21
+ */
22
+ rounded?: ButtonRounded;
23
+ /**
24
+ * Sets the padding of the **Action** button.
25
+ */
26
+ size?: ButtonSize;
27
+ /**
28
+ * Sets the theme color of the **Action** button.
29
+ */
30
+ themeColor?: ButtonThemeColor;
31
+ /**
32
+ * Sets the icon of the **Action** button.
33
+ */
34
+ icon?: string;
35
+ /**
36
+ * Sets the SVG icon of the **Action** button.
37
+ */
38
+ svgIcon?: SVGIcon;
39
+ /**
40
+ * Sets a CSS class or multiple classes separated by spaces.
41
+ * Applied to a `span` element inside the **Action** button.
42
+ */
43
+ iconClass?: string;
44
+ /**
45
+ * Sets a URL for an `img` element displayed inside the **Action** button.
46
+ */
47
+ imageUrl?: string;
48
+ /**
49
+ * Sets the icon displayed when the **Action** button is in loading state.
50
+ */
51
+ loadingIcon?: string;
52
+ /**
53
+ * Sets the SVG icon to be displayed when the **Action** button is in loading state.
54
+ */
55
+ loadingSVGIcon?: SVGIcon;
56
+ }
57
+ /**
58
+ * Defines the event data emitted when the PromptBox **Action** button is clicked.
59
+ */
60
+ export interface ActionButtonEvent {
61
+ actionType: 'send' | 'stop';
62
+ }
@@ -0,0 +1,62 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { ButtonFillMode, ButtonRounded, ButtonSize, ButtonThemeColor } from '@progress/kendo-angular-buttons';
6
+ import { FileRestrictions } from '@progress/kendo-angular-upload';
7
+ import { SVGIcon } from '@progress/kendo-svg-icons';
8
+ /**
9
+ * Defines the configuration settings for the PromptBox **File Select** button.
10
+ */
11
+ export interface FileSelectButtonSettings {
12
+ /**
13
+ * Sets the disabled state of the **File Select** button.
14
+ * When set to `true`, prevents user interaction.
15
+ */
16
+ disabled?: boolean;
17
+ /**
18
+ * Sets the background and border styles of the **File Select** button.
19
+ */
20
+ fillMode?: ButtonFillMode;
21
+ /**
22
+ * Sets the name of a font icon from the Kendo UI theme.
23
+ */
24
+ icon?: string;
25
+ /**
26
+ * Sets a URL for an `img` element displayed inside the **File Select** button.
27
+ */
28
+ imageUrl?: string;
29
+ /**
30
+ * Sets the border radius of the **File Select** button.
31
+ */
32
+ rounded?: ButtonRounded;
33
+ /**
34
+ * Sets the padding of the **File Select** button.
35
+ */
36
+ size?: ButtonSize;
37
+ /**
38
+ * Sets an SVG icon to display inside the **File Select** button.
39
+ */
40
+ svgIcon?: SVGIcon;
41
+ /**
42
+ * Sets a CSS class or multiple classes separated by spaces.
43
+ * Applied to a `span` element inside the **File Select** button.
44
+ */
45
+ iconClass?: string;
46
+ /**
47
+ * Sets the theme color of the **File Select** button.
48
+ */
49
+ themeColor?: ButtonThemeColor;
50
+ /**
51
+ * Sets the restrictions for selected files.
52
+ */
53
+ restrictions?: FileRestrictions;
54
+ /**
55
+ * Enables selection of multiple files.
56
+ */
57
+ multiple?: boolean;
58
+ /**
59
+ * Sets the `accept` attribute of the internal file input element.
60
+ */
61
+ accept?: string;
62
+ }
@@ -2,8 +2,6 @@
2
2
  * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * Represents the possible message box options for the Chat component.
7
- * @hidden
8
- */
9
- export type MessageBoxType = 'textarea';
5
+ export { PromptBoxMode } from './promptbox-mode';
6
+ export { ActionButtonSettings, ActionButtonEvent } from './action-button';
7
+ export { FileSelectButtonSettings } from './fileselect-button';
@@ -0,0 +1,12 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ /**
6
+ * Specifies the PromptBox modes.
7
+ *
8
+ * - 'single'&mdash;Renders a single-line input element.
9
+ * - 'multi'&mdash;Renders a multi-line textarea element.
10
+ * - 'auto'&mdash;Automatically switches between single-line and multi-line modes based on the content.
11
+ */
12
+ export type PromptBoxMode = 'single' | 'multi' | 'auto';
@@ -0,0 +1,18 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { ActionButtonSettings, FileSelectButtonSettings } from './models';
6
+ import { SpeechToTextButtonSettings } from '@progress/kendo-angular-buttons';
7
+ /**
8
+ * @hidden
9
+ */
10
+ export declare const ACTION_BUTTON_DEFAULT_SETTINGS: ActionButtonSettings;
11
+ /**
12
+ * @hidden
13
+ */
14
+ export declare const STB_DEFAULT_SETTINGS: SpeechToTextButtonSettings;
15
+ /**
16
+ * @hidden
17
+ */
18
+ export declare const FILESELECT_BUTTON_DEFAULT_SETTINGS: FileSelectButtonSettings;
@@ -0,0 +1,26 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { LocalizationService } from '@progress/kendo-angular-l10n';
6
+ import { Messages } from './messages';
7
+ import * as i0 from "@angular/core";
8
+ /**
9
+ * Provides a component for customizing localization messages in the PromptBox.
10
+ * [See example](slug:globalization_chat#custom-messages).
11
+ *
12
+ * @example
13
+ * ```html
14
+ * <kendo-promptbox>
15
+ * <kendo-promptbox-messages>
16
+ * </kendo-promptbox-messages>
17
+ * </kendo-promptbox>
18
+ * ```
19
+ */
20
+ export declare class PromptBoxCustomMessagesComponent extends Messages {
21
+ protected service: LocalizationService;
22
+ constructor(service: LocalizationService);
23
+ protected get override(): boolean;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<PromptBoxCustomMessagesComponent, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<PromptBoxCustomMessagesComponent, "kendo-promptbox-messages", never, {}, {}, never, never, true, never>;
26
+ }
@@ -0,0 +1,16 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { LocalizationService } from '@progress/kendo-angular-l10n';
6
+ import { Messages } from './messages';
7
+ import * as i0 from "@angular/core";
8
+ /**
9
+ * @hidden
10
+ */
11
+ export declare class LocalizedMessagesDirective extends Messages {
12
+ protected service: LocalizationService;
13
+ constructor(service: LocalizationService);
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<LocalizedMessagesDirective, never>;
15
+ static ɵdir: i0.ɵɵDirectiveDeclaration<LocalizedMessagesDirective, "[kendoPromptBoxLocalizedMessages]", never, {}, {}, never, never, true, never>;
16
+ }
@@ -0,0 +1,37 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { ComponentMessages } from '@progress/kendo-angular-l10n';
6
+ import * as i0 from "@angular/core";
7
+ /**
8
+ * @hidden
9
+ */
10
+ export declare class Messages extends ComponentMessages {
11
+ /**
12
+ * The title for the **File Select** button.
13
+ */
14
+ fileSelectButtonTitle: string;
15
+ /**
16
+ * The title for the **Action** button.
17
+ */
18
+ actionButtonTitle: string;
19
+ /**
20
+ * The title for the **Stop Generating** action.
21
+ */
22
+ stopGeneratingTitle: string;
23
+ /**
24
+ * The title for the **Speech to Text** button.
25
+ */
26
+ speechToTextButtonTitle: string;
27
+ /**
28
+ * The title for the **Remove File** button.
29
+ */
30
+ removeFileTitle: string;
31
+ /**
32
+ * The aria-label for the internal input/textarea element.
33
+ */
34
+ messageBoxTitle: string;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
36
+ static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, never, never, { "fileSelectButtonTitle": { "alias": "fileSelectButtonTitle"; "required": false; }; "actionButtonTitle": { "alias": "actionButtonTitle"; "required": false; }; "stopGeneratingTitle": { "alias": "stopGeneratingTitle"; "required": false; }; "speechToTextButtonTitle": { "alias": "speechToTextButtonTitle"; "required": false; }; "removeFileTitle": { "alias": "removeFileTitle"; "required": false; }; "messageBoxTitle": { "alias": "messageBoxTitle"; "required": false; }; }, {}, never, never, true, never>;
37
+ }