@progress/kendo-angular-progressbar 17.0.0-develop.8 → 17.0.0

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 (39) hide show
  1. package/README.md +36 -18
  2. package/chunk/chunk-progressbar.component.d.ts +1 -1
  3. package/circularprogressbar/circular-progressbar.component.d.ts +1 -1
  4. package/common/localization/messages.d.ts +1 -1
  5. package/common/progressbar-base.d.ts +1 -1
  6. package/{esm2020 → esm2022}/chunk/chunk-progressbar.component.mjs +52 -27
  7. package/{esm2020 → esm2022}/circularprogressbar/center-template.directive.mjs +4 -3
  8. package/{esm2020 → esm2022}/circularprogressbar/circular-progressbar.component.mjs +59 -44
  9. package/{esm2020 → esm2022}/common/localization/custom-messages.component.mjs +9 -8
  10. package/{esm2020 → esm2022}/common/localization/localized-messages.directive.mjs +9 -8
  11. package/{esm2020 → esm2022}/common/localization/messages.mjs +7 -3
  12. package/{esm2020 → esm2022}/common/progressbar-base.mjs +69 -64
  13. package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
  14. package/{esm2020 → esm2022}/progressbar.component.mjs +68 -33
  15. package/{esm2020 → esm2022}/progressbar.module.mjs +5 -8
  16. package/{fesm2015 → fesm2022}/progress-kendo-angular-progressbar.mjs +286 -202
  17. package/package.json +12 -18
  18. package/progressbar.component.d.ts +1 -1
  19. package/progressbar.module.d.ts +0 -4
  20. package/types/label-fn-type.d.ts +1 -1
  21. package/types/label-position.d.ts +1 -1
  22. package/types/label-type.d.ts +1 -1
  23. package/types/progressbar-orientation.d.ts +1 -1
  24. package/fesm2020/progress-kendo-angular-progressbar.mjs +0 -1471
  25. /package/{esm2020 → esm2022}/circularprogressbar/models/center-template-context.interface.mjs +0 -0
  26. /package/{esm2020 → esm2022}/circularprogressbar/models/circular-progressbar-progress-color-interface.mjs +0 -0
  27. /package/{esm2020 → esm2022}/common/constants.mjs +0 -0
  28. /package/{esm2020 → esm2022}/common/util.mjs +0 -0
  29. /package/{esm2020 → esm2022}/directives.mjs +0 -0
  30. /package/{esm2020 → esm2022}/index.mjs +0 -0
  31. /package/{esm2020 → esm2022}/progress-kendo-angular-progressbar.mjs +0 -0
  32. /package/{esm2020 → esm2022}/types/animation-end-event.mjs +0 -0
  33. /package/{esm2020 → esm2022}/types/animation-options.interface.mjs +0 -0
  34. /package/{esm2020 → esm2022}/types/label-fn-type.mjs +0 -0
  35. /package/{esm2020 → esm2022}/types/label-position.mjs +0 -0
  36. /package/{esm2020 → esm2022}/types/label-settings.interface.mjs +0 -0
  37. /package/{esm2020 → esm2022}/types/label-type.mjs +0 -0
  38. /package/{esm2020 → esm2022}/types/progressbar-animation.interface.mjs +0 -0
  39. /package/{esm2020 → esm2022}/types/progressbar-orientation.mjs +0 -0
@@ -13,67 +13,10 @@ import * as i1 from "@progress/kendo-angular-l10n";
13
13
  * @hidden
14
14
  */
15
15
  export class ProgressBarBase {
16
- /**
17
- * @hidden
18
- */
19
- constructor(elem, renderer, localization) {
20
- this.elem = elem;
21
- this.renderer = renderer;
22
- this.localization = localization;
23
- this.hostClasses = true;
24
- this.roleAttribute = 'progressbar';
25
- /**
26
- * The maximum value of the ProgressBar.
27
- * Defaults to `100`.
28
- */
29
- this.max = 100;
30
- /**
31
- * The minimum value of the ProgressBar.
32
- * Defaults to `0`.
33
- */
34
- this.min = 0;
35
- /**
36
- * The value of the ProgressBar.
37
- * Has to be between `min` and `max`.
38
- * By default, the value is equal to the `min` value.
39
- */
40
- /**
41
- * The value of the ProgressBar.
42
- * Has to be between `min` and `max`.
43
- * Defaults to `0`.
44
- */
45
- this.value = 0;
46
- /**
47
- * Defines the orientation of the ProgressBar
48
- * ([see example]({% slug progressbar_orientation %})).
49
- * Defaults to `horizontal`.
50
- */
51
- this.orientation = 'horizontal';
52
- /**
53
- * If set to `true`, the ProgressBar will be disabled
54
- * ([see example]({% slug progressbar_disabled %})).
55
- * It will still allow you to change its value.
56
- * Defaults to `false`.
57
- */
58
- this.disabled = false;
59
- /**
60
- * If set to `true`, the ProgressBar will be reversed
61
- * ([see example]({% slug progressbar_direction %})).
62
- * Defaults to `false`.
63
- */
64
- this.reverse = false;
65
- /**
66
- * Sets the `indeterminate` state of the ProgressBar.
67
- * Defaults to `false`.
68
- */
69
- this.indeterminate = false;
70
- this.displayValue = 0;
71
- this.previousValue = 0;
72
- validatePackage(packageMetadata);
73
- this.localizationChangeSubscription = localization.changes.subscribe(({ rtl }) => {
74
- this.direction = rtl ? 'rtl' : 'ltr';
75
- });
76
- }
16
+ elem;
17
+ renderer;
18
+ localization;
19
+ hostClasses = true;
77
20
  get isHorizontal() {
78
21
  return this.orientation === 'horizontal';
79
22
  }
@@ -92,6 +35,7 @@ export class ProgressBarBase {
92
35
  get dirAttribute() {
93
36
  return this.direction;
94
37
  }
38
+ roleAttribute = 'progressbar';
95
39
  get ariaMinAttribute() {
96
40
  return String(this.min);
97
41
  }
@@ -101,6 +45,27 @@ export class ProgressBarBase {
101
45
  get ariaValueAttribute() {
102
46
  return this.indeterminate ? undefined : String(this.displayValue);
103
47
  }
48
+ /**
49
+ * The maximum value of the ProgressBar.
50
+ * Defaults to `100`.
51
+ */
52
+ max = 100;
53
+ /**
54
+ * The minimum value of the ProgressBar.
55
+ * Defaults to `0`.
56
+ */
57
+ min = 0;
58
+ /**
59
+ * The value of the ProgressBar.
60
+ * Has to be between `min` and `max`.
61
+ * By default, the value is equal to the `min` value.
62
+ */
63
+ /**
64
+ * The value of the ProgressBar.
65
+ * Has to be between `min` and `max`.
66
+ * Defaults to `0`.
67
+ */
68
+ value = 0;
104
69
  /**
105
70
  * @hidden
106
71
  */
@@ -134,6 +99,46 @@ export class ProgressBarBase {
134
99
  get _progressRatio() {
135
100
  return calculateRatio(this.min, this.max, this.displayValue);
136
101
  }
102
+ /**
103
+ * Defines the orientation of the ProgressBar
104
+ * ([see example]({% slug progressbar_orientation %})).
105
+ * Defaults to `horizontal`.
106
+ */
107
+ orientation = 'horizontal';
108
+ /**
109
+ * If set to `true`, the ProgressBar will be disabled
110
+ * ([see example]({% slug progressbar_disabled %})).
111
+ * It will still allow you to change its value.
112
+ * Defaults to `false`.
113
+ */
114
+ disabled = false;
115
+ /**
116
+ * If set to `true`, the ProgressBar will be reversed
117
+ * ([see example]({% slug progressbar_direction %})).
118
+ * Defaults to `false`.
119
+ */
120
+ reverse = false;
121
+ /**
122
+ * Sets the `indeterminate` state of the ProgressBar.
123
+ * Defaults to `false`.
124
+ */
125
+ indeterminate = false;
126
+ direction;
127
+ localizationChangeSubscription;
128
+ displayValue = 0;
129
+ previousValue = 0;
130
+ /**
131
+ * @hidden
132
+ */
133
+ constructor(elem, renderer, localization) {
134
+ this.elem = elem;
135
+ this.renderer = renderer;
136
+ this.localization = localization;
137
+ validatePackage(packageMetadata);
138
+ this.localizationChangeSubscription = localization.changes.subscribe(({ rtl }) => {
139
+ this.direction = rtl ? 'rtl' : 'ltr';
140
+ });
141
+ }
137
142
  ngAfterViewInit() {
138
143
  const elem = this.elem.nativeElement;
139
144
  const label = this.localization.get('progressBarLabel');
@@ -165,10 +170,10 @@ export class ProgressBarBase {
165
170
  this.localizationChangeSubscription.unsubscribe();
166
171
  }
167
172
  }
173
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ProgressBarBase, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
174
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ProgressBarBase, selector: "ng-component", inputs: { max: "max", min: "min", value: "value", orientation: "orientation", disabled: "disabled", reverse: "reverse", indeterminate: "indeterminate" }, host: { properties: { "class.k-progressbar": "this.hostClasses", "class.k-progressbar-horizontal": "this.isHorizontal", "class.k-progressbar-vertical": "this.isVertical", "class.k-disabled": "this.disabledClass", "class.k-progressbar-reverse": "this.reverseClass", "class.k-progressbar-indeterminate": "this.indeterminateClass", "attr.dir": "this.dirAttribute", "attr.role": "this.roleAttribute", "attr.aria-valuemin": "this.ariaMinAttribute", "attr.aria-valuemax": "this.ariaMaxAttribute", "attr.aria-valuenow": "this.ariaValueAttribute" } }, usesOnChanges: true, ngImport: i0, template: '', isInline: true });
168
175
  }
169
- ProgressBarBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ProgressBarBase, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
170
- ProgressBarBase.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ProgressBarBase, selector: "ng-component", inputs: { max: "max", min: "min", value: "value", orientation: "orientation", disabled: "disabled", reverse: "reverse", indeterminate: "indeterminate" }, host: { properties: { "class.k-progressbar": "this.hostClasses", "class.k-progressbar-horizontal": "this.isHorizontal", "class.k-progressbar-vertical": "this.isVertical", "class.k-disabled": "this.disabledClass", "class.k-progressbar-reverse": "this.reverseClass", "class.k-progressbar-indeterminate": "this.indeterminateClass", "attr.dir": "this.dirAttribute", "attr.role": "this.roleAttribute", "attr.aria-valuemin": "this.ariaMinAttribute", "attr.aria-valuemax": "this.ariaMaxAttribute", "attr.aria-valuenow": "this.ariaValueAttribute" } }, usesOnChanges: true, ngImport: i0, template: '', isInline: true });
171
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ProgressBarBase, decorators: [{
176
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ProgressBarBase, decorators: [{
172
177
  type: Component,
173
178
  args: [{
174
179
  template: ''
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-progressbar',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1729169961,
13
- version: '17.0.0-develop.8',
12
+ publishDate: 1731413909,
13
+ version: '17.0.0',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -29,31 +29,51 @@ import * as i1 from "@progress/kendo-angular-l10n";
29
29
  * ```
30
30
  */
31
31
  export class ProgressBarComponent extends ProgressBarBase {
32
+ localization;
33
+ elem;
34
+ renderer;
35
+ zone;
32
36
  /**
33
- * @hidden
37
+ * Determines whether the status label will be visible.
38
+ * Defaults to `true`—the label will be visible and displayed with the default
39
+ * `LabelSettings` having its position set to `end` and its format set to `value`.
34
40
  */
35
- constructor(localization, elem, renderer, zone) {
36
- super(elem, renderer, localization);
37
- this.localization = localization;
38
- this.elem = elem;
39
- this.renderer = renderer;
40
- this.zone = zone;
41
- /**
42
- * Determines whether the status label will be visible.
43
- * Defaults to `true`—the label will be visible and displayed with the default
44
- * `LabelSettings` having its position set to `end` and its format set to `value`.
45
- */
46
- this.label = true;
47
- /**
48
- * The animation configuration of the ProgressBar.
49
- * Defaults to `false`.
50
- */
51
- this.animation = false;
52
- /**
53
- * Fires when the animation which indicates the latest value change is completed.
54
- */
55
- this.animationEnd = new EventEmitter();
56
- }
41
+ label = true;
42
+ /**
43
+ * The CSS styles that will be rendered on the inner element which represents the full portion of the progress bar
44
+ * ([see example]({% slug progressbar_appearance %})).
45
+ * Supports the type of values that are supported by [`ngStyle`](link:site.data.urls.angular['ngstyleapi']).
46
+ */
47
+ progressCssStyle;
48
+ /**
49
+ * The CSS classes that will be rendered on the inner element which represents the full portion of the progress bar
50
+ * ([see example]({% slug progressbar_appearance %})).
51
+ * Supports the type of values that are supported by [`ngClass`](link:site.data.urls.angular['ngclassapi']).
52
+ */
53
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
54
+ progressCssClass;
55
+ /**
56
+ * The CSS styles that will be rendered on the inner element which represents the empty portion of the progress bar
57
+ * ([see example]({% slug progressbar_appearance %})).
58
+ * Supports the type of values that are supported by [`ngStyle`](link:site.data.urls.angular['ngstyleapi']).
59
+ */
60
+ emptyCssStyle;
61
+ /**
62
+ * The CSS classes that will be rendered on the inner element which represents the empty portion of the progress bar
63
+ * ([see example]({% slug progressbar_appearance %})).
64
+ * Supports the type of values that are supported by [`ngClass`](link:site.data.urls.angular['ngclassapi']).
65
+ */
66
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
67
+ emptyCssClass;
68
+ /**
69
+ * The animation configuration of the ProgressBar.
70
+ * Defaults to `false`.
71
+ */
72
+ animation = false;
73
+ /**
74
+ * Fires when the animation which indicates the latest value change is completed.
75
+ */
76
+ animationEnd = new EventEmitter();
57
77
  /**
58
78
  * @hidden
59
79
  */
@@ -106,6 +126,21 @@ export class ProgressBarComponent extends ProgressBarBase {
106
126
  get formattedLabelValue() {
107
127
  return formatValue(this.displayValue, this.min, this.max, this.label);
108
128
  }
129
+ progressStatusElement;
130
+ progressStatusWrapperElement;
131
+ animationFrame;
132
+ cancelCurrentAnimation;
133
+ isAnimationInProgress;
134
+ /**
135
+ * @hidden
136
+ */
137
+ constructor(localization, elem, renderer, zone) {
138
+ super(elem, renderer, localization);
139
+ this.localization = localization;
140
+ this.elem = elem;
141
+ this.renderer = renderer;
142
+ this.zone = zone;
143
+ }
109
144
  /**
110
145
  * @hidden
111
146
  */
@@ -217,15 +252,14 @@ export class ProgressBarComponent extends ProgressBarBase {
217
252
  this.isAnimationInProgress = false;
218
253
  });
219
254
  }
220
- }
221
- ProgressBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ProgressBarComponent, deps: [{ token: i1.LocalizationService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
222
- ProgressBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ProgressBarComponent, isStandalone: true, selector: "kendo-progressbar", inputs: { label: "label", progressCssStyle: "progressCssStyle", progressCssClass: "progressCssClass", emptyCssStyle: "emptyCssStyle", emptyCssClass: "emptyCssClass", animation: "animation" }, outputs: { animationEnd: "animationEnd" }, providers: [
223
- LocalizationService,
224
- {
225
- provide: L10N_PREFIX,
226
- useValue: 'kendo.progressbar'
227
- }
228
- ], viewQueries: [{ propertyName: "progressStatusElement", first: true, predicate: ["progressStatus"], descendants: true }, { propertyName: "progressStatusWrapperElement", first: true, predicate: ["progressStatusWrap"], descendants: true }], exportAs: ["kendoProgressBar"], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `
255
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ProgressBarComponent, deps: [{ token: i1.LocalizationService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
256
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ProgressBarComponent, isStandalone: true, selector: "kendo-progressbar", inputs: { label: "label", progressCssStyle: "progressCssStyle", progressCssClass: "progressCssClass", emptyCssStyle: "emptyCssStyle", emptyCssClass: "emptyCssClass", animation: "animation" }, outputs: { animationEnd: "animationEnd" }, providers: [
257
+ LocalizationService,
258
+ {
259
+ provide: L10N_PREFIX,
260
+ useValue: 'kendo.progressbar'
261
+ }
262
+ ], viewQueries: [{ propertyName: "progressStatusElement", first: true, predicate: ["progressStatus"], descendants: true }, { propertyName: "progressStatusWrapperElement", first: true, predicate: ["progressStatusWrap"], descendants: true }], exportAs: ["kendoProgressBar"], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `
229
263
  <ng-container kendoProgressBarLocalizedMessages
230
264
  i18n-progressBarLabel="kendo.progressbar.progressBarLabel|The aria-label attribute for the ProgressBar component."
231
265
  progressBarLabel="Progressbar"
@@ -261,7 +295,8 @@ ProgressBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
261
295
  </span>
262
296
  </div>
263
297
  `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedProgressBarMessagesDirective, selector: "[kendoProgressBarLocalizedMessages]" }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
264
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ProgressBarComponent, decorators: [{
298
+ }
299
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ProgressBarComponent, decorators: [{
265
300
  type: Component,
266
301
  args: [{
267
302
  exportAs: 'kendoProgressBar',
@@ -11,10 +11,7 @@ import * as i2 from "./common/localization/custom-messages.component";
11
11
  import * as i3 from "./circularprogressbar/center-template.directive";
12
12
  import * as i4 from "./circularprogressbar/circular-progressbar.component";
13
13
  import * as i5 from "./progressbar.component";
14
- /**
15
- * @hidden
16
- * IMPORTANT: NgModule export kept for backwards compatibility
17
- */
14
+ // IMPORTANT: NgModule export kept for backwards compatibility
18
15
  /**
19
16
  * Represents the [NgModule](link:site.data.urls.angular['ngmodules'])
20
17
  * definition for the ProgressBar components.
@@ -47,11 +44,11 @@ import * as i5 from "./progressbar.component";
47
44
  * ```
48
45
  */
49
46
  export class ProgressBarModule {
47
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ProgressBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
48
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: ProgressBarModule, imports: [i1.ChunkProgressBarComponent, i2.ProgressBarCustomMessagesComponent, i3.CircularProgressbarCenterTemplateDirective, i4.CircularProgressBarComponent, i2.ProgressBarCustomMessagesComponent, i5.ProgressBarComponent, i2.ProgressBarCustomMessagesComponent], exports: [i1.ChunkProgressBarComponent, i2.ProgressBarCustomMessagesComponent, i3.CircularProgressbarCenterTemplateDirective, i4.CircularProgressBarComponent, i2.ProgressBarCustomMessagesComponent, i5.ProgressBarComponent, i2.ProgressBarCustomMessagesComponent] });
49
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ProgressBarModule, providers: [ResizeBatchService], imports: [i4.CircularProgressBarComponent] });
50
50
  }
51
- ProgressBarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ProgressBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
52
- ProgressBarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ProgressBarModule, imports: [i1.ChunkProgressBarComponent, i2.ProgressBarCustomMessagesComponent, i3.CircularProgressbarCenterTemplateDirective, i4.CircularProgressBarComponent, i2.ProgressBarCustomMessagesComponent, i5.ProgressBarComponent, i2.ProgressBarCustomMessagesComponent], exports: [i1.ChunkProgressBarComponent, i2.ProgressBarCustomMessagesComponent, i3.CircularProgressbarCenterTemplateDirective, i4.CircularProgressBarComponent, i2.ProgressBarCustomMessagesComponent, i5.ProgressBarComponent, i2.ProgressBarCustomMessagesComponent] });
53
- ProgressBarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ProgressBarModule, providers: [ResizeBatchService], imports: [i1.ChunkProgressBarComponent, i2.ProgressBarCustomMessagesComponent, i4.CircularProgressBarComponent, i2.ProgressBarCustomMessagesComponent, i5.ProgressBarComponent, i2.ProgressBarCustomMessagesComponent] });
54
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ProgressBarModule, decorators: [{
51
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ProgressBarModule, decorators: [{
55
52
  type: NgModule,
56
53
  args: [{
57
54
  exports: [...KENDO_PROGRESSBARS],