slide-out-view.d.ts 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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 { TransferState } from '@angular/platform-browser';
  14. import { ElementRef, NgZone, OnDestroy, EventEmitter } from '@angular/core';
  15. import DxSlideOutView from 'devextreme/ui/slide_out_view';
  16. import { DxComponent } from '../core/component';
  17. import { DxTemplateHost } from '../core/template-host';
  18. import { NestedOptionHost } from '../core/nested-option';
  19. import { WatcherHelper } from '../core/watcher-helper';
  20. /**
  21. * The SlideOutView widget is a classic slide-out menu paired with a view. This widget is very similar to the SlideOut with only one difference - the SlideOut always contains the List in the slide-out menu, while the SlideOutView can hold any collection there.
  22. */
  23. export declare class DxSlideOutViewComponent extends DxComponent implements OnDestroy {
  24. instance: DxSlideOutView;
  25. /**
  26. * Specifies whether or not the widget changes its state when interacting with a user.
  27. */
  28. activeStateEnabled: boolean;
  29. /**
  30. * Specifies a custom template for the widget content.
  31. */
  32. contentTemplate: any;
  33. /**
  34. * Specifies whether the widget responds to user interaction.
  35. */
  36. disabled: boolean;
  37. /**
  38. * Specifies the attributes to be attached to the widget's root element.
  39. */
  40. elementAttr: any;
  41. /**
  42. * Specifies the widget's height.
  43. */
  44. height: number | Function | string;
  45. /**
  46. * Specifies text for a hint that appears when a user pauses on the widget.
  47. */
  48. hint: string;
  49. /**
  50. * Specifies whether the widget changes its state when a user pauses on it.
  51. */
  52. hoverStateEnabled: boolean;
  53. /**
  54. * Specifies the current menu position.
  55. */
  56. menuPosition: string;
  57. /**
  58. * Specifies a custom template for the menu content.
  59. */
  60. menuTemplate: any;
  61. /**
  62. * Specifies whether or not the menu panel is visible.
  63. */
  64. menuVisible: boolean;
  65. /**
  66. * Switches the widget to a right-to-left representation.
  67. */
  68. rtlEnabled: boolean;
  69. /**
  70. * Specifies whether or not the menu is shown when a user swipes the widget content.
  71. */
  72. swipeEnabled: boolean;
  73. /**
  74. * Specifies whether the widget is visible.
  75. */
  76. visible: boolean;
  77. /**
  78. * Specifies the widget's width.
  79. */
  80. width: number | Function | string;
  81. /**
  82. * A function that is executed before the widget is disposed of.
  83. */
  84. onDisposing: EventEmitter<any>;
  85. /**
  86. * A function used in JavaScript frameworks to save the widget instance.
  87. */
  88. onInitialized: EventEmitter<any>;
  89. /**
  90. * A function that is executed after a widget option is changed.
  91. */
  92. onOptionChanged: EventEmitter<any>;
  93. /**
  94. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  95. */
  96. activeStateEnabledChange: EventEmitter<boolean>;
  97. /**
  98. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  99. */
  100. contentTemplateChange: EventEmitter<any>;
  101. /**
  102. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  103. */
  104. disabledChange: EventEmitter<boolean>;
  105. /**
  106. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  107. */
  108. elementAttrChange: EventEmitter<any>;
  109. /**
  110. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  111. */
  112. heightChange: EventEmitter<number | Function | string>;
  113. /**
  114. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  115. */
  116. hintChange: EventEmitter<string>;
  117. /**
  118. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  119. */
  120. hoverStateEnabledChange: EventEmitter<boolean>;
  121. /**
  122. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  123. */
  124. menuPositionChange: EventEmitter<string>;
  125. /**
  126. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  127. */
  128. menuTemplateChange: EventEmitter<any>;
  129. /**
  130. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  131. */
  132. menuVisibleChange: EventEmitter<boolean>;
  133. /**
  134. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  135. */
  136. rtlEnabledChange: EventEmitter<boolean>;
  137. /**
  138. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  139. */
  140. swipeEnabledChange: EventEmitter<boolean>;
  141. /**
  142. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  143. */
  144. visibleChange: EventEmitter<boolean>;
  145. /**
  146. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  147. */
  148. widthChange: EventEmitter<number | Function | string>;
  149. constructor(elementRef: ElementRef, ngZone: NgZone, templateHost: DxTemplateHost, _watcherHelper: WatcherHelper, optionHost: NestedOptionHost, transferState: TransferState, platformId: any);
  150. protected _createInstance(element: any, options: any): DxSlideOutView;
  151. ngOnDestroy(): void;
  152. }
  153. export declare class DxSlideOutViewModule {
  154. }