UNPKG

igniteui-webcomponents-charts

Version:

Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.

28 lines (27 loc) 1.55 kB
/* THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE: https://www.infragistics.com/legal/license/igultimate-la https://www.infragistics.com/legal/license/igultimate-eula GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company. */ import { IgcTreemapComponent } from './igc-treemap-component'; import { IgcTreemapNodeStyleModule } from './igc-treemap-node-style-module'; import { IgcTreemapNodeStyleMappingModule } from './igc-treemap-node-style-mapping-module'; import { Treemap } from './Treemap'; import { FastItemObjectColumn } from "igniteui-webcomponents-core"; import { TypeRegistrar } from "igniteui-webcomponents-core"; var IgcTreemapModule = /** @class */ /*@__PURE__*/ (function () { function IgcTreemapModule() { } IgcTreemapModule.register = function () { IgcTreemapComponent.register(); TypeRegistrar.registerCons('IgcTreemapComponent', IgcTreemapComponent); TypeRegistrar.registerCons('IgcTreemapComponent', IgcTreemapComponent); IgcTreemapNodeStyleModule.register(); IgcTreemapNodeStyleMappingModule.register(); TypeRegistrar.register('Treemap', Treemap.$type); TypeRegistrar.register('FastItemObjectColumn', FastItemObjectColumn.$type); }; return IgcTreemapModule; }()); export { IgcTreemapModule };