tab-dxi.d.ts 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*!
  2. * devextreme-angular
  3. * Version: 19.1.16
  4. * Build date: Tue Oct 18 2022
  5. *
  6. * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
  7. *
  8. * This software may be modified and distributed under the terms
  9. * of the MIT license. See the LICENSE file in the root of the project for details.
  10. *
  11. * https://github.com/DevExpress/devextreme-angular
  12. */
  13. import { ElementRef, Renderer2, AfterViewInit, QueryList } from '@angular/core';
  14. import DevExpress from 'devextreme/bundles/dx.all';
  15. import { NestedOptionHost } from '../../core/nested-option';
  16. import { DxTemplateDirective } from '../../core/template';
  17. import { IDxTemplateHost, DxTemplateHost } from '../../core/template-host';
  18. import { CollectionNestedOption } from '../../core/nested-option';
  19. import { DxiItemComponent } from './item-dxi';
  20. export declare class DxiTabComponent extends CollectionNestedOption implements AfterViewInit, IDxTemplateHost {
  21. private renderer;
  22. private document;
  23. private element;
  24. alignItemLabels: boolean;
  25. badge: string;
  26. colCount: number;
  27. colCountByScreen: {
  28. lg?: number;
  29. md?: number;
  30. sm?: number;
  31. xs?: number;
  32. };
  33. disabled: boolean;
  34. icon: string;
  35. items: Array<DevExpress.ui.dxFormSimpleItem | DevExpress.ui.dxFormGroupItem | DevExpress.ui.dxFormTabbedItem | DevExpress.ui.dxFormEmptyItem | DevExpress.ui.dxFormButtonItem>;
  36. tabTemplate: any;
  37. template: any;
  38. title: string;
  39. protected readonly _optionPath: string;
  40. itemsChildren: QueryList<DxiItemComponent>;
  41. constructor(parentOptionHost: NestedOptionHost, optionHost: NestedOptionHost, renderer: Renderer2, document: any, templateHost: DxTemplateHost, element: ElementRef);
  42. setTemplate(template: DxTemplateDirective): void;
  43. ngAfterViewInit(): void;
  44. }
  45. export declare class DxiTabModule {
  46. }