@mescius/wijmo.angular2.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/COMMERCIAL-LICENSE.html +485 -0
- package/README.md +363 -0
- package/es2015-commonjs.js +14 -0
- package/es2015-esm.js +68 -0
- package/es5-esm.js +68 -0
- package/index.d.ts +265 -0
- package/index.js +69 -0
- package/package.json +46 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,265 @@
|
|
|
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.angular2.chart.hierarchical}
|
|
15
|
+
* Contains Angular 2 components for the <b>wijmo.chart.hierarchical</b> module.
|
|
16
|
+
*
|
|
17
|
+
* <b>wijmo.angular2.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.angular2.chart.hierarchical';
|
|
21
|
+
*
|
|
22
|
+
* @Component({
|
|
23
|
+
* directives: [wjHierarchical.WjSunburst],
|
|
24
|
+
* template: `
|
|
25
|
+
* <wj-sunburst [itemsSource]="data" [binding]="'y'" [bindingX]="'x'">
|
|
26
|
+
* </wj-sunburst>`,
|
|
27
|
+
* selector: 'my-cmp',
|
|
28
|
+
* })
|
|
29
|
+
* export class MyCmp {
|
|
30
|
+
* data: any[];
|
|
31
|
+
* }</pre>
|
|
32
|
+
*
|
|
33
|
+
*/
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
*/
|
|
37
|
+
import * as ɵngcc0 from '@angular/core';
|
|
38
|
+
import * as ɵngcc1 from '@angular/common';
|
|
39
|
+
export declare var ___keepComment: any;
|
|
40
|
+
import { EventEmitter, AfterViewInit, ElementRef, Injector, OnInit, OnDestroy } from '@angular/core';
|
|
41
|
+
import { IWjComponentMetadata, IWjComponentMeta } from '@grapecity/wijmo.angular2.directivebase';
|
|
42
|
+
import * as wjcChartHierarchical from '@grapecity/wijmo.chart.hierarchical';
|
|
43
|
+
declare var wjSunburstMeta: IWjComponentMeta;
|
|
44
|
+
export { wjSunburstMeta };
|
|
45
|
+
/**
|
|
46
|
+
* Angular 2 component for the {@link wijmo.chart.hierarchical.Sunburst} control.
|
|
47
|
+
*
|
|
48
|
+
* Use the <b>wj-sunburst</b> component to add <b>Sunburst</b> controls to your
|
|
49
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
50
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
51
|
+
*
|
|
52
|
+
* The <b>WjSunburst</b> component is derived from the <b>Sunburst</b> control and
|
|
53
|
+
* inherits all its properties, events and methods.
|
|
54
|
+
*
|
|
55
|
+
* The <b>wj-sunburst</b> component may contain a {@link wijmo.angular2.chart.WjFlexChartLegend} child component.
|
|
56
|
+
*/
|
|
57
|
+
export declare class WjSunburst extends wjcChartHierarchical.Sunburst implements OnInit, OnDestroy, AfterViewInit {
|
|
58
|
+
static readonly meta: IWjComponentMetadata;
|
|
59
|
+
private _wjBehaviour;
|
|
60
|
+
/**
|
|
61
|
+
* Indicates whether the component has been initialized by Angular.
|
|
62
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
63
|
+
*/
|
|
64
|
+
isInitialized: boolean;
|
|
65
|
+
/**
|
|
66
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
67
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
68
|
+
*/
|
|
69
|
+
initialized: EventEmitter<any>;
|
|
70
|
+
/**
|
|
71
|
+
* Defines a name of a property represented by [(ngModel)] directive (if specified).
|
|
72
|
+
* Default value is ''.
|
|
73
|
+
*/
|
|
74
|
+
wjModelProperty: string;
|
|
75
|
+
/**
|
|
76
|
+
* Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
|
|
77
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
78
|
+
* In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
|
|
79
|
+
*/
|
|
80
|
+
gotFocusNg: EventEmitter<any>;
|
|
81
|
+
/**
|
|
82
|
+
* Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
|
|
83
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
84
|
+
* In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
|
|
85
|
+
*/
|
|
86
|
+
lostFocusNg: EventEmitter<any>;
|
|
87
|
+
/**
|
|
88
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
|
|
89
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
90
|
+
* In template bindings use the conventional <b>refreshing</b> Wijmo event name.
|
|
91
|
+
*/
|
|
92
|
+
refreshingNg: EventEmitter<any>;
|
|
93
|
+
/**
|
|
94
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
|
|
95
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
96
|
+
* In template bindings use the conventional <b>refreshed</b> Wijmo event name.
|
|
97
|
+
*/
|
|
98
|
+
refreshedNg: EventEmitter<any>;
|
|
99
|
+
/**
|
|
100
|
+
* Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
|
|
101
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
102
|
+
* In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
|
|
103
|
+
*/
|
|
104
|
+
invalidInputNg: EventEmitter<any>;
|
|
105
|
+
/**
|
|
106
|
+
* Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
|
|
107
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
108
|
+
* In template bindings use the conventional <b>rendering</b> Wijmo event name.
|
|
109
|
+
*/
|
|
110
|
+
renderingNg: EventEmitter<any>;
|
|
111
|
+
/**
|
|
112
|
+
* Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
|
|
113
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
114
|
+
* In template bindings use the conventional <b>rendered</b> Wijmo event name.
|
|
115
|
+
*/
|
|
116
|
+
renderedNg: EventEmitter<any>;
|
|
117
|
+
/**
|
|
118
|
+
* Angular (EventEmitter) version of the Wijmo <b>selectionChanged</b> event for programmatic access.
|
|
119
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
120
|
+
* In template bindings use the conventional <b>selectionChanged</b> Wijmo event name.
|
|
121
|
+
*/
|
|
122
|
+
selectionChangedNg: EventEmitter<any>;
|
|
123
|
+
/**
|
|
124
|
+
* Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanging</b> event for programmatic access.
|
|
125
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
126
|
+
* In template bindings use the conventional <b>itemsSourceChanging</b> Wijmo event name.
|
|
127
|
+
*/
|
|
128
|
+
itemsSourceChangingNg: EventEmitter<any>;
|
|
129
|
+
/**
|
|
130
|
+
* Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanged</b> event for programmatic access.
|
|
131
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
132
|
+
* In template bindings use the conventional <b>itemsSourceChanged</b> Wijmo event name.
|
|
133
|
+
*/
|
|
134
|
+
itemsSourceChangedNg: EventEmitter<any>;
|
|
135
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
136
|
+
/**
|
|
137
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
138
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
139
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
140
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
141
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
142
|
+
*/
|
|
143
|
+
created(): void;
|
|
144
|
+
ngOnInit(): void;
|
|
145
|
+
ngAfterViewInit(): void;
|
|
146
|
+
ngOnDestroy(): void;
|
|
147
|
+
addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
|
|
148
|
+
tooltipContent: any;
|
|
149
|
+
labelContent: any;
|
|
150
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjSunburst, [null, null, { optional: true; skipSelf: true; }]>;
|
|
151
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjSunburst, "wj-sunburst", never, { "wjModelProperty": "wjModelProperty"; "isDisabled": "isDisabled"; "tabOrder": "tabOrder"; "binding": "binding"; "footer": "footer"; "header": "header"; "selectionMode": "selectionMode"; "palette": "palette"; "plotMargin": "plotMargin"; "footerStyle": "footerStyle"; "headerStyle": "headerStyle"; "tooltipContent": "tooltipContent"; "itemsSource": "itemsSource"; "bindingName": "bindingName"; "innerRadius": "innerRadius"; "isAnimated": "isAnimated"; "offset": "offset"; "reversed": "reversed"; "startAngle": "startAngle"; "selectedIndex": "selectedIndex"; "selectedItemPosition": "selectedItemPosition"; "selectedItemOffset": "selectedItemOffset"; "itemFormatter": "itemFormatter"; "labelContent": "labelContent"; "childItemsPath": "childItemsPath"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "renderingNg": "rendering"; "renderedNg": "rendered"; "selectionChangedNg": "selectionChanged"; "itemsSourceChangingNg": "itemsSourceChanging"; "itemsSourceChangedNg": "itemsSourceChanged"; }, never, ["*"], false, never>;
|
|
152
|
+
}
|
|
153
|
+
declare var wjTreeMapMeta: IWjComponentMeta;
|
|
154
|
+
export { wjTreeMapMeta };
|
|
155
|
+
/**
|
|
156
|
+
* Angular 2 component for the {@link wijmo.chart.hierarchical.TreeMap} control.
|
|
157
|
+
*
|
|
158
|
+
* Use the <b>wj-tree-map</b> component to add <b>TreeMap</b> controls to your
|
|
159
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
160
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
161
|
+
*
|
|
162
|
+
* The <b>WjTreeMap</b> component is derived from the <b>TreeMap</b> control and
|
|
163
|
+
* inherits all its properties, events and methods.
|
|
164
|
+
*/
|
|
165
|
+
export declare class WjTreeMap extends wjcChartHierarchical.TreeMap implements OnInit, OnDestroy, AfterViewInit {
|
|
166
|
+
static readonly meta: IWjComponentMetadata;
|
|
167
|
+
private _wjBehaviour;
|
|
168
|
+
/**
|
|
169
|
+
* Indicates whether the component has been initialized by Angular.
|
|
170
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
171
|
+
*/
|
|
172
|
+
isInitialized: boolean;
|
|
173
|
+
/**
|
|
174
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
175
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
176
|
+
*/
|
|
177
|
+
initialized: EventEmitter<any>;
|
|
178
|
+
/**
|
|
179
|
+
* Defines a name of a property represented by [(ngModel)] directive (if specified).
|
|
180
|
+
* Default value is ''.
|
|
181
|
+
*/
|
|
182
|
+
wjModelProperty: string;
|
|
183
|
+
/**
|
|
184
|
+
* Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
|
|
185
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
186
|
+
* In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
|
|
187
|
+
*/
|
|
188
|
+
gotFocusNg: EventEmitter<any>;
|
|
189
|
+
/**
|
|
190
|
+
* Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
|
|
191
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
192
|
+
* In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
|
|
193
|
+
*/
|
|
194
|
+
lostFocusNg: EventEmitter<any>;
|
|
195
|
+
/**
|
|
196
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
|
|
197
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
198
|
+
* In template bindings use the conventional <b>refreshing</b> Wijmo event name.
|
|
199
|
+
*/
|
|
200
|
+
refreshingNg: EventEmitter<any>;
|
|
201
|
+
/**
|
|
202
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
|
|
203
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
204
|
+
* In template bindings use the conventional <b>refreshed</b> Wijmo event name.
|
|
205
|
+
*/
|
|
206
|
+
refreshedNg: EventEmitter<any>;
|
|
207
|
+
/**
|
|
208
|
+
* Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
|
|
209
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
210
|
+
* In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
|
|
211
|
+
*/
|
|
212
|
+
invalidInputNg: EventEmitter<any>;
|
|
213
|
+
/**
|
|
214
|
+
* Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
|
|
215
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
216
|
+
* In template bindings use the conventional <b>rendering</b> Wijmo event name.
|
|
217
|
+
*/
|
|
218
|
+
renderingNg: EventEmitter<any>;
|
|
219
|
+
/**
|
|
220
|
+
* Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
|
|
221
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
222
|
+
* In template bindings use the conventional <b>rendered</b> Wijmo event name.
|
|
223
|
+
*/
|
|
224
|
+
renderedNg: EventEmitter<any>;
|
|
225
|
+
/**
|
|
226
|
+
* Angular (EventEmitter) version of the Wijmo <b>selectionChanged</b> event for programmatic access.
|
|
227
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
228
|
+
* In template bindings use the conventional <b>selectionChanged</b> Wijmo event name.
|
|
229
|
+
*/
|
|
230
|
+
selectionChangedNg: EventEmitter<any>;
|
|
231
|
+
/**
|
|
232
|
+
* Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanging</b> event for programmatic access.
|
|
233
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
234
|
+
* In template bindings use the conventional <b>itemsSourceChanging</b> Wijmo event name.
|
|
235
|
+
*/
|
|
236
|
+
itemsSourceChangingNg: EventEmitter<any>;
|
|
237
|
+
/**
|
|
238
|
+
* Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanged</b> event for programmatic access.
|
|
239
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
240
|
+
* In template bindings use the conventional <b>itemsSourceChanged</b> Wijmo event name.
|
|
241
|
+
*/
|
|
242
|
+
itemsSourceChangedNg: EventEmitter<any>;
|
|
243
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
244
|
+
/**
|
|
245
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
246
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
247
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
248
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
249
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
250
|
+
*/
|
|
251
|
+
created(): void;
|
|
252
|
+
ngOnInit(): void;
|
|
253
|
+
ngAfterViewInit(): void;
|
|
254
|
+
ngOnDestroy(): void;
|
|
255
|
+
addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
|
|
256
|
+
tooltipContent: any;
|
|
257
|
+
labelContent: any;
|
|
258
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjTreeMap, [null, null, { optional: true; skipSelf: true; }]>;
|
|
259
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjTreeMap, "wj-tree-map", never, { "wjModelProperty": "wjModelProperty"; "isDisabled": "isDisabled"; "tabOrder": "tabOrder"; "binding": "binding"; "footer": "footer"; "header": "header"; "selectionMode": "selectionMode"; "palette": "palette"; "plotMargin": "plotMargin"; "footerStyle": "footerStyle"; "headerStyle": "headerStyle"; "tooltipContent": "tooltipContent"; "itemsSource": "itemsSource"; "bindingName": "bindingName"; "maxDepth": "maxDepth"; "type": "type"; "labelContent": "labelContent"; "childItemsPath": "childItemsPath"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "renderingNg": "rendering"; "renderedNg": "rendered"; "selectionChangedNg": "selectionChanged"; "itemsSourceChangingNg": "itemsSourceChanging"; "itemsSourceChangedNg": "itemsSourceChanged"; }, never, never, false, never>;
|
|
260
|
+
}
|
|
261
|
+
export declare class WjChartHierarchicalModule {
|
|
262
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjChartHierarchicalModule, never>;
|
|
263
|
+
static ɵmod: ɵngcc0.ɵɵNgModuleDeclaration<WjChartHierarchicalModule, [typeof WjSunburst, typeof WjTreeMap], [typeof ɵngcc1.CommonModule], [typeof WjSunburst, typeof WjTreeMap]>;
|
|
264
|
+
static ɵinj: ɵngcc0.ɵɵInjectorDeclaration<WjChartHierarchicalModule>;
|
|
265
|
+
}
|
package/index.js
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
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 ɵngcc0 = require('@angular/core');
|
|
15
|
+
var ɵngcc1 = require('@angular/common');
|
|
16
|
+
|
|
17
|
+
var _c0 = ["*"];
|
|
18
|
+
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_angular2_directivebase_1=require("@mescius/wijmo.angular2.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_angular2_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_angular2_directivebase_1.WjDirectiveBehavior.getHostElement(t,r))||this;o.isInitialized=!1;o._wjBehaviour=wijmo_angular2_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_angular2_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};
|
|
19
|
+
WjSunburst.ɵfac = function WjSunburst_Factory(t) { return new (t || WjSunburst)(ɵngcc0.ɵɵdirectiveInject(core_1.ElementRef), ɵngcc0.ɵɵdirectiveInject(core_1.Injector), ɵngcc0.ɵɵdirectiveInject("WjComponent", 12)); };
|
|
20
|
+
WjSunburst.ɵcmp = /*@__PURE__*/ ɵngcc0.ɵɵdefineComponent({ type: WjSunburst, selectors: [["wj-sunburst"]], inputs: { wjModelProperty: "wjModelProperty", isDisabled: "isDisabled", tabOrder: "tabOrder", binding: "binding", footer: "footer", header: "header", selectionMode: "selectionMode", palette: "palette", plotMargin: "plotMargin", footerStyle: "footerStyle", headerStyle: "headerStyle", tooltipContent: "tooltipContent", itemsSource: "itemsSource", bindingName: "bindingName", innerRadius: "innerRadius", isAnimated: "isAnimated", offset: "offset", reversed: "reversed", startAngle: "startAngle", selectedIndex: "selectedIndex", selectedItemPosition: "selectedItemPosition", selectedItemOffset: "selectedItemOffset", itemFormatter: "itemFormatter", labelContent: "labelContent", childItemsPath: "childItemsPath" }, outputs: { initialized: "initialized", gotFocusNg: "gotFocus", lostFocusNg: "lostFocus", refreshingNg: "refreshing", refreshedNg: "refreshed", invalidInputNg: "invalidInput", renderingNg: "rendering", renderedNg: "rendered", selectionChangedNg: "selectionChanged", itemsSourceChangingNg: "itemsSourceChanging", itemsSourceChangedNg: "itemsSourceChanged" }, features: [ɵngcc0.ɵɵProvidersFeature([{ provide: "WjComponent", useExisting: core_1.forwardRef((function () { return t; })) }].concat(wjSunburstMeta.providers))], ngContentSelectors: _c0, decls: 2, vars: 0, template: function WjSunburst_Template(rf, ctx) { if (rf & 1) {
|
|
21
|
+
ɵngcc0.ɵɵprojectionDef();
|
|
22
|
+
ɵngcc0.ɵɵelementStart(0, "div");
|
|
23
|
+
ɵngcc0.ɵɵprojection(1);
|
|
24
|
+
ɵngcc0.ɵɵelementEnd();
|
|
25
|
+
} }, encapsulation: 2 });
|
|
26
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && ɵngcc0.ɵsetClassMetadata(WjSunburst, [{
|
|
27
|
+
type: core_1.Component,
|
|
28
|
+
args: [{ 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) }]
|
|
29
|
+
}], function () { return [{ type: undefined, decorators: [{
|
|
30
|
+
type: core_1.Inject,
|
|
31
|
+
args: [core_1.ElementRef]
|
|
32
|
+
}] }, { type: undefined, decorators: [{
|
|
33
|
+
type: core_1.Inject,
|
|
34
|
+
args: [core_1.Injector]
|
|
35
|
+
}] }, { type: undefined, decorators: [{
|
|
36
|
+
type: core_1.Inject,
|
|
37
|
+
args: ["WjComponent"]
|
|
38
|
+
}, {
|
|
39
|
+
type: core_1.SkipSelf
|
|
40
|
+
}, {
|
|
41
|
+
type: core_1.Optional
|
|
42
|
+
}] }]; }, null); })();return WjSunburst=t=__decorate([,__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_angular2_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_angular2_directivebase_1.WjDirectiveBehavior.getHostElement(t,r))||this;o.isInitialized=!1;o._wjBehaviour=wijmo_angular2_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_angular2_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};
|
|
43
|
+
WjTreeMap.ɵfac = function WjTreeMap_Factory(t) { return new (t || WjTreeMap)(ɵngcc0.ɵɵdirectiveInject(core_1.ElementRef), ɵngcc0.ɵɵdirectiveInject(core_1.Injector), ɵngcc0.ɵɵdirectiveInject("WjComponent", 12)); };
|
|
44
|
+
WjTreeMap.ɵcmp = /*@__PURE__*/ ɵngcc0.ɵɵdefineComponent({ type: WjTreeMap, selectors: [["wj-tree-map"]], inputs: { wjModelProperty: "wjModelProperty", isDisabled: "isDisabled", tabOrder: "tabOrder", binding: "binding", footer: "footer", header: "header", selectionMode: "selectionMode", palette: "palette", plotMargin: "plotMargin", footerStyle: "footerStyle", headerStyle: "headerStyle", tooltipContent: "tooltipContent", itemsSource: "itemsSource", bindingName: "bindingName", maxDepth: "maxDepth", type: "type", labelContent: "labelContent", childItemsPath: "childItemsPath" }, outputs: { initialized: "initialized", gotFocusNg: "gotFocus", lostFocusNg: "lostFocus", refreshingNg: "refreshing", refreshedNg: "refreshed", invalidInputNg: "invalidInput", renderingNg: "rendering", renderedNg: "rendered", selectionChangedNg: "selectionChanged", itemsSourceChangingNg: "itemsSourceChanging", itemsSourceChangedNg: "itemsSourceChanged" }, features: [ɵngcc0.ɵɵProvidersFeature([{ provide: "WjComponent", useExisting: core_1.forwardRef((function () { return t; })) }].concat(wjTreeMapMeta.providers))], decls: 0, vars: 0, template: function WjTreeMap_Template(rf, ctx) { }, encapsulation: 2 });
|
|
45
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && ɵngcc0.ɵsetClassMetadata(WjTreeMap, [{
|
|
46
|
+
type: core_1.Component,
|
|
47
|
+
args: [{ 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) }]
|
|
48
|
+
}], function () { return [{ type: undefined, decorators: [{
|
|
49
|
+
type: core_1.Inject,
|
|
50
|
+
args: [core_1.ElementRef]
|
|
51
|
+
}] }, { type: undefined, decorators: [{
|
|
52
|
+
type: core_1.Inject,
|
|
53
|
+
args: [core_1.Injector]
|
|
54
|
+
}] }, { type: undefined, decorators: [{
|
|
55
|
+
type: core_1.Inject,
|
|
56
|
+
args: ["WjComponent"]
|
|
57
|
+
}, {
|
|
58
|
+
type: core_1.SkipSelf
|
|
59
|
+
}, {
|
|
60
|
+
type: core_1.Optional
|
|
61
|
+
}] }]; }, null); })();return WjTreeMap=t=__decorate([,__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(){}
|
|
62
|
+
WjChartHierarchicalModule.ɵfac = function WjChartHierarchicalModule_Factory(t) { return new (t || WjChartHierarchicalModule)(); };
|
|
63
|
+
WjChartHierarchicalModule.ɵmod = /*@__PURE__*/ ɵngcc0.ɵɵdefineNgModule({ type: WjChartHierarchicalModule });
|
|
64
|
+
WjChartHierarchicalModule.ɵinj = /*@__PURE__*/ ɵngcc0.ɵɵdefineInjector({ imports: [common_1.CommonModule] });
|
|
65
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && ɵngcc0.ɵsetClassMetadata(WjChartHierarchicalModule, [{
|
|
66
|
+
type: core_1.NgModule,
|
|
67
|
+
args: [{ imports: [common_1.CommonModule], declarations: moduleExports.slice(), exports: moduleExports.slice() }]
|
|
68
|
+
}], function () { return []; }, null); })();
|
|
69
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && ɵngcc0.ɵɵsetNgModuleScope(WjChartHierarchicalModule, { declarations: [WjSunburst, WjTreeMap], imports: [ɵngcc1.CommonModule], exports: [WjSunburst, WjTreeMap] }); })();return WjChartHierarchicalModule}();exports.WjChartHierarchicalModule=WjChartHierarchicalModule;
|
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mescius/wijmo.angular2.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.angular2.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
|
+
}
|