column-dxi.d.ts 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 { EventEmitter, QueryList } from '@angular/core';
  14. import { NestedOptionHost } from '../../core/nested-option';
  15. import { DxiDataGridColumn } from './base/data-grid-column-dxi';
  16. import { DxiButtonComponent } from './button-dxi';
  17. import { DxiValidationRuleComponent } from './validation-rule-dxi';
  18. export declare class DxiColumnComponent extends DxiDataGridColumn {
  19. /**
  20. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  21. */
  22. filterValueChange: EventEmitter<any>;
  23. /**
  24. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  25. */
  26. filterValuesChange: EventEmitter<Array<any>>;
  27. /**
  28. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  29. */
  30. groupIndexChange: EventEmitter<number>;
  31. /**
  32. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  33. */
  34. selectedFilterOperationChange: EventEmitter<string>;
  35. /**
  36. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  37. */
  38. sortIndexChange: EventEmitter<number>;
  39. /**
  40. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  41. */
  42. sortOrderChange: EventEmitter<string>;
  43. /**
  44. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  45. */
  46. visibleChange: EventEmitter<boolean>;
  47. /**
  48. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  49. */
  50. visibleIndexChange: EventEmitter<number>;
  51. protected readonly _optionPath: string;
  52. buttonsChildren: QueryList<DxiButtonComponent>;
  53. columnsChildren: QueryList<DxiColumnComponent>;
  54. validationRulesChildren: QueryList<DxiValidationRuleComponent>;
  55. constructor(parentOptionHost: NestedOptionHost, optionHost: NestedOptionHost);
  56. }
  57. export declare class DxiColumnModule {
  58. }