@progress/kendo-angular-buttons 24.0.0-develop.13 → 24.0.0-develop.15

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.
@@ -143,7 +143,6 @@ export declare class ButtonComponent implements OnInit, OnDestroy, OnChanges {
143
143
  set isFocused(isFocused: boolean);
144
144
  get isFocused(): boolean;
145
145
  get classButton(): boolean;
146
- get isToggleable(): boolean;
147
146
  get iconButtonClass(): boolean;
148
147
  get classDisabled(): boolean;
149
148
  get classActive(): boolean;
@@ -57,7 +57,6 @@ export declare class ChipListComponent implements OnInit, AfterViewInit, AfterCo
57
57
  */
58
58
  remove: EventEmitter<ChipListRemoveEvent>;
59
59
  chips: QueryList<ChipComponent>;
60
- get single(): boolean;
61
60
  get multiple(): boolean;
62
61
  /**
63
62
  * @hidden
@@ -133,8 +133,7 @@ export declare class ChipComponent implements OnInit, AfterViewInit, OnChanges {
133
133
  contentClick: EventEmitter<ChipContentClickEvent>;
134
134
  tabIndex: number;
135
135
  hostClass: boolean;
136
- get hasIconClass(): boolean;
137
- get disabledClass(): boolean;
136
+ get disabledClass(): boolean | null;
138
137
  get selectedClass(): boolean;
139
138
  get focusedClass(): boolean;
140
139
  /**
@@ -49,8 +49,8 @@ const packageMetadata = {
49
49
  productName: 'Kendo UI for Angular',
50
50
  productCode: 'KENDOUIANGULAR',
51
51
  productCodes: ['KENDOUIANGULAR'],
52
- publishDate: 1777479297,
53
- version: '24.0.0-develop.13',
52
+ publishDate: 1777541206,
53
+ version: '24.0.0-develop.15',
54
54
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
55
55
  };
56
56
 
@@ -375,9 +375,6 @@ class ButtonComponent {
375
375
  get classButton() {
376
376
  return true;
377
377
  }
378
- get isToggleable() {
379
- return this.toggleable;
380
- }
381
378
  get iconButtonClass() {
382
379
  const hasIcon = this.icon || this.iconClass || this.imageUrl || this.svgIcon;
383
380
  return hasIcon && !this.hasText;
@@ -553,7 +550,7 @@ class ButtonComponent {
553
550
  }
554
551
  }
555
552
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ButtonComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: KendoButtonService, optional: true }, { token: i1.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
556
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: ButtonComponent, isStandalone: true, selector: "button[kendoButton]", inputs: { arrowIcon: "arrowIcon", toggleable: "toggleable", togglable: "togglable", selected: "selected", tabIndex: "tabIndex", imageUrl: "imageUrl", iconPosition: "iconPosition", iconClass: "iconClass", icon: "icon", disabled: "disabled", size: "size", rounded: "rounded", fillMode: "fillMode", themeColor: "themeColor", svgIcon: "svgIcon", primary: "primary", look: "look" }, outputs: { selectedChange: "selectedChange", click: "click" }, host: { listeners: { "focus": "onFocus()", "blur": "onBlur()" }, properties: { "class.k-button": "this.classButton", "class.k-toggle-button": "this.isToggleable", "class.k-icon-button": "this.iconButtonClass", "class.k-disabled": "this.classDisabled", "class.k-selected": "this.classActive", "attr.dir": "this.getDirection" } }, providers: [
553
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: ButtonComponent, isStandalone: true, selector: "button[kendoButton]", inputs: { arrowIcon: "arrowIcon", toggleable: "toggleable", togglable: "togglable", selected: "selected", tabIndex: "tabIndex", imageUrl: "imageUrl", iconPosition: "iconPosition", iconClass: "iconClass", icon: "icon", disabled: "disabled", size: "size", rounded: "rounded", fillMode: "fillMode", themeColor: "themeColor", svgIcon: "svgIcon", primary: "primary", look: "look" }, outputs: { selectedChange: "selectedChange", click: "click" }, host: { listeners: { "focus": "onFocus()", "blur": "onBlur()" }, properties: { "class.k-button": "this.classButton", "class.k-icon-button": "this.iconButtonClass", "class.k-disabled": "this.classDisabled", "class.k-selected": "this.classActive", "attr.dir": "this.getDirection" } }, providers: [
557
554
  LocalizationService,
558
555
  {
559
556
  provide: L10N_PREFIX,
@@ -694,9 +691,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
694
691
  }], classButton: [{
695
692
  type: HostBinding,
696
693
  args: ['class.k-button']
697
- }], isToggleable: [{
698
- type: HostBinding,
699
- args: ['class.k-toggle-button']
700
694
  }], iconButtonClass: [{
701
695
  type: HostBinding,
702
696
  args: ['class.k-icon-button']
@@ -1215,11 +1209,8 @@ class ChipComponent {
1215
1209
  contentClick = new EventEmitter();
1216
1210
  tabIndex = 0;
1217
1211
  hostClass = true;
1218
- get hasIconClass() {
1219
- return Boolean(this.icon || this.iconClass || (this.avatarSettings && !isObjectEmpty(this.avatarSettings)));
1220
- }
1221
1212
  get disabledClass() {
1222
- return this.disabled;
1213
+ return this.disabled || null;
1223
1214
  }
1224
1215
  get selectedClass() {
1225
1216
  return this.selected;
@@ -1261,6 +1252,7 @@ class ChipComponent {
1261
1252
  this.subs.add(this.localizationService.changes
1262
1253
  .subscribe(({ rtl }) => this.direction = rtl ? 'rtl' : 'ltr'));
1263
1254
  this.renderer.setAttribute(this.element.nativeElement, 'role', 'button');
1255
+ this.renderer.setAttribute(this.element.nativeElement, 'aria-pressed', `${this.selected}`);
1264
1256
  }
1265
1257
  ngOnDestroy() {
1266
1258
  this.subs.unsubscribe();
@@ -1401,7 +1393,7 @@ class ChipComponent {
1401
1393
  }
1402
1394
  }
1403
1395
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ChipComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
1404
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: ChipComponent, isStandalone: true, selector: "kendo-chip", inputs: { label: "label", icon: "icon", svgIcon: "svgIcon", iconClass: "iconClass", avatarSettings: "avatarSettings", selected: "selected", removable: "removable", removeIcon: "removeIcon", removeSvgIcon: "removeSvgIcon", hasMenu: "hasMenu", menuIcon: "menuIcon", menuSvgIcon: "menuSvgIcon", disabled: "disabled", size: "size", rounded: "rounded", fillMode: "fillMode", themeColor: "themeColor" }, outputs: { remove: "remove", menuToggle: "menuToggle", contentClick: "contentClick" }, host: { properties: { "attr.tabindex": "this.tabIndex", "class.k-chip": "this.hostClass", "class.k-chip-has-icon": "this.hasIconClass", "attr.aria-disabled": "this.disabledClass", "class.k-disabled": "this.disabledClass", "class.k-selected": "this.selectedClass", "class.k-focus": "this.focusedClass", "attr.dir": "this.direction" } }, providers: [
1396
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: ChipComponent, isStandalone: true, selector: "kendo-chip", inputs: { label: "label", icon: "icon", svgIcon: "svgIcon", iconClass: "iconClass", avatarSettings: "avatarSettings", selected: "selected", removable: "removable", removeIcon: "removeIcon", removeSvgIcon: "removeSvgIcon", hasMenu: "hasMenu", menuIcon: "menuIcon", menuSvgIcon: "menuSvgIcon", disabled: "disabled", size: "size", rounded: "rounded", fillMode: "fillMode", themeColor: "themeColor" }, outputs: { remove: "remove", menuToggle: "menuToggle", contentClick: "contentClick" }, host: { properties: { "attr.tabindex": "this.tabIndex", "class.k-chip": "this.hostClass", "attr.aria-disabled": "this.disabledClass", "class.k-disabled": "this.disabledClass", "class.k-selected": "this.selectedClass", "class.k-focus": "this.focusedClass", "attr.dir": "this.direction" } }, providers: [
1405
1397
  LocalizationService,
1406
1398
  {
1407
1399
  provide: L10N_PREFIX,
@@ -1424,7 +1416,7 @@ class ChipComponent {
1424
1416
  }
1425
1417
  @if (avatarSettings) {
1426
1418
  <span
1427
- class="k-chip-avatar k-avatar k-avatar-sm k-avatar-solid k-avatar-solid-primary k-rounded-full"
1419
+ class="k-chip-avatar k-avatar"
1428
1420
  [ngStyle]="avatarSettings.cssStyle">
1429
1421
  @if (avatarSettings?.imageSrc) {
1430
1422
  <span class="k-avatar-image">
@@ -1495,7 +1487,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
1495
1487
  }
1496
1488
  @if (avatarSettings) {
1497
1489
  <span
1498
- class="k-chip-avatar k-avatar k-avatar-sm k-avatar-solid k-avatar-solid-primary k-rounded-full"
1490
+ class="k-chip-avatar k-avatar"
1499
1491
  [ngStyle]="avatarSettings.cssStyle">
1500
1492
  @if (avatarSettings?.imageSrc) {
1501
1493
  <span class="k-avatar-image">
@@ -1600,9 +1592,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
1600
1592
  }], hostClass: [{
1601
1593
  type: HostBinding,
1602
1594
  args: ['class.k-chip']
1603
- }], hasIconClass: [{
1604
- type: HostBinding,
1605
- args: ['class.k-chip-has-icon']
1606
1595
  }], disabledClass: [{
1607
1596
  type: HostBinding,
1608
1597
  args: ['attr.aria-disabled']
@@ -1674,9 +1663,6 @@ class ChipListComponent {
1674
1663
  */
1675
1664
  remove = new EventEmitter();
1676
1665
  chips;
1677
- get single() {
1678
- return this.selection === 'single';
1679
- }
1680
1666
  get multiple() {
1681
1667
  return this.selection === 'multiple' ? true : undefined;
1682
1668
  }
@@ -1861,11 +1847,11 @@ class ChipListComponent {
1861
1847
  this.chips.forEach((chip, idx) => {
1862
1848
  const chipEl = chip.element.nativeElement;
1863
1849
  this.renderer.removeAttribute(chipEl, 'aria-pressed');
1864
- if (this.selection !== 'none') {
1865
- this.renderer.setAttribute(chipEl, 'aria-selected', `${chip.selected}`);
1866
- }
1867
1850
  if (this.role === 'listbox') {
1868
1851
  this.renderer.setAttribute(chipEl, 'role', 'option');
1852
+ if (this.selection !== 'none') {
1853
+ this.renderer.setAttribute(chipEl, 'aria-selected', `${chip.selected}`);
1854
+ }
1869
1855
  }
1870
1856
  if (!this.navigable) {
1871
1857
  return;
@@ -1898,7 +1884,7 @@ class ChipListComponent {
1898
1884
  }
1899
1885
  }
1900
1886
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ChipListComponent, deps: [{ token: i1.LocalizationService }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1901
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: ChipListComponent, isStandalone: true, selector: "kendo-chiplist, kendo-chip-list", inputs: { orientation: "orientation", selection: "selection", size: "size", role: "role", navigable: "navigable" }, outputs: { selectedChange: "selectedChange", remove: "remove" }, host: { listeners: { "click": "onClick($event)" }, properties: { "class.k-chip-list": "this.hostClass", "attr.aria-orientation": "this.orientation", "attr.dir": "this.direction", "class.k-selection-single": "this.single", "attr.aria-multiselectable": "this.multiple", "class.k-selection-multiple": "this.multiple", "attr.role": "this.role" } }, providers: [
1887
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: ChipListComponent, isStandalone: true, selector: "kendo-chiplist, kendo-chip-list", inputs: { orientation: "orientation", selection: "selection", size: "size", role: "role", navigable: "navigable" }, outputs: { selectedChange: "selectedChange", remove: "remove" }, host: { listeners: { "click": "onClick($event)" }, properties: { "class.k-chip-list": "this.hostClass", "attr.aria-orientation": "this.orientation", "attr.dir": "this.direction", "attr.aria-multiselectable": "this.multiple", "attr.role": "this.role" } }, providers: [
1902
1888
  LocalizationService,
1903
1889
  {
1904
1890
  provide: L10N_PREFIX,
@@ -1946,15 +1932,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
1946
1932
  }], chips: [{
1947
1933
  type: ContentChildren,
1948
1934
  args: [ChipComponent]
1949
- }], single: [{
1950
- type: HostBinding,
1951
- args: ['class.k-selection-single']
1952
1935
  }], multiple: [{
1953
1936
  type: HostBinding,
1954
1937
  args: ['attr.aria-multiselectable']
1955
- }, {
1956
- type: HostBinding,
1957
- args: ['class.k-selection-multiple']
1958
1938
  }], role: [{
1959
1939
  type: HostBinding,
1960
1940
  args: ['attr.role']
@@ -2286,14 +2266,16 @@ class ListComponent {
2286
2266
  }
2287
2267
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2288
2268
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: ListComponent, isStandalone: true, selector: "kendo-button-list", inputs: { data: "data", textField: "textField", itemTemplate: "itemTemplate", size: "size" }, outputs: { onItemClick: "onItemClick", onItemBlur: "onItemBlur" }, ngImport: i0, template: `
2289
- <ul class="k-group k-menu-group k-reset" role="list" [ngClass]="sizeClass">
2290
- @for (dataItem of data; track dataItem; let index = $index) {
2269
+ <ul class="k-menu-group" role="list" [ngClass]="sizeClass">
2270
+ @for (dataItem of data; track dataItem; let index = $index; let isFirst = $first; let isLast = $last) {
2291
2271
  <li kendoButtonFocusable
2292
2272
  [index]="index"
2293
2273
  tabindex="-1"
2294
2274
  class="k-item k-menu-item"
2275
+ [class.k-first]="isFirst"
2276
+ [class.k-last]="isLast"
2295
2277
  role="listitem"
2296
- [attr.aria-disabled]="dataItem.disabled ? true : false"
2278
+ [attr.aria-disabled]="dataItem.disabled || null"
2297
2279
  (click)="$event.stopImmediatePropagation(); onClick(index);"
2298
2280
  (blur)="onBlur()">
2299
2281
  @if (itemTemplate?.templateRef) {
@@ -2342,14 +2324,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
2342
2324
  args: [{
2343
2325
  selector: 'kendo-button-list',
2344
2326
  template: `
2345
- <ul class="k-group k-menu-group k-reset" role="list" [ngClass]="sizeClass">
2346
- @for (dataItem of data; track dataItem; let index = $index) {
2327
+ <ul class="k-menu-group" role="list" [ngClass]="sizeClass">
2328
+ @for (dataItem of data; track dataItem; let index = $index; let isFirst = $first; let isLast = $last) {
2347
2329
  <li kendoButtonFocusable
2348
2330
  [index]="index"
2349
2331
  tabindex="-1"
2350
2332
  class="k-item k-menu-item"
2333
+ [class.k-first]="isFirst"
2334
+ [class.k-last]="isLast"
2351
2335
  role="listitem"
2352
- [attr.aria-disabled]="dataItem.disabled ? true : false"
2336
+ [attr.aria-disabled]="dataItem.disabled || null"
2353
2337
  (click)="$event.stopImmediatePropagation(); onClick(index);"
2354
2338
  (blur)="onBlur()">
2355
2339
  @if (itemTemplate?.templateRef) {
@@ -3151,7 +3135,7 @@ class DropDownButtonComponent extends ListButton {
3151
3135
  (click)="openPopup()"
3152
3136
  (focus)="handleFocus($event)"
3153
3137
  (blur)="onButtonBlur()"
3154
- [attr.aria-disabled]="disabled"
3138
+ [attr.aria-disabled]="disabled || null"
3155
3139
  [attr.aria-expanded]="openState"
3156
3140
  [attr.aria-controls]="openState ? listId : null"
3157
3141
  >
@@ -3213,7 +3197,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
3213
3197
  (click)="openPopup()"
3214
3198
  (focus)="handleFocus($event)"
3215
3199
  (blur)="onButtonBlur()"
3216
- [attr.aria-disabled]="disabled"
3200
+ [attr.aria-disabled]="disabled || null"
3217
3201
  [attr.aria-expanded]="openState"
3218
3202
  [attr.aria-controls]="openState ? listId : null"
3219
3203
  >
@@ -4378,7 +4362,7 @@ class FloatingActionButtonComponent {
4378
4362
  [class.k-disabled]="disabled"
4379
4363
  [ngClass]="buttonClass"
4380
4364
  [disabled]="disabled"
4381
- [attr.aria-disabled]="disabled"
4365
+ [attr.aria-disabled]="disabled || null"
4382
4366
  [attr.aria-expanded]="ariaExpanded"
4383
4367
  [attr.aria-haspopup]="ariaHasPopup"
4384
4368
  [attr.aria-controls]="ariaControls"
@@ -4456,7 +4440,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
4456
4440
  [class.k-disabled]="disabled"
4457
4441
  [ngClass]="buttonClass"
4458
4442
  [disabled]="disabled"
4459
- [attr.aria-disabled]="disabled"
4443
+ [attr.aria-disabled]="disabled || null"
4460
4444
  [attr.aria-expanded]="ariaExpanded"
4461
4445
  [attr.aria-haspopup]="ariaHasPopup"
4462
4446
  [attr.aria-controls]="ariaControls"
@@ -5200,8 +5184,6 @@ class SplitButtonComponent extends ListButton {
5200
5184
  (blur)="onButtonBlur()"
5201
5185
  (mousedown)="toggleButtonActiveState(true)"
5202
5186
  (mouseup)="toggleButtonActiveState(false)"
5203
- [attr.aria-expanded]="openState"
5204
- [attr.aria-controls]="openState ? listId : null"
5205
5187
  [attr.aria-label]="ariaLabel"
5206
5188
  >
5207
5189
  @if (text) {
@@ -5222,6 +5204,8 @@ class SplitButtonComponent extends ListButton {
5222
5204
  [themeColor]="themeColor"
5223
5205
  [tabindex]="-1"
5224
5206
  [attr.aria-label]="messageFor('toggleButtonLabel')"
5207
+ [attr.aria-expanded]="openState"
5208
+ [attr.aria-controls]="openState ? listId : null"
5225
5209
  (click)="onArrowButtonClick()"
5226
5210
  (mousedown)="toggleArrowButtonActiveState(true)"
5227
5211
  (mouseup)="toggleArrowButtonActiveState(false)"
@@ -5291,8 +5275,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
5291
5275
  (blur)="onButtonBlur()"
5292
5276
  (mousedown)="toggleButtonActiveState(true)"
5293
5277
  (mouseup)="toggleButtonActiveState(false)"
5294
- [attr.aria-expanded]="openState"
5295
- [attr.aria-controls]="openState ? listId : null"
5296
5278
  [attr.aria-label]="ariaLabel"
5297
5279
  >
5298
5280
  @if (text) {
@@ -5313,6 +5295,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
5313
5295
  [themeColor]="themeColor"
5314
5296
  [tabindex]="-1"
5315
5297
  [attr.aria-label]="messageFor('toggleButtonLabel')"
5298
+ [attr.aria-expanded]="openState"
5299
+ [attr.aria-controls]="openState ? listId : null"
5316
5300
  (click)="onArrowButtonClick()"
5317
5301
  (mousedown)="toggleArrowButtonActiveState(true)"
5318
5302
  (mouseup)="toggleArrowButtonActiveState(false)"
@@ -5544,9 +5528,6 @@ class SpeechToTextButtonComponent {
5544
5528
  get getDirection() {
5545
5529
  return this.direction;
5546
5530
  }
5547
- get ariaPressed() {
5548
- return this.isListening;
5549
- }
5550
5531
  /**
5551
5532
  * @hidden
5552
5533
  */
@@ -5801,7 +5782,7 @@ class SpeechToTextButtonComponent {
5801
5782
  });
5802
5783
  }
5803
5784
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: SpeechToTextButtonComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
5804
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: SpeechToTextButtonComponent, isStandalone: true, selector: "button[kendoSpeechToTextButton]", inputs: { disabled: "disabled", size: "size", rounded: "rounded", fillMode: "fillMode", themeColor: "themeColor", integrationMode: "integrationMode", lang: "lang", continuous: "continuous", interimResults: "interimResults", maxAlternatives: "maxAlternatives" }, outputs: { start: "start", end: "end", result: "result", error: "error", click: "click" }, host: { listeners: { "focus": "onFocus()", "blur": "onBlur()" }, properties: { "class.k-icon-button": "this.iconButtonClass", "class.k-listening": "this.listeningClass", "class.k-speech-to-text-button": "this.speechToTextButtonClass", "class.k-button": "this.classButton", "class.k-disabled": "this.classDisabled", "attr.dir": "this.getDirection", "attr.aria-pressed": "this.ariaPressed" } }, providers: [
5785
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: SpeechToTextButtonComponent, isStandalone: true, selector: "button[kendoSpeechToTextButton]", inputs: { disabled: "disabled", size: "size", rounded: "rounded", fillMode: "fillMode", themeColor: "themeColor", integrationMode: "integrationMode", lang: "lang", continuous: "continuous", interimResults: "interimResults", maxAlternatives: "maxAlternatives" }, outputs: { start: "start", end: "end", result: "result", error: "error", click: "click" }, host: { listeners: { "focus": "onFocus()", "blur": "onBlur()" }, properties: { "class.k-icon-button": "this.iconButtonClass", "class.k-listening": "this.listeningClass", "class.k-speech-to-text-button": "this.speechToTextButtonClass", "class.k-button": "this.classButton", "class.k-disabled": "this.classDisabled", "attr.dir": "this.getDirection" } }, providers: [
5805
5786
  LocalizationService,
5806
5787
  {
5807
5788
  provide: L10N_PREFIX,
@@ -5887,9 +5868,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
5887
5868
  }], getDirection: [{
5888
5869
  type: HostBinding,
5889
5870
  args: ['attr.dir']
5890
- }], ariaPressed: [{
5891
- type: HostBinding,
5892
- args: ['attr.aria-pressed']
5893
5871
  }], onFocus: [{
5894
5872
  type: HostListener,
5895
5873
  args: ['focus']
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1777479297,
11
- "version": "24.0.0-develop.13",
10
+ "publishDate": 1777541206,
11
+ "version": "24.0.0-develop.15",
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-buttons",
3
- "version": "24.0.0-develop.13",
3
+ "version": "24.0.0-develop.15",
4
4
  "description": "Buttons Package for Angular",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -21,7 +21,7 @@
21
21
  "package": {
22
22
  "productName": "Kendo UI for Angular",
23
23
  "productCode": "KENDOUIANGULAR",
24
- "publishDate": 1777479297,
24
+ "publishDate": 1777541206,
25
25
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
26
26
  }
27
27
  },
@@ -31,15 +31,15 @@
31
31
  "@angular/core": "19 - 21",
32
32
  "@angular/platform-browser": "19 - 21",
33
33
  "@progress/kendo-licensing": "^1.11.0",
34
- "@progress/kendo-angular-common": "24.0.0-develop.13",
35
- "@progress/kendo-angular-l10n": "24.0.0-develop.13",
36
- "@progress/kendo-angular-popup": "24.0.0-develop.13",
37
- "@progress/kendo-angular-icons": "24.0.0-develop.13",
34
+ "@progress/kendo-angular-common": "24.0.0-develop.15",
35
+ "@progress/kendo-angular-l10n": "24.0.0-develop.15",
36
+ "@progress/kendo-angular-popup": "24.0.0-develop.15",
37
+ "@progress/kendo-angular-icons": "24.0.0-develop.15",
38
38
  "rxjs": "^6.5.3 || ^7.0.0"
39
39
  },
40
40
  "dependencies": {
41
41
  "tslib": "^2.3.1",
42
- "@progress/kendo-angular-schematics": "24.0.0-develop.13",
42
+ "@progress/kendo-angular-schematics": "24.0.0-develop.15",
43
43
  "@progress/kendo-common": "^1.0.1",
44
44
  "@progress/kendo-webspeech-common": "1.0.1",
45
45
  "@progress/kendo-smartpaste-common": "1.0.0"
@@ -107,7 +107,6 @@ export declare class SpeechToTextButtonComponent implements OnInit, OnDestroy {
107
107
  classButton: boolean;
108
108
  get classDisabled(): boolean;
109
109
  get getDirection(): string;
110
- get ariaPressed(): boolean;
111
110
  /**
112
111
  * @hidden
113
112
  */