ng-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
25 lines (24 loc) • 924 B
TypeScript
/**
* @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 { NzDisplayedStep, NzExtendedMark } from './typings';
export declare class NzSliderStepComponent implements OnChanges {
static ngAcceptInputType_vertical: BooleanInput;
static ngAcceptInputType_included: BooleanInput;
lowerBound: number | null;
upperBound: number | null;
marksArray: NzExtendedMark[];
vertical: boolean;
included: boolean;
steps: NzDisplayedStep[];
ngOnChanges(changes: SimpleChanges): void;
trackById(_index: number, step: NzDisplayedStep): number;
private buildSteps;
private togglePointActive;
}