@mescius/wijmo.angular2legacy.gauge 5.20232.939

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/index.d.ts ADDED
@@ -0,0 +1,368 @@
1
+ /*!
2
+ *
3
+ * Wijmo Library 5.20232.939
4
+ * https://developer.mescius.com/wijmo
5
+ *
6
+ * Copyright(c) MESCIUS inc. All rights reserved.
7
+ *
8
+ * Licensed under the End-User License Agreement For MESCIUS Wijmo Software.
9
+ * us.sales@mescius.com
10
+ * https://developer.mescius.com/wijmo/licensing
11
+ *
12
+ */
13
+ /**
14
+ * {@module wijmo.angular2legacy.gauge}
15
+ * Contains Angular 2 components for the <b>wijmo.gauge</b> module.
16
+ *
17
+ * <b>wijmo.angular2legacy.gauge</b> is an external TypeScript module that can be imported to your code
18
+ * using its ambient module name. For example:
19
+ *
20
+ * <pre>import * as wjGauge from 'wijmo/wijmo.angular2legacy.gauge';
21
+ * &nbsp;
22
+ * &#64;Component({
23
+ * directives: [wjGauge.WjLinearGauge],
24
+ * template: '&lt;wj-linear-gauge [(value)]="amount" [isReadOnly]="false"&gt;&lt;/wj-linear-gauge&gt;',
25
+ * selector: 'my-cmp',
26
+ * })
27
+ * export class MyCmp {
28
+ * amount = 0;
29
+ * }</pre>
30
+ *
31
+ */
32
+ /**
33
+ *
34
+ */
35
+ export declare var ___keepComment: any;
36
+ import { EventEmitter, AfterViewInit, ElementRef, Injector, OnInit, OnDestroy } from '@angular/core';
37
+ import { IWjComponentMetadata, IWjComponentMeta } from '@grapecity/wijmo.angular2legacy.directivebase';
38
+ import * as wjcGauge from '@grapecity/wijmo.gauge';
39
+ declare var wjLinearGaugeMeta: IWjComponentMeta;
40
+ export { wjLinearGaugeMeta };
41
+ /**
42
+ * Angular 2 component for the {@link wijmo.gauge.LinearGauge} control.
43
+ *
44
+ * Use the <b>wj-linear-gauge</b> component to add <b>LinearGauge</b> controls to your
45
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
46
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
47
+ *
48
+ * The <b>WjLinearGauge</b> component is derived from the <b>LinearGauge</b> control and
49
+ * inherits all its properties, events and methods.
50
+ *
51
+ * The <b>wj-linear-gauge</b> component may contain a {@link wijmo.angular2legacy.gauge.WjRange} child component.
52
+ */
53
+ export declare class WjLinearGauge extends wjcGauge.LinearGauge implements OnInit, OnDestroy, AfterViewInit {
54
+ static readonly meta: IWjComponentMetadata;
55
+ private _wjBehaviour;
56
+ /**
57
+ * Indicates whether the component has been initialized by Angular.
58
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
59
+ */
60
+ isInitialized: boolean;
61
+ /**
62
+ * This event is triggered after the component has been initialized by Angular, that is
63
+ * all bound properties have been assigned and child components (if any) have been initialized.
64
+ */
65
+ initialized: EventEmitter<any>;
66
+ /**
67
+ * Defines a name of a property represented by [(ngModel)] directive (if specified).
68
+ * Default value is 'value'.
69
+ */
70
+ wjModelProperty: string;
71
+ /**
72
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
73
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
74
+ */
75
+ asyncBindings: boolean;
76
+ /**
77
+ * Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
78
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
79
+ * In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
80
+ */
81
+ gotFocusNg: EventEmitter<any>;
82
+ /**
83
+ * Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
84
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
85
+ * In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
86
+ */
87
+ lostFocusNg: EventEmitter<any>;
88
+ /**
89
+ * Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
90
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
91
+ * In template bindings use the conventional <b>refreshing</b> Wijmo event name.
92
+ */
93
+ refreshingNg: EventEmitter<any>;
94
+ /**
95
+ * Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
96
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
97
+ * In template bindings use the conventional <b>refreshed</b> Wijmo event name.
98
+ */
99
+ refreshedNg: EventEmitter<any>;
100
+ /**
101
+ * Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
102
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
103
+ * In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
104
+ */
105
+ invalidInputNg: EventEmitter<any>;
106
+ /**
107
+ * Angular (EventEmitter) version of the Wijmo <b>valueChanged</b> event for programmatic access.
108
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
109
+ * In template bindings use the conventional <b>valueChanged</b> Wijmo event name.
110
+ */
111
+ valueChangedNg: EventEmitter<any>;
112
+ /**
113
+ * This event is used to implement two-way binding to the <b>value</b> property.
114
+ * It's triggered when the property value changes, with the event argument holding the new property value.
115
+ * You can bind handlers to this event in templates using the <b>valueChange</b> event name.
116
+ */
117
+ valueChangePC: EventEmitter<any>;
118
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
119
+ /**
120
+ * If you create a custom component inherited from a Wijmo component, you can override this
121
+ * method and perform necessary initializations that you usually do in a class constructor.
122
+ * This method is called in the last line of a Wijmo component constructor and allows you
123
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
124
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
125
+ */
126
+ created(): void;
127
+ ngOnInit(): void;
128
+ ngAfterViewInit(): void;
129
+ ngOnDestroy(): void;
130
+ addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
131
+ }
132
+ declare var wjBulletGraphMeta: IWjComponentMeta;
133
+ export { wjBulletGraphMeta };
134
+ /**
135
+ * Angular 2 component for the {@link wijmo.gauge.BulletGraph} control.
136
+ *
137
+ * Use the <b>wj-bullet-graph</b> component to add <b>BulletGraph</b> controls to your
138
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
139
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
140
+ *
141
+ * The <b>WjBulletGraph</b> component is derived from the <b>BulletGraph</b> control and
142
+ * inherits all its properties, events and methods.
143
+ *
144
+ * The <b>wj-bullet-graph</b> component may contain a {@link wijmo.angular2legacy.gauge.WjRange} child component.
145
+ */
146
+ export declare class WjBulletGraph extends wjcGauge.BulletGraph implements OnInit, OnDestroy, AfterViewInit {
147
+ static readonly meta: IWjComponentMetadata;
148
+ private _wjBehaviour;
149
+ /**
150
+ * Indicates whether the component has been initialized by Angular.
151
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
152
+ */
153
+ isInitialized: boolean;
154
+ /**
155
+ * This event is triggered after the component has been initialized by Angular, that is
156
+ * all bound properties have been assigned and child components (if any) have been initialized.
157
+ */
158
+ initialized: EventEmitter<any>;
159
+ /**
160
+ * Defines a name of a property represented by [(ngModel)] directive (if specified).
161
+ * Default value is 'value'.
162
+ */
163
+ wjModelProperty: string;
164
+ /**
165
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
166
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
167
+ */
168
+ asyncBindings: boolean;
169
+ /**
170
+ * Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
171
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
172
+ * In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
173
+ */
174
+ gotFocusNg: EventEmitter<any>;
175
+ /**
176
+ * Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
177
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
178
+ * In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
179
+ */
180
+ lostFocusNg: EventEmitter<any>;
181
+ /**
182
+ * Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
183
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
184
+ * In template bindings use the conventional <b>refreshing</b> Wijmo event name.
185
+ */
186
+ refreshingNg: EventEmitter<any>;
187
+ /**
188
+ * Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
189
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
190
+ * In template bindings use the conventional <b>refreshed</b> Wijmo event name.
191
+ */
192
+ refreshedNg: EventEmitter<any>;
193
+ /**
194
+ * Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
195
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
196
+ * In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
197
+ */
198
+ invalidInputNg: EventEmitter<any>;
199
+ /**
200
+ * Angular (EventEmitter) version of the Wijmo <b>valueChanged</b> event for programmatic access.
201
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
202
+ * In template bindings use the conventional <b>valueChanged</b> Wijmo event name.
203
+ */
204
+ valueChangedNg: EventEmitter<any>;
205
+ /**
206
+ * This event is used to implement two-way binding to the <b>value</b> property.
207
+ * It's triggered when the property value changes, with the event argument holding the new property value.
208
+ * You can bind handlers to this event in templates using the <b>valueChange</b> event name.
209
+ */
210
+ valueChangePC: EventEmitter<any>;
211
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
212
+ /**
213
+ * If you create a custom component inherited from a Wijmo component, you can override this
214
+ * method and perform necessary initializations that you usually do in a class constructor.
215
+ * This method is called in the last line of a Wijmo component constructor and allows you
216
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
217
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
218
+ */
219
+ created(): void;
220
+ ngOnInit(): void;
221
+ ngAfterViewInit(): void;
222
+ ngOnDestroy(): void;
223
+ addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
224
+ }
225
+ declare var wjRadialGaugeMeta: IWjComponentMeta;
226
+ export { wjRadialGaugeMeta };
227
+ /**
228
+ * Angular 2 component for the {@link wijmo.gauge.RadialGauge} control.
229
+ *
230
+ * Use the <b>wj-radial-gauge</b> component to add <b>RadialGauge</b> controls to your
231
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
232
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
233
+ *
234
+ * The <b>WjRadialGauge</b> component is derived from the <b>RadialGauge</b> control and
235
+ * inherits all its properties, events and methods.
236
+ *
237
+ * The <b>wj-radial-gauge</b> component may contain a {@link wijmo.angular2legacy.gauge.WjRange} child component.
238
+ */
239
+ export declare class WjRadialGauge extends wjcGauge.RadialGauge implements OnInit, OnDestroy, AfterViewInit {
240
+ static readonly meta: IWjComponentMetadata;
241
+ private _wjBehaviour;
242
+ /**
243
+ * Indicates whether the component has been initialized by Angular.
244
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
245
+ */
246
+ isInitialized: boolean;
247
+ /**
248
+ * This event is triggered after the component has been initialized by Angular, that is
249
+ * all bound properties have been assigned and child components (if any) have been initialized.
250
+ */
251
+ initialized: EventEmitter<any>;
252
+ /**
253
+ * Defines a name of a property represented by [(ngModel)] directive (if specified).
254
+ * Default value is 'value'.
255
+ */
256
+ wjModelProperty: string;
257
+ /**
258
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
259
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
260
+ */
261
+ asyncBindings: boolean;
262
+ /**
263
+ * Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
264
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
265
+ * In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
266
+ */
267
+ gotFocusNg: EventEmitter<any>;
268
+ /**
269
+ * Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
270
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
271
+ * In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
272
+ */
273
+ lostFocusNg: EventEmitter<any>;
274
+ /**
275
+ * Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
276
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
277
+ * In template bindings use the conventional <b>refreshing</b> Wijmo event name.
278
+ */
279
+ refreshingNg: EventEmitter<any>;
280
+ /**
281
+ * Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
282
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
283
+ * In template bindings use the conventional <b>refreshed</b> Wijmo event name.
284
+ */
285
+ refreshedNg: EventEmitter<any>;
286
+ /**
287
+ * Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
288
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
289
+ * In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
290
+ */
291
+ invalidInputNg: EventEmitter<any>;
292
+ /**
293
+ * Angular (EventEmitter) version of the Wijmo <b>valueChanged</b> event for programmatic access.
294
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
295
+ * In template bindings use the conventional <b>valueChanged</b> Wijmo event name.
296
+ */
297
+ valueChangedNg: EventEmitter<any>;
298
+ /**
299
+ * This event is used to implement two-way binding to the <b>value</b> property.
300
+ * It's triggered when the property value changes, with the event argument holding the new property value.
301
+ * You can bind handlers to this event in templates using the <b>valueChange</b> event name.
302
+ */
303
+ valueChangePC: EventEmitter<any>;
304
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
305
+ /**
306
+ * If you create a custom component inherited from a Wijmo component, you can override this
307
+ * method and perform necessary initializations that you usually do in a class constructor.
308
+ * This method is called in the last line of a Wijmo component constructor and allows you
309
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
310
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
311
+ */
312
+ created(): void;
313
+ ngOnInit(): void;
314
+ ngAfterViewInit(): void;
315
+ ngOnDestroy(): void;
316
+ addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
317
+ }
318
+ declare var wjRangeMeta: IWjComponentMeta;
319
+ export { wjRangeMeta };
320
+ /**
321
+ * Angular 2 component for the {@link wijmo.gauge.Range} class.
322
+ *
323
+ * The <b>wj-range</b> component must be
324
+ * contained in one of the following components:
325
+ * {@link wijmo.angular2legacy.gauge.WjLinearGauge}
326
+ * , {@link wijmo.angular2legacy.gauge.WjBulletGraph}
327
+ * or {@link wijmo.angular2legacy.gauge.WjRadialGauge}.
328
+ *
329
+ * Use the <b>wj-range</b> component to add <b>Range</b> controls to your
330
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
331
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
332
+ *
333
+ * The <b>WjRange</b> component is derived from the <b>Range</b> class and
334
+ * inherits all its properties, events and methods.
335
+ */
336
+ export declare class WjRange extends wjcGauge.Range implements OnInit, OnDestroy, AfterViewInit {
337
+ static readonly meta: IWjComponentMetadata;
338
+ private _wjBehaviour;
339
+ /**
340
+ * Indicates whether the component has been initialized by Angular.
341
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
342
+ */
343
+ isInitialized: boolean;
344
+ /**
345
+ * This event is triggered after the component has been initialized by Angular, that is
346
+ * all bound properties have been assigned and child components (if any) have been initialized.
347
+ */
348
+ initialized: EventEmitter<any>;
349
+ /**
350
+ * Gets or sets a name of a property that this component is assigned to.
351
+ * Default value is 'ranges'.
352
+ */
353
+ wjProperty: string;
354
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
355
+ /**
356
+ * If you create a custom component inherited from a Wijmo component, you can override this
357
+ * method and perform necessary initializations that you usually do in a class constructor.
358
+ * This method is called in the last line of a Wijmo component constructor and allows you
359
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
360
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
361
+ */
362
+ created(): void;
363
+ ngOnInit(): void;
364
+ ngAfterViewInit(): void;
365
+ ngOnDestroy(): void;
366
+ }
367
+ export declare class WjGaugeModule {
368
+ }
package/index.js ADDED
@@ -0,0 +1,14 @@
1
+ /*!
2
+ *
3
+ * Wijmo Library 5.20232.939
4
+ * https://developer.mescius.com/wijmo
5
+ *
6
+ * Copyright(c) MESCIUS inc. All rights reserved.
7
+ *
8
+ * Licensed under the End-User License Agreement For MESCIUS Wijmo Software.
9
+ * us.sales@mescius.com
10
+ * https://developer.mescius.com/wijmo/licensing
11
+ *
12
+ */
13
+
14
+ "use strict";var __extends=this&&this.__extends||function(){var extendStatics=function(e,t){return(extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var a in t)t.hasOwnProperty(a)&&(e[a]=t[a])})(e,t)};return function(e,t){extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}}(),__decorate=this&&this.__decorate||function(e,t,a,r){var n,o=arguments.length,i=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,a):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,a,r);else for(var u=e.length-1;u>=0;u--)(n=e[u])&&(i=(o<3?n(i):o>3?n(t,a,i):n(t,a))||i);return o>3&&i&&Object.defineProperty(t,a,i),i},__param=this&&this.__param||function(e,t){return function(a,r){t(a,r,e)}},__importStar=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var a in e)Object.hasOwnProperty.call(e,a)&&(t[a]=e[a]);t.default=e;return t};Object.defineProperty(exports,"__esModule",{value:!0});var core_1=require("@angular/core"),common_1=require("@angular/common"),forms_1=require("@angular/forms"),wijmo.angular2legacy_directivebase_1=require("@mescius/wijmo.angular2legacy.directivebase"),wjcGauge=__importStar(require("@mescius/wijmo.gauge")),wjLinearGaugeMeta={selector:"wj-linear-gauge",template:"<div><ng-content></ng-content></div>",inputs:["asyncBindings","wjModelProperty","isDisabled","tabOrder","value","min","max","origin","isReadOnly","handleWheel","step","format","thickness","hasShadow","isAnimated","showText","showTicks","showTickText","showRanges","stackRanges","thumbSize","tickSpacing","getText","direction"],outputs:["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","valueChangedNg: valueChanged","valueChangePC: valueChange"],providers:[{provide:forms_1.NG_VALUE_ACCESSOR,useFactory:wijmo.angular2legacy_directivebase_1.WjValueAccessorFactory,multi:!0,deps:["WjComponent"]}]};exports.wjLinearGaugeMeta=wjLinearGaugeMeta;var WjLinearGauge=function(e){__extends(WjLinearGauge,e);function WjLinearGauge(t,a,r){var n=e.call(this,wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.getHostElement(t,a))||this;n.isInitialized=!1;n.wjModelProperty="value";n._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(n,t,a,r);n.created();return n}t=WjLinearGauge;WjLinearGauge.prototype.created=function(){};WjLinearGauge.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjLinearGauge.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjLinearGauge.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};WjLinearGauge.prototype.addEventListener=function(t,a,r,n){var o=this;void 0===n&&(n=!1);var i=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior,u=i.getZone(this);u&&i.outsideZoneEvents[a]?u.runOutsideAngular((function(){e.prototype.addEventListener.call(o,t,a,r,n)})):e.prototype.addEventListener.call(this,t,a,r,n)};var t;WjLinearGauge.meta={outputs:wjLinearGaugeMeta.outputs,changeEvents:{valueChanged:["value"]}};return WjLinearGauge=t=__decorate([core_1.Component({selector:wjLinearGaugeMeta.selector,template:wjLinearGaugeMeta.template,inputs:wjLinearGaugeMeta.inputs,outputs:wjLinearGaugeMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return t}))}].concat(wjLinearGaugeMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjLinearGauge)}(wjcGauge.LinearGauge);exports.WjLinearGauge=WjLinearGauge;var wjBulletGraphMeta={selector:"wj-bullet-graph",template:"<div><ng-content></ng-content></div>",inputs:["asyncBindings","wjModelProperty","isDisabled","tabOrder","value","min","max","origin","isReadOnly","handleWheel","step","format","thickness","hasShadow","isAnimated","showText","showTicks","showTickText","showRanges","stackRanges","thumbSize","tickSpacing","getText","direction","target","good","bad"],outputs:["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","valueChangedNg: valueChanged","valueChangePC: valueChange"],providers:[{provide:forms_1.NG_VALUE_ACCESSOR,useFactory:wijmo.angular2legacy_directivebase_1.WjValueAccessorFactory,multi:!0,deps:["WjComponent"]}]};exports.wjBulletGraphMeta=wjBulletGraphMeta;var WjBulletGraph=function(e){__extends(WjBulletGraph,e);function WjBulletGraph(t,a,r){var n=e.call(this,wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.getHostElement(t,a))||this;n.isInitialized=!1;n.wjModelProperty="value";n._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(n,t,a,r);n.created();return n}t=WjBulletGraph;WjBulletGraph.prototype.created=function(){};WjBulletGraph.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjBulletGraph.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjBulletGraph.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};WjBulletGraph.prototype.addEventListener=function(t,a,r,n){var o=this;void 0===n&&(n=!1);var i=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior,u=i.getZone(this);u&&i.outsideZoneEvents[a]?u.runOutsideAngular((function(){e.prototype.addEventListener.call(o,t,a,r,n)})):e.prototype.addEventListener.call(this,t,a,r,n)};var t;WjBulletGraph.meta={outputs:wjBulletGraphMeta.outputs,changeEvents:{valueChanged:["value"]}};return WjBulletGraph=t=__decorate([core_1.Component({selector:wjBulletGraphMeta.selector,template:wjBulletGraphMeta.template,inputs:wjBulletGraphMeta.inputs,outputs:wjBulletGraphMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return t}))}].concat(wjBulletGraphMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjBulletGraph)}(wjcGauge.BulletGraph);exports.WjBulletGraph=WjBulletGraph;var wjRadialGaugeMeta={selector:"wj-radial-gauge",template:"<div><ng-content></ng-content></div>",inputs:["asyncBindings","wjModelProperty","isDisabled","tabOrder","value","min","max","origin","isReadOnly","handleWheel","step","format","thickness","hasShadow","isAnimated","showText","showTicks","showTickText","showRanges","stackRanges","thumbSize","tickSpacing","getText","autoScale","startAngle","sweepAngle","needleShape","needleLength","needleElement"],outputs:["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","valueChangedNg: valueChanged","valueChangePC: valueChange"],providers:[{provide:forms_1.NG_VALUE_ACCESSOR,useFactory:wijmo.angular2legacy_directivebase_1.WjValueAccessorFactory,multi:!0,deps:["WjComponent"]}]};exports.wjRadialGaugeMeta=wjRadialGaugeMeta;var WjRadialGauge=function(e){__extends(WjRadialGauge,e);function WjRadialGauge(t,a,r){var n=e.call(this,wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.getHostElement(t,a))||this;n.isInitialized=!1;n.wjModelProperty="value";n._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(n,t,a,r);n.created();return n}t=WjRadialGauge;WjRadialGauge.prototype.created=function(){};WjRadialGauge.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjRadialGauge.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjRadialGauge.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};WjRadialGauge.prototype.addEventListener=function(t,a,r,n){var o=this;void 0===n&&(n=!1);var i=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior,u=i.getZone(this);u&&i.outsideZoneEvents[a]?u.runOutsideAngular((function(){e.prototype.addEventListener.call(o,t,a,r,n)})):e.prototype.addEventListener.call(this,t,a,r,n)};var t;WjRadialGauge.meta={outputs:wjRadialGaugeMeta.outputs,changeEvents:{valueChanged:["value"]}};return WjRadialGauge=t=__decorate([core_1.Component({selector:wjRadialGaugeMeta.selector,template:wjRadialGaugeMeta.template,inputs:wjRadialGaugeMeta.inputs,outputs:wjRadialGaugeMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return t}))}].concat(wjRadialGaugeMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjRadialGauge)}(wjcGauge.RadialGauge);exports.WjRadialGauge=WjRadialGauge;var wjRangeMeta={selector:"wj-range",template:"",inputs:["wjProperty","color","min","max","name","thickness"],outputs:["initialized"],providers:[]};exports.wjRangeMeta=wjRangeMeta;var WjRange=function(e){__extends(WjRange,e);function WjRange(t,a,r){var n=e.call(this)||this;n.isInitialized=!1;n.wjProperty="ranges";n._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(n,t,a,r);n.created();return n}t=WjRange;WjRange.prototype.created=function(){};WjRange.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjRange.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjRange.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var t;WjRange.meta={outputs:wjRangeMeta.outputs};return WjRange=t=__decorate([core_1.Component({selector:wjRangeMeta.selector,template:wjRangeMeta.template,inputs:wjRangeMeta.inputs,outputs:wjRangeMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return t}))}].concat(wjRangeMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjRange)}(wjcGauge.Range);exports.WjRange=WjRange;var moduleExports=[WjLinearGauge,WjBulletGraph,WjRadialGauge,WjRange],WjGaugeModule=function(){function WjGaugeModule(){}return WjGaugeModule=__decorate([core_1.NgModule({imports:[common_1.CommonModule],declarations:moduleExports.slice(),exports:moduleExports.slice()})],WjGaugeModule)}();exports.WjGaugeModule=WjGaugeModule;
@@ -0,0 +1 @@
1
+ [{"__symbolic":"module","version":3,"metadata":{"___keepComment":{"__symbolic":"error","message":"Variable not initialized","line":35,"character":19},"wjLinearGaugeMeta":{"selector":"wj-linear-gauge","template":"<div><ng-content></ng-content></div>","inputs":["asyncBindings","wjModelProperty","isDisabled","tabOrder","value","min","max","origin","isReadOnly","handleWheel","step","format","thickness","hasShadow","isAnimated","showText","showTicks","showTickText","showRanges","stackRanges","thumbSize","tickSpacing","getText","direction"],"outputs":["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","valueChangedNg: valueChanged","valueChangePC: valueChange"],"providers":[{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALUE_ACCESSOR"},"useFactory":{"__symbolic":"reference","module":"@mescius/wijmo.angular2legacy.directivebase","name":"WjValueAccessorFactory"},"multi":true,"deps":["WjComponent"]}]},"WjLinearGauge":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.gauge","name":"LinearGauge"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjLinearGaugeMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjLinearGaugeMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjLinearGaugeMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjLinearGaugeMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjLinearGauge"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjLinearGaugeMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"addEventListener":[{"__symbolic":"method"}]},"statics":{"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjLinearGaugeMeta"},"member":"outputs"},"changeEvents":{"valueChanged":["value"],"$quoted$":["valueChanged"]}}}},"wjBulletGraphMeta":{"selector":"wj-bullet-graph","template":"<div><ng-content></ng-content></div>","inputs":["asyncBindings","wjModelProperty","isDisabled","tabOrder","value","min","max","origin","isReadOnly","handleWheel","step","format","thickness","hasShadow","isAnimated","showText","showTicks","showTickText","showRanges","stackRanges","thumbSize","tickSpacing","getText","direction","target","good","bad"],"outputs":["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","valueChangedNg: valueChanged","valueChangePC: valueChange"],"providers":[{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALUE_ACCESSOR"},"useFactory":{"__symbolic":"reference","module":"@mescius/wijmo.angular2legacy.directivebase","name":"WjValueAccessorFactory"},"multi":true,"deps":["WjComponent"]}]},"WjBulletGraph":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.gauge","name":"BulletGraph"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjBulletGraphMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjBulletGraphMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjBulletGraphMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjBulletGraphMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjBulletGraph"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjBulletGraphMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"addEventListener":[{"__symbolic":"method"}]},"statics":{"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjBulletGraphMeta"},"member":"outputs"},"changeEvents":{"valueChanged":["value"],"$quoted$":["valueChanged"]}}}},"wjRadialGaugeMeta":{"selector":"wj-radial-gauge","template":"<div><ng-content></ng-content></div>","inputs":["asyncBindings","wjModelProperty","isDisabled","tabOrder","value","min","max","origin","isReadOnly","handleWheel","step","format","thickness","hasShadow","isAnimated","showText","showTicks","showTickText","showRanges","stackRanges","thumbSize","tickSpacing","getText","autoScale","startAngle","sweepAngle","needleShape","needleLength","needleElement"],"outputs":["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","valueChangedNg: valueChanged","valueChangePC: valueChange"],"providers":[{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALUE_ACCESSOR"},"useFactory":{"__symbolic":"reference","module":"@mescius/wijmo.angular2legacy.directivebase","name":"WjValueAccessorFactory"},"multi":true,"deps":["WjComponent"]}]},"WjRadialGauge":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.gauge","name":"RadialGauge"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjRadialGaugeMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjRadialGaugeMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjRadialGaugeMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjRadialGaugeMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjRadialGauge"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjRadialGaugeMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"addEventListener":[{"__symbolic":"method"}]},"statics":{"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjRadialGaugeMeta"},"member":"outputs"},"changeEvents":{"valueChanged":["value"],"$quoted$":["valueChanged"]}}}},"wjRangeMeta":{"selector":"wj-range","template":"","inputs":["wjProperty","color","min","max","name","thickness"],"outputs":["initialized"],"providers":[]},"WjRange":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.gauge","name":"Range"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjRangeMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjRangeMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjRangeMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjRangeMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjRange"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjRangeMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}]},"statics":{"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjRangeMeta"},"member":"outputs"}}}},"WjGaugeModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"declarations":[{"__symbolic":"reference","name":"WjLinearGauge"},{"__symbolic":"reference","name":"WjBulletGraph"},{"__symbolic":"reference","name":"WjRadialGauge"},{"__symbolic":"reference","name":"WjRange"}],"exports":[{"__symbolic":"reference","name":"WjLinearGauge"},{"__symbolic":"reference","name":"WjBulletGraph"},{"__symbolic":"reference","name":"WjRadialGauge"},{"__symbolic":"reference","name":"WjRange"}]}]}]}}},{"__symbolic":"module","version":1,"metadata":{"___keepComment":{"__symbolic":"error","message":"Variable not initialized","line":35,"character":19},"wjLinearGaugeMeta":{"selector":"wj-linear-gauge","template":"<div><ng-content></ng-content></div>","inputs":["asyncBindings","wjModelProperty","isDisabled","tabOrder","value","min","max","origin","isReadOnly","handleWheel","step","format","thickness","hasShadow","isAnimated","showText","showTicks","showTickText","showRanges","stackRanges","thumbSize","tickSpacing","getText","direction"],"outputs":["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","valueChangedNg: valueChanged","valueChangePC: valueChange"],"providers":[{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALUE_ACCESSOR"},"useFactory":{"__symbolic":"reference","module":"@mescius/wijmo.angular2legacy.directivebase","name":"WjValueAccessorFactory"},"multi":true,"deps":["WjComponent"]}]},"WjLinearGauge":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.gauge","name":"LinearGauge"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjLinearGaugeMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjLinearGaugeMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjLinearGaugeMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjLinearGaugeMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjLinearGauge"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjLinearGaugeMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"addEventListener":[{"__symbolic":"method"}]},"statics":{"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjLinearGaugeMeta"},"member":"outputs"},"changeEvents":{"valueChanged":["value"]}}}},"wjBulletGraphMeta":{"selector":"wj-bullet-graph","template":"<div><ng-content></ng-content></div>","inputs":["asyncBindings","wjModelProperty","isDisabled","tabOrder","value","min","max","origin","isReadOnly","handleWheel","step","format","thickness","hasShadow","isAnimated","showText","showTicks","showTickText","showRanges","stackRanges","thumbSize","tickSpacing","getText","direction","target","good","bad"],"outputs":["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","valueChangedNg: valueChanged","valueChangePC: valueChange"],"providers":[{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALUE_ACCESSOR"},"useFactory":{"__symbolic":"reference","module":"@mescius/wijmo.angular2legacy.directivebase","name":"WjValueAccessorFactory"},"multi":true,"deps":["WjComponent"]}]},"WjBulletGraph":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.gauge","name":"BulletGraph"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjBulletGraphMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjBulletGraphMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjBulletGraphMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjBulletGraphMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjBulletGraph"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjBulletGraphMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"addEventListener":[{"__symbolic":"method"}]},"statics":{"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjBulletGraphMeta"},"member":"outputs"},"changeEvents":{"valueChanged":["value"]}}}},"wjRadialGaugeMeta":{"selector":"wj-radial-gauge","template":"<div><ng-content></ng-content></div>","inputs":["asyncBindings","wjModelProperty","isDisabled","tabOrder","value","min","max","origin","isReadOnly","handleWheel","step","format","thickness","hasShadow","isAnimated","showText","showTicks","showTickText","showRanges","stackRanges","thumbSize","tickSpacing","getText","autoScale","startAngle","sweepAngle","needleShape","needleLength","needleElement"],"outputs":["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","valueChangedNg: valueChanged","valueChangePC: valueChange"],"providers":[{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALUE_ACCESSOR"},"useFactory":{"__symbolic":"reference","module":"@mescius/wijmo.angular2legacy.directivebase","name":"WjValueAccessorFactory"},"multi":true,"deps":["WjComponent"]}]},"WjRadialGauge":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.gauge","name":"RadialGauge"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjRadialGaugeMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjRadialGaugeMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjRadialGaugeMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjRadialGaugeMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjRadialGauge"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjRadialGaugeMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"addEventListener":[{"__symbolic":"method"}]},"statics":{"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjRadialGaugeMeta"},"member":"outputs"},"changeEvents":{"valueChanged":["value"]}}}},"wjRangeMeta":{"selector":"wj-range","template":"","inputs":["wjProperty","color","min","max","name","thickness"],"outputs":["initialized"],"providers":[]},"WjRange":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.gauge","name":"Range"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjRangeMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjRangeMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjRangeMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjRangeMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjRange"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjRangeMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}]},"statics":{"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjRangeMeta"},"member":"outputs"}}}},"WjGaugeModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"declarations":[{"__symbolic":"reference","name":"WjLinearGauge"},{"__symbolic":"reference","name":"WjBulletGraph"},{"__symbolic":"reference","name":"WjRadialGauge"},{"__symbolic":"reference","name":"WjRange"}],"exports":[{"__symbolic":"reference","name":"WjLinearGauge"},{"__symbolic":"reference","name":"WjBulletGraph"},{"__symbolic":"reference","name":"WjRadialGauge"},{"__symbolic":"reference","name":"WjRange"}]}]}]}}}]
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@mescius/wijmo.angular2legacy.gauge",
3
+ "version": "5.20232.939",
4
+ "description": "UI library for pure JS, Angular, React, Vue and more...",
5
+ "author": "MESCIUS inc",
6
+ "license": "Commercial",
7
+ "main": "./index.js",
8
+ "types": "./index.d.ts",
9
+ "dependencies": {
10
+ "@mescius/wijmo": "5.20232.939",
11
+ "@mescius/wijmo.gauge": "5.20232.939",
12
+ "@mescius/wijmo.angular2legacy.directivebase": "5.20232.939"
13
+ },
14
+ "homepage": "https://developer.mescius.com/wijmo",
15
+ "bugs": {
16
+ "url": "https://developer.mescius.com/forums/wijmo"
17
+ },
18
+ "keywords": [
19
+ "control",
20
+ "component",
21
+ "ui",
22
+ "control library",
23
+ "component library",
24
+ "ui library",
25
+ "control-library",
26
+ "component-library",
27
+ "ui-library",
28
+ "grid",
29
+ "data grid",
30
+ "data-grid",
31
+ "datagrid",
32
+ "angular grid",
33
+ "react grid",
34
+ "vue grid",
35
+ "angular-grid",
36
+ "react-grid",
37
+ "vue-grid"
38
+ ],
39
+ "module": "./es5-esm.js",
40
+ "esm5": "./es5-esm.js",
41
+ "wj-esm5": "./es5-esm.js",
42
+ "es2015Cjs": "./es2015-commonjs.js",
43
+ "wj-es2015Cjs": "./es2015-commonjs.js",
44
+ "esm2015": "./es2015-esm.js",
45
+ "wj-esm2015": "./es2015-esm.js"
46
+ }