@syncfusion/ej2-angular-treemap 31.1.17 → 31.2.2-ngcc

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 (35) hide show
  1. package/@syncfusion/ej2-angular-treemap.es5.js +387 -0
  2. package/@syncfusion/ej2-angular-treemap.es5.js.map +1 -0
  3. package/@syncfusion/ej2-angular-treemap.js +355 -0
  4. package/@syncfusion/ej2-angular-treemap.js.map +1 -0
  5. package/LICENSE +10 -0
  6. package/dist/ej2-angular-treemap.umd.js +520 -0
  7. package/dist/ej2-angular-treemap.umd.js.map +1 -0
  8. package/dist/ej2-angular-treemap.umd.min.js +11 -0
  9. package/dist/ej2-angular-treemap.umd.min.js.map +1 -0
  10. package/ej2-angular-treemap.d.ts +5 -0
  11. package/ej2-angular-treemap.metadata.json +1 -0
  12. package/package.json +17 -61
  13. package/public_api.d.ts +1 -1
  14. package/schematics/utils/lib-details.js +2 -2
  15. package/schematics/utils/lib-details.ts +2 -2
  16. package/src/index.d.ts +6 -6
  17. package/src/treemap/colormapping.directive.d.ts +54 -59
  18. package/src/treemap/levels.directive.d.ts +98 -103
  19. package/src/treemap/treemap-all.module.d.ts +13 -19
  20. package/src/treemap/treemap.component.d.ts +50 -53
  21. package/src/treemap/treemap.module.d.ts +5 -13
  22. package/CHANGELOG.md +0 -83
  23. package/esm2020/public_api.mjs +0 -2
  24. package/esm2020/src/index.mjs +0 -7
  25. package/esm2020/src/treemap/colormapping.directive.mjs +0 -46
  26. package/esm2020/src/treemap/levels.directive.mjs +0 -66
  27. package/esm2020/src/treemap/treemap-all.module.mjs +0 -47
  28. package/esm2020/src/treemap/treemap.component.mjs +0 -126
  29. package/esm2020/src/treemap/treemap.module.mjs +0 -43
  30. package/esm2020/syncfusion-ej2-angular-treemap.mjs +0 -5
  31. package/fesm2015/syncfusion-ej2-angular-treemap.mjs +0 -314
  32. package/fesm2015/syncfusion-ej2-angular-treemap.mjs.map +0 -1
  33. package/fesm2020/syncfusion-ej2-angular-treemap.mjs +0 -314
  34. package/fesm2020/syncfusion-ej2-angular-treemap.mjs.map +0 -1
  35. package/syncfusion-ej2-angular-treemap.d.ts +0 -5
@@ -0,0 +1 @@
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 /** @type {?} */ input: string[] = ['color', 'from', 'label', 'maxOpacity', 'minOpacity', 'showLegend', 'to', 'value'];\nlet /** @type {?} */ outputs: string[] = [];\nexport class ColorMappingDirective extends ComplexBase<ColorMappingDirective> {\npublic directivePropList: any;\n/**\n * Sets and gets the color for the color-mapping in treemap.\n * \\@default null\n */\npublic color: any;\n/**\n * Sets and gets the value from which the range of color mapping starts.\n * \\@default null\n */\npublic 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 */\npublic label: any;\n/**\n * Sets and gets the maximum opacity for the color-mapping in the treemap.\n * \\@default null\n */\npublic maxOpacity: any;\n/**\n * Sets and gets the minimum opacity for the color-mapping in the treemap.\n * \\@default null\n */\npublic minOpacity: any;\n/**\n * Enables or disables the visibility of the legend for color mapping in the treemap.\n * \\@default true\n */\npublic showLegend: any;\n/**\n * Sets and gets the value to which the range of color mapping ends.\n * \\@default null\n */\npublic to: any;\n/**\n * Sets and gets the value for the color-mapping from the data source.\n * \\@default null\n */\npublic value: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-levels>e-colorMappings>e-colorMapping',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\n}\n\nfunction ColorMappingDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColorMappingDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColorMappingDirective.ctorParameters;\n/** @type {?} */\nColorMappingDirective.prototype.directivePropList;\n/**\n * Sets and gets the color for the color-mapping in treemap.\n * \\@default null\n * @type {?}\n */\nColorMappingDirective.prototype.color;\n/**\n * Sets and gets the value from which the range of color mapping starts.\n * \\@default null\n * @type {?}\n */\nColorMappingDirective.prototype.from;\n/**\n * Sets and gets the label text for the legend when it is rendered based on color mapping.\n * \\@default null\n * @type {?}\n */\nColorMappingDirective.prototype.label;\n/**\n * Sets and gets the maximum opacity for the color-mapping in the treemap.\n * \\@default null\n * @type {?}\n */\nColorMappingDirective.prototype.maxOpacity;\n/**\n * Sets and gets the minimum opacity for the color-mapping in the treemap.\n * \\@default null\n * @type {?}\n */\nColorMappingDirective.prototype.minOpacity;\n/**\n * Enables or disables the visibility of the legend for color mapping in the treemap.\n * \\@default true\n * @type {?}\n */\nColorMappingDirective.prototype.showLegend;\n/**\n * Sets and gets the value to which the range of color mapping ends.\n * \\@default null\n * @type {?}\n */\nColorMappingDirective.prototype.to;\n/**\n * Sets and gets the value for the color-mapping from the data source.\n * \\@default null\n * @type {?}\n */\nColorMappingDirective.prototype.value;\n/** @type {?} */\nColorMappingDirective.prototype.viewContainerRef;\n}\n\n/**\n * ColorMapping Array Directive\n */\nexport class ColorMappingsDirective extends ArrayBase<ColorMappingsDirective> {\nconstructor() {\n super('colormapping');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-levels>e-colorMappings',\n queries: {\n children: new ContentChildren(ColorMappingDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ColorMappingsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColorMappingsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColorMappingsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\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 /** @type {?} */ input: string[] = ['autoFill', 'border', 'colorMapping', 'fill', 'groupGap', 'groupPadding', 'groupPath', 'headerAlignment', 'headerFormat', 'headerHeight', 'headerStyle', 'headerTemplate', 'opacity', 'showHeader', 'templatePosition'];\nlet /** @type {?} */ 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 */\nexport class LevelDirective extends ComplexBase<LevelDirective> {\npublic directivePropList: any;\npublic childColorMapping: any;\npublic 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 */\npublic 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 */\npublic border: any;\n/**\n * Sets and gets the options for customizing the color-mapping of the level leaf items in the treemap.\n */\npublic colorMapping: any;\n/**\n * Sets and gets the fill color of the level leaf item in the treemap.\n * \\@default null\n */\npublic fill: any;\n/**\n * Sets and gets the gap between the level leaf items in the treemap.\n * \\@default 0\n */\npublic groupGap: any;\n/**\n * Sets and gets the padding of level leaf items in the treemap.\n * \\@default 10\n */\npublic 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 */\npublic groupPath: any;\n/**\n * Sets and gets the alignment of the header of the treemap.\n * \\@default 'Near'\n */\npublic 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 */\npublic headerFormat: any;\n/**\n * Sets and gets the height of header in the treemap.\n * \\@default 20\n */\npublic headerHeight: any;\n/**\n * Sets and gets the options for customizing the text style of header label of the level leaf item.\n */\npublic headerStyle: any;\n/**\n * Sets and gets the opacity in the level leaf item of the treemap.\n * \\@default 1\n */\npublic opacity: any;\n/**\n * Shows or hides the header in level leaf item of the treemap.\n * \\@default true\n */\npublic showHeader: any;\n/**\n * Sets and gets the options for customizing the template position of the treemap.\n * \\@default 'TopLeft'\n */\npublic templatePosition: any;\n/**\n * Sets and gets the template for header in the treemap.\n * \\@default null\n * \\@asptype string\n */\n@Template()\n public headerTemplate: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-levels>e-level',\n inputs: input,\n outputs: outputs, \n queries: {\n childColorMapping: new ContentChild(ColorMappingsDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'headerTemplate': [{ type: ContentChild, args: ['headerTemplate', ] },],\n};\n}\n\nfunction LevelDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nLevelDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nLevelDirective.ctorParameters;\n/** @type {?} */\nLevelDirective.propDecorators;\n/** @type {?} */\nLevelDirective.prototype.directivePropList;\n/** @type {?} */\nLevelDirective.prototype.childColorMapping;\n/** @type {?} */\nLevelDirective.prototype.tags;\n/**\n * Enables or disables the automatic filling of the colors from the palette in the items of the treemap.\n * \\@default false\n * @type {?}\n */\nLevelDirective.prototype.autoFill;\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 * @type {?}\n */\nLevelDirective.prototype.border;\n/**\n * Sets and gets the options for customizing the color-mapping of the level leaf items in the treemap.\n * @type {?}\n */\nLevelDirective.prototype.colorMapping;\n/**\n * Sets and gets the fill color of the level leaf item in the treemap.\n * \\@default null\n * @type {?}\n */\nLevelDirective.prototype.fill;\n/**\n * Sets and gets the gap between the level leaf items in the treemap.\n * \\@default 0\n * @type {?}\n */\nLevelDirective.prototype.groupGap;\n/**\n * Sets and gets the padding of level leaf items in the treemap.\n * \\@default 10\n * @type {?}\n */\nLevelDirective.prototype.groupPadding;\n/**\n * Sets and gets the value path from the data source in the treemap to render the item.\n * \\@default null\n * @type {?}\n */\nLevelDirective.prototype.groupPath;\n/**\n * Sets and gets the alignment of the header of the treemap.\n * \\@default 'Near'\n * @type {?}\n */\nLevelDirective.prototype.headerAlignment;\n/**\n * Sets and gets the string to format the header label of the level leaf items in the treemap.\n * \\@default null\n * @type {?}\n */\nLevelDirective.prototype.headerFormat;\n/**\n * Sets and gets the height of header in the treemap.\n * \\@default 20\n * @type {?}\n */\nLevelDirective.prototype.headerHeight;\n/**\n * Sets and gets the options for customizing the text style of header label of the level leaf item.\n * @type {?}\n */\nLevelDirective.prototype.headerStyle;\n/**\n * Sets and gets the opacity in the level leaf item of the treemap.\n * \\@default 1\n * @type {?}\n */\nLevelDirective.prototype.opacity;\n/**\n * Shows or hides the header in level leaf item of the treemap.\n * \\@default true\n * @type {?}\n */\nLevelDirective.prototype.showHeader;\n/**\n * Sets and gets the options for customizing the template position of the treemap.\n * \\@default 'TopLeft'\n * @type {?}\n */\nLevelDirective.prototype.templatePosition;\n/**\n * Sets and gets the template for header in the treemap.\n * \\@default null\n * \\@asptype string\n * @type {?}\n */\nLevelDirective.prototype.headerTemplate;\n/** @type {?} */\nLevelDirective.prototype.viewContainerRef;\n}\n\n/**\n * Level Array Directive\n */\nexport class LevelsDirective extends ArrayBase<LevelsDirective> {\nconstructor() {\n super('levels');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ej-treemap>e-levels',\n queries: {\n children: new ContentChildren(LevelDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction LevelsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nLevelsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nLevelsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\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 /** @type {?} */ 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 /** @type {?} */ outputs: string[] = ['beforePrint','click','doubleClick','drillEnd','drillStart','itemClick','itemHighlight','itemMove','itemRendering','itemSelected','legendItemRendering','legendRendering','load','loaded','mouseMove','resize','rightClick','tooltipRendering'];\nexport const /** @type {?} */ twoWays: string[] = [''];\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@ComponentMixins([ComponentBase])\nexport class TreeMapComponent extends TreeMap implements IComponentBase {\npublic context : any;\npublic 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;\npublic tooltipRendering: any;\npublic childLevels: QueryList<LevelsDirective>;\npublic tags: string[] = ['levels'];\n \n @Template()\npublic tooltipSettings_template: any;\n \n @Template()\npublic leafItemSettings_labelTemplate: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate 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 * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childLevels;\n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\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];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'tooltipSettings_template': [{ type: ContentChild, args: ['tooltipSettingsTemplate', ] },],\n'leafItemSettings_labelTemplate': [{ type: ContentChild, args: ['leafItemSettingsLabelTemplate', ] },],\n};\n}\n\nfunction TreeMapComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nTreeMapComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nTreeMapComponent.ctorParameters;\n/** @type {?} */\nTreeMapComponent.propDecorators;\n/** @type {?} */\nTreeMapComponent.prototype.context;\n/** @type {?} */\nTreeMapComponent.prototype.tagObjects;\n/** @type {?} */\nTreeMapComponent.prototype.beforePrint;\n/** @type {?} */\nTreeMapComponent.prototype.click;\n/** @type {?} */\nTreeMapComponent.prototype.doubleClick;\n/** @type {?} */\nTreeMapComponent.prototype.drillEnd;\n/** @type {?} */\nTreeMapComponent.prototype.drillStart;\n/** @type {?} */\nTreeMapComponent.prototype.itemClick;\n/** @type {?} */\nTreeMapComponent.prototype.itemHighlight;\n/** @type {?} */\nTreeMapComponent.prototype.itemMove;\n/** @type {?} */\nTreeMapComponent.prototype.itemRendering;\n/** @type {?} */\nTreeMapComponent.prototype.itemSelected;\n/** @type {?} */\nTreeMapComponent.prototype.legendItemRendering;\n/** @type {?} */\nTreeMapComponent.prototype.legendRendering;\n/** @type {?} */\nTreeMapComponent.prototype.load;\n/** @type {?} */\nTreeMapComponent.prototype.loaded;\n/** @type {?} */\nTreeMapComponent.prototype.mouseMove;\n/** @type {?} */\nTreeMapComponent.prototype.resize;\n/** @type {?} */\nTreeMapComponent.prototype.rightClick;\n/** @type {?} */\nTreeMapComponent.prototype.tooltipRendering;\n/** @type {?} */\nTreeMapComponent.prototype.childLevels;\n/** @type {?} */\nTreeMapComponent.prototype.tags;\n/** @type {?} */\nTreeMapComponent.prototype.tooltipSettings_template;\n/** @type {?} */\nTreeMapComponent.prototype.leafItemSettings_labelTemplate;\n/** @type {?} */\nTreeMapComponent.prototype.registerEvents;\n/** @type {?} */\nTreeMapComponent.prototype.addTwoWay;\n/** @type {?} */\nTreeMapComponent.prototype.ngEle;\n/** @type {?} */\nTreeMapComponent.prototype.srenderer;\n/** @type {?} */\nTreeMapComponent.prototype.viewContainerRef;\n/** @type {?} */\nTreeMapComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\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 * NgModule definition for the TreeMap component.\n */\nexport class TreeMapModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\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}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction TreeMapModule_tsickle_Closure_declarations() {\n/** @type {?} */\nTreeMapModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nTreeMapModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","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 /** @type {?} */ TreeMapTooltipService: ValueProvider = { provide: 'TreeMapTreeMapTooltip', useValue: TreeMapTooltip};\nexport const /** @type {?} */ TreeMapLegendService: ValueProvider = { provide: 'TreeMapTreeMapLegend', useValue: TreeMapLegend};\nexport const /** @type {?} */ TreeMapHighlightService: ValueProvider = { provide: 'TreeMapTreeMapHighlight', useValue: TreeMapHighlight};\nexport const /** @type {?} */ TreeMapSelectionService: ValueProvider = { provide: 'TreeMapTreeMapSelection', useValue: TreeMapSelection};\nexport const /** @type {?} */ PrintService: ValueProvider = { provide: 'TreeMapPrint', useValue: Print};\nexport const /** @type {?} */ PdfExportService: ValueProvider = { provide: 'TreeMapPdfExport', useValue: PdfExport};\nexport const /** @type {?} */ ImageExportService: ValueProvider = { provide: 'TreeMapImageExport', useValue: ImageExport};\n/**\n * NgModule definition for the TreeMap component with providers.\n */\nexport class TreeMapAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\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}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction TreeMapAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nTreeMapAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nTreeMapAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["input","outputs","ColorMappingDirective","_super","viewContainerRef","_this","call","this","setValue","registerEvents","directivePropList","__extends","ComplexBase","decorators","type","Directive","args","selector","inputs","queries","ctorParameters","ViewContainerRef","ColorMappingsDirective","ArrayBase","children","ContentChildren","LevelDirective","tags","childColorMapping","ContentChild","propDecorators","headerTemplate","__decorate","Template","prototype","LevelsDirective","twoWays","exports","TreeMapComponent","ngEle","srenderer","injector","element","nativeElement","injectedModules","mod","get","indexOf","push","_a","_b","_c","_d","_e","_f","_g","addTwoWay","context","ComponentBase","ngOnInit","ngAfterViewInit","ngOnDestroy","ngAfterContentChecked","tagObjects","instance","childLevels","TreeMap","Component","template","changeDetection","ChangeDetectionStrategy","OnPush","ElementRef","Renderer2","Injector","tooltipSettings_template","leafItemSettings_labelTemplate","ComponentMixins","__metadata","TreeMapModule","NgModule","imports","CommonModule","declarations","TreeMapTooltipService","provide","useValue","TreeMapTooltip","TreeMapLegendService","TreeMapLegend","TreeMapHighlightService","TreeMapHighlight","TreeMapSelectionService","TreeMapSelection","PrintService","Print","PdfExportService","PdfExport","ImageExportService","ImageExport","TreeMapAllModule","providers"],"mappings":"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"}
@@ -0,0 +1,5 @@
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';
@@ -0,0 +1 @@
1
+ {"__symbolic":"module","version":3,"exports":[{"from":"@syncfusion/ej2-treemap"}],"metadata":{"ɵa":["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"],"ɵ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/package.json CHANGED
@@ -1,74 +1,30 @@
1
1
  {
2
- "_from": "@syncfusion/ej2-angular-treemap@*",
3
- "_id": "@syncfusion/ej2-angular-treemap@16.32.0",
4
- "_inBundle": false,
5
- "_integrity": "sha512-tIvGZnHwFPS23tbImEgU83OCmMd5tJJz4pu2jNcfsDA7edu8owJRx+MiUcpvCIdyxVIPSgRlLi0VCa3uf+CI+A==",
6
- "_location": "/@syncfusion/ej2-angular-treemap",
7
- "_phantomChildren": {},
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-angular-development/@syncfusion/ej2-angular-treemap/-/ej2-angular-treemap-16.32.0.tgz",
23
- "_shasum": "0c4d3ec6432b73cf7249ba2c8ee7ae2cdca004b8",
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,
33
- "dependencies": {
34
- "@syncfusion/ej2-angular-base": "~31.1.17",
35
- "@syncfusion/ej2-base": "~31.1.17",
36
- "@syncfusion/ej2-treemap": "31.1.17"
37
- },
38
- "deprecated": false,
2
+ "name": "@syncfusion/ej2-angular-treemap",
3
+ "version": "31.2.2-ngcc",
39
4
  "description": "Essential JS 2 TreeMap Components for Angular",
40
- "es2020": "fesm2020/syncfusion-ej2-angular-treemap.mjs",
41
- "esm2020": "esm2020/syncfusion-ej2-angular-treemap.mjs",
42
- "exports": {
43
- "./package.json": {
44
- "default": "./package.json"
45
- },
46
- ".": {
47
- "types": "./syncfusion-ej2-angular-treemap.d.ts",
48
- "esm2020": "./esm2020/syncfusion-ej2-angular-treemap.mjs",
49
- "es2020": "./fesm2020/syncfusion-ej2-angular-treemap.mjs",
50
- "es2015": "./fesm2015/syncfusion-ej2-angular-treemap.mjs",
51
- "node": "./fesm2015/syncfusion-ej2-angular-treemap.mjs",
52
- "default": "./fesm2020/syncfusion-ej2-angular-treemap.mjs"
53
- }
5
+ "author": "Syncfusion Inc.",
6
+ "license": "SEE LICENSE IN license",
7
+ "schematics": "./schematics/collection.json",
8
+ "dependencies": {
9
+ "@syncfusion/ej2-base": "~31.2.2",
10
+ "@syncfusion/ej2-angular-base": "~31.2.2",
11
+ "@syncfusion/ej2-treemap": "31.2.2"
54
12
  },
55
- "fesm2015": "fesm2015/syncfusion-ej2-angular-treemap.mjs",
56
- "fesm2020": "fesm2020/syncfusion-ej2-angular-treemap.mjs",
57
- "homepage": "https://www.syncfusion.com/angular-components",
13
+ "devDependencies": {},
58
14
  "keywords": [
59
15
  "angular",
60
16
  "ng-treemap",
61
17
  "ej2-ng-treemap"
62
18
  ],
63
- "license": "SEE LICENSE IN license",
64
- "module": "fesm2015/syncfusion-ej2-angular-treemap.mjs",
65
- "name": "@syncfusion/ej2-angular-treemap",
66
19
  "repository": {
67
20
  "type": "git",
68
- "url": "git+https://github.com/syncfusion/ej2-angular-ui-components.git"
21
+ "url": "https://github.com/syncfusion/ej2-angular-ui-components.git"
69
22
  },
70
- "schematics": "./schematics/collection.json",
71
23
  "sideEffects": false,
72
- "typings": "syncfusion-ej2-angular-treemap.d.ts",
73
- "version": "31.1.17"
24
+ "main": "dist/ej2-angular-treemap.umd.js",
25
+ "module": "@syncfusion/ej2-angular-treemap.es5.js",
26
+ "es2015": "@syncfusion/ej2-angular-treemap.js",
27
+ "typings": "ej2-angular-treemap.d.ts",
28
+ "metadata": "ej2-angular-treemap.metadata.json",
29
+ "homepage": "https://www.syncfusion.com/angular-components"
74
30
  }
package/public_api.d.ts CHANGED
@@ -1 +1 @@
1
- export * from './src/index';
1
+ export * from './src/index';
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.pkgName = '@syncfusion/ej2-angular-treemap';
4
- exports.pkgVer = '^31.1.17';
4
+ exports.pkgVer = '^31.2.2';
5
5
  exports.moduleName = 'TreeMapModule';
6
- exports.themeVer = '~31.1.17';
6
+ exports.themeVer = '~31.2.2';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-treemap';
2
- export const pkgVer = '^31.1.17';
2
+ export const pkgVer = '^31.2.2';
3
3
  export const moduleName = 'TreeMapModule';
4
- export const themeVer = '~31.1.17';
4
+ export const themeVer = '~31.2.2';
package/src/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- export { ColorMappingDirective, ColorMappingsDirective } from './treemap/colormapping.directive';
2
- export { LevelDirective, LevelsDirective } from './treemap/levels.directive';
3
- export { TreeMapComponent } from './treemap/treemap.component';
4
- export { TreeMapModule } from './treemap/treemap.module';
5
- export { TreeMapAllModule, TreeMapTooltipService, TreeMapLegendService, TreeMapHighlightService, TreeMapSelectionService, PrintService, PdfExportService, ImageExportService } from './treemap/treemap-all.module';
6
- export * from '@syncfusion/ej2-treemap';
1
+ export { ColorMappingDirective, ColorMappingsDirective } from './treemap/colormapping.directive';
2
+ export { LevelDirective, LevelsDirective } from './treemap/levels.directive';
3
+ export { TreeMapComponent } from './treemap/treemap.component';
4
+ export { TreeMapModule } from './treemap/treemap.module';
5
+ export { TreeMapAllModule, TreeMapTooltipService, TreeMapLegendService, TreeMapHighlightService, TreeMapSelectionService, PrintService, PdfExportService, ImageExportService } from './treemap/treemap-all.module';
6
+ export * from '@syncfusion/ej2-treemap';
@@ -1,59 +1,54 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- import * as i0 from "@angular/core";
4
- export declare class ColorMappingDirective extends ComplexBase<ColorMappingDirective> {
5
- private viewContainerRef;
6
- directivePropList: any;
7
- /**
8
- * Sets and gets the color for the color-mapping in treemap.
9
- * @default null
10
- */
11
- color: any;
12
- /**
13
- * Sets and gets the value from which the range of color mapping starts.
14
- * @default null
15
- */
16
- from: any;
17
- /**
18
- * Sets and gets the label text for the legend when it is rendered based on color mapping.
19
- * @default null
20
- */
21
- label: any;
22
- /**
23
- * Sets and gets the maximum opacity for the color-mapping in the treemap.
24
- * @default null
25
- */
26
- maxOpacity: any;
27
- /**
28
- * Sets and gets the minimum opacity for the color-mapping in the treemap.
29
- * @default null
30
- */
31
- minOpacity: any;
32
- /**
33
- * Enables or disables the visibility of the legend for color mapping in the treemap.
34
- * @default true
35
- */
36
- showLegend: any;
37
- /**
38
- * Sets and gets the value to which the range of color mapping ends.
39
- * @default null
40
- */
41
- to: any;
42
- /**
43
- * Sets and gets the value for the color-mapping from the data source.
44
- * @default null
45
- */
46
- value: any;
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>;
50
- }
51
- /**
52
- * ColorMapping Array Directive
53
- * @private
54
- */
55
- export declare class ColorMappingsDirective extends ArrayBase<ColorMappingsDirective> {
56
- constructor();
57
- static ɵfac: i0.ɵɵFactoryDeclaration<ColorMappingsDirective, never>;
58
- static ɵdir: i0.ɵɵDirectiveDeclaration<ColorMappingsDirective, "e-levels>e-colorMappings", never, {}, {}, ["children"]>;
59
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ export declare class ColorMappingDirective extends ComplexBase<ColorMappingDirective> {
4
+ private viewContainerRef;
5
+ directivePropList: any;
6
+ /**
7
+ * Sets and gets the color for the color-mapping in treemap.
8
+ * @default null
9
+ */
10
+ color: any;
11
+ /**
12
+ * Sets and gets the value from which the range of color mapping starts.
13
+ * @default null
14
+ */
15
+ from: any;
16
+ /**
17
+ * Sets and gets the label text for the legend when it is rendered based on color mapping.
18
+ * @default null
19
+ */
20
+ label: any;
21
+ /**
22
+ * Sets and gets the maximum opacity for the color-mapping in the treemap.
23
+ * @default null
24
+ */
25
+ maxOpacity: any;
26
+ /**
27
+ * Sets and gets the minimum opacity for the color-mapping in the treemap.
28
+ * @default null
29
+ */
30
+ minOpacity: any;
31
+ /**
32
+ * Enables or disables the visibility of the legend for color mapping in the treemap.
33
+ * @default true
34
+ */
35
+ showLegend: any;
36
+ /**
37
+ * Sets and gets the value to which the range of color mapping ends.
38
+ * @default null
39
+ */
40
+ to: any;
41
+ /**
42
+ * Sets and gets the value for the color-mapping from the data source.
43
+ * @default null
44
+ */
45
+ value: any;
46
+ constructor(viewContainerRef: ViewContainerRef);
47
+ }
48
+ /**
49
+ * ColorMapping Array Directive
50
+ * @private
51
+ */
52
+ export declare class ColorMappingsDirective extends ArrayBase<ColorMappingsDirective> {
53
+ constructor();
54
+ }
@@ -1,103 +1,98 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- import * as i0 from "@angular/core";
4
- /**
5
- * Represents the directive to configure and render level leaf items in the treemap.
6
- * ```html
7
- * <e-levels>
8
- * <e-level></e-level>
9
- * </e-levels>
10
- * ```
11
- */
12
- export declare class LevelDirective extends ComplexBase<LevelDirective> {
13
- private viewContainerRef;
14
- directivePropList: any;
15
- childColorMapping: any;
16
- tags: string[];
17
- /**
18
- * Enables or disables the automatic filling of the colors from the palette in the items of the treemap.
19
- * @default false
20
- */
21
- autoFill: any;
22
- /**
23
- * Sets and gets the options for customizing the color and width of the border of
24
- * the level leaf items of the treemap.
25
- */
26
- border: any;
27
- /**
28
- * Sets and gets the options for customizing the color-mapping of the level leaf items in the treemap.
29
- */
30
- colorMapping: any;
31
- /**
32
- * Sets and gets the fill color of the level leaf item in the treemap.
33
- * @default null
34
- */
35
- fill: any;
36
- /**
37
- * Sets and gets the gap between the level leaf items in the treemap.
38
- * @default 0
39
- */
40
- groupGap: any;
41
- /**
42
- * Sets and gets the padding of level leaf items in the treemap.
43
- * @default 10
44
- */
45
- groupPadding: any;
46
- /**
47
- * Sets and gets the value path from the data source in the treemap to render the item.
48
- * @default null
49
- */
50
- groupPath: any;
51
- /**
52
- * Sets and gets the alignment of the header of the treemap.
53
- * @default 'Near'
54
- */
55
- headerAlignment: any;
56
- /**
57
- * Sets and gets the string to format the header label of the level leaf items in the treemap.
58
- * @default null
59
- */
60
- headerFormat: any;
61
- /**
62
- * Sets and gets the height of header in the treemap.
63
- * @default 20
64
- */
65
- headerHeight: any;
66
- /**
67
- * Sets and gets the options for customizing the text style of header label of the level leaf item.
68
- */
69
- headerStyle: any;
70
- /**
71
- * Sets and gets the opacity in the level leaf item of the treemap.
72
- * @default 1
73
- */
74
- opacity: any;
75
- /**
76
- * Shows or hides the header in level leaf item of the treemap.
77
- * @default true
78
- */
79
- showHeader: any;
80
- /**
81
- * Sets and gets the options for customizing the template position of the treemap.
82
- * @default 'TopLeft'
83
- */
84
- templatePosition: any;
85
- /**
86
- * Sets and gets the template for header in the treemap.
87
- * @default null
88
- * @asptype string
89
- */
90
- headerTemplate: any;
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"]>;
94
- }
95
- /**
96
- * Level Array Directive
97
- * @private
98
- */
99
- export declare class LevelsDirective extends ArrayBase<LevelsDirective> {
100
- constructor();
101
- static ɵfac: i0.ɵɵFactoryDeclaration<LevelsDirective, never>;
102
- static ɵdir: i0.ɵɵDirectiveDeclaration<LevelsDirective, "ej-treemap>e-levels", never, {}, {}, ["children"]>;
103
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ /**
4
+ * Represents the directive to configure and render level leaf items in the treemap.
5
+ * ```html
6
+ * <e-levels>
7
+ * <e-level></e-level>
8
+ * </e-levels>
9
+ * ```
10
+ */
11
+ export declare class LevelDirective extends ComplexBase<LevelDirective> {
12
+ private viewContainerRef;
13
+ directivePropList: any;
14
+ childColorMapping: any;
15
+ tags: string[];
16
+ /**
17
+ * Enables or disables the automatic filling of the colors from the palette in the items of the treemap.
18
+ * @default false
19
+ */
20
+ autoFill: any;
21
+ /**
22
+ * Sets and gets the options for customizing the color and width of the border of
23
+ * the level leaf items of the treemap.
24
+ */
25
+ border: any;
26
+ /**
27
+ * Sets and gets the options for customizing the color-mapping of the level leaf items in the treemap.
28
+ */
29
+ colorMapping: any;
30
+ /**
31
+ * Sets and gets the fill color of the level leaf item in the treemap.
32
+ * @default null
33
+ */
34
+ fill: any;
35
+ /**
36
+ * Sets and gets the gap between the level leaf items in the treemap.
37
+ * @default 0
38
+ */
39
+ groupGap: any;
40
+ /**
41
+ * Sets and gets the padding of level leaf items in the treemap.
42
+ * @default 10
43
+ */
44
+ groupPadding: any;
45
+ /**
46
+ * Sets and gets the value path from the data source in the treemap to render the item.
47
+ * @default null
48
+ */
49
+ groupPath: any;
50
+ /**
51
+ * Sets and gets the alignment of the header of the treemap.
52
+ * @default 'Near'
53
+ */
54
+ headerAlignment: any;
55
+ /**
56
+ * Sets and gets the string to format the header label of the level leaf items in the treemap.
57
+ * @default null
58
+ */
59
+ headerFormat: any;
60
+ /**
61
+ * Sets and gets the height of header in the treemap.
62
+ * @default 20
63
+ */
64
+ headerHeight: any;
65
+ /**
66
+ * Sets and gets the options for customizing the text style of header label of the level leaf item.
67
+ */
68
+ headerStyle: any;
69
+ /**
70
+ * Sets and gets the opacity in the level leaf item of the treemap.
71
+ * @default 1
72
+ */
73
+ opacity: any;
74
+ /**
75
+ * Shows or hides the header in level leaf item of the treemap.
76
+ * @default true
77
+ */
78
+ showHeader: any;
79
+ /**
80
+ * Sets and gets the options for customizing the template position of the treemap.
81
+ * @default 'TopLeft'
82
+ */
83
+ templatePosition: any;
84
+ /**
85
+ * Sets and gets the template for header in the treemap.
86
+ * @default null
87
+ * @asptype string
88
+ */
89
+ headerTemplate: any;
90
+ constructor(viewContainerRef: ViewContainerRef);
91
+ }
92
+ /**
93
+ * Level Array Directive
94
+ * @private
95
+ */
96
+ export declare class LevelsDirective extends ArrayBase<LevelsDirective> {
97
+ constructor();
98
+ }
@@ -1,19 +1,13 @@
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";
5
- export declare const TreeMapTooltipService: ValueProvider;
6
- export declare const TreeMapLegendService: ValueProvider;
7
- export declare const TreeMapHighlightService: ValueProvider;
8
- export declare const TreeMapSelectionService: ValueProvider;
9
- export declare const PrintService: ValueProvider;
10
- export declare const PdfExportService: ValueProvider;
11
- export declare const ImageExportService: ValueProvider;
12
- /**
13
- * NgModule definition for the TreeMap component with providers.
14
- */
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>;
19
- }
1
+ import { ValueProvider } from '@angular/core';
2
+ export declare const TreeMapTooltipService: ValueProvider;
3
+ export declare const TreeMapLegendService: ValueProvider;
4
+ export declare const TreeMapHighlightService: ValueProvider;
5
+ export declare const TreeMapSelectionService: ValueProvider;
6
+ export declare const PrintService: ValueProvider;
7
+ export declare const PdfExportService: ValueProvider;
8
+ export declare const ImageExportService: ValueProvider;
9
+ /**
10
+ * NgModule definition for the TreeMap component with providers.
11
+ */
12
+ export declare class TreeMapAllModule {
13
+ }