item-dxi.d.ts 1.6 KB

1234567891011121314151617181920212223242526272829303132333435
  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 { NestedOptionHost } from '../../core/nested-option';
  15. import { DxTemplateDirective } from '../../core/template';
  16. import { IDxTemplateHost, DxTemplateHost } from '../../core/template-host';
  17. import { DxiButtonGroupItem } from './base/button-group-item-dxi';
  18. import { DxiValidationRuleComponent } from './validation-rule-dxi';
  19. import { DxiTabComponent } from './tab-dxi';
  20. import { DxiLocationComponent } from './location-dxi';
  21. export declare class DxiItemComponent extends DxiButtonGroupItem implements AfterViewInit, IDxTemplateHost {
  22. private renderer;
  23. private document;
  24. private element;
  25. protected readonly _optionPath: string;
  26. itemsChildren: QueryList<DxiItemComponent>;
  27. validationRulesChildren: QueryList<DxiValidationRuleComponent>;
  28. tabsChildren: QueryList<DxiTabComponent>;
  29. locationChildren: QueryList<DxiLocationComponent>;
  30. constructor(parentOptionHost: NestedOptionHost, optionHost: NestedOptionHost, renderer: Renderer2, document: any, templateHost: DxTemplateHost, element: ElementRef);
  31. setTemplate(template: DxTemplateDirective): void;
  32. ngAfterViewInit(): void;
  33. }
  34. export declare class DxiItemModule {
  35. }