igniteui-webcomponents-data-grids 7.1.0-alpha.2 → 7.1.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (208) hide show
  1. package/bundles/igniteui-webcomponents-data-grids.umd.js +7623 -7085
  2. package/bundles/igniteui-webcomponents-data-grids.umd.min.js +1 -1
  3. package/esm2015/lib/CanvasCellPresenterBase.js +4 -4
  4. package/esm2015/lib/CanvasContentCellModelHelper.js +5 -5
  5. package/esm2015/lib/CanvasDateTimeCellPresenter.js +8 -8
  6. package/esm2015/lib/CanvasGridCellBase.js +2 -2
  7. package/esm2015/lib/CanvasImageCellPresenter.js +7 -7
  8. package/esm2015/lib/CanvasNumericCellPresenter.js +8 -8
  9. package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  10. package/esm2015/lib/CanvasSummaryCellPresenter.js +6 -6
  11. package/esm2015/lib/CanvasTemplateCellPresenter.js +2 -2
  12. package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +2 -2
  13. package/esm2015/lib/CanvasTextCellPresenter.js +9 -9
  14. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +7 -7
  15. package/esm2015/lib/CellPresenterBase.js +37 -34
  16. package/esm2015/lib/CheckboxListView_combined.js +24 -24
  17. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  18. package/esm2015/lib/ColumnFilterCondition_combined.js +5293 -5010
  19. package/esm2015/lib/ColumnGroupingView_combined.js +4 -4
  20. package/esm2015/lib/ColumnPinningView_combined.js +11 -11
  21. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  22. package/esm2015/lib/ContentCellModelHelper.js +10 -10
  23. package/esm2015/lib/DataGridCellLayoutPanel.js +10 -10
  24. package/esm2015/lib/DataGridScrollerKeyboardListener.js +2 -2
  25. package/esm2015/lib/DataGridToolbarView_combined.js +2 -2
  26. package/esm2015/lib/DateTimeCellPresenter.js +9 -9
  27. package/esm2015/lib/EditorCell.js +292 -292
  28. package/esm2015/lib/EditorCellPresenter.js +26 -26
  29. package/esm2015/lib/FilterCell.js +269 -269
  30. package/esm2015/lib/FilterCellPresenter.js +15 -15
  31. package/esm2015/lib/GridCellBase.js +167 -150
  32. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +10 -10
  33. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +7 -7
  34. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  35. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  36. package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
  37. package/esm2015/lib/GridColumnPinOptionsView_combined.js +4 -4
  38. package/esm2015/lib/GridColumnSortOptionsView_combined.js +2 -2
  39. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  40. package/esm2015/lib/GridExternalWrapper.js +6 -6
  41. package/esm2015/lib/GridFilterDialogView_combined.js +2 -2
  42. package/esm2015/lib/GridStyleRepository.js +118 -113
  43. package/esm2015/lib/GridStyleRepositoryKeys.js +1 -1
  44. package/esm2015/lib/ImageCell.js +57 -57
  45. package/esm2015/lib/ImageCellPresenter.js +15 -15
  46. package/esm2015/lib/MultiColumnComboBoxView_combined.js +9 -9
  47. package/esm2015/lib/NumericCell.js +8 -8
  48. package/esm2015/lib/NumericCellPresenter.js +9 -9
  49. package/esm2015/lib/PropertyEditorView_combined.js +19 -19
  50. package/esm2015/lib/SectionHeaderCell.js +20 -20
  51. package/esm2015/lib/SectionHeaderCellPresenter.js +10 -10
  52. package/esm2015/lib/SummaryCell.js +45 -45
  53. package/esm2015/lib/SummaryCellPresenter.js +10 -10
  54. package/esm2015/lib/TemplateCell.js +15 -15
  55. package/esm2015/lib/TemplateCellPresenter.js +3 -3
  56. package/esm2015/lib/TemplateHeader.js +4 -4
  57. package/esm2015/lib/TemplateHeaderCell.js +5 -5
  58. package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
  59. package/esm2015/lib/TemplateHeaderCellPresenter.js +3 -3
  60. package/esm2015/lib/TemplateSectionHeader.js +1 -1
  61. package/esm2015/lib/TextCell.js +29 -29
  62. package/esm2015/lib/TextCellPresenter.js +10 -10
  63. package/esm2015/lib/TextHeaderCell.js +184 -184
  64. package/esm2015/lib/TextHeaderCellPresenter.js +52 -52
  65. package/esm2015/lib/TextIconSetConditionalStyle.js +1 -1
  66. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  67. package/esm2015/lib/igc-cell-info.js +97 -79
  68. package/esm2015/lib/igc-column-moving-separator-component.js +9 -9
  69. package/esm2015/lib/igc-column-resizing-separator-component.js +6 -6
  70. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  71. package/esm2015/lib/igc-data-grid-column-component.js +291 -261
  72. package/esm2015/lib/igc-data-grid-component.js +20 -0
  73. package/esm2015/lib/igc-date-time-cell-info.js +12 -12
  74. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  75. package/esm2015/lib/igc-definition-base-component.js +12 -12
  76. package/esm2015/lib/igc-editor-cell-info.js +23 -23
  77. package/esm2015/lib/igc-filter-cell-info.js +26 -26
  78. package/esm2015/lib/igc-filter-row-definition-component.js +12 -12
  79. package/esm2015/lib/igc-header-component.js +24 -24
  80. package/esm2015/lib/igc-image-cell-info.js +6 -6
  81. package/esm2015/lib/igc-image-column-component.js +12 -12
  82. package/esm2015/lib/igc-numeric-cell-info.js +35 -26
  83. package/esm2015/lib/igc-numeric-column-component.js +46 -35
  84. package/esm2015/lib/igc-section-header-cell-info.js +6 -6
  85. package/esm2015/lib/igc-section-header-component.js +58 -24
  86. package/esm2015/lib/igc-summary-cell-info.js +9 -9
  87. package/esm2015/lib/igc-summary-row-component.js +24 -24
  88. package/esm2015/lib/igc-template-cell-info.js +2 -2
  89. package/esm2015/lib/igc-template-header-cell-info.js +2 -2
  90. package/esm2015/lib/igc-text-cell-info.js +2 -2
  91. package/esm2015/lib/igc-text-column-component.js +9 -9
  92. package/esm2015/lib/igc-text-header-cell-info.js +38 -38
  93. package/esm5/lib/CanvasCellPresenterBase.js +4 -4
  94. package/esm5/lib/CanvasContentCellModelHelper.js +5 -5
  95. package/esm5/lib/CanvasDateTimeCellPresenter.js +8 -8
  96. package/esm5/lib/CanvasGridCellBase.js +2 -2
  97. package/esm5/lib/CanvasImageCellPresenter.js +7 -7
  98. package/esm5/lib/CanvasNumericCellPresenter.js +8 -8
  99. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  100. package/esm5/lib/CanvasSummaryCellPresenter.js +6 -6
  101. package/esm5/lib/CanvasTemplateCellPresenter.js +2 -2
  102. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +2 -2
  103. package/esm5/lib/CanvasTextCellPresenter.js +9 -9
  104. package/esm5/lib/CanvasTextHeaderCellPresenter.js +7 -7
  105. package/esm5/lib/CellPresenterBase.js +37 -34
  106. package/esm5/lib/CheckboxListView_combined.js +24 -24
  107. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  108. package/esm5/lib/ColumnFilterCondition_combined.js +5100 -4765
  109. package/esm5/lib/ColumnGroupingView_combined.js +4 -4
  110. package/esm5/lib/ColumnPinningView_combined.js +11 -11
  111. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  112. package/esm5/lib/ContentCellModelHelper.js +10 -10
  113. package/esm5/lib/DataGridCellLayoutPanel.js +10 -10
  114. package/esm5/lib/DataGridScrollerKeyboardListener.js +2 -2
  115. package/esm5/lib/DataGridToolbarView_combined.js +2 -2
  116. package/esm5/lib/DateTimeCellPresenter.js +9 -9
  117. package/esm5/lib/EditorCell.js +277 -277
  118. package/esm5/lib/EditorCellPresenter.js +26 -26
  119. package/esm5/lib/FilterCell.js +259 -259
  120. package/esm5/lib/FilterCellPresenter.js +15 -15
  121. package/esm5/lib/GridCellBase.js +164 -143
  122. package/esm5/lib/GridColumnFilterOptionsView_combined.js +10 -10
  123. package/esm5/lib/GridColumnGroupOptionsView_combined.js +7 -7
  124. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  125. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  126. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  127. package/esm5/lib/GridColumnPinOptionsView_combined.js +4 -4
  128. package/esm5/lib/GridColumnSortOptionsView_combined.js +2 -2
  129. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  130. package/esm5/lib/GridExternalWrapper.js +6 -6
  131. package/esm5/lib/GridFilterDialogView_combined.js +2 -2
  132. package/esm5/lib/GridStyleRepository.js +118 -113
  133. package/esm5/lib/GridStyleRepositoryKeys.js +1 -1
  134. package/esm5/lib/ImageCell.js +57 -57
  135. package/esm5/lib/ImageCellPresenter.js +15 -15
  136. package/esm5/lib/MultiColumnComboBoxView_combined.js +9 -9
  137. package/esm5/lib/NumericCell.js +8 -8
  138. package/esm5/lib/NumericCellPresenter.js +9 -9
  139. package/esm5/lib/PropertyEditorView_combined.js +19 -19
  140. package/esm5/lib/SectionHeaderCell.js +20 -20
  141. package/esm5/lib/SectionHeaderCellPresenter.js +10 -10
  142. package/esm5/lib/SummaryCell.js +45 -45
  143. package/esm5/lib/SummaryCellPresenter.js +10 -10
  144. package/esm5/lib/TemplateCell.js +15 -15
  145. package/esm5/lib/TemplateCellPresenter.js +3 -3
  146. package/esm5/lib/TemplateHeader.js +4 -4
  147. package/esm5/lib/TemplateHeaderCell.js +5 -5
  148. package/esm5/lib/TemplateHeaderCellModel.js +17 -17
  149. package/esm5/lib/TemplateHeaderCellPresenter.js +3 -3
  150. package/esm5/lib/TemplateSectionHeader.js +1 -1
  151. package/esm5/lib/TextCell.js +29 -29
  152. package/esm5/lib/TextCellPresenter.js +10 -10
  153. package/esm5/lib/TextHeaderCell.js +182 -182
  154. package/esm5/lib/TextHeaderCellPresenter.js +52 -52
  155. package/esm5/lib/TextIconSetConditionalStyle.js +1 -1
  156. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  157. package/esm5/lib/igc-cell-info.js +105 -79
  158. package/esm5/lib/igc-column-moving-separator-component.js +9 -9
  159. package/esm5/lib/igc-column-resizing-separator-component.js +6 -6
  160. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  161. package/esm5/lib/igc-data-grid-column-component.js +303 -261
  162. package/esm5/lib/igc-data-grid-component.js +28 -0
  163. package/esm5/lib/igc-date-time-cell-info.js +12 -12
  164. package/esm5/lib/igc-date-time-column-component.js +23 -23
  165. package/esm5/lib/igc-definition-base-component.js +12 -12
  166. package/esm5/lib/igc-editor-cell-info.js +23 -23
  167. package/esm5/lib/igc-filter-cell-info.js +26 -26
  168. package/esm5/lib/igc-filter-row-definition-component.js +12 -12
  169. package/esm5/lib/igc-header-component.js +24 -24
  170. package/esm5/lib/igc-image-cell-info.js +6 -6
  171. package/esm5/lib/igc-image-column-component.js +12 -12
  172. package/esm5/lib/igc-numeric-cell-info.js +39 -26
  173. package/esm5/lib/igc-numeric-column-component.js +50 -35
  174. package/esm5/lib/igc-section-header-cell-info.js +6 -6
  175. package/esm5/lib/igc-section-header-component.js +74 -24
  176. package/esm5/lib/igc-summary-cell-info.js +9 -9
  177. package/esm5/lib/igc-summary-row-component.js +24 -24
  178. package/esm5/lib/igc-template-cell-info.js +2 -2
  179. package/esm5/lib/igc-template-header-cell-info.js +2 -2
  180. package/esm5/lib/igc-text-cell-info.js +2 -2
  181. package/esm5/lib/igc-text-column-component.js +9 -9
  182. package/esm5/lib/igc-text-header-cell-info.js +38 -38
  183. package/fesm2015/igniteui-webcomponents-data-grids.js +7778 -7348
  184. package/fesm5/igniteui-webcomponents-data-grids.js +7623 -7085
  185. package/lib/ColumnFilterCondition_combined.d.ts +1341 -1292
  186. package/lib/EditorCell.d.ts +67 -67
  187. package/lib/FilterCell.d.ts +55 -55
  188. package/lib/GridCellBase.d.ts +64 -61
  189. package/lib/GridStyleRepositoryKeys.d.ts +28 -27
  190. package/lib/ImageCell.d.ts +17 -17
  191. package/lib/NumericCell.d.ts +2 -2
  192. package/lib/SectionHeaderCell.d.ts +4 -4
  193. package/lib/SummaryCell.d.ts +10 -10
  194. package/lib/TemplateCell.d.ts +5 -5
  195. package/lib/TemplateHeader.d.ts +1 -1
  196. package/lib/TemplateHeaderCell.d.ts +2 -2
  197. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  198. package/lib/TemplateSectionHeader.d.ts +1 -1
  199. package/lib/TextCell.d.ts +7 -7
  200. package/lib/TextHeaderCell.d.ts +30 -30
  201. package/lib/VerticalSeparatorCell.d.ts +8 -8
  202. package/lib/igc-cell-info.d.ts +10 -0
  203. package/lib/igc-data-grid-column-component.d.ts +15 -0
  204. package/lib/igc-data-grid-component.d.ts +10 -0
  205. package/lib/igc-numeric-cell-info.d.ts +5 -0
  206. package/lib/igc-numeric-column-component.d.ts +6 -0
  207. package/lib/igc-section-header-component.d.ts +14 -0
  208. package/package.json +4 -4
@@ -494,17 +494,17 @@ export declare abstract class CellModel extends Base {
494
494
  private static d2;
495
495
  private static d1;
496
496
  private static by;
497
- static f8(a: string): number;
497
+ static f9(a: string): number;
498
498
  s: ICellPresenter;
499
- static hl: number;
499
+ static hn: number;
500
500
  private t;
501
501
  get u(): ModelStates;
502
502
  set u(a: ModelStates);
503
- private ik;
504
- get k9(): string;
505
- set k9(a: string);
503
+ private im;
504
+ get ld(): string;
505
+ set ld(a: string);
506
506
  private k;
507
- static g7: number;
507
+ static g8: number;
508
508
  get l(): CellPath;
509
509
  set l(a: CellPath);
510
510
  private al;
@@ -525,21 +525,21 @@ export declare abstract class CellModel extends Base {
525
525
  e: IGridInfoRequestor;
526
526
  d: ICellModelExportUpdater;
527
527
  private an;
528
- static gh: number;
528
+ static gi: number;
529
529
  get a4(): boolean;
530
530
  set a4(a: boolean);
531
531
  private b5;
532
532
  static fb: number;
533
533
  get cr(): number;
534
534
  set cr(a: number);
535
- private mv;
535
+ private mz;
536
536
  static e7: number;
537
- get nh(): Brush;
538
- set nh(a: Brush);
539
- private mw;
537
+ get nn(): Brush;
538
+ set nn(a: Brush);
539
+ private m0;
540
540
  static fa: number;
541
- get ni(): Brush;
542
- set ni(a: Brush);
541
+ get no(): Brush;
542
+ set no(a: Brush);
543
543
  private dn;
544
544
  static fd: number;
545
545
  get fc(): number;
@@ -548,88 +548,88 @@ export declare abstract class CellModel extends Base {
548
548
  static e9: number;
549
549
  get e8(): number;
550
550
  set e8(a: number);
551
- private nz;
551
+ private n7;
552
552
  static fn: number;
553
- get n0(): Rect;
554
- set n0(a: Rect);
555
- static readonly gn: number;
553
+ get n8(): Rect;
554
+ set n8(a: Rect);
555
+ static readonly go: number;
556
556
  private au;
557
557
  get bh(): boolean;
558
558
  set bh(a: boolean);
559
559
  private ax;
560
- static gp: number;
560
+ static gq: number;
561
561
  get bo(): boolean;
562
562
  set bo(a: boolean);
563
563
  private ay;
564
- static gq: number;
564
+ static gr: number;
565
565
  get bp(): boolean;
566
566
  set bp(a: boolean);
567
567
  private aw;
568
- static go: number;
568
+ static gp: number;
569
569
  get bk(): boolean;
570
570
  set bk(a: boolean);
571
571
  private as;
572
- static gm: number;
572
+ static gn: number;
573
573
  get bf(): boolean;
574
574
  set bf(a: boolean);
575
575
  private d0;
576
- static gg: number;
577
- get gf(): number;
578
- set gf(a: number);
576
+ static gh: number;
577
+ get gg(): number;
578
+ set gg(a: number);
579
579
  private bv;
580
580
  a8(a: string): boolean;
581
581
  bc(propertyId_: number): boolean;
582
582
  bb(a: string): boolean;
583
583
  private dt;
584
584
  private a;
585
- l8(propertyId_: number): void;
586
- l5(): void;
587
- l9(a: string): void;
585
+ mc(propertyId_: number): void;
586
+ l9(): void;
587
+ md(a: string): void;
588
588
  private am;
589
589
  get a2(): boolean;
590
590
  set a2(a: boolean);
591
591
  private a0;
592
- protected mg(a: string, b: number, c: any, d: any): void;
592
+ protected mk(a: string, b: number, c: any, d: any): void;
593
593
  protected bu(a: string): boolean;
594
- protected mj(a: string, b: any, c: any): void;
594
+ protected mn(a: string, b: any, c: any): void;
595
+ private ml;
596
+ private mf;
597
+ private mg;
595
598
  private mh;
596
- private mb;
597
- private mc;
598
- private md;
599
- private me;
600
599
  private mi;
601
- private mf;
602
- private nn;
603
- ml(): void;
604
- protected mm(): void;
600
+ private mm;
601
+ private mj;
602
+ private nu;
603
+ mp(): void;
604
+ protected mq(): void;
605
605
  private bx;
606
- mo(a: string, b: any): void;
606
+ ms(a: string, b: any): void;
607
607
  a3(a: string): boolean;
608
- mk(a: string): void;
609
- id(a: string): any;
608
+ mo(a: string): void;
609
+ ig(a: string): any;
610
610
  private q;
611
611
  get r(): GridLayer;
612
612
  set r(a: GridLayer);
613
- static hc: number;
614
- private ic;
615
- get ih(): any;
616
- set ih(a: any);
617
- static readonly h8: number;
613
+ static hd: number;
614
+ private ie;
615
+ get ij(): any;
616
+ set ij(a: any);
617
+ static readonly ia: number;
618
618
  private cm;
619
619
  get c8(): number;
620
620
  set c8(a: number);
621
- static readonly h9: number;
621
+ static readonly ib: number;
622
622
  private cn;
623
623
  get c9(): number;
624
624
  set c9(a: number);
625
- static readonly hg: number;
626
- private d7;
627
- get hf(): number;
628
- set hf(a: number);
629
625
  static readonly hi: number;
630
- private d8;
626
+ private d7;
631
627
  get hh(): number;
632
628
  set hh(a: number);
629
+ static readonly hk: number;
630
+ private d8;
631
+ get hj(): number;
632
+ set hj(a: number);
633
633
  static readonly fw: number;
634
634
  private b7;
635
635
  get ct(): number;
@@ -642,7 +642,7 @@ export declare abstract class CellModel extends Base {
642
642
  private b3;
643
643
  get cp(): number;
644
644
  set cp(a: number);
645
- static readonly gx: number;
645
+ static readonly gy: number;
646
646
  private cb;
647
647
  get cx(): number;
648
648
  set cx(a: number);
@@ -650,40 +650,40 @@ export declare abstract class CellModel extends Base {
650
650
  private b4;
651
651
  get cq(): number;
652
652
  set cq(a: number);
653
- static readonly gt: number;
654
- ma(): void;
653
+ static readonly gu: number;
654
+ me(): void;
655
655
  private b9;
656
656
  get cv(): number;
657
657
  set cv(a: number);
658
- static readonly h1: number;
658
+ static readonly h3: number;
659
659
  private cj;
660
660
  get c5(): number;
661
661
  set c5(a: number);
662
- static readonly gu: number;
662
+ static readonly gv: number;
663
663
  private ca;
664
664
  get cw(): number;
665
665
  set cw(a: number);
666
- static readonly h2: number;
666
+ static readonly h4: number;
667
667
  private ck;
668
668
  get c6(): number;
669
669
  set c6(a: number);
670
- static readonly ga: number;
670
+ static readonly gb: number;
671
671
  private dz;
672
- get f9(): number;
673
- set f9(a: number);
674
- static readonly h7: number;
672
+ get ga(): number;
673
+ set ga(a: number);
674
+ static readonly h9: number;
675
675
  private d9;
676
- get h6(): number;
677
- set h6(a: number);
678
- static readonly gr: number;
676
+ get h8(): number;
677
+ set h8(a: number);
678
+ static readonly gs: number;
679
679
  private az;
680
680
  get br(): boolean;
681
681
  set br(a: boolean);
682
- static readonly gw: number;
682
+ static readonly gx: number;
683
683
  private v;
684
684
  get w(): ModelTypes;
685
685
  set w(a: ModelTypes);
686
- static readonly he: number;
686
+ static readonly hf: number;
687
687
  private cd;
688
688
  get cz(): number;
689
689
  set cz(a: number);
@@ -691,106 +691,110 @@ export declare abstract class CellModel extends Base {
691
691
  private b2;
692
692
  get co(): number;
693
693
  set co(a: number);
694
- static readonly gd: number;
694
+ static readonly ge: number;
695
695
  private b8;
696
696
  get cu(): number;
697
697
  set cu(a: number);
698
698
  private av;
699
699
  get bi(): boolean;
700
700
  set bi(a: boolean);
701
- static readonly gb: number;
701
+ static readonly gc: number;
702
702
  private f;
703
703
  get g(): CellContentHorizontalAlignment;
704
704
  set g(a: CellContentHorizontalAlignment);
705
- static readonly h4: number;
705
+ static readonly h6: number;
706
706
  private h;
707
707
  get i(): CellContentVerticalAlignment;
708
708
  set i(a: CellContentVerticalAlignment);
709
709
  static readonly e6: number;
710
- private mu;
711
- get ng(): Brush;
712
- set ng(a: Brush);
710
+ private my;
711
+ get nm(): Brush;
712
+ set nm(a: Brush);
713
713
  static readonly fi: number;
714
- private mx;
714
+ private m1;
715
+ get np(): Brush;
716
+ set np(a: Brush);
717
+ static readonly ek: number;
718
+ private mv;
715
719
  get nj(): Brush;
716
720
  set nj(a: Brush);
717
- static readonly ek: number;
718
- private mr;
719
- get nd(): Brush;
720
- set nd(a: Brush);
721
721
  static readonly ep: number;
722
- private ms;
723
- get ne(): Brush;
724
- set ne(a: Brush);
722
+ private mw;
723
+ get nk(): Brush;
724
+ set nk(a: Brush);
725
725
  static readonly ee: number;
726
- private mq;
727
- get nc(): Brush;
728
- set nc(a: Brush);
726
+ private mu;
727
+ get ni(): Brush;
728
+ set ni(a: Brush);
729
729
  static readonly f1: number;
730
- private mz;
731
- get nl(): Brush;
732
- set nl(a: Brush);
733
- static readonly hd: number;
734
- private m5;
735
- get ns(): Brush;
736
- set ns(a: Brush);
737
- static readonly gc: number;
738
- private m1;
739
- get no(): Brush;
740
- set no(a: Brush);
741
- static readonly ge: number;
742
- private m2;
743
- get np(): Brush;
744
- set np(a: Brush);
745
- static readonly hk: number;
746
- private m6;
747
- get nt(): Brush;
748
- set nt(a: Brush);
749
- static readonly hm: number;
750
- private m7;
751
- get nu(): Brush;
752
- set nu(a: Brush);
753
- static readonly g9: number;
754
- private m4;
730
+ private m3;
755
731
  get nr(): Brush;
756
732
  set nr(a: Brush);
757
- private m3;
758
- static readonly gs: number;
759
- get nq(): Brush;
760
- set nq(a: Brush);
761
- private m0;
762
- static readonly f6: number;
763
- get nm(): Brush;
764
- set nm(a: Brush);
733
+ static readonly he: number;
734
+ private na;
735
+ get nz(): Brush;
736
+ set nz(a: Brush);
737
+ static readonly hg: number;
738
+ private nb;
739
+ get n0(): Brush;
740
+ set n0(a: Brush);
741
+ static readonly gd: number;
742
+ private m6;
743
+ get nv(): Brush;
744
+ set nv(a: Brush);
745
+ static readonly gf: number;
746
+ private m7;
747
+ get nw(): Brush;
748
+ set nw(a: Brush);
749
+ static readonly hm: number;
750
+ private nc;
751
+ get n1(): Brush;
752
+ set n1(a: Brush);
753
+ static readonly ho: number;
754
+ private nd;
755
+ get n2(): Brush;
756
+ set n2(a: Brush);
765
757
  static readonly ha: number;
758
+ private m9;
759
+ get ny(): Brush;
760
+ set ny(a: Brush);
761
+ private m8;
762
+ static readonly gt: number;
763
+ get nx(): Brush;
764
+ set nx(a: Brush);
765
+ private m5;
766
+ static readonly f7: number;
767
+ get nt(): Brush;
768
+ set nt(a: Brush);
769
+ static readonly hb: number;
766
770
  private cc;
767
771
  get cy(): number;
768
772
  set cy(a: number);
769
- static readonly gy: number;
770
- private ib;
771
- get ig(): any;
772
- set ig(a: any);
773
- static readonly hb: number;
774
- private ij;
775
- get ky(): string;
776
- set ky(a: string);
777
- static readonly h3: number;
778
- private ip;
779
- get lu(): string;
780
- set lu(a: string);
781
- static readonly hz: number;
782
- private nb;
783
- get ny(): Brush;
784
- set ny(a: Brush);
773
+ static readonly gz: number;
774
+ private id;
775
+ get ii(): any;
776
+ set ii(a: any);
777
+ static readonly hc: number;
778
+ private il;
779
+ get k1(): string;
780
+ set k1(a: string);
781
+ static readonly h5: number;
782
+ private ir;
783
+ get ly(): string;
784
+ set ly(a: string);
785
+ static readonly h1: number;
786
+ private nh;
787
+ get n6(): Brush;
788
+ set n6(a: Brush);
785
789
  static readonly e5: number;
786
- private mt;
787
- get nf(): Brush;
788
- set nf(a: Brush);
790
+ private mx;
791
+ get nl(): Brush;
792
+ set nl(a: Brush);
789
793
  static readonly fr: number;
790
- private my;
791
- get nk(): Brush;
792
- set nk(a: Brush);
793
- static readonly f7: number;
794
+ private m2;
795
+ get nq(): Brush;
796
+ set nq(a: Brush);
797
+ static readonly f8: number;
794
798
  private af;
795
799
  get aj(): FontInfo;
796
800
  set aj(a: FontInfo);
@@ -798,82 +802,82 @@ export declare abstract class CellModel extends Base {
798
802
  private ad;
799
803
  get ah(): FontInfo;
800
804
  set ah(a: FontInfo);
805
+ static readonly h0: number;
806
+ private iq;
807
+ get lp(): string;
808
+ set lp(a: string);
801
809
  static readonly hy: number;
802
- private io;
803
- get ll(): string;
804
- set ll(a: string);
805
- static readonly hw: number;
806
- private na;
807
- get nx(): Brush;
808
- set nx(a: Brush);
809
- static readonly hx: number;
810
+ private ng;
811
+ get n5(): Brush;
812
+ set n5(a: Brush);
813
+ static readonly hz: number;
810
814
  private ag;
811
815
  get ak(): FontInfo;
812
816
  set ak(a: FontInfo);
817
+ static readonly hr: number;
818
+ private ip;
819
+ get lh(): string;
820
+ set lh(a: string);
813
821
  static readonly hp: number;
814
- private im;
815
- get ld(): string;
816
- set ld(a: string);
817
- static readonly hn: number;
818
- private il;
819
- get la(): string;
820
- set la(a: string);
821
- static readonly hq: number;
822
- private m9;
823
- get nw(): Brush;
824
- set nw(a: Brush);
825
- static readonly ho: number;
826
- private m8;
827
- get nv(): Brush;
828
- set nv(a: Brush);
822
+ private io;
823
+ get le(): string;
824
+ set le(a: string);
829
825
  static readonly hs: number;
826
+ private nf;
827
+ get n4(): Brush;
828
+ set n4(a: Brush);
829
+ static readonly hq: number;
830
+ private ne;
831
+ get n3(): Brush;
832
+ set n3(a: Brush);
833
+ static readonly hu: number;
830
834
  private cf;
831
835
  get c1(): number;
832
836
  set c1(a: number);
833
- static readonly ht: number;
837
+ static readonly hv: number;
834
838
  private cg;
835
839
  get c2(): number;
836
840
  set c2(a: number);
837
- static readonly hu: number;
841
+ static readonly hw: number;
838
842
  private ch;
839
843
  get c3(): number;
840
844
  set c3(a: number);
841
- static readonly hr: number;
845
+ static readonly ht: number;
842
846
  private ce;
843
847
  get c0(): number;
844
848
  set c0(a: number);
845
- static readonly hv: number;
849
+ static readonly hx: number;
846
850
  private ci;
847
851
  get c4(): number;
848
852
  set c4(a: number);
849
- static readonly h0: number;
853
+ static readonly h2: number;
850
854
  private z;
851
855
  get aa(): TextCellDecoration;
852
856
  set aa(a: TextCellDecoration);
853
- static readonly gv: number;
857
+ static readonly gw: number;
854
858
  private ab;
855
859
  get ac(): TextCellLineBreakMode;
856
860
  set ac(a: TextCellLineBreakMode);
857
- static readonly h5: number;
861
+ static readonly h7: number;
858
862
  private cl;
859
863
  get c7(): number;
860
864
  set c7(a: number);
861
- static readonly g2: number;
865
+ static readonly g3: number;
862
866
  private d4;
863
- get g1(): number;
864
- set g1(a: number);
865
- static readonly g6: number;
867
+ get g2(): number;
868
+ set g2(a: number);
869
+ static readonly g7: number;
866
870
  private d6;
867
- get g5(): number;
868
- set g5(a: number);
869
- static readonly g4: number;
871
+ get g6(): number;
872
+ set g6(a: number);
873
+ static readonly g5: number;
870
874
  private d5;
871
- get g3(): number;
872
- set g3(a: number);
873
- static readonly g0: number;
875
+ get g4(): number;
876
+ set g4(a: number);
877
+ static readonly g1: number;
874
878
  private d3;
875
- get gz(): number;
876
- set gz(a: number);
879
+ get g0(): number;
880
+ set g0(a: number);
877
881
  static readonly e0: number;
878
882
  private dj;
879
883
  get ez(): number;
@@ -954,19 +958,23 @@ export declare abstract class CellModel extends Base {
954
958
  private de;
955
959
  get el(): number;
956
960
  set el(a: number);
957
- static readonly hj: number;
961
+ static readonly hl: number;
958
962
  private m;
959
963
  get n(): ColumnSortDirection;
960
964
  set n(a: ColumnSortDirection);
961
- static readonly gl: number;
965
+ static readonly gm: number;
962
966
  private ar;
963
967
  get be(): boolean;
964
968
  set be(a: boolean);
965
- static readonly gi: number;
969
+ static readonly gj: number;
966
970
  private ao;
967
971
  get a6(): boolean;
968
972
  set a6(a: boolean);
969
- static readonly g8: number;
973
+ static readonly f6: number;
974
+ private m4;
975
+ get ns(): Brush;
976
+ set ns(a: Brush);
977
+ static readonly g9: number;
970
978
  private x;
971
979
  get y(): PinnedPositions;
972
980
  set y(a: PinnedPositions);
@@ -974,18 +982,18 @@ export declare abstract class CellModel extends Base {
974
982
  private ae;
975
983
  get ai(): FontInfo;
976
984
  set ai(a: FontInfo);
977
- static readonly gk: number;
985
+ static readonly gl: number;
978
986
  private aq;
979
987
  get bd(): boolean;
980
988
  set bd(a: boolean);
981
- static readonly gj: number;
989
+ static readonly gk: number;
982
990
  private ap;
983
991
  get ba(): boolean;
984
992
  set ba(a: boolean);
985
993
  static readonly ft: number;
986
- private ii;
987
- get jq(): string;
988
- set jq(a: string);
994
+ private ik;
995
+ get js(): string;
996
+ set js(a: string);
989
997
  bj: boolean;
990
998
  private du;
991
999
  get fv(): number;
@@ -993,24 +1001,24 @@ export declare abstract class CellModel extends Base {
993
1001
  private at;
994
1002
  get bg(): boolean;
995
1003
  set bg(a: boolean);
996
- ia: number;
997
- l3(): void;
998
- protected l4(): void;
1004
+ ic: number;
1005
+ l7(): void;
1006
+ protected l8(): void;
999
1007
  propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
1000
1008
  b(a: CellModelExport): CellModelExport;
1001
1009
  private static bz;
1002
- protected l7(): void;
1010
+ protected mb(): void;
1003
1011
  private static bw;
1004
1012
  private b0;
1005
- protected l6(): void;
1006
- l1(a: string): Type;
1007
- mp(a: string, b: any): void;
1008
- ie(a: string): any;
1009
- mn(a: string, b: any): void;
1013
+ protected ma(): void;
1014
+ l5(a: string): Type;
1015
+ mt(a: string, b: any): void;
1016
+ ih(a: string): any;
1017
+ mr(a: string, b: any): void;
1010
1018
  cellReconciling: (model: CellModel) => void;
1011
1019
  bq(a: DataSourceRowType): boolean;
1012
- j1(): string;
1013
- l2(a: List$1<GridConditionalStyle>): void;
1020
+ j4(): string;
1021
+ l6(a: List$1<GridConditionalStyle>): void;
1014
1022
  }
1015
1023
  /**
1016
1024
  * @hidden
@@ -1018,42 +1026,42 @@ export declare abstract class CellModel extends Base {
1018
1026
  export declare class DateTimeCellModel extends CellModel {
1019
1027
  static $t: Type;
1020
1028
  constructor();
1021
- static readonly od: number;
1022
- private oa;
1023
- get ob(): Date;
1024
- set ob(a: Date);
1025
- static readonly og: number;
1026
- private om;
1027
- get os(): string;
1028
- set os(a: string);
1029
- static readonly of: number;
1030
- private n1;
1031
- get n2(): any[];
1032
- set n2(a: any[]);
1033
- n3: BindingFormatter;
1034
- private ok;
1035
- static readonly oe: number;
1029
+ static readonly ol: number;
1030
+ private oi;
1031
+ get oj(): Date;
1032
+ set oj(a: Date);
1033
+ static readonly oo: number;
1034
+ private ou;
1035
+ get o0(): string;
1036
+ set o0(a: string);
1037
+ static readonly on: number;
1038
+ private n9;
1039
+ get oa(): any[];
1040
+ set oa(a: any[]);
1041
+ ob: BindingFormatter;
1042
+ private os;
1043
+ static readonly om: number;
1036
1044
  private _formatOverride;
1037
- get ol(): any;
1038
- set ol(a: any);
1039
- static readonly oc: number;
1040
- private n6;
1041
- get n7(): DateTimeFormats;
1042
- set n7(a: DateTimeFormats);
1043
- op(a: Date): string;
1044
- j1(): string;
1045
- static readonly oh: number;
1046
- private n4;
1047
- get n5(): DateTimeColumnValueFormatter;
1048
- set n5(a: DateTimeColumnValueFormatter);
1049
- static readonly oi: number;
1050
- private n8;
1051
- get n9(): boolean;
1052
- set n9(a: boolean);
1053
- protected mj(a: string, b: any, c: any): void;
1054
- mp(a: string, b: any): void;
1055
- l1(a: string): Type;
1056
- ie(a: string): any;
1045
+ get ot(): any;
1046
+ set ot(a: any);
1047
+ static readonly ok: number;
1048
+ private oe;
1049
+ get of(): DateTimeFormats;
1050
+ set of(a: DateTimeFormats);
1051
+ ox(a: Date): string;
1052
+ j4(): string;
1053
+ static readonly op: number;
1054
+ private oc;
1055
+ get od(): DateTimeColumnValueFormatter;
1056
+ set od(a: DateTimeColumnValueFormatter);
1057
+ static readonly oq: number;
1058
+ private og;
1059
+ get oh(): boolean;
1060
+ set oh(a: boolean);
1061
+ protected mn(a: string, b: any, c: any): void;
1062
+ mt(a: string, b: any): void;
1063
+ l5(a: string): Type;
1064
+ ih(a: string): any;
1057
1065
  b(a: CellModelExport): CellModelExport;
1058
1066
  }
1059
1067
  /**
@@ -1062,102 +1070,102 @@ export declare class DateTimeCellModel extends CellModel {
1062
1070
  export declare class EditorCellModel extends CellModel {
1063
1071
  static $t: Type;
1064
1072
  constructor();
1065
- private og;
1066
- private of;
1067
- private oa;
1073
+ private oo;
1074
+ private on;
1075
+ private oi;
1076
+ static oy: number;
1077
+ get ol(): boolean;
1078
+ private od;
1079
+ static ov: number;
1080
+ get oe(): CellModel;
1081
+ set oe(a: CellModel);
1082
+ private ob;
1083
+ static op: number;
1084
+ get oc(): DataSourceSchemaPropertyType;
1085
+ set oc(a: DataSourceSchemaPropertyType);
1086
+ private o7;
1087
+ static ow: number;
1088
+ get ph(): string;
1089
+ set ph(a: string);
1090
+ o4: any;
1091
+ private of;
1092
+ static ot: number;
1093
+ get og(): EditorType;
1094
+ set og(a: EditorType);
1095
+ private o2;
1096
+ static or: number;
1097
+ get o3(): any;
1098
+ set o3(a: any);
1099
+ private o6;
1100
+ static os: number;
1101
+ get pc(): string;
1102
+ set pc(a: string);
1103
+ private n9;
1104
+ static ou: number;
1105
+ get oa(): string[];
1106
+ set oa(a: string[]);
1107
+ static ox: number;
1108
+ private oh;
1109
+ get ok(): boolean;
1110
+ set ok(a: boolean);
1068
1111
  static oq: number;
1069
- get od(): boolean;
1070
- private n5;
1071
- static on: number;
1072
- get n6(): CellModel;
1073
- set n6(a: CellModel);
1074
- private n3;
1075
- static oh: number;
1076
- get n4(): DataSourceSchemaPropertyType;
1077
- set n4(a: DataSourceSchemaPropertyType);
1078
- private oz;
1079
- static oo: number;
1112
+ private o5;
1080
1113
  get o9(): string;
1081
1114
  set o9(a: string);
1082
- ow: any;
1083
- private n7;
1084
- static ol: number;
1085
- get n8(): EditorType;
1086
- set n8(a: EditorType);
1087
- private ou;
1088
- static oj: number;
1089
- get ov(): any;
1090
- set ov(a: any);
1091
- private oy;
1092
- static ok: number;
1093
- get o4(): string;
1094
- set o4(a: string);
1095
- private n1;
1096
- static om: number;
1097
- get n2(): string[];
1098
- set n2(a: string[]);
1099
- static op: number;
1100
- private n9;
1101
- get oc(): boolean;
1102
- set oc(a: boolean);
1103
- static oi: number;
1104
- private ox;
1105
- get o1(): string;
1106
- set o1(a: string);
1107
- static readonly or: number;
1108
- private ob;
1109
- get oe(): boolean;
1110
- set oe(a: boolean);
1111
- get ot(): number;
1112
- get os(): number;
1113
- protected mm(): void;
1114
- protected mj(a: string, b: any, c: any): void;
1115
- l1(a: string): Type;
1116
- mp(a: string, b: any): void;
1117
- ie(a: string): any;
1115
+ static readonly oz: number;
1116
+ private oj;
1117
+ get om(): boolean;
1118
+ set om(a: boolean);
1119
+ get o1(): number;
1120
+ get o0(): number;
1121
+ protected mq(): void;
1122
+ protected mn(a: string, b: any, c: any): void;
1123
+ l5(a: string): Type;
1124
+ mt(a: string, b: any): void;
1125
+ ih(a: string): any;
1118
1126
  b(a: CellModelExport): CellModelExport;
1119
- private pe;
1127
+ private pm;
1120
1128
  }
1121
1129
  /**
1122
1130
  * @hidden
1123
1131
  */
1124
1132
  export declare class FilterCellModel extends CellModel {
1125
1133
  static $t: Type;
1126
- static readonly oj: number;
1127
- private n5;
1128
- get n6(): DataSourceSchemaPropertyType;
1129
- set n6(a: DataSourceSchemaPropertyType);
1130
- static readonly om: number;
1131
- private n3;
1132
- get n4(): ColumnFilterCondition;
1133
- set n4(a: ColumnFilterCondition);
1134
- static readonly ok: number;
1135
- private n7;
1136
- get n8(): IFilterExpression;
1137
- set n8(a: IFilterExpression);
1138
- static readonly ol: number;
1139
- private n9;
1140
- get oa(): GridFilterOperandsCollection;
1141
- set oa(a: GridFilterOperandsCollection);
1142
- static on: number;
1134
+ static readonly or: number;
1135
+ private od;
1136
+ get oe(): DataSourceSchemaPropertyType;
1137
+ set oe(a: DataSourceSchemaPropertyType);
1138
+ static readonly ou: number;
1143
1139
  private ob;
1144
- get oc(): boolean;
1145
- set oc(a: boolean);
1146
- private n1;
1147
- get n2(): ColumnComparisonConditionOperatorType;
1148
- set n2(a: ColumnComparisonConditionOperatorType);
1149
- oo: any;
1150
- oi: number;
1151
- oh: number;
1152
- og: number;
1153
- of: number;
1154
- oe: number;
1155
- od: number;
1140
+ get oc(): ColumnFilterCondition;
1141
+ set oc(a: ColumnFilterCondition);
1142
+ static readonly os: number;
1143
+ private of;
1144
+ get og(): IFilterExpression;
1145
+ set og(a: IFilterExpression);
1146
+ static readonly ot: number;
1147
+ private oh;
1148
+ get oi(): GridFilterOperandsCollection;
1149
+ set oi(a: GridFilterOperandsCollection);
1150
+ static ov: number;
1151
+ private oj;
1152
+ get ok(): boolean;
1153
+ set ok(a: boolean);
1154
+ private n9;
1155
+ get oa(): ColumnComparisonConditionOperatorType;
1156
+ set oa(a: ColumnComparisonConditionOperatorType);
1157
+ ow: any;
1158
+ oq: number;
1159
+ op: number;
1160
+ oo: number;
1161
+ on: number;
1162
+ om: number;
1163
+ ol: number;
1156
1164
  constructor();
1157
- mp(a: string, b: any): void;
1158
- l1(a: string): Type;
1159
- ie(a: string): any;
1160
- mn(a: string, b: any): void;
1165
+ mt(a: string, b: any): void;
1166
+ l5(a: string): Type;
1167
+ ih(a: string): any;
1168
+ mr(a: string, b: any): void;
1161
1169
  b(a: CellModelExport): CellModelExport;
1162
1170
  }
1163
1171
  /**
@@ -1173,22 +1181,22 @@ export declare class EditorRowCellModel extends CellModel {
1173
1181
  export declare class SummaryCellModel extends CellModel {
1174
1182
  static $t: Type;
1175
1183
  constructor();
1176
- static readonly n3: number;
1177
- private n7;
1178
- get n9(): string;
1179
- set n9(a: string);
1180
- static readonly n4: number;
1181
- private n8;
1182
- get ob(): string;
1183
- set ob(a: string);
1184
- static readonly n6: number;
1184
+ static readonly ob: number;
1185
1185
  private of;
1186
- get og(): Brush;
1187
- set og(a: Brush);
1188
- static readonly n5: number;
1189
- private n1;
1190
- get n2(): FontInfo;
1191
- set n2(a: FontInfo);
1186
+ get oh(): string;
1187
+ set oh(a: string);
1188
+ static readonly oc: number;
1189
+ private og;
1190
+ get oj(): string;
1191
+ set oj(a: string);
1192
+ static readonly oe: number;
1193
+ private on;
1194
+ get oo(): Brush;
1195
+ set oo(a: Brush);
1196
+ static readonly od: number;
1197
+ private n9;
1198
+ get oa(): FontInfo;
1199
+ set oa(a: FontInfo);
1192
1200
  b(a: CellModelExport): CellModelExport;
1193
1201
  bq(a: DataSourceRowType): boolean;
1194
1202
  }
@@ -1205,22 +1213,22 @@ export declare class VerticalSeparatorCellModel extends CellModel {
1205
1213
  export declare class ImageCellModel extends CellModel {
1206
1214
  static $t: Type;
1207
1215
  constructor();
1208
- static readonly n5: number;
1209
- private n8;
1210
- get n9(): string;
1211
- set n9(a: string);
1212
- static readonly n7: number;
1213
- private n3;
1214
- get n4(): ImageStretchOptions;
1215
- set n4(a: ImageStretchOptions);
1216
- static readonly n6: number;
1217
- private n1;
1218
- get n2(): ImageResourceType;
1219
- set n2(a: ImageResourceType);
1216
+ static readonly od: number;
1217
+ private og;
1218
+ get oh(): string;
1219
+ set oh(a: string);
1220
+ static readonly of: number;
1221
+ private ob;
1222
+ get oc(): ImageStretchOptions;
1223
+ set oc(a: ImageStretchOptions);
1224
+ static readonly oe: number;
1225
+ private n9;
1226
+ get oa(): ImageResourceType;
1227
+ set oa(a: ImageResourceType);
1220
1228
  b(a: CellModelExport): CellModelExport;
1221
- mp(a: string, b: any): void;
1222
- l1(a: string): Type;
1223
- ie(a: string): any;
1229
+ mt(a: string, b: any): void;
1230
+ l5(a: string): Type;
1231
+ ih(a: string): any;
1224
1232
  }
1225
1233
  /**
1226
1234
  * @hidden
@@ -1228,67 +1236,71 @@ export declare class ImageCellModel extends CellModel {
1228
1236
  export declare class NumericCellModel extends CellModel {
1229
1237
  static $t: Type;
1230
1238
  constructor();
1231
- static readonly oq: number;
1232
- private n9;
1233
- get oa(): number;
1234
- set oa(a: number);
1235
- static readonly oh: number;
1236
- private n4;
1237
- get n6(): boolean;
1238
- set n6(a: boolean);
1239
- static readonly og: number;
1240
- private ox;
1241
- get o4(): string;
1242
- set o4(a: string);
1243
- static readonly of: number;
1244
- private n1;
1245
- get n2(): any[];
1246
- set n2(a: any[]);
1247
- n3: BindingFormatter;
1248
- private ov;
1249
- static readonly oe: number;
1250
- private _formatOverride;
1251
- get ow(): any;
1252
- set ow(a: any);
1253
- static readonly oo: number;
1254
- private oy;
1255
- get pa(): string;
1256
- set pa(a: string);
1239
+ static readonly o1: number;
1240
+ private oj;
1241
+ get ok(): number;
1242
+ set ok(a: number);
1257
1243
  static readonly or: number;
1258
- private o0;
1244
+ private oc;
1245
+ get of(): boolean;
1246
+ set of(a: boolean);
1247
+ static readonly oq: number;
1248
+ private o8;
1259
1249
  get pf(): string;
1260
1250
  set pf(a: string);
1261
1251
  static readonly op: number;
1262
- private oz;
1263
- get pc(): string;
1264
- set pc(a: string);
1252
+ private n9;
1253
+ get oa(): any[];
1254
+ set oa(a: any[]);
1255
+ ob: BindingFormatter;
1256
+ private o6;
1257
+ static readonly oo: number;
1258
+ private _formatOverride;
1259
+ get o7(): any;
1260
+ set o7(a: any);
1261
+ static readonly oz: number;
1262
+ private o9;
1263
+ get pm(): string;
1264
+ set pm(a: string);
1265
+ static readonly o2: number;
1266
+ private pb;
1267
+ get pr(): string;
1268
+ set pr(a: string);
1269
+ static readonly o0: number;
1270
+ private pa;
1271
+ get po(): string;
1272
+ set po(a: string);
1273
+ static readonly o3: number;
1274
+ private pc;
1275
+ get pt(): string;
1276
+ set pt(a: string);
1277
+ static readonly ou: number;
1278
+ private ol;
1279
+ get ot(): number;
1280
+ set ot(a: number);
1281
+ static readonly ow: number;
1282
+ private om;
1283
+ get ov(): number;
1284
+ set ov(a: number);
1285
+ static readonly oy: number;
1286
+ private on;
1287
+ get ox(): number;
1288
+ set ox(a: number);
1289
+ static readonly o4: number;
1290
+ private oe;
1291
+ get oi(): boolean;
1292
+ set oi(a: boolean);
1265
1293
  static readonly os: number;
1266
- private o1;
1267
- get ph(): string;
1268
- set ph(a: string);
1269
- static readonly oj: number;
1270
- private ob;
1271
- get oi(): number;
1272
- set oi(a: number);
1273
- static readonly ol: number;
1274
- private oc;
1275
- get ok(): number;
1276
- set ok(a: number);
1277
- static readonly on: number;
1278
1294
  private od;
1279
- get om(): number;
1280
- set om(a: number);
1281
- static readonly ot: number;
1282
- private n5;
1283
- get n8(): boolean;
1284
- set n8(a: boolean);
1285
- n7(): boolean;
1286
- protected mj(a: string, b: any, c: any): void;
1287
- mp(a: string, b: any): void;
1288
- l1(a: string): Type;
1289
- ie(a: string): any;
1295
+ get oh(): boolean;
1296
+ set oh(a: boolean);
1297
+ og(): boolean;
1298
+ protected mn(a: string, b: any, c: any): void;
1299
+ mt(a: string, b: any): void;
1300
+ l5(a: string): Type;
1301
+ ih(a: string): any;
1290
1302
  b(a: CellModelExport): CellModelExport;
1291
- j1(): string;
1303
+ j4(): string;
1292
1304
  }
1293
1305
  /**
1294
1306
  * @hidden
@@ -1304,29 +1316,29 @@ export declare class RowSeparatorModel extends CellModel {
1304
1316
  export declare class SectionHeaderCellModel extends CellModel {
1305
1317
  static $t: Type;
1306
1318
  constructor();
1307
- static readonly n7: number;
1308
- private n1;
1309
- get n3(): GroupData[];
1310
- set n3(a: GroupData[]);
1311
- static readonly oa: number;
1312
- private n2;
1313
- get n4(): SummaryData[];
1314
- set n4(a: SummaryData[]);
1315
- static readonly n9: number;
1319
+ static readonly of: number;
1320
+ private n9;
1321
+ get ob(): GroupData[];
1322
+ set ob(a: GroupData[]);
1323
+ static readonly oi: number;
1324
+ private oa;
1325
+ get oc(): SummaryData[];
1326
+ set oc(a: SummaryData[]);
1327
+ static readonly oh: number;
1328
+ private ol;
1329
+ get op(): string;
1330
+ set op(a: string);
1331
+ static readonly og: number;
1332
+ private ok;
1333
+ get on(): string;
1334
+ set on(a: string);
1335
+ static readonly oj: number;
1316
1336
  private od;
1317
- get oh(): string;
1318
- set oh(a: string);
1319
- static readonly n8: number;
1320
- private oc;
1321
- get of(): string;
1322
- set of(a: string);
1323
- static readonly ob: number;
1324
- private n5;
1325
- get n6(): GroupSummaryDisplayMode;
1326
- set n6(a: GroupSummaryDisplayMode);
1327
- mp(a: string, b: any): void;
1328
- l1(a: string): Type;
1329
- ie(a: string): any;
1337
+ get oe(): GroupSummaryDisplayMode;
1338
+ set oe(a: GroupSummaryDisplayMode);
1339
+ mt(a: string, b: any): void;
1340
+ l5(a: string): Type;
1341
+ ih(a: string): any;
1330
1342
  b(a: CellModelExport): CellModelExport;
1331
1343
  bq(a: DataSourceRowType): boolean;
1332
1344
  }
@@ -1336,13 +1348,13 @@ export declare class SectionHeaderCellModel extends CellModel {
1336
1348
  export declare class TemplateCellModel extends CellModel {
1337
1349
  static $t: Type;
1338
1350
  constructor();
1339
- static readonly n1: number;
1340
- private n2;
1341
- get n3(): any;
1342
- set n3(a: any);
1343
- mp(a: string, b: any): void;
1344
- l1(a: string): Type;
1345
- ie(a: string): any;
1351
+ static readonly n9: number;
1352
+ private oa;
1353
+ get ob(): any;
1354
+ set ob(a: any);
1355
+ mt(a: string, b: any): void;
1356
+ l5(a: string): Type;
1357
+ ih(a: string): any;
1346
1358
  b(a: CellModelExport): CellModelExport;
1347
1359
  }
1348
1360
  /**
@@ -1351,15 +1363,15 @@ export declare class TemplateCellModel extends CellModel {
1351
1363
  export declare class TextCellModel extends CellModel {
1352
1364
  static $t: Type;
1353
1365
  constructor();
1354
- static readonly n1: number;
1355
- private n2;
1356
- get n3(): string;
1357
- set n3(a: string);
1358
- mp(a: string, b: any): void;
1359
- l1(a: string): Type;
1360
- ie(a: string): any;
1366
+ static readonly n9: number;
1367
+ private oa;
1368
+ get ob(): string;
1369
+ set ob(a: string);
1370
+ mt(a: string, b: any): void;
1371
+ l5(a: string): Type;
1372
+ ih(a: string): any;
1361
1373
  b(a: CellModelExport): CellModelExport;
1362
- j1(): string;
1374
+ j4(): string;
1363
1375
  }
1364
1376
  /**
1365
1377
  * @hidden
@@ -1367,81 +1379,81 @@ export declare class TextCellModel extends CellModel {
1367
1379
  export declare class TextHeaderCellModel extends TextCellModel {
1368
1380
  static $t: Type;
1369
1381
  constructor();
1370
- static readonly o1: number;
1382
+ static readonly o9: number;
1383
+ private op;
1384
+ get oq(): boolean;
1385
+ set oq(a: boolean);
1386
+ static readonly pa: number;
1371
1387
  private oh;
1372
- get oi(): boolean;
1373
- set oi(a: boolean);
1374
- static readonly o2: number;
1375
- private n9;
1376
- get oa(): SortIndicatorStyle;
1377
- set oa(a: SortIndicatorStyle);
1378
- static readonly or: number;
1379
- private n5;
1380
- get n6(): ColumnOptionsIconAlignment;
1381
- set n6(a: ColumnOptionsIconAlignment);
1382
- static readonly ot: number;
1383
- private pr;
1384
- get p1(): Brush;
1385
- set p1(a: Brush);
1386
- static readonly os: number;
1387
- private n7;
1388
- get n8(): ColumnOptionsIconBehavior;
1389
- set n8(a: ColumnOptionsIconBehavior);
1388
+ get oi(): SortIndicatorStyle;
1389
+ set oi(a: SortIndicatorStyle);
1390
1390
  static readonly oz: number;
1391
- private ob;
1392
- get oc(): BaseControlTheme;
1393
- set oc(a: BaseControlTheme);
1394
- static readonly ol: number;
1395
- private pm;
1396
- get pw(): Brush;
1397
- set pw(a: Brush);
1398
- static readonly ox: number;
1399
- private pt;
1400
- get p3(): Brush;
1401
- set p3(a: Brush);
1402
- static readonly oy: number;
1403
- private oe;
1404
- get og(): FontInfo;
1405
- set og(a: FontInfo);
1406
- static readonly oq: number;
1407
- private pq;
1408
- get p0(): Brush;
1409
- set p0(a: Brush);
1391
+ private od;
1392
+ get oe(): ColumnOptionsIconAlignment;
1393
+ set oe(a: ColumnOptionsIconAlignment);
1394
+ static readonly o1: number;
1395
+ private pz;
1396
+ get p9(): Brush;
1397
+ set p9(a: Brush);
1410
1398
  static readonly o0: number;
1399
+ private of;
1400
+ get og(): ColumnOptionsIconBehavior;
1401
+ set og(a: ColumnOptionsIconBehavior);
1402
+ static readonly o7: number;
1403
+ private oj;
1404
+ get ok(): BaseControlTheme;
1405
+ set ok(a: BaseControlTheme);
1406
+ static readonly ot: number;
1411
1407
  private pu;
1412
1408
  get p4(): Brush;
1413
1409
  set p4(a: Brush);
1414
- static readonly op: number;
1415
- private pp;
1416
- get pz(): Brush;
1417
- set pz(a: Brush);
1418
- static readonly ow: number;
1419
- private ps;
1420
- get p2(): Brush;
1421
- set p2(a: Brush);
1422
- static readonly om: number;
1423
- private pn;
1424
- get px(): Brush;
1425
- set px(a: Brush);
1426
- static readonly on: number;
1427
- private po;
1428
- get py(): Brush;
1429
- set py(a: Brush);
1430
- static readonly oo: number;
1431
- private od;
1432
- get of(): FontInfo;
1433
- set of(a: FontInfo);
1434
- static readonly ok: number;
1435
- private pl;
1436
- get pv(): Brush;
1437
- set pv(a: Brush);
1410
+ static readonly o5: number;
1411
+ private p1;
1412
+ get qb(): Brush;
1413
+ set qb(a: Brush);
1414
+ static readonly o6: number;
1415
+ private om;
1416
+ get oo(): FontInfo;
1417
+ set oo(a: FontInfo);
1418
+ static readonly oy: number;
1419
+ private py;
1420
+ get p8(): Brush;
1421
+ set p8(a: Brush);
1422
+ static readonly o8: number;
1423
+ private p2;
1424
+ get qc(): Brush;
1425
+ set qc(a: Brush);
1426
+ static readonly ox: number;
1427
+ private px;
1428
+ get p7(): Brush;
1429
+ set p7(a: Brush);
1430
+ static readonly o4: number;
1431
+ private p0;
1432
+ get qa(): Brush;
1433
+ set qa(a: Brush);
1434
+ static readonly ou: number;
1435
+ private pv;
1436
+ get p5(): Brush;
1437
+ set p5(a: Brush);
1438
1438
  static readonly ov: number;
1439
- private oj;
1440
- get ou(): number;
1441
- set ou(a: number);
1442
- mp(a: string, b: any): void;
1443
- l1(a: string): Type;
1444
- ie(a: string): any;
1439
+ private pw;
1440
+ get p6(): Brush;
1441
+ set p6(a: Brush);
1442
+ static readonly ow: number;
1443
+ private ol;
1444
+ get on(): FontInfo;
1445
+ set on(a: FontInfo);
1446
+ static readonly os: number;
1447
+ private pt;
1448
+ get p3(): Brush;
1449
+ set p3(a: Brush);
1450
+ static readonly o3: number;
1451
+ private or;
1452
+ get o2(): number;
1453
+ set o2(a: number);
1454
+ mt(a: string, b: any): void;
1455
+ l5(a: string): Type;
1456
+ ih(a: string): any;
1445
1457
  b(a: CellModelExport): CellModelExport;
1446
1458
  }
1447
1459
  /**
@@ -1713,43 +1725,43 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
1713
1725
  set theme(a: BaseControlTheme);
1714
1726
  columnExchangingAnimationCompleted: (sender: any, e: EventArgs) => void;
1715
1727
  columnExchangingAnimationCanceled: (sender: any, e: EventArgs) => void;
1716
- xa(a: DataGridColumn): void;
1717
- w9(a: DataGridColumn): void;
1728
+ xc(a: DataGridColumn): void;
1729
+ xb(a: DataGridColumn): void;
1718
1730
  columnShowingAnimationCompleted: (sender: any, e: EventArgs) => void;
1719
1731
  columnShowingAnimationCanceled: (sender: any, e: EventArgs) => void;
1720
1732
  p(a: CellModel): ColumnFilterCondition;
1721
1733
  r(a: CellModel): DataSourceSchemaPropertyType;
1722
- xk(a: DataGridColumn): void;
1734
+ xm(a: DataGridColumn): void;
1723
1735
  filterExpressionsChanging: (sender: any, args: GridFilterExpressionsEventArgs) => void;
1724
1736
  filterExpressionsChanged: (sender: any, args: GridFilterExpressionsEventArgs) => void;
1725
- vk(a: CellModel, b: ColumnFilterCondition): void;
1726
- vj(a: CellModel, b: ColumnFilterCondition): void;
1727
- xj(a: DataGridColumn): void;
1737
+ vm(a: CellModel, b: ColumnFilterCondition): void;
1738
+ vl(a: CellModel, b: ColumnFilterCondition): void;
1739
+ xl(a: DataGridColumn): void;
1728
1740
  columnMovingAnimationCompleted: (sender: any, e: EventArgs) => void;
1729
1741
  columnMovingAnimationCanceled: (sender: any, e: EventArgs) => void;
1730
- xg(a: DataGridColumn): void;
1731
- xf(a: DataGridColumn): void;
1742
+ xi(a: DataGridColumn): void;
1743
+ xh(a: DataGridColumn): void;
1732
1744
  columnHidingAnimationCompleted: (sender: any, e: EventArgs) => void;
1733
1745
  columnHidingAnimationCanceled: (sender: any, e: EventArgs) => void;
1734
- xc(a: DataGridColumn): void;
1735
- xb(a: DataGridColumn): void;
1746
+ xe(a: DataGridColumn): void;
1747
+ xd(a: DataGridColumn): void;
1736
1748
  cellPreviewPointerDown: (sender: any, args: DataGridCellEventArgs) => void;
1737
- w4(a: CellModel): void;
1749
+ w6(a: CellModel): void;
1738
1750
  cellPreviewPointerUp: (sender: any, args: DataGridCellEventArgs) => void;
1739
- w5(a: CellModel): void;
1751
+ w7(a: CellModel): void;
1740
1752
  cellPointerDown: (sender: any, args: DataGridCellEventArgs) => void;
1741
- w2(a: CellModel): void;
1753
+ w4(a: CellModel): void;
1742
1754
  cellPointerUp: (sender: any, args: DataGridCellEventArgs) => void;
1743
- w3(a: CellModel): void;
1744
- yd(a: number, b: string): void;
1755
+ w5(a: CellModel): void;
1756
+ yf(a: number, b: string): void;
1745
1757
  cellClicked: (sender: any, args: DataGridCellEventArgs) => void;
1746
- xz(a: CellModel): void;
1747
- z9(a: number): void;
1758
+ x1(a: CellModel): void;
1759
+ aab(a: number): void;
1748
1760
  private nf;
1749
- xy(a: EditorCellModel): void;
1750
- wv(a: CellModel, b: MouseButton): void;
1751
- wt(a: CellModel, b: boolean, c: boolean, d: MouseButton): void;
1752
- private yw;
1761
+ x0(a: EditorCellModel): void;
1762
+ wx(a: CellModel, b: MouseButton): void;
1763
+ wv(a: CellModel, b: boolean, c: boolean, d: MouseButton): void;
1764
+ private yy;
1753
1765
  private bs;
1754
1766
  get columnResizingMode(): ColumnResizingMode;
1755
1767
  set columnResizingMode(a: ColumnResizingMode);
@@ -1760,33 +1772,33 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
1760
1772
  private ie;
1761
1773
  get isRowHoverEnabled(): boolean;
1762
1774
  set isRowHoverEnabled(a: boolean);
1763
- private abe;
1775
+ private abh;
1764
1776
  get rowHoverBackground(): Brush;
1765
1777
  set rowHoverBackground(a: Brush);
1766
- private abf;
1778
+ private abi;
1767
1779
  get rowHoverTextColor(): Brush;
1768
1780
  set rowHoverTextColor(a: Brush);
1769
- private aa6;
1781
+ private aa9;
1770
1782
  get editRowBorder(): Brush;
1771
1783
  set editRowBorder(a: Brush);
1772
- private ade;
1784
+ private adk;
1773
1785
  get editRowBorderWidth(): Thickness;
1774
1786
  set editRowBorderWidth(a: Thickness);
1775
- ac8: Point;
1787
+ ade: Point;
1776
1788
  as: CellPath;
1777
1789
  ap: CellPath;
1778
1790
  private h3;
1779
- w0(a: CellModel, b: number, c: number): void;
1791
+ w2(a: CellModel, b: number, c: number): void;
1792
+ w3(a: CellModel, b: number, c: number): void;
1780
1793
  w1(a: CellModel, b: number, c: number): void;
1781
- wz(a: CellModel, b: number, c: number): void;
1782
- x5(a: CellModel, b: boolean, c: boolean, d: MouseButton): void;
1783
- x6(a: CellModel, b: boolean, c: boolean, d: MouseButton): void;
1794
+ x7(a: CellModel, b: boolean, c: boolean, d: MouseButton): void;
1795
+ x8(a: CellModel, b: boolean, c: boolean, d: MouseButton): void;
1784
1796
  private jn;
1785
1797
  private nk;
1786
1798
  private get ov();
1787
1799
  private set ov(value);
1788
- wy(a: CellModel, b: number, c: number): void;
1789
- x4(a: CellModel, b: number, c: number): void;
1800
+ w0(a: CellModel, b: number, c: number): void;
1801
+ x6(a: CellModel, b: number, c: number): void;
1790
1802
  private ns;
1791
1803
  private il;
1792
1804
  private ik;
@@ -1804,16 +1816,16 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
1804
1816
  private ny;
1805
1817
  private nx;
1806
1818
  private i0;
1807
- vf(): void;
1808
- xx(a: CellPath, b: number, c: number, d: boolean): void;
1819
+ vh(): void;
1820
+ xz(a: CellPath, b: number, c: number, d: boolean): void;
1821
+ xv(a: any, b: DragSelectEventArgs): void;
1809
1822
  xt(a: any, b: DragSelectEventArgs): void;
1810
- xr(a: any, b: DragSelectEventArgs): void;
1811
1823
  private no;
1812
1824
  get ox(): number;
1813
1825
  set ox(a: number);
1814
1826
  private nz;
1815
1827
  private fq;
1816
- private xs;
1828
+ private xu;
1817
1829
  private ao;
1818
1830
  private ak;
1819
1831
  private al;
@@ -1821,39 +1833,39 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
1821
1833
  private mo;
1822
1834
  private ml;
1823
1835
  private mm;
1824
- private xu;
1825
- private xv;
1826
- private zq;
1827
1836
  private xw;
1837
+ private xx;
1838
+ private zs;
1839
+ private xy;
1828
1840
  private l1;
1829
1841
  private l2;
1830
- private zv;
1831
- private ada;
1842
+ private zx;
1843
+ private adg;
1832
1844
  private aj;
1833
1845
  getHitCell(a: number, b: number): CellModel;
1834
1846
  private av;
1835
1847
  private jc;
1836
- private vs;
1837
- private aae;
1848
+ private vu;
1849
+ private aag;
1838
1850
  constructor();
1839
- zg(a: ColumnGroupDescription): void;
1840
- zh(a: ColumnSummaryDescription): void;
1841
- private z2;
1842
- private v2;
1851
+ zi(a: ColumnGroupDescription): void;
1852
+ zj(a: ColumnSummaryDescription): void;
1853
+ private z4;
1854
+ private v4;
1843
1855
  private ke;
1844
- private vz;
1845
- private z0;
1846
- private z8;
1856
+ private v1;
1857
+ private z2;
1858
+ private aaa;
1847
1859
  private b6;
1848
1860
  private i4;
1849
- private zt;
1850
- private zu;
1861
+ private zv;
1862
+ private zw;
1851
1863
  private i6;
1852
- private zs;
1853
- private zr;
1864
+ private zu;
1865
+ private zt;
1854
1866
  private i3;
1855
- private ys;
1856
- private yt;
1867
+ private yu;
1868
+ private yv;
1857
1869
  private c7;
1858
1870
  get c8(): GridAnimationManager;
1859
1871
  set c8(a: GridAnimationManager);
@@ -2057,7 +2069,7 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2057
2069
  private a0;
2058
2070
  get columnExchangingAnimationMode(): ColumnExchangingAnimationMode;
2059
2071
  set columnExchangingAnimationMode(a: ColumnExchangingAnimationMode);
2060
- private adf;
2072
+ private adl;
2061
2073
  get inset(): Thickness;
2062
2074
  set inset(a: Thickness);
2063
2075
  private cj;
@@ -2090,7 +2102,7 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2090
2102
  get pinnedItems(): GridSelectedItemsCollection;
2091
2103
  private ej;
2092
2104
  get pinnedKeys(): GridSelectedKeysCollection;
2093
- private z4;
2105
+ private z6;
2094
2106
  private h0;
2095
2107
  get isColumnOptionsEnabled(): boolean;
2096
2108
  set isColumnOptionsEnabled(a: boolean);
@@ -2106,16 +2118,19 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2106
2118
  private ia;
2107
2119
  get isHeaderSeparatorVisible(): boolean;
2108
2120
  set isHeaderSeparatorVisible(a: boolean);
2109
- private aar;
2121
+ private aat;
2110
2122
  get cellSelectedBackground(): Brush;
2111
2123
  set cellSelectedBackground(a: Brush);
2112
- private abm;
2124
+ private aau;
2125
+ get cellSelectedTextColor(): Brush;
2126
+ set cellSelectedTextColor(a: Brush);
2127
+ private abq;
2113
2128
  get sectionHeaderSelectedBackground(): Brush;
2114
2129
  set sectionHeaderSelectedBackground(a: Brush);
2115
- private abp;
2130
+ private abt;
2116
2131
  get summaryRootBackground(): Brush;
2117
2132
  set summaryRootBackground(a: Brush);
2118
- private abt;
2133
+ private abx;
2119
2134
  get summarySectionBackground(): Brush;
2120
2135
  set summarySectionBackground(a: Brush);
2121
2136
  private mn;
@@ -2127,29 +2142,29 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2127
2142
  private mj;
2128
2143
  get editOpacity(): number;
2129
2144
  set editOpacity(a: number);
2130
- private aa5;
2145
+ private aa8;
2131
2146
  get deletedTextColor(): Brush;
2132
2147
  set deletedTextColor(a: Brush);
2133
- private abo;
2148
+ private abs;
2134
2149
  get stickyRowBackground(): Brush;
2135
2150
  set stickyRowBackground(a: Brush);
2136
- private abd;
2151
+ private abg;
2137
2152
  get pinnedRowBackground(): Brush;
2138
2153
  set pinnedRowBackground(a: Brush);
2139
- private abc;
2154
+ private abf;
2140
2155
  get lastStickyRowBackground(): Brush;
2141
2156
  set lastStickyRowBackground(a: Brush);
2142
2157
  private dj;
2143
2158
  private di;
2144
2159
  get activeCell(): GridCellPosition;
2145
2160
  set activeCell(a: GridCellPosition);
2146
- private aaq;
2161
+ private aas;
2147
2162
  get cellBackground(): Brush;
2148
2163
  set cellBackground(a: Brush);
2149
- private aas;
2164
+ private aav;
2150
2165
  get cellTextColor(): Brush;
2151
2166
  set cellTextColor(a: Brush);
2152
- private aba;
2167
+ private abd;
2153
2168
  get headerSortIndicatorColor(): Brush;
2154
2169
  set headerSortIndicatorColor(a: Brush);
2155
2170
  private f9;
@@ -2158,12 +2173,16 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2158
2173
  private gv;
2159
2174
  get cellTextStyle(): FontInfo;
2160
2175
  set cellTextStyle(a: FontInfo);
2161
- private abl;
2176
+ private abo;
2162
2177
  get sectionHeaderBackground(): Brush;
2163
2178
  set sectionHeaderBackground(a: Brush);
2164
- private abn;
2179
+ private abr;
2165
2180
  get sectionHeaderTextColor(): Brush;
2166
2181
  set sectionHeaderTextColor(a: Brush);
2182
+ private abp;
2183
+ static readonly t1: string;
2184
+ get sectionHeaderExpansionIndicatorIconColor(): Brush;
2185
+ set sectionHeaderExpansionIndicatorIconColor(a: Brush);
2167
2186
  private g0;
2168
2187
  get sectionHeaderTextStyle(): FontInfo;
2169
2188
  set sectionHeaderTextStyle(a: FontInfo);
@@ -2173,7 +2192,7 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2173
2192
  private g3;
2174
2193
  get summarySectionLabelTextStyle(): FontInfo;
2175
2194
  set summarySectionLabelTextStyle(a: FontInfo);
2176
- private abs;
2195
+ private abw;
2177
2196
  get summaryRootValueTextColor(): Brush;
2178
2197
  set summaryRootValueTextColor(a: Brush);
2179
2198
  private g2;
@@ -2182,19 +2201,19 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2182
2201
  private g4;
2183
2202
  get summarySectionValueTextStyle(): FontInfo;
2184
2203
  set summarySectionValueTextStyle(a: FontInfo);
2185
- private abw;
2204
+ private ab0;
2186
2205
  get summarySectionValueTextColor(): Brush;
2187
2206
  set summarySectionValueTextColor(a: Brush);
2188
- private abq;
2207
+ private abu;
2189
2208
  get summaryRootLabelTextColor(): Brush;
2190
2209
  set summaryRootLabelTextColor(a: Brush);
2191
- private abu;
2210
+ private aby;
2192
2211
  get summarySectionLabelTextColor(): Brush;
2193
2212
  set summarySectionLabelTextColor(a: Brush);
2194
- private abr;
2213
+ private abv;
2195
2214
  get summaryRootSelectedBackground(): Brush;
2196
2215
  set summaryRootSelectedBackground(a: Brush);
2197
- private abv;
2216
+ private abz;
2198
2217
  get summarySectionSelectedBackground(): Brush;
2199
2218
  set summarySectionSelectedBackground(a: Brush);
2200
2219
  private nn;
@@ -2204,31 +2223,31 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2204
2223
  get headerSeparatorWidth(): number;
2205
2224
  set headerSeparatorWidth(a: number);
2206
2225
  n2(a: number): number;
2207
- private aa9;
2226
+ private abc;
2208
2227
  get headerSeparatorBackground(): Brush;
2209
2228
  set headerSeparatorBackground(a: Brush);
2210
- private aa7;
2229
+ private aba;
2211
2230
  get headerBackground(): Brush;
2212
2231
  set headerBackground(a: Brush);
2213
- private abb;
2232
+ private abe;
2214
2233
  get headerTextColor(): Brush;
2215
2234
  set headerTextColor(a: Brush);
2216
2235
  private gz;
2217
2236
  get headerTextStyle(): FontInfo;
2218
2237
  set headerTextStyle(a: FontInfo);
2219
- private abg;
2238
+ private abj;
2220
2239
  get rowSeparatorBackground(): Brush;
2221
2240
  set rowSeparatorBackground(a: Brush);
2222
- private aa8;
2241
+ private abb;
2223
2242
  get headerRowSeparatorBackground(): Brush;
2224
2243
  set headerRowSeparatorBackground(a: Brush);
2225
- private abj;
2244
+ private abm;
2226
2245
  get rowSeparatorStickyRowBackground(): Brush;
2227
2246
  set rowSeparatorStickyRowBackground(a: Brush);
2228
- private abh;
2247
+ private abk;
2229
2248
  get rowSeparatorLastStickyRowBackground(): Brush;
2230
2249
  set rowSeparatorLastStickyRowBackground(a: Brush);
2231
- private abi;
2250
+ private abl;
2232
2251
  get rowSeparatorPinnedRowBackground(): Brush;
2233
2252
  set rowSeparatorPinnedRowBackground(a: Brush);
2234
2253
  private nd;
@@ -2243,10 +2262,10 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2243
2262
  private mc;
2244
2263
  get columnMovingSeparatorOpacity(): number;
2245
2264
  set columnMovingSeparatorOpacity(a: number);
2246
- private aa4;
2265
+ private aa7;
2247
2266
  get columnResizingSeparatorBackground(): Brush;
2248
2267
  set columnResizingSeparatorBackground(a: Brush);
2249
- private aat;
2268
+ private aaw;
2250
2269
  get columnMovingSeparatorBackground(): Brush;
2251
2270
  set columnMovingSeparatorBackground(a: Brush);
2252
2271
  private iv;
@@ -2255,37 +2274,37 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2255
2274
  private bi;
2256
2275
  get columnOptionsIconAlignment(): ColumnOptionsIconAlignment;
2257
2276
  set columnOptionsIconAlignment(a: ColumnOptionsIconAlignment);
2258
- private aa0;
2277
+ private aa3;
2259
2278
  get columnOptionsIconColor(): Brush;
2260
2279
  set columnOptionsIconColor(a: Brush);
2261
2280
  private bk;
2262
2281
  get columnOptionsIconBehavior(): ColumnOptionsIconBehavior;
2263
2282
  set columnOptionsIconBehavior(a: ColumnOptionsIconBehavior);
2264
- private aan;
2283
+ private aap;
2265
2284
  get actualBorder(): Brush;
2266
2285
  set actualBorder(a: Brush);
2267
- private aap;
2286
+ private aar;
2268
2287
  get border(): Brush;
2269
2288
  set border(a: Brush);
2270
- private add;
2271
- get adj(): Thickness;
2272
- set adj(a: Thickness);
2273
- private adb;
2289
+ private adj;
2290
+ get adp(): Thickness;
2291
+ set adp(a: Thickness);
2292
+ private adh;
2274
2293
  get actualBorderWidth(): Thickness;
2275
2294
  set actualBorderWidth(a: Thickness);
2276
- private adc;
2295
+ private adi;
2277
2296
  get borderWidth(): Thickness;
2278
2297
  set borderWidth(a: Thickness);
2279
2298
  private io;
2280
2299
  get notifyOnAllSelectionChanges(): boolean;
2281
2300
  set notifyOnAllSelectionChanges(a: boolean);
2282
- private aah;
2283
- get aal(): CornerRadius;
2284
- set aal(a: CornerRadius);
2285
- private aag;
2301
+ private aaj;
2302
+ get aan(): CornerRadius;
2303
+ set aan(a: CornerRadius);
2304
+ private aai;
2286
2305
  get cornerRadius(): CornerRadius;
2287
2306
  set cornerRadius(a: CornerRadius);
2288
- private aaf;
2307
+ private aah;
2289
2308
  get actualCornerRadius(): CornerRadius;
2290
2309
  set actualCornerRadius(a: CornerRadius);
2291
2310
  static readonly isActiveCellStyleEnabledPropertyName: string;
@@ -2295,10 +2314,10 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2295
2314
  private i1;
2296
2315
  get stopPropagation(): boolean;
2297
2316
  set stopPropagation(a: boolean);
2298
- private aam;
2317
+ private aao;
2299
2318
  get actualBackground(): Brush;
2300
2319
  set actualBackground(a: Brush);
2301
- private aao;
2320
+ private aaq;
2302
2321
  get background(): Brush;
2303
2322
  set background(a: Brush);
2304
2323
  private hf;
@@ -2307,7 +2326,7 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2307
2326
  private e5;
2308
2327
  get renderingEngine(): ICellRenderingEngine;
2309
2328
  set renderingEngine(a: ICellRenderingEngine);
2310
- private x9;
2329
+ private yb;
2311
2330
  private ft;
2312
2331
  get responsiveStates(): ResponsiveStatesCollection;
2313
2332
  private gn;
@@ -2340,7 +2359,7 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2340
2359
  private pk;
2341
2360
  get initialSummaries(): string;
2342
2361
  set initialSummaries(a: string);
2343
- private v7;
2362
+ private v9;
2344
2363
  jm(a: any[], b: any[]): boolean;
2345
2364
  get sortDescriptions(): ColumnSortDescriptionCollection;
2346
2365
  get groupDescriptions(): ColumnGroupDescriptionCollection;
@@ -2349,7 +2368,7 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2349
2368
  summaryDescriptionsChanged: (sender: any, args: GridSummaryDescriptionsChangedEventArgs) => void;
2350
2369
  columnHiddenChanged: (sender: any, args: ColumnHiddenChangedEventArgs) => void;
2351
2370
  columnPinnedChanged: (sender: any, args: ColumnPinnedChangedEventArgs) => void;
2352
- private xh;
2371
+ private xj;
2353
2372
  cellValueChanging: (sender: any, args: GridCellValueChangingEventArgs) => void;
2354
2373
  dataCommitted: (sender: any, e: GridDataCommittedEventArgs) => void;
2355
2374
  dataCommitting: (sender: any, e: GridDataCommittingEventArgs) => void;
@@ -2380,13 +2399,13 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2380
2399
  set autoAcceptEdits(a: boolean);
2381
2400
  propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
2382
2401
  postPropertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
2383
- protected x7(a: string, b: any, c: any): void;
2384
- zf(): void;
2385
- yz(): void;
2386
- y0(): void;
2402
+ protected x9(a: string, b: any, c: any): void;
2403
+ zh(): void;
2404
+ y1(): void;
2405
+ y2(): void;
2387
2406
  calculateCompleted: (sender: any, e: any) => void;
2388
- wq(): void;
2389
- v1(): void;
2407
+ ws(): void;
2408
+ v3(): void;
2390
2409
  private it;
2391
2410
  get lc(): boolean;
2392
2411
  set lc(a: boolean);
@@ -2405,31 +2424,31 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2405
2424
  private hk;
2406
2425
  get i8(): boolean;
2407
2426
  set i8(a: boolean);
2408
- protected yu(a: string, b: any, c: any): void;
2409
- private z6;
2410
- private aaj;
2411
- private adi;
2427
+ protected yw(a: string, b: any, c: any): void;
2428
+ private z8;
2429
+ private aal;
2430
+ private ado;
2412
2431
  syncBorder(): void;
2413
- private xq;
2432
+ private xs;
2414
2433
  private n;
2415
2434
  private o;
2416
2435
  private h;
2417
- private vm;
2418
- private zj;
2419
- private v3;
2420
- private v4;
2421
- private zk;
2436
+ private vo;
2437
+ private zl;
2422
2438
  private v5;
2423
- private vq;
2424
- private vp;
2439
+ private v6;
2440
+ private zm;
2441
+ private v7;
2442
+ private vs;
2443
+ private vr;
2425
2444
  rootSummariesChanged: (sender: any, args: DataSourceRootSummariesChangedEventArgs) => void;
2426
2445
  private lw;
2427
- private r0;
2428
- private ya;
2429
- private vx;
2430
- private vo;
2431
- private xp;
2432
- wk(): void;
2446
+ private r1;
2447
+ private yc;
2448
+ private vz;
2449
+ private vq;
2450
+ private xr;
2451
+ wm(): void;
2433
2452
  sizeChanged: (sender: any, e: GridSizeChangedEventArgs) => void;
2434
2453
  onSizeChanged(a: number, b: number): void;
2435
2454
  viewportChanged: (sender: any, e: GridViewportChangedEventArgs) => void;
@@ -2443,19 +2462,19 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2443
2462
  actualColumnsChanged: (sender: any, args: GridColumnsChangedEventArgs) => void;
2444
2463
  private dp;
2445
2464
  get columns(): GridColumnCollection;
2446
- x3(a: CellModel, b: any, c: any): void;
2447
- x2(a: CellModel, b: any, c: any, d: string): void;
2465
+ x5(a: CellModel, b: any, c: any): void;
2466
+ x4(a: CellModel, b: any, c: any, d: string): void;
2448
2467
  ci(a: CellPath): DataGridColumn;
2449
2468
  hideThenRemoveColumn(a: DataGridColumn): void;
2450
2469
  exchangeColumn(a: DataGridColumn, b: DataGridColumn): void;
2451
- private u7;
2470
+ private u9;
2452
2471
  private im;
2453
- private xl;
2454
- private xi;
2455
- private xd;
2456
- private vi;
2457
- private yg;
2458
- private vl;
2472
+ private xn;
2473
+ private xk;
2474
+ private xf;
2475
+ private vk;
2476
+ private yi;
2477
+ private vn;
2459
2478
  pinColumn(a: DataGridColumn, b: PinnedPositions): void;
2460
2479
  private lo;
2461
2480
  private lp;
@@ -2467,11 +2486,11 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2467
2486
  private kt;
2468
2487
  private cg;
2469
2488
  private cf;
2470
- private xe;
2471
- private vh;
2472
- private z7;
2489
+ private xg;
2490
+ private vj;
2491
+ private z9;
2473
2492
  private cl;
2474
- r1(a: CellPath, b: DataGrid, c: any, d: number): string;
2493
+ r2(a: CellPath, b: DataGrid, c: any, d: number): string;
2475
2494
  am(a: CellPath, b: string): CellModel;
2476
2495
  exportVisualModel(): any;
2477
2496
  exportSerializedVisualModel(): string;
@@ -2482,17 +2501,17 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2482
2501
  scrollToItem(a: any): boolean;
2483
2502
  scrollToPrimaryKey(a: any[]): boolean;
2484
2503
  scrollToColumnByIndex(a: number): void;
2485
- private zm;
2504
+ private zo;
2486
2505
  lj(a: DataGridColumn): boolean;
2487
- xo(a: number, b: number): void;
2488
- private vg;
2506
+ xq(a: number, b: number): void;
2507
+ private vi;
2489
2508
  private ob;
2490
2509
  private lf;
2491
2510
  getLastVisibleIndex(): number;
2492
2511
  getFirstVisibleIndex(): number;
2493
2512
  od(): number;
2494
2513
  oi(): number;
2495
- yp(): void;
2514
+ yr(): void;
2496
2515
  jt: boolean;
2497
2516
  kd: boolean;
2498
2517
  get kk(): boolean;
@@ -2507,15 +2526,15 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2507
2526
  private l0;
2508
2527
  private hm;
2509
2528
  private hl;
2510
- vc(a?: boolean): void;
2511
- vv(): void;
2512
- ye(a: any, b: PrimaryKeyValue): void;
2513
- yf(a: any, b: PrimaryKeyValue): void;
2514
- yl(a: number, b: any, c: PrimaryKeyValue): void;
2529
+ ve(a?: boolean): void;
2530
+ vx(): void;
2531
+ yg(a: any, b: PrimaryKeyValue): void;
2532
+ yh(a: any, b: PrimaryKeyValue): void;
2533
+ yn(a: number, b: any, c: PrimaryKeyValue): void;
2515
2534
  private i5;
2516
- wr(a: number, b: number, c: string): void;
2517
- wu(a: number, b: string): void;
2518
- private ws;
2535
+ wt(a: number, b: number, c: string): void;
2536
+ ww(a: number, b: string): void;
2537
+ private wu;
2519
2538
  private nv;
2520
2539
  private nw;
2521
2540
  kv(a: boolean, b: boolean): boolean;
@@ -2525,15 +2544,15 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2525
2544
  private om;
2526
2545
  private ol;
2527
2546
  private oa;
2528
- vd(a: number, b: number, c: boolean, d?: boolean): void;
2547
+ vf(a: number, b: number, c: boolean, d?: boolean): void;
2529
2548
  k0(a: boolean, b: boolean): boolean;
2530
2549
  k2(a: boolean, b: boolean): boolean;
2531
2550
  k3(a: boolean, b: boolean): boolean;
2532
2551
  k4(a: boolean, b: boolean): boolean;
2533
2552
  k5(a: boolean, b: boolean): boolean;
2534
- x0(a: boolean, b: boolean): void;
2553
+ x2(a: boolean, b: boolean): void;
2535
2554
  k7(a: boolean, b: boolean): boolean;
2536
- yq(): void;
2555
+ ys(): void;
2537
2556
  k8(a: boolean, b: boolean): boolean;
2538
2557
  kx(a: boolean, b: boolean): boolean;
2539
2558
  ky(): boolean;
@@ -2544,58 +2563,58 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2544
2563
  ls(): boolean;
2545
2564
  lm(a: CellModel): boolean;
2546
2565
  jl(a: boolean, b?: boolean): boolean;
2547
- vu(a: boolean): void;
2548
- w6(a: PrimaryKeyValue, b: number): void;
2549
- w7(a: PrimaryKeyValue, b: number): void;
2566
+ vw(a: boolean): void;
2567
+ w8(a: PrimaryKeyValue, b: number): void;
2568
+ w9(a: PrimaryKeyValue, b: number): void;
2550
2569
  columnsAutoGenerated: (sender: any, args: GridColumnsAutoGeneratedEventArgs) => void;
2551
2570
  selectedItemsChanged: (sender: any, args: GridSelectedItemsChangedEventArgs) => void;
2552
2571
  selectedKeysChanged: (sender: any, args: GridSelectedKeysChangedEventArgs) => void;
2553
2572
  selectedCellsChanged: (sender: any, args: GridSelectedCellsChangedEventArgs) => void;
2554
2573
  selectionChanged: (sender: any, args: GridSelectionChangedEventArgs) => void;
2555
2574
  private iu;
2556
- private ym;
2575
+ private yo;
2557
2576
  activeCellChanged: (sender: any, args: GridActiveCellChangedEventArgs) => void;
2558
2577
  selectedCellRangesChanged: (sender: any, args: GridSelectedCellRangesChangedEventArgs) => void;
2559
- aac(a: List$1<any>, b: List$1<PrimaryKeyValue>, c: List$1<any>, d: List$1<PrimaryKeyValue>): void;
2560
- va(a: List$1<any>, b: List$1<PrimaryKeyValue>): void;
2561
- vb(a: any, b: PrimaryKeyValue, c: boolean): void;
2562
- aab(a: number, b: any, c: PrimaryKeyValue): void;
2563
- zc(a: List$1<any>, b: List$1<PrimaryKeyValue>): void;
2564
- zd(a: any, b: PrimaryKeyValue, c: boolean): void;
2565
- private yi;
2566
- private yj;
2567
- private yh;
2578
+ aae(a: List$1<any>, b: List$1<PrimaryKeyValue>, c: List$1<any>, d: List$1<PrimaryKeyValue>): void;
2579
+ vc(a: List$1<any>, b: List$1<PrimaryKeyValue>): void;
2580
+ vd(a: any, b: PrimaryKeyValue, c: boolean): void;
2581
+ aad(a: number, b: any, c: PrimaryKeyValue): void;
2582
+ ze(a: List$1<any>, b: List$1<PrimaryKeyValue>): void;
2583
+ zf(a: any, b: PrimaryKeyValue, c: boolean): void;
2568
2584
  private yk;
2585
+ private yl;
2586
+ private yj;
2587
+ private ym;
2569
2588
  private au;
2570
- u9(a: number, b: number, c: number, d: number): void;
2571
- u8(a: CellRange): void;
2572
- y9(a: CellRange): void;
2573
- y8(): void;
2574
- private wi;
2575
- yn(a: number, b: any, c: any): void;
2576
- private v8;
2577
- w8(): void;
2578
- zi(a: GridConditionalStyle, b: DataGridColumn): void;
2579
- ze(a: GridConditionalStyle, b: DataGridColumn): void;
2589
+ vb(a: number, b: number, c: number, d: number): void;
2590
+ va(a: CellRange): void;
2591
+ zb(a: CellRange): void;
2592
+ za(): void;
2593
+ private wk;
2594
+ yp(a: number, b: any, c: any): void;
2595
+ private wa;
2596
+ xa(): void;
2597
+ zk(a: GridConditionalStyle, b: DataGridColumn): void;
2598
+ zg(a: GridConditionalStyle, b: DataGridColumn): void;
2580
2599
  l3(a: GridConditionalStyle, b: DataGridColumn): List$1<ColumnSummaryDescription>;
2581
2600
  private lv;
2582
- vw(a: ColumnSummaryDescription): void;
2601
+ vy(a: ColumnSummaryDescription): void;
2583
2602
  private j6;
2584
- y7(a: ColumnSummaryDescription): void;
2603
+ y9(a: ColumnSummaryDescription): void;
2585
2604
  invalidateVisibleRows(): void;
2586
2605
  pg(a: DataGridColumn): any;
2587
2606
  pf(a: DataGridColumn): any;
2588
2607
  ph(a: DataGridColumn): any;
2589
- private v9;
2608
+ private wb;
2590
2609
  private oe;
2591
2610
  private oj;
2592
- private wa;
2611
+ private wc;
2593
2612
  private hy;
2594
- yv(): void;
2595
- x1(a: number, b: any): void;
2596
- x8(a: number, b: any): void;
2613
+ yx(): void;
2614
+ x3(a: number, b: any): void;
2615
+ ya(a: number, b: any): void;
2597
2616
  setActiveResponsiveState(a: string): void;
2598
- zx(a: ResponsiveState): void;
2617
+ zz(a: ResponsiveState): void;
2599
2618
  notifySetItem(a: number, b: any, c: any): void;
2600
2619
  notifyClearItems(): void;
2601
2620
  notifyInsertItem(a: number, b: any): void;
@@ -2619,18 +2638,18 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2619
2638
  set reactsToFilterChanges(a: boolean);
2620
2639
  aa(a: DataGridColumn): IFilterExpression;
2621
2640
  lt(a: CellModel, b: number, c: any, d: any, e: any): boolean;
2622
- private aad;
2641
+ private aaf;
2623
2642
  private o8;
2624
2643
  columnWidthChanged: (sender: any, args: GridColumnWidthChangedEventArgs) => void;
2625
- private xm;
2644
+ private xo;
2626
2645
  cellEditStarted: (sender: any, args: GridCellEditStartedEventArgs) => void;
2627
- private wx;
2646
+ private wz;
2628
2647
  cellEditEnded: (sender: any, args: GridCellEditEndedEventArgs) => void;
2629
- private ww;
2648
+ private wy;
2630
2649
  rowEditStarted: (sender: any, args: GridRowEditStartedEventArgs) => void;
2631
- private yc;
2650
+ private ye;
2632
2651
  rowEditEnded: (sender: any, args: GridRowEditEndedEventArgs) => void;
2633
- private yb;
2652
+ private yd;
2634
2653
  j5(): boolean;
2635
2654
  get canUndo(): boolean;
2636
2655
  get canRedo(): boolean;
@@ -2658,8 +2677,8 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2658
2677
  set enterBehaviorAfterEdit(a: EnterKeyBehaviorAfterEdit);
2659
2678
  selectAllRows(): void;
2660
2679
  deselectAllRows(): void;
2661
- private rc;
2662
- private rx;
2680
+ private rd;
2681
+ private ry;
2663
2682
  private ib;
2664
2683
  get kf(): boolean;
2665
2684
  set kf(a: boolean);
@@ -2705,11 +2724,11 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2705
2724
  get clearSelectionOnEscape(): boolean;
2706
2725
  set clearSelectionOnEscape(a: boolean);
2707
2726
  customFilterRequested: (sender: any, args: GridCustomFilterRequestedEventArgs) => void;
2708
- xn(a: DataGridColumn, b: FilterOperand, c: any): void;
2727
+ xp(a: DataGridColumn, b: FilterOperand, c: any): void;
2709
2728
  private nb;
2710
2729
  ll(): boolean;
2711
- we(): void;
2712
- wd(): void;
2730
+ wg(): void;
2731
+ wf(): void;
2713
2732
  private ic;
2714
2733
  get isPagerVisible(): boolean;
2715
2734
  set isPagerVisible(a: boolean);
@@ -2743,40 +2762,40 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2743
2762
  private gp;
2744
2763
  get scrollbarStyle(): ScrollbarStyle;
2745
2764
  set scrollbarStyle(a: ScrollbarStyle);
2746
- private abk;
2765
+ private abn;
2747
2766
  get scrollbarBackground(): Brush;
2748
2767
  set scrollbarBackground(a: Brush);
2749
- private aav;
2768
+ private aay;
2750
2769
  get columnOptionsBackground(): Brush;
2751
2770
  set columnOptionsBackground(a: Brush);
2752
- private aa2;
2771
+ private aa5;
2753
2772
  get columnOptionsTextColor(): Brush;
2754
2773
  set columnOptionsTextColor(a: Brush);
2755
2774
  private gx;
2756
2775
  get columnOptionsTextStyle(): FontInfo;
2757
2776
  set columnOptionsTextStyle(a: FontInfo);
2758
- private aaz;
2777
+ private aa2;
2759
2778
  get columnOptionsHoverBackgroundColor(): Brush;
2760
2779
  set columnOptionsHoverBackgroundColor(a: Brush);
2761
- private aa3;
2780
+ private aa6;
2762
2781
  get columnOptionsToolTipBackgroundColor(): Brush;
2763
2782
  set columnOptionsToolTipBackgroundColor(a: Brush);
2764
- private aay;
2783
+ private aa1;
2765
2784
  get columnOptionsHighlightColor(): Brush;
2766
2785
  set columnOptionsHighlightColor(a: Brush);
2767
- private aa1;
2786
+ private aa4;
2768
2787
  get columnOptionsSeparatorColor(): Brush;
2769
2788
  set columnOptionsSeparatorColor(a: Brush);
2770
- private aaw;
2789
+ private aaz;
2771
2790
  get columnOptionsGroupHeaderBackground(): Brush;
2772
2791
  set columnOptionsGroupHeaderBackground(a: Brush);
2773
- private aax;
2792
+ private aa0;
2774
2793
  get columnOptionsGroupHeaderTextColor(): Brush;
2775
2794
  set columnOptionsGroupHeaderTextColor(a: Brush);
2776
2795
  private gw;
2777
2796
  get columnOptionsGroupHeaderTextStyle(): FontInfo;
2778
2797
  set columnOptionsGroupHeaderTextStyle(a: FontInfo);
2779
- private aau;
2798
+ private aax;
2780
2799
  get columnOptionsAccentColor(): Brush;
2781
2800
  set columnOptionsAccentColor(a: Brush);
2782
2801
  private nc;
@@ -3202,20 +3221,20 @@ export declare abstract class DefinitionBase extends Base implements INotifyProp
3202
3221
  get gc(): Brush;
3203
3222
  set gc(a: Brush);
3204
3223
  private f4;
3205
- get gz(): Brush;
3206
- set gz(a: Brush);
3224
+ get g0(): Brush;
3225
+ set g0(a: Brush);
3207
3226
  private fv;
3208
3227
  get gf(): Brush;
3209
3228
  set gf(a: Brush);
3210
3229
  private f3;
3211
- get gy(): Brush;
3212
- set gy(a: Brush);
3230
+ get gz(): Brush;
3231
+ set gz(a: Brush);
3213
3232
  private fu;
3214
3233
  get ge(): Brush;
3215
3234
  set ge(a: Brush);
3216
3235
  private f2;
3217
- get gx(): Brush;
3218
- set gx(a: Brush);
3236
+ get gy(): Brush;
3237
+ set gy(a: Brush);
3219
3238
  private ft;
3220
3239
  get gd(): Brush;
3221
3240
  set gd(a: Brush);
@@ -3241,8 +3260,8 @@ export declare abstract class DefinitionBase extends Base implements INotifyProp
3241
3260
  get ab(): TextCellLineBreakMode;
3242
3261
  set ab(a: TextCellLineBreakMode);
3243
3262
  private f5;
3244
- get g0(): Brush;
3245
- set g0(a: Brush);
3263
+ get g1(): Brush;
3264
+ set g1(a: Brush);
3246
3265
  private fw;
3247
3266
  get gg(): Brush;
3248
3267
  set gg(a: Brush);
@@ -3305,8 +3324,8 @@ export declare abstract class DefinitionBase extends Base implements INotifyProp
3305
3324
  private cp;
3306
3325
  private cr;
3307
3326
  private cs;
3327
+ private gx;
3308
3328
  private gw;
3309
- private gv;
3310
3329
  private bl;
3311
3330
  private bm;
3312
3331
  bh(a: any): number;
@@ -3348,7 +3367,7 @@ export declare abstract class DefinitionBase extends Base implements INotifyProp
3348
3367
  private el;
3349
3368
  protected f(): CellContentHorizontalAlignment;
3350
3369
  protected k(): CellContentVerticalAlignment;
3351
- protected gu(): Brush;
3370
+ protected gv(): Brush;
3352
3371
  protected go(): Brush;
3353
3372
  protected gp(): Brush;
3354
3373
  protected cl(): number;
@@ -3356,10 +3375,11 @@ export declare abstract class DefinitionBase extends Base implements INotifyProp
3356
3375
  protected gm(): Brush;
3357
3376
  protected ak(): FontInfo;
3358
3377
  protected gn(): Brush;
3359
- protected gt(): Brush;
3378
+ protected gu(): Brush;
3360
3379
  protected gr(): Brush;
3361
3380
  protected gq(): Brush;
3362
3381
  protected gs(): Brush;
3382
+ protected gt(): Brush;
3363
3383
  protected bj(): number;
3364
3384
  definitionPropertyUpdated: (sender: any, args: DefinitionPropertyUpdatedEventArgs) => void;
3365
3385
  private ae;
@@ -3381,415 +3401,425 @@ export declare abstract class DefinitionBase extends Base implements INotifyProp
3381
3401
  export declare abstract class DataGridColumn extends DefinitionBase implements IToolbarTarget {
3382
3402
  static $t: Type;
3383
3403
  constructor();
3384
- private o8;
3404
+ private pe;
3385
3405
  protected e2(a: GridConditionalStyle): void;
3386
3406
  protected ct(): any;
3387
3407
  protected cu(): any;
3388
3408
  protected cv(): any;
3389
3409
  protected au(a: GridConditionalStyle): boolean;
3390
- protected rp(): Brush;
3391
- protected ro(): Brush;
3392
- private static lm;
3393
- ln: number;
3394
- private hv;
3395
- get hw(): ColumnStates;
3396
- set hw(a: ColumnStates);
3397
- private k6;
3398
- get lj(): number;
3399
- set lj(a: number);
3410
+ protected rz(): Brush;
3411
+ protected ry(): Brush;
3412
+ private static lp;
3413
+ lq: number;
3414
+ private hw;
3415
+ get hx(): ColumnStates;
3416
+ set hx(a: ColumnStates);
3417
+ private k9;
3418
+ get lm(): number;
3419
+ set lm(a: number);
3420
+ private lb;
3421
+ get lo(): number;
3422
+ set lo(a: number);
3423
+ private la;
3424
+ get ln(): number;
3425
+ set ln(a: number);
3400
3426
  private k8;
3401
3427
  get ll(): number;
3402
3428
  set ll(a: number);
3403
- private k7;
3404
- get lk(): number;
3405
- set lk(a: number);
3429
+ private ly;
3430
+ get ob(): string;
3431
+ set ob(a: string);
3432
+ private k6;
3433
+ get lj(): number;
3434
+ set lj(a: number);
3406
3435
  private k5;
3407
3436
  get li(): number;
3408
3437
  set li(a: number);
3409
- private lv;
3410
- get n6(): string;
3411
- set n6(a: string);
3412
- private k3;
3413
- get lg(): number;
3414
- set lg(a: number);
3415
- private k2;
3416
- get lf(): number;
3417
- set lf(a: number);
3418
- private k4;
3419
- get lh(): number;
3420
- set lh(a: number);
3421
- private ip;
3422
- get ir(): PinnedPositions;
3423
- set ir(a: PinnedPositions);
3424
- private lt;
3425
- get nf(): string;
3426
- set nf(a: string);
3438
+ private k7;
3439
+ get lk(): number;
3440
+ set lk(a: number);
3441
+ private iq;
3442
+ get is(): PinnedPositions;
3443
+ set is(a: PinnedPositions);
3444
+ private lw;
3445
+ get nj(): string;
3446
+ set nj(a: string);
3447
+ private lx;
3448
+ get nq(): string;
3449
+ set nq(a: string);
3427
3450
  private lu;
3428
- get nm(): string;
3429
- set nm(a: string);
3430
- private lr;
3431
- get mi(): string;
3432
- set mi(a: string);
3433
- private qv;
3434
- get rs(): Brush;
3435
- set rs(a: Brush);
3436
- private qh;
3437
- get rc(): Brush;
3438
- set rc(a: Brush);
3439
- private qt;
3440
- get rq(): Brush;
3441
- set rq(a: Brush);
3442
- private qf;
3443
- get ra(): Brush;
3444
- set ra(a: Brush);
3445
- private qu;
3446
- get rr(): Brush;
3447
- set rr(a: Brush);
3448
- private qg;
3449
- get rb(): Brush;
3450
- set rb(a: Brush);
3451
- private ib;
3452
- get ic(): GridColumnAnimationSettings;
3453
- set ic(a: GridColumnAnimationSettings);
3454
- private hx;
3451
+ get ml(): string;
3452
+ set ml(a: string);
3453
+ private q3;
3454
+ get r2(): Brush;
3455
+ set r2(a: Brush);
3456
+ private qo;
3457
+ get rl(): Brush;
3458
+ set rl(a: Brush);
3459
+ private q4;
3460
+ get r3(): Brush;
3461
+ set r3(a: Brush);
3462
+ private qp;
3463
+ get rm(): Brush;
3464
+ set rm(a: Brush);
3465
+ private q1;
3466
+ get r0(): Brush;
3467
+ set r0(a: Brush);
3468
+ private qm;
3469
+ get rj(): Brush;
3470
+ set rj(a: Brush);
3471
+ private q2;
3472
+ get r1(): Brush;
3473
+ set r1(a: Brush);
3474
+ private qn;
3475
+ get rk(): Brush;
3476
+ set rk(a: Brush);
3477
+ private ic;
3478
+ get id(): GridColumnAnimationSettings;
3479
+ set id(a: GridColumnAnimationSettings);
3480
+ private hy;
3455
3481
  get width(): ColumnWidth;
3456
3482
  set width(a: ColumnWidth);
3457
- private ki;
3458
- get kq(): number;
3459
- set kq(a: number);
3460
- private jq;
3461
- get j8(): boolean;
3462
- set j8(a: boolean);
3463
- private jk;
3464
- get j2(): boolean;
3465
- set j2(a: boolean);
3466
- private jt;
3467
- get kb(): boolean;
3468
- set kb(a: boolean);
3469
- private g3;
3470
- get g4(): ColumnFilterCondition;
3471
- set g4(a: ColumnFilterCondition);
3472
- private g5;
3473
- get g6(): IFilterExpression;
3474
- set g6(a: IFilterExpression);
3475
- private ig;
3476
- get header(): Header;
3477
- set header(a: Header);
3478
- private jp;
3479
- get j7(): boolean;
3480
- set j7(a: boolean);
3481
- private js;
3483
+ private kl;
3484
+ get kt(): number;
3485
+ set kt(a: number);
3486
+ private jr;
3482
3487
  get ka(): boolean;
3483
3488
  set ka(a: boolean);
3484
- private jr;
3489
+ private jl;
3490
+ get j4(): boolean;
3491
+ set j4(a: boolean);
3492
+ private jv;
3493
+ get ke(): boolean;
3494
+ set ke(a: boolean);
3495
+ private g4;
3496
+ get g5(): ColumnFilterCondition;
3497
+ set g5(a: ColumnFilterCondition);
3498
+ private g6;
3499
+ get g7(): IFilterExpression;
3500
+ set g7(a: IFilterExpression);
3501
+ private ih;
3502
+ get header(): Header;
3503
+ set header(a: Header);
3504
+ private jq;
3485
3505
  get j9(): boolean;
3486
3506
  set j9(a: boolean);
3507
+ private jt;
3508
+ get kc(): boolean;
3509
+ set kc(a: boolean);
3487
3510
  private ju;
3488
3511
  get kd(): boolean;
3489
3512
  set kd(a: boolean);
3490
- private ht;
3491
- get hu(): ColumnSortDirection;
3492
- set hu(a: ColumnSortDirection);
3493
- private iq;
3494
- get is(): PinnedPositions;
3495
- set is(a: PinnedPositions);
3496
- private jj;
3497
- get j1(): boolean;
3498
- set j1(a: boolean);
3499
- get jy(): boolean;
3500
- private hj;
3501
- get hl(): ColumnOptionsIconAlignment;
3502
- set hl(a: ColumnOptionsIconAlignment);
3513
+ private js;
3514
+ get kb(): boolean;
3515
+ set kb(a: boolean);
3516
+ private jw;
3517
+ get kg(): boolean;
3518
+ set kg(a: boolean);
3519
+ private hu;
3520
+ get hv(): ColumnSortDirection;
3521
+ set hv(a: ColumnSortDirection);
3522
+ private ir;
3523
+ get it(): PinnedPositions;
3524
+ set it(a: PinnedPositions);
3525
+ private jk;
3526
+ get j3(): boolean;
3527
+ set j3(a: boolean);
3528
+ get j0(): boolean;
3503
3529
  private hk;
3504
3530
  get hm(): ColumnOptionsIconAlignment;
3505
3531
  set hm(a: ColumnOptionsIconAlignment);
3506
- private qa;
3507
- get q5(): Brush;
3508
- set q5(a: Brush);
3509
- private qo;
3510
- get rj(): Brush;
3511
- set rj(a: Brush);
3532
+ private hl;
3533
+ get hn(): ColumnOptionsIconAlignment;
3534
+ set hn(a: ColumnOptionsIconAlignment);
3535
+ private qh;
3536
+ get re(): Brush;
3537
+ set re(a: Brush);
3538
+ private qw;
3539
+ get rt(): Brush;
3540
+ set rt(a: Brush);
3541
+ private hp;
3542
+ get hr(): ColumnOptionsIconBehavior;
3543
+ set hr(a: ColumnOptionsIconBehavior);
3512
3544
  private ho;
3513
3545
  get hq(): ColumnOptionsIconBehavior;
3514
3546
  set hq(a: ColumnOptionsIconBehavior);
3515
- private hn;
3516
- get hp(): ColumnOptionsIconBehavior;
3517
- set hp(a: ColumnOptionsIconBehavior);
3518
- private jf;
3519
- get jv(): boolean;
3520
- set jv(a: boolean);
3521
- private jl;
3522
- get j3(): boolean;
3523
- set j3(a: boolean);
3524
- private jh;
3547
+ private jg;
3525
3548
  get jx(): boolean;
3526
3549
  set jx(a: boolean);
3527
- private jn;
3550
+ private jm;
3528
3551
  get j5(): boolean;
3529
3552
  set j5(a: boolean);
3530
- private jg;
3531
- get jw(): boolean;
3532
- set jw(a: boolean);
3533
- private jm;
3534
- get j4(): boolean;
3535
- set j4(a: boolean);
3536
- private iw;
3537
- get ix(): BaseControlTheme;
3538
- set ix(a: BaseControlTheme);
3539
- private p7;
3540
- get q0(): Brush;
3541
- set q0(a: Brush);
3553
+ private ji;
3554
+ get jz(): boolean;
3555
+ set jz(a: boolean);
3556
+ private jo;
3557
+ get j7(): boolean;
3558
+ set j7(a: boolean);
3559
+ private jh;
3560
+ get jy(): boolean;
3561
+ set jy(a: boolean);
3562
+ private jn;
3563
+ get j6(): boolean;
3564
+ set j6(a: boolean);
3565
+ private ix;
3566
+ get iy(): BaseControlTheme;
3567
+ set iy(a: BaseControlTheme);
3568
+ private qe;
3569
+ get q9(): Brush;
3570
+ set q9(a: Brush);
3571
+ private qr;
3572
+ get ro(): Brush;
3573
+ set ro(a: Brush);
3542
3574
  private qj;
3543
- get re(): Brush;
3544
- set re(a: Brush);
3575
+ get rg(): Brush;
3576
+ set rg(a: Brush);
3577
+ private qy;
3578
+ get rv(): Brush;
3579
+ set rv(a: Brush);
3580
+ private i3;
3581
+ get ja(): FontInfo;
3582
+ set ja(a: FontInfo);
3583
+ private i6;
3584
+ get jd(): FontInfo;
3585
+ set jd(a: FontInfo);
3586
+ private qg;
3587
+ get rd(): Brush;
3588
+ set rd(a: Brush);
3589
+ private qv;
3590
+ get rs(): Brush;
3591
+ set rs(a: Brush);
3592
+ static readonly mh: string;
3593
+ private qk;
3594
+ get rh(): Brush;
3595
+ set rh(a: Brush);
3596
+ private qz;
3597
+ get rw(): Brush;
3598
+ set rw(a: Brush);
3599
+ private qf;
3600
+ get rc(): Brush;
3601
+ set rc(a: Brush);
3602
+ private qu;
3603
+ get rr(): Brush;
3604
+ set rr(a: Brush);
3605
+ private qi;
3606
+ get rf(): Brush;
3607
+ set rf(a: Brush);
3608
+ private qx;
3609
+ get ru(): Brush;
3610
+ set ru(a: Brush);
3611
+ static readonly l5: string;
3612
+ private qb;
3613
+ get ra(): Brush;
3614
+ set ra(a: Brush);
3615
+ private qs;
3616
+ get rp(): Brush;
3617
+ set rp(a: Brush);
3545
3618
  private qc;
3546
- get q7(): Brush;
3547
- set q7(a: Brush);
3548
- private qq;
3549
- get rl(): Brush;
3550
- set rl(a: Brush);
3619
+ get rb(): Brush;
3620
+ set rb(a: Brush);
3621
+ private qt;
3622
+ get rq(): Brush;
3623
+ set rq(a: Brush);
3551
3624
  private i2;
3552
3625
  get i9(): FontInfo;
3553
3626
  set i9(a: FontInfo);
3554
3627
  private i5;
3555
3628
  get jc(): FontInfo;
3556
3629
  set jc(a: FontInfo);
3557
- private p9;
3558
- get q4(): Brush;
3559
- set q4(a: Brush);
3560
- private qn;
3561
- get ri(): Brush;
3562
- set ri(a: Brush);
3563
- static readonly me: string;
3564
3630
  private qd;
3565
3631
  get q8(): Brush;
3566
3632
  set q8(a: Brush);
3567
- private qr;
3568
- get rm(): Brush;
3569
- set rm(a: Brush);
3570
- private p8;
3571
- get q3(): Brush;
3572
- set q3(a: Brush);
3573
- private qm;
3574
- get rh(): Brush;
3575
- set rh(a: Brush);
3576
- private qb;
3577
- get q6(): Brush;
3578
- set q6(a: Brush);
3579
- private qp;
3580
- get rk(): Brush;
3581
- set rk(a: Brush);
3582
- static readonly l2: string;
3583
- private p4;
3584
- get q1(): Brush;
3585
- set q1(a: Brush);
3586
- private qk;
3587
- get rf(): Brush;
3588
- set rf(a: Brush);
3589
- private p5;
3590
- get q2(): Brush;
3591
- set q2(a: Brush);
3592
- private ql;
3593
- get rg(): Brush;
3594
- set rg(a: Brush);
3595
- private i1;
3596
- get i8(): FontInfo;
3597
- set i8(a: FontInfo);
3598
- private i4;
3599
- get jb(): FontInfo;
3600
- set jb(a: FontInfo);
3601
- private p6;
3602
- get qz(): Brush;
3603
- set qz(a: Brush);
3604
- private qi;
3605
- get rd(): Brush;
3606
- set rd(a: Brush);
3607
- private kw;
3608
- get k9(): number;
3609
- set k9(a: number);
3610
- private kx;
3611
- get la(): number;
3612
- set la(a: number);
3613
- private jo;
3614
- get j6(): boolean;
3615
- set j6(a: boolean);
3616
- private qs;
3633
+ private qq;
3617
3634
  get rn(): Brush;
3618
3635
  set rn(a: Brush);
3619
- private qe;
3620
- get q9(): Brush;
3621
- set q9(a: Brush);
3622
- private kh;
3623
- get kp(): number;
3624
- set kp(a: number);
3625
- private kg;
3626
- get ko(): number;
3627
- set ko(a: number);
3628
- private i6;
3629
- get textEditStyle(): FontInfo;
3630
- set textEditStyle(a: FontInfo);
3631
- private i3;
3632
- get ja(): FontInfo;
3633
- set ja(a: FontInfo);
3634
- private h3;
3635
- get h4(): EditorType;
3636
- set h4(a: EditorType);
3637
- private lo;
3638
- get lp(): any;
3639
- set lp(a: any);
3640
- private ls;
3641
- get nb(): string;
3642
- set nb(a: string);
3643
- private g1;
3644
- get g2(): string[];
3645
- set g2(a: string[]);
3646
- private il;
3647
- get io(): MergedCellMode;
3648
- set io(a: MergedCellMode);
3649
- private ii;
3650
- get ik(): MergedCellEvaluationCriteria;
3651
- set ik(a: MergedCellEvaluationCriteria);
3652
- private ha;
3653
- get hd(): CellContentVerticalAlignment;
3654
- set hd(a: CellContentVerticalAlignment);
3655
- private g9;
3656
- get hb(): CellContentVerticalAlignment;
3657
- set hb(a: CellContentVerticalAlignment);
3658
3636
  private kz;
3659
3637
  get lc(): number;
3660
3638
  set lc(a: number);
3661
- private k1;
3662
- get le(): number;
3663
- set le(a: number);
3664
3639
  private k0;
3665
3640
  get ld(): number;
3666
3641
  set ld(a: number);
3667
- private ky;
3668
- get lb(): number;
3669
- set lb(a: number);
3670
- private h5;
3671
- get h6(): FilterComparisonType;
3672
- set h6(a: FilterComparisonType);
3673
- h8(a: FilterComparisonType): FilterComparisonType;
3674
- h7(): FilterComparisonType;
3675
- private id;
3676
- get ie(): GridFilterOperandsCollection;
3677
- private ly;
3678
- get ou(): string;
3679
- set ou(a: string);
3680
- private qy;
3681
- get rv(): Brush;
3682
- set rv(a: Brush);
3683
- private i7;
3684
- get suffixTextStyle(): FontInfo;
3685
- set suffixTextStyle(a: FontInfo);
3686
- private lx;
3687
- get om(): string;
3688
- set om(a: string);
3689
- private lw;
3690
- get oj(): string;
3691
- set oj(a: string);
3692
- private qx;
3693
- get ru(): Brush;
3694
- set ru(a: Brush);
3695
- private qw;
3696
- get rt(): Brush;
3697
- set rt(a: Brush);
3642
+ private jp;
3643
+ get j8(): boolean;
3644
+ set j8(a: boolean);
3645
+ private q0;
3646
+ get rx(): Brush;
3647
+ set rx(a: Brush);
3648
+ private ql;
3649
+ get ri(): Brush;
3650
+ set ri(a: Brush);
3698
3651
  private kk;
3699
3652
  get ks(): number;
3700
3653
  set ks(a: number);
3701
- private kl;
3702
- get kt(): number;
3703
- set kt(a: number);
3704
- private km;
3705
- get ku(): number;
3706
- set ku(a: number);
3707
3654
  private kj;
3708
3655
  get kr(): number;
3709
3656
  set kr(a: number);
3657
+ private i7;
3658
+ get textEditStyle(): FontInfo;
3659
+ set textEditStyle(a: FontInfo);
3660
+ private i4;
3661
+ get jb(): FontInfo;
3662
+ set jb(a: FontInfo);
3663
+ private h4;
3664
+ get h5(): EditorType;
3665
+ set h5(a: EditorType);
3666
+ private lr;
3667
+ get ls(): any;
3668
+ set ls(a: any);
3669
+ private lv;
3670
+ get nf(): string;
3671
+ set nf(a: string);
3672
+ private g2;
3673
+ get g3(): string[];
3674
+ set g3(a: string[]);
3675
+ private im;
3676
+ get ip(): MergedCellMode;
3677
+ set ip(a: MergedCellMode);
3678
+ private ij;
3679
+ get il(): MergedCellEvaluationCriteria;
3680
+ set il(a: MergedCellEvaluationCriteria);
3681
+ private hb;
3682
+ get he(): CellContentVerticalAlignment;
3683
+ set he(a: CellContentVerticalAlignment);
3684
+ private ha;
3685
+ get hc(): CellContentVerticalAlignment;
3686
+ set hc(a: CellContentVerticalAlignment);
3687
+ private k2;
3688
+ get lf(): number;
3689
+ set lf(a: number);
3690
+ private k4;
3691
+ get lh(): number;
3692
+ set lh(a: number);
3693
+ private k3;
3694
+ get lg(): number;
3695
+ set lg(a: number);
3696
+ private k1;
3697
+ get le(): number;
3698
+ set le(a: number);
3699
+ private h6;
3700
+ get h7(): FilterComparisonType;
3701
+ set h7(a: FilterComparisonType);
3702
+ h9(a: FilterComparisonType): FilterComparisonType;
3703
+ h8(): FilterComparisonType;
3704
+ private ie;
3705
+ get ig(): GridFilterOperandsCollection;
3706
+ private l1;
3707
+ get o0(): string;
3708
+ set o0(a: string);
3709
+ private q7;
3710
+ get r6(): Brush;
3711
+ set r6(a: Brush);
3712
+ private i8;
3713
+ get suffixTextStyle(): FontInfo;
3714
+ set suffixTextStyle(a: FontInfo);
3715
+ private l0;
3716
+ get os(): string;
3717
+ set os(a: string);
3718
+ private lz;
3719
+ get op(): string;
3720
+ set op(a: string);
3721
+ private q6;
3722
+ get r5(): Brush;
3723
+ set r5(a: Brush);
3724
+ private q5;
3725
+ get r4(): Brush;
3726
+ set r4(a: Brush);
3710
3727
  private kn;
3711
3728
  get kv(): number;
3712
3729
  set kv(a: number);
3713
- private it;
3714
- get iu(): TextCellDecoration;
3715
- set iu(a: TextCellDecoration);
3730
+ private ko;
3731
+ get kw(): number;
3732
+ set kw(a: number);
3733
+ private kp;
3734
+ get kx(): number;
3735
+ set kx(a: number);
3736
+ private km;
3737
+ get ku(): number;
3738
+ set ku(a: number);
3739
+ private kq;
3740
+ get ky(): number;
3741
+ set ky(a: number);
3742
+ private iu;
3743
+ get iv(): TextCellDecoration;
3744
+ set iv(a: TextCellDecoration);
3716
3745
  formatCell: (sender: any, args: FormatCellEventArgs) => void;
3717
- private o1;
3718
- im(): MergedCellMode;
3719
- ij(): MergedCellEvaluationCriteria;
3720
- kc(): boolean;
3746
+ private o7;
3747
+ io(): MergedCellMode;
3748
+ ik(): MergedCellEvaluationCriteria;
3749
+ kf(): boolean;
3721
3750
  protected gr(): Brush;
3722
- protected gt(): Brush;
3723
- oz(a: CellModel, b: any, c: any): string;
3751
+ protected gu(): Brush;
3752
+ o5(a: CellModel, b: any, c: any): string;
3724
3753
  eq(a: CellModel, b: DataGrid, c: any, d: any): void;
3725
3754
  protected d4(a: CellPath, b: DataGrid, c: any): string;
3726
3755
  en(a: CellModel, b: DataGrid, c: any, d: any): void;
3727
3756
  protected ex(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
3728
- protected he(): CellContentVerticalAlignment;
3729
- protected g8(): CellContentHorizontalAlignment;
3730
- protected hc(): CellContentVerticalAlignment;
3731
- private p0;
3732
- private o7;
3757
+ protected hf(): CellContentVerticalAlignment;
3758
+ protected g9(): CellContentHorizontalAlignment;
3759
+ protected hd(): CellContentVerticalAlignment;
3760
+ private p6;
3761
+ private pd;
3733
3762
  protected es(a: DataGrid, b: DataGrid): void;
3734
3763
  protected eu(a: any, b: PropertyChangedEventArgs): void;
3735
- p1(): void;
3736
- p2(): void;
3737
- p3(): void;
3764
+ p7(): void;
3765
+ p8(): void;
3766
+ p9(): void;
3767
+ qa(): void;
3738
3768
  protected e8(): void;
3739
3769
  protected fk(): void;
3740
3770
  protected fl(): void;
3741
3771
  protected fi(): void;
3742
- protected px(): void;
3743
- protected pz(): void;
3744
- protected py(): void;
3772
+ protected p3(): void;
3773
+ protected p5(): void;
3774
+ protected p4(): void;
3745
3775
  protected fh(): void;
3746
3776
  protected fj(): void;
3747
3777
  protected fg(): void;
3748
- protected pf(): void;
3749
- protected pp(): void;
3750
- protected po(): void;
3751
- protected ph(): void;
3752
- protected ps(): void;
3753
3778
  protected pl(): void;
3754
3779
  protected pv(): void;
3755
- protected pg(): void;
3756
- protected pt(): void;
3757
3780
  protected pu(): void;
3758
3781
  protected pn(): void;
3759
- protected pw(): void;
3760
- protected pm(): void;
3782
+ protected py(): void;
3761
3783
  protected pr(): void;
3762
- protected pi(): void;
3763
- protected pj(): void;
3764
- protected pk(): void;
3765
- protected pe(): void;
3784
+ protected p1(): void;
3785
+ protected pm(): void;
3786
+ protected pz(): void;
3787
+ protected p0(): void;
3788
+ protected pt(): void;
3789
+ protected p2(): void;
3790
+ protected ps(): void;
3791
+ protected px(): void;
3792
+ protected po(): void;
3793
+ protected pp(): void;
3766
3794
  protected pq(): void;
3795
+ protected pk(): void;
3796
+ protected pw(): void;
3767
3797
  columnCellsPropertyUpdating: (column: DataGridColumn, propertyName: string, propertyAnimationType: CellPropertyAnimationType, oldValue: any, newValue: any) => void;
3768
3798
  columnHeaderCellsPropertyUpdating: (column: DataGridColumn, propertyName: string, propertyAnimationType: CellPropertyAnimationType, oldValue: any, newValue: any) => void;
3769
- protected pa(a: CellModel): void;
3770
- protected pd(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
3771
- hi(): ColumnHidingAnimationMode;
3772
- hs(): ColumnShowingAnimationMode;
3773
- hh(): ColumnExchangingAnimationMode;
3774
- hr(): ColumnResizingAnimationMode;
3775
- nk(): string;
3776
- private iz;
3777
- private ji;
3778
- pc(a: string, b: CellPropertyAnimationType, c: any): void;
3779
- j0(): boolean;
3780
- get i0(): FastIterationDictionary$2<string, any>;
3781
- jz(a: string): boolean;
3782
- pb(a: string): void;
3783
- lq(a: string): any;
3784
- kf: List$1<LayoutAction>;
3785
- o9(a: string): void;
3786
- o3(a: ColumnComparisonConditionOperatorType, b: any): void;
3787
- o2(a: string, b: number, c: any): void;
3788
- g7(a: FilterOperand, b: any): IFilterExpression;
3789
- h9(a: string, b: number): FilterOperand;
3790
- o4(): void;
3791
- private h1;
3792
- get h2(): DataGridColumnToolbarManager;
3799
+ protected pg(a: CellModel): void;
3800
+ protected pj(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
3801
+ hj(): ColumnHidingAnimationMode;
3802
+ ht(): ColumnShowingAnimationMode;
3803
+ hi(): ColumnExchangingAnimationMode;
3804
+ hs(): ColumnResizingAnimationMode;
3805
+ no(): string;
3806
+ private i0;
3807
+ private jj;
3808
+ pi(a: string, b: CellPropertyAnimationType, c: any): void;
3809
+ j2(): boolean;
3810
+ get i1(): FastIterationDictionary$2<string, any>;
3811
+ j1(a: string): boolean;
3812
+ ph(a: string): void;
3813
+ lt(a: string): any;
3814
+ ki: List$1<LayoutAction>;
3815
+ pf(a: string): void;
3816
+ o9(a: ColumnComparisonConditionOperatorType, b: any): void;
3817
+ o8(a: string, b: number, c: any): void;
3818
+ g8(a: FilterOperand, b: any): IFilterExpression;
3819
+ ia(a: string, b: number): FilterOperand;
3820
+ pa(): void;
3821
+ private h2;
3822
+ get h3(): DataGridColumnToolbarManager;
3793
3823
  getDesiredToolbarActions(): ToolActionInfo[];
3794
3824
  addCommandAvailabilityListener(a: ICommandAvailabilityListener): void;
3795
3825
  removeCommandAvailabilityListener(a: ICommandAvailabilityListener): void;
@@ -3802,14 +3832,14 @@ export declare abstract class DataGridColumn extends DefinitionBase implements I
3802
3832
  private _invalidateActions;
3803
3833
  get invalidateActions(): () => void;
3804
3834
  set invalidateActions(a: () => void);
3805
- private ke;
3806
- iy(): IToolbarContextAccessor;
3807
- o6(a: (arg1: IToolbarContextAccessor) => void): void;
3835
+ private kh;
3836
+ iz(): IToolbarContextAccessor;
3837
+ pc(a: (arg1: IToolbarContextAccessor) => void): void;
3808
3838
  provideContextAccessor(a: IToolbarContextAccessor): void;
3809
3839
  dismissContextAccessor(a: IToolbarContextAccessor): void;
3810
- o5(): void;
3811
- hz: DataGridColumn;
3812
- abstract h0(): DataGridColumn;
3840
+ pb(): void;
3841
+ h0: DataGridColumn;
3842
+ abstract h1(): DataGridColumn;
3813
3843
  onAttachingOverride: (sender: any, args: GridColumnProviderOnAttachingOverrideEventArgs) => void;
3814
3844
  }
3815
3845
  /**
@@ -4102,18 +4132,18 @@ export declare class ColumnMovingSeparator extends DefinitionBase {
4102
4132
  protected d4(a: CellPath, b: DataGrid, c: any): string;
4103
4133
  protected n(a: CellPath): CellModel;
4104
4134
  protected gn(): Brush;
4105
- private g5;
4106
- get g6(): number;
4107
- set g6(a: number);
4108
- private g1;
4109
- get g3(): number;
4110
- set g3(a: number);
4135
+ private g6;
4136
+ get g7(): number;
4137
+ set g7(a: number);
4111
4138
  private g2;
4112
4139
  get g4(): number;
4113
4140
  set g4(a: number);
4141
+ private g3;
4142
+ get g5(): number;
4143
+ set g5(a: number);
4114
4144
  protected es(a: DataGrid, b: DataGrid): void;
4115
4145
  protected e8(): void;
4116
- protected ha(): void;
4146
+ protected hb(): void;
4117
4147
  protected e4(): void;
4118
4148
  protected eu(a: any, b: PropertyChangedEventArgs): void;
4119
4149
  en(a: CellModel, b: DataGrid, c: any, d: any): void;
@@ -4124,17 +4154,17 @@ export declare class ColumnMovingSeparator extends DefinitionBase {
4124
4154
  export declare class ComboBoxColumn extends DataGridColumn {
4125
4155
  static $t: Type;
4126
4156
  constructor();
4127
- private rx;
4128
- get ry(): IDataSource;
4129
- set ry(a: IDataSource);
4130
- get rz(): any;
4131
- set rz(a: any);
4132
- get r3(): string;
4133
- set r3(a: string);
4134
- get r4(): string;
4135
- set r4(a: string);
4136
- get rw(): string[];
4137
- set rw(a: string[]);
4157
+ private r8;
4158
+ get r9(): IDataSource;
4159
+ set r9(a: IDataSource);
4160
+ get sa(): any;
4161
+ set sa(a: any);
4162
+ get se(): string;
4163
+ set se(a: string);
4164
+ get sf(): string;
4165
+ set sf(a: string);
4166
+ get r7(): string[];
4167
+ set r7(a: string[]);
4138
4168
  protected n(a: CellPath): CellModel;
4139
4169
  protected d4(a: CellPath, b: DataGrid, c: any): string;
4140
4170
  protected es(a: DataGrid, b: DataGrid): void;
@@ -4142,44 +4172,44 @@ export declare class ComboBoxColumn extends DataGridColumn {
4142
4172
  eq(a: CellModel, b: DataGrid, c: any, d: any): void;
4143
4173
  en(a: CellModel, b: DataGrid, c: any, d: any): void;
4144
4174
  protected ex(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
4145
- private r5;
4146
- private r6;
4147
- private r1;
4148
- r2(a: any): string;
4149
- h0(): DataGridColumn;
4175
+ private sg;
4176
+ private sh;
4177
+ private sc;
4178
+ sd(a: any): string;
4179
+ h1(): DataGridColumn;
4150
4180
  }
4151
4181
  /**
4152
4182
  * @hidden
4153
4183
  */
4154
4184
  export declare class DateTimeColumn extends DataGridColumn {
4155
4185
  static $t: Type;
4156
- private rz;
4157
- private r0;
4158
- get r1(): DateTimeFormats;
4159
- set r1(a: DateTimeFormats);
4160
4186
  private sa;
4161
- get sj(): string;
4162
- set sj(a: string);
4163
- private r9;
4164
- get sc(): string;
4165
- set sc(a: string);
4166
- private rw;
4167
- get rx(): any[];
4168
- set rx(a: any[]);
4169
- private r6;
4170
- get r8(): any;
4171
- set r8(a: any);
4172
- private r3;
4173
- get r4(): boolean;
4174
- set r4(a: boolean);
4175
- get r2(): EditorType;
4176
- set r2(a: EditorType);
4177
- get r7(): any;
4178
- set r7(a: any);
4179
- get se(): string;
4180
- set se(a: string);
4181
- get sf(): string;
4182
- set sf(a: string);
4187
+ private sb;
4188
+ get sc(): DateTimeFormats;
4189
+ set sc(a: DateTimeFormats);
4190
+ private sl;
4191
+ get su(): string;
4192
+ set su(a: string);
4193
+ private sk;
4194
+ get sn(): string;
4195
+ set sn(a: string);
4196
+ private r7;
4197
+ get r8(): any[];
4198
+ set r8(a: any[]);
4199
+ private sh;
4200
+ get sj(): any;
4201
+ set sj(a: any);
4202
+ private se;
4203
+ get sf(): boolean;
4204
+ set sf(a: boolean);
4205
+ get sd(): EditorType;
4206
+ set sd(a: EditorType);
4207
+ get si(): any;
4208
+ set si(a: any);
4209
+ get sp(): string;
4210
+ set sp(a: string);
4211
+ get sq(): string;
4212
+ set sq(a: string);
4183
4213
  protected ex(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
4184
4214
  constructor();
4185
4215
  protected n(a: CellPath): CellModel;
@@ -4187,10 +4217,10 @@ export declare class DateTimeColumn extends DataGridColumn {
4187
4217
  d1(a: DataGrid, b: any, c: any): string;
4188
4218
  eq(a: CellModel, b: DataGrid, c: any, d: any): void;
4189
4219
  en(a: CellModel, b: DataGrid, c: any, d: any): void;
4190
- private r5;
4191
- ry: BindingFormatter;
4192
4220
  private sg;
4193
- h0(): DataGridColumn;
4221
+ r9: BindingFormatter;
4222
+ private sr;
4223
+ h1(): DataGridColumn;
4194
4224
  }
4195
4225
  /**
4196
4226
  * @hidden
@@ -4313,15 +4343,15 @@ export declare class DataGridColumnToolbarManager extends Base {
4313
4343
  export declare class EditorDefinition extends DefinitionBase {
4314
4344
  static $t: Type;
4315
4345
  constructor();
4316
- private g8;
4317
- get g9(): Rect;
4318
- set g9(a: Rect);
4319
- private g3;
4320
- get g6(): string;
4321
- set g6(a: string);
4322
- private g1;
4323
- get g2(): CellModel;
4324
- set g2(a: CellModel);
4346
+ private g9;
4347
+ get ha(): Rect;
4348
+ set ha(a: Rect);
4349
+ private g4;
4350
+ get g7(): string;
4351
+ set g7(a: string);
4352
+ private g2;
4353
+ get g3(): CellModel;
4354
+ set g3(a: CellModel);
4325
4355
  protected n(a: CellPath): CellModel;
4326
4356
  protected d4(a: CellPath, b: DataGrid, c: any): string;
4327
4357
  protected es(a: DataGrid, b: DataGrid): void;
@@ -4346,18 +4376,18 @@ export declare class EditRowDefinition extends DefinitionBase {
4346
4376
  */
4347
4377
  export declare class FilterRowDefinition extends DefinitionBase {
4348
4378
  static $t: Type;
4349
- private g2;
4350
- get g6(): number;
4351
- set g6(a: number);
4352
- private g4;
4353
- get g8(): number;
4354
- set g8(a: number);
4355
4379
  private g3;
4356
4380
  get g7(): number;
4357
4381
  set g7(a: number);
4358
- private g1;
4359
- get g5(): number;
4360
- set g5(a: number);
4382
+ private g5;
4383
+ get g9(): number;
4384
+ set g9(a: number);
4385
+ private g4;
4386
+ get g8(): number;
4387
+ set g8(a: number);
4388
+ private g2;
4389
+ get g6(): number;
4390
+ set g6(a: number);
4361
4391
  constructor();
4362
4392
  protected n(a: CellPath): CellModel;
4363
4393
  protected d4(a: CellPath, b: DataGrid, c: any): string;
@@ -4374,41 +4404,41 @@ export declare class FilterRowDefinition extends DefinitionBase {
4374
4404
  export declare abstract class Header extends DefinitionBase {
4375
4405
  static $t: Type;
4376
4406
  constructor();
4377
- protected gu(): Brush;
4407
+ protected gv(): Brush;
4378
4408
  protected gn(): Brush;
4379
- protected hq(): Brush;
4409
+ protected hr(): Brush;
4380
4410
  protected ak(): FontInfo;
4381
4411
  protected es(a: DataGrid, b: DataGrid): void;
4382
4412
  protected e8(): void;
4383
4413
  protected fk(): void;
4384
4414
  protected fl(): void;
4385
- protected hl(): void;
4386
4415
  protected hm(): void;
4416
+ protected hn(): void;
4387
4417
  protected eu(a: any, b: PropertyChangedEventArgs): void;
4418
+ private hp;
4419
+ get hs(): Brush;
4420
+ set hs(a: Brush);
4388
4421
  private ho;
4389
- get hr(): Brush;
4390
- set hr(a: Brush);
4391
- private hn;
4392
- get hp(): Brush;
4393
- set hp(a: Brush);
4422
+ get hq(): Brush;
4423
+ set hq(a: Brush);
4424
+ private g3;
4425
+ get g5(): SortIndicatorStyle;
4426
+ set g5(a: SortIndicatorStyle);
4394
4427
  private g2;
4395
4428
  get g4(): SortIndicatorStyle;
4396
4429
  set g4(a: SortIndicatorStyle);
4397
- private g1;
4398
- get g3(): SortIndicatorStyle;
4399
- set g3(a: SortIndicatorStyle);
4400
- private g6;
4401
- get ha(): number;
4402
- set ha(a: number);
4403
- private g8;
4404
- get hc(): number;
4405
- set hc(a: number);
4406
4430
  private g7;
4407
4431
  get hb(): number;
4408
4432
  set hb(a: number);
4409
- private g5;
4410
- get g9(): number;
4411
- set g9(a: number);
4433
+ private g9;
4434
+ get hd(): number;
4435
+ set hd(a: number);
4436
+ private g8;
4437
+ get hc(): number;
4438
+ set hc(a: number);
4439
+ private g6;
4440
+ get ha(): number;
4441
+ set ha(a: number);
4412
4442
  protected aw(a: string): boolean;
4413
4443
  en(a: CellModel, b: DataGrid, c: any, d: any): void;
4414
4444
  eq(a: CellModel, b: DataGrid, c: any, d: any): void;
@@ -4421,16 +4451,16 @@ export declare class ColumnResizingSeparator extends DefinitionBase {
4421
4451
  protected d4(a: CellPath, b: DataGrid, c: any): string;
4422
4452
  protected n(a: CellPath): CellModel;
4423
4453
  protected gn(): Brush;
4424
- private g1;
4425
- get g3(): number;
4426
- set g3(a: number);
4427
4454
  private g2;
4428
4455
  get g4(): number;
4429
4456
  set g4(a: number);
4457
+ private g3;
4458
+ get g5(): number;
4459
+ set g5(a: number);
4430
4460
  protected e8(): void;
4431
- protected g8(): void;
4461
+ protected g9(): void;
4432
4462
  protected e4(): void;
4433
- protected g7(a: any, b: PropertyChangedEventArgs): void;
4463
+ protected g8(a: any, b: PropertyChangedEventArgs): void;
4434
4464
  en(a: CellModel, b: DataGrid, c: any, d: any): void;
4435
4465
  }
4436
4466
  /**
@@ -4441,12 +4471,12 @@ export declare class HeaderSeparator extends DefinitionBase {
4441
4471
  protected d4(a: CellPath, b: DataGrid, c: any): string;
4442
4472
  protected n(a: CellPath): CellModel;
4443
4473
  protected gn(): Brush;
4444
- protected g1(): number;
4474
+ protected g2(): number;
4445
4475
  protected es(a: DataGrid, b: DataGrid): void;
4446
4476
  protected eu(a: any, b: PropertyChangedEventArgs): void;
4447
4477
  protected e8(): void;
4448
4478
  protected e4(): void;
4449
- private g2;
4479
+ private g3;
4450
4480
  en(a: CellModel, b: DataGrid, c: any, d: any): void;
4451
4481
  }
4452
4482
  /**
@@ -4454,31 +4484,31 @@ export declare class HeaderSeparator extends DefinitionBase {
4454
4484
  */
4455
4485
  export declare class ImageColumn extends DataGridColumn {
4456
4486
  static $t: Type;
4457
- private rz;
4458
- get r0(): ImageStretchOptions;
4459
- set r0(a: ImageStretchOptions);
4460
- private rx;
4461
- get ry(): ImageResourceType;
4462
- set ry(a: ImageResourceType);
4463
- get rw(): EditorType;
4464
- set rw(a: EditorType);
4465
- get r1(): any;
4466
- set r1(a: any);
4467
- get r2(): string;
4468
- set r2(a: string);
4469
- get r3(): string;
4470
- set r3(a: string);
4487
+ private sa;
4488
+ get sb(): ImageStretchOptions;
4489
+ set sb(a: ImageStretchOptions);
4490
+ private r8;
4491
+ get r9(): ImageResourceType;
4492
+ set r9(a: ImageResourceType);
4493
+ get r7(): EditorType;
4494
+ set r7(a: EditorType);
4495
+ get sc(): any;
4496
+ set sc(a: any);
4497
+ get sd(): string;
4498
+ set sd(a: string);
4499
+ get se(): string;
4500
+ set se(a: string);
4471
4501
  constructor();
4472
4502
  protected k(): CellContentVerticalAlignment;
4473
- protected g8(): CellContentHorizontalAlignment;
4474
- protected he(): CellContentVerticalAlignment;
4503
+ protected g9(): CellContentHorizontalAlignment;
4504
+ protected hf(): CellContentVerticalAlignment;
4475
4505
  protected f(): CellContentHorizontalAlignment;
4476
4506
  protected n(a: CellPath): CellModel;
4477
4507
  protected d4(a: CellPath, b: DataGrid, c: any): string;
4478
4508
  eq(a: CellModel, b: DataGrid, c: any, d: any): void;
4479
4509
  en(a: CellModel, b: DataGrid, c: any, d: any): void;
4480
- private r4;
4481
- h0(): DataGridColumn;
4510
+ private sf;
4511
+ h1(): DataGridColumn;
4482
4512
  }
4483
4513
  /**
4484
4514
  * @hidden
@@ -4487,7 +4517,7 @@ export declare class NumericCellFormatter extends Base {
4487
4517
  static $t: Type;
4488
4518
  private static a;
4489
4519
  private static e;
4490
- static b(a: BindingFormatter, b: number, c: number, d: number, e: boolean, f: string, g: string, h: string, i: string, j: number): string;
4520
+ static b(a: BindingFormatter, b: number, c: number, d: number, e: boolean, f: string, g: string, h: string, i: string, j: number, k: boolean): string;
4491
4521
  static c(a: NumericCellModel): string;
4492
4522
  static d(a: NumericColumn, b: number): string;
4493
4523
  }
@@ -4498,57 +4528,60 @@ export declare class NumericColumn extends DataGridColumn {
4498
4528
  static $t: Type;
4499
4529
  constructor();
4500
4530
  protected f(): CellContentHorizontalAlignment;
4501
- private sd;
4502
- get sr(): string;
4503
- set sr(a: string);
4504
- private sf;
4505
- get sv(): string;
4506
- set sv(a: string);
4507
- private se;
4508
- get st(): string;
4509
- set st(a: string);
4531
+ private sq;
4532
+ get s5(): string;
4533
+ set s5(a: string);
4534
+ private ss;
4535
+ get s9(): string;
4536
+ set s9(a: string);
4537
+ private sr;
4538
+ get s7(): string;
4539
+ set s7(a: string);
4540
+ private st;
4541
+ get tb(): string;
4542
+ set tb(a: string);
4510
4543
  private sg;
4511
- get sx(): string;
4512
- set sx(a: string);
4513
- private r3;
4514
- get r6(): number;
4515
- set r6(a: number);
4516
- private r4;
4517
- get r7(): number;
4518
- set r7(a: number);
4519
- private r5;
4520
- get r8(): number;
4521
- set r8(a: number);
4522
- private r0;
4523
- get r1(): boolean;
4524
- set r1(a: boolean);
4544
+ get sj(): number;
4545
+ set sj(a: number);
4546
+ private sh;
4547
+ get sk(): number;
4548
+ set sk(a: number);
4549
+ private si;
4550
+ get sl(): number;
4551
+ set sl(a: number);
4552
+ private sb;
4553
+ get sd(): boolean;
4554
+ set sd(a: boolean);
4525
4555
  private sc;
4526
- get sm(): string;
4527
- set sm(a: string);
4528
- private rw;
4529
- get rx(): any[];
4530
- set rx(a: any[]);
4531
- private r9;
4532
- get sb(): any;
4533
- set sb(a: any);
4534
- get rz(): EditorType;
4535
- set rz(a: EditorType);
4536
- get sa(): any;
4537
- set sa(a: any);
4538
- get sh(): string;
4539
- set sh(a: string);
4540
- get si(): string;
4541
- set si(a: string);
4542
- ry: BindingFormatter;
4556
+ get se(): boolean;
4557
+ set se(a: boolean);
4558
+ private sp;
4559
+ get sz(): string;
4560
+ set sz(a: string);
4561
+ private r7;
4562
+ get r8(): any[];
4563
+ set r8(a: any[]);
4564
+ private sm;
4565
+ get so(): any;
4566
+ set so(a: any);
4567
+ get sa(): EditorType;
4568
+ set sa(a: EditorType);
4569
+ get sn(): any;
4570
+ set sn(a: any);
4571
+ get su(): string;
4572
+ set su(a: string);
4573
+ get sv(): string;
4574
+ set sv(a: string);
4575
+ r9: BindingFormatter;
4543
4576
  protected ex(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
4544
4577
  protected n(a: CellPath): CellModel;
4545
4578
  protected d4(a: CellPath, b: DataGrid, c: any): string;
4546
4579
  d1(a: DataGrid, b: any, c: any): string;
4547
4580
  eq(a: CellModel, b: DataGrid, c: any, d: any): void;
4548
4581
  en(a: CellModel, b: DataGrid, c: any, d: any): void;
4549
- private r2;
4550
- private sj;
4551
- h0(): DataGridColumn;
4582
+ private sf;
4583
+ private sw;
4584
+ h1(): DataGridColumn;
4552
4585
  }
4553
4586
  /**
4554
4587
  * @hidden
@@ -4597,30 +4630,42 @@ export declare class SectionFooter extends DefinitionBase {
4597
4630
  */
4598
4631
  export declare class SectionHeader extends DefinitionBase {
4599
4632
  static $t: Type;
4600
- private ht;
4601
- get hv(): Brush;
4602
- set hv(a: Brush);
4603
- private hs;
4604
- get hu(): Brush;
4605
- set hu(a: Brush);
4606
- private g9;
4607
- get hd(): number;
4608
- set hd(a: number);
4609
- private hb;
4610
- get hf(): number;
4611
- set hf(a: number);
4633
+ private h3;
4634
+ get h9(): Brush;
4635
+ set h9(a: Brush);
4636
+ private h0;
4637
+ get h6(): Brush;
4638
+ set h6(a: Brush);
4639
+ private h4;
4640
+ get ia(): Brush;
4641
+ set ia(a: Brush);
4642
+ private h1;
4643
+ get h7(): Brush;
4644
+ set h7(a: Brush);
4645
+ private h2;
4646
+ get h8(): Brush;
4647
+ set h8(a: Brush);
4648
+ private hz;
4649
+ get h5(): Brush;
4650
+ set h5(a: Brush);
4612
4651
  private ha;
4613
4652
  get he(): number;
4614
4653
  set he(a: number);
4615
- private g8;
4616
- get hc(): number;
4617
- set hc(a: number);
4618
- private g5;
4619
- get g6(): boolean;
4620
- set g6(a: boolean);
4621
- private g2;
4622
- get g3(): GroupSummaryDisplayMode;
4623
- set g3(a: GroupSummaryDisplayMode);
4654
+ private hc;
4655
+ get hg(): number;
4656
+ set hg(a: number);
4657
+ private hb;
4658
+ get hf(): number;
4659
+ set hf(a: number);
4660
+ private g9;
4661
+ get hd(): number;
4662
+ set hd(a: number);
4663
+ private g6;
4664
+ get g7(): boolean;
4665
+ set g7(a: boolean);
4666
+ private g3;
4667
+ get g4(): GroupSummaryDisplayMode;
4668
+ set g4(a: GroupSummaryDisplayMode);
4624
4669
  sectionHeaderPropertyUpdating: (sectionHeader: SectionHeader, propertyName: string, propertyAnimationType: CellPropertyAnimationType, oldValue: any, newValue: any) => void;
4625
4670
  constructor();
4626
4671
  protected d4(a: CellPath, b: DataGrid, c: any): string;
@@ -4628,18 +4673,21 @@ export declare class SectionHeader extends DefinitionBase {
4628
4673
  protected gn(): Brush;
4629
4674
  eq(a: CellModel, b: DataGrid, c: any, d: any): void;
4630
4675
  en(a: CellModel, b: DataGrid, c: any, d: any): void;
4676
+ protected e4(): void;
4631
4677
  protected es(a: DataGrid, b: DataGrid): void;
4632
- private g7;
4633
- private hp;
4634
- private ho;
4678
+ private g8;
4679
+ private hu;
4680
+ private ht;
4635
4681
  protected eu(a: any, b: PropertyChangedEventArgs): void;
4636
- hr(): void;
4682
+ hx(): void;
4683
+ hy(): void;
4637
4684
  protected e8(): void;
4638
4685
  protected fk(): void;
4686
+ hw(): void;
4639
4687
  protected fl(): void;
4640
- hq(): void;
4688
+ hv(): void;
4641
4689
  protected ex(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
4642
- private g1;
4690
+ private g2;
4643
4691
  }
4644
4692
  /**
4645
4693
  * @hidden
@@ -4656,7 +4704,7 @@ export declare class RowSeparator extends DefinitionBase {
4656
4704
  protected eu(a: any, b: PropertyChangedEventArgs): void;
4657
4705
  protected n(a: CellPath): CellModel;
4658
4706
  protected gn(): Brush;
4659
- protected gt(): Brush;
4707
+ protected gu(): Brush;
4660
4708
  protected gq(): Brush;
4661
4709
  protected gr(): Brush;
4662
4710
  protected bj(): number;
@@ -4679,36 +4727,36 @@ export declare class HeaderRowSeparator extends DefinitionBase {
4679
4727
  */
4680
4728
  export declare abstract class SummaryRow extends DefinitionBase {
4681
4729
  static $t: Type;
4682
- private ht;
4683
- get hy(): Brush;
4684
- set hy(a: Brush);
4685
- private hr;
4686
- get hv(): Brush;
4687
- set hv(a: Brush);
4688
4730
  private hu;
4689
4731
  get hz(): Brush;
4690
4732
  set hz(a: Brush);
4691
4733
  private hs;
4692
4734
  get hw(): Brush;
4693
4735
  set hw(a: Brush);
4694
- private g2;
4736
+ private hv;
4737
+ get h0(): Brush;
4738
+ set h0(a: Brush);
4739
+ private ht;
4740
+ get hx(): Brush;
4741
+ set hx(a: Brush);
4742
+ private g3;
4695
4743
  get summaryNameTextStyle(): FontInfo;
4696
4744
  set summaryNameTextStyle(a: FontInfo);
4697
- private g1;
4698
- get g3(): FontInfo;
4699
- set g3(a: FontInfo);
4700
- private g7;
4701
- get hb(): number;
4702
- set hb(a: number);
4703
- private g9;
4704
- get hd(): number;
4705
- set hd(a: number);
4745
+ private g2;
4746
+ get g4(): FontInfo;
4747
+ set g4(a: FontInfo);
4706
4748
  private g8;
4707
4749
  get hc(): number;
4708
4750
  set hc(a: number);
4709
- private g6;
4710
- get ha(): number;
4711
- set ha(a: number);
4751
+ private ha;
4752
+ get he(): number;
4753
+ set he(a: number);
4754
+ private g9;
4755
+ get hd(): number;
4756
+ set hd(a: number);
4757
+ private g7;
4758
+ get hb(): number;
4759
+ set hb(a: number);
4712
4760
  constructor();
4713
4761
  protected d4(a: CellPath, b: DataGrid, c: any): string;
4714
4762
  protected n(a: CellPath): CellModel;
@@ -4716,16 +4764,15 @@ export declare abstract class SummaryRow extends DefinitionBase {
4716
4764
  en(a: CellModel, b: DataGrid, c: any, d: any): void;
4717
4765
  protected es(a: DataGrid, b: DataGrid): void;
4718
4766
  protected e4(): void;
4719
- protected hx(): Brush;
4720
- protected gu(): Brush;
4767
+ protected hy(): Brush;
4768
+ protected gv(): Brush;
4721
4769
  protected eu(a: any, b: PropertyChangedEventArgs): void;
4722
- protected ho(): void;
4723
4770
  protected hp(): void;
4724
- protected fl(): void;
4725
4771
  protected hq(): void;
4772
+ protected hr(): void;
4726
4773
  protected ex(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
4727
4774
  protected ak(): FontInfo;
4728
- protected g4(): FontInfo;
4775
+ protected g5(): FontInfo;
4729
4776
  }
4730
4777
  /**
4731
4778
  * @hidden
@@ -4735,10 +4782,11 @@ export declare class SummaryRowRoot extends SummaryRow {
4735
4782
  protected d4(a: CellPath, b: DataGrid, c: any): string;
4736
4783
  protected gn(): Brush;
4737
4784
  protected e8(): void;
4738
- protected ho(): void;
4739
4785
  protected hp(): void;
4740
- protected fk(): void;
4741
4786
  protected hq(): void;
4787
+ protected fk(): void;
4788
+ protected fl(): void;
4789
+ protected hr(): void;
4742
4790
  }
4743
4791
  /**
4744
4792
  * @hidden
@@ -4748,10 +4796,11 @@ export declare class SummaryRowSection extends SummaryRow {
4748
4796
  protected d4(a: CellPath, b: DataGrid, c: any): string;
4749
4797
  protected gn(): Brush;
4750
4798
  protected e8(): void;
4751
- protected ho(): void;
4752
4799
  protected hp(): void;
4753
- protected fk(): void;
4754
4800
  protected hq(): void;
4801
+ protected fk(): void;
4802
+ protected fl(): void;
4803
+ protected hr(): void;
4755
4804
  }
4756
4805
  /**
4757
4806
  * @hidden
@@ -4763,10 +4812,10 @@ export declare class TemplateColumn extends DataGridColumn {
4763
4812
  protected d4(a: CellPath, b: DataGrid, c: any): string;
4764
4813
  eq(a: CellModel, b: DataGrid, c: any, d: any): void;
4765
4814
  en(a: CellModel, b: DataGrid, c: any, d: any): void;
4766
- rx(a: TemplateCellModel, b: any): void;
4815
+ r8(a: TemplateCellModel, b: any): void;
4767
4816
  cellUpdating: (sender: any, args: TemplateCellUpdatingEventArgs) => void;
4768
4817
  protected ex(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
4769
- h0(): DataGridColumn;
4818
+ h1(): DataGridColumn;
4770
4819
  }
4771
4820
  /**
4772
4821
  * @hidden
@@ -4785,24 +4834,24 @@ export declare class TemplateCellUpdatingEventArgs extends EventArgs {
4785
4834
  */
4786
4835
  export declare class TextColumn extends DataGridColumn {
4787
4836
  static $t: Type;
4788
- private ry;
4789
- get r2(): string;
4790
- set r2(a: string);
4791
- get rw(): EditorType;
4792
- set rw(a: EditorType);
4793
- get rx(): any;
4794
- set rx(a: any);
4795
- get rz(): string;
4796
- set rz(a: string);
4797
- get r0(): string;
4798
- set r0(a: string);
4837
+ private r9;
4838
+ get sd(): string;
4839
+ set sd(a: string);
4840
+ get r7(): EditorType;
4841
+ set r7(a: EditorType);
4842
+ get r8(): any;
4843
+ set r8(a: any);
4844
+ get sa(): string;
4845
+ set sa(a: string);
4846
+ get sb(): string;
4847
+ set sb(a: string);
4799
4848
  protected n(a: CellPath): CellModel;
4800
4849
  eq(a: CellModel, b: DataGrid, c: any, d: any): void;
4801
4850
  en(a: CellModel, b: DataGrid, c: any, d: any): void;
4802
4851
  d1(a: DataGrid, b: any, c: any): string;
4803
- private r1;
4852
+ private sc;
4804
4853
  protected d4(a: CellPath, b: DataGrid, c: any): string;
4805
- h0(): DataGridColumn;
4854
+ h1(): DataGridColumn;
4806
4855
  }
4807
4856
  /**
4808
4857
  * @hidden