@syncfusion/ej2-angular-treemap 26.2.4-ngcc → 26.2.4

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.
Files changed (31) hide show
  1. package/CHANGELOG.md +83 -0
  2. package/esm2020/public_api.mjs +2 -0
  3. package/esm2020/src/index.mjs +7 -0
  4. package/esm2020/src/treemap/colormapping.directive.mjs +46 -0
  5. package/esm2020/src/treemap/levels.directive.mjs +66 -0
  6. package/esm2020/src/treemap/treemap-all.module.mjs +47 -0
  7. package/esm2020/src/treemap/treemap.component.mjs +126 -0
  8. package/esm2020/src/treemap/treemap.module.mjs +43 -0
  9. package/esm2020/syncfusion-ej2-angular-treemap.mjs +5 -0
  10. package/fesm2015/syncfusion-ej2-angular-treemap.mjs +314 -0
  11. package/fesm2015/syncfusion-ej2-angular-treemap.mjs.map +1 -0
  12. package/fesm2020/syncfusion-ej2-angular-treemap.mjs +314 -0
  13. package/fesm2020/syncfusion-ej2-angular-treemap.mjs.map +1 -0
  14. package/package.json +26 -12
  15. package/src/treemap/colormapping.directive.d.ts +5 -0
  16. package/src/treemap/levels.directive.d.ts +5 -0
  17. package/src/treemap/treemap-all.module.d.ts +6 -0
  18. package/src/treemap/treemap.component.d.ts +3 -0
  19. package/src/treemap/treemap.module.d.ts +8 -0
  20. package/syncfusion-ej2-angular-treemap.d.ts +5 -0
  21. package/@syncfusion/ej2-angular-treemap.es5.js +0 -387
  22. package/@syncfusion/ej2-angular-treemap.es5.js.map +0 -1
  23. package/@syncfusion/ej2-angular-treemap.js +0 -355
  24. package/@syncfusion/ej2-angular-treemap.js.map +0 -1
  25. package/dist/ej2-angular-treemap.umd.js +0 -520
  26. package/dist/ej2-angular-treemap.umd.js.map +0 -1
  27. package/dist/ej2-angular-treemap.umd.min.js +0 -11
  28. package/dist/ej2-angular-treemap.umd.min.js.map +0 -1
  29. package/ej2-angular-treemap.d.ts +0 -5
  30. package/ej2-angular-treemap.metadata.json +0 -1
  31. package/license +0 -10
@@ -1 +0,0 @@
1
- {"version":3,"file":"ej2-angular-treemap.umd.min.js","sources":["~/@syncfusion/ej2-angular-treemap/src/treemap/colormapping.directive.ts","~/@syncfusion/ej2-angular-treemap/src/treemap/levels.directive.ts","~/@syncfusion/ej2-angular-treemap/src/treemap/treemap.component.ts","~/@syncfusion/ej2-angular-treemap/src/treemap/treemap.module.ts","~/@syncfusion/ej2-angular-treemap/src/treemap/treemap-all.module.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','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 try {\n let mod = this.injector.get('TreeMapTreeMapLegend');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeMapTreeMapHighlight');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeMapTreeMapSelection');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeMapPrint');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeMapPdfExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeMapImageExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\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 { }"],"names":["_super","input","outputs","ColorMappingDirective","ComplexBase","__extends","viewContainerRef","_this","call","this","setValue","registerEvents","directivePropList","decorators","type","Directive","args","selector","inputs","queries","ctorParameters","ViewContainerRef","ArrayBase","ColorMappingsDirective","children","ContentChildren","LevelDirective","tags","childColorMapping","ContentChild","propDecorators","headerTemplate","__decorate","Template","prototype","LevelsDirective","twoWays","TreeMapComponent","ngEle","srenderer","injector","element","nativeElement","injectedModules","mod","get","indexOf","push","_a","_b","_c","_d","_e","_f","_g","addTwoWay","context","ComponentBase","exports","TreeMap","ngOnInit","ngAfterViewInit","ngOnDestroy","ngAfterContentChecked","tagObjects","instance","childLevels","Component","template","changeDetection","ChangeDetectionStrategy","OnPush","ElementRef","Renderer2","Injector","tooltipSettings_template","leafItemSettings_labelTemplate","ComponentMixins","__metadata","TreeMapModule","TreeMapTooltipService","NgModule","imports","CommonModule","declarations","provide","useValue","TreeMapTooltip","TreeMapLegendService","TreeMapLegend","TreeMapHighlightService","TreeMapHighlight","TreeMapSelectionService","TreeMapSelection","PrintService","Print","PdfExportService","PdfExport","ImageExportService","ImageExport","TreeMapAllModule","providers"],"mappings":"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"}
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- export * from './public_api';
5
- export { inputs as ɵa, outputs as ɵb } from './src/treemap/treemap.component';
@@ -1 +0,0 @@
1
- {"__symbolic":"module","version":3,"exports":[{"from":"@syncfusion/ej2-treemap"}],"metadata":{"ɵa":["allowImageExport","allowPdfExport","allowPrint","background","border","breadcrumbConnector","colorValuePath","dataSource","description","drillDownView","enableBreadcrumb","enableDrillDown","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"],"ɵb":["beforePrint","click","doubleClick","drillEnd","drillStart","itemClick","itemHighlight","itemMove","itemRendering","itemSelected","legendItemRendering","legendRendering","load","loaded","mouseMove","resize","rightClick","tooltipRendering"],"ColorMappingDirective":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComplexBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive"},"arguments":[{"selector":"e-levels>e-colorMappings>e-colorMapping","inputs":["color","from","label","maxOpacity","minOpacity","showLegend","to","value"],"outputs":[],"queries":{}}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"}]}]}},"ColorMappingsDirective":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ArrayBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive"},"arguments":[{"selector":"e-levels>e-colorMappings","queries":{"children":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChildren"},"arguments":[{"__symbolic":"reference","name":"ColorMappingDirective"}]}}}]}],"members":{"__ctor__":[{"__symbolic":"constructor"}]}},"LevelDirective":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComplexBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive"},"arguments":[{"selector":"e-levels>e-level","inputs":["autoFill","border","colorMapping","fill","groupGap","groupPadding","groupPath","headerAlignment","headerFormat","headerHeight","headerStyle","headerTemplate","opacity","showHeader","templatePosition"],"outputs":[],"queries":{"childColorMapping":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":[{"__symbolic":"reference","name":"ColorMappingsDirective"}]}}}]}],"members":{"headerTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["headerTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"}]}]}},"LevelsDirective":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ArrayBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive"},"arguments":[{"selector":"ej-treemap>e-levels","queries":{"children":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChildren"},"arguments":[{"__symbolic":"reference","name":"LevelDirective"}]}}}]}],"members":{"__ctor__":[{"__symbolic":"constructor"}]}},"TreeMapComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-treemap","name":"TreeMap"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"ejs-treemap","inputs":{"__symbolic":"reference","name":"ɵa"},"outputs":{"__symbolic":"reference","name":"ɵb"},"template":"","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy"},"member":"OnPush"},"queries":{"childLevels":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":[{"__symbolic":"reference","name":"LevelsDirective"}]}}}]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentMixins"},"arguments":[[{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentBase"}]]}],"members":{"tooltipSettings_template":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["tooltipSettingsTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"leafItemSettings_labelTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["leafItemSettingsLabelTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Renderer2"},{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"ngAfterContentChecked":[{"__symbolic":"method"}]}},"TreeMapModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"declarations":[{"__symbolic":"reference","name":"TreeMapComponent"},{"__symbolic":"reference","name":"ColorMappingDirective"},{"__symbolic":"reference","name":"ColorMappingsDirective"},{"__symbolic":"reference","name":"LevelDirective"},{"__symbolic":"reference","name":"LevelsDirective"}],"exports":[{"__symbolic":"reference","name":"TreeMapComponent"},{"__symbolic":"reference","name":"ColorMappingDirective"},{"__symbolic":"reference","name":"ColorMappingsDirective"},{"__symbolic":"reference","name":"LevelDirective"},{"__symbolic":"reference","name":"LevelsDirective"}]}]}],"members":{}},"TreeMapAllModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"},{"__symbolic":"reference","name":"TreeMapModule"}],"exports":[{"__symbolic":"reference","name":"TreeMapModule"}],"providers":[{"__symbolic":"reference","name":"TreeMapTooltipService"},{"__symbolic":"reference","name":"TreeMapLegendService"},{"__symbolic":"reference","name":"TreeMapHighlightService"},{"__symbolic":"reference","name":"TreeMapSelectionService"},{"__symbolic":"reference","name":"PrintService"},{"__symbolic":"reference","name":"PdfExportService"},{"__symbolic":"reference","name":"ImageExportService"}]}]}],"members":{}},"TreeMapTooltipService":{"provide":"TreeMapTreeMapTooltip","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treemap","name":"TreeMapTooltip"}},"TreeMapLegendService":{"provide":"TreeMapTreeMapLegend","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treemap","name":"TreeMapLegend"}},"TreeMapHighlightService":{"provide":"TreeMapTreeMapHighlight","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treemap","name":"TreeMapHighlight"}},"TreeMapSelectionService":{"provide":"TreeMapTreeMapSelection","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treemap","name":"TreeMapSelection"}},"PrintService":{"provide":"TreeMapPrint","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treemap","name":"Print"}},"PdfExportService":{"provide":"TreeMapPdfExport","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treemap","name":"PdfExport"}},"ImageExportService":{"provide":"TreeMapImageExport","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treemap","name":"ImageExport"}}},"origins":{"ɵa":"./src/treemap/treemap.component","ɵb":"./src/treemap/treemap.component","ColorMappingDirective":"./src/treemap/colormapping.directive","ColorMappingsDirective":"./src/treemap/colormapping.directive","LevelDirective":"./src/treemap/levels.directive","LevelsDirective":"./src/treemap/levels.directive","TreeMapComponent":"./src/treemap/treemap.component","TreeMapModule":"./src/treemap/treemap.module","TreeMapAllModule":"./src/treemap/treemap-all.module","TreeMapTooltipService":"./src/treemap/treemap-all.module","TreeMapLegendService":"./src/treemap/treemap-all.module","TreeMapHighlightService":"./src/treemap/treemap-all.module","TreeMapSelectionService":"./src/treemap/treemap-all.module","PrintService":"./src/treemap/treemap-all.module","PdfExportService":"./src/treemap/treemap-all.module","ImageExportService":"./src/treemap/treemap-all.module"},"importAs":"@syncfusion/ej2-angular-treemap"}
package/license DELETED
@@ -1,10 +0,0 @@
1
- Essential JS 2 library is available under the Syncfusion Essential Studio program, and can be licensed either under the Syncfusion Community License Program or the Syncfusion commercial license.
2
-
3
- To be qualified for the Syncfusion Community License Program you must have a gross revenue of less than one (1) million U.S. dollars ($1,000,000.00 USD) per year and have less than five (5) developers in your organization, and agree to be bound by Syncfusion’s terms and conditions.
4
-
5
- Customers who do not qualify for the community license can contact sales@syncfusion.com for commercial licensing options.
6
-
7
- Under no circumstances can you use this product without (1) either a Community License or a commercial license and (2) without agreeing and abiding by Syncfusion’s license containing all terms and conditions.
8
-
9
- The Syncfusion license that contains the terms and conditions can be found at
10
- https://www.syncfusion.com/content/downloads/syncfusion_license.pdf