popup-options.d.ts 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. import DevExpress from 'devextreme/bundles/dx.all';
  15. export declare abstract class DxoPopupOptions extends NestedOption {
  16. accessKey: string;
  17. animation: {
  18. hide?: DevExpress.animationConfig;
  19. show?: DevExpress.animationConfig;
  20. };
  21. closeOnOutsideClick: boolean | Function;
  22. container: Element | JQuery;
  23. contentTemplate: any;
  24. deferRendering: boolean;
  25. disabled: boolean;
  26. dragEnabled: boolean;
  27. elementAttr: any;
  28. focusStateEnabled: boolean;
  29. fullScreen: boolean;
  30. height: number | Function | string;
  31. hint: string;
  32. hoverStateEnabled: boolean;
  33. maxHeight: number | Function | string;
  34. maxWidth: number | Function | string;
  35. minHeight: number | Function | string;
  36. minWidth: number | Function | string;
  37. onContentReady: Function;
  38. onDisposing: Function;
  39. onHidden: Function;
  40. onHiding: Function;
  41. onInitialized: Function;
  42. onOptionChanged: Function;
  43. onResize: Function;
  44. onResizeEnd: Function;
  45. onResizeStart: Function;
  46. onShowing: Function;
  47. onShown: Function;
  48. onTitleRendered: Function;
  49. position: DevExpress.positionConfig | Function | string;
  50. resizeEnabled: boolean;
  51. rtlEnabled: boolean;
  52. shading: boolean;
  53. shadingColor: string;
  54. showCloseButton: boolean;
  55. showTitle: boolean;
  56. tabIndex: number;
  57. title: string;
  58. titleTemplate: any;
  59. toolbarItems: Array<any | {
  60. disabled?: boolean;
  61. html?: string;
  62. location?: string;
  63. options?: any;
  64. template?: any;
  65. text?: string;
  66. toolbar?: string;
  67. visible?: boolean;
  68. widget?: string;
  69. }>;
  70. visible: boolean;
  71. width: number | Function | string;
  72. }