track.component.d.ts 1.5 KB

123456789101112131415161718192021222324252627282930313233
  1. /**
  2. * Use of this source code is governed by an MIT-style license that can be
  3. * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
  4. */
  5. import { Direction } from '@angular/cdk/bidi';
  6. import { OnChanges } from '@angular/core';
  7. import * as i0 from "@angular/core";
  8. export interface NzSliderTrackStyle {
  9. bottom?: string | null;
  10. height?: string | null;
  11. left?: string | null;
  12. right?: string | null;
  13. width?: string | null;
  14. visibility?: string;
  15. }
  16. export declare class NzSliderTrackComponent implements OnChanges {
  17. offset: number;
  18. reverse: boolean;
  19. dir: Direction;
  20. length: number;
  21. vertical: boolean;
  22. included: boolean;
  23. style: NzSliderTrackStyle;
  24. ngOnChanges(): void;
  25. private getHorizontalStylePosition;
  26. static ɵfac: i0.ɵɵFactoryDeclaration<NzSliderTrackComponent, never>;
  27. static ɵcmp: i0.ɵɵComponentDeclaration<NzSliderTrackComponent, "nz-slider-track", ["nzSliderTrack"], { "offset": { "alias": "offset"; "required": false; }; "reverse": { "alias": "reverse"; "required": false; }; "dir": { "alias": "dir"; "required": false; }; "length": { "alias": "length"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; "included": { "alias": "included"; "required": false; }; }, {}, never, never, true, never>;
  28. static ngAcceptInputType_offset: unknown;
  29. static ngAcceptInputType_reverse: unknown;
  30. static ngAcceptInputType_length: unknown;
  31. static ngAcceptInputType_vertical: unknown;
  32. static ngAcceptInputType_included: unknown;
  33. }