@progress/kendo-angular-buttons 8.2.2 → 11.0.0-develop.79

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 (145) hide show
  1. package/NOTICE.txt +3 -3
  2. package/README.md +7 -7
  3. package/button/{button.directive.d.ts → button.component.d.ts} +26 -29
  4. package/button/button.module.d.ts +4 -3
  5. package/button/button.service.d.ts +5 -5
  6. package/button/selection-settings.d.ts +1 -1
  7. package/buttongroup/buttongroup.component.d.ts +7 -7
  8. package/buttongroup/buttongroup.module.d.ts +1 -1
  9. package/buttons.module.d.ts +1 -1
  10. package/chip/chip-content-click-event-args.interface.d.ts +1 -1
  11. package/chip/chip-list-remove-event-args.interface.d.ts +1 -1
  12. package/chip/chip-list.component.d.ts +1 -1
  13. package/chip/chip-remove-event-args.interface.d.ts +1 -1
  14. package/chip/chip.component.d.ts +17 -3
  15. package/chip/chip.module.d.ts +3 -2
  16. package/chip/models/selection.d.ts +1 -1
  17. package/common/models/fillmode.d.ts +1 -1
  18. package/common/models/rounded.d.ts +1 -1
  19. package/common/models/size.d.ts +1 -1
  20. package/common/models/styling-classes.d.ts +1 -1
  21. package/common/models/theme-color.d.ts +1 -1
  22. package/common/models.d.ts +1 -1
  23. package/direction.d.ts +1 -1
  24. package/dropdownbutton/dropdownbutton.component.d.ts +8 -3
  25. package/dropdownbutton/dropdownbutton.module.d.ts +1 -1
  26. package/{esm2015/button/button.directive.js → esm2020/button/button.component.mjs} +84 -149
  27. package/{esm2015/button/button.module.js → esm2020/button/button.module.mjs} +10 -8
  28. package/{esm2015/button/button.service.js → esm2020/button/button.service.mjs} +4 -4
  29. package/{esm2015/button/selection-settings.js → esm2020/button/selection-settings.mjs} +1 -1
  30. package/{esm2015/buttongroup/buttongroup.component.js → esm2020/buttongroup/buttongroup.component.mjs} +10 -10
  31. package/{esm2015/buttongroup/buttongroup.module.js → esm2020/buttongroup/buttongroup.module.mjs} +5 -5
  32. package/{esm2015/buttons.module.js → esm2020/buttons.module.mjs} +5 -5
  33. package/{esm2015/chip/chip-content-click-event-args.interface.js → esm2020/chip/chip-content-click-event-args.interface.mjs} +1 -1
  34. package/{esm2015/chip/chip-list-remove-event-args.interface.js → esm2020/chip/chip-list-remove-event-args.interface.mjs} +1 -1
  35. package/{esm2015/chip/chip-list.component.js → esm2020/chip/chip-list.component.mjs} +5 -5
  36. package/{esm2015/chip/chip-remove-event-args.interface.js → esm2020/chip/chip-remove-event-args.interface.mjs} +1 -1
  37. package/{esm2015/chip/chip.component.js → esm2020/chip/chip.component.mjs} +68 -71
  38. package/{esm2015/chip/chip.module.js → esm2020/chip/chip.module.mjs} +8 -7
  39. package/esm2020/chip/models/selection.mjs +5 -0
  40. package/esm2020/common/models/fillmode.mjs +5 -0
  41. package/esm2020/common/models/rounded.mjs +5 -0
  42. package/esm2020/common/models/size.mjs +5 -0
  43. package/esm2020/common/models/styling-classes.mjs +5 -0
  44. package/esm2020/common/models/theme-color.mjs +5 -0
  45. package/{esm2015/common/models.js → esm2020/common/models.mjs} +1 -1
  46. package/esm2020/direction.mjs +5 -0
  47. package/{esm2015/dropdownbutton/dropdownbutton.component.js → esm2020/dropdownbutton/dropdownbutton.component.mjs} +17 -11
  48. package/{esm2015/dropdownbutton/dropdownbutton.module.js → esm2020/dropdownbutton/dropdownbutton.module.mjs} +5 -5
  49. package/{esm2015/floatingactionbutton/animations/animations.js → esm2020/floatingactionbutton/animations/animations.mjs} +1 -1
  50. package/{esm2015/floatingactionbutton/dial-item.component.js → esm2020/floatingactionbutton/dial-item.component.mjs} +22 -10
  51. package/{esm2015/floatingactionbutton/dial-list.component.js → esm2020/floatingactionbutton/dial-list.component.mjs} +6 -5
  52. package/{esm2015/floatingactionbutton/floatingactionbutton.component.js → esm2020/floatingactionbutton/floatingactionbutton.component.mjs} +27 -12
  53. package/{esm2015/floatingactionbutton/floatingactionbutton.module.js → esm2020/floatingactionbutton/floatingactionbutton.module.mjs} +8 -7
  54. package/esm2020/floatingactionbutton/models/align.mjs +5 -0
  55. package/esm2020/floatingactionbutton/models/item-animation.interface.mjs +5 -0
  56. package/esm2020/floatingactionbutton/models/item-click.event.mjs +5 -0
  57. package/esm2020/floatingactionbutton/models/item.interface.mjs +5 -0
  58. package/esm2020/floatingactionbutton/models/offset.mjs +5 -0
  59. package/esm2020/floatingactionbutton/models/position-mode.mjs +5 -0
  60. package/{esm2015/floatingactionbutton/templates/dial-item-template.directive.js → esm2020/floatingactionbutton/templates/dial-item-template.directive.mjs} +5 -5
  61. package/{esm2015/floatingactionbutton/templates/fab-template.directive.js → esm2020/floatingactionbutton/templates/fab-template.directive.mjs} +5 -5
  62. package/{esm2015/floatingactionbutton/utils.js → esm2020/floatingactionbutton/utils.mjs} +3 -3
  63. package/{esm2015/focusable/focus.service.js → esm2020/focusable/focus.service.mjs} +4 -4
  64. package/{esm2015/focusable/focusable.directive.js → esm2020/focusable/focusable.directive.mjs} +6 -5
  65. package/{esm2015/main.js → esm2020/index.mjs} +2 -2
  66. package/{esm2015/listbutton/button-item-template.directive.js → esm2020/listbutton/button-item-template.directive.mjs} +5 -5
  67. package/{esm2015/listbutton/container.service.js → esm2020/listbutton/container.service.mjs} +4 -4
  68. package/{esm2015/listbutton/list-button.js → esm2020/listbutton/list-button.mjs} +15 -11
  69. package/esm2020/listbutton/list-item-model.mjs +5 -0
  70. package/{esm2015/listbutton/list.component.js → esm2020/listbutton/list.component.mjs} +5 -4
  71. package/{esm2015/listbutton/list.module.js → esm2020/listbutton/list.module.mjs} +5 -5
  72. package/esm2020/listbutton/popup-settings.mjs +5 -0
  73. package/{esm2015/listbutton/template-context.directive.js → esm2020/listbutton/template-context.directive.mjs} +5 -5
  74. package/{esm2015/navigation/key-events.js → esm2020/navigation/key-events.mjs} +1 -1
  75. package/{esm2015/navigation/navigation-action.js → esm2020/navigation/navigation-action.mjs} +1 -1
  76. package/{esm2015/navigation/navigation-config.js → esm2020/navigation/navigation-config.mjs} +1 -1
  77. package/{esm2015/navigation/navigation.service.js → esm2020/navigation/navigation.service.mjs} +4 -4
  78. package/{esm2015/package-metadata.js → esm2020/package-metadata.mjs} +3 -3
  79. package/{esm2015/preventable-event.js → esm2020/preventable-event.mjs} +1 -1
  80. package/{esm2015/kendo-angular-buttons.js → esm2020/progress-kendo-angular-buttons.mjs} +2 -2
  81. package/{esm2015/splitbutton/localization/custom-messages.component.js → esm2020/splitbutton/localization/custom-messages.component.mjs} +5 -4
  82. package/{esm2015/splitbutton/localization/localized-messages.directive.js → esm2020/splitbutton/localization/localized-messages.directive.mjs} +5 -4
  83. package/{esm2015/splitbutton/localization/messages.js → esm2020/splitbutton/localization/messages.mjs} +4 -4
  84. package/{esm2015/splitbutton/splitbutton.component.js → esm2020/splitbutton/splitbutton.component.mjs} +55 -25
  85. package/{esm2015/splitbutton/splitbutton.module.js → esm2020/splitbutton/splitbutton.module.mjs} +5 -5
  86. package/{esm2015/util.js → esm2020/util.mjs} +1 -1
  87. package/fesm2015/progress-kendo-angular-buttons.mjs +5251 -0
  88. package/{fesm2015/kendo-angular-buttons.js → fesm2020/progress-kendo-angular-buttons.mjs} +450 -464
  89. package/floatingactionbutton/animations/animations.d.ts +1 -1
  90. package/floatingactionbutton/dial-item.component.d.ts +4 -3
  91. package/floatingactionbutton/dial-list.component.d.ts +1 -1
  92. package/floatingactionbutton/floatingactionbutton.component.d.ts +9 -3
  93. package/floatingactionbutton/floatingactionbutton.module.d.ts +3 -2
  94. package/floatingactionbutton/models/align.d.ts +1 -1
  95. package/floatingactionbutton/models/item-animation.interface.d.ts +1 -1
  96. package/floatingactionbutton/models/item-click.event.d.ts +1 -1
  97. package/floatingactionbutton/models/item.interface.d.ts +6 -1
  98. package/floatingactionbutton/models/offset.d.ts +1 -1
  99. package/floatingactionbutton/models/position-mode.d.ts +1 -1
  100. package/floatingactionbutton/templates/dial-item-template.directive.d.ts +1 -1
  101. package/floatingactionbutton/templates/fab-template.directive.d.ts +1 -1
  102. package/floatingactionbutton/utils.d.ts +1 -1
  103. package/focusable/focus.service.d.ts +1 -1
  104. package/focusable/focusable.directive.d.ts +1 -1
  105. package/{main.d.ts → index.d.ts} +3 -2
  106. package/listbutton/button-item-template.directive.d.ts +1 -1
  107. package/listbutton/container.service.d.ts +1 -1
  108. package/listbutton/list-button.d.ts +1 -1
  109. package/listbutton/list-item-model.d.ts +1 -1
  110. package/listbutton/list.component.d.ts +1 -1
  111. package/listbutton/list.module.d.ts +1 -1
  112. package/listbutton/popup-settings.d.ts +1 -1
  113. package/listbutton/template-context.directive.d.ts +1 -1
  114. package/navigation/key-events.d.ts +1 -1
  115. package/navigation/navigation-action.d.ts +1 -1
  116. package/navigation/navigation-config.d.ts +1 -1
  117. package/navigation/navigation.service.d.ts +1 -1
  118. package/package-metadata.d.ts +1 -1
  119. package/package.json +30 -57
  120. package/preventable-event.d.ts +1 -1
  121. package/{kendo-angular-buttons.d.ts → progress-kendo-angular-buttons.d.ts} +2 -2
  122. package/schematics/ngAdd/index.js +5 -7
  123. package/splitbutton/localization/custom-messages.component.d.ts +1 -1
  124. package/splitbutton/localization/localized-messages.directive.d.ts +1 -1
  125. package/splitbutton/localization/messages.d.ts +1 -1
  126. package/splitbutton/splitbutton.component.d.ts +22 -3
  127. package/splitbutton/splitbutton.module.d.ts +1 -1
  128. package/util.d.ts +1 -1
  129. package/bundles/kendo-angular-buttons.umd.js +0 -5
  130. package/esm2015/chip/models/selection.js +0 -5
  131. package/esm2015/common/models/fillmode.js +0 -5
  132. package/esm2015/common/models/rounded.js +0 -5
  133. package/esm2015/common/models/size.js +0 -5
  134. package/esm2015/common/models/styling-classes.js +0 -5
  135. package/esm2015/common/models/theme-color.js +0 -5
  136. package/esm2015/direction.js +0 -5
  137. package/esm2015/floatingactionbutton/models/align.js +0 -5
  138. package/esm2015/floatingactionbutton/models/item-animation.interface.js +0 -5
  139. package/esm2015/floatingactionbutton/models/item-click.event.js +0 -5
  140. package/esm2015/floatingactionbutton/models/item.interface.js +0 -5
  141. package/esm2015/floatingactionbutton/models/offset.js +0 -5
  142. package/esm2015/floatingactionbutton/models/position-mode.js +0 -5
  143. package/esm2015/listbutton/list-item-model.js +0 -5
  144. package/esm2015/listbutton/popup-settings.js +0 -5
  145. package/schematics/ngAdd/index.js.map +0 -1
@@ -1,14 +1,16 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 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
- import { Component, EventEmitter, HostBinding, Input, Output, ViewChild, ContentChild } from '@angular/core';
5
+ import { AnimationBuilder } from '@angular/animations';
6
+ import { Component, ElementRef, EventEmitter, HostBinding, Input, Output, NgZone, Renderer2, ViewChild, ContentChild, TemplateRef } from '@angular/core';
6
7
  import { merge, Subscription } from 'rxjs';
7
8
  import { take } from 'rxjs/operators';
8
9
  import { L10N_PREFIX, LocalizationService } from '@progress/kendo-angular-l10n';
9
10
  import { validatePackage } from '@progress/kendo-licensing';
10
11
  import { packageMetadata } from '../package-metadata';
11
12
  import { guid, isDocumentAvailable } from '@progress/kendo-angular-common';
13
+ import { PopupService } from '@progress/kendo-angular-popup';
12
14
  import { FocusService } from '../focusable/focus.service';
13
15
  import { NavigationAction } from '../navigation/navigation-action';
14
16
  import { NAVIGATION_CONFIG } from '../navigation/navigation-config';
@@ -25,9 +27,10 @@ import * as i2 from "../navigation/navigation.service";
25
27
  import * as i3 from "@progress/kendo-angular-popup";
26
28
  import * as i4 from "@angular/animations";
27
29
  import * as i5 from "@progress/kendo-angular-l10n";
28
- import * as i6 from "./dial-list.component";
29
- import * as i7 from "@angular/common";
30
- import * as i8 from "@progress/kendo-angular-common";
30
+ import * as i6 from "@progress/kendo-angular-icons";
31
+ import * as i7 from "./dial-list.component";
32
+ import * as i8 from "@angular/common";
33
+ import * as i9 from "@progress/kendo-angular-common";
31
34
  const NAVIGATION_SETTINGS = {
32
35
  useLeftRightArrows: false
33
36
  };
@@ -463,7 +466,7 @@ export class FloatingActionButtonComponent {
463
466
  onNavigationEnterPress() {
464
467
  this.ngZone.run(() => {
465
468
  if (this.isOpen) {
466
- let focusedIndex = this.focusService.focused;
469
+ const focusedIndex = this.focusService.focused;
467
470
  const focusedItem = this.dialItems[focusedIndex];
468
471
  if (focusedItem && focusedItem.disabled) {
469
472
  return;
@@ -686,8 +689,8 @@ export class FloatingActionButtonComponent {
686
689
  return DEFAULT_DURATION;
687
690
  }
688
691
  }
689
- FloatingActionButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FloatingActionButtonComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i1.FocusService }, { token: i2.NavigationService }, { token: i0.NgZone }, { token: i3.PopupService }, { token: i4.AnimationBuilder }, { token: i5.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
690
- FloatingActionButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: FloatingActionButtonComponent, selector: "kendo-floatingactionbutton", inputs: { themeColor: "themeColor", size: "size", rounded: "rounded", disabled: "disabled", align: "align", offset: "offset", positionMode: "positionMode", icon: "icon", iconClass: "iconClass", buttonClass: "buttonClass", dialClass: "dialClass", text: "text", dialItemAnimation: "dialItemAnimation", tabIndex: "tabIndex", dialItems: "dialItems" }, outputs: { onBlur: "blur", onFocus: "focus", dialItemClick: "dialItemClick", open: "open", close: "close" }, host: { properties: { "class.k-pos-fixed": "this.fixedClass", "class.k-pos-absolute": "this.absoluteClass", "attr.dir": "this.direction" } }, providers: [
692
+ FloatingActionButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FloatingActionButtonComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i1.FocusService }, { token: i2.NavigationService }, { token: i0.NgZone }, { token: i3.PopupService }, { token: i4.AnimationBuilder }, { token: i5.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
693
+ FloatingActionButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: FloatingActionButtonComponent, selector: "kendo-floatingactionbutton", inputs: { themeColor: "themeColor", size: "size", rounded: "rounded", disabled: "disabled", align: "align", offset: "offset", positionMode: "positionMode", icon: "icon", svgIcon: "svgIcon", iconClass: "iconClass", buttonClass: "buttonClass", dialClass: "dialClass", text: "text", dialItemAnimation: "dialItemAnimation", tabIndex: "tabIndex", dialItems: "dialItems" }, outputs: { onBlur: "blur", onFocus: "focus", dialItemClick: "dialItemClick", open: "open", close: "close" }, host: { properties: { "class.k-pos-fixed": "this.fixedClass", "class.k-pos-absolute": "this.absoluteClass", "attr.dir": "this.direction" } }, providers: [
691
694
  FocusService,
692
695
  NavigationService,
693
696
  NAVIGATION_SETTINGS_PROVIDER,
@@ -724,7 +727,12 @@ FloatingActionButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "1
724
727
  </ng-template>
725
728
 
726
729
  <ng-container *ngIf="!fabTemplate">
727
- <span *ngIf="icon || iconClass" [ngClass]="iconClasses"></span>
730
+ <kendo-icon-wrapper
731
+ *ngIf="icon || iconClass || svgIcon"
732
+ [name]="icon"
733
+ innerCssClass="k-fab-icon"
734
+ [customFontClass]="iconClass"
735
+ [svgIcon]="svgIcon"></kendo-icon-wrapper>
728
736
  <span *ngIf="text" class="k-fab-text">{{ text }}</span>
729
737
  </ng-container>
730
738
  </button>
@@ -743,8 +751,8 @@ FloatingActionButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "1
743
751
  >
744
752
  </ul>
745
753
  </ng-template>
746
- `, isInline: true, components: [{ type: i6.DialListComponent, selector: "[kendoDialList]", inputs: ["dialItems", "dialItemTemplate", "align"] }], directives: [{ type: i7.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i8.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i7.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
747
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FloatingActionButtonComponent, decorators: [{
754
+ `, isInline: true, components: [{ type: i6.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }, { type: i7.DialListComponent, selector: "[kendoDialList]", inputs: ["dialItems", "dialItemTemplate", "align"] }], directives: [{ type: i8.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i9.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { type: i8.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i8.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
755
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FloatingActionButtonComponent, decorators: [{
748
756
  type: Component,
749
757
  args: [{
750
758
  selector: 'kendo-floatingactionbutton',
@@ -786,7 +794,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
786
794
  </ng-template>
787
795
 
788
796
  <ng-container *ngIf="!fabTemplate">
789
- <span *ngIf="icon || iconClass" [ngClass]="iconClasses"></span>
797
+ <kendo-icon-wrapper
798
+ *ngIf="icon || iconClass || svgIcon"
799
+ [name]="icon"
800
+ innerCssClass="k-fab-icon"
801
+ [customFontClass]="iconClass"
802
+ [svgIcon]="svgIcon"></kendo-icon-wrapper>
790
803
  <span *ngIf="text" class="k-fab-text">{{ text }}</span>
791
804
  </ng-container>
792
805
  </button>
@@ -844,6 +857,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
844
857
  type: Input
845
858
  }], icon: [{
846
859
  type: Input
860
+ }], svgIcon: [{
861
+ type: Input
847
862
  }], iconClass: [{
848
863
  type: Input
849
864
  }], buttonClass: [{
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 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
5
  import { NgModule } from '@angular/core';
@@ -12,6 +12,7 @@ import { DialItemComponent } from './dial-item.component';
12
12
  import { ListModule } from '../listbutton/list.module';
13
13
  import { EventsModule } from '@progress/kendo-angular-common';
14
14
  import { PopupModule } from '@progress/kendo-angular-popup';
15
+ import { IconsModule } from '@progress/kendo-angular-icons';
15
16
  import * as i0 from "@angular/core";
16
17
  const exportedModules = [
17
18
  FloatingActionButtonComponent,
@@ -53,19 +54,19 @@ const declarations = [
53
54
  */
54
55
  export class FloatingActionButtonModule {
55
56
  }
56
- FloatingActionButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FloatingActionButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
57
- FloatingActionButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FloatingActionButtonModule, declarations: [FloatingActionButtonComponent,
57
+ FloatingActionButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FloatingActionButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
58
+ FloatingActionButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FloatingActionButtonModule, declarations: [FloatingActionButtonComponent,
58
59
  DialItemTemplateDirective,
59
60
  FloatingActionButtonTemplateDirective, DialListComponent,
60
- DialItemComponent], imports: [CommonModule, PopupModule, ListModule, EventsModule], exports: [FloatingActionButtonComponent,
61
+ DialItemComponent], imports: [CommonModule, PopupModule, ListModule, EventsModule, IconsModule], exports: [FloatingActionButtonComponent,
61
62
  DialItemTemplateDirective,
62
63
  FloatingActionButtonTemplateDirective] });
63
- FloatingActionButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FloatingActionButtonModule, imports: [[CommonModule, PopupModule, ListModule, EventsModule]] });
64
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FloatingActionButtonModule, decorators: [{
64
+ FloatingActionButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FloatingActionButtonModule, imports: [[CommonModule, PopupModule, ListModule, EventsModule, IconsModule]] });
65
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FloatingActionButtonModule, decorators: [{
65
66
  type: NgModule,
66
67
  args: [{
67
68
  declarations: [declarations],
68
69
  exports: [exportedModules],
69
- imports: [CommonModule, PopupModule, ListModule, EventsModule]
70
+ imports: [CommonModule, PopupModule, ListModule, EventsModule, IconsModule]
70
71
  }]
71
72
  }] });
@@ -0,0 +1,5 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2022 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ export {};
@@ -0,0 +1,5 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2022 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ export {};
@@ -0,0 +1,5 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2022 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ export {};
@@ -0,0 +1,5 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2022 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ export {};
@@ -0,0 +1,5 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2022 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ export {};
@@ -0,0 +1,5 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2022 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ export {};
@@ -1,8 +1,8 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 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
- import { Directive, Optional } from '@angular/core';
5
+ import { Directive, Optional, TemplateRef } from '@angular/core';
6
6
  import * as i0 from "@angular/core";
7
7
  /**
8
8
  * Represents a template that defines the content of the whole dial item.
@@ -15,9 +15,9 @@ export class DialItemTemplateDirective {
15
15
  this.templateRef = templateRef;
16
16
  }
17
17
  }
18
- DialItemTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: DialItemTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
19
- DialItemTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: DialItemTemplateDirective, selector: "[kendoDialItemTemplate]", ngImport: i0 });
20
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: DialItemTemplateDirective, decorators: [{
18
+ DialItemTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DialItemTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
19
+ DialItemTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: DialItemTemplateDirective, selector: "[kendoDialItemTemplate]", ngImport: i0 });
20
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DialItemTemplateDirective, decorators: [{
21
21
  type: Directive,
22
22
  args: [{
23
23
  selector: '[kendoDialItemTemplate]'
@@ -1,8 +1,8 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 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
- import { Directive, Optional } from '@angular/core';
5
+ import { Directive, Optional, TemplateRef } from '@angular/core';
6
6
  import * as i0 from "@angular/core";
7
7
  /**
8
8
  * Represents a template that defines the content of the FloatingActionButton.
@@ -15,9 +15,9 @@ export class FloatingActionButtonTemplateDirective {
15
15
  this.templateRef = templateRef;
16
16
  }
17
17
  }
18
- FloatingActionButtonTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FloatingActionButtonTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
19
- FloatingActionButtonTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: FloatingActionButtonTemplateDirective, selector: "[kendoFloatingActionButtonTemplate]", ngImport: i0 });
20
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FloatingActionButtonTemplateDirective, decorators: [{
18
+ FloatingActionButtonTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FloatingActionButtonTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
19
+ FloatingActionButtonTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: FloatingActionButtonTemplateDirective, selector: "[kendoFloatingActionButtonTemplate]", ngImport: i0 });
20
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FloatingActionButtonTemplateDirective, decorators: [{
21
21
  type: Directive,
22
22
  args: [{
23
23
  selector: '[kendoFloatingActionButtonTemplate]'
@@ -1,12 +1,12 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 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
5
  /**
6
6
  * @hidden
7
7
  */
8
8
  export function getAnchorAlign(fabAlign, rtl) {
9
- let align = { horizontal: (rtl ? 'right' : 'left'), vertical: 'bottom' };
9
+ const align = { horizontal: (rtl ? 'right' : 'left'), vertical: 'bottom' };
10
10
  if (fabAlign.horizontal === 'end') {
11
11
  align.horizontal = rtl ? 'left' : 'right';
12
12
  }
@@ -23,7 +23,7 @@ export function getAnchorAlign(fabAlign, rtl) {
23
23
  * @hidden
24
24
  */
25
25
  export function getPopupAlign(fabAlign, rtl) {
26
- let align = { horizontal: (rtl ? 'right' : 'left'), vertical: 'top' };
26
+ const align = { horizontal: (rtl ? 'right' : 'left'), vertical: 'top' };
27
27
  if (fabAlign.horizontal === 'end') {
28
28
  align.horizontal = rtl ? 'left' : 'right';
29
29
  }
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 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
5
  import { Injectable, EventEmitter } from '@angular/core';
@@ -32,8 +32,8 @@ export class FocusService {
32
32
  this.onFocus.emit(index);
33
33
  }
34
34
  }
35
- FocusService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FocusService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
36
- FocusService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FocusService });
37
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FocusService, decorators: [{
35
+ FocusService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FocusService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
36
+ FocusService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FocusService });
37
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FocusService, decorators: [{
38
38
  type: Injectable
39
39
  }] });
@@ -1,8 +1,9 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 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
- import { Directive, Input } from '@angular/core';
5
+ import { Directive, Input, ElementRef, Renderer2 } from '@angular/core';
6
+ import { FocusService } from './focus.service';
6
7
  import { Subscription } from 'rxjs';
7
8
  import { isDocumentAvailable } from '@progress/kendo-angular-common';
8
9
  import * as i0 from "@angular/core";
@@ -47,9 +48,9 @@ export class FocusableDirective {
47
48
  }));
48
49
  }
49
50
  }
50
- FocusableDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FocusableDirective, deps: [{ token: i1.FocusService }, { token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
51
- FocusableDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: FocusableDirective, selector: "[kendoButtonFocusable]", inputs: { index: "index" }, ngImport: i0 });
52
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FocusableDirective, decorators: [{
51
+ FocusableDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FocusableDirective, deps: [{ token: i1.FocusService }, { token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
52
+ FocusableDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: FocusableDirective, selector: "[kendoButtonFocusable]", inputs: { index: "index" }, ngImport: i0 });
53
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FocusableDirective, decorators: [{
53
54
  type: Directive,
54
55
  args: [{
55
56
  selector: '[kendoButtonFocusable]'
@@ -1,8 +1,8 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 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
- export { ButtonDirective, ButtonDirective as Button } from './button/button.directive';
5
+ export { ButtonComponent as ButtonDirective, ButtonComponent as Button } from './button/button.component';
6
6
  export { ButtonGroupComponent, ButtonGroupComponent as ButtonGroup } from './buttongroup/buttongroup.component';
7
7
  export { ButtonGroupModule } from './buttongroup/buttongroup.module';
8
8
  export { ButtonModule } from './button/button.module';
@@ -1,8 +1,8 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 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
- import { Directive } from '@angular/core';
5
+ import { Directive, TemplateRef } from '@angular/core';
6
6
  import * as i0 from "@angular/core";
7
7
  /**
8
8
  * Used for rendering the list item content.
@@ -57,9 +57,9 @@ export class ButtonItemTemplateDirective {
57
57
  this.templateRef = templateRef;
58
58
  }
59
59
  }
60
- ButtonItemTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: ButtonItemTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
61
- ButtonItemTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: ButtonItemTemplateDirective, selector: "[kendoDropDownButtonItemTemplate],[kendoSplitButtonItemTemplate]", ngImport: i0 });
62
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: ButtonItemTemplateDirective, decorators: [{
60
+ ButtonItemTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ButtonItemTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
61
+ ButtonItemTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: ButtonItemTemplateDirective, selector: "[kendoDropDownButtonItemTemplate],[kendoSplitButtonItemTemplate]", ngImport: i0 });
62
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ButtonItemTemplateDirective, decorators: [{
63
63
  type: Directive,
64
64
  args: [{
65
65
  selector: '[kendoDropDownButtonItemTemplate],[kendoSplitButtonItemTemplate]'
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 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
5
  import { Injectable } from '@angular/core';
@@ -9,8 +9,8 @@ import * as i0 from "@angular/core";
9
9
  */
10
10
  export class PopupContainerService {
11
11
  }
12
- PopupContainerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: PopupContainerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
13
- PopupContainerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: PopupContainerService });
14
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: PopupContainerService, decorators: [{
12
+ PopupContainerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PopupContainerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
13
+ PopupContainerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PopupContainerService });
14
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PopupContainerService, decorators: [{
15
15
  type: Injectable
16
16
  }] });
@@ -1,18 +1,22 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 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
- import { EventEmitter, Component, Input, Output } from '@angular/core';
6
- /* eslint-disable import/no-deprecated */
5
+ import { EventEmitter, ElementRef, NgZone, ChangeDetectorRef, Component, Input, Output } from '@angular/core';
7
6
  import { Subscription, fromEvent, merge } from 'rxjs';
8
7
  import { filter, tap } from 'rxjs/operators';
8
+ import { FocusService } from './../focusable/focus.service';
9
9
  import { KeyEvents } from './../navigation/key-events';
10
+ import { NavigationService } from './../navigation/navigation.service';
10
11
  import { NavigationAction } from './../navigation/navigation-action';
11
12
  import { isDocumentAvailable, guid, Keys, isChanged } from '@progress/kendo-angular-common';
13
+ import { LocalizationService } from '@progress/kendo-angular-l10n';
12
14
  import { validatePackage } from '@progress/kendo-licensing';
13
15
  import { packageMetadata } from '../package-metadata';
14
16
  import { PreventableEvent } from '../preventable-event';
17
+ import { PopupService } from '@progress/kendo-angular-popup';
15
18
  import { isPresent } from '../util';
19
+ import { PopupContainerService } from './container.service';
16
20
  import * as i0 from "@angular/core";
17
21
  import * as i1 from "./../focusable/focus.service";
18
22
  import * as i2 from "./../navigation/navigation.service";
@@ -106,7 +110,7 @@ export class ListButton {
106
110
  * @hidden
107
111
  */
108
112
  get anchorAlign() {
109
- let align = { horizontal: this.popupSettings.align || 'left', vertical: 'bottom' };
113
+ const align = { horizontal: this.popupSettings.align || 'left', vertical: 'bottom' };
110
114
  if (this.direction === 'rtl' && !isPresent(this.popupSettings.align)) {
111
115
  align.horizontal = 'right';
112
116
  }
@@ -116,7 +120,7 @@ export class ListButton {
116
120
  * @hidden
117
121
  */
118
122
  get popupAlign() {
119
- let align = { horizontal: this.popupSettings.align || 'left', vertical: 'top' };
123
+ const align = { horizontal: this.popupSettings.align || 'left', vertical: 'top' };
120
124
  if (this.direction === 'rtl' && !isPresent(this.popupSettings.align)) {
121
125
  align.horizontal = 'right';
122
126
  }
@@ -125,7 +129,7 @@ export class ListButton {
125
129
  ngOnChanges(changes) {
126
130
  if (isChanged("popupSettings", changes) && isPresent(this.popupRef)) {
127
131
  const popup = this.popupRef.popup.instance;
128
- const newSettings = changes.popupSettings.currentValue;
132
+ const newSettings = changes['popupSettings'].currentValue;
129
133
  popup.popupClass = newSettings.popupClass;
130
134
  popup.animate = newSettings.animate;
131
135
  popup.popupAlign = this.popupAlign;
@@ -250,7 +254,7 @@ export class ListButton {
250
254
  if (!isHost) {
251
255
  eventData.stopImmediatePropagation();
252
256
  }
253
- let focused = this.focusService.focused || 0;
257
+ const focused = this.focusService.focused || 0;
254
258
  const action = this.navigationService.process({
255
259
  altKey: eventData.altKey,
256
260
  current: focused,
@@ -313,7 +317,7 @@ export class ListButton {
313
317
  this._active = false;
314
318
  }
315
319
  if (this.openState) {
316
- let focused = this.focusService.focused;
320
+ const focused = this.focusService.focused;
317
321
  if (isPresent(focused) && focused !== -1) {
318
322
  this.emitItemClickHandler(focused);
319
323
  }
@@ -381,9 +385,9 @@ export class ListButton {
381
385
  }
382
386
  }
383
387
  }
384
- ListButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: ListButton, deps: [{ token: i1.FocusService }, { token: i2.NavigationService }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i3.PopupService }, { token: i0.ElementRef }, { token: i4.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i5.PopupContainerService }], target: i0.ɵɵFactoryTarget.Component });
385
- ListButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: ListButton, selector: "ng-component", inputs: { disabled: "disabled", tabIndex: "tabIndex", buttonClass: "buttonClass", popupSettings: "popupSettings" }, outputs: { open: "open", close: "close" }, usesOnChanges: true, ngImport: i0, template: '', isInline: true });
386
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: ListButton, decorators: [{
388
+ ListButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ListButton, deps: [{ token: i1.FocusService }, { token: i2.NavigationService }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i3.PopupService }, { token: i0.ElementRef }, { token: i4.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i5.PopupContainerService }], target: i0.ɵɵFactoryTarget.Component });
389
+ ListButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: ListButton, selector: "ng-component", inputs: { disabled: "disabled", tabIndex: "tabIndex", buttonClass: "buttonClass", popupSettings: "popupSettings" }, outputs: { open: "open", close: "close" }, usesOnChanges: true, ngImport: i0, template: '', isInline: true });
390
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ListButton, decorators: [{
387
391
  type: Component,
388
392
  args: [{
389
393
  template: ''
@@ -0,0 +1,5 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2022 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ export {};
@@ -1,10 +1,11 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 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
5
  import { Component, Input, Output, EventEmitter } from '@angular/core';
6
6
  import { validatePackage } from '@progress/kendo-licensing';
7
7
  import { packageMetadata } from '../package-metadata';
8
+ import { ButtonItemTemplateDirective } from './button-item-template.directive';
8
9
  import { SIZES } from '../util';
9
10
  import * as i0 from "@angular/core";
10
11
  import * as i1 from "@angular/common";
@@ -47,8 +48,8 @@ export class ListComponent {
47
48
  this.onItemBlur.emit();
48
49
  }
49
50
  }
50
- ListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: ListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
51
- ListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: ListComponent, selector: "kendo-button-list", inputs: { data: "data", textField: "textField", itemTemplate: "itemTemplate", size: "size" }, outputs: { onItemClick: "onItemClick", onItemBlur: "onItemBlur" }, ngImport: i0, template: `
51
+ ListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
52
+ ListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: ListComponent, selector: "kendo-button-list", inputs: { data: "data", textField: "textField", itemTemplate: "itemTemplate", size: "size" }, outputs: { onItemClick: "onItemClick", onItemBlur: "onItemBlur" }, ngImport: i0, template: `
52
53
  <ul class="k-group k-menu-group k-reset" [ngClass]="sizeClass" unselectable="on" role="menu">
53
54
  <li role="menuitem"
54
55
  unselectable="on"
@@ -85,7 +86,7 @@ ListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
85
86
  </li>
86
87
  </ul>
87
88
  `, isInline: true, directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2.FocusableDirective, selector: "[kendoButtonFocusable]", inputs: ["index"] }, { type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }] });
88
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: ListComponent, decorators: [{
89
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ListComponent, decorators: [{
89
90
  type: Component,
90
91
  args: [{
91
92
  selector: 'kendo-button-list',
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 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
5
  import { NgModule } from '@angular/core';
@@ -20,16 +20,16 @@ const EXPORTED_DIRECTIVES = [
20
20
  */
21
21
  export class ListModule {
22
22
  }
23
- ListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: ListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
24
- ListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: ListModule, declarations: [ListComponent,
23
+ ListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
24
+ ListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ListModule, declarations: [ListComponent,
25
25
  FocusableDirective,
26
26
  ButtonItemTemplateDirective,
27
27
  TemplateContextDirective], imports: [CommonModule], exports: [ListComponent,
28
28
  FocusableDirective,
29
29
  ButtonItemTemplateDirective,
30
30
  TemplateContextDirective] });
31
- ListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: ListModule, imports: [[CommonModule]] });
32
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: ListModule, decorators: [{
31
+ ListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ListModule, imports: [[CommonModule]] });
32
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ListModule, decorators: [{
33
33
  type: NgModule,
34
34
  args: [{
35
35
  declarations: [EXPORTED_DIRECTIVES],
@@ -0,0 +1,5 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2022 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ export {};
@@ -1,8 +1,8 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 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
- import { Directive, Input } from '@angular/core';
5
+ import { Directive, ViewContainerRef, Input } from '@angular/core';
6
6
  import * as i0 from "@angular/core";
7
7
  /**
8
8
  * @hidden
@@ -21,9 +21,9 @@ export class TemplateContextDirective {
21
21
  }
22
22
  }
23
23
  }
24
- TemplateContextDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: TemplateContextDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
25
- TemplateContextDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: TemplateContextDirective, selector: "[templateContext]", inputs: { templateContext: "templateContext" }, ngImport: i0 });
26
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: TemplateContextDirective, decorators: [{
24
+ TemplateContextDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TemplateContextDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
25
+ TemplateContextDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: TemplateContextDirective, selector: "[templateContext]", inputs: { templateContext: "templateContext" }, ngImport: i0 });
26
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TemplateContextDirective, decorators: [{
27
27
  type: Directive,
28
28
  args: [{
29
29
  // eslint-disable-next-line @angular-eslint/directive-selector
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 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
5
  /**
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 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
5
  /**
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 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
5
  import { InjectionToken } from '@angular/core';