popup.d.ts 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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 { EventEmitter, QueryList } from '@angular/core';
  14. import DevExpress from 'devextreme/bundles/dx.all';
  15. import { NestedOptionHost } from '../../core/nested-option';
  16. import { DxoPopupOptions } from './base/popup-options';
  17. import { DxiToolbarItemComponent } from './toolbar-item-dxi';
  18. export declare class DxoPopupComponent extends DxoPopupOptions {
  19. /**
  20. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  21. */
  22. heightChange: EventEmitter<number | Function | string>;
  23. /**
  24. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  25. */
  26. positionChange: EventEmitter<DevExpress.positionConfig | Function | string>;
  27. /**
  28. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  29. */
  30. visibleChange: EventEmitter<boolean>;
  31. /**
  32. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  33. */
  34. widthChange: EventEmitter<number | Function | string>;
  35. protected readonly _optionPath: string;
  36. toolbarItemsChildren: QueryList<DxiToolbarItemComponent>;
  37. constructor(parentOptionHost: NestedOptionHost, optionHost: NestedOptionHost);
  38. }
  39. export declare class DxoPopupModule {
  40. }