@progress/kendo-angular-gauges 5.0.0-next.202204010901 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/base-components/gauge-area.component.d.ts +15 -0
- package/base-components/labels.component.d.ts +34 -0
- package/base-components/range.component.d.ts +12 -0
- package/bundles/kendo-angular-gauges.umd.js +1 -1
- package/esm2015/main.js +3 -0
- package/esm2015/package-metadata.js +1 -1
- package/fesm2015/kendo-angular-gauges.js +1 -1
- package/main.d.ts +3 -0
- package/package.json +9 -11
- package/types/gauge-area.interface.d.ts +1 -1
- package/types/labels.interface.d.ts +2 -0
|
@@ -9,10 +9,25 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
* @hidden
|
|
10
10
|
*/
|
|
11
11
|
export declare class GaugeAreaComponent extends SettingsComponent implements GaugeArea {
|
|
12
|
+
/**
|
|
13
|
+
* The background of the Gauge area. Accepts valid CSS color strings, including hex and rgb.
|
|
14
|
+
*/
|
|
12
15
|
background?: string;
|
|
16
|
+
/**
|
|
17
|
+
* The border of the Gauge area.
|
|
18
|
+
*/
|
|
13
19
|
border?: Border;
|
|
20
|
+
/**
|
|
21
|
+
* The height of the Gauge area.
|
|
22
|
+
*/
|
|
14
23
|
height?: number;
|
|
24
|
+
/**
|
|
25
|
+
* The margin of the Gauge area.
|
|
26
|
+
*/
|
|
15
27
|
margin?: number | Margin;
|
|
28
|
+
/**
|
|
29
|
+
* The width of the Gauge area.
|
|
30
|
+
*/
|
|
16
31
|
width?: number;
|
|
17
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<GaugeAreaComponent, never>;
|
|
18
33
|
static ɵdir: i0.ɵɵDirectiveDeclaration<GaugeAreaComponent, never, never, { "background": "background"; "border": "border"; "height": "height"; "margin": "margin"; "width": "width"; }, {}, never>;
|
|
@@ -9,14 +9,48 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
* @hidden
|
|
10
10
|
*/
|
|
11
11
|
export declare class LabelsComponent extends SettingsComponent implements Labels {
|
|
12
|
+
/**
|
|
13
|
+
* The background of the labels.
|
|
14
|
+
* Accepts valid CSS color strings, including hex and rgb.
|
|
15
|
+
*/
|
|
12
16
|
background?: string;
|
|
17
|
+
/**
|
|
18
|
+
* The border of the labels.
|
|
19
|
+
*/
|
|
13
20
|
border?: Border;
|
|
21
|
+
/**
|
|
22
|
+
* The color of the labels.
|
|
23
|
+
* Accepts valid CSS color strings, including hex and rgb.
|
|
24
|
+
*/
|
|
14
25
|
color?: string;
|
|
26
|
+
/**
|
|
27
|
+
* The font of the labels.
|
|
28
|
+
*/
|
|
15
29
|
font?: string;
|
|
30
|
+
/**
|
|
31
|
+
* The format that is used to display the labels.
|
|
32
|
+
* Uses the IntlService [`format`]({% slug api_intl_intlservice %}#toc-format) method.
|
|
33
|
+
*/
|
|
16
34
|
format?: string;
|
|
35
|
+
/**
|
|
36
|
+
* The margin of the labels.
|
|
37
|
+
*/
|
|
17
38
|
margin?: number | Margin;
|
|
39
|
+
/**
|
|
40
|
+
* The padding of the labels.
|
|
41
|
+
*/
|
|
18
42
|
padding?: number | Padding;
|
|
43
|
+
/**
|
|
44
|
+
* The function which returns the label content.
|
|
45
|
+
*
|
|
46
|
+
* The available fields in the function argument are:
|
|
47
|
+
*
|
|
48
|
+
* - `value`—The value of the label.
|
|
49
|
+
*/
|
|
19
50
|
content?: (e: any) => string;
|
|
51
|
+
/**
|
|
52
|
+
* The visibility of the labels.
|
|
53
|
+
*/
|
|
20
54
|
visible?: boolean;
|
|
21
55
|
static ɵfac: i0.ɵɵFactoryDeclaration<LabelsComponent, never>;
|
|
22
56
|
static ɵdir: i0.ɵɵDirectiveDeclaration<LabelsComponent, never, never, { "background": "background"; "border": "border"; "color": "color"; "font": "font"; "format": "format"; "margin": "margin"; "padding": "padding"; "content": "content"; "visible": "visible"; }, {}, never>;
|
|
@@ -9,9 +9,21 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
* @hidden
|
|
10
10
|
*/
|
|
11
11
|
export declare class RangeComponent extends CollectionItemComponent implements Range {
|
|
12
|
+
/**
|
|
13
|
+
* The start position of the range.
|
|
14
|
+
*/
|
|
12
15
|
from?: number;
|
|
16
|
+
/**
|
|
17
|
+
* The end position of the range.
|
|
18
|
+
*/
|
|
13
19
|
to?: number;
|
|
20
|
+
/**
|
|
21
|
+
* The range opacity.
|
|
22
|
+
*/
|
|
14
23
|
opacity?: number;
|
|
24
|
+
/**
|
|
25
|
+
* The color of the range. Accepts valid CSS color strings, including hex and rgb.
|
|
26
|
+
*/
|
|
15
27
|
color?: string;
|
|
16
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<RangeComponent, never>;
|
|
17
29
|
static ɵdir: i0.ɵɵDirectiveDeclaration<RangeComponent, never, never, { "from": "from"; "to": "to"; "opacity": "opacity"; "color": "color"; }, {}, never>;
|
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@angular/core"),require("@angular/common"),require("@progress/kendo-angular-common"),require("@progress/kendo-angular-l10n"),require("@progress/kendo-drawing"),require("@progress/kendo-licensing"),require("@progress/kendo-angular-intl"),require("@progress/kendo-charts")):"function"==typeof define&&define.amd?define("KendoAngularGauges",["exports","@angular/core","@angular/common","@progress/kendo-angular-common","@progress/kendo-angular-l10n","@progress/kendo-drawing","@progress/kendo-licensing","@progress/kendo-angular-intl","@progress/kendo-charts"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).KendoAngularGauges={},e.ng.core,e.ng.common,e.KendoAngularCommon,e.KendoAngularL10N,e.KendoDrawing,e.KendoLicensing,e.KendoAngularIntl,e.KendoCharts)}(this,function(e,t,x,j,n,E,w,r,G){"use strict";function _(n){if(n&&n.__esModule)return n;var r=Object.create(null);return n&&Object.keys(n).forEach(function(e){var t;"default"!==e&&(t=Object.getOwnPropertyDescriptor(n,e),Object.defineProperty(r,e,t.get?t:{enumerable:!0,get:function(){return n[e]}}))}),r.default=n,Object.freeze(r)}var o=_(t),a=_(x),i=_(j),q=_(n),K=_(r);function U(e){return"object"==typeof e}function Z(e,t){if(!e||!t)return 1;if(e=[].concat(e),t=[].concat(t),e.length!==t.length)return 1;for(var n=0;n<e.length;n++)if(function e(t,n){if(Object.keys(t).length!==Object.keys(n).length)return!0;for(var r in t)if("value"!==r&&t.hasOwnProperty(r)){var o=t[r],r=n[r];if(U(o)&&U(r)?e(o,r):o!==r)return!0}}(e[n],t[n]))return 1}X.prototype.copyChanges=function(e,t){for(var n in t){var r;t.hasOwnProperty(n)&&(r=t[n].currentValue,this.set((e?e+".":"")+n,r))}},X.prototype.read=function(){return this.hasChanges=!1,this.valueChange=!1,this.options},X.prototype.readValues=function(){return this.valueChange=!1,[].concat(this.options.pointer).map(function(e){return e.value})},X.prototype.readValue=function(){return this.valueChange=!1,this.options.value},X.prototype.set=function(e,t){var e=this.optionContext(e),n=e.key,e=e.options;this.hasChanges||"value"!==n&&("pointer"!==n||Z(this.options.pointer,t))?(this.hasChanges=!0,this.valueChange=!1):this.valueChange=!0,e[n]=t},X.prototype.optionContext=function(e){for(var t=e.split("."),n=this.options,r=t.shift();0<t.length;)n=n[r]=n[r]||{},r=t.shift();return{key:r,options:n}};var s=X;function X(){this.options={}}s.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:s,deps:[],target:o.ɵɵFactoryTarget.Injectable}),s.ɵprov=o.ɵɵngDeclareInjectable({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:s}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:s,decorators:[{type:t.Injectable}]});var p=function(){},c=(p.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:p,deps:[],target:o.ɵɵFactoryTarget.Injectable}),p.ɵprov=o.ɵɵngDeclareInjectable({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:p}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:p,decorators:[{type:t.Injectable}]}),$.prototype.read=function(){return this.options||this.load(),this.options},$.prototype.load=function(){if("undefined"==typeof document)this.options={};else{var e=document.createElement("div");e.style.display="none",e.innerHTML='\n <div class="k-var--gauge-pointer"></div>\n <div class="k-var--gauge-track"></div>\n <div class="k-var--normal-text-color"></div>\n',document.body.appendChild(e);try{var t=this.getColor(e,"gauge-pointer"),n=this.getColor(e,"gauge-track"),r=this.getColor(e,"normal-text-color");this.options={pointer:{color:t},scale:{labels:{color:r},rangePlaceholderColor:n,minorTicks:{color:r},majorTicks:{color:r},line:{color:r}}}}finally{document.body.removeChild(e)}}},$.prototype.getColor=function(e,t){return window.getComputedStyle(e.querySelector(".k-var--"+t)).backgroundColor},$);function $(){}c.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:c,deps:[],target:o.ɵɵFactoryTarget.Injectable}),c.ɵprov=o.ɵɵngDeclareInjectable({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:c}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:c,decorators:[{type:t.Injectable}]});var r=function(){},B=(r.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:r,deps:[],target:o.ɵɵFactoryTarget.NgModule}),r.ɵmod=o.ɵɵngDeclareNgModule({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:r,exports:[j.ResizeSensorModule]}),r.ɵinj=o.ɵɵngDeclareInjector({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:r,providers:[c],imports:[j.ResizeSensorModule]}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:r,decorators:[{type:t.NgModule,args:[{exports:[j.ResizeSensorModule],providers:[c]}]}]}),function(e,t){return(B=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])})(e,t)});function l(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function n(){this.constructor=e}B(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}Object.create;Object.create;H.prototype.ngOnDestroy=function(){this.subscription.unsubscribe(),this.configurationService.set(this.key,[])},H.prototype.ngAfterContentInit=function(){var e=this;this.subscription=this.children.changes.subscribe(function(){return e.collectionChangesService.hasChanges=!0})},H.prototype.ngAfterContentChecked=function(){this.collectionChangesService.hasChanges&&(this.configurationService.set(this.key,this.readItems()),this.collectionChangesService.hasChanges=!1)},H.prototype.readItems=function(){return this.children.map(function(e){return Object.assign({},e.configurationService.read())})};var g=H;function H(e,t,n){this.key=e,this.configurationService=t,this.collectionChangesService=n}g.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:g,deps:"invalid",target:o.ɵɵFactoryTarget.Directive}),g.ɵdir=o.ɵɵngDeclareDirective({minVersion:"12.0.0",version:"12.2.16",type:g,ngImport:o}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:g,decorators:[{type:t.Directive}],ctorParameters:function(){return[{type:void 0},{type:s},{type:p}]}});Q.prototype.ngOnChanges=function(e){this.configurationService.copyChanges("",e),this.collectionChangesService.hasChanges=!0};var u=Q;function Q(e,t){this.configurationService=e,this.collectionChangesService=t}u.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:u,deps:[{token:s},{token:p}],target:o.ɵɵFactoryTarget.Directive}),u.ɵdir=o.ɵɵngDeclareDirective({minVersion:"12.0.0",version:"12.2.16",type:u,usesOnChanges:!0,ngImport:o}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:u,decorators:[{type:t.Directive}],ctorParameters:function(){return[{type:s},{type:p}]}});var W={name:"@progress/kendo-angular-gauges",productName:"Kendo UI for Angular",productCodes:["KENDOUIANGULAR","KENDOUICOMPLETE"],publishDate:1648803602,version:"",licensingDocsUrl:"https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning"},m=(d.prototype.ngOnInit=function(){this.setDirection(),this.subscriptions=this.intlService.changes.subscribe(this.intlChange.bind(this)),this.subscriptions.add(this.localizationService.changes.subscribe(this.rtlChange.bind(this)))},d.prototype.ngAfterViewChecked=function(){var e,t=this;"undefined"!=typeof document&&(this.instance?this.configurationService.hasChanges?e=this.updateOptions:this.configurationService.valueChange&&(e=this.setValues):e=this.init,e&&(clearTimeout(this.redrawTimeout),this.instance||function(e){for(var t=e;t&&t!==document.body;)t=t.parentNode;return Boolean(t)}(this.element.nativeElement)?this.updateCall(e):this.defer(function(){t.updateCall(e)})))},d.prototype.updateCall=function(e){this.updateDirection(),e.call(this),this.updateSize()},d.prototype.updateOptions=function(){this.instance.setOptions(this.configurationService.read())},d.prototype.setValues=function(){this.instance.allValues(this.configurationService.readValues())},d.prototype.ngOnChanges=function(e){this.configurationService.copyChanges("",e)},d.prototype.ngOnDestroy=function(){this.instance&&this.instance.destroy(),this.subscriptions.unsubscribe(),clearTimeout(this.redrawTimeout)},d.prototype.exportImage=function(t){return void 0===t&&(t={}),this.exportVisual().then(function(e){return E.exportImage(e,t)})},d.prototype.exportSVG=function(t){return void 0===t&&(t={}),this.exportVisual().then(function(e){return E.exportSVG(e,t)})},d.prototype.exportVisual=function(){return Promise.resolve(this.instance.exportVisual())},d.prototype.onResize=function(e){this.autoResize&&this.resize()},d.prototype.resize=function(){this.instance&&this.instance.resize()},d.prototype.init=function(){this.surfaceElement&&this.createInstance(this.surfaceElement.nativeElement,this.configurationService.read(),this.themeService.read(),{intlService:this.intlService,rtl:this.rtl})},Object.defineProperty(d.prototype,"autoResize",{get:function(){return 0<this.resizeRateLimit},enumerable:!1,configurable:!0}),d.prototype.updateSize=function(){this.resizeSensor.acceptSize()},d.prototype.intlChange=function(){this.instance&&this.deferredRedraw()},d.prototype.rtlChange=function(){this.instance&&this.rtl!==this.isRTL&&this.deferredRedraw()},d.prototype.deferredRedraw=function(){var e=this;this.defer(function(){e.updateDirection(),e.instance.noTransitionsRedraw()})},d.prototype.defer=function(e){var t=this;this.ngZone.runOutsideAngular(function(){clearTimeout(t.redrawTimeout),t.redrawTimeout=setTimeout(e,0)})},d.prototype.updateDirection=function(){var e=this.isRTL;this.rtl!==e&&(this.setDirection(),this.instance&&this.instance.setDirection(e))},d.prototype.setDirection=function(){this.rtl=this.isRTL,this.element&&this.renderer.setAttribute(this.element.nativeElement,"dir",this.rtl?"rtl":"ltr")},Object.defineProperty(d.prototype,"isRTL",{get:function(){return Boolean(this.localizationService.rtl)},enumerable:!1,configurable:!0}),d);function d(e,t,n,r,o,a,i){this.configurationService=e,this.themeService=t,this.intlService=n,this.localizationService=r,this.element=o,this.renderer=a,this.ngZone=i,this.resizeRateLimit=10,this.className=!0,this.theme=null,this.rtl=!1,w.validatePackage(W)}m.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:m,deps:[{token:s},{token:c},{token:K.IntlService},{token:q.LocalizationService},{token:o.ElementRef},{token:o.Renderer2},{token:o.NgZone}],target:o.ɵɵFactoryTarget.Directive}),m.ɵdir=o.ɵɵngDeclareDirective({minVersion:"12.0.0",version:"12.2.16",type:m,inputs:{gaugeArea:"gaugeArea",renderAs:"renderAs",resizeRateLimit:"resizeRateLimit",scale:"scale",transitions:"transitions"},host:{properties:{"class.k-gauge":"this.className"}},viewQueries:[{propertyName:"surfaceElement",first:!0,predicate:["surface"],descendants:!0,static:!0},{propertyName:"resizeSensor",first:!0,predicate:j.ResizeSensorComponent,descendants:!0,static:!0}],usesOnChanges:!0,ngImport:o}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:m,decorators:[{type:t.Directive}],ctorParameters:function(){return[{type:s},{type:c},{type:K.IntlService},{type:q.LocalizationService},{type:o.ElementRef},{type:o.Renderer2},{type:o.NgZone}]},propDecorators:{gaugeArea:[{type:t.Input}],renderAs:[{type:t.Input}],resizeRateLimit:[{type:t.Input}],scale:[{type:t.Input}],transitions:[{type:t.Input}],surfaceElement:[{type:t.ViewChild,args:["surface",{static:!0}]}],resizeSensor:[{type:t.ViewChild,args:[j.ResizeSensorComponent,{static:!0}]}],className:[{type:t.HostBinding,args:["class.k-gauge"]}]}});J.prototype.ngOnChanges=function(e){this.configurationService.copyChanges(this.key,e)},J.prototype.ngOnDestroy=function(){this.configurationService.set(this.key,null)};var y=J;function J(e,t){this.key=e,this.configurationService=t}y.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:y,deps:"invalid",target:o.ɵɵFactoryTarget.Directive}),y.ɵdir=o.ɵɵngDeclareDirective({minVersion:"12.0.0",version:"12.2.16",type:y,usesOnChanges:!0,ngImport:o}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:y,decorators:[{type:t.Directive}],ctorParameters:function(){return[{type:void 0},{type:s}]}});l(te,Y=y);var Y,ee=te;function te(){return null!==Y&&Y.apply(this,arguments)||this}ee.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:ee,deps:null,target:o.ɵɵFactoryTarget.Directive}),ee.ɵdir=o.ɵɵngDeclareDirective({minVersion:"12.0.0",version:"12.2.16",type:ee,inputs:{background:"background",border:"border",height:"height",margin:"margin",width:"width"},usesInheritance:!0,ngImport:o}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:ee,decorators:[{type:t.Directive}],propDecorators:{background:[{type:t.Input}],border:[{type:t.Input}],height:[{type:t.Input}],margin:[{type:t.Input}],width:[{type:t.Input}]}});l(oe,ne=y);var ne,re=oe;function oe(){return null!==ne&&ne.apply(this,arguments)||this}re.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:re,deps:null,target:o.ɵɵFactoryTarget.Directive}),re.ɵdir=o.ɵɵngDeclareDirective({minVersion:"12.0.0",version:"12.2.16",type:re,inputs:{background:"background",border:"border",color:"color",font:"font",format:"format",margin:"margin",padding:"padding",content:"content",visible:"visible"},usesInheritance:!0,ngImport:o}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:re,decorators:[{type:t.Directive}],propDecorators:{background:[{type:t.Input}],border:[{type:t.Input}],color:[{type:t.Input}],font:[{type:t.Input}],format:[{type:t.Input}],margin:[{type:t.Input}],padding:[{type:t.Input}],content:[{type:t.Input}],visible:[{type:t.Input}]}});l(se,ae=u);var ae,ie=se;function se(){return null!==ae&&ae.apply(this,arguments)||this}ie.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:ie,deps:null,target:o.ɵɵFactoryTarget.Directive}),ie.ɵdir=o.ɵɵngDeclareDirective({minVersion:"12.0.0",version:"12.2.16",type:ie,inputs:{from:"from",to:"to",opacity:"opacity",color:"color"},usesInheritance:!0,ngImport:o}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:ie,decorators:[{type:t.Directive}],propDecorators:{from:[{type:t.Input}],to:[{type:t.Input}],opacity:[{type:t.Input}],color:[{type:t.Input}]}});l(le,pe=y);var pe,ce=le;function le(){return null!==pe&&pe.apply(this,arguments)||this}ce.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:ce,deps:null,target:o.ɵɵFactoryTarget.Directive}),ce.ɵdir=o.ɵɵngDeclareDirective({minVersion:"12.0.0",version:"12.2.16",type:ce,inputs:{labels:"labels",majorTicks:"majorTicks",minorTicks:"minorTicks",min:"min",max:"max",minorUnit:"minorUnit",majorUnit:"majorUnit",reverse:"reverse",rangeSize:"rangeSize",rangePlaceholderColor:"rangePlaceholderColor"},usesInheritance:!0,ngImport:o}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:ce,decorators:[{type:t.Directive}],propDecorators:{labels:[{type:t.Input}],majorTicks:[{type:t.Input}],minorTicks:[{type:t.Input}],min:[{type:t.Input}],max:[{type:t.Input}],minorUnit:[{type:t.Input}],majorUnit:[{type:t.Input}],reverse:[{type:t.Input}],rangeSize:[{type:t.Input}],rangePlaceholderColor:[{type:t.Input}]}});var ge,v=function(e){this.templateRef=e},h=(v.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:v,deps:[{token:o.TemplateRef,optional:!0}],target:o.ɵɵFactoryTarget.Directive}),v.ɵdir=o.ɵɵngDeclareDirective({minVersion:"12.0.0",version:"12.2.16",type:v,selector:"[kendoArcGaugeCenterTemplate]",ngImport:o}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:v,decorators:[{type:t.Directive,args:[{selector:"[kendoArcGaugeCenterTemplate]"}]}],ctorParameters:function(){return[{type:o.TemplateRef,decorators:[{type:t.Optional}]}]}}),l(f,ge=m),f.prototype.ngOnInit=function(){ge.prototype.ngOnInit.call(this),this.element&&this.renderer.setStyle(this.element.nativeElement,"position","relative")},f.prototype.ngAfterViewChecked=function(){ge.prototype.ngAfterViewChecked.call(this),this.labelElement&&!this.centerTemplate?this.changeDetector.detectChanges():!this.labelElement&&this.centerTemplate&&this.updateCenterTemplate()},f.prototype.exportVisual=function(){return E.drawDOM(this.element.nativeElement)},f.prototype.resize=function(){ge.prototype.resize.call(this),this.updateCenterTemplate()},f.prototype.createInstance=function(e,t,n,r){this.instance=new G.ArcGauge(e,t,n,r),this.updateElements()},f.prototype.updateOptions=function(){ge.prototype.updateOptions.call(this),this.updateElements()},f.prototype.setValues=function(){var e=this.configurationService.readValue();this.instance.value(e),this.updateCenterTemplate()},f.prototype.updateElements=function(){this.resizeSensor.acceptSize(),this.updateCenterTemplate()},f.prototype.updateCenterTemplate=function(){this.instance&&this.centerTemplate&&(this.centerTemplateContext.value=this.instance.value(),this.centerTemplateContext.color=this.instance.currentColor(),this.changeDetector.detectChanges(),this.positionLabel())},f.prototype.positionLabel=function(){var e,t,n;this.labelElement&&(n=(e=this.labelElement.nativeElement).offsetWidth,t=e.offsetHeight,n=this.instance.centerLabelPosition(n,t),e.style.top=n.top+"px",e.style.left=n.left+"px")},f.prototype.updateSize=function(){},f);function f(e,t,n,r,o,a,i,s){t=ge.call(this,t,n,r,o,a,i,s)||this;return t.changeDetector=e,t.className=!0,t.centerTemplateContext={},t}h.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:h,deps:[{token:o.ChangeDetectorRef},{token:s},{token:c},{token:K.IntlService},{token:q.LocalizationService},{token:o.ElementRef},{token:o.Renderer2},{token:o.NgZone}],target:o.ɵɵFactoryTarget.Component}),h.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:h,selector:"kendo-arcgauge",inputs:{value:"value",color:"color",colors:"colors",opacity:"opacity",scale:"scale"},host:{properties:{"class.k-arcgauge":"this.className"}},providers:[s,n.LocalizationService,{provide:n.L10N_PREFIX,useValue:"kendo.arcgauge"}],queries:[{propertyName:"centerTemplate",first:!0,predicate:v,descendants:!0}],viewQueries:[{propertyName:"labelElement",first:!0,predicate:["label"],descendants:!0}],exportAs:["kendoArcGauge"],usesInheritance:!0,ngImport:o,template:'\n <div #surface class=\'k-chart-surface\'></div>\n <div class="k-arcgauge-label" *ngIf="centerTemplate" #label>\n <ng-template [ngTemplateOutlet]="centerTemplate.templateRef" [ngTemplateOutletContext]="centerTemplateContext"></ng-template>\n </div>\n <kendo-resize-sensor (resize)="onResize($event)" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>\n ',isInline:!0,components:[{type:i.ResizeSensorComponent,selector:"kendo-resize-sensor",inputs:["rateLimit"],outputs:["resize"]}],directives:[{type:a.NgIf,selector:"[ngIf]",inputs:["ngIf","ngIfThen","ngIfElse"]},{type:a.NgTemplateOutlet,selector:"[ngTemplateOutlet]",inputs:["ngTemplateOutletContext","ngTemplateOutlet"]}],changeDetection:o.ChangeDetectionStrategy.OnPush}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:h,decorators:[{type:t.Component,args:[{changeDetection:t.ChangeDetectionStrategy.OnPush,exportAs:"kendoArcGauge",providers:[s,n.LocalizationService,{provide:n.L10N_PREFIX,useValue:"kendo.arcgauge"}],selector:"kendo-arcgauge",template:'\n <div #surface class=\'k-chart-surface\'></div>\n <div class="k-arcgauge-label" *ngIf="centerTemplate" #label>\n <ng-template [ngTemplateOutlet]="centerTemplate.templateRef" [ngTemplateOutletContext]="centerTemplateContext"></ng-template>\n </div>\n <kendo-resize-sensor (resize)="onResize($event)" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>\n '}]}],ctorParameters:function(){return[{type:o.ChangeDetectorRef},{type:s},{type:c},{type:K.IntlService},{type:q.LocalizationService},{type:o.ElementRef},{type:o.Renderer2},{type:o.NgZone}]},propDecorators:{value:[{type:t.Input}],color:[{type:t.Input}],colors:[{type:t.Input}],opacity:[{type:t.Input}],scale:[{type:t.Input}],centerTemplate:[{type:t.ContentChild,args:[v,{static:!1}]}],labelElement:[{type:t.ViewChild,args:["label",{static:!1}]}],className:[{type:t.HostBinding,args:["class.k-arcgauge"]}]}});l(me,ue=ee);var ue,I=me;function me(e){var t=ue.call(this,"gaugeArea",e)||this;return t.configurationService=e,t}I.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:I,deps:[{token:s}],target:o.ɵɵFactoryTarget.Component}),I.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:I,selector:"kendo-arcgauge-area",usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:I,decorators:[{type:t.Component,args:[{selector:"kendo-arcgauge-area",template:""}]}],ctorParameters:function(){return[{type:s}]}});l(ye,de=ce);var de,C=ye;function ye(e){var t=de.call(this,"scale",e)||this;return t.configurationService=e,t}C.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:C,deps:[{token:s}],target:o.ɵɵFactoryTarget.Component}),C.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:C,selector:"kendo-arcgauge-scale",inputs:{labels:"labels",rangeDistance:"rangeDistance",rangeLineCap:"rangeLineCap",startAngle:"startAngle",endAngle:"endAngle"},usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:C,decorators:[{type:t.Component,args:[{selector:"kendo-arcgauge-scale",template:""}]}],ctorParameters:function(){return[{type:s}]},propDecorators:{labels:[{type:t.Input}],rangeDistance:[{type:t.Input}],rangeLineCap:[{type:t.Input}],startAngle:[{type:t.Input}],endAngle:[{type:t.Input}]}});l(he,ve=re);var ve,D=he;function he(e){var t=ve.call(this,"scale.labels",e)||this;return t.configurationService=e,t}D.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:D,deps:[{token:s}],target:o.ɵɵFactoryTarget.Component}),D.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:D,selector:"kendo-radialgauge-scale-labels",inputs:{position:"position"},usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:D,decorators:[{type:t.Component,args:[{selector:"kendo-radialgauge-scale-labels",template:""}]}],ctorParameters:function(){return[{type:s}]},propDecorators:{position:[{type:t.Input}]}});l(Ie,fe=D);var fe,k=Ie;function Ie(e){var t=fe.call(this,e)||this;return(t.configurationService=e).set(t.key+".visible",!0),t}k.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:k,deps:[{token:s}],target:o.ɵɵFactoryTarget.Component}),k.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:k,selector:"kendo-arcgauge-scale-labels",usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:k,decorators:[{type:t.Component,args:[{selector:"kendo-arcgauge-scale-labels",template:""}]}],ctorParameters:function(){return[{type:s}]}});l(De,Ce=u);var Ce,V=De;function De(e,t){return Ce.call(this,e,t)||this}V.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:V,deps:[{token:s},{token:p}],target:o.ɵɵFactoryTarget.Component}),V.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:V,selector:"kendo-arcgauge-color",inputs:{color:"color",opacity:"opacity",from:"from",to:"to"},providers:[s],usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:V,decorators:[{type:t.Component,args:[{providers:[s],selector:"kendo-arcgauge-color",template:""}]}],ctorParameters:function(){return[{type:s},{type:p}]},propDecorators:{color:[{type:t.Input}],opacity:[{type:t.Input}],from:[{type:t.Input}],to:[{type:t.Input}]}});l(Te,ke=g);var ke,Ve=Te;function Te(e,t){return ke.call(this,"colors",e,t)||this}Ve.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:Ve,deps:[{token:s},{token:p}],target:o.ɵɵFactoryTarget.Component}),Ve.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:Ve,selector:"kendo-arcgauge-colors",providers:[p],queries:[{propertyName:"children",predicate:V}],usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:Ve,decorators:[{type:t.Component,args:[{providers:[p],selector:"kendo-arcgauge-colors",template:""}]}],ctorParameters:function(){return[{type:s},{type:p}]},propDecorators:{children:[{type:t.ContentChildren,args:[V]}]}});var be,T=[h,v,I,C,k,Ve,V],b=function(){},T=(b.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:b,deps:[],target:o.ɵɵFactoryTarget.NgModule}),b.ɵmod=o.ɵɵngDeclareNgModule({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:b,declarations:[h,v,I,C,k,Ve,V],imports:[r,x.CommonModule],exports:[h,v,I,C,k,Ve,V]}),b.ɵinj=o.ɵɵngDeclareInjector({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:b,imports:[[r,x.CommonModule]]}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:b,decorators:[{type:t.NgModule,args:[{declarations:[T],exports:[T],imports:[r,x.CommonModule]}]}]}),l(Se,be=m),Se.prototype.createInstance=function(e,t,n,r){this.instance=new G.LinearGauge(e,t,n,r)},Se);function Se(e,t,n,r,o,a,i){return be.call(this,e,t,n,r,o,a,i)||this}T.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:T,deps:[{token:s},{token:c},{token:K.IntlService},{token:q.LocalizationService},{token:o.ElementRef},{token:o.Renderer2},{token:o.NgZone}],target:o.ɵɵFactoryTarget.Component}),T.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:T,selector:"kendo-lineargauge",inputs:{pointer:"pointer",scale:"scale"},providers:[s,n.LocalizationService,{provide:n.L10N_PREFIX,useValue:"kendo.lineargauge"}],exportAs:["kendoLinearGauge"],usesInheritance:!0,ngImport:o,template:'\n <div #surface class=\'k-chart-surface\'></div>\n <kendo-resize-sensor (resize)="onResize($event)" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>\n ',isInline:!0,components:[{type:i.ResizeSensorComponent,selector:"kendo-resize-sensor",inputs:["rateLimit"],outputs:["resize"]}],changeDetection:o.ChangeDetectionStrategy.OnPush}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:T,decorators:[{type:t.Component,args:[{changeDetection:t.ChangeDetectionStrategy.OnPush,exportAs:"kendoLinearGauge",providers:[s,n.LocalizationService,{provide:n.L10N_PREFIX,useValue:"kendo.lineargauge"}],selector:"kendo-lineargauge",template:'\n <div #surface class=\'k-chart-surface\'></div>\n <kendo-resize-sensor (resize)="onResize($event)" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>\n '}]}],ctorParameters:function(){return[{type:s},{type:c},{type:K.IntlService},{type:q.LocalizationService},{type:o.ElementRef},{type:o.Renderer2},{type:o.NgZone}]},propDecorators:{pointer:[{type:t.Input}],scale:[{type:t.Input}]}});l(Re,ze=ee);var ze,Fe=Re;function Re(e){var t=ze.call(this,"gaugeArea",e)||this;return t.configurationService=e,t}Fe.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:Fe,deps:[{token:s}],target:o.ɵɵFactoryTarget.Component}),Fe.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:Fe,selector:"kendo-lineargauge-area",usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:Fe,decorators:[{type:t.Component,args:[{selector:"kendo-lineargauge-area",template:""}]}],ctorParameters:function(){return[{type:s}]}});l(Oe,Me=ce);var Me,Le=Oe;function Oe(e){var t=Me.call(this,"scale",e)||this;return t.configurationService=e,t}Le.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:Le,deps:[{token:s}],target:o.ɵɵFactoryTarget.Component}),Le.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:Le,selector:"kendo-lineargauge-scale",inputs:{line:"line",ranges:"ranges",mirror:"mirror",vertical:"vertical"},usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:Le,decorators:[{type:t.Component,args:[{selector:"kendo-lineargauge-scale",template:""}]}],ctorParameters:function(){return[{type:s}]},propDecorators:{line:[{type:t.Input}],ranges:[{type:t.Input}],mirror:[{type:t.Input}],vertical:[{type:t.Input}]}});l(Ne,Pe=re);var Pe,Ae=Ne;function Ne(e){var t=Pe.call(this,"scale.labels",e)||this;return t.configurationService=e,t}Ae.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:Ae,deps:[{token:s}],target:o.ɵɵFactoryTarget.Component}),Ae.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:Ae,selector:"kendo-lineargauge-scale-labels",usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:Ae,decorators:[{type:t.Component,args:[{selector:"kendo-lineargauge-scale-labels",template:""}]}],ctorParameters:function(){return[{type:s}]}});l(je,xe=u);var xe,S=je;function je(e,t){return xe.call(this,e,t)||this}S.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:S,deps:[{token:s},{token:p}],target:o.ɵɵFactoryTarget.Component}),S.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:S,selector:"kendo-lineargauge-pointer",inputs:{border:"border",color:"color",margin:"margin",opacity:"opacity",shape:"shape",size:"size",value:"value"},providers:[s],usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:S,decorators:[{type:t.Component,args:[{providers:[s],selector:"kendo-lineargauge-pointer",template:""}]}],ctorParameters:function(){return[{type:s},{type:p}]},propDecorators:{border:[{type:t.Input}],color:[{type:t.Input}],margin:[{type:t.Input}],opacity:[{type:t.Input}],shape:[{type:t.Input}],size:[{type:t.Input}],value:[{type:t.Input}]}});l(Ge,Ee=g);var Ee,we=Ge;function Ge(e,t){return Ee.call(this,"pointer",e,t)||this}we.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:we,deps:[{token:s},{token:p}],target:o.ɵɵFactoryTarget.Component}),we.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:we,selector:"kendo-lineargauge-pointers",providers:[p],queries:[{propertyName:"children",predicate:S}],usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:we,decorators:[{type:t.Component,args:[{providers:[p],selector:"kendo-lineargauge-pointers",template:""}]}],ctorParameters:function(){return[{type:s},{type:p}]},propDecorators:{children:[{type:t.ContentChildren,args:[S]}]}});l(qe,_e=ie);var _e,z=qe;function qe(e,t){return _e.call(this,e,t)||this}z.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:z,deps:[{token:s},{token:p}],target:o.ɵɵFactoryTarget.Component}),z.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:z,selector:"kendo-lineargauge-scale-range",providers:[s],usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:z,decorators:[{type:t.Component,args:[{providers:[s],selector:"kendo-lineargauge-scale-range",template:""}]}],ctorParameters:function(){return[{type:s},{type:p}]}});l(Ze,Ke=g);var Ke,Ue=Ze;function Ze(e,t){return Ke.call(this,"scale.ranges",e,t)||this}Ue.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:Ue,deps:[{token:s},{token:p}],target:o.ɵɵFactoryTarget.Component}),Ue.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:Ue,selector:"kendo-lineargauge-scale-ranges",providers:[p],queries:[{propertyName:"children",predicate:z}],usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:Ue,decorators:[{type:t.Component,args:[{providers:[p],selector:"kendo-lineargauge-scale-ranges",template:""}]}],ctorParameters:function(){return[{type:s},{type:p}]},propDecorators:{children:[{type:t.ContentChildren,args:[z]}]}});var Xe,F=[T,Fe,Le,Ae,we,S,z,Ue],R=function(){},F=(R.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:R,deps:[],target:o.ɵɵFactoryTarget.NgModule}),R.ɵmod=o.ɵɵngDeclareNgModule({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:R,declarations:[T,Fe,Le,Ae,we,S,z,Ue],imports:[r],exports:[T,Fe,Le,Ae,we,S,z,Ue]}),R.ɵinj=o.ɵɵngDeclareInjector({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:R,imports:[[r]]}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:R,decorators:[{type:t.NgModule,args:[{declarations:[F],exports:[F],imports:[r]}]}]}),l($e,Xe=m),$e.prototype.createInstance=function(e,t,n,r){this.instance=new G.RadialGauge(e,t,n,r)},$e);function $e(e,t,n,r,o,a,i){return Xe.call(this,e,t,n,r,o,a,i)||this}F.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:F,deps:[{token:s},{token:c},{token:K.IntlService},{token:q.LocalizationService},{token:o.ElementRef},{token:o.Renderer2},{token:o.NgZone}],target:o.ɵɵFactoryTarget.Component}),F.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:F,selector:"kendo-radialgauge",inputs:{pointer:"pointer",scale:"scale"},providers:[s,n.LocalizationService,{provide:n.L10N_PREFIX,useValue:"kendo.radialgauge"}],exportAs:["kendoRadialGauge"],usesInheritance:!0,ngImport:o,template:'\n <div #surface class=\'k-chart-surface\'></div>\n <kendo-resize-sensor (resize)="onResize($event)" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>\n ',isInline:!0,components:[{type:i.ResizeSensorComponent,selector:"kendo-resize-sensor",inputs:["rateLimit"],outputs:["resize"]}],changeDetection:o.ChangeDetectionStrategy.OnPush}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:F,decorators:[{type:t.Component,args:[{changeDetection:t.ChangeDetectionStrategy.OnPush,exportAs:"kendoRadialGauge",providers:[s,n.LocalizationService,{provide:n.L10N_PREFIX,useValue:"kendo.radialgauge"}],selector:"kendo-radialgauge",template:'\n <div #surface class=\'k-chart-surface\'></div>\n <kendo-resize-sensor (resize)="onResize($event)" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>\n '}]}],ctorParameters:function(){return[{type:s},{type:c},{type:K.IntlService},{type:q.LocalizationService},{type:o.ElementRef},{type:o.Renderer2},{type:o.NgZone}]},propDecorators:{pointer:[{type:t.Input}],scale:[{type:t.Input}]}});l(Qe,Be=ee);var Be,He=Qe;function Qe(e){var t=Be.call(this,"gaugeArea",e)||this;return t.configurationService=e,t}He.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:He,deps:[{token:s}],target:o.ɵɵFactoryTarget.Component}),He.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:He,selector:"kendo-radialgauge-area",usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:He,decorators:[{type:t.Component,args:[{selector:"kendo-radialgauge-area",template:""}]}],ctorParameters:function(){return[{type:s}]}});l(Ye,We=ce);var We,Je=Ye;function Ye(e){var t=We.call(this,"scale",e)||this;return t.configurationService=e,t}Je.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:Je,deps:[{token:s}],target:o.ɵɵFactoryTarget.Component}),Je.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:Je,selector:"kendo-radialgauge-scale",inputs:{labels:"labels",rangeDistance:"rangeDistance",ranges:"ranges",startAngle:"startAngle",endAngle:"endAngle"},usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:Je,decorators:[{type:t.Component,args:[{selector:"kendo-radialgauge-scale",template:""}]}],ctorParameters:function(){return[{type:s}]},propDecorators:{labels:[{type:t.Input}],rangeDistance:[{type:t.Input}],ranges:[{type:t.Input}],startAngle:[{type:t.Input}],endAngle:[{type:t.Input}]}});l(tt,et=u);var et,M=tt;function tt(e,t){return et.call(this,e,t)||this}M.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:M,deps:[{token:s},{token:p}],target:o.ɵɵFactoryTarget.Component}),M.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:M,selector:"kendo-radialgauge-pointer",inputs:{cap:"cap",color:"color",length:"length",value:"value"},providers:[s],usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:M,decorators:[{type:t.Component,args:[{providers:[s],selector:"kendo-radialgauge-pointer",template:""}]}],ctorParameters:function(){return[{type:s},{type:p}]},propDecorators:{cap:[{type:t.Input}],color:[{type:t.Input}],length:[{type:t.Input}],value:[{type:t.Input}]}});l(ot,nt=g);var nt,rt=ot;function ot(e,t){return nt.call(this,"pointer",e,t)||this}rt.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:rt,deps:[{token:s},{token:p}],target:o.ɵɵFactoryTarget.Component}),rt.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:rt,selector:"kendo-radialgauge-pointers",providers:[p],queries:[{propertyName:"children",predicate:M}],usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:rt,decorators:[{type:t.Component,args:[{providers:[p],selector:"kendo-radialgauge-pointers",template:""}]}],ctorParameters:function(){return[{type:s},{type:p}]},propDecorators:{children:[{type:t.ContentChildren,args:[M]}]}});l(it,at=ie);var at,L=it;function it(e,t){return at.call(this,e,t)||this}L.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:L,deps:[{token:s},{token:p}],target:o.ɵɵFactoryTarget.Component}),L.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:L,selector:"kendo-radialgauge-scale-range",providers:[s],usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:L,decorators:[{type:t.Component,args:[{providers:[s],selector:"kendo-radialgauge-scale-range",template:""}]}],ctorParameters:function(){return[{type:s},{type:p}]}});l(ct,st=g);var st,pt=ct;function ct(e,t){return st.call(this,"scale.ranges",e,t)||this}pt.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:pt,deps:[{token:s},{token:p}],target:o.ɵɵFactoryTarget.Component}),pt.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:pt,selector:"kendo-radialgauge-scale-ranges",providers:[p],queries:[{propertyName:"children",predicate:L}],usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:pt,decorators:[{type:t.Component,args:[{providers:[p],selector:"kendo-radialgauge-scale-ranges",template:""}]}],ctorParameters:function(){return[{type:s},{type:p}]},propDecorators:{children:[{type:t.ContentChildren,args:[L]}]}});var lt,O=[F,He,Je,D,rt,M,L,pt],P=function(){},O=(P.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:P,deps:[],target:o.ɵɵFactoryTarget.NgModule}),P.ɵmod=o.ɵɵngDeclareNgModule({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:P,declarations:[F,He,Je,D,rt,M,L,pt],imports:[r],exports:[F,He,Je,D,rt,M,L,pt]}),P.ɵinj=o.ɵɵngDeclareInjector({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:P,imports:[[r]]}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:P,decorators:[{type:t.NgModule,args:[{declarations:[O],exports:[O],imports:[r]}]}]}),function(e){this.templateRef=e}),gt=(O.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:O,deps:[{token:o.TemplateRef,optional:!0}],target:o.ɵɵFactoryTarget.Directive}),O.ɵdir=o.ɵɵngDeclareDirective({minVersion:"12.0.0",version:"12.2.16",type:O,selector:"[kendoCircularGaugeCenterTemplate]",ngImport:o}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:O,decorators:[{type:t.Directive,args:[{selector:"[kendoCircularGaugeCenterTemplate]"}]}],ctorParameters:function(){return[{type:o.TemplateRef,decorators:[{type:t.Optional}]}]}}),l(ut,lt=h),ut.prototype.createInstance=function(e,t,n,r){this.instance=new G.CircularGauge(e,t,n,r),this.updateElements()},ut);function ut(){return null!==lt&<.apply(this,arguments)||this}gt.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:gt,deps:null,target:o.ɵɵFactoryTarget.Component}),gt.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:gt,selector:"kendo-circulargauge",inputs:{scale:"scale"},providers:[s,n.LocalizationService,{provide:n.L10N_PREFIX,useValue:"kendo.circulargauge"}],queries:[{propertyName:"centerTemplate",first:!0,predicate:O,descendants:!0}],exportAs:["kendoCircularGauge"],usesInheritance:!0,ngImport:o,template:'\n <div #surface class=\'k-chart-surface\'></div>\n <div class="k-arcgauge-label" *ngIf="centerTemplate" #label>\n <ng-template [ngTemplateOutlet]="centerTemplate.templateRef" [ngTemplateOutletContext]="centerTemplateContext"></ng-template>\n </div>\n <kendo-resize-sensor (resize)="onResize($event)" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>\n ',isInline:!0,components:[{type:i.ResizeSensorComponent,selector:"kendo-resize-sensor",inputs:["rateLimit"],outputs:["resize"]}],directives:[{type:a.NgIf,selector:"[ngIf]",inputs:["ngIf","ngIfThen","ngIfElse"]},{type:a.NgTemplateOutlet,selector:"[ngTemplateOutlet]",inputs:["ngTemplateOutletContext","ngTemplateOutlet"]}],changeDetection:o.ChangeDetectionStrategy.OnPush}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:gt,decorators:[{type:t.Component,args:[{changeDetection:t.ChangeDetectionStrategy.OnPush,exportAs:"kendoCircularGauge",providers:[s,n.LocalizationService,{provide:n.L10N_PREFIX,useValue:"kendo.circulargauge"}],selector:"kendo-circulargauge",template:'\n <div #surface class=\'k-chart-surface\'></div>\n <div class="k-arcgauge-label" *ngIf="centerTemplate" #label>\n <ng-template [ngTemplateOutlet]="centerTemplate.templateRef" [ngTemplateOutletContext]="centerTemplateContext"></ng-template>\n </div>\n <kendo-resize-sensor (resize)="onResize($event)" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>\n '}]}],propDecorators:{scale:[{type:t.Input}],centerTemplate:[{type:t.ContentChild,args:[O,{static:!1}]}]}});l(dt,mt=I);var mt,i=dt;function dt(){return null!==mt&&mt.apply(this,arguments)||this}i.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:i,deps:null,target:o.ɵɵFactoryTarget.Component}),i.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:i,selector:"kendo-circulargauge-area",usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:i,decorators:[{type:t.Component,args:[{selector:"kendo-circulargauge-area",template:""}]}]});l(vt,yt=C);var yt,a=vt;function vt(){return null!==yt&&yt.apply(this,arguments)||this}a.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:a,deps:null,target:o.ɵɵFactoryTarget.Component}),a.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:a,selector:"kendo-circulargauge-scale",usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:a,decorators:[{type:t.Component,args:[{selector:"kendo-circulargauge-scale",template:""}]}]});l(ft,ht=k);var ht,n=ft;function ft(){return null!==ht&&ht.apply(this,arguments)||this}n.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:n,deps:null,target:o.ɵɵFactoryTarget.Component}),n.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:n,selector:"kendo-circulargauge-scale-labels",usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:n,decorators:[{type:t.Component,args:[{selector:"kendo-circulargauge-scale-labels",template:""}]}]});var A=[gt,O,i,a,n],N=function(){},A=(N.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:N,deps:[],target:o.ɵɵFactoryTarget.NgModule}),N.ɵmod=o.ɵɵngDeclareNgModule({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:N,declarations:[gt,O,i,a,n],imports:[r,x.CommonModule],exports:[gt,O,i,a,n]}),N.ɵinj=o.ɵɵngDeclareInjector({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:N,imports:[[r,x.CommonModule]]}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:N,decorators:[{type:t.NgModule,args:[{declarations:[A],exports:[A],imports:[r,x.CommonModule]}]}]}),function(){});A.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:A,deps:[],target:o.ɵɵFactoryTarget.NgModule}),A.ɵmod=o.ɵɵngDeclareNgModule({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:A,exports:[b,N,R,P]}),A.ɵinj=o.ɵɵngDeclareInjector({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:A,imports:[b,N,R,P]}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:A,decorators:[{type:t.NgModule,args:[{exports:[b,N,R,P]}]}]}),Object.defineProperty(e,"ResizeSensorComponent",{enumerable:!0,get:function(){return j.ResizeSensorComponent}}),e.ArcCenterTemplateDirective=v,e.ArcGaugeAreaComponent=I,e.ArcGaugeComponent=h,e.ArcGaugeModule=b,e.ArcLabelsComponent=k,e.ArcScaleComponent=C,e.CircularGaugeAreaComponent=i,e.CircularGaugeCenterTemplateDirective=O,e.CircularGaugeComponent=gt,e.CircularGaugeLabelsComponent=n,e.CircularGaugeModule=N,e.CircularGaugeScaleComponent=a,e.CollectionChangesService=p,e.CollectionComponent=g,e.CollectionItemComponent=u,e.ColorComponent=V,e.ColorsComponent=Ve,e.ConfigurationService=s,e.GaugeAreaComponent=ee,e.GaugeComponent=m,e.GaugesModule=A,e.LabelsComponent=re,e.LinearGaugeAreaComponent=Fe,e.LinearGaugeComponent=T,e.LinearGaugeModule=R,e.LinearLabelsComponent=Ae,e.LinearPointerComponent=S,e.LinearPointersComponent=we,e.LinearRangeComponent=z,e.LinearRangesComponent=Ue,e.LinearScaleComponent=Le,e.RadialGaugeAreaComponent=He,e.RadialGaugeComponent=F,e.RadialGaugeModule=P,e.RadialLabelsComponent=D,e.RadialPointerComponent=M,e.RadialPointersComponent=rt,e.RadialRangeComponent=L,e.RadialRangesComponent=pt,e.RadialScaleComponent=Je,e.RangeComponent=ie,e.ScaleComponent=ce,e.SettingsComponent=y,e.ThemeService=c,Object.defineProperty(e,"__esModule",{value:!0})});
|
|
5
|
+
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@angular/core"),require("@angular/common"),require("@progress/kendo-angular-common"),require("@progress/kendo-angular-l10n"),require("@progress/kendo-drawing"),require("@progress/kendo-licensing"),require("@progress/kendo-angular-intl"),require("@progress/kendo-charts")):"function"==typeof define&&define.amd?define("KendoAngularGauges",["exports","@angular/core","@angular/common","@progress/kendo-angular-common","@progress/kendo-angular-l10n","@progress/kendo-drawing","@progress/kendo-licensing","@progress/kendo-angular-intl","@progress/kendo-charts"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).KendoAngularGauges={},e.ng.core,e.ng.common,e.KendoAngularCommon,e.KendoAngularL10N,e.KendoDrawing,e.KendoLicensing,e.KendoAngularIntl,e.KendoCharts)}(this,function(e,t,x,j,n,E,w,r,G){"use strict";function _(n){if(n&&n.__esModule)return n;var r=Object.create(null);return n&&Object.keys(n).forEach(function(e){var t;"default"!==e&&(t=Object.getOwnPropertyDescriptor(n,e),Object.defineProperty(r,e,t.get?t:{enumerable:!0,get:function(){return n[e]}}))}),r.default=n,Object.freeze(r)}var o=_(t),a=_(x),i=_(j),q=_(n),K=_(r);function U(e){return"object"==typeof e}function Z(e,t){if(!e||!t)return 1;if(e=[].concat(e),t=[].concat(t),e.length!==t.length)return 1;for(var n=0;n<e.length;n++)if(function e(t,n){if(Object.keys(t).length!==Object.keys(n).length)return!0;for(var r in t)if("value"!==r&&t.hasOwnProperty(r)){var o=t[r],r=n[r];if(U(o)&&U(r)?e(o,r):o!==r)return!0}}(e[n],t[n]))return 1}X.prototype.copyChanges=function(e,t){for(var n in t){var r;t.hasOwnProperty(n)&&(r=t[n].currentValue,this.set((e?e+".":"")+n,r))}},X.prototype.read=function(){return this.hasChanges=!1,this.valueChange=!1,this.options},X.prototype.readValues=function(){return this.valueChange=!1,[].concat(this.options.pointer).map(function(e){return e.value})},X.prototype.readValue=function(){return this.valueChange=!1,this.options.value},X.prototype.set=function(e,t){var e=this.optionContext(e),n=e.key,e=e.options;this.hasChanges||"value"!==n&&("pointer"!==n||Z(this.options.pointer,t))?(this.hasChanges=!0,this.valueChange=!1):this.valueChange=!0,e[n]=t},X.prototype.optionContext=function(e){for(var t=e.split("."),n=this.options,r=t.shift();0<t.length;)n=n[r]=n[r]||{},r=t.shift();return{key:r,options:n}};var s=X;function X(){this.options={}}s.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:s,deps:[],target:o.ɵɵFactoryTarget.Injectable}),s.ɵprov=o.ɵɵngDeclareInjectable({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:s}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:s,decorators:[{type:t.Injectable}]});var p=function(){},c=(p.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:p,deps:[],target:o.ɵɵFactoryTarget.Injectable}),p.ɵprov=o.ɵɵngDeclareInjectable({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:p}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:p,decorators:[{type:t.Injectable}]}),$.prototype.read=function(){return this.options||this.load(),this.options},$.prototype.load=function(){if("undefined"==typeof document)this.options={};else{var e=document.createElement("div");e.style.display="none",e.innerHTML='\n <div class="k-var--gauge-pointer"></div>\n <div class="k-var--gauge-track"></div>\n <div class="k-var--normal-text-color"></div>\n',document.body.appendChild(e);try{var t=this.getColor(e,"gauge-pointer"),n=this.getColor(e,"gauge-track"),r=this.getColor(e,"normal-text-color");this.options={pointer:{color:t},scale:{labels:{color:r},rangePlaceholderColor:n,minorTicks:{color:r},majorTicks:{color:r},line:{color:r}}}}finally{document.body.removeChild(e)}}},$.prototype.getColor=function(e,t){return window.getComputedStyle(e.querySelector(".k-var--"+t)).backgroundColor},$);function $(){}c.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:c,deps:[],target:o.ɵɵFactoryTarget.Injectable}),c.ɵprov=o.ɵɵngDeclareInjectable({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:c}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:c,decorators:[{type:t.Injectable}]});var r=function(){},B=(r.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:r,deps:[],target:o.ɵɵFactoryTarget.NgModule}),r.ɵmod=o.ɵɵngDeclareNgModule({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:r,exports:[j.ResizeSensorModule]}),r.ɵinj=o.ɵɵngDeclareInjector({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:r,providers:[c],imports:[j.ResizeSensorModule]}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:r,decorators:[{type:t.NgModule,args:[{exports:[j.ResizeSensorModule],providers:[c]}]}]}),function(e,t){return(B=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])})(e,t)});function l(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function n(){this.constructor=e}B(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}Object.create;Object.create;H.prototype.ngOnDestroy=function(){this.subscription.unsubscribe(),this.configurationService.set(this.key,[])},H.prototype.ngAfterContentInit=function(){var e=this;this.subscription=this.children.changes.subscribe(function(){return e.collectionChangesService.hasChanges=!0})},H.prototype.ngAfterContentChecked=function(){this.collectionChangesService.hasChanges&&(this.configurationService.set(this.key,this.readItems()),this.collectionChangesService.hasChanges=!1)},H.prototype.readItems=function(){return this.children.map(function(e){return Object.assign({},e.configurationService.read())})};var g=H;function H(e,t,n){this.key=e,this.configurationService=t,this.collectionChangesService=n}g.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:g,deps:"invalid",target:o.ɵɵFactoryTarget.Directive}),g.ɵdir=o.ɵɵngDeclareDirective({minVersion:"12.0.0",version:"12.2.16",type:g,ngImport:o}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:g,decorators:[{type:t.Directive}],ctorParameters:function(){return[{type:void 0},{type:s},{type:p}]}});Q.prototype.ngOnChanges=function(e){this.configurationService.copyChanges("",e),this.collectionChangesService.hasChanges=!0};var u=Q;function Q(e,t){this.configurationService=e,this.collectionChangesService=t}u.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:u,deps:[{token:s},{token:p}],target:o.ɵɵFactoryTarget.Directive}),u.ɵdir=o.ɵɵngDeclareDirective({minVersion:"12.0.0",version:"12.2.16",type:u,usesOnChanges:!0,ngImport:o}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:u,decorators:[{type:t.Directive}],ctorParameters:function(){return[{type:s},{type:p}]}});var W={name:"@progress/kendo-angular-gauges",productName:"Kendo UI for Angular",productCodes:["KENDOUIANGULAR","KENDOUICOMPLETE"],publishDate:1650441382,version:"",licensingDocsUrl:"https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning"},m=(d.prototype.ngOnInit=function(){this.setDirection(),this.subscriptions=this.intlService.changes.subscribe(this.intlChange.bind(this)),this.subscriptions.add(this.localizationService.changes.subscribe(this.rtlChange.bind(this)))},d.prototype.ngAfterViewChecked=function(){var e,t=this;"undefined"!=typeof document&&(this.instance?this.configurationService.hasChanges?e=this.updateOptions:this.configurationService.valueChange&&(e=this.setValues):e=this.init,e&&(clearTimeout(this.redrawTimeout),this.instance||function(e){for(var t=e;t&&t!==document.body;)t=t.parentNode;return Boolean(t)}(this.element.nativeElement)?this.updateCall(e):this.defer(function(){t.updateCall(e)})))},d.prototype.updateCall=function(e){this.updateDirection(),e.call(this),this.updateSize()},d.prototype.updateOptions=function(){this.instance.setOptions(this.configurationService.read())},d.prototype.setValues=function(){this.instance.allValues(this.configurationService.readValues())},d.prototype.ngOnChanges=function(e){this.configurationService.copyChanges("",e)},d.prototype.ngOnDestroy=function(){this.instance&&this.instance.destroy(),this.subscriptions.unsubscribe(),clearTimeout(this.redrawTimeout)},d.prototype.exportImage=function(t){return void 0===t&&(t={}),this.exportVisual().then(function(e){return E.exportImage(e,t)})},d.prototype.exportSVG=function(t){return void 0===t&&(t={}),this.exportVisual().then(function(e){return E.exportSVG(e,t)})},d.prototype.exportVisual=function(){return Promise.resolve(this.instance.exportVisual())},d.prototype.onResize=function(e){this.autoResize&&this.resize()},d.prototype.resize=function(){this.instance&&this.instance.resize()},d.prototype.init=function(){this.surfaceElement&&this.createInstance(this.surfaceElement.nativeElement,this.configurationService.read(),this.themeService.read(),{intlService:this.intlService,rtl:this.rtl})},Object.defineProperty(d.prototype,"autoResize",{get:function(){return 0<this.resizeRateLimit},enumerable:!1,configurable:!0}),d.prototype.updateSize=function(){this.resizeSensor.acceptSize()},d.prototype.intlChange=function(){this.instance&&this.deferredRedraw()},d.prototype.rtlChange=function(){this.instance&&this.rtl!==this.isRTL&&this.deferredRedraw()},d.prototype.deferredRedraw=function(){var e=this;this.defer(function(){e.updateDirection(),e.instance.noTransitionsRedraw()})},d.prototype.defer=function(e){var t=this;this.ngZone.runOutsideAngular(function(){clearTimeout(t.redrawTimeout),t.redrawTimeout=setTimeout(e,0)})},d.prototype.updateDirection=function(){var e=this.isRTL;this.rtl!==e&&(this.setDirection(),this.instance&&this.instance.setDirection(e))},d.prototype.setDirection=function(){this.rtl=this.isRTL,this.element&&this.renderer.setAttribute(this.element.nativeElement,"dir",this.rtl?"rtl":"ltr")},Object.defineProperty(d.prototype,"isRTL",{get:function(){return Boolean(this.localizationService.rtl)},enumerable:!1,configurable:!0}),d);function d(e,t,n,r,o,a,i){this.configurationService=e,this.themeService=t,this.intlService=n,this.localizationService=r,this.element=o,this.renderer=a,this.ngZone=i,this.resizeRateLimit=10,this.className=!0,this.theme=null,this.rtl=!1,w.validatePackage(W)}m.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:m,deps:[{token:s},{token:c},{token:K.IntlService},{token:q.LocalizationService},{token:o.ElementRef},{token:o.Renderer2},{token:o.NgZone}],target:o.ɵɵFactoryTarget.Directive}),m.ɵdir=o.ɵɵngDeclareDirective({minVersion:"12.0.0",version:"12.2.16",type:m,inputs:{gaugeArea:"gaugeArea",renderAs:"renderAs",resizeRateLimit:"resizeRateLimit",scale:"scale",transitions:"transitions"},host:{properties:{"class.k-gauge":"this.className"}},viewQueries:[{propertyName:"surfaceElement",first:!0,predicate:["surface"],descendants:!0,static:!0},{propertyName:"resizeSensor",first:!0,predicate:j.ResizeSensorComponent,descendants:!0,static:!0}],usesOnChanges:!0,ngImport:o}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:m,decorators:[{type:t.Directive}],ctorParameters:function(){return[{type:s},{type:c},{type:K.IntlService},{type:q.LocalizationService},{type:o.ElementRef},{type:o.Renderer2},{type:o.NgZone}]},propDecorators:{gaugeArea:[{type:t.Input}],renderAs:[{type:t.Input}],resizeRateLimit:[{type:t.Input}],scale:[{type:t.Input}],transitions:[{type:t.Input}],surfaceElement:[{type:t.ViewChild,args:["surface",{static:!0}]}],resizeSensor:[{type:t.ViewChild,args:[j.ResizeSensorComponent,{static:!0}]}],className:[{type:t.HostBinding,args:["class.k-gauge"]}]}});J.prototype.ngOnChanges=function(e){this.configurationService.copyChanges(this.key,e)},J.prototype.ngOnDestroy=function(){this.configurationService.set(this.key,null)};var y=J;function J(e,t){this.key=e,this.configurationService=t}y.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:y,deps:"invalid",target:o.ɵɵFactoryTarget.Directive}),y.ɵdir=o.ɵɵngDeclareDirective({minVersion:"12.0.0",version:"12.2.16",type:y,usesOnChanges:!0,ngImport:o}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:y,decorators:[{type:t.Directive}],ctorParameters:function(){return[{type:void 0},{type:s}]}});l(te,Y=y);var Y,ee=te;function te(){return null!==Y&&Y.apply(this,arguments)||this}ee.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:ee,deps:null,target:o.ɵɵFactoryTarget.Directive}),ee.ɵdir=o.ɵɵngDeclareDirective({minVersion:"12.0.0",version:"12.2.16",type:ee,inputs:{background:"background",border:"border",height:"height",margin:"margin",width:"width"},usesInheritance:!0,ngImport:o}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:ee,decorators:[{type:t.Directive}],propDecorators:{background:[{type:t.Input}],border:[{type:t.Input}],height:[{type:t.Input}],margin:[{type:t.Input}],width:[{type:t.Input}]}});l(oe,ne=y);var ne,re=oe;function oe(){return null!==ne&&ne.apply(this,arguments)||this}re.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:re,deps:null,target:o.ɵɵFactoryTarget.Directive}),re.ɵdir=o.ɵɵngDeclareDirective({minVersion:"12.0.0",version:"12.2.16",type:re,inputs:{background:"background",border:"border",color:"color",font:"font",format:"format",margin:"margin",padding:"padding",content:"content",visible:"visible"},usesInheritance:!0,ngImport:o}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:re,decorators:[{type:t.Directive}],propDecorators:{background:[{type:t.Input}],border:[{type:t.Input}],color:[{type:t.Input}],font:[{type:t.Input}],format:[{type:t.Input}],margin:[{type:t.Input}],padding:[{type:t.Input}],content:[{type:t.Input}],visible:[{type:t.Input}]}});l(se,ae=u);var ae,ie=se;function se(){return null!==ae&&ae.apply(this,arguments)||this}ie.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:ie,deps:null,target:o.ɵɵFactoryTarget.Directive}),ie.ɵdir=o.ɵɵngDeclareDirective({minVersion:"12.0.0",version:"12.2.16",type:ie,inputs:{from:"from",to:"to",opacity:"opacity",color:"color"},usesInheritance:!0,ngImport:o}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:ie,decorators:[{type:t.Directive}],propDecorators:{from:[{type:t.Input}],to:[{type:t.Input}],opacity:[{type:t.Input}],color:[{type:t.Input}]}});l(le,pe=y);var pe,ce=le;function le(){return null!==pe&&pe.apply(this,arguments)||this}ce.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:ce,deps:null,target:o.ɵɵFactoryTarget.Directive}),ce.ɵdir=o.ɵɵngDeclareDirective({minVersion:"12.0.0",version:"12.2.16",type:ce,inputs:{labels:"labels",majorTicks:"majorTicks",minorTicks:"minorTicks",min:"min",max:"max",minorUnit:"minorUnit",majorUnit:"majorUnit",reverse:"reverse",rangeSize:"rangeSize",rangePlaceholderColor:"rangePlaceholderColor"},usesInheritance:!0,ngImport:o}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:ce,decorators:[{type:t.Directive}],propDecorators:{labels:[{type:t.Input}],majorTicks:[{type:t.Input}],minorTicks:[{type:t.Input}],min:[{type:t.Input}],max:[{type:t.Input}],minorUnit:[{type:t.Input}],majorUnit:[{type:t.Input}],reverse:[{type:t.Input}],rangeSize:[{type:t.Input}],rangePlaceholderColor:[{type:t.Input}]}});var ge,v=function(e){this.templateRef=e},h=(v.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:v,deps:[{token:o.TemplateRef,optional:!0}],target:o.ɵɵFactoryTarget.Directive}),v.ɵdir=o.ɵɵngDeclareDirective({minVersion:"12.0.0",version:"12.2.16",type:v,selector:"[kendoArcGaugeCenterTemplate]",ngImport:o}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:v,decorators:[{type:t.Directive,args:[{selector:"[kendoArcGaugeCenterTemplate]"}]}],ctorParameters:function(){return[{type:o.TemplateRef,decorators:[{type:t.Optional}]}]}}),l(f,ge=m),f.prototype.ngOnInit=function(){ge.prototype.ngOnInit.call(this),this.element&&this.renderer.setStyle(this.element.nativeElement,"position","relative")},f.prototype.ngAfterViewChecked=function(){ge.prototype.ngAfterViewChecked.call(this),this.labelElement&&!this.centerTemplate?this.changeDetector.detectChanges():!this.labelElement&&this.centerTemplate&&this.updateCenterTemplate()},f.prototype.exportVisual=function(){return E.drawDOM(this.element.nativeElement)},f.prototype.resize=function(){ge.prototype.resize.call(this),this.updateCenterTemplate()},f.prototype.createInstance=function(e,t,n,r){this.instance=new G.ArcGauge(e,t,n,r),this.updateElements()},f.prototype.updateOptions=function(){ge.prototype.updateOptions.call(this),this.updateElements()},f.prototype.setValues=function(){var e=this.configurationService.readValue();this.instance.value(e),this.updateCenterTemplate()},f.prototype.updateElements=function(){this.resizeSensor.acceptSize(),this.updateCenterTemplate()},f.prototype.updateCenterTemplate=function(){this.instance&&this.centerTemplate&&(this.centerTemplateContext.value=this.instance.value(),this.centerTemplateContext.color=this.instance.currentColor(),this.changeDetector.detectChanges(),this.positionLabel())},f.prototype.positionLabel=function(){var e,t,n;this.labelElement&&(n=(e=this.labelElement.nativeElement).offsetWidth,t=e.offsetHeight,n=this.instance.centerLabelPosition(n,t),e.style.top=n.top+"px",e.style.left=n.left+"px")},f.prototype.updateSize=function(){},f);function f(e,t,n,r,o,a,i,s){t=ge.call(this,t,n,r,o,a,i,s)||this;return t.changeDetector=e,t.className=!0,t.centerTemplateContext={},t}h.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:h,deps:[{token:o.ChangeDetectorRef},{token:s},{token:c},{token:K.IntlService},{token:q.LocalizationService},{token:o.ElementRef},{token:o.Renderer2},{token:o.NgZone}],target:o.ɵɵFactoryTarget.Component}),h.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:h,selector:"kendo-arcgauge",inputs:{value:"value",color:"color",colors:"colors",opacity:"opacity",scale:"scale"},host:{properties:{"class.k-arcgauge":"this.className"}},providers:[s,n.LocalizationService,{provide:n.L10N_PREFIX,useValue:"kendo.arcgauge"}],queries:[{propertyName:"centerTemplate",first:!0,predicate:v,descendants:!0}],viewQueries:[{propertyName:"labelElement",first:!0,predicate:["label"],descendants:!0}],exportAs:["kendoArcGauge"],usesInheritance:!0,ngImport:o,template:'\n <div #surface class=\'k-chart-surface\'></div>\n <div class="k-arcgauge-label" *ngIf="centerTemplate" #label>\n <ng-template [ngTemplateOutlet]="centerTemplate.templateRef" [ngTemplateOutletContext]="centerTemplateContext"></ng-template>\n </div>\n <kendo-resize-sensor (resize)="onResize($event)" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>\n ',isInline:!0,components:[{type:i.ResizeSensorComponent,selector:"kendo-resize-sensor",inputs:["rateLimit"],outputs:["resize"]}],directives:[{type:a.NgIf,selector:"[ngIf]",inputs:["ngIf","ngIfThen","ngIfElse"]},{type:a.NgTemplateOutlet,selector:"[ngTemplateOutlet]",inputs:["ngTemplateOutletContext","ngTemplateOutlet"]}],changeDetection:o.ChangeDetectionStrategy.OnPush}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:h,decorators:[{type:t.Component,args:[{changeDetection:t.ChangeDetectionStrategy.OnPush,exportAs:"kendoArcGauge",providers:[s,n.LocalizationService,{provide:n.L10N_PREFIX,useValue:"kendo.arcgauge"}],selector:"kendo-arcgauge",template:'\n <div #surface class=\'k-chart-surface\'></div>\n <div class="k-arcgauge-label" *ngIf="centerTemplate" #label>\n <ng-template [ngTemplateOutlet]="centerTemplate.templateRef" [ngTemplateOutletContext]="centerTemplateContext"></ng-template>\n </div>\n <kendo-resize-sensor (resize)="onResize($event)" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>\n '}]}],ctorParameters:function(){return[{type:o.ChangeDetectorRef},{type:s},{type:c},{type:K.IntlService},{type:q.LocalizationService},{type:o.ElementRef},{type:o.Renderer2},{type:o.NgZone}]},propDecorators:{value:[{type:t.Input}],color:[{type:t.Input}],colors:[{type:t.Input}],opacity:[{type:t.Input}],scale:[{type:t.Input}],centerTemplate:[{type:t.ContentChild,args:[v,{static:!1}]}],labelElement:[{type:t.ViewChild,args:["label",{static:!1}]}],className:[{type:t.HostBinding,args:["class.k-arcgauge"]}]}});l(me,ue=ee);var ue,I=me;function me(e){var t=ue.call(this,"gaugeArea",e)||this;return t.configurationService=e,t}I.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:I,deps:[{token:s}],target:o.ɵɵFactoryTarget.Component}),I.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:I,selector:"kendo-arcgauge-area",usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:I,decorators:[{type:t.Component,args:[{selector:"kendo-arcgauge-area",template:""}]}],ctorParameters:function(){return[{type:s}]}});l(ye,de=ce);var de,C=ye;function ye(e){var t=de.call(this,"scale",e)||this;return t.configurationService=e,t}C.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:C,deps:[{token:s}],target:o.ɵɵFactoryTarget.Component}),C.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:C,selector:"kendo-arcgauge-scale",inputs:{labels:"labels",rangeDistance:"rangeDistance",rangeLineCap:"rangeLineCap",startAngle:"startAngle",endAngle:"endAngle"},usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:C,decorators:[{type:t.Component,args:[{selector:"kendo-arcgauge-scale",template:""}]}],ctorParameters:function(){return[{type:s}]},propDecorators:{labels:[{type:t.Input}],rangeDistance:[{type:t.Input}],rangeLineCap:[{type:t.Input}],startAngle:[{type:t.Input}],endAngle:[{type:t.Input}]}});l(he,ve=re);var ve,D=he;function he(e){var t=ve.call(this,"scale.labels",e)||this;return t.configurationService=e,t}D.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:D,deps:[{token:s}],target:o.ɵɵFactoryTarget.Component}),D.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:D,selector:"kendo-radialgauge-scale-labels",inputs:{position:"position"},usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:D,decorators:[{type:t.Component,args:[{selector:"kendo-radialgauge-scale-labels",template:""}]}],ctorParameters:function(){return[{type:s}]},propDecorators:{position:[{type:t.Input}]}});l(Ie,fe=D);var fe,k=Ie;function Ie(e){var t=fe.call(this,e)||this;return(t.configurationService=e).set(t.key+".visible",!0),t}k.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:k,deps:[{token:s}],target:o.ɵɵFactoryTarget.Component}),k.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:k,selector:"kendo-arcgauge-scale-labels",usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:k,decorators:[{type:t.Component,args:[{selector:"kendo-arcgauge-scale-labels",template:""}]}],ctorParameters:function(){return[{type:s}]}});l(De,Ce=u);var Ce,V=De;function De(e,t){return Ce.call(this,e,t)||this}V.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:V,deps:[{token:s},{token:p}],target:o.ɵɵFactoryTarget.Component}),V.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:V,selector:"kendo-arcgauge-color",inputs:{color:"color",opacity:"opacity",from:"from",to:"to"},providers:[s],usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:V,decorators:[{type:t.Component,args:[{providers:[s],selector:"kendo-arcgauge-color",template:""}]}],ctorParameters:function(){return[{type:s},{type:p}]},propDecorators:{color:[{type:t.Input}],opacity:[{type:t.Input}],from:[{type:t.Input}],to:[{type:t.Input}]}});l(Te,ke=g);var ke,Ve=Te;function Te(e,t){return ke.call(this,"colors",e,t)||this}Ve.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:Ve,deps:[{token:s},{token:p}],target:o.ɵɵFactoryTarget.Component}),Ve.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:Ve,selector:"kendo-arcgauge-colors",providers:[p],queries:[{propertyName:"children",predicate:V}],usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:Ve,decorators:[{type:t.Component,args:[{providers:[p],selector:"kendo-arcgauge-colors",template:""}]}],ctorParameters:function(){return[{type:s},{type:p}]},propDecorators:{children:[{type:t.ContentChildren,args:[V]}]}});var be,T=[h,v,I,C,k,Ve,V],b=function(){},T=(b.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:b,deps:[],target:o.ɵɵFactoryTarget.NgModule}),b.ɵmod=o.ɵɵngDeclareNgModule({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:b,declarations:[h,v,I,C,k,Ve,V],imports:[r,x.CommonModule],exports:[h,v,I,C,k,Ve,V]}),b.ɵinj=o.ɵɵngDeclareInjector({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:b,imports:[[r,x.CommonModule]]}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:b,decorators:[{type:t.NgModule,args:[{declarations:[T],exports:[T],imports:[r,x.CommonModule]}]}]}),l(Se,be=m),Se.prototype.createInstance=function(e,t,n,r){this.instance=new G.LinearGauge(e,t,n,r)},Se);function Se(e,t,n,r,o,a,i){return be.call(this,e,t,n,r,o,a,i)||this}T.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:T,deps:[{token:s},{token:c},{token:K.IntlService},{token:q.LocalizationService},{token:o.ElementRef},{token:o.Renderer2},{token:o.NgZone}],target:o.ɵɵFactoryTarget.Component}),T.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:T,selector:"kendo-lineargauge",inputs:{pointer:"pointer",scale:"scale"},providers:[s,n.LocalizationService,{provide:n.L10N_PREFIX,useValue:"kendo.lineargauge"}],exportAs:["kendoLinearGauge"],usesInheritance:!0,ngImport:o,template:'\n <div #surface class=\'k-chart-surface\'></div>\n <kendo-resize-sensor (resize)="onResize($event)" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>\n ',isInline:!0,components:[{type:i.ResizeSensorComponent,selector:"kendo-resize-sensor",inputs:["rateLimit"],outputs:["resize"]}],changeDetection:o.ChangeDetectionStrategy.OnPush}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:T,decorators:[{type:t.Component,args:[{changeDetection:t.ChangeDetectionStrategy.OnPush,exportAs:"kendoLinearGauge",providers:[s,n.LocalizationService,{provide:n.L10N_PREFIX,useValue:"kendo.lineargauge"}],selector:"kendo-lineargauge",template:'\n <div #surface class=\'k-chart-surface\'></div>\n <kendo-resize-sensor (resize)="onResize($event)" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>\n '}]}],ctorParameters:function(){return[{type:s},{type:c},{type:K.IntlService},{type:q.LocalizationService},{type:o.ElementRef},{type:o.Renderer2},{type:o.NgZone}]},propDecorators:{pointer:[{type:t.Input}],scale:[{type:t.Input}]}});l(Re,ze=ee);var ze,Fe=Re;function Re(e){var t=ze.call(this,"gaugeArea",e)||this;return t.configurationService=e,t}Fe.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:Fe,deps:[{token:s}],target:o.ɵɵFactoryTarget.Component}),Fe.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:Fe,selector:"kendo-lineargauge-area",usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:Fe,decorators:[{type:t.Component,args:[{selector:"kendo-lineargauge-area",template:""}]}],ctorParameters:function(){return[{type:s}]}});l(Oe,Me=ce);var Me,Le=Oe;function Oe(e){var t=Me.call(this,"scale",e)||this;return t.configurationService=e,t}Le.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:Le,deps:[{token:s}],target:o.ɵɵFactoryTarget.Component}),Le.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:Le,selector:"kendo-lineargauge-scale",inputs:{line:"line",ranges:"ranges",mirror:"mirror",vertical:"vertical"},usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:Le,decorators:[{type:t.Component,args:[{selector:"kendo-lineargauge-scale",template:""}]}],ctorParameters:function(){return[{type:s}]},propDecorators:{line:[{type:t.Input}],ranges:[{type:t.Input}],mirror:[{type:t.Input}],vertical:[{type:t.Input}]}});l(Ne,Pe=re);var Pe,Ae=Ne;function Ne(e){var t=Pe.call(this,"scale.labels",e)||this;return t.configurationService=e,t}Ae.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:Ae,deps:[{token:s}],target:o.ɵɵFactoryTarget.Component}),Ae.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:Ae,selector:"kendo-lineargauge-scale-labels",usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:Ae,decorators:[{type:t.Component,args:[{selector:"kendo-lineargauge-scale-labels",template:""}]}],ctorParameters:function(){return[{type:s}]}});l(je,xe=u);var xe,S=je;function je(e,t){return xe.call(this,e,t)||this}S.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:S,deps:[{token:s},{token:p}],target:o.ɵɵFactoryTarget.Component}),S.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:S,selector:"kendo-lineargauge-pointer",inputs:{border:"border",color:"color",margin:"margin",opacity:"opacity",shape:"shape",size:"size",value:"value"},providers:[s],usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:S,decorators:[{type:t.Component,args:[{providers:[s],selector:"kendo-lineargauge-pointer",template:""}]}],ctorParameters:function(){return[{type:s},{type:p}]},propDecorators:{border:[{type:t.Input}],color:[{type:t.Input}],margin:[{type:t.Input}],opacity:[{type:t.Input}],shape:[{type:t.Input}],size:[{type:t.Input}],value:[{type:t.Input}]}});l(Ge,Ee=g);var Ee,we=Ge;function Ge(e,t){return Ee.call(this,"pointer",e,t)||this}we.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:we,deps:[{token:s},{token:p}],target:o.ɵɵFactoryTarget.Component}),we.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:we,selector:"kendo-lineargauge-pointers",providers:[p],queries:[{propertyName:"children",predicate:S}],usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:we,decorators:[{type:t.Component,args:[{providers:[p],selector:"kendo-lineargauge-pointers",template:""}]}],ctorParameters:function(){return[{type:s},{type:p}]},propDecorators:{children:[{type:t.ContentChildren,args:[S]}]}});l(qe,_e=ie);var _e,z=qe;function qe(e,t){return _e.call(this,e,t)||this}z.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:z,deps:[{token:s},{token:p}],target:o.ɵɵFactoryTarget.Component}),z.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:z,selector:"kendo-lineargauge-scale-range",providers:[s],usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:z,decorators:[{type:t.Component,args:[{providers:[s],selector:"kendo-lineargauge-scale-range",template:""}]}],ctorParameters:function(){return[{type:s},{type:p}]}});l(Ze,Ke=g);var Ke,Ue=Ze;function Ze(e,t){return Ke.call(this,"scale.ranges",e,t)||this}Ue.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:Ue,deps:[{token:s},{token:p}],target:o.ɵɵFactoryTarget.Component}),Ue.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:Ue,selector:"kendo-lineargauge-scale-ranges",providers:[p],queries:[{propertyName:"children",predicate:z}],usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:Ue,decorators:[{type:t.Component,args:[{providers:[p],selector:"kendo-lineargauge-scale-ranges",template:""}]}],ctorParameters:function(){return[{type:s},{type:p}]},propDecorators:{children:[{type:t.ContentChildren,args:[z]}]}});var Xe,F=[T,Fe,Le,Ae,we,S,z,Ue],R=function(){},F=(R.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:R,deps:[],target:o.ɵɵFactoryTarget.NgModule}),R.ɵmod=o.ɵɵngDeclareNgModule({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:R,declarations:[T,Fe,Le,Ae,we,S,z,Ue],imports:[r],exports:[T,Fe,Le,Ae,we,S,z,Ue]}),R.ɵinj=o.ɵɵngDeclareInjector({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:R,imports:[[r]]}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:R,decorators:[{type:t.NgModule,args:[{declarations:[F],exports:[F],imports:[r]}]}]}),l($e,Xe=m),$e.prototype.createInstance=function(e,t,n,r){this.instance=new G.RadialGauge(e,t,n,r)},$e);function $e(e,t,n,r,o,a,i){return Xe.call(this,e,t,n,r,o,a,i)||this}F.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:F,deps:[{token:s},{token:c},{token:K.IntlService},{token:q.LocalizationService},{token:o.ElementRef},{token:o.Renderer2},{token:o.NgZone}],target:o.ɵɵFactoryTarget.Component}),F.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:F,selector:"kendo-radialgauge",inputs:{pointer:"pointer",scale:"scale"},providers:[s,n.LocalizationService,{provide:n.L10N_PREFIX,useValue:"kendo.radialgauge"}],exportAs:["kendoRadialGauge"],usesInheritance:!0,ngImport:o,template:'\n <div #surface class=\'k-chart-surface\'></div>\n <kendo-resize-sensor (resize)="onResize($event)" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>\n ',isInline:!0,components:[{type:i.ResizeSensorComponent,selector:"kendo-resize-sensor",inputs:["rateLimit"],outputs:["resize"]}],changeDetection:o.ChangeDetectionStrategy.OnPush}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:F,decorators:[{type:t.Component,args:[{changeDetection:t.ChangeDetectionStrategy.OnPush,exportAs:"kendoRadialGauge",providers:[s,n.LocalizationService,{provide:n.L10N_PREFIX,useValue:"kendo.radialgauge"}],selector:"kendo-radialgauge",template:'\n <div #surface class=\'k-chart-surface\'></div>\n <kendo-resize-sensor (resize)="onResize($event)" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>\n '}]}],ctorParameters:function(){return[{type:s},{type:c},{type:K.IntlService},{type:q.LocalizationService},{type:o.ElementRef},{type:o.Renderer2},{type:o.NgZone}]},propDecorators:{pointer:[{type:t.Input}],scale:[{type:t.Input}]}});l(Qe,Be=ee);var Be,He=Qe;function Qe(e){var t=Be.call(this,"gaugeArea",e)||this;return t.configurationService=e,t}He.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:He,deps:[{token:s}],target:o.ɵɵFactoryTarget.Component}),He.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:He,selector:"kendo-radialgauge-area",usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:He,decorators:[{type:t.Component,args:[{selector:"kendo-radialgauge-area",template:""}]}],ctorParameters:function(){return[{type:s}]}});l(Ye,We=ce);var We,Je=Ye;function Ye(e){var t=We.call(this,"scale",e)||this;return t.configurationService=e,t}Je.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:Je,deps:[{token:s}],target:o.ɵɵFactoryTarget.Component}),Je.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:Je,selector:"kendo-radialgauge-scale",inputs:{labels:"labels",rangeDistance:"rangeDistance",ranges:"ranges",startAngle:"startAngle",endAngle:"endAngle"},usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:Je,decorators:[{type:t.Component,args:[{selector:"kendo-radialgauge-scale",template:""}]}],ctorParameters:function(){return[{type:s}]},propDecorators:{labels:[{type:t.Input}],rangeDistance:[{type:t.Input}],ranges:[{type:t.Input}],startAngle:[{type:t.Input}],endAngle:[{type:t.Input}]}});l(tt,et=u);var et,M=tt;function tt(e,t){return et.call(this,e,t)||this}M.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:M,deps:[{token:s},{token:p}],target:o.ɵɵFactoryTarget.Component}),M.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:M,selector:"kendo-radialgauge-pointer",inputs:{cap:"cap",color:"color",length:"length",value:"value"},providers:[s],usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:M,decorators:[{type:t.Component,args:[{providers:[s],selector:"kendo-radialgauge-pointer",template:""}]}],ctorParameters:function(){return[{type:s},{type:p}]},propDecorators:{cap:[{type:t.Input}],color:[{type:t.Input}],length:[{type:t.Input}],value:[{type:t.Input}]}});l(ot,nt=g);var nt,rt=ot;function ot(e,t){return nt.call(this,"pointer",e,t)||this}rt.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:rt,deps:[{token:s},{token:p}],target:o.ɵɵFactoryTarget.Component}),rt.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:rt,selector:"kendo-radialgauge-pointers",providers:[p],queries:[{propertyName:"children",predicate:M}],usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:rt,decorators:[{type:t.Component,args:[{providers:[p],selector:"kendo-radialgauge-pointers",template:""}]}],ctorParameters:function(){return[{type:s},{type:p}]},propDecorators:{children:[{type:t.ContentChildren,args:[M]}]}});l(it,at=ie);var at,L=it;function it(e,t){return at.call(this,e,t)||this}L.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:L,deps:[{token:s},{token:p}],target:o.ɵɵFactoryTarget.Component}),L.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:L,selector:"kendo-radialgauge-scale-range",providers:[s],usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:L,decorators:[{type:t.Component,args:[{providers:[s],selector:"kendo-radialgauge-scale-range",template:""}]}],ctorParameters:function(){return[{type:s},{type:p}]}});l(ct,st=g);var st,pt=ct;function ct(e,t){return st.call(this,"scale.ranges",e,t)||this}pt.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:pt,deps:[{token:s},{token:p}],target:o.ɵɵFactoryTarget.Component}),pt.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:pt,selector:"kendo-radialgauge-scale-ranges",providers:[p],queries:[{propertyName:"children",predicate:L}],usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:pt,decorators:[{type:t.Component,args:[{providers:[p],selector:"kendo-radialgauge-scale-ranges",template:""}]}],ctorParameters:function(){return[{type:s},{type:p}]},propDecorators:{children:[{type:t.ContentChildren,args:[L]}]}});var lt,O=[F,He,Je,D,rt,M,L,pt],P=function(){},O=(P.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:P,deps:[],target:o.ɵɵFactoryTarget.NgModule}),P.ɵmod=o.ɵɵngDeclareNgModule({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:P,declarations:[F,He,Je,D,rt,M,L,pt],imports:[r],exports:[F,He,Je,D,rt,M,L,pt]}),P.ɵinj=o.ɵɵngDeclareInjector({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:P,imports:[[r]]}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:P,decorators:[{type:t.NgModule,args:[{declarations:[O],exports:[O],imports:[r]}]}]}),function(e){this.templateRef=e}),gt=(O.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:O,deps:[{token:o.TemplateRef,optional:!0}],target:o.ɵɵFactoryTarget.Directive}),O.ɵdir=o.ɵɵngDeclareDirective({minVersion:"12.0.0",version:"12.2.16",type:O,selector:"[kendoCircularGaugeCenterTemplate]",ngImport:o}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:O,decorators:[{type:t.Directive,args:[{selector:"[kendoCircularGaugeCenterTemplate]"}]}],ctorParameters:function(){return[{type:o.TemplateRef,decorators:[{type:t.Optional}]}]}}),l(ut,lt=h),ut.prototype.createInstance=function(e,t,n,r){this.instance=new G.CircularGauge(e,t,n,r),this.updateElements()},ut);function ut(){return null!==lt&<.apply(this,arguments)||this}gt.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:gt,deps:null,target:o.ɵɵFactoryTarget.Component}),gt.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:gt,selector:"kendo-circulargauge",inputs:{scale:"scale"},providers:[s,n.LocalizationService,{provide:n.L10N_PREFIX,useValue:"kendo.circulargauge"}],queries:[{propertyName:"centerTemplate",first:!0,predicate:O,descendants:!0}],exportAs:["kendoCircularGauge"],usesInheritance:!0,ngImport:o,template:'\n <div #surface class=\'k-chart-surface\'></div>\n <div class="k-arcgauge-label" *ngIf="centerTemplate" #label>\n <ng-template [ngTemplateOutlet]="centerTemplate.templateRef" [ngTemplateOutletContext]="centerTemplateContext"></ng-template>\n </div>\n <kendo-resize-sensor (resize)="onResize($event)" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>\n ',isInline:!0,components:[{type:i.ResizeSensorComponent,selector:"kendo-resize-sensor",inputs:["rateLimit"],outputs:["resize"]}],directives:[{type:a.NgIf,selector:"[ngIf]",inputs:["ngIf","ngIfThen","ngIfElse"]},{type:a.NgTemplateOutlet,selector:"[ngTemplateOutlet]",inputs:["ngTemplateOutletContext","ngTemplateOutlet"]}],changeDetection:o.ChangeDetectionStrategy.OnPush}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:gt,decorators:[{type:t.Component,args:[{changeDetection:t.ChangeDetectionStrategy.OnPush,exportAs:"kendoCircularGauge",providers:[s,n.LocalizationService,{provide:n.L10N_PREFIX,useValue:"kendo.circulargauge"}],selector:"kendo-circulargauge",template:'\n <div #surface class=\'k-chart-surface\'></div>\n <div class="k-arcgauge-label" *ngIf="centerTemplate" #label>\n <ng-template [ngTemplateOutlet]="centerTemplate.templateRef" [ngTemplateOutletContext]="centerTemplateContext"></ng-template>\n </div>\n <kendo-resize-sensor (resize)="onResize($event)" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>\n '}]}],propDecorators:{scale:[{type:t.Input}],centerTemplate:[{type:t.ContentChild,args:[O,{static:!1}]}]}});l(dt,mt=I);var mt,i=dt;function dt(){return null!==mt&&mt.apply(this,arguments)||this}i.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:i,deps:null,target:o.ɵɵFactoryTarget.Component}),i.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:i,selector:"kendo-circulargauge-area",usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:i,decorators:[{type:t.Component,args:[{selector:"kendo-circulargauge-area",template:""}]}]});l(vt,yt=C);var yt,a=vt;function vt(){return null!==yt&&yt.apply(this,arguments)||this}a.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:a,deps:null,target:o.ɵɵFactoryTarget.Component}),a.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:a,selector:"kendo-circulargauge-scale",usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:a,decorators:[{type:t.Component,args:[{selector:"kendo-circulargauge-scale",template:""}]}]});l(ft,ht=k);var ht,n=ft;function ft(){return null!==ht&&ht.apply(this,arguments)||this}n.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:n,deps:null,target:o.ɵɵFactoryTarget.Component}),n.ɵcmp=o.ɵɵngDeclareComponent({minVersion:"12.0.0",version:"12.2.16",type:n,selector:"kendo-circulargauge-scale-labels",usesInheritance:!0,ngImport:o,template:"",isInline:!0}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:n,decorators:[{type:t.Component,args:[{selector:"kendo-circulargauge-scale-labels",template:""}]}]});var A=[gt,O,i,a,n],N=function(){},A=(N.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:N,deps:[],target:o.ɵɵFactoryTarget.NgModule}),N.ɵmod=o.ɵɵngDeclareNgModule({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:N,declarations:[gt,O,i,a,n],imports:[r,x.CommonModule],exports:[gt,O,i,a,n]}),N.ɵinj=o.ɵɵngDeclareInjector({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:N,imports:[[r,x.CommonModule]]}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:N,decorators:[{type:t.NgModule,args:[{declarations:[A],exports:[A],imports:[r,x.CommonModule]}]}]}),function(){});A.ɵfac=o.ɵɵngDeclareFactory({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:A,deps:[],target:o.ɵɵFactoryTarget.NgModule}),A.ɵmod=o.ɵɵngDeclareNgModule({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:A,exports:[b,N,R,P]}),A.ɵinj=o.ɵɵngDeclareInjector({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:A,imports:[b,N,R,P]}),o.ɵɵngDeclareClassMetadata({minVersion:"12.0.0",version:"12.2.16",ngImport:o,type:A,decorators:[{type:t.NgModule,args:[{exports:[b,N,R,P]}]}]}),Object.defineProperty(e,"ResizeSensorComponent",{enumerable:!0,get:function(){return j.ResizeSensorComponent}}),e.ArcCenterTemplateDirective=v,e.ArcGaugeAreaComponent=I,e.ArcGaugeComponent=h,e.ArcGaugeModule=b,e.ArcLabelsComponent=k,e.ArcScaleComponent=C,e.CircularGaugeAreaComponent=i,e.CircularGaugeCenterTemplateDirective=O,e.CircularGaugeComponent=gt,e.CircularGaugeLabelsComponent=n,e.CircularGaugeModule=N,e.CircularGaugeScaleComponent=a,e.CollectionChangesService=p,e.CollectionComponent=g,e.CollectionItemComponent=u,e.ColorComponent=V,e.ColorsComponent=Ve,e.ConfigurationService=s,e.GaugeAreaComponent=ee,e.GaugeComponent=m,e.GaugesModule=A,e.LabelsComponent=re,e.LinearGaugeAreaComponent=Fe,e.LinearGaugeComponent=T,e.LinearGaugeModule=R,e.LinearLabelsComponent=Ae,e.LinearPointerComponent=S,e.LinearPointersComponent=we,e.LinearRangeComponent=z,e.LinearRangesComponent=Ue,e.LinearScaleComponent=Le,e.RadialGaugeAreaComponent=He,e.RadialGaugeComponent=F,e.RadialGaugeModule=P,e.RadialLabelsComponent=D,e.RadialPointerComponent=M,e.RadialPointersComponent=rt,e.RadialRangeComponent=L,e.RadialRangesComponent=pt,e.RadialScaleComponent=Je,e.RangeComponent=ie,e.ScaleComponent=ce,e.SettingsComponent=y,e.ThemeService=c,Object.defineProperty(e,"__esModule",{value:!0})});
|
package/esm2015/main.js
CHANGED
|
@@ -14,4 +14,7 @@ export * from './arc-gauge/arc-gauge.directives';
|
|
|
14
14
|
export * from './linear-gauge/linear-gauge.directives';
|
|
15
15
|
export * from './radial-gauge/radial-gauge.directives';
|
|
16
16
|
export * from './circular-gauge/circular-gauge.directives';
|
|
17
|
+
/**
|
|
18
|
+
* @hidden
|
|
19
|
+
*/
|
|
17
20
|
export { ResizeSensorComponent } from '@progress/kendo-angular-common';
|
|
@@ -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:
|
|
12
|
+
publishDate: 1650441382,
|
|
13
13
|
version: '',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
15
15
|
};
|
|
@@ -261,7 +261,7 @@ const packageMetadata = {
|
|
|
261
261
|
name: '@progress/kendo-angular-gauges',
|
|
262
262
|
productName: 'Kendo UI for Angular',
|
|
263
263
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
264
|
-
publishDate:
|
|
264
|
+
publishDate: 1650441382,
|
|
265
265
|
version: '',
|
|
266
266
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
267
267
|
};
|
package/main.d.ts
CHANGED
|
@@ -14,4 +14,7 @@ export * from './arc-gauge/arc-gauge.directives';
|
|
|
14
14
|
export * from './linear-gauge/linear-gauge.directives';
|
|
15
15
|
export * from './radial-gauge/radial-gauge.directives';
|
|
16
16
|
export * from './circular-gauge/circular-gauge.directives';
|
|
17
|
+
/**
|
|
18
|
+
* @hidden
|
|
19
|
+
*/
|
|
17
20
|
export { ResizeSensorComponent } from '@progress/kendo-angular-common';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-gauges",
|
|
3
|
-
"version": "5.0.0
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Kendo UI Angular Gauges",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -25,15 +25,15 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@progress/kendo-charts": "^1.18.0",
|
|
28
|
-
"@progress/kendo-schematics": "
|
|
28
|
+
"@progress/kendo-schematics": "^3.0.0",
|
|
29
29
|
"tslib": "^2.3.1"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
|
-
"@angular/common": "
|
|
33
|
-
"@angular/core": "
|
|
34
|
-
"@progress/kendo-angular-common": "^
|
|
35
|
-
"@progress/kendo-angular-intl": "^
|
|
36
|
-
"@progress/kendo-angular-l10n": "^
|
|
32
|
+
"@angular/common": "12 - 14",
|
|
33
|
+
"@angular/core": "12 - 14",
|
|
34
|
+
"@progress/kendo-angular-common": "^3.0.0",
|
|
35
|
+
"@progress/kendo-angular-intl": "^4.0.0",
|
|
36
|
+
"@progress/kendo-angular-l10n": "^4.0.0",
|
|
37
37
|
"@progress/kendo-drawing": "^1.0.0",
|
|
38
38
|
"@progress/kendo-licensing": "^1.0.2",
|
|
39
39
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
@@ -65,12 +65,10 @@
|
|
|
65
65
|
"release": {
|
|
66
66
|
"debug": false,
|
|
67
67
|
"branchTags": {
|
|
68
|
-
"develop": "dev"
|
|
69
|
-
"ng12-update": "next"
|
|
68
|
+
"develop": "dev"
|
|
70
69
|
},
|
|
71
70
|
"fallbackTags": {
|
|
72
|
-
"dev": "latest"
|
|
73
|
-
"next": "latest"
|
|
71
|
+
"dev": "latest"
|
|
74
72
|
},
|
|
75
73
|
"analyzeCommits": "@telerik/semantic-prerelease/analyzeCommits",
|
|
76
74
|
"generateNotes": "@progress/kendo-angular-tasks/lib/generateNotes",
|
|
@@ -46,6 +46,8 @@ export interface Labels {
|
|
|
46
46
|
* The available fields in the function argument are:
|
|
47
47
|
*
|
|
48
48
|
* - `value`—The value of the label.
|
|
49
|
+
* @param {any} e - The parameters for the content callback.
|
|
50
|
+
* @returns {string} - Returns the label string that will be displayed.
|
|
49
51
|
*/
|
|
50
52
|
content?: (e: any) => string;
|
|
51
53
|
/**
|