UNPKG

@progress/kendo-angular-gauges

Version:
53 lines (52 loc) 5.1 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ArcCenterTemplateDirective } from "./arc-gauge/arc-center-template.directive"; import { ArcGaugeComponent } from "./arc-gauge/arc-gauge.component"; import { ColorComponent } from "./arc-gauge/color.component"; import { ColorsComponent } from "./arc-gauge/colors.component"; import { ArcGaugeAreaComponent } from "./arc-gauge/gauge-area.component"; import { ArcLabelsComponent } from "./arc-gauge/labels.component"; import { ArcScaleComponent } from "./arc-gauge/scale.component"; import { CircularGaugeCenterTemplateDirective } from "./circular-gauge/center-template.directive"; import { CircularGaugeComponent } from "./circular-gauge/circular-gauge.component"; import { CircularGaugeAreaComponent } from "./circular-gauge/gauge-area.component"; import { CircularGaugeLabelsComponent } from "./circular-gauge/labels.component"; import { CircularGaugeScaleComponent } from "./circular-gauge/scale.component"; import { LinearGaugeAreaComponent } from "./linear-gauge/gauge-area.component"; import { LinearLabelsComponent } from "./linear-gauge/labels.component"; import { LinearGaugeComponent } from "./linear-gauge/linear-gauge.component"; import { LinearPointerComponent } from "./linear-gauge/pointer.component"; import { LinearPointersComponent } from "./linear-gauge/pointers.component"; import { LinearRangeComponent } from "./linear-gauge/range.component"; import { LinearRangesComponent } from "./linear-gauge/ranges.component"; import { LinearScaleComponent } from "./linear-gauge/scale.component"; import { RadialGaugeAreaComponent } from "./radial-gauge/gauge-area.component"; import { RadialLabelsComponent } from "./radial-gauge/labels.component"; import { RadialPointerComponent } from "./radial-gauge/pointer.component"; import { RadialPointersComponent } from "./radial-gauge/pointers.component"; import { RadialGaugeComponent } from "./radial-gauge/radial-gauge.component"; import { RadialRangeComponent } from "./radial-gauge/range.component"; import { RadialRangesComponent } from "./radial-gauge/ranges.component"; import { RadialScaleComponent } from "./radial-gauge/scale.component"; /** * Use this utility array to access all ArcGauge-related components and directives in a standalone Angular component. */ export declare const KENDO_ARCGAUGE: readonly [typeof ArcGaugeComponent, typeof ArcCenterTemplateDirective, typeof ArcGaugeAreaComponent, typeof ArcScaleComponent, typeof ArcLabelsComponent, typeof ColorsComponent, typeof ColorComponent]; /** * Use this utility array to access all CircularGauge-related components and directives in a standalone Angular component. */ export declare const KENDO_CIRCULARGAUGE: readonly [typeof CircularGaugeComponent, typeof CircularGaugeCenterTemplateDirective, typeof CircularGaugeAreaComponent, typeof CircularGaugeScaleComponent, typeof CircularGaugeLabelsComponent]; /** * Use this utility array to access all LinearGauge-related components and directives in a standalone Angular component. */ export declare const KENDO_LINEARGAUGE: readonly [typeof LinearGaugeComponent, typeof LinearGaugeAreaComponent, typeof LinearScaleComponent, typeof LinearLabelsComponent, typeof LinearPointersComponent, typeof LinearPointerComponent, typeof LinearRangeComponent, typeof LinearRangesComponent]; /** * Use this utility array to access all RadialGauge-related components and directives in a standalone Angular component. */ export declare const KENDO_RADIALGAUGE: readonly [typeof RadialGaugeComponent, typeof RadialGaugeAreaComponent, typeof RadialScaleComponent, typeof RadialLabelsComponent, typeof RadialPointersComponent, typeof RadialPointerComponent, typeof RadialRangeComponent, typeof RadialRangesComponent]; /** * Use this utility array to access all `@progress/kendo-angular-gauges`-related components and directives in a standalone Angular component. */ export declare const KENDO_GAUGES: readonly [typeof ArcGaugeComponent, typeof ArcCenterTemplateDirective, typeof ArcGaugeAreaComponent, typeof ArcScaleComponent, typeof ArcLabelsComponent, typeof ColorsComponent, typeof ColorComponent, typeof CircularGaugeComponent, typeof CircularGaugeCenterTemplateDirective, typeof CircularGaugeAreaComponent, typeof CircularGaugeScaleComponent, typeof CircularGaugeLabelsComponent, typeof LinearGaugeComponent, typeof LinearGaugeAreaComponent, typeof LinearScaleComponent, typeof LinearLabelsComponent, typeof LinearPointersComponent, typeof LinearPointerComponent, typeof LinearRangeComponent, typeof LinearRangesComponent, typeof RadialGaugeComponent, typeof RadialGaugeAreaComponent, typeof RadialScaleComponent, typeof RadialLabelsComponent, typeof RadialPointersComponent, typeof RadialPointerComponent, typeof RadialRangeComponent, typeof RadialRangesComponent];