@progress/kendo-angular-conversational-ui 24.0.0-develop.22 → 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, stopSmIcon, thumbUpIcon, thumbDownOutlineIcon, thumbDownIcon, thumbUpOutlineIcon, copyIcon, arrowRotateCwIcon, chevronUpIcon, chevronDownIcon, arrowUpOutlineIcon, paperclipOutlineAltRightIcon, undoIcon, downloadIcon, xIcon, moreVerticalIcon, chevronLeftIcon, chevronRightIcon, arrowRotateCwOutlineIcon, warningTriangleIcon, pinOutlineIcon, arrowDownOutlineIcon, cancelOutlineIcon, menuIcon, paperPlaneIcon } from '@progress/kendo-svg-icons';
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: 1778164687,
219
- version: '24.0.0-develop.22',
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 = stopSmIcon;
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 = thumbDownOutlineIcon;
1327
+ this.negativeRatingIcon = thumbDownIcon;
1328
1328
  }
1329
1329
  else if (this.promptOutput?.rating === 'negative') {
1330
1330
  this.negativeRatingIcon = thumbDownIcon;
1331
- this.positiveRatingIcon = thumbUpOutlineIcon;
1331
+ this.positiveRatingIcon = thumbUpIcon;
1332
1332
  }
1333
1333
  }
1334
1334
  copyIcon = copyIcon;
1335
1335
  retryIcon = arrowRotateCwIcon;
1336
- positiveRatingIcon = thumbUpOutlineIcon;
1337
- negativeRatingIcon = thumbDownOutlineIcon;
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 = thumbDownOutlineIcon;
1384
+ this.negativeRatingIcon = thumbDownIcon;
1385
1385
  }
1386
1386
  else {
1387
1387
  this.negativeRatingIcon = thumbDownIcon;
1388
- this.positiveRatingIcon = thumbUpOutlineIcon;
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-outline"
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-outline"
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-outline"
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-outline"
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-outline',
2480
- svgIcon: arrowUpOutlineIcon,
2481
- loadingIcon: 'stop-sm',
2482
- loadingSVGIcon: stopSmIcon,
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-outline-alt-right',
2492
- svgIcon: paperclipOutlineAltRightIcon,
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-outline',
3815
- svgIcon: arrowUpOutlineIcon,
3816
- loadingIcon: 'stop-sm',
3817
- loadingSVGIcon: stopSmIcon,
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-outline-alt-right',
3842
- svgIcon: paperclipOutlineAltRightIcon,
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-sm'
3996
+ * @default 'stop'
3997
3997
  */
3998
- loadingIcon = 'stop-sm';
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 stopSmIcon
4002
+ * @default stopIcon
4003
4003
  */
4004
- loadingSVGIcon = stopSmIcon;
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-outline';
4017
- this.svgIcon = arrowUpOutlineIcon;
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-outline-alt-right';
4146
- this.svgIcon = paperclipOutlineAltRightIcon;
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 = arrowRotateCwOutlineIcon;
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-outline" [svgIcon]="resendIcon" (click)="onResendMessage($event)"></button>
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-outline" [svgIcon]="resendIcon" (click)="onResendMessage($event)"></button>
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-outline" [svgIcon]="resendIcon" (click)="onResendMessage($event)"></button>
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-outline" [svgIcon]="resendIcon" (click)="onResendMessage($event)"></button>
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 = pinOutlineIcon;
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 = arrowDownOutlineIcon;
9459
+ scrollToBottomIcon = arrowDownIcon;
9460
9460
  /**
9461
9461
  * @hidden
9462
9462
  */
@@ -10951,8 +10951,8 @@ const defaultOutputActions = [{
10951
10951
  {
10952
10952
  name: 'discard',
10953
10953
  type: 'button',
10954
- icon: 'cancel-outline',
10955
- svgIcon: cancelOutlineIcon,
10954
+ icon: 'cancel',
10955
+ svgIcon: cancelIcon,
10956
10956
  text: 'Discard',
10957
10957
  fillMode: 'flat',
10958
10958
  }
@@ -11024,7 +11024,7 @@ class InlineAIPromptContentComponent {
11024
11024
  calculateMeasurement = calculateMeasurement;
11025
11025
  commandMenuIcon = menuIcon;
11026
11026
  sendIcon = paperPlaneIcon;
11027
- stopGenerationIcon = stopSmIcon;
11027
+ stopGenerationIcon = stopIcon;
11028
11028
  isListening = false;
11029
11029
  commandMenuItems = [];
11030
11030
  messages = {};
@@ -11281,7 +11281,7 @@ class InlineAIPromptContentComponent {
11281
11281
  (click)="handlePromptRequest()"
11282
11282
  [disabled]="!streaming && (!promptValue?.trim() || isListening)"
11283
11283
  [svgIcon]="streaming ? stopGenerationIcon : sendIcon"
11284
- [icon]="streaming ? 'stop-sm' : 'paper-plane'"
11284
+ [icon]="streaming ? 'stop' : 'paper-plane'"
11285
11285
  ></button>
11286
11286
  </kendo-textarea-suffix>
11287
11287
  </kendo-textarea>
@@ -11402,7 +11402,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
11402
11402
  (click)="handlePromptRequest()"
11403
11403
  [disabled]="!streaming && (!promptValue?.trim() || isListening)"
11404
11404
  [svgIcon]="streaming ? stopGenerationIcon : sendIcon"
11405
- [icon]="streaming ? 'stop-sm' : 'paper-plane'"
11405
+ [icon]="streaming ? 'stop' : 'paper-plane'"
11406
11406
  ></button>
11407
11407
  </kendo-textarea-suffix>
11408
11408
  </kendo-textarea>
@@ -11583,7 +11583,7 @@ class InlineAIPromptComponent {
11583
11583
  * The default actions are `copy`, `retry`, and `discard`.
11584
11584
  * To customize the appearance and order of the default actions, define them with the same `name`.
11585
11585
  *
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-outline', svgIcon: cancelOutlineIcon, text: 'Discard', fillMode: 'flat', themeColor: 'base', rounded: 'medium'}]
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'}]
11587
11587
  */
11588
11588
  outputActions = defaultOutputActions;
11589
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-outline', svgIcon: cancelOutlineIcon, text: 'Discard', fillMode: 'flat', themeColor: 'base', rounded: 'medium'}]
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
  /**
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1778164687,
11
- "version": "24.0.0-develop.22",
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.22",
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": 1778164687,
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.22",
105
- "@progress/kendo-angular-inputs": "24.0.0-develop.22",
106
- "@progress/kendo-angular-layout": "24.0.0-develop.22",
107
- "@progress/kendo-angular-icons": "24.0.0-develop.22",
108
- "@progress/kendo-angular-common": "24.0.0-develop.22",
109
- "@progress/kendo-angular-intl": "24.0.0-develop.22",
110
- "@progress/kendo-angular-l10n": "24.0.0-develop.22",
111
- "@progress/kendo-angular-menu": "24.0.0-develop.22",
112
- "@progress/kendo-angular-popup": "24.0.0-develop.22",
113
- "@progress/kendo-angular-toolbar": "24.0.0-develop.22",
114
- "@progress/kendo-angular-upload": "24.0.0-develop.22",
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.22"
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-sm'
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 stopSmIcon
44
+ * @default stopIcon
45
45
  */
46
46
  loadingSVGIcon: SVGIcon;
47
47
  /**