@progress/kendo-angular-conversational-ui 24.0.0-develop.21 → 24.0.0-develop.23
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,
|
|
14
|
+
import { moreHorizontalIcon, commentIcon, sparklesIcon, stopIcon, thumbUpIcon, thumbDownIcon, copyIcon, arrowRotateCwIcon, chevronUpIcon, chevronDownIcon, arrowUpIcon, paperclipIcon, undoIcon, downloadIcon, xIcon, moreVerticalIcon, chevronLeftIcon, chevronRightIcon, warningTriangleIcon, pinIcon, arrowDownIcon, cancelIcon, 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';
|
|
@@ -215,8 +215,8 @@ const packageMetadata = {
|
|
|
215
215
|
productName: 'Kendo UI for Angular',
|
|
216
216
|
productCode: 'KENDOUIANGULAR',
|
|
217
217
|
productCodes: ['KENDOUIANGULAR'],
|
|
218
|
-
publishDate:
|
|
219
|
-
version: '24.0.0-develop.
|
|
218
|
+
publishDate: 1778500771,
|
|
219
|
+
version: '24.0.0-develop.23',
|
|
220
220
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
221
221
|
};
|
|
222
222
|
|
|
@@ -820,7 +820,7 @@ class AIPromptComponent {
|
|
|
820
820
|
/**
|
|
821
821
|
* @hidden
|
|
822
822
|
*/
|
|
823
|
-
fabStopGenerationSVGIcon =
|
|
823
|
+
fabStopGenerationSVGIcon = stopIcon;
|
|
824
824
|
/**
|
|
825
825
|
* @hidden
|
|
826
826
|
*/
|
|
@@ -1324,17 +1324,17 @@ class AIPromptOutputCardComponent {
|
|
|
1324
1324
|
ngOnInit() {
|
|
1325
1325
|
if (this.promptOutput?.rating === 'positive') {
|
|
1326
1326
|
this.positiveRatingIcon = thumbUpIcon;
|
|
1327
|
-
this.negativeRatingIcon =
|
|
1327
|
+
this.negativeRatingIcon = thumbDownIcon;
|
|
1328
1328
|
}
|
|
1329
1329
|
else if (this.promptOutput?.rating === 'negative') {
|
|
1330
1330
|
this.negativeRatingIcon = thumbDownIcon;
|
|
1331
|
-
this.positiveRatingIcon =
|
|
1331
|
+
this.positiveRatingIcon = thumbUpIcon;
|
|
1332
1332
|
}
|
|
1333
1333
|
}
|
|
1334
1334
|
copyIcon = copyIcon;
|
|
1335
1335
|
retryIcon = arrowRotateCwIcon;
|
|
1336
|
-
positiveRatingIcon =
|
|
1337
|
-
negativeRatingIcon =
|
|
1336
|
+
positiveRatingIcon = thumbUpIcon;
|
|
1337
|
+
negativeRatingIcon = thumbDownIcon;
|
|
1338
1338
|
titleId = `k-output-card-${guid()}`;
|
|
1339
1339
|
messageFor(text) {
|
|
1340
1340
|
return this.localization.get(text);
|
|
@@ -1381,11 +1381,11 @@ class AIPromptOutputCardComponent {
|
|
|
1381
1381
|
this.service.outputRatingChangeEvent.next(eventArgs);
|
|
1382
1382
|
if (ratingType === 'positive') {
|
|
1383
1383
|
this.positiveRatingIcon = thumbUpIcon;
|
|
1384
|
-
this.negativeRatingIcon =
|
|
1384
|
+
this.negativeRatingIcon = thumbDownIcon;
|
|
1385
1385
|
}
|
|
1386
1386
|
else {
|
|
1387
1387
|
this.negativeRatingIcon = thumbDownIcon;
|
|
1388
|
-
this.positiveRatingIcon =
|
|
1388
|
+
this.positiveRatingIcon = thumbUpIcon;
|
|
1389
1389
|
}
|
|
1390
1390
|
}
|
|
1391
1391
|
/**
|
|
@@ -1431,13 +1431,13 @@ class AIPromptOutputCardComponent {
|
|
|
1431
1431
|
<span class="k-spacer"></span>
|
|
1432
1432
|
<button kendoButton
|
|
1433
1433
|
fillMode="flat"
|
|
1434
|
-
icon="thumb-up
|
|
1434
|
+
icon="thumb-up"
|
|
1435
1435
|
[svgIcon]="positiveRatingIcon"
|
|
1436
1436
|
(click)="handleRating('positive')">
|
|
1437
1437
|
</button>
|
|
1438
1438
|
<button kendoButton
|
|
1439
1439
|
fillMode="flat"
|
|
1440
|
-
icon="thumb-down
|
|
1440
|
+
icon="thumb-down"
|
|
1441
1441
|
[svgIcon]="negativeRatingIcon"
|
|
1442
1442
|
(click)="handleRating('negative')">
|
|
1443
1443
|
</button>
|
|
@@ -1485,13 +1485,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
1485
1485
|
<span class="k-spacer"></span>
|
|
1486
1486
|
<button kendoButton
|
|
1487
1487
|
fillMode="flat"
|
|
1488
|
-
icon="thumb-up
|
|
1488
|
+
icon="thumb-up"
|
|
1489
1489
|
[svgIcon]="positiveRatingIcon"
|
|
1490
1490
|
(click)="handleRating('positive')">
|
|
1491
1491
|
</button>
|
|
1492
1492
|
<button kendoButton
|
|
1493
1493
|
fillMode="flat"
|
|
1494
|
-
icon="thumb-down
|
|
1494
|
+
icon="thumb-down"
|
|
1495
1495
|
[svgIcon]="negativeRatingIcon"
|
|
1496
1496
|
(click)="handleRating('negative')">
|
|
1497
1497
|
</button>
|
|
@@ -2476,10 +2476,10 @@ const STB_DEFAULT_SETTINGS$1 = {
|
|
|
2476
2476
|
const SEND_BTN_DEFAULT_SETTINGS = {
|
|
2477
2477
|
rounded: 'full',
|
|
2478
2478
|
size: 'small',
|
|
2479
|
-
icon: 'arrow-up
|
|
2480
|
-
svgIcon:
|
|
2481
|
-
loadingIcon: 'stop
|
|
2482
|
-
loadingSVGIcon:
|
|
2479
|
+
icon: 'arrow-up',
|
|
2480
|
+
svgIcon: arrowUpIcon,
|
|
2481
|
+
loadingIcon: 'stop',
|
|
2482
|
+
loadingSVGIcon: stopIcon,
|
|
2483
2483
|
};
|
|
2484
2484
|
/**
|
|
2485
2485
|
* @hidden
|
|
@@ -2488,8 +2488,8 @@ const FILESELECT_BUTTON_DEFAULT_SETTINGS$1 = {
|
|
|
2488
2488
|
multiple: true,
|
|
2489
2489
|
disabled: false,
|
|
2490
2490
|
fillMode: 'clear',
|
|
2491
|
-
icon: 'paperclip
|
|
2492
|
-
svgIcon:
|
|
2491
|
+
icon: 'paperclip',
|
|
2492
|
+
svgIcon: paperclipIcon,
|
|
2493
2493
|
size: 'small',
|
|
2494
2494
|
rounded: 'full',
|
|
2495
2495
|
};
|
|
@@ -3811,10 +3811,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
3811
3811
|
const ACTION_BUTTON_DEFAULT_SETTINGS = {
|
|
3812
3812
|
rounded: 'full',
|
|
3813
3813
|
size: 'small',
|
|
3814
|
-
icon: 'arrow-up
|
|
3815
|
-
svgIcon:
|
|
3816
|
-
loadingIcon: 'stop
|
|
3817
|
-
loadingSVGIcon:
|
|
3814
|
+
icon: 'arrow-up',
|
|
3815
|
+
svgIcon: arrowUpIcon,
|
|
3816
|
+
loadingIcon: 'stop',
|
|
3817
|
+
loadingSVGIcon: stopIcon,
|
|
3818
3818
|
};
|
|
3819
3819
|
/**
|
|
3820
3820
|
* @hidden
|
|
@@ -3838,8 +3838,8 @@ const FILESELECT_BUTTON_DEFAULT_SETTINGS = {
|
|
|
3838
3838
|
fillMode: 'flat',
|
|
3839
3839
|
size: 'small',
|
|
3840
3840
|
rounded: 'full',
|
|
3841
|
-
icon: 'paperclip
|
|
3842
|
-
svgIcon:
|
|
3841
|
+
icon: 'paperclip',
|
|
3842
|
+
svgIcon: paperclipIcon,
|
|
3843
3843
|
multiple: true,
|
|
3844
3844
|
restrictions: null,
|
|
3845
3845
|
accept: null
|
|
@@ -3993,15 +3993,15 @@ class PromptBoxActionButtonComponent extends PromptBoxBaseTool {
|
|
|
3993
3993
|
/**
|
|
3994
3994
|
* Sets the icon to be displayed when the **Action** button is in loading state.
|
|
3995
3995
|
*
|
|
3996
|
-
* @default 'stop
|
|
3996
|
+
* @default 'stop'
|
|
3997
3997
|
*/
|
|
3998
|
-
loadingIcon = 'stop
|
|
3998
|
+
loadingIcon = 'stop';
|
|
3999
3999
|
/**
|
|
4000
4000
|
* Sets the SVG icon to be displayed when the **Action** button is in loading state.
|
|
4001
4001
|
*
|
|
4002
|
-
* @default
|
|
4002
|
+
* @default stopIcon
|
|
4003
4003
|
*/
|
|
4004
|
-
loadingSVGIcon =
|
|
4004
|
+
loadingSVGIcon = stopIcon;
|
|
4005
4005
|
/**
|
|
4006
4006
|
* Fires when the user clicks the Action button.
|
|
4007
4007
|
* @hidden
|
|
@@ -4013,8 +4013,8 @@ class PromptBoxActionButtonComponent extends PromptBoxBaseTool {
|
|
|
4013
4013
|
this.disabled = true;
|
|
4014
4014
|
this.rounded = 'full';
|
|
4015
4015
|
this.size = 'small';
|
|
4016
|
-
this.icon = 'arrow-up
|
|
4017
|
-
this.svgIcon =
|
|
4016
|
+
this.icon = 'arrow-up';
|
|
4017
|
+
this.svgIcon = arrowUpIcon;
|
|
4018
4018
|
}
|
|
4019
4019
|
/**
|
|
4020
4020
|
* @hidden
|
|
@@ -4142,8 +4142,8 @@ class PromptBoxFileSelectButtonComponent extends PromptBoxBaseTool {
|
|
|
4142
4142
|
this.disabled = false;
|
|
4143
4143
|
this.fillMode = 'flat';
|
|
4144
4144
|
this.size = 'small';
|
|
4145
|
-
this.icon = 'paperclip
|
|
4146
|
-
this.svgIcon =
|
|
4145
|
+
this.icon = 'paperclip';
|
|
4146
|
+
this.svgIcon = paperclipIcon;
|
|
4147
4147
|
}
|
|
4148
4148
|
/**
|
|
4149
4149
|
* @hidden
|
|
@@ -7304,7 +7304,7 @@ class MessageComponent extends ChatItem {
|
|
|
7304
7304
|
expandIcon = chevronDownIcon;
|
|
7305
7305
|
collapseIcon = chevronUpIcon;
|
|
7306
7306
|
downloadIcon = downloadIcon;
|
|
7307
|
-
resendIcon =
|
|
7307
|
+
resendIcon = arrowRotateCwIcon;
|
|
7308
7308
|
messageFailedIcon = warningTriangleIcon;
|
|
7309
7309
|
isMessageExpanded = false;
|
|
7310
7310
|
showExpandCollapseIcon = false;
|
|
@@ -7611,7 +7611,7 @@ class MessageComponent extends ChatItem {
|
|
|
7611
7611
|
</div>
|
|
7612
7612
|
</div>
|
|
7613
7613
|
} @if (!message.typing) { @if (useCustomContentTemplate) { @if (message.failed) {
|
|
7614
|
-
<button kendoButton class="k-resend-button" size="xsmall" fillMode="clear" icon="arrow-rotate-cw
|
|
7614
|
+
<button kendoButton class="k-resend-button" size="xsmall" fillMode="clear" icon="arrow-rotate-cw" [svgIcon]="resendIcon" (click)="onResendMessage($event)"></button>
|
|
7615
7615
|
}
|
|
7616
7616
|
<div
|
|
7617
7617
|
class="k-chat-bubble k-bubble"
|
|
@@ -7647,7 +7647,7 @@ class MessageComponent extends ChatItem {
|
|
|
7647
7647
|
}
|
|
7648
7648
|
</div>
|
|
7649
7649
|
} @if (!useCustomContentTemplate && hasMessageContent) { @if (message.failed) {
|
|
7650
|
-
<button kendoButton class="k-resend-button" size="xsmall" fillMode="clear" icon="arrow-rotate-cw
|
|
7650
|
+
<button kendoButton class="k-resend-button" size="xsmall" fillMode="clear" icon="arrow-rotate-cw" [svgIcon]="resendIcon" (click)="onResendMessage($event)"></button>
|
|
7651
7651
|
}
|
|
7652
7652
|
<div
|
|
7653
7653
|
class="k-chat-bubble k-bubble"
|
|
@@ -7828,7 +7828,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
7828
7828
|
</div>
|
|
7829
7829
|
</div>
|
|
7830
7830
|
} @if (!message.typing) { @if (useCustomContentTemplate) { @if (message.failed) {
|
|
7831
|
-
<button kendoButton class="k-resend-button" size="xsmall" fillMode="clear" icon="arrow-rotate-cw
|
|
7831
|
+
<button kendoButton class="k-resend-button" size="xsmall" fillMode="clear" icon="arrow-rotate-cw" [svgIcon]="resendIcon" (click)="onResendMessage($event)"></button>
|
|
7832
7832
|
}
|
|
7833
7833
|
<div
|
|
7834
7834
|
class="k-chat-bubble k-bubble"
|
|
@@ -7864,7 +7864,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
7864
7864
|
}
|
|
7865
7865
|
</div>
|
|
7866
7866
|
} @if (!useCustomContentTemplate && hasMessageContent) { @if (message.failed) {
|
|
7867
|
-
<button kendoButton class="k-resend-button" size="xsmall" fillMode="clear" icon="arrow-rotate-cw
|
|
7867
|
+
<button kendoButton class="k-resend-button" size="xsmall" fillMode="clear" icon="arrow-rotate-cw" [svgIcon]="resendIcon" (click)="onResendMessage($event)"></button>
|
|
7868
7868
|
}
|
|
7869
7869
|
<div
|
|
7870
7870
|
class="k-chat-bubble k-bubble"
|
|
@@ -9444,7 +9444,7 @@ class ChatComponent {
|
|
|
9444
9444
|
/**
|
|
9445
9445
|
* @hidden
|
|
9446
9446
|
*/
|
|
9447
|
-
pinIcon =
|
|
9447
|
+
pinIcon = pinIcon;
|
|
9448
9448
|
/**
|
|
9449
9449
|
* @hidden
|
|
9450
9450
|
*/
|
|
@@ -9456,7 +9456,7 @@ class ChatComponent {
|
|
|
9456
9456
|
/**
|
|
9457
9457
|
* @hidden
|
|
9458
9458
|
*/
|
|
9459
|
-
scrollToBottomIcon =
|
|
9459
|
+
scrollToBottomIcon = arrowDownIcon;
|
|
9460
9460
|
/**
|
|
9461
9461
|
* @hidden
|
|
9462
9462
|
*/
|
|
@@ -9998,6 +9998,7 @@ class ChatComponent {
|
|
|
9998
9998
|
this.autoScroll = true;
|
|
9999
9999
|
this.subs.add(this.zone.onStable.pipe(take(1)).subscribe(() => {
|
|
10000
10000
|
this.anchor?.scrollToBottom();
|
|
10001
|
+
this.anchor?.calculateMessageBoxSeparator();
|
|
10001
10002
|
}));
|
|
10002
10003
|
}
|
|
10003
10004
|
else if (currentLength > 0 && !this._pendingScrollAction) {
|
|
@@ -10950,8 +10951,8 @@ const defaultOutputActions = [{
|
|
|
10950
10951
|
{
|
|
10951
10952
|
name: 'discard',
|
|
10952
10953
|
type: 'button',
|
|
10953
|
-
icon: 'cancel
|
|
10954
|
-
svgIcon:
|
|
10954
|
+
icon: 'cancel',
|
|
10955
|
+
svgIcon: cancelIcon,
|
|
10955
10956
|
text: 'Discard',
|
|
10956
10957
|
fillMode: 'flat',
|
|
10957
10958
|
}
|
|
@@ -11023,7 +11024,7 @@ class InlineAIPromptContentComponent {
|
|
|
11023
11024
|
calculateMeasurement = calculateMeasurement;
|
|
11024
11025
|
commandMenuIcon = menuIcon;
|
|
11025
11026
|
sendIcon = paperPlaneIcon;
|
|
11026
|
-
stopGenerationIcon =
|
|
11027
|
+
stopGenerationIcon = stopIcon;
|
|
11027
11028
|
isListening = false;
|
|
11028
11029
|
commandMenuItems = [];
|
|
11029
11030
|
messages = {};
|
|
@@ -11280,7 +11281,7 @@ class InlineAIPromptContentComponent {
|
|
|
11280
11281
|
(click)="handlePromptRequest()"
|
|
11281
11282
|
[disabled]="!streaming && (!promptValue?.trim() || isListening)"
|
|
11282
11283
|
[svgIcon]="streaming ? stopGenerationIcon : sendIcon"
|
|
11283
|
-
[icon]="streaming ? 'stop
|
|
11284
|
+
[icon]="streaming ? 'stop' : 'paper-plane'"
|
|
11284
11285
|
></button>
|
|
11285
11286
|
</kendo-textarea-suffix>
|
|
11286
11287
|
</kendo-textarea>
|
|
@@ -11401,7 +11402,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
11401
11402
|
(click)="handlePromptRequest()"
|
|
11402
11403
|
[disabled]="!streaming && (!promptValue?.trim() || isListening)"
|
|
11403
11404
|
[svgIcon]="streaming ? stopGenerationIcon : sendIcon"
|
|
11404
|
-
[icon]="streaming ? 'stop
|
|
11405
|
+
[icon]="streaming ? 'stop' : 'paper-plane'"
|
|
11405
11406
|
></button>
|
|
11406
11407
|
</kendo-textarea-suffix>
|
|
11407
11408
|
</kendo-textarea>
|
|
@@ -11582,7 +11583,7 @@ class InlineAIPromptComponent {
|
|
|
11582
11583
|
* The default actions are `copy`, `retry`, and `discard`.
|
|
11583
11584
|
* To customize the appearance and order of the default actions, define them with the same `name`.
|
|
11584
11585
|
*
|
|
11585
|
-
* @default [{ name: 'copy', type: 'button', icon: 'copy', svgIcon: copyIcon, text: 'Copy', fillMode: 'flat', themeColor: 'primary', rounded: 'medium'}, { name: 'retry', type: 'button', icon: 'arrow-rotate-cw', svgIcon: arrowRotateCwIcon, text: 'Retry', fillMode: 'flat', themeColor: 'primary', rounded: 'medium'}, { name: 'discard', type: 'button', icon: 'cancel
|
|
11586
|
+
* @default [{ name: 'copy', type: 'button', icon: 'copy', svgIcon: copyIcon, text: 'Copy', fillMode: 'flat', themeColor: 'primary', rounded: 'medium'}, { name: 'retry', type: 'button', icon: 'arrow-rotate-cw', svgIcon: arrowRotateCwIcon, text: 'Retry', fillMode: 'flat', themeColor: 'primary', rounded: 'medium'}, { name: 'discard', type: 'button', icon: 'cancel', svgIcon: cancelIcon, text: 'Discard', fillMode: 'flat', themeColor: 'base', rounded: 'medium'}]
|
|
11586
11587
|
*/
|
|
11587
11588
|
outputActions = defaultOutputActions;
|
|
11588
11589
|
/**
|
|
@@ -76,7 +76,7 @@ export declare class InlineAIPromptComponent implements AfterViewInit, OnDestroy
|
|
|
76
76
|
* The default actions are `copy`, `retry`, and `discard`.
|
|
77
77
|
* To customize the appearance and order of the default actions, define them with the same `name`.
|
|
78
78
|
*
|
|
79
|
-
* @default [{ name: 'copy', type: 'button', icon: 'copy', svgIcon: copyIcon, text: 'Copy', fillMode: 'flat', themeColor: 'primary', rounded: 'medium'}, { name: 'retry', type: 'button', icon: 'arrow-rotate-cw', svgIcon: arrowRotateCwIcon, text: 'Retry', fillMode: 'flat', themeColor: 'primary', rounded: 'medium'}, { name: 'discard', type: 'button', icon: 'cancel
|
|
79
|
+
* @default [{ name: 'copy', type: 'button', icon: 'copy', svgIcon: copyIcon, text: 'Copy', fillMode: 'flat', themeColor: 'primary', rounded: 'medium'}, { name: 'retry', type: 'button', icon: 'arrow-rotate-cw', svgIcon: arrowRotateCwIcon, text: 'Retry', fillMode: 'flat', themeColor: 'primary', rounded: 'medium'}, { name: 'discard', type: 'button', icon: 'cancel', svgIcon: cancelIcon, text: 'Discard', fillMode: 'flat', themeColor: 'base', rounded: 'medium'}]
|
|
80
80
|
*/
|
|
81
81
|
outputActions: InlineAIPromptOutputAction[];
|
|
82
82
|
/**
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "24.0.0-develop.
|
|
10
|
+
"publishDate": 1778500771,
|
|
11
|
+
"version": "24.0.0-develop.23",
|
|
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": "24.0.0-develop.
|
|
3
|
+
"version": "24.0.0-develop.23",
|
|
4
4
|
"description": "Kendo UI for Angular Conversational UI components",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"package": {
|
|
92
92
|
"productName": "Kendo UI for Angular",
|
|
93
93
|
"productCode": "KENDOUIANGULAR",
|
|
94
|
-
"publishDate":
|
|
94
|
+
"publishDate": 1778500771,
|
|
95
95
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
@@ -101,22 +101,22 @@
|
|
|
101
101
|
"@angular/core": "19 - 21",
|
|
102
102
|
"@angular/platform-browser": "19 - 21",
|
|
103
103
|
"@progress/kendo-licensing": "^1.11.0",
|
|
104
|
-
"@progress/kendo-angular-buttons": "24.0.0-develop.
|
|
105
|
-
"@progress/kendo-angular-inputs": "24.0.0-develop.
|
|
106
|
-
"@progress/kendo-angular-layout": "24.0.0-develop.
|
|
107
|
-
"@progress/kendo-angular-icons": "24.0.0-develop.
|
|
108
|
-
"@progress/kendo-angular-common": "24.0.0-develop.
|
|
109
|
-
"@progress/kendo-angular-intl": "24.0.0-develop.
|
|
110
|
-
"@progress/kendo-angular-l10n": "24.0.0-develop.
|
|
111
|
-
"@progress/kendo-angular-menu": "24.0.0-develop.
|
|
112
|
-
"@progress/kendo-angular-popup": "24.0.0-develop.
|
|
113
|
-
"@progress/kendo-angular-toolbar": "24.0.0-develop.
|
|
114
|
-
"@progress/kendo-angular-upload": "24.0.0-develop.
|
|
104
|
+
"@progress/kendo-angular-buttons": "24.0.0-develop.23",
|
|
105
|
+
"@progress/kendo-angular-inputs": "24.0.0-develop.23",
|
|
106
|
+
"@progress/kendo-angular-layout": "24.0.0-develop.23",
|
|
107
|
+
"@progress/kendo-angular-icons": "24.0.0-develop.23",
|
|
108
|
+
"@progress/kendo-angular-common": "24.0.0-develop.23",
|
|
109
|
+
"@progress/kendo-angular-intl": "24.0.0-develop.23",
|
|
110
|
+
"@progress/kendo-angular-l10n": "24.0.0-develop.23",
|
|
111
|
+
"@progress/kendo-angular-menu": "24.0.0-develop.23",
|
|
112
|
+
"@progress/kendo-angular-popup": "24.0.0-develop.23",
|
|
113
|
+
"@progress/kendo-angular-toolbar": "24.0.0-develop.23",
|
|
114
|
+
"@progress/kendo-angular-upload": "24.0.0-develop.23",
|
|
115
115
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
116
116
|
},
|
|
117
117
|
"dependencies": {
|
|
118
118
|
"tslib": "^2.3.1",
|
|
119
|
-
"@progress/kendo-angular-schematics": "24.0.0-develop.
|
|
119
|
+
"@progress/kendo-angular-schematics": "24.0.0-develop.23"
|
|
120
120
|
},
|
|
121
121
|
"schematics": "./schematics/collection.json",
|
|
122
122
|
"module": "fesm2022/progress-kendo-angular-conversational-ui.mjs",
|
|
@@ -35,13 +35,13 @@ export declare class PromptBoxActionButtonComponent extends PromptBoxBaseTool {
|
|
|
35
35
|
/**
|
|
36
36
|
* Sets the icon to be displayed when the **Action** button is in loading state.
|
|
37
37
|
*
|
|
38
|
-
* @default 'stop
|
|
38
|
+
* @default 'stop'
|
|
39
39
|
*/
|
|
40
40
|
loadingIcon: string;
|
|
41
41
|
/**
|
|
42
42
|
* Sets the SVG icon to be displayed when the **Action** button is in loading state.
|
|
43
43
|
*
|
|
44
|
-
* @default
|
|
44
|
+
* @default stopIcon
|
|
45
45
|
*/
|
|
46
46
|
loadingSVGIcon: SVGIcon;
|
|
47
47
|
/**
|