@mescius/wijmo.angular2legacy.chart.hierarchical 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,256 @@
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.chart.hierarchical}
15
+ * Contains Angular 2 components for the <b>wijmo.chart.hierarchical</b> module.
16
+ *
17
+ * <b>wijmo.angular2legacy.chart.hierarchical</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 wjHierarchical from 'wijmo/wijmo.angular2legacy.chart.hierarchical';
21
+ * &nbsp;
22
+ * &#64;Component({
23
+ * directives: [wjHierarchical.WjSunburst],
24
+ * template: `
25
+ * &lt;wj-sunburst [itemsSource]="data" [binding]="'y'" [bindingX]="'x'"&gt;
26
+ * &lt;/wj-sunburst&gt;`,
27
+ * selector: 'my-cmp',
28
+ * })
29
+ * export class MyCmp {
30
+ * data: any[];
31
+ * }</pre>
32
+ *
33
+ */
34
+ /**
35
+ *
36
+ */
37
+ export declare var ___keepComment: any;
38
+ import { EventEmitter, AfterViewInit, ElementRef, Injector, OnInit, OnDestroy } from '@angular/core';
39
+ import { IWjComponentMetadata, IWjComponentMeta } from '@grapecity/wijmo.angular2legacy.directivebase';
40
+ import * as wjcChartHierarchical from '@grapecity/wijmo.chart.hierarchical';
41
+ declare var wjSunburstMeta: IWjComponentMeta;
42
+ export { wjSunburstMeta };
43
+ /**
44
+ * Angular 2 component for the {@link wijmo.chart.hierarchical.Sunburst} control.
45
+ *
46
+ * Use the <b>wj-sunburst</b> component to add <b>Sunburst</b> controls to your
47
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
48
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
49
+ *
50
+ * The <b>WjSunburst</b> component is derived from the <b>Sunburst</b> control and
51
+ * inherits all its properties, events and methods.
52
+ *
53
+ * The <b>wj-sunburst</b> component may contain a {@link wijmo.angular2legacy.chart.WjFlexChartLegend} child component.
54
+ */
55
+ export declare class WjSunburst extends wjcChartHierarchical.Sunburst implements OnInit, OnDestroy, AfterViewInit {
56
+ static readonly meta: IWjComponentMetadata;
57
+ private _wjBehaviour;
58
+ /**
59
+ * Indicates whether the component has been initialized by Angular.
60
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
61
+ */
62
+ isInitialized: boolean;
63
+ /**
64
+ * This event is triggered after the component has been initialized by Angular, that is
65
+ * all bound properties have been assigned and child components (if any) have been initialized.
66
+ */
67
+ initialized: EventEmitter<any>;
68
+ /**
69
+ * Defines a name of a property represented by [(ngModel)] directive (if specified).
70
+ * Default value is ''.
71
+ */
72
+ wjModelProperty: string;
73
+ /**
74
+ * Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
75
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
76
+ * In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
77
+ */
78
+ gotFocusNg: EventEmitter<any>;
79
+ /**
80
+ * Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
81
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
82
+ * In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
83
+ */
84
+ lostFocusNg: EventEmitter<any>;
85
+ /**
86
+ * Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
87
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
88
+ * In template bindings use the conventional <b>refreshing</b> Wijmo event name.
89
+ */
90
+ refreshingNg: EventEmitter<any>;
91
+ /**
92
+ * Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
93
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
94
+ * In template bindings use the conventional <b>refreshed</b> Wijmo event name.
95
+ */
96
+ refreshedNg: EventEmitter<any>;
97
+ /**
98
+ * Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
99
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
100
+ * In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
101
+ */
102
+ invalidInputNg: EventEmitter<any>;
103
+ /**
104
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
105
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
106
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
107
+ */
108
+ renderingNg: EventEmitter<any>;
109
+ /**
110
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
111
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
112
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
113
+ */
114
+ renderedNg: EventEmitter<any>;
115
+ /**
116
+ * Angular (EventEmitter) version of the Wijmo <b>selectionChanged</b> event for programmatic access.
117
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
118
+ * In template bindings use the conventional <b>selectionChanged</b> Wijmo event name.
119
+ */
120
+ selectionChangedNg: EventEmitter<any>;
121
+ /**
122
+ * Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanging</b> event for programmatic access.
123
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
124
+ * In template bindings use the conventional <b>itemsSourceChanging</b> Wijmo event name.
125
+ */
126
+ itemsSourceChangingNg: EventEmitter<any>;
127
+ /**
128
+ * Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanged</b> event for programmatic access.
129
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
130
+ * In template bindings use the conventional <b>itemsSourceChanged</b> Wijmo event name.
131
+ */
132
+ itemsSourceChangedNg: EventEmitter<any>;
133
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
134
+ /**
135
+ * If you create a custom component inherited from a Wijmo component, you can override this
136
+ * method and perform necessary initializations that you usually do in a class constructor.
137
+ * This method is called in the last line of a Wijmo component constructor and allows you
138
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
139
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
140
+ */
141
+ created(): void;
142
+ ngOnInit(): void;
143
+ ngAfterViewInit(): void;
144
+ ngOnDestroy(): void;
145
+ addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
146
+ tooltipContent: any;
147
+ labelContent: any;
148
+ }
149
+ declare var wjTreeMapMeta: IWjComponentMeta;
150
+ export { wjTreeMapMeta };
151
+ /**
152
+ * Angular 2 component for the {@link wijmo.chart.hierarchical.TreeMap} control.
153
+ *
154
+ * Use the <b>wj-tree-map</b> component to add <b>TreeMap</b> controls to your
155
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
156
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
157
+ *
158
+ * The <b>WjTreeMap</b> component is derived from the <b>TreeMap</b> control and
159
+ * inherits all its properties, events and methods.
160
+ */
161
+ export declare class WjTreeMap extends wjcChartHierarchical.TreeMap implements OnInit, OnDestroy, AfterViewInit {
162
+ static readonly meta: IWjComponentMetadata;
163
+ private _wjBehaviour;
164
+ /**
165
+ * Indicates whether the component has been initialized by Angular.
166
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
167
+ */
168
+ isInitialized: boolean;
169
+ /**
170
+ * This event is triggered after the component has been initialized by Angular, that is
171
+ * all bound properties have been assigned and child components (if any) have been initialized.
172
+ */
173
+ initialized: EventEmitter<any>;
174
+ /**
175
+ * Defines a name of a property represented by [(ngModel)] directive (if specified).
176
+ * Default value is ''.
177
+ */
178
+ wjModelProperty: string;
179
+ /**
180
+ * Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
181
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
182
+ * In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
183
+ */
184
+ gotFocusNg: EventEmitter<any>;
185
+ /**
186
+ * Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
187
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
188
+ * In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
189
+ */
190
+ lostFocusNg: EventEmitter<any>;
191
+ /**
192
+ * Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
193
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
194
+ * In template bindings use the conventional <b>refreshing</b> Wijmo event name.
195
+ */
196
+ refreshingNg: EventEmitter<any>;
197
+ /**
198
+ * Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
199
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
200
+ * In template bindings use the conventional <b>refreshed</b> Wijmo event name.
201
+ */
202
+ refreshedNg: EventEmitter<any>;
203
+ /**
204
+ * Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
205
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
206
+ * In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
207
+ */
208
+ invalidInputNg: EventEmitter<any>;
209
+ /**
210
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
211
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
212
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
213
+ */
214
+ renderingNg: EventEmitter<any>;
215
+ /**
216
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
217
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
218
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
219
+ */
220
+ renderedNg: EventEmitter<any>;
221
+ /**
222
+ * Angular (EventEmitter) version of the Wijmo <b>selectionChanged</b> event for programmatic access.
223
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
224
+ * In template bindings use the conventional <b>selectionChanged</b> Wijmo event name.
225
+ */
226
+ selectionChangedNg: EventEmitter<any>;
227
+ /**
228
+ * Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanging</b> event for programmatic access.
229
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
230
+ * In template bindings use the conventional <b>itemsSourceChanging</b> Wijmo event name.
231
+ */
232
+ itemsSourceChangingNg: EventEmitter<any>;
233
+ /**
234
+ * Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanged</b> event for programmatic access.
235
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
236
+ * In template bindings use the conventional <b>itemsSourceChanged</b> Wijmo event name.
237
+ */
238
+ itemsSourceChangedNg: EventEmitter<any>;
239
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
240
+ /**
241
+ * If you create a custom component inherited from a Wijmo component, you can override this
242
+ * method and perform necessary initializations that you usually do in a class constructor.
243
+ * This method is called in the last line of a Wijmo component constructor and allows you
244
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
245
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
246
+ */
247
+ created(): void;
248
+ ngOnInit(): void;
249
+ ngAfterViewInit(): void;
250
+ ngOnDestroy(): void;
251
+ addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
252
+ tooltipContent: any;
253
+ labelContent: any;
254
+ }
255
+ export declare class WjChartHierarchicalModule {
256
+ }
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 r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(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,r,n){var o,i=arguments.length,a=i<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(e,t,r,n);else for(var u=e.length-1;u>=0;u--)(o=e[u])&&(a=(i<3?o(a):i>3?o(t,r,a):o(t,r))||a);return i>3&&a&&Object.defineProperty(t,r,a),a},__param=this&&this.__param||function(e,t){return function(r,n){t(r,n,e)}},__importStar=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var r in e)Object.hasOwnProperty.call(e,r)&&(t[r]=e[r]);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"),wjcChartHierarchical=__importStar(require("@mescius/wijmo.chart.hierarchical")),wjSunburstMeta={selector:"wj-sunburst",template:"<div><ng-content></ng-content></div>",inputs:["wjModelProperty","isDisabled","tabOrder","binding","footer","header","selectionMode","palette","plotMargin","footerStyle","headerStyle","tooltipContent","itemsSource","bindingName","innerRadius","isAnimated","offset","reversed","startAngle","selectedIndex","selectedItemPosition","selectedItemOffset","itemFormatter","labelContent","childItemsPath"],outputs:["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","renderingNg: rendering","renderedNg: rendered","selectionChangedNg: selectionChanged","itemsSourceChangingNg: itemsSourceChanging","itemsSourceChangedNg: itemsSourceChanged"],providers:[{provide:forms_1.NG_VALUE_ACCESSOR,useFactory:wijmo.angular2legacy_directivebase_1.WjValueAccessorFactory,multi:!0,deps:["WjComponent"]}]};exports.wjSunburstMeta=wjSunburstMeta;var WjSunburst=function(e){__extends(WjSunburst,e);function WjSunburst(t,r,n){var o=e.call(this,wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.getHostElement(t,r))||this;o.isInitialized=!1;o._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(o,t,r,n);o.created();return o}t=WjSunburst;WjSunburst.prototype.created=function(){};WjSunburst.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjSunburst.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjSunburst.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};WjSunburst.prototype.addEventListener=function(t,r,n,o){var i=this;void 0===o&&(o=!1);var a=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior,u=a.getZone(this);u&&a.outsideZoneEvents[r]?u.runOutsideAngular((function(){e.prototype.addEventListener.call(i,t,r,n,o)})):e.prototype.addEventListener.call(this,t,r,n,o)};Object.defineProperty(WjSunburst.prototype,"tooltipContent",{get:function(){return this.tooltip.content},set:function(e){this.tooltip.content=e},enumerable:!0,configurable:!0});Object.defineProperty(WjSunburst.prototype,"labelContent",{get:function(){return this.dataLabel.content},set:function(e){this.dataLabel.content=e},enumerable:!0,configurable:!0});var t;WjSunburst.meta={outputs:wjSunburstMeta.outputs};return WjSunburst=t=__decorate([core_1.Component({selector:wjSunburstMeta.selector,template:wjSunburstMeta.template,inputs:wjSunburstMeta.inputs,outputs:wjSunburstMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return t}))}].concat(wjSunburstMeta.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())],WjSunburst)}(wjcChartHierarchical.Sunburst);exports.WjSunburst=WjSunburst;var wjTreeMapMeta={selector:"wj-tree-map",template:"",inputs:["wjModelProperty","isDisabled","tabOrder","binding","footer","header","selectionMode","palette","plotMargin","footerStyle","headerStyle","tooltipContent","itemsSource","bindingName","maxDepth","type","labelContent","childItemsPath"],outputs:["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","renderingNg: rendering","renderedNg: rendered","selectionChangedNg: selectionChanged","itemsSourceChangingNg: itemsSourceChanging","itemsSourceChangedNg: itemsSourceChanged"],providers:[{provide:forms_1.NG_VALUE_ACCESSOR,useFactory:wijmo.angular2legacy_directivebase_1.WjValueAccessorFactory,multi:!0,deps:["WjComponent"]}]};exports.wjTreeMapMeta=wjTreeMapMeta;var WjTreeMap=function(e){__extends(WjTreeMap,e);function WjTreeMap(t,r,n){var o=e.call(this,wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.getHostElement(t,r))||this;o.isInitialized=!1;o._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(o,t,r,n);o.created();return o}t=WjTreeMap;WjTreeMap.prototype.created=function(){};WjTreeMap.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjTreeMap.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjTreeMap.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};WjTreeMap.prototype.addEventListener=function(t,r,n,o){var i=this;void 0===o&&(o=!1);var a=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior,u=a.getZone(this);u&&a.outsideZoneEvents[r]?u.runOutsideAngular((function(){e.prototype.addEventListener.call(i,t,r,n,o)})):e.prototype.addEventListener.call(this,t,r,n,o)};Object.defineProperty(WjTreeMap.prototype,"tooltipContent",{get:function(){return this.tooltip.content},set:function(e){this.tooltip.content=e},enumerable:!0,configurable:!0});Object.defineProperty(WjTreeMap.prototype,"labelContent",{get:function(){return this.dataLabel.content},set:function(e){this.dataLabel.content=e},enumerable:!0,configurable:!0});var t;WjTreeMap.meta={outputs:wjTreeMapMeta.outputs};return WjTreeMap=t=__decorate([core_1.Component({selector:wjTreeMapMeta.selector,template:wjTreeMapMeta.template,inputs:wjTreeMapMeta.inputs,outputs:wjTreeMapMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return t}))}].concat(wjTreeMapMeta.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())],WjTreeMap)}(wjcChartHierarchical.TreeMap);exports.WjTreeMap=WjTreeMap;var moduleExports=[WjSunburst,WjTreeMap],WjChartHierarchicalModule=function(){function WjChartHierarchicalModule(){}return WjChartHierarchicalModule=__decorate([core_1.NgModule({imports:[common_1.CommonModule],declarations:moduleExports.slice(),exports:moduleExports.slice()})],WjChartHierarchicalModule)}();exports.WjChartHierarchicalModule=WjChartHierarchicalModule;
@@ -0,0 +1 @@
1
+ [{"__symbolic":"module","version":3,"metadata":{"___keepComment":{"__symbolic":"error","message":"Variable not initialized","line":37,"character":19},"wjSunburstMeta":{"selector":"wj-sunburst","template":"<div><ng-content></ng-content></div>","inputs":["wjModelProperty","isDisabled","tabOrder","binding","footer","header","selectionMode","palette","plotMargin","footerStyle","headerStyle","tooltipContent","itemsSource","bindingName","innerRadius","isAnimated","offset","reversed","startAngle","selectedIndex","selectedItemPosition","selectedItemOffset","itemFormatter","labelContent","childItemsPath"],"outputs":["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","renderingNg: rendering","renderedNg: rendered","selectionChangedNg: selectionChanged","itemsSourceChangingNg: itemsSourceChanging","itemsSourceChangedNg: itemsSourceChanged"],"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"]}]},"WjSunburst":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.chart.hierarchical","name":"Sunburst"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjSunburstMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjSunburstMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjSunburstMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjSunburstMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjSunburst"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjSunburstMeta"},"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":"wjSunburstMeta"},"member":"outputs"}}}},"wjTreeMapMeta":{"selector":"wj-tree-map","template":"","inputs":["wjModelProperty","isDisabled","tabOrder","binding","footer","header","selectionMode","palette","plotMargin","footerStyle","headerStyle","tooltipContent","itemsSource","bindingName","maxDepth","type","labelContent","childItemsPath"],"outputs":["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","renderingNg: rendering","renderedNg: rendered","selectionChangedNg: selectionChanged","itemsSourceChangingNg: itemsSourceChanging","itemsSourceChangedNg: itemsSourceChanged"],"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"]}]},"WjTreeMap":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.chart.hierarchical","name":"TreeMap"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTreeMapMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTreeMapMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTreeMapMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTreeMapMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjTreeMap"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTreeMapMeta"},"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":"wjTreeMapMeta"},"member":"outputs"}}}},"WjChartHierarchicalModule":{"__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":"WjSunburst"},{"__symbolic":"reference","name":"WjTreeMap"}],"exports":[{"__symbolic":"reference","name":"WjSunburst"},{"__symbolic":"reference","name":"WjTreeMap"}]}]}]}}},{"__symbolic":"module","version":1,"metadata":{"___keepComment":{"__symbolic":"error","message":"Variable not initialized","line":37,"character":19},"wjSunburstMeta":{"selector":"wj-sunburst","template":"<div><ng-content></ng-content></div>","inputs":["wjModelProperty","isDisabled","tabOrder","binding","footer","header","selectionMode","palette","plotMargin","footerStyle","headerStyle","tooltipContent","itemsSource","bindingName","innerRadius","isAnimated","offset","reversed","startAngle","selectedIndex","selectedItemPosition","selectedItemOffset","itemFormatter","labelContent","childItemsPath"],"outputs":["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","renderingNg: rendering","renderedNg: rendered","selectionChangedNg: selectionChanged","itemsSourceChangingNg: itemsSourceChanging","itemsSourceChangedNg: itemsSourceChanged"],"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"]}]},"WjSunburst":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.chart.hierarchical","name":"Sunburst"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjSunburstMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjSunburstMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjSunburstMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjSunburstMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjSunburst"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjSunburstMeta"},"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":"wjSunburstMeta"},"member":"outputs"}}}},"wjTreeMapMeta":{"selector":"wj-tree-map","template":"","inputs":["wjModelProperty","isDisabled","tabOrder","binding","footer","header","selectionMode","palette","plotMargin","footerStyle","headerStyle","tooltipContent","itemsSource","bindingName","maxDepth","type","labelContent","childItemsPath"],"outputs":["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","renderingNg: rendering","renderedNg: rendered","selectionChangedNg: selectionChanged","itemsSourceChangingNg: itemsSourceChanging","itemsSourceChangedNg: itemsSourceChanged"],"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"]}]},"WjTreeMap":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.chart.hierarchical","name":"TreeMap"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTreeMapMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTreeMapMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTreeMapMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTreeMapMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjTreeMap"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTreeMapMeta"},"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":"wjTreeMapMeta"},"member":"outputs"}}}},"WjChartHierarchicalModule":{"__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":"WjSunburst"},{"__symbolic":"reference","name":"WjTreeMap"}],"exports":[{"__symbolic":"reference","name":"WjSunburst"},{"__symbolic":"reference","name":"WjTreeMap"}]}]}]}}}]
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@mescius/wijmo.angular2legacy.chart.hierarchical",
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.chart.hierarchical": "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
+ }