@progress/kendo-angular-gauges 17.0.0-develop.9 → 17.0.1-develop.1

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 (100) hide show
  1. package/arc-gauge/arc-gauge.component.d.ts +1 -1
  2. package/arc-gauge/color.component.d.ts +1 -1
  3. package/arc-gauge/scale.component.d.ts +1 -1
  4. package/base-components/gauge-area.component.d.ts +1 -1
  5. package/base-components/gauge.component.d.ts +1 -1
  6. package/base-components/labels.component.d.ts +1 -1
  7. package/base-components/range.component.d.ts +1 -1
  8. package/base-components/scale.component.d.ts +1 -1
  9. package/circular-gauge/circular-gauge.component.d.ts +1 -1
  10. package/{esm2020 → esm2022}/arc-gauge/arc-center-template.directive.mjs +4 -3
  11. package/{esm2020 → esm2022}/arc-gauge/arc-gauge.component.mjs +36 -13
  12. package/{esm2020 → esm2022}/arc-gauge/arc-gauge.module.mjs +4 -4
  13. package/{esm2020 → esm2022}/arc-gauge/color.component.mjs +7 -3
  14. package/{esm2020 → esm2022}/arc-gauge/colors.component.mjs +4 -3
  15. package/{esm2020 → esm2022}/arc-gauge/gauge-area.component.mjs +4 -3
  16. package/{esm2020 → esm2022}/arc-gauge/labels.component.mjs +4 -3
  17. package/{esm2020 → esm2022}/arc-gauge/scale.component.mjs +9 -3
  18. package/{esm2020 → esm2022}/base-components/collection-item.component.mjs +5 -3
  19. package/{esm2020 → esm2022}/base-components/collection.component.mjs +8 -3
  20. package/{esm2020 → esm2022}/base-components/gauge-area.component.mjs +25 -3
  21. package/{esm2020 → esm2022}/base-components/gauge.component.mjs +40 -11
  22. package/{esm2020 → esm2022}/base-components/labels.component.mjs +48 -3
  23. package/{esm2020 → esm2022}/base-components/range.component.mjs +19 -3
  24. package/{esm2020 → esm2022}/base-components/scale.component.mjs +15 -3
  25. package/{esm2020 → esm2022}/base-components/settings.component.mjs +5 -3
  26. package/{esm2020 → esm2022}/circular-gauge/center-template.directive.mjs +4 -3
  27. package/{esm2020 → esm2022}/circular-gauge/circular-gauge.component.mjs +16 -11
  28. package/{esm2020 → esm2022}/circular-gauge/circular-gauge.module.mjs +4 -4
  29. package/{esm2020 → esm2022}/circular-gauge/gauge-area.component.mjs +3 -3
  30. package/{esm2020 → esm2022}/circular-gauge/labels.component.mjs +3 -3
  31. package/{esm2020 → esm2022}/circular-gauge/scale.component.mjs +7 -3
  32. package/{esm2020 → esm2022}/gauges.module.mjs +4 -4
  33. package/{esm2020 → esm2022}/linear-gauge/gauge-area.component.mjs +4 -3
  34. package/{esm2020 → esm2022}/linear-gauge/labels.component.mjs +4 -3
  35. package/{esm2020 → esm2022}/linear-gauge/linear-gauge.component.mjs +19 -11
  36. package/{esm2020 → esm2022}/linear-gauge/linear-gauge.module.mjs +4 -4
  37. package/{esm2020 → esm2022}/linear-gauge/pointer.component.mjs +10 -3
  38. package/{esm2020 → esm2022}/linear-gauge/pointers.component.mjs +4 -3
  39. package/{esm2020 → esm2022}/linear-gauge/range.component.mjs +3 -3
  40. package/{esm2020 → esm2022}/linear-gauge/ranges.component.mjs +4 -3
  41. package/{esm2020 → esm2022}/linear-gauge/scale.component.mjs +8 -3
  42. package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
  43. package/{esm2020 → esm2022}/radial-gauge/gauge-area.component.mjs +4 -3
  44. package/{esm2020 → esm2022}/radial-gauge/labels.component.mjs +5 -3
  45. package/{esm2020 → esm2022}/radial-gauge/pointer.component.mjs +7 -3
  46. package/{esm2020 → esm2022}/radial-gauge/pointers.component.mjs +4 -3
  47. package/{esm2020 → esm2022}/radial-gauge/radial-gauge.component.mjs +19 -11
  48. package/{esm2020 → esm2022}/radial-gauge/radial-gauge.module.mjs +4 -4
  49. package/{esm2020 → esm2022}/radial-gauge/range.component.mjs +3 -3
  50. package/{esm2020 → esm2022}/radial-gauge/ranges.component.mjs +4 -3
  51. package/{esm2020 → esm2022}/radial-gauge/scale.component.mjs +9 -3
  52. package/{esm2020 → esm2022}/services/collection-changes.service.mjs +4 -3
  53. package/{esm2020 → esm2022}/services/configuration.service.mjs +6 -6
  54. package/{esm2020 → esm2022}/services/theme.service.mjs +4 -3
  55. package/{fesm2020 → fesm2022}/progress-kendo-angular-gauges.mjs +413 -184
  56. package/linear-gauge/linear-gauge.component.d.ts +1 -1
  57. package/linear-gauge/pointer.component.d.ts +1 -1
  58. package/linear-gauge/scale.component.d.ts +1 -1
  59. package/package.json +15 -21
  60. package/radial-gauge/labels.component.d.ts +1 -1
  61. package/radial-gauge/pointer.component.d.ts +1 -1
  62. package/radial-gauge/radial-gauge.component.d.ts +1 -1
  63. package/radial-gauge/scale.component.d.ts +1 -1
  64. package/types/dash-type.interface.d.ts +1 -1
  65. package/types/line-cap.d.ts +1 -1
  66. package/types/linear-pointer-shape.d.ts +1 -1
  67. package/types/radial-label-position.d.ts +1 -1
  68. package/fesm2015/progress-kendo-angular-gauges.mjs +0 -2001
  69. /package/{esm2020 → esm2022}/arc-gauge/arc-gauge.directives.mjs +0 -0
  70. /package/{esm2020 → esm2022}/base-components.mjs +0 -0
  71. /package/{esm2020 → esm2022}/circular-gauge/circular-gauge.directives.mjs +0 -0
  72. /package/{esm2020 → esm2022}/directives.mjs +0 -0
  73. /package/{esm2020 → esm2022}/index.mjs +0 -0
  74. /package/{esm2020 → esm2022}/linear-gauge/linear-gauge.directives.mjs +0 -0
  75. /package/{esm2020 → esm2022}/progress-kendo-angular-gauges.mjs +0 -0
  76. /package/{esm2020 → esm2022}/radial-gauge/radial-gauge.directives.mjs +0 -0
  77. /package/{esm2020 → esm2022}/services.mjs +0 -0
  78. /package/{esm2020 → esm2022}/types/arc-scale.interface.mjs +0 -0
  79. /package/{esm2020 → esm2022}/types/border.interface.mjs +0 -0
  80. /package/{esm2020 → esm2022}/types/cap.interface.mjs +0 -0
  81. /package/{esm2020 → esm2022}/types/circular-gauge-scale.interface.mjs +0 -0
  82. /package/{esm2020 → esm2022}/types/color-range.interface.mjs +0 -0
  83. /package/{esm2020 → esm2022}/types/dash-type.interface.mjs +0 -0
  84. /package/{esm2020 → esm2022}/types/gauge-area.interface.mjs +0 -0
  85. /package/{esm2020 → esm2022}/types/labels.interface.mjs +0 -0
  86. /package/{esm2020 → esm2022}/types/line-cap.mjs +0 -0
  87. /package/{esm2020 → esm2022}/types/line.interface.mjs +0 -0
  88. /package/{esm2020 → esm2022}/types/linear-pointer-shape.mjs +0 -0
  89. /package/{esm2020 → esm2022}/types/linear-pointer.interface.mjs +0 -0
  90. /package/{esm2020 → esm2022}/types/linear-scale.interface.mjs +0 -0
  91. /package/{esm2020 → esm2022}/types/margin.interface.mjs +0 -0
  92. /package/{esm2020 → esm2022}/types/padding.interface.mjs +0 -0
  93. /package/{esm2020 → esm2022}/types/radial-label-position.mjs +0 -0
  94. /package/{esm2020 → esm2022}/types/radial-labels.interface.mjs +0 -0
  95. /package/{esm2020 → esm2022}/types/radial-pointer.interface.mjs +0 -0
  96. /package/{esm2020 → esm2022}/types/radial-scale.interface.mjs +0 -0
  97. /package/{esm2020 → esm2022}/types/range.interface.mjs +0 -0
  98. /package/{esm2020 → esm2022}/types/scale.interface.mjs +0 -0
  99. /package/{esm2020 → esm2022}/types/ticks.interface.mjs +0 -0
  100. /package/{esm2020 → esm2022}/types.mjs +0 -0
@@ -10,6 +10,8 @@ import * as i1 from "../services";
10
10
  * @hidden
11
11
  */
12
12
  export class SettingsComponent {
13
+ key;
14
+ configurationService;
13
15
  constructor(key, configurationService) {
14
16
  this.key = key;
15
17
  this.configurationService = configurationService;
@@ -20,9 +22,9 @@ export class SettingsComponent {
20
22
  ngOnDestroy() {
21
23
  this.configurationService.set(this.key, null);
22
24
  }
25
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SettingsComponent, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive });
26
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: SettingsComponent, usesOnChanges: true, ngImport: i0 });
23
27
  }
24
- SettingsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SettingsComponent, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive });
25
- SettingsComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: SettingsComponent, usesOnChanges: true, ngImport: i0 });
26
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SettingsComponent, decorators: [{
28
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SettingsComponent, decorators: [{
27
29
  type: Directive
28
30
  }], ctorParameters: function () { return [{ type: undefined }, { type: i1.ConfigurationService }]; } });
@@ -31,13 +31,14 @@ import * as i0 from "@angular/core";
31
31
  * ```
32
32
  */
33
33
  export class CircularGaugeCenterTemplateDirective {
34
+ templateRef;
34
35
  constructor(templateRef) {
35
36
  this.templateRef = templateRef;
36
37
  }
38
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CircularGaugeCenterTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
39
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: CircularGaugeCenterTemplateDirective, isStandalone: true, selector: "[kendoCircularGaugeCenterTemplate]", ngImport: i0 });
37
40
  }
38
- CircularGaugeCenterTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeCenterTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
39
- CircularGaugeCenterTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: CircularGaugeCenterTemplateDirective, isStandalone: true, selector: "[kendoCircularGaugeCenterTemplate]", ngImport: i0 });
40
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeCenterTemplateDirective, decorators: [{
41
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CircularGaugeCenterTemplateDirective, decorators: [{
41
42
  type: Directive,
42
43
  args: [{
43
44
  selector: '[kendoCircularGaugeCenterTemplate]',
@@ -35,27 +35,32 @@ import * as i0 from "@angular/core";
35
35
  * ```
36
36
  */
37
37
  export class CircularGaugeComponent extends ArcGaugeComponent {
38
+ /**
39
+ * The scale options of the gauge.
40
+ */
41
+ scale;
42
+ centerTemplate;
38
43
  createInstance(element, options, theme, context) {
39
44
  this.instance = new CircularGauge(element, options, theme, context);
40
45
  this.updateElements();
41
46
  }
42
- }
43
- CircularGaugeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
44
- CircularGaugeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CircularGaugeComponent, isStandalone: true, selector: "kendo-circulargauge", inputs: { scale: "scale" }, providers: [
45
- ConfigurationService,
46
- LocalizationService,
47
- {
48
- provide: L10N_PREFIX,
49
- useValue: 'kendo.circulargauge'
50
- }
51
- ], queries: [{ propertyName: "centerTemplate", first: true, predicate: CircularGaugeCenterTemplateDirective, descendants: true }], exportAs: ["kendoCircularGauge"], usesInheritance: true, ngImport: i0, template: `
47
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CircularGaugeComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
48
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CircularGaugeComponent, isStandalone: true, selector: "kendo-circulargauge", inputs: { scale: "scale" }, providers: [
49
+ ConfigurationService,
50
+ LocalizationService,
51
+ {
52
+ provide: L10N_PREFIX,
53
+ useValue: 'kendo.circulargauge'
54
+ }
55
+ ], queries: [{ propertyName: "centerTemplate", first: true, predicate: CircularGaugeCenterTemplateDirective, descendants: true }], exportAs: ["kendoCircularGauge"], usesInheritance: true, ngImport: i0, template: `
52
56
  <div #surface class='k-chart-surface'></div>
53
57
  <div class="k-arcgauge-label" *ngIf="centerTemplate" #label>
54
58
  <ng-template [ngTemplateOutlet]="centerTemplate.templateRef" [ngTemplateOutletContext]="centerTemplateContext"></ng-template>
55
59
  </div>
56
60
  <kendo-resize-sensor (resize)="onResize($event)" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>
57
61
  `, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
58
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeComponent, decorators: [{
62
+ }
63
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CircularGaugeComponent, decorators: [{
59
64
  type: Component,
60
65
  args: [{
61
66
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -35,11 +35,11 @@ import * as i5 from "./labels.component";
35
35
  * ```
36
36
  */
37
37
  export class CircularGaugeModule {
38
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CircularGaugeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
39
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: CircularGaugeModule, imports: [i1.CircularGaugeComponent, i2.CircularGaugeCenterTemplateDirective, i3.CircularGaugeAreaComponent, i4.CircularGaugeScaleComponent, i5.CircularGaugeLabelsComponent], exports: [i1.CircularGaugeComponent, i2.CircularGaugeCenterTemplateDirective, i3.CircularGaugeAreaComponent, i4.CircularGaugeScaleComponent, i5.CircularGaugeLabelsComponent] });
40
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CircularGaugeModule, providers: [ThemeService], imports: [i1.CircularGaugeComponent] });
38
41
  }
39
- CircularGaugeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
40
- CircularGaugeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeModule, imports: [i1.CircularGaugeComponent, i2.CircularGaugeCenterTemplateDirective, i3.CircularGaugeAreaComponent, i4.CircularGaugeScaleComponent, i5.CircularGaugeLabelsComponent], exports: [i1.CircularGaugeComponent, i2.CircularGaugeCenterTemplateDirective, i3.CircularGaugeAreaComponent, i4.CircularGaugeScaleComponent, i5.CircularGaugeLabelsComponent] });
41
- CircularGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeModule, providers: [ThemeService], imports: [i1.CircularGaugeComponent, i3.CircularGaugeAreaComponent, i4.CircularGaugeScaleComponent, i5.CircularGaugeLabelsComponent] });
42
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeModule, decorators: [{
42
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CircularGaugeModule, decorators: [{
43
43
  type: NgModule,
44
44
  args: [{
45
45
  exports: [...KENDO_CIRCULARGAUGE],
@@ -10,10 +10,10 @@ import * as i0 from "@angular/core";
10
10
  * Represents the entire visible area of the Circular Gauge.
11
11
  */
12
12
  export class CircularGaugeAreaComponent extends ArcGaugeAreaComponent {
13
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CircularGaugeAreaComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
14
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CircularGaugeAreaComponent, isStandalone: true, selector: "kendo-circulargauge-area", usesInheritance: true, ngImport: i0, template: '', isInline: true });
13
15
  }
14
- CircularGaugeAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeAreaComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
15
- CircularGaugeAreaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CircularGaugeAreaComponent, isStandalone: true, selector: "kendo-circulargauge-area", usesInheritance: true, ngImport: i0, template: '', isInline: true });
16
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeAreaComponent, decorators: [{
16
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CircularGaugeAreaComponent, decorators: [{
17
17
  type: Component,
18
18
  args: [{
19
19
  selector: 'kendo-circulargauge-area',
@@ -9,10 +9,10 @@ import * as i0 from "@angular/core";
9
9
  * The configuration options for the scale labels of the Circular Gauge.
10
10
  */
11
11
  export class CircularGaugeLabelsComponent extends ArcLabelsComponent {
12
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CircularGaugeLabelsComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
13
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CircularGaugeLabelsComponent, isStandalone: true, selector: "kendo-circulargauge-scale-labels", usesInheritance: true, ngImport: i0, template: '', isInline: true });
12
14
  }
13
- CircularGaugeLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeLabelsComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
14
- CircularGaugeLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CircularGaugeLabelsComponent, isStandalone: true, selector: "kendo-circulargauge-scale-labels", usesInheritance: true, ngImport: i0, template: '', isInline: true });
15
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeLabelsComponent, decorators: [{
15
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CircularGaugeLabelsComponent, decorators: [{
16
16
  type: Component,
17
17
  args: [{
18
18
  selector: 'kendo-circulargauge-scale-labels',
@@ -10,10 +10,14 @@ import * as i0 from "@angular/core";
10
10
  * ([see example]({% slug scaleoptions_circulargauge %})).
11
11
  */
12
12
  export class CircularGaugeScaleComponent extends ArcScaleComponent {
13
+ /**
14
+ * @hidden
15
+ */
16
+ endAngle;
17
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CircularGaugeScaleComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
18
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CircularGaugeScaleComponent, isStandalone: true, selector: "kendo-circulargauge-scale", usesInheritance: true, ngImport: i0, template: '', isInline: true });
13
19
  }
14
- CircularGaugeScaleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeScaleComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
15
- CircularGaugeScaleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CircularGaugeScaleComponent, isStandalone: true, selector: "kendo-circulargauge-scale", usesInheritance: true, ngImport: i0, template: '', isInline: true });
16
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeScaleComponent, decorators: [{
20
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CircularGaugeScaleComponent, decorators: [{
17
21
  type: Component,
18
22
  args: [{
19
23
  selector: 'kendo-circulargauge-scale',
@@ -59,11 +59,11 @@ import * as i28 from "./radial-gauge/ranges.component";
59
59
  * ```
60
60
  */
61
61
  export class GaugesModule {
62
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GaugesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
63
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: GaugesModule, imports: [i1.ArcGaugeComponent, i2.ArcCenterTemplateDirective, i3.ArcGaugeAreaComponent, i4.ArcScaleComponent, i5.ArcLabelsComponent, i6.ColorsComponent, i7.ColorComponent, i8.CircularGaugeComponent, i9.CircularGaugeCenterTemplateDirective, i10.CircularGaugeAreaComponent, i11.CircularGaugeScaleComponent, i12.CircularGaugeLabelsComponent, i13.LinearGaugeComponent, i14.LinearGaugeAreaComponent, i15.LinearScaleComponent, i16.LinearLabelsComponent, i17.LinearPointersComponent, i18.LinearPointerComponent, i19.LinearRangeComponent, i20.LinearRangesComponent, i21.RadialGaugeComponent, i22.RadialGaugeAreaComponent, i23.RadialScaleComponent, i24.RadialLabelsComponent, i25.RadialPointersComponent, i26.RadialPointerComponent, i27.RadialRangeComponent, i28.RadialRangesComponent], exports: [i1.ArcGaugeComponent, i2.ArcCenterTemplateDirective, i3.ArcGaugeAreaComponent, i4.ArcScaleComponent, i5.ArcLabelsComponent, i6.ColorsComponent, i7.ColorComponent, i8.CircularGaugeComponent, i9.CircularGaugeCenterTemplateDirective, i10.CircularGaugeAreaComponent, i11.CircularGaugeScaleComponent, i12.CircularGaugeLabelsComponent, i13.LinearGaugeComponent, i14.LinearGaugeAreaComponent, i15.LinearScaleComponent, i16.LinearLabelsComponent, i17.LinearPointersComponent, i18.LinearPointerComponent, i19.LinearRangeComponent, i20.LinearRangesComponent, i21.RadialGaugeComponent, i22.RadialGaugeAreaComponent, i23.RadialScaleComponent, i24.RadialLabelsComponent, i25.RadialPointersComponent, i26.RadialPointerComponent, i27.RadialRangeComponent, i28.RadialRangesComponent] });
64
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GaugesModule, providers: [ThemeService], imports: [i1.ArcGaugeComponent, i8.CircularGaugeComponent, i13.LinearGaugeComponent, i21.RadialGaugeComponent] });
62
65
  }
63
- GaugesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GaugesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
64
- GaugesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: GaugesModule, imports: [i1.ArcGaugeComponent, i2.ArcCenterTemplateDirective, i3.ArcGaugeAreaComponent, i4.ArcScaleComponent, i5.ArcLabelsComponent, i6.ColorsComponent, i7.ColorComponent, i8.CircularGaugeComponent, i9.CircularGaugeCenterTemplateDirective, i10.CircularGaugeAreaComponent, i11.CircularGaugeScaleComponent, i12.CircularGaugeLabelsComponent, i13.LinearGaugeComponent, i14.LinearGaugeAreaComponent, i15.LinearScaleComponent, i16.LinearLabelsComponent, i17.LinearPointersComponent, i18.LinearPointerComponent, i19.LinearRangeComponent, i20.LinearRangesComponent, i21.RadialGaugeComponent, i22.RadialGaugeAreaComponent, i23.RadialScaleComponent, i24.RadialLabelsComponent, i25.RadialPointersComponent, i26.RadialPointerComponent, i27.RadialRangeComponent, i28.RadialRangesComponent], exports: [i1.ArcGaugeComponent, i2.ArcCenterTemplateDirective, i3.ArcGaugeAreaComponent, i4.ArcScaleComponent, i5.ArcLabelsComponent, i6.ColorsComponent, i7.ColorComponent, i8.CircularGaugeComponent, i9.CircularGaugeCenterTemplateDirective, i10.CircularGaugeAreaComponent, i11.CircularGaugeScaleComponent, i12.CircularGaugeLabelsComponent, i13.LinearGaugeComponent, i14.LinearGaugeAreaComponent, i15.LinearScaleComponent, i16.LinearLabelsComponent, i17.LinearPointersComponent, i18.LinearPointerComponent, i19.LinearRangeComponent, i20.LinearRangesComponent, i21.RadialGaugeComponent, i22.RadialGaugeAreaComponent, i23.RadialScaleComponent, i24.RadialLabelsComponent, i25.RadialPointersComponent, i26.RadialPointerComponent, i27.RadialRangeComponent, i28.RadialRangesComponent] });
65
- GaugesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GaugesModule, providers: [ThemeService], imports: [i1.ArcGaugeComponent, i3.ArcGaugeAreaComponent, i4.ArcScaleComponent, i5.ArcLabelsComponent, i6.ColorsComponent, i7.ColorComponent, i8.CircularGaugeComponent, i10.CircularGaugeAreaComponent, i11.CircularGaugeScaleComponent, i12.CircularGaugeLabelsComponent, i13.LinearGaugeComponent, i14.LinearGaugeAreaComponent, i15.LinearScaleComponent, i16.LinearLabelsComponent, i17.LinearPointersComponent, i18.LinearPointerComponent, i19.LinearRangeComponent, i20.LinearRangesComponent, i21.RadialGaugeComponent, i22.RadialGaugeAreaComponent, i23.RadialScaleComponent, i24.RadialLabelsComponent, i25.RadialPointersComponent, i26.RadialPointerComponent, i27.RadialRangeComponent, i28.RadialRangesComponent] });
66
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GaugesModule, decorators: [{
66
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GaugesModule, decorators: [{
67
67
  type: NgModule,
68
68
  args: [{
69
69
  exports: [...KENDO_GAUGES],
@@ -12,14 +12,15 @@ import * as i1 from "../services";
12
12
  * Represents the entire visible area of the LinearGauge.
13
13
  */
14
14
  export class LinearGaugeAreaComponent extends GaugeAreaComponent {
15
+ configurationService;
15
16
  constructor(configurationService) {
16
17
  super('gaugeArea', configurationService);
17
18
  this.configurationService = configurationService;
18
19
  }
20
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LinearGaugeAreaComponent, deps: [{ token: i1.ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
21
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: LinearGaugeAreaComponent, isStandalone: true, selector: "kendo-lineargauge-area", usesInheritance: true, ngImport: i0, template: '', isInline: true });
19
22
  }
20
- LinearGaugeAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeAreaComponent, deps: [{ token: i1.ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
21
- LinearGaugeAreaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: LinearGaugeAreaComponent, isStandalone: true, selector: "kendo-lineargauge-area", usesInheritance: true, ngImport: i0, template: '', isInline: true });
22
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeAreaComponent, decorators: [{
23
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LinearGaugeAreaComponent, decorators: [{
23
24
  type: Component,
24
25
  args: [{
25
26
  selector: 'kendo-lineargauge-area',
@@ -11,14 +11,15 @@ import * as i1 from "../services";
11
11
  * The configuration options for the scale labels of the LinearGauge.
12
12
  */
13
13
  export class LinearLabelsComponent extends LabelsComponent {
14
+ configurationService;
14
15
  constructor(configurationService) {
15
16
  super('scale.labels', configurationService);
16
17
  this.configurationService = configurationService;
17
18
  }
19
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LinearLabelsComponent, deps: [{ token: i1.ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
20
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: LinearLabelsComponent, isStandalone: true, selector: "kendo-lineargauge-scale-labels", usesInheritance: true, ngImport: i0, template: '', isInline: true });
18
21
  }
19
- LinearLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearLabelsComponent, deps: [{ token: i1.ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
20
- LinearLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: LinearLabelsComponent, isStandalone: true, selector: "kendo-lineargauge-scale-labels", usesInheritance: true, ngImport: i0, template: '', isInline: true });
21
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearLabelsComponent, decorators: [{
22
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LinearLabelsComponent, decorators: [{
22
23
  type: Component,
23
24
  args: [{
24
25
  selector: 'kendo-lineargauge-scale-labels',
@@ -34,26 +34,34 @@ import * as i3 from "@progress/kendo-angular-l10n";
34
34
  * ```
35
35
  */
36
36
  export class LinearGaugeComponent extends GaugeComponent {
37
+ /**
38
+ * The configuration of the pointers.
39
+ */
40
+ pointer;
41
+ /**
42
+ * The configuration of the scale.
43
+ */
44
+ scale;
37
45
  constructor(configurationService, themeService, intlService, localizationService, element, renderer, ngZone) {
38
46
  super(configurationService, themeService, intlService, localizationService, element, renderer, ngZone);
39
47
  }
40
48
  createInstance(element, options, theme, context) {
41
49
  this.instance = new LinearGauge(element, options, theme, context);
42
50
  }
43
- }
44
- LinearGaugeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeComponent, deps: [{ token: i1.ConfigurationService }, { token: i1.ThemeService }, { token: i2.IntlService }, { token: i3.LocalizationService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
45
- LinearGaugeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: LinearGaugeComponent, isStandalone: true, selector: "kendo-lineargauge", inputs: { pointer: "pointer", scale: "scale" }, providers: [
46
- ConfigurationService,
47
- LocalizationService,
48
- {
49
- provide: L10N_PREFIX,
50
- useValue: 'kendo.lineargauge'
51
- }
52
- ], exportAs: ["kendoLinearGauge"], usesInheritance: true, ngImport: i0, template: `
51
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LinearGaugeComponent, deps: [{ token: i1.ConfigurationService }, { token: i1.ThemeService }, { token: i2.IntlService }, { token: i3.LocalizationService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
52
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: LinearGaugeComponent, isStandalone: true, selector: "kendo-lineargauge", inputs: { pointer: "pointer", scale: "scale" }, providers: [
53
+ ConfigurationService,
54
+ LocalizationService,
55
+ {
56
+ provide: L10N_PREFIX,
57
+ useValue: 'kendo.lineargauge'
58
+ }
59
+ ], exportAs: ["kendoLinearGauge"], usesInheritance: true, ngImport: i0, template: `
53
60
  <div #surface class='k-chart-surface'></div>
54
61
  <kendo-resize-sensor (resize)="onResize($event)" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>
55
62
  `, isInline: true, dependencies: [{ kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
56
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeComponent, decorators: [{
63
+ }
64
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LinearGaugeComponent, decorators: [{
57
65
  type: Component,
58
66
  args: [{
59
67
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -38,11 +38,11 @@ import * as i8 from "./ranges.component";
38
38
  * ```
39
39
  */
40
40
  export class LinearGaugeModule {
41
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LinearGaugeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
42
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: LinearGaugeModule, imports: [i1.LinearGaugeComponent, i2.LinearGaugeAreaComponent, i3.LinearScaleComponent, i4.LinearLabelsComponent, i5.LinearPointersComponent, i6.LinearPointerComponent, i7.LinearRangeComponent, i8.LinearRangesComponent], exports: [i1.LinearGaugeComponent, i2.LinearGaugeAreaComponent, i3.LinearScaleComponent, i4.LinearLabelsComponent, i5.LinearPointersComponent, i6.LinearPointerComponent, i7.LinearRangeComponent, i8.LinearRangesComponent] });
43
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LinearGaugeModule, providers: [ThemeService], imports: [i1.LinearGaugeComponent] });
41
44
  }
42
- LinearGaugeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
43
- LinearGaugeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeModule, imports: [i1.LinearGaugeComponent, i2.LinearGaugeAreaComponent, i3.LinearScaleComponent, i4.LinearLabelsComponent, i5.LinearPointersComponent, i6.LinearPointerComponent, i7.LinearRangeComponent, i8.LinearRangesComponent], exports: [i1.LinearGaugeComponent, i2.LinearGaugeAreaComponent, i3.LinearScaleComponent, i4.LinearLabelsComponent, i5.LinearPointersComponent, i6.LinearPointerComponent, i7.LinearRangeComponent, i8.LinearRangesComponent] });
44
- LinearGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeModule, providers: [ThemeService], imports: [KENDO_LINEARGAUGE] });
45
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeModule, decorators: [{
45
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LinearGaugeModule, decorators: [{
46
46
  type: NgModule,
47
47
  args: [{
48
48
  exports: [...KENDO_LINEARGAUGE],
@@ -11,13 +11,20 @@ import * as i1 from "../services";
11
11
  * The configuration options for a pointer item of a LinearGauge.
12
12
  */
13
13
  export class LinearPointerComponent extends CollectionItemComponent {
14
+ border;
15
+ color;
16
+ margin;
17
+ opacity;
18
+ shape;
19
+ size;
20
+ value;
14
21
  constructor(configurationService, collectionChangesService) {
15
22
  super(configurationService, collectionChangesService);
16
23
  }
24
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LinearPointerComponent, deps: [{ token: i1.ConfigurationService }, { token: i1.CollectionChangesService }], target: i0.ɵɵFactoryTarget.Component });
25
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: LinearPointerComponent, isStandalone: true, selector: "kendo-lineargauge-pointer", inputs: { border: "border", color: "color", margin: "margin", opacity: "opacity", shape: "shape", size: "size", value: "value" }, providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true });
17
26
  }
18
- LinearPointerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearPointerComponent, deps: [{ token: i1.ConfigurationService }, { token: i1.CollectionChangesService }], target: i0.ɵɵFactoryTarget.Component });
19
- LinearPointerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: LinearPointerComponent, isStandalone: true, selector: "kendo-lineargauge-pointer", inputs: { border: "border", color: "color", margin: "margin", opacity: "opacity", shape: "shape", size: "size", value: "value" }, providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true });
20
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearPointerComponent, decorators: [{
27
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LinearPointerComponent, decorators: [{
21
28
  type: Component,
22
29
  args: [{
23
30
  providers: [ConfigurationService],
@@ -44,13 +44,14 @@ import * as i1 from "../services";
44
44
  * ```
45
45
  */
46
46
  export class LinearPointersComponent extends CollectionComponent {
47
+ children;
47
48
  constructor(configurationService, collectionChangesService) {
48
49
  super('pointer', configurationService, collectionChangesService);
49
50
  }
51
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LinearPointersComponent, deps: [{ token: i1.ConfigurationService }, { token: i1.CollectionChangesService }], target: i0.ɵɵFactoryTarget.Component });
52
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: LinearPointersComponent, isStandalone: true, selector: "kendo-lineargauge-pointers", providers: [CollectionChangesService], queries: [{ propertyName: "children", predicate: LinearPointerComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true });
50
53
  }
51
- LinearPointersComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearPointersComponent, deps: [{ token: i1.ConfigurationService }, { token: i1.CollectionChangesService }], target: i0.ɵɵFactoryTarget.Component });
52
- LinearPointersComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: LinearPointersComponent, isStandalone: true, selector: "kendo-lineargauge-pointers", providers: [CollectionChangesService], queries: [{ propertyName: "children", predicate: LinearPointerComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true });
53
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearPointersComponent, decorators: [{
54
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LinearPointersComponent, decorators: [{
54
55
  type: Component,
55
56
  args: [{
56
57
  providers: [CollectionChangesService],
@@ -14,10 +14,10 @@ export class LinearRangeComponent extends RangeComponent {
14
14
  constructor(configurationService, collectionChangesService) {
15
15
  super(configurationService, collectionChangesService);
16
16
  }
17
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LinearRangeComponent, deps: [{ token: i1.ConfigurationService }, { token: i1.CollectionChangesService }], target: i0.ɵɵFactoryTarget.Component });
18
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: LinearRangeComponent, isStandalone: true, selector: "kendo-lineargauge-scale-range", providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true });
17
19
  }
18
- LinearRangeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearRangeComponent, deps: [{ token: i1.ConfigurationService }, { token: i1.CollectionChangesService }], target: i0.ɵɵFactoryTarget.Component });
19
- LinearRangeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: LinearRangeComponent, isStandalone: true, selector: "kendo-lineargauge-scale-range", providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true });
20
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearRangeComponent, decorators: [{
20
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LinearRangeComponent, decorators: [{
21
21
  type: Component,
22
22
  args: [{
23
23
  providers: [ConfigurationService],
@@ -49,13 +49,14 @@ import * as i1 from "../services";
49
49
  * ```
50
50
  */
51
51
  export class LinearRangesComponent extends CollectionComponent {
52
+ children;
52
53
  constructor(configurationService, collectionChangesService) {
53
54
  super('scale.ranges', configurationService, collectionChangesService);
54
55
  }
56
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LinearRangesComponent, deps: [{ token: i1.ConfigurationService }, { token: i1.CollectionChangesService }], target: i0.ɵɵFactoryTarget.Component });
57
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: LinearRangesComponent, isStandalone: true, selector: "kendo-lineargauge-scale-ranges", providers: [CollectionChangesService], queries: [{ propertyName: "children", predicate: LinearRangeComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true });
55
58
  }
56
- LinearRangesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearRangesComponent, deps: [{ token: i1.ConfigurationService }, { token: i1.CollectionChangesService }], target: i0.ɵɵFactoryTarget.Component });
57
- LinearRangesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: LinearRangesComponent, isStandalone: true, selector: "kendo-lineargauge-scale-ranges", providers: [CollectionChangesService], queries: [{ propertyName: "children", predicate: LinearRangeComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true });
58
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearRangesComponent, decorators: [{
59
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LinearRangesComponent, decorators: [{
59
60
  type: Component,
60
61
  args: [{
61
62
  providers: [CollectionChangesService],
@@ -12,14 +12,19 @@ import * as i1 from "../services";
12
12
  * ([see example]({% slug scaleoptions_lineargauge %})).
13
13
  */
14
14
  export class LinearScaleComponent extends ScaleComponent {
15
+ configurationService;
16
+ line;
17
+ ranges;
18
+ mirror;
19
+ vertical;
15
20
  constructor(configurationService) {
16
21
  super('scale', configurationService);
17
22
  this.configurationService = configurationService;
18
23
  }
24
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LinearScaleComponent, deps: [{ token: i1.ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
25
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: LinearScaleComponent, isStandalone: true, selector: "kendo-lineargauge-scale", inputs: { line: "line", ranges: "ranges", mirror: "mirror", vertical: "vertical" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
19
26
  }
20
- LinearScaleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearScaleComponent, deps: [{ token: i1.ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
21
- LinearScaleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: LinearScaleComponent, isStandalone: true, selector: "kendo-lineargauge-scale", inputs: { line: "line", ranges: "ranges", mirror: "mirror", vertical: "vertical" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
22
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearScaleComponent, decorators: [{
27
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LinearScaleComponent, decorators: [{
23
28
  type: Component,
24
29
  args: [{
25
30
  selector: 'kendo-lineargauge-scale',
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-gauges',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1729174780,
13
- version: '17.0.0-develop.9',
12
+ publishDate: 1731429942,
13
+ version: '17.0.1-develop.1',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -12,14 +12,15 @@ import * as i1 from "../services";
12
12
  * Represents the entire visible area of the RadialGauge.
13
13
  */
14
14
  export class RadialGaugeAreaComponent extends GaugeAreaComponent {
15
+ configurationService;
15
16
  constructor(configurationService) {
16
17
  super('gaugeArea', configurationService);
17
18
  this.configurationService = configurationService;
18
19
  }
20
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RadialGaugeAreaComponent, deps: [{ token: i1.ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
21
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: RadialGaugeAreaComponent, isStandalone: true, selector: "kendo-radialgauge-area", usesInheritance: true, ngImport: i0, template: '', isInline: true });
19
22
  }
20
- RadialGaugeAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeAreaComponent, deps: [{ token: i1.ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
21
- RadialGaugeAreaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: RadialGaugeAreaComponent, isStandalone: true, selector: "kendo-radialgauge-area", usesInheritance: true, ngImport: i0, template: '', isInline: true });
22
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeAreaComponent, decorators: [{
23
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RadialGaugeAreaComponent, decorators: [{
23
24
  type: Component,
24
25
  args: [{
25
26
  selector: 'kendo-radialgauge-area',
@@ -11,14 +11,16 @@ import * as i1 from "../services";
11
11
  * The configuration options for the scale labels of the RadialGauge.
12
12
  */
13
13
  export class RadialLabelsComponent extends LabelsComponent {
14
+ configurationService;
15
+ position;
14
16
  constructor(configurationService) {
15
17
  super('scale.labels', configurationService);
16
18
  this.configurationService = configurationService;
17
19
  }
20
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RadialLabelsComponent, deps: [{ token: i1.ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
21
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: RadialLabelsComponent, isStandalone: true, selector: "kendo-radialgauge-scale-labels", inputs: { position: "position" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
18
22
  }
19
- RadialLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialLabelsComponent, deps: [{ token: i1.ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
20
- RadialLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: RadialLabelsComponent, isStandalone: true, selector: "kendo-radialgauge-scale-labels", inputs: { position: "position" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
21
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialLabelsComponent, decorators: [{
23
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RadialLabelsComponent, decorators: [{
22
24
  type: Component,
23
25
  args: [{
24
26
  selector: 'kendo-radialgauge-scale-labels',
@@ -11,13 +11,17 @@ import * as i1 from "../services";
11
11
  * The configuration options for a pointer item of a RadialGauge.
12
12
  */
13
13
  export class RadialPointerComponent extends CollectionItemComponent {
14
+ cap;
15
+ color;
16
+ length;
17
+ value;
14
18
  constructor(configurationService, collectionChangesService) {
15
19
  super(configurationService, collectionChangesService);
16
20
  }
21
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RadialPointerComponent, deps: [{ token: i1.ConfigurationService }, { token: i1.CollectionChangesService }], target: i0.ɵɵFactoryTarget.Component });
22
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: RadialPointerComponent, isStandalone: true, selector: "kendo-radialgauge-pointer", inputs: { cap: "cap", color: "color", length: "length", value: "value" }, providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true });
17
23
  }
18
- RadialPointerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialPointerComponent, deps: [{ token: i1.ConfigurationService }, { token: i1.CollectionChangesService }], target: i0.ɵɵFactoryTarget.Component });
19
- RadialPointerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: RadialPointerComponent, isStandalone: true, selector: "kendo-radialgauge-pointer", inputs: { cap: "cap", color: "color", length: "length", value: "value" }, providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true });
20
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialPointerComponent, decorators: [{
24
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RadialPointerComponent, decorators: [{
21
25
  type: Component,
22
26
  args: [{
23
27
  providers: [ConfigurationService],
@@ -44,13 +44,14 @@ import * as i1 from "../services";
44
44
  * ```
45
45
  */
46
46
  export class RadialPointersComponent extends CollectionComponent {
47
+ children;
47
48
  constructor(configurationService, collectionChangesService) {
48
49
  super('pointer', configurationService, collectionChangesService);
49
50
  }
51
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RadialPointersComponent, deps: [{ token: i1.ConfigurationService }, { token: i1.CollectionChangesService }], target: i0.ɵɵFactoryTarget.Component });
52
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: RadialPointersComponent, isStandalone: true, selector: "kendo-radialgauge-pointers", providers: [CollectionChangesService], queries: [{ propertyName: "children", predicate: RadialPointerComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true });
50
53
  }
51
- RadialPointersComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialPointersComponent, deps: [{ token: i1.ConfigurationService }, { token: i1.CollectionChangesService }], target: i0.ɵɵFactoryTarget.Component });
52
- RadialPointersComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: RadialPointersComponent, isStandalone: true, selector: "kendo-radialgauge-pointers", providers: [CollectionChangesService], queries: [{ propertyName: "children", predicate: RadialPointerComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true });
53
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialPointersComponent, decorators: [{
54
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RadialPointersComponent, decorators: [{
54
55
  type: Component,
55
56
  args: [{
56
57
  providers: [CollectionChangesService],
@@ -34,26 +34,34 @@ import * as i3 from "@progress/kendo-angular-l10n";
34
34
  * ```
35
35
  */
36
36
  export class RadialGaugeComponent extends GaugeComponent {
37
+ /**
38
+ * The configuration of the pointers.
39
+ */
40
+ pointer;
41
+ /**
42
+ * The configuration of the scale.
43
+ */
44
+ scale;
37
45
  constructor(configurationService, themeService, intlService, localizationService, element, renderer, ngZone) {
38
46
  super(configurationService, themeService, intlService, localizationService, element, renderer, ngZone);
39
47
  }
40
48
  createInstance(element, options, theme, context) {
41
49
  this.instance = new RadialGauge(element, options, theme, context);
42
50
  }
43
- }
44
- RadialGaugeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeComponent, deps: [{ token: i1.ConfigurationService }, { token: i1.ThemeService }, { token: i2.IntlService }, { token: i3.LocalizationService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
45
- RadialGaugeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: RadialGaugeComponent, isStandalone: true, selector: "kendo-radialgauge", inputs: { pointer: "pointer", scale: "scale" }, providers: [
46
- ConfigurationService,
47
- LocalizationService,
48
- {
49
- provide: L10N_PREFIX,
50
- useValue: 'kendo.radialgauge'
51
- }
52
- ], exportAs: ["kendoRadialGauge"], usesInheritance: true, ngImport: i0, template: `
51
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RadialGaugeComponent, deps: [{ token: i1.ConfigurationService }, { token: i1.ThemeService }, { token: i2.IntlService }, { token: i3.LocalizationService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
52
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: RadialGaugeComponent, isStandalone: true, selector: "kendo-radialgauge", inputs: { pointer: "pointer", scale: "scale" }, providers: [
53
+ ConfigurationService,
54
+ LocalizationService,
55
+ {
56
+ provide: L10N_PREFIX,
57
+ useValue: 'kendo.radialgauge'
58
+ }
59
+ ], exportAs: ["kendoRadialGauge"], usesInheritance: true, ngImport: i0, template: `
53
60
  <div #surface class='k-chart-surface'></div>
54
61
  <kendo-resize-sensor (resize)="onResize($event)" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>
55
62
  `, isInline: true, dependencies: [{ kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
56
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeComponent, decorators: [{
63
+ }
64
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RadialGaugeComponent, decorators: [{
57
65
  type: Component,
58
66
  args: [{
59
67
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -38,11 +38,11 @@ import * as i8 from "./ranges.component";
38
38
  * ```
39
39
  */
40
40
  export class RadialGaugeModule {
41
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RadialGaugeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
42
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: RadialGaugeModule, imports: [i1.RadialGaugeComponent, i2.RadialGaugeAreaComponent, i3.RadialScaleComponent, i4.RadialLabelsComponent, i5.RadialPointersComponent, i6.RadialPointerComponent, i7.RadialRangeComponent, i8.RadialRangesComponent], exports: [i1.RadialGaugeComponent, i2.RadialGaugeAreaComponent, i3.RadialScaleComponent, i4.RadialLabelsComponent, i5.RadialPointersComponent, i6.RadialPointerComponent, i7.RadialRangeComponent, i8.RadialRangesComponent] });
43
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RadialGaugeModule, providers: [ThemeService], imports: [i1.RadialGaugeComponent] });
41
44
  }
42
- RadialGaugeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
43
- RadialGaugeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeModule, imports: [i1.RadialGaugeComponent, i2.RadialGaugeAreaComponent, i3.RadialScaleComponent, i4.RadialLabelsComponent, i5.RadialPointersComponent, i6.RadialPointerComponent, i7.RadialRangeComponent, i8.RadialRangesComponent], exports: [i1.RadialGaugeComponent, i2.RadialGaugeAreaComponent, i3.RadialScaleComponent, i4.RadialLabelsComponent, i5.RadialPointersComponent, i6.RadialPointerComponent, i7.RadialRangeComponent, i8.RadialRangesComponent] });
44
- RadialGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeModule, providers: [ThemeService], imports: [KENDO_RADIALGAUGE] });
45
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeModule, decorators: [{
45
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RadialGaugeModule, decorators: [{
46
46
  type: NgModule,
47
47
  args: [{
48
48
  exports: [...KENDO_RADIALGAUGE],
@@ -14,10 +14,10 @@ export class RadialRangeComponent extends RangeComponent {
14
14
  constructor(configurationService, collectionChangesService) {
15
15
  super(configurationService, collectionChangesService);
16
16
  }
17
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RadialRangeComponent, deps: [{ token: i1.ConfigurationService }, { token: i1.CollectionChangesService }], target: i0.ɵɵFactoryTarget.Component });
18
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: RadialRangeComponent, isStandalone: true, selector: "kendo-radialgauge-scale-range", providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true });
17
19
  }
18
- RadialRangeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialRangeComponent, deps: [{ token: i1.ConfigurationService }, { token: i1.CollectionChangesService }], target: i0.ɵɵFactoryTarget.Component });
19
- RadialRangeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: RadialRangeComponent, isStandalone: true, selector: "kendo-radialgauge-scale-range", providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true });
20
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialRangeComponent, decorators: [{
20
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RadialRangeComponent, decorators: [{
21
21
  type: Component,
22
22
  args: [{
23
23
  providers: [ConfigurationService],