@syncfusion/ej2-angular-treemap 26.2.10 → 27.1.48-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 (43) 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/dist/ej2-angular-treemap.umd.js +520 -0
  6. package/dist/ej2-angular-treemap.umd.js.map +1 -0
  7. package/dist/ej2-angular-treemap.umd.min.js +11 -0
  8. package/dist/ej2-angular-treemap.umd.min.js.map +1 -0
  9. package/ej2-angular-treemap.d.ts +5 -0
  10. package/ej2-angular-treemap.metadata.json +1 -0
  11. package/license +10 -0
  12. package/package.json +15 -29
  13. package/schematics/collection.json +10 -9
  14. package/schematics/ng-add/index.d.ts +3 -0
  15. package/schematics/ng-add/index.js +9 -0
  16. package/schematics/ng-add/index.ts +10 -10
  17. package/schematics/ng-add/schema.d.ts +13 -0
  18. package/schematics/ng-add/schema.js +2 -0
  19. package/schematics/ng-add/schema.json +34 -34
  20. package/schematics/ng-add/schema.ts +30 -30
  21. package/schematics/tsconfig.json +25 -25
  22. package/schematics/utils/lib-details.d.ts +4 -0
  23. package/schematics/utils/lib-details.js +6 -0
  24. package/schematics/utils/lib-details.ts +2 -2
  25. package/src/treemap/colormapping.directive.d.ts +0 -5
  26. package/src/treemap/levels.directive.d.ts +0 -5
  27. package/src/treemap/treemap-all.module.d.ts +0 -6
  28. package/src/treemap/treemap.component.d.ts +0 -3
  29. package/src/treemap/treemap.module.d.ts +0 -8
  30. package/CHANGELOG.md +0 -83
  31. package/esm2020/public_api.mjs +0 -2
  32. package/esm2020/src/index.mjs +0 -7
  33. package/esm2020/src/treemap/colormapping.directive.mjs +0 -46
  34. package/esm2020/src/treemap/levels.directive.mjs +0 -66
  35. package/esm2020/src/treemap/treemap-all.module.mjs +0 -47
  36. package/esm2020/src/treemap/treemap.component.mjs +0 -126
  37. package/esm2020/src/treemap/treemap.module.mjs +0 -43
  38. package/esm2020/syncfusion-ej2-angular-treemap.mjs +0 -5
  39. package/fesm2015/syncfusion-ej2-angular-treemap.mjs +0 -314
  40. package/fesm2015/syncfusion-ej2-angular-treemap.mjs.map +0 -1
  41. package/fesm2020/syncfusion-ej2-angular-treemap.mjs +0 -314
  42. package/fesm2020/syncfusion-ej2-angular-treemap.mjs.map +0 -1
  43. 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','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","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 ADDED
@@ -0,0 +1,10 @@
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
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-angular-treemap@*",
3
- "_id": "@syncfusion/ej2-angular-treemap@26.2.5",
3
+ "_id": "@syncfusion/ej2-angular-treemap@16.31.24",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-QWImzjypXpM3+J7Jgj7n6GJEOhrFdnW0bYmKvhD5o/KIwVjhNICYBA5Suju0WijulPtBaQXxbW+QKe7XKSFTzQ==",
5
+ "_integrity": "sha512-/XxcxJA8/eB/YmdA4oaOef2W5kJuh96UHRjTDs6XZA/OnOcUWVCdiH3TT/h3iX1CMV6e+FYqiAjpq3QSM6Drcg==",
6
6
  "_location": "/@syncfusion/ej2-angular-treemap",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,10 +19,10 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-angular-hotfix/@syncfusion/ej2-angular-treemap/-/ej2-angular-treemap-26.2.5.tgz",
23
- "_shasum": "d8f1feaef6ccb2a817a0bb71084473945a2f063a",
22
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-release/@syncfusion/ej2-angular-treemap/-/ej2-angular-treemap-16.31.24.tgz",
23
+ "_shasum": "ddad36d2e571fd1e6970dded6f67efb5538b7ae5",
24
24
  "_spec": "@syncfusion/ej2-angular-treemap@*",
25
- "_where": "/jenkins/workspace/elease-automation_release_26.1.1/ivypackages/included",
25
+ "_where": "/jenkins/workspace/elease-automation_release_27.1.1/packages/included",
26
26
  "author": {
27
27
  "name": "Syncfusion Inc."
28
28
  },
@@ -31,30 +31,14 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-angular-base": "~26.2.10",
35
- "@syncfusion/ej2-base": "~26.2.10",
36
- "@syncfusion/ej2-treemap": "26.2.10",
37
- "tslib": "^2.3.0"
34
+ "@syncfusion/ej2-angular-base": "~27.1.48",
35
+ "@syncfusion/ej2-base": "~27.1.48",
36
+ "@syncfusion/ej2-treemap": "27.1.48"
38
37
  },
39
38
  "deprecated": false,
40
39
  "description": "Essential JS 2 TreeMap Components for Angular",
41
- "es2020": "fesm2020/syncfusion-ej2-angular-treemap.mjs",
42
- "esm2020": "esm2020/syncfusion-ej2-angular-treemap.mjs",
43
- "exports": {
44
- "./package.json": {
45
- "default": "./package.json"
46
- },
47
- ".": {
48
- "types": "./syncfusion-ej2-angular-treemap.d.ts",
49
- "esm2020": "./esm2020/syncfusion-ej2-angular-treemap.mjs",
50
- "es2020": "./fesm2020/syncfusion-ej2-angular-treemap.mjs",
51
- "es2015": "./fesm2015/syncfusion-ej2-angular-treemap.mjs",
52
- "node": "./fesm2015/syncfusion-ej2-angular-treemap.mjs",
53
- "default": "./fesm2020/syncfusion-ej2-angular-treemap.mjs"
54
- }
55
- },
56
- "fesm2015": "fesm2015/syncfusion-ej2-angular-treemap.mjs",
57
- "fesm2020": "fesm2020/syncfusion-ej2-angular-treemap.mjs",
40
+ "devDependencies": {},
41
+ "es2015": "@syncfusion/ej2-angular-treemap.js",
58
42
  "homepage": "https://www.syncfusion.com/angular-components",
59
43
  "keywords": [
60
44
  "angular",
@@ -62,7 +46,9 @@
62
46
  "ej2-ng-treemap"
63
47
  ],
64
48
  "license": "SEE LICENSE IN license",
65
- "module": "fesm2015/syncfusion-ej2-angular-treemap.mjs",
49
+ "main": "dist/ej2-angular-treemap.umd.js",
50
+ "metadata": "ej2-angular-treemap.metadata.json",
51
+ "module": "@syncfusion/ej2-angular-treemap.es5.js",
66
52
  "name": "@syncfusion/ej2-angular-treemap",
67
53
  "repository": {
68
54
  "type": "git",
@@ -70,6 +56,6 @@
70
56
  },
71
57
  "schematics": "./schematics/collection.json",
72
58
  "sideEffects": false,
73
- "typings": "syncfusion-ej2-angular-treemap.d.ts",
74
- "version": "26.2.10"
59
+ "typings": "ej2-angular-treemap.d.ts",
60
+ "version": "27.1.48-ngcc"
75
61
  }
@@ -1,10 +1,11 @@
1
1
  {
2
- "$schema": "./node_modules/@angular-devkit/schematics/collection-schema.json",
3
- "schematics": {
4
- "ng-add": {
5
- "description": "Adds Essential JS 2 specific Angular package to an application",
6
- "factory": "./ng-add",
7
- "schema": "./ng-add/schema.json"
8
- }
9
- }
10
- }
2
+ "$schema": "./node_modules/@angular-devkit/schematics/collection-schema.json",
3
+ "schematics": {
4
+ "ng-add": {
5
+ "description": "Adds Essential JS 2 specific Angular package to an application",
6
+ "factory": "./ng-add",
7
+ "schema": "./ng-add/schema.json"
8
+ }
9
+ }
10
+ }
11
+
@@ -0,0 +1,3 @@
1
+ import { OptionsSchema } from './schema';
2
+ import { Rule } from '@angular-devkit/schematics';
3
+ export default function (options: OptionsSchema): Rule;
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const lib_details_1 = require("./../utils/lib-details");
4
+ const schematics_1 = require("@syncfusion/ej2-angular-base/schematics");
5
+ function default_1(options) {
6
+ const libOptions = Object.assign({}, { 'pkgName': lib_details_1.pkgName, 'pkgVer': lib_details_1.pkgVer, 'moduleName': lib_details_1.moduleName, 'themeVer': lib_details_1.themeVer });
7
+ return schematics_1.install(options, libOptions);
8
+ }
9
+ exports.default = default_1;
@@ -1,10 +1,10 @@
1
- import { pkgName, pkgVer, moduleName, themeVer } from './../utils/lib-details';
2
- import { install } from '@syncfusion/ej2-angular-base/schematics';
3
- import { OptionsSchema, LibOptionsSchema } from './schema';
4
- import { Rule } from '@angular-devkit/schematics';
5
-
6
- export default function (options: OptionsSchema): Rule {
7
- const libOptions: LibOptionsSchema = Object.assign({},
8
- { 'pkgName': pkgName, 'pkgVer': pkgVer, 'moduleName': moduleName, 'themeVer': themeVer });
9
- return install(options, libOptions);
10
- }
1
+ import { pkgName, pkgVer, moduleName, themeVer } from './../utils/lib-details';
2
+ import { install } from '@syncfusion/ej2-angular-base/schematics';
3
+ import { OptionsSchema, LibOptionsSchema } from './schema';
4
+ import { Rule } from '@angular-devkit/schematics';
5
+
6
+ export default function (options: OptionsSchema): Rule {
7
+ const libOptions: LibOptionsSchema = Object.assign({},
8
+ { 'pkgName': pkgName, 'pkgVer': pkgVer, 'moduleName': moduleName, 'themeVer': themeVer });
9
+ return install(options, libOptions);
10
+ }
@@ -0,0 +1,13 @@
1
+ export interface OptionsSchema {
2
+ skipPackageJson: boolean;
3
+ modules: string;
4
+ modulePath: string;
5
+ theme: 'material' | 'fabric' | 'bootstrap' | 'highcontrast';
6
+ project?: string;
7
+ }
8
+ export interface LibOptionsSchema {
9
+ pkgName: string;
10
+ pkgVer: string;
11
+ moduleName: string;
12
+ themeVer: string;
13
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,34 +1,34 @@
1
- {
2
- "$schema": "http://json-schema.org/schema",
3
- "$id": "ngAdd",
4
- "title": "Add Essential JS 2 Angular packages",
5
- "type": "object",
6
- "properties": {
7
- "skipPackageJson": {
8
- "type": "boolean",
9
- "default": false,
10
- "description": "Do not add add Essential JS 2 Angular packages dependencies to package.json (e.g., --skipPackageJson)"
11
- },
12
- "modules": {
13
- "type": "string",
14
- "default": "",
15
- "description": "Add only specific Essential JS 2 modules to the app.module file (eg: --modules=slider, grid)"
16
- },
17
- "modulePath": {
18
- "type": "string",
19
- "default": "",
20
- "description": "Used to specify the path of the module file where the EJ2 module needs to be imported"
21
- },
22
- "theme": {
23
- "enum": [
24
- "material",
25
- "fabric",
26
- "bootstrap",
27
- "highcontrast"
28
- ],
29
- "default": "material",
30
- "description": "Used to change the theme that needs to be imported"
31
- }
32
- },
33
- "required": []
34
- }
1
+ {
2
+ "$schema": "http://json-schema.org/schema",
3
+ "$id": "ngAdd",
4
+ "title": "Add Essential JS 2 Angular packages",
5
+ "type": "object",
6
+ "properties": {
7
+ "skipPackageJson": {
8
+ "type": "boolean",
9
+ "default": false,
10
+ "description": "Do not add add Essential JS 2 Angular packages dependencies to package.json (e.g., --skipPackageJson)"
11
+ },
12
+ "modules": {
13
+ "type": "string",
14
+ "default": "",
15
+ "description": "Add only specific Essential JS 2 modules to the app.module file (eg: --modules=slider, grid)"
16
+ },
17
+ "modulePath": {
18
+ "type": "string",
19
+ "default": "",
20
+ "description": "Used to specify the path of the module file where the EJ2 module needs to be imported"
21
+ },
22
+ "theme": {
23
+ "enum": [
24
+ "material",
25
+ "fabric",
26
+ "bootstrap",
27
+ "highcontrast"
28
+ ],
29
+ "default": "material",
30
+ "description": "Used to change the theme that needs to be imported"
31
+ }
32
+ },
33
+ "required": []
34
+ }
@@ -1,30 +1,30 @@
1
- export interface OptionsSchema {
2
- // Whether to skip package.json install.
3
- skipPackageJson: boolean;
4
-
5
- // Used to specify required module names
6
- modules: string;
7
-
8
- // Used to specify custom module path
9
- modulePath: string;
10
-
11
- // Used to specify theme name
12
- theme: 'material' | 'fabric' | 'bootstrap' | 'highcontrast';
13
-
14
- // Name of the project to target.
15
- project?: string;
16
- }
17
-
18
- export interface LibOptionsSchema {
19
- // Package name
20
- pkgName: string;
21
-
22
- // Package version
23
- pkgVer: string;
24
-
25
- // Library base module name
26
- moduleName: string;
27
-
28
- // Theme version
29
- themeVer: string;
30
- }
1
+ export interface OptionsSchema {
2
+ // Whether to skip package.json install.
3
+ skipPackageJson: boolean;
4
+
5
+ // Used to specify required module names
6
+ modules: string;
7
+
8
+ // Used to specify custom module path
9
+ modulePath: string;
10
+
11
+ // Used to specify theme name
12
+ theme: 'material' | 'fabric' | 'bootstrap' | 'highcontrast';
13
+
14
+ // Name of the project to target.
15
+ project?: string;
16
+ }
17
+
18
+ export interface LibOptionsSchema {
19
+ // Package name
20
+ pkgName: string;
21
+
22
+ // Package version
23
+ pkgVer: string;
24
+
25
+ // Library base module name
26
+ moduleName: string;
27
+
28
+ // Theme version
29
+ themeVer: string;
30
+ }
@@ -1,25 +1,25 @@
1
- {
2
- "compilerOptions": {
3
- "lib": ["es2017", "dom"],
4
- "module": "commonjs",
5
- "moduleResolution": "node",
6
- "noEmitOnError": false,
7
- "skipDefaultLibCheck": true,
8
- "skipLibCheck": true,
9
- "sourceMap": true,
10
- "target": "es6",
11
- "declaration": true,
12
- "types": [
13
- "jasmine",
14
- "node"
15
- ]
16
- },
17
- "exclude": [
18
- "node_modules",
19
- "src",
20
- "src/**/*.ts",
21
- "spec",
22
- "spec/**/*.ts",
23
- "@typings"
24
- ]
25
- }
1
+ {
2
+ "compilerOptions": {
3
+ "lib": ["es2017", "dom"],
4
+ "module": "commonjs",
5
+ "moduleResolution": "node",
6
+ "noEmitOnError": false,
7
+ "skipDefaultLibCheck": true,
8
+ "skipLibCheck": true,
9
+ "sourceMap": true,
10
+ "target": "es6",
11
+ "declaration": true,
12
+ "types": [
13
+ "jasmine",
14
+ "node"
15
+ ]
16
+ },
17
+ "exclude": [
18
+ "node_modules",
19
+ "src",
20
+ "src/**/*.ts",
21
+ "spec",
22
+ "spec/**/*.ts",
23
+ "@typings"
24
+ ]
25
+ }
@@ -0,0 +1,4 @@
1
+ export declare const pkgName = "@syncfusion/ej2-angular-treemap";
2
+ export declare const pkgVer = "^16.31.24";
3
+ export declare const moduleName = "TreeMapModule";
4
+ export declare const themeVer = "~16.31.24";
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.pkgName = '@syncfusion/ej2-angular-treemap';
4
+ exports.pkgVer = '^27.1.48';
5
+ exports.moduleName = 'TreeMapModule';
6
+ exports.themeVer = '~27.1.48';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-treemap';
2
- export const pkgVer = '^26.2.5';
2
+ export const pkgVer = '^27.1.48';
3
3
  export const moduleName = 'TreeMapModule';
4
- export const themeVer = '~26.2.5';
4
+ export const themeVer = '~27.1.48';
@@ -1,6 +1,5 @@
1
1
  import { ViewContainerRef } from '@angular/core';
2
2
  import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- import * as i0 from "@angular/core";
4
3
  export declare class ColorMappingDirective extends ComplexBase<ColorMappingDirective> {
5
4
  private viewContainerRef;
6
5
  directivePropList: any;
@@ -45,8 +44,6 @@ export declare class ColorMappingDirective extends ComplexBase<ColorMappingDirec
45
44
  */
46
45
  value: any;
47
46
  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
47
  }
51
48
  /**
52
49
  * ColorMapping Array Directive
@@ -54,6 +51,4 @@ export declare class ColorMappingDirective extends ComplexBase<ColorMappingDirec
54
51
  */
55
52
  export declare class ColorMappingsDirective extends ArrayBase<ColorMappingsDirective> {
56
53
  constructor();
57
- static ɵfac: i0.ɵɵFactoryDeclaration<ColorMappingsDirective, never>;
58
- static ɵdir: i0.ɵɵDirectiveDeclaration<ColorMappingsDirective, "e-levels>e-colorMappings", never, {}, {}, ["children"]>;
59
54
  }
@@ -1,6 +1,5 @@
1
1
  import { ViewContainerRef } from '@angular/core';
2
2
  import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- import * as i0 from "@angular/core";
4
3
  /**
5
4
  * Represents the directive to configure and render level leaf items in the treemap.
6
5
  * ```html
@@ -89,8 +88,6 @@ export declare class LevelDirective extends ComplexBase<LevelDirective> {
89
88
  */
90
89
  headerTemplate: any;
91
90
  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
91
  }
95
92
  /**
96
93
  * Level Array Directive
@@ -98,6 +95,4 @@ export declare class LevelDirective extends ComplexBase<LevelDirective> {
98
95
  */
99
96
  export declare class LevelsDirective extends ArrayBase<LevelsDirective> {
100
97
  constructor();
101
- static ɵfac: i0.ɵɵFactoryDeclaration<LevelsDirective, never>;
102
- static ɵdir: i0.ɵɵDirectiveDeclaration<LevelsDirective, "ej-treemap>e-levels", never, {}, {}, ["children"]>;
103
98
  }
@@ -1,7 +1,4 @@
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";
5
2
  export declare const TreeMapTooltipService: ValueProvider;
6
3
  export declare const TreeMapLegendService: ValueProvider;
7
4
  export declare const TreeMapHighlightService: ValueProvider;
@@ -13,7 +10,4 @@ export declare const ImageExportService: ValueProvider;
13
10
  * NgModule definition for the TreeMap component with providers.
14
11
  */
15
12
  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
13
  }
@@ -2,7 +2,6 @@ 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";
6
5
  export declare const inputs: string[];
7
6
  export declare const outputs: string[];
8
7
  export declare const twoWays: string[];
@@ -48,6 +47,4 @@ export declare class TreeMapComponent extends TreeMap implements IComponentBase
48
47
  ngAfterContentChecked(): void;
49
48
  registerEvents: (eventList: string[]) => void;
50
49
  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"; "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>;
53
50
  }
@@ -1,13 +1,5 @@
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";
6
1
  /**
7
2
  * NgModule definition for the TreeMap component.
8
3
  */
9
4
  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>;
13
5
  }