validation-group.d.ts 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 DxValidationGroup from 'devextreme/ui/validation_group';
  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 ValidationGroup is a widget that allows you to validate several editors simultaneously.
  22. */
  23. export declare class DxValidationGroupComponent extends DxComponent implements OnDestroy {
  24. instance: DxValidationGroup;
  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 the widget's width.
  35. */
  36. width: number | Function | string;
  37. /**
  38. * A function that is executed before the widget is disposed of.
  39. */
  40. onDisposing: EventEmitter<any>;
  41. /**
  42. * A function used in JavaScript frameworks to save the widget instance.
  43. */
  44. onInitialized: EventEmitter<any>;
  45. /**
  46. * A function that is executed after a widget option is changed.
  47. */
  48. onOptionChanged: EventEmitter<any>;
  49. /**
  50. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  51. */
  52. elementAttrChange: EventEmitter<any>;
  53. /**
  54. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  55. */
  56. heightChange: EventEmitter<number | Function | string>;
  57. /**
  58. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  59. */
  60. widthChange: EventEmitter<number | Function | string>;
  61. constructor(elementRef: ElementRef, ngZone: NgZone, templateHost: DxTemplateHost, _watcherHelper: WatcherHelper, optionHost: NestedOptionHost, transferState: TransferState, platformId: any);
  62. protected _createInstance(element: any, options: any): DxValidationGroup;
  63. ngOnDestroy(): void;
  64. }
  65. export declare class DxValidationGroupModule {
  66. }