igniteui-angular-data-grids 20.0.1 → 20.0.2-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 (240) hide show
  1. package/bundles/igniteui-angular-data-grids.umd.js +10223 -8743
  2. package/bundles/igniteui-angular-data-grids.umd.min.js +1 -1
  3. package/esm2015/lib/AccessibilityRow.js +3 -3
  4. package/esm2015/lib/CanvasCellPresenterBase.js +14 -14
  5. package/esm2015/lib/CanvasContentCellModelHelper.js +18 -18
  6. package/esm2015/lib/CanvasDateTimeCellPresenter.js +9 -9
  7. package/esm2015/lib/CanvasGridCellBase.js +9 -9
  8. package/esm2015/lib/CanvasImageCellPresenter.js +10 -10
  9. package/esm2015/lib/CanvasNumericCellPresenter.js +9 -9
  10. package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +10 -10
  11. package/esm2015/lib/CanvasSummaryCell.js +1 -1
  12. package/esm2015/lib/CanvasSummaryCellPresenter.js +8 -8
  13. package/esm2015/lib/CanvasTemplateCellPresenter.js +4 -4
  14. package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +4 -4
  15. package/esm2015/lib/CanvasTextCellPresenter.js +10 -10
  16. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +13 -13
  17. package/esm2015/lib/CellPresenterBase.js +64 -39
  18. package/esm2015/lib/CheckboxListView_combined.js +49 -49
  19. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  20. package/esm2015/lib/ColumnFilterCondition_combined.js +6925 -6539
  21. package/esm2015/lib/ColumnGroupingView_combined.js +5 -5
  22. package/esm2015/lib/ColumnPinningView_combined.js +11 -11
  23. package/esm2015/lib/ColumnSortDescription.js +6 -1
  24. package/esm2015/lib/ColumnSummaryDescription.js +6 -1
  25. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +7 -7
  26. package/esm2015/lib/ContentCellModelHelper.js +46 -33
  27. package/esm2015/lib/DataGridCellLayoutPanel.js +19 -19
  28. package/esm2015/lib/DataGridScrollerKeyboardListener.js +15 -15
  29. package/esm2015/lib/DataGridToolbarView_combined.js +2 -2
  30. package/esm2015/lib/DateTimeCellPresenter.js +10 -10
  31. package/esm2015/lib/EditorCell.js +335 -335
  32. package/esm2015/lib/EditorCellPresenter.js +28 -28
  33. package/esm2015/lib/EditorRowCell.js +1 -1
  34. package/esm2015/lib/FilterCell.js +278 -278
  35. package/esm2015/lib/FilterCellPresenter.js +18 -18
  36. package/esm2015/lib/GridCellBase.js +587 -317
  37. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +10 -10
  38. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +7 -7
  39. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  40. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  41. package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
  42. package/esm2015/lib/GridColumnPinOptionsView_combined.js +4 -4
  43. package/esm2015/lib/GridColumnSortOptionsView_combined.js +2 -2
  44. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  45. package/esm2015/lib/GridConditionFilterStringErrorsParsingEventArgs.js +2 -14
  46. package/esm2015/lib/GridConditionalStyleFontInfo.js +26 -0
  47. package/esm2015/lib/GridConditionalStyleProperty.js +8 -8
  48. package/esm2015/lib/GridExternalWrapper.js +6 -6
  49. package/esm2015/lib/GridFilterDialogView_combined.js +2 -2
  50. package/esm2015/lib/GridStyleRepository.js +1 -1
  51. package/esm2015/lib/ImageCell.js +62 -62
  52. package/esm2015/lib/ImageCellPresenter.js +18 -18
  53. package/esm2015/lib/MultiColumnComboBoxView_combined.js +15 -15
  54. package/esm2015/lib/NumericCell.js +9 -5
  55. package/esm2015/lib/NumericCellPresenter.js +10 -10
  56. package/esm2015/lib/PropertyEditorView_combined.js +21 -21
  57. package/esm2015/lib/SectionHeaderCell.js +17 -17
  58. package/esm2015/lib/SectionHeaderCellPresenter.js +11 -11
  59. package/esm2015/lib/SummaryCell.js +41 -41
  60. package/esm2015/lib/SummaryCellPresenter.js +14 -14
  61. package/esm2015/lib/TemplateCell.js +16 -16
  62. package/esm2015/lib/TemplateCellPresenter.js +5 -5
  63. package/esm2015/lib/TemplateHeader.js +7 -7
  64. package/esm2015/lib/TemplateHeaderCell.js +6 -6
  65. package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
  66. package/esm2015/lib/TemplateHeaderCellPresenter.js +5 -5
  67. package/esm2015/lib/TemplateSectionHeader.js +2 -2
  68. package/esm2015/lib/TextCell.js +35 -30
  69. package/esm2015/lib/TextCellDecoration.js +33 -0
  70. package/esm2015/lib/TextCellPresenter.js +11 -11
  71. package/esm2015/lib/TextHeaderCell.js +157 -150
  72. package/esm2015/lib/TextHeaderCellPresenter.js +35 -35
  73. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  74. package/esm2015/lib/igx-cell-info.js +301 -190
  75. package/esm2015/lib/igx-checkbox-list-component.js +1 -1
  76. package/esm2015/lib/igx-column-moving-separator-component.js +6 -6
  77. package/esm2015/lib/igx-column-resizing-separator-component.js +4 -4
  78. package/esm2015/lib/igx-combo-box-column-component.js +10 -10
  79. package/esm2015/lib/igx-data-grid-column-component.js +254 -115
  80. package/esm2015/lib/igx-data-grid-component.js +38 -5
  81. package/esm2015/lib/igx-date-time-cell-info.js +12 -12
  82. package/esm2015/lib/igx-date-time-column-component.js +20 -20
  83. package/esm2015/lib/igx-definition-base-component.js +46 -45
  84. package/esm2015/lib/igx-editor-cell-info.js +23 -23
  85. package/esm2015/lib/igx-filter-cell-info.js +26 -26
  86. package/esm2015/lib/igx-filter-row-definition-component.js +8 -8
  87. package/esm2015/lib/igx-grid-condition-filter-string-errors-parsing-event-args.js +4 -4
  88. package/esm2015/lib/igx-grid-conditional-style-font-info-component.js +144 -0
  89. package/esm2015/lib/igx-grid-conditional-style-font-info-dynamic-module.js +34 -0
  90. package/esm2015/lib/igx-grid-conditional-style-font-info-module.js +27 -0
  91. package/esm2015/lib/igx-header-component.js +16 -16
  92. package/esm2015/lib/igx-image-cell-info.js +6 -6
  93. package/esm2015/lib/igx-image-column-component.js +10 -10
  94. package/esm2015/lib/igx-numeric-cell-info.js +26 -26
  95. package/esm2015/lib/igx-numeric-column-component.js +30 -30
  96. package/esm2015/lib/igx-section-header-cell-info.js +6 -6
  97. package/esm2015/lib/igx-section-header-component.js +16 -16
  98. package/esm2015/lib/igx-summary-cell-info.js +9 -9
  99. package/esm2015/lib/igx-summary-row-component.js +16 -16
  100. package/esm2015/lib/igx-template-cell-info.js +2 -2
  101. package/esm2015/lib/igx-template-header-cell-info.js +2 -2
  102. package/esm2015/lib/igx-text-cell-info.js +2 -2
  103. package/esm2015/lib/igx-text-column-component.js +8 -8
  104. package/esm2015/lib/igx-text-header-cell-info.js +10 -10
  105. package/esm2015/public_api.js +5 -0
  106. package/esm5/lib/AccessibilityRow.js +3 -3
  107. package/esm5/lib/CanvasCellPresenterBase.js +14 -14
  108. package/esm5/lib/CanvasContentCellModelHelper.js +18 -18
  109. package/esm5/lib/CanvasDateTimeCellPresenter.js +9 -9
  110. package/esm5/lib/CanvasGridCellBase.js +9 -9
  111. package/esm5/lib/CanvasImageCellPresenter.js +10 -10
  112. package/esm5/lib/CanvasNumericCellPresenter.js +9 -9
  113. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +10 -10
  114. package/esm5/lib/CanvasSummaryCell.js +1 -1
  115. package/esm5/lib/CanvasSummaryCellPresenter.js +8 -8
  116. package/esm5/lib/CanvasTemplateCellPresenter.js +4 -4
  117. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +4 -4
  118. package/esm5/lib/CanvasTextCellPresenter.js +10 -10
  119. package/esm5/lib/CanvasTextHeaderCellPresenter.js +13 -13
  120. package/esm5/lib/CellPresenterBase.js +64 -39
  121. package/esm5/lib/CheckboxListView_combined.js +49 -49
  122. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  123. package/esm5/lib/ColumnFilterCondition_combined.js +6754 -6269
  124. package/esm5/lib/ColumnGroupingView_combined.js +5 -5
  125. package/esm5/lib/ColumnPinningView_combined.js +11 -11
  126. package/esm5/lib/ColumnSortDescription.js +6 -1
  127. package/esm5/lib/ColumnSummaryDescription.js +6 -1
  128. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +7 -7
  129. package/esm5/lib/ContentCellModelHelper.js +46 -33
  130. package/esm5/lib/DataGridCellLayoutPanel.js +19 -19
  131. package/esm5/lib/DataGridScrollerKeyboardListener.js +15 -15
  132. package/esm5/lib/DataGridToolbarView_combined.js +2 -2
  133. package/esm5/lib/DateTimeCellPresenter.js +10 -10
  134. package/esm5/lib/EditorCell.js +291 -291
  135. package/esm5/lib/EditorCellPresenter.js +28 -28
  136. package/esm5/lib/EditorRowCell.js +1 -1
  137. package/esm5/lib/FilterCell.js +266 -266
  138. package/esm5/lib/FilterCellPresenter.js +18 -18
  139. package/esm5/lib/GridCellBase.js +625 -311
  140. package/esm5/lib/GridColumnFilterOptionsView_combined.js +10 -10
  141. package/esm5/lib/GridColumnGroupOptionsView_combined.js +7 -7
  142. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  143. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  144. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  145. package/esm5/lib/GridColumnPinOptionsView_combined.js +4 -4
  146. package/esm5/lib/GridColumnSortOptionsView_combined.js +2 -2
  147. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  148. package/esm5/lib/GridConditionFilterStringErrorsParsingEventArgs.js +2 -22
  149. package/esm5/lib/GridConditionalStyleFontInfo.js +32 -0
  150. package/esm5/lib/GridConditionalStyleProperty.js +8 -8
  151. package/esm5/lib/GridExternalWrapper.js +6 -6
  152. package/esm5/lib/GridFilterDialogView_combined.js +2 -2
  153. package/esm5/lib/GridStyleRepository.js +1 -1
  154. package/esm5/lib/ImageCell.js +61 -61
  155. package/esm5/lib/ImageCellPresenter.js +18 -18
  156. package/esm5/lib/MultiColumnComboBoxView_combined.js +15 -15
  157. package/esm5/lib/NumericCell.js +9 -5
  158. package/esm5/lib/NumericCellPresenter.js +10 -10
  159. package/esm5/lib/PropertyEditorView_combined.js +21 -21
  160. package/esm5/lib/SectionHeaderCell.js +17 -17
  161. package/esm5/lib/SectionHeaderCellPresenter.js +11 -11
  162. package/esm5/lib/SummaryCell.js +41 -41
  163. package/esm5/lib/SummaryCellPresenter.js +14 -14
  164. package/esm5/lib/TemplateCell.js +16 -16
  165. package/esm5/lib/TemplateCellPresenter.js +5 -5
  166. package/esm5/lib/TemplateHeader.js +7 -7
  167. package/esm5/lib/TemplateHeaderCell.js +6 -6
  168. package/esm5/lib/TemplateHeaderCellModel.js +17 -17
  169. package/esm5/lib/TemplateHeaderCellPresenter.js +5 -5
  170. package/esm5/lib/TemplateSectionHeader.js +2 -2
  171. package/esm5/lib/TextCell.js +35 -30
  172. package/esm5/lib/TextCellDecoration.js +33 -0
  173. package/esm5/lib/TextCellPresenter.js +11 -11
  174. package/esm5/lib/TextHeaderCell.js +155 -148
  175. package/esm5/lib/TextHeaderCellPresenter.js +35 -35
  176. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  177. package/esm5/lib/igx-cell-info.js +349 -190
  178. package/esm5/lib/igx-checkbox-list-component.js +1 -1
  179. package/esm5/lib/igx-column-moving-separator-component.js +6 -6
  180. package/esm5/lib/igx-column-resizing-separator-component.js +4 -4
  181. package/esm5/lib/igx-combo-box-column-component.js +10 -10
  182. package/esm5/lib/igx-data-grid-column-component.js +302 -115
  183. package/esm5/lib/igx-data-grid-component.js +42 -5
  184. package/esm5/lib/igx-date-time-cell-info.js +12 -12
  185. package/esm5/lib/igx-date-time-column-component.js +20 -20
  186. package/esm5/lib/igx-definition-base-component.js +46 -45
  187. package/esm5/lib/igx-editor-cell-info.js +23 -23
  188. package/esm5/lib/igx-filter-cell-info.js +26 -26
  189. package/esm5/lib/igx-filter-row-definition-component.js +8 -8
  190. package/esm5/lib/igx-grid-condition-filter-string-errors-parsing-event-args.js +4 -4
  191. package/esm5/lib/igx-grid-conditional-style-font-info-component.js +155 -0
  192. package/esm5/lib/igx-grid-conditional-style-font-info-dynamic-module.js +33 -0
  193. package/esm5/lib/igx-grid-conditional-style-font-info-module.js +28 -0
  194. package/esm5/lib/igx-header-component.js +16 -16
  195. package/esm5/lib/igx-image-cell-info.js +6 -6
  196. package/esm5/lib/igx-image-column-component.js +10 -10
  197. package/esm5/lib/igx-numeric-cell-info.js +26 -26
  198. package/esm5/lib/igx-numeric-column-component.js +30 -30
  199. package/esm5/lib/igx-section-header-cell-info.js +6 -6
  200. package/esm5/lib/igx-section-header-component.js +16 -16
  201. package/esm5/lib/igx-summary-cell-info.js +9 -9
  202. package/esm5/lib/igx-summary-row-component.js +16 -16
  203. package/esm5/lib/igx-template-cell-info.js +2 -2
  204. package/esm5/lib/igx-template-header-cell-info.js +2 -2
  205. package/esm5/lib/igx-text-cell-info.js +2 -2
  206. package/esm5/lib/igx-text-column-component.js +8 -8
  207. package/esm5/lib/igx-text-header-cell-info.js +10 -10
  208. package/esm5/public_api.js +5 -0
  209. package/fesm2015/igniteui-angular-data-grids.js +10236 -9009
  210. package/fesm5/igniteui-angular-data-grids.js +10219 -8745
  211. package/lib/ColumnFilterCondition_combined.d.ts +1784 -1694
  212. package/lib/ContentCellModelHelper.d.ts +4 -4
  213. package/lib/EditorCell.d.ts +74 -74
  214. package/lib/FilterCell.d.ts +61 -61
  215. package/lib/GridCellBase.d.ts +140 -95
  216. package/lib/GridConditionFilterStringErrorsParsingEventArgs.d.ts +2 -6
  217. package/lib/GridConditionalStyleFontInfo.d.ts +11 -0
  218. package/lib/ImageCell.d.ts +20 -20
  219. package/lib/MultiColumnComboBoxView_combined.d.ts +1 -1
  220. package/lib/NumericCell.d.ts +2 -1
  221. package/lib/SectionHeaderCell.d.ts +4 -4
  222. package/lib/SummaryCell.d.ts +11 -11
  223. package/lib/TemplateCell.d.ts +6 -6
  224. package/lib/TemplateHeader.d.ts +3 -3
  225. package/lib/TemplateHeaderCell.d.ts +3 -3
  226. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  227. package/lib/TemplateSectionHeader.d.ts +2 -2
  228. package/lib/TextCell.d.ts +10 -8
  229. package/lib/TextCellDecoration.d.ts +26 -0
  230. package/lib/TextHeaderCell.d.ts +37 -35
  231. package/lib/VerticalSeparatorCell.d.ts +9 -9
  232. package/lib/igx-cell-info.d.ts +63 -0
  233. package/lib/igx-data-grid-column-component.d.ts +68 -2
  234. package/lib/igx-data-grid-component.d.ts +9 -2
  235. package/lib/igx-definition-base-component.d.ts +1 -1
  236. package/lib/igx-grid-conditional-style-font-info-component.d.ts +33 -0
  237. package/lib/igx-grid-conditional-style-font-info-dynamic-module.d.ts +9 -0
  238. package/lib/igx-grid-conditional-style-font-info-module.d.ts +8 -0
  239. package/package.json +43 -43
  240. package/public_api.d.ts +5 -0
@@ -29,6 +29,7 @@ import { Rect } from "igniteui-angular-core";
29
29
  import { ModelTypes } from "./ModelTypes";
30
30
  import { CellContentHorizontalAlignment } from "./CellContentHorizontalAlignment";
31
31
  import { CellContentVerticalAlignment } from "./CellContentVerticalAlignment";
32
+ import { TextCellDecoration } from "./TextCellDecoration";
32
33
  import { TextCellLineBreakMode } from "./TextCellLineBreakMode";
33
34
  import { ColumnSortDirection } from "./ColumnSortDirection";
34
35
  import { PinnedPositions } from "./PinnedPositions";
@@ -486,473 +487,521 @@ export declare abstract class CellModel extends Base {
486
487
  get p(): DataGrid;
487
488
  set p(a: DataGrid);
488
489
  constructor();
489
- private static dn;
490
- private static dm;
491
- private static bu;
492
- static ft(a: string): number;
490
+ private static d0;
491
+ private static dz;
492
+ private static by;
493
+ static f5(a: string): number;
493
494
  s: ICellPresenter;
494
- static g6: number;
495
+ static hi: number;
495
496
  private t;
496
497
  get u(): ModelStates;
497
498
  set u(a: ModelStates);
498
- private hr;
499
- get ke(): string;
500
- set ke(a: string);
499
+ private ig;
500
+ get k5(): string;
501
+ set k5(a: string);
501
502
  private k;
502
- static gs: number;
503
+ static g4: number;
503
504
  get l(): CellPath;
504
505
  set l(a: CellPath);
505
- private ah;
506
- static fd: number;
507
- get ax(): boolean;
508
- set ax(a: boolean);
509
- fb: number;
510
- bj: boolean;
511
- bo: boolean;
512
- a3: boolean;
513
- a1: boolean;
514
- bh: boolean;
515
- bp: boolean;
506
+ private al;
507
+ static fp: number;
508
+ get a1(): boolean;
509
+ set a1(a: boolean);
510
+ fn: number;
511
+ bn: boolean;
512
+ bs: boolean;
513
+ a7: boolean;
516
514
  a5: boolean;
517
- bi: boolean;
515
+ bl: boolean;
516
+ bt: boolean;
517
+ a9: boolean;
518
+ bm: boolean;
518
519
  c: ICellActionManager;
519
520
  e: IGridInfoRequestor;
520
521
  d: ICellModelExportUpdater;
521
- private aj;
522
- static f2: number;
523
- get a0(): boolean;
524
- set a0(a: boolean);
525
- private b1;
526
- static ex: number;
527
- get ci(): number;
528
- set ci(a: number);
529
- private lj;
530
- static et: number;
531
- get l2(): Brush;
532
- set l2(a: Brush);
533
- private lk;
534
- static ew: number;
535
- get l3(): Brush;
536
- set l3(a: Brush);
537
- private c9;
538
- static ez: number;
539
- get ey(): number;
540
- set ey(a: number);
541
- private c8;
542
- static ev: number;
543
- get eu(): number;
544
- set eu(a: number);
545
- private mh;
522
+ private an;
523
+ static ge: number;
524
+ get a4(): boolean;
525
+ set a4(a: boolean);
526
+ private b5;
546
527
  static e9: number;
547
- get mi(): Rect;
548
- set mi(a: Rect);
549
- static readonly f8: number;
550
- private aq;
551
- get bd(): boolean;
552
- set bd(a: boolean);
553
- private at;
554
- static ga: number;
528
+ get cq(): number;
529
+ set cq(a: number);
530
+ private mq;
531
+ static e5: number;
532
+ get nc(): Brush;
533
+ set nc(a: Brush);
534
+ private mr;
535
+ static e8: number;
536
+ get nd(): Brush;
537
+ set nd(a: Brush);
538
+ private dl;
539
+ static fb: number;
540
+ get fa(): number;
541
+ set fa(a: number);
542
+ private dk;
543
+ static e7: number;
544
+ get e6(): number;
545
+ set e6(a: number);
546
+ private nu;
547
+ static fl: number;
548
+ get nv(): Rect;
549
+ set nv(a: Rect);
550
+ static readonly gk: number;
551
+ private au;
552
+ get bh(): boolean;
553
+ set bh(a: boolean);
554
+ private ax;
555
+ static gm: number;
556
+ get bo(): boolean;
557
+ set bo(a: boolean);
558
+ private ay;
559
+ static gn: number;
560
+ get bp(): boolean;
561
+ set bp(a: boolean);
562
+ private aw;
563
+ static gl: number;
555
564
  get bk(): boolean;
556
565
  set bk(a: boolean);
557
- private au;
558
- static gb: number;
559
- get bl(): boolean;
560
- set bl(a: boolean);
561
566
  private as;
562
- static f9: number;
563
- get bg(): boolean;
564
- set bg(a: boolean);
565
- private ao;
566
- static f7: number;
567
- get bb(): boolean;
568
- set bb(a: boolean);
569
- private dl;
570
- static f1: number;
571
- get f0(): number;
572
- set f0(a: number);
573
- private br;
574
- a4(a: string): boolean;
575
- a8(propertyId_: number): boolean;
576
- a7(a: string): boolean;
577
- private de;
567
+ static gj: number;
568
+ get bf(): boolean;
569
+ set bf(a: boolean);
570
+ private dy;
571
+ static gd: number;
572
+ get gc(): number;
573
+ set gc(a: number);
574
+ private bv;
575
+ a8(a: string): boolean;
576
+ bc(propertyId_: number): boolean;
577
+ bb(a: string): boolean;
578
+ private dr;
578
579
  private a;
579
- kw(propertyId_: number): void;
580
- kt(): void;
581
- kx(a: string): void;
582
- private ai;
583
- get ay(): boolean;
584
- set ay(a: boolean);
585
- private aw;
586
- protected k4(a: string, b: number, c: any, d: any): void;
587
- protected bq(a: string): boolean;
588
- protected k7(a: string, b: any, c: any): void;
589
- private k5;
590
- private kz;
591
- private k0;
592
- private k1;
593
- private k2;
594
- private k6;
595
- private k3;
580
+ l3(propertyId_: number): void;
581
+ l0(): void;
582
+ l4(a: string): void;
583
+ private am;
584
+ get a2(): boolean;
585
+ set a2(a: boolean);
586
+ private a0;
587
+ protected mb(a: string, b: number, c: any, d: any): void;
588
+ protected bu(a: string): boolean;
589
+ protected me(a: string, b: any, c: any): void;
590
+ private mc;
591
+ private l6;
592
+ private l7;
596
593
  private l8;
597
- k9(): void;
598
- protected la(): void;
599
- private bt;
600
- lc(a: string, b: any): void;
601
- az(a: string): boolean;
602
- k8(a: string): void;
603
- hl(a: string): any;
594
+ private l9;
595
+ private md;
596
+ private ma;
597
+ private ni;
598
+ mg(): void;
599
+ protected mh(): void;
600
+ private bx;
601
+ mj(a: string, b: any): void;
602
+ a3(a: string): boolean;
603
+ mf(a: string): void;
604
+ h9(a: string): any;
604
605
  private q;
605
606
  get r(): GridLayer;
606
607
  set r(a: GridLayer);
607
- static gx: number;
608
- private hk;
609
- get ho(): any;
610
- set ho(a: any);
611
- static readonly hg: number;
612
- private cd;
608
+ static g9: number;
609
+ private h8;
610
+ get ic(): any;
611
+ set ic(a: any);
612
+ static readonly h4: number;
613
+ private cl;
614
+ get c6(): number;
615
+ set c6(a: number);
616
+ static readonly h5: number;
617
+ private cm;
618
+ get c7(): number;
619
+ set c7(a: number);
620
+ static readonly hd: number;
621
+ private d5;
622
+ get hc(): number;
623
+ set hc(a: number);
624
+ static readonly hf: number;
625
+ private d6;
626
+ get he(): number;
627
+ set he(a: number);
628
+ static readonly ft: number;
629
+ private b7;
630
+ get cs(): number;
631
+ set cs(a: number);
632
+ static readonly fm: number;
633
+ private b6;
634
+ get cr(): number;
635
+ set cr(a: number);
636
+ static readonly es: number;
637
+ private b3;
638
+ get co(): number;
639
+ set co(a: number);
640
+ static readonly gu: number;
641
+ private cb;
642
+ get cw(): number;
643
+ set cw(a: number);
644
+ static readonly eu: number;
645
+ private b4;
646
+ get cp(): number;
647
+ set cp(a: number);
648
+ static readonly gq: number;
649
+ l5(): void;
650
+ private b9;
613
651
  get cu(): number;
614
652
  set cu(a: number);
615
- static readonly hh: number;
616
- private ce;
653
+ static readonly hx: number;
654
+ private ci;
655
+ get c3(): number;
656
+ set c3(a: number);
657
+ static readonly gr: number;
658
+ private ca;
617
659
  get cv(): number;
618
660
  set cv(a: number);
619
- static readonly g1: number;
620
- private dt;
621
- get g0(): number;
622
- set g0(a: number);
623
- static readonly g3: number;
624
- private du;
625
- get g2(): number;
626
- set g2(a: number);
627
- static readonly fh: number;
628
- private b3;
629
- get ck(): number;
630
- set ck(a: number);
631
- static readonly fa: number;
661
+ static readonly hy: number;
662
+ private cj;
663
+ get c4(): number;
664
+ set c4(a: number);
665
+ static readonly f7: number;
666
+ private dx;
667
+ get f6(): number;
668
+ set f6(a: number);
669
+ static readonly h3: number;
670
+ private d7;
671
+ get h2(): number;
672
+ set h2(a: number);
673
+ static readonly go: number;
674
+ private az;
675
+ get br(): boolean;
676
+ set br(a: boolean);
677
+ static readonly gt: number;
678
+ private v;
679
+ get w(): ModelTypes;
680
+ set w(a: ModelTypes);
681
+ static readonly hb: number;
682
+ private cd;
683
+ get cy(): number;
684
+ set cy(a: number);
685
+ static readonly eh: number;
632
686
  private b2;
633
- get cj(): number;
634
- set cj(a: number);
635
- static readonly eg: number;
636
- private bz;
637
- get cg(): number;
638
- set cg(a: number);
639
- static readonly gi: number;
640
- private b7;
641
- get co(): number;
642
- set co(a: number);
643
- static readonly ei: number;
644
- private b0;
645
- get ch(): number;
646
- set ch(a: number);
647
- static readonly ge: number;
648
- ky(): void;
649
- private b5;
650
- get cm(): number;
651
- set cm(a: number);
652
- static readonly g9: number;
653
- private ca;
654
- get cr(): number;
655
- set cr(a: number);
656
- static readonly gf: number;
657
- private b6;
658
687
  get cn(): number;
659
688
  set cn(a: number);
660
- static readonly ha: number;
661
- private cb;
662
- get cs(): number;
663
- set cs(a: number);
664
- static readonly fv: number;
665
- private dk;
666
- get fu(): number;
667
- set fu(a: number);
668
- static readonly hf: number;
669
- private dv;
670
- get he(): number;
671
- set he(a: number);
672
- static readonly gc: number;
689
+ static readonly ga: number;
690
+ private b8;
691
+ get ct(): number;
692
+ set ct(a: number);
673
693
  private av;
674
- get bn(): boolean;
675
- set bn(a: boolean);
676
- static readonly gh: number;
677
- private v;
678
- get w(): ModelTypes;
679
- set w(a: ModelTypes);
680
- static readonly gz: number;
681
- private b9;
682
- get cq(): number;
683
- set cq(a: number);
684
- static readonly d5: number;
685
- private by;
686
- get cf(): number;
687
- set cf(a: number);
688
- static readonly fy: number;
689
- private b4;
690
- get cl(): number;
691
- set cl(a: number);
692
- private ar;
693
- get be(): boolean;
694
- set be(a: boolean);
695
- static readonly fw: number;
694
+ get bi(): boolean;
695
+ set bi(a: boolean);
696
+ static readonly f8: number;
696
697
  private f;
697
698
  get g(): CellContentHorizontalAlignment;
698
699
  set g(a: CellContentHorizontalAlignment);
699
- static readonly hc: number;
700
+ static readonly h0: number;
700
701
  private h;
701
702
  get i(): CellContentVerticalAlignment;
702
703
  set i(a: CellContentVerticalAlignment);
703
- static readonly es: number;
704
- private li;
705
- get l1(): Brush;
706
- set l1(a: Brush);
707
704
  static readonly e4: number;
708
- private ll;
709
- get l4(): Brush;
710
- set l4(a: Brush);
711
- static readonly d6: number;
712
- private lf;
713
- get ly(): Brush;
714
- set ly(a: Brush);
715
- static readonly eb: number;
716
- private lg;
717
- get lz(): Brush;
718
- set lz(a: Brush);
719
- static readonly d0: number;
720
- private le;
721
- get lx(): Brush;
722
- set lx(a: Brush);
723
- static readonly fm: number;
724
- private ln;
725
- get l6(): Brush;
726
- set l6(a: Brush);
727
- static readonly gy: number;
728
- private lt;
729
- get md(): Brush;
730
- set md(a: Brush);
731
- static readonly fx: number;
732
- private lp;
733
- get l9(): Brush;
734
- set l9(a: Brush);
735
- static readonly fz: number;
736
- private lq;
737
- get ma(): Brush;
738
- set ma(a: Brush);
739
- static readonly g5: number;
740
- private lu;
741
- get me(): Brush;
742
- set me(a: Brush);
705
+ private mp;
706
+ get nb(): Brush;
707
+ set nb(a: Brush);
708
+ static readonly fg: number;
709
+ private ms;
710
+ get ne(): Brush;
711
+ set ne(a: Brush);
712
+ static readonly ei: number;
713
+ private mm;
714
+ get m8(): Brush;
715
+ set m8(a: Brush);
716
+ static readonly en: number;
717
+ private mn;
718
+ get m9(): Brush;
719
+ set m9(a: Brush);
720
+ static readonly ec: number;
721
+ private ml;
722
+ get m7(): Brush;
723
+ set m7(a: Brush);
724
+ static readonly fy: number;
725
+ private mu;
726
+ get ng(): Brush;
727
+ set ng(a: Brush);
728
+ static readonly ha: number;
729
+ private m0;
730
+ get nn(): Brush;
731
+ set nn(a: Brush);
732
+ static readonly f9: number;
733
+ private mw;
734
+ get nj(): Brush;
735
+ set nj(a: Brush);
736
+ static readonly gb: number;
737
+ private mx;
738
+ get nk(): Brush;
739
+ set nk(a: Brush);
740
+ static readonly hh: number;
741
+ private m1;
742
+ get no(): Brush;
743
+ set no(a: Brush);
744
+ static readonly hj: number;
745
+ private m2;
746
+ get np(): Brush;
747
+ set np(a: Brush);
748
+ static readonly g6: number;
749
+ private mz;
750
+ get nm(): Brush;
751
+ set nm(a: Brush);
752
+ private my;
753
+ static readonly gp: number;
754
+ get nl(): Brush;
755
+ set nl(a: Brush);
756
+ private mv;
757
+ static readonly f3: number;
758
+ get nh(): Brush;
759
+ set nh(a: Brush);
743
760
  static readonly g7: number;
744
- private lv;
745
- get mf(): Brush;
746
- set mf(a: Brush);
747
- static readonly gu: number;
748
- private ls;
749
- get mc(): Brush;
750
- set mc(a: Brush);
751
- private lr;
752
- static readonly gd: number;
753
- get mb(): Brush;
754
- set mb(a: Brush);
755
- private lo;
756
- static readonly fr: number;
757
- get l7(): Brush;
758
- set l7(a: Brush);
761
+ private cc;
762
+ get cx(): number;
763
+ set cx(a: number);
759
764
  static readonly gv: number;
760
- private b8;
761
- get cp(): number;
762
- set cp(a: number);
763
- static readonly gj: number;
764
- private hj;
765
- get hn(): any;
766
- set hn(a: any);
767
- static readonly gw: number;
768
- private hq;
769
- get j3(): string;
770
- set j3(a: string);
771
- static readonly hb: number;
772
- private hs;
773
- get ki(): string;
774
- set ki(a: string);
765
+ private h7;
766
+ get ib(): any;
767
+ set ib(a: any);
775
768
  static readonly g8: number;
776
- private lw;
777
- get mg(): Brush;
778
- set mg(a: Brush);
779
- static readonly er: number;
780
- private lh;
781
- get l0(): Brush;
782
- set l0(a: Brush);
783
- static readonly fc: number;
784
- private lm;
785
- get l5(): Brush;
786
- set l5(a: Brush);
787
- static readonly fs: number;
769
+ private ie;
770
+ get ku(): string;
771
+ set ku(a: string);
772
+ static readonly hz: number;
773
+ private ik;
774
+ get lp(): string;
775
+ set lp(a: string);
776
+ static readonly hv: number;
777
+ private m6;
778
+ get nt(): Brush;
779
+ set nt(a: Brush);
780
+ static readonly e3: number;
781
+ private mo;
782
+ get na(): Brush;
783
+ set na(a: Brush);
784
+ static readonly fo: number;
785
+ private mt;
786
+ get nf(): Brush;
787
+ set nf(a: Brush);
788
+ static readonly f4: number;
789
+ private af;
790
+ get aj(): FontInfo;
791
+ set aj(a: FontInfo);
792
+ static readonly et: number;
788
793
  private ad;
789
- get ag(): FontInfo;
790
- set ag(a: FontInfo);
791
- static readonly eh: number;
792
- private ab;
793
- get ae(): FontInfo;
794
- set ae(a: FontInfo);
795
- static readonly gg: number;
794
+ get ah(): FontInfo;
795
+ set ah(a: FontInfo);
796
+ static readonly hu: number;
797
+ private ij;
798
+ get lg(): string;
799
+ set lg(a: string);
800
+ static readonly hs: number;
801
+ private m5;
802
+ get ns(): Brush;
803
+ set ns(a: Brush);
804
+ static readonly ht: number;
805
+ private ag;
806
+ get ak(): FontInfo;
807
+ set ak(a: FontInfo);
808
+ static readonly hm: number;
809
+ private ii;
810
+ get k9(): string;
811
+ set k9(a: string);
812
+ static readonly hk: number;
813
+ private ih;
814
+ get k6(): string;
815
+ set k6(a: string);
816
+ static readonly hn: number;
817
+ private m4;
818
+ get nr(): Brush;
819
+ set nr(a: Brush);
820
+ static readonly hl: number;
821
+ private m3;
822
+ get nq(): Brush;
823
+ set nq(a: Brush);
824
+ static readonly hp: number;
825
+ private cf;
826
+ get c0(): number;
827
+ set c0(a: number);
828
+ static readonly hq: number;
829
+ private cg;
830
+ get c1(): number;
831
+ set c1(a: number);
832
+ static readonly hr: number;
833
+ private ch;
834
+ get c2(): number;
835
+ set c2(a: number);
836
+ static readonly ho: number;
837
+ private ce;
838
+ get cz(): number;
839
+ set cz(a: number);
840
+ static readonly hw: number;
796
841
  private z;
797
- get aa(): TextCellLineBreakMode;
798
- set aa(a: TextCellLineBreakMode);
799
- static readonly hd: number;
800
- private cc;
801
- get ct(): number;
802
- set ct(a: number);
803
- static readonly gn: number;
842
+ get aa(): TextCellDecoration;
843
+ set aa(a: TextCellDecoration);
844
+ static readonly gs: number;
845
+ private ab;
846
+ get ac(): TextCellLineBreakMode;
847
+ set ac(a: TextCellLineBreakMode);
848
+ static readonly h1: number;
849
+ private ck;
850
+ get c5(): number;
851
+ set c5(a: number);
852
+ static readonly gz: number;
853
+ private d2;
854
+ get gy(): number;
855
+ set gy(a: number);
856
+ static readonly g3: number;
857
+ private d4;
858
+ get g2(): number;
859
+ set g2(a: number);
860
+ static readonly g1: number;
861
+ private d3;
862
+ get g0(): number;
863
+ set g0(a: number);
864
+ static readonly gx: number;
865
+ private d1;
866
+ get gw(): number;
867
+ set gw(a: number);
868
+ static readonly ey: number;
869
+ private dh;
870
+ get ex(): number;
871
+ set ex(a: number);
872
+ static readonly e2: number;
873
+ private dj;
874
+ get e1(): number;
875
+ set e1(a: number);
876
+ static readonly e0: number;
877
+ private di;
878
+ get ez(): number;
879
+ set ez(a: number);
880
+ static readonly ew: number;
881
+ private dg;
882
+ get ev(): number;
883
+ set ev(a: number);
884
+ static readonly ff: number;
885
+ private dn;
886
+ get fe(): number;
887
+ set fe(a: number);
888
+ static readonly fk: number;
804
889
  private dq;
805
- get gm(): number;
806
- set gm(a: number);
807
- static readonly gr: number;
808
- private ds;
809
- get gq(): number;
810
- set gq(a: number);
811
- static readonly gp: number;
812
- private dr;
813
- get go(): number;
814
- set go(a: number);
815
- static readonly gl: number;
890
+ get fj(): number;
891
+ set fj(a: number);
892
+ static readonly fi: number;
816
893
  private dp;
817
- get gk(): number;
818
- set gk(a: number);
894
+ get fh(): number;
895
+ set fh(a: number);
896
+ static readonly fd: number;
897
+ private dm;
898
+ get fc(): number;
899
+ set fc(a: number);
900
+ static readonly eb: number;
901
+ private c9;
902
+ get ea(): number;
903
+ set ea(a: number);
904
+ static readonly eg: number;
905
+ private db;
906
+ get ef(): number;
907
+ set ef(a: number);
908
+ static readonly ee: number;
909
+ private da;
910
+ get ed(): number;
911
+ set ed(a: number);
912
+ static readonly d9: number;
913
+ private c8;
914
+ get d8(): number;
915
+ set d8(a: number);
916
+ static readonly fx: number;
917
+ private du;
918
+ get fw(): number;
919
+ set fw(a: number);
920
+ static readonly f2: number;
921
+ private dw;
922
+ get f1(): number;
923
+ set f1(a: number);
924
+ static readonly f0: number;
925
+ private dv;
926
+ get fz(): number;
927
+ set fz(a: number);
928
+ static readonly fv: number;
929
+ private dt;
930
+ get fu(): number;
931
+ set fu(a: number);
819
932
  static readonly em: number;
820
- private c5;
933
+ private dd;
821
934
  get el(): number;
822
935
  set el(a: number);
823
- static readonly eq: number;
824
- private c7;
825
- get ep(): number;
826
- set ep(a: number);
827
- static readonly eo: number;
828
- private c6;
829
- get en(): number;
830
- set en(a: number);
936
+ static readonly er: number;
937
+ private df;
938
+ get eq(): number;
939
+ set eq(a: number);
940
+ static readonly ep: number;
941
+ private de;
942
+ get eo(): number;
943
+ set eo(a: number);
831
944
  static readonly ek: number;
832
- private c4;
945
+ private dc;
833
946
  get ej(): number;
834
947
  set ej(a: number);
835
- static readonly e3: number;
836
- private db;
837
- get e2(): number;
838
- set e2(a: number);
839
- static readonly e8: number;
840
- private dd;
841
- get e7(): number;
842
- set e7(a: number);
843
- static readonly e6: number;
844
- private dc;
845
- get e5(): number;
846
- set e5(a: number);
847
- static readonly e1: number;
848
- private da;
849
- get e0(): number;
850
- set e0(a: number);
851
- static readonly dz: number;
852
- private cx;
853
- get dy(): number;
854
- set dy(a: number);
855
- static readonly d4: number;
856
- private cz;
857
- get d3(): number;
858
- set d3(a: number);
859
- static readonly d2: number;
860
- private cy;
861
- get d1(): number;
862
- set d1(a: number);
863
- static readonly dx: number;
864
- private cw;
865
- get dw(): number;
866
- set dw(a: number);
867
- static readonly fl: number;
868
- private dh;
869
- get fk(): number;
870
- set fk(a: number);
871
- static readonly fq: number;
872
- private dj;
873
- get fp(): number;
874
- set fp(a: number);
875
- static readonly fo: number;
876
- private di;
877
- get fn(): number;
878
- set fn(a: number);
879
- static readonly fj: number;
880
- private dg;
881
- get fi(): number;
882
- set fi(a: number);
883
- static readonly ea: number;
884
- private c1;
885
- get d9(): number;
886
- set d9(a: number);
887
- static readonly ef: number;
888
- private c3;
889
- get ee(): number;
890
- set ee(a: number);
891
- static readonly ed: number;
892
- private c2;
893
- get ec(): number;
894
- set ec(a: number);
895
- static readonly d8: number;
896
- private c0;
897
- get d7(): number;
898
- set d7(a: number);
899
- static readonly g4: number;
948
+ static readonly hg: number;
900
949
  private m;
901
950
  get n(): ColumnSortDirection;
902
951
  set n(a: ColumnSortDirection);
903
- static readonly f6: number;
904
- private an;
905
- get ba(): boolean;
906
- set ba(a: boolean);
907
- static readonly f3: number;
908
- private ak;
909
- get a2(): boolean;
910
- set a2(a: boolean);
911
- static readonly gt: number;
952
+ static readonly gi: number;
953
+ private ar;
954
+ get be(): boolean;
955
+ set be(a: boolean);
956
+ static readonly gf: number;
957
+ private ao;
958
+ get a6(): boolean;
959
+ set a6(a: boolean);
960
+ static readonly g5: number;
912
961
  private x;
913
962
  get y(): PinnedPositions;
914
963
  set y(a: PinnedPositions);
915
- static readonly ff: number;
916
- private ac;
917
- get af(): FontInfo;
918
- set af(a: FontInfo);
919
- static readonly f5: number;
920
- private am;
921
- get a9(): boolean;
922
- set a9(a: boolean);
923
- static readonly f4: number;
924
- private al;
925
- get a6(): boolean;
926
- set a6(a: boolean);
927
- static readonly fe: number;
928
- private hp;
929
- get iv(): string;
930
- set iv(a: string);
931
- bf: boolean;
932
- private df;
933
- get fg(): number;
934
- set fg(a: number);
964
+ static readonly fr: number;
965
+ private ae;
966
+ get ai(): FontInfo;
967
+ set ai(a: FontInfo);
968
+ static readonly gh: number;
969
+ private aq;
970
+ get bd(): boolean;
971
+ set bd(a: boolean);
972
+ static readonly gg: number;
935
973
  private ap;
936
- get bc(): boolean;
937
- set bc(a: boolean);
938
- hi: number;
939
- kr(): void;
940
- protected ks(): void;
974
+ get ba(): boolean;
975
+ set ba(a: boolean);
976
+ static readonly fq: number;
977
+ private id;
978
+ get jm(): string;
979
+ set jm(a: string);
980
+ bj: boolean;
981
+ private ds;
982
+ get fs(): number;
983
+ set fs(a: number);
984
+ private at;
985
+ get bg(): boolean;
986
+ set bg(a: boolean);
987
+ h6: number;
988
+ ly(): void;
989
+ protected lz(): void;
941
990
  propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
942
991
  b(a: CellModelExport): CellModelExport;
943
- private static bv;
944
- protected kv(): void;
945
- private static bs;
946
- private bw;
947
- protected ku(): void;
948
- kp(a: string): Type;
949
- ld(a: string, b: any): void;
950
- hm(a: string): any;
951
- lb(a: string, b: any): void;
992
+ private static bz;
993
+ protected l2(): void;
994
+ private static bw;
995
+ private b0;
996
+ protected l1(): void;
997
+ lw(a: string): Type;
998
+ mk(a: string, b: any): void;
999
+ ia(a: string): any;
1000
+ mi(a: string, b: any): void;
952
1001
  cellReconciling: (model: CellModel) => void;
953
- bm(a: DataSourceRowType): boolean;
954
- i6(): string;
955
- kq(a: List$1<GridConditionalStyle>): void;
1002
+ bq(a: DataSourceRowType): boolean;
1003
+ jx(): string;
1004
+ lx(a: List$1<GridConditionalStyle>): void;
956
1005
  }
957
1006
  /**
958
1007
  * @hidden
@@ -960,42 +1009,42 @@ export declare abstract class CellModel extends Base {
960
1009
  export declare class DateTimeCellModel extends CellModel {
961
1010
  static $t: Type;
962
1011
  constructor();
963
- static readonly mv: number;
964
- private ms;
965
- get mt(): Date;
966
- set mt(a: Date);
967
- static readonly my: number;
968
- private m4;
969
- get na(): string;
970
- set na(a: string);
971
- static readonly mx: number;
972
- private mj;
973
- get mk(): any[];
974
- set mk(a: any[]);
975
- ml: BindingFormatter;
976
- private m2;
977
- static readonly mw: number;
1012
+ static readonly n8: number;
1013
+ private n5;
1014
+ get n6(): Date;
1015
+ set n6(a: Date);
1016
+ static readonly ob: number;
1017
+ private oh;
1018
+ get on(): string;
1019
+ set on(a: string);
1020
+ static readonly oa: number;
1021
+ private nw;
1022
+ get nx(): any[];
1023
+ set nx(a: any[]);
1024
+ ny: BindingFormatter;
1025
+ private of;
1026
+ static readonly n9: number;
978
1027
  private _formatOverride;
979
- get m3(): any;
980
- set m3(a: any);
981
- static readonly mu: number;
982
- private mo;
983
- get mp(): DateTimeFormats;
984
- set mp(a: DateTimeFormats);
985
- m7(a: Date): string;
986
- i6(): string;
987
- static readonly mz: number;
988
- private mm;
989
- get mn(): DateTimeColumnValueFormatter;
990
- set mn(a: DateTimeColumnValueFormatter);
991
- static readonly m0: number;
992
- private mq;
993
- get mr(): boolean;
994
- set mr(a: boolean);
995
- protected k7(a: string, b: any, c: any): void;
996
- ld(a: string, b: any): void;
997
- kp(a: string): Type;
998
- hm(a: string): any;
1028
+ get og(): any;
1029
+ set og(a: any);
1030
+ static readonly n7: number;
1031
+ private n1;
1032
+ get n2(): DateTimeFormats;
1033
+ set n2(a: DateTimeFormats);
1034
+ ok(a: Date): string;
1035
+ jx(): string;
1036
+ static readonly oc: number;
1037
+ private nz;
1038
+ get n0(): DateTimeColumnValueFormatter;
1039
+ set n0(a: DateTimeColumnValueFormatter);
1040
+ static readonly od: number;
1041
+ private n3;
1042
+ get n4(): boolean;
1043
+ set n4(a: boolean);
1044
+ protected me(a: string, b: any, c: any): void;
1045
+ mk(a: string, b: any): void;
1046
+ lw(a: string): Type;
1047
+ ia(a: string): any;
999
1048
  b(a: CellModelExport): CellModelExport;
1000
1049
  }
1001
1050
  /**
@@ -1004,102 +1053,102 @@ export declare class DateTimeCellModel extends CellModel {
1004
1053
  export declare class EditorCellModel extends CellModel {
1005
1054
  static $t: Type;
1006
1055
  constructor();
1007
- private my;
1008
- private mx;
1009
- private ms;
1010
- static m8: number;
1011
- get mv(): boolean;
1012
- private mn;
1013
- static m5: number;
1014
- get mo(): CellModel;
1015
- set mo(a: CellModel);
1016
- private ml;
1017
- static mz: number;
1018
- get mm(): DataSourceSchemaPropertyType;
1019
- set mm(a: DataSourceSchemaPropertyType);
1020
- private nh;
1021
- static m6: number;
1022
- get nr(): string;
1023
- set nr(a: string);
1024
- ne: any;
1025
- private mp;
1026
- static m3: number;
1027
- get mq(): EditorType;
1028
- set mq(a: EditorType);
1029
- private nc;
1030
- static m1: number;
1031
- get nd(): any;
1032
- set nd(a: any);
1033
- private ng;
1034
- static m2: number;
1035
- get nm(): string;
1036
- set nm(a: string);
1037
- private mj;
1038
- static m4: number;
1039
- get mk(): string[];
1040
- set mk(a: string[]);
1041
- static m7: number;
1042
- private mr;
1043
- get mu(): boolean;
1044
- set mu(a: boolean);
1045
- static m0: number;
1046
- private nf;
1047
- get nj(): string;
1048
- set nj(a: string);
1049
- static readonly m9: number;
1050
- private mt;
1051
- get mw(): boolean;
1052
- set mw(a: boolean);
1053
- get nb(): number;
1054
- get na(): number;
1055
- protected la(): void;
1056
- protected k7(a: string, b: any, c: any): void;
1057
- kp(a: string): Type;
1058
- ld(a: string, b: any): void;
1059
- hm(a: string): any;
1060
- b(a: CellModelExport): CellModelExport;
1056
+ private ob;
1057
+ private oa;
1058
+ private n5;
1059
+ static ol: number;
1060
+ get n8(): boolean;
1061
+ private n0;
1062
+ static oi: number;
1063
+ get n1(): CellModel;
1064
+ set n1(a: CellModel);
1065
+ private ny;
1066
+ static oc: number;
1067
+ get nz(): DataSourceSchemaPropertyType;
1068
+ set nz(a: DataSourceSchemaPropertyType);
1069
+ private ou;
1070
+ static oj: number;
1071
+ get o4(): string;
1072
+ set o4(a: string);
1073
+ or: any;
1074
+ private n2;
1075
+ static og: number;
1076
+ get n3(): EditorType;
1077
+ set n3(a: EditorType);
1078
+ private op;
1079
+ static oe: number;
1080
+ get oq(): any;
1081
+ set oq(a: any);
1082
+ private ot;
1083
+ static of: number;
1084
+ get oz(): string;
1085
+ set oz(a: string);
1061
1086
  private nw;
1087
+ static oh: number;
1088
+ get nx(): string[];
1089
+ set nx(a: string[]);
1090
+ static ok: number;
1091
+ private n4;
1092
+ get n7(): boolean;
1093
+ set n7(a: boolean);
1094
+ static od: number;
1095
+ private os;
1096
+ get ow(): string;
1097
+ set ow(a: string);
1098
+ static readonly om: number;
1099
+ private n6;
1100
+ get n9(): boolean;
1101
+ set n9(a: boolean);
1102
+ get oo(): number;
1103
+ get on(): number;
1104
+ protected mh(): void;
1105
+ protected me(a: string, b: any, c: any): void;
1106
+ lw(a: string): Type;
1107
+ mk(a: string, b: any): void;
1108
+ ia(a: string): any;
1109
+ b(a: CellModelExport): CellModelExport;
1110
+ private o9;
1062
1111
  }
1063
1112
  /**
1064
1113
  * @hidden
1065
1114
  */
1066
1115
  export declare class FilterCellModel extends CellModel {
1067
1116
  static $t: Type;
1068
- static readonly m1: number;
1069
- private mn;
1070
- get mo(): DataSourceSchemaPropertyType;
1071
- set mo(a: DataSourceSchemaPropertyType);
1072
- static readonly m4: number;
1073
- private ml;
1074
- get mm(): ColumnFilterCondition;
1075
- set mm(a: ColumnFilterCondition);
1076
- static readonly m2: number;
1077
- private mp;
1078
- get mq(): IFilterExpression;
1079
- set mq(a: IFilterExpression);
1080
- static readonly m3: number;
1081
- private mr;
1082
- get ms(): GridFilterOperandsCollection;
1083
- set ms(a: GridFilterOperandsCollection);
1084
- static m5: number;
1085
- private mt;
1086
- get mu(): boolean;
1087
- set mu(a: boolean);
1088
- private mj;
1089
- get mk(): ColumnComparisonConditionOperatorType;
1090
- set mk(a: ColumnComparisonConditionOperatorType);
1091
- m6: any;
1092
- m0: number;
1093
- mz: number;
1094
- my: number;
1095
- mx: number;
1096
- mw: number;
1097
- mv: number;
1117
+ static readonly oe: number;
1118
+ private n0;
1119
+ get n1(): DataSourceSchemaPropertyType;
1120
+ set n1(a: DataSourceSchemaPropertyType);
1121
+ static readonly oh: number;
1122
+ private ny;
1123
+ get nz(): ColumnFilterCondition;
1124
+ set nz(a: ColumnFilterCondition);
1125
+ static readonly of: number;
1126
+ private n2;
1127
+ get n3(): IFilterExpression;
1128
+ set n3(a: IFilterExpression);
1129
+ static readonly og: number;
1130
+ private n4;
1131
+ get n5(): GridFilterOperandsCollection;
1132
+ set n5(a: GridFilterOperandsCollection);
1133
+ static oi: number;
1134
+ private n6;
1135
+ get n7(): boolean;
1136
+ set n7(a: boolean);
1137
+ private nw;
1138
+ get nx(): ColumnComparisonConditionOperatorType;
1139
+ set nx(a: ColumnComparisonConditionOperatorType);
1140
+ oj: any;
1141
+ od: number;
1142
+ oc: number;
1143
+ ob: number;
1144
+ oa: number;
1145
+ n9: number;
1146
+ n8: number;
1098
1147
  constructor();
1099
- ld(a: string, b: any): void;
1100
- kp(a: string): Type;
1101
- hm(a: string): any;
1102
- lb(a: string, b: any): void;
1148
+ mk(a: string, b: any): void;
1149
+ lw(a: string): Type;
1150
+ ia(a: string): any;
1151
+ mi(a: string, b: any): void;
1103
1152
  b(a: CellModelExport): CellModelExport;
1104
1153
  }
1105
1154
  /**
@@ -1115,24 +1164,24 @@ export declare class EditorRowCellModel extends CellModel {
1115
1164
  export declare class SummaryCellModel extends CellModel {
1116
1165
  static $t: Type;
1117
1166
  constructor();
1118
- static readonly ml: number;
1119
- private mp;
1120
- get mr(): string;
1121
- set mr(a: string);
1122
- static readonly mm: number;
1123
- private mq;
1124
- get mt(): string;
1125
- set mt(a: string);
1126
- static readonly mo: number;
1127
- private mx;
1128
- get my(): Brush;
1129
- set my(a: Brush);
1130
- static readonly mn: number;
1131
- private mj;
1132
- get mk(): FontInfo;
1133
- set mk(a: FontInfo);
1167
+ static readonly ny: number;
1168
+ private n2;
1169
+ get n4(): string;
1170
+ set n4(a: string);
1171
+ static readonly nz: number;
1172
+ private n3;
1173
+ get n6(): string;
1174
+ set n6(a: string);
1175
+ static readonly n1: number;
1176
+ private oa;
1177
+ get ob(): Brush;
1178
+ set ob(a: Brush);
1179
+ static readonly n0: number;
1180
+ private nw;
1181
+ get nx(): FontInfo;
1182
+ set nx(a: FontInfo);
1134
1183
  b(a: CellModelExport): CellModelExport;
1135
- bm(a: DataSourceRowType): boolean;
1184
+ bq(a: DataSourceRowType): boolean;
1136
1185
  }
1137
1186
  /**
1138
1187
  * @hidden
@@ -1147,22 +1196,22 @@ export declare class VerticalSeparatorCellModel extends CellModel {
1147
1196
  export declare class ImageCellModel extends CellModel {
1148
1197
  static $t: Type;
1149
1198
  constructor();
1150
- static readonly mn: number;
1151
- private mq;
1152
- get mr(): string;
1153
- set mr(a: string);
1154
- static readonly mp: number;
1155
- private ml;
1156
- get mm(): ImageStretchOptions;
1157
- set mm(a: ImageStretchOptions);
1158
- static readonly mo: number;
1159
- private mj;
1160
- get mk(): ImageResourceType;
1161
- set mk(a: ImageResourceType);
1199
+ static readonly n0: number;
1200
+ private n3;
1201
+ get n4(): string;
1202
+ set n4(a: string);
1203
+ static readonly n2: number;
1204
+ private ny;
1205
+ get nz(): ImageStretchOptions;
1206
+ set nz(a: ImageStretchOptions);
1207
+ static readonly n1: number;
1208
+ private nw;
1209
+ get nx(): ImageResourceType;
1210
+ set nx(a: ImageResourceType);
1162
1211
  b(a: CellModelExport): CellModelExport;
1163
- ld(a: string, b: any): void;
1164
- kp(a: string): Type;
1165
- hm(a: string): any;
1212
+ mk(a: string, b: any): void;
1213
+ lw(a: string): Type;
1214
+ ia(a: string): any;
1166
1215
  }
1167
1216
  /**
1168
1217
  * @hidden
@@ -1170,67 +1219,67 @@ export declare class ImageCellModel extends CellModel {
1170
1219
  export declare class NumericCellModel extends CellModel {
1171
1220
  static $t: Type;
1172
1221
  constructor();
1173
- static readonly m8: number;
1174
- private mr;
1175
- get ms(): number;
1176
- set ms(a: number);
1177
- static readonly mz: number;
1178
- private mm;
1179
- get mo(): boolean;
1180
- set mo(a: boolean);
1181
- static readonly my: number;
1182
- private nf;
1183
- get nm(): string;
1184
- set nm(a: string);
1185
- static readonly mx: number;
1186
- private mj;
1187
- get mk(): any[];
1188
- set mk(a: any[]);
1189
- ml: BindingFormatter;
1190
- private nd;
1191
- static readonly mw: number;
1222
+ static readonly ol: number;
1223
+ private n4;
1224
+ get n5(): number;
1225
+ set n5(a: number);
1226
+ static readonly oc: number;
1227
+ private nz;
1228
+ get n1(): boolean;
1229
+ set n1(a: boolean);
1230
+ static readonly ob: number;
1231
+ private os;
1232
+ get oz(): string;
1233
+ set oz(a: string);
1234
+ static readonly oa: number;
1235
+ private nw;
1236
+ get nx(): any[];
1237
+ set nx(a: any[]);
1238
+ ny: BindingFormatter;
1239
+ private oq;
1240
+ static readonly n9: number;
1192
1241
  private _formatOverride;
1193
- get ne(): any;
1194
- set ne(a: any);
1195
- static readonly m6: number;
1196
- private ng;
1197
- get ns(): string;
1198
- set ns(a: string);
1199
- static readonly m9: number;
1200
- private ni;
1201
- get nx(): string;
1202
- set nx(a: string);
1203
- static readonly m7: number;
1204
- private nh;
1205
- get nu(): string;
1206
- set nu(a: string);
1207
- static readonly na: number;
1208
- private nj;
1209
- get nz(): string;
1210
- set nz(a: string);
1211
- static readonly m1: number;
1212
- private mt;
1213
- get m0(): number;
1214
- set m0(a: number);
1215
- static readonly m3: number;
1216
- private mu;
1217
- get m2(): number;
1218
- set m2(a: number);
1219
- static readonly m5: number;
1220
- private mv;
1221
- get m4(): number;
1222
- set m4(a: number);
1223
- static readonly nb: number;
1224
- private mn;
1225
- get mq(): boolean;
1226
- set mq(a: boolean);
1227
- mp(): boolean;
1228
- protected k7(a: string, b: any, c: any): void;
1229
- ld(a: string, b: any): void;
1230
- kp(a: string): Type;
1231
- hm(a: string): any;
1242
+ get or(): any;
1243
+ set or(a: any);
1244
+ static readonly oj: number;
1245
+ private ot;
1246
+ get o5(): string;
1247
+ set o5(a: string);
1248
+ static readonly om: number;
1249
+ private ov;
1250
+ get pa(): string;
1251
+ set pa(a: string);
1252
+ static readonly ok: number;
1253
+ private ou;
1254
+ get o7(): string;
1255
+ set o7(a: string);
1256
+ static readonly on: number;
1257
+ private ow;
1258
+ get pc(): string;
1259
+ set pc(a: string);
1260
+ static readonly oe: number;
1261
+ private n6;
1262
+ get od(): number;
1263
+ set od(a: number);
1264
+ static readonly og: number;
1265
+ private n7;
1266
+ get of(): number;
1267
+ set of(a: number);
1268
+ static readonly oi: number;
1269
+ private n8;
1270
+ get oh(): number;
1271
+ set oh(a: number);
1272
+ static readonly oo: number;
1273
+ private n0;
1274
+ get n3(): boolean;
1275
+ set n3(a: boolean);
1276
+ n2(): boolean;
1277
+ protected me(a: string, b: any, c: any): void;
1278
+ mk(a: string, b: any): void;
1279
+ lw(a: string): Type;
1280
+ ia(a: string): any;
1232
1281
  b(a: CellModelExport): CellModelExport;
1233
- i6(): string;
1282
+ jx(): string;
1234
1283
  }
1235
1284
  /**
1236
1285
  * @hidden
@@ -1246,31 +1295,31 @@ export declare class RowSeparatorModel extends CellModel {
1246
1295
  export declare class SectionHeaderCellModel extends CellModel {
1247
1296
  static $t: Type;
1248
1297
  constructor();
1249
- static readonly mp: number;
1250
- private mj;
1251
- get ml(): GroupData[];
1252
- set ml(a: GroupData[]);
1253
- static readonly ms: number;
1254
- private mk;
1255
- get mm(): SummaryData[];
1256
- set mm(a: SummaryData[]);
1257
- static readonly mr: number;
1258
- private mv;
1259
- get mz(): string;
1260
- set mz(a: string);
1261
- static readonly mq: number;
1262
- private mu;
1263
- get mx(): string;
1264
- set mx(a: string);
1265
- static readonly mt: number;
1266
- private mn;
1267
- get mo(): GroupSummaryDisplayMode;
1268
- set mo(a: GroupSummaryDisplayMode);
1269
- ld(a: string, b: any): void;
1270
- kp(a: string): Type;
1271
- hm(a: string): any;
1298
+ static readonly n2: number;
1299
+ private nw;
1300
+ get ny(): GroupData[];
1301
+ set ny(a: GroupData[]);
1302
+ static readonly n5: number;
1303
+ private nx;
1304
+ get nz(): SummaryData[];
1305
+ set nz(a: SummaryData[]);
1306
+ static readonly n4: number;
1307
+ private n8;
1308
+ get oc(): string;
1309
+ set oc(a: string);
1310
+ static readonly n3: number;
1311
+ private n7;
1312
+ get oa(): string;
1313
+ set oa(a: string);
1314
+ static readonly n6: number;
1315
+ private n0;
1316
+ get n1(): GroupSummaryDisplayMode;
1317
+ set n1(a: GroupSummaryDisplayMode);
1318
+ mk(a: string, b: any): void;
1319
+ lw(a: string): Type;
1320
+ ia(a: string): any;
1272
1321
  b(a: CellModelExport): CellModelExport;
1273
- bm(a: DataSourceRowType): boolean;
1322
+ bq(a: DataSourceRowType): boolean;
1274
1323
  }
1275
1324
  /**
1276
1325
  * @hidden
@@ -1278,13 +1327,13 @@ export declare class SectionHeaderCellModel extends CellModel {
1278
1327
  export declare class TemplateCellModel extends CellModel {
1279
1328
  static $t: Type;
1280
1329
  constructor();
1281
- static readonly mj: number;
1282
- private mk;
1283
- get ml(): any;
1284
- set ml(a: any);
1285
- ld(a: string, b: any): void;
1286
- kp(a: string): Type;
1287
- hm(a: string): any;
1330
+ static readonly nw: number;
1331
+ private nx;
1332
+ get ny(): any;
1333
+ set ny(a: any);
1334
+ mk(a: string, b: any): void;
1335
+ lw(a: string): Type;
1336
+ ia(a: string): any;
1288
1337
  b(a: CellModelExport): CellModelExport;
1289
1338
  }
1290
1339
  /**
@@ -1293,15 +1342,15 @@ export declare class TemplateCellModel extends CellModel {
1293
1342
  export declare class TextCellModel extends CellModel {
1294
1343
  static $t: Type;
1295
1344
  constructor();
1296
- static readonly mj: number;
1297
- private mk;
1298
- get ml(): string;
1299
- set ml(a: string);
1300
- ld(a: string, b: any): void;
1301
- kp(a: string): Type;
1302
- hm(a: string): any;
1345
+ static readonly nw: number;
1346
+ private nx;
1347
+ get ny(): string;
1348
+ set ny(a: string);
1349
+ mk(a: string, b: any): void;
1350
+ lw(a: string): Type;
1351
+ ia(a: string): any;
1303
1352
  b(a: CellModelExport): CellModelExport;
1304
- i6(): string;
1353
+ jx(): string;
1305
1354
  }
1306
1355
  /**
1307
1356
  * @hidden
@@ -1309,29 +1358,29 @@ export declare class TextCellModel extends CellModel {
1309
1358
  export declare class TextHeaderCellModel extends TextCellModel {
1310
1359
  static $t: Type;
1311
1360
  constructor();
1312
- static readonly my: number;
1313
- private mt;
1314
- get mu(): boolean;
1315
- set mu(a: boolean);
1316
- static readonly mz: number;
1317
- private mr;
1318
- get ms(): SortIndicatorStyle;
1319
- set ms(a: SortIndicatorStyle);
1320
- static readonly mv: number;
1321
- private mn;
1322
- get mo(): ColumnOptionsIconAlignment;
1323
- set mo(a: ColumnOptionsIconAlignment);
1324
- static readonly mx: number;
1325
- private m5;
1326
- get m6(): Brush;
1327
- set m6(a: Brush);
1328
- static readonly mw: number;
1329
- private mp;
1330
- get mq(): ColumnOptionsIconBehavior;
1331
- set mq(a: ColumnOptionsIconBehavior);
1332
- ld(a: string, b: any): void;
1333
- kp(a: string): Type;
1334
- hm(a: string): any;
1361
+ static readonly ob: number;
1362
+ private n6;
1363
+ get n7(): boolean;
1364
+ set n7(a: boolean);
1365
+ static readonly oc: number;
1366
+ private n4;
1367
+ get n5(): SortIndicatorStyle;
1368
+ set n5(a: SortIndicatorStyle);
1369
+ static readonly n8: number;
1370
+ private n0;
1371
+ get n1(): ColumnOptionsIconAlignment;
1372
+ set n1(a: ColumnOptionsIconAlignment);
1373
+ static readonly oa: number;
1374
+ private oi;
1375
+ get oj(): Brush;
1376
+ set oj(a: Brush);
1377
+ static readonly n9: number;
1378
+ private n2;
1379
+ get n3(): ColumnOptionsIconBehavior;
1380
+ set n3(a: ColumnOptionsIconBehavior);
1381
+ mk(a: string, b: any): void;
1382
+ lw(a: string): Type;
1383
+ ia(a: string): any;
1335
1384
  b(a: CellModelExport): CellModelExport;
1336
1385
  }
1337
1386
  /**
@@ -1569,7 +1618,7 @@ export declare class EditingManager extends Base {
1569
1618
  */
1570
1619
  export declare class DataGrid extends Base implements INotifyPropertyChanged {
1571
1620
  static $t: Type;
1572
- private op;
1621
+ private or;
1573
1622
  get externalObject(): any;
1574
1623
  set externalObject(a: any);
1575
1624
  private _propertySetter;
@@ -1592,43 +1641,43 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
1592
1641
  set toolbar(a: IDataGridComponent);
1593
1642
  columnExchangingAnimationCompleted: (sender: any, e: EventArgs) => void;
1594
1643
  columnExchangingAnimationCanceled: (sender: any, e: EventArgs) => void;
1595
- v6(a: DataGridColumn): void;
1596
- v5(a: DataGridColumn): void;
1644
+ v9(a: DataGridColumn): void;
1645
+ v8(a: DataGridColumn): void;
1597
1646
  columnShowingAnimationCompleted: (sender: any, e: EventArgs) => void;
1598
1647
  columnShowingAnimationCanceled: (sender: any, e: EventArgs) => void;
1599
1648
  o(a: CellModel): ColumnFilterCondition;
1600
1649
  q(a: CellModel): DataSourceSchemaPropertyType;
1601
- wg(a: DataGridColumn): void;
1650
+ wj(a: DataGridColumn): void;
1602
1651
  filterExpressionsChanging: (sender: any, args: GridFilterExpressionsEventArgs) => void;
1603
1652
  filterExpressionsChanged: (sender: any, args: GridFilterExpressionsEventArgs) => void;
1604
- ug(a: CellModel, b: ColumnFilterCondition): void;
1605
- uf(a: CellModel, b: ColumnFilterCondition): void;
1606
- wf(a: DataGridColumn): void;
1653
+ uj(a: CellModel, b: ColumnFilterCondition): void;
1654
+ ui(a: CellModel, b: ColumnFilterCondition): void;
1655
+ wi(a: DataGridColumn): void;
1607
1656
  columnMovingAnimationCompleted: (sender: any, e: EventArgs) => void;
1608
1657
  columnMovingAnimationCanceled: (sender: any, e: EventArgs) => void;
1609
- wc(a: DataGridColumn): void;
1610
- wb(a: DataGridColumn): void;
1658
+ wf(a: DataGridColumn): void;
1659
+ we(a: DataGridColumn): void;
1611
1660
  columnHidingAnimationCompleted: (sender: any, e: EventArgs) => void;
1612
1661
  columnHidingAnimationCanceled: (sender: any, e: EventArgs) => void;
1613
- v8(a: DataGridColumn): void;
1614
- v7(a: DataGridColumn): void;
1662
+ wb(a: DataGridColumn): void;
1663
+ wa(a: DataGridColumn): void;
1615
1664
  cellPreviewPointerDown: (sender: any, args: DataGridCellEventArgs) => void;
1616
- v0(a: CellModel): void;
1665
+ v3(a: CellModel): void;
1617
1666
  cellPreviewPointerUp: (sender: any, args: DataGridCellEventArgs) => void;
1618
- v1(a: CellModel): void;
1667
+ v4(a: CellModel): void;
1619
1668
  cellPointerDown: (sender: any, args: DataGridCellEventArgs) => void;
1620
- vy(a: CellModel): void;
1669
+ v1(a: CellModel): void;
1621
1670
  cellPointerUp: (sender: any, args: DataGridCellEventArgs) => void;
1622
- vz(a: CellModel): void;
1623
- w8(a: number, b: string): void;
1671
+ v2(a: CellModel): void;
1672
+ xb(a: number, b: string): void;
1624
1673
  cellClicked: (sender: any, args: DataGridCellEventArgs) => void;
1625
- wv(a: CellModel): void;
1626
- y0(a: number): void;
1627
- private m1;
1628
- wu(a: EditorCellModel): void;
1629
- vr(a: CellModel, b: MouseButton): void;
1630
- vp(a: CellModel, b: boolean, c: boolean, d: MouseButton): void;
1631
- private xr;
1674
+ wy(a: CellModel): void;
1675
+ y3(a: number): void;
1676
+ private m3;
1677
+ wx(a: EditorCellModel): void;
1678
+ vu(a: CellModel, b: MouseButton): void;
1679
+ vs(a: CellModel, b: boolean, c: boolean, d: MouseButton): void;
1680
+ private xu;
1632
1681
  private br;
1633
1682
  get columnResizingMode(): ColumnResizingMode;
1634
1683
  set columnResizingMode(a: ColumnResizingMode);
@@ -1639,100 +1688,100 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
1639
1688
  private h5;
1640
1689
  get isRowHoverEnabled(): boolean;
1641
1690
  set isRowHoverEnabled(a: boolean);
1642
- private zt;
1691
+ private zw;
1643
1692
  get rowHoverBackground(): Brush;
1644
1693
  set rowHoverBackground(a: Brush);
1645
- private zu;
1694
+ private zx;
1646
1695
  get rowHoverTextColor(): Brush;
1647
1696
  set rowHoverTextColor(a: Brush);
1648
- private zl;
1697
+ private zo;
1649
1698
  get editRowBorder(): Brush;
1650
1699
  set editRowBorder(a: Brush);
1651
- private abh;
1700
+ private abk;
1652
1701
  get editRowBorderWidth(): Thickness;
1653
1702
  set editRowBorderWidth(a: Thickness);
1654
- abb: Point;
1703
+ abe: Point;
1655
1704
  ar: CellPath;
1656
1705
  ao: CellPath;
1657
1706
  private hu;
1658
- vw(a: CellModel, b: number, c: number): void;
1707
+ vz(a: CellModel, b: number, c: number): void;
1708
+ v0(a: CellModel, b: number, c: number): void;
1709
+ vy(a: CellModel, b: number, c: number): void;
1710
+ w3(a: CellModel, b: boolean, c: boolean, d: MouseButton): void;
1711
+ w4(a: CellModel, b: boolean, c: boolean, d: MouseButton): void;
1712
+ private jd;
1713
+ private m7;
1714
+ private get og();
1715
+ private set og(value);
1659
1716
  vx(a: CellModel, b: number, c: number): void;
1660
- vv(a: CellModel, b: number, c: number): void;
1661
- w0(a: CellModel, b: boolean, c: boolean, d: MouseButton): void;
1662
- w1(a: CellModel, b: boolean, c: boolean, d: MouseButton): void;
1663
- private jc;
1664
- private m5;
1665
- private get oe();
1666
- private set oe(value);
1667
- vu(a: CellModel, b: number, c: number): void;
1668
- wz(a: CellModel, b: number, c: number): void;
1669
- private nd;
1717
+ w2(a: CellModel, b: number, c: number): void;
1718
+ private nf;
1670
1719
  private ib;
1671
1720
  private ia;
1672
1721
  private hj;
1673
- private l7;
1722
+ private l9;
1723
+ private mg;
1674
1724
  private me;
1675
- private mc;
1676
- private md;
1677
- private lt;
1678
- private l2;
1679
- private l3;
1725
+ private mf;
1726
+ private lv;
1680
1727
  private l4;
1681
1728
  private l5;
1729
+ private l6;
1730
+ private l7;
1682
1731
  private as;
1683
- private nj;
1684
- private ni;
1685
- private ir;
1686
- ub(): void;
1687
- wt(a: CellPath, b: number, c: number, d: boolean): void;
1688
- wp(a: any, b: DragSelectEventArgs): void;
1689
- wn(a: any, b: DragSelectEventArgs): void;
1690
- private m9;
1691
- get og(): number;
1692
- set og(a: number);
1732
+ private nl;
1693
1733
  private nk;
1734
+ private ir;
1735
+ ue(): void;
1736
+ ww(a: CellPath, b: number, c: number, d: boolean): void;
1737
+ ws(a: any, b: DragSelectEventArgs): void;
1738
+ wq(a: any, b: DragSelectEventArgs): void;
1739
+ private nb;
1740
+ get oi(): number;
1741
+ set oi(a: number);
1742
+ private nm;
1694
1743
  private fn;
1695
- private wo;
1744
+ private wr;
1696
1745
  private an;
1697
1746
  private aj;
1698
1747
  private ak;
1699
- private ly;
1748
+ private l0;
1749
+ private md;
1750
+ private ma;
1700
1751
  private mb;
1701
- private l8;
1702
- private l9;
1703
- private wq;
1704
- private wr;
1705
- private yh;
1706
- private ws;
1707
- private lo;
1708
- private lp;
1709
- private ym;
1710
- private abd;
1752
+ private wt;
1753
+ private wu;
1754
+ private yk;
1755
+ private wv;
1756
+ private lq;
1757
+ private lr;
1758
+ private yp;
1759
+ private abg;
1711
1760
  private ai;
1712
1761
  getHitCell(a: number, b: number): CellModel;
1713
1762
  private au;
1714
- private i1;
1715
- private uo;
1716
- private y5;
1763
+ private i2;
1764
+ private ur;
1765
+ private y8;
1717
1766
  constructor();
1718
- x7(a: ColumnGroupDescription): void;
1719
- x8(a: ColumnSummaryDescription): void;
1720
- private yt;
1767
+ ya(a: ColumnGroupDescription): void;
1768
+ yb(a: ColumnSummaryDescription): void;
1769
+ private yw;
1770
+ private u1;
1771
+ private j4;
1721
1772
  private uy;
1722
- private j3;
1723
- private uv;
1724
- private yr;
1725
- private yz;
1773
+ private yu;
1774
+ private y2;
1726
1775
  private b5;
1727
- private iu;
1728
- private yk;
1776
+ private iv;
1777
+ private yn;
1778
+ private yo;
1779
+ private ix;
1780
+ private ym;
1729
1781
  private yl;
1730
- private iw;
1731
- private yj;
1732
- private yi;
1733
- private it;
1734
- private xn;
1735
- private xo;
1782
+ private iu;
1783
+ private xq;
1784
+ private xr;
1736
1785
  private c4;
1737
1786
  get c5(): GridAnimationManager;
1738
1787
  set c5(a: GridAnimationManager);
@@ -1814,46 +1863,46 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
1814
1863
  private _viewportManager;
1815
1864
  get viewportManager(): IViewportManager;
1816
1865
  set viewportManager(a: IViewportManager);
1817
- private lx;
1818
- get mg(): number;
1819
- set mg(a: number);
1820
- private lw;
1821
- get mf(): number;
1822
- set mf(a: number);
1866
+ private lz;
1867
+ get mi(): number;
1868
+ set mi(a: number);
1869
+ private ly;
1870
+ get mh(): number;
1871
+ set mh(a: number);
1823
1872
  private go;
1824
1873
  get density(): ControlDisplayDensity;
1825
1874
  set density(a: ControlDisplayDensity);
1826
- private mw;
1875
+ private my;
1827
1876
  get actualRowHeight(): number;
1828
1877
  set actualRowHeight(a: number);
1829
- private na;
1878
+ private nc;
1830
1879
  get rowHeight(): number;
1831
1880
  set rowHeight(a: number);
1832
1881
  private ca;
1833
1882
  get defaultColumnWidth(): ColumnWidth;
1834
1883
  set defaultColumnWidth(a: ColumnWidth);
1835
- private l1;
1884
+ private l3;
1836
1885
  get defaultColumnMinWidth(): number;
1837
1886
  set defaultColumnMinWidth(a: number);
1838
- private mv;
1887
+ private mx;
1839
1888
  get actualHeaderHeight(): number;
1840
1889
  set actualHeaderHeight(a: number);
1841
- private m2;
1890
+ private m4;
1842
1891
  get headerHeight(): number;
1843
1892
  set headerHeight(a: number);
1844
- private nf;
1893
+ private nh;
1845
1894
  get sectionHeaderHeight(): number;
1846
1895
  set sectionHeaderHeight(a: number);
1847
- private oq;
1896
+ private os;
1848
1897
  get itemsSource(): any;
1849
1898
  set itemsSource(a: any);
1850
- private ne;
1899
+ private ng;
1851
1900
  get sectionFooterHeight(): number;
1852
1901
  set sectionFooterHeight(a: number);
1853
- private nc;
1902
+ private ne;
1854
1903
  get rowSpacingHeight(): number;
1855
1904
  set rowSpacingHeight(a: number);
1856
- private m0;
1905
+ private m2;
1857
1906
  get columnSpacingWidth(): number;
1858
1907
  set columnSpacingWidth(a: number);
1859
1908
  private ev;
@@ -1871,35 +1920,35 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
1871
1920
  private hg;
1872
1921
  get autoGenerateColumns(): boolean;
1873
1922
  set autoGenerateColumns(a: boolean);
1874
- private nb;
1923
+ private nd;
1875
1924
  get rowSeparatorHeight(): number;
1876
1925
  set rowSeparatorHeight(a: number);
1877
1926
  private h4;
1878
1927
  get isPlaceholderRenderingEnabled(): boolean;
1879
1928
  set isPlaceholderRenderingEnabled(a: boolean);
1880
- private jj;
1929
+ private jk;
1881
1930
  private bz;
1882
1931
  private bv;
1883
1932
  get columnAddingAnimationMode(): ColumnShowingAnimationMode;
1884
1933
  set columnAddingAnimationMode(a: ColumnShowingAnimationMode);
1885
- get jr(): boolean;
1934
+ get js(): boolean;
1886
1935
  private bm;
1887
1936
  get columnPropertyUpdatingAnimationMode(): ColumnPropertyUpdatingAnimationMode;
1888
1937
  set columnPropertyUpdatingAnimationMode(a: ColumnPropertyUpdatingAnimationMode);
1889
- protected get jk(): boolean;
1890
- get jg(): boolean;
1938
+ protected get jl(): boolean;
1939
+ get jh(): boolean;
1891
1940
  private ag;
1892
1941
  get cellDataLoadedAnimationMode(): CellDataLoadedAnimationMode;
1893
1942
  set cellDataLoadedAnimationMode(a: CellDataLoadedAnimationMode);
1894
- get kd(): boolean;
1943
+ get ke(): boolean;
1895
1944
  private fv;
1896
1945
  get rowSelectionAnimationMode(): RowSelectionAnimationMode;
1897
1946
  set rowSelectionAnimationMode(a: RowSelectionAnimationMode);
1898
- get kb(): boolean;
1947
+ get kc(): boolean;
1899
1948
  private fs;
1900
1949
  get rowHoverAnimationMode(): RowHoverAnimationMode;
1901
1950
  set rowHoverAnimationMode(a: RowHoverAnimationMode);
1902
- get jh(): boolean;
1951
+ get ji(): boolean;
1903
1952
  private av;
1904
1953
  get cellSelectionAnimationMode(): CellSelectionAnimationMode;
1905
1954
  set cellSelectionAnimationMode(a: CellSelectionAnimationMode);
@@ -1909,32 +1958,32 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
1909
1958
  private c6;
1910
1959
  get animationSettings(): GridAnimationSettings;
1911
1960
  set animationSettings(a: GridAnimationSettings);
1912
- js(a: DataGridColumn): boolean;
1961
+ jt(a: DataGridColumn): boolean;
1913
1962
  private bq;
1914
1963
  private bo;
1915
1964
  get columnResizingAnimationMode(): ColumnResizingAnimationMode;
1916
1965
  set columnResizingAnimationMode(a: ColumnResizingAnimationMode);
1917
- private jt;
1966
+ private ju;
1918
1967
  private b0;
1919
1968
  private bw;
1920
1969
  get columnShowingAnimationMode(): ColumnShowingAnimationMode;
1921
1970
  set columnShowingAnimationMode(a: ColumnShowingAnimationMode);
1922
- private jn;
1971
+ private jo;
1923
1972
  private bc;
1924
1973
  private ba;
1925
1974
  get columnMovingAnimationMode(): ColumnMovingAnimationMode;
1926
1975
  set columnMovingAnimationMode(a: ColumnMovingAnimationMode);
1927
- private jm;
1976
+ private jn;
1928
1977
  private a9;
1929
1978
  private a7;
1930
1979
  get columnHidingAnimationMode(): ColumnHidingAnimationMode;
1931
1980
  set columnHidingAnimationMode(a: ColumnHidingAnimationMode);
1932
- private jl;
1981
+ private jm;
1933
1982
  private a1;
1934
1983
  private az;
1935
1984
  get columnExchangingAnimationMode(): ColumnExchangingAnimationMode;
1936
1985
  set columnExchangingAnimationMode(a: ColumnExchangingAnimationMode);
1937
- private abi;
1986
+ private abl;
1938
1987
  get inset(): Thickness;
1939
1988
  set inset(a: Thickness);
1940
1989
  private cg;
@@ -1950,8 +1999,8 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
1950
1999
  get mouseDragSelectionEnabled(): boolean;
1951
2000
  set mouseDragSelectionEnabled(a: boolean);
1952
2001
  private ho;
1953
- get je(): boolean;
1954
- set je(a: boolean);
2002
+ get jf(): boolean;
2003
+ set jf(a: boolean);
1955
2004
  private ec;
1956
2005
  get selectedItems(): GridSelectedItemsCollection;
1957
2006
  private eh;
@@ -1961,13 +2010,13 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
1961
2010
  private d5;
1962
2011
  get selectedCellRanges(): GridSelectedCellRangesCollection;
1963
2012
  private hn;
1964
- get jd(): boolean;
1965
- set jd(a: boolean);
2013
+ get je(): boolean;
2014
+ set je(a: boolean);
1966
2015
  private eb;
1967
2016
  get pinnedItems(): GridSelectedItemsCollection;
1968
2017
  private eg;
1969
2018
  get pinnedKeys(): GridSelectedKeysCollection;
1970
- private yv;
2019
+ private yy;
1971
2020
  private hr;
1972
2021
  get isColumnOptionsEnabled(): boolean;
1973
2022
  set isColumnOptionsEnabled(a: boolean);
@@ -1980,50 +2029,50 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
1980
2029
  private h1;
1981
2030
  get isHeaderSeparatorVisible(): boolean;
1982
2031
  set isHeaderSeparatorVisible(a: boolean);
1983
- private zf;
2032
+ private zi;
1984
2033
  get cellSelectedBackground(): Brush;
1985
2034
  set cellSelectedBackground(a: Brush);
1986
- private z1;
2035
+ private z4;
1987
2036
  get sectionHeaderSelectedBackground(): Brush;
1988
2037
  set sectionHeaderSelectedBackground(a: Brush);
1989
- private z4;
2038
+ private z7;
1990
2039
  get summaryRootBackground(): Brush;
1991
2040
  set summaryRootBackground(a: Brush);
1992
- private z8;
2041
+ private aab;
1993
2042
  get summarySectionBackground(): Brush;
1994
2043
  set summarySectionBackground(a: Brush);
1995
- private ma;
2044
+ private mc;
1996
2045
  get pinnedRowOpacity(): number;
1997
2046
  set pinnedRowOpacity(a: number);
1998
2047
  private gr;
1999
2048
  get editTextStyle(): FontInfo;
2000
2049
  set editTextStyle(a: FontInfo);
2001
- private l6;
2050
+ private l8;
2002
2051
  get editOpacity(): number;
2003
2052
  set editOpacity(a: number);
2004
- private zk;
2053
+ private zn;
2005
2054
  get deletedTextColor(): Brush;
2006
2055
  set deletedTextColor(a: Brush);
2007
- private z3;
2056
+ private z6;
2008
2057
  get stickyRowBackground(): Brush;
2009
2058
  set stickyRowBackground(a: Brush);
2010
- private zs;
2059
+ private zv;
2011
2060
  get pinnedRowBackground(): Brush;
2012
2061
  set pinnedRowBackground(a: Brush);
2013
- private zr;
2062
+ private zu;
2014
2063
  get lastStickyRowBackground(): Brush;
2015
2064
  set lastStickyRowBackground(a: Brush);
2016
2065
  private dg;
2017
2066
  private df;
2018
2067
  get activeCell(): GridCellPosition;
2019
2068
  set activeCell(a: GridCellPosition);
2020
- private ze;
2069
+ private zh;
2021
2070
  get cellBackground(): Brush;
2022
2071
  set cellBackground(a: Brush);
2023
- private zg;
2072
+ private zj;
2024
2073
  get cellTextColor(): Brush;
2025
2074
  set cellTextColor(a: Brush);
2026
- private zp;
2075
+ private zs;
2027
2076
  get headerSortIndicatorColor(): Brush;
2028
2077
  set headerSortIndicatorColor(a: Brush);
2029
2078
  private f6;
@@ -2032,10 +2081,10 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2032
2081
  private gq;
2033
2082
  get cellTextStyle(): FontInfo;
2034
2083
  set cellTextStyle(a: FontInfo);
2035
- private z0;
2084
+ private z3;
2036
2085
  get sectionHeaderBackground(): Brush;
2037
2086
  set sectionHeaderBackground(a: Brush);
2038
- private z2;
2087
+ private z5;
2039
2088
  get sectionHeaderTextColor(): Brush;
2040
2089
  set sectionHeaderTextColor(a: Brush);
2041
2090
  private gt;
@@ -2047,7 +2096,7 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2047
2096
  private gw;
2048
2097
  get summarySectionLabelTextStyle(): FontInfo;
2049
2098
  set summarySectionLabelTextStyle(a: FontInfo);
2050
- private z7;
2099
+ private aaa;
2051
2100
  get summaryRootValueTextColor(): Brush;
2052
2101
  set summaryRootValueTextColor(a: Brush);
2053
2102
  private gv;
@@ -2056,71 +2105,71 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2056
2105
  private gx;
2057
2106
  get summarySectionValueTextStyle(): FontInfo;
2058
2107
  set summarySectionValueTextStyle(a: FontInfo);
2059
- private aab;
2108
+ private aae;
2060
2109
  get summarySectionValueTextColor(): Brush;
2061
2110
  set summarySectionValueTextColor(a: Brush);
2062
- private z5;
2111
+ private z8;
2063
2112
  get summaryRootLabelTextColor(): Brush;
2064
2113
  set summaryRootLabelTextColor(a: Brush);
2065
- private z9;
2114
+ private aac;
2066
2115
  get summarySectionLabelTextColor(): Brush;
2067
2116
  set summarySectionLabelTextColor(a: Brush);
2068
- private z6;
2117
+ private z9;
2069
2118
  get summaryRootSelectedBackground(): Brush;
2070
2119
  set summaryRootSelectedBackground(a: Brush);
2071
- private aaa;
2120
+ private aad;
2072
2121
  get summarySectionSelectedBackground(): Brush;
2073
2122
  set summarySectionSelectedBackground(a: Brush);
2074
- private m8;
2123
+ private na;
2075
2124
  get pinnedAreaSeparatorWidth(): number;
2076
2125
  set pinnedAreaSeparatorWidth(a: number);
2077
- private m3;
2126
+ private m5;
2078
2127
  get headerSeparatorWidth(): number;
2079
2128
  set headerSeparatorWidth(a: number);
2080
- nn(a: number): number;
2081
- private zo;
2129
+ np(a: number): number;
2130
+ private zr;
2082
2131
  get headerSeparatorBackground(): Brush;
2083
2132
  set headerSeparatorBackground(a: Brush);
2084
- private zm;
2133
+ private zp;
2085
2134
  get headerBackground(): Brush;
2086
2135
  set headerBackground(a: Brush);
2087
- private zq;
2136
+ private zt;
2088
2137
  get headerTextColor(): Brush;
2089
2138
  set headerTextColor(a: Brush);
2090
2139
  private gs;
2091
2140
  get headerTextStyle(): FontInfo;
2092
2141
  set headerTextStyle(a: FontInfo);
2093
- private zv;
2142
+ private zy;
2094
2143
  get rowSeparatorBackground(): Brush;
2095
2144
  set rowSeparatorBackground(a: Brush);
2096
- private zn;
2145
+ private zq;
2097
2146
  get headerRowSeparatorBackground(): Brush;
2098
2147
  set headerRowSeparatorBackground(a: Brush);
2099
- private zy;
2148
+ private z1;
2100
2149
  get rowSeparatorStickyRowBackground(): Brush;
2101
2150
  set rowSeparatorStickyRowBackground(a: Brush);
2102
- private zw;
2151
+ private zz;
2103
2152
  get rowSeparatorLastStickyRowBackground(): Brush;
2104
2153
  set rowSeparatorLastStickyRowBackground(a: Brush);
2105
- private zx;
2154
+ private z0;
2106
2155
  get rowSeparatorPinnedRowBackground(): Brush;
2107
2156
  set rowSeparatorPinnedRowBackground(a: Brush);
2108
- private mz;
2157
+ private m1;
2109
2158
  get columnResizingSeparatorWidth(): number;
2110
2159
  set columnResizingSeparatorWidth(a: number);
2111
- private l0;
2160
+ private l2;
2112
2161
  get columnResizingSeparatorOpacity(): number;
2113
2162
  set columnResizingSeparatorOpacity(a: number);
2114
- private mx;
2163
+ private mz;
2115
2164
  get columnMovingSeparatorWidth(): number;
2116
2165
  set columnMovingSeparatorWidth(a: number);
2117
- private lz;
2166
+ private l1;
2118
2167
  get columnMovingSeparatorOpacity(): number;
2119
2168
  set columnMovingSeparatorOpacity(a: number);
2120
- private zj;
2169
+ private zm;
2121
2170
  get columnResizingSeparatorBackground(): Brush;
2122
2171
  set columnResizingSeparatorBackground(a: Brush);
2123
- private zh;
2172
+ private zk;
2124
2173
  get columnMovingSeparatorBackground(): Brush;
2125
2174
  set columnMovingSeparatorBackground(a: Brush);
2126
2175
  private il;
@@ -2129,47 +2178,50 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2129
2178
  private bh;
2130
2179
  get columnOptionsIconAlignment(): ColumnOptionsIconAlignment;
2131
2180
  set columnOptionsIconAlignment(a: ColumnOptionsIconAlignment);
2132
- private zi;
2181
+ private zl;
2133
2182
  get columnOptionsIconColor(): Brush;
2134
2183
  set columnOptionsIconColor(a: Brush);
2135
2184
  private bj;
2136
2185
  get columnOptionsIconBehavior(): ColumnOptionsIconBehavior;
2137
2186
  set columnOptionsIconBehavior(a: ColumnOptionsIconBehavior);
2138
- private zd;
2187
+ private zg;
2139
2188
  get border(): Brush;
2140
2189
  set border(a: Brush);
2141
- private abg;
2142
- get abm(): Thickness;
2143
- set abm(a: Thickness);
2144
- private abe;
2190
+ private abj;
2191
+ get abp(): Thickness;
2192
+ set abp(a: Thickness);
2193
+ private abh;
2145
2194
  get actualBorderWidth(): Thickness;
2146
2195
  set actualBorderWidth(a: Thickness);
2147
- private abf;
2196
+ private abi;
2148
2197
  get borderWidth(): Thickness;
2149
2198
  set borderWidth(a: Thickness);
2150
2199
  private id;
2151
2200
  get notifyOnAllSelectionChanges(): boolean;
2152
2201
  set notifyOnAllSelectionChanges(a: boolean);
2153
- private y8;
2154
- get zc(): CornerRadius;
2155
- set zc(a: CornerRadius);
2156
- private y7;
2202
+ private zb;
2203
+ get zf(): CornerRadius;
2204
+ set zf(a: CornerRadius);
2205
+ private za;
2157
2206
  get cornerRadius(): CornerRadius;
2158
2207
  set cornerRadius(a: CornerRadius);
2159
- private y6;
2208
+ private y9;
2160
2209
  get actualCornerRadius(): CornerRadius;
2161
2210
  set actualCornerRadius(a: CornerRadius);
2162
2211
  static readonly isActiveCellStyleEnabledPropertyName: string;
2163
2212
  private hq;
2164
2213
  get isActiveCellStyleEnabled(): boolean;
2165
2214
  set isActiveCellStyleEnabled(a: boolean);
2215
+ private is;
2216
+ get stopPropagation(): boolean;
2217
+ set stopPropagation(a: boolean);
2166
2218
  private g6;
2167
2219
  get platformPixelConverter(): IPlatformPixelConverter;
2168
2220
  set platformPixelConverter(a: IPlatformPixelConverter);
2169
2221
  private e2;
2170
2222
  get renderingEngine(): ICellRenderingEngine;
2171
2223
  set renderingEngine(a: ICellRenderingEngine);
2172
- private w4;
2224
+ private w7;
2173
2225
  private fq;
2174
2226
  get responsiveStates(): ResponsiveStatesCollection;
2175
2227
  private gk;
@@ -2193,17 +2245,17 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2193
2245
  get initialSortDescriptions(): ColumnSortDescriptionCollection;
2194
2246
  get initialGroupDescriptions(): ColumnGroupDescriptionCollection;
2195
2247
  get initialSummaryDescriptions(): ColumnSummaryDescriptionCollection;
2196
- private o1;
2248
+ private o3;
2197
2249
  get initialSorts(): string;
2198
2250
  set initialSorts(a: string);
2199
- private o0;
2251
+ private o2;
2200
2252
  get initialGroups(): string;
2201
2253
  set initialGroups(a: string);
2202
- private o2;
2254
+ private o4;
2203
2255
  get initialSummaries(): string;
2204
2256
  set initialSummaries(a: string);
2205
- private u3;
2206
- jb(a: any[], b: any[]): boolean;
2257
+ private u6;
2258
+ jc(a: any[], b: any[]): boolean;
2207
2259
  get sortDescriptions(): ColumnSortDescriptionCollection;
2208
2260
  get groupDescriptions(): ColumnGroupDescriptionCollection;
2209
2261
  sortDescriptionsChanged: (sender: any, args: GridSortDescriptionsChangedEventArgs) => void;
@@ -2211,13 +2263,13 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2211
2263
  summaryDescriptionsChanged: (sender: any, args: GridSummaryDescriptionsChangedEventArgs) => void;
2212
2264
  columnHiddenChanged: (sender: any, args: ColumnHiddenChangedEventArgs) => void;
2213
2265
  columnPinnedChanged: (sender: any, args: ColumnPinnedChangedEventArgs) => void;
2214
- private wd;
2266
+ private wg;
2215
2267
  cellValueChanging: (sender: any, args: GridCellValueChangingEventArgs) => void;
2216
2268
  dataCommitted: (sender: any, e: GridDataCommittedEventArgs) => void;
2217
2269
  dataCommitting: (sender: any, e: GridDataCommittingEventArgs) => void;
2218
2270
  get filterExpressions(): FilterExpressionCollection;
2219
2271
  get summaryDescriptions(): ColumnSummaryDescriptionCollection;
2220
- private is;
2272
+ private it;
2221
2273
  private gg;
2222
2274
  get summaryScope(): SummaryScope;
2223
2275
  set summaryScope(a: SummaryScope);
@@ -2242,16 +2294,16 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2242
2294
  set autoAcceptEdits(a: boolean);
2243
2295
  propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
2244
2296
  postPropertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
2245
- protected w2(a: string, b: any, c: any): void;
2246
- x6(): void;
2247
- xu(): void;
2248
- xv(): void;
2297
+ protected w5(a: string, b: any, c: any): void;
2298
+ x9(): void;
2299
+ xx(): void;
2300
+ xy(): void;
2249
2301
  calculateCompleted: (sender: any, e: any) => void;
2250
- vm(): void;
2251
- ux(): void;
2302
+ vp(): void;
2303
+ u0(): void;
2252
2304
  private ij;
2253
- get k1(): boolean;
2254
- set k1(a: boolean);
2305
+ get k2(): boolean;
2306
+ set k2(a: boolean);
2255
2307
  refresh(): void;
2256
2308
  flush(): void;
2257
2309
  private y;
@@ -2265,39 +2317,39 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2265
2317
  get actualPrimaryKey(): string[];
2266
2318
  set actualPrimaryKey(a: string[]);
2267
2319
  private hb;
2268
- get ix(): boolean;
2269
- set ix(a: boolean);
2270
- protected xp(a: string, b: any, c: any): void;
2271
- private yx;
2272
- private za;
2273
- private abl;
2320
+ get iy(): boolean;
2321
+ set iy(a: boolean);
2322
+ protected xs(a: string, b: any, c: any): void;
2323
+ private y0;
2324
+ private zd;
2325
+ private abo;
2274
2326
  syncBorder(): void;
2275
- private wm;
2327
+ private wp;
2276
2328
  private m;
2277
2329
  private n;
2278
2330
  private h;
2279
- private ui;
2280
- private ya;
2281
- private uz;
2282
- private u0;
2283
- private yb;
2284
- private u1;
2285
- private um;
2286
2331
  private ul;
2332
+ private yd;
2333
+ private u2;
2334
+ private u3;
2335
+ private ye;
2336
+ private u4;
2337
+ private up;
2338
+ private uo;
2287
2339
  rootSummariesChanged: (sender: any, args: DataSourceRootSummariesChangedEventArgs) => void;
2288
- private lj;
2289
- private qz;
2290
- private w5;
2291
- private ut;
2292
- private uk;
2293
- private wl;
2294
- vg(): void;
2340
+ private ll;
2341
+ private q1;
2342
+ private w8;
2343
+ private uw;
2344
+ private un;
2345
+ private wo;
2346
+ vj(): void;
2295
2347
  sizeChanged: (sender: any, e: GridSizeChangedEventArgs) => void;
2296
2348
  onSizeChanged(a: number, b: number): void;
2297
2349
  viewportChanged: (sender: any, e: GridViewportChangedEventArgs) => void;
2298
- private m6;
2299
- private m7;
2300
- le: boolean;
2350
+ private m8;
2351
+ private m9;
2352
+ lg: boolean;
2301
2353
  notifyScrollStart(): void;
2302
2354
  notifyScrollStop(): void;
2303
2355
  setViewport(a: number, b: number, c: number, d: number): void;
@@ -2305,35 +2357,35 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2305
2357
  actualColumnsChanged: (sender: any, args: GridColumnsChangedEventArgs) => void;
2306
2358
  private dl;
2307
2359
  get columns(): GridColumnCollection;
2308
- wy(a: CellModel, b: any, c: any): void;
2309
- wx(a: CellModel, b: any, c: any, d: string): void;
2360
+ w1(a: CellModel, b: any, c: any): void;
2361
+ w0(a: CellModel, b: any, c: any, d: string): void;
2310
2362
  cf(a: CellPath): DataGridColumn;
2311
2363
  hideThenRemoveColumn(a: DataGridColumn): void;
2312
2364
  exchangeColumn(a: DataGridColumn, b: DataGridColumn): void;
2313
- private t3;
2365
+ private t6;
2314
2366
  private ic;
2367
+ private wk;
2315
2368
  private wh;
2316
- private we;
2317
- private v9;
2318
- private ue;
2319
- private xb;
2369
+ private wc;
2320
2370
  private uh;
2371
+ private xe;
2372
+ private uk;
2321
2373
  pinColumn(a: DataGridColumn, b: PinnedPositions): void;
2322
- private lc;
2323
- private ld;
2374
+ private le;
2375
+ private lf;
2324
2376
  moveColumn(a: number, b: number): void;
2325
2377
  moveColumnLeft(a: number): void;
2326
2378
  moveColumnRight(a: number): void;
2327
2379
  canMoveColumnLeft(a: number): boolean;
2328
2380
  canMoveColumnRight(a: number): boolean;
2329
- private ki;
2381
+ private kj;
2330
2382
  private cd;
2331
2383
  private cc;
2332
- private wa;
2333
- private ud;
2334
- private yy;
2384
+ private wd;
2385
+ private ug;
2386
+ private y1;
2335
2387
  private ci;
2336
- q0(a: CellPath, b: DataGrid, c: any, d: number): string;
2388
+ q2(a: CellPath, b: DataGrid, c: any, d: number): string;
2337
2389
  al(a: CellPath, b: string): CellModel;
2338
2390
  exportVisualModel(): any;
2339
2391
  exportSerializedVisualModel(): string;
@@ -2344,119 +2396,119 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2344
2396
  scrollToItem(a: any): boolean;
2345
2397
  scrollToPrimaryKey(a: any[]): boolean;
2346
2398
  scrollToColumnByIndex(a: number): void;
2347
- private yd;
2348
- k8(a: DataGridColumn): boolean;
2349
- wk(a: number, b: number): void;
2350
- private uc;
2351
- private nv;
2352
- private k4;
2399
+ private yg;
2400
+ k9(a: DataGridColumn): boolean;
2401
+ wn(a: number, b: number): void;
2402
+ private uf;
2403
+ private nx;
2404
+ private k5;
2353
2405
  getLastVisibleIndex(): number;
2354
2406
  getFirstVisibleIndex(): number;
2355
- nx(): number;
2356
- n2(): number;
2357
- xk(): void;
2358
- ji: boolean;
2359
- j2: boolean;
2360
- get j9(): boolean;
2407
+ nz(): number;
2408
+ n4(): number;
2409
+ xn(): void;
2410
+ jj: boolean;
2411
+ j3: boolean;
2361
2412
  get ka(): boolean;
2362
- get j7(): boolean;
2413
+ get kb(): boolean;
2363
2414
  get j8(): boolean;
2364
- private k2;
2415
+ get j9(): boolean;
2365
2416
  private k3;
2366
- private lk;
2367
- private ll;
2417
+ private k4;
2368
2418
  private lm;
2369
2419
  private ln;
2420
+ private lo;
2421
+ private lp;
2370
2422
  private hd;
2371
2423
  private hc;
2372
- t8(a?: boolean): void;
2373
- ur(): void;
2374
- w9(a: any, b: PrimaryKeyValue): void;
2375
- xa(a: any, b: PrimaryKeyValue): void;
2376
- xg(a: number, b: any, c: PrimaryKeyValue): void;
2377
- private iv;
2378
- vn(a: number, b: number, c: string): void;
2379
- vq(a: number, b: string): void;
2380
- private vo;
2381
- private ng;
2382
- private nh;
2383
- kk(a: boolean, b: boolean): boolean;
2424
+ ub(a?: boolean): void;
2425
+ uu(): void;
2426
+ xc(a: any, b: PrimaryKeyValue): void;
2427
+ xd(a: any, b: PrimaryKeyValue): void;
2428
+ xj(a: number, b: any, c: PrimaryKeyValue): void;
2429
+ private iw;
2430
+ vq(a: number, b: number, c: string): void;
2431
+ vt(a: number, b: string): void;
2432
+ private vr;
2433
+ private ni;
2434
+ private nj;
2384
2435
  kl(a: boolean, b: boolean): boolean;
2385
- private n1;
2436
+ km(a: boolean, b: boolean): boolean;
2437
+ private n3;
2438
+ private ny;
2439
+ private n8;
2440
+ private n7;
2386
2441
  private nw;
2387
- private n6;
2388
- private n5;
2389
- private nu;
2390
- t9(a: number, b: number, c: boolean, d?: boolean): void;
2391
- kp(a: boolean, b: boolean): boolean;
2392
- kr(a: boolean, b: boolean): boolean;
2442
+ uc(a: number, b: number, c: boolean, d?: boolean): void;
2443
+ kq(a: boolean, b: boolean): boolean;
2393
2444
  ks(a: boolean, b: boolean): boolean;
2394
2445
  kt(a: boolean, b: boolean): boolean;
2395
2446
  ku(a: boolean, b: boolean): boolean;
2396
- kw(a: boolean, b: boolean): boolean;
2397
- xl(): void;
2447
+ kv(a: boolean, b: boolean): boolean;
2398
2448
  kx(a: boolean, b: boolean): boolean;
2399
- km(a: boolean, b: boolean): boolean;
2400
- kn(): boolean;
2449
+ xo(): void;
2450
+ ky(a: boolean, b: boolean): boolean;
2451
+ kn(a: boolean, b: boolean): boolean;
2401
2452
  ko(): boolean;
2402
- kv(a: boolean, b: boolean): boolean;
2453
+ kp(): boolean;
2454
+ kw(a: boolean, b: boolean): boolean;
2403
2455
  ap: CellPath;
2404
2456
  aq: CellPath;
2405
- lg(): boolean;
2406
- lb(a: CellModel): boolean;
2407
- ja(a: boolean, b?: boolean): boolean;
2408
- uq(a: boolean): void;
2409
- v2(a: PrimaryKeyValue, b: number): void;
2410
- v3(a: PrimaryKeyValue, b: number): void;
2457
+ li(): boolean;
2458
+ lc(a: CellModel): boolean;
2459
+ jb(a: boolean, b?: boolean): boolean;
2460
+ ut(a: boolean): void;
2461
+ v5(a: PrimaryKeyValue, b: number): void;
2462
+ v6(a: PrimaryKeyValue, b: number): void;
2411
2463
  columnsAutoGenerated: (sender: any, args: GridColumnsAutoGeneratedEventArgs) => void;
2412
2464
  selectedItemsChanged: (sender: any, args: GridSelectedItemsChangedEventArgs) => void;
2413
2465
  selectedKeysChanged: (sender: any, args: GridSelectedKeysChangedEventArgs) => void;
2414
2466
  selectedCellsChanged: (sender: any, args: GridSelectedCellsChangedEventArgs) => void;
2415
2467
  selectionChanged: (sender: any, args: GridSelectionChangedEventArgs) => void;
2416
2468
  private ik;
2417
- private xh;
2469
+ private xk;
2418
2470
  activeCellChanged: (sender: any, args: GridActiveCellChangedEventArgs) => void;
2419
2471
  selectedCellRangesChanged: (sender: any, args: GridSelectedCellRangesChangedEventArgs) => void;
2420
- y3(a: List$1<any>, b: List$1<PrimaryKeyValue>, c: List$1<any>, d: List$1<PrimaryKeyValue>): void;
2421
- t6(a: List$1<any>, b: List$1<PrimaryKeyValue>): void;
2422
- t7(a: any, b: PrimaryKeyValue, c: boolean): void;
2423
- y2(a: number, b: any, c: PrimaryKeyValue): void;
2424
- x3(a: List$1<any>, b: List$1<PrimaryKeyValue>): void;
2425
- x4(a: any, b: PrimaryKeyValue, c: boolean): void;
2426
- private xd;
2427
- private xe;
2428
- private xc;
2472
+ y6(a: List$1<any>, b: List$1<PrimaryKeyValue>, c: List$1<any>, d: List$1<PrimaryKeyValue>): void;
2473
+ t9(a: List$1<any>, b: List$1<PrimaryKeyValue>): void;
2474
+ ua(a: any, b: PrimaryKeyValue, c: boolean): void;
2475
+ y5(a: number, b: any, c: PrimaryKeyValue): void;
2476
+ x6(a: List$1<any>, b: List$1<PrimaryKeyValue>): void;
2477
+ x7(a: any, b: PrimaryKeyValue, c: boolean): void;
2478
+ private xg;
2479
+ private xh;
2429
2480
  private xf;
2481
+ private xi;
2430
2482
  private at;
2431
- t5(a: number, b: number, c: number, d: number): void;
2432
- t4(a: CellRange): void;
2433
- x0(a: CellRange): void;
2434
- xz(): void;
2435
- private ve;
2436
- xi(a: number, b: any, c: any): void;
2437
- private u4;
2438
- v4(): void;
2439
- x9(a: GridConditionalStyle, b: DataGridColumn): void;
2440
- x5(a: GridConditionalStyle, b: DataGridColumn): void;
2441
- lq(a: GridConditionalStyle, b: DataGridColumn): List$1<ColumnSummaryDescription>;
2442
- private li;
2443
- us(a: ColumnSummaryDescription): void;
2444
- private jv;
2445
- xy(a: ColumnSummaryDescription): void;
2483
+ t8(a: number, b: number, c: number, d: number): void;
2484
+ t7(a: CellRange): void;
2485
+ x3(a: CellRange): void;
2486
+ x2(): void;
2487
+ private vh;
2488
+ xl(a: number, b: any, c: any): void;
2489
+ private u7;
2490
+ v7(): void;
2491
+ yc(a: GridConditionalStyle, b: DataGridColumn): void;
2492
+ x8(a: GridConditionalStyle, b: DataGridColumn): void;
2493
+ ls(a: GridConditionalStyle, b: DataGridColumn): List$1<ColumnSummaryDescription>;
2494
+ private lk;
2495
+ uv(a: ColumnSummaryDescription): void;
2496
+ private jw;
2497
+ x1(a: ColumnSummaryDescription): void;
2446
2498
  invalidateVisibleRows(): void;
2447
- oy(a: DataGridColumn): any;
2448
- ox(a: DataGridColumn): any;
2499
+ o0(a: DataGridColumn): any;
2449
2500
  oz(a: DataGridColumn): any;
2450
- private u5;
2451
- private ny;
2452
- private n3;
2453
- private u6;
2501
+ o1(a: DataGridColumn): any;
2502
+ private u8;
2503
+ private n0;
2504
+ private n5;
2505
+ private u9;
2454
2506
  private hp;
2455
- xq(): void;
2456
- ww(a: number, b: any): void;
2457
- w3(a: number, b: any): void;
2507
+ xt(): void;
2508
+ wz(a: number, b: any): void;
2509
+ w6(a: number, b: any): void;
2458
2510
  setActiveResponsiveState(a: string): void;
2459
- yo(a: ResponsiveState): void;
2511
+ yr(a: ResponsiveState): void;
2460
2512
  notifySetItem(a: number, b: any, c: any): void;
2461
2513
  notifyClearItems(): void;
2462
2514
  notifyInsertItem(a: number, b: any): void;
@@ -2479,20 +2531,20 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2479
2531
  get reactsToFilterChanges(): boolean;
2480
2532
  set reactsToFilterChanges(a: boolean);
2481
2533
  z(a: DataGridColumn): IFilterExpression;
2482
- lh(a: CellModel, b: number, c: any, d: any, e: any): boolean;
2483
- private y4;
2484
- private or;
2534
+ lj(a: CellModel, b: number, c: any, d: any, e: any): boolean;
2535
+ private y7;
2536
+ private ot;
2485
2537
  columnWidthChanged: (sender: any, args: GridColumnWidthChangedEventArgs) => void;
2486
- private wi;
2538
+ private wl;
2487
2539
  cellEditStarted: (sender: any, args: GridCellEditStartedEventArgs) => void;
2488
- private vt;
2540
+ private vw;
2489
2541
  cellEditEnded: (sender: any, args: GridCellEditEndedEventArgs) => void;
2490
- private vs;
2542
+ private vv;
2491
2543
  rowEditStarted: (sender: any, args: GridRowEditStartedEventArgs) => void;
2492
- private w7;
2544
+ private xa;
2493
2545
  rowEditEnded: (sender: any, args: GridRowEditEndedEventArgs) => void;
2494
- private w6;
2495
- ju(): boolean;
2546
+ private w9;
2547
+ jv(): boolean;
2496
2548
  get canUndo(): boolean;
2497
2549
  get canRedo(): boolean;
2498
2550
  get canCommit(): boolean;
@@ -2520,11 +2572,11 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2520
2572
  selectAllRows(): void;
2521
2573
  deselectAllRows(): void;
2522
2574
  private h2;
2523
- get j4(): boolean;
2524
- set j4(a: boolean);
2525
- kq(a: Key, b: boolean, c: boolean): boolean;
2526
- private lf;
2527
- k9(): boolean;
2575
+ get j5(): boolean;
2576
+ set j5(a: boolean);
2577
+ kr(a: Key, b: boolean, c: boolean): boolean;
2578
+ private lh;
2579
+ la(): boolean;
2528
2580
  private ht;
2529
2581
  get isColumnOptionsSummariesEnabled(): boolean;
2530
2582
  set isColumnOptionsSummariesEnabled(a: boolean);
@@ -2542,11 +2594,11 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2542
2594
  set mergedCellVerticalAlignment(a: CellContentVerticalAlignment);
2543
2595
  saveLayout(): string;
2544
2596
  private fz;
2545
- private lr;
2597
+ private lt;
2546
2598
  loadLayout(a: string): void;
2547
2599
  private r;
2548
2600
  private s;
2549
- n0(a: CellPath): number;
2601
+ n2(a: CellPath): number;
2550
2602
  private cz;
2551
2603
  get filterUIType(): FilterUIType;
2552
2604
  set filterUIType(a: FilterUIType);
@@ -2556,23 +2608,23 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2556
2608
  private cu;
2557
2609
  get filterComparisonType(): FilterComparisonType;
2558
2610
  set filterComparisonType(a: FilterComparisonType);
2559
- jw(): boolean;
2560
- private lu;
2611
+ jx(): boolean;
2612
+ private lw;
2561
2613
  get todayOverride(): Date;
2562
2614
  set todayOverride(a: Date);
2563
2615
  private hh;
2564
2616
  get clearSelectionOnEscape(): boolean;
2565
2617
  set clearSelectionOnEscape(a: boolean);
2566
2618
  customFilterRequested: (sender: any, args: GridCustomFilterRequestedEventArgs) => void;
2567
- wj(a: DataGridColumn, b: FilterOperand, c: any): void;
2568
- private my;
2569
- la(): boolean;
2570
- va(): void;
2571
- u9(): void;
2619
+ wm(a: DataGridColumn, b: FilterOperand, c: any): void;
2620
+ private m0;
2621
+ lb(): boolean;
2622
+ vd(): void;
2623
+ vc(): void;
2572
2624
  private h3;
2573
2625
  get isPagerVisible(): boolean;
2574
2626
  set isPagerVisible(a: boolean);
2575
- private m4;
2627
+ private m6;
2576
2628
  get pageSize(): number;
2577
2629
  set pageSize(a: number);
2578
2630
  private h8;
@@ -2584,25 +2636,25 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
2584
2636
  private h7;
2585
2637
  get isToolbarColumnPinningVisible(): boolean;
2586
2638
  set isToolbarColumnPinningVisible(a: boolean);
2587
- private o7;
2639
+ private o9;
2588
2640
  get toolbarTitle(): string;
2589
2641
  set toolbarTitle(a: string);
2590
- private o3;
2642
+ private o5;
2591
2643
  get toolbarColumnChooserText(): string;
2592
2644
  set toolbarColumnChooserText(a: string);
2593
- private o4;
2645
+ private o6;
2594
2646
  get toolbarColumnChooserTitle(): string;
2595
2647
  set toolbarColumnChooserTitle(a: string);
2596
- private o5;
2648
+ private o7;
2597
2649
  get toolbarColumnPinningText(): string;
2598
2650
  set toolbarColumnPinningText(a: string);
2599
- private o6;
2651
+ private o8;
2600
2652
  get toolbarColumnPinningTitle(): string;
2601
2653
  set toolbarColumnPinningTitle(a: string);
2602
2654
  private gm;
2603
2655
  get scrollbarStyle(): ScrollbarStyle;
2604
2656
  set scrollbarStyle(a: ScrollbarStyle);
2605
- private zz;
2657
+ private z2;
2606
2658
  get scrollbarBackground(): Brush;
2607
2659
  set scrollbarBackground(a: Brush);
2608
2660
  private he;
@@ -2916,51 +2968,51 @@ export declare class GridSelectedCellsCollection extends ObservableCollection$1<
2916
2968
  export declare abstract class DefinitionBase extends Base implements INotifyPropertyChanged {
2917
2969
  static $t: Type;
2918
2970
  constructor();
2919
- private ef;
2971
+ private eg;
2920
2972
  private a3;
2921
- protected ez(a: GridConditionalStyle): void;
2922
2973
  protected e0(a: GridConditionalStyle): void;
2974
+ protected e1(a: GridConditionalStyle): void;
2975
+ protected cu(): any;
2923
2976
  protected ct(): any;
2924
2977
  protected cs(): any;
2925
- protected cr(): any;
2926
- private eh;
2927
- private fb;
2978
+ private ei;
2979
+ private fc;
2928
2980
  private ay;
2929
- private ep;
2930
- private ex;
2931
- private em;
2932
- private eg;
2981
+ private eq;
2982
+ private ey;
2983
+ private en;
2984
+ private eh;
2933
2985
  private a2;
2934
- e3(a: GridConditionalStyle): void;
2986
+ e4(a: GridConditionalStyle): void;
2935
2987
  private az;
2936
2988
  private ax;
2937
- private ec;
2938
- private ek;
2939
2989
  private ed;
2940
- e2(a: GridConditionalStyle): void;
2990
+ private el;
2991
+ private ee;
2992
+ e3(a: GridConditionalStyle): void;
2941
2993
  as(a: GridConditionalStyle): boolean;
2942
- private ei;
2994
+ private ej;
2943
2995
  private cl;
2944
2996
  private x;
2945
2997
  get externalObject(): any;
2946
2998
  set externalObject(a: any);
2947
- private fu;
2948
- get ge(): Brush;
2949
- set ge(a: Brush);
2999
+ private fv;
3000
+ get gf(): Brush;
3001
+ set gf(a: Brush);
2950
3002
  private v;
2951
3003
  get conditionalStyles(): GridConditionalStyleCollection;
2952
- private fx;
2953
- get gh(): Brush;
2954
- set gh(a: Brush);
2955
- private fj;
2956
- get f3(): Brush;
2957
- set f3(a: Brush);
2958
3004
  private fy;
2959
3005
  get gi(): Brush;
2960
3006
  set gi(a: Brush);
2961
- private fo;
2962
- get f8(): Brush;
2963
- set f8(a: Brush);
3007
+ private fk;
3008
+ get f4(): Brush;
3009
+ set f4(a: Brush);
3010
+ private fz;
3011
+ get gj(): Brush;
3012
+ set gj(a: Brush);
3013
+ private fp;
3014
+ get f9(): Brush;
3015
+ set f9(a: Brush);
2964
3016
  private bw;
2965
3017
  get cc(): number;
2966
3018
  set cc(a: number);
@@ -3000,18 +3052,24 @@ export declare abstract class DefinitionBase extends Base implements INotifyProp
3000
3052
  private t;
3001
3053
  get grid(): DataGrid;
3002
3054
  set grid(a: DataGrid);
3003
- private er;
3004
- protected eq(a: DataGrid, b: DataGrid): void;
3005
- protected es(a: any, b: PropertyChangedEventArgs): void;
3055
+ private es;
3056
+ protected er(a: DataGrid, b: DataGrid): void;
3057
+ protected et(a: any, b: PropertyChangedEventArgs): void;
3058
+ private fm;
3059
+ get f6(): Brush;
3060
+ set f6(a: Brush);
3006
3061
  private fl;
3007
3062
  get f5(): Brush;
3008
3063
  set f5(a: Brush);
3009
- private fk;
3010
- get f4(): Brush;
3011
- set f4(a: Brush);
3012
- private fp;
3013
- get f9(): Brush;
3014
- set f9(a: Brush);
3064
+ private fq;
3065
+ get ga(): Brush;
3066
+ set ga(a: Brush);
3067
+ private f2;
3068
+ get gx(): Brush;
3069
+ set gx(a: Brush);
3070
+ private ft;
3071
+ get gd(): Brush;
3072
+ set gd(a: Brush);
3015
3073
  private f1;
3016
3074
  get gw(): Brush;
3017
3075
  set gw(a: Brush);
@@ -3024,12 +3082,6 @@ export declare abstract class DefinitionBase extends Base implements INotifyProp
3024
3082
  private fr;
3025
3083
  get gb(): Brush;
3026
3084
  set gb(a: Brush);
3027
- private fz;
3028
- get gu(): Brush;
3029
- set gu(a: Brush);
3030
- private fq;
3031
- get ga(): Brush;
3032
- set ga(a: Brush);
3033
3085
  private bd;
3034
3086
  get bh(): number;
3035
3087
  set bh(a: number);
@@ -3051,27 +3103,27 @@ export declare abstract class DefinitionBase extends Base implements INotifyProp
3051
3103
  private z;
3052
3104
  get ab(): TextCellLineBreakMode;
3053
3105
  set ab(a: TextCellLineBreakMode);
3054
- private f2;
3055
- get gx(): Brush;
3056
- set gx(a: Brush);
3057
- private ft;
3058
- get gd(): Brush;
3059
- set gd(a: Brush);
3106
+ private f3;
3107
+ get gy(): Brush;
3108
+ set gy(a: Brush);
3109
+ private fu;
3110
+ get ge(): Brush;
3111
+ set ge(a: Brush);
3060
3112
  private an;
3061
3113
  get ar(): boolean;
3062
3114
  set ar(a: boolean);
3063
- private fv;
3064
- get gf(): Brush;
3065
- set gf(a: Brush);
3066
- private fm;
3067
- get f6(): Brush;
3068
- set f6(a: Brush);
3069
3115
  private fw;
3070
3116
  get gg(): Brush;
3071
3117
  set gg(a: Brush);
3072
3118
  private fn;
3073
3119
  get f7(): Brush;
3074
3120
  set f7(a: Brush);
3121
+ private fx;
3122
+ get gh(): Brush;
3123
+ set gh(a: Brush);
3124
+ private fo;
3125
+ get f8(): Brush;
3126
+ set f8(a: Brush);
3075
3127
  private bu;
3076
3128
  get ca(): number;
3077
3129
  set ca(a: number);
@@ -3102,21 +3154,22 @@ export declare abstract class DefinitionBase extends Base implements INotifyProp
3102
3154
  private bb;
3103
3155
  private a9;
3104
3156
  protected abstract n(a: CellPath): CellModel;
3105
- private eu;
3157
+ private ev;
3106
3158
  private a7;
3107
- d1(a: CellPath, b: DataGrid, c: any, d: number): string;
3159
+ d2(a: CellPath, b: DataGrid, c: any, d: number): string;
3108
3160
  private aw;
3109
- protected abstract d2(a: CellPath, b: DataGrid, c: any): string;
3110
- el(a: CellModel, b: DataGrid, c: any, d: any): void;
3111
- en(a: CellModel, b: DataGrid, c: any, d: any): void;
3161
+ protected abstract d3(a: CellPath, b: DataGrid, c: any): string;
3162
+ em(a: CellModel, b: DataGrid, c: any, d: any): void;
3163
+ eo(a: CellModel, b: DataGrid, c: any, d: any): void;
3112
3164
  protected at(a: GridConditionalStyle): boolean;
3113
3165
  private al;
3114
- private ee;
3166
+ private ef;
3115
3167
  private cn;
3116
- private cp;
3168
+ private co;
3117
3169
  private cq;
3170
+ private cr;
3171
+ private gu;
3118
3172
  private gt;
3119
- private gs;
3120
3173
  private bk;
3121
3174
  private bl;
3122
3175
  bg(a: any): number;
@@ -3126,61 +3179,61 @@ export declare abstract class DefinitionBase extends Base implements INotifyProp
3126
3179
  private p;
3127
3180
  dataBinding: (sender: any, args: DataBindingEventArgs) => void;
3128
3181
  dataBound: (sender: any, args: DataBindingEventArgs) => void;
3129
- eo(a: CellModel, b: DataGrid, c: any, d: any): void;
3130
- dz(a: DataGrid, b: any, c: any): string;
3131
- ey(): void;
3182
+ ep(a: CellModel, b: DataGrid, c: any, d: any): void;
3183
+ d0(a: DataGrid, b: any, c: any): string;
3184
+ ez(): void;
3132
3185
  protected au(a: string): boolean;
3133
3186
  protected av(a: string): boolean;
3134
3187
  propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
3135
- protected et(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
3136
- protected e5(): void;
3137
- protected fh(): void;
3188
+ protected eu(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
3138
3189
  protected e6(): void;
3139
- protected e8(): void;
3140
- protected e9(): void;
3141
- protected e7(): void;
3142
3190
  protected fi(): void;
3191
+ protected e7(): void;
3192
+ protected e9(): void;
3193
+ protected fa(): void;
3194
+ protected e8(): void;
3195
+ protected fj(): void;
3196
+ protected fg(): void;
3143
3197
  protected ff(): void;
3198
+ protected fh(): void;
3144
3199
  protected fe(): void;
3145
- protected fg(): void;
3146
- protected fd(): void;
3147
- protected ev(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
3200
+ protected ew(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
3148
3201
  private ak;
3149
- protected fa(): void;
3150
- private e4;
3151
- private fc;
3202
+ protected fb(): void;
3203
+ private e5;
3204
+ private fd;
3152
3205
  private a1;
3153
3206
  private a5;
3154
3207
  private a0;
3155
3208
  protected get a4(): HashSet$1<string>;
3156
3209
  protected get a8(): List$1<string>;
3157
- private ej;
3210
+ private ek;
3158
3211
  protected f(): CellContentHorizontalAlignment;
3159
3212
  protected k(): CellContentVerticalAlignment;
3160
- protected gr(): Brush;
3161
- protected gl(): Brush;
3213
+ protected gs(): Brush;
3162
3214
  protected gm(): Brush;
3215
+ protected gn(): Brush;
3163
3216
  protected ck(): number;
3164
3217
  protected cj(): number;
3165
- protected gj(): Brush;
3166
- protected aj(): FontInfo;
3167
3218
  protected gk(): Brush;
3168
- protected gq(): Brush;
3169
- protected go(): Brush;
3170
- protected gn(): Brush;
3219
+ protected aj(): FontInfo;
3220
+ protected gl(): Brush;
3221
+ protected gr(): Brush;
3171
3222
  protected gp(): Brush;
3223
+ protected go(): Brush;
3224
+ protected gq(): Brush;
3172
3225
  protected bi(): number;
3173
3226
  definitionPropertyUpdated: (sender: any, args: DefinitionPropertyUpdatedEventArgs) => void;
3174
3227
  private ad;
3175
3228
  private am;
3176
- e1(a: string, b: CellPropertyAnimationType, c: any): void;
3229
+ e2(a: string, b: CellPropertyAnimationType, c: any): void;
3177
3230
  ap(): boolean;
3178
3231
  get ae(): FastIterationDictionary$2<string, any>;
3179
3232
  get aq(): boolean;
3180
3233
  ao(a: string): boolean;
3181
- ew(a: string): void;
3182
- co(a: string): any;
3183
- d0(a: any, b: DataSourceSchemaPropertyType, c: any): string;
3234
+ ex(a: string): void;
3235
+ cp(a: string): any;
3236
+ d1(a: any, b: DataSourceSchemaPropertyType, c: any): string;
3184
3237
  y(a: ColumnSummaryDescription, b: ISummaryResult): SummaryData;
3185
3238
  cellStyleKeyRequested: (sender: any, args: CellStyleRequestedEventArgs) => void;
3186
3239
  }
@@ -3190,283 +3243,320 @@ export declare abstract class DefinitionBase extends Base implements INotifyProp
3190
3243
  export declare abstract class DataGridColumn extends DefinitionBase implements IToolbarTarget {
3191
3244
  static $t: Type;
3192
3245
  constructor();
3193
- protected e0(a: GridConditionalStyle): void;
3194
- protected cr(): any;
3246
+ protected e1(a: GridConditionalStyle): void;
3195
3247
  protected cs(): any;
3196
3248
  protected ct(): any;
3249
+ protected cu(): any;
3197
3250
  protected at(a: GridConditionalStyle): boolean;
3198
- protected n1(): Brush;
3199
- protected n0(): Brush;
3200
- private static ko;
3201
- kp: number;
3202
- private hs;
3203
- get ht(): ColumnStates;
3204
- set ht(a: ColumnStates);
3205
- private ka;
3206
- get kl(): number;
3207
- set kl(a: number);
3208
- private kc;
3209
- get kn(): number;
3210
- set kn(a: number);
3211
- private kb;
3212
- get km(): number;
3213
- set km(a: number);
3214
- private j9;
3215
- get kk(): number;
3216
- set kk(a: number);
3217
- private kx;
3218
- get mg(): string;
3219
- set mg(a: string);
3220
- private j7;
3221
- get ki(): number;
3222
- set ki(a: number);
3223
- private j6;
3224
- get kh(): number;
3225
- set kh(a: number);
3226
- private j8;
3227
- get kj(): number;
3228
- set kj(a: number);
3229
- private ij;
3230
- get il(): PinnedPositions;
3231
- set il(a: PinnedPositions);
3232
- private kv;
3233
- get lp(): string;
3234
- set lp(a: string);
3235
- private kw;
3236
- get lw(): string;
3237
- set lw(a: string);
3238
- private kt;
3239
- get k4(): string;
3240
- set k4(a: string);
3241
- private ns;
3242
- get n4(): Brush;
3243
- set n4(a: Brush);
3244
- private nn;
3245
- get nx(): Brush;
3246
- set nx(a: Brush);
3247
- private nq;
3248
- get n2(): Brush;
3249
- set n2(a: Brush);
3250
- private nl;
3251
- get nv(): Brush;
3252
- set nv(a: Brush);
3253
- private nr;
3254
- get n3(): Brush;
3255
- set n3(a: Brush);
3256
- private nm;
3257
- get nw(): Brush;
3258
- set nw(a: Brush);
3259
- private h6;
3260
- get h7(): GridColumnAnimationSettings;
3261
- set h7(a: GridColumnAnimationSettings);
3262
- private hu;
3251
+ protected oz(): Brush;
3252
+ protected oy(): Brush;
3253
+ private static k1;
3254
+ k2: number;
3255
+ private ht;
3256
+ get hu(): ColumnStates;
3257
+ set hu(a: ColumnStates);
3258
+ private kn;
3259
+ get ky(): number;
3260
+ set ky(a: number);
3261
+ private kp;
3262
+ get k0(): number;
3263
+ set k0(a: number);
3264
+ private ko;
3265
+ get kz(): number;
3266
+ set kz(a: number);
3267
+ private km;
3268
+ get kx(): number;
3269
+ set kx(a: number);
3270
+ private la;
3271
+ get mw(): string;
3272
+ set mw(a: string);
3273
+ private kk;
3274
+ get kv(): number;
3275
+ set kv(a: number);
3276
+ private kj;
3277
+ get ku(): number;
3278
+ set ku(a: number);
3279
+ private kl;
3280
+ get kw(): number;
3281
+ set kw(a: number);
3282
+ private ik;
3283
+ get im(): PinnedPositions;
3284
+ set im(a: PinnedPositions);
3285
+ private k8;
3286
+ get l5(): string;
3287
+ set l5(a: string);
3288
+ private k9;
3289
+ get mc(): string;
3290
+ set mc(a: string);
3291
+ private k6;
3292
+ get lk(): string;
3293
+ set lk(a: string);
3294
+ private on;
3295
+ get o2(): Brush;
3296
+ set o2(a: Brush);
3297
+ private oi;
3298
+ get ov(): Brush;
3299
+ set ov(a: Brush);
3300
+ private ol;
3301
+ get o0(): Brush;
3302
+ set o0(a: Brush);
3303
+ private og;
3304
+ get ot(): Brush;
3305
+ set ot(a: Brush);
3306
+ private om;
3307
+ get o1(): Brush;
3308
+ set o1(a: Brush);
3309
+ private oh;
3310
+ get ou(): Brush;
3311
+ set ou(a: Brush);
3312
+ private h7;
3313
+ get h8(): GridColumnAnimationSettings;
3314
+ set h8(a: GridColumnAnimationSettings);
3315
+ private hv;
3263
3316
  get width(): ColumnWidth;
3264
3317
  set width(a: ColumnWidth);
3265
- private jy;
3266
- get j1(): number;
3267
- set j1(a: number);
3318
+ private j3;
3319
+ get ka(): number;
3320
+ set ka(a: number);
3321
+ private jb;
3322
+ get jt(): boolean;
3323
+ set jt(a: boolean);
3324
+ private i5;
3325
+ get jn(): boolean;
3326
+ set jn(a: boolean);
3327
+ private je;
3328
+ get jw(): boolean;
3329
+ set jw(a: boolean);
3330
+ private g1;
3331
+ get g2(): ColumnFilterCondition;
3332
+ set g2(a: ColumnFilterCondition);
3333
+ private g3;
3334
+ get g4(): IFilterExpression;
3335
+ set g4(a: IFilterExpression);
3336
+ private ib;
3337
+ get header(): Header;
3338
+ set header(a: Header);
3339
+ private ja;
3340
+ get js(): boolean;
3341
+ set js(a: boolean);
3342
+ private jd;
3343
+ get jv(): boolean;
3344
+ set jv(a: boolean);
3345
+ private jc;
3346
+ get ju(): boolean;
3347
+ set ju(a: boolean);
3348
+ private jf;
3349
+ get jy(): boolean;
3350
+ set jy(a: boolean);
3351
+ private hr;
3352
+ get hs(): ColumnSortDirection;
3353
+ set hs(a: ColumnSortDirection);
3354
+ private il;
3355
+ get io(): PinnedPositions;
3356
+ set io(a: PinnedPositions);
3357
+ private i4;
3358
+ get jm(): boolean;
3359
+ set jm(a: boolean);
3360
+ get jj(): boolean;
3361
+ private hh;
3362
+ get hj(): ColumnOptionsIconAlignment;
3363
+ set hj(a: ColumnOptionsIconAlignment);
3364
+ private hi;
3365
+ get hk(): ColumnOptionsIconAlignment;
3366
+ set hk(a: ColumnOptionsIconAlignment);
3367
+ private oe;
3368
+ get or(): Brush;
3369
+ set or(a: Brush);
3370
+ private oj;
3371
+ get ow(): Brush;
3372
+ set ow(a: Brush);
3373
+ private hm;
3374
+ get ho(): ColumnOptionsIconBehavior;
3375
+ set ho(a: ColumnOptionsIconBehavior);
3376
+ private hl;
3377
+ get hn(): ColumnOptionsIconBehavior;
3378
+ set hn(a: ColumnOptionsIconBehavior);
3379
+ private i0;
3380
+ get jg(): boolean;
3381
+ set jg(a: boolean);
3268
3382
  private i6;
3269
3383
  get jo(): boolean;
3270
3384
  set jo(a: boolean);
3271
- private i0;
3385
+ private i2;
3272
3386
  get ji(): boolean;
3273
3387
  set ji(a: boolean);
3274
- private i9;
3275
- get jr(): boolean;
3276
- set jr(a: boolean);
3277
- private g0;
3278
- get g1(): ColumnFilterCondition;
3279
- set g1(a: ColumnFilterCondition);
3280
- private g2;
3281
- get g3(): IFilterExpression;
3282
- set g3(a: IFilterExpression);
3283
- private ia;
3284
- get header(): Header;
3285
- set header(a: Header);
3286
- private i5;
3287
- get jn(): boolean;
3288
- set jn(a: boolean);
3289
3388
  private i8;
3290
3389
  get jq(): boolean;
3291
3390
  set jq(a: boolean);
3391
+ private i1;
3392
+ get jh(): boolean;
3393
+ set jh(a: boolean);
3292
3394
  private i7;
3293
3395
  get jp(): boolean;
3294
3396
  set jp(a: boolean);
3295
- private ja;
3296
- get jt(): boolean;
3297
- set jt(a: boolean);
3298
- private hq;
3299
- get hr(): ColumnSortDirection;
3300
- set hr(a: ColumnSortDirection);
3301
- private ik;
3302
- get im(): PinnedPositions;
3303
- set im(a: PinnedPositions);
3304
- private iz;
3305
- get jh(): boolean;
3306
- set jh(a: boolean);
3307
- get je(): boolean;
3308
- private hg;
3309
- get hi(): ColumnOptionsIconAlignment;
3310
- set hi(a: ColumnOptionsIconAlignment);
3311
- private hh;
3312
- get hj(): ColumnOptionsIconAlignment;
3313
- set hj(a: ColumnOptionsIconAlignment);
3314
- private nj;
3315
- get nt(): Brush;
3316
- set nt(a: Brush);
3317
- private no;
3318
- get ny(): Brush;
3319
- set ny(a: Brush);
3320
- private hl;
3321
- get hn(): ColumnOptionsIconBehavior;
3322
- set hn(a: ColumnOptionsIconBehavior);
3323
- private hk;
3324
- get hm(): ColumnOptionsIconBehavior;
3325
- set hm(a: ColumnOptionsIconBehavior);
3397
+ private i9;
3398
+ get jr(): boolean;
3399
+ set jr(a: boolean);
3400
+ private ok;
3401
+ get ox(): Brush;
3402
+ set ox(a: Brush);
3403
+ private of;
3404
+ get os(): Brush;
3405
+ set os(a: Brush);
3406
+ private j2;
3407
+ get j9(): number;
3408
+ set j9(a: number);
3409
+ private j1;
3410
+ get j8(): number;
3411
+ set j8(a: number);
3326
3412
  private iv;
3327
- get jb(): boolean;
3328
- set jb(a: boolean);
3329
- private i1;
3330
- get jj(): boolean;
3331
- set jj(a: boolean);
3332
- private ix;
3333
- get jd(): boolean;
3334
- set jd(a: boolean);
3335
- private i3;
3336
- get jl(): boolean;
3337
- set jl(a: boolean);
3338
- private iw;
3339
- get jc(): boolean;
3340
- set jc(a: boolean);
3341
- private i2;
3342
- get jk(): boolean;
3343
- set jk(a: boolean);
3344
- private i4;
3345
- get jm(): boolean;
3346
- set jm(a: boolean);
3347
- private np;
3348
- get nz(): Brush;
3349
- set nz(a: Brush);
3350
- private nk;
3351
- get nu(): Brush;
3352
- set nu(a: Brush);
3353
- private jx;
3354
- get j0(): number;
3355
- set j0(a: number);
3356
- private jw;
3357
- get jz(): number;
3358
- set jz(a: number);
3359
- private is;
3360
3413
  get textEditStyle(): FontInfo;
3361
3414
  set textEditStyle(a: FontInfo);
3362
- private ir;
3363
- get it(): FontInfo;
3364
- set it(a: FontInfo);
3365
- private hy;
3366
- get hz(): EditorType;
3367
- set hz(a: EditorType);
3368
- private kq;
3369
- get kr(): any;
3370
- set kr(a: any);
3371
- private ku;
3372
- get ll(): string;
3373
- set ll(a: string);
3374
- private gy;
3375
- get gz(): string[];
3376
- set gz(a: string[]);
3377
- private ig;
3378
- get ii(): MergedCellMode;
3379
- set ii(a: MergedCellMode);
3380
- private ic;
3381
- get ie(): MergedCellEvaluationCriteria;
3382
- set ie(a: MergedCellEvaluationCriteria);
3415
+ private iu;
3416
+ get ix(): FontInfo;
3417
+ set ix(a: FontInfo);
3418
+ private hz;
3419
+ get h0(): EditorType;
3420
+ set h0(a: EditorType);
3421
+ private k3;
3422
+ get k4(): any;
3423
+ set k4(a: any);
3424
+ private k7;
3425
+ get l1(): string;
3426
+ set l1(a: string);
3427
+ private gz;
3428
+ get g0(): string[];
3429
+ set g0(a: string[]);
3430
+ private ih;
3431
+ get ij(): MergedCellMode;
3432
+ set ij(a: MergedCellMode);
3433
+ private id;
3434
+ get ig(): MergedCellEvaluationCriteria;
3435
+ set ig(a: MergedCellEvaluationCriteria);
3436
+ private g8;
3437
+ get hb(): CellContentVerticalAlignment;
3438
+ set hb(a: CellContentVerticalAlignment);
3383
3439
  private g7;
3384
- get ha(): CellContentVerticalAlignment;
3385
- set ha(a: CellContentVerticalAlignment);
3386
- private g6;
3387
- get g8(): CellContentVerticalAlignment;
3388
- set g8(a: CellContentVerticalAlignment);
3389
- private j3;
3390
- get ke(): number;
3391
- set ke(a: number);
3440
+ get g9(): CellContentVerticalAlignment;
3441
+ set g9(a: CellContentVerticalAlignment);
3442
+ private kg;
3443
+ get kr(): number;
3444
+ set kr(a: number);
3445
+ private ki;
3446
+ get kt(): number;
3447
+ set kt(a: number);
3448
+ private kh;
3449
+ get ks(): number;
3450
+ set ks(a: number);
3451
+ private kf;
3452
+ get kq(): number;
3453
+ set kq(a: number);
3454
+ private h1;
3455
+ get h2(): FilterComparisonType;
3456
+ set h2(a: FilterComparisonType);
3457
+ h4(a: FilterComparisonType): FilterComparisonType;
3458
+ h3(): FilterComparisonType;
3459
+ private h9;
3460
+ get ia(): GridFilterOperandsCollection;
3461
+ private ld;
3462
+ get nj(): string;
3463
+ set nj(a: string);
3464
+ private oq;
3465
+ get o5(): Brush;
3466
+ set o5(a: Brush);
3467
+ private iw;
3468
+ get suffixTextStyle(): FontInfo;
3469
+ set suffixTextStyle(a: FontInfo);
3470
+ private lc;
3471
+ get nc(): string;
3472
+ set nc(a: string);
3473
+ private lb;
3474
+ get m9(): string;
3475
+ set m9(a: string);
3476
+ private op;
3477
+ get o4(): Brush;
3478
+ set o4(a: Brush);
3479
+ private oo;
3480
+ get o3(): Brush;
3481
+ set o3(a: Brush);
3392
3482
  private j5;
3393
- get kg(): number;
3394
- set kg(a: number);
3395
- private j4;
3396
- get kf(): number;
3397
- set kf(a: number);
3398
- private j2;
3483
+ get kc(): number;
3484
+ set kc(a: number);
3485
+ private j6;
3399
3486
  get kd(): number;
3400
3487
  set kd(a: number);
3401
- private h0;
3402
- get h1(): FilterComparisonType;
3403
- set h1(a: FilterComparisonType);
3404
- h3(a: FilterComparisonType): FilterComparisonType;
3405
- h2(): FilterComparisonType;
3406
- private h8;
3407
- get h9(): GridFilterOperandsCollection;
3488
+ private j7;
3489
+ get ke(): number;
3490
+ set ke(a: number);
3491
+ private j4;
3492
+ get kb(): number;
3493
+ set kb(a: number);
3494
+ private ip;
3495
+ get iq(): TextCellDecoration;
3496
+ set iq(a: TextCellDecoration);
3408
3497
  formatCell: (sender: any, args: FormatCellEventArgs) => void;
3409
- private mv;
3410
- ih(): MergedCellMode;
3411
- id(): MergedCellEvaluationCriteria;
3412
- js(): boolean;
3413
- protected go(): Brush;
3414
- protected gq(): Brush;
3415
- mt(a: CellModel, b: any, c: any): string;
3416
- eo(a: CellModel, b: DataGrid, c: any, d: any): void;
3417
- el(a: CellModel, b: DataGrid, c: any, d: any): void;
3418
- protected ev(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
3419
- protected hb(): CellContentVerticalAlignment;
3420
- protected g5(): CellContentHorizontalAlignment;
3421
- protected g9(): CellContentVerticalAlignment;
3422
- private nf;
3423
- private m1;
3424
- protected eq(a: DataGrid, b: DataGrid): void;
3425
- protected es(a: any, b: PropertyChangedEventArgs): void;
3426
- ng(): void;
3427
- nh(): void;
3428
- ni(): void;
3429
- protected e5(): void;
3430
- protected fh(): void;
3498
+ private nq;
3499
+ ii(): MergedCellMode;
3500
+ ie(): MergedCellEvaluationCriteria;
3501
+ jx(): boolean;
3502
+ protected gp(): Brush;
3503
+ protected gr(): Brush;
3504
+ no(a: CellModel, b: any, c: any): string;
3505
+ ep(a: CellModel, b: DataGrid, c: any, d: any): void;
3506
+ protected d3(a: CellPath, b: DataGrid, c: any): string;
3507
+ em(a: CellModel, b: DataGrid, c: any, d: any): void;
3508
+ protected ew(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
3509
+ protected hc(): CellContentVerticalAlignment;
3510
+ protected g6(): CellContentHorizontalAlignment;
3511
+ protected ha(): CellContentVerticalAlignment;
3512
+ private oa;
3513
+ private nw;
3514
+ protected er(a: DataGrid, b: DataGrid): void;
3515
+ protected et(a: any, b: PropertyChangedEventArgs): void;
3516
+ ob(): void;
3517
+ oc(): void;
3518
+ od(): void;
3519
+ protected e6(): void;
3431
3520
  protected fi(): void;
3521
+ protected fj(): void;
3522
+ protected fg(): void;
3523
+ protected n7(): void;
3524
+ protected n9(): void;
3525
+ protected n8(): void;
3432
3526
  protected ff(): void;
3433
- protected nc(): void;
3434
- protected ne(): void;
3435
- protected nd(): void;
3527
+ protected fh(): void;
3436
3528
  protected fe(): void;
3437
- protected fg(): void;
3438
- protected fd(): void;
3439
- protected m6(): void;
3440
- protected na(): void;
3441
- protected m9(): void;
3442
- protected m7(): void;
3443
- protected nb(): void;
3444
- protected m8(): void;
3529
+ protected n1(): void;
3530
+ protected n5(): void;
3531
+ protected n4(): void;
3532
+ protected n2(): void;
3533
+ protected n6(): void;
3534
+ protected n3(): void;
3445
3535
  columnCellsPropertyUpdating: (column: DataGridColumn, propertyName: string, propertyAnimationType: CellPropertyAnimationType, oldValue: any, newValue: any) => void;
3446
3536
  columnHeaderCellsPropertyUpdating: (column: DataGridColumn, propertyName: string, propertyAnimationType: CellPropertyAnimationType, oldValue: any, newValue: any) => void;
3447
- protected m5(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
3448
- hf(): ColumnHidingAnimationMode;
3449
- hp(): ColumnShowingAnimationMode;
3450
- he(): ColumnExchangingAnimationMode;
3451
- ho(): ColumnResizingAnimationMode;
3452
- lu(): string;
3453
- private ip;
3454
- private iy;
3455
- m4(a: string, b: CellPropertyAnimationType, c: any): void;
3456
- jg(): boolean;
3457
- get iq(): FastIterationDictionary$2<string, any>;
3458
- jf(a: string): boolean;
3459
- m3(a: string): void;
3460
- ks(a: string): any;
3461
- jv: List$1<LayoutAction>;
3462
- m2(a: string): void;
3463
- mx(a: ColumnComparisonConditionOperatorType, b: any): void;
3464
- mw(a: string, b: number, c: any): void;
3465
- g4(a: FilterOperand, b: any): IFilterExpression;
3466
- h4(a: string, b: number): FilterOperand;
3467
- my(): void;
3468
- private hw;
3469
- get hx(): DataGridColumnToolbarManager;
3537
+ protected n0(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
3538
+ hg(): ColumnHidingAnimationMode;
3539
+ hq(): ColumnShowingAnimationMode;
3540
+ hf(): ColumnExchangingAnimationMode;
3541
+ hp(): ColumnResizingAnimationMode;
3542
+ ma(): string;
3543
+ private is;
3544
+ private i3;
3545
+ nz(a: string, b: CellPropertyAnimationType, c: any): void;
3546
+ jl(): boolean;
3547
+ get it(): FastIterationDictionary$2<string, any>;
3548
+ jk(a: string): boolean;
3549
+ ny(a: string): void;
3550
+ k5(a: string): any;
3551
+ j0: List$1<LayoutAction>;
3552
+ nx(a: string): void;
3553
+ ns(a: ColumnComparisonConditionOperatorType, b: any): void;
3554
+ nr(a: string, b: number, c: any): void;
3555
+ g5(a: FilterOperand, b: any): IFilterExpression;
3556
+ h5(a: string, b: number): FilterOperand;
3557
+ nt(): void;
3558
+ private hx;
3559
+ get hy(): DataGridColumnToolbarManager;
3470
3560
  getDesiredToolbarActions(): ToolActionInfo[];
3471
3561
  addCommandAvailabilityListener(a: ICommandAvailabilityListener): void;
3472
3562
  removeCommandAvailabilityListener(a: ICommandAvailabilityListener): void;
@@ -3479,12 +3569,12 @@ export declare abstract class DataGridColumn extends DefinitionBase implements I
3479
3569
  private _invalidateActions;
3480
3570
  get invalidateActions(): () => void;
3481
3571
  set invalidateActions(a: () => void);
3482
- private ju;
3483
- io(): IToolbarContextAccessor;
3484
- m0(a: (arg1: IToolbarContextAccessor) => void): void;
3572
+ private jz;
3573
+ ir(): IToolbarContextAccessor;
3574
+ nv(a: (arg1: IToolbarContextAccessor) => void): void;
3485
3575
  provideContextAccessor(a: IToolbarContextAccessor): void;
3486
3576
  dismissContextAccessor(a: IToolbarContextAccessor): void;
3487
- mz(): void;
3577
+ nu(): void;
3488
3578
  }
3489
3579
  /**
3490
3580
  * @hidden
@@ -3773,23 +3863,23 @@ export declare class DataAdapter extends Base implements INotifyPropertyChanged,
3773
3863
  */
3774
3864
  export declare class ColumnMovingSeparator extends DefinitionBase {
3775
3865
  static $t: Type;
3776
- protected d2(a: CellPath, b: DataGrid, c: any): string;
3866
+ protected d3(a: CellPath, b: DataGrid, c: any): string;
3777
3867
  protected n(a: CellPath): CellModel;
3778
- protected gk(): Brush;
3779
- private g2;
3780
- get g3(): number;
3781
- set g3(a: number);
3782
- private gy;
3783
- get g0(): number;
3784
- set g0(a: number);
3868
+ protected gl(): Brush;
3869
+ private g3;
3870
+ get g4(): number;
3871
+ set g4(a: number);
3785
3872
  private gz;
3786
3873
  get g1(): number;
3787
3874
  set g1(a: number);
3788
- protected eq(a: DataGrid, b: DataGrid): void;
3789
- protected e5(): void;
3790
- protected g7(): void;
3791
- protected es(a: any, b: PropertyChangedEventArgs): void;
3792
- el(a: CellModel, b: DataGrid, c: any, d: any): void;
3875
+ private g0;
3876
+ get g2(): number;
3877
+ set g2(a: number);
3878
+ protected er(a: DataGrid, b: DataGrid): void;
3879
+ protected e6(): void;
3880
+ protected g8(): void;
3881
+ protected et(a: any, b: PropertyChangedEventArgs): void;
3882
+ em(a: CellModel, b: DataGrid, c: any, d: any): void;
3793
3883
  }
3794
3884
  /**
3795
3885
  * @hidden
@@ -3797,71 +3887,71 @@ export declare class ColumnMovingSeparator extends DefinitionBase {
3797
3887
  export declare class ComboBoxColumn extends DataGridColumn {
3798
3888
  static $t: Type;
3799
3889
  constructor();
3800
- private n6;
3801
- get n7(): IDataSource;
3802
- set n7(a: IDataSource);
3803
- get n8(): any;
3804
- set n8(a: any);
3805
- get oc(): string;
3806
- set oc(a: string);
3807
- get od(): string;
3808
- set od(a: string);
3809
- get n5(): string[];
3810
- set n5(a: string[]);
3890
+ private o7;
3891
+ get o8(): IDataSource;
3892
+ set o8(a: IDataSource);
3893
+ get o9(): any;
3894
+ set o9(a: any);
3895
+ get pd(): string;
3896
+ set pd(a: string);
3897
+ get pe(): string;
3898
+ set pe(a: string);
3899
+ get o6(): string[];
3900
+ set o6(a: string[]);
3811
3901
  protected n(a: CellPath): CellModel;
3812
- protected d2(a: CellPath, b: DataGrid, c: any): string;
3813
- protected eq(a: DataGrid, b: DataGrid): void;
3814
- dz(a: DataGrid, b: any, c: any): string;
3815
- eo(a: CellModel, b: DataGrid, c: any, d: any): void;
3816
- el(a: CellModel, b: DataGrid, c: any, d: any): void;
3817
- protected ev(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
3818
- private oe;
3819
- private of;
3820
- private oa;
3821
- ob(a: any): string;
3902
+ protected d3(a: CellPath, b: DataGrid, c: any): string;
3903
+ protected er(a: DataGrid, b: DataGrid): void;
3904
+ d0(a: DataGrid, b: any, c: any): string;
3905
+ ep(a: CellModel, b: DataGrid, c: any, d: any): void;
3906
+ em(a: CellModel, b: DataGrid, c: any, d: any): void;
3907
+ protected ew(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
3908
+ private pf;
3909
+ private pg;
3910
+ private pb;
3911
+ pc(a: any): string;
3822
3912
  }
3823
3913
  /**
3824
3914
  * @hidden
3825
3915
  */
3826
3916
  export declare class DateTimeColumn extends DataGridColumn {
3827
3917
  static $t: Type;
3828
- private n8;
3829
- private n9;
3830
- get oa(): DateTimeFormats;
3831
- set oa(a: DateTimeFormats);
3832
- private oj;
3833
- get os(): string;
3834
- set os(a: string);
3835
- private oi;
3836
- get ol(): string;
3837
- set ol(a: string);
3838
- private n5;
3839
- get n6(): any[];
3840
- set n6(a: any[]);
3841
- private of;
3842
- get oh(): any;
3843
- set oh(a: any);
3844
- private oc;
3845
- get od(): boolean;
3846
- set od(a: boolean);
3847
- get ob(): EditorType;
3848
- set ob(a: EditorType);
3849
- get og(): any;
3850
- set og(a: any);
3851
- get on(): string;
3852
- set on(a: string);
3853
- get oo(): string;
3854
- set oo(a: string);
3855
- protected ev(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
3918
+ private o9;
3919
+ private pa;
3920
+ get pb(): DateTimeFormats;
3921
+ set pb(a: DateTimeFormats);
3922
+ private pk;
3923
+ get pt(): string;
3924
+ set pt(a: string);
3925
+ private pj;
3926
+ get pm(): string;
3927
+ set pm(a: string);
3928
+ private o6;
3929
+ get o7(): any[];
3930
+ set o7(a: any[]);
3931
+ private pg;
3932
+ get pi(): any;
3933
+ set pi(a: any);
3934
+ private pd;
3935
+ get pe(): boolean;
3936
+ set pe(a: boolean);
3937
+ get pc(): EditorType;
3938
+ set pc(a: EditorType);
3939
+ get ph(): any;
3940
+ set ph(a: any);
3941
+ get po(): string;
3942
+ set po(a: string);
3943
+ get pp(): string;
3944
+ set pp(a: string);
3945
+ protected ew(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
3856
3946
  constructor();
3857
3947
  protected n(a: CellPath): CellModel;
3858
- protected d2(a: CellPath, b: DataGrid, c: any): string;
3859
- dz(a: DataGrid, b: any, c: any): string;
3860
- eo(a: CellModel, b: DataGrid, c: any, d: any): void;
3861
- el(a: CellModel, b: DataGrid, c: any, d: any): void;
3862
- private oe;
3863
- n7: BindingFormatter;
3864
- private op;
3948
+ protected d3(a: CellPath, b: DataGrid, c: any): string;
3949
+ d0(a: DataGrid, b: any, c: any): string;
3950
+ ep(a: CellModel, b: DataGrid, c: any, d: any): void;
3951
+ em(a: CellModel, b: DataGrid, c: any, d: any): void;
3952
+ private pf;
3953
+ o8: BindingFormatter;
3954
+ private pq;
3865
3955
  }
3866
3956
  /**
3867
3957
  * @hidden
@@ -3996,21 +4086,21 @@ export declare class DataGridColumnToolbarManager extends Base {
3996
4086
  export declare class EditorDefinition extends DefinitionBase {
3997
4087
  static $t: Type;
3998
4088
  constructor();
3999
- private g5;
4000
- get g6(): Rect;
4001
- set g6(a: Rect);
4002
- private g0;
4003
- get g3(): string;
4004
- set g3(a: string);
4005
- private gy;
4006
- get gz(): CellModel;
4007
- set gz(a: CellModel);
4089
+ private g6;
4090
+ get g7(): Rect;
4091
+ set g7(a: Rect);
4092
+ private g1;
4093
+ get g4(): string;
4094
+ set g4(a: string);
4095
+ private gz;
4096
+ get g0(): CellModel;
4097
+ set g0(a: CellModel);
4008
4098
  protected n(a: CellPath): CellModel;
4009
- protected d2(a: CellPath, b: DataGrid, c: any): string;
4010
- protected eq(a: DataGrid, b: DataGrid): void;
4011
- protected es(a: any, b: PropertyChangedEventArgs): void;
4012
- el(a: CellModel, b: DataGrid, c: any, d: any): void;
4013
- eo(a: CellModel, b: DataGrid, c: any, d: any): void;
4099
+ protected d3(a: CellPath, b: DataGrid, c: any): string;
4100
+ protected er(a: DataGrid, b: DataGrid): void;
4101
+ protected et(a: any, b: PropertyChangedEventArgs): void;
4102
+ em(a: CellModel, b: DataGrid, c: any, d: any): void;
4103
+ ep(a: CellModel, b: DataGrid, c: any, d: any): void;
4014
4104
  }
4015
4105
  /**
4016
4106
  * @hidden
@@ -4019,37 +4109,37 @@ export declare class EditRowDefinition extends DefinitionBase {
4019
4109
  static $t: Type;
4020
4110
  constructor();
4021
4111
  protected n(a: CellPath): CellModel;
4022
- protected d2(a: CellPath, b: DataGrid, c: any): string;
4023
- protected eq(a: DataGrid, b: DataGrid): void;
4024
- protected es(a: any, b: PropertyChangedEventArgs): void;
4025
- el(a: CellModel, b: DataGrid, c: any, d: any): void;
4112
+ protected d3(a: CellPath, b: DataGrid, c: any): string;
4113
+ protected er(a: DataGrid, b: DataGrid): void;
4114
+ protected et(a: any, b: PropertyChangedEventArgs): void;
4115
+ em(a: CellModel, b: DataGrid, c: any, d: any): void;
4026
4116
  }
4027
4117
  /**
4028
4118
  * @hidden
4029
4119
  */
4030
4120
  export declare class FilterRowDefinition extends DefinitionBase {
4031
4121
  static $t: Type;
4032
- private gz;
4033
- get g3(): number;
4034
- set g3(a: number);
4035
- private g1;
4036
- get g5(): number;
4037
- set g5(a: number);
4038
4122
  private g0;
4039
4123
  get g4(): number;
4040
4124
  set g4(a: number);
4041
- private gy;
4042
- get g2(): number;
4043
- set g2(a: number);
4125
+ private g2;
4126
+ get g6(): number;
4127
+ set g6(a: number);
4128
+ private g1;
4129
+ get g5(): number;
4130
+ set g5(a: number);
4131
+ private gz;
4132
+ get g3(): number;
4133
+ set g3(a: number);
4044
4134
  constructor();
4045
4135
  protected n(a: CellPath): CellModel;
4046
- protected d2(a: CellPath, b: DataGrid, c: any): string;
4047
- protected eq(a: DataGrid, b: DataGrid): void;
4048
- protected es(a: any, b: PropertyChangedEventArgs): void;
4049
- el(a: CellModel, b: DataGrid, c: any, d: any): void;
4050
- eo(a: CellModel, b: DataGrid, c: any, d: any): void;
4051
- protected fh(): void;
4052
- protected e5(): void;
4136
+ protected d3(a: CellPath, b: DataGrid, c: any): string;
4137
+ protected er(a: DataGrid, b: DataGrid): void;
4138
+ protected et(a: any, b: PropertyChangedEventArgs): void;
4139
+ em(a: CellModel, b: DataGrid, c: any, d: any): void;
4140
+ ep(a: CellModel, b: DataGrid, c: any, d: any): void;
4141
+ protected fi(): void;
4142
+ protected e6(): void;
4053
4143
  }
4054
4144
  /**
4055
4145
  * @hidden
@@ -4057,108 +4147,108 @@ export declare class FilterRowDefinition extends DefinitionBase {
4057
4147
  export declare abstract class Header extends DefinitionBase {
4058
4148
  static $t: Type;
4059
4149
  constructor();
4060
- protected gr(): Brush;
4061
- protected gk(): Brush;
4062
- protected hn(): Brush;
4150
+ protected gs(): Brush;
4151
+ protected gl(): Brush;
4152
+ protected ho(): Brush;
4063
4153
  protected aj(): FontInfo;
4064
- protected eq(a: DataGrid, b: DataGrid): void;
4065
- protected e5(): void;
4066
- protected fh(): void;
4154
+ protected er(a: DataGrid, b: DataGrid): void;
4155
+ protected e6(): void;
4067
4156
  protected fi(): void;
4068
- protected hi(): void;
4157
+ protected fj(): void;
4069
4158
  protected hj(): void;
4070
- protected es(a: any, b: PropertyChangedEventArgs): void;
4159
+ protected hk(): void;
4160
+ protected et(a: any, b: PropertyChangedEventArgs): void;
4161
+ private hm;
4162
+ get hp(): Brush;
4163
+ set hp(a: Brush);
4071
4164
  private hl;
4072
- get ho(): Brush;
4073
- set ho(a: Brush);
4074
- private hk;
4075
- get hm(): Brush;
4076
- set hm(a: Brush);
4165
+ get hn(): Brush;
4166
+ set hn(a: Brush);
4167
+ private g0;
4168
+ get g2(): SortIndicatorStyle;
4169
+ set g2(a: SortIndicatorStyle);
4077
4170
  private gz;
4078
4171
  get g1(): SortIndicatorStyle;
4079
4172
  set g1(a: SortIndicatorStyle);
4080
- private gy;
4081
- get g0(): SortIndicatorStyle;
4082
- set g0(a: SortIndicatorStyle);
4083
- private g3;
4084
- get g7(): number;
4085
- set g7(a: number);
4086
- private g5;
4087
- get g9(): number;
4088
- set g9(a: number);
4089
4173
  private g4;
4090
4174
  get g8(): number;
4091
4175
  set g8(a: number);
4092
- private g2;
4093
- get g6(): number;
4094
- set g6(a: number);
4176
+ private g6;
4177
+ get ha(): number;
4178
+ set ha(a: number);
4179
+ private g5;
4180
+ get g9(): number;
4181
+ set g9(a: number);
4182
+ private g3;
4183
+ get g7(): number;
4184
+ set g7(a: number);
4095
4185
  protected av(a: string): boolean;
4096
- el(a: CellModel, b: DataGrid, c: any, d: any): void;
4097
- eo(a: CellModel, b: DataGrid, c: any, d: any): void;
4186
+ em(a: CellModel, b: DataGrid, c: any, d: any): void;
4187
+ ep(a: CellModel, b: DataGrid, c: any, d: any): void;
4098
4188
  }
4099
4189
  /**
4100
4190
  * @hidden
4101
4191
  */
4102
4192
  export declare class ColumnResizingSeparator extends DefinitionBase {
4103
4193
  static $t: Type;
4104
- protected d2(a: CellPath, b: DataGrid, c: any): string;
4194
+ protected d3(a: CellPath, b: DataGrid, c: any): string;
4105
4195
  protected n(a: CellPath): CellModel;
4106
- protected gk(): Brush;
4107
- private gy;
4108
- get g0(): number;
4109
- set g0(a: number);
4196
+ protected gl(): Brush;
4110
4197
  private gz;
4111
4198
  get g1(): number;
4112
4199
  set g1(a: number);
4113
- protected e5(): void;
4114
- protected g5(): void;
4115
- protected g4(a: any, b: PropertyChangedEventArgs): void;
4116
- el(a: CellModel, b: DataGrid, c: any, d: any): void;
4200
+ private g0;
4201
+ get g2(): number;
4202
+ set g2(a: number);
4203
+ protected e6(): void;
4204
+ protected g6(): void;
4205
+ protected g5(a: any, b: PropertyChangedEventArgs): void;
4206
+ em(a: CellModel, b: DataGrid, c: any, d: any): void;
4117
4207
  }
4118
4208
  /**
4119
4209
  * @hidden
4120
4210
  */
4121
4211
  export declare class HeaderSeparator extends DefinitionBase {
4122
4212
  static $t: Type;
4123
- protected d2(a: CellPath, b: DataGrid, c: any): string;
4213
+ protected d3(a: CellPath, b: DataGrid, c: any): string;
4124
4214
  protected n(a: CellPath): CellModel;
4125
- protected gk(): Brush;
4126
- protected gy(): number;
4127
- protected eq(a: DataGrid, b: DataGrid): void;
4128
- protected es(a: any, b: PropertyChangedEventArgs): void;
4129
- protected e5(): void;
4130
- private gz;
4131
- el(a: CellModel, b: DataGrid, c: any, d: any): void;
4215
+ protected gl(): Brush;
4216
+ protected gz(): number;
4217
+ protected er(a: DataGrid, b: DataGrid): void;
4218
+ protected et(a: any, b: PropertyChangedEventArgs): void;
4219
+ protected e6(): void;
4220
+ private g0;
4221
+ em(a: CellModel, b: DataGrid, c: any, d: any): void;
4132
4222
  }
4133
4223
  /**
4134
4224
  * @hidden
4135
4225
  */
4136
4226
  export declare class ImageColumn extends DataGridColumn {
4137
4227
  static $t: Type;
4138
- private n8;
4139
- get n9(): ImageStretchOptions;
4140
- set n9(a: ImageStretchOptions);
4141
- private n6;
4142
- get n7(): ImageResourceType;
4143
- set n7(a: ImageResourceType);
4144
- get n5(): EditorType;
4145
- set n5(a: EditorType);
4146
- get oa(): any;
4147
- set oa(a: any);
4148
- get ob(): string;
4149
- set ob(a: string);
4150
- get oc(): string;
4151
- set oc(a: string);
4228
+ private o9;
4229
+ get pa(): ImageStretchOptions;
4230
+ set pa(a: ImageStretchOptions);
4231
+ private o7;
4232
+ get o8(): ImageResourceType;
4233
+ set o8(a: ImageResourceType);
4234
+ get o6(): EditorType;
4235
+ set o6(a: EditorType);
4236
+ get pb(): any;
4237
+ set pb(a: any);
4238
+ get pc(): string;
4239
+ set pc(a: string);
4240
+ get pd(): string;
4241
+ set pd(a: string);
4152
4242
  constructor();
4153
4243
  protected k(): CellContentVerticalAlignment;
4154
- protected g5(): CellContentHorizontalAlignment;
4155
- protected hb(): CellContentVerticalAlignment;
4244
+ protected g6(): CellContentHorizontalAlignment;
4245
+ protected hc(): CellContentVerticalAlignment;
4156
4246
  protected f(): CellContentHorizontalAlignment;
4157
4247
  protected n(a: CellPath): CellModel;
4158
- protected d2(a: CellPath, b: DataGrid, c: any): string;
4159
- eo(a: CellModel, b: DataGrid, c: any, d: any): void;
4160
- el(a: CellModel, b: DataGrid, c: any, d: any): void;
4161
- private od;
4248
+ protected d3(a: CellPath, b: DataGrid, c: any): string;
4249
+ ep(a: CellModel, b: DataGrid, c: any, d: any): void;
4250
+ em(a: CellModel, b: DataGrid, c: any, d: any): void;
4251
+ private pe;
4162
4252
  }
4163
4253
  /**
4164
4254
  * @hidden
@@ -4178,68 +4268,68 @@ export declare class NumericColumn extends DataGridColumn {
4178
4268
  static $t: Type;
4179
4269
  constructor();
4180
4270
  protected f(): CellContentHorizontalAlignment;
4181
- private om;
4182
- get o0(): string;
4183
- set o0(a: string);
4184
- private oo;
4185
- get o4(): string;
4186
- set o4(a: string);
4187
- private on;
4188
- get o2(): string;
4189
- set o2(a: string);
4190
- private op;
4191
- get o6(): string;
4192
- set o6(a: string);
4193
- private oc;
4194
- get of(): number;
4195
- set of(a: number);
4196
- private od;
4197
- get og(): number;
4198
- set og(a: number);
4199
- private oe;
4200
- get oh(): number;
4201
- set oh(a: number);
4202
- private n9;
4203
- get oa(): boolean;
4204
- set oa(a: boolean);
4205
- private ol;
4206
- get ov(): string;
4207
- set ov(a: string);
4208
- private n5;
4209
- get n6(): any[];
4210
- set n6(a: any[]);
4211
- private oi;
4212
- get ok(): any;
4213
- set ok(a: any);
4214
- get n8(): EditorType;
4215
- set n8(a: EditorType);
4216
- get oj(): any;
4217
- set oj(a: any);
4218
- get oq(): string;
4219
- set oq(a: string);
4220
- get or(): string;
4221
- set or(a: string);
4222
- n7: BindingFormatter;
4223
- protected ev(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
4271
+ private pn;
4272
+ get p1(): string;
4273
+ set p1(a: string);
4274
+ private pp;
4275
+ get p5(): string;
4276
+ set p5(a: string);
4277
+ private po;
4278
+ get p3(): string;
4279
+ set p3(a: string);
4280
+ private pq;
4281
+ get p7(): string;
4282
+ set p7(a: string);
4283
+ private pd;
4284
+ get pg(): number;
4285
+ set pg(a: number);
4286
+ private pe;
4287
+ get ph(): number;
4288
+ set ph(a: number);
4289
+ private pf;
4290
+ get pi(): number;
4291
+ set pi(a: number);
4292
+ private pa;
4293
+ get pb(): boolean;
4294
+ set pb(a: boolean);
4295
+ private pm;
4296
+ get pw(): string;
4297
+ set pw(a: string);
4298
+ private o6;
4299
+ get o7(): any[];
4300
+ set o7(a: any[]);
4301
+ private pj;
4302
+ get pl(): any;
4303
+ set pl(a: any);
4304
+ get o9(): EditorType;
4305
+ set o9(a: EditorType);
4306
+ get pk(): any;
4307
+ set pk(a: any);
4308
+ get pr(): string;
4309
+ set pr(a: string);
4310
+ get ps(): string;
4311
+ set ps(a: string);
4312
+ o8: BindingFormatter;
4313
+ protected ew(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
4224
4314
  protected n(a: CellPath): CellModel;
4225
- protected d2(a: CellPath, b: DataGrid, c: any): string;
4226
- dz(a: DataGrid, b: any, c: any): string;
4227
- eo(a: CellModel, b: DataGrid, c: any, d: any): void;
4228
- el(a: CellModel, b: DataGrid, c: any, d: any): void;
4229
- private ob;
4230
- private os;
4315
+ protected d3(a: CellPath, b: DataGrid, c: any): string;
4316
+ d0(a: DataGrid, b: any, c: any): string;
4317
+ ep(a: CellModel, b: DataGrid, c: any, d: any): void;
4318
+ em(a: CellModel, b: DataGrid, c: any, d: any): void;
4319
+ private pc;
4320
+ private pt;
4231
4321
  }
4232
4322
  /**
4233
4323
  * @hidden
4234
4324
  */
4235
4325
  export declare class PinnedAreaSeparator extends DefinitionBase {
4236
4326
  static $t: Type;
4237
- protected d2(a: CellPath, b: DataGrid, c: any): string;
4327
+ protected d3(a: CellPath, b: DataGrid, c: any): string;
4238
4328
  protected n(a: CellPath): CellModel;
4239
- protected gk(): Brush;
4240
- protected eq(a: DataGrid, b: DataGrid): void;
4241
- protected e5(): void;
4242
- protected es(a: any, b: PropertyChangedEventArgs): void;
4329
+ protected gl(): Brush;
4330
+ protected er(a: DataGrid, b: DataGrid): void;
4331
+ protected e6(): void;
4332
+ protected et(a: any, b: PropertyChangedEventArgs): void;
4243
4333
  }
4244
4334
  /**
4245
4335
  * @hidden
@@ -4267,76 +4357,76 @@ export declare class SaveLayoutColumn extends JsonDictionaryItem {
4267
4357
  export declare class SectionFooter extends DefinitionBase {
4268
4358
  static $t: Type;
4269
4359
  protected n(a: CellPath): CellModel;
4270
- protected d2(a: CellPath, b: DataGrid, c: any): string;
4271
- eo(a: CellModel, b: DataGrid, c: any, d: any): void;
4272
- el(a: CellModel, b: DataGrid, c: any, d: any): void;
4360
+ protected d3(a: CellPath, b: DataGrid, c: any): string;
4361
+ ep(a: CellModel, b: DataGrid, c: any, d: any): void;
4362
+ em(a: CellModel, b: DataGrid, c: any, d: any): void;
4273
4363
  }
4274
4364
  /**
4275
4365
  * @hidden
4276
4366
  */
4277
4367
  export declare class SectionHeader extends DefinitionBase {
4278
4368
  static $t: Type;
4369
+ private hr;
4370
+ get ht(): Brush;
4371
+ set ht(a: Brush);
4279
4372
  private hq;
4280
4373
  get hs(): Brush;
4281
4374
  set hs(a: Brush);
4282
- private hp;
4283
- get hr(): Brush;
4284
- set hr(a: Brush);
4285
- private g6;
4286
- get ha(): number;
4287
- set ha(a: number);
4288
- private g8;
4289
- get hc(): number;
4290
- set hc(a: number);
4291
4375
  private g7;
4292
4376
  get hb(): number;
4293
4377
  set hb(a: number);
4294
- private g5;
4295
- get g9(): number;
4296
- set g9(a: number);
4297
- private g2;
4298
- get g3(): boolean;
4299
- set g3(a: boolean);
4300
- private gz;
4301
- get g0(): GroupSummaryDisplayMode;
4302
- set g0(a: GroupSummaryDisplayMode);
4378
+ private g9;
4379
+ get hd(): number;
4380
+ set hd(a: number);
4381
+ private g8;
4382
+ get hc(): number;
4383
+ set hc(a: number);
4384
+ private g6;
4385
+ get ha(): number;
4386
+ set ha(a: number);
4387
+ private g3;
4388
+ get g4(): boolean;
4389
+ set g4(a: boolean);
4390
+ private g0;
4391
+ get g1(): GroupSummaryDisplayMode;
4392
+ set g1(a: GroupSummaryDisplayMode);
4303
4393
  sectionHeaderPropertyUpdating: (sectionHeader: SectionHeader, propertyName: string, propertyAnimationType: CellPropertyAnimationType, oldValue: any, newValue: any) => void;
4304
4394
  constructor();
4305
- protected d2(a: CellPath, b: DataGrid, c: any): string;
4395
+ protected d3(a: CellPath, b: DataGrid, c: any): string;
4306
4396
  protected n(a: CellPath): CellModel;
4307
- protected gk(): Brush;
4308
- eo(a: CellModel, b: DataGrid, c: any, d: any): void;
4309
- el(a: CellModel, b: DataGrid, c: any, d: any): void;
4310
- protected eq(a: DataGrid, b: DataGrid): void;
4311
- private g4;
4397
+ protected gl(): Brush;
4398
+ ep(a: CellModel, b: DataGrid, c: any, d: any): void;
4399
+ em(a: CellModel, b: DataGrid, c: any, d: any): void;
4400
+ protected er(a: DataGrid, b: DataGrid): void;
4401
+ private g5;
4402
+ private hn;
4312
4403
  private hm;
4313
- private hl;
4314
- protected es(a: any, b: PropertyChangedEventArgs): void;
4315
- ho(): void;
4316
- protected e5(): void;
4317
- protected fh(): void;
4404
+ protected et(a: any, b: PropertyChangedEventArgs): void;
4405
+ hp(): void;
4406
+ protected e6(): void;
4318
4407
  protected fi(): void;
4319
- hn(): void;
4320
- protected ev(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
4321
- private gy;
4408
+ protected fj(): void;
4409
+ ho(): void;
4410
+ protected ew(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
4411
+ private gz;
4322
4412
  }
4323
4413
  /**
4324
4414
  * @hidden
4325
4415
  */
4326
4416
  export declare class RowSeparator extends DefinitionBase {
4327
4417
  static $t: Type;
4328
- protected d2(a: CellPath, b: DataGrid, c: any): string;
4329
- protected eq(a: DataGrid, b: DataGrid): void;
4330
- protected e5(): void;
4418
+ protected d3(a: CellPath, b: DataGrid, c: any): string;
4419
+ protected er(a: DataGrid, b: DataGrid): void;
4420
+ protected e6(): void;
4421
+ protected ff(): void;
4422
+ protected fh(): void;
4331
4423
  protected fe(): void;
4332
- protected fg(): void;
4333
- protected fd(): void;
4334
- protected es(a: any, b: PropertyChangedEventArgs): void;
4424
+ protected et(a: any, b: PropertyChangedEventArgs): void;
4335
4425
  protected n(a: CellPath): CellModel;
4336
- protected gk(): Brush;
4337
- protected gq(): Brush;
4338
- protected gn(): Brush;
4426
+ protected gl(): Brush;
4427
+ protected gr(): Brush;
4339
4428
  protected go(): Brush;
4429
+ protected gp(): Brush;
4340
4430
  protected bi(): number;
4341
4431
  }
4342
4432
  /**
@@ -4344,90 +4434,90 @@ export declare class RowSeparator extends DefinitionBase {
4344
4434
  */
4345
4435
  export declare class HeaderRowSeparator extends DefinitionBase {
4346
4436
  static $t: Type;
4347
- protected d2(a: CellPath, b: DataGrid, c: any): string;
4437
+ protected d3(a: CellPath, b: DataGrid, c: any): string;
4348
4438
  protected n(a: CellPath): CellModel;
4349
- protected gk(): Brush;
4350
- protected e5(): void;
4351
- protected eq(a: DataGrid, b: DataGrid): void;
4352
- protected es(a: any, b: PropertyChangedEventArgs): void;
4439
+ protected gl(): Brush;
4440
+ protected e6(): void;
4441
+ protected er(a: DataGrid, b: DataGrid): void;
4442
+ protected et(a: any, b: PropertyChangedEventArgs): void;
4353
4443
  }
4354
4444
  /**
4355
4445
  * @hidden
4356
4446
  */
4357
4447
  export declare abstract class SummaryRow extends DefinitionBase {
4358
4448
  static $t: Type;
4359
- private hq;
4360
- get hv(): Brush;
4361
- set hv(a: Brush);
4362
- private ho;
4363
- get hs(): Brush;
4364
- set hs(a: Brush);
4365
4449
  private hr;
4366
4450
  get hw(): Brush;
4367
4451
  set hw(a: Brush);
4368
4452
  private hp;
4369
4453
  get ht(): Brush;
4370
4454
  set ht(a: Brush);
4371
- private gz;
4455
+ private hs;
4456
+ get hx(): Brush;
4457
+ set hx(a: Brush);
4458
+ private hq;
4459
+ get hu(): Brush;
4460
+ set hu(a: Brush);
4461
+ private g0;
4372
4462
  get summaryNameTextStyle(): FontInfo;
4373
4463
  set summaryNameTextStyle(a: FontInfo);
4374
- private gy;
4375
- get g0(): FontInfo;
4376
- set g0(a: FontInfo);
4377
- private g4;
4378
- get g8(): number;
4379
- set g8(a: number);
4380
- private g6;
4381
- get ha(): number;
4382
- set ha(a: number);
4464
+ private gz;
4465
+ get g1(): FontInfo;
4466
+ set g1(a: FontInfo);
4383
4467
  private g5;
4384
4468
  get g9(): number;
4385
4469
  set g9(a: number);
4386
- private g3;
4387
- get g7(): number;
4388
- set g7(a: number);
4470
+ private g7;
4471
+ get hb(): number;
4472
+ set hb(a: number);
4473
+ private g6;
4474
+ get ha(): number;
4475
+ set ha(a: number);
4476
+ private g4;
4477
+ get g8(): number;
4478
+ set g8(a: number);
4389
4479
  constructor();
4390
- protected d2(a: CellPath, b: DataGrid, c: any): string;
4480
+ protected d3(a: CellPath, b: DataGrid, c: any): string;
4391
4481
  protected n(a: CellPath): CellModel;
4392
- eo(a: CellModel, b: DataGrid, c: any, d: any): void;
4393
- el(a: CellModel, b: DataGrid, c: any, d: any): void;
4394
- protected eq(a: DataGrid, b: DataGrid): void;
4395
- protected hu(): Brush;
4396
- protected gr(): Brush;
4397
- protected es(a: any, b: PropertyChangedEventArgs): void;
4398
- protected hl(): void;
4482
+ ep(a: CellModel, b: DataGrid, c: any, d: any): void;
4483
+ em(a: CellModel, b: DataGrid, c: any, d: any): void;
4484
+ protected er(a: DataGrid, b: DataGrid): void;
4485
+ protected hv(): Brush;
4486
+ protected gs(): Brush;
4487
+ protected et(a: any, b: PropertyChangedEventArgs): void;
4399
4488
  protected hm(): void;
4400
- protected fi(): void;
4401
4489
  protected hn(): void;
4402
- protected ev(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
4490
+ protected fj(): void;
4491
+ protected ho(): void;
4492
+ protected ew(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
4403
4493
  protected aj(): FontInfo;
4404
- protected g1(): FontInfo;
4494
+ protected g2(): FontInfo;
4405
4495
  }
4406
4496
  /**
4407
4497
  * @hidden
4408
4498
  */
4409
4499
  export declare class SummaryRowRoot extends SummaryRow {
4410
4500
  static $t: Type;
4411
- protected d2(a: CellPath, b: DataGrid, c: any): string;
4412
- protected gk(): Brush;
4413
- protected e5(): void;
4414
- protected hl(): void;
4501
+ protected d3(a: CellPath, b: DataGrid, c: any): string;
4502
+ protected gl(): Brush;
4503
+ protected e6(): void;
4415
4504
  protected hm(): void;
4416
- protected fh(): void;
4417
4505
  protected hn(): void;
4506
+ protected fi(): void;
4507
+ protected ho(): void;
4418
4508
  }
4419
4509
  /**
4420
4510
  * @hidden
4421
4511
  */
4422
4512
  export declare class SummaryRowSection extends SummaryRow {
4423
4513
  static $t: Type;
4424
- protected d2(a: CellPath, b: DataGrid, c: any): string;
4425
- protected gk(): Brush;
4426
- protected e5(): void;
4427
- protected hl(): void;
4514
+ protected d3(a: CellPath, b: DataGrid, c: any): string;
4515
+ protected gl(): Brush;
4516
+ protected e6(): void;
4428
4517
  protected hm(): void;
4429
- protected fh(): void;
4430
4518
  protected hn(): void;
4519
+ protected fi(): void;
4520
+ protected ho(): void;
4431
4521
  }
4432
4522
  /**
4433
4523
  * @hidden
@@ -4436,12 +4526,12 @@ export declare class TemplateColumn extends DataGridColumn {
4436
4526
  static $t: Type;
4437
4527
  constructor();
4438
4528
  protected n(a: CellPath): CellModel;
4439
- protected d2(a: CellPath, b: DataGrid, c: any): string;
4440
- eo(a: CellModel, b: DataGrid, c: any, d: any): void;
4441
- el(a: CellModel, b: DataGrid, c: any, d: any): void;
4442
- n6(a: TemplateCellModel, b: any): void;
4529
+ protected d3(a: CellPath, b: DataGrid, c: any): string;
4530
+ ep(a: CellModel, b: DataGrid, c: any, d: any): void;
4531
+ em(a: CellModel, b: DataGrid, c: any, d: any): void;
4532
+ o7(a: TemplateCellModel, b: any): void;
4443
4533
  cellUpdating: (sender: any, args: TemplateCellUpdatingEventArgs) => void;
4444
- protected ev(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
4534
+ protected ew(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
4445
4535
  }
4446
4536
  /**
4447
4537
  * @hidden
@@ -4460,23 +4550,23 @@ export declare class TemplateCellUpdatingEventArgs extends EventArgs {
4460
4550
  */
4461
4551
  export declare class TextColumn extends DataGridColumn {
4462
4552
  static $t: Type;
4463
- private n7;
4464
- get ob(): string;
4465
- set ob(a: string);
4466
- get n5(): EditorType;
4467
- set n5(a: EditorType);
4468
- get n6(): any;
4469
- set n6(a: any);
4470
- get n8(): string;
4471
- set n8(a: string);
4472
- get n9(): string;
4473
- set n9(a: string);
4553
+ private o8;
4554
+ get pc(): string;
4555
+ set pc(a: string);
4556
+ get o6(): EditorType;
4557
+ set o6(a: EditorType);
4558
+ get o7(): any;
4559
+ set o7(a: any);
4560
+ get o9(): string;
4561
+ set o9(a: string);
4562
+ get pa(): string;
4563
+ set pa(a: string);
4474
4564
  protected n(a: CellPath): CellModel;
4475
- eo(a: CellModel, b: DataGrid, c: any, d: any): void;
4476
- el(a: CellModel, b: DataGrid, c: any, d: any): void;
4477
- dz(a: DataGrid, b: any, c: any): string;
4478
- private oa;
4479
- protected d2(a: CellPath, b: DataGrid, c: any): string;
4565
+ ep(a: CellModel, b: DataGrid, c: any, d: any): void;
4566
+ em(a: CellModel, b: DataGrid, c: any, d: any): void;
4567
+ d0(a: DataGrid, b: any, c: any): string;
4568
+ private pb;
4569
+ protected d3(a: CellPath, b: DataGrid, c: any): string;
4480
4570
  }
4481
4571
  /**
4482
4572
  * @hidden
@@ -4485,9 +4575,9 @@ export declare class TextHeader extends Header {
4485
4575
  static $t: Type;
4486
4576
  constructor();
4487
4577
  protected n(a: CellPath): CellModel;
4488
- protected d2(a: CellPath, b: DataGrid, c: any): string;
4489
- el(a: CellModel, b: DataGrid, c: any, d: any): void;
4490
- eo(a: CellModel, b: DataGrid, c: any, d: any): void;
4578
+ protected d3(a: CellPath, b: DataGrid, c: any): string;
4579
+ em(a: CellModel, b: DataGrid, c: any, d: any): void;
4580
+ ep(a: CellModel, b: DataGrid, c: any, d: any): void;
4491
4581
  }
4492
4582
  /**
4493
4583
  * @hidden