UNPKG

@progress/kendo-angular-gauges

Version:
42 lines (41 loc) 1.69 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { Directive, Input } from '@angular/core'; import { CollectionItemComponent } from './collection-item.component'; import * as i0 from "@angular/core"; /** * @hidden */ export class RangeComponent extends CollectionItemComponent { /** * The start position of the range. */ from; /** * The end position of the range. */ to; /** * The range opacity. */ opacity; /** * The color of the range. Accepts valid CSS color strings, including hex and rgb. */ color; static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RangeComponent, deps: null, target: i0.ɵɵFactoryTarget.Directive }); static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: RangeComponent, inputs: { from: "from", to: "to", opacity: "opacity", color: "color" }, usesInheritance: true, ngImport: i0 }); } i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RangeComponent, decorators: [{ type: Directive }], propDecorators: { from: [{ type: Input }], to: [{ type: Input }], opacity: [{ type: Input }], color: [{ type: Input }] } });