@progress/kendo-angular-gauges 16.5.0 → 16.6.0-develop.2
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
package/gauges.module.d.ts
CHANGED
|
@@ -3,10 +3,34 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "./arc-gauge/arc-gauge.
|
|
7
|
-
import * as i2 from "./
|
|
8
|
-
import * as i3 from "./
|
|
9
|
-
import * as i4 from "./
|
|
6
|
+
import * as i1 from "./arc-gauge/arc-gauge.component";
|
|
7
|
+
import * as i2 from "./arc-gauge/arc-center-template.directive";
|
|
8
|
+
import * as i3 from "./arc-gauge/gauge-area.component";
|
|
9
|
+
import * as i4 from "./arc-gauge/scale.component";
|
|
10
|
+
import * as i5 from "./arc-gauge/labels.component";
|
|
11
|
+
import * as i6 from "./arc-gauge/colors.component";
|
|
12
|
+
import * as i7 from "./arc-gauge/color.component";
|
|
13
|
+
import * as i8 from "./circular-gauge/circular-gauge.component";
|
|
14
|
+
import * as i9 from "./circular-gauge/center-template.directive";
|
|
15
|
+
import * as i10 from "./circular-gauge/gauge-area.component";
|
|
16
|
+
import * as i11 from "./circular-gauge/scale.component";
|
|
17
|
+
import * as i12 from "./circular-gauge/labels.component";
|
|
18
|
+
import * as i13 from "./linear-gauge/linear-gauge.component";
|
|
19
|
+
import * as i14 from "./linear-gauge/gauge-area.component";
|
|
20
|
+
import * as i15 from "./linear-gauge/scale.component";
|
|
21
|
+
import * as i16 from "./linear-gauge/labels.component";
|
|
22
|
+
import * as i17 from "./linear-gauge/pointers.component";
|
|
23
|
+
import * as i18 from "./linear-gauge/pointer.component";
|
|
24
|
+
import * as i19 from "./linear-gauge/range.component";
|
|
25
|
+
import * as i20 from "./linear-gauge/ranges.component";
|
|
26
|
+
import * as i21 from "./radial-gauge/radial-gauge.component";
|
|
27
|
+
import * as i22 from "./radial-gauge/gauge-area.component";
|
|
28
|
+
import * as i23 from "./radial-gauge/scale.component";
|
|
29
|
+
import * as i24 from "./radial-gauge/labels.component";
|
|
30
|
+
import * as i25 from "./radial-gauge/pointers.component";
|
|
31
|
+
import * as i26 from "./radial-gauge/pointer.component";
|
|
32
|
+
import * as i27 from "./radial-gauge/range.component";
|
|
33
|
+
import * as i28 from "./radial-gauge/ranges.component";
|
|
10
34
|
/**
|
|
11
35
|
* A [module](link:site.data.urls.angular['ngmodules']) that includes all Gauge components and directives.
|
|
12
36
|
*
|
|
@@ -32,6 +56,6 @@ import * as i4 from "./radial-gauge/radial-gauge.module";
|
|
|
32
56
|
*/
|
|
33
57
|
export declare class GaugesModule {
|
|
34
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<GaugesModule, never>;
|
|
35
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<GaugesModule, never,
|
|
59
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GaugesModule, never, [typeof i1.ArcGaugeComponent, typeof i2.ArcCenterTemplateDirective, typeof i3.ArcGaugeAreaComponent, typeof i4.ArcScaleComponent, typeof i5.ArcLabelsComponent, typeof i6.ColorsComponent, typeof i7.ColorComponent, typeof i8.CircularGaugeComponent, typeof i9.CircularGaugeCenterTemplateDirective, typeof i10.CircularGaugeAreaComponent, typeof i11.CircularGaugeScaleComponent, typeof i12.CircularGaugeLabelsComponent, typeof i13.LinearGaugeComponent, typeof i14.LinearGaugeAreaComponent, typeof i15.LinearScaleComponent, typeof i16.LinearLabelsComponent, typeof i17.LinearPointersComponent, typeof i18.LinearPointerComponent, typeof i19.LinearRangeComponent, typeof i20.LinearRangesComponent, typeof i21.RadialGaugeComponent, typeof i22.RadialGaugeAreaComponent, typeof i23.RadialScaleComponent, typeof i24.RadialLabelsComponent, typeof i25.RadialPointersComponent, typeof i26.RadialPointerComponent, typeof i27.RadialRangeComponent, typeof i28.RadialRangesComponent], [typeof i1.ArcGaugeComponent, typeof i2.ArcCenterTemplateDirective, typeof i3.ArcGaugeAreaComponent, typeof i4.ArcScaleComponent, typeof i5.ArcLabelsComponent, typeof i6.ColorsComponent, typeof i7.ColorComponent, typeof i8.CircularGaugeComponent, typeof i9.CircularGaugeCenterTemplateDirective, typeof i10.CircularGaugeAreaComponent, typeof i11.CircularGaugeScaleComponent, typeof i12.CircularGaugeLabelsComponent, typeof i13.LinearGaugeComponent, typeof i14.LinearGaugeAreaComponent, typeof i15.LinearScaleComponent, typeof i16.LinearLabelsComponent, typeof i17.LinearPointersComponent, typeof i18.LinearPointerComponent, typeof i19.LinearRangeComponent, typeof i20.LinearRangesComponent, typeof i21.RadialGaugeComponent, typeof i22.RadialGaugeAreaComponent, typeof i23.RadialScaleComponent, typeof i24.RadialLabelsComponent, typeof i25.RadialPointersComponent, typeof i26.RadialPointerComponent, typeof i27.RadialRangeComponent, typeof i28.RadialRangesComponent]>;
|
|
36
60
|
static ɵinj: i0.ɵɵInjectorDeclaration<GaugesModule>;
|
|
37
61
|
}
|
package/index.d.ts
CHANGED
|
@@ -13,5 +13,5 @@ export declare class LinearGaugeAreaComponent extends GaugeAreaComponent {
|
|
|
13
13
|
protected configurationService: ConfigurationService;
|
|
14
14
|
constructor(configurationService: ConfigurationService);
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<LinearGaugeAreaComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LinearGaugeAreaComponent, "kendo-lineargauge-area", never, {}, {}, never, never,
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinearGaugeAreaComponent, "kendo-lineargauge-area", never, {}, {}, never, never, true, never>;
|
|
17
17
|
}
|
|
@@ -12,5 +12,5 @@ export declare class LinearLabelsComponent extends LabelsComponent {
|
|
|
12
12
|
protected configurationService: ConfigurationService;
|
|
13
13
|
constructor(configurationService: ConfigurationService);
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<LinearLabelsComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LinearLabelsComponent, "kendo-lineargauge-scale-labels", never, {}, {}, never, never,
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinearLabelsComponent, "kendo-lineargauge-scale-labels", never, {}, {}, never, never, true, never>;
|
|
16
16
|
}
|
|
@@ -41,5 +41,5 @@ export declare class LinearGaugeComponent extends GaugeComponent {
|
|
|
41
41
|
constructor(configurationService: ConfigurationService, themeService: ThemeService, intlService: IntlService, localizationService: LocalizationService, element: ElementRef, renderer: Renderer2, ngZone: NgZone);
|
|
42
42
|
protected createInstance(element: any, options: any, theme: any, context: any): void;
|
|
43
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<LinearGaugeComponent, never>;
|
|
44
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LinearGaugeComponent, "kendo-lineargauge", ["kendoLinearGauge"], { "pointer": "pointer"; "scale": "scale"; }, {}, never, never,
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinearGaugeComponent, "kendo-lineargauge", ["kendoLinearGauge"], { "pointer": "pointer"; "scale": "scale"; }, {}, never, never, true, never>;
|
|
45
45
|
}
|
|
@@ -11,7 +11,6 @@ import * as i5 from "./pointers.component";
|
|
|
11
11
|
import * as i6 from "./pointer.component";
|
|
12
12
|
import * as i7 from "./range.component";
|
|
13
13
|
import * as i8 from "./ranges.component";
|
|
14
|
-
import * as i9 from "../shared.module";
|
|
15
14
|
/**
|
|
16
15
|
* A [module](link:site.data.urls.angular['ngmodules']) that includes the LinearGauge component and its directives.
|
|
17
16
|
* Imports the `LinearGaugeModule` into your application
|
|
@@ -36,6 +35,6 @@ import * as i9 from "../shared.module";
|
|
|
36
35
|
*/
|
|
37
36
|
export declare class LinearGaugeModule {
|
|
38
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<LinearGaugeModule, never>;
|
|
39
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<LinearGaugeModule, [typeof i1.LinearGaugeComponent, typeof i2.LinearGaugeAreaComponent, typeof i3.LinearScaleComponent, typeof i4.LinearLabelsComponent, typeof i5.LinearPointersComponent, typeof i6.LinearPointerComponent, typeof i7.LinearRangeComponent, typeof i8.LinearRangesComponent], [typeof
|
|
38
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LinearGaugeModule, never, [typeof i1.LinearGaugeComponent, typeof i2.LinearGaugeAreaComponent, typeof i3.LinearScaleComponent, typeof i4.LinearLabelsComponent, typeof i5.LinearPointersComponent, typeof i6.LinearPointerComponent, typeof i7.LinearRangeComponent, typeof i8.LinearRangesComponent], [typeof i1.LinearGaugeComponent, typeof i2.LinearGaugeAreaComponent, typeof i3.LinearScaleComponent, typeof i4.LinearLabelsComponent, typeof i5.LinearPointersComponent, typeof i6.LinearPointerComponent, typeof i7.LinearRangeComponent, typeof i8.LinearRangesComponent]>;
|
|
40
39
|
static ɵinj: i0.ɵɵInjectorDeclaration<LinearGaugeModule>;
|
|
41
40
|
}
|
|
@@ -19,5 +19,5 @@ export declare class LinearPointerComponent extends CollectionItemComponent impl
|
|
|
19
19
|
value?: number;
|
|
20
20
|
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<LinearPointerComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LinearPointerComponent, "kendo-lineargauge-pointer", never, { "border": "border"; "color": "color"; "margin": "margin"; "opacity": "opacity"; "shape": "shape"; "size": "size"; "value": "value"; }, {}, never, never,
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinearPointerComponent, "kendo-lineargauge-pointer", never, { "border": "border"; "color": "color"; "margin": "margin"; "opacity": "opacity"; "shape": "shape"; "size": "size"; "value": "value"; }, {}, never, never, true, never>;
|
|
23
23
|
}
|
|
@@ -45,5 +45,5 @@ export declare class LinearPointersComponent extends CollectionComponent {
|
|
|
45
45
|
children: QueryList<CollectionItemComponent>;
|
|
46
46
|
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
47
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<LinearPointersComponent, never>;
|
|
48
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LinearPointersComponent, "kendo-lineargauge-pointers", never, {}, {}, ["children"], never,
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinearPointersComponent, "kendo-lineargauge-pointers", never, {}, {}, ["children"], never, true, never>;
|
|
49
49
|
}
|
|
@@ -11,5 +11,5 @@ import * as i0 from "@angular/core";
|
|
|
11
11
|
export declare class LinearRangeComponent extends RangeComponent {
|
|
12
12
|
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<LinearRangeComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LinearRangeComponent, "kendo-lineargauge-scale-range", never, {}, {}, never, never,
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinearRangeComponent, "kendo-lineargauge-scale-range", never, {}, {}, never, never, true, never>;
|
|
15
15
|
}
|
|
@@ -50,5 +50,5 @@ export declare class LinearRangesComponent extends CollectionComponent {
|
|
|
50
50
|
children: QueryList<CollectionItemComponent>;
|
|
51
51
|
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
52
52
|
static ɵfac: i0.ɵɵFactoryDeclaration<LinearRangesComponent, never>;
|
|
53
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LinearRangesComponent, "kendo-lineargauge-scale-ranges", never, {}, {}, ["children"], never,
|
|
53
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinearRangesComponent, "kendo-lineargauge-scale-ranges", never, {}, {}, ["children"], never, true, never>;
|
|
54
54
|
}
|
|
@@ -18,5 +18,5 @@ export declare class LinearScaleComponent extends ScaleComponent implements Line
|
|
|
18
18
|
vertical?: boolean;
|
|
19
19
|
constructor(configurationService: ConfigurationService);
|
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<LinearScaleComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LinearScaleComponent, "kendo-lineargauge-scale", never, { "line": "line"; "ranges": "ranges"; "mirror": "mirror"; "vertical": "vertical"; }, {}, never, never,
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinearScaleComponent, "kendo-lineargauge-scale", never, { "line": "line"; "ranges": "ranges"; "mirror": "mirror"; "vertical": "vertical"; }, {}, never, never, true, never>;
|
|
22
22
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-gauges",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.6.0-develop.2",
|
|
4
4
|
"description": "Kendo UI Angular Gauges",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
"@angular/platform-browser": "15 - 18",
|
|
27
27
|
"@progress/kendo-drawing": "^1.19.0",
|
|
28
28
|
"@progress/kendo-licensing": "^1.0.2",
|
|
29
|
-
"@progress/kendo-angular-common": "16.
|
|
30
|
-
"@progress/kendo-angular-intl": "16.
|
|
31
|
-
"@progress/kendo-angular-l10n": "16.
|
|
29
|
+
"@progress/kendo-angular-common": "16.6.0-develop.2",
|
|
30
|
+
"@progress/kendo-angular-intl": "16.6.0-develop.2",
|
|
31
|
+
"@progress/kendo-angular-l10n": "16.6.0-develop.2",
|
|
32
32
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"tslib": "^2.3.1",
|
|
36
|
-
"@progress/kendo-angular-schematics": "16.
|
|
36
|
+
"@progress/kendo-angular-schematics": "16.6.0-develop.2",
|
|
37
37
|
"@progress/kendo-charts": "2.4.1"
|
|
38
38
|
},
|
|
39
39
|
"schematics": "./schematics/collection.json",
|
|
@@ -13,5 +13,5 @@ export declare class RadialGaugeAreaComponent extends GaugeAreaComponent {
|
|
|
13
13
|
protected configurationService: ConfigurationService;
|
|
14
14
|
constructor(configurationService: ConfigurationService);
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadialGaugeAreaComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadialGaugeAreaComponent, "kendo-radialgauge-area", never, {}, {}, never, never,
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadialGaugeAreaComponent, "kendo-radialgauge-area", never, {}, {}, never, never, true, never>;
|
|
17
17
|
}
|
|
@@ -14,5 +14,5 @@ export declare class RadialLabelsComponent extends LabelsComponent implements Ra
|
|
|
14
14
|
position: RadialLabelPosition;
|
|
15
15
|
constructor(configurationService: ConfigurationService);
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadialLabelsComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadialLabelsComponent, "kendo-radialgauge-scale-labels", never, { "position": "position"; }, {}, never, never,
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadialLabelsComponent, "kendo-radialgauge-scale-labels", never, { "position": "position"; }, {}, never, never, true, never>;
|
|
18
18
|
}
|
|
@@ -16,5 +16,5 @@ export declare class RadialPointerComponent extends CollectionItemComponent impl
|
|
|
16
16
|
value?: number;
|
|
17
17
|
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadialPointerComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadialPointerComponent, "kendo-radialgauge-pointer", never, { "cap": "cap"; "color": "color"; "length": "length"; "value": "value"; }, {}, never, never,
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadialPointerComponent, "kendo-radialgauge-pointer", never, { "cap": "cap"; "color": "color"; "length": "length"; "value": "value"; }, {}, never, never, true, never>;
|
|
20
20
|
}
|
|
@@ -45,5 +45,5 @@ export declare class RadialPointersComponent extends CollectionComponent {
|
|
|
45
45
|
children: QueryList<CollectionItemComponent>;
|
|
46
46
|
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
47
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadialPointersComponent, never>;
|
|
48
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadialPointersComponent, "kendo-radialgauge-pointers", never, {}, {}, ["children"], never,
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadialPointersComponent, "kendo-radialgauge-pointers", never, {}, {}, ["children"], never, true, never>;
|
|
49
49
|
}
|
|
@@ -41,5 +41,5 @@ export declare class RadialGaugeComponent extends GaugeComponent {
|
|
|
41
41
|
constructor(configurationService: ConfigurationService, themeService: ThemeService, intlService: IntlService, localizationService: LocalizationService, element: ElementRef, renderer: Renderer2, ngZone: NgZone);
|
|
42
42
|
protected createInstance(element: any, options: any, theme: any, context: any): void;
|
|
43
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadialGaugeComponent, never>;
|
|
44
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadialGaugeComponent, "kendo-radialgauge", ["kendoRadialGauge"], { "pointer": "pointer"; "scale": "scale"; }, {}, never, never,
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadialGaugeComponent, "kendo-radialgauge", ["kendoRadialGauge"], { "pointer": "pointer"; "scale": "scale"; }, {}, never, never, true, never>;
|
|
45
45
|
}
|
|
@@ -11,7 +11,6 @@ import * as i5 from "./pointers.component";
|
|
|
11
11
|
import * as i6 from "./pointer.component";
|
|
12
12
|
import * as i7 from "./range.component";
|
|
13
13
|
import * as i8 from "./ranges.component";
|
|
14
|
-
import * as i9 from "../shared.module";
|
|
15
14
|
/**
|
|
16
15
|
* A [module](link:site.data.urls.angular['ngmodules']) that includes the RadialGauge component and its directives.
|
|
17
16
|
* Imports the `RadialGaugeModule` into your application
|
|
@@ -36,6 +35,6 @@ import * as i9 from "../shared.module";
|
|
|
36
35
|
*/
|
|
37
36
|
export declare class RadialGaugeModule {
|
|
38
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadialGaugeModule, never>;
|
|
39
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<RadialGaugeModule, [typeof i1.RadialGaugeComponent, typeof i2.RadialGaugeAreaComponent, typeof i3.RadialScaleComponent, typeof i4.RadialLabelsComponent, typeof i5.RadialPointersComponent, typeof i6.RadialPointerComponent, typeof i7.RadialRangeComponent, typeof i8.RadialRangesComponent], [typeof
|
|
38
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<RadialGaugeModule, never, [typeof i1.RadialGaugeComponent, typeof i2.RadialGaugeAreaComponent, typeof i3.RadialScaleComponent, typeof i4.RadialLabelsComponent, typeof i5.RadialPointersComponent, typeof i6.RadialPointerComponent, typeof i7.RadialRangeComponent, typeof i8.RadialRangesComponent], [typeof i1.RadialGaugeComponent, typeof i2.RadialGaugeAreaComponent, typeof i3.RadialScaleComponent, typeof i4.RadialLabelsComponent, typeof i5.RadialPointersComponent, typeof i6.RadialPointerComponent, typeof i7.RadialRangeComponent, typeof i8.RadialRangesComponent]>;
|
|
40
39
|
static ɵinj: i0.ɵɵInjectorDeclaration<RadialGaugeModule>;
|
|
41
40
|
}
|
|
@@ -11,5 +11,5 @@ import * as i0 from "@angular/core";
|
|
|
11
11
|
export declare class RadialRangeComponent extends RangeComponent {
|
|
12
12
|
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadialRangeComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadialRangeComponent, "kendo-radialgauge-scale-range", never, {}, {}, never, never,
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadialRangeComponent, "kendo-radialgauge-scale-range", never, {}, {}, never, never, true, never>;
|
|
15
15
|
}
|
|
@@ -50,5 +50,5 @@ export declare class RadialRangesComponent extends CollectionComponent {
|
|
|
50
50
|
children: QueryList<CollectionItemComponent>;
|
|
51
51
|
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
52
52
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadialRangesComponent, never>;
|
|
53
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadialRangesComponent, "kendo-radialgauge-scale-ranges", never, {}, {}, ["children"], never,
|
|
53
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadialRangesComponent, "kendo-radialgauge-scale-ranges", never, {}, {}, ["children"], never, true, never>;
|
|
54
54
|
}
|
|
@@ -19,5 +19,5 @@ export declare class RadialScaleComponent extends ScaleComponent implements Radi
|
|
|
19
19
|
endAngle?: number;
|
|
20
20
|
constructor(configurationService: ConfigurationService);
|
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadialScaleComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadialScaleComponent, "kendo-radialgauge-scale", never, { "labels": "labels"; "rangeDistance": "rangeDistance"; "ranges": "ranges"; "startAngle": "startAngle"; "endAngle": "endAngle"; }, {}, never, never,
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadialScaleComponent, "kendo-radialgauge-scale", never, { "labels": "labels"; "rangeDistance": "rangeDistance"; "ranges": "ranges"; "startAngle": "startAngle"; "endAngle": "endAngle"; }, {}, never, never, true, never>;
|
|
23
23
|
}
|
|
@@ -1,27 +0,0 @@
|
|
|
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 { NgModule } from '@angular/core';
|
|
6
|
-
import { ResizeSensorModule } from '@progress/kendo-angular-common';
|
|
7
|
-
import { ThemeService } from './services';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
/**
|
|
10
|
-
* @hidden
|
|
11
|
-
*/
|
|
12
|
-
export class SharedModule {
|
|
13
|
-
}
|
|
14
|
-
SharedModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
15
|
-
SharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, exports: [ResizeSensorModule] });
|
|
16
|
-
SharedModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, providers: [
|
|
17
|
-
ThemeService
|
|
18
|
-
], imports: [ResizeSensorModule] });
|
|
19
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, decorators: [{
|
|
20
|
-
type: NgModule,
|
|
21
|
-
args: [{
|
|
22
|
-
exports: [ResizeSensorModule],
|
|
23
|
-
providers: [
|
|
24
|
-
ThemeService
|
|
25
|
-
]
|
|
26
|
-
}]
|
|
27
|
-
}] });
|
package/shared.module.d.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
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 * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "@progress/kendo-angular-common";
|
|
7
|
-
/**
|
|
8
|
-
* @hidden
|
|
9
|
-
*/
|
|
10
|
-
export declare class SharedModule {
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
|
|
12
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, never, never, [typeof i1.ResizeSensorModule]>;
|
|
13
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
|
|
14
|
-
}
|