load-indicator.d.ts 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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 DxLoadIndicator from 'devextreme/ui/load_indicator';
  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 LoadIndicator is a UI element notifying the viewer that a process is in progress.
  22. */
  23. export declare class DxLoadIndicatorComponent extends DxComponent implements OnDestroy {
  24. instance: DxLoadIndicator;
  25. /**
  26. * Specifies the attributes to be attached to the widget's root element.
  27. */
  28. elementAttr: any;
  29. /**
  30. * Specifies the widget's height.
  31. */
  32. height: number | Function | string;
  33. /**
  34. * Specifies text for a hint that appears when a user pauses on the widget.
  35. */
  36. hint: string;
  37. /**
  38. * Specifies the path to an image used as the indicator.
  39. */
  40. indicatorSrc: string;
  41. /**
  42. * Switches the widget to a right-to-left representation.
  43. */
  44. rtlEnabled: boolean;
  45. /**
  46. * Specifies whether the widget is visible.
  47. */
  48. visible: boolean;
  49. /**
  50. * Specifies the widget's width.
  51. */
  52. width: number | Function | string;
  53. /**
  54. * A function that is executed when the widget's content is ready and each time the content is changed.
  55. */
  56. onContentReady: EventEmitter<any>;
  57. /**
  58. * A function that is executed before the widget is disposed of.
  59. */
  60. onDisposing: EventEmitter<any>;
  61. /**
  62. * A function used in JavaScript frameworks to save the widget instance.
  63. */
  64. onInitialized: EventEmitter<any>;
  65. /**
  66. * A function that is executed after a widget option is changed.
  67. */
  68. onOptionChanged: EventEmitter<any>;
  69. /**
  70. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  71. */
  72. elementAttrChange: EventEmitter<any>;
  73. /**
  74. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  75. */
  76. heightChange: EventEmitter<number | Function | string>;
  77. /**
  78. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  79. */
  80. hintChange: EventEmitter<string>;
  81. /**
  82. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  83. */
  84. indicatorSrcChange: EventEmitter<string>;
  85. /**
  86. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  87. */
  88. rtlEnabledChange: EventEmitter<boolean>;
  89. /**
  90. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  91. */
  92. visibleChange: EventEmitter<boolean>;
  93. /**
  94. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  95. */
  96. widthChange: EventEmitter<number | Function | string>;
  97. constructor(elementRef: ElementRef, ngZone: NgZone, templateHost: DxTemplateHost, _watcherHelper: WatcherHelper, optionHost: NestedOptionHost, transferState: TransferState, platformId: any);
  98. protected _createInstance(element: any, options: any): DxLoadIndicator;
  99. ngOnDestroy(): void;
  100. }
  101. export declare class DxLoadIndicatorModule {
  102. }