UNPKG

igniteui-react-core

Version:
35 lines (34 loc) 2.15 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 { Base, markType } from "./type"; import { DataChartToolbarIconsDescriptionModule } from "./DataChartToolbarIconsDescriptionModule"; import { DataChartAnnotationDescriptionModule } from "./DataChartAnnotationDescriptionModule"; import { AnnotationLayerProxyDescriptionModule } from "./AnnotationLayerProxyDescriptionModule"; import { DataChartCategoryTrendLineDescriptionModule } from "./DataChartCategoryTrendLineDescriptionModule"; import { DataChartInteractivityDescriptionModule } from "./DataChartInteractivityDescriptionModule"; import { CalloutLayerDescriptionModule } from "./CalloutLayerDescriptionModule"; import { ValueLayerDescriptionModule } from "./ValueLayerDescriptionModule"; import { CrosshairLayerDescriptionModule } from "./CrosshairLayerDescriptionModule"; /** * @hidden */ export let DataChartToolbarDescriptionModule = /*@__PURE__*/ (() => { class DataChartToolbarDescriptionModule extends Base { static register(a) { DataChartToolbarIconsDescriptionModule.register(a); DataChartAnnotationDescriptionModule.register(a); AnnotationLayerProxyDescriptionModule.register(a); DataChartCategoryTrendLineDescriptionModule.register(a); DataChartInteractivityDescriptionModule.register(a); CalloutLayerDescriptionModule.register(a); ValueLayerDescriptionModule.register(a); CrosshairLayerDescriptionModule.register(a); } } DataChartToolbarDescriptionModule.$t = /*@__PURE__*/ markType(DataChartToolbarDescriptionModule, 'DataChartToolbarDescriptionModule'); return DataChartToolbarDescriptionModule; })();