button-group.component.d.ts 1.0 KB

12345678910111213141516171819202122
  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, Directionality } from '@angular/cdk/bidi';
  6. import { OnDestroy, OnInit } from '@angular/core';
  7. import * as i0 from "@angular/core";
  8. export type NzButtonGroupSize = 'large' | 'default' | 'small';
  9. /**
  10. * @deprecated Will be removed in v20. Use `NzSpaceCompactComponent` instead.
  11. */
  12. export declare class NzButtonGroupComponent implements OnDestroy, OnInit {
  13. private directionality;
  14. nzSize: NzButtonGroupSize;
  15. dir: Direction;
  16. private destroy$;
  17. constructor(directionality: Directionality);
  18. ngOnInit(): void;
  19. ngOnDestroy(): void;
  20. static ɵfac: i0.ɵɵFactoryDeclaration<NzButtonGroupComponent, never>;
  21. static ɵcmp: i0.ɵɵComponentDeclaration<NzButtonGroupComponent, "nz-button-group", ["nzButtonGroup"], { "nzSize": { "alias": "nzSize"; "required": false; }; }, {}, never, ["*"], true, never>;
  22. }