igniteui-webcomponents-data-grids 7.1.0-alpha.3 → 7.1.0-beta.1

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 (204) hide show
  1. package/bundles/igniteui-webcomponents-data-grids.umd.js +7956 -7387
  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 +1 -1
  13. package/esm2015/lib/CanvasTextCellPresenter.js +9 -9
  14. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +7 -7
  15. package/esm2015/lib/CellPresenterBase.js +38 -35
  16. package/esm2015/lib/CheckboxListBridge.js +8 -0
  17. package/esm2015/lib/CheckboxListView_combined.js +369 -335
  18. package/esm2015/lib/ColumnChooserView_combined.js +11 -11
  19. package/esm2015/lib/ColumnFilterCondition_combined.js +5218 -4964
  20. package/esm2015/lib/ColumnGroupingView_combined.js +4 -4
  21. package/esm2015/lib/ColumnPinningView_combined.js +5 -5
  22. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  23. package/esm2015/lib/ContentCellModelHelper.js +10 -10
  24. package/esm2015/lib/DataGridCellLayoutPanel.js +10 -10
  25. package/esm2015/lib/DataGridLocaleEn.js +8 -0
  26. package/esm2015/lib/DataGridScrollerKeyboardListener.js +16 -16
  27. package/esm2015/lib/DataGridToolbarView_combined.js +1 -1
  28. package/esm2015/lib/DateTimeCellPresenter.js +9 -9
  29. package/esm2015/lib/EditorCell.js +292 -292
  30. package/esm2015/lib/EditorCellPresenter.js +26 -26
  31. package/esm2015/lib/FilterCell.js +269 -269
  32. package/esm2015/lib/FilterCellPresenter.js +15 -15
  33. package/esm2015/lib/GridCellBase.js +167 -150
  34. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +8 -8
  35. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +5 -5
  36. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  37. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  38. package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
  39. package/esm2015/lib/GridColumnPinOptionsView_combined.js +1 -1
  40. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  41. package/esm2015/lib/GridExternalWrapper.js +6 -6
  42. package/esm2015/lib/GridFilterDialogView_combined.js +188 -173
  43. package/esm2015/lib/GridIconRepository.js +4 -4
  44. package/esm2015/lib/ISummaryChooserView_combined.js +5 -5
  45. package/esm2015/lib/ImageCell.js +57 -57
  46. package/esm2015/lib/ImageCellPresenter.js +15 -15
  47. package/esm2015/lib/MultiColumnComboBoxView_combined.js +5 -5
  48. package/esm2015/lib/NumericCell.js +8 -8
  49. package/esm2015/lib/NumericCellPresenter.js +9 -9
  50. package/esm2015/lib/PropertyEditorView_combined.js +19 -19
  51. package/esm2015/lib/SectionHeaderCell.js +20 -20
  52. package/esm2015/lib/SectionHeaderCellPresenter.js +10 -10
  53. package/esm2015/lib/SummaryCell.js +45 -45
  54. package/esm2015/lib/SummaryCellPresenter.js +10 -10
  55. package/esm2015/lib/TemplateCell.js +15 -15
  56. package/esm2015/lib/TemplateCellPresenter.js +3 -3
  57. package/esm2015/lib/TemplateHeader.js +2 -2
  58. package/esm2015/lib/TemplateHeaderCell.js +5 -5
  59. package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
  60. package/esm2015/lib/TemplateHeaderCellPresenter.js +3 -3
  61. package/esm2015/lib/TemplateSectionHeader.js +1 -1
  62. package/esm2015/lib/TextCell.js +29 -29
  63. package/esm2015/lib/TextCellPresenter.js +10 -10
  64. package/esm2015/lib/TextHeaderCell.js +184 -184
  65. package/esm2015/lib/TextHeaderCellPresenter.js +55 -52
  66. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  67. package/esm2015/lib/igc-cell-info.js +90 -81
  68. package/esm2015/lib/igc-checkbox-list-component.js +68 -58
  69. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  70. package/esm2015/lib/igc-data-grid-column-component.js +238 -214
  71. package/esm2015/lib/igc-data-grid-component.js +31 -0
  72. package/esm2015/lib/igc-data-grid-filter-dialog-component.js +44 -34
  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-editor-cell-info.js +23 -23
  76. package/esm2015/lib/igc-filter-cell-info.js +26 -26
  77. package/esm2015/lib/igc-image-cell-info.js +6 -6
  78. package/esm2015/lib/igc-image-column-component.js +12 -12
  79. package/esm2015/lib/igc-numeric-cell-info.js +35 -26
  80. package/esm2015/lib/igc-numeric-column-component.js +38 -38
  81. package/esm2015/lib/igc-section-header-cell-info.js +6 -6
  82. package/esm2015/lib/igc-section-header-component.js +32 -12
  83. package/esm2015/lib/igc-summary-cell-info.js +9 -9
  84. package/esm2015/lib/igc-template-cell-info.js +2 -2
  85. package/esm2015/lib/igc-template-header-cell-info.js +2 -2
  86. package/esm2015/lib/igc-text-cell-info.js +2 -2
  87. package/esm2015/lib/igc-text-column-component.js +9 -9
  88. package/esm2015/lib/igc-text-header-cell-info.js +44 -38
  89. package/esm5/lib/CanvasCellPresenterBase.js +4 -4
  90. package/esm5/lib/CanvasContentCellModelHelper.js +5 -5
  91. package/esm5/lib/CanvasDateTimeCellPresenter.js +8 -8
  92. package/esm5/lib/CanvasGridCellBase.js +2 -2
  93. package/esm5/lib/CanvasImageCellPresenter.js +7 -7
  94. package/esm5/lib/CanvasNumericCellPresenter.js +8 -8
  95. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  96. package/esm5/lib/CanvasSummaryCellPresenter.js +6 -6
  97. package/esm5/lib/CanvasTemplateCellPresenter.js +2 -2
  98. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +1 -1
  99. package/esm5/lib/CanvasTextCellPresenter.js +9 -9
  100. package/esm5/lib/CanvasTextHeaderCellPresenter.js +7 -7
  101. package/esm5/lib/CellPresenterBase.js +38 -35
  102. package/esm5/lib/CheckboxListBridge.js +8 -0
  103. package/esm5/lib/CheckboxListView_combined.js +359 -321
  104. package/esm5/lib/ColumnChooserView_combined.js +11 -11
  105. package/esm5/lib/ColumnFilterCondition_combined.js +5068 -4770
  106. package/esm5/lib/ColumnGroupingView_combined.js +4 -4
  107. package/esm5/lib/ColumnPinningView_combined.js +5 -5
  108. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  109. package/esm5/lib/ContentCellModelHelper.js +10 -10
  110. package/esm5/lib/DataGridCellLayoutPanel.js +10 -10
  111. package/esm5/lib/DataGridLocaleEn.js +8 -0
  112. package/esm5/lib/DataGridScrollerKeyboardListener.js +16 -16
  113. package/esm5/lib/DataGridToolbarView_combined.js +1 -1
  114. package/esm5/lib/DateTimeCellPresenter.js +9 -9
  115. package/esm5/lib/EditorCell.js +277 -277
  116. package/esm5/lib/EditorCellPresenter.js +26 -26
  117. package/esm5/lib/FilterCell.js +259 -259
  118. package/esm5/lib/FilterCellPresenter.js +15 -15
  119. package/esm5/lib/GridCellBase.js +164 -143
  120. package/esm5/lib/GridColumnFilterOptionsView_combined.js +8 -8
  121. package/esm5/lib/GridColumnGroupOptionsView_combined.js +5 -5
  122. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  123. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  124. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  125. package/esm5/lib/GridColumnPinOptionsView_combined.js +1 -1
  126. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  127. package/esm5/lib/GridExternalWrapper.js +6 -6
  128. package/esm5/lib/GridFilterDialogView_combined.js +183 -164
  129. package/esm5/lib/GridIconRepository.js +4 -4
  130. package/esm5/lib/ISummaryChooserView_combined.js +5 -5
  131. package/esm5/lib/ImageCell.js +57 -57
  132. package/esm5/lib/ImageCellPresenter.js +15 -15
  133. package/esm5/lib/MultiColumnComboBoxView_combined.js +5 -5
  134. package/esm5/lib/NumericCell.js +8 -8
  135. package/esm5/lib/NumericCellPresenter.js +9 -9
  136. package/esm5/lib/PropertyEditorView_combined.js +19 -19
  137. package/esm5/lib/SectionHeaderCell.js +20 -20
  138. package/esm5/lib/SectionHeaderCellPresenter.js +10 -10
  139. package/esm5/lib/SummaryCell.js +45 -45
  140. package/esm5/lib/SummaryCellPresenter.js +10 -10
  141. package/esm5/lib/TemplateCell.js +15 -15
  142. package/esm5/lib/TemplateCellPresenter.js +3 -3
  143. package/esm5/lib/TemplateHeader.js +2 -2
  144. package/esm5/lib/TemplateHeaderCell.js +5 -5
  145. package/esm5/lib/TemplateHeaderCellModel.js +17 -17
  146. package/esm5/lib/TemplateHeaderCellPresenter.js +3 -3
  147. package/esm5/lib/TemplateSectionHeader.js +1 -1
  148. package/esm5/lib/TextCell.js +29 -29
  149. package/esm5/lib/TextCellPresenter.js +10 -10
  150. package/esm5/lib/TextHeaderCell.js +182 -182
  151. package/esm5/lib/TextHeaderCellPresenter.js +55 -52
  152. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  153. package/esm5/lib/igc-cell-info.js +94 -81
  154. package/esm5/lib/igc-checkbox-list-component.js +72 -58
  155. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  156. package/esm5/lib/igc-data-grid-column-component.js +250 -214
  157. package/esm5/lib/igc-data-grid-component.js +43 -0
  158. package/esm5/lib/igc-data-grid-filter-dialog-component.js +48 -34
  159. package/esm5/lib/igc-date-time-cell-info.js +12 -12
  160. package/esm5/lib/igc-date-time-column-component.js +23 -23
  161. package/esm5/lib/igc-editor-cell-info.js +23 -23
  162. package/esm5/lib/igc-filter-cell-info.js +26 -26
  163. package/esm5/lib/igc-image-cell-info.js +6 -6
  164. package/esm5/lib/igc-image-column-component.js +12 -12
  165. package/esm5/lib/igc-numeric-cell-info.js +39 -26
  166. package/esm5/lib/igc-numeric-column-component.js +38 -38
  167. package/esm5/lib/igc-section-header-cell-info.js +6 -6
  168. package/esm5/lib/igc-section-header-component.js +40 -12
  169. package/esm5/lib/igc-summary-cell-info.js +9 -9
  170. package/esm5/lib/igc-template-cell-info.js +2 -2
  171. package/esm5/lib/igc-template-header-cell-info.js +2 -2
  172. package/esm5/lib/igc-text-cell-info.js +2 -2
  173. package/esm5/lib/igc-text-column-component.js +9 -9
  174. package/esm5/lib/igc-text-header-cell-info.js +48 -38
  175. package/fesm2015/igniteui-webcomponents-data-grids.js +8096 -7635
  176. package/fesm5/igniteui-webcomponents-data-grids.js +7956 -7387
  177. package/lib/CheckboxListExternal.d.ts +2 -0
  178. package/lib/CheckboxListView_combined.d.ts +98 -94
  179. package/lib/ColumnFilterCondition_combined.d.ts +1308 -1267
  180. package/lib/DataGridLocaleEn.d.ts +8 -0
  181. package/lib/EditorCell.d.ts +67 -67
  182. package/lib/FilterCell.d.ts +55 -55
  183. package/lib/GridCellBase.d.ts +64 -61
  184. package/lib/GridFilterDialogView_combined.d.ts +52 -49
  185. package/lib/ImageCell.d.ts +17 -17
  186. package/lib/NumericCell.d.ts +2 -2
  187. package/lib/SectionHeaderCell.d.ts +4 -4
  188. package/lib/SummaryCell.d.ts +10 -10
  189. package/lib/TemplateCell.d.ts +5 -5
  190. package/lib/TemplateHeaderCell.d.ts +2 -2
  191. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  192. package/lib/TemplateSectionHeader.d.ts +1 -1
  193. package/lib/TextCell.d.ts +7 -7
  194. package/lib/TextHeaderCell.d.ts +30 -30
  195. package/lib/VerticalSeparatorCell.d.ts +8 -8
  196. package/lib/igc-cell-info.d.ts +5 -0
  197. package/lib/igc-checkbox-list-component.d.ts +5 -0
  198. package/lib/igc-data-grid-column-component.d.ts +9 -0
  199. package/lib/igc-data-grid-component.d.ts +16 -0
  200. package/lib/igc-data-grid-filter-dialog-component.d.ts +5 -0
  201. package/lib/igc-numeric-cell-info.d.ts +5 -0
  202. package/lib/igc-section-header-component.d.ts +10 -0
  203. package/lib/igc-text-header-cell-info.d.ts +2 -0
  204. 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 hm: number;
499
+ static hn: number;
500
500
  private t;
501
501
  get u(): ModelStates;
502
502
  set u(a: ModelStates);
503
- private il;
504
- get lb(): string;
505
- set lb(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 mx;
535
+ private mz;
536
536
  static e7: number;
537
- get nk(): Brush;
538
- set nk(a: Brush);
539
- private my;
537
+ get nn(): Brush;
538
+ set nn(a: Brush);
539
+ private m0;
540
540
  static fa: number;
541
- get nl(): Brush;
542
- set nl(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 n3;
551
+ private n7;
552
552
  static fn: number;
553
- get n4(): Rect;
554
- set n4(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
- ma(propertyId_: number): void;
586
- l7(): void;
587
- mb(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 mi(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 ml(a: string, b: any, c: any): void;
595
- private mj;
596
- private md;
597
- private me;
594
+ protected mn(a: string, b: any, c: any): void;
595
+ private ml;
598
596
  private mf;
599
597
  private mg;
600
- private mk;
601
598
  private mh;
602
- private nq;
603
- mn(): void;
604
- protected mo(): void;
599
+ private mi;
600
+ private mm;
601
+ private mj;
602
+ private nu;
603
+ mp(): void;
604
+ protected mq(): void;
605
605
  private bx;
606
- mq(a: string, b: any): void;
606
+ ms(a: string, b: any): void;
607
607
  a3(a: string): boolean;
608
- mm(a: string): void;
609
- ie(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 id;
615
- get ii(): any;
616
- set ii(a: any);
617
- static readonly h9: 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 ia: number;
621
+ static readonly ib: number;
622
622
  private cn;
623
623
  get c9(): number;
624
624
  set c9(a: number);
625
- static readonly hh: number;
625
+ static readonly hi: number;
626
626
  private d7;
627
- get hg(): number;
628
- set hg(a: number);
629
- static readonly hj: number;
627
+ get hh(): number;
628
+ set hh(a: number);
629
+ static readonly hk: number;
630
630
  private d8;
631
- get hi(): number;
632
- set hi(a: number);
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
- mc(): 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 h2: 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 h3: 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 h8: number;
672
+ get ga(): number;
673
+ set ga(a: number);
674
+ static readonly h9: number;
675
675
  private d9;
676
- get h7(): number;
677
- set h7(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,110 +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 h5: 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 mw;
711
- get nj(): Brush;
712
- set nj(a: Brush);
713
- static readonly fi: number;
714
- private mz;
710
+ private my;
715
711
  get nm(): Brush;
716
712
  set nm(a: Brush);
713
+ static readonly fi: number;
714
+ private m1;
715
+ get np(): Brush;
716
+ set np(a: Brush);
717
717
  static readonly ek: number;
718
- private mt;
719
- get ng(): Brush;
720
- set ng(a: Brush);
718
+ private mv;
719
+ get nj(): Brush;
720
+ set nj(a: Brush);
721
721
  static readonly ep: number;
722
- private mu;
723
- get nh(): Brush;
724
- set nh(a: Brush);
722
+ private mw;
723
+ get nk(): Brush;
724
+ set nk(a: Brush);
725
725
  static readonly ee: number;
726
- private ms;
727
- get nf(): Brush;
728
- set nf(a: Brush);
726
+ private mu;
727
+ get ni(): Brush;
728
+ set ni(a: Brush);
729
729
  static readonly f1: number;
730
- private m1;
731
- get no(): Brush;
732
- set no(a: Brush);
733
- static readonly hd: number;
734
- private m7;
730
+ private m3;
731
+ get nr(): Brush;
732
+ set nr(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;
735
743
  get nv(): Brush;
736
744
  set nv(a: Brush);
737
- static readonly hf: number;
738
- private m8;
745
+ static readonly gf: number;
746
+ private m7;
739
747
  get nw(): Brush;
740
748
  set nw(a: Brush);
741
- static readonly gc: number;
742
- private m3;
743
- get nr(): Brush;
744
- set nr(a: Brush);
745
- static readonly ge: number;
746
- private m4;
747
- get ns(): Brush;
748
- set ns(a: Brush);
749
- static readonly hl: number;
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);
757
+ static readonly ha: number;
750
758
  private m9;
751
- get nx(): Brush;
752
- set nx(a: Brush);
753
- static readonly hn: number;
754
- private na;
755
759
  get ny(): Brush;
756
760
  set ny(a: Brush);
757
- static readonly g9: number;
758
- private m6;
759
- get nu(): Brush;
760
- set nu(a: Brush);
761
+ private m8;
762
+ static readonly gt: number;
763
+ get nx(): Brush;
764
+ set nx(a: Brush);
761
765
  private m5;
762
- static readonly gs: number;
766
+ static readonly f7: number;
763
767
  get nt(): Brush;
764
768
  set nt(a: Brush);
765
- private m2;
766
- static readonly f6: number;
767
- get np(): Brush;
768
- set np(a: Brush);
769
- static readonly ha: number;
769
+ static readonly hb: number;
770
770
  private cc;
771
771
  get cy(): number;
772
772
  set cy(a: number);
773
- static readonly gy: number;
774
- private ic;
775
- get ih(): any;
776
- set ih(a: any);
777
- static readonly hb: number;
778
- private ik;
779
- get kz(): string;
780
- set kz(a: string);
781
- static readonly h4: number;
782
- private iq;
783
- get lw(): string;
784
- set lw(a: string);
785
- static readonly h0: number;
786
- private ne;
787
- get n2(): Brush;
788
- set n2(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);
789
789
  static readonly e5: number;
790
- private mv;
791
- get ni(): Brush;
792
- set ni(a: Brush);
790
+ private mx;
791
+ get nl(): Brush;
792
+ set nl(a: Brush);
793
793
  static readonly fr: number;
794
- private m0;
795
- get nn(): Brush;
796
- set nn(a: Brush);
797
- static readonly f7: number;
794
+ private m2;
795
+ get nq(): Brush;
796
+ set nq(a: Brush);
797
+ static readonly f8: number;
798
798
  private af;
799
799
  get aj(): FontInfo;
800
800
  set aj(a: FontInfo);
@@ -802,82 +802,82 @@ export declare abstract class CellModel extends Base {
802
802
  private ad;
803
803
  get ah(): FontInfo;
804
804
  set ah(a: FontInfo);
805
- static readonly hz: number;
806
- private ip;
807
- get ln(): string;
808
- set ln(a: string);
809
- static readonly hx: number;
810
- private nd;
811
- get n1(): Brush;
812
- set n1(a: Brush);
805
+ static readonly h0: number;
806
+ private iq;
807
+ get lp(): string;
808
+ set lp(a: string);
813
809
  static readonly hy: number;
810
+ private ng;
811
+ get n5(): Brush;
812
+ set n5(a: Brush);
813
+ static readonly hz: number;
814
814
  private ag;
815
815
  get ak(): FontInfo;
816
816
  set ak(a: FontInfo);
817
- static readonly hq: number;
818
- private io;
819
- get lf(): string;
820
- set lf(a: string);
821
- static readonly ho: number;
822
- private im;
823
- get lc(): string;
824
- set lc(a: string);
825
817
  static readonly hr: number;
826
- private nc;
827
- get n0(): Brush;
828
- set n0(a: Brush);
818
+ private ip;
819
+ get lh(): string;
820
+ set lh(a: string);
829
821
  static readonly hp: number;
830
- private nb;
831
- get nz(): Brush;
832
- set nz(a: Brush);
833
- static readonly ht: number;
822
+ private io;
823
+ get le(): string;
824
+ set le(a: string);
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;
834
834
  private cf;
835
835
  get c1(): number;
836
836
  set c1(a: number);
837
- static readonly hu: number;
837
+ static readonly hv: number;
838
838
  private cg;
839
839
  get c2(): number;
840
840
  set c2(a: number);
841
- static readonly hv: number;
841
+ static readonly hw: number;
842
842
  private ch;
843
843
  get c3(): number;
844
844
  set c3(a: number);
845
- static readonly hs: number;
845
+ static readonly ht: number;
846
846
  private ce;
847
847
  get c0(): number;
848
848
  set c0(a: number);
849
- static readonly hw: number;
849
+ static readonly hx: number;
850
850
  private ci;
851
851
  get c4(): number;
852
852
  set c4(a: number);
853
- static readonly h1: number;
853
+ static readonly h2: number;
854
854
  private z;
855
855
  get aa(): TextCellDecoration;
856
856
  set aa(a: TextCellDecoration);
857
- static readonly gv: number;
857
+ static readonly gw: number;
858
858
  private ab;
859
859
  get ac(): TextCellLineBreakMode;
860
860
  set ac(a: TextCellLineBreakMode);
861
- static readonly h6: number;
861
+ static readonly h7: number;
862
862
  private cl;
863
863
  get c7(): number;
864
864
  set c7(a: number);
865
- static readonly g2: number;
865
+ static readonly g3: number;
866
866
  private d4;
867
- get g1(): number;
868
- set g1(a: number);
869
- static readonly g6: number;
867
+ get g2(): number;
868
+ set g2(a: number);
869
+ static readonly g7: number;
870
870
  private d6;
871
- get g5(): number;
872
- set g5(a: number);
873
- static readonly g4: number;
871
+ get g6(): number;
872
+ set g6(a: number);
873
+ static readonly g5: number;
874
874
  private d5;
875
- get g3(): number;
876
- set g3(a: number);
877
- static readonly g0: number;
875
+ get g4(): number;
876
+ set g4(a: number);
877
+ static readonly g1: number;
878
878
  private d3;
879
- get gz(): number;
880
- set gz(a: number);
879
+ get g0(): number;
880
+ set g0(a: number);
881
881
  static readonly e0: number;
882
882
  private dj;
883
883
  get ez(): number;
@@ -958,19 +958,23 @@ export declare abstract class CellModel extends Base {
958
958
  private de;
959
959
  get el(): number;
960
960
  set el(a: number);
961
- static readonly hk: number;
961
+ static readonly hl: number;
962
962
  private m;
963
963
  get n(): ColumnSortDirection;
964
964
  set n(a: ColumnSortDirection);
965
- static readonly gl: number;
965
+ static readonly gm: number;
966
966
  private ar;
967
967
  get be(): boolean;
968
968
  set be(a: boolean);
969
- static readonly gi: number;
969
+ static readonly gj: number;
970
970
  private ao;
971
971
  get a6(): boolean;
972
972
  set a6(a: boolean);
973
- 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;
974
978
  private x;
975
979
  get y(): PinnedPositions;
976
980
  set y(a: PinnedPositions);
@@ -978,18 +982,18 @@ export declare abstract class CellModel extends Base {
978
982
  private ae;
979
983
  get ai(): FontInfo;
980
984
  set ai(a: FontInfo);
981
- static readonly gk: number;
985
+ static readonly gl: number;
982
986
  private aq;
983
987
  get bd(): boolean;
984
988
  set bd(a: boolean);
985
- static readonly gj: number;
989
+ static readonly gk: number;
986
990
  private ap;
987
991
  get ba(): boolean;
988
992
  set ba(a: boolean);
989
993
  static readonly ft: number;
990
- private ij;
991
- get jr(): string;
992
- set jr(a: string);
994
+ private ik;
995
+ get js(): string;
996
+ set js(a: string);
993
997
  bj: boolean;
994
998
  private du;
995
999
  get fv(): number;
@@ -997,24 +1001,24 @@ export declare abstract class CellModel extends Base {
997
1001
  private at;
998
1002
  get bg(): boolean;
999
1003
  set bg(a: boolean);
1000
- ib: number;
1001
- l5(): void;
1002
- protected l6(): void;
1004
+ ic: number;
1005
+ l7(): void;
1006
+ protected l8(): void;
1003
1007
  propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
1004
1008
  b(a: CellModelExport): CellModelExport;
1005
1009
  private static bz;
1006
- protected l9(): void;
1010
+ protected mb(): void;
1007
1011
  private static bw;
1008
1012
  private b0;
1009
- protected l8(): void;
1010
- l3(a: string): Type;
1013
+ protected ma(): void;
1014
+ l5(a: string): Type;
1015
+ mt(a: string, b: any): void;
1016
+ ih(a: string): any;
1011
1017
  mr(a: string, b: any): void;
1012
- ig(a: string): any;
1013
- mp(a: string, b: any): void;
1014
1018
  cellReconciling: (model: CellModel) => void;
1015
1019
  bq(a: DataSourceRowType): boolean;
1016
- j2(): string;
1017
- l4(a: List$1<GridConditionalStyle>): void;
1020
+ j4(): string;
1021
+ l6(a: List$1<GridConditionalStyle>): void;
1018
1022
  }
1019
1023
  /**
1020
1024
  * @hidden
@@ -1022,42 +1026,42 @@ export declare abstract class CellModel extends Base {
1022
1026
  export declare class DateTimeCellModel extends CellModel {
1023
1027
  static $t: Type;
1024
1028
  constructor();
1025
- static readonly oh: number;
1026
- private oe;
1027
- get of(): Date;
1028
- set of(a: Date);
1029
- static readonly ok: number;
1030
- private oq;
1031
- get ow(): string;
1032
- set ow(a: string);
1033
- static readonly oj: number;
1034
- private n5;
1035
- get n6(): any[];
1036
- set n6(a: any[]);
1037
- n7: BindingFormatter;
1038
- private oo;
1039
- static readonly oi: number;
1040
- private _formatOverride;
1041
- get op(): any;
1042
- set op(a: any);
1043
- static readonly og: number;
1044
- private oa;
1045
- get ob(): DateTimeFormats;
1046
- set ob(a: DateTimeFormats);
1047
- ot(a: Date): string;
1048
- j2(): string;
1049
1029
  static readonly ol: number;
1050
- private n8;
1051
- get n9(): DateTimeColumnValueFormatter;
1052
- set n9(a: DateTimeColumnValueFormatter);
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;
1053
1043
  static readonly om: number;
1044
+ private _formatOverride;
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
1054
  private oc;
1055
- get od(): boolean;
1056
- set od(a: boolean);
1057
- protected ml(a: string, b: any, c: any): void;
1058
- mr(a: string, b: any): void;
1059
- l3(a: string): Type;
1060
- ig(a: string): any;
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;
1061
1065
  b(a: CellModelExport): CellModelExport;
1062
1066
  }
1063
1067
  /**
@@ -1066,102 +1070,102 @@ export declare class DateTimeCellModel extends CellModel {
1066
1070
  export declare class EditorCellModel extends CellModel {
1067
1071
  static $t: Type;
1068
1072
  constructor();
1069
- private ok;
1070
- private oj;
1071
- private oe;
1072
- static ou: number;
1073
- get oh(): boolean;
1074
- private n9;
1075
- static or: number;
1076
- get oa(): CellModel;
1077
- set oa(a: CellModel);
1078
- private n7;
1079
- static ol: number;
1080
- get n8(): DataSourceSchemaPropertyType;
1081
- set n8(a: DataSourceSchemaPropertyType);
1082
- private o3;
1083
- static os: number;
1084
- get pd(): string;
1085
- set pd(a: string);
1086
- o0: any;
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);
1087
1082
  private ob;
1088
1083
  static op: number;
1089
- get oc(): EditorType;
1090
- set oc(a: EditorType);
1091
- private oy;
1092
- static on: number;
1093
- get oz(): any;
1094
- set oz(a: any);
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
1095
  private o2;
1096
- static oo: number;
1097
- get o8(): string;
1098
- set o8(a: string);
1099
- private n5;
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);
1100
1111
  static oq: number;
1101
- get n6(): string[];
1102
- set n6(a: string[]);
1103
- static ot: number;
1104
- private od;
1105
- get og(): boolean;
1106
- set og(a: boolean);
1107
- static om: number;
1108
- private o1;
1109
- get o5(): string;
1110
- set o5(a: string);
1111
- static readonly ov: number;
1112
- private of;
1113
- get oi(): boolean;
1114
- set oi(a: boolean);
1115
- get ox(): number;
1116
- get ow(): number;
1117
- protected mo(): void;
1118
- protected ml(a: string, b: any, c: any): void;
1119
- l3(a: string): Type;
1120
- mr(a: string, b: any): void;
1121
- ig(a: string): any;
1112
+ private o5;
1113
+ get o9(): string;
1114
+ set o9(a: string);
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;
1122
1126
  b(a: CellModelExport): CellModelExport;
1123
- private pi;
1127
+ private pm;
1124
1128
  }
1125
1129
  /**
1126
1130
  * @hidden
1127
1131
  */
1128
1132
  export declare class FilterCellModel extends CellModel {
1129
1133
  static $t: Type;
1130
- static readonly on: number;
1131
- private n9;
1132
- get oa(): DataSourceSchemaPropertyType;
1133
- set oa(a: DataSourceSchemaPropertyType);
1134
- static readonly oq: number;
1135
- private n7;
1136
- get n8(): ColumnFilterCondition;
1137
- set n8(a: ColumnFilterCondition);
1138
- static readonly oo: number;
1139
- private ob;
1140
- get oc(): IFilterExpression;
1141
- set oc(a: IFilterExpression);
1142
- static readonly op: number;
1134
+ static readonly or: number;
1143
1135
  private od;
1144
- get oe(): GridFilterOperandsCollection;
1145
- set oe(a: GridFilterOperandsCollection);
1146
- static or: number;
1136
+ get oe(): DataSourceSchemaPropertyType;
1137
+ set oe(a: DataSourceSchemaPropertyType);
1138
+ static readonly ou: number;
1139
+ private ob;
1140
+ get oc(): ColumnFilterCondition;
1141
+ set oc(a: ColumnFilterCondition);
1142
+ static readonly os: number;
1147
1143
  private of;
1148
- get og(): boolean;
1149
- set og(a: boolean);
1150
- private n5;
1151
- get n6(): ColumnComparisonConditionOperatorType;
1152
- set n6(a: ColumnComparisonConditionOperatorType);
1153
- os: any;
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;
1154
1162
  om: number;
1155
1163
  ol: number;
1156
- ok: number;
1157
- oj: number;
1158
- oi: number;
1159
- oh: number;
1160
1164
  constructor();
1165
+ mt(a: string, b: any): void;
1166
+ l5(a: string): Type;
1167
+ ih(a: string): any;
1161
1168
  mr(a: string, b: any): void;
1162
- l3(a: string): Type;
1163
- ig(a: string): any;
1164
- mp(a: string, b: any): void;
1165
1169
  b(a: CellModelExport): CellModelExport;
1166
1170
  }
1167
1171
  /**
@@ -1177,22 +1181,22 @@ export declare class EditorRowCellModel extends CellModel {
1177
1181
  export declare class SummaryCellModel extends CellModel {
1178
1182
  static $t: Type;
1179
1183
  constructor();
1180
- static readonly n7: number;
1181
- private ob;
1182
- get od(): string;
1183
- set od(a: string);
1184
- static readonly n8: number;
1185
- private oc;
1186
- get of(): string;
1187
- set of(a: string);
1188
- static readonly oa: number;
1189
- private oj;
1190
- get ok(): Brush;
1191
- set ok(a: Brush);
1192
- static readonly n9: number;
1193
- private n5;
1194
- get n6(): FontInfo;
1195
- set n6(a: FontInfo);
1184
+ static readonly ob: number;
1185
+ private of;
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);
1196
1200
  b(a: CellModelExport): CellModelExport;
1197
1201
  bq(a: DataSourceRowType): boolean;
1198
1202
  }
@@ -1209,22 +1213,22 @@ export declare class VerticalSeparatorCellModel extends CellModel {
1209
1213
  export declare class ImageCellModel extends CellModel {
1210
1214
  static $t: Type;
1211
1215
  constructor();
1212
- static readonly n9: number;
1213
- private oc;
1214
- get od(): string;
1215
- set od(a: string);
1216
- static readonly ob: number;
1217
- private n7;
1218
- get n8(): ImageStretchOptions;
1219
- set n8(a: ImageStretchOptions);
1220
- static readonly oa: number;
1221
- private n5;
1222
- get n6(): ImageResourceType;
1223
- set n6(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);
1224
1228
  b(a: CellModelExport): CellModelExport;
1225
- mr(a: string, b: any): void;
1226
- l3(a: string): Type;
1227
- ig(a: string): any;
1229
+ mt(a: string, b: any): void;
1230
+ l5(a: string): Type;
1231
+ ih(a: string): any;
1228
1232
  }
1229
1233
  /**
1230
1234
  * @hidden
@@ -1232,67 +1236,71 @@ export declare class ImageCellModel extends CellModel {
1232
1236
  export declare class NumericCellModel extends CellModel {
1233
1237
  static $t: Type;
1234
1238
  constructor();
1235
- static readonly ou: number;
1236
- private od;
1237
- get oe(): number;
1238
- set oe(a: number);
1239
- static readonly ol: number;
1240
- private n8;
1241
- get oa(): boolean;
1242
- set oa(a: boolean);
1243
- static readonly ok: number;
1244
- private o1;
1245
- get o8(): string;
1246
- set o8(a: string);
1247
- static readonly oj: number;
1248
- private n5;
1249
- get n6(): any[];
1250
- set n6(a: any[]);
1251
- n7: BindingFormatter;
1252
- private oz;
1253
- static readonly oi: number;
1254
- private _formatOverride;
1255
- get o0(): any;
1256
- set o0(a: any);
1257
- static readonly os: number;
1258
- private o2;
1259
- get pe(): string;
1260
- set pe(a: string);
1261
- static readonly ov: number;
1262
- private o4;
1263
- get pj(): string;
1264
- set pj(a: string);
1265
- static readonly ot: number;
1266
- private o3;
1267
- get pg(): string;
1268
- set pg(a: string);
1269
- static readonly ow: number;
1270
- private o5;
1271
- get pl(): string;
1272
- set pl(a: string);
1273
- static readonly on: number;
1274
- private of;
1275
- get om(): number;
1276
- set om(a: number);
1277
- static readonly op: number;
1278
- private og;
1279
- get oo(): number;
1280
- set oo(a: number);
1239
+ static readonly o1: number;
1240
+ private oj;
1241
+ get ok(): number;
1242
+ set ok(a: number);
1281
1243
  static readonly or: number;
1282
- private oh;
1283
- get oq(): number;
1284
- set oq(a: number);
1285
- static readonly ox: number;
1244
+ private oc;
1245
+ get of(): boolean;
1246
+ set of(a: boolean);
1247
+ static readonly oq: number;
1248
+ private o8;
1249
+ get pf(): string;
1250
+ set pf(a: string);
1251
+ static readonly op: number;
1286
1252
  private n9;
1287
- get oc(): boolean;
1288
- set oc(a: boolean);
1289
- ob(): boolean;
1290
- protected ml(a: string, b: any, c: any): void;
1291
- mr(a: string, b: any): void;
1292
- l3(a: string): Type;
1293
- ig(a: string): any;
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);
1293
+ static readonly os: number;
1294
+ private od;
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;
1294
1302
  b(a: CellModelExport): CellModelExport;
1295
- j2(): string;
1303
+ j4(): string;
1296
1304
  }
1297
1305
  /**
1298
1306
  * @hidden
@@ -1308,29 +1316,29 @@ export declare class RowSeparatorModel extends CellModel {
1308
1316
  export declare class SectionHeaderCellModel extends CellModel {
1309
1317
  static $t: Type;
1310
1318
  constructor();
1311
- static readonly ob: number;
1312
- private n5;
1313
- get n7(): GroupData[];
1314
- set n7(a: GroupData[]);
1315
- static readonly oe: number;
1316
- private n6;
1317
- get n8(): SummaryData[];
1318
- set n8(a: SummaryData[]);
1319
- static readonly od: number;
1320
- private oh;
1321
- get ol(): string;
1322
- set ol(a: string);
1323
- static readonly oc: number;
1324
- private og;
1325
- get oj(): string;
1326
- set oj(a: string);
1327
1319
  static readonly of: number;
1328
1320
  private n9;
1329
- get oa(): GroupSummaryDisplayMode;
1330
- set oa(a: GroupSummaryDisplayMode);
1331
- mr(a: string, b: any): void;
1332
- l3(a: string): Type;
1333
- ig(a: string): any;
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;
1336
+ private od;
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;
1334
1342
  b(a: CellModelExport): CellModelExport;
1335
1343
  bq(a: DataSourceRowType): boolean;
1336
1344
  }
@@ -1340,13 +1348,13 @@ export declare class SectionHeaderCellModel extends CellModel {
1340
1348
  export declare class TemplateCellModel extends CellModel {
1341
1349
  static $t: Type;
1342
1350
  constructor();
1343
- static readonly n5: number;
1344
- private n6;
1345
- get n7(): any;
1346
- set n7(a: any);
1347
- mr(a: string, b: any): void;
1348
- l3(a: string): Type;
1349
- ig(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;
1350
1358
  b(a: CellModelExport): CellModelExport;
1351
1359
  }
1352
1360
  /**
@@ -1355,15 +1363,15 @@ export declare class TemplateCellModel extends CellModel {
1355
1363
  export declare class TextCellModel extends CellModel {
1356
1364
  static $t: Type;
1357
1365
  constructor();
1358
- static readonly n5: number;
1359
- private n6;
1360
- get n7(): string;
1361
- set n7(a: string);
1362
- mr(a: string, b: any): void;
1363
- l3(a: string): Type;
1364
- ig(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;
1365
1373
  b(a: CellModelExport): CellModelExport;
1366
- j2(): string;
1374
+ j4(): string;
1367
1375
  }
1368
1376
  /**
1369
1377
  * @hidden
@@ -1371,81 +1379,85 @@ export declare class TextCellModel extends CellModel {
1371
1379
  export declare class TextHeaderCellModel extends TextCellModel {
1372
1380
  static $t: Type;
1373
1381
  constructor();
1374
- static readonly o5: number;
1375
- private ol;
1376
- get om(): boolean;
1377
- set om(a: boolean);
1378
- static readonly o6: number;
1382
+ static readonly pa: number;
1383
+ private op;
1384
+ get oq(): boolean;
1385
+ set oq(a: boolean);
1386
+ static readonly pb: number;
1387
+ private oh;
1388
+ get oi(): SortIndicatorStyle;
1389
+ set oi(a: SortIndicatorStyle);
1390
+ static readonly oz: number;
1379
1391
  private od;
1380
- get oe(): SortIndicatorStyle;
1381
- set oe(a: SortIndicatorStyle);
1382
- static readonly ov: number;
1383
- private n9;
1384
- get oa(): ColumnOptionsIconAlignment;
1385
- set oa(a: ColumnOptionsIconAlignment);
1386
- static readonly ox: number;
1387
- private pv;
1388
- get p5(): Brush;
1389
- set p5(a: Brush);
1390
- static readonly ow: number;
1391
- private ob;
1392
- get oc(): ColumnOptionsIconBehavior;
1393
- set oc(a: ColumnOptionsIconBehavior);
1394
- static readonly o3: number;
1395
- private of;
1396
- get og(): BaseControlTheme;
1397
- set og(a: BaseControlTheme);
1398
- static readonly op: number;
1399
- private pq;
1400
- get p0(): Brush;
1401
- set p0(a: Brush);
1392
+ get oe(): ColumnOptionsIconAlignment;
1393
+ set oe(a: ColumnOptionsIconAlignment);
1402
1394
  static readonly o1: number;
1403
- private px;
1395
+ private p1;
1396
+ get qc(): Brush;
1397
+ set qc(a: Brush);
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;
1407
+ private pw;
1404
1408
  get p7(): Brush;
1405
1409
  set p7(a: Brush);
1406
- static readonly o2: number;
1407
- private oi;
1408
- get ok(): FontInfo;
1409
- set ok(a: FontInfo);
1410
- static readonly ou: number;
1411
- private pu;
1412
- get p4(): Brush;
1413
- set p4(a: Brush);
1410
+ static readonly o5: number;
1411
+ private p3;
1412
+ get qe(): Brush;
1413
+ set qe(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 p0;
1420
+ get qb(): Brush;
1421
+ set qb(a: Brush);
1422
+ static readonly o8: number;
1423
+ private p4;
1424
+ get qf(): Brush;
1425
+ set qf(a: Brush);
1426
+ static readonly o9: number;
1427
+ private p5;
1428
+ get qg(): Brush;
1429
+ set qg(a: Brush);
1430
+ static readonly ox: number;
1431
+ private pz;
1432
+ get qa(): Brush;
1433
+ set qa(a: Brush);
1414
1434
  static readonly o4: number;
1415
- private py;
1435
+ private p2;
1436
+ get qd(): Brush;
1437
+ set qd(a: Brush);
1438
+ static readonly ou: number;
1439
+ private px;
1416
1440
  get p8(): Brush;
1417
1441
  set p8(a: Brush);
1418
- static readonly ot: number;
1419
- private pt;
1420
- get p3(): Brush;
1421
- set p3(a: Brush);
1422
- static readonly o0: number;
1423
- private pw;
1424
- get p6(): Brush;
1425
- set p6(a: Brush);
1426
- static readonly oq: number;
1427
- private pr;
1428
- get p1(): Brush;
1429
- set p1(a: Brush);
1430
- static readonly or: number;
1431
- private ps;
1432
- get p2(): Brush;
1433
- set p2(a: Brush);
1442
+ static readonly ov: number;
1443
+ private py;
1444
+ get p9(): Brush;
1445
+ set p9(a: Brush);
1446
+ static readonly ow: number;
1447
+ private ol;
1448
+ get on(): FontInfo;
1449
+ set on(a: FontInfo);
1434
1450
  static readonly os: number;
1435
- private oh;
1436
- get oj(): FontInfo;
1437
- set oj(a: FontInfo);
1438
- static readonly oo: number;
1439
- private pp;
1440
- get pz(): Brush;
1441
- set pz(a: Brush);
1442
- static readonly oz: number;
1443
- private on;
1444
- get oy(): number;
1445
- set oy(a: number);
1446
- mr(a: string, b: any): void;
1447
- l3(a: string): Type;
1448
- ig(a: string): any;
1451
+ private pv;
1452
+ get p6(): Brush;
1453
+ set p6(a: Brush);
1454
+ static readonly o3: number;
1455
+ private or;
1456
+ get o2(): number;
1457
+ set o2(a: number);
1458
+ mt(a: string, b: any): void;
1459
+ l5(a: string): Type;
1460
+ ih(a: string): any;
1449
1461
  b(a: CellModelExport): CellModelExport;
1450
1462
  }
1451
1463
  /**
@@ -1691,7 +1703,7 @@ export declare class EditingManager extends Base {
1691
1703
  */
1692
1704
  export declare class DataGrid extends Base implements INotifyPropertyChanged {
1693
1705
  static $t: Type;
1694
- private o6;
1706
+ private o8;
1695
1707
  get externalObject(): any;
1696
1708
  set externalObject(a: any);
1697
1709
  private _propertySetter;
@@ -1717,43 +1729,43 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
1717
1729
  set theme(a: BaseControlTheme);
1718
1730
  columnExchangingAnimationCompleted: (sender: any, e: EventArgs) => void;
1719
1731
  columnExchangingAnimationCanceled: (sender: any, e: EventArgs) => void;
1720
- xb(a: DataGridColumn): void;
1721
- xa(a: DataGridColumn): void;
1732
+ xg(a: DataGridColumn): void;
1733
+ xf(a: DataGridColumn): void;
1722
1734
  columnShowingAnimationCompleted: (sender: any, e: EventArgs) => void;
1723
1735
  columnShowingAnimationCanceled: (sender: any, e: EventArgs) => void;
1724
1736
  p(a: CellModel): ColumnFilterCondition;
1725
1737
  r(a: CellModel): DataSourceSchemaPropertyType;
1726
- xl(a: DataGridColumn): void;
1738
+ xq(a: DataGridColumn): void;
1727
1739
  filterExpressionsChanging: (sender: any, args: GridFilterExpressionsEventArgs) => void;
1728
1740
  filterExpressionsChanged: (sender: any, args: GridFilterExpressionsEventArgs) => void;
1729
- vl(a: CellModel, b: ColumnFilterCondition): void;
1730
- vk(a: CellModel, b: ColumnFilterCondition): void;
1731
- xk(a: DataGridColumn): void;
1741
+ vq(a: CellModel, b: ColumnFilterCondition): void;
1742
+ vp(a: CellModel, b: ColumnFilterCondition): void;
1743
+ xp(a: DataGridColumn): void;
1732
1744
  columnMovingAnimationCompleted: (sender: any, e: EventArgs) => void;
1733
1745
  columnMovingAnimationCanceled: (sender: any, e: EventArgs) => void;
1734
- xh(a: DataGridColumn): void;
1735
- xg(a: DataGridColumn): void;
1746
+ xm(a: DataGridColumn): void;
1747
+ xl(a: DataGridColumn): void;
1736
1748
  columnHidingAnimationCompleted: (sender: any, e: EventArgs) => void;
1737
1749
  columnHidingAnimationCanceled: (sender: any, e: EventArgs) => void;
1738
- xd(a: DataGridColumn): void;
1739
- xc(a: DataGridColumn): void;
1750
+ xi(a: DataGridColumn): void;
1751
+ xh(a: DataGridColumn): void;
1740
1752
  cellPreviewPointerDown: (sender: any, args: DataGridCellEventArgs) => void;
1741
- w5(a: CellModel): void;
1753
+ xa(a: CellModel): void;
1742
1754
  cellPreviewPointerUp: (sender: any, args: DataGridCellEventArgs) => void;
1743
- w6(a: CellModel): void;
1755
+ xb(a: CellModel): void;
1744
1756
  cellPointerDown: (sender: any, args: DataGridCellEventArgs) => void;
1745
- w3(a: CellModel): void;
1757
+ w8(a: CellModel): void;
1746
1758
  cellPointerUp: (sender: any, args: DataGridCellEventArgs) => void;
1747
- w4(a: CellModel): void;
1748
- ye(a: number, b: string): void;
1759
+ w9(a: CellModel): void;
1760
+ yj(a: number, b: string): void;
1749
1761
  cellClicked: (sender: any, args: DataGridCellEventArgs) => void;
1750
- x0(a: CellModel): void;
1751
- aaa(a: number): void;
1752
- private nf;
1753
- xz(a: EditorCellModel): void;
1754
- ww(a: CellModel, b: MouseButton): void;
1755
- wu(a: CellModel, b: boolean, c: boolean, d: MouseButton): void;
1756
- private yx;
1762
+ x5(a: CellModel): void;
1763
+ aaf(a: number): void;
1764
+ private nh;
1765
+ x4(a: EditorCellModel): void;
1766
+ w1(a: CellModel, b: MouseButton): void;
1767
+ wz(a: CellModel, b: boolean, c: boolean, d: MouseButton): void;
1768
+ private y2;
1757
1769
  private bs;
1758
1770
  get columnResizingMode(): ColumnResizingMode;
1759
1771
  set columnResizingMode(a: ColumnResizingMode);
@@ -1761,103 +1773,103 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
1761
1773
  get columnMovingMode(): ColumnMovingMode;
1762
1774
  set columnMovingMode(a: ColumnMovingMode);
1763
1775
  e4: HoverManager;
1764
- private ie;
1776
+ private ig;
1765
1777
  get isRowHoverEnabled(): boolean;
1766
1778
  set isRowHoverEnabled(a: boolean);
1767
- private abg;
1779
+ private abm;
1768
1780
  get rowHoverBackground(): Brush;
1769
1781
  set rowHoverBackground(a: Brush);
1770
- private abh;
1782
+ private abn;
1771
1783
  get rowHoverTextColor(): Brush;
1772
1784
  set rowHoverTextColor(a: Brush);
1773
- private aa8;
1785
+ private abe;
1774
1786
  get editRowBorder(): Brush;
1775
1787
  set editRowBorder(a: Brush);
1776
- private adh;
1788
+ private adq;
1777
1789
  get editRowBorderWidth(): Thickness;
1778
1790
  set editRowBorderWidth(a: Thickness);
1779
- adb: Point;
1791
+ adk: Point;
1780
1792
  as: CellPath;
1781
1793
  ap: CellPath;
1782
- private h3;
1783
- w1(a: CellModel, b: number, c: number): void;
1784
- w2(a: CellModel, b: number, c: number): void;
1785
- w0(a: CellModel, b: number, c: number): void;
1786
- x6(a: CellModel, b: boolean, c: boolean, d: MouseButton): void;
1787
- x7(a: CellModel, b: boolean, c: boolean, d: MouseButton): void;
1788
- private jn;
1789
- private nk;
1790
- private get ov();
1791
- private set ov(value);
1792
- wz(a: CellModel, b: number, c: number): void;
1793
- x5(a: CellModel, b: number, c: number): void;
1794
- private ns;
1794
+ private h4;
1795
+ w6(a: CellModel, b: number, c: number): void;
1796
+ w7(a: CellModel, b: number, c: number): void;
1797
+ w5(a: CellModel, b: number, c: number): void;
1798
+ yb(a: CellModel, b: boolean, c: boolean, d: MouseButton): void;
1799
+ yc(a: CellModel, b: boolean, c: boolean, d: MouseButton): void;
1800
+ private jp;
1801
+ private nm;
1802
+ private get ox();
1803
+ private set ox(value);
1804
+ w4(a: CellModel, b: number, c: number): void;
1805
+ ya(a: CellModel, b: number, c: number): void;
1806
+ private nu;
1807
+ private im;
1795
1808
  private il;
1796
- private ik;
1797
1809
  private hs;
1798
- private mk;
1810
+ private mm;
1811
+ private mt;
1799
1812
  private mr;
1800
- private mp;
1801
- private mq;
1802
- private l6;
1803
- private mf;
1804
- private mg;
1813
+ private ms;
1814
+ private l8;
1805
1815
  private mh;
1806
1816
  private mi;
1817
+ private mj;
1818
+ private mk;
1807
1819
  private at;
1808
- private ny;
1809
- private nx;
1810
- private i0;
1811
- vg(): void;
1812
- xy(a: CellPath, b: number, c: number, d: boolean): void;
1813
- xu(a: any, b: DragSelectEventArgs): void;
1814
- xs(a: any, b: DragSelectEventArgs): void;
1815
- private no;
1816
- get ox(): number;
1817
- set ox(a: number);
1820
+ private n0;
1818
1821
  private nz;
1822
+ private i1;
1823
+ vl(): void;
1824
+ x3(a: CellPath, b: number, c: number, d: boolean): void;
1825
+ xz(a: any, b: DragSelectEventArgs): void;
1826
+ xx(a: any, b: DragSelectEventArgs): void;
1827
+ private nq;
1828
+ get oz(): number;
1829
+ set oz(a: number);
1830
+ private n1;
1819
1831
  private fq;
1820
- private xt;
1832
+ private xy;
1821
1833
  private ao;
1822
1834
  private ak;
1823
1835
  private al;
1824
- private mb;
1836
+ private md;
1837
+ private mq;
1838
+ private mn;
1825
1839
  private mo;
1826
- private ml;
1827
- private mm;
1828
- private xv;
1829
- private xw;
1830
- private zr;
1831
- private xx;
1832
- private l1;
1833
- private l2;
1840
+ private x0;
1841
+ private x1;
1834
1842
  private zw;
1835
- private add;
1843
+ private x2;
1844
+ private l3;
1845
+ private l4;
1846
+ private z1;
1847
+ private adm;
1836
1848
  private aj;
1837
1849
  getHitCell(a: number, b: number): CellModel;
1838
1850
  private av;
1839
- private jc;
1840
- private vt;
1841
- private aaf;
1851
+ private jd;
1852
+ private vy;
1853
+ private aak;
1842
1854
  constructor();
1843
- zh(a: ColumnGroupDescription): void;
1844
- zi(a: ColumnSummaryDescription): void;
1845
- private z3;
1846
- private v3;
1847
- private ke;
1848
- private v0;
1849
- private z1;
1850
- private z9;
1855
+ zm(a: ColumnGroupDescription): void;
1856
+ zn(a: ColumnSummaryDescription): void;
1857
+ private z8;
1858
+ private v8;
1859
+ private kg;
1860
+ private v5;
1861
+ private z6;
1862
+ private aae;
1851
1863
  private b6;
1864
+ private i5;
1865
+ private zz;
1866
+ private z0;
1867
+ private i7;
1868
+ private zy;
1869
+ private zx;
1852
1870
  private i4;
1853
- private zu;
1854
- private zv;
1855
- private i6;
1856
- private zt;
1857
- private zs;
1858
- private i3;
1859
- private yt;
1860
- private yu;
1871
+ private yy;
1872
+ private yz;
1861
1873
  private c7;
1862
1874
  get c8(): GridAnimationManager;
1863
1875
  set c8(a: GridAnimationManager);
@@ -1941,46 +1953,46 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
1941
1953
  private _viewportManager;
1942
1954
  get viewportManager(): IViewportManager;
1943
1955
  set viewportManager(a: IViewportManager);
1944
- private ma;
1945
- get mt(): number;
1946
- set mt(a: number);
1947
- private l9;
1948
- get ms(): number;
1949
- set ms(a: number);
1956
+ private mc;
1957
+ get mv(): number;
1958
+ set mv(a: number);
1959
+ private mb;
1960
+ get mu(): number;
1961
+ set mu(a: number);
1950
1962
  private gt;
1951
1963
  get density(): ControlDisplayDensity;
1952
1964
  set density(a: ControlDisplayDensity);
1953
- private m9;
1965
+ private nb;
1954
1966
  get actualRowHeight(): number;
1955
1967
  set actualRowHeight(a: number);
1956
- private np;
1968
+ private nr;
1957
1969
  get rowHeight(): number;
1958
1970
  set rowHeight(a: number);
1959
1971
  private cb;
1960
1972
  get defaultColumnWidth(): ColumnWidth;
1961
1973
  set defaultColumnWidth(a: ColumnWidth);
1962
- private me;
1974
+ private mg;
1963
1975
  get defaultColumnMinWidth(): number;
1964
1976
  set defaultColumnMinWidth(a: number);
1965
- private m8;
1977
+ private na;
1966
1978
  get actualHeaderHeight(): number;
1967
1979
  set actualHeaderHeight(a: number);
1968
- private ng;
1980
+ private ni;
1969
1981
  get headerHeight(): number;
1970
1982
  set headerHeight(a: number);
1971
- private nu;
1983
+ private nw;
1972
1984
  get sectionHeaderHeight(): number;
1973
1985
  set sectionHeaderHeight(a: number);
1974
- private o7;
1986
+ private o9;
1975
1987
  get itemsSource(): any;
1976
1988
  set itemsSource(a: any);
1977
- private nt;
1989
+ private nv;
1978
1990
  get sectionFooterHeight(): number;
1979
1991
  set sectionFooterHeight(a: number);
1980
- private nr;
1992
+ private nt;
1981
1993
  get rowSpacingHeight(): number;
1982
1994
  set rowSpacingHeight(a: number);
1983
- private ne;
1995
+ private ng;
1984
1996
  get columnSpacingWidth(): number;
1985
1997
  set columnSpacingWidth(a: number);
1986
1998
  private ey;
@@ -1998,35 +2010,35 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
1998
2010
  private hp;
1999
2011
  get autoGenerateColumns(): boolean;
2000
2012
  set autoGenerateColumns(a: boolean);
2001
- private nq;
2013
+ private ns;
2002
2014
  get rowSeparatorHeight(): number;
2003
2015
  set rowSeparatorHeight(a: number);
2004
- private id;
2016
+ private ie;
2005
2017
  get isPlaceholderRenderingEnabled(): boolean;
2006
2018
  set isPlaceholderRenderingEnabled(a: boolean);
2007
- private ju;
2019
+ private jw;
2008
2020
  private b0;
2009
2021
  private bw;
2010
2022
  get columnAddingAnimationMode(): ColumnShowingAnimationMode;
2011
2023
  set columnAddingAnimationMode(a: ColumnShowingAnimationMode);
2012
- get j2(): boolean;
2024
+ get j4(): boolean;
2013
2025
  private bn;
2014
2026
  get columnPropertyUpdatingAnimationMode(): ColumnPropertyUpdatingAnimationMode;
2015
2027
  set columnPropertyUpdatingAnimationMode(a: ColumnPropertyUpdatingAnimationMode);
2016
- protected get jv(): boolean;
2017
- get jr(): boolean;
2028
+ protected get jx(): boolean;
2029
+ get jt(): boolean;
2018
2030
  private ah;
2019
2031
  get cellDataLoadedAnimationMode(): CellDataLoadedAnimationMode;
2020
2032
  set cellDataLoadedAnimationMode(a: CellDataLoadedAnimationMode);
2021
- get ko(): boolean;
2033
+ get kq(): boolean;
2022
2034
  private fy;
2023
2035
  get rowSelectionAnimationMode(): RowSelectionAnimationMode;
2024
2036
  set rowSelectionAnimationMode(a: RowSelectionAnimationMode);
2025
- get km(): boolean;
2037
+ get ko(): boolean;
2026
2038
  private fv;
2027
2039
  get rowHoverAnimationMode(): RowHoverAnimationMode;
2028
2040
  set rowHoverAnimationMode(a: RowHoverAnimationMode);
2029
- get js(): boolean;
2041
+ get ju(): boolean;
2030
2042
  private aw;
2031
2043
  get cellSelectionAnimationMode(): CellSelectionAnimationMode;
2032
2044
  set cellSelectionAnimationMode(a: CellSelectionAnimationMode);
@@ -2036,32 +2048,32 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2036
2048
  private c9;
2037
2049
  get animationSettings(): GridAnimationSettings;
2038
2050
  set animationSettings(a: GridAnimationSettings);
2039
- j3(a: DataGridColumn): boolean;
2051
+ j5(a: DataGridColumn): boolean;
2040
2052
  private br;
2041
2053
  private bp;
2042
2054
  get columnResizingAnimationMode(): ColumnResizingAnimationMode;
2043
2055
  set columnResizingAnimationMode(a: ColumnResizingAnimationMode);
2044
- private j4;
2056
+ private j6;
2045
2057
  private b1;
2046
2058
  private bx;
2047
2059
  get columnShowingAnimationMode(): ColumnShowingAnimationMode;
2048
2060
  set columnShowingAnimationMode(a: ColumnShowingAnimationMode);
2049
- private jy;
2061
+ private j0;
2050
2062
  private bd;
2051
2063
  private bb;
2052
2064
  get columnMovingAnimationMode(): ColumnMovingAnimationMode;
2053
2065
  set columnMovingAnimationMode(a: ColumnMovingAnimationMode);
2054
- private jx;
2066
+ private jz;
2055
2067
  private ba;
2056
2068
  private a8;
2057
2069
  get columnHidingAnimationMode(): ColumnHidingAnimationMode;
2058
2070
  set columnHidingAnimationMode(a: ColumnHidingAnimationMode);
2059
- private jw;
2071
+ private jy;
2060
2072
  private a2;
2061
2073
  private a0;
2062
2074
  get columnExchangingAnimationMode(): ColumnExchangingAnimationMode;
2063
2075
  set columnExchangingAnimationMode(a: ColumnExchangingAnimationMode);
2064
- private adi;
2076
+ private adr;
2065
2077
  get inset(): Thickness;
2066
2078
  set inset(a: Thickness);
2067
2079
  private cj;
@@ -2073,12 +2085,12 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2073
2085
  private en;
2074
2086
  get selectionBehavior(): GridSelectionBehavior;
2075
2087
  set selectionBehavior(a: GridSelectionBehavior);
2076
- private ij;
2088
+ private ik;
2077
2089
  get mouseDragSelectionEnabled(): boolean;
2078
2090
  set mouseDragSelectionEnabled(a: boolean);
2079
- private hx;
2080
- get jp(): boolean;
2081
- set jp(a: boolean);
2091
+ private hy;
2092
+ get jr(): boolean;
2093
+ set jr(a: boolean);
2082
2094
  private ef;
2083
2095
  get selectedItems(): GridSelectedItemsCollection;
2084
2096
  private ek;
@@ -2087,76 +2099,76 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2087
2099
  get selectedCells(): GridSelectedCellsCollection;
2088
2100
  private d8;
2089
2101
  get selectedCellRanges(): GridSelectedCellRangesCollection;
2090
- private hw;
2091
- get jo(): boolean;
2092
- set jo(a: boolean);
2102
+ private hx;
2103
+ get jq(): boolean;
2104
+ set jq(a: boolean);
2093
2105
  private ee;
2094
2106
  get pinnedItems(): GridSelectedItemsCollection;
2095
2107
  private ej;
2096
2108
  get pinnedKeys(): GridSelectedKeysCollection;
2097
- private z5;
2098
- private h0;
2109
+ private aaa;
2110
+ private h1;
2099
2111
  get isColumnOptionsEnabled(): boolean;
2100
2112
  set isColumnOptionsEnabled(a: boolean);
2101
- private i7;
2113
+ private i8;
2102
2114
  get useNewerColumnOptionsMenu(): boolean;
2103
2115
  set useNewerColumnOptionsMenu(a: boolean);
2104
- private h4;
2116
+ private h5;
2105
2117
  get isGroupByAreaVisible(): boolean;
2106
2118
  set isGroupByAreaVisible(a: boolean);
2107
- private h9;
2119
+ private ia;
2108
2120
  get isGroupRowSticky(): boolean;
2109
2121
  set isGroupRowSticky(a: boolean);
2110
- private ia;
2122
+ private ib;
2111
2123
  get isHeaderSeparatorVisible(): boolean;
2112
2124
  set isHeaderSeparatorVisible(a: boolean);
2113
- private aas;
2125
+ private aax;
2114
2126
  get cellSelectedBackground(): Brush;
2115
2127
  set cellSelectedBackground(a: Brush);
2116
- private aat;
2128
+ private aay;
2117
2129
  get cellSelectedTextColor(): Brush;
2118
2130
  set cellSelectedTextColor(a: Brush);
2119
- private abo;
2131
+ private abv;
2120
2132
  get sectionHeaderSelectedBackground(): Brush;
2121
2133
  set sectionHeaderSelectedBackground(a: Brush);
2122
- private abr;
2134
+ private aby;
2123
2135
  get summaryRootBackground(): Brush;
2124
2136
  set summaryRootBackground(a: Brush);
2125
- private abv;
2137
+ private ab2;
2126
2138
  get summarySectionBackground(): Brush;
2127
2139
  set summarySectionBackground(a: Brush);
2128
- private mn;
2140
+ private mp;
2129
2141
  get pinnedRowOpacity(): number;
2130
2142
  set pinnedRowOpacity(a: number);
2131
2143
  private gy;
2132
2144
  get editTextStyle(): FontInfo;
2133
2145
  set editTextStyle(a: FontInfo);
2134
- private mj;
2146
+ private ml;
2135
2147
  get editOpacity(): number;
2136
2148
  set editOpacity(a: number);
2137
- private aa7;
2149
+ private abd;
2138
2150
  get deletedTextColor(): Brush;
2139
2151
  set deletedTextColor(a: Brush);
2140
- private abq;
2152
+ private abx;
2141
2153
  get stickyRowBackground(): Brush;
2142
2154
  set stickyRowBackground(a: Brush);
2143
- private abf;
2155
+ private abl;
2144
2156
  get pinnedRowBackground(): Brush;
2145
2157
  set pinnedRowBackground(a: Brush);
2146
- private abe;
2158
+ private abk;
2147
2159
  get lastStickyRowBackground(): Brush;
2148
2160
  set lastStickyRowBackground(a: Brush);
2149
2161
  private dj;
2150
2162
  private di;
2151
2163
  get activeCell(): GridCellPosition;
2152
2164
  set activeCell(a: GridCellPosition);
2153
- private aar;
2165
+ private aaw;
2154
2166
  get cellBackground(): Brush;
2155
2167
  set cellBackground(a: Brush);
2156
- private aau;
2168
+ private aaz;
2157
2169
  get cellTextColor(): Brush;
2158
2170
  set cellTextColor(a: Brush);
2159
- private abc;
2171
+ private abi;
2160
2172
  get headerSortIndicatorColor(): Brush;
2161
2173
  set headerSortIndicatorColor(a: Brush);
2162
2174
  private f9;
@@ -2165,12 +2177,16 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2165
2177
  private gv;
2166
2178
  get cellTextStyle(): FontInfo;
2167
2179
  set cellTextStyle(a: FontInfo);
2168
- private abn;
2180
+ private abt;
2169
2181
  get sectionHeaderBackground(): Brush;
2170
2182
  set sectionHeaderBackground(a: Brush);
2171
- private abp;
2183
+ private abw;
2172
2184
  get sectionHeaderTextColor(): Brush;
2173
2185
  set sectionHeaderTextColor(a: Brush);
2186
+ private abu;
2187
+ static readonly t5: string;
2188
+ get sectionHeaderExpansionIndicatorIconColor(): Brush;
2189
+ set sectionHeaderExpansionIndicatorIconColor(a: Brush);
2174
2190
  private g0;
2175
2191
  get sectionHeaderTextStyle(): FontInfo;
2176
2192
  set sectionHeaderTextStyle(a: FontInfo);
@@ -2180,7 +2196,7 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2180
2196
  private g3;
2181
2197
  get summarySectionLabelTextStyle(): FontInfo;
2182
2198
  set summarySectionLabelTextStyle(a: FontInfo);
2183
- private abu;
2199
+ private ab1;
2184
2200
  get summaryRootValueTextColor(): Brush;
2185
2201
  set summaryRootValueTextColor(a: Brush);
2186
2202
  private g2;
@@ -2189,123 +2205,123 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2189
2205
  private g4;
2190
2206
  get summarySectionValueTextStyle(): FontInfo;
2191
2207
  set summarySectionValueTextStyle(a: FontInfo);
2192
- private aby;
2208
+ private ab5;
2193
2209
  get summarySectionValueTextColor(): Brush;
2194
2210
  set summarySectionValueTextColor(a: Brush);
2195
- private abs;
2211
+ private abz;
2196
2212
  get summaryRootLabelTextColor(): Brush;
2197
2213
  set summaryRootLabelTextColor(a: Brush);
2198
- private abw;
2214
+ private ab3;
2199
2215
  get summarySectionLabelTextColor(): Brush;
2200
2216
  set summarySectionLabelTextColor(a: Brush);
2201
- private abt;
2217
+ private ab0;
2202
2218
  get summaryRootSelectedBackground(): Brush;
2203
2219
  set summaryRootSelectedBackground(a: Brush);
2204
- private abx;
2220
+ private ab4;
2205
2221
  get summarySectionSelectedBackground(): Brush;
2206
2222
  set summarySectionSelectedBackground(a: Brush);
2207
- private nn;
2223
+ private np;
2208
2224
  get pinnedAreaSeparatorWidth(): number;
2209
2225
  set pinnedAreaSeparatorWidth(a: number);
2210
- private nh;
2226
+ private nj;
2211
2227
  get headerSeparatorWidth(): number;
2212
2228
  set headerSeparatorWidth(a: number);
2213
- n2(a: number): number;
2214
- private abb;
2229
+ n4(a: number): number;
2230
+ private abh;
2215
2231
  get headerSeparatorBackground(): Brush;
2216
2232
  set headerSeparatorBackground(a: Brush);
2217
- private aa9;
2233
+ private abf;
2218
2234
  get headerBackground(): Brush;
2219
2235
  set headerBackground(a: Brush);
2220
- private abd;
2236
+ private abj;
2221
2237
  get headerTextColor(): Brush;
2222
2238
  set headerTextColor(a: Brush);
2223
2239
  private gz;
2224
2240
  get headerTextStyle(): FontInfo;
2225
2241
  set headerTextStyle(a: FontInfo);
2226
- private abi;
2242
+ private abo;
2227
2243
  get rowSeparatorBackground(): Brush;
2228
2244
  set rowSeparatorBackground(a: Brush);
2229
- private aba;
2245
+ private abg;
2230
2246
  get headerRowSeparatorBackground(): Brush;
2231
2247
  set headerRowSeparatorBackground(a: Brush);
2232
- private abl;
2248
+ private abr;
2233
2249
  get rowSeparatorStickyRowBackground(): Brush;
2234
2250
  set rowSeparatorStickyRowBackground(a: Brush);
2235
- private abj;
2251
+ private abp;
2236
2252
  get rowSeparatorLastStickyRowBackground(): Brush;
2237
2253
  set rowSeparatorLastStickyRowBackground(a: Brush);
2238
- private abk;
2254
+ private abq;
2239
2255
  get rowSeparatorPinnedRowBackground(): Brush;
2240
2256
  set rowSeparatorPinnedRowBackground(a: Brush);
2241
- private nd;
2257
+ private nf;
2242
2258
  get columnResizingSeparatorWidth(): number;
2243
2259
  set columnResizingSeparatorWidth(a: number);
2244
- private md;
2260
+ private mf;
2245
2261
  get columnResizingSeparatorOpacity(): number;
2246
2262
  set columnResizingSeparatorOpacity(a: number);
2247
- private na;
2263
+ private nc;
2248
2264
  get columnMovingSeparatorWidth(): number;
2249
2265
  set columnMovingSeparatorWidth(a: number);
2250
- private mc;
2266
+ private me;
2251
2267
  get columnMovingSeparatorOpacity(): number;
2252
2268
  set columnMovingSeparatorOpacity(a: number);
2253
- private aa6;
2269
+ private abc;
2254
2270
  get columnResizingSeparatorBackground(): Brush;
2255
2271
  set columnResizingSeparatorBackground(a: Brush);
2256
- private aav;
2272
+ private aa0;
2257
2273
  get columnMovingSeparatorBackground(): Brush;
2258
2274
  set columnMovingSeparatorBackground(a: Brush);
2259
- private iv;
2275
+ private iw;
2260
2276
  get shiftSectionContent(): boolean;
2261
2277
  set shiftSectionContent(a: boolean);
2262
2278
  private bi;
2263
2279
  get columnOptionsIconAlignment(): ColumnOptionsIconAlignment;
2264
2280
  set columnOptionsIconAlignment(a: ColumnOptionsIconAlignment);
2265
- private aa2;
2281
+ private aa7;
2266
2282
  get columnOptionsIconColor(): Brush;
2267
2283
  set columnOptionsIconColor(a: Brush);
2268
2284
  private bk;
2269
2285
  get columnOptionsIconBehavior(): ColumnOptionsIconBehavior;
2270
2286
  set columnOptionsIconBehavior(a: ColumnOptionsIconBehavior);
2271
- private aao;
2287
+ private aat;
2272
2288
  get actualBorder(): Brush;
2273
2289
  set actualBorder(a: Brush);
2274
- private aaq;
2290
+ private aav;
2275
2291
  get border(): Brush;
2276
2292
  set border(a: Brush);
2277
- private adg;
2278
- get adm(): Thickness;
2279
- set adm(a: Thickness);
2280
- private ade;
2293
+ private adp;
2294
+ get adv(): Thickness;
2295
+ set adv(a: Thickness);
2296
+ private adn;
2281
2297
  get actualBorderWidth(): Thickness;
2282
2298
  set actualBorderWidth(a: Thickness);
2283
- private adf;
2299
+ private ado;
2284
2300
  get borderWidth(): Thickness;
2285
2301
  set borderWidth(a: Thickness);
2286
- private io;
2302
+ private ip;
2287
2303
  get notifyOnAllSelectionChanges(): boolean;
2288
2304
  set notifyOnAllSelectionChanges(a: boolean);
2289
- private aai;
2290
- get aam(): CornerRadius;
2291
- set aam(a: CornerRadius);
2292
- private aah;
2305
+ private aan;
2306
+ get aar(): CornerRadius;
2307
+ set aar(a: CornerRadius);
2308
+ private aam;
2293
2309
  get cornerRadius(): CornerRadius;
2294
2310
  set cornerRadius(a: CornerRadius);
2295
- private aag;
2311
+ private aal;
2296
2312
  get actualCornerRadius(): CornerRadius;
2297
2313
  set actualCornerRadius(a: CornerRadius);
2298
2314
  static readonly isActiveCellStyleEnabledPropertyName: string;
2299
- private hz;
2315
+ private h0;
2300
2316
  get isActiveCellStyleEnabled(): boolean;
2301
2317
  set isActiveCellStyleEnabled(a: boolean);
2302
- private i1;
2318
+ private i2;
2303
2319
  get stopPropagation(): boolean;
2304
2320
  set stopPropagation(a: boolean);
2305
- private aan;
2321
+ private aas;
2306
2322
  get actualBackground(): Brush;
2307
2323
  set actualBackground(a: Brush);
2308
- private aap;
2324
+ private aau;
2309
2325
  get background(): Brush;
2310
2326
  set background(a: Brush);
2311
2327
  private hf;
@@ -2314,7 +2330,7 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2314
2330
  private e5;
2315
2331
  get renderingEngine(): ICellRenderingEngine;
2316
2332
  set renderingEngine(a: ICellRenderingEngine);
2317
- private ya;
2333
+ private yf;
2318
2334
  private ft;
2319
2335
  get responsiveStates(): ResponsiveStatesCollection;
2320
2336
  private gn;
@@ -2327,10 +2343,10 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2327
2343
  private b8;
2328
2344
  private ab;
2329
2345
  private ac;
2346
+ private iz;
2330
2347
  private iy;
2348
+ private i0;
2331
2349
  private ix;
2332
- private iz;
2333
- private iw;
2334
2350
  private b2;
2335
2351
  private a4;
2336
2352
  private v;
@@ -2338,17 +2354,17 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2338
2354
  get initialSortDescriptions(): ColumnSortDescriptionCollection;
2339
2355
  get initialGroupDescriptions(): ColumnGroupDescriptionCollection;
2340
2356
  get initialSummaryDescriptions(): ColumnSummaryDescriptionCollection;
2341
- private pj;
2357
+ private pl;
2342
2358
  get initialSorts(): string;
2343
2359
  set initialSorts(a: string);
2344
- private pi;
2360
+ private pk;
2345
2361
  get initialGroups(): string;
2346
2362
  set initialGroups(a: string);
2347
- private pk;
2363
+ private pm;
2348
2364
  get initialSummaries(): string;
2349
2365
  set initialSummaries(a: string);
2350
- private v8;
2351
- jm(a: any[], b: any[]): boolean;
2366
+ private wd;
2367
+ jo(a: any[], b: any[]): boolean;
2352
2368
  get sortDescriptions(): ColumnSortDescriptionCollection;
2353
2369
  get groupDescriptions(): ColumnGroupDescriptionCollection;
2354
2370
  sortDescriptionsChanged: (sender: any, args: GridSortDescriptionsChangedEventArgs) => void;
@@ -2356,29 +2372,32 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2356
2372
  summaryDescriptionsChanged: (sender: any, args: GridSummaryDescriptionsChangedEventArgs) => void;
2357
2373
  columnHiddenChanged: (sender: any, args: ColumnHiddenChangedEventArgs) => void;
2358
2374
  columnPinnedChanged: (sender: any, args: ColumnPinnedChangedEventArgs) => void;
2359
- private xi;
2375
+ private xn;
2360
2376
  cellValueChanging: (sender: any, args: GridCellValueChangingEventArgs) => void;
2361
2377
  dataCommitted: (sender: any, e: GridDataCommittedEventArgs) => void;
2362
2378
  dataCommitting: (sender: any, e: GridDataCommittingEventArgs) => void;
2363
2379
  get filterExpressions(): FilterExpressionCollection;
2364
2380
  get summaryDescriptions(): ColumnSummaryDescriptionCollection;
2365
- private i2;
2381
+ private i3;
2366
2382
  private gj;
2367
2383
  get summaryScope(): SummaryScope;
2368
2384
  set summaryScope(a: SummaryScope);
2385
+ private h7;
2369
2386
  private h6;
2370
- private h5;
2371
2387
  get isGroupCollapsable(): boolean;
2372
2388
  set isGroupCollapsable(a: boolean);
2373
- private hu;
2389
+ private hv;
2374
2390
  private eu;
2375
2391
  get groupHeaderDisplayMode(): GroupHeaderDisplayMode;
2376
2392
  set groupHeaderDisplayMode(a: GroupHeaderDisplayMode);
2393
+ private h9;
2377
2394
  private h8;
2378
- private h7;
2379
2395
  get isGroupExpandedDefault(): boolean;
2380
2396
  set isGroupExpandedDefault(a: boolean);
2381
- private hv;
2397
+ private hu;
2398
+ get expandCollapseOnSectionHeaderClick(): boolean;
2399
+ set expandCollapseOnSectionHeaderClick(a: boolean);
2400
+ private hw;
2382
2401
  private ew;
2383
2402
  get groupSummaryDisplayMode(): GroupSummaryDisplayMode;
2384
2403
  set groupSummaryDisplayMode(a: GroupSummaryDisplayMode);
@@ -2387,16 +2406,16 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2387
2406
  set autoAcceptEdits(a: boolean);
2388
2407
  propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
2389
2408
  postPropertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
2390
- protected x8(a: string, b: any, c: any): void;
2391
- zg(): void;
2392
- y0(): void;
2393
- y1(): void;
2409
+ protected yd(a: string, b: any, c: any): void;
2410
+ zl(): void;
2411
+ y5(): void;
2412
+ y6(): void;
2394
2413
  calculateCompleted: (sender: any, e: any) => void;
2395
- wr(): void;
2396
- v2(): void;
2397
- private it;
2398
- get lc(): boolean;
2399
- set lc(a: boolean);
2414
+ ww(): void;
2415
+ v7(): void;
2416
+ private iu;
2417
+ get le(): boolean;
2418
+ set le(a: boolean);
2400
2419
  refresh(): void;
2401
2420
  flush(): void;
2402
2421
  private z;
@@ -2410,39 +2429,39 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2410
2429
  get actualPrimaryKey(): string[];
2411
2430
  set actualPrimaryKey(a: string[]);
2412
2431
  private hk;
2413
- get i8(): boolean;
2414
- set i8(a: boolean);
2415
- protected yv(a: string, b: any, c: any): void;
2416
- private z7;
2417
- private aak;
2418
- private adl;
2432
+ get i9(): boolean;
2433
+ set i9(a: boolean);
2434
+ protected y0(a: string, b: any, c: any): void;
2435
+ private aac;
2436
+ private aap;
2437
+ private adu;
2419
2438
  syncBorder(): void;
2420
- private xr;
2439
+ private xw;
2421
2440
  private n;
2422
2441
  private o;
2423
2442
  private h;
2424
- private vn;
2425
- private zk;
2426
- private v4;
2427
- private v5;
2428
- private zl;
2429
- private v6;
2430
- private vr;
2431
- private vq;
2443
+ private vs;
2444
+ private zp;
2445
+ private v9;
2446
+ private wa;
2447
+ private zq;
2448
+ private wb;
2449
+ private vw;
2450
+ private vv;
2432
2451
  rootSummariesChanged: (sender: any, args: DataSourceRootSummariesChangedEventArgs) => void;
2433
- private lw;
2434
- private r1;
2435
- private yb;
2436
- private vy;
2437
- private vp;
2438
- private xq;
2439
- wl(): void;
2452
+ private ly;
2453
+ private r5;
2454
+ private yg;
2455
+ private v3;
2456
+ private vu;
2457
+ private xv;
2458
+ wq(): void;
2440
2459
  sizeChanged: (sender: any, e: GridSizeChangedEventArgs) => void;
2441
2460
  onSizeChanged(a: number, b: number): void;
2442
2461
  viewportChanged: (sender: any, e: GridViewportChangedEventArgs) => void;
2443
- private nl;
2444
- private nm;
2445
- lq: boolean;
2462
+ private nn;
2463
+ private no;
2464
+ ls: boolean;
2446
2465
  notifyScrollStart(): void;
2447
2466
  notifyScrollStop(): void;
2448
2467
  setViewport(a: number, b: number, c: number, d: number): void;
@@ -2450,35 +2469,35 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2450
2469
  actualColumnsChanged: (sender: any, args: GridColumnsChangedEventArgs) => void;
2451
2470
  private dp;
2452
2471
  get columns(): GridColumnCollection;
2453
- x4(a: CellModel, b: any, c: any): void;
2454
- x3(a: CellModel, b: any, c: any, d: string): void;
2472
+ x9(a: CellModel, b: any, c: any): void;
2473
+ x8(a: CellModel, b: any, c: any, d: string): void;
2455
2474
  ci(a: CellPath): DataGridColumn;
2456
2475
  hideThenRemoveColumn(a: DataGridColumn): void;
2457
2476
  exchangeColumn(a: DataGridColumn, b: DataGridColumn): void;
2458
- private u8;
2459
- private im;
2460
- private xm;
2477
+ private vd;
2478
+ private io;
2479
+ private xr;
2480
+ private xo;
2461
2481
  private xj;
2462
- private xe;
2463
- private vj;
2464
- private yh;
2465
- private vm;
2482
+ private vo;
2483
+ private ym;
2484
+ private vr;
2466
2485
  pinColumn(a: DataGridColumn, b: PinnedPositions): void;
2467
- private lo;
2468
- private lp;
2486
+ private lq;
2487
+ private lr;
2469
2488
  moveColumn(a: number, b: number): void;
2470
2489
  moveColumnLeft(a: number): void;
2471
2490
  moveColumnRight(a: number): void;
2472
2491
  canMoveColumnLeft(a: number): boolean;
2473
2492
  canMoveColumnRight(a: number): boolean;
2474
- private kt;
2493
+ private kv;
2475
2494
  private cg;
2476
2495
  private cf;
2477
- private xf;
2478
- private vi;
2479
- private z8;
2496
+ private xk;
2497
+ private vn;
2498
+ private aad;
2480
2499
  private cl;
2481
- r2(a: CellPath, b: DataGrid, c: any, d: number): string;
2500
+ r6(a: CellPath, b: DataGrid, c: any, d: number): string;
2482
2501
  am(a: CellPath, b: string): CellModel;
2483
2502
  exportVisualModel(): any;
2484
2503
  exportSerializedVisualModel(): string;
@@ -2489,120 +2508,120 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2489
2508
  scrollToItem(a: any): boolean;
2490
2509
  scrollToPrimaryKey(a: any[]): boolean;
2491
2510
  scrollToColumnByIndex(a: number): void;
2492
- private zn;
2493
- lj(a: DataGridColumn): boolean;
2494
- xp(a: number, b: number): void;
2495
- private vh;
2496
- private ob;
2497
- private lf;
2511
+ private zs;
2512
+ ll(a: DataGridColumn): boolean;
2513
+ xu(a: number, b: number): void;
2514
+ private vm;
2515
+ private od;
2516
+ private lh;
2498
2517
  getLastVisibleIndex(): number;
2499
2518
  getFirstVisibleIndex(): number;
2500
- od(): number;
2501
- oi(): number;
2502
- yq(): void;
2503
- jt: boolean;
2504
- kd: boolean;
2519
+ of(): number;
2520
+ ok(): number;
2521
+ yv(): void;
2522
+ jv: boolean;
2523
+ kf: boolean;
2524
+ get km(): boolean;
2525
+ get kn(): boolean;
2505
2526
  get kk(): boolean;
2506
2527
  get kl(): boolean;
2507
- get ki(): boolean;
2508
- get kj(): boolean;
2509
- private ld;
2510
- private le;
2511
- private lx;
2512
- private ly;
2528
+ private lf;
2529
+ private lg;
2513
2530
  private lz;
2514
2531
  private l0;
2532
+ private l1;
2533
+ private l2;
2515
2534
  private hm;
2516
2535
  private hl;
2517
- vd(a?: boolean): void;
2518
- vw(): void;
2519
- yf(a: any, b: PrimaryKeyValue): void;
2520
- yg(a: any, b: PrimaryKeyValue): void;
2521
- ym(a: number, b: any, c: PrimaryKeyValue): void;
2522
- private i5;
2523
- ws(a: number, b: number, c: string): void;
2524
- wv(a: number, b: string): void;
2525
- private wt;
2526
- private nv;
2527
- private nw;
2528
- kv(a: boolean, b: boolean): boolean;
2529
- kw(a: boolean, b: boolean): boolean;
2530
- private oh;
2536
+ vi(a?: boolean): void;
2537
+ v1(): void;
2538
+ yk(a: any, b: PrimaryKeyValue): void;
2539
+ yl(a: any, b: PrimaryKeyValue): void;
2540
+ yr(a: number, b: any, c: PrimaryKeyValue): void;
2541
+ private i6;
2542
+ wx(a: number, b: number, c: string): void;
2543
+ w0(a: number, b: string): void;
2544
+ private wy;
2545
+ private nx;
2546
+ private ny;
2547
+ kx(a: boolean, b: boolean): boolean;
2548
+ ky(a: boolean, b: boolean): boolean;
2549
+ private oj;
2550
+ private oe;
2551
+ private oo;
2552
+ private on;
2531
2553
  private oc;
2532
- private om;
2533
- private ol;
2534
- private oa;
2535
- ve(a: number, b: number, c: boolean, d?: boolean): void;
2536
- k0(a: boolean, b: boolean): boolean;
2554
+ vj(a: number, b: number, c: boolean, d?: boolean): void;
2537
2555
  k2(a: boolean, b: boolean): boolean;
2538
- k3(a: boolean, b: boolean): boolean;
2539
2556
  k4(a: boolean, b: boolean): boolean;
2540
2557
  k5(a: boolean, b: boolean): boolean;
2541
- x1(a: boolean, b: boolean): void;
2558
+ k6(a: boolean, b: boolean): boolean;
2542
2559
  k7(a: boolean, b: boolean): boolean;
2543
- yr(): void;
2560
+ x6(a: boolean, b: boolean): void;
2561
+ k9(a: boolean, b: boolean): boolean;
2562
+ yw(): void;
2563
+ la(a: boolean, b: boolean): boolean;
2564
+ kz(a: boolean, b: boolean): boolean;
2565
+ k0(): boolean;
2566
+ k1(): boolean;
2544
2567
  k8(a: boolean, b: boolean): boolean;
2545
- kx(a: boolean, b: boolean): boolean;
2546
- ky(): boolean;
2547
- kz(): boolean;
2548
- k6(a: boolean, b: boolean): boolean;
2549
2568
  aq: CellPath;
2550
2569
  ar: CellPath;
2551
- ls(): boolean;
2552
- lm(a: CellModel): boolean;
2553
- jl(a: boolean, b?: boolean): boolean;
2554
- vv(a: boolean): void;
2555
- w7(a: PrimaryKeyValue, b: number): void;
2556
- w8(a: PrimaryKeyValue, b: number): void;
2570
+ lu(): boolean;
2571
+ lo(a: CellModel): boolean;
2572
+ jm(a: boolean, b?: boolean): boolean;
2573
+ v0(a: boolean): void;
2574
+ xc(a: PrimaryKeyValue, b: number): void;
2575
+ xd(a: PrimaryKeyValue, b: number): void;
2557
2576
  columnsAutoGenerated: (sender: any, args: GridColumnsAutoGeneratedEventArgs) => void;
2558
2577
  selectedItemsChanged: (sender: any, args: GridSelectedItemsChangedEventArgs) => void;
2559
2578
  selectedKeysChanged: (sender: any, args: GridSelectedKeysChangedEventArgs) => void;
2560
2579
  selectedCellsChanged: (sender: any, args: GridSelectedCellsChangedEventArgs) => void;
2561
2580
  selectionChanged: (sender: any, args: GridSelectionChangedEventArgs) => void;
2562
- private iu;
2563
- private yn;
2581
+ private iv;
2582
+ private ys;
2564
2583
  activeCellChanged: (sender: any, args: GridActiveCellChangedEventArgs) => void;
2565
2584
  selectedCellRangesChanged: (sender: any, args: GridSelectedCellRangesChangedEventArgs) => void;
2566
- aad(a: List$1<any>, b: List$1<PrimaryKeyValue>, c: List$1<any>, d: List$1<PrimaryKeyValue>): void;
2567
- vb(a: List$1<any>, b: List$1<PrimaryKeyValue>): void;
2568
- vc(a: any, b: PrimaryKeyValue, c: boolean): void;
2569
- aac(a: number, b: any, c: PrimaryKeyValue): void;
2570
- zd(a: List$1<any>, b: List$1<PrimaryKeyValue>): void;
2571
- ze(a: any, b: PrimaryKeyValue, c: boolean): void;
2572
- private yj;
2573
- private yk;
2574
- private yi;
2575
- private yl;
2585
+ aai(a: List$1<any>, b: List$1<PrimaryKeyValue>, c: List$1<any>, d: List$1<PrimaryKeyValue>): void;
2586
+ vg(a: List$1<any>, b: List$1<PrimaryKeyValue>): void;
2587
+ vh(a: any, b: PrimaryKeyValue, c: boolean): void;
2588
+ aah(a: number, b: any, c: PrimaryKeyValue): void;
2589
+ zi(a: List$1<any>, b: List$1<PrimaryKeyValue>): void;
2590
+ zj(a: any, b: PrimaryKeyValue, c: boolean): void;
2591
+ private yo;
2592
+ private yp;
2593
+ private yn;
2594
+ private yq;
2576
2595
  private au;
2577
- va(a: number, b: number, c: number, d: number): void;
2578
- u9(a: CellRange): void;
2579
- za(a: CellRange): void;
2580
- y9(): void;
2581
- private wj;
2582
- yo(a: number, b: any, c: any): void;
2583
- private v9;
2584
- w9(): void;
2585
- zj(a: GridConditionalStyle, b: DataGridColumn): void;
2586
- zf(a: GridConditionalStyle, b: DataGridColumn): void;
2587
- l3(a: GridConditionalStyle, b: DataGridColumn): List$1<ColumnSummaryDescription>;
2588
- private lv;
2589
- vx(a: ColumnSummaryDescription): void;
2590
- private j6;
2591
- y8(a: ColumnSummaryDescription): void;
2596
+ vf(a: number, b: number, c: number, d: number): void;
2597
+ ve(a: CellRange): void;
2598
+ zf(a: CellRange): void;
2599
+ ze(): void;
2600
+ private wo;
2601
+ yt(a: number, b: any, c: any): void;
2602
+ private we;
2603
+ xe(): void;
2604
+ zo(a: GridConditionalStyle, b: DataGridColumn): void;
2605
+ zk(a: GridConditionalStyle, b: DataGridColumn): void;
2606
+ l5(a: GridConditionalStyle, b: DataGridColumn): List$1<ColumnSummaryDescription>;
2607
+ private lx;
2608
+ v2(a: ColumnSummaryDescription): void;
2609
+ private j8;
2610
+ zd(a: ColumnSummaryDescription): void;
2592
2611
  invalidateVisibleRows(): void;
2593
- pg(a: DataGridColumn): any;
2594
- pf(a: DataGridColumn): any;
2612
+ pi(a: DataGridColumn): any;
2595
2613
  ph(a: DataGridColumn): any;
2596
- private wa;
2597
- private oe;
2598
- private oj;
2599
- private wb;
2600
- private hy;
2601
- yw(): void;
2602
- x2(a: number, b: any): void;
2603
- x9(a: number, b: any): void;
2614
+ pj(a: DataGridColumn): any;
2615
+ private wf;
2616
+ private og;
2617
+ private ol;
2618
+ private wg;
2619
+ private hz;
2620
+ y1(): void;
2621
+ x7(a: number, b: any): void;
2622
+ ye(a: number, b: any): void;
2604
2623
  setActiveResponsiveState(a: string): void;
2605
- zy(a: ResponsiveState): void;
2624
+ z3(a: ResponsiveState): void;
2606
2625
  notifySetItem(a: number, b: any, c: any): void;
2607
2626
  notifyClearItems(): void;
2608
2627
  notifyInsertItem(a: number, b: any): void;
@@ -2615,30 +2634,30 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2615
2634
  getColumnAtRenderedIndex(a: number): DataGridColumn;
2616
2635
  getRootSummaryResults(): ISummaryResult[];
2617
2636
  getSectionSummaryResults(a: number): ISummaryResult[][];
2618
- private is;
2637
+ private it;
2619
2638
  get reactsToSortChanges(): boolean;
2620
2639
  set reactsToSortChanges(a: boolean);
2621
- private ir;
2640
+ private is;
2622
2641
  get reactsToGroupChanges(): boolean;
2623
2642
  set reactsToGroupChanges(a: boolean);
2624
- private iq;
2643
+ private ir;
2625
2644
  get reactsToFilterChanges(): boolean;
2626
2645
  set reactsToFilterChanges(a: boolean);
2627
2646
  aa(a: DataGridColumn): IFilterExpression;
2628
- lt(a: CellModel, b: number, c: any, d: any, e: any): boolean;
2629
- private aae;
2630
- private o8;
2647
+ lv(a: CellModel, b: number, c: any, d: any, e: any): boolean;
2648
+ private aaj;
2649
+ private pa;
2631
2650
  columnWidthChanged: (sender: any, args: GridColumnWidthChangedEventArgs) => void;
2632
- private xn;
2651
+ private xs;
2633
2652
  cellEditStarted: (sender: any, args: GridCellEditStartedEventArgs) => void;
2634
- private wy;
2653
+ private w3;
2635
2654
  cellEditEnded: (sender: any, args: GridCellEditEndedEventArgs) => void;
2636
- private wx;
2655
+ private w2;
2637
2656
  rowEditStarted: (sender: any, args: GridRowEditStartedEventArgs) => void;
2638
- private yd;
2657
+ private yi;
2639
2658
  rowEditEnded: (sender: any, args: GridRowEditEndedEventArgs) => void;
2640
- private yc;
2641
- j5(): boolean;
2659
+ private yh;
2660
+ j7(): boolean;
2642
2661
  get canUndo(): boolean;
2643
2662
  get canRedo(): boolean;
2644
2663
  get canCommit(): boolean;
@@ -2651,7 +2670,7 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2651
2670
  updatePropertyAtKey(a: any[], b: string, c: any): void;
2652
2671
  removeItemByKey(a: any[]): void;
2653
2672
  removeItem(a: any): void;
2654
- private ip;
2673
+ private iq;
2655
2674
  acceptEdit(a: number): void;
2656
2675
  rejectEdit(a: number): void;
2657
2676
  setEditError(a: number, b: string): void;
@@ -2665,18 +2684,18 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2665
2684
  set enterBehaviorAfterEdit(a: EnterKeyBehaviorAfterEdit);
2666
2685
  selectAllRows(): void;
2667
2686
  deselectAllRows(): void;
2668
- private rd;
2669
- private ry;
2670
- private ib;
2671
- get kf(): boolean;
2672
- set kf(a: boolean);
2673
- k1(a: Key, b: boolean, c: boolean): boolean;
2674
- private lr;
2675
- lk(): boolean;
2676
- private h2;
2687
+ private rg;
2688
+ private r2;
2689
+ private ic;
2690
+ get kh(): boolean;
2691
+ set kh(a: boolean);
2692
+ k3(a: Key, b: boolean, c: boolean): boolean;
2693
+ private lt;
2694
+ lm(): boolean;
2695
+ private h3;
2677
2696
  get isColumnOptionsSummariesEnabled(): boolean;
2678
2697
  set isColumnOptionsSummariesEnabled(a: boolean);
2679
- private h1;
2698
+ private h2;
2680
2699
  get isColumnOptionsGroupingEnabled(): boolean;
2681
2700
  set isColumnOptionsGroupingEnabled(a: boolean);
2682
2701
  private fl;
@@ -2690,11 +2709,11 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2690
2709
  set mergedCellVerticalAlignment(a: CellContentVerticalAlignment);
2691
2710
  saveLayout(): string;
2692
2711
  private f2;
2693
- private l4;
2712
+ private l6;
2694
2713
  loadLayout(a: string): void;
2695
2714
  private s;
2696
2715
  private t;
2697
- og(a: CellPath): number;
2716
+ oi(a: CellPath): number;
2698
2717
  private c2;
2699
2718
  get filterUIType(): FilterUIType;
2700
2719
  set filterUIType(a: FilterUIType);
@@ -2704,95 +2723,98 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2704
2723
  private cx;
2705
2724
  get filterComparisonType(): FilterComparisonType;
2706
2725
  set filterComparisonType(a: FilterComparisonType);
2707
- j7(): boolean;
2708
- private l7;
2726
+ j9(): boolean;
2727
+ private l9;
2709
2728
  get todayOverride(): Date;
2710
2729
  set todayOverride(a: Date);
2711
2730
  private hq;
2712
2731
  get clearSelectionOnEscape(): boolean;
2713
2732
  set clearSelectionOnEscape(a: boolean);
2714
2733
  customFilterRequested: (sender: any, args: GridCustomFilterRequestedEventArgs) => void;
2715
- xo(a: DataGridColumn, b: FilterOperand, c: any): void;
2716
- private nb;
2717
- ll(): boolean;
2718
- wf(): void;
2719
- we(): void;
2720
- private ic;
2734
+ xt(a: DataGridColumn, b: FilterOperand, c: any): void;
2735
+ private nd;
2736
+ ln(): boolean;
2737
+ wk(): void;
2738
+ wj(): void;
2739
+ private id;
2721
2740
  get isPagerVisible(): boolean;
2722
2741
  set isPagerVisible(a: boolean);
2723
- private nj;
2742
+ private nl;
2724
2743
  get pageSize(): number;
2725
2744
  set pageSize(a: number);
2726
- private ii;
2745
+ private ij;
2727
2746
  get isToolbarVisible(): boolean;
2728
2747
  set isToolbarVisible(a: boolean);
2729
- private ig;
2748
+ private ih;
2730
2749
  get isToolbarColumnChooserVisible(): boolean;
2731
2750
  set isToolbarColumnChooserVisible(a: boolean);
2732
- private ih;
2751
+ private ii;
2733
2752
  get isToolbarColumnPinningVisible(): boolean;
2734
2753
  set isToolbarColumnPinningVisible(a: boolean);
2735
- private pp;
2754
+ private pr;
2736
2755
  get toolbarTitle(): string;
2737
2756
  set toolbarTitle(a: string);
2738
- private pl;
2757
+ private pn;
2739
2758
  get toolbarColumnChooserText(): string;
2740
2759
  set toolbarColumnChooserText(a: string);
2741
- private pm;
2760
+ private po;
2742
2761
  get toolbarColumnChooserTitle(): string;
2743
2762
  set toolbarColumnChooserTitle(a: string);
2744
- private pn;
2763
+ private pp;
2745
2764
  get toolbarColumnPinningText(): string;
2746
2765
  set toolbarColumnPinningText(a: string);
2747
- private po;
2766
+ private pq;
2748
2767
  get toolbarColumnPinningTitle(): string;
2749
2768
  set toolbarColumnPinningTitle(a: string);
2750
2769
  private gp;
2751
2770
  get scrollbarStyle(): ScrollbarStyle;
2752
2771
  set scrollbarStyle(a: ScrollbarStyle);
2753
- private abm;
2772
+ private abs;
2754
2773
  get scrollbarBackground(): Brush;
2755
2774
  set scrollbarBackground(a: Brush);
2756
- private aax;
2775
+ private aa2;
2757
2776
  get columnOptionsBackground(): Brush;
2758
2777
  set columnOptionsBackground(a: Brush);
2759
- private aa4;
2778
+ private aa9;
2760
2779
  get columnOptionsTextColor(): Brush;
2761
2780
  set columnOptionsTextColor(a: Brush);
2762
2781
  private gx;
2763
2782
  get columnOptionsTextStyle(): FontInfo;
2764
2783
  set columnOptionsTextStyle(a: FontInfo);
2765
- private aa1;
2784
+ private aa6;
2766
2785
  get columnOptionsHoverBackgroundColor(): Brush;
2767
2786
  set columnOptionsHoverBackgroundColor(a: Brush);
2768
- private aa5;
2787
+ private aba;
2769
2788
  get columnOptionsToolTipBackgroundColor(): Brush;
2770
2789
  set columnOptionsToolTipBackgroundColor(a: Brush);
2771
- private aa0;
2790
+ private abb;
2791
+ get columnOptionsToolTipTextColor(): Brush;
2792
+ set columnOptionsToolTipTextColor(a: Brush);
2793
+ private aa5;
2772
2794
  get columnOptionsHighlightColor(): Brush;
2773
2795
  set columnOptionsHighlightColor(a: Brush);
2774
- private aa3;
2796
+ private aa8;
2775
2797
  get columnOptionsSeparatorColor(): Brush;
2776
2798
  set columnOptionsSeparatorColor(a: Brush);
2777
- private aay;
2799
+ private aa3;
2778
2800
  get columnOptionsGroupHeaderBackground(): Brush;
2779
2801
  set columnOptionsGroupHeaderBackground(a: Brush);
2780
- private aaz;
2802
+ private aa4;
2781
2803
  get columnOptionsGroupHeaderTextColor(): Brush;
2782
2804
  set columnOptionsGroupHeaderTextColor(a: Brush);
2783
2805
  private gw;
2784
2806
  get columnOptionsGroupHeaderTextStyle(): FontInfo;
2785
2807
  set columnOptionsGroupHeaderTextStyle(a: FontInfo);
2786
- private aaw;
2808
+ private aa1;
2787
2809
  get columnOptionsAccentColor(): Brush;
2788
2810
  set columnOptionsAccentColor(a: Brush);
2789
- private nc;
2811
+ private ne;
2790
2812
  get columnOptionsRowHeight(): number;
2791
2813
  set columnOptionsRowHeight(a: number);
2792
2814
  private hn;
2793
2815
  get allowCopyOperation(): boolean;
2794
2816
  set allowCopyOperation(a: boolean);
2795
- private ni;
2817
+ private nk;
2796
2818
  get maxSelectedCellRanges(): number;
2797
2819
  set maxSelectedCellRanges(a: number);
2798
2820
  private hr;
@@ -3389,97 +3411,97 @@ export declare abstract class DefinitionBase extends Base implements INotifyProp
3389
3411
  export declare abstract class DataGridColumn extends DefinitionBase implements IToolbarTarget {
3390
3412
  static $t: Type;
3391
3413
  constructor();
3392
- private pb;
3414
+ private pg;
3393
3415
  protected e2(a: GridConditionalStyle): void;
3394
3416
  protected ct(): any;
3395
3417
  protected cu(): any;
3396
3418
  protected cv(): any;
3397
3419
  protected au(a: GridConditionalStyle): boolean;
3398
- protected rw(): Brush;
3399
- protected rv(): Brush;
3400
- private static ln;
3401
- lo: number;
3420
+ protected r6(): Brush;
3421
+ protected r5(): Brush;
3422
+ private static lp;
3423
+ lq: number;
3402
3424
  private hw;
3403
3425
  get hx(): ColumnStates;
3404
3426
  set hx(a: ColumnStates);
3405
- private k7;
3406
- get lk(): number;
3407
- set lk(a: number);
3408
3427
  private k9;
3409
3428
  get lm(): number;
3410
3429
  set lm(a: number);
3430
+ private lb;
3431
+ get lo(): number;
3432
+ set lo(a: number);
3433
+ private la;
3434
+ get ln(): number;
3435
+ set ln(a: number);
3411
3436
  private k8;
3412
3437
  get ll(): number;
3413
3438
  set ll(a: number);
3439
+ private ly;
3440
+ get od(): string;
3441
+ set od(a: string);
3414
3442
  private k6;
3415
3443
  get lj(): number;
3416
3444
  set lj(a: number);
3417
- private lw;
3418
- get n8(): string;
3419
- set n8(a: string);
3420
- private k4;
3421
- get lh(): number;
3422
- set lh(a: number);
3423
- private k3;
3424
- get lg(): number;
3425
- set lg(a: number);
3426
3445
  private k5;
3427
3446
  get li(): number;
3428
3447
  set li(a: number);
3448
+ private k7;
3449
+ get lk(): number;
3450
+ set lk(a: number);
3429
3451
  private iq;
3430
3452
  get is(): PinnedPositions;
3431
3453
  set is(a: PinnedPositions);
3454
+ private lw;
3455
+ get nl(): string;
3456
+ set nl(a: string);
3457
+ private lx;
3458
+ get ns(): string;
3459
+ set ns(a: string);
3432
3460
  private lu;
3433
- get nh(): string;
3434
- set nh(a: string);
3435
- private lv;
3436
- get no(): string;
3437
- set no(a: string);
3438
- private ls;
3439
- get mj(): string;
3440
- set mj(a: string);
3441
- private q0;
3442
- get rz(): Brush;
3443
- set rz(a: Brush);
3444
- private ql;
3445
- get ri(): Brush;
3446
- set ri(a: Brush);
3447
- private q1;
3448
- get r0(): Brush;
3449
- set r0(a: Brush);
3450
- private qm;
3451
- get rj(): Brush;
3452
- set rj(a: Brush);
3453
- private qy;
3454
- get rx(): Brush;
3455
- set rx(a: Brush);
3456
- private qj;
3457
- get rg(): Brush;
3458
- set rg(a: Brush);
3459
- private qz;
3460
- get ry(): Brush;
3461
- set ry(a: Brush);
3462
- private qk;
3463
- get rh(): Brush;
3464
- set rh(a: Brush);
3461
+ get mm(): string;
3462
+ set mm(a: string);
3463
+ private q8;
3464
+ get r9(): Brush;
3465
+ set r9(a: Brush);
3466
+ private qs;
3467
+ get rr(): Brush;
3468
+ set rr(a: Brush);
3469
+ private q9;
3470
+ get sa(): Brush;
3471
+ set sa(a: Brush);
3472
+ private qt;
3473
+ get rs(): Brush;
3474
+ set rs(a: Brush);
3475
+ private q6;
3476
+ get r7(): Brush;
3477
+ set r7(a: Brush);
3478
+ private qq;
3479
+ get rp(): Brush;
3480
+ set rp(a: Brush);
3481
+ private q7;
3482
+ get r8(): Brush;
3483
+ set r8(a: Brush);
3484
+ private qr;
3485
+ get rq(): Brush;
3486
+ set rq(a: Brush);
3465
3487
  private ic;
3466
3488
  get id(): GridColumnAnimationSettings;
3467
3489
  set id(a: GridColumnAnimationSettings);
3468
3490
  private hy;
3469
3491
  get width(): ColumnWidth;
3470
3492
  set width(a: ColumnWidth);
3471
- private kj;
3472
- get kr(): number;
3473
- set kr(a: number);
3493
+ private kl;
3494
+ get kt(): number;
3495
+ set kt(a: number);
3474
3496
  private jr;
3475
- get j9(): boolean;
3476
- set j9(a: boolean);
3497
+ get ka(): boolean;
3498
+ set ka(a: boolean);
3477
3499
  private jl;
3478
- get j3(): boolean;
3479
- set j3(a: boolean);
3480
- private ju;
3481
- get kc(): boolean;
3482
- set kc(a: boolean);
3500
+ get j4(): boolean;
3501
+ set j4(a: boolean);
3502
+ private jv;
3503
+ get ke(): boolean;
3504
+ set ke(a: boolean);
3483
3505
  private g4;
3484
3506
  get g5(): ColumnFilterCondition;
3485
3507
  set g5(a: ColumnFilterCondition);
@@ -3490,17 +3512,20 @@ export declare abstract class DataGridColumn extends DefinitionBase implements I
3490
3512
  get header(): Header;
3491
3513
  set header(a: Header);
3492
3514
  private jq;
3493
- get j8(): boolean;
3494
- set j8(a: boolean);
3515
+ get j9(): boolean;
3516
+ set j9(a: boolean);
3495
3517
  private jt;
3518
+ get kc(): boolean;
3519
+ set kc(a: boolean);
3520
+ private ju;
3521
+ get kd(): boolean;
3522
+ set kd(a: boolean);
3523
+ private js;
3496
3524
  get kb(): boolean;
3497
3525
  set kb(a: boolean);
3498
- private js;
3499
- get ka(): boolean;
3500
- set ka(a: boolean);
3501
- private jv;
3502
- get ke(): boolean;
3503
- set ke(a: boolean);
3526
+ private jw;
3527
+ get kg(): boolean;
3528
+ set kg(a: boolean);
3504
3529
  private hu;
3505
3530
  get hv(): ColumnSortDirection;
3506
3531
  set hv(a: ColumnSortDirection);
@@ -3508,21 +3533,21 @@ export declare abstract class DataGridColumn extends DefinitionBase implements I
3508
3533
  get it(): PinnedPositions;
3509
3534
  set it(a: PinnedPositions);
3510
3535
  private jk;
3511
- get j2(): boolean;
3512
- set j2(a: boolean);
3513
- get jz(): boolean;
3536
+ get j3(): boolean;
3537
+ set j3(a: boolean);
3538
+ get j0(): boolean;
3514
3539
  private hk;
3515
3540
  get hm(): ColumnOptionsIconAlignment;
3516
3541
  set hm(a: ColumnOptionsIconAlignment);
3517
3542
  private hl;
3518
3543
  get hn(): ColumnOptionsIconAlignment;
3519
3544
  set hn(a: ColumnOptionsIconAlignment);
3520
- private qe;
3521
- get rb(): Brush;
3522
- set rb(a: Brush);
3523
- private qt;
3524
- get rq(): Brush;
3525
- set rq(a: Brush);
3545
+ private qk;
3546
+ get rj(): Brush;
3547
+ set rj(a: Brush);
3548
+ private q0;
3549
+ get rz(): Brush;
3550
+ set rz(a: Brush);
3526
3551
  private hp;
3527
3552
  get hr(): ColumnOptionsIconBehavior;
3528
3553
  set hr(a: ColumnOptionsIconBehavior);
@@ -3530,115 +3555,121 @@ export declare abstract class DataGridColumn extends DefinitionBase implements I
3530
3555
  get hq(): ColumnOptionsIconBehavior;
3531
3556
  set hq(a: ColumnOptionsIconBehavior);
3532
3557
  private jg;
3533
- get jw(): boolean;
3534
- set jw(a: boolean);
3558
+ get jx(): boolean;
3559
+ set jx(a: boolean);
3535
3560
  private jm;
3536
- get j4(): boolean;
3537
- set j4(a: boolean);
3561
+ get j5(): boolean;
3562
+ set j5(a: boolean);
3538
3563
  private ji;
3564
+ get jz(): boolean;
3565
+ set jz(a: boolean);
3566
+ private jo;
3567
+ get j7(): boolean;
3568
+ set j7(a: boolean);
3569
+ private jh;
3539
3570
  get jy(): boolean;
3540
3571
  set jy(a: boolean);
3541
- private jo;
3572
+ private jn;
3542
3573
  get j6(): boolean;
3543
3574
  set j6(a: boolean);
3544
- private jh;
3545
- get jx(): boolean;
3546
- set jx(a: boolean);
3547
- private jn;
3548
- get j5(): boolean;
3549
- set j5(a: boolean);
3550
3575
  private ix;
3551
3576
  get iy(): BaseControlTheme;
3552
3577
  set iy(a: BaseControlTheme);
3553
- private qb;
3554
- get q6(): Brush;
3555
- set q6(a: Brush);
3556
- private qo;
3578
+ private qh;
3579
+ get re(): Brush;
3580
+ set re(a: Brush);
3581
+ private qv;
3582
+ get ru(): Brush;
3583
+ set ru(a: Brush);
3584
+ private qm;
3557
3585
  get rl(): Brush;
3558
3586
  set rl(a: Brush);
3559
- private qg;
3560
- get rd(): Brush;
3561
- set rd(a: Brush);
3562
- private qv;
3563
- get rs(): Brush;
3564
- set rs(a: Brush);
3587
+ private q2;
3588
+ get r1(): Brush;
3589
+ set r1(a: Brush);
3565
3590
  private i3;
3566
3591
  get ja(): FontInfo;
3567
3592
  set ja(a: FontInfo);
3568
3593
  private i6;
3569
3594
  get jd(): FontInfo;
3570
3595
  set jd(a: FontInfo);
3571
- private qd;
3572
- get ra(): Brush;
3573
- set ra(a: Brush);
3574
- private qs;
3575
- get rp(): Brush;
3576
- set rp(a: Brush);
3577
- static readonly mf: string;
3578
- private qh;
3579
- get re(): Brush;
3580
- set re(a: Brush);
3581
- private qw;
3582
- get rt(): Brush;
3583
- set rt(a: Brush);
3584
- private qc;
3585
- get q9(): Brush;
3586
- set q9(a: Brush);
3587
- private qr;
3588
- get ro(): Brush;
3589
- set ro(a: Brush);
3590
- private qf;
3591
- get rc(): Brush;
3592
- set rc(a: Brush);
3593
- private qu;
3594
- get rr(): Brush;
3595
- set rr(a: Brush);
3596
- static readonly l3: string;
3597
- private p8;
3598
- get q7(): Brush;
3599
- set q7(a: Brush);
3600
- private qp;
3596
+ private qj;
3597
+ get ri(): Brush;
3598
+ set ri(a: Brush);
3599
+ private qz;
3600
+ get ry(): Brush;
3601
+ set ry(a: Brush);
3602
+ static readonly mh: string;
3603
+ private qn;
3601
3604
  get rm(): Brush;
3602
3605
  set rm(a: Brush);
3603
- private p9;
3604
- get q8(): Brush;
3605
- set q8(a: Brush);
3606
- private qq;
3606
+ private q3;
3607
+ get r2(): Brush;
3608
+ set r2(a: Brush);
3609
+ private qo;
3607
3610
  get rn(): Brush;
3608
3611
  set rn(a: Brush);
3612
+ private q4;
3613
+ get r3(): Brush;
3614
+ set r3(a: Brush);
3615
+ private qi;
3616
+ get rh(): Brush;
3617
+ set rh(a: Brush);
3618
+ private qy;
3619
+ get rx(): Brush;
3620
+ set rx(a: Brush);
3621
+ private ql;
3622
+ get rk(): Brush;
3623
+ set rk(a: Brush);
3624
+ private q1;
3625
+ get r0(): Brush;
3626
+ set r0(a: Brush);
3627
+ static readonly l5: string;
3628
+ private qe;
3629
+ get rf(): Brush;
3630
+ set rf(a: Brush);
3631
+ private qw;
3632
+ get rv(): Brush;
3633
+ set rv(a: Brush);
3634
+ private qf;
3635
+ get rg(): Brush;
3636
+ set rg(a: Brush);
3637
+ private qx;
3638
+ get rw(): Brush;
3639
+ set rw(a: Brush);
3609
3640
  private i2;
3610
3641
  get i9(): FontInfo;
3611
3642
  set i9(a: FontInfo);
3612
3643
  private i5;
3613
3644
  get jc(): FontInfo;
3614
3645
  set jc(a: FontInfo);
3615
- private qa;
3616
- get q5(): Brush;
3617
- set q5(a: Brush);
3618
- private qn;
3619
- get rk(): Brush;
3620
- set rk(a: Brush);
3621
- private kx;
3622
- get la(): number;
3623
- set la(a: number);
3624
- private ky;
3625
- get lb(): number;
3626
- set lb(a: number);
3646
+ private qg;
3647
+ get rd(): Brush;
3648
+ set rd(a: Brush);
3649
+ private qu;
3650
+ get rt(): Brush;
3651
+ set rt(a: Brush);
3652
+ private kz;
3653
+ get lc(): number;
3654
+ set lc(a: number);
3655
+ private k0;
3656
+ get ld(): number;
3657
+ set ld(a: number);
3627
3658
  private jp;
3628
- get j7(): boolean;
3629
- set j7(a: boolean);
3630
- private qx;
3631
- get ru(): Brush;
3632
- set ru(a: Brush);
3633
- private qi;
3634
- get rf(): Brush;
3635
- set rf(a: Brush);
3636
- private ki;
3637
- get kq(): number;
3638
- set kq(a: number);
3639
- private kh;
3640
- get kp(): number;
3641
- set kp(a: number);
3659
+ get j8(): boolean;
3660
+ set j8(a: boolean);
3661
+ private q5;
3662
+ get r4(): Brush;
3663
+ set r4(a: Brush);
3664
+ private qp;
3665
+ get ro(): Brush;
3666
+ set ro(a: Brush);
3667
+ private kk;
3668
+ get ks(): number;
3669
+ set ks(a: number);
3670
+ private kj;
3671
+ get kr(): number;
3672
+ set kr(a: number);
3642
3673
  private i7;
3643
3674
  get textEditStyle(): FontInfo;
3644
3675
  set textEditStyle(a: FontInfo);
@@ -3648,12 +3679,12 @@ export declare abstract class DataGridColumn extends DefinitionBase implements I
3648
3679
  private h4;
3649
3680
  get h5(): EditorType;
3650
3681
  set h5(a: EditorType);
3651
- private lp;
3652
- get lq(): any;
3653
- set lq(a: any);
3654
- private lt;
3655
- get nd(): string;
3656
- set nd(a: string);
3682
+ private lr;
3683
+ get ls(): any;
3684
+ set ls(a: any);
3685
+ private lv;
3686
+ get nh(): string;
3687
+ set nh(a: string);
3657
3688
  private g2;
3658
3689
  get g3(): string[];
3659
3690
  set g3(a: string[]);
@@ -3669,18 +3700,18 @@ export declare abstract class DataGridColumn extends DefinitionBase implements I
3669
3700
  private ha;
3670
3701
  get hc(): CellContentVerticalAlignment;
3671
3702
  set hc(a: CellContentVerticalAlignment);
3672
- private k0;
3673
- get ld(): number;
3674
- set ld(a: number);
3675
3703
  private k2;
3676
3704
  get lf(): number;
3677
3705
  set lf(a: number);
3706
+ private k4;
3707
+ get lh(): number;
3708
+ set lh(a: number);
3709
+ private k3;
3710
+ get lg(): number;
3711
+ set lg(a: number);
3678
3712
  private k1;
3679
3713
  get le(): number;
3680
3714
  set le(a: number);
3681
- private kz;
3682
- get lc(): number;
3683
- set lc(a: number);
3684
3715
  private h6;
3685
3716
  get h7(): FilterComparisonType;
3686
3717
  set h7(a: FilterComparisonType);
@@ -3688,53 +3719,53 @@ export declare abstract class DataGridColumn extends DefinitionBase implements I
3688
3719
  h8(): FilterComparisonType;
3689
3720
  private ie;
3690
3721
  get ig(): GridFilterOperandsCollection;
3691
- private lz;
3692
- get ox(): string;
3693
- set ox(a: string);
3694
- private q4;
3695
- get r3(): Brush;
3696
- set r3(a: Brush);
3722
+ private l1;
3723
+ get o2(): string;
3724
+ set o2(a: string);
3725
+ private rc;
3726
+ get sd(): Brush;
3727
+ set sd(a: Brush);
3697
3728
  private i8;
3698
3729
  get suffixTextStyle(): FontInfo;
3699
3730
  set suffixTextStyle(a: FontInfo);
3700
- private ly;
3701
- get op(): string;
3702
- set op(a: string);
3703
- private lx;
3704
- get om(): string;
3705
- set om(a: string);
3706
- private q3;
3707
- get r2(): Brush;
3708
- set r2(a: Brush);
3709
- private q2;
3710
- get r1(): Brush;
3711
- set r1(a: Brush);
3712
- private kl;
3713
- get kt(): number;
3714
- set kt(a: number);
3715
- private km;
3716
- get ku(): number;
3717
- set ku(a: number);
3731
+ private l0;
3732
+ get ou(): string;
3733
+ set ou(a: string);
3734
+ private lz;
3735
+ get or(): string;
3736
+ set or(a: string);
3737
+ private rb;
3738
+ get sc(): Brush;
3739
+ set sc(a: Brush);
3740
+ private ra;
3741
+ get sb(): Brush;
3742
+ set sb(a: Brush);
3718
3743
  private kn;
3719
3744
  get kv(): number;
3720
3745
  set kv(a: number);
3721
- private kk;
3722
- get ks(): number;
3723
- set ks(a: number);
3724
3746
  private ko;
3725
3747
  get kw(): number;
3726
3748
  set kw(a: number);
3749
+ private kp;
3750
+ get kx(): number;
3751
+ set kx(a: number);
3752
+ private km;
3753
+ get ku(): number;
3754
+ set ku(a: number);
3755
+ private kq;
3756
+ get ky(): number;
3757
+ set ky(a: number);
3727
3758
  private iu;
3728
3759
  get iv(): TextCellDecoration;
3729
3760
  set iv(a: TextCellDecoration);
3730
3761
  formatCell: (sender: any, args: FormatCellEventArgs) => void;
3731
- private o4;
3762
+ private o9;
3732
3763
  io(): MergedCellMode;
3733
3764
  ik(): MergedCellEvaluationCriteria;
3734
- kd(): boolean;
3765
+ kf(): boolean;
3735
3766
  protected gr(): Brush;
3736
3767
  protected gu(): Brush;
3737
- o2(a: CellModel, b: any, c: any): string;
3768
+ o7(a: CellModel, b: any, c: any): string;
3738
3769
  eq(a: CellModel, b: DataGrid, c: any, d: any): void;
3739
3770
  protected d4(a: CellPath, b: DataGrid, c: any): string;
3740
3771
  en(a: CellModel, b: DataGrid, c: any, d: any): void;
@@ -3742,67 +3773,68 @@ export declare abstract class DataGridColumn extends DefinitionBase implements I
3742
3773
  protected hf(): CellContentVerticalAlignment;
3743
3774
  protected g9(): CellContentHorizontalAlignment;
3744
3775
  protected hd(): CellContentVerticalAlignment;
3745
- private p3;
3746
- private pa;
3776
+ private p9;
3777
+ private pf;
3747
3778
  protected es(a: DataGrid, b: DataGrid): void;
3748
3779
  protected eu(a: any, b: PropertyChangedEventArgs): void;
3749
- p4(): void;
3750
- p5(): void;
3751
- p6(): void;
3752
- p7(): void;
3780
+ qa(): void;
3781
+ qb(): void;
3782
+ qc(): void;
3783
+ qd(): void;
3753
3784
  protected e8(): void;
3754
3785
  protected fk(): void;
3755
3786
  protected fl(): void;
3756
3787
  protected fi(): void;
3757
- protected p0(): void;
3758
- protected p2(): void;
3759
- protected p1(): void;
3788
+ protected p6(): void;
3789
+ protected p8(): void;
3790
+ protected p7(): void;
3760
3791
  protected fh(): void;
3761
3792
  protected fj(): void;
3762
3793
  protected fg(): void;
3763
- protected pi(): void;
3764
- protected ps(): void;
3765
- protected pr(): void;
3766
- protected pk(): void;
3767
- protected pv(): void;
3768
- protected po(): void;
3769
- protected py(): void;
3770
- protected pj(): void;
3771
- protected pw(): void;
3794
+ protected pn(): void;
3772
3795
  protected px(): void;
3773
- protected pq(): void;
3774
- protected pz(): void;
3796
+ protected pw(): void;
3775
3797
  protected pp(): void;
3798
+ protected p0(): void;
3799
+ protected pt(): void;
3800
+ protected p3(): void;
3801
+ protected po(): void;
3802
+ protected p1(): void;
3803
+ protected p2(): void;
3804
+ protected pv(): void;
3805
+ protected p4(): void;
3806
+ protected p5(): void;
3776
3807
  protected pu(): void;
3777
- protected pl(): void;
3808
+ protected pz(): void;
3809
+ protected pq(): void;
3810
+ protected pr(): void;
3811
+ protected ps(): void;
3778
3812
  protected pm(): void;
3779
- protected pn(): void;
3780
- protected ph(): void;
3781
- protected pt(): void;
3813
+ protected py(): void;
3782
3814
  columnCellsPropertyUpdating: (column: DataGridColumn, propertyName: string, propertyAnimationType: CellPropertyAnimationType, oldValue: any, newValue: any) => void;
3783
3815
  columnHeaderCellsPropertyUpdating: (column: DataGridColumn, propertyName: string, propertyAnimationType: CellPropertyAnimationType, oldValue: any, newValue: any) => void;
3784
- protected pd(a: CellModel): void;
3785
- protected pg(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
3816
+ protected pi(a: CellModel): void;
3817
+ protected pl(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
3786
3818
  hj(): ColumnHidingAnimationMode;
3787
3819
  ht(): ColumnShowingAnimationMode;
3788
3820
  hi(): ColumnExchangingAnimationMode;
3789
3821
  hs(): ColumnResizingAnimationMode;
3790
- nm(): string;
3822
+ nq(): string;
3791
3823
  private i0;
3792
3824
  private jj;
3793
- pf(a: string, b: CellPropertyAnimationType, c: any): void;
3794
- j1(): boolean;
3825
+ pk(a: string, b: CellPropertyAnimationType, c: any): void;
3826
+ j2(): boolean;
3795
3827
  get i1(): FastIterationDictionary$2<string, any>;
3796
- j0(a: string): boolean;
3797
- pe(a: string): void;
3798
- lr(a: string): any;
3799
- kg: List$1<LayoutAction>;
3800
- pc(a: string): void;
3801
- o6(a: ColumnComparisonConditionOperatorType, b: any): void;
3802
- o5(a: string, b: number, c: any): void;
3828
+ j1(a: string): boolean;
3829
+ pj(a: string): void;
3830
+ lt(a: string): any;
3831
+ ki: List$1<LayoutAction>;
3832
+ ph(a: string): void;
3833
+ pb(a: ColumnComparisonConditionOperatorType, b: any): void;
3834
+ pa(a: string, b: number, c: any): void;
3803
3835
  g8(a: FilterOperand, b: any): IFilterExpression;
3804
3836
  ia(a: string, b: number): FilterOperand;
3805
- o7(): void;
3837
+ pc(): void;
3806
3838
  private h2;
3807
3839
  get h3(): DataGridColumnToolbarManager;
3808
3840
  getDesiredToolbarActions(): ToolActionInfo[];
@@ -3817,12 +3849,12 @@ export declare abstract class DataGridColumn extends DefinitionBase implements I
3817
3849
  private _invalidateActions;
3818
3850
  get invalidateActions(): () => void;
3819
3851
  set invalidateActions(a: () => void);
3820
- private kf;
3852
+ private kh;
3821
3853
  iz(): IToolbarContextAccessor;
3822
- o9(a: (arg1: IToolbarContextAccessor) => void): void;
3854
+ pe(a: (arg1: IToolbarContextAccessor) => void): void;
3823
3855
  provideContextAccessor(a: IToolbarContextAccessor): void;
3824
3856
  dismissContextAccessor(a: IToolbarContextAccessor): void;
3825
- o8(): void;
3857
+ pd(): void;
3826
3858
  h0: DataGridColumn;
3827
3859
  abstract h1(): DataGridColumn;
3828
3860
  onAttachingOverride: (sender: any, args: GridColumnProviderOnAttachingOverrideEventArgs) => void;
@@ -4139,17 +4171,17 @@ export declare class ColumnMovingSeparator extends DefinitionBase {
4139
4171
  export declare class ComboBoxColumn extends DataGridColumn {
4140
4172
  static $t: Type;
4141
4173
  constructor();
4142
- private r5;
4143
- get r6(): IDataSource;
4144
- set r6(a: IDataSource);
4145
- get r7(): any;
4146
- set r7(a: any);
4147
- get sb(): string;
4148
- set sb(a: string);
4149
- get sc(): string;
4150
- set sc(a: string);
4151
- get r4(): string[];
4152
- set r4(a: string[]);
4174
+ private sf;
4175
+ get sg(): IDataSource;
4176
+ set sg(a: IDataSource);
4177
+ get sh(): any;
4178
+ set sh(a: any);
4179
+ get sl(): string;
4180
+ set sl(a: string);
4181
+ get sm(): string;
4182
+ set sm(a: string);
4183
+ get se(): string[];
4184
+ set se(a: string[]);
4153
4185
  protected n(a: CellPath): CellModel;
4154
4186
  protected d4(a: CellPath, b: DataGrid, c: any): string;
4155
4187
  protected es(a: DataGrid, b: DataGrid): void;
@@ -4157,10 +4189,10 @@ export declare class ComboBoxColumn extends DataGridColumn {
4157
4189
  eq(a: CellModel, b: DataGrid, c: any, d: any): void;
4158
4190
  en(a: CellModel, b: DataGrid, c: any, d: any): void;
4159
4191
  protected ex(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
4160
- private sd;
4161
- private se;
4162
- private r9;
4163
- sa(a: any): string;
4192
+ private sn;
4193
+ private so;
4194
+ private sj;
4195
+ sk(a: any): string;
4164
4196
  h1(): DataGridColumn;
4165
4197
  }
4166
4198
  /**
@@ -4168,33 +4200,33 @@ export declare class ComboBoxColumn extends DataGridColumn {
4168
4200
  */
4169
4201
  export declare class DateTimeColumn extends DataGridColumn {
4170
4202
  static $t: Type;
4171
- private r7;
4172
- private r8;
4173
- get r9(): DateTimeFormats;
4174
- set r9(a: DateTimeFormats);
4175
- private si;
4176
- get sr(): string;
4177
- set sr(a: string);
4178
4203
  private sh;
4179
- get sk(): string;
4180
- set sk(a: string);
4181
- private r4;
4182
- get r5(): any[];
4183
- set r5(a: any[]);
4204
+ private si;
4205
+ get sj(): DateTimeFormats;
4206
+ set sj(a: DateTimeFormats);
4207
+ private ss;
4208
+ get s1(): string;
4209
+ set s1(a: string);
4210
+ private sr;
4211
+ get su(): string;
4212
+ set su(a: string);
4184
4213
  private se;
4185
- get sg(): any;
4186
- set sg(a: any);
4187
- private sb;
4188
- get sc(): boolean;
4189
- set sc(a: boolean);
4190
- get sa(): EditorType;
4191
- set sa(a: EditorType);
4192
- get sf(): any;
4193
- set sf(a: any);
4194
- get sm(): string;
4195
- set sm(a: string);
4196
- get sn(): string;
4197
- set sn(a: string);
4214
+ get sf(): any[];
4215
+ set sf(a: any[]);
4216
+ private so;
4217
+ get sq(): any;
4218
+ set sq(a: any);
4219
+ private sl;
4220
+ get sm(): boolean;
4221
+ set sm(a: boolean);
4222
+ get sk(): EditorType;
4223
+ set sk(a: EditorType);
4224
+ get sp(): any;
4225
+ set sp(a: any);
4226
+ get sw(): string;
4227
+ set sw(a: string);
4228
+ get sx(): string;
4229
+ set sx(a: string);
4198
4230
  protected ex(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
4199
4231
  constructor();
4200
4232
  protected n(a: CellPath): CellModel;
@@ -4202,9 +4234,9 @@ export declare class DateTimeColumn extends DataGridColumn {
4202
4234
  d1(a: DataGrid, b: any, c: any): string;
4203
4235
  eq(a: CellModel, b: DataGrid, c: any, d: any): void;
4204
4236
  en(a: CellModel, b: DataGrid, c: any, d: any): void;
4205
- private sd;
4206
- r6: BindingFormatter;
4207
- private so;
4237
+ private sn;
4238
+ sg: BindingFormatter;
4239
+ private sy;
4208
4240
  h1(): DataGridColumn;
4209
4241
  }
4210
4242
  /**
@@ -4469,20 +4501,20 @@ export declare class HeaderSeparator extends DefinitionBase {
4469
4501
  */
4470
4502
  export declare class ImageColumn extends DataGridColumn {
4471
4503
  static $t: Type;
4472
- private r7;
4473
- get r8(): ImageStretchOptions;
4474
- set r8(a: ImageStretchOptions);
4475
- private r5;
4476
- get r6(): ImageResourceType;
4477
- set r6(a: ImageResourceType);
4478
- get r4(): EditorType;
4479
- set r4(a: EditorType);
4480
- get r9(): any;
4481
- set r9(a: any);
4482
- get sa(): string;
4483
- set sa(a: string);
4484
- get sb(): string;
4485
- set sb(a: string);
4504
+ private sh;
4505
+ get si(): ImageStretchOptions;
4506
+ set si(a: ImageStretchOptions);
4507
+ private sf;
4508
+ get sg(): ImageResourceType;
4509
+ set sg(a: ImageResourceType);
4510
+ get se(): EditorType;
4511
+ set se(a: EditorType);
4512
+ get sj(): any;
4513
+ set sj(a: any);
4514
+ get sk(): string;
4515
+ set sk(a: string);
4516
+ get sl(): string;
4517
+ set sl(a: string);
4486
4518
  constructor();
4487
4519
  protected k(): CellContentVerticalAlignment;
4488
4520
  protected g9(): CellContentHorizontalAlignment;
@@ -4492,7 +4524,7 @@ export declare class ImageColumn extends DataGridColumn {
4492
4524
  protected d4(a: CellPath, b: DataGrid, c: any): string;
4493
4525
  eq(a: CellModel, b: DataGrid, c: any, d: any): void;
4494
4526
  en(a: CellModel, b: DataGrid, c: any, d: any): void;
4495
- private sc;
4527
+ private sm;
4496
4528
  h1(): DataGridColumn;
4497
4529
  }
4498
4530
  /**
@@ -4502,7 +4534,7 @@ export declare class NumericCellFormatter extends Base {
4502
4534
  static $t: Type;
4503
4535
  private static a;
4504
4536
  private static e;
4505
- static b(a: BindingFormatter, b: number, c: number, d: number, e: boolean, f: string, g: string, h: string, i: string, j: number): string;
4537
+ 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;
4506
4538
  static c(a: NumericCellModel): string;
4507
4539
  static d(a: NumericColumn, b: number): string;
4508
4540
  }
@@ -4513,59 +4545,59 @@ export declare class NumericColumn extends DataGridColumn {
4513
4545
  static $t: Type;
4514
4546
  constructor();
4515
4547
  protected f(): CellContentHorizontalAlignment;
4548
+ private sx;
4549
+ get tc(): string;
4550
+ set tc(a: string);
4551
+ private sz;
4552
+ get tg(): string;
4553
+ set tg(a: string);
4554
+ private sy;
4555
+ get te(): string;
4556
+ set te(a: string);
4557
+ private s0;
4558
+ get ti(): string;
4559
+ set ti(a: string);
4516
4560
  private sn;
4517
- get s2(): string;
4518
- set s2(a: string);
4561
+ get sq(): number;
4562
+ set sq(a: number);
4563
+ private so;
4564
+ get sr(): number;
4565
+ set sr(a: number);
4519
4566
  private sp;
4567
+ get ss(): number;
4568
+ set ss(a: number);
4569
+ private si;
4570
+ get sk(): boolean;
4571
+ set sk(a: boolean);
4572
+ private sj;
4573
+ get sl(): boolean;
4574
+ set sl(a: boolean);
4575
+ private sw;
4520
4576
  get s6(): string;
4521
4577
  set s6(a: string);
4522
- private so;
4523
- get s4(): string;
4524
- set s4(a: string);
4525
- private sq;
4526
- get s8(): string;
4527
- set s8(a: string);
4528
- private sd;
4529
- get sg(): number;
4530
- set sg(a: number);
4531
4578
  private se;
4532
- get sh(): number;
4533
- set sh(a: number);
4534
- private sf;
4535
- get si(): number;
4536
- set si(a: number);
4537
- private r8;
4538
- get sa(): boolean;
4539
- set sa(a: boolean);
4540
- private r9;
4541
- get sb(): boolean;
4542
- set sb(a: boolean);
4543
- private sm;
4544
- get sw(): string;
4545
- set sw(a: string);
4546
- private r4;
4547
- get r5(): any[];
4548
- set r5(a: any[]);
4549
- private sj;
4550
- get sl(): any;
4551
- set sl(a: any);
4552
- get r7(): EditorType;
4553
- set r7(a: EditorType);
4554
- get sk(): any;
4555
- set sk(a: any);
4556
- get sr(): string;
4557
- set sr(a: string);
4558
- get ss(): string;
4559
- set ss(a: string);
4560
- r6: BindingFormatter;
4579
+ get sf(): any[];
4580
+ set sf(a: any[]);
4581
+ private st;
4582
+ get sv(): any;
4583
+ set sv(a: any);
4584
+ get sh(): EditorType;
4585
+ set sh(a: EditorType);
4586
+ get su(): any;
4587
+ set su(a: any);
4588
+ get s1(): string;
4589
+ set s1(a: string);
4590
+ get s2(): string;
4591
+ set s2(a: string);
4592
+ sg: BindingFormatter;
4561
4593
  protected ex(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
4562
4594
  protected n(a: CellPath): CellModel;
4563
4595
  protected d4(a: CellPath, b: DataGrid, c: any): string;
4564
4596
  d1(a: DataGrid, b: any, c: any): string;
4565
4597
  eq(a: CellModel, b: DataGrid, c: any, d: any): void;
4566
4598
  en(a: CellModel, b: DataGrid, c: any, d: any): void;
4567
- private sc;
4568
- private st;
4599
+ private sm;
4600
+ private s3;
4569
4601
  h1(): DataGridColumn;
4570
4602
  }
4571
4603
  /**
@@ -4615,18 +4647,24 @@ export declare class SectionFooter extends DefinitionBase {
4615
4647
  */
4616
4648
  export declare class SectionHeader extends DefinitionBase {
4617
4649
  static $t: Type;
4618
- private hy;
4619
- get h2(): Brush;
4620
- set h2(a: Brush);
4621
- private hw;
4622
- get h0(): Brush;
4623
- set h0(a: Brush);
4650
+ private h3;
4651
+ get h9(): Brush;
4652
+ set h9(a: Brush);
4653
+ private h0;
4654
+ get h6(): Brush;
4655
+ set h6(a: Brush);
4656
+ private h4;
4657
+ get ia(): Brush;
4658
+ set ia(a: Brush);
4659
+ private h1;
4660
+ get h7(): Brush;
4661
+ set h7(a: Brush);
4662
+ private h2;
4663
+ get h8(): Brush;
4664
+ set h8(a: Brush);
4624
4665
  private hz;
4625
- get h3(): Brush;
4626
- set h3(a: Brush);
4627
- private hx;
4628
- get h1(): Brush;
4629
- set h1(a: Brush);
4666
+ get h5(): Brush;
4667
+ set h5(a: Brush);
4630
4668
  private ha;
4631
4669
  get he(): number;
4632
4670
  set he(a: number);
@@ -4652,17 +4690,19 @@ export declare class SectionHeader extends DefinitionBase {
4652
4690
  protected gn(): Brush;
4653
4691
  eq(a: CellModel, b: DataGrid, c: any, d: any): void;
4654
4692
  en(a: CellModel, b: DataGrid, c: any, d: any): void;
4693
+ protected e4(): void;
4655
4694
  protected es(a: DataGrid, b: DataGrid): void;
4656
4695
  private g8;
4657
- private hs;
4658
- private hr;
4696
+ private hu;
4697
+ private ht;
4659
4698
  protected eu(a: any, b: PropertyChangedEventArgs): void;
4660
- hu(): void;
4661
- hv(): void;
4699
+ hx(): void;
4700
+ hy(): void;
4662
4701
  protected e8(): void;
4663
4702
  protected fk(): void;
4703
+ hw(): void;
4664
4704
  protected fl(): void;
4665
- ht(): void;
4705
+ hv(): void;
4666
4706
  protected ex(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
4667
4707
  private g2;
4668
4708
  }
@@ -4746,7 +4786,6 @@ export declare abstract class SummaryRow extends DefinitionBase {
4746
4786
  protected eu(a: any, b: PropertyChangedEventArgs): void;
4747
4787
  protected hp(): void;
4748
4788
  protected hq(): void;
4749
- protected fl(): void;
4750
4789
  protected hr(): void;
4751
4790
  protected ex(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
4752
4791
  protected ak(): FontInfo;
@@ -4763,6 +4802,7 @@ export declare class SummaryRowRoot extends SummaryRow {
4763
4802
  protected hp(): void;
4764
4803
  protected hq(): void;
4765
4804
  protected fk(): void;
4805
+ protected fl(): void;
4766
4806
  protected hr(): void;
4767
4807
  }
4768
4808
  /**
@@ -4776,6 +4816,7 @@ export declare class SummaryRowSection extends SummaryRow {
4776
4816
  protected hp(): void;
4777
4817
  protected hq(): void;
4778
4818
  protected fk(): void;
4819
+ protected fl(): void;
4779
4820
  protected hr(): void;
4780
4821
  }
4781
4822
  /**
@@ -4788,7 +4829,7 @@ export declare class TemplateColumn extends DataGridColumn {
4788
4829
  protected d4(a: CellPath, b: DataGrid, c: any): string;
4789
4830
  eq(a: CellModel, b: DataGrid, c: any, d: any): void;
4790
4831
  en(a: CellModel, b: DataGrid, c: any, d: any): void;
4791
- r5(a: TemplateCellModel, b: any): void;
4832
+ sf(a: TemplateCellModel, b: any): void;
4792
4833
  cellUpdating: (sender: any, args: TemplateCellUpdatingEventArgs) => void;
4793
4834
  protected ex(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
4794
4835
  h1(): DataGridColumn;
@@ -4810,22 +4851,22 @@ export declare class TemplateCellUpdatingEventArgs extends EventArgs {
4810
4851
  */
4811
4852
  export declare class TextColumn extends DataGridColumn {
4812
4853
  static $t: Type;
4813
- private r6;
4814
- get sa(): string;
4815
- set sa(a: string);
4816
- get r4(): EditorType;
4817
- set r4(a: EditorType);
4818
- get r5(): any;
4819
- set r5(a: any);
4820
- get r7(): string;
4821
- set r7(a: string);
4822
- get r8(): string;
4823
- set r8(a: string);
4854
+ private sg;
4855
+ get sk(): string;
4856
+ set sk(a: string);
4857
+ get se(): EditorType;
4858
+ set se(a: EditorType);
4859
+ get sf(): any;
4860
+ set sf(a: any);
4861
+ get sh(): string;
4862
+ set sh(a: string);
4863
+ get si(): string;
4864
+ set si(a: string);
4824
4865
  protected n(a: CellPath): CellModel;
4825
4866
  eq(a: CellModel, b: DataGrid, c: any, d: any): void;
4826
4867
  en(a: CellModel, b: DataGrid, c: any, d: any): void;
4827
4868
  d1(a: DataGrid, b: any, c: any): string;
4828
- private r9;
4869
+ private sj;
4829
4870
  protected d4(a: CellPath, b: DataGrid, c: any): string;
4830
4871
  h1(): DataGridColumn;
4831
4872
  }