@syncfusion/ej2-angular-treemap 32.1.19-ngcc → 32.1.19
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/CHANGELOG.md +1 -8
- package/README.md +15 -7
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/src/index.mjs +7 -0
- package/esm2020/src/treemap/colormapping.directive.mjs +46 -0
- package/esm2020/src/treemap/levels.directive.mjs +66 -0
- package/esm2020/src/treemap/treemap-all.module.mjs +47 -0
- package/esm2020/src/treemap/treemap.component.mjs +126 -0
- package/esm2020/src/treemap/treemap.module.mjs +43 -0
- package/esm2020/syncfusion-ej2-angular-treemap.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-treemap.mjs +314 -0
- package/fesm2015/syncfusion-ej2-angular-treemap.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-treemap.mjs +314 -0
- package/fesm2020/syncfusion-ej2-angular-treemap.mjs.map +1 -0
- package/package.json +28 -46
- package/src/treemap/colormapping.directive.d.ts +5 -0
- package/src/treemap/levels.directive.d.ts +5 -0
- package/src/treemap/treemap-all.module.d.ts +6 -0
- package/src/treemap/treemap.component.d.ts +3 -0
- package/src/treemap/treemap.module.d.ts +8 -0
- package/syncfusion-ej2-angular-treemap.d.ts +5 -0
- package/@syncfusion/ej2-angular-treemap.es5.js +0 -387
- package/@syncfusion/ej2-angular-treemap.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-treemap.js +0 -355
- package/@syncfusion/ej2-angular-treemap.js.map +0 -1
- package/dist/ej2-angular-treemap.umd.js +0 -511
- package/dist/ej2-angular-treemap.umd.js.map +0 -1
- package/dist/ej2-angular-treemap.umd.min.js +0 -2
- package/dist/ej2-angular-treemap.umd.min.js.map +0 -1
- package/ej2-angular-treemap.d.ts +0 -5
- package/ej2-angular-treemap.metadata.json +0 -1
- package/license +0 -10
- package/postinstall/tagchange.js +0 -18
|
@@ -0,0 +1,314 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Directive, ContentChildren, ContentChild, Component, ChangeDetectionStrategy, NgModule } from '@angular/core';
|
|
3
|
+
import { ComplexBase, setValue, ArrayBase, Template, ComponentBase, ComponentMixins } from '@syncfusion/ej2-angular-base';
|
|
4
|
+
import { __decorate } from 'tslib';
|
|
5
|
+
import { TreeMap, TreeMapTooltip, TreeMapLegend, TreeMapHighlight, TreeMapSelection, Print, PdfExport, ImageExport } from '@syncfusion/ej2-treemap';
|
|
6
|
+
export * from '@syncfusion/ej2-treemap';
|
|
7
|
+
import { CommonModule } from '@angular/common';
|
|
8
|
+
|
|
9
|
+
let input$1 = ['color', 'from', 'label', 'maxOpacity', 'minOpacity', 'showLegend', 'to', 'value'];
|
|
10
|
+
let outputs$2 = [];
|
|
11
|
+
class ColorMappingDirective extends ComplexBase {
|
|
12
|
+
constructor(viewContainerRef) {
|
|
13
|
+
super();
|
|
14
|
+
this.viewContainerRef = viewContainerRef;
|
|
15
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
16
|
+
this.registerEvents(outputs$2);
|
|
17
|
+
this.directivePropList = input$1;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
ColorMappingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorMappingDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
21
|
+
ColorMappingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ColorMappingDirective, selector: "e-levels>e-colorMappings>e-colorMapping", inputs: { color: "color", from: "from", label: "label", maxOpacity: "maxOpacity", minOpacity: "minOpacity", showLegend: "showLegend", to: "to", value: "value" }, usesInheritance: true, ngImport: i0 });
|
|
22
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorMappingDirective, decorators: [{
|
|
23
|
+
type: Directive,
|
|
24
|
+
args: [{
|
|
25
|
+
selector: 'e-levels>e-colorMappings>e-colorMapping',
|
|
26
|
+
inputs: input$1,
|
|
27
|
+
outputs: outputs$2,
|
|
28
|
+
queries: {}
|
|
29
|
+
}]
|
|
30
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
31
|
+
/**
|
|
32
|
+
* ColorMapping Array Directive
|
|
33
|
+
* @private
|
|
34
|
+
*/
|
|
35
|
+
class ColorMappingsDirective extends ArrayBase {
|
|
36
|
+
constructor() {
|
|
37
|
+
super('colormapping');
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
ColorMappingsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorMappingsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
41
|
+
ColorMappingsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ColorMappingsDirective, selector: "e-levels>e-colorMappings", queries: [{ propertyName: "children", predicate: ColorMappingDirective }], usesInheritance: true, ngImport: i0 });
|
|
42
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorMappingsDirective, decorators: [{
|
|
43
|
+
type: Directive,
|
|
44
|
+
args: [{
|
|
45
|
+
selector: 'e-levels>e-colorMappings',
|
|
46
|
+
queries: {
|
|
47
|
+
children: new ContentChildren(ColorMappingDirective)
|
|
48
|
+
},
|
|
49
|
+
}]
|
|
50
|
+
}], ctorParameters: function () { return []; } });
|
|
51
|
+
|
|
52
|
+
let input = ['autoFill', 'border', 'colorMapping', 'fill', 'groupGap', 'groupPadding', 'groupPath', 'headerAlignment', 'headerFormat', 'headerHeight', 'headerStyle', 'headerTemplate', 'opacity', 'showHeader', 'templatePosition'];
|
|
53
|
+
let outputs$1 = [];
|
|
54
|
+
/**
|
|
55
|
+
* Represents the directive to configure and render level leaf items in the treemap.
|
|
56
|
+
* ```html
|
|
57
|
+
* <e-levels>
|
|
58
|
+
* <e-level></e-level>
|
|
59
|
+
* </e-levels>
|
|
60
|
+
* ```
|
|
61
|
+
*/
|
|
62
|
+
class LevelDirective extends ComplexBase {
|
|
63
|
+
constructor(viewContainerRef) {
|
|
64
|
+
super();
|
|
65
|
+
this.viewContainerRef = viewContainerRef;
|
|
66
|
+
this.tags = ['colorMapping'];
|
|
67
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
68
|
+
this.registerEvents(outputs$1);
|
|
69
|
+
this.directivePropList = input;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
LevelDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: LevelDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
73
|
+
LevelDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: LevelDirective, selector: "e-levels>e-level", inputs: { autoFill: "autoFill", border: "border", colorMapping: "colorMapping", fill: "fill", groupGap: "groupGap", groupPadding: "groupPadding", groupPath: "groupPath", headerAlignment: "headerAlignment", headerFormat: "headerFormat", headerHeight: "headerHeight", headerStyle: "headerStyle", headerTemplate: "headerTemplate", opacity: "opacity", showHeader: "showHeader", templatePosition: "templatePosition" }, queries: [{ propertyName: "headerTemplate", first: true, predicate: ["headerTemplate"], descendants: true }, { propertyName: "childColorMapping", first: true, predicate: ColorMappingsDirective, descendants: true }], usesInheritance: true, ngImport: i0 });
|
|
74
|
+
__decorate([
|
|
75
|
+
Template()
|
|
76
|
+
], LevelDirective.prototype, "headerTemplate", void 0);
|
|
77
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: LevelDirective, decorators: [{
|
|
78
|
+
type: Directive,
|
|
79
|
+
args: [{
|
|
80
|
+
selector: 'e-levels>e-level',
|
|
81
|
+
inputs: input,
|
|
82
|
+
outputs: outputs$1,
|
|
83
|
+
queries: {
|
|
84
|
+
childColorMapping: new ContentChild(ColorMappingsDirective)
|
|
85
|
+
}
|
|
86
|
+
}]
|
|
87
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { headerTemplate: [{
|
|
88
|
+
type: ContentChild,
|
|
89
|
+
args: ['headerTemplate']
|
|
90
|
+
}] } });
|
|
91
|
+
/**
|
|
92
|
+
* Level Array Directive
|
|
93
|
+
* @private
|
|
94
|
+
*/
|
|
95
|
+
class LevelsDirective extends ArrayBase {
|
|
96
|
+
constructor() {
|
|
97
|
+
super('levels');
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
LevelsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: LevelsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
101
|
+
LevelsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: LevelsDirective, selector: "ej-treemap>e-levels", queries: [{ propertyName: "children", predicate: LevelDirective }], usesInheritance: true, ngImport: i0 });
|
|
102
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: LevelsDirective, decorators: [{
|
|
103
|
+
type: Directive,
|
|
104
|
+
args: [{
|
|
105
|
+
selector: 'ej-treemap>e-levels',
|
|
106
|
+
queries: {
|
|
107
|
+
children: new ContentChildren(LevelDirective)
|
|
108
|
+
},
|
|
109
|
+
}]
|
|
110
|
+
}], ctorParameters: function () { return []; } });
|
|
111
|
+
|
|
112
|
+
const inputs = ['allowImageExport', 'allowPdfExport', 'allowPrint', 'background', 'border', 'breadcrumbConnector', 'colorValuePath', 'dataSource', 'description', 'drillDownView', 'enableBreadcrumb', 'enableDrillDown', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'equalColorValuePath', 'format', 'height', 'highlightSettings', 'initialDrillDown', 'layoutType', 'leafItemSettings', 'legendSettings', 'levels', 'locale', 'margin', 'palette', 'query', 'rangeColorValuePath', 'renderDirection', 'selectionSettings', 'tabIndex', 'theme', 'titleSettings', 'tooltipSettings', 'useGroupingSeparator', 'weightValuePath', 'width'];
|
|
113
|
+
const outputs = ['beforePrint', 'click', 'doubleClick', 'drillEnd', 'drillStart', 'itemClick', 'itemHighlight', 'itemMove', 'itemRendering', 'itemSelected', 'legendItemRendering', 'legendRendering', 'load', 'loaded', 'mouseMove', 'resize', 'rightClick', 'tooltipRendering'];
|
|
114
|
+
const twoWays = [''];
|
|
115
|
+
/**
|
|
116
|
+
* Represents the Angular TreeMap component. It is used to visualize both hierarchical and flat data.
|
|
117
|
+
* ```html
|
|
118
|
+
* <ej-treemap></ej-treemap>
|
|
119
|
+
* ```
|
|
120
|
+
*/
|
|
121
|
+
let TreeMapComponent = class TreeMapComponent extends TreeMap {
|
|
122
|
+
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
|
123
|
+
super();
|
|
124
|
+
this.ngEle = ngEle;
|
|
125
|
+
this.srenderer = srenderer;
|
|
126
|
+
this.viewContainerRef = viewContainerRef;
|
|
127
|
+
this.injector = injector;
|
|
128
|
+
this.tags = ['levels'];
|
|
129
|
+
this.element = this.ngEle.nativeElement;
|
|
130
|
+
this.injectedModules = this.injectedModules || [];
|
|
131
|
+
try {
|
|
132
|
+
let mod = this.injector.get('TreeMapTreeMapTooltip');
|
|
133
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
134
|
+
this.injectedModules.push(mod);
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
catch { }
|
|
138
|
+
try {
|
|
139
|
+
let mod = this.injector.get('TreeMapTreeMapLegend');
|
|
140
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
141
|
+
this.injectedModules.push(mod);
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
catch { }
|
|
145
|
+
try {
|
|
146
|
+
let mod = this.injector.get('TreeMapTreeMapHighlight');
|
|
147
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
148
|
+
this.injectedModules.push(mod);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
catch { }
|
|
152
|
+
try {
|
|
153
|
+
let mod = this.injector.get('TreeMapTreeMapSelection');
|
|
154
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
155
|
+
this.injectedModules.push(mod);
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
catch { }
|
|
159
|
+
try {
|
|
160
|
+
let mod = this.injector.get('TreeMapPrint');
|
|
161
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
162
|
+
this.injectedModules.push(mod);
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
catch { }
|
|
166
|
+
try {
|
|
167
|
+
let mod = this.injector.get('TreeMapPdfExport');
|
|
168
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
169
|
+
this.injectedModules.push(mod);
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
catch { }
|
|
173
|
+
try {
|
|
174
|
+
let mod = this.injector.get('TreeMapImageExport');
|
|
175
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
176
|
+
this.injectedModules.push(mod);
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
catch { }
|
|
180
|
+
this.registerEvents(outputs);
|
|
181
|
+
this.addTwoWay.call(this, twoWays);
|
|
182
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
183
|
+
this.context = new ComponentBase();
|
|
184
|
+
}
|
|
185
|
+
ngOnInit() {
|
|
186
|
+
this.context.ngOnInit(this);
|
|
187
|
+
}
|
|
188
|
+
ngAfterViewInit() {
|
|
189
|
+
this.context.ngAfterViewInit(this);
|
|
190
|
+
}
|
|
191
|
+
ngOnDestroy() {
|
|
192
|
+
this.context.ngOnDestroy(this);
|
|
193
|
+
}
|
|
194
|
+
ngAfterContentChecked() {
|
|
195
|
+
this.tagObjects[0].instance = this.childLevels;
|
|
196
|
+
this.context.ngAfterContentChecked(this);
|
|
197
|
+
}
|
|
198
|
+
};
|
|
199
|
+
TreeMapComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TreeMapComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
200
|
+
TreeMapComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: TreeMapComponent, selector: "ejs-treemap", inputs: { allowImageExport: "allowImageExport", allowPdfExport: "allowPdfExport", allowPrint: "allowPrint", background: "background", border: "border", breadcrumbConnector: "breadcrumbConnector", colorValuePath: "colorValuePath", dataSource: "dataSource", description: "description", drillDownView: "drillDownView", enableBreadcrumb: "enableBreadcrumb", enableDrillDown: "enableDrillDown", enableHtmlSanitizer: "enableHtmlSanitizer", enablePersistence: "enablePersistence", enableRtl: "enableRtl", equalColorValuePath: "equalColorValuePath", format: "format", height: "height", highlightSettings: "highlightSettings", initialDrillDown: "initialDrillDown", layoutType: "layoutType", leafItemSettings: "leafItemSettings", legendSettings: "legendSettings", levels: "levels", locale: "locale", margin: "margin", palette: "palette", query: "query", rangeColorValuePath: "rangeColorValuePath", renderDirection: "renderDirection", selectionSettings: "selectionSettings", tabIndex: "tabIndex", theme: "theme", titleSettings: "titleSettings", tooltipSettings: "tooltipSettings", useGroupingSeparator: "useGroupingSeparator", weightValuePath: "weightValuePath", width: "width" }, outputs: { beforePrint: "beforePrint", click: "click", doubleClick: "doubleClick", drillEnd: "drillEnd", drillStart: "drillStart", itemClick: "itemClick", itemHighlight: "itemHighlight", itemMove: "itemMove", itemRendering: "itemRendering", itemSelected: "itemSelected", legendItemRendering: "legendItemRendering", legendRendering: "legendRendering", load: "load", loaded: "loaded", mouseMove: "mouseMove", resize: "resize", rightClick: "rightClick", tooltipRendering: "tooltipRendering" }, queries: [{ propertyName: "tooltipSettings_template", first: true, predicate: ["tooltipSettingsTemplate"], descendants: true }, { propertyName: "leafItemSettings_labelTemplate", first: true, predicate: ["leafItemSettingsLabelTemplate"], descendants: true }, { propertyName: "childLevels", first: true, predicate: LevelsDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
201
|
+
__decorate([
|
|
202
|
+
Template()
|
|
203
|
+
], TreeMapComponent.prototype, "tooltipSettings_template", void 0);
|
|
204
|
+
__decorate([
|
|
205
|
+
Template()
|
|
206
|
+
], TreeMapComponent.prototype, "leafItemSettings_labelTemplate", void 0);
|
|
207
|
+
TreeMapComponent = __decorate([
|
|
208
|
+
ComponentMixins([ComponentBase])
|
|
209
|
+
], TreeMapComponent);
|
|
210
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TreeMapComponent, decorators: [{
|
|
211
|
+
type: Component,
|
|
212
|
+
args: [{
|
|
213
|
+
selector: 'ejs-treemap',
|
|
214
|
+
inputs: inputs,
|
|
215
|
+
outputs: outputs,
|
|
216
|
+
template: '',
|
|
217
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
218
|
+
queries: {
|
|
219
|
+
childLevels: new ContentChild(LevelsDirective)
|
|
220
|
+
}
|
|
221
|
+
}]
|
|
222
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; }, propDecorators: { tooltipSettings_template: [{
|
|
223
|
+
type: ContentChild,
|
|
224
|
+
args: ['tooltipSettingsTemplate']
|
|
225
|
+
}], leafItemSettings_labelTemplate: [{
|
|
226
|
+
type: ContentChild,
|
|
227
|
+
args: ['leafItemSettingsLabelTemplate']
|
|
228
|
+
}] } });
|
|
229
|
+
|
|
230
|
+
/**
|
|
231
|
+
* NgModule definition for the TreeMap component.
|
|
232
|
+
*/
|
|
233
|
+
class TreeMapModule {
|
|
234
|
+
}
|
|
235
|
+
TreeMapModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TreeMapModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
236
|
+
TreeMapModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TreeMapModule, declarations: [TreeMapComponent,
|
|
237
|
+
ColorMappingDirective,
|
|
238
|
+
ColorMappingsDirective,
|
|
239
|
+
LevelDirective,
|
|
240
|
+
LevelsDirective], imports: [CommonModule], exports: [TreeMapComponent,
|
|
241
|
+
ColorMappingDirective,
|
|
242
|
+
ColorMappingsDirective,
|
|
243
|
+
LevelDirective,
|
|
244
|
+
LevelsDirective] });
|
|
245
|
+
TreeMapModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TreeMapModule, imports: [[CommonModule]] });
|
|
246
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TreeMapModule, decorators: [{
|
|
247
|
+
type: NgModule,
|
|
248
|
+
args: [{
|
|
249
|
+
imports: [CommonModule],
|
|
250
|
+
declarations: [
|
|
251
|
+
TreeMapComponent,
|
|
252
|
+
ColorMappingDirective,
|
|
253
|
+
ColorMappingsDirective,
|
|
254
|
+
LevelDirective,
|
|
255
|
+
LevelsDirective
|
|
256
|
+
],
|
|
257
|
+
exports: [
|
|
258
|
+
TreeMapComponent,
|
|
259
|
+
ColorMappingDirective,
|
|
260
|
+
ColorMappingsDirective,
|
|
261
|
+
LevelDirective,
|
|
262
|
+
LevelsDirective
|
|
263
|
+
]
|
|
264
|
+
}]
|
|
265
|
+
}] });
|
|
266
|
+
|
|
267
|
+
const TreeMapTooltipService = { provide: 'TreeMapTreeMapTooltip', useValue: TreeMapTooltip };
|
|
268
|
+
const TreeMapLegendService = { provide: 'TreeMapTreeMapLegend', useValue: TreeMapLegend };
|
|
269
|
+
const TreeMapHighlightService = { provide: 'TreeMapTreeMapHighlight', useValue: TreeMapHighlight };
|
|
270
|
+
const TreeMapSelectionService = { provide: 'TreeMapTreeMapSelection', useValue: TreeMapSelection };
|
|
271
|
+
const PrintService = { provide: 'TreeMapPrint', useValue: Print };
|
|
272
|
+
const PdfExportService = { provide: 'TreeMapPdfExport', useValue: PdfExport };
|
|
273
|
+
const ImageExportService = { provide: 'TreeMapImageExport', useValue: ImageExport };
|
|
274
|
+
/**
|
|
275
|
+
* NgModule definition for the TreeMap component with providers.
|
|
276
|
+
*/
|
|
277
|
+
class TreeMapAllModule {
|
|
278
|
+
}
|
|
279
|
+
TreeMapAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TreeMapAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
280
|
+
TreeMapAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TreeMapAllModule, imports: [CommonModule, TreeMapModule], exports: [TreeMapModule] });
|
|
281
|
+
TreeMapAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TreeMapAllModule, providers: [
|
|
282
|
+
TreeMapTooltipService,
|
|
283
|
+
TreeMapLegendService,
|
|
284
|
+
TreeMapHighlightService,
|
|
285
|
+
TreeMapSelectionService,
|
|
286
|
+
PrintService,
|
|
287
|
+
PdfExportService,
|
|
288
|
+
ImageExportService
|
|
289
|
+
], imports: [[CommonModule, TreeMapModule], TreeMapModule] });
|
|
290
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TreeMapAllModule, decorators: [{
|
|
291
|
+
type: NgModule,
|
|
292
|
+
args: [{
|
|
293
|
+
imports: [CommonModule, TreeMapModule],
|
|
294
|
+
exports: [
|
|
295
|
+
TreeMapModule
|
|
296
|
+
],
|
|
297
|
+
providers: [
|
|
298
|
+
TreeMapTooltipService,
|
|
299
|
+
TreeMapLegendService,
|
|
300
|
+
TreeMapHighlightService,
|
|
301
|
+
TreeMapSelectionService,
|
|
302
|
+
PrintService,
|
|
303
|
+
PdfExportService,
|
|
304
|
+
ImageExportService
|
|
305
|
+
]
|
|
306
|
+
}]
|
|
307
|
+
}] });
|
|
308
|
+
|
|
309
|
+
/**
|
|
310
|
+
* Generated bundle index. Do not edit.
|
|
311
|
+
*/
|
|
312
|
+
|
|
313
|
+
export { ColorMappingDirective, ColorMappingsDirective, ImageExportService, LevelDirective, LevelsDirective, PdfExportService, PrintService, TreeMapAllModule, TreeMapComponent, TreeMapHighlightService, TreeMapLegendService, TreeMapModule, TreeMapSelectionService, TreeMapTooltipService };
|
|
314
|
+
//# sourceMappingURL=syncfusion-ej2-angular-treemap.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"syncfusion-ej2-angular-treemap.mjs","sources":["../../src/treemap/colormapping.directive.ts","../../src/treemap/levels.directive.ts","../../src/treemap/treemap.component.ts","../../src/treemap/treemap.module.ts","../../src/treemap/treemap-all.module.ts","../../syncfusion-ej2-angular-treemap.ts"],"sourcesContent":["import { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet input: string[] = ['color', 'from', 'label', 'maxOpacity', 'minOpacity', 'showLegend', 'to', 'value'];\nlet outputs: string[] = [];\n\n@Directive({\n selector: 'e-levels>e-colorMappings>e-colorMapping',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n})\nexport class ColorMappingDirective extends ComplexBase<ColorMappingDirective> {\n public directivePropList: any;\n\t\n\n\n /** \n * Sets and gets the color for the color-mapping in treemap.\n * @default null\n */\n public color: any;\n /** \n * Sets and gets the value from which the range of color mapping starts.\n * @default null\n */\n public from: any;\n /** \n * Sets and gets the label text for the legend when it is rendered based on color mapping.\n * @default null\n */\n public label: any;\n /** \n * Sets and gets the maximum opacity for the color-mapping in the treemap.\n * @default null\n */\n public maxOpacity: any;\n /** \n * Sets and gets the minimum opacity for the color-mapping in the treemap.\n * @default null\n */\n public minOpacity: any;\n /** \n * Enables or disables the visibility of the legend for color mapping in the treemap.\n * @default true\n */\n public showLegend: any;\n /** \n * Sets and gets the value to which the range of color mapping ends.\n * @default null\n */\n public to: any;\n /** \n * Sets and gets the value for the color-mapping from the data source.\n * @default null\n */\n public value: any;\n\n constructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\n}\n\n/**\n * ColorMapping Array Directive\n * @private\n */\n@Directive({\n selector: 'e-levels>e-colorMappings',\n queries: {\n children: new ContentChildren(ColorMappingDirective)\n },\n})\nexport class ColorMappingsDirective extends ArrayBase<ColorMappingsDirective> {\n constructor() {\n super('colormapping');\n }\n}","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { Template } from '@syncfusion/ej2-angular-base';\nimport { ColorMappingsDirective } from './colormapping.directive';\n\nlet input: string[] = ['autoFill', 'border', 'colorMapping', 'fill', 'groupGap', 'groupPadding', 'groupPath', 'headerAlignment', 'headerFormat', 'headerHeight', 'headerStyle', 'headerTemplate', 'opacity', 'showHeader', 'templatePosition'];\nlet outputs: string[] = [];\n/**\n * Represents the directive to configure and render level leaf items in the treemap.\n * ```html\n * <e-levels>\n * <e-level></e-level>\n * </e-levels>\n * ```\n */\n@Directive({\n selector: 'e-levels>e-level',\n inputs: input,\n outputs: outputs, \n queries: {\n childColorMapping: new ContentChild(ColorMappingsDirective)\n }\n})\nexport class LevelDirective extends ComplexBase<LevelDirective> {\n public directivePropList: any;\n\t\n public childColorMapping: any;\n public tags: string[] = ['colorMapping'];\n /** \n * Enables or disables the automatic filling of the colors from the palette in the items of the treemap.\n * @default false\n */\n public autoFill: any;\n /** \n * Sets and gets the options for customizing the color and width of the border of \n * the level leaf items of the treemap.\n */\n public border: any;\n /** \n * Sets and gets the options for customizing the color-mapping of the level leaf items in the treemap.\n */\n public colorMapping: any;\n /** \n * Sets and gets the fill color of the level leaf item in the treemap.\n * @default null\n */\n public fill: any;\n /** \n * Sets and gets the gap between the level leaf items in the treemap.\n * @default 0\n */\n public groupGap: any;\n /** \n * Sets and gets the padding of level leaf items in the treemap.\n * @default 10\n */\n public groupPadding: any;\n /** \n * Sets and gets the value path from the data source in the treemap to render the item.\n * @default null\n */\n public groupPath: any;\n /** \n * Sets and gets the alignment of the header of the treemap.\n * @default 'Near'\n */\n public headerAlignment: any;\n /** \n * Sets and gets the string to format the header label of the level leaf items in the treemap.\n * @default null\n */\n public headerFormat: any;\n /** \n * Sets and gets the height of header in the treemap.\n * @default 20\n */\n public headerHeight: any;\n /** \n * Sets and gets the options for customizing the text style of header label of the level leaf item.\n */\n public headerStyle: any;\n /** \n * Sets and gets the opacity in the level leaf item of the treemap.\n * @default 1\n */\n public opacity: any;\n /** \n * Shows or hides the header in level leaf item of the treemap.\n * @default true\n */\n public showHeader: any;\n /** \n * Sets and gets the options for customizing the template position of the treemap.\n * @default 'TopLeft'\n */\n public templatePosition: any;\n /** \n * Sets and gets the template for header in the treemap.\n * @default null\n * @asptype string\n */\n @ContentChild('headerTemplate')\n @Template()\n public headerTemplate: any;\n\n constructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\n}\n\n/**\n * Level Array Directive\n * @private\n */\n@Directive({\n selector: 'ej-treemap>e-levels',\n queries: {\n children: new ContentChildren(LevelDirective)\n },\n})\nexport class LevelsDirective extends ArrayBase<LevelsDirective> {\n constructor() {\n super('levels');\n }\n}","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider, ContentChild } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { TreeMap } from '@syncfusion/ej2-treemap';\nimport { Template } from '@syncfusion/ej2-angular-base';\nimport { LevelsDirective } from './levels.directive';\n\nexport const inputs: string[] = ['allowImageExport','allowPdfExport','allowPrint','background','border','breadcrumbConnector','colorValuePath','dataSource','description','drillDownView','enableBreadcrumb','enableDrillDown','enableHtmlSanitizer','enablePersistence','enableRtl','equalColorValuePath','format','height','highlightSettings','initialDrillDown','layoutType','leafItemSettings','legendSettings','levels','locale','margin','palette','query','rangeColorValuePath','renderDirection','selectionSettings','tabIndex','theme','titleSettings','tooltipSettings','useGroupingSeparator','weightValuePath','width'];\nexport const outputs: string[] = ['beforePrint','click','doubleClick','drillEnd','drillStart','itemClick','itemHighlight','itemMove','itemRendering','itemSelected','legendItemRendering','legendRendering','load','loaded','mouseMove','resize','rightClick','tooltipRendering'];\nexport const twoWays: string[] = [''];\n\n/**\n * Represents the Angular TreeMap component. It is used to visualize both hierarchical and flat data.\n * ```html\n * <ej-treemap></ej-treemap>\n * ```\n */\n@Component({\n selector: 'ejs-treemap',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n childLevels: new ContentChild(LevelsDirective)\n }\n})\n@ComponentMixins([ComponentBase])\nexport class TreeMapComponent extends TreeMap implements IComponentBase {\n public context : any;\n public tagObjects: any;\n\tbeforePrint: any;\n\tclick: any;\n\tdoubleClick: any;\n\tdrillEnd: any;\n\tdrillStart: any;\n\titemClick: any;\n\titemHighlight: any;\n\titemMove: any;\n\titemRendering: any;\n\titemSelected: any;\n\tlegendItemRendering: any;\n\tlegendRendering: any;\n\tload: any;\n\tloaded: any;\n\tmouseMove: any;\n\tresize: any;\n\trightClick: any;\n\tpublic tooltipRendering: any;\n public childLevels: QueryList<LevelsDirective>;\n public tags: string[] = ['levels'];\n @ContentChild('tooltipSettingsTemplate')\n @Template()\n public tooltipSettings_template: any;\n @ContentChild('leafItemSettingsLabelTemplate')\n @Template()\n public leafItemSettings_labelTemplate: any;\n\n constructor(private ngEle: ElementRef, private srenderer: Renderer2, private viewContainerRef:ViewContainerRef, private injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('TreeMapTreeMapTooltip');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('TreeMapTreeMapLegend');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('TreeMapTreeMapHighlight');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('TreeMapTreeMapSelection');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('TreeMapPrint');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('TreeMapPdfExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('TreeMapImageExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n\n public ngOnInit() {\n this.context.ngOnInit(this);\n }\n\n public ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n\n public ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n\n public ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childLevels;\n this.context.ngAfterContentChecked(this);\n }\n\n public registerEvents: (eventList: string[]) => void;\n public addTwoWay: (propList: string[]) => void;\n}\n\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ColorMappingDirective, ColorMappingsDirective } from './colormapping.directive';\nimport { LevelDirective, LevelsDirective } from './levels.directive';\nimport { TreeMapComponent } from './treemap.component';\n\n/**\n * NgModule definition for the TreeMap component.\n */\n@NgModule({\n imports: [CommonModule],\n declarations: [\n TreeMapComponent,\n ColorMappingDirective,\n ColorMappingsDirective,\n LevelDirective,\n LevelsDirective\n ],\n exports: [\n TreeMapComponent,\n ColorMappingDirective,\n ColorMappingsDirective,\n LevelDirective,\n LevelsDirective\n ]\n})\nexport class TreeMapModule { }","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ColorMappingDirective, ColorMappingsDirective } from './colormapping.directive';\nimport { LevelDirective, LevelsDirective } from './levels.directive';\nimport { TreeMapComponent } from './treemap.component';\nimport { TreeMapModule } from './treemap.module';\nimport {TreeMapTooltip, TreeMapLegend, TreeMapHighlight, TreeMapSelection, Print, PdfExport, ImageExport} from '@syncfusion/ej2-treemap'\n\n\nexport const TreeMapTooltipService: ValueProvider = { provide: 'TreeMapTreeMapTooltip', useValue: TreeMapTooltip};\nexport const TreeMapLegendService: ValueProvider = { provide: 'TreeMapTreeMapLegend', useValue: TreeMapLegend};\nexport const TreeMapHighlightService: ValueProvider = { provide: 'TreeMapTreeMapHighlight', useValue: TreeMapHighlight};\nexport const TreeMapSelectionService: ValueProvider = { provide: 'TreeMapTreeMapSelection', useValue: TreeMapSelection};\nexport const PrintService: ValueProvider = { provide: 'TreeMapPrint', useValue: Print};\nexport const PdfExportService: ValueProvider = { provide: 'TreeMapPdfExport', useValue: PdfExport};\nexport const ImageExportService: ValueProvider = { provide: 'TreeMapImageExport', useValue: ImageExport};\n\n/**\n * NgModule definition for the TreeMap component with providers.\n */\n@NgModule({\n imports: [CommonModule, TreeMapModule],\n exports: [\n TreeMapModule\n ],\n providers:[\n TreeMapTooltipService,\n TreeMapLegendService,\n TreeMapHighlightService,\n TreeMapSelectionService,\n PrintService,\n PdfExportService,\n ImageExportService\n ]\n})\nexport class TreeMapAllModule { }","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":["input","outputs"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,61 +1,43 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"_requested": {
|
|
9
|
-
"type": "range",
|
|
10
|
-
"registry": true,
|
|
11
|
-
"raw": "@syncfusion/ej2-angular-treemap@*",
|
|
12
|
-
"name": "@syncfusion/ej2-angular-treemap",
|
|
13
|
-
"escapedName": "@syncfusion%2fej2-angular-treemap",
|
|
14
|
-
"scope": "@syncfusion",
|
|
15
|
-
"rawSpec": "*",
|
|
16
|
-
"saveSpec": null,
|
|
17
|
-
"fetchSpec": "*"
|
|
18
|
-
},
|
|
19
|
-
"_requiredBy": [
|
|
20
|
-
"/"
|
|
21
|
-
],
|
|
22
|
-
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-development/@syncfusion/ej2-angular-treemap/-/ej2-angular-treemap-25.1.35.tgz",
|
|
23
|
-
"_shasum": "5d8d1dbbd1ba509742c1daa9aca7daf50dc8caa1",
|
|
24
|
-
"_spec": "@syncfusion/ej2-angular-treemap@*",
|
|
25
|
-
"_where": "D:\\SF3992\\WFH\\Nexus\\release",
|
|
26
|
-
"author": {
|
|
27
|
-
"name": "Syncfusion Inc."
|
|
28
|
-
},
|
|
29
|
-
"bugs": {
|
|
30
|
-
"url": "https://github.com/syncfusion/ej2-angular-ui-components/issues"
|
|
31
|
-
},
|
|
32
|
-
"bundleDependencies": false,
|
|
2
|
+
"name": "@syncfusion/ej2-angular-treemap",
|
|
3
|
+
"version": "32.1.19",
|
|
4
|
+
"description": "Essential JS 2 TreeMap Components for Angular",
|
|
5
|
+
"author": "Syncfusion Inc.",
|
|
6
|
+
"license": "SEE LICENSE IN license",
|
|
7
|
+
"schematics": "./schematics/collection.json",
|
|
33
8
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-angular-base": "~32.1.19",
|
|
35
9
|
"@syncfusion/ej2-base": "~32.1.19",
|
|
10
|
+
"@syncfusion/ej2-angular-base": "~32.1.19",
|
|
36
11
|
"@syncfusion/ej2-treemap": "32.1.19"
|
|
37
12
|
},
|
|
38
|
-
"deprecated": false,
|
|
39
|
-
"description": "Essential JS 2 TreeMap Components for Angular",
|
|
40
|
-
"devDependencies": {},
|
|
41
|
-
"es2015": "@syncfusion/ej2-angular-treemap.js",
|
|
42
|
-
"homepage": "https://www.syncfusion.com/angular-components",
|
|
43
13
|
"keywords": [
|
|
44
14
|
"angular",
|
|
45
15
|
"ng-treemap",
|
|
46
16
|
"ej2-ng-treemap"
|
|
47
17
|
],
|
|
48
|
-
"license": "SEE LICENSE IN license",
|
|
49
|
-
"main": "dist/ej2-angular-treemap.umd.js",
|
|
50
|
-
"metadata": "ej2-angular-treemap.metadata.json",
|
|
51
|
-
"module": "@syncfusion/ej2-angular-treemap.es5.js",
|
|
52
|
-
"name": "@syncfusion/ej2-angular-treemap",
|
|
53
18
|
"repository": {
|
|
54
19
|
"type": "git",
|
|
55
|
-
"url": "
|
|
20
|
+
"url": "https://github.com/syncfusion/ej2-angular-ui-components.git"
|
|
56
21
|
},
|
|
57
|
-
"schematics": "./schematics/collection.json",
|
|
58
22
|
"sideEffects": false,
|
|
59
|
-
"
|
|
60
|
-
"
|
|
23
|
+
"module": "fesm2015/syncfusion-ej2-angular-treemap.mjs",
|
|
24
|
+
"es2020": "fesm2020/syncfusion-ej2-angular-treemap.mjs",
|
|
25
|
+
"esm2020": "esm2020/syncfusion-ej2-angular-treemap.mjs",
|
|
26
|
+
"fesm2020": "fesm2020/syncfusion-ej2-angular-treemap.mjs",
|
|
27
|
+
"fesm2015": "fesm2015/syncfusion-ej2-angular-treemap.mjs",
|
|
28
|
+
"typings": "syncfusion-ej2-angular-treemap.d.ts",
|
|
29
|
+
"exports": {
|
|
30
|
+
"./package.json": {
|
|
31
|
+
"default": "./package.json"
|
|
32
|
+
},
|
|
33
|
+
".": {
|
|
34
|
+
"types": "./syncfusion-ej2-angular-treemap.d.ts",
|
|
35
|
+
"esm2020": "./esm2020/syncfusion-ej2-angular-treemap.mjs",
|
|
36
|
+
"es2020": "./fesm2020/syncfusion-ej2-angular-treemap.mjs",
|
|
37
|
+
"es2015": "./fesm2015/syncfusion-ej2-angular-treemap.mjs",
|
|
38
|
+
"node": "./fesm2015/syncfusion-ej2-angular-treemap.mjs",
|
|
39
|
+
"default": "./fesm2020/syncfusion-ej2-angular-treemap.mjs"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"homepage": "https://www.syncfusion.com/angular-components"
|
|
61
43
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class ColorMappingDirective extends ComplexBase<ColorMappingDirective> {
|
|
4
5
|
private viewContainerRef;
|
|
5
6
|
directivePropList: any;
|
|
@@ -44,6 +45,8 @@ export declare class ColorMappingDirective extends ComplexBase<ColorMappingDirec
|
|
|
44
45
|
*/
|
|
45
46
|
value: any;
|
|
46
47
|
constructor(viewContainerRef: ViewContainerRef);
|
|
48
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ColorMappingDirective, never>;
|
|
49
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ColorMappingDirective, "e-levels>e-colorMappings>e-colorMapping", never, { "color": "color"; "from": "from"; "label": "label"; "maxOpacity": "maxOpacity"; "minOpacity": "minOpacity"; "showLegend": "showLegend"; "to": "to"; "value": "value"; }, {}, never>;
|
|
47
50
|
}
|
|
48
51
|
/**
|
|
49
52
|
* ColorMapping Array Directive
|
|
@@ -51,4 +54,6 @@ export declare class ColorMappingDirective extends ComplexBase<ColorMappingDirec
|
|
|
51
54
|
*/
|
|
52
55
|
export declare class ColorMappingsDirective extends ArrayBase<ColorMappingsDirective> {
|
|
53
56
|
constructor();
|
|
57
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ColorMappingsDirective, never>;
|
|
58
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ColorMappingsDirective, "e-levels>e-colorMappings", never, {}, {}, ["children"]>;
|
|
54
59
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* Represents the directive to configure and render level leaf items in the treemap.
|
|
5
6
|
* ```html
|
|
@@ -88,6 +89,8 @@ export declare class LevelDirective extends ComplexBase<LevelDirective> {
|
|
|
88
89
|
*/
|
|
89
90
|
headerTemplate: any;
|
|
90
91
|
constructor(viewContainerRef: ViewContainerRef);
|
|
92
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LevelDirective, never>;
|
|
93
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LevelDirective, "e-levels>e-level", never, { "autoFill": "autoFill"; "border": "border"; "colorMapping": "colorMapping"; "fill": "fill"; "groupGap": "groupGap"; "groupPadding": "groupPadding"; "groupPath": "groupPath"; "headerAlignment": "headerAlignment"; "headerFormat": "headerFormat"; "headerHeight": "headerHeight"; "headerStyle": "headerStyle"; "headerTemplate": "headerTemplate"; "opacity": "opacity"; "showHeader": "showHeader"; "templatePosition": "templatePosition"; }, {}, ["headerTemplate", "childColorMapping"]>;
|
|
91
94
|
}
|
|
92
95
|
/**
|
|
93
96
|
* Level Array Directive
|
|
@@ -95,4 +98,6 @@ export declare class LevelDirective extends ComplexBase<LevelDirective> {
|
|
|
95
98
|
*/
|
|
96
99
|
export declare class LevelsDirective extends ArrayBase<LevelsDirective> {
|
|
97
100
|
constructor();
|
|
101
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LevelsDirective, never>;
|
|
102
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LevelsDirective, "ej-treemap>e-levels", never, {}, {}, ["children"]>;
|
|
98
103
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { ValueProvider } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/common";
|
|
4
|
+
import * as i2 from "./treemap.module";
|
|
2
5
|
export declare const TreeMapTooltipService: ValueProvider;
|
|
3
6
|
export declare const TreeMapLegendService: ValueProvider;
|
|
4
7
|
export declare const TreeMapHighlightService: ValueProvider;
|
|
@@ -10,4 +13,7 @@ export declare const ImageExportService: ValueProvider;
|
|
|
10
13
|
* NgModule definition for the TreeMap component with providers.
|
|
11
14
|
*/
|
|
12
15
|
export declare class TreeMapAllModule {
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeMapAllModule, never>;
|
|
17
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TreeMapAllModule, never, [typeof i1.CommonModule, typeof i2.TreeMapModule], [typeof i2.TreeMapModule]>;
|
|
18
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TreeMapAllModule>;
|
|
13
19
|
}
|
|
@@ -2,6 +2,7 @@ import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@a
|
|
|
2
2
|
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import { TreeMap } from '@syncfusion/ej2-treemap';
|
|
4
4
|
import { LevelsDirective } from './levels.directive';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare const inputs: string[];
|
|
6
7
|
export declare const outputs: string[];
|
|
7
8
|
export declare const twoWays: string[];
|
|
@@ -47,4 +48,6 @@ export declare class TreeMapComponent extends TreeMap implements IComponentBase
|
|
|
47
48
|
ngAfterContentChecked(): void;
|
|
48
49
|
registerEvents: (eventList: string[]) => void;
|
|
49
50
|
addTwoWay: (propList: string[]) => void;
|
|
51
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeMapComponent, never>;
|
|
52
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TreeMapComponent, "ejs-treemap", never, { "allowImageExport": "allowImageExport"; "allowPdfExport": "allowPdfExport"; "allowPrint": "allowPrint"; "background": "background"; "border": "border"; "breadcrumbConnector": "breadcrumbConnector"; "colorValuePath": "colorValuePath"; "dataSource": "dataSource"; "description": "description"; "drillDownView": "drillDownView"; "enableBreadcrumb": "enableBreadcrumb"; "enableDrillDown": "enableDrillDown"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "equalColorValuePath": "equalColorValuePath"; "format": "format"; "height": "height"; "highlightSettings": "highlightSettings"; "initialDrillDown": "initialDrillDown"; "layoutType": "layoutType"; "leafItemSettings": "leafItemSettings"; "legendSettings": "legendSettings"; "levels": "levels"; "locale": "locale"; "margin": "margin"; "palette": "palette"; "query": "query"; "rangeColorValuePath": "rangeColorValuePath"; "renderDirection": "renderDirection"; "selectionSettings": "selectionSettings"; "tabIndex": "tabIndex"; "theme": "theme"; "titleSettings": "titleSettings"; "tooltipSettings": "tooltipSettings"; "useGroupingSeparator": "useGroupingSeparator"; "weightValuePath": "weightValuePath"; "width": "width"; }, { "beforePrint": "beforePrint"; "click": "click"; "doubleClick": "doubleClick"; "drillEnd": "drillEnd"; "drillStart": "drillStart"; "itemClick": "itemClick"; "itemHighlight": "itemHighlight"; "itemMove": "itemMove"; "itemRendering": "itemRendering"; "itemSelected": "itemSelected"; "legendItemRendering": "legendItemRendering"; "legendRendering": "legendRendering"; "load": "load"; "loaded": "loaded"; "mouseMove": "mouseMove"; "resize": "resize"; "rightClick": "rightClick"; "tooltipRendering": "tooltipRendering"; }, ["tooltipSettings_template", "leafItemSettings_labelTemplate", "childLevels"], never>;
|
|
50
53
|
}
|
|
@@ -1,5 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./treemap.component";
|
|
3
|
+
import * as i2 from "./colormapping.directive";
|
|
4
|
+
import * as i3 from "./levels.directive";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
1
6
|
/**
|
|
2
7
|
* NgModule definition for the TreeMap component.
|
|
3
8
|
*/
|
|
4
9
|
export declare class TreeMapModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeMapModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TreeMapModule, [typeof i1.TreeMapComponent, typeof i2.ColorMappingDirective, typeof i2.ColorMappingsDirective, typeof i3.LevelDirective, typeof i3.LevelsDirective], [typeof i4.CommonModule], [typeof i1.TreeMapComponent, typeof i2.ColorMappingDirective, typeof i2.ColorMappingsDirective, typeof i3.LevelDirective, typeof i3.LevelsDirective]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TreeMapModule>;
|
|
5
13
|
}
|