@progress/kendo-angular-gauges 16.6.0-develop.16 → 16.6.0-develop.17
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/esm2020/arc-gauge/arc-gauge.component.mjs +0 -2
- package/esm2020/arc-gauge/arc-gauge.module.mjs +4 -2
- package/esm2020/circular-gauge/circular-gauge.module.mjs +4 -2
- package/esm2020/gauges.module.mjs +4 -2
- package/esm2020/linear-gauge/linear-gauge.component.mjs +0 -2
- package/esm2020/linear-gauge/linear-gauge.module.mjs +4 -2
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/radial-gauge/radial-gauge.component.mjs +0 -2
- package/esm2020/radial-gauge/radial-gauge.module.mjs +4 -2
- package/esm2020/services/theme.service.mjs +5 -2
- package/fesm2015/progress-kendo-angular-gauges.mjs +22 -20
- package/fesm2020/progress-kendo-angular-gauges.mjs +22 -20
- package/package.json +5 -5
|
@@ -120,7 +120,6 @@ export class ArcGaugeComponent extends GaugeComponent {
|
|
|
120
120
|
ArcGaugeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ArcGaugeComponent, deps: [{ token: i0.ChangeDetectorRef }, { 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 });
|
|
121
121
|
ArcGaugeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ArcGaugeComponent, isStandalone: true, selector: "kendo-arcgauge", inputs: { value: "value", color: "color", colors: "colors", opacity: "opacity", scale: "scale" }, host: { properties: { "class.k-arcgauge": "this.className" } }, providers: [
|
|
122
122
|
ConfigurationService,
|
|
123
|
-
ThemeService,
|
|
124
123
|
LocalizationService,
|
|
125
124
|
{
|
|
126
125
|
provide: L10N_PREFIX,
|
|
@@ -140,7 +139,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
140
139
|
exportAs: 'kendoArcGauge',
|
|
141
140
|
providers: [
|
|
142
141
|
ConfigurationService,
|
|
143
|
-
ThemeService,
|
|
144
142
|
LocalizationService,
|
|
145
143
|
{
|
|
146
144
|
provide: L10N_PREFIX,
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { NgModule } from '@angular/core';
|
|
6
6
|
import { KENDO_ARCGAUGE } from '../directives';
|
|
7
|
+
import { ThemeService } from '../services';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
import * as i1 from "./arc-gauge.component";
|
|
9
10
|
import * as i2 from "./arc-center-template.directive";
|
|
@@ -39,11 +40,12 @@ export class ArcGaugeModule {
|
|
|
39
40
|
}
|
|
40
41
|
ArcGaugeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ArcGaugeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
41
42
|
ArcGaugeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ArcGaugeModule, imports: [i1.ArcGaugeComponent, i2.ArcCenterTemplateDirective, i3.ArcGaugeAreaComponent, i4.ArcScaleComponent, i5.ArcLabelsComponent, i6.ColorsComponent, i7.ColorComponent], exports: [i1.ArcGaugeComponent, i2.ArcCenterTemplateDirective, i3.ArcGaugeAreaComponent, i4.ArcScaleComponent, i5.ArcLabelsComponent, i6.ColorsComponent, i7.ColorComponent] });
|
|
42
|
-
ArcGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ArcGaugeModule, imports: [i1.ArcGaugeComponent, i3.ArcGaugeAreaComponent, i4.ArcScaleComponent, i5.ArcLabelsComponent, i6.ColorsComponent, i7.ColorComponent] });
|
|
43
|
+
ArcGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ArcGaugeModule, providers: [ThemeService], imports: [i1.ArcGaugeComponent, i3.ArcGaugeAreaComponent, i4.ArcScaleComponent, i5.ArcLabelsComponent, i6.ColorsComponent, i7.ColorComponent] });
|
|
43
44
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ArcGaugeModule, decorators: [{
|
|
44
45
|
type: NgModule,
|
|
45
46
|
args: [{
|
|
46
47
|
exports: [...KENDO_ARCGAUGE],
|
|
47
|
-
imports: [...KENDO_ARCGAUGE]
|
|
48
|
+
imports: [...KENDO_ARCGAUGE],
|
|
49
|
+
providers: [ThemeService]
|
|
48
50
|
}]
|
|
49
51
|
}] });
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { NgModule } from '@angular/core';
|
|
6
6
|
import { KENDO_CIRCULARGAUGE } from '../directives';
|
|
7
|
+
import { ThemeService } from '../services';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
import * as i1 from "./circular-gauge.component";
|
|
9
10
|
import * as i2 from "./center-template.directive";
|
|
@@ -37,11 +38,12 @@ export class CircularGaugeModule {
|
|
|
37
38
|
}
|
|
38
39
|
CircularGaugeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
39
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] });
|
|
40
|
-
CircularGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeModule, imports: [i1.CircularGaugeComponent, 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] });
|
|
41
42
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeModule, decorators: [{
|
|
42
43
|
type: NgModule,
|
|
43
44
|
args: [{
|
|
44
45
|
exports: [...KENDO_CIRCULARGAUGE],
|
|
45
|
-
imports: [...KENDO_CIRCULARGAUGE]
|
|
46
|
+
imports: [...KENDO_CIRCULARGAUGE],
|
|
47
|
+
providers: [ThemeService]
|
|
46
48
|
}]
|
|
47
49
|
}] });
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { NgModule } from '@angular/core';
|
|
6
6
|
import { KENDO_GAUGES } from './directives';
|
|
7
|
+
import { ThemeService } from './services';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
import * as i1 from "./arc-gauge/arc-gauge.component";
|
|
9
10
|
import * as i2 from "./arc-gauge/arc-center-template.directive";
|
|
@@ -61,11 +62,12 @@ export class GaugesModule {
|
|
|
61
62
|
}
|
|
62
63
|
GaugesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GaugesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
63
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] });
|
|
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] });
|
|
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] });
|
|
65
66
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GaugesModule, decorators: [{
|
|
66
67
|
type: NgModule,
|
|
67
68
|
args: [{
|
|
68
69
|
exports: [...KENDO_GAUGES],
|
|
69
|
-
imports: [...KENDO_GAUGES]
|
|
70
|
+
imports: [...KENDO_GAUGES],
|
|
71
|
+
providers: [ThemeService]
|
|
70
72
|
}]
|
|
71
73
|
}] });
|
|
@@ -44,7 +44,6 @@ export class LinearGaugeComponent extends GaugeComponent {
|
|
|
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
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,
|
|
48
47
|
LocalizationService,
|
|
49
48
|
{
|
|
50
49
|
provide: L10N_PREFIX,
|
|
@@ -61,7 +60,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
61
60
|
exportAs: 'kendoLinearGauge',
|
|
62
61
|
providers: [
|
|
63
62
|
ConfigurationService,
|
|
64
|
-
ThemeService,
|
|
65
63
|
LocalizationService,
|
|
66
64
|
{
|
|
67
65
|
provide: L10N_PREFIX,
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { NgModule } from '@angular/core';
|
|
6
6
|
import { KENDO_LINEARGAUGE } from '../directives';
|
|
7
|
+
import { ThemeService } from '../services';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
import * as i1 from "./linear-gauge.component";
|
|
9
10
|
import * as i2 from "./gauge-area.component";
|
|
@@ -40,11 +41,12 @@ export class LinearGaugeModule {
|
|
|
40
41
|
}
|
|
41
42
|
LinearGaugeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
42
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] });
|
|
43
|
-
LinearGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeModule, imports: [KENDO_LINEARGAUGE] });
|
|
44
|
+
LinearGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeModule, providers: [ThemeService], imports: [KENDO_LINEARGAUGE] });
|
|
44
45
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeModule, decorators: [{
|
|
45
46
|
type: NgModule,
|
|
46
47
|
args: [{
|
|
47
48
|
exports: [...KENDO_LINEARGAUGE],
|
|
48
|
-
imports: [...KENDO_LINEARGAUGE]
|
|
49
|
+
imports: [...KENDO_LINEARGAUGE],
|
|
50
|
+
providers: [ThemeService]
|
|
49
51
|
}]
|
|
50
52
|
}] });
|
|
@@ -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.6.0-develop.
|
|
12
|
+
publishDate: 1722871515,
|
|
13
|
+
version: '16.6.0-develop.17',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -44,7 +44,6 @@ export class RadialGaugeComponent extends GaugeComponent {
|
|
|
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
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,
|
|
48
47
|
LocalizationService,
|
|
49
48
|
{
|
|
50
49
|
provide: L10N_PREFIX,
|
|
@@ -61,7 +60,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
61
60
|
exportAs: 'kendoRadialGauge',
|
|
62
61
|
providers: [
|
|
63
62
|
ConfigurationService,
|
|
64
|
-
ThemeService,
|
|
65
63
|
LocalizationService,
|
|
66
64
|
{
|
|
67
65
|
provide: L10N_PREFIX,
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { NgModule } from '@angular/core';
|
|
6
6
|
import { KENDO_RADIALGAUGE } from '../directives';
|
|
7
|
+
import { ThemeService } from '../services';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
import * as i1 from "./radial-gauge.component";
|
|
9
10
|
import * as i2 from "./gauge-area.component";
|
|
@@ -40,11 +41,12 @@ export class RadialGaugeModule {
|
|
|
40
41
|
}
|
|
41
42
|
RadialGaugeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
42
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] });
|
|
43
|
-
RadialGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeModule, imports: [KENDO_RADIALGAUGE] });
|
|
44
|
+
RadialGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeModule, providers: [ThemeService], imports: [KENDO_RADIALGAUGE] });
|
|
44
45
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeModule, decorators: [{
|
|
45
46
|
type: NgModule,
|
|
46
47
|
args: [{
|
|
47
48
|
exports: [...KENDO_RADIALGAUGE],
|
|
48
|
-
imports: [...KENDO_RADIALGAUGE]
|
|
49
|
+
imports: [...KENDO_RADIALGAUGE],
|
|
50
|
+
providers: [ThemeService]
|
|
49
51
|
}]
|
|
50
52
|
}] });
|
|
@@ -62,7 +62,10 @@ export class ThemeService {
|
|
|
62
62
|
}
|
|
63
63
|
}
|
|
64
64
|
ThemeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
65
|
-
ThemeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeService });
|
|
65
|
+
ThemeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeService, providedIn: 'root' });
|
|
66
66
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeService, decorators: [{
|
|
67
|
-
type: Injectable
|
|
67
|
+
type: Injectable,
|
|
68
|
+
args: [{
|
|
69
|
+
providedIn: 'root'
|
|
70
|
+
}]
|
|
68
71
|
}] });
|
|
@@ -220,9 +220,12 @@ class ThemeService {
|
|
|
220
220
|
}
|
|
221
221
|
}
|
|
222
222
|
ThemeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
223
|
-
ThemeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeService });
|
|
223
|
+
ThemeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeService, providedIn: 'root' });
|
|
224
224
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeService, decorators: [{
|
|
225
|
-
type: Injectable
|
|
225
|
+
type: Injectable,
|
|
226
|
+
args: [{
|
|
227
|
+
providedIn: 'root'
|
|
228
|
+
}]
|
|
226
229
|
}] });
|
|
227
230
|
|
|
228
231
|
/**
|
|
@@ -283,8 +286,8 @@ const packageMetadata = {
|
|
|
283
286
|
name: '@progress/kendo-angular-gauges',
|
|
284
287
|
productName: 'Kendo UI for Angular',
|
|
285
288
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
286
|
-
publishDate:
|
|
287
|
-
version: '16.6.0-develop.
|
|
289
|
+
publishDate: 1722871515,
|
|
290
|
+
version: '16.6.0-develop.17',
|
|
288
291
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
289
292
|
};
|
|
290
293
|
|
|
@@ -746,7 +749,6 @@ class ArcGaugeComponent extends GaugeComponent {
|
|
|
746
749
|
ArcGaugeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ArcGaugeComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: ConfigurationService }, { token: ThemeService }, { token: i2.IntlService }, { token: i3.LocalizationService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
747
750
|
ArcGaugeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ArcGaugeComponent, isStandalone: true, selector: "kendo-arcgauge", inputs: { value: "value", color: "color", colors: "colors", opacity: "opacity", scale: "scale" }, host: { properties: { "class.k-arcgauge": "this.className" } }, providers: [
|
|
748
751
|
ConfigurationService,
|
|
749
|
-
ThemeService,
|
|
750
752
|
LocalizationService,
|
|
751
753
|
{
|
|
752
754
|
provide: L10N_PREFIX,
|
|
@@ -766,7 +768,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
766
768
|
exportAs: 'kendoArcGauge',
|
|
767
769
|
providers: [
|
|
768
770
|
ConfigurationService,
|
|
769
|
-
ThemeService,
|
|
770
771
|
LocalizationService,
|
|
771
772
|
{
|
|
772
773
|
provide: L10N_PREFIX,
|
|
@@ -1232,7 +1233,6 @@ class LinearGaugeComponent extends GaugeComponent {
|
|
|
1232
1233
|
LinearGaugeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeComponent, deps: [{ token: ConfigurationService }, { token: ThemeService }, { token: i2.IntlService }, { token: i3.LocalizationService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1233
1234
|
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: [
|
|
1234
1235
|
ConfigurationService,
|
|
1235
|
-
ThemeService,
|
|
1236
1236
|
LocalizationService,
|
|
1237
1237
|
{
|
|
1238
1238
|
provide: L10N_PREFIX,
|
|
@@ -1249,7 +1249,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1249
1249
|
exportAs: 'kendoLinearGauge',
|
|
1250
1250
|
providers: [
|
|
1251
1251
|
ConfigurationService,
|
|
1252
|
-
ThemeService,
|
|
1253
1252
|
LocalizationService,
|
|
1254
1253
|
{
|
|
1255
1254
|
provide: L10N_PREFIX,
|
|
@@ -1603,7 +1602,6 @@ class RadialGaugeComponent extends GaugeComponent {
|
|
|
1603
1602
|
RadialGaugeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeComponent, deps: [{ token: ConfigurationService }, { token: ThemeService }, { token: i2.IntlService }, { token: i3.LocalizationService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1604
1603
|
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: [
|
|
1605
1604
|
ConfigurationService,
|
|
1606
|
-
ThemeService,
|
|
1607
1605
|
LocalizationService,
|
|
1608
1606
|
{
|
|
1609
1607
|
provide: L10N_PREFIX,
|
|
@@ -1620,7 +1618,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1620
1618
|
exportAs: 'kendoRadialGauge',
|
|
1621
1619
|
providers: [
|
|
1622
1620
|
ConfigurationService,
|
|
1623
|
-
ThemeService,
|
|
1624
1621
|
LocalizationService,
|
|
1625
1622
|
{
|
|
1626
1623
|
provide: L10N_PREFIX,
|
|
@@ -1837,12 +1834,13 @@ class ArcGaugeModule {
|
|
|
1837
1834
|
}
|
|
1838
1835
|
ArcGaugeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ArcGaugeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1839
1836
|
ArcGaugeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ArcGaugeModule, imports: [ArcGaugeComponent, ArcCenterTemplateDirective, ArcGaugeAreaComponent, ArcScaleComponent, ArcLabelsComponent, ColorsComponent, ColorComponent], exports: [ArcGaugeComponent, ArcCenterTemplateDirective, ArcGaugeAreaComponent, ArcScaleComponent, ArcLabelsComponent, ColorsComponent, ColorComponent] });
|
|
1840
|
-
ArcGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ArcGaugeModule, imports: [ArcGaugeComponent, ArcGaugeAreaComponent, ArcScaleComponent, ArcLabelsComponent, ColorsComponent, ColorComponent] });
|
|
1837
|
+
ArcGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ArcGaugeModule, providers: [ThemeService], imports: [ArcGaugeComponent, ArcGaugeAreaComponent, ArcScaleComponent, ArcLabelsComponent, ColorsComponent, ColorComponent] });
|
|
1841
1838
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ArcGaugeModule, decorators: [{
|
|
1842
1839
|
type: NgModule,
|
|
1843
1840
|
args: [{
|
|
1844
1841
|
exports: [...KENDO_ARCGAUGE],
|
|
1845
|
-
imports: [...KENDO_ARCGAUGE]
|
|
1842
|
+
imports: [...KENDO_ARCGAUGE],
|
|
1843
|
+
providers: [ThemeService]
|
|
1846
1844
|
}]
|
|
1847
1845
|
}] });
|
|
1848
1846
|
|
|
@@ -1873,12 +1871,13 @@ class LinearGaugeModule {
|
|
|
1873
1871
|
}
|
|
1874
1872
|
LinearGaugeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1875
1873
|
LinearGaugeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeModule, imports: [LinearGaugeComponent, LinearGaugeAreaComponent, LinearScaleComponent, LinearLabelsComponent, LinearPointersComponent, LinearPointerComponent, LinearRangeComponent, LinearRangesComponent], exports: [LinearGaugeComponent, LinearGaugeAreaComponent, LinearScaleComponent, LinearLabelsComponent, LinearPointersComponent, LinearPointerComponent, LinearRangeComponent, LinearRangesComponent] });
|
|
1876
|
-
LinearGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeModule, imports: [KENDO_LINEARGAUGE] });
|
|
1874
|
+
LinearGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeModule, providers: [ThemeService], imports: [KENDO_LINEARGAUGE] });
|
|
1877
1875
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeModule, decorators: [{
|
|
1878
1876
|
type: NgModule,
|
|
1879
1877
|
args: [{
|
|
1880
1878
|
exports: [...KENDO_LINEARGAUGE],
|
|
1881
|
-
imports: [...KENDO_LINEARGAUGE]
|
|
1879
|
+
imports: [...KENDO_LINEARGAUGE],
|
|
1880
|
+
providers: [ThemeService]
|
|
1882
1881
|
}]
|
|
1883
1882
|
}] });
|
|
1884
1883
|
|
|
@@ -1909,12 +1908,13 @@ class RadialGaugeModule {
|
|
|
1909
1908
|
}
|
|
1910
1909
|
RadialGaugeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1911
1910
|
RadialGaugeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeModule, imports: [RadialGaugeComponent, RadialGaugeAreaComponent, RadialScaleComponent, RadialLabelsComponent, RadialPointersComponent, RadialPointerComponent, RadialRangeComponent, RadialRangesComponent], exports: [RadialGaugeComponent, RadialGaugeAreaComponent, RadialScaleComponent, RadialLabelsComponent, RadialPointersComponent, RadialPointerComponent, RadialRangeComponent, RadialRangesComponent] });
|
|
1912
|
-
RadialGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeModule, imports: [KENDO_RADIALGAUGE] });
|
|
1911
|
+
RadialGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeModule, providers: [ThemeService], imports: [KENDO_RADIALGAUGE] });
|
|
1913
1912
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeModule, decorators: [{
|
|
1914
1913
|
type: NgModule,
|
|
1915
1914
|
args: [{
|
|
1916
1915
|
exports: [...KENDO_RADIALGAUGE],
|
|
1917
|
-
imports: [...KENDO_RADIALGAUGE]
|
|
1916
|
+
imports: [...KENDO_RADIALGAUGE],
|
|
1917
|
+
providers: [ThemeService]
|
|
1918
1918
|
}]
|
|
1919
1919
|
}] });
|
|
1920
1920
|
|
|
@@ -1945,12 +1945,13 @@ class CircularGaugeModule {
|
|
|
1945
1945
|
}
|
|
1946
1946
|
CircularGaugeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1947
1947
|
CircularGaugeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeModule, imports: [CircularGaugeComponent, CircularGaugeCenterTemplateDirective, CircularGaugeAreaComponent, CircularGaugeScaleComponent, CircularGaugeLabelsComponent], exports: [CircularGaugeComponent, CircularGaugeCenterTemplateDirective, CircularGaugeAreaComponent, CircularGaugeScaleComponent, CircularGaugeLabelsComponent] });
|
|
1948
|
-
CircularGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeModule, imports: [CircularGaugeComponent, CircularGaugeAreaComponent, CircularGaugeScaleComponent, CircularGaugeLabelsComponent] });
|
|
1948
|
+
CircularGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeModule, providers: [ThemeService], imports: [CircularGaugeComponent, CircularGaugeAreaComponent, CircularGaugeScaleComponent, CircularGaugeLabelsComponent] });
|
|
1949
1949
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeModule, decorators: [{
|
|
1950
1950
|
type: NgModule,
|
|
1951
1951
|
args: [{
|
|
1952
1952
|
exports: [...KENDO_CIRCULARGAUGE],
|
|
1953
|
-
imports: [...KENDO_CIRCULARGAUGE]
|
|
1953
|
+
imports: [...KENDO_CIRCULARGAUGE],
|
|
1954
|
+
providers: [ThemeService]
|
|
1954
1955
|
}]
|
|
1955
1956
|
}] });
|
|
1956
1957
|
|
|
@@ -1982,12 +1983,13 @@ class GaugesModule {
|
|
|
1982
1983
|
}
|
|
1983
1984
|
GaugesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GaugesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1984
1985
|
GaugesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: GaugesModule, imports: [ArcGaugeComponent, ArcCenterTemplateDirective, ArcGaugeAreaComponent, ArcScaleComponent, ArcLabelsComponent, ColorsComponent, ColorComponent, CircularGaugeComponent, CircularGaugeCenterTemplateDirective, CircularGaugeAreaComponent, CircularGaugeScaleComponent, CircularGaugeLabelsComponent, LinearGaugeComponent, LinearGaugeAreaComponent, LinearScaleComponent, LinearLabelsComponent, LinearPointersComponent, LinearPointerComponent, LinearRangeComponent, LinearRangesComponent, RadialGaugeComponent, RadialGaugeAreaComponent, RadialScaleComponent, RadialLabelsComponent, RadialPointersComponent, RadialPointerComponent, RadialRangeComponent, RadialRangesComponent], exports: [ArcGaugeComponent, ArcCenterTemplateDirective, ArcGaugeAreaComponent, ArcScaleComponent, ArcLabelsComponent, ColorsComponent, ColorComponent, CircularGaugeComponent, CircularGaugeCenterTemplateDirective, CircularGaugeAreaComponent, CircularGaugeScaleComponent, CircularGaugeLabelsComponent, LinearGaugeComponent, LinearGaugeAreaComponent, LinearScaleComponent, LinearLabelsComponent, LinearPointersComponent, LinearPointerComponent, LinearRangeComponent, LinearRangesComponent, RadialGaugeComponent, RadialGaugeAreaComponent, RadialScaleComponent, RadialLabelsComponent, RadialPointersComponent, RadialPointerComponent, RadialRangeComponent, RadialRangesComponent] });
|
|
1985
|
-
GaugesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GaugesModule, imports: [ArcGaugeComponent, ArcGaugeAreaComponent, ArcScaleComponent, ArcLabelsComponent, ColorsComponent, ColorComponent, CircularGaugeComponent, CircularGaugeAreaComponent, CircularGaugeScaleComponent, CircularGaugeLabelsComponent, LinearGaugeComponent, LinearGaugeAreaComponent, LinearScaleComponent, LinearLabelsComponent, LinearPointersComponent, LinearPointerComponent, LinearRangeComponent, LinearRangesComponent, RadialGaugeComponent, RadialGaugeAreaComponent, RadialScaleComponent, RadialLabelsComponent, RadialPointersComponent, RadialPointerComponent, RadialRangeComponent, RadialRangesComponent] });
|
|
1986
|
+
GaugesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GaugesModule, providers: [ThemeService], imports: [ArcGaugeComponent, ArcGaugeAreaComponent, ArcScaleComponent, ArcLabelsComponent, ColorsComponent, ColorComponent, CircularGaugeComponent, CircularGaugeAreaComponent, CircularGaugeScaleComponent, CircularGaugeLabelsComponent, LinearGaugeComponent, LinearGaugeAreaComponent, LinearScaleComponent, LinearLabelsComponent, LinearPointersComponent, LinearPointerComponent, LinearRangeComponent, LinearRangesComponent, RadialGaugeComponent, RadialGaugeAreaComponent, RadialScaleComponent, RadialLabelsComponent, RadialPointersComponent, RadialPointerComponent, RadialRangeComponent, RadialRangesComponent] });
|
|
1986
1987
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GaugesModule, decorators: [{
|
|
1987
1988
|
type: NgModule,
|
|
1988
1989
|
args: [{
|
|
1989
1990
|
exports: [...KENDO_GAUGES],
|
|
1990
|
-
imports: [...KENDO_GAUGES]
|
|
1991
|
+
imports: [...KENDO_GAUGES],
|
|
1992
|
+
providers: [ThemeService]
|
|
1991
1993
|
}]
|
|
1992
1994
|
}] });
|
|
1993
1995
|
|
|
@@ -218,9 +218,12 @@ class ThemeService {
|
|
|
218
218
|
}
|
|
219
219
|
}
|
|
220
220
|
ThemeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
221
|
-
ThemeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeService });
|
|
221
|
+
ThemeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeService, providedIn: 'root' });
|
|
222
222
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeService, decorators: [{
|
|
223
|
-
type: Injectable
|
|
223
|
+
type: Injectable,
|
|
224
|
+
args: [{
|
|
225
|
+
providedIn: 'root'
|
|
226
|
+
}]
|
|
224
227
|
}] });
|
|
225
228
|
|
|
226
229
|
/**
|
|
@@ -281,8 +284,8 @@ const packageMetadata = {
|
|
|
281
284
|
name: '@progress/kendo-angular-gauges',
|
|
282
285
|
productName: 'Kendo UI for Angular',
|
|
283
286
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
284
|
-
publishDate:
|
|
285
|
-
version: '16.6.0-develop.
|
|
287
|
+
publishDate: 1722871515,
|
|
288
|
+
version: '16.6.0-develop.17',
|
|
286
289
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
287
290
|
};
|
|
288
291
|
|
|
@@ -744,7 +747,6 @@ class ArcGaugeComponent extends GaugeComponent {
|
|
|
744
747
|
ArcGaugeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ArcGaugeComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: ConfigurationService }, { token: ThemeService }, { token: i2.IntlService }, { token: i3.LocalizationService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
745
748
|
ArcGaugeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ArcGaugeComponent, isStandalone: true, selector: "kendo-arcgauge", inputs: { value: "value", color: "color", colors: "colors", opacity: "opacity", scale: "scale" }, host: { properties: { "class.k-arcgauge": "this.className" } }, providers: [
|
|
746
749
|
ConfigurationService,
|
|
747
|
-
ThemeService,
|
|
748
750
|
LocalizationService,
|
|
749
751
|
{
|
|
750
752
|
provide: L10N_PREFIX,
|
|
@@ -764,7 +766,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
764
766
|
exportAs: 'kendoArcGauge',
|
|
765
767
|
providers: [
|
|
766
768
|
ConfigurationService,
|
|
767
|
-
ThemeService,
|
|
768
769
|
LocalizationService,
|
|
769
770
|
{
|
|
770
771
|
provide: L10N_PREFIX,
|
|
@@ -1228,7 +1229,6 @@ class LinearGaugeComponent extends GaugeComponent {
|
|
|
1228
1229
|
LinearGaugeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeComponent, deps: [{ token: ConfigurationService }, { token: ThemeService }, { token: i2.IntlService }, { token: i3.LocalizationService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1229
1230
|
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: [
|
|
1230
1231
|
ConfigurationService,
|
|
1231
|
-
ThemeService,
|
|
1232
1232
|
LocalizationService,
|
|
1233
1233
|
{
|
|
1234
1234
|
provide: L10N_PREFIX,
|
|
@@ -1245,7 +1245,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1245
1245
|
exportAs: 'kendoLinearGauge',
|
|
1246
1246
|
providers: [
|
|
1247
1247
|
ConfigurationService,
|
|
1248
|
-
ThemeService,
|
|
1249
1248
|
LocalizationService,
|
|
1250
1249
|
{
|
|
1251
1250
|
provide: L10N_PREFIX,
|
|
@@ -1599,7 +1598,6 @@ class RadialGaugeComponent extends GaugeComponent {
|
|
|
1599
1598
|
RadialGaugeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeComponent, deps: [{ token: ConfigurationService }, { token: ThemeService }, { token: i2.IntlService }, { token: i3.LocalizationService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1600
1599
|
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: [
|
|
1601
1600
|
ConfigurationService,
|
|
1602
|
-
ThemeService,
|
|
1603
1601
|
LocalizationService,
|
|
1604
1602
|
{
|
|
1605
1603
|
provide: L10N_PREFIX,
|
|
@@ -1616,7 +1614,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1616
1614
|
exportAs: 'kendoRadialGauge',
|
|
1617
1615
|
providers: [
|
|
1618
1616
|
ConfigurationService,
|
|
1619
|
-
ThemeService,
|
|
1620
1617
|
LocalizationService,
|
|
1621
1618
|
{
|
|
1622
1619
|
provide: L10N_PREFIX,
|
|
@@ -1833,12 +1830,13 @@ class ArcGaugeModule {
|
|
|
1833
1830
|
}
|
|
1834
1831
|
ArcGaugeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ArcGaugeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1835
1832
|
ArcGaugeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ArcGaugeModule, imports: [ArcGaugeComponent, ArcCenterTemplateDirective, ArcGaugeAreaComponent, ArcScaleComponent, ArcLabelsComponent, ColorsComponent, ColorComponent], exports: [ArcGaugeComponent, ArcCenterTemplateDirective, ArcGaugeAreaComponent, ArcScaleComponent, ArcLabelsComponent, ColorsComponent, ColorComponent] });
|
|
1836
|
-
ArcGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ArcGaugeModule, imports: [ArcGaugeComponent, ArcGaugeAreaComponent, ArcScaleComponent, ArcLabelsComponent, ColorsComponent, ColorComponent] });
|
|
1833
|
+
ArcGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ArcGaugeModule, providers: [ThemeService], imports: [ArcGaugeComponent, ArcGaugeAreaComponent, ArcScaleComponent, ArcLabelsComponent, ColorsComponent, ColorComponent] });
|
|
1837
1834
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ArcGaugeModule, decorators: [{
|
|
1838
1835
|
type: NgModule,
|
|
1839
1836
|
args: [{
|
|
1840
1837
|
exports: [...KENDO_ARCGAUGE],
|
|
1841
|
-
imports: [...KENDO_ARCGAUGE]
|
|
1838
|
+
imports: [...KENDO_ARCGAUGE],
|
|
1839
|
+
providers: [ThemeService]
|
|
1842
1840
|
}]
|
|
1843
1841
|
}] });
|
|
1844
1842
|
|
|
@@ -1869,12 +1867,13 @@ class LinearGaugeModule {
|
|
|
1869
1867
|
}
|
|
1870
1868
|
LinearGaugeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1871
1869
|
LinearGaugeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeModule, imports: [LinearGaugeComponent, LinearGaugeAreaComponent, LinearScaleComponent, LinearLabelsComponent, LinearPointersComponent, LinearPointerComponent, LinearRangeComponent, LinearRangesComponent], exports: [LinearGaugeComponent, LinearGaugeAreaComponent, LinearScaleComponent, LinearLabelsComponent, LinearPointersComponent, LinearPointerComponent, LinearRangeComponent, LinearRangesComponent] });
|
|
1872
|
-
LinearGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeModule, imports: [KENDO_LINEARGAUGE] });
|
|
1870
|
+
LinearGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeModule, providers: [ThemeService], imports: [KENDO_LINEARGAUGE] });
|
|
1873
1871
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinearGaugeModule, decorators: [{
|
|
1874
1872
|
type: NgModule,
|
|
1875
1873
|
args: [{
|
|
1876
1874
|
exports: [...KENDO_LINEARGAUGE],
|
|
1877
|
-
imports: [...KENDO_LINEARGAUGE]
|
|
1875
|
+
imports: [...KENDO_LINEARGAUGE],
|
|
1876
|
+
providers: [ThemeService]
|
|
1878
1877
|
}]
|
|
1879
1878
|
}] });
|
|
1880
1879
|
|
|
@@ -1905,12 +1904,13 @@ class RadialGaugeModule {
|
|
|
1905
1904
|
}
|
|
1906
1905
|
RadialGaugeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1907
1906
|
RadialGaugeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeModule, imports: [RadialGaugeComponent, RadialGaugeAreaComponent, RadialScaleComponent, RadialLabelsComponent, RadialPointersComponent, RadialPointerComponent, RadialRangeComponent, RadialRangesComponent], exports: [RadialGaugeComponent, RadialGaugeAreaComponent, RadialScaleComponent, RadialLabelsComponent, RadialPointersComponent, RadialPointerComponent, RadialRangeComponent, RadialRangesComponent] });
|
|
1908
|
-
RadialGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeModule, imports: [KENDO_RADIALGAUGE] });
|
|
1907
|
+
RadialGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeModule, providers: [ThemeService], imports: [KENDO_RADIALGAUGE] });
|
|
1909
1908
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadialGaugeModule, decorators: [{
|
|
1910
1909
|
type: NgModule,
|
|
1911
1910
|
args: [{
|
|
1912
1911
|
exports: [...KENDO_RADIALGAUGE],
|
|
1913
|
-
imports: [...KENDO_RADIALGAUGE]
|
|
1912
|
+
imports: [...KENDO_RADIALGAUGE],
|
|
1913
|
+
providers: [ThemeService]
|
|
1914
1914
|
}]
|
|
1915
1915
|
}] });
|
|
1916
1916
|
|
|
@@ -1941,12 +1941,13 @@ class CircularGaugeModule {
|
|
|
1941
1941
|
}
|
|
1942
1942
|
CircularGaugeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1943
1943
|
CircularGaugeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeModule, imports: [CircularGaugeComponent, CircularGaugeCenterTemplateDirective, CircularGaugeAreaComponent, CircularGaugeScaleComponent, CircularGaugeLabelsComponent], exports: [CircularGaugeComponent, CircularGaugeCenterTemplateDirective, CircularGaugeAreaComponent, CircularGaugeScaleComponent, CircularGaugeLabelsComponent] });
|
|
1944
|
-
CircularGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeModule, imports: [CircularGaugeComponent, CircularGaugeAreaComponent, CircularGaugeScaleComponent, CircularGaugeLabelsComponent] });
|
|
1944
|
+
CircularGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeModule, providers: [ThemeService], imports: [CircularGaugeComponent, CircularGaugeAreaComponent, CircularGaugeScaleComponent, CircularGaugeLabelsComponent] });
|
|
1945
1945
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CircularGaugeModule, decorators: [{
|
|
1946
1946
|
type: NgModule,
|
|
1947
1947
|
args: [{
|
|
1948
1948
|
exports: [...KENDO_CIRCULARGAUGE],
|
|
1949
|
-
imports: [...KENDO_CIRCULARGAUGE]
|
|
1949
|
+
imports: [...KENDO_CIRCULARGAUGE],
|
|
1950
|
+
providers: [ThemeService]
|
|
1950
1951
|
}]
|
|
1951
1952
|
}] });
|
|
1952
1953
|
|
|
@@ -1978,12 +1979,13 @@ class GaugesModule {
|
|
|
1978
1979
|
}
|
|
1979
1980
|
GaugesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GaugesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1980
1981
|
GaugesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: GaugesModule, imports: [ArcGaugeComponent, ArcCenterTemplateDirective, ArcGaugeAreaComponent, ArcScaleComponent, ArcLabelsComponent, ColorsComponent, ColorComponent, CircularGaugeComponent, CircularGaugeCenterTemplateDirective, CircularGaugeAreaComponent, CircularGaugeScaleComponent, CircularGaugeLabelsComponent, LinearGaugeComponent, LinearGaugeAreaComponent, LinearScaleComponent, LinearLabelsComponent, LinearPointersComponent, LinearPointerComponent, LinearRangeComponent, LinearRangesComponent, RadialGaugeComponent, RadialGaugeAreaComponent, RadialScaleComponent, RadialLabelsComponent, RadialPointersComponent, RadialPointerComponent, RadialRangeComponent, RadialRangesComponent], exports: [ArcGaugeComponent, ArcCenterTemplateDirective, ArcGaugeAreaComponent, ArcScaleComponent, ArcLabelsComponent, ColorsComponent, ColorComponent, CircularGaugeComponent, CircularGaugeCenterTemplateDirective, CircularGaugeAreaComponent, CircularGaugeScaleComponent, CircularGaugeLabelsComponent, LinearGaugeComponent, LinearGaugeAreaComponent, LinearScaleComponent, LinearLabelsComponent, LinearPointersComponent, LinearPointerComponent, LinearRangeComponent, LinearRangesComponent, RadialGaugeComponent, RadialGaugeAreaComponent, RadialScaleComponent, RadialLabelsComponent, RadialPointersComponent, RadialPointerComponent, RadialRangeComponent, RadialRangesComponent] });
|
|
1981
|
-
GaugesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GaugesModule, imports: [ArcGaugeComponent, ArcGaugeAreaComponent, ArcScaleComponent, ArcLabelsComponent, ColorsComponent, ColorComponent, CircularGaugeComponent, CircularGaugeAreaComponent, CircularGaugeScaleComponent, CircularGaugeLabelsComponent, LinearGaugeComponent, LinearGaugeAreaComponent, LinearScaleComponent, LinearLabelsComponent, LinearPointersComponent, LinearPointerComponent, LinearRangeComponent, LinearRangesComponent, RadialGaugeComponent, RadialGaugeAreaComponent, RadialScaleComponent, RadialLabelsComponent, RadialPointersComponent, RadialPointerComponent, RadialRangeComponent, RadialRangesComponent] });
|
|
1982
|
+
GaugesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GaugesModule, providers: [ThemeService], imports: [ArcGaugeComponent, ArcGaugeAreaComponent, ArcScaleComponent, ArcLabelsComponent, ColorsComponent, ColorComponent, CircularGaugeComponent, CircularGaugeAreaComponent, CircularGaugeScaleComponent, CircularGaugeLabelsComponent, LinearGaugeComponent, LinearGaugeAreaComponent, LinearScaleComponent, LinearLabelsComponent, LinearPointersComponent, LinearPointerComponent, LinearRangeComponent, LinearRangesComponent, RadialGaugeComponent, RadialGaugeAreaComponent, RadialScaleComponent, RadialLabelsComponent, RadialPointersComponent, RadialPointerComponent, RadialRangeComponent, RadialRangesComponent] });
|
|
1982
1983
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GaugesModule, decorators: [{
|
|
1983
1984
|
type: NgModule,
|
|
1984
1985
|
args: [{
|
|
1985
1986
|
exports: [...KENDO_GAUGES],
|
|
1986
|
-
imports: [...KENDO_GAUGES]
|
|
1987
|
+
imports: [...KENDO_GAUGES],
|
|
1988
|
+
providers: [ThemeService]
|
|
1987
1989
|
}]
|
|
1988
1990
|
}] });
|
|
1989
1991
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-gauges",
|
|
3
|
-
"version": "16.6.0-develop.
|
|
3
|
+
"version": "16.6.0-develop.17",
|
|
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.6.0-develop.
|
|
30
|
-
"@progress/kendo-angular-intl": "16.6.0-develop.
|
|
31
|
-
"@progress/kendo-angular-l10n": "16.6.0-develop.
|
|
29
|
+
"@progress/kendo-angular-common": "16.6.0-develop.17",
|
|
30
|
+
"@progress/kendo-angular-intl": "16.6.0-develop.17",
|
|
31
|
+
"@progress/kendo-angular-l10n": "16.6.0-develop.17",
|
|
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.6.0-develop.
|
|
36
|
+
"@progress/kendo-angular-schematics": "16.6.0-develop.17",
|
|
37
37
|
"@progress/kendo-charts": "2.4.1"
|
|
38
38
|
},
|
|
39
39
|
"schematics": "./schematics/collection.json",
|