UNPKG

ng-zorro-antd

Version:

An enterprise-class UI components based on Ant Design and Angular

28 lines (27 loc) 986 B
/** * @license * Copyright Alibaba.com All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { OnChanges, SimpleChanges } from '@angular/core'; import { BooleanInput } from 'ng-zorro-antd/core/types'; import { NzDisplayedMark, NzExtendedMark } from './typings'; export declare class NzSliderMarksComponent implements OnChanges { static ngAcceptInputType_vertical: BooleanInput; static ngAcceptInputType_included: BooleanInput; lowerBound: number | null; upperBound: number | null; marksArray: NzExtendedMark[]; min: number; max: number; vertical: boolean; included: boolean; marks: NzDisplayedMark[]; ngOnChanges(changes: SimpleChanges): void; trackById(_index: number, mark: NzDisplayedMark): number; private buildMarks; private getMarkStyles; private togglePointActive; }