@progress/kendo-angular-conversational-ui 23.0.0-develop.1 → 23.0.0-develop.10

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.
@@ -11,7 +11,7 @@ import { isPresent, normalizeKeys, Keys, focusableSelector, guid, getter, isDocu
11
11
  import { DialogContainerService, DialogService, WindowService, WindowContainerService } from '@progress/kendo-angular-dialog';
12
12
  import { NgTemplateOutlet, NgClass } from '@angular/common';
13
13
  import { Subject, Subscription, fromEvent } from 'rxjs';
14
- import { moreHorizontalIcon, commentIcon, sparklesIcon, stopSmIcon, thumbUpIcon, thumbDownOutlineIcon, thumbDownIcon, thumbUpOutlineIcon, copyIcon, arrowRotateCwIcon, chevronUpIcon, chevronDownIcon, arrowUpOutlineIcon, undoIcon, downloadIcon, chevronLeftIcon, chevronRightIcon, xIcon, moreVerticalIcon, paperclipOutlineAltRightIcon, arrowRotateCwOutlineIcon, warningTriangleIcon, pinOutlineIcon, arrowDownOutlineIcon, cancelOutlineIcon, menuIcon, paperPlaneIcon } from '@progress/kendo-svg-icons';
14
+ import { moreHorizontalIcon, commentIcon, sparklesIcon, stopSmIcon, thumbUpIcon, thumbDownOutlineIcon, thumbDownIcon, thumbUpOutlineIcon, copyIcon, arrowRotateCwIcon, chevronUpIcon, chevronDownIcon, arrowUpOutlineIcon, paperclipOutlineAltRightIcon, undoIcon, downloadIcon, chevronLeftIcon, chevronRightIcon, xIcon, moreVerticalIcon, arrowRotateCwOutlineIcon, warningTriangleIcon, pinOutlineIcon, arrowDownOutlineIcon, cancelOutlineIcon, menuIcon, paperPlaneIcon } from '@progress/kendo-svg-icons';
15
15
  import * as i1 from '@progress/kendo-angular-l10n';
16
16
  import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
17
17
  import { validatePackage } from '@progress/kendo-licensing';
@@ -216,7 +216,7 @@ const packageMetadata = {
216
216
  productCode: 'KENDOUIANGULAR',
217
217
  productCodes: ['KENDOUIANGULAR'],
218
218
  publishDate: 0,
219
- version: '23.0.0-develop.1',
219
+ version: '23.0.0-develop.10',
220
220
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
221
221
  };
222
222
 
@@ -2043,7 +2043,9 @@ const SEND_BTN_DEFAULT_SETTINGS = {
2043
2043
  const FILESELECT_BUTTON_DEFAULT_SETTINGS$1 = {
2044
2044
  multiple: true,
2045
2045
  disabled: false,
2046
- fillMode: 'clear'
2046
+ fillMode: 'clear',
2047
+ icon: 'paperclip-outline-alt-right',
2048
+ svgIcon: paperclipOutlineAltRightIcon,
2047
2049
  };
2048
2050
  /**
2049
2051
  * @hidden
@@ -3063,6 +3065,7 @@ class ChatFileComponent extends ChatItem {
3063
3065
  kendoButton
3064
3066
  [attr.title]="textFor('removeFileTitle')"
3065
3067
  [svgIcon]="deleteIcon"
3068
+ icon="x"
3066
3069
  (click)="remove.emit(chatFile)"
3067
3070
  fillMode="flat"
3068
3071
  ></button>
@@ -3106,6 +3109,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
3106
3109
  kendoButton
3107
3110
  [attr.title]="textFor('removeFileTitle')"
3108
3111
  [svgIcon]="deleteIcon"
3112
+ icon="x"
3109
3113
  (click)="remove.emit(chatFile)"
3110
3114
  fillMode="flat"
3111
3115
  ></button>
@@ -3794,7 +3798,7 @@ class PromptBoxFileSelectButtonComponent extends PromptBoxBaseTool {
3794
3798
  this.disabled = false;
3795
3799
  this.fillMode = 'flat';
3796
3800
  this.size = 'small';
3797
- this.icon = 'paperclip';
3801
+ this.icon = 'paperclip-outline-alt-right';
3798
3802
  this.svgIcon = paperclipOutlineAltRightIcon;
3799
3803
  }
3800
3804
  /**
@@ -3832,13 +3836,13 @@ class PromptBoxFileSelectButtonComponent extends PromptBoxBaseTool {
3832
3836
  [attr.title]="title || textFor('fileSelectButtonTitle')"
3833
3837
  [disabled]="disabled"
3834
3838
  [fillMode]="fillMode"
3835
- [icon]="icon"
3836
- [iconClass]="iconClass"
3837
3839
  [imageUrl]="imageUrl"
3838
3840
  [rounded]="rounded"
3839
3841
  [size]="size"
3840
- [svgIcon]="svgIcon"
3841
3842
  [themeColor]="themeColor"
3843
+ [icon]="iconClass ? undefined : icon"
3844
+ [svgIcon]="iconClass ? undefined : svgIcon"
3845
+ [iconClass]="iconClass"
3842
3846
  (click)="selectFiles()"
3843
3847
  ></button>
3844
3848
  <kendo-fileselect
@@ -3870,13 +3874,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
3870
3874
  [attr.title]="title || textFor('fileSelectButtonTitle')"
3871
3875
  [disabled]="disabled"
3872
3876
  [fillMode]="fillMode"
3873
- [icon]="icon"
3874
- [iconClass]="iconClass"
3875
3877
  [imageUrl]="imageUrl"
3876
3878
  [rounded]="rounded"
3877
3879
  [size]="size"
3878
- [svgIcon]="svgIcon"
3879
3880
  [themeColor]="themeColor"
3881
+ [icon]="iconClass ? undefined : icon"
3882
+ [svgIcon]="iconClass ? undefined : svgIcon"
3883
+ [iconClass]="iconClass"
3880
3884
  (click)="selectFiles()"
3881
3885
  ></button>
3882
3886
  <kendo-fileselect
@@ -3951,6 +3955,7 @@ class PromptBoxFileComponent {
3951
3955
  kendoButton
3952
3956
  [attr.title]="textFor('removeFileTitle')"
3953
3957
  [svgIcon]="deleteIcon"
3958
+ icon="x"
3954
3959
  [disabled]="disabled"
3955
3960
  (click)="remove.emit(promptBoxFile)"
3956
3961
  fillMode="flat"
@@ -3978,6 +3983,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
3978
3983
  kendoButton
3979
3984
  [attr.title]="textFor('removeFileTitle')"
3980
3985
  [svgIcon]="deleteIcon"
3986
+ icon="x"
3981
3987
  [disabled]="disabled"
3982
3988
  (click)="remove.emit(promptBoxFile)"
3983
3989
  fillMode="flat"
@@ -4534,6 +4540,7 @@ class PromptBoxComponent {
4534
4540
  this.ngZone = ngZone;
4535
4541
  this.localization = localization;
4536
4542
  this.hostElement = hostElement;
4543
+ validatePackage(packageMetadata);
4537
4544
  }
4538
4545
  ngAfterViewInit() {
4539
4546
  if (this.mode !== 'single' && this.textareaElement) {
@@ -5768,13 +5775,14 @@ class MessageBoxComponent {
5768
5775
  kendoButton
5769
5776
  [attr.title]="textFor('removeReplyTitle')"
5770
5777
  [svgIcon]="deleteIcon"
5778
+ icon="x"
5771
5779
  (click)="removeReply()"
5772
5780
  fillMode="flat"
5773
5781
  ></button>
5774
5782
  </div>
5775
5783
  </ng-template>
5776
5784
  }
5777
- <kendo-promptbox-end-affix>
5785
+ <kendo-promptbox-start-affix>
5778
5786
  @if (fileSelectButton) {
5779
5787
  <kendo-promptbox-fileselect-button
5780
5788
  [disabled]="fileSelectButtonSettings?.disabled"
@@ -5785,9 +5793,14 @@ class MessageBoxComponent {
5785
5793
  [restrictions]="fileSelectButtonSettings?.restrictions"
5786
5794
  [multiple]="fileSelectButtonSettings?.multiple"
5787
5795
  [accept]="fileSelectButtonSettings?.accept"
5796
+ [svgIcon]="fileSelectButtonSettings?.svgIcon"
5797
+ [icon]="fileSelectButtonSettings?.icon"
5798
+ [iconClass]="fileSelectButtonSettings?.iconClass"
5799
+ [imageUrl]="fileSelectButtonSettings?.imageUrl"
5788
5800
  ></kendo-promptbox-fileselect-button>
5789
5801
  }
5790
- <div class="k-spacer"></div>
5802
+ </kendo-promptbox-start-affix>
5803
+ <kendo-promptbox-end-affix>
5791
5804
  @if (speechToTextButtonSettings) {
5792
5805
  <kendo-promptbox-speech-to-text-button
5793
5806
  [continuous]="speechToTextButtonSettings?.continuous"
@@ -5820,7 +5833,7 @@ class MessageBoxComponent {
5820
5833
  } @if (messageBoxTemplate?.templateRef) {
5821
5834
  <ng-template [ngTemplateOutlet]="messageBoxTemplate?.templateRef"></ng-template>
5822
5835
  }
5823
- `, isInline: true, dependencies: [{ kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: PromptBoxComponent, selector: "kendo-promptbox", inputs: ["disabled", "focusableId", "loading", "placeholder", "readonly", "title", "mode", "rows", "maxTextAreaHeight", "value", "actionButton", "fileSelectButton", "speechToTextButton"], outputs: ["valueChange", "focus", "blur", "inputFocus", "inputBlur", "promptAction", "selectAttachments", "fileRemove", "speechToTextClick", "speechToTextStart", "speechToTextEnd", "speechToTextError", "speechToTextResult"], exportAs: ["kendoPromptBox"] }, { kind: "component", type: PromptBoxCustomMessagesComponent, selector: "kendo-promptbox-messages" }, { kind: "directive", type: PromptBoxHeaderTemplateDirective, selector: "[kendoPromptBoxHeaderTemplate]" }, { kind: "component", type: PromptBoxEndAffixComponent, selector: "kendo-promptbox-end-affix", exportAs: ["kendoPromptBoxEndAffix"] }, { kind: "component", type: PromptBoxActionButtonComponent, selector: "kendo-promptbox-action-button", inputs: ["buttonClass", "loading", "loadingIcon", "loadingSVGIcon"], outputs: ["promptAction"], exportAs: ["kendoPromptBoxActionButton"] }, { kind: "component", type: PromptBoxFileSelectButtonComponent, selector: "kendo-promptbox-fileselect-button", inputs: ["restrictions", "multiple", "accept"], outputs: ["selectAttachments"], exportAs: ["kendoPromptBoxFileSelectButton"] }, { kind: "component", type: PromptBoxSpeechToTextButtonComponent, selector: "kendo-promptbox-speech-to-text-button", inputs: ["continuous", "integrationMode", "interimResults", "lang", "maxAlternatives"], outputs: ["stbClick", "stbStart", "stbEnd", "stbError", "stbResult"], exportAs: ["kendoPromptBoxSpeechToTextButton"] }, { kind: "component", type: MessageReferenceComponent, selector: "chat-message-reference-content", inputs: ["message"] }, { kind: "component", type: SuggestedActionsComponent, selector: "kendo-chat-suggested-actions", inputs: ["actions", "suggestions", "tabbable", "type", "suggestionTemplate"], outputs: ["dispatchAction", "dispatchSuggestion"] }] });
5836
+ `, isInline: true, dependencies: [{ kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: PromptBoxComponent, selector: "kendo-promptbox", inputs: ["disabled", "focusableId", "loading", "placeholder", "readonly", "title", "mode", "rows", "maxTextAreaHeight", "value", "actionButton", "fileSelectButton", "speechToTextButton"], outputs: ["valueChange", "focus", "blur", "inputFocus", "inputBlur", "promptAction", "selectAttachments", "fileRemove", "speechToTextClick", "speechToTextStart", "speechToTextEnd", "speechToTextError", "speechToTextResult"], exportAs: ["kendoPromptBox"] }, { kind: "component", type: PromptBoxCustomMessagesComponent, selector: "kendo-promptbox-messages" }, { kind: "directive", type: PromptBoxHeaderTemplateDirective, selector: "[kendoPromptBoxHeaderTemplate]" }, { kind: "component", type: PromptBoxStartAffixComponent, selector: "kendo-promptbox-start-affix", exportAs: ["kendoPromptBoxStartAffix"] }, { kind: "component", type: PromptBoxEndAffixComponent, selector: "kendo-promptbox-end-affix", exportAs: ["kendoPromptBoxEndAffix"] }, { kind: "component", type: PromptBoxActionButtonComponent, selector: "kendo-promptbox-action-button", inputs: ["buttonClass", "loading", "loadingIcon", "loadingSVGIcon"], outputs: ["promptAction"], exportAs: ["kendoPromptBoxActionButton"] }, { kind: "component", type: PromptBoxFileSelectButtonComponent, selector: "kendo-promptbox-fileselect-button", inputs: ["restrictions", "multiple", "accept"], outputs: ["selectAttachments"], exportAs: ["kendoPromptBoxFileSelectButton"] }, { kind: "component", type: PromptBoxSpeechToTextButtonComponent, selector: "kendo-promptbox-speech-to-text-button", inputs: ["continuous", "integrationMode", "interimResults", "lang", "maxAlternatives"], outputs: ["stbClick", "stbStart", "stbEnd", "stbError", "stbResult"], exportAs: ["kendoPromptBoxSpeechToTextButton"] }, { kind: "component", type: MessageReferenceComponent, selector: "chat-message-reference-content", inputs: ["message"] }, { kind: "component", type: SuggestedActionsComponent, selector: "kendo-chat-suggested-actions", inputs: ["actions", "suggestions", "tabbable", "type", "suggestionTemplate"], outputs: ["dispatchAction", "dispatchSuggestion"] }] });
5824
5837
  }
5825
5838
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: MessageBoxComponent, decorators: [{
5826
5839
  type: Component,
@@ -5873,13 +5886,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
5873
5886
  kendoButton
5874
5887
  [attr.title]="textFor('removeReplyTitle')"
5875
5888
  [svgIcon]="deleteIcon"
5889
+ icon="x"
5876
5890
  (click)="removeReply()"
5877
5891
  fillMode="flat"
5878
5892
  ></button>
5879
5893
  </div>
5880
5894
  </ng-template>
5881
5895
  }
5882
- <kendo-promptbox-end-affix>
5896
+ <kendo-promptbox-start-affix>
5883
5897
  @if (fileSelectButton) {
5884
5898
  <kendo-promptbox-fileselect-button
5885
5899
  [disabled]="fileSelectButtonSettings?.disabled"
@@ -5890,9 +5904,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
5890
5904
  [restrictions]="fileSelectButtonSettings?.restrictions"
5891
5905
  [multiple]="fileSelectButtonSettings?.multiple"
5892
5906
  [accept]="fileSelectButtonSettings?.accept"
5907
+ [svgIcon]="fileSelectButtonSettings?.svgIcon"
5908
+ [icon]="fileSelectButtonSettings?.icon"
5909
+ [iconClass]="fileSelectButtonSettings?.iconClass"
5910
+ [imageUrl]="fileSelectButtonSettings?.imageUrl"
5893
5911
  ></kendo-promptbox-fileselect-button>
5894
5912
  }
5895
- <div class="k-spacer"></div>
5913
+ </kendo-promptbox-start-affix>
5914
+ <kendo-promptbox-end-affix>
5896
5915
  @if (speechToTextButtonSettings) {
5897
5916
  <kendo-promptbox-speech-to-text-button
5898
5917
  [continuous]="speechToTextButtonSettings?.continuous"
@@ -5933,6 +5952,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
5933
5952
  PromptBoxComponent,
5934
5953
  PromptBoxCustomMessagesComponent,
5935
5954
  PromptBoxHeaderTemplateDirective,
5955
+ PromptBoxStartAffixComponent,
5936
5956
  PromptBoxEndAffixComponent,
5937
5957
  PromptBoxActionButtonComponent,
5938
5958
  PromptBoxFileSelectButtonComponent,
@@ -6591,7 +6611,7 @@ class MessageComponent extends ChatItem {
6591
6611
  </div>
6592
6612
  </div>
6593
6613
  } @if (!message.typing) { @if (useCustomContentTemplate) { @if (message.failed) {
6594
- <button kendoButton class="k-resend-button" size="small" fillMode="clear" [svgIcon]="resendIcon" (click)="onResendMessage($event)"></button>
6614
+ <button kendoButton class="k-resend-button" size="small" fillMode="clear" icon="arrow-rotate-cw-outline" [svgIcon]="resendIcon" (click)="onResendMessage($event)"></button>
6595
6615
  }
6596
6616
  <div
6597
6617
  class="k-chat-bubble k-bubble"
@@ -6627,7 +6647,7 @@ class MessageComponent extends ChatItem {
6627
6647
  }
6628
6648
  </div>
6629
6649
  } @if (!useCustomContentTemplate && hasMessageContent) { @if (message.failed) {
6630
- <button kendoButton class="k-resend-button" size="small" fillMode="clear" [svgIcon]="resendIcon" (click)="onResendMessage($event)"></button>
6650
+ <button kendoButton class="k-resend-button" size="small" fillMode="clear" icon="arrow-rotate-cw-outline" [svgIcon]="resendIcon" (click)="onResendMessage($event)"></button>
6631
6651
  }
6632
6652
  <div
6633
6653
  class="k-chat-bubble k-bubble"
@@ -6808,7 +6828,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6808
6828
  </div>
6809
6829
  </div>
6810
6830
  } @if (!message.typing) { @if (useCustomContentTemplate) { @if (message.failed) {
6811
- <button kendoButton class="k-resend-button" size="small" fillMode="clear" [svgIcon]="resendIcon" (click)="onResendMessage($event)"></button>
6831
+ <button kendoButton class="k-resend-button" size="small" fillMode="clear" icon="arrow-rotate-cw-outline" [svgIcon]="resendIcon" (click)="onResendMessage($event)"></button>
6812
6832
  }
6813
6833
  <div
6814
6834
  class="k-chat-bubble k-bubble"
@@ -6844,7 +6864,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6844
6864
  }
6845
6865
  </div>
6846
6866
  } @if (!useCustomContentTemplate && hasMessageContent) { @if (message.failed) {
6847
- <button kendoButton class="k-resend-button" size="small" fillMode="clear" [svgIcon]="resendIcon" (click)="onResendMessage($event)"></button>
6867
+ <button kendoButton class="k-resend-button" size="small" fillMode="clear" icon="arrow-rotate-cw-outline" [svgIcon]="resendIcon" (click)="onResendMessage($event)"></button>
6848
6868
  }
6849
6869
  <div
6850
6870
  class="k-chat-bubble k-bubble"
@@ -9031,7 +9051,7 @@ class ChatComponent {
9031
9051
  <kendo-icon-wrapper name="pin" [svgIcon]="pinIcon"> </kendo-icon-wrapper>
9032
9052
  <chat-message-reference-content [message]="pinnedMessage"></chat-message-reference-content>
9033
9053
  <span class="k-spacer"></span>
9034
- <button kendoButton [svgIcon]="deleteIcon" [attr.title]="textFor('unpinMessageTitle')" (click)="unpin.emit(pinnedMessage)" fillMode="flat"></button>
9054
+ <button kendoButton icon="x" [svgIcon]="deleteIcon" [attr.title]="textFor('unpinMessageTitle')" (click)="unpin.emit(pinnedMessage)" fillMode="flat"></button>
9035
9055
  </div>
9036
9056
  } @if (processedMessages && processedMessages.length === 0) {
9037
9057
  <div class="k-message-list-content k-message-list-content-empty">
@@ -9064,6 +9084,7 @@ class ChatComponent {
9064
9084
  [size]="'small'"
9065
9085
  [themeColor]="'light'"
9066
9086
  [align]="{ horizontal: 'center' }"
9087
+ icon="arrow-down-outline"
9067
9088
  [svgIcon]="scrollToBottomIcon"
9068
9089
  (click)="anchor.scrollToBottom()"
9069
9090
  ></kendo-floatingactionbutton>
@@ -9216,7 +9237,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
9216
9237
  <kendo-icon-wrapper name="pin" [svgIcon]="pinIcon"> </kendo-icon-wrapper>
9217
9238
  <chat-message-reference-content [message]="pinnedMessage"></chat-message-reference-content>
9218
9239
  <span class="k-spacer"></span>
9219
- <button kendoButton [svgIcon]="deleteIcon" [attr.title]="textFor('unpinMessageTitle')" (click)="unpin.emit(pinnedMessage)" fillMode="flat"></button>
9240
+ <button kendoButton icon="x" [svgIcon]="deleteIcon" [attr.title]="textFor('unpinMessageTitle')" (click)="unpin.emit(pinnedMessage)" fillMode="flat"></button>
9220
9241
  </div>
9221
9242
  } @if (processedMessages && processedMessages.length === 0) {
9222
9243
  <div class="k-message-list-content k-message-list-content-empty">
@@ -9249,6 +9270,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
9249
9270
  [size]="'small'"
9250
9271
  [themeColor]="'light'"
9251
9272
  [align]="{ horizontal: 'center' }"
9273
+ icon="arrow-down-outline"
9252
9274
  [svgIcon]="scrollToBottomIcon"
9253
9275
  (click)="anchor.scrollToBottom()"
9254
9276
  ></kendo-floatingactionbutton>
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1770286936,
11
- "version": "23.0.0-develop.1",
10
+ "publishDate": 1770666693,
11
+ "version": "23.0.0-develop.10",
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": "23.0.0-develop.1",
3
+ "version": "23.0.0-develop.10",
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": 1770286936,
50
+ "publishDate": 1770666693,
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": "23.0.0-develop.1",
61
- "@progress/kendo-angular-inputs": "23.0.0-develop.1",
62
- "@progress/kendo-angular-layout": "23.0.0-develop.1",
63
- "@progress/kendo-angular-icons": "23.0.0-develop.1",
64
- "@progress/kendo-angular-common": "23.0.0-develop.1",
65
- "@progress/kendo-angular-intl": "23.0.0-develop.1",
66
- "@progress/kendo-angular-l10n": "23.0.0-develop.1",
67
- "@progress/kendo-angular-menu": "23.0.0-develop.1",
68
- "@progress/kendo-angular-popup": "23.0.0-develop.1",
69
- "@progress/kendo-angular-toolbar": "23.0.0-develop.1",
70
- "@progress/kendo-angular-upload": "23.0.0-develop.1",
60
+ "@progress/kendo-angular-buttons": "23.0.0-develop.10",
61
+ "@progress/kendo-angular-inputs": "23.0.0-develop.10",
62
+ "@progress/kendo-angular-layout": "23.0.0-develop.10",
63
+ "@progress/kendo-angular-icons": "23.0.0-develop.10",
64
+ "@progress/kendo-angular-common": "23.0.0-develop.10",
65
+ "@progress/kendo-angular-intl": "23.0.0-develop.10",
66
+ "@progress/kendo-angular-l10n": "23.0.0-develop.10",
67
+ "@progress/kendo-angular-menu": "23.0.0-develop.10",
68
+ "@progress/kendo-angular-popup": "23.0.0-develop.10",
69
+ "@progress/kendo-angular-toolbar": "23.0.0-develop.10",
70
+ "@progress/kendo-angular-upload": "23.0.0-develop.10",
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": "23.0.0-develop.1"
75
+ "@progress/kendo-angular-schematics": "23.0.0-develop.10"
76
76
  },
77
77
  "schematics": "./schematics/collection.json",
78
78
  "module": "fesm2022/progress-kendo-angular-conversational-ui.mjs",