@mescius/wijmo.angular2.chart.radar 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 +92 -0
- package/es5-esm.js +92 -0
- package/index.d.ts +308 -0
- package/index.js +93 -0
- package/package.json +46 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,308 @@
|
|
|
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.radar}
|
|
15
|
+
* Contains Angular 2 components for the <b>wijmo.chart.radar</b> module.
|
|
16
|
+
*
|
|
17
|
+
* <b>wijmo.angular2.chart.radar</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 wjRadar from 'wijmo/wijmo.angular2.chart.radar';
|
|
21
|
+
*
|
|
22
|
+
* @Component({
|
|
23
|
+
* directives: [wjRadar.WjFlexRadar, wjRadar.WjFlexRadarSeries],
|
|
24
|
+
* template: `
|
|
25
|
+
* <wj-flex-radar [itemsSource]="data" [bindingX]="'x'">
|
|
26
|
+
* <wj-flex-radar-series [binding]="'y'"></wj-flex-radar-series>
|
|
27
|
+
* </wj-flex-radar>`,
|
|
28
|
+
* selector: 'my-cmp',
|
|
29
|
+
* })
|
|
30
|
+
* export class MyCmp {
|
|
31
|
+
* data: any[];
|
|
32
|
+
* }</pre>
|
|
33
|
+
*
|
|
34
|
+
*/
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
*/
|
|
38
|
+
import * as ɵngcc0 from '@angular/core';
|
|
39
|
+
import * as ɵngcc1 from '@angular/common';
|
|
40
|
+
export declare var ___keepComment: any;
|
|
41
|
+
import { EventEmitter, AfterViewInit, ElementRef, Injector, OnInit, OnDestroy } from '@angular/core';
|
|
42
|
+
import { IWjComponentMetadata, IWjComponentMeta } from '@grapecity/wijmo.angular2.directivebase';
|
|
43
|
+
import * as wjcChartRadar from '@grapecity/wijmo.chart.radar';
|
|
44
|
+
declare var wjFlexRadarMeta: IWjComponentMeta;
|
|
45
|
+
export { wjFlexRadarMeta };
|
|
46
|
+
/**
|
|
47
|
+
* Angular 2 component for the {@link wijmo.chart.radar.FlexRadar} control.
|
|
48
|
+
*
|
|
49
|
+
* Use the <b>wj-flex-radar</b> component to add <b>FlexRadar</b> controls to your
|
|
50
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
51
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
52
|
+
*
|
|
53
|
+
* The <b>WjFlexRadar</b> component is derived from the <b>FlexRadar</b> control and
|
|
54
|
+
* inherits all its properties, events and methods.
|
|
55
|
+
*
|
|
56
|
+
* The <b>wj-flex-radar</b> component may contain the following child components:
|
|
57
|
+
* {@link wijmo.angular2.chart.animation.WjFlexChartAnimation}
|
|
58
|
+
* , {@link wijmo.angular2.chart.radar.WjFlexRadarAxis}
|
|
59
|
+
* , {@link wijmo.angular2.chart.radar.WjFlexRadarSeries}
|
|
60
|
+
* and {@link wijmo.angular2.chart.WjFlexChartLegend}.
|
|
61
|
+
*/
|
|
62
|
+
export declare class WjFlexRadar extends wjcChartRadar.FlexRadar implements OnInit, OnDestroy, AfterViewInit {
|
|
63
|
+
static readonly meta: IWjComponentMetadata;
|
|
64
|
+
private _wjBehaviour;
|
|
65
|
+
/**
|
|
66
|
+
* Indicates whether the component has been initialized by Angular.
|
|
67
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
68
|
+
*/
|
|
69
|
+
isInitialized: boolean;
|
|
70
|
+
/**
|
|
71
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
72
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
73
|
+
*/
|
|
74
|
+
initialized: EventEmitter<any>;
|
|
75
|
+
/**
|
|
76
|
+
* Defines a name of a property represented by [(ngModel)] directive (if specified).
|
|
77
|
+
* Default value is ''.
|
|
78
|
+
*/
|
|
79
|
+
wjModelProperty: string;
|
|
80
|
+
/**
|
|
81
|
+
* Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
|
|
82
|
+
* See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
|
|
83
|
+
*/
|
|
84
|
+
asyncBindings: boolean;
|
|
85
|
+
/**
|
|
86
|
+
* Angular (EventEmitter) version of the Wijmo <b>gotFocus</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>gotFocus</b> Wijmo event name.
|
|
89
|
+
*/
|
|
90
|
+
gotFocusNg: EventEmitter<any>;
|
|
91
|
+
/**
|
|
92
|
+
* Angular (EventEmitter) version of the Wijmo <b>lostFocus</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>lostFocus</b> Wijmo event name.
|
|
95
|
+
*/
|
|
96
|
+
lostFocusNg: EventEmitter<any>;
|
|
97
|
+
/**
|
|
98
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshing</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>refreshing</b> Wijmo event name.
|
|
101
|
+
*/
|
|
102
|
+
refreshingNg: EventEmitter<any>;
|
|
103
|
+
/**
|
|
104
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshed</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>refreshed</b> Wijmo event name.
|
|
107
|
+
*/
|
|
108
|
+
refreshedNg: EventEmitter<any>;
|
|
109
|
+
/**
|
|
110
|
+
* Angular (EventEmitter) version of the Wijmo <b>invalidInput</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>invalidInput</b> Wijmo event name.
|
|
113
|
+
*/
|
|
114
|
+
invalidInputNg: EventEmitter<any>;
|
|
115
|
+
/**
|
|
116
|
+
* Angular (EventEmitter) version of the Wijmo <b>rendering</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>rendering</b> Wijmo event name.
|
|
119
|
+
*/
|
|
120
|
+
renderingNg: EventEmitter<any>;
|
|
121
|
+
/**
|
|
122
|
+
* Angular (EventEmitter) version of the Wijmo <b>rendered</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>rendered</b> Wijmo event name.
|
|
125
|
+
*/
|
|
126
|
+
renderedNg: EventEmitter<any>;
|
|
127
|
+
/**
|
|
128
|
+
* Angular (EventEmitter) version of the Wijmo <b>selectionChanged</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>selectionChanged</b> Wijmo event name.
|
|
131
|
+
*/
|
|
132
|
+
selectionChangedNg: EventEmitter<any>;
|
|
133
|
+
/**
|
|
134
|
+
* This event is used to implement two-way binding to the <b>selection</b> property.
|
|
135
|
+
* It's triggered when the property value changes, with the event argument holding the new property value.
|
|
136
|
+
* You can bind handlers to this event in templates using the <b>selectionChange</b> event name.
|
|
137
|
+
*/
|
|
138
|
+
selectionChangePC: EventEmitter<any>;
|
|
139
|
+
/**
|
|
140
|
+
* Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanging</b> event for programmatic access.
|
|
141
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
142
|
+
* In template bindings use the conventional <b>itemsSourceChanging</b> Wijmo event name.
|
|
143
|
+
*/
|
|
144
|
+
itemsSourceChangingNg: EventEmitter<any>;
|
|
145
|
+
/**
|
|
146
|
+
* Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanged</b> event for programmatic access.
|
|
147
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
148
|
+
* In template bindings use the conventional <b>itemsSourceChanged</b> Wijmo event name.
|
|
149
|
+
*/
|
|
150
|
+
itemsSourceChangedNg: EventEmitter<any>;
|
|
151
|
+
/**
|
|
152
|
+
* Angular (EventEmitter) version of the Wijmo <b>seriesVisibilityChanged</b> event for programmatic access.
|
|
153
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
154
|
+
* In template bindings use the conventional <b>seriesVisibilityChanged</b> Wijmo event name.
|
|
155
|
+
*/
|
|
156
|
+
seriesVisibilityChangedNg: EventEmitter<any>;
|
|
157
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
158
|
+
/**
|
|
159
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
160
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
161
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
162
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
163
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
164
|
+
*/
|
|
165
|
+
created(): void;
|
|
166
|
+
ngOnInit(): void;
|
|
167
|
+
ngAfterViewInit(): void;
|
|
168
|
+
ngOnDestroy(): void;
|
|
169
|
+
addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
|
|
170
|
+
tooltipContent: any;
|
|
171
|
+
labelContent: any;
|
|
172
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjFlexRadar, [null, null, { optional: true; skipSelf: true; }]>;
|
|
173
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjFlexRadar, "wj-flex-radar", never, { "asyncBindings": "asyncBindings"; "wjModelProperty": "wjModelProperty"; "renderEngine": "renderEngine"; "isDisabled": "isDisabled"; "tabOrder": "tabOrder"; "binding": "binding"; "footer": "footer"; "header": "header"; "selectionMode": "selectionMode"; "palette": "palette"; "plotMargin": "plotMargin"; "footerStyle": "footerStyle"; "headerStyle": "headerStyle"; "tooltipContent": "tooltipContent"; "itemsSource": "itemsSource"; "bindingX": "bindingX"; "interpolateNulls": "interpolateNulls"; "legendToggle": "legendToggle"; "symbolSize": "symbolSize"; "options": "options"; "selection": "selection"; "itemFormatter": "itemFormatter"; "labelContent": "labelContent"; "chartType": "chartType"; "startAngle": "startAngle"; "totalAngle": "totalAngle"; "reversed": "reversed"; "stacking": "stacking"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "renderingNg": "rendering"; "renderedNg": "rendered"; "selectionChangedNg": "selectionChanged"; "selectionChangePC": "selectionChange"; "itemsSourceChangingNg": "itemsSourceChanging"; "itemsSourceChangedNg": "itemsSourceChanged"; "seriesVisibilityChangedNg": "seriesVisibilityChanged"; }, never, ["*"], false, never>;
|
|
174
|
+
}
|
|
175
|
+
declare var wjFlexRadarAxisMeta: IWjComponentMeta;
|
|
176
|
+
export { wjFlexRadarAxisMeta };
|
|
177
|
+
/**
|
|
178
|
+
* Angular 2 component for the {@link wijmo.chart.radar.FlexRadarAxis} class.
|
|
179
|
+
*
|
|
180
|
+
* The <b>wj-flex-radar-axis</b> component must be
|
|
181
|
+
* contained in one of the following components:
|
|
182
|
+
* {@link wijmo.angular2.chart.radar.WjFlexRadar}
|
|
183
|
+
* or {@link wijmo.angular2.chart.radar.WjFlexRadarSeries}.
|
|
184
|
+
*
|
|
185
|
+
* Use the <b>wj-flex-radar-axis</b> component to add <b>FlexRadarAxis</b> controls to your
|
|
186
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
187
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
188
|
+
*
|
|
189
|
+
* The <b>WjFlexRadarAxis</b> component is derived from the <b>FlexRadarAxis</b> class and
|
|
190
|
+
* inherits all its properties, events and methods.
|
|
191
|
+
*/
|
|
192
|
+
export declare class WjFlexRadarAxis extends wjcChartRadar.FlexRadarAxis implements OnInit, OnDestroy, AfterViewInit {
|
|
193
|
+
static readonly meta: IWjComponentMetadata;
|
|
194
|
+
private _wjBehaviour;
|
|
195
|
+
/**
|
|
196
|
+
* Indicates whether the component has been initialized by Angular.
|
|
197
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
198
|
+
*/
|
|
199
|
+
isInitialized: boolean;
|
|
200
|
+
/**
|
|
201
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
202
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
203
|
+
*/
|
|
204
|
+
initialized: EventEmitter<any>;
|
|
205
|
+
/**
|
|
206
|
+
* Gets or sets a name of a property that this component is assigned to.
|
|
207
|
+
* Default value is 'axes'.
|
|
208
|
+
*/
|
|
209
|
+
wjProperty: string;
|
|
210
|
+
/**
|
|
211
|
+
* Angular (EventEmitter) version of the Wijmo <b>rangeChanged</b> event for programmatic access.
|
|
212
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
213
|
+
* In template bindings use the conventional <b>rangeChanged</b> Wijmo event name.
|
|
214
|
+
*/
|
|
215
|
+
rangeChangedNg: EventEmitter<any>;
|
|
216
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
217
|
+
/**
|
|
218
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
219
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
220
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
221
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
222
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
223
|
+
*/
|
|
224
|
+
created(): void;
|
|
225
|
+
ngOnInit(): void;
|
|
226
|
+
ngAfterViewInit(): void;
|
|
227
|
+
ngOnDestroy(): void;
|
|
228
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjFlexRadarAxis, [null, null, { optional: true; skipSelf: true; }]>;
|
|
229
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjFlexRadarAxis, "wj-flex-radar-axis", never, { "wjProperty": "wjProperty"; "axisLine": "axisLine"; "format": "format"; "labels": "labels"; "majorGrid": "majorGrid"; "majorTickMarks": "majorTickMarks"; "majorUnit": "majorUnit"; "max": "max"; "min": "min"; "position": "position"; "reversed": "reversed"; "title": "title"; "labelAngle": "labelAngle"; "minorGrid": "minorGrid"; "minorTickMarks": "minorTickMarks"; "minorUnit": "minorUnit"; "origin": "origin"; "logBase": "logBase"; "plotArea": "plotArea"; "labelAlign": "labelAlign"; "name": "name"; "overlappingLabels": "overlappingLabels"; "labelPadding": "labelPadding"; "itemFormatter": "itemFormatter"; "itemsSource": "itemsSource"; "binding": "binding"; "labelMin": "labelMin"; "labelMax": "labelMax"; }, { "initialized": "initialized"; "rangeChangedNg": "rangeChanged"; }, never, never, false, never>;
|
|
230
|
+
}
|
|
231
|
+
declare var wjFlexRadarSeriesMeta: IWjComponentMeta;
|
|
232
|
+
export { wjFlexRadarSeriesMeta };
|
|
233
|
+
/**
|
|
234
|
+
* Angular 2 component for the {@link wijmo.chart.radar.FlexRadarSeries} class.
|
|
235
|
+
*
|
|
236
|
+
* The <b>wj-flex-radar-series</b> component must be
|
|
237
|
+
* contained in a {@link wijmo.angular2.chart.radar.WjFlexRadar} component.
|
|
238
|
+
*
|
|
239
|
+
* Use the <b>wj-flex-radar-series</b> component to add <b>FlexRadarSeries</b> controls to your
|
|
240
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
241
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
242
|
+
*
|
|
243
|
+
* The <b>WjFlexRadarSeries</b> component is derived from the <b>FlexRadarSeries</b> class and
|
|
244
|
+
* inherits all its properties, events and methods.
|
|
245
|
+
*
|
|
246
|
+
* The <b>wj-flex-radar-series</b> component may contain a {@link wijmo.angular2.chart.radar.WjFlexRadarAxis} child component.
|
|
247
|
+
*/
|
|
248
|
+
export declare class WjFlexRadarSeries extends wjcChartRadar.FlexRadarSeries implements OnInit, OnDestroy, AfterViewInit {
|
|
249
|
+
static readonly meta: IWjComponentMetadata;
|
|
250
|
+
private _wjBehaviour;
|
|
251
|
+
/**
|
|
252
|
+
* Indicates whether the component has been initialized by Angular.
|
|
253
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
254
|
+
*/
|
|
255
|
+
isInitialized: boolean;
|
|
256
|
+
/**
|
|
257
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
258
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
259
|
+
*/
|
|
260
|
+
initialized: EventEmitter<any>;
|
|
261
|
+
/**
|
|
262
|
+
* Gets or sets a name of a property that this component is assigned to.
|
|
263
|
+
* Default value is 'series'.
|
|
264
|
+
*/
|
|
265
|
+
wjProperty: string;
|
|
266
|
+
/**
|
|
267
|
+
* Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
|
|
268
|
+
* See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
|
|
269
|
+
*/
|
|
270
|
+
asyncBindings: boolean;
|
|
271
|
+
/**
|
|
272
|
+
* Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
|
|
273
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
274
|
+
* In template bindings use the conventional <b>rendering</b> Wijmo event name.
|
|
275
|
+
*/
|
|
276
|
+
renderingNg: EventEmitter<any>;
|
|
277
|
+
/**
|
|
278
|
+
* Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
|
|
279
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
280
|
+
* In template bindings use the conventional <b>rendered</b> Wijmo event name.
|
|
281
|
+
*/
|
|
282
|
+
renderedNg: EventEmitter<any>;
|
|
283
|
+
/**
|
|
284
|
+
* This event is used to implement two-way binding to the <b>visibility</b> property.
|
|
285
|
+
* It's triggered when the property value changes, with the event argument holding the new property value.
|
|
286
|
+
* You can bind handlers to this event in templates using the <b>visibilityChange</b> event name.
|
|
287
|
+
*/
|
|
288
|
+
visibilityChangePC: EventEmitter<any>;
|
|
289
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
290
|
+
/**
|
|
291
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
292
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
293
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
294
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
295
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
296
|
+
*/
|
|
297
|
+
created(): void;
|
|
298
|
+
ngOnInit(): void;
|
|
299
|
+
ngAfterViewInit(): void;
|
|
300
|
+
ngOnDestroy(): void;
|
|
301
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjFlexRadarSeries, [null, null, { optional: true; skipSelf: true; }]>;
|
|
302
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjFlexRadarSeries, "wj-flex-radar-series", never, { "asyncBindings": "asyncBindings"; "wjProperty": "wjProperty"; "axisX": "axisX"; "axisY": "axisY"; "binding": "binding"; "bindingX": "bindingX"; "cssClass": "cssClass"; "name": "name"; "style": "style"; "altStyle": "altStyle"; "symbolMarker": "symbolMarker"; "symbolSize": "symbolSize"; "symbolStyle": "symbolStyle"; "visibility": "visibility"; "itemsSource": "itemsSource"; "interpolateNulls": "interpolateNulls"; "tooltipContent": "tooltipContent"; "itemFormatter": "itemFormatter"; "chartType": "chartType"; }, { "initialized": "initialized"; "renderingNg": "rendering"; "renderedNg": "rendered"; "visibilityChangePC": "visibilityChange"; }, never, ["*"], false, never>;
|
|
303
|
+
}
|
|
304
|
+
export declare class WjChartRadarModule {
|
|
305
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjChartRadarModule, never>;
|
|
306
|
+
static ɵmod: ɵngcc0.ɵɵNgModuleDeclaration<WjChartRadarModule, [typeof WjFlexRadar, typeof WjFlexRadarAxis, typeof WjFlexRadarSeries], [typeof ɵngcc1.CommonModule], [typeof WjFlexRadar, typeof WjFlexRadarAxis, typeof WjFlexRadarSeries]>;
|
|
307
|
+
static ɵinj: ɵngcc0.ɵɵInjectorDeclaration<WjChartRadarModule>;
|
|
308
|
+
}
|
package/index.js
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
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,a){var i,n=arguments.length,o=n<3?t:null===a?a=Object.getOwnPropertyDescriptor(t,r):a;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,a);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(n<3?i(o):n>3?i(t,r,o):i(t,r))||o);return n>3&&o&&Object.defineProperty(t,r,o),o},__param=this&&this.__param||function(e,t){return function(r,a){t(r,a,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"),wjcChartRadar=__importStar(require("@mescius/wijmo.chart.radar")),wjFlexRadarMeta={selector:"wj-flex-radar",template:"<div><ng-content></ng-content></div>",inputs:["asyncBindings","wjModelProperty","renderEngine","isDisabled","tabOrder","binding","footer","header","selectionMode","palette","plotMargin","footerStyle","headerStyle","tooltipContent","itemsSource","bindingX","interpolateNulls","legendToggle","symbolSize","options","selection","itemFormatter","labelContent","chartType","startAngle","totalAngle","reversed","stacking"],outputs:["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","renderingNg: rendering","renderedNg: rendered","selectionChangedNg: selectionChanged","selectionChangePC: selectionChange","itemsSourceChangingNg: itemsSourceChanging","itemsSourceChangedNg: itemsSourceChanged","seriesVisibilityChangedNg: seriesVisibilityChanged"],providers:[{provide:forms_1.NG_VALUE_ACCESSOR,useFactory:wijmo_angular2_directivebase_1.WjValueAccessorFactory,multi:!0,deps:["WjComponent"]}]};exports.wjFlexRadarMeta=wjFlexRadarMeta;var WjFlexRadar=function(e){__extends(WjFlexRadar,e);function WjFlexRadar(t,r,a){var i=e.call(this,wijmo_angular2_directivebase_1.WjDirectiveBehavior.getHostElement(t,r))||this;i.isInitialized=!1;i._wjBehaviour=wijmo_angular2_directivebase_1.WjDirectiveBehavior.attach(i,t,r,a);i.created();return i}t=WjFlexRadar;WjFlexRadar.prototype.created=function(){};WjFlexRadar.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjFlexRadar.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjFlexRadar.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};WjFlexRadar.prototype.addEventListener=function(t,r,a,i){var n=this;void 0===i&&(i=!1);var o=wijmo_angular2_directivebase_1.WjDirectiveBehavior,s=o.getZone(this);s&&o.outsideZoneEvents[r]?s.runOutsideAngular((function(){e.prototype.addEventListener.call(n,t,r,a,i)})):e.prototype.addEventListener.call(this,t,r,a,i)};Object.defineProperty(WjFlexRadar.prototype,"tooltipContent",{get:function(){return this.tooltip.content},set:function(e){this.tooltip.content=e},enumerable:!0,configurable:!0});Object.defineProperty(WjFlexRadar.prototype,"labelContent",{get:function(){return this.dataLabel.content},set:function(e){this.dataLabel.content=e},enumerable:!0,configurable:!0});var t;WjFlexRadar.meta={outputs:wjFlexRadarMeta.outputs,changeEvents:{selectionChanged:["selection"]}};
|
|
19
|
+
WjFlexRadar.ɵfac = function WjFlexRadar_Factory(t) { return new (t || WjFlexRadar)(ɵngcc0.ɵɵdirectiveInject(core_1.ElementRef), ɵngcc0.ɵɵdirectiveInject(core_1.Injector), ɵngcc0.ɵɵdirectiveInject("WjComponent", 12)); };
|
|
20
|
+
WjFlexRadar.ɵcmp = /*@__PURE__*/ ɵngcc0.ɵɵdefineComponent({ type: WjFlexRadar, selectors: [["wj-flex-radar"]], inputs: { asyncBindings: "asyncBindings", wjModelProperty: "wjModelProperty", renderEngine: "renderEngine", isDisabled: "isDisabled", tabOrder: "tabOrder", binding: "binding", footer: "footer", header: "header", selectionMode: "selectionMode", palette: "palette", plotMargin: "plotMargin", footerStyle: "footerStyle", headerStyle: "headerStyle", tooltipContent: "tooltipContent", itemsSource: "itemsSource", bindingX: "bindingX", interpolateNulls: "interpolateNulls", legendToggle: "legendToggle", symbolSize: "symbolSize", options: "options", selection: "selection", itemFormatter: "itemFormatter", labelContent: "labelContent", chartType: "chartType", startAngle: "startAngle", totalAngle: "totalAngle", reversed: "reversed", stacking: "stacking" }, outputs: { initialized: "initialized", gotFocusNg: "gotFocus", lostFocusNg: "lostFocus", refreshingNg: "refreshing", refreshedNg: "refreshed", invalidInputNg: "invalidInput", renderingNg: "rendering", renderedNg: "rendered", selectionChangedNg: "selectionChanged", selectionChangePC: "selectionChange", itemsSourceChangingNg: "itemsSourceChanging", itemsSourceChangedNg: "itemsSourceChanged", seriesVisibilityChangedNg: "seriesVisibilityChanged" }, features: [ɵngcc0.ɵɵProvidersFeature([{ provide: "WjComponent", useExisting: core_1.forwardRef((function () { return t; })) }].concat(wjFlexRadarMeta.providers))], ngContentSelectors: _c0, decls: 2, vars: 0, template: function WjFlexRadar_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(WjFlexRadar, [{
|
|
27
|
+
type: core_1.Component,
|
|
28
|
+
args: [{ selector: wjFlexRadarMeta.selector, template: wjFlexRadarMeta.template, inputs: wjFlexRadarMeta.inputs, outputs: wjFlexRadarMeta.outputs, providers: [{ provide: "WjComponent", useExisting: core_1.forwardRef((function () { return t; })) }].concat(wjFlexRadarMeta.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 WjFlexRadar=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())],WjFlexRadar)}(wjcChartRadar.FlexRadar);exports.WjFlexRadar=WjFlexRadar;var wjFlexRadarAxisMeta={selector:"wj-flex-radar-axis",template:"",inputs:["wjProperty","axisLine","format","labels","majorGrid","majorTickMarks","majorUnit","max","min","position","reversed","title","labelAngle","minorGrid","minorTickMarks","minorUnit","origin","logBase","plotArea","labelAlign","name","overlappingLabels","labelPadding","itemFormatter","itemsSource","binding","labelMin","labelMax"],outputs:["initialized","rangeChangedNg: rangeChanged"],providers:[]};exports.wjFlexRadarAxisMeta=wjFlexRadarAxisMeta;var WjFlexRadarAxis=function(e){__extends(WjFlexRadarAxis,e);function WjFlexRadarAxis(t,r,a){var i=e.call(this)||this;i.isInitialized=!1;i.wjProperty="axes";i._wjBehaviour=wijmo_angular2_directivebase_1.WjDirectiveBehavior.attach(i,t,r,a);i.created();return i}t=WjFlexRadarAxis;WjFlexRadarAxis.prototype.created=function(){};WjFlexRadarAxis.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjFlexRadarAxis.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjFlexRadarAxis.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var t;WjFlexRadarAxis.meta={outputs:wjFlexRadarAxisMeta.outputs};
|
|
43
|
+
WjFlexRadarAxis.ɵfac = function WjFlexRadarAxis_Factory(t) { return new (t || WjFlexRadarAxis)(ɵngcc0.ɵɵdirectiveInject(core_1.ElementRef), ɵngcc0.ɵɵdirectiveInject(core_1.Injector), ɵngcc0.ɵɵdirectiveInject("WjComponent", 12)); };
|
|
44
|
+
WjFlexRadarAxis.ɵcmp = /*@__PURE__*/ ɵngcc0.ɵɵdefineComponent({ type: WjFlexRadarAxis, selectors: [["wj-flex-radar-axis"]], inputs: { wjProperty: "wjProperty", axisLine: "axisLine", format: "format", labels: "labels", majorGrid: "majorGrid", majorTickMarks: "majorTickMarks", majorUnit: "majorUnit", max: "max", min: "min", position: "position", reversed: "reversed", title: "title", labelAngle: "labelAngle", minorGrid: "minorGrid", minorTickMarks: "minorTickMarks", minorUnit: "minorUnit", origin: "origin", logBase: "logBase", plotArea: "plotArea", labelAlign: "labelAlign", name: "name", overlappingLabels: "overlappingLabels", labelPadding: "labelPadding", itemFormatter: "itemFormatter", itemsSource: "itemsSource", binding: "binding", labelMin: "labelMin", labelMax: "labelMax" }, outputs: { initialized: "initialized", rangeChangedNg: "rangeChanged" }, features: [ɵngcc0.ɵɵProvidersFeature([{ provide: "WjComponent", useExisting: core_1.forwardRef((function () { return t; })) }].concat(wjFlexRadarAxisMeta.providers))], decls: 0, vars: 0, template: function WjFlexRadarAxis_Template(rf, ctx) { }, encapsulation: 2 });
|
|
45
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && ɵngcc0.ɵsetClassMetadata(WjFlexRadarAxis, [{
|
|
46
|
+
type: core_1.Component,
|
|
47
|
+
args: [{ selector: wjFlexRadarAxisMeta.selector, template: wjFlexRadarAxisMeta.template, inputs: wjFlexRadarAxisMeta.inputs, outputs: wjFlexRadarAxisMeta.outputs, providers: [{ provide: "WjComponent", useExisting: core_1.forwardRef((function () { return t; })) }].concat(wjFlexRadarAxisMeta.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 WjFlexRadarAxis=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())],WjFlexRadarAxis)}(wjcChartRadar.FlexRadarAxis);exports.WjFlexRadarAxis=WjFlexRadarAxis;var wjFlexRadarSeriesMeta={selector:"wj-flex-radar-series",template:"<div><ng-content></ng-content></div>",inputs:["asyncBindings","wjProperty","axisX","axisY","binding","bindingX","cssClass","name","style","altStyle","symbolMarker","symbolSize","symbolStyle","visibility","itemsSource","interpolateNulls","tooltipContent","itemFormatter","chartType"],outputs:["initialized","renderingNg: rendering","renderedNg: rendered","visibilityChangePC: visibilityChange"],providers:[]};exports.wjFlexRadarSeriesMeta=wjFlexRadarSeriesMeta;var WjFlexRadarSeries=function(e){__extends(WjFlexRadarSeries,e);function WjFlexRadarSeries(t,r,a){var i=e.call(this)||this;i.isInitialized=!1;i.wjProperty="series";i._wjBehaviour=wijmo_angular2_directivebase_1.WjDirectiveBehavior.attach(i,t,r,a);i.created();return i}t=WjFlexRadarSeries;WjFlexRadarSeries.prototype.created=function(){};WjFlexRadarSeries.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjFlexRadarSeries.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjFlexRadarSeries.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var t;WjFlexRadarSeries.meta={outputs:wjFlexRadarSeriesMeta.outputs,changeEvents:{"chart.seriesVisibilityChanged":["visibility"]},siblingId:"series"};
|
|
62
|
+
WjFlexRadarSeries.ɵfac = function WjFlexRadarSeries_Factory(t) { return new (t || WjFlexRadarSeries)(ɵngcc0.ɵɵdirectiveInject(core_1.ElementRef), ɵngcc0.ɵɵdirectiveInject(core_1.Injector), ɵngcc0.ɵɵdirectiveInject("WjComponent", 12)); };
|
|
63
|
+
WjFlexRadarSeries.ɵcmp = /*@__PURE__*/ ɵngcc0.ɵɵdefineComponent({ type: WjFlexRadarSeries, selectors: [["wj-flex-radar-series"]], inputs: { asyncBindings: "asyncBindings", wjProperty: "wjProperty", axisX: "axisX", axisY: "axisY", binding: "binding", bindingX: "bindingX", cssClass: "cssClass", name: "name", style: "style", altStyle: "altStyle", symbolMarker: "symbolMarker", symbolSize: "symbolSize", symbolStyle: "symbolStyle", visibility: "visibility", itemsSource: "itemsSource", interpolateNulls: "interpolateNulls", tooltipContent: "tooltipContent", itemFormatter: "itemFormatter", chartType: "chartType" }, outputs: { initialized: "initialized", renderingNg: "rendering", renderedNg: "rendered", visibilityChangePC: "visibilityChange" }, features: [ɵngcc0.ɵɵProvidersFeature([{ provide: "WjComponent", useExisting: core_1.forwardRef((function () { return t; })) }].concat(wjFlexRadarSeriesMeta.providers))], ngContentSelectors: _c0, decls: 2, vars: 0, template: function WjFlexRadarSeries_Template(rf, ctx) { if (rf & 1) {
|
|
64
|
+
ɵngcc0.ɵɵprojectionDef();
|
|
65
|
+
ɵngcc0.ɵɵelementStart(0, "div");
|
|
66
|
+
ɵngcc0.ɵɵprojection(1);
|
|
67
|
+
ɵngcc0.ɵɵelementEnd();
|
|
68
|
+
} }, encapsulation: 2 });
|
|
69
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && ɵngcc0.ɵsetClassMetadata(WjFlexRadarSeries, [{
|
|
70
|
+
type: core_1.Component,
|
|
71
|
+
args: [{ selector: wjFlexRadarSeriesMeta.selector, template: wjFlexRadarSeriesMeta.template, inputs: wjFlexRadarSeriesMeta.inputs, outputs: wjFlexRadarSeriesMeta.outputs, providers: [{ provide: "WjComponent", useExisting: core_1.forwardRef((function () { return t; })) }].concat(wjFlexRadarSeriesMeta.providers) }]
|
|
72
|
+
}], function () { return [{ type: undefined, decorators: [{
|
|
73
|
+
type: core_1.Inject,
|
|
74
|
+
args: [core_1.ElementRef]
|
|
75
|
+
}] }, { type: undefined, decorators: [{
|
|
76
|
+
type: core_1.Inject,
|
|
77
|
+
args: [core_1.Injector]
|
|
78
|
+
}] }, { type: undefined, decorators: [{
|
|
79
|
+
type: core_1.Inject,
|
|
80
|
+
args: ["WjComponent"]
|
|
81
|
+
}, {
|
|
82
|
+
type: core_1.SkipSelf
|
|
83
|
+
}, {
|
|
84
|
+
type: core_1.Optional
|
|
85
|
+
}] }]; }, null); })();return WjFlexRadarSeries=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())],WjFlexRadarSeries)}(wjcChartRadar.FlexRadarSeries);exports.WjFlexRadarSeries=WjFlexRadarSeries;var moduleExports=[WjFlexRadar,WjFlexRadarAxis,WjFlexRadarSeries],WjChartRadarModule=function(){function WjChartRadarModule(){}
|
|
86
|
+
WjChartRadarModule.ɵfac = function WjChartRadarModule_Factory(t) { return new (t || WjChartRadarModule)(); };
|
|
87
|
+
WjChartRadarModule.ɵmod = /*@__PURE__*/ ɵngcc0.ɵɵdefineNgModule({ type: WjChartRadarModule });
|
|
88
|
+
WjChartRadarModule.ɵinj = /*@__PURE__*/ ɵngcc0.ɵɵdefineInjector({ imports: [common_1.CommonModule] });
|
|
89
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && ɵngcc0.ɵsetClassMetadata(WjChartRadarModule, [{
|
|
90
|
+
type: core_1.NgModule,
|
|
91
|
+
args: [{ imports: [common_1.CommonModule], declarations: moduleExports.slice(), exports: moduleExports.slice() }]
|
|
92
|
+
}], function () { return []; }, null); })();
|
|
93
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && ɵngcc0.ɵɵsetNgModuleScope(WjChartRadarModule, { declarations: [WjFlexRadar, WjFlexRadarAxis, WjFlexRadarSeries], imports: [ɵngcc1.CommonModule], exports: [WjFlexRadar, WjFlexRadarAxis, WjFlexRadarSeries] }); })();return WjChartRadarModule}();exports.WjChartRadarModule=WjChartRadarModule;
|
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mescius/wijmo.angular2.chart.radar",
|
|
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.radar": "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
|
+
}
|