@progress/kendo-angular-gauges 16.5.0-develop.6 → 16.6.0-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.
- package/arc-gauge/arc-center-template.directive.d.ts +1 -1
- package/arc-gauge/arc-gauge.component.d.ts +1 -1
- package/arc-gauge/arc-gauge.module.d.ts +1 -3
- package/arc-gauge/color.component.d.ts +1 -1
- package/arc-gauge/colors.component.d.ts +1 -1
- package/arc-gauge/gauge-area.component.d.ts +1 -1
- package/arc-gauge/labels.component.d.ts +1 -1
- package/arc-gauge/scale.component.d.ts +1 -1
- package/circular-gauge/center-template.directive.d.ts +1 -1
- package/circular-gauge/circular-gauge.component.d.ts +1 -1
- package/circular-gauge/circular-gauge.module.d.ts +1 -3
- package/circular-gauge/gauge-area.component.d.ts +1 -1
- package/circular-gauge/labels.component.d.ts +1 -1
- package/circular-gauge/scale.component.d.ts +1 -1
- package/directives.d.ts +52 -0
- package/esm2020/arc-gauge/arc-center-template.directive.mjs +3 -2
- package/esm2020/arc-gauge/arc-gauge.component.mjs +9 -5
- package/esm2020/arc-gauge/arc-gauge.module.mjs +13 -18
- package/esm2020/arc-gauge/color.component.mjs +3 -2
- package/esm2020/arc-gauge/colors.component.mjs +3 -2
- package/esm2020/arc-gauge/gauge-area.component.mjs +3 -2
- package/esm2020/arc-gauge/labels.component.mjs +3 -2
- package/esm2020/arc-gauge/scale.component.mjs +3 -2
- package/esm2020/circular-gauge/center-template.directive.mjs +3 -2
- package/esm2020/circular-gauge/circular-gauge.component.mjs +7 -5
- package/esm2020/circular-gauge/circular-gauge.module.mjs +11 -27
- package/esm2020/circular-gauge/gauge-area.component.mjs +3 -2
- package/esm2020/circular-gauge/labels.component.mjs +3 -2
- package/esm2020/circular-gauge/scale.component.mjs +3 -2
- package/esm2020/directives.mjs +89 -0
- package/esm2020/gauges.module.mjs +34 -7
- package/esm2020/index.mjs +1 -0
- package/esm2020/linear-gauge/gauge-area.component.mjs +3 -2
- package/esm2020/linear-gauge/labels.component.mjs +3 -2
- package/esm2020/linear-gauge/linear-gauge.component.mjs +8 -4
- package/esm2020/linear-gauge/linear-gauge.module.mjs +14 -18
- package/esm2020/linear-gauge/pointer.component.mjs +3 -2
- package/esm2020/linear-gauge/pointers.component.mjs +3 -2
- package/esm2020/linear-gauge/range.component.mjs +3 -2
- package/esm2020/linear-gauge/ranges.component.mjs +3 -2
- package/esm2020/linear-gauge/scale.component.mjs +3 -2
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/radial-gauge/gauge-area.component.mjs +3 -2
- package/esm2020/radial-gauge/labels.component.mjs +3 -2
- package/esm2020/radial-gauge/pointer.component.mjs +3 -2
- package/esm2020/radial-gauge/pointers.component.mjs +3 -2
- package/esm2020/radial-gauge/radial-gauge.component.mjs +8 -4
- package/esm2020/radial-gauge/radial-gauge.module.mjs +14 -18
- package/esm2020/radial-gauge/range.component.mjs +3 -2
- package/esm2020/radial-gauge/ranges.component.mjs +3 -2
- package/esm2020/radial-gauge/scale.component.mjs +3 -2
- package/fesm2015/progress-kendo-angular-gauges.mjs +653 -604
- package/fesm2020/progress-kendo-angular-gauges.mjs +652 -603
- package/gauges.module.d.ts +29 -5
- package/index.d.ts +1 -0
- package/linear-gauge/gauge-area.component.d.ts +1 -1
- package/linear-gauge/labels.component.d.ts +1 -1
- package/linear-gauge/linear-gauge.component.d.ts +1 -1
- package/linear-gauge/linear-gauge.module.d.ts +1 -2
- package/linear-gauge/pointer.component.d.ts +1 -1
- package/linear-gauge/pointers.component.d.ts +1 -1
- package/linear-gauge/range.component.d.ts +1 -1
- package/linear-gauge/ranges.component.d.ts +1 -1
- package/linear-gauge/scale.component.d.ts +1 -1
- package/package.json +5 -5
- package/radial-gauge/gauge-area.component.d.ts +1 -1
- package/radial-gauge/labels.component.d.ts +1 -1
- package/radial-gauge/pointer.component.d.ts +1 -1
- package/radial-gauge/pointers.component.d.ts +1 -1
- package/radial-gauge/radial-gauge.component.d.ts +1 -1
- package/radial-gauge/radial-gauge.module.d.ts +1 -2
- package/radial-gauge/range.component.d.ts +1 -1
- package/radial-gauge/ranges.component.d.ts +1 -1
- package/radial-gauge/scale.component.d.ts +1 -1
- package/esm2020/shared.module.mjs +0 -27
- package/shared.module.d.ts +0 -14
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { ArcCenterTemplateDirective } from "./arc-gauge/arc-center-template.directive";
|
|
6
|
+
import { ArcGaugeComponent } from "./arc-gauge/arc-gauge.component";
|
|
7
|
+
import { ColorComponent } from "./arc-gauge/color.component";
|
|
8
|
+
import { ColorsComponent } from "./arc-gauge/colors.component";
|
|
9
|
+
import { ArcGaugeAreaComponent } from "./arc-gauge/gauge-area.component";
|
|
10
|
+
import { ArcLabelsComponent } from "./arc-gauge/labels.component";
|
|
11
|
+
import { ArcScaleComponent } from "./arc-gauge/scale.component";
|
|
12
|
+
import { CircularGaugeCenterTemplateDirective } from "./circular-gauge/center-template.directive";
|
|
13
|
+
import { CircularGaugeComponent } from "./circular-gauge/circular-gauge.component";
|
|
14
|
+
import { CircularGaugeAreaComponent } from "./circular-gauge/gauge-area.component";
|
|
15
|
+
import { CircularGaugeLabelsComponent } from "./circular-gauge/labels.component";
|
|
16
|
+
import { CircularGaugeScaleComponent } from "./circular-gauge/scale.component";
|
|
17
|
+
import { LinearGaugeAreaComponent } from "./linear-gauge/gauge-area.component";
|
|
18
|
+
import { LinearLabelsComponent } from "./linear-gauge/labels.component";
|
|
19
|
+
import { LinearGaugeComponent } from "./linear-gauge/linear-gauge.component";
|
|
20
|
+
import { LinearPointerComponent } from "./linear-gauge/pointer.component";
|
|
21
|
+
import { LinearPointersComponent } from "./linear-gauge/pointers.component";
|
|
22
|
+
import { LinearRangeComponent } from "./linear-gauge/range.component";
|
|
23
|
+
import { LinearRangesComponent } from "./linear-gauge/ranges.component";
|
|
24
|
+
import { LinearScaleComponent } from "./linear-gauge/scale.component";
|
|
25
|
+
import { RadialGaugeAreaComponent } from "./radial-gauge/gauge-area.component";
|
|
26
|
+
import { RadialLabelsComponent } from "./radial-gauge/labels.component";
|
|
27
|
+
import { RadialPointerComponent } from "./radial-gauge/pointer.component";
|
|
28
|
+
import { RadialPointersComponent } from "./radial-gauge/pointers.component";
|
|
29
|
+
import { RadialGaugeComponent } from "./radial-gauge/radial-gauge.component";
|
|
30
|
+
import { RadialRangeComponent } from "./radial-gauge/range.component";
|
|
31
|
+
import { RadialRangesComponent } from "./radial-gauge/ranges.component";
|
|
32
|
+
import { RadialScaleComponent } from "./radial-gauge/scale.component";
|
|
33
|
+
/**
|
|
34
|
+
* Utility array that contains all `ArcGauge` related components and directives
|
|
35
|
+
*/
|
|
36
|
+
export const KENDO_ARCGAUGE = [
|
|
37
|
+
ArcGaugeComponent,
|
|
38
|
+
ArcCenterTemplateDirective,
|
|
39
|
+
ArcGaugeAreaComponent,
|
|
40
|
+
ArcScaleComponent,
|
|
41
|
+
ArcLabelsComponent,
|
|
42
|
+
ColorsComponent,
|
|
43
|
+
ColorComponent
|
|
44
|
+
];
|
|
45
|
+
/**
|
|
46
|
+
* Utility array that contains all `CircularGauge` related components and directives
|
|
47
|
+
*/
|
|
48
|
+
export const KENDO_CIRCULARGAUGE = [
|
|
49
|
+
CircularGaugeComponent,
|
|
50
|
+
CircularGaugeCenterTemplateDirective,
|
|
51
|
+
CircularGaugeAreaComponent,
|
|
52
|
+
CircularGaugeScaleComponent,
|
|
53
|
+
CircularGaugeLabelsComponent
|
|
54
|
+
];
|
|
55
|
+
/**
|
|
56
|
+
* Utility array that contains all `LinearGauge` related components and directives
|
|
57
|
+
*/
|
|
58
|
+
export const KENDO_LINEARGAUGE = [
|
|
59
|
+
LinearGaugeComponent,
|
|
60
|
+
LinearGaugeAreaComponent,
|
|
61
|
+
LinearScaleComponent,
|
|
62
|
+
LinearLabelsComponent,
|
|
63
|
+
LinearPointersComponent,
|
|
64
|
+
LinearPointerComponent,
|
|
65
|
+
LinearRangeComponent,
|
|
66
|
+
LinearRangesComponent
|
|
67
|
+
];
|
|
68
|
+
/**
|
|
69
|
+
* Utility array that contains all `RadialGauge` related components and directives
|
|
70
|
+
*/
|
|
71
|
+
export const KENDO_RADIALGAUGE = [
|
|
72
|
+
RadialGaugeComponent,
|
|
73
|
+
RadialGaugeAreaComponent,
|
|
74
|
+
RadialScaleComponent,
|
|
75
|
+
RadialLabelsComponent,
|
|
76
|
+
RadialPointersComponent,
|
|
77
|
+
RadialPointerComponent,
|
|
78
|
+
RadialRangeComponent,
|
|
79
|
+
RadialRangesComponent
|
|
80
|
+
];
|
|
81
|
+
/**
|
|
82
|
+
* Utility array that contains all `@progress/kendo-angular-gauges` related components and directives
|
|
83
|
+
*/
|
|
84
|
+
export const KENDO_GAUGES = [
|
|
85
|
+
...KENDO_ARCGAUGE,
|
|
86
|
+
...KENDO_CIRCULARGAUGE,
|
|
87
|
+
...KENDO_LINEARGAUGE,
|
|
88
|
+
...KENDO_RADIALGAUGE
|
|
89
|
+
];
|
|
@@ -3,11 +3,37 @@
|
|
|
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';
|
|
6
|
-
import {
|
|
7
|
-
import { CircularGaugeModule } from './circular-gauge/circular-gauge.module';
|
|
8
|
-
import { LinearGaugeModule } from './linear-gauge/linear-gauge.module';
|
|
9
|
-
import { RadialGaugeModule } from './radial-gauge/radial-gauge.module';
|
|
6
|
+
import { KENDO_GAUGES } from './directives';
|
|
10
7
|
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "./arc-gauge/arc-gauge.component";
|
|
9
|
+
import * as i2 from "./arc-gauge/arc-center-template.directive";
|
|
10
|
+
import * as i3 from "./arc-gauge/gauge-area.component";
|
|
11
|
+
import * as i4 from "./arc-gauge/scale.component";
|
|
12
|
+
import * as i5 from "./arc-gauge/labels.component";
|
|
13
|
+
import * as i6 from "./arc-gauge/colors.component";
|
|
14
|
+
import * as i7 from "./arc-gauge/color.component";
|
|
15
|
+
import * as i8 from "./circular-gauge/circular-gauge.component";
|
|
16
|
+
import * as i9 from "./circular-gauge/center-template.directive";
|
|
17
|
+
import * as i10 from "./circular-gauge/gauge-area.component";
|
|
18
|
+
import * as i11 from "./circular-gauge/scale.component";
|
|
19
|
+
import * as i12 from "./circular-gauge/labels.component";
|
|
20
|
+
import * as i13 from "./linear-gauge/linear-gauge.component";
|
|
21
|
+
import * as i14 from "./linear-gauge/gauge-area.component";
|
|
22
|
+
import * as i15 from "./linear-gauge/scale.component";
|
|
23
|
+
import * as i16 from "./linear-gauge/labels.component";
|
|
24
|
+
import * as i17 from "./linear-gauge/pointers.component";
|
|
25
|
+
import * as i18 from "./linear-gauge/pointer.component";
|
|
26
|
+
import * as i19 from "./linear-gauge/range.component";
|
|
27
|
+
import * as i20 from "./linear-gauge/ranges.component";
|
|
28
|
+
import * as i21 from "./radial-gauge/radial-gauge.component";
|
|
29
|
+
import * as i22 from "./radial-gauge/gauge-area.component";
|
|
30
|
+
import * as i23 from "./radial-gauge/scale.component";
|
|
31
|
+
import * as i24 from "./radial-gauge/labels.component";
|
|
32
|
+
import * as i25 from "./radial-gauge/pointers.component";
|
|
33
|
+
import * as i26 from "./radial-gauge/pointer.component";
|
|
34
|
+
import * as i27 from "./radial-gauge/range.component";
|
|
35
|
+
import * as i28 from "./radial-gauge/ranges.component";
|
|
36
|
+
// IMPORTANT: NgModule export kept for backwards compatibility
|
|
11
37
|
/**
|
|
12
38
|
* A [module](link:site.data.urls.angular['ngmodules']) that includes all Gauge components and directives.
|
|
13
39
|
*
|
|
@@ -34,11 +60,12 @@ import * as i0 from "@angular/core";
|
|
|
34
60
|
export class GaugesModule {
|
|
35
61
|
}
|
|
36
62
|
GaugesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GaugesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
37
|
-
GaugesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: GaugesModule, exports: [
|
|
38
|
-
GaugesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GaugesModule, imports: [
|
|
63
|
+
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] });
|
|
64
|
+
GaugesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GaugesModule, 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] });
|
|
39
65
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GaugesModule, decorators: [{
|
|
40
66
|
type: NgModule,
|
|
41
67
|
args: [{
|
|
42
|
-
exports: [
|
|
68
|
+
exports: [...KENDO_GAUGES],
|
|
69
|
+
imports: [...KENDO_GAUGES]
|
|
43
70
|
}]
|
|
44
71
|
}] });
|
package/esm2020/index.mjs
CHANGED
|
@@ -18,11 +18,12 @@ export class LinearGaugeAreaComponent extends GaugeAreaComponent {
|
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
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, selector: "kendo-lineargauge-area", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
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
22
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeAreaComponent, decorators: [{
|
|
23
23
|
type: Component,
|
|
24
24
|
args: [{
|
|
25
25
|
selector: 'kendo-lineargauge-area',
|
|
26
|
-
template: ''
|
|
26
|
+
template: '',
|
|
27
|
+
standalone: true
|
|
27
28
|
}]
|
|
28
29
|
}], ctorParameters: function () { return [{ type: i1.ConfigurationService }]; } });
|
|
@@ -17,11 +17,12 @@ export class LinearLabelsComponent extends LabelsComponent {
|
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
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, selector: "kendo-lineargauge-scale-labels", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
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
21
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearLabelsComponent, decorators: [{
|
|
22
22
|
type: Component,
|
|
23
23
|
args: [{
|
|
24
24
|
selector: 'kendo-lineargauge-scale-labels',
|
|
25
|
-
template: ''
|
|
25
|
+
template: '',
|
|
26
|
+
standalone: true
|
|
26
27
|
}]
|
|
27
28
|
}], ctorParameters: function () { return [{ type: i1.ConfigurationService }]; } });
|
|
@@ -8,11 +8,11 @@ import { IntlService } from '@progress/kendo-angular-intl';
|
|
|
8
8
|
import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
9
9
|
import { GaugeComponent } from '../base-components';
|
|
10
10
|
import { LinearGauge } from '@progress/kendo-charts';
|
|
11
|
+
import { ResizeSensorComponent } from '@progress/kendo-angular-common';
|
|
11
12
|
import * as i0 from "@angular/core";
|
|
12
13
|
import * as i1 from "../services";
|
|
13
14
|
import * as i2 from "@progress/kendo-angular-intl";
|
|
14
15
|
import * as i3 from "@progress/kendo-angular-l10n";
|
|
15
|
-
import * as i4 from "@progress/kendo-angular-common";
|
|
16
16
|
/**
|
|
17
17
|
* Represents the [Kendo UI LinearGauge component for Angular]({% slug overview_lineargauge_gauges %}).
|
|
18
18
|
*
|
|
@@ -42,8 +42,9 @@ export class LinearGaugeComponent extends GaugeComponent {
|
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
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, selector: "kendo-lineargauge", inputs: { pointer: "pointer", scale: "scale" }, providers: [
|
|
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
46
|
ConfigurationService,
|
|
47
|
+
ThemeService,
|
|
47
48
|
LocalizationService,
|
|
48
49
|
{
|
|
49
50
|
provide: L10N_PREFIX,
|
|
@@ -52,7 +53,7 @@ LinearGaugeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
|
52
53
|
], exportAs: ["kendoLinearGauge"], usesInheritance: true, ngImport: i0, template: `
|
|
53
54
|
<div #surface class='k-chart-surface'></div>
|
|
54
55
|
<kendo-resize-sensor (resize)="onResize($event)" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>
|
|
55
|
-
`, isInline: true, dependencies: [{ kind: "component", type:
|
|
56
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
56
57
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeComponent, decorators: [{
|
|
57
58
|
type: Component,
|
|
58
59
|
args: [{
|
|
@@ -60,6 +61,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
60
61
|
exportAs: 'kendoLinearGauge',
|
|
61
62
|
providers: [
|
|
62
63
|
ConfigurationService,
|
|
64
|
+
ThemeService,
|
|
63
65
|
LocalizationService,
|
|
64
66
|
{
|
|
65
67
|
provide: L10N_PREFIX,
|
|
@@ -70,7 +72,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
70
72
|
template: `
|
|
71
73
|
<div #surface class='k-chart-surface'></div>
|
|
72
74
|
<kendo-resize-sensor (resize)="onResize($event)" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>
|
|
73
|
-
|
|
75
|
+
`,
|
|
76
|
+
standalone: true,
|
|
77
|
+
imports: [ResizeSensorComponent]
|
|
74
78
|
}]
|
|
75
79
|
}], ctorParameters: function () { return [{ type: i1.ConfigurationService }, { type: i1.ThemeService }, { type: i2.IntlService }, { type: i3.LocalizationService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }]; }, propDecorators: { pointer: [{
|
|
76
80
|
type: Input
|
|
@@ -3,18 +3,17 @@
|
|
|
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';
|
|
6
|
-
import {
|
|
7
|
-
import { LinearGaugeComponent } from './linear-gauge.component';
|
|
8
|
-
import { LinearGaugeAreaComponent } from './gauge-area.component';
|
|
9
|
-
import { LinearScaleComponent } from './scale.component';
|
|
10
|
-
import { LinearLabelsComponent } from './labels.component';
|
|
11
|
-
import { LinearPointersComponent } from './pointers.component';
|
|
12
|
-
import { LinearPointerComponent } from './pointer.component';
|
|
13
|
-
import { LinearRangeComponent } from './range.component';
|
|
14
|
-
import { LinearRangesComponent } from './ranges.component';
|
|
6
|
+
import { KENDO_LINEARGAUGE } from '../directives';
|
|
15
7
|
import * as i0 from "@angular/core";
|
|
16
|
-
|
|
17
|
-
|
|
8
|
+
import * as i1 from "./linear-gauge.component";
|
|
9
|
+
import * as i2 from "./gauge-area.component";
|
|
10
|
+
import * as i3 from "./scale.component";
|
|
11
|
+
import * as i4 from "./labels.component";
|
|
12
|
+
import * as i5 from "./pointers.component";
|
|
13
|
+
import * as i6 from "./pointer.component";
|
|
14
|
+
import * as i7 from "./range.component";
|
|
15
|
+
import * as i8 from "./ranges.component";
|
|
16
|
+
// IMPORTANT: NgModule export kept for backwards compatibility
|
|
18
17
|
/**
|
|
19
18
|
* A [module](link:site.data.urls.angular['ngmodules']) that includes the LinearGauge component and its directives.
|
|
20
19
|
* Imports the `LinearGaugeModule` into your application
|
|
@@ -40,15 +39,12 @@ const DIRECTIVES = [LinearGaugeComponent, LinearGaugeAreaComponent, LinearScaleC
|
|
|
40
39
|
export class LinearGaugeModule {
|
|
41
40
|
}
|
|
42
41
|
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,
|
|
44
|
-
|
|
45
|
-
LinearPointersComponent, LinearPointerComponent, LinearRangeComponent, LinearRangesComponent] });
|
|
46
|
-
LinearGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeModule, imports: [SharedModule] });
|
|
42
|
+
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] });
|
|
43
|
+
LinearGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeModule, imports: [KENDO_LINEARGAUGE] });
|
|
47
44
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeModule, decorators: [{
|
|
48
45
|
type: NgModule,
|
|
49
46
|
args: [{
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
imports: [SharedModule]
|
|
47
|
+
exports: [...KENDO_LINEARGAUGE],
|
|
48
|
+
imports: [...KENDO_LINEARGAUGE]
|
|
53
49
|
}]
|
|
54
50
|
}] });
|
|
@@ -16,13 +16,14 @@ export class LinearPointerComponent extends CollectionItemComponent {
|
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
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, 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 });
|
|
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
20
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearPointerComponent, decorators: [{
|
|
21
21
|
type: Component,
|
|
22
22
|
args: [{
|
|
23
23
|
providers: [ConfigurationService],
|
|
24
24
|
selector: 'kendo-lineargauge-pointer',
|
|
25
|
-
template: ''
|
|
25
|
+
template: '',
|
|
26
|
+
standalone: true
|
|
26
27
|
}]
|
|
27
28
|
}], ctorParameters: function () { return [{ type: i1.ConfigurationService }, { type: i1.CollectionChangesService }]; }, propDecorators: { border: [{
|
|
28
29
|
type: Input
|
|
@@ -49,13 +49,14 @@ export class LinearPointersComponent extends CollectionComponent {
|
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
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, selector: "kendo-lineargauge-pointers", providers: [CollectionChangesService], queries: [{ propertyName: "children", predicate: LinearPointerComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
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
53
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearPointersComponent, decorators: [{
|
|
54
54
|
type: Component,
|
|
55
55
|
args: [{
|
|
56
56
|
providers: [CollectionChangesService],
|
|
57
57
|
selector: 'kendo-lineargauge-pointers',
|
|
58
|
-
template: ''
|
|
58
|
+
template: '',
|
|
59
|
+
standalone: true
|
|
59
60
|
}]
|
|
60
61
|
}], ctorParameters: function () { return [{ type: i1.ConfigurationService }, { type: i1.CollectionChangesService }]; }, propDecorators: { children: [{
|
|
61
62
|
type: ContentChildren,
|
|
@@ -16,12 +16,13 @@ export class LinearRangeComponent extends RangeComponent {
|
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
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, selector: "kendo-lineargauge-scale-range", providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
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
20
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearRangeComponent, decorators: [{
|
|
21
21
|
type: Component,
|
|
22
22
|
args: [{
|
|
23
23
|
providers: [ConfigurationService],
|
|
24
24
|
selector: 'kendo-lineargauge-scale-range',
|
|
25
|
-
template: ''
|
|
25
|
+
template: '',
|
|
26
|
+
standalone: true
|
|
26
27
|
}]
|
|
27
28
|
}], ctorParameters: function () { return [{ type: i1.ConfigurationService }, { type: i1.CollectionChangesService }]; } });
|
|
@@ -54,13 +54,14 @@ export class LinearRangesComponent extends CollectionComponent {
|
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
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, selector: "kendo-lineargauge-scale-ranges", providers: [CollectionChangesService], queries: [{ propertyName: "children", predicate: LinearRangeComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
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
58
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearRangesComponent, decorators: [{
|
|
59
59
|
type: Component,
|
|
60
60
|
args: [{
|
|
61
61
|
providers: [CollectionChangesService],
|
|
62
62
|
selector: 'kendo-lineargauge-scale-ranges',
|
|
63
|
-
template: ''
|
|
63
|
+
template: '',
|
|
64
|
+
standalone: true
|
|
64
65
|
}]
|
|
65
66
|
}], ctorParameters: function () { return [{ type: i1.ConfigurationService }, { type: i1.CollectionChangesService }]; }, propDecorators: { children: [{
|
|
66
67
|
type: ContentChildren,
|
|
@@ -18,12 +18,13 @@ export class LinearScaleComponent extends ScaleComponent {
|
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
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, selector: "kendo-lineargauge-scale", inputs: { line: "line", ranges: "ranges", mirror: "mirror", vertical: "vertical" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
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
22
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearScaleComponent, decorators: [{
|
|
23
23
|
type: Component,
|
|
24
24
|
args: [{
|
|
25
25
|
selector: 'kendo-lineargauge-scale',
|
|
26
|
-
template: ''
|
|
26
|
+
template: '',
|
|
27
|
+
standalone: true
|
|
27
28
|
}]
|
|
28
29
|
}], ctorParameters: function () { return [{ type: i1.ConfigurationService }]; }, propDecorators: { line: [{
|
|
29
30
|
type: Input
|
|
@@ -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:
|
|
13
|
-
version: '16.
|
|
12
|
+
publishDate: 1721828021,
|
|
13
|
+
version: '16.6.0-develop.1',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -18,11 +18,12 @@ export class RadialGaugeAreaComponent extends GaugeAreaComponent {
|
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
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, selector: "kendo-radialgauge-area", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
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
22
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeAreaComponent, decorators: [{
|
|
23
23
|
type: Component,
|
|
24
24
|
args: [{
|
|
25
25
|
selector: 'kendo-radialgauge-area',
|
|
26
|
-
template: ''
|
|
26
|
+
template: '',
|
|
27
|
+
standalone: true
|
|
27
28
|
}]
|
|
28
29
|
}], ctorParameters: function () { return [{ type: i1.ConfigurationService }]; } });
|
|
@@ -17,12 +17,13 @@ export class RadialLabelsComponent extends LabelsComponent {
|
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
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, selector: "kendo-radialgauge-scale-labels", inputs: { position: "position" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
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
21
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialLabelsComponent, decorators: [{
|
|
22
22
|
type: Component,
|
|
23
23
|
args: [{
|
|
24
24
|
selector: 'kendo-radialgauge-scale-labels',
|
|
25
|
-
template: ''
|
|
25
|
+
template: '',
|
|
26
|
+
standalone: true
|
|
26
27
|
}]
|
|
27
28
|
}], ctorParameters: function () { return [{ type: i1.ConfigurationService }]; }, propDecorators: { position: [{
|
|
28
29
|
type: Input
|
|
@@ -16,13 +16,14 @@ export class RadialPointerComponent extends CollectionItemComponent {
|
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
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, selector: "kendo-radialgauge-pointer", inputs: { cap: "cap", color: "color", length: "length", value: "value" }, providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
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
20
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialPointerComponent, decorators: [{
|
|
21
21
|
type: Component,
|
|
22
22
|
args: [{
|
|
23
23
|
providers: [ConfigurationService],
|
|
24
24
|
selector: 'kendo-radialgauge-pointer',
|
|
25
|
-
template: ''
|
|
25
|
+
template: '',
|
|
26
|
+
standalone: true
|
|
26
27
|
}]
|
|
27
28
|
}], ctorParameters: function () { return [{ type: i1.ConfigurationService }, { type: i1.CollectionChangesService }]; }, propDecorators: { cap: [{
|
|
28
29
|
type: Input
|
|
@@ -49,13 +49,14 @@ export class RadialPointersComponent extends CollectionComponent {
|
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
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, selector: "kendo-radialgauge-pointers", providers: [CollectionChangesService], queries: [{ propertyName: "children", predicate: RadialPointerComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
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
53
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialPointersComponent, decorators: [{
|
|
54
54
|
type: Component,
|
|
55
55
|
args: [{
|
|
56
56
|
providers: [CollectionChangesService],
|
|
57
57
|
selector: 'kendo-radialgauge-pointers',
|
|
58
|
-
template: ''
|
|
58
|
+
template: '',
|
|
59
|
+
standalone: true
|
|
59
60
|
}]
|
|
60
61
|
}], ctorParameters: function () { return [{ type: i1.ConfigurationService }, { type: i1.CollectionChangesService }]; }, propDecorators: { children: [{
|
|
61
62
|
type: ContentChildren,
|
|
@@ -8,11 +8,11 @@ import { IntlService } from '@progress/kendo-angular-intl';
|
|
|
8
8
|
import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
9
9
|
import { GaugeComponent } from '../base-components';
|
|
10
10
|
import { RadialGauge } from '@progress/kendo-charts';
|
|
11
|
+
import { ResizeSensorComponent } from '@progress/kendo-angular-common';
|
|
11
12
|
import * as i0 from "@angular/core";
|
|
12
13
|
import * as i1 from "../services";
|
|
13
14
|
import * as i2 from "@progress/kendo-angular-intl";
|
|
14
15
|
import * as i3 from "@progress/kendo-angular-l10n";
|
|
15
|
-
import * as i4 from "@progress/kendo-angular-common";
|
|
16
16
|
/**
|
|
17
17
|
* Represents the [Kendo UI RadialGauge component for Angular]({% slug overview_radialgauge_gauges %}).
|
|
18
18
|
*
|
|
@@ -42,8 +42,9 @@ export class RadialGaugeComponent extends GaugeComponent {
|
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
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, selector: "kendo-radialgauge", inputs: { pointer: "pointer", scale: "scale" }, providers: [
|
|
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
46
|
ConfigurationService,
|
|
47
|
+
ThemeService,
|
|
47
48
|
LocalizationService,
|
|
48
49
|
{
|
|
49
50
|
provide: L10N_PREFIX,
|
|
@@ -52,7 +53,7 @@ RadialGaugeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
|
52
53
|
], exportAs: ["kendoRadialGauge"], usesInheritance: true, ngImport: i0, template: `
|
|
53
54
|
<div #surface class='k-chart-surface'></div>
|
|
54
55
|
<kendo-resize-sensor (resize)="onResize($event)" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>
|
|
55
|
-
`, isInline: true, dependencies: [{ kind: "component", type:
|
|
56
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
56
57
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeComponent, decorators: [{
|
|
57
58
|
type: Component,
|
|
58
59
|
args: [{
|
|
@@ -60,6 +61,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
60
61
|
exportAs: 'kendoRadialGauge',
|
|
61
62
|
providers: [
|
|
62
63
|
ConfigurationService,
|
|
64
|
+
ThemeService,
|
|
63
65
|
LocalizationService,
|
|
64
66
|
{
|
|
65
67
|
provide: L10N_PREFIX,
|
|
@@ -70,7 +72,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
70
72
|
template: `
|
|
71
73
|
<div #surface class='k-chart-surface'></div>
|
|
72
74
|
<kendo-resize-sensor (resize)="onResize($event)" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>
|
|
73
|
-
|
|
75
|
+
`,
|
|
76
|
+
standalone: true,
|
|
77
|
+
imports: [ResizeSensorComponent]
|
|
74
78
|
}]
|
|
75
79
|
}], ctorParameters: function () { return [{ type: i1.ConfigurationService }, { type: i1.ThemeService }, { type: i2.IntlService }, { type: i3.LocalizationService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }]; }, propDecorators: { pointer: [{
|
|
76
80
|
type: Input
|
|
@@ -3,18 +3,17 @@
|
|
|
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';
|
|
6
|
-
import {
|
|
7
|
-
import { RadialGaugeComponent } from './radial-gauge.component';
|
|
8
|
-
import { RadialGaugeAreaComponent } from './gauge-area.component';
|
|
9
|
-
import { RadialScaleComponent } from './scale.component';
|
|
10
|
-
import { RadialLabelsComponent } from './labels.component';
|
|
11
|
-
import { RadialPointersComponent } from './pointers.component';
|
|
12
|
-
import { RadialPointerComponent } from './pointer.component';
|
|
13
|
-
import { RadialRangeComponent } from './range.component';
|
|
14
|
-
import { RadialRangesComponent } from './ranges.component';
|
|
6
|
+
import { KENDO_RADIALGAUGE } from '../directives';
|
|
15
7
|
import * as i0 from "@angular/core";
|
|
16
|
-
|
|
17
|
-
|
|
8
|
+
import * as i1 from "./radial-gauge.component";
|
|
9
|
+
import * as i2 from "./gauge-area.component";
|
|
10
|
+
import * as i3 from "./scale.component";
|
|
11
|
+
import * as i4 from "./labels.component";
|
|
12
|
+
import * as i5 from "./pointers.component";
|
|
13
|
+
import * as i6 from "./pointer.component";
|
|
14
|
+
import * as i7 from "./range.component";
|
|
15
|
+
import * as i8 from "./ranges.component";
|
|
16
|
+
// IMPORTANT: NgModule export kept for backwards compatibility
|
|
18
17
|
/**
|
|
19
18
|
* A [module](link:site.data.urls.angular['ngmodules']) that includes the RadialGauge component and its directives.
|
|
20
19
|
* Imports the `RadialGaugeModule` into your application
|
|
@@ -40,15 +39,12 @@ const DIRECTIVES = [RadialGaugeComponent, RadialGaugeAreaComponent, RadialScaleC
|
|
|
40
39
|
export class RadialGaugeModule {
|
|
41
40
|
}
|
|
42
41
|
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,
|
|
44
|
-
|
|
45
|
-
RadialPointersComponent, RadialPointerComponent, RadialRangeComponent, RadialRangesComponent] });
|
|
46
|
-
RadialGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeModule, imports: [SharedModule] });
|
|
42
|
+
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] });
|
|
43
|
+
RadialGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeModule, imports: [KENDO_RADIALGAUGE] });
|
|
47
44
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeModule, decorators: [{
|
|
48
45
|
type: NgModule,
|
|
49
46
|
args: [{
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
imports: [SharedModule]
|
|
47
|
+
exports: [...KENDO_RADIALGAUGE],
|
|
48
|
+
imports: [...KENDO_RADIALGAUGE]
|
|
53
49
|
}]
|
|
54
50
|
}] });
|
|
@@ -16,12 +16,13 @@ export class RadialRangeComponent extends RangeComponent {
|
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
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, selector: "kendo-radialgauge-scale-range", providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
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
20
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialRangeComponent, decorators: [{
|
|
21
21
|
type: Component,
|
|
22
22
|
args: [{
|
|
23
23
|
providers: [ConfigurationService],
|
|
24
24
|
selector: 'kendo-radialgauge-scale-range',
|
|
25
|
-
template: ''
|
|
25
|
+
template: '',
|
|
26
|
+
standalone: true
|
|
26
27
|
}]
|
|
27
28
|
}], ctorParameters: function () { return [{ type: i1.ConfigurationService }, { type: i1.CollectionChangesService }]; } });
|
|
@@ -54,13 +54,14 @@ export class RadialRangesComponent extends CollectionComponent {
|
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
56
|
RadialRangesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialRangesComponent, deps: [{ token: i1.ConfigurationService }, { token: i1.CollectionChangesService }], target: i0.ɵɵFactoryTarget.Component });
|
|
57
|
-
RadialRangesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: RadialRangesComponent, selector: "kendo-radialgauge-scale-ranges", providers: [CollectionChangesService], queries: [{ propertyName: "children", predicate: RadialRangeComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
57
|
+
RadialRangesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: RadialRangesComponent, isStandalone: true, selector: "kendo-radialgauge-scale-ranges", providers: [CollectionChangesService], queries: [{ propertyName: "children", predicate: RadialRangeComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
58
58
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialRangesComponent, decorators: [{
|
|
59
59
|
type: Component,
|
|
60
60
|
args: [{
|
|
61
61
|
providers: [CollectionChangesService],
|
|
62
62
|
selector: 'kendo-radialgauge-scale-ranges',
|
|
63
|
-
template: ''
|
|
63
|
+
template: '',
|
|
64
|
+
standalone: true
|
|
64
65
|
}]
|
|
65
66
|
}], ctorParameters: function () { return [{ type: i1.ConfigurationService }, { type: i1.CollectionChangesService }]; }, propDecorators: { children: [{
|
|
66
67
|
type: ContentChildren,
|