position-config.d.ts 925 B

12345678910111213141516171819202122232425262728293031323334353637
  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 { NestedOption } from '../../../core/nested-option';
  14. export declare abstract class DxoPositionConfig extends NestedOption {
  15. at: string | {
  16. x?: string;
  17. y?: string;
  18. };
  19. boundary: Element | JQuery | Window;
  20. boundaryOffset: string | {
  21. x?: number;
  22. y?: number;
  23. };
  24. collision: string | {
  25. x?: string;
  26. y?: string;
  27. };
  28. my: string | {
  29. x?: string;
  30. y?: string;
  31. };
  32. of: Element | JQuery | Window;
  33. offset: string | {
  34. x?: number;
  35. y?: number;
  36. };
  37. }