igniteui-webcomponents-grids 5.3.0 → 5.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (97) hide show
  1. package/bundles/igniteui-webcomponents-grids.umd.js +2341 -1701
  2. package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
  3. package/custom-elements.json +1423 -0
  4. package/esm2015/lib/CanvasTemplateCellPresenter.js +1 -1
  5. package/esm2015/lib/CheckboxListBridge.js +97 -49
  6. package/esm2015/lib/CheckboxListView_combined.js +989 -602
  7. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  8. package/esm2015/lib/ColumnFilterCondition_combined.js +803 -789
  9. package/esm2015/lib/ColumnGroupingView_combined.js +1 -1
  10. package/esm2015/lib/ColumnPinningView_combined.js +3 -3
  11. package/esm2015/lib/DataGridToolbarView_combined.js +1 -1
  12. package/esm2015/lib/GridCellBase.js +14 -4
  13. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +8 -8
  14. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +3 -3
  15. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  16. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  17. package/esm2015/lib/GridColumnPinOptionsView_combined.js +1 -1
  18. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +2 -2
  19. package/esm2015/lib/GridEffectMainIntent.js +1 -1
  20. package/esm2015/lib/GridFilterDialogView_combined.js +2 -0
  21. package/esm2015/lib/ISummaryChooserView_combined.js +9 -9
  22. package/esm2015/lib/MultiColumnComboBoxView_combined.js +3 -3
  23. package/esm2015/lib/TemplateCellPresenter.js +1 -1
  24. package/esm2015/lib/TemplateHeader.js +1 -1
  25. package/esm2015/lib/igc-checkbox-list-component.js +150 -71
  26. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  27. package/esm2015/lib/igc-data-grid-column-component.js +77 -77
  28. package/esm2015/lib/igc-data-grid-filter-dialog-component.js +3 -0
  29. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  30. package/esm2015/lib/igc-image-column-component.js +12 -12
  31. package/esm2015/lib/igc-numeric-column-component.js +35 -35
  32. package/esm2015/lib/igc-text-column-component.js +9 -9
  33. package/esm5/lib/CanvasTemplateCellPresenter.js +1 -1
  34. package/esm5/lib/CheckboxListBridge.js +97 -49
  35. package/esm5/lib/CheckboxListView_combined.js +1009 -580
  36. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  37. package/esm5/lib/ColumnFilterCondition_combined.js +836 -786
  38. package/esm5/lib/ColumnGroupingView_combined.js +1 -1
  39. package/esm5/lib/ColumnPinningView_combined.js +3 -3
  40. package/esm5/lib/DataGridToolbarView_combined.js +1 -1
  41. package/esm5/lib/GridCellBase.js +14 -4
  42. package/esm5/lib/GridColumnFilterOptionsView_combined.js +8 -8
  43. package/esm5/lib/GridColumnGroupOptionsView_combined.js +3 -3
  44. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  45. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  46. package/esm5/lib/GridColumnPinOptionsView_combined.js +1 -1
  47. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +2 -2
  48. package/esm5/lib/GridEffectMainIntent.js +1 -1
  49. package/esm5/lib/GridFilterDialogView_combined.js +2 -0
  50. package/esm5/lib/ISummaryChooserView_combined.js +9 -9
  51. package/esm5/lib/MultiColumnComboBoxView_combined.js +3 -3
  52. package/esm5/lib/TemplateCellPresenter.js +1 -1
  53. package/esm5/lib/TemplateHeader.js +1 -1
  54. package/esm5/lib/igc-checkbox-list-component.js +179 -71
  55. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  56. package/esm5/lib/igc-data-grid-column-component.js +77 -77
  57. package/esm5/lib/igc-data-grid-filter-dialog-component.js +3 -0
  58. package/esm5/lib/igc-date-time-column-component.js +23 -23
  59. package/esm5/lib/igc-image-column-component.js +12 -12
  60. package/esm5/lib/igc-numeric-column-component.js +35 -35
  61. package/esm5/lib/igc-text-column-component.js +9 -9
  62. package/fesm2015/igniteui-webcomponents-grids.js +2259 -1726
  63. package/fesm5/igniteui-webcomponents-grids.js +2343 -1703
  64. package/grids/combined.js +25338 -23125
  65. package/grids/index.d.ts +1 -204
  66. package/grids/lib/igc-column-component.d.ts +1 -1
  67. package/grids/lib/igc-expression-tree.d.ts +7 -0
  68. package/grids/lib/igc-filtering-expression.d.ts +9 -4
  69. package/grids/lib/igc-filtering-expressions-tree.d.ts +9 -1
  70. package/grids/lib/igc-filtering-operand.d.ts +1 -1
  71. package/grids/lib/igc-filtering-operation.d.ts +4 -2
  72. package/grids/lib/igc-grid-base-directive.d.ts +1 -1
  73. package/grids/lib/igc-grid-created-event-args.d.ts +3 -0
  74. package/grids/lib/igc-hierarchical-grid-base-directive.d.ts +1 -1
  75. package/grids/lib/igc-pivot-dimension.d.ts +1 -1
  76. package/grids/lib/igc-pivot-value.d.ts +1 -1
  77. package/grids/lib/igc-row-island-component.d.ts +1 -1
  78. package/grids/lib/index.d.ts +204 -0
  79. package/grids/styles.css +1 -1
  80. package/grids/themes/dark/bootstrap.css +1 -1
  81. package/grids/themes/dark/fluent.css +1 -1
  82. package/grids/themes/dark/indigo.css +1 -1
  83. package/grids/themes/dark/material.css +1 -1
  84. package/grids/themes/light/bootstrap.css +1 -1
  85. package/grids/themes/light/fluent.css +1 -1
  86. package/grids/themes/light/indigo.css +1 -1
  87. package/grids/themes/light/material.css +1 -1
  88. package/lib/CheckboxListBridge.d.ts +12 -9
  89. package/lib/CheckboxListExternal.d.ts +12 -0
  90. package/lib/CheckboxListViewExternal.d.ts +1 -0
  91. package/lib/CheckboxListView_combined.d.ts +184 -151
  92. package/lib/ColumnFilterCondition_combined.d.ts +178 -176
  93. package/lib/GridEffectMainIntent.d.ts +4 -3
  94. package/lib/GridFilterDialogView_combined.d.ts +1 -0
  95. package/lib/igc-checkbox-list-component.d.ts +29 -0
  96. package/lib/igc-data-grid-filter-dialog-component.d.ts +1 -0
  97. package/package.json +4 -4
@@ -190,6 +190,7 @@ import { LayoutAction_$type } from "./LayoutAction";
190
190
  import { ToolActionInfo } from "igniteui-webcomponents-core";
191
191
  import { ICommandAvailabilityListener_$type } from "igniteui-webcomponents-core";
192
192
  import { ICommandStateChangedListener_$type } from "igniteui-webcomponents-core";
193
+ import { IToolbarContextAccessor_$type } from "igniteui-webcomponents-core";
193
194
  import { Stack$1 } from "igniteui-webcomponents-core";
194
195
  import { DataSourceSpecialRow } from "igniteui-webcomponents-core";
195
196
  import { RowRange } from "./RowRange";
@@ -6065,7 +6066,7 @@ var Pager = /** @class */ /*@__PURE__*/ (function (_super) {
6065
6066
  if (this.b.isVirtual) {
6066
6067
  this.b.firstVisibleIndexRequested = a;
6067
6068
  this.b.lastVisibleIndexRequested = a + this.ah;
6068
- this.d.ed = false;
6069
+ this.d.ef = false;
6069
6070
  }
6070
6071
  this.b2();
6071
6072
  this.ac.clear();
@@ -6076,7 +6077,7 @@ var Pager = /** @class */ /*@__PURE__*/ (function (_super) {
6076
6077
  var c = this.b.getItemAtIndex(b);
6077
6078
  this.ac.add1(c);
6078
6079
  if (c != null) {
6079
- this.d.ed = true;
6080
+ this.d.ef = true;
6080
6081
  }
6081
6082
  }
6082
6083
  var d = new Array(this.ac.count);
@@ -6087,7 +6088,7 @@ var Pager = /** @class */ /*@__PURE__*/ (function (_super) {
6087
6088
  if (this.targetGrid != null) {
6088
6089
  this.targetGrid.actualDataSource.queueAutoRefresh();
6089
6090
  this.targetGrid.actualDataSource.flushAutoRefresh();
6090
- if (this.b.isVirtual && this.d.ed) {
6091
+ if (this.b.isVirtual && this.d.ef) {
6091
6092
  this.targetGrid.wk(0, this.ao - 1);
6092
6093
  }
6093
6094
  else {
@@ -6118,7 +6119,7 @@ var Pager = /** @class */ /*@__PURE__*/ (function (_super) {
6118
6119
  this.b.summaryScope = this.p;
6119
6120
  var b = this.b;
6120
6121
  b.schemaChanged = delegateCombine(b.schemaChanged, runOn(this, this.bj));
6121
- this.d.ec = this.b;
6122
+ this.d.ee = this.b;
6122
6123
  switch (this.l) {
6123
6124
  case 1:
6124
6125
  case 0:
@@ -6658,13 +6659,13 @@ var ColumnController = /** @class */ /*@__PURE__*/ (function (_super) {
6658
6659
  var a = new Dictionary$2(String_$type, Boolean_$type, 0);
6659
6660
  for (var b = 0; b < this.i.count; b++) {
6660
6661
  var c = this.i._inner[b];
6661
- if (!c.ji) {
6662
+ if (!c.jh) {
6662
6663
  a.item(c.lo, true);
6663
6664
  }
6664
6665
  }
6665
6666
  var d = false;
6666
6667
  for (var e = this.i.count - 1; e >= 0; e--) {
6667
- if (this.i._inner[e].ji) {
6668
+ if (this.i._inner[e].jh) {
6668
6669
  this.k.removeExternalColumn(this.i._inner[e].externalObject);
6669
6670
  }
6670
6671
  }
@@ -6727,7 +6728,7 @@ var ColumnController = /** @class */ /*@__PURE__*/ (function (_super) {
6727
6728
  break;
6728
6729
  }
6729
6730
  c.lo = a;
6730
- c.ji = true;
6731
+ c.jh = true;
6731
6732
  c.mf = this.t(a) ? c.lo : (createGuid());
6732
6733
  return c;
6733
6734
  };
@@ -7656,7 +7657,7 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
7656
7657
  }
7657
7658
  if (a.l.aj) {
7658
7659
  var e = this.ay.h(a.l);
7659
- if (e.jm && !this.cj.j && this.editOnKeyPress) {
7660
+ if (e.jl && !this.cj.j && this.editOnKeyPress) {
7660
7661
  this.cj.x();
7661
7662
  }
7662
7663
  }
@@ -7677,7 +7678,7 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
7677
7678
  if (a.w == 0 && this.headerClickAction != 4) {
7678
7679
  this.f9.d(this.cf(a.l));
7679
7680
  var f = this.ay.h(a.l);
7680
- f.mz("Sorted");
7681
+ f.m0("Sorted");
7681
7682
  }
7682
7683
  this.ik = false;
7683
7684
  if (this.selectionMode == 5) {
@@ -7842,7 +7843,7 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
7842
7843
  this.hu = a.bk && a.bl;
7843
7844
  if (this.dragger != null && this.columnResizingMode != 2 && this.ao.h) {
7844
7845
  var d = this.ay.j._inner[a.l.a5];
7845
- if (d.jq) {
7846
+ if (d.jp) {
7846
7847
  var e = this.model.b9._inner[this.ao.a5];
7847
7848
  this.mb = e.k;
7848
7849
  this.l8 = this.model.cz;
@@ -7920,7 +7921,7 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
7920
7921
  if (this.dragger == null || !this.dragger.isDragActive) {
7921
7922
  if (a.l.h && this.columnResizingMode != 2) {
7922
7923
  var d = this.ay.j._inner[a.l.a5];
7923
- if (d.jq) {
7924
+ if (d.jp) {
7924
7925
  this.externalGrid.setResizeCursor();
7925
7926
  }
7926
7927
  }
@@ -7943,7 +7944,7 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
7943
7944
  this.md = this.model.actualVisibleRegion.top;
7944
7945
  if ((this.dragger == null || !this.dragger.isDragActive) && a.g && !a.h && !a.ay && this.columnMovingMode != 1) {
7945
7946
  var e = this.cf(a);
7946
- if (e != null && e.jo) {
7947
+ if (e != null && e.jn) {
7947
7948
  this.externalGrid.ensureColumnsAreManual();
7948
7949
  }
7949
7950
  this.externalGrid.setHandCursor();
@@ -7963,7 +7964,7 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
7963
7964
  }
7964
7965
  this.dragger.dragStart(b, c, this.model.actualVisibleRegion.x, this.model.actualVisibleRegion.y, 0, a, d);
7965
7966
  }
7966
- else if (this.selectionMode == 2 && this.mouseDragSelectionEnabled && a.aj) {
7967
+ else if (this.selectionMode == 2 && this.mouseDragSelectionEnabled && (a.aj || (a.ay && !a.g))) {
7967
7968
  if (!d) {
7968
7969
  this.je = true;
7969
7970
  this.selectedKeys.clear();
@@ -8004,7 +8005,7 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
8004
8005
  if (this.ly != -1) {
8005
8006
  var c = this.model.b9._inner[this.dragger.cellPath.a5];
8006
8007
  this.c5.ah(this, this.columnAnimationSettings, c, this.ly);
8007
- this.columns._inner[this.dragger.cellPath.a5].mz("Resized");
8008
+ this.columns._inner[this.dragger.cellPath.a5].m0("Resized");
8008
8009
  }
8009
8010
  else {
8010
8011
  this.renderingEngine.refresh(this.model, false);
@@ -8023,11 +8024,11 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
8023
8024
  this.moveColumn(this.dragger.cellPath.a5, this.nk);
8024
8025
  this.ld = false;
8025
8026
  this.pinColumn(this.columns._inner[this.nk], this.fn);
8026
- this.columns._inner[this.nk].mz("Pinned");
8027
+ this.columns._inner[this.nk].m0("Pinned");
8027
8028
  }
8028
8029
  else {
8029
8030
  this.moveColumn(this.dragger.cellPath.a5, this.nk);
8030
- this.columns._inner[this.nk].mz("Moved");
8031
+ this.columns._inner[this.nk].m0("Moved");
8031
8032
  }
8032
8033
  d = false;
8033
8034
  }
@@ -12110,7 +12111,7 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
12110
12111
  try {
12111
12112
  for (var _b = __values(fromEnum(this.actualColumns)), _c = _b.next(); !_c.done; _c = _b.next()) {
12112
12113
  var b = _c.value;
12113
- b.jr = false;
12114
+ b.jq = false;
12114
12115
  }
12115
12116
  }
12116
12117
  catch (e_15_1) {
@@ -12215,19 +12216,19 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
12215
12216
  return this.ay.h(a);
12216
12217
  };
12217
12218
  DataGrid.prototype.hideThenRemoveColumn = function (a) {
12218
- a.jh = true;
12219
- a.jp = true;
12219
+ a.jg = true;
12220
+ a.jo = true;
12220
12221
  };
12221
12222
  DataGrid.prototype.exchangeColumn = function (a, b) {
12222
12223
  var c = this.columns.indexOf(b);
12223
12224
  if (c == -1) {
12224
12225
  return;
12225
12226
  }
12226
- if ((a != null && a.jo) || (b != null && b.jo)) {
12227
+ if ((a != null && a.jn) || (b != null && b.jn)) {
12227
12228
  throw new InvalidOperationException(1, "Cannot exchange a column created from markup");
12228
12229
  }
12229
12230
  if (this.columns.contains(a)) {
12230
- if (a.jp) {
12231
+ if (a.jo) {
12231
12232
  this.externalGrid.removeExternalColumn(a.externalObject);
12232
12233
  }
12233
12234
  else {
@@ -12251,7 +12252,7 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
12251
12252
  }
12252
12253
  b.il = a.il;
12253
12254
  if (!this.jl(a)) {
12254
- a.jp = false;
12255
+ a.jo = false;
12255
12256
  a.ht = 5;
12256
12257
  this.externalGrid.removeExternalColumn(b.externalObject);
12257
12258
  this.v6(a);
@@ -12343,10 +12344,10 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
12343
12344
  b.columnCellsPropertyUpdating = delegateCombine(b.columnCellsPropertyUpdating, runOn(this, this.ue));
12344
12345
  b.columnHeaderCellsPropertyUpdating = delegateCombine(b.columnHeaderCellsPropertyUpdating, runOn(this, this.uh));
12345
12346
  this.gb.t(a, b, this.model);
12346
- if (b.jp) {
12347
+ if (b.jo) {
12347
12348
  b.ht = 3;
12348
12349
  }
12349
- if (this.jj(b) && !b.jp && b.ht != 3) {
12350
+ if (this.jj(b) && !b.jo && b.ht != 3) {
12350
12351
  var c = b.ht;
12351
12352
  b.ht = 1;
12352
12353
  this.xu();
@@ -12423,7 +12424,7 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
12423
12424
  }
12424
12425
  if (b == "SortDirection" && false == this.j3) {
12425
12426
  this.f9.f(a, a.hr);
12426
- a.mz("Sorted");
12427
+ a.m0("Sorted");
12427
12428
  }
12428
12429
  if (stringStartsWith(b, "transition@@@")) {
12429
12430
  this.c5.r(this, f, b, c, d, e, 1);
@@ -12493,18 +12494,18 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
12493
12494
  var c = this.columns._inner[a];
12494
12495
  b = Math.min(this.columns.count - 1, Math.max(0, b));
12495
12496
  this.lc = true;
12496
- if (c != null && c.jo) {
12497
+ if (c != null && c.jn) {
12497
12498
  throw new InvalidOperationException(1, "Can't move a column that was created from markup");
12498
12499
  }
12499
12500
  if (b > a) {
12500
12501
  var d = this.columns._inner[b - 1];
12501
- if (d.jo) {
12502
+ if (d.jn) {
12502
12503
  throw new InvalidOperationException(1, "Can't move a column to before columns created from markup");
12503
12504
  }
12504
12505
  }
12505
12506
  else {
12506
12507
  var e = this.columns._inner[b];
12507
- if (e.jo) {
12508
+ if (e.jn) {
12508
12509
  throw new InvalidOperationException(1, "Can't move a column to before columns created from markup");
12509
12510
  }
12510
12511
  }
@@ -12546,7 +12547,7 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
12546
12547
  break;
12547
12548
  }
12548
12549
  var j = d._inner[i];
12549
- if (!j.jp && j.il == g) {
12550
+ if (!j.jo && j.il == g) {
12550
12551
  h = i;
12551
12552
  }
12552
12553
  } while (h == -1);
@@ -12669,7 +12670,7 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
12669
12670
  this.yy();
12670
12671
  break;
12671
12672
  case "IsHidden":
12672
- if (c.jp) {
12673
+ if (c.jo) {
12673
12674
  if (this.jm(c)) {
12674
12675
  var d = c.ht;
12675
12676
  c.ht = 2;
@@ -12678,7 +12679,7 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
12678
12679
  }
12679
12680
  else {
12680
12681
  c.ht = 3;
12681
- if (c.je) {
12682
+ if (c.jd) {
12682
12683
  this.externalGrid.ensureColumnsAreManual();
12683
12684
  this.externalGrid.removeExternalColumn(c.externalObject);
12684
12685
  }
@@ -12703,7 +12704,7 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
12703
12704
  this.columnHiddenChanged(this, ((function () {
12704
12705
  var $ret = new ColumnHiddenChangedEventArgs();
12705
12706
  $ret.a = c;
12706
- $ret.b = c.jp;
12707
+ $ret.b = c.jo;
12707
12708
  return $ret;
12708
12709
  })()));
12709
12710
  }
@@ -13306,7 +13307,7 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
13306
13307
  if (a != null) {
13307
13308
  var b = this.activeCell.b;
13308
13309
  var c = this.actualColumns.indexOf(a);
13309
- if (a.jm) {
13310
+ if (a.jl) {
13310
13311
  var d = this.model.e(c, b);
13311
13312
  if (d != null) {
13312
13313
  this.cj.ab(d);
@@ -13447,13 +13448,13 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
13447
13448
  var b = this.actualColumns.count - 1;
13448
13449
  var c = this.gb.j(b, this.model);
13449
13450
  if (a) {
13450
- while (b > 0 && (this.actualColumns._inner[c].jp || this.actualColumns._inner[c].il == 1)) {
13451
+ while (b > 0 && (this.actualColumns._inner[c].jo || this.actualColumns._inner[c].il == 1)) {
13451
13452
  b--;
13452
13453
  c = this.gb.j(b, this.model);
13453
13454
  }
13454
13455
  }
13455
13456
  else {
13456
- while (b > 0 && (this.actualColumns._inner[c].jp || this.actualColumns._inner[c].il != 0)) {
13457
+ while (b > 0 && (this.actualColumns._inner[c].jo || this.actualColumns._inner[c].il != 0)) {
13457
13458
  b--;
13458
13459
  c = this.gb.j(b, this.model);
13459
13460
  }
@@ -13467,13 +13468,13 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
13467
13468
  var b = 0;
13468
13469
  var c = this.gb.j(b, this.model);
13469
13470
  if (a) {
13470
- while (b < this.actualColumns.count - 1 && (this.actualColumns._inner[c].jp || this.actualColumns._inner[c].il == 2)) {
13471
+ while (b < this.actualColumns.count - 1 && (this.actualColumns._inner[c].jo || this.actualColumns._inner[c].il == 2)) {
13471
13472
  b++;
13472
13473
  c = this.gb.j(b, this.model);
13473
13474
  }
13474
13475
  }
13475
13476
  else {
13476
- while (b < this.actualColumns.count - 1 && (this.actualColumns._inner[c].jp || this.actualColumns._inner[c].il != 0)) {
13477
+ while (b < this.actualColumns.count - 1 && (this.actualColumns._inner[c].jo || this.actualColumns._inner[c].il != 0)) {
13477
13478
  b++;
13478
13479
  c = this.gb.j(b, this.model);
13479
13480
  }
@@ -13488,21 +13489,21 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
13488
13489
  if (!b) {
13489
13490
  c = this.gb.j(c, this.model);
13490
13491
  }
13491
- if (this.actualColumns._inner[c].jp) {
13492
+ if (this.actualColumns._inner[c].jo) {
13492
13493
  var d = c;
13493
13494
  var e = this.model.b9._inner[c].n;
13494
- while (e > 0 && this.actualColumns._inner[d].jp) {
13495
+ while (e > 0 && this.actualColumns._inner[d].jo) {
13495
13496
  e--;
13496
13497
  d = this.gb.j(e, this.model);
13497
13498
  }
13498
- if (this.actualColumns._inner[d].jp) {
13499
+ if (this.actualColumns._inner[d].jo) {
13499
13500
  d = c;
13500
13501
  e = this.model.b9._inner[c].n;
13501
- while (e < this.actualColumns.count - 1 && this.actualColumns._inner[d].jp) {
13502
+ while (e < this.actualColumns.count - 1 && this.actualColumns._inner[d].jo) {
13502
13503
  e++;
13503
13504
  d = this.gb.j(e, this.model);
13504
13505
  }
13505
- if (!this.actualColumns._inner[d].jp) {
13506
+ if (!this.actualColumns._inner[d].jo) {
13506
13507
  c = d;
13507
13508
  }
13508
13509
  }
@@ -13524,21 +13525,21 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
13524
13525
  };
13525
13526
  DataGrid.prototype.nu = function (a) {
13526
13527
  a = Math.min(a, this.actualColumns.count - 1);
13527
- if (this.actualColumns._inner[a].jp) {
13528
+ if (this.actualColumns._inner[a].jo) {
13528
13529
  var b = a;
13529
13530
  var c = this.model.b9._inner[b].n;
13530
- while (c < this.actualColumns.count - 1 && this.actualColumns._inner[b].jp) {
13531
+ while (c < this.actualColumns.count - 1 && this.actualColumns._inner[b].jo) {
13531
13532
  c++;
13532
13533
  b = this.gb.j(c, this.model);
13533
13534
  }
13534
- if (this.actualColumns._inner[b].jp) {
13535
+ if (this.actualColumns._inner[b].jo) {
13535
13536
  b = a;
13536
13537
  c = this.model.b9._inner[b].n;
13537
- while (c > 0 && this.actualColumns._inner[b].jp) {
13538
+ while (c > 0 && this.actualColumns._inner[b].jo) {
13538
13539
  c--;
13539
13540
  b = this.gb.j(c, this.model);
13540
13541
  }
13541
- if (!this.actualColumns._inner[b].jp) {
13542
+ if (!this.actualColumns._inner[b].jo) {
13542
13543
  a = b;
13543
13544
  }
13544
13545
  }
@@ -13832,7 +13833,7 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
13832
13833
  }
13833
13834
  d = this.model.b9._inner[o].n;
13834
13835
  h = p.lt();
13835
- } while (this.cj.j && g >= 0 && (!l || !p.jm));
13836
+ } while (this.cj.j && g >= 0 && (!l || !p.jl));
13836
13837
  if (this.groupSummaryDisplayMode != 1) {
13837
13838
  if (j == 1 || j == 2) {
13838
13839
  var q = this.n1();
@@ -13865,7 +13866,7 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
13865
13866
  }
13866
13867
  d = this.model.b9._inner[s].n;
13867
13868
  h = t.lt();
13868
- } while (this.cj.j && g < this.e7.getRowCount() && (!l || !t.jm));
13869
+ } while (this.cj.j && g < this.e7.getRowCount() && (!l || !t.jl));
13869
13870
  if (this.groupSummaryDisplayMode != 1) {
13870
13871
  if (j == 1 || j == 2) {
13871
13872
  var u = this.nw();
@@ -14010,7 +14011,7 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
14010
14011
  else if (this.ju() && this.enterBehavior == 1 && (c == 0 || c == 3)) {
14011
14012
  var d = this.ad.s();
14012
14013
  var e = this.actualColumns._inner[d];
14013
- if (e != null && e.jm) {
14014
+ if (e != null && e.jl) {
14014
14015
  var f = this.model.e(d, this.activeCell.b);
14015
14016
  return this.lb(f);
14016
14017
  }
@@ -14115,7 +14116,7 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
14115
14116
  if (this.ju() && (a == 0 || a == 3)) {
14116
14117
  var b = this.ad.s();
14117
14118
  var c = this.actualColumns._inner[b];
14118
- if (c != null && c.jm) {
14119
+ if (c != null && c.jl) {
14119
14120
  var d = this.model.e(b, this.activeCell.b);
14120
14121
  if (d == null) {
14121
14122
  this.ap = new CellPath(3, b, this.activeCell.b, 1);
@@ -14143,7 +14144,7 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
14143
14144
  }
14144
14145
  }
14145
14146
  var c = this.cf(a.l);
14146
- if (!c.jm) {
14147
+ if (!c.jl) {
14147
14148
  return false;
14148
14149
  }
14149
14150
  this.cj.ad(a);
@@ -15174,7 +15175,7 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
15174
15175
  return;
15175
15176
  }
15176
15177
  var a = this.ay.g(this.activeCell.d);
15177
- if (a.jm) {
15178
+ if (a.jl) {
15178
15179
  var b = this.model.h(a.ko);
15179
15180
  var c = this.model.e(b.n, this.activeCell.b);
15180
15181
  if (c != null) {
@@ -15396,7 +15397,7 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
15396
15397
  var i = new SaveLayoutColumn();
15397
15398
  i.o = h.lo;
15398
15399
  i.e = h.width;
15399
- i.i = toNullable(Boolean_$type, h.jp);
15400
+ i.i = toNullable(Boolean_$type, h.jo);
15400
15401
  i.j = toNullable(PinnedPositions_$type, h.il);
15401
15402
  var j = "";
15402
15403
  var k = "";
@@ -15592,7 +15593,7 @@ var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
15592
15593
  j.width = o;
15593
15594
  }
15594
15595
  if (nullableNotEquals(i.i, null)) {
15595
- j.jp = i.i.value;
15596
+ j.jo = i.i.value;
15596
15597
  }
15597
15598
  if (nullableNotEquals(i.j, null)) {
15598
15599
  j.il = i.j.value;
@@ -17574,7 +17575,7 @@ var GridAnimationManager = /** @class */ /*@__PURE__*/ (function (_super) {
17574
17575
  k.effectsFinished = delegateCombine(k.effectsFinished, function (l, m) {
17575
17576
  i.ht = 3;
17576
17577
  c.a = 3;
17577
- if (i.je) {
17578
+ if (i.jd) {
17578
17579
  a.externalGrid.ensureColumnsAreManual();
17579
17580
  a.externalGrid.removeExternalColumn(i.externalObject);
17580
17581
  }
@@ -17749,7 +17750,7 @@ var GridAnimationManager = /** @class */ /*@__PURE__*/ (function (_super) {
17749
17750
  var j = a.columnPropertyUpdatingAnimationMode;
17750
17751
  var k = new ColumnCellsEffect();
17751
17752
  k.bx(i);
17752
- k.t = 7;
17753
+ k.t = 8;
17753
17754
  k.as = true;
17754
17755
  if (g == 0) {
17755
17756
  k.v = 5;
@@ -17915,7 +17916,7 @@ var GridAnimationManager = /** @class */ /*@__PURE__*/ (function (_super) {
17915
17916
  var m = a.columnPropertyUpdatingAnimationMode;
17916
17917
  var n = new ColumnCellsEffect();
17917
17918
  n.bx(l);
17918
- n.t = 7;
17919
+ n.t = 8;
17919
17920
  n.as = true;
17920
17921
  if (g) {
17921
17922
  n.v = 5;
@@ -18118,7 +18119,7 @@ var GridAnimationManager = /** @class */ /*@__PURE__*/ (function (_super) {
18118
18119
  for (var h = b; h <= c; h++) {
18119
18120
  var i = new RowCellsEffect();
18120
18121
  g.g(i);
18121
- i.t = 6;
18122
+ i.t = 7;
18122
18123
  i.bx(e);
18123
18124
  i.al = true;
18124
18125
  i.bq = 1;
@@ -18503,7 +18504,7 @@ var GridAnimationManager = /** @class */ /*@__PURE__*/ (function (_super) {
18503
18504
  var h = new CellEffect();
18504
18505
  h.onFinished = delegateCombine(h.onFinished, function (i) { return _this.w(e); });
18505
18506
  h.onCanceled = delegateCombine(h.onCanceled, function (i, j) { return _this.v(e); });
18506
- h.t = 8;
18507
+ h.t = 9;
18507
18508
  h.bx(f);
18508
18509
  h.al = true;
18509
18510
  h.bq = 1;
@@ -18582,7 +18583,7 @@ var GridAnimationManager = /** @class */ /*@__PURE__*/ (function (_super) {
18582
18583
  var h = new CellEffect();
18583
18584
  h.onFinished = delegateCombine(h.onFinished, function (i) { return _this.w(e); });
18584
18585
  h.onCanceled = delegateCombine(h.onCanceled, function (i, j) { return _this.v(e); });
18585
- h.t = 8;
18586
+ h.t = 9;
18586
18587
  h.bx(f);
18587
18588
  h.al = true;
18588
18589
  h.bq = 0;
@@ -18701,7 +18702,7 @@ var GridAnimationManager = /** @class */ /*@__PURE__*/ (function (_super) {
18701
18702
  var e = new RowCellsEffect();
18702
18703
  e.onFinished = delegateCombine(e.onFinished, function (f) { return _this.w(c); });
18703
18704
  e.onCanceled = delegateCombine(e.onCanceled, function (f, g) { return _this.v(c); });
18704
- e.t = 5;
18705
+ e.t = 6;
18705
18706
  e.bx(d);
18706
18707
  e.al = true;
18707
18708
  e.bq = 1;
@@ -18743,7 +18744,7 @@ var GridAnimationManager = /** @class */ /*@__PURE__*/ (function (_super) {
18743
18744
  var e = new RowCellsEffect();
18744
18745
  e.onFinished = delegateCombine(e.onFinished, function (f) { return _this.w(c); });
18745
18746
  e.onCanceled = delegateCombine(e.onCanceled, function (f, g) { return _this.v(c); });
18746
- e.t = 5;
18747
+ e.t = 6;
18747
18748
  e.bx(d);
18748
18749
  e.al = true;
18749
18750
  e.bq = 0;
@@ -21728,47 +21729,47 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
21728
21729
  _this.ku = null;
21729
21730
  _this.kv = null;
21730
21731
  _this.ks = null;
21731
- _this.np = null;
21732
- _this.nk = null;
21733
- _this.nn = null;
21734
- _this.ni = null;
21732
+ _this.nq = null;
21733
+ _this.nl = null;
21735
21734
  _this.no = null;
21736
21735
  _this.nj = null;
21736
+ _this.np = null;
21737
+ _this.nk = null;
21737
21738
  _this.h5 = null;
21738
21739
  _this.hu = null;
21739
21740
  _this.jx = NaN;
21740
- _this.i6 = false;
21741
- _this.i0 = false;
21742
- _this.i9 = false;
21741
+ _this.i5 = false;
21742
+ _this.iz = false;
21743
+ _this.i8 = false;
21743
21744
  _this.g0 = null;
21744
21745
  _this.g2 = null;
21745
21746
  _this.h9 = null;
21746
- _this.i5 = true;
21747
- _this.i8 = true;
21748
- _this.i7 = false;
21749
- _this.ja = false;
21747
+ _this.i4 = true;
21748
+ _this.i7 = true;
21749
+ _this.i6 = false;
21750
+ _this.i9 = false;
21750
21751
  _this.hq = 0;
21751
21752
  _this.ij = 0;
21752
- _this.iz = false;
21753
+ _this.iy = false;
21753
21754
  _this.hg = 0;
21754
21755
  _this.hh = 0;
21755
- _this.ng = null;
21756
- _this.nl = null;
21756
+ _this.nh = null;
21757
+ _this.nm = null;
21757
21758
  _this.hl = 0;
21758
21759
  _this.hk = 0;
21760
+ _this.iu = true;
21761
+ _this.i0 = true;
21762
+ _this.iw = true;
21763
+ _this.i2 = true;
21759
21764
  _this.iv = true;
21760
21765
  _this.i1 = true;
21761
- _this.ix = true;
21762
21766
  _this.i3 = true;
21763
- _this.iw = true;
21764
- _this.i2 = true;
21765
- _this.i4 = true;
21766
- _this.nm = null;
21767
- _this.nh = null;
21767
+ _this.nn = null;
21768
+ _this.ni = null;
21768
21769
  _this.jw = NaN;
21769
21770
  _this.jv = 0;
21770
- _this.is = null;
21771
21771
  _this.ir = null;
21772
+ _this.iq = null;
21772
21773
  _this.hy = 0;
21773
21774
  _this.kp = null;
21774
21775
  _this.kt = null;
@@ -21785,20 +21786,20 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
21785
21786
  _this.h7 = null;
21786
21787
  _this.columnCellsPropertyUpdating = null;
21787
21788
  _this.columnHeaderCellsPropertyUpdating = null;
21788
- _this.ip = null;
21789
- _this.iy = false;
21789
+ _this.io = null;
21790
+ _this.ix = false;
21790
21791
  _this.ju = null;
21791
21792
  _this.hw = null;
21792
21793
  _this._commandCompleted = null;
21793
21794
  _this._invalidateActions = null;
21794
- _this.im = null;
21795
- _this.iy = true;
21795
+ _this.jt = null;
21796
+ _this.ix = true;
21796
21797
  _this.header = new TextHeader();
21797
- _this.iy = false;
21798
+ _this.ix = false;
21798
21799
  _this.e = _this.f();
21799
21800
  _this.j = _this.k();
21800
- _this.nu = _this.ny();
21801
- _this.ns = _this.nx();
21801
+ _this.nv = _this.nz();
21802
+ _this.nt = _this.ny();
21802
21803
  _this.ko = DataGridColumn.kn++;
21803
21804
  _this.h7 = new GridFilterOperandsCollection();
21804
21805
  var a = _this.h7;
@@ -21853,10 +21854,10 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
21853
21854
  }
21854
21855
  return false;
21855
21856
  };
21856
- DataGridColumn.prototype.ny = function () {
21857
+ DataGridColumn.prototype.nz = function () {
21857
21858
  return GridStyleRepository.bg;
21858
21859
  };
21859
- DataGridColumn.prototype.nx = function () {
21860
+ DataGridColumn.prototype.ny = function () {
21860
21861
  return GridStyleRepository.a7;
21861
21862
  };
21862
21863
  Object.defineProperty(DataGridColumn.prototype, "ht", {
@@ -22024,85 +22025,85 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
22024
22025
  enumerable: false,
22025
22026
  configurable: true
22026
22027
  });
22027
- Object.defineProperty(DataGridColumn.prototype, "n1", {
22028
+ Object.defineProperty(DataGridColumn.prototype, "n2", {
22028
22029
  get: function () {
22029
- return this.np;
22030
+ return this.nq;
22030
22031
  },
22031
22032
  set: function (a) {
22032
- var b = this.np;
22033
- this.np = a;
22034
- if (this.np != b) {
22035
- this.et("SelectedBackground", 10, b, this.np);
22033
+ var b = this.nq;
22034
+ this.nq = a;
22035
+ if (this.nq != b) {
22036
+ this.et("SelectedBackground", 10, b, this.nq);
22036
22037
  }
22037
22038
  },
22038
22039
  enumerable: false,
22039
22040
  configurable: true
22040
22041
  });
22041
- Object.defineProperty(DataGridColumn.prototype, "nu", {
22042
+ Object.defineProperty(DataGridColumn.prototype, "nv", {
22042
22043
  get: function () {
22043
- return this.nk;
22044
+ return this.nl;
22044
22045
  },
22045
22046
  set: function (a) {
22046
- var b = this.nk;
22047
- this.nk = a;
22048
- if (this.nk != b) {
22049
- this.et("ActualSelectedBackground", 2, b, this.nk);
22047
+ var b = this.nl;
22048
+ this.nl = a;
22049
+ if (this.nl != b) {
22050
+ this.et("ActualSelectedBackground", 2, b, this.nl);
22050
22051
  }
22051
22052
  },
22052
22053
  enumerable: false,
22053
22054
  configurable: true
22054
22055
  });
22055
- Object.defineProperty(DataGridColumn.prototype, "nz", {
22056
+ Object.defineProperty(DataGridColumn.prototype, "n0", {
22056
22057
  get: function () {
22057
- return this.nn;
22058
+ return this.no;
22058
22059
  },
22059
22060
  set: function (a) {
22060
- var b = this.nn;
22061
- this.nn = a;
22062
- if (this.nn != b) {
22063
- this.et("RowHoverBackground", 10, b, this.nn);
22061
+ var b = this.no;
22062
+ this.no = a;
22063
+ if (this.no != b) {
22064
+ this.et("RowHoverBackground", 10, b, this.no);
22064
22065
  }
22065
22066
  },
22066
22067
  enumerable: false,
22067
22068
  configurable: true
22068
22069
  });
22069
- Object.defineProperty(DataGridColumn.prototype, "ns", {
22070
+ Object.defineProperty(DataGridColumn.prototype, "nt", {
22070
22071
  get: function () {
22071
- return this.ni;
22072
+ return this.nj;
22072
22073
  },
22073
22074
  set: function (a) {
22074
- var b = this.ni;
22075
- this.ni = a;
22076
- if (this.ni != b) {
22077
- this.et("ActualHoverBackground", 2, b, this.ni);
22075
+ var b = this.nj;
22076
+ this.nj = a;
22077
+ if (this.nj != b) {
22078
+ this.et("ActualHoverBackground", 2, b, this.nj);
22078
22079
  }
22079
22080
  },
22080
22081
  enumerable: false,
22081
22082
  configurable: true
22082
22083
  });
22083
- Object.defineProperty(DataGridColumn.prototype, "n0", {
22084
+ Object.defineProperty(DataGridColumn.prototype, "n1", {
22084
22085
  get: function () {
22085
- return this.no;
22086
+ return this.np;
22086
22087
  },
22087
22088
  set: function (a) {
22088
- var b = this.no;
22089
- this.no = a;
22090
- if (this.no != b) {
22091
- this.et("RowHoverTextColor", 10, b, this.no);
22089
+ var b = this.np;
22090
+ this.np = a;
22091
+ if (this.np != b) {
22092
+ this.et("RowHoverTextColor", 10, b, this.np);
22092
22093
  }
22093
22094
  },
22094
22095
  enumerable: false,
22095
22096
  configurable: true
22096
22097
  });
22097
- Object.defineProperty(DataGridColumn.prototype, "nt", {
22098
+ Object.defineProperty(DataGridColumn.prototype, "nu", {
22098
22099
  get: function () {
22099
- return this.nj;
22100
+ return this.nk;
22100
22101
  },
22101
22102
  set: function (a) {
22102
- var b = this.nj;
22103
- this.nj = a;
22104
- if (this.nj != b) {
22105
- this.et("ActualRowHoverTextColor", 2, b, this.nj);
22103
+ var b = this.nk;
22104
+ this.nk = a;
22105
+ if (this.nk != b) {
22106
+ this.et("ActualRowHoverTextColor", 2, b, this.nk);
22106
22107
  }
22107
22108
  },
22108
22109
  enumerable: false,
@@ -22150,45 +22151,45 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
22150
22151
  enumerable: false,
22151
22152
  configurable: true
22152
22153
  });
22153
- Object.defineProperty(DataGridColumn.prototype, "jo", {
22154
+ Object.defineProperty(DataGridColumn.prototype, "jn", {
22154
22155
  get: function () {
22155
- return this.i6;
22156
+ return this.i5;
22156
22157
  },
22157
22158
  set: function (a) {
22158
- var b = this.i6;
22159
- this.i6 = a;
22160
- if (this.i6 != b) {
22161
- this.et("IsFromMarkup", 10, b, this.i6);
22159
+ var b = this.i5;
22160
+ this.i5 = a;
22161
+ if (this.i5 != b) {
22162
+ this.et("IsFromMarkup", 10, b, this.i5);
22162
22163
  }
22163
22164
  },
22164
22165
  enumerable: false,
22165
22166
  configurable: true
22166
22167
  });
22167
- Object.defineProperty(DataGridColumn.prototype, "ji", {
22168
+ Object.defineProperty(DataGridColumn.prototype, "jh", {
22168
22169
  get: function () {
22169
- return this.i0;
22170
+ return this.iz;
22170
22171
  },
22171
22172
  set: function (a) {
22172
- var b = this.i0;
22173
+ var b = this.iz;
22173
22174
  if (a) {
22174
- this.jr = true;
22175
+ this.jq = true;
22175
22176
  }
22176
- this.i0 = a;
22177
- if (this.i0 != b) {
22178
- this.et("IsAutoGenerated", 10, b, this.i0);
22177
+ this.iz = a;
22178
+ if (this.iz != b) {
22179
+ this.et("IsAutoGenerated", 10, b, this.iz);
22179
22180
  }
22180
22181
  },
22181
22182
  enumerable: false,
22182
22183
  configurable: true
22183
22184
  });
22184
- Object.defineProperty(DataGridColumn.prototype, "jr", {
22185
+ Object.defineProperty(DataGridColumn.prototype, "jq", {
22185
22186
  get: function () {
22186
- return this.i9;
22187
+ return this.i8;
22187
22188
  },
22188
22189
  set: function (a) {
22189
22190
  var self_ = this;
22190
22191
  var value_ = a;
22191
- this.i9 = value_;
22192
+ this.i8 = value_;
22192
22193
  self_.___mustPassByValue = true;
22193
22194
  },
22194
22195
  enumerable: false,
@@ -22253,57 +22254,57 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
22253
22254
  enumerable: false,
22254
22255
  configurable: true
22255
22256
  });
22256
- Object.defineProperty(DataGridColumn.prototype, "jn", {
22257
+ Object.defineProperty(DataGridColumn.prototype, "jm", {
22257
22258
  get: function () {
22258
- return this.i5;
22259
+ return this.i4;
22259
22260
  },
22260
22261
  set: function (a) {
22261
- var b = this.i5;
22262
- this.i5 = a;
22263
- if (this.i5 != b) {
22264
- this.et("IsFilteringEnabled", 10, b, this.i5);
22262
+ var b = this.i4;
22263
+ this.i4 = a;
22264
+ if (this.i4 != b) {
22265
+ this.et("IsFilteringEnabled", 10, b, this.i4);
22265
22266
  }
22266
22267
  },
22267
22268
  enumerable: false,
22268
22269
  configurable: true
22269
22270
  });
22270
- Object.defineProperty(DataGridColumn.prototype, "jq", {
22271
+ Object.defineProperty(DataGridColumn.prototype, "jp", {
22271
22272
  get: function () {
22272
- return this.i8;
22273
+ return this.i7;
22273
22274
  },
22274
22275
  set: function (a) {
22275
- var b = this.i8;
22276
- this.i8 = a;
22277
- if (this.i8 != b) {
22278
- this.et("IsResizingEnabled", 10, b, this.i8);
22276
+ var b = this.i7;
22277
+ this.i7 = a;
22278
+ if (this.i7 != b) {
22279
+ this.et("IsResizingEnabled", 10, b, this.i7);
22279
22280
  }
22280
22281
  },
22281
22282
  enumerable: false,
22282
22283
  configurable: true
22283
22284
  });
22284
- Object.defineProperty(DataGridColumn.prototype, "jp", {
22285
+ Object.defineProperty(DataGridColumn.prototype, "jo", {
22285
22286
  get: function () {
22286
- return this.i7;
22287
+ return this.i6;
22287
22288
  },
22288
22289
  set: function (a) {
22289
- var b = this.i7;
22290
- this.i7 = a;
22291
- if (this.i7 != b) {
22292
- this.et("IsHidden", 10, b, this.i7);
22290
+ var b = this.i6;
22291
+ this.i6 = a;
22292
+ if (this.i6 != b) {
22293
+ this.et("IsHidden", 10, b, this.i6);
22293
22294
  }
22294
22295
  },
22295
22296
  enumerable: false,
22296
22297
  configurable: true
22297
22298
  });
22298
- Object.defineProperty(DataGridColumn.prototype, "jt", {
22299
+ Object.defineProperty(DataGridColumn.prototype, "js", {
22299
22300
  get: function () {
22300
- return this.ja;
22301
+ return this.i9;
22301
22302
  },
22302
22303
  set: function (a) {
22303
- var b = this.ja;
22304
- this.ja = a;
22305
- if (this.ja != b) {
22306
- this.et("ShouldRemoveWhenHidden", 10, b, this.ja);
22304
+ var b = this.i9;
22305
+ this.i9 = a;
22306
+ if (this.i9 != b) {
22307
+ this.et("ShouldRemoveWhenHidden", 10, b, this.i9);
22307
22308
  }
22308
22309
  },
22309
22310
  enumerable: false,
@@ -22337,26 +22338,26 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
22337
22338
  enumerable: false,
22338
22339
  configurable: true
22339
22340
  });
22340
- Object.defineProperty(DataGridColumn.prototype, "jh", {
22341
+ Object.defineProperty(DataGridColumn.prototype, "jg", {
22341
22342
  get: function () {
22342
- return this.iz;
22343
+ return this.iy;
22343
22344
  },
22344
22345
  set: function (a) {
22345
- var b = this.iz;
22346
- this.iz = a;
22347
- if (this.iz != b) {
22348
- this.et("InternalShouldRemoveWhenHidden", 10, b, this.iz);
22346
+ var b = this.iy;
22347
+ this.iy = a;
22348
+ if (this.iy != b) {
22349
+ this.et("InternalShouldRemoveWhenHidden", 10, b, this.iy);
22349
22350
  }
22350
22351
  },
22351
22352
  enumerable: false,
22352
22353
  configurable: true
22353
22354
  });
22354
- Object.defineProperty(DataGridColumn.prototype, "je", {
22355
+ Object.defineProperty(DataGridColumn.prototype, "jd", {
22355
22356
  get: function () {
22356
- if (this.iz) {
22357
+ if (this.iy) {
22357
22358
  return true;
22358
22359
  }
22359
- return this.ja;
22360
+ return this.i9;
22360
22361
  },
22361
22362
  enumerable: false,
22362
22363
  configurable: true
@@ -22389,29 +22390,29 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
22389
22390
  enumerable: false,
22390
22391
  configurable: true
22391
22392
  });
22392
- Object.defineProperty(DataGridColumn.prototype, "nq", {
22393
+ Object.defineProperty(DataGridColumn.prototype, "nr", {
22393
22394
  get: function () {
22394
- return this.ng;
22395
+ return this.nh;
22395
22396
  },
22396
22397
  set: function (a) {
22397
- var b = this.ng;
22398
- this.ng = a;
22399
- if (this.ng != b) {
22400
- this.et("ActualColumnOptionsIconColor", 2, b, this.ng);
22398
+ var b = this.nh;
22399
+ this.nh = a;
22400
+ if (this.nh != b) {
22401
+ this.et("ActualColumnOptionsIconColor", 2, b, this.nh);
22401
22402
  }
22402
22403
  },
22403
22404
  enumerable: false,
22404
22405
  configurable: true
22405
22406
  });
22406
- Object.defineProperty(DataGridColumn.prototype, "nv", {
22407
+ Object.defineProperty(DataGridColumn.prototype, "nw", {
22407
22408
  get: function () {
22408
- return this.nl;
22409
+ return this.nm;
22409
22410
  },
22410
22411
  set: function (a) {
22411
- var b = this.nl;
22412
- this.nl = a;
22413
- if (this.nl != b) {
22414
- this.et("ColumnOptionsIconColor", 10, b, this.nl);
22412
+ var b = this.nm;
22413
+ this.nm = a;
22414
+ if (this.nm != b) {
22415
+ this.et("ColumnOptionsIconColor", 10, b, this.nm);
22415
22416
  }
22416
22417
  },
22417
22418
  enumerable: false,
@@ -22445,127 +22446,127 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
22445
22446
  enumerable: false,
22446
22447
  configurable: true
22447
22448
  });
22448
- Object.defineProperty(DataGridColumn.prototype, "jb", {
22449
+ Object.defineProperty(DataGridColumn.prototype, "ja", {
22449
22450
  get: function () {
22450
- return this.iv;
22451
+ return this.iu;
22451
22452
  },
22452
22453
  set: function (a) {
22453
- var b = this.iv;
22454
- this.iv = a;
22455
- if (this.iv != b) {
22456
- this.et("ActualIsColumnOptionsEnabled", 5, b, this.iv);
22454
+ var b = this.iu;
22455
+ this.iu = a;
22456
+ if (this.iu != b) {
22457
+ this.et("ActualIsColumnOptionsEnabled", 5, b, this.iu);
22457
22458
  }
22458
22459
  },
22459
22460
  enumerable: false,
22460
22461
  configurable: true
22461
22462
  });
22462
- Object.defineProperty(DataGridColumn.prototype, "jj", {
22463
+ Object.defineProperty(DataGridColumn.prototype, "ji", {
22463
22464
  get: function () {
22464
- return this.i1;
22465
+ return this.i0;
22465
22466
  },
22466
22467
  set: function (a) {
22467
- var b = this.i1;
22468
- this.i1 = a;
22469
- if (this.i1 != b) {
22470
- this.et("IsColumnOptionsEnabled", 10, b, this.i1);
22468
+ var b = this.i0;
22469
+ this.i0 = a;
22470
+ if (this.i0 != b) {
22471
+ this.et("IsColumnOptionsEnabled", 10, b, this.i0);
22471
22472
  }
22472
22473
  },
22473
22474
  enumerable: false,
22474
22475
  configurable: true
22475
22476
  });
22476
- Object.defineProperty(DataGridColumn.prototype, "jd", {
22477
+ Object.defineProperty(DataGridColumn.prototype, "jc", {
22477
22478
  get: function () {
22478
- return this.ix;
22479
+ return this.iw;
22479
22480
  },
22480
22481
  set: function (a) {
22481
- var b = this.ix;
22482
- this.ix = a;
22483
- if (this.ix != b) {
22484
- this.et("ActualIsColumnOptionsSummariesEnabled", 5, b, this.ix);
22482
+ var b = this.iw;
22483
+ this.iw = a;
22484
+ if (this.iw != b) {
22485
+ this.et("ActualIsColumnOptionsSummariesEnabled", 5, b, this.iw);
22485
22486
  }
22486
22487
  },
22487
22488
  enumerable: false,
22488
22489
  configurable: true
22489
22490
  });
22490
- Object.defineProperty(DataGridColumn.prototype, "jl", {
22491
+ Object.defineProperty(DataGridColumn.prototype, "jk", {
22491
22492
  get: function () {
22492
- return this.i3;
22493
+ return this.i2;
22493
22494
  },
22494
22495
  set: function (a) {
22495
- var b = this.i3;
22496
- this.i3 = a;
22497
- if (b != this.i3) {
22498
- this.et("IsColumnOptionsSummariesEnabled", 10, b, this.i3);
22496
+ var b = this.i2;
22497
+ this.i2 = a;
22498
+ if (b != this.i2) {
22499
+ this.et("IsColumnOptionsSummariesEnabled", 10, b, this.i2);
22499
22500
  }
22500
22501
  },
22501
22502
  enumerable: false,
22502
22503
  configurable: true
22503
22504
  });
22504
- Object.defineProperty(DataGridColumn.prototype, "jc", {
22505
+ Object.defineProperty(DataGridColumn.prototype, "jb", {
22505
22506
  get: function () {
22506
- return this.iw;
22507
+ return this.iv;
22507
22508
  },
22508
22509
  set: function (a) {
22509
- var b = this.iw;
22510
- this.iw = a;
22511
- if (this.iw != b) {
22512
- this.et("ActualIsColumnOptionsGroupingEnabled", 5, b, this.iw);
22510
+ var b = this.iv;
22511
+ this.iv = a;
22512
+ if (this.iv != b) {
22513
+ this.et("ActualIsColumnOptionsGroupingEnabled", 5, b, this.iv);
22513
22514
  }
22514
22515
  },
22515
22516
  enumerable: false,
22516
22517
  configurable: true
22517
22518
  });
22518
- Object.defineProperty(DataGridColumn.prototype, "jk", {
22519
+ Object.defineProperty(DataGridColumn.prototype, "jj", {
22519
22520
  get: function () {
22520
- return this.i2;
22521
+ return this.i1;
22521
22522
  },
22522
22523
  set: function (a) {
22523
- var b = this.i2;
22524
- this.i2 = a;
22525
- if (b != this.i2) {
22526
- this.et("IsColumnOptionsGroupingEnabled", 10, b, this.i2);
22524
+ var b = this.i1;
22525
+ this.i1 = a;
22526
+ if (b != this.i1) {
22527
+ this.et("IsColumnOptionsGroupingEnabled", 10, b, this.i1);
22527
22528
  }
22528
22529
  },
22529
22530
  enumerable: false,
22530
22531
  configurable: true
22531
22532
  });
22532
- Object.defineProperty(DataGridColumn.prototype, "jm", {
22533
+ Object.defineProperty(DataGridColumn.prototype, "jl", {
22533
22534
  get: function () {
22534
- return this.i4;
22535
+ return this.i3;
22535
22536
  },
22536
22537
  set: function (a) {
22537
- var b = this.i4;
22538
- this.i4 = a;
22539
- if (this.i4 != b) {
22540
- this.et("IsEditable", 10, b, this.i4);
22538
+ var b = this.i3;
22539
+ this.i3 = a;
22540
+ if (this.i3 != b) {
22541
+ this.et("IsEditable", 10, b, this.i3);
22541
22542
  }
22542
22543
  },
22543
22544
  enumerable: false,
22544
22545
  configurable: true
22545
22546
  });
22546
- Object.defineProperty(DataGridColumn.prototype, "nw", {
22547
+ Object.defineProperty(DataGridColumn.prototype, "nx", {
22547
22548
  get: function () {
22548
- return this.nm;
22549
+ return this.nn;
22549
22550
  },
22550
22551
  set: function (a) {
22551
- var b = this.nm;
22552
- this.nm = a;
22553
- if (this.nm != b) {
22554
- this.et("DeletedTextColor", 10, b, this.nm);
22552
+ var b = this.nn;
22553
+ this.nn = a;
22554
+ if (this.nn != b) {
22555
+ this.et("DeletedTextColor", 10, b, this.nn);
22555
22556
  }
22556
22557
  },
22557
22558
  enumerable: false,
22558
22559
  configurable: true
22559
22560
  });
22560
- Object.defineProperty(DataGridColumn.prototype, "nr", {
22561
+ Object.defineProperty(DataGridColumn.prototype, "ns", {
22561
22562
  get: function () {
22562
- return this.nh;
22563
+ return this.ni;
22563
22564
  },
22564
22565
  set: function (a) {
22565
- var b = this.nh;
22566
- this.nh = a;
22567
- if (this.nh != b) {
22568
- this.et("ActualDeletedTextColor", 2, b, this.nh);
22566
+ var b = this.ni;
22567
+ this.ni = a;
22568
+ if (this.ni != b) {
22569
+ this.et("ActualDeletedTextColor", 2, b, this.ni);
22569
22570
  }
22570
22571
  },
22571
22572
  enumerable: false,
@@ -22601,27 +22602,27 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
22601
22602
  });
22602
22603
  Object.defineProperty(DataGridColumn.prototype, "textEditStyle", {
22603
22604
  get: function () {
22604
- return this.is;
22605
+ return this.ir;
22605
22606
  },
22606
22607
  set: function (a) {
22607
- var b = this.is;
22608
- this.is = a;
22609
- if (this.is != b) {
22610
- this.et("EditFontInfo", 10, b, this.is);
22608
+ var b = this.ir;
22609
+ this.ir = a;
22610
+ if (this.ir != b) {
22611
+ this.et("EditFontInfo", 10, b, this.ir);
22611
22612
  }
22612
22613
  },
22613
22614
  enumerable: false,
22614
22615
  configurable: true
22615
22616
  });
22616
- Object.defineProperty(DataGridColumn.prototype, "it", {
22617
+ Object.defineProperty(DataGridColumn.prototype, "is", {
22617
22618
  get: function () {
22618
- return this.ir;
22619
+ return this.iq;
22619
22620
  },
22620
22621
  set: function (a) {
22621
- var b = this.ir;
22622
- this.ir = a;
22623
- if (this.ir != b) {
22624
- this.et("ActualEditFontInfo", 3, b, this.ir);
22622
+ var b = this.iq;
22623
+ this.iq = a;
22624
+ if (this.iq != b) {
22625
+ this.et("ActualEditFontInfo", 3, b, this.iq);
22625
22626
  }
22626
22627
  },
22627
22628
  enumerable: false,
@@ -22840,7 +22841,7 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
22840
22841
  }
22841
22842
  return this.id == 0 ? this.grid.mergedCellEvaluationCriteria : this.id;
22842
22843
  };
22843
- DataGridColumn.prototype.js = function () {
22844
+ DataGridColumn.prototype.jr = function () {
22844
22845
  var a = this.ig();
22845
22846
  if (a == 3 && this.hr != 0) {
22846
22847
  return true;
@@ -22888,21 +22889,21 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
22888
22889
  };
22889
22890
  DataGridColumn.prototype.el = function (a, b, c, d) {
22890
22891
  _super.prototype.el.call(this, a, b, c, d);
22891
- a.l9 = this.nu;
22892
- a.l5 = this.ns;
22893
- a.l6 = this.nt;
22892
+ a.l9 = this.nv;
22893
+ a.l5 = this.nt;
22894
+ a.l6 = this.nu;
22894
22895
  a.gm = this.kk;
22895
22896
  a.gq = this.km;
22896
22897
  a.go = this.kl;
22897
22898
  a.gk = this.kj;
22898
22899
  if (this.grid != null) {
22899
- if (this.it != null) {
22900
- this.it.w(this.grid.externalGrid.renderer);
22900
+ if (this.is != null) {
22901
+ this.is.w(this.grid.externalGrid.renderer);
22901
22902
  }
22902
22903
  }
22903
- a.af = this.it;
22904
+ a.af = this.is;
22904
22905
  a.ck = this.jy;
22905
- a.l1 = this.nr;
22906
+ a.l1 = this.ns;
22906
22907
  if (a.l.af == 4) {
22907
22908
  a.be = false;
22908
22909
  a.i = this.g8;
@@ -22922,17 +22923,17 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
22922
22923
  var e = c;
22923
22924
  var f = d;
22924
22925
  if (e != null) {
22925
- e.definitionPropertyUpdated = delegateRemove(e.definitionPropertyUpdated, runOn(this, this.my));
22926
+ e.definitionPropertyUpdated = delegateRemove(e.definitionPropertyUpdated, runOn(this, this.mz));
22926
22927
  }
22927
22928
  if (f != null) {
22928
- f.definitionPropertyUpdated = delegateCombine(f.definitionPropertyUpdated, runOn(this, this.my));
22929
+ f.definitionPropertyUpdated = delegateCombine(f.definitionPropertyUpdated, runOn(this, this.mz));
22929
22930
  if (f.g == 4) {
22930
22931
  f.e = this.g5();
22931
22932
  }
22932
22933
  if (f.l == 4) {
22933
22934
  f.j = this.hb();
22934
22935
  }
22935
- if (!this.iy) {
22936
+ if (!this.ix) {
22936
22937
  f.ey();
22937
22938
  }
22938
22939
  }
@@ -22941,7 +22942,7 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
22941
22942
  this.k3 = d;
22942
22943
  break;
22943
22944
  case "SelectedBackground":
22944
- this.nf();
22945
+ this.ng();
22945
22946
  break;
22946
22947
  case "ActualHorizontalAlignment":
22947
22948
  if (this.header != null) {
@@ -22958,7 +22959,7 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
22958
22959
  }
22959
22960
  break;
22960
22961
  case "SortDirection":
22961
- this.nc(this, "SortDirection", 11, c, d);
22962
+ this.nd(this, "SortDirection", 11, c, d);
22962
22963
  break;
22963
22964
  case "ActualLastStickyRowBackground":
22964
22965
  if (c != null && this.ga == null) {
@@ -22966,43 +22967,43 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
22966
22967
  }
22967
22968
  break;
22968
22969
  case "ColumnOptionsIconAlignment":
22969
- this.m3();
22970
+ this.m4();
22970
22971
  break;
22971
22972
  case "ColumnOptionsIconColor":
22972
- this.m7();
22973
+ this.m8();
22973
22974
  break;
22974
22975
  case "ColumnOptionsIconBehavior":
22975
- this.m6();
22976
+ this.m7();
22976
22977
  break;
22977
22978
  case "IsColumnOptionsEnabled":
22978
- this.m4();
22979
+ this.m5();
22979
22980
  break;
22980
22981
  case "IsColumnOptionsSummariesEnabled":
22981
- this.m8();
22982
+ this.m9();
22982
22983
  break;
22983
22984
  case "IsColumnOptionsGroupingEnabled":
22984
- this.m5();
22985
+ this.m6();
22985
22986
  break;
22986
22987
  case "DeletedTextColor":
22987
- this.m9();
22988
+ this.na();
22988
22989
  break;
22989
22990
  case "EditOpacity":
22990
- this.nb();
22991
+ this.nc();
22991
22992
  break;
22992
22993
  case "EditFontInfo":
22993
- this.na();
22994
+ this.nb();
22994
22995
  break;
22995
22996
  case "RowHoverBackground":
22996
- this.nd();
22997
+ this.ne();
22997
22998
  break;
22998
22999
  case "RowHoverTextColor":
22999
- this.ne();
23000
+ this.nf();
23000
23001
  break;
23001
23002
  case "MergedCellVerticalAlignment":
23002
23003
  this.g8 = this.g9();
23003
23004
  break;
23004
23005
  }
23005
- this.m2(a, b, c, d);
23006
+ this.m3(a, b, c, d);
23006
23007
  };
23007
23008
  DataGridColumn.prototype.hb = function () {
23008
23009
  return this.j;
@@ -23019,13 +23020,13 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
23019
23020
  }
23020
23021
  return 1;
23021
23022
  };
23022
- DataGridColumn.prototype.nc = function (a, b, c, d, e) {
23023
+ DataGridColumn.prototype.nd = function (a, b, c, d, e) {
23023
23024
  if (this.columnHeaderCellsPropertyUpdating != null) {
23024
23025
  this.columnHeaderCellsPropertyUpdating(this, b, c, d, e);
23025
23026
  }
23026
23027
  };
23027
- DataGridColumn.prototype.my = function (a, b) {
23028
- this.nc(this, b.propertyName, b.animationType, b.oldValue, b.newValue);
23028
+ DataGridColumn.prototype.mz = function (a, b) {
23029
+ this.nd(this, b.propertyName, b.animationType, b.oldValue, b.newValue);
23029
23030
  };
23030
23031
  DataGridColumn.prototype.eq = function (a, b) {
23031
23032
  if (this.hx != null) {
@@ -23034,8 +23035,8 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
23034
23035
  if (this.header != null) {
23035
23036
  this.header.grid = b;
23036
23037
  }
23037
- this.nf();
23038
- this.nf();
23038
+ this.ng();
23039
+ this.ng();
23039
23040
  this.e5();
23040
23041
  this.fh();
23041
23042
  this.e6();
@@ -23047,23 +23048,23 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
23047
23048
  this.fd();
23048
23049
  this.fe();
23049
23050
  this.ff();
23051
+ this.nc();
23050
23052
  this.nb();
23051
23053
  this.na();
23052
- this.m9();
23053
- this.m3();
23054
- this.m7();
23055
- this.m6();
23056
23054
  this.m4();
23057
23055
  this.m8();
23056
+ this.m7();
23058
23057
  this.m5();
23059
- this.nd();
23058
+ this.m9();
23059
+ this.m6();
23060
23060
  this.ne();
23061
+ this.nf();
23061
23062
  this.g8 = this.g9();
23062
23063
  };
23063
23064
  DataGridColumn.prototype.es = function (a, b) {
23064
23065
  switch (b.propertyName) {
23065
23066
  case "CellSelectedBackground":
23066
- this.nf();
23067
+ this.ng();
23067
23068
  break;
23068
23069
  case "CellBackground":
23069
23070
  this.e5();
@@ -23087,77 +23088,77 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
23087
23088
  this.ff();
23088
23089
  break;
23089
23090
  case "ColumnOptionsIconAlignment":
23090
- this.m3();
23091
+ this.m4();
23091
23092
  break;
23092
23093
  case "ColumnOptionsIconColor":
23093
- this.m7();
23094
+ this.m8();
23094
23095
  break;
23095
23096
  case "ColumnOptionsIconBehavior":
23096
- this.m6();
23097
+ this.m7();
23097
23098
  break;
23098
23099
  case "IsColumnOptionsEnabled":
23099
- this.m4();
23100
+ this.m5();
23100
23101
  break;
23101
23102
  case "IsColumnOptionsSummariesEnabled":
23102
- this.m8();
23103
+ this.m9();
23103
23104
  break;
23104
23105
  case "IsColumnOptionsGroupingEnabled":
23105
- this.m5();
23106
+ this.m6();
23106
23107
  break;
23107
23108
  case "DeletedTextColor":
23108
- this.m9();
23109
+ this.na();
23109
23110
  break;
23110
23111
  case "EditOpacity":
23111
- this.nb();
23112
+ this.nc();
23112
23113
  break;
23113
23114
  case "EditTextStyle":
23114
- this.na();
23115
+ this.nb();
23115
23116
  break;
23116
23117
  case "RowHoverBackground":
23117
- this.nd();
23118
+ this.ne();
23118
23119
  break;
23119
23120
  case "RowHoverTextColor":
23120
- this.ne();
23121
+ this.nf();
23121
23122
  break;
23122
23123
  case "MergedCellVerticalAlignment":
23123
23124
  this.g8 = this.g9();
23124
23125
  break;
23125
23126
  }
23126
23127
  };
23127
- DataGridColumn.prototype.nd = function () {
23128
- if (this.nz == null) {
23128
+ DataGridColumn.prototype.ne = function () {
23129
+ if (this.n0 == null) {
23129
23130
  if (this.grid != null && this.grid.rowHoverBackground != null) {
23130
- this.ns = this.grid.rowHoverBackground;
23131
+ this.nt = this.grid.rowHoverBackground;
23131
23132
  return;
23132
23133
  }
23133
- this.ns = this.nx();
23134
+ this.nt = this.ny();
23134
23135
  }
23135
23136
  else {
23136
- this.ns = this.nz;
23137
+ this.nt = this.n0;
23137
23138
  }
23138
23139
  };
23139
- DataGridColumn.prototype.ne = function () {
23140
- if (this.n0 == null) {
23140
+ DataGridColumn.prototype.nf = function () {
23141
+ if (this.n1 == null) {
23141
23142
  if (this.grid != null && this.grid.rowHoverTextColor != null) {
23142
- this.nt = this.grid.rowHoverTextColor;
23143
+ this.nu = this.grid.rowHoverTextColor;
23143
23144
  return;
23144
23145
  }
23145
- this.nt = null;
23146
+ this.nu = null;
23146
23147
  }
23147
23148
  else {
23148
- this.nt = this.n0;
23149
+ this.nu = this.n1;
23149
23150
  }
23150
23151
  };
23151
- DataGridColumn.prototype.nf = function () {
23152
- if (this.n1 == null) {
23152
+ DataGridColumn.prototype.ng = function () {
23153
+ if (this.n2 == null) {
23153
23154
  if (this.grid != null && this.grid.cellSelectedBackground != null) {
23154
- this.nu = this.grid.cellSelectedBackground;
23155
+ this.nv = this.grid.cellSelectedBackground;
23155
23156
  return;
23156
23157
  }
23157
- this.nu = this.ny();
23158
+ this.nv = this.nz();
23158
23159
  }
23159
23160
  else {
23160
- this.nu = this.n1;
23161
+ this.nv = this.n2;
23161
23162
  }
23162
23163
  };
23163
23164
  DataGridColumn.prototype.e5 = function () {
@@ -23209,19 +23210,19 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
23209
23210
  this.bf = this.bm;
23210
23211
  }
23211
23212
  };
23212
- DataGridColumn.prototype.m9 = function () {
23213
- if (this.nw == null) {
23213
+ DataGridColumn.prototype.na = function () {
23214
+ if (this.nx == null) {
23214
23215
  if (this.grid != null && this.grid.deletedTextColor != null) {
23215
- this.nr = this.grid.deletedTextColor;
23216
+ this.ns = this.grid.deletedTextColor;
23216
23217
  return;
23217
23218
  }
23218
- this.nr = GridStyleRepository.bs;
23219
+ this.ns = GridStyleRepository.bs;
23219
23220
  }
23220
23221
  else {
23221
- this.nr = this.nw;
23222
+ this.ns = this.nx;
23222
23223
  }
23223
23224
  };
23224
- DataGridColumn.prototype.nb = function () {
23225
+ DataGridColumn.prototype.nc = function () {
23225
23226
  if (isNaN_(this.jz)) {
23226
23227
  if (this.grid != null && !isNaN_(this.grid.editOpacity)) {
23227
23228
  this.jy = this.grid.editOpacity;
@@ -23233,16 +23234,16 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
23233
23234
  this.jy = this.jz;
23234
23235
  }
23235
23236
  };
23236
- DataGridColumn.prototype.na = function () {
23237
+ DataGridColumn.prototype.nb = function () {
23237
23238
  if (this.textEditStyle == null) {
23238
23239
  if (this.grid != null && this.grid.editTextStyle != null) {
23239
- this.it = this.grid.editTextStyle;
23240
+ this.is = this.grid.editTextStyle;
23240
23241
  return;
23241
23242
  }
23242
- this.it = GridStyleRepository.m;
23243
+ this.is = GridStyleRepository.m;
23243
23244
  }
23244
23245
  else {
23245
- this.it = this.textEditStyle;
23246
+ this.is = this.textEditStyle;
23246
23247
  }
23247
23248
  };
23248
23249
  DataGridColumn.prototype.fe = function () {
@@ -23281,7 +23282,7 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
23281
23282
  this.ga = this.gu;
23282
23283
  }
23283
23284
  };
23284
- DataGridColumn.prototype.m3 = function () {
23285
+ DataGridColumn.prototype.m4 = function () {
23285
23286
  if (this.hj == 0) {
23286
23287
  if (this.grid != null && this.grid.columnOptionsIconAlignment != 0) {
23287
23288
  this.hi = this.grid.columnOptionsIconAlignment;
@@ -23293,19 +23294,19 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
23293
23294
  this.hi = this.hj;
23294
23295
  }
23295
23296
  };
23296
- DataGridColumn.prototype.m7 = function () {
23297
- if (this.nv == null) {
23297
+ DataGridColumn.prototype.m8 = function () {
23298
+ if (this.nw == null) {
23298
23299
  if (this.grid != null && this.grid.columnOptionsIconColor != null) {
23299
- this.nq = this.grid.columnOptionsIconColor;
23300
+ this.nr = this.grid.columnOptionsIconColor;
23300
23301
  return;
23301
23302
  }
23302
- this.nq = GridStyleRepository.a5;
23303
+ this.nr = GridStyleRepository.a5;
23303
23304
  }
23304
23305
  else {
23305
- this.nq = this.nv;
23306
+ this.nr = this.nw;
23306
23307
  }
23307
23308
  };
23308
- DataGridColumn.prototype.m6 = function () {
23309
+ DataGridColumn.prototype.m7 = function () {
23309
23310
  if (this.hn == 0) {
23310
23311
  if (this.grid != null && this.grid.columnOptionsIconBehavior != 0) {
23311
23312
  this.hm = this.grid.columnOptionsIconBehavior;
@@ -23317,31 +23318,31 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
23317
23318
  this.hm = this.hn;
23318
23319
  }
23319
23320
  };
23320
- DataGridColumn.prototype.m4 = function () {
23321
+ DataGridColumn.prototype.m5 = function () {
23321
23322
  if (this.grid != null) {
23322
- this.jb = this.grid.isColumnOptionsEnabled && this.jj;
23323
+ this.ja = this.grid.isColumnOptionsEnabled && this.ji;
23323
23324
  }
23324
23325
  else {
23325
- this.jb = true;
23326
+ this.ja = true;
23326
23327
  }
23327
23328
  };
23328
- DataGridColumn.prototype.m8 = function () {
23329
+ DataGridColumn.prototype.m9 = function () {
23329
23330
  if (this.grid != null) {
23330
- this.jd = this.grid.isColumnOptionsSummariesEnabled && this.jl;
23331
+ this.jc = this.grid.isColumnOptionsSummariesEnabled && this.jk;
23331
23332
  }
23332
23333
  else {
23333
- this.jd = false;
23334
+ this.jc = false;
23334
23335
  }
23335
23336
  };
23336
- DataGridColumn.prototype.m5 = function () {
23337
+ DataGridColumn.prototype.m6 = function () {
23337
23338
  if (this.grid != null) {
23338
- this.jc = this.grid.isColumnOptionsGroupingEnabled && this.jk;
23339
+ this.jb = this.grid.isColumnOptionsGroupingEnabled && this.jj;
23339
23340
  }
23340
23341
  else {
23341
- this.jc = false;
23342
+ this.jb = false;
23342
23343
  }
23343
23344
  };
23344
- DataGridColumn.prototype.m2 = function (a, b, c, d) {
23345
+ DataGridColumn.prototype.m3 = function (a, b, c, d) {
23345
23346
  if (this.columnCellsPropertyUpdating != null) {
23346
23347
  this.columnCellsPropertyUpdating(this, a, b, c, d);
23347
23348
  }
@@ -23367,15 +23368,15 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
23367
23368
  DataGridColumn.prototype.lt = function () {
23368
23369
  return this.mf != null && this.mf != "" ? this.mf : this.lo;
23369
23370
  };
23370
- DataGridColumn.prototype.m1 = function (a, b, c) {
23371
- if (this.ip == null) {
23372
- this.ip = new FastIterationDictionary$2(String_$type, Base.$, 0);
23371
+ DataGridColumn.prototype.m2 = function (a, b, c) {
23372
+ if (this.io == null) {
23373
+ this.io = new FastIterationDictionary$2(String_$type, Base.$, 0);
23373
23374
  }
23374
23375
  var d = null;
23375
- if (this.ip.d(a)) {
23376
- d = this.ip.item(a);
23376
+ if (this.io.d(a)) {
23377
+ d = this.io.item(a);
23377
23378
  }
23378
- this.ip.item(a, c);
23379
+ this.io.item(a, c);
23379
23380
  var e = false;
23380
23381
  if (d == null && c != null) {
23381
23382
  e = true;
@@ -23386,46 +23387,46 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
23386
23387
  }
23387
23388
  }
23388
23389
  if (e) {
23389
- this.nc(this, a, b, d, c);
23390
+ this.nd(this, a, b, d, c);
23390
23391
  }
23391
23392
  };
23392
- DataGridColumn.prototype.jg = function () {
23393
- if (this.ip == null) {
23393
+ DataGridColumn.prototype.jf = function () {
23394
+ if (this.io == null) {
23394
23395
  return false;
23395
23396
  }
23396
- return this.ip.r > 0;
23397
+ return this.io.r > 0;
23397
23398
  };
23398
- Object.defineProperty(DataGridColumn.prototype, "iq", {
23399
+ Object.defineProperty(DataGridColumn.prototype, "ip", {
23399
23400
  get: function () {
23400
- return this.ip;
23401
+ return this.io;
23401
23402
  },
23402
23403
  enumerable: false,
23403
23404
  configurable: true
23404
23405
  });
23405
- DataGridColumn.prototype.jf = function (a) {
23406
- if (this.ip == null) {
23406
+ DataGridColumn.prototype.je = function (a) {
23407
+ if (this.io == null) {
23407
23408
  return false;
23408
23409
  }
23409
- return this.ip.d(a);
23410
+ return this.io.d(a);
23410
23411
  };
23411
- DataGridColumn.prototype.m0 = function (a) {
23412
- if (this.ip == null) {
23412
+ DataGridColumn.prototype.m1 = function (a) {
23413
+ if (this.io == null) {
23413
23414
  return;
23414
23415
  }
23415
- if (this.ip.d(a)) {
23416
- this.ip.f(a);
23416
+ if (this.io.d(a)) {
23417
+ this.io.f(a);
23417
23418
  }
23418
23419
  };
23419
23420
  DataGridColumn.prototype.kr = function (a) {
23420
- if (this.ip == null) {
23421
+ if (this.io == null) {
23421
23422
  return null;
23422
23423
  }
23423
- if (this.ip.d(a)) {
23424
- return this.ip.item(a);
23424
+ if (this.io.d(a)) {
23425
+ return this.io.item(a);
23425
23426
  }
23426
23427
  return null;
23427
23428
  };
23428
- DataGridColumn.prototype.mz = function (a) {
23429
+ DataGridColumn.prototype.m0 = function (a) {
23429
23430
  if (this.ju == null) {
23430
23431
  this.ju = new List$1(LayoutAction_$type, 0);
23431
23432
  }
@@ -23580,15 +23581,68 @@ var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
23580
23581
  enumerable: false,
23581
23582
  configurable: true
23582
23583
  });
23583
- Object.defineProperty(DataGridColumn.prototype, "io", {
23584
- get: function () {
23585
- return this.im;
23586
- },
23587
- enumerable: false,
23588
- configurable: true
23589
- });
23584
+ DataGridColumn.prototype.im = function () {
23585
+ var e_23, _a;
23586
+ if (this.jt == null) {
23587
+ return null;
23588
+ }
23589
+ try {
23590
+ for (var _b = __values(fromEnum(this.jt)), _c = _b.next(); !_c.done; _c = _b.next()) {
23591
+ var a = _c.value;
23592
+ return a;
23593
+ }
23594
+ }
23595
+ catch (e_23_1) {
23596
+ e_23 = { error: e_23_1 };
23597
+ }
23598
+ finally {
23599
+ try {
23600
+ if (_c && !_c.done && (_a = _b.return))
23601
+ _a.call(_b);
23602
+ }
23603
+ finally {
23604
+ if (e_23)
23605
+ throw e_23.error;
23606
+ }
23607
+ }
23608
+ return null;
23609
+ };
23610
+ DataGridColumn.prototype.my = function (a) {
23611
+ var e_24, _a;
23612
+ if (this.jt == null) {
23613
+ return;
23614
+ }
23615
+ try {
23616
+ for (var _b = __values(fromEnum(this.jt)), _c = _b.next(); !_c.done; _c = _b.next()) {
23617
+ var b = _c.value;
23618
+ a(b);
23619
+ }
23620
+ }
23621
+ catch (e_24_1) {
23622
+ e_24 = { error: e_24_1 };
23623
+ }
23624
+ finally {
23625
+ try {
23626
+ if (_c && !_c.done && (_a = _b.return))
23627
+ _a.call(_b);
23628
+ }
23629
+ finally {
23630
+ if (e_24)
23631
+ throw e_24.error;
23632
+ }
23633
+ }
23634
+ };
23590
23635
  DataGridColumn.prototype.provideContextAccessor = function (a) {
23591
- this.im = a;
23636
+ if (this.jt == null) {
23637
+ this.jt = new HashSet$1(IToolbarContextAccessor_$type, 0);
23638
+ }
23639
+ this.jt.add_1(a);
23640
+ };
23641
+ DataGridColumn.prototype.dismissContextAccessor = function (a) {
23642
+ if (this.jt == null) {
23643
+ return;
23644
+ }
23645
+ this.jt.remove(a);
23592
23646
  };
23593
23647
  DataGridColumn.prototype.mx = function () {
23594
23648
  if (this.hx != null) {
@@ -25828,25 +25882,25 @@ var ComboBoxColumn = /** @class */ /*@__PURE__*/ (function (_super) {
25828
25882
  __extends(ComboBoxColumn, _super);
25829
25883
  function ComboBoxColumn() {
25830
25884
  var _this = _super.call(this) || this;
25831
- _this.n3 = null;
25885
+ _this.n4 = null;
25832
25886
  _this.hz = 4;
25833
25887
  return _this;
25834
25888
  }
25835
- Object.defineProperty(ComboBoxColumn.prototype, "n4", {
25889
+ Object.defineProperty(ComboBoxColumn.prototype, "n5", {
25836
25890
  get: function () {
25837
- return this.n3;
25891
+ return this.n4;
25838
25892
  },
25839
25893
  set: function (a) {
25840
- var b = this.n3;
25841
- this.n3 = a;
25842
- if (this.n3 != b) {
25843
- this.et("ActualDataSource", 10, b, this.n3);
25894
+ var b = this.n4;
25895
+ this.n4 = a;
25896
+ if (this.n4 != b) {
25897
+ this.et("ActualDataSource", 10, b, this.n4);
25844
25898
  }
25845
25899
  },
25846
25900
  enumerable: false,
25847
25901
  configurable: true
25848
25902
  });
25849
- Object.defineProperty(ComboBoxColumn.prototype, "n5", {
25903
+ Object.defineProperty(ComboBoxColumn.prototype, "n6", {
25850
25904
  get: function () {
25851
25905
  return this.kq;
25852
25906
  },
@@ -25856,7 +25910,7 @@ var ComboBoxColumn = /** @class */ /*@__PURE__*/ (function (_super) {
25856
25910
  enumerable: false,
25857
25911
  configurable: true
25858
25912
  });
25859
- Object.defineProperty(ComboBoxColumn.prototype, "n9", {
25913
+ Object.defineProperty(ComboBoxColumn.prototype, "oa", {
25860
25914
  get: function () {
25861
25915
  return this.lk;
25862
25916
  },
@@ -25866,7 +25920,7 @@ var ComboBoxColumn = /** @class */ /*@__PURE__*/ (function (_super) {
25866
25920
  enumerable: false,
25867
25921
  configurable: true
25868
25922
  });
25869
- Object.defineProperty(ComboBoxColumn.prototype, "oa", {
25923
+ Object.defineProperty(ComboBoxColumn.prototype, "ob", {
25870
25924
  get: function () {
25871
25925
  if (this.gz == null) {
25872
25926
  return null;
@@ -25879,7 +25933,7 @@ var ComboBoxColumn = /** @class */ /*@__PURE__*/ (function (_super) {
25879
25933
  enumerable: false,
25880
25934
  configurable: true
25881
25935
  });
25882
- Object.defineProperty(ComboBoxColumn.prototype, "n2", {
25936
+ Object.defineProperty(ComboBoxColumn.prototype, "n3", {
25883
25937
  get: function () {
25884
25938
  return this.gz;
25885
25939
  },
@@ -25897,14 +25951,14 @@ var ComboBoxColumn = /** @class */ /*@__PURE__*/ (function (_super) {
25897
25951
  };
25898
25952
  ComboBoxColumn.prototype.eq = function (a, b) {
25899
25953
  _super.prototype.eq.call(this, a, b);
25900
- if (this.n4 == null && this.n5 != null) {
25954
+ if (this.n5 == null && this.n6 != null) {
25901
25955
  if (b != null) {
25902
- this.n4 = b.externalGrid.createLocalDataSource(this.n5);
25956
+ this.n5 = b.externalGrid.createLocalDataSource(this.n6);
25903
25957
  }
25904
25958
  }
25905
25959
  };
25906
25960
  ComboBoxColumn.prototype.dz = function (a, b, c) {
25907
- return this.n8(b);
25961
+ return this.n9(b);
25908
25962
  };
25909
25963
  ComboBoxColumn.prototype.eo = function (a, b, c, d) {
25910
25964
  _super.prototype.eo.call(this, a, b, c, d);
@@ -25918,68 +25972,68 @@ var ComboBoxColumn = /** @class */ /*@__PURE__*/ (function (_super) {
25918
25972
  _super.prototype.ev.call(this, a, b, c, d);
25919
25973
  switch (a) {
25920
25974
  case "EditorItemsSourceInternal":
25921
- if (typeCast(IDataSource_$type, this.n5) !== null) {
25922
- this.n4 = this.n5;
25975
+ if (typeCast(IDataSource_$type, this.n6) !== null) {
25976
+ this.n5 = this.n6;
25923
25977
  }
25924
25978
  else if (this.grid != null) {
25925
- this.n4 = this.grid.externalGrid.createLocalDataSource(this.n5);
25979
+ this.n5 = this.grid.externalGrid.createLocalDataSource(this.n6);
25926
25980
  }
25927
25981
  break;
25928
25982
  case "ActualDataSource":
25929
25983
  if (c != null) {
25930
25984
  var e = c;
25931
- e.schemaChanged = delegateRemove(e.schemaChanged, runOn(this, this.ob));
25985
+ e.schemaChanged = delegateRemove(e.schemaChanged, runOn(this, this.oc));
25932
25986
  }
25933
- if (this.n4 != null) {
25934
- var f = this.n4;
25935
- f.schemaChanged = delegateCombine(f.schemaChanged, runOn(this, this.ob));
25987
+ if (this.n5 != null) {
25988
+ var f = this.n5;
25989
+ f.schemaChanged = delegateCombine(f.schemaChanged, runOn(this, this.oc));
25936
25990
  }
25937
- this.oc();
25991
+ this.od();
25938
25992
  break;
25939
25993
  case "EditorTextFieldInternal":
25940
25994
  case "EditorValueFieldInternal":
25941
- this.oc();
25995
+ this.od();
25942
25996
  break;
25943
25997
  }
25944
25998
  };
25945
- ComboBoxColumn.prototype.ob = function (a, b) {
25946
- this.oc();
25999
+ ComboBoxColumn.prototype.oc = function (a, b) {
26000
+ this.od();
25947
26001
  };
25948
- ComboBoxColumn.prototype.oc = function () {
25949
- if (this.n4 != null) {
25950
- if (this.oa != null) {
25951
- this.n4.primaryKey = this.gz;
26002
+ ComboBoxColumn.prototype.od = function () {
26003
+ if (this.n5 != null) {
26004
+ if (this.ob != null) {
26005
+ this.n5.primaryKey = this.gz;
25952
26006
  }
25953
- else if (this.n9 != null) {
25954
- this.n4.primaryKey = [this.n9];
26007
+ else if (this.oa != null) {
26008
+ this.n5.primaryKey = [this.oa];
25955
26009
  }
25956
26010
  else {
25957
- var a = this.n4.actualSchema;
26011
+ var a = this.n5.actualSchema;
25958
26012
  if (a != null && a.propertyNames.length > 0) {
25959
- this.n4.primaryKey = [a.propertyNames[0]];
26013
+ this.n5.primaryKey = [a.propertyNames[0]];
25960
26014
  }
25961
26015
  }
25962
26016
  }
25963
26017
  };
25964
- ComboBoxColumn.prototype.n7 = function (a) {
26018
+ ComboBoxColumn.prototype.n8 = function (a) {
25965
26019
  if (typeof a === 'string') {
25966
26020
  return a;
25967
26021
  }
25968
26022
  return null;
25969
26023
  };
25970
- ComboBoxColumn.prototype.n8 = function (a) {
26024
+ ComboBoxColumn.prototype.n9 = function (a) {
25971
26025
  var b = null;
25972
- if (this.n4 != null && this.n9 != null) {
25973
- var c = this.n4.indexOfKey(typeCast(Array_$type, a) !== null ? a : [a]);
26026
+ if (this.n5 != null && this.oa != null) {
26027
+ var c = this.n5.indexOfKey(typeCast(Array_$type, a) !== null ? a : [a]);
25974
26028
  if (c > -1) {
25975
- var d = this.n4.getItemPropertyAtIndex(c, this.n9);
26029
+ var d = this.n5.getItemPropertyAtIndex(c, this.oa);
25976
26030
  if (d != null) {
25977
- b = this.n7(d);
26031
+ b = this.n8(d);
25978
26032
  }
25979
26033
  }
25980
26034
  }
25981
26035
  if (b == null && a != null) {
25982
- b = this.n7(a);
26036
+ b = this.n8(a);
25983
26037
  }
25984
26038
  return b;
25985
26039
  };
@@ -25994,101 +26048,101 @@ var DateTimeColumn = /** @class */ /*@__PURE__*/ (function (_super) {
25994
26048
  __extends(DateTimeColumn, _super);
25995
26049
  function DateTimeColumn() {
25996
26050
  var _this = _super.call(this) || this;
25997
- _this.n5 = new DateTimeColumnValueFormatter();
25998
- _this.n6 = 0;
26051
+ _this.n6 = new DateTimeColumnValueFormatter();
26052
+ _this.n7 = 0;
26053
+ _this.oh = null;
25999
26054
  _this.og = null;
26000
- _this.of = null;
26001
- _this.n2 = null;
26002
- _this.oc = null;
26003
- _this.n9 = false;
26004
- _this.n4 = null;
26055
+ _this.n3 = null;
26056
+ _this.od = null;
26057
+ _this.oa = false;
26058
+ _this.n5 = null;
26005
26059
  return _this;
26006
26060
  }
26007
- Object.defineProperty(DateTimeColumn.prototype, "n7", {
26061
+ Object.defineProperty(DateTimeColumn.prototype, "n8", {
26008
26062
  get: function () {
26009
- return this.n6;
26063
+ return this.n7;
26010
26064
  },
26011
26065
  set: function (a) {
26012
- var b = this.n6;
26013
- this.n6 = a;
26014
- if (this.n6 != b) {
26015
- this.et("DateTimeFormat", 4, enumGetBox(DateTimeFormats_$type, b), enumGetBox(DateTimeFormats_$type, this.n6));
26066
+ var b = this.n7;
26067
+ this.n7 = a;
26068
+ if (this.n7 != b) {
26069
+ this.et("DateTimeFormat", 4, enumGetBox(DateTimeFormats_$type, b), enumGetBox(DateTimeFormats_$type, this.n7));
26016
26070
  }
26017
26071
  },
26018
26072
  enumerable: false,
26019
26073
  configurable: true
26020
26074
  });
26021
- Object.defineProperty(DateTimeColumn.prototype, "op", {
26075
+ Object.defineProperty(DateTimeColumn.prototype, "oq", {
26022
26076
  get: function () {
26023
- return this.og;
26077
+ return this.oh;
26024
26078
  },
26025
26079
  set: function (a) {
26026
- var b = this.og;
26027
- this.og = a;
26028
- if (this.og != b) {
26029
- this.et("FormatString", 8, b, this.og);
26080
+ var b = this.oh;
26081
+ this.oh = a;
26082
+ if (this.oh != b) {
26083
+ this.et("FormatString", 8, b, this.oh);
26030
26084
  }
26031
26085
  },
26032
26086
  enumerable: false,
26033
26087
  configurable: true
26034
26088
  });
26035
- Object.defineProperty(DateTimeColumn.prototype, "oi", {
26089
+ Object.defineProperty(DateTimeColumn.prototype, "oj", {
26036
26090
  get: function () {
26037
- return this.of;
26091
+ return this.og;
26038
26092
  },
26039
26093
  set: function (a) {
26040
- var b = this.of;
26041
- this.of = a;
26042
- if (this.of != b) {
26043
- this.et("EditorFormatString", 8, b, this.of);
26094
+ var b = this.og;
26095
+ this.og = a;
26096
+ if (this.og != b) {
26097
+ this.et("EditorFormatString", 8, b, this.og);
26044
26098
  }
26045
26099
  },
26046
26100
  enumerable: false,
26047
26101
  configurable: true
26048
26102
  });
26049
- Object.defineProperty(DateTimeColumn.prototype, "n3", {
26103
+ Object.defineProperty(DateTimeColumn.prototype, "n4", {
26050
26104
  get: function () {
26051
- return this.n2;
26105
+ return this.n3;
26052
26106
  },
26053
26107
  set: function (a) {
26054
- var b = this.n2;
26055
- this.n2 = a;
26056
- if (this.n2 != b) {
26057
- this.et("FormatSpecifiers", 9, b, this.n2);
26108
+ var b = this.n3;
26109
+ this.n3 = a;
26110
+ if (this.n3 != b) {
26111
+ this.et("FormatSpecifiers", 9, b, this.n3);
26058
26112
  }
26059
26113
  },
26060
26114
  enumerable: false,
26061
26115
  configurable: true
26062
26116
  });
26063
- Object.defineProperty(DateTimeColumn.prototype, "oe", {
26117
+ Object.defineProperty(DateTimeColumn.prototype, "of", {
26064
26118
  get: function () {
26065
- return this.oc;
26119
+ return this.od;
26066
26120
  },
26067
26121
  set: function (a) {
26068
- var b = this.oc;
26069
- this.oc = a;
26070
- if (this.oc != b) {
26071
- this.et("FormatOverride", 9, b, this.oc);
26122
+ var b = this.od;
26123
+ this.od = a;
26124
+ if (this.od != b) {
26125
+ this.et("FormatOverride", 9, b, this.od);
26072
26126
  }
26073
26127
  },
26074
26128
  enumerable: false,
26075
26129
  configurable: true
26076
26130
  });
26077
- Object.defineProperty(DateTimeColumn.prototype, "oa", {
26131
+ Object.defineProperty(DateTimeColumn.prototype, "ob", {
26078
26132
  get: function () {
26079
- return this.n9;
26133
+ return this.oa;
26080
26134
  },
26081
26135
  set: function (a) {
26082
- var b = this.n9;
26083
- this.n9 = a;
26084
- if (b != this.n9) {
26085
- this.et("ShowTodayButton", 5, b, this.n9);
26136
+ var b = this.oa;
26137
+ this.oa = a;
26138
+ if (b != this.oa) {
26139
+ this.et("ShowTodayButton", 5, b, this.oa);
26086
26140
  }
26087
26141
  },
26088
26142
  enumerable: false,
26089
26143
  configurable: true
26090
26144
  });
26091
- Object.defineProperty(DateTimeColumn.prototype, "n8", {
26145
+ Object.defineProperty(DateTimeColumn.prototype, "n9", {
26092
26146
  get: function () {
26093
26147
  return this.hz;
26094
26148
  },
@@ -26098,7 +26152,7 @@ var DateTimeColumn = /** @class */ /*@__PURE__*/ (function (_super) {
26098
26152
  enumerable: false,
26099
26153
  configurable: true
26100
26154
  });
26101
- Object.defineProperty(DateTimeColumn.prototype, "od", {
26155
+ Object.defineProperty(DateTimeColumn.prototype, "oe", {
26102
26156
  get: function () {
26103
26157
  return this.kq;
26104
26158
  },
@@ -26108,7 +26162,7 @@ var DateTimeColumn = /** @class */ /*@__PURE__*/ (function (_super) {
26108
26162
  enumerable: false,
26109
26163
  configurable: true
26110
26164
  });
26111
- Object.defineProperty(DateTimeColumn.prototype, "ok", {
26165
+ Object.defineProperty(DateTimeColumn.prototype, "ol", {
26112
26166
  get: function () {
26113
26167
  return this.lk;
26114
26168
  },
@@ -26118,7 +26172,7 @@ var DateTimeColumn = /** @class */ /*@__PURE__*/ (function (_super) {
26118
26172
  enumerable: false,
26119
26173
  configurable: true
26120
26174
  });
26121
- Object.defineProperty(DateTimeColumn.prototype, "ol", {
26175
+ Object.defineProperty(DateTimeColumn.prototype, "om", {
26122
26176
  get: function () {
26123
26177
  if (this.gz == null) {
26124
26178
  return null;
@@ -26135,17 +26189,17 @@ var DateTimeColumn = /** @class */ /*@__PURE__*/ (function (_super) {
26135
26189
  _super.prototype.ev.call(this, a, b, c, d);
26136
26190
  switch (a) {
26137
26191
  case "DateTimeFormat":
26138
- this.n5.k();
26192
+ this.n6.k();
26139
26193
  break;
26140
26194
  case "FormatString":
26141
26195
  case "FormatSpecifiers":
26142
- if (this.op != null) {
26143
- this.n4 = new BindingFormatter();
26144
- this.n4.j = this.op;
26145
- this.n4.d = this.n3;
26196
+ if (this.oq != null) {
26197
+ this.n5 = new BindingFormatter();
26198
+ this.n5.j = this.oq;
26199
+ this.n5.d = this.n4;
26146
26200
  }
26147
26201
  else {
26148
- this.n4 = null;
26202
+ this.n5 = null;
26149
26203
  }
26150
26204
  break;
26151
26205
  }
@@ -26157,24 +26211,24 @@ var DateTimeColumn = /** @class */ /*@__PURE__*/ (function (_super) {
26157
26211
  return a.af == 4 ? "datetime_mergedCell" : "datetime";
26158
26212
  };
26159
26213
  DateTimeColumn.prototype.dz = function (a, b, c) {
26160
- return this.om(b);
26214
+ return this.on(b);
26161
26215
  };
26162
26216
  DateTimeColumn.prototype.eo = function (a, b, c, d) {
26163
26217
  _super.prototype.eo.call(this, a, b, c, d);
26164
26218
  var e = a;
26165
- e.mp = this.ob(c);
26166
- e.mj = this.n5;
26167
- this.n5.j(e.ml);
26219
+ e.mp = this.oc(c);
26220
+ e.mj = this.n6;
26221
+ this.n6.j(e.ml);
26168
26222
  };
26169
26223
  DateTimeColumn.prototype.el = function (a, b, c, d) {
26170
26224
  _super.prototype.el.call(this, a, b, c, d);
26171
26225
  var e = a;
26172
- e.ml = this.n7;
26173
- e.m6 = this.op;
26174
- e.mg = this.n3;
26175
- e.mz = this.oe;
26226
+ e.ml = this.n8;
26227
+ e.m6 = this.oq;
26228
+ e.mg = this.n4;
26229
+ e.mz = this.of;
26176
26230
  };
26177
- DateTimeColumn.prototype.ob = function (a) {
26231
+ DateTimeColumn.prototype.oc = function (a) {
26178
26232
  if (a == null) {
26179
26233
  return dateMinValue();
26180
26234
  }
@@ -26183,23 +26237,23 @@ var DateTimeColumn = /** @class */ /*@__PURE__*/ (function (_super) {
26183
26237
  }
26184
26238
  return dateMinValue();
26185
26239
  };
26186
- DateTimeColumn.prototype.om = function (a) {
26240
+ DateTimeColumn.prototype.on = function (a) {
26187
26241
  var b = (typeCast(Date_$type, a) !== null) ? a : dateMinValue();
26188
- if (this.n4 != null) {
26242
+ if (this.n5 != null) {
26189
26243
  if (+b == +(dateMinValue())) {
26190
26244
  return "";
26191
26245
  }
26192
- return this.n4.i(b);
26246
+ return this.n5.i(b);
26193
26247
  }
26194
- if (this.oc != null) {
26248
+ if (this.od != null) {
26195
26249
  if (+b == +(dateMinValue())) {
26196
26250
  return "";
26197
26251
  }
26198
26252
  var date_ = b;
26199
- return (this.oc.format(date_));
26253
+ return (this.od.format(date_));
26200
26254
  }
26201
- this.n5.j(this.n7);
26202
- var c = this.n5.i(b);
26255
+ this.n6.j(this.n8);
26256
+ var c = this.n6.i(b);
26203
26257
  if (c == stringEmpty()) {
26204
26258
  if (a != null && !(typeCast(Date_$type, a) !== null)) {
26205
26259
  return a.toString();
@@ -26376,23 +26430,24 @@ var DataGridColumnToolbarManager = /** @class */ /*@__PURE__*/ (function (_super
26376
26430
  }
26377
26431
  };
26378
26432
  DataGridColumnToolbarManager.prototype.a9 = function () {
26379
- if (this.f.io != null) {
26380
- this.f.io.setContextValue("GridColumnOptionsColumnName", 3, this.f.k3);
26381
- }
26433
+ var _this = this;
26434
+ this.f.my(function (a) { return a.setContextValue("GridColumnOptionsColumnName", 3, _this.f.k3); });
26382
26435
  };
26383
26436
  DataGridColumnToolbarManager.prototype.bj = function () {
26384
- if (this.f.io != null) {
26385
- this.f.io.setContextValue("GridColumnOptionsSortAscending", 5, this.e == 1);
26386
- this.f.io.setContextValue("GridColumnOptionsSortDescending", 5, this.e == 2);
26387
- }
26437
+ var _this = this;
26438
+ this.f.my(function (a) {
26439
+ a.setContextValue("GridColumnOptionsSortAscending", 5, _this.e == 1);
26440
+ a.setContextValue("GridColumnOptionsSortDescending", 5, _this.e == 2);
26441
+ });
26388
26442
  };
26389
26443
  DataGridColumnToolbarManager.prototype.bg = function () {
26390
- if (this.f.io != null) {
26391
- this.f.io.setContextValue("GridColumnOptionsMoveLeftSelected", 5, false);
26392
- this.f.io.setContextValue("GridColumnOptionsMoveRightSelected", 5, false);
26393
- this.f.io.setContextValue("GridColumnOptionsMoveLeftDisabled", 5, !this.m(this.f));
26394
- this.f.io.setContextValue("GridColumnOptionsMoveRightDisabled", 5, !this.n(this.f));
26395
- }
26444
+ var _this = this;
26445
+ this.f.my(function (a) {
26446
+ a.setContextValue("GridColumnOptionsMoveLeftSelected", 5, false);
26447
+ a.setContextValue("GridColumnOptionsMoveRightSelected", 5, false);
26448
+ a.setContextValue("GridColumnOptionsMoveLeftDisabled", 5, !_this.m(_this.f));
26449
+ a.setContextValue("GridColumnOptionsMoveRightDisabled", 5, !_this.n(_this.f));
26450
+ });
26396
26451
  };
26397
26452
  DataGridColumnToolbarManager.prototype.l = function (a) {
26398
26453
  var b = this.f;
@@ -26422,12 +26477,13 @@ var DataGridColumnToolbarManager = /** @class */ /*@__PURE__*/ (function (_super
26422
26477
  return this.l(true);
26423
26478
  };
26424
26479
  DataGridColumnToolbarManager.prototype.bh = function () {
26425
- if (this.f.io != null) {
26426
- this.f.io.setContextValue("GridColumnOptionsPinnedLeft", 5, this.f.il == 1);
26427
- this.f.io.setContextValue("GridColumnOptionsPinnedRight", 5, this.f.il == 2);
26428
- this.f.io.setContextValue("GridColumnOptionsPinnedLeftIcon", 3, (this.f.il == 1) ? "UnpinLeft" : "PinLeft");
26429
- this.f.io.setContextValue("GridColumnOptionsPinnedRightIcon", 3, (this.f.il == 2) ? "UnpinRight" : "PinRight");
26430
- }
26480
+ var _this = this;
26481
+ this.f.my(function (a) {
26482
+ a.setContextValue("GridColumnOptionsPinnedLeft", 5, _this.f.il == 1);
26483
+ a.setContextValue("GridColumnOptionsPinnedRight", 5, _this.f.il == 2);
26484
+ a.setContextValue("GridColumnOptionsPinnedLeftIcon", 3, (_this.f.il == 1) ? "UnpinLeft" : "PinLeft");
26485
+ a.setContextValue("GridColumnOptionsPinnedRightIcon", 3, (_this.f.il == 2) ? "UnpinRight" : "PinRight");
26486
+ });
26431
26487
  };
26432
26488
  DataGridColumnToolbarManager.prototype.bc = function () {
26433
26489
  var a = false;
@@ -26439,16 +26495,12 @@ var DataGridColumnToolbarManager = /** @class */ /*@__PURE__*/ (function (_super
26439
26495
  break;
26440
26496
  }
26441
26497
  }
26442
- if (this.f.io != null) {
26443
- this.f.io.setContextValue("GridColumnOptionsGroupedIcon", 3, (a) ? "Ungroup" : "Group");
26444
- }
26498
+ this.f.my(function (e) { return e.setContextValue("GridColumnOptionsGroupedIcon", 3, (a) ? "Ungroup" : "Group"); });
26445
26499
  };
26446
26500
  DataGridColumnToolbarManager.prototype.bn = function () {
26447
26501
  var a = false;
26448
- a = !this.f.jp;
26449
- if (this.f.io != null) {
26450
- this.f.io.setContextValue("GridColumnOptionsVisibilityIcon", 3, (a) ? "Hide" : "Show");
26451
- }
26502
+ a = !this.f.jo;
26503
+ this.f.my(function (b) { return b.setContextValue("GridColumnOptionsVisibilityIcon", 3, (a) ? "Hide" : "Show"); });
26452
26504
  };
26453
26505
  DataGridColumnToolbarManager.prototype.a3 = function (a) {
26454
26506
  this.q.add(a);
@@ -26799,17 +26851,15 @@ var DataGridColumnToolbarManager = /** @class */ /*@__PURE__*/ (function (_super
26799
26851
  return x;
26800
26852
  };
26801
26853
  DataGridColumnToolbarManager.prototype.bk = function () {
26802
- if (this.f.io != null) {
26803
- this.f.io.setContextValue("GridColumnOptionsSummariesTitle", 3, this.al());
26804
- }
26854
+ var _this = this;
26855
+ this.f.my(function (a) { return a.setContextValue("GridColumnOptionsSummariesTitle", 3, _this.al()); });
26805
26856
  };
26806
26857
  DataGridColumnToolbarManager.prototype.bl = function () {
26858
+ var _this = this;
26807
26859
  if (this.f == null || this.f.grid == null) {
26808
26860
  return;
26809
26861
  }
26810
- if (this.f.io != null) {
26811
- this.f.io.setContextValue("GridColumnOptionsSummariesTitle", 3, this.an());
26812
- }
26862
+ this.f.my(function (a) { return a.setContextValue("GridColumnOptionsSummariesTitle", 3, _this.an()); });
26813
26863
  var a = false;
26814
26864
  var b = false;
26815
26865
  var c = false;
@@ -26841,17 +26891,17 @@ var DataGridColumnToolbarManager = /** @class */ /*@__PURE__*/ (function (_super
26841
26891
  }
26842
26892
  }
26843
26893
  }
26844
- if (this.f.io != null) {
26845
- this.f.io.setContextValue("GridColumnOptionsSummariesVisible", 6, this.b6());
26846
- this.f.io.setContextValue("GridColumnOptionsSummariesAverageChecked", 5, a);
26847
- this.f.io.setContextValue("GridColumnOptionsSummariesMinimumChecked", 5, b);
26848
- this.f.io.setContextValue("GridColumnOptionsSummariesMaximumChecked", 5, c);
26849
- this.f.io.setContextValue("GridColumnOptionsSummariesSumChecked", 5, e);
26850
- this.f.io.setContextValue("GridColumnOptionsSummariesCountChecked", 5, d);
26851
- }
26894
+ this.f.my(function (j) {
26895
+ j.setContextValue("GridColumnOptionsSummariesVisible", 6, _this.b6());
26896
+ j.setContextValue("GridColumnOptionsSummariesAverageChecked", 5, a);
26897
+ j.setContextValue("GridColumnOptionsSummariesMinimumChecked", 5, b);
26898
+ j.setContextValue("GridColumnOptionsSummariesMaximumChecked", 5, c);
26899
+ j.setContextValue("GridColumnOptionsSummariesSumChecked", 5, e);
26900
+ j.setContextValue("GridColumnOptionsSummariesCountChecked", 5, d);
26901
+ });
26852
26902
  };
26853
26903
  DataGridColumnToolbarManager.prototype.b6 = function () {
26854
- if (this.f.jd && this.f.grid.summaryScope != 3) {
26904
+ if (this.f.jc && this.f.grid.summaryScope != 3) {
26855
26905
  return 0;
26856
26906
  }
26857
26907
  return 1;
@@ -26868,15 +26918,13 @@ var DataGridColumnToolbarManager = /** @class */ /*@__PURE__*/ (function (_super
26868
26918
  };
26869
26919
  DataGridColumnToolbarManager.prototype.u = function () {
26870
26920
  var a = 0;
26871
- if (this.f.io != null) {
26872
- var b = this.f.io.getContextValue("GridColumnOptionsSummariesAverageChecked", 5);
26873
- var c = this.f.io.getContextValue("GridColumnOptionsSummariesMinimumChecked", 5);
26874
- var d = this.f.io.getContextValue("GridColumnOptionsSummariesMaximumChecked", 5);
26875
- var e = this.f.io.getContextValue("GridColumnOptionsSummariesSumChecked", 5);
26876
- var f = this.f.io.getContextValue("GridColumnOptionsSummariesCountChecked", 5);
26877
- if (b) {
26878
- a++;
26879
- }
26921
+ var b = this.f.im();
26922
+ if (b != null) {
26923
+ var c = b.getContextValue("GridColumnOptionsSummariesAverageChecked", 5);
26924
+ var d = b.getContextValue("GridColumnOptionsSummariesMinimumChecked", 5);
26925
+ var e = b.getContextValue("GridColumnOptionsSummariesMaximumChecked", 5);
26926
+ var f = b.getContextValue("GridColumnOptionsSummariesSumChecked", 5);
26927
+ var g = b.getContextValue("GridColumnOptionsSummariesCountChecked", 5);
26880
26928
  if (c) {
26881
26929
  a++;
26882
26930
  }
@@ -26889,6 +26937,9 @@ var DataGridColumnToolbarManager = /** @class */ /*@__PURE__*/ (function (_super
26889
26937
  if (f) {
26890
26938
  a++;
26891
26939
  }
26940
+ if (g) {
26941
+ a++;
26942
+ }
26892
26943
  }
26893
26944
  return a;
26894
26945
  };
@@ -26946,11 +26997,11 @@ var DataGridColumnToolbarManager = /** @class */ /*@__PURE__*/ (function (_super
26946
26997
  }
26947
26998
  }
26948
26999
  e.flushAutoRefresh();
26949
- if (this.f.io != null) {
26950
- this.f.io.setContextValue("GridColumnOptionsFilterItemsSource", 7, e);
26951
- this.f.io.setContextValue("GridColumnOptionsFilterDataMemberPath", 3, c);
26952
- this.f.io.setContextValue("GridColumnOptionsFilterPrimaryKey", 7, [c]);
26953
- }
27000
+ this.f.my(function (k) {
27001
+ k.setContextValue("GridColumnOptionsFilterItemsSource", 7, e);
27002
+ k.setContextValue("GridColumnOptionsFilterDataMemberPath", 3, c);
27003
+ k.setContextValue("GridColumnOptionsFilterPrimaryKey", 7, [c]);
27004
+ });
26954
27005
  e.shouldEmitSectionHeaders = true;
26955
27006
  e.isSectionHeaderNormalRow = true;
26956
27007
  e.isSectionExpandedDefault = false;
@@ -26962,7 +27013,7 @@ var DataGridColumnToolbarManager = /** @class */ /*@__PURE__*/ (function (_super
26962
27013
  DataGridColumnToolbarManager.prototype.b5 = function (a, b) {
26963
27014
  };
26964
27015
  DataGridColumnToolbarManager.prototype.b4 = function () {
26965
- var e_23, _a;
27016
+ var e_25, _a;
26966
27017
  var a = this.f;
26967
27018
  var b = (null != a) ? a.lo : null;
26968
27019
  var c = true;
@@ -26986,22 +27037,18 @@ var DataGridColumnToolbarManager = /** @class */ /*@__PURE__*/ (function (_super
26986
27037
  }
26987
27038
  }
26988
27039
  if (e.count == 0 || !c) {
26989
- if (this.f.io != null) {
26990
- this.f.io.setContextValue("GridColumnOptionsFilterIndexType", 6, 0);
26991
- }
26992
- this.f.io.setContextValue("GridColumnOptionsFilterSelectedKeys", 7, new LayoutSelectedKeysCollection());
27040
+ this.f.my(function (h) {
27041
+ h.setContextValue("GridColumnOptionsFilterIndexType", 6, 0);
27042
+ h.setContextValue("GridColumnOptionsFilterSelectedKeys", 7, new LayoutSelectedKeysCollection());
27043
+ });
26993
27044
  return;
26994
27045
  }
26995
27046
  switch (d.value) {
26996
27047
  case 0:
26997
- if (this.f.io != null) {
26998
- this.f.io.setContextValue("GridColumnOptionsFilterIndexType", 6, 1);
26999
- }
27048
+ this.f.my(function (h) { return h.setContextValue("GridColumnOptionsFilterIndexType", 6, 1); });
27000
27049
  break;
27001
27050
  case 1:
27002
- if (this.f.io != null) {
27003
- this.f.io.setContextValue("GridColumnOptionsFilterIndexType", 6, 0);
27004
- }
27051
+ this.f.my(function (h) { return h.setContextValue("GridColumnOptionsFilterIndexType", 6, 0); });
27005
27052
  break;
27006
27053
  }
27007
27054
  var h = new LayoutSelectedKeysCollection();
@@ -27011,8 +27058,8 @@ var DataGridColumnToolbarManager = /** @class */ /*@__PURE__*/ (function (_super
27011
27058
  h.add(new LayoutPrimaryKeyValue(0, [b], [i.value]));
27012
27059
  }
27013
27060
  }
27014
- catch (e_23_1) {
27015
- e_23 = { error: e_23_1 };
27061
+ catch (e_25_1) {
27062
+ e_25 = { error: e_25_1 };
27016
27063
  }
27017
27064
  finally {
27018
27065
  try {
@@ -27020,13 +27067,11 @@ var DataGridColumnToolbarManager = /** @class */ /*@__PURE__*/ (function (_super
27020
27067
  _a.call(_b);
27021
27068
  }
27022
27069
  finally {
27023
- if (e_23)
27024
- throw e_23.error;
27070
+ if (e_25)
27071
+ throw e_25.error;
27025
27072
  }
27026
27073
  }
27027
- if (this.f.io != null) {
27028
- this.f.io.setContextValue("GridColumnOptionsFilterSelectedKeys", 7, h);
27029
- }
27074
+ this.f.my(function (j) { return j.setContextValue("GridColumnOptionsFilterSelectedKeys", 7, h); });
27030
27075
  this.b3();
27031
27076
  };
27032
27077
  DataGridColumnToolbarManager.prototype.b3 = function () {
@@ -27075,7 +27120,7 @@ var DataGridColumnToolbarManager = /** @class */ /*@__PURE__*/ (function (_super
27075
27120
  if (this.f.grid != null && this.f.grid.filterUIType != 0) {
27076
27121
  return false;
27077
27122
  }
27078
- if (!this.f.jn) {
27123
+ if (!this.f.jm) {
27079
27124
  return false;
27080
27125
  }
27081
27126
  if (this.f.grid == null || this.f.grid.actualDataSource == null || !this.f.grid.actualDataSource.isGroupingSupported || !this.f.grid.actualDataSource.isFilteringSupported) {
@@ -27230,86 +27275,91 @@ var DataGridColumnToolbarManager = /** @class */ /*@__PURE__*/ (function (_super
27230
27275
  return c;
27231
27276
  };
27232
27277
  DataGridColumnToolbarManager.prototype.a6 = function () {
27233
- if (this.f.io != null) {
27234
- var a = this.f.io.getContextValue("GridColumnOptionsSummariesAverageChecked", 5);
27235
- var b = this.f.io.getContextValue("GridColumnOptionsSummariesMinimumChecked", 5);
27236
- var c = this.f.io.getContextValue("GridColumnOptionsSummariesMaximumChecked", 5);
27237
- var d = this.f.io.getContextValue("GridColumnOptionsSummariesSumChecked", 5);
27238
- var e = this.f.io.getContextValue("GridColumnOptionsSummariesCountChecked", 5);
27239
- var f = new HashSet$1(DataSourceSummaryOperand_$type, 0);
27240
- if (a) {
27241
- f.add_1(3);
27242
- }
27278
+ var a = this.f.im();
27279
+ if (a != null) {
27280
+ var b = a.getContextValue("GridColumnOptionsSummariesAverageChecked", 5);
27281
+ var c = a.getContextValue("GridColumnOptionsSummariesMinimumChecked", 5);
27282
+ var d = a.getContextValue("GridColumnOptionsSummariesMaximumChecked", 5);
27283
+ var e = a.getContextValue("GridColumnOptionsSummariesSumChecked", 5);
27284
+ var f = a.getContextValue("GridColumnOptionsSummariesCountChecked", 5);
27285
+ var g = new HashSet$1(DataSourceSummaryOperand_$type, 0);
27243
27286
  if (b) {
27244
- f.add_1(0);
27287
+ g.add_1(3);
27245
27288
  }
27246
27289
  if (c) {
27247
- f.add_1(1);
27290
+ g.add_1(0);
27248
27291
  }
27249
27292
  if (d) {
27250
- f.add_1(2);
27251
- }
27252
- if (e) {
27253
- f.add_1(4);
27254
- }
27255
- this.by(f);
27256
- if (a) {
27257
- this.bm(a, 3);
27293
+ g.add_1(1);
27258
27294
  }
27259
27295
  if (e) {
27260
- this.bm(e, 4);
27296
+ g.add_1(2);
27261
27297
  }
27262
- if (c) {
27263
- this.bm(c, 1);
27298
+ if (f) {
27299
+ g.add_1(4);
27264
27300
  }
27301
+ this.by(g);
27265
27302
  if (b) {
27266
- this.bm(b, 0);
27303
+ this.bm(b, 3);
27304
+ }
27305
+ if (f) {
27306
+ this.bm(f, 4);
27267
27307
  }
27268
27308
  if (d) {
27269
- this.bm(d, 2);
27309
+ this.bm(d, 1);
27310
+ }
27311
+ if (c) {
27312
+ this.bm(c, 0);
27313
+ }
27314
+ if (e) {
27315
+ this.bm(e, 2);
27270
27316
  }
27271
27317
  }
27272
27318
  };
27273
27319
  DataGridColumnToolbarManager.prototype.a5 = function () {
27274
- var e_24, _a;
27275
- var a = this.f.io.getContextValue("GridColumnOptionsFilterSelectedKeys", 7);
27276
- var b = EnumUtil.getEnumValue(ToolActionCheckboxListIndexType_$type, this.f.io.getContextValue("GridColumnOptionsFilterIndexType", 6));
27277
- if (0 == a.count) {
27320
+ var e_26, _a;
27321
+ var a = this.f.im();
27322
+ if (a == null) {
27323
+ return;
27324
+ }
27325
+ var b = a.getContextValue("GridColumnOptionsFilterSelectedKeys", 7);
27326
+ var c = EnumUtil.getEnumValue(ToolActionCheckboxListIndexType_$type, a.getContextValue("GridColumnOptionsFilterIndexType", 6));
27327
+ if (0 == b.count) {
27278
27328
  this.a7();
27279
27329
  return;
27280
27330
  }
27281
- var c;
27282
27331
  var d;
27283
- if (b == 0) {
27284
- d = false;
27285
- c = 1;
27332
+ var e;
27333
+ if (c == 0) {
27334
+ e = false;
27335
+ d = 1;
27286
27336
  }
27287
27337
  else {
27288
- d = true;
27289
- c = 0;
27338
+ e = true;
27339
+ d = 0;
27290
27340
  }
27291
- var e = new List$1(ColumnComparisonFilterCondition.$, 0);
27292
- var f = a;
27293
- for (var g = 0; g < f.count; g++) {
27294
- var h = f._inner[g];
27295
- var i = h.value[0];
27296
- var j = DataGridColumnToolbarManager.b(c, i);
27297
- e.add(j);
27341
+ var f = new List$1(ColumnComparisonFilterCondition.$, 0);
27342
+ var g = b;
27343
+ for (var h = 0; h < g.count; h++) {
27344
+ var i = g._inner[h];
27345
+ var j = i.value[0];
27346
+ var k = DataGridColumnToolbarManager.b(d, j);
27347
+ f.add(k);
27298
27348
  }
27299
- if (e.count == 1) {
27300
- this.f.g1 = e._inner[0];
27349
+ if (f.count == 1) {
27350
+ this.f.g1 = f._inner[0];
27301
27351
  }
27302
27352
  else {
27303
- var k = new ColumnFilterConditionGroup();
27304
- k.usesOrOperator = d;
27353
+ var l = new ColumnFilterConditionGroup();
27354
+ l.usesOrOperator = e;
27305
27355
  try {
27306
- for (var _b = __values(fromEnum(e)), _c = _b.next(); !_c.done; _c = _b.next()) {
27307
- var l = _c.value;
27308
- k.add(l);
27356
+ for (var _b = __values(fromEnum(f)), _c = _b.next(); !_c.done; _c = _b.next()) {
27357
+ var m = _c.value;
27358
+ l.add(m);
27309
27359
  }
27310
27360
  }
27311
- catch (e_24_1) {
27312
- e_24 = { error: e_24_1 };
27361
+ catch (e_26_1) {
27362
+ e_26 = { error: e_26_1 };
27313
27363
  }
27314
27364
  finally {
27315
27365
  try {
@@ -27317,16 +27367,16 @@ var DataGridColumnToolbarManager = /** @class */ /*@__PURE__*/ (function (_super
27317
27367
  _a.call(_b);
27318
27368
  }
27319
27369
  finally {
27320
- if (e_24)
27321
- throw e_24.error;
27370
+ if (e_26)
27371
+ throw e_26.error;
27322
27372
  }
27323
27373
  }
27324
- this.f.g1 = k;
27374
+ this.f.g1 = l;
27325
27375
  }
27326
- this.f.mz("Filtered");
27376
+ this.f.m0("Filtered");
27327
27377
  };
27328
27378
  DataGridColumnToolbarManager.prototype.b2 = function () {
27329
- this.f.jp = !this.f.jp;
27379
+ this.f.jo = !this.f.jo;
27330
27380
  };
27331
27381
  DataGridColumnToolbarManager.prototype.b1 = function () {
27332
27382
  var a = new ColumnGroupDescription(0);
@@ -27657,8 +27707,8 @@ var EditorDefinition = /** @class */ /*@__PURE__*/ (function (_super) {
27657
27707
  e.mg = f.gz;
27658
27708
  e.mi = b.actualDataSource.resolveSchemaPropertyType(f.lo);
27659
27709
  if (typeCast(DateTimeColumn.$, f) !== null) {
27660
- e.nf = (typeCast(DateTimeColumn.$, f)).oi;
27661
- e.ms = (typeCast(DateTimeColumn.$, f)).oa;
27710
+ e.nf = (typeCast(DateTimeColumn.$, f)).oj;
27711
+ e.ms = (typeCast(DateTimeColumn.$, f)).ob;
27662
27712
  }
27663
27713
  }
27664
27714
  };
@@ -27800,7 +27850,7 @@ var FilterRowDefinition = /** @class */ /*@__PURE__*/ (function (_super) {
27800
27850
  a.gk = this.g2;
27801
27851
  var e = a;
27802
27852
  var f = b.cf(a.l);
27803
- e.mq = f.jn;
27853
+ e.mq = f.jm;
27804
27854
  };
27805
27855
  FilterRowDefinition.prototype.eo = function (a, b, c, d) {
27806
27856
  _super.prototype.eo.call(this, a, b, c, d);
@@ -28107,8 +28157,8 @@ var Header = /** @class */ /*@__PURE__*/ (function (_super) {
28107
28157
  _super.prototype.eo.call(this, a, b, c, d);
28108
28158
  var e = b.cf(a.l);
28109
28159
  if (e != null) {
28110
- if (a.l.g && e.jg()) {
28111
- var f = e.iq;
28160
+ if (a.l.g && e.jf()) {
28161
+ var f = e.ip;
28112
28162
  var g = f.o;
28113
28163
  var h = g.count;
28114
28164
  var i = f.p;
@@ -28286,42 +28336,42 @@ var ImageColumn = /** @class */ /*@__PURE__*/ (function (_super) {
28286
28336
  __extends(ImageColumn, _super);
28287
28337
  function ImageColumn() {
28288
28338
  var _this = _super.call(this) || this;
28289
- _this.n5 = 0;
28290
- _this.n3 = 0;
28291
28339
  _this.n6 = 0;
28340
+ _this.n4 = 0;
28341
+ _this.n7 = 0;
28292
28342
  _this.j = _this.k();
28293
28343
  _this.e = _this.f();
28294
28344
  return _this;
28295
28345
  }
28296
- Object.defineProperty(ImageColumn.prototype, "n6", {
28346
+ Object.defineProperty(ImageColumn.prototype, "n7", {
28297
28347
  get: function () {
28298
- return this.n5;
28348
+ return this.n6;
28299
28349
  },
28300
28350
  set: function (a) {
28301
- var b = this.n5;
28302
- this.n5 = a;
28303
- if (this.n5 != b) {
28304
- this.et("ImageStretchOption", 4, enumGetBox(ImageStretchOptions_$type, b), enumGetBox(ImageStretchOptions_$type, this.n5));
28351
+ var b = this.n6;
28352
+ this.n6 = a;
28353
+ if (this.n6 != b) {
28354
+ this.et("ImageStretchOption", 4, enumGetBox(ImageStretchOptions_$type, b), enumGetBox(ImageStretchOptions_$type, this.n6));
28305
28355
  }
28306
28356
  },
28307
28357
  enumerable: false,
28308
28358
  configurable: true
28309
28359
  });
28310
- Object.defineProperty(ImageColumn.prototype, "n4", {
28360
+ Object.defineProperty(ImageColumn.prototype, "n5", {
28311
28361
  get: function () {
28312
- return this.n3;
28362
+ return this.n4;
28313
28363
  },
28314
28364
  set: function (a) {
28315
- var b = this.n3;
28316
- this.n3 = a;
28317
- if (this.n3 != b) {
28318
- this.et("ImageResourceType", 11, enumGetBox(ImageResourceType_$type, b), enumGetBox(ImageResourceType_$type, this.n3));
28365
+ var b = this.n4;
28366
+ this.n4 = a;
28367
+ if (this.n4 != b) {
28368
+ this.et("ImageResourceType", 11, enumGetBox(ImageResourceType_$type, b), enumGetBox(ImageResourceType_$type, this.n4));
28319
28369
  }
28320
28370
  },
28321
28371
  enumerable: false,
28322
28372
  configurable: true
28323
28373
  });
28324
- Object.defineProperty(ImageColumn.prototype, "n2", {
28374
+ Object.defineProperty(ImageColumn.prototype, "n3", {
28325
28375
  get: function () {
28326
28376
  return this.hz;
28327
28377
  },
@@ -28331,7 +28381,7 @@ var ImageColumn = /** @class */ /*@__PURE__*/ (function (_super) {
28331
28381
  enumerable: false,
28332
28382
  configurable: true
28333
28383
  });
28334
- Object.defineProperty(ImageColumn.prototype, "n7", {
28384
+ Object.defineProperty(ImageColumn.prototype, "n8", {
28335
28385
  get: function () {
28336
28386
  return this.kq;
28337
28387
  },
@@ -28341,7 +28391,7 @@ var ImageColumn = /** @class */ /*@__PURE__*/ (function (_super) {
28341
28391
  enumerable: false,
28342
28392
  configurable: true
28343
28393
  });
28344
- Object.defineProperty(ImageColumn.prototype, "n8", {
28394
+ Object.defineProperty(ImageColumn.prototype, "n9", {
28345
28395
  get: function () {
28346
28396
  return this.lk;
28347
28397
  },
@@ -28351,7 +28401,7 @@ var ImageColumn = /** @class */ /*@__PURE__*/ (function (_super) {
28351
28401
  enumerable: false,
28352
28402
  configurable: true
28353
28403
  });
28354
- Object.defineProperty(ImageColumn.prototype, "n9", {
28404
+ Object.defineProperty(ImageColumn.prototype, "oa", {
28355
28405
  get: function () {
28356
28406
  if (this.gz == null) {
28357
28407
  return null;
@@ -28399,15 +28449,15 @@ var ImageColumn = /** @class */ /*@__PURE__*/ (function (_super) {
28399
28449
  var e = a;
28400
28450
  if (c != null) {
28401
28451
  e.j1 = c.toString();
28402
- e.mi = this.n6;
28403
- e.mg = this.n4;
28404
- e.mn = this.oa(c);
28452
+ e.mi = this.n7;
28453
+ e.mg = this.n5;
28454
+ e.mn = this.ob(c);
28405
28455
  }
28406
28456
  };
28407
28457
  ImageColumn.prototype.el = function (a, b, c, d) {
28408
28458
  _super.prototype.el.call(this, a, b, c, d);
28409
28459
  };
28410
- ImageColumn.prototype.oa = function (a) {
28460
+ ImageColumn.prototype.ob = function (a) {
28411
28461
  if (a == null) {
28412
28462
  return "";
28413
28463
  }
@@ -28591,7 +28641,7 @@ var NumericCellFormatter = /** @class */ /*@__PURE__*/ (function (_super) {
28591
28641
  return NumericCellFormatter.b(a.mh, a.mw, a.my, a.m0, a.mm, a.nt, a.nv, a.no, a.nq, a.mo);
28592
28642
  };
28593
28643
  NumericCellFormatter.d = function (a, b) {
28594
- return NumericCellFormatter.b(a.n4, a.oc, a.od, a.oe, a.n7, a.o1, a.o3, a.ox, a.oz, b);
28644
+ return NumericCellFormatter.b(a.n5, a.od, a.oe, a.of, a.n8, a.o2, a.o4, a.oy, a.o0, b);
28595
28645
  };
28596
28646
  NumericCellFormatter.$t = markType(NumericCellFormatter, 'NumericCellFormatter');
28597
28647
  NumericCellFormatter.a = null;
@@ -28605,18 +28655,18 @@ var NumericColumn = /** @class */ /*@__PURE__*/ (function (_super) {
28605
28655
  __extends(NumericColumn, _super);
28606
28656
  function NumericColumn() {
28607
28657
  var _this = _super.call(this) || this;
28608
- _this.oj = null;
28609
- _this.ol = null;
28610
28658
  _this.ok = null;
28611
- _this.om = "";
28612
- _this.n9 = 10;
28613
- _this.oa = 0;
28614
- _this.ob = -1;
28615
- _this.n6 = false;
28616
- _this.oi = null;
28617
- _this.n2 = null;
28618
- _this.of = null;
28619
- _this.n4 = null;
28659
+ _this.om = null;
28660
+ _this.ol = null;
28661
+ _this.on = "";
28662
+ _this.oa = 10;
28663
+ _this.ob = 0;
28664
+ _this.oc = -1;
28665
+ _this.n7 = false;
28666
+ _this.oj = null;
28667
+ _this.n3 = null;
28668
+ _this.og = null;
28669
+ _this.n5 = null;
28620
28670
  _this.e = _this.f();
28621
28671
  return _this;
28622
28672
  }
@@ -28626,35 +28676,7 @@ var NumericColumn = /** @class */ /*@__PURE__*/ (function (_super) {
28626
28676
  }
28627
28677
  return 2;
28628
28678
  };
28629
- Object.defineProperty(NumericColumn.prototype, "ox", {
28630
- get: function () {
28631
- return this.oj;
28632
- },
28633
- set: function (a) {
28634
- var b = this.oj;
28635
- this.oj = a;
28636
- if (this.oj != b) {
28637
- this.et("NegativePrefix", 8, b, this.oj);
28638
- }
28639
- },
28640
- enumerable: false,
28641
- configurable: true
28642
- });
28643
- Object.defineProperty(NumericColumn.prototype, "o1", {
28644
- get: function () {
28645
- return this.ol;
28646
- },
28647
- set: function (a) {
28648
- var b = this.ol;
28649
- this.ol = a;
28650
- if (this.ol != b) {
28651
- this.et("PositivePrefix", 8, b, this.ol);
28652
- }
28653
- },
28654
- enumerable: false,
28655
- configurable: true
28656
- });
28657
- Object.defineProperty(NumericColumn.prototype, "oz", {
28679
+ Object.defineProperty(NumericColumn.prototype, "oy", {
28658
28680
  get: function () {
28659
28681
  return this.ok;
28660
28682
  },
@@ -28662,13 +28684,13 @@ var NumericColumn = /** @class */ /*@__PURE__*/ (function (_super) {
28662
28684
  var b = this.ok;
28663
28685
  this.ok = a;
28664
28686
  if (this.ok != b) {
28665
- this.et("NegativeSuffix", 8, b, this.ok);
28687
+ this.et("NegativePrefix", 8, b, this.ok);
28666
28688
  }
28667
28689
  },
28668
28690
  enumerable: false,
28669
28691
  configurable: true
28670
28692
  });
28671
- Object.defineProperty(NumericColumn.prototype, "o3", {
28693
+ Object.defineProperty(NumericColumn.prototype, "o2", {
28672
28694
  get: function () {
28673
28695
  return this.om;
28674
28696
  },
@@ -28676,21 +28698,35 @@ var NumericColumn = /** @class */ /*@__PURE__*/ (function (_super) {
28676
28698
  var b = this.om;
28677
28699
  this.om = a;
28678
28700
  if (this.om != b) {
28679
- this.et("PositiveSuffix", 8, b, this.om);
28701
+ this.et("PositivePrefix", 8, b, this.om);
28702
+ }
28703
+ },
28704
+ enumerable: false,
28705
+ configurable: true
28706
+ });
28707
+ Object.defineProperty(NumericColumn.prototype, "o0", {
28708
+ get: function () {
28709
+ return this.ol;
28710
+ },
28711
+ set: function (a) {
28712
+ var b = this.ol;
28713
+ this.ol = a;
28714
+ if (this.ol != b) {
28715
+ this.et("NegativeSuffix", 8, b, this.ol);
28680
28716
  }
28681
28717
  },
28682
28718
  enumerable: false,
28683
28719
  configurable: true
28684
28720
  });
28685
- Object.defineProperty(NumericColumn.prototype, "oc", {
28721
+ Object.defineProperty(NumericColumn.prototype, "o4", {
28686
28722
  get: function () {
28687
- return this.n9;
28723
+ return this.on;
28688
28724
  },
28689
28725
  set: function (a) {
28690
- var b = this.n9;
28691
- this.n9 = a;
28692
- if (this.n9 != b) {
28693
- this.et("MaxFractionDigits", 6, b, this.n9);
28726
+ var b = this.on;
28727
+ this.on = a;
28728
+ if (this.on != b) {
28729
+ this.et("PositiveSuffix", 8, b, this.on);
28694
28730
  }
28695
28731
  },
28696
28732
  enumerable: false,
@@ -28704,7 +28740,7 @@ var NumericColumn = /** @class */ /*@__PURE__*/ (function (_super) {
28704
28740
  var b = this.oa;
28705
28741
  this.oa = a;
28706
28742
  if (this.oa != b) {
28707
- this.et("MinFractionDigits", 6, b, this.oa);
28743
+ this.et("MaxFractionDigits", 6, b, this.oa);
28708
28744
  }
28709
28745
  },
28710
28746
  enumerable: false,
@@ -28718,69 +28754,83 @@ var NumericColumn = /** @class */ /*@__PURE__*/ (function (_super) {
28718
28754
  var b = this.ob;
28719
28755
  this.ob = a;
28720
28756
  if (this.ob != b) {
28721
- this.et("MinIntegerDigits", 6, b, this.ob);
28757
+ this.et("MinFractionDigits", 6, b, this.ob);
28722
28758
  }
28723
28759
  },
28724
28760
  enumerable: false,
28725
28761
  configurable: true
28726
28762
  });
28727
- Object.defineProperty(NumericColumn.prototype, "n7", {
28763
+ Object.defineProperty(NumericColumn.prototype, "of", {
28728
28764
  get: function () {
28729
- return this.n6;
28765
+ return this.oc;
28730
28766
  },
28731
28767
  set: function (a) {
28732
- var b = this.n6;
28733
- this.n6 = a;
28734
- if (this.n6 != b) {
28735
- this.et("ShowGroupingSeparator", 5, b, this.n6);
28768
+ var b = this.oc;
28769
+ this.oc = a;
28770
+ if (this.oc != b) {
28771
+ this.et("MinIntegerDigits", 6, b, this.oc);
28736
28772
  }
28737
28773
  },
28738
28774
  enumerable: false,
28739
28775
  configurable: true
28740
28776
  });
28741
- Object.defineProperty(NumericColumn.prototype, "os", {
28777
+ Object.defineProperty(NumericColumn.prototype, "n8", {
28742
28778
  get: function () {
28743
- return this.oi;
28779
+ return this.n7;
28744
28780
  },
28745
28781
  set: function (a) {
28746
- var b = this.oi;
28747
- this.oi = a;
28748
- if (this.oi != b) {
28749
- this.et("FormatString", 8, b, this.oi);
28782
+ var b = this.n7;
28783
+ this.n7 = a;
28784
+ if (this.n7 != b) {
28785
+ this.et("ShowGroupingSeparator", 5, b, this.n7);
28750
28786
  }
28751
28787
  },
28752
28788
  enumerable: false,
28753
28789
  configurable: true
28754
28790
  });
28755
- Object.defineProperty(NumericColumn.prototype, "n3", {
28791
+ Object.defineProperty(NumericColumn.prototype, "ot", {
28756
28792
  get: function () {
28757
- return this.n2;
28793
+ return this.oj;
28758
28794
  },
28759
28795
  set: function (a) {
28760
- var b = this.n2;
28761
- this.n2 = a;
28762
- if (this.n2 != b) {
28763
- this.et("FormatSpecifiers", 9, b, this.n2);
28796
+ var b = this.oj;
28797
+ this.oj = a;
28798
+ if (this.oj != b) {
28799
+ this.et("FormatString", 8, b, this.oj);
28764
28800
  }
28765
28801
  },
28766
28802
  enumerable: false,
28767
28803
  configurable: true
28768
28804
  });
28769
- Object.defineProperty(NumericColumn.prototype, "oh", {
28805
+ Object.defineProperty(NumericColumn.prototype, "n4", {
28770
28806
  get: function () {
28771
- return this.of;
28807
+ return this.n3;
28772
28808
  },
28773
28809
  set: function (a) {
28774
- var b = this.of;
28775
- this.of = a;
28776
- if (this.of != b) {
28777
- this.et("FormatOverride", 9, b, this.of);
28810
+ var b = this.n3;
28811
+ this.n3 = a;
28812
+ if (this.n3 != b) {
28813
+ this.et("FormatSpecifiers", 9, b, this.n3);
28778
28814
  }
28779
28815
  },
28780
28816
  enumerable: false,
28781
28817
  configurable: true
28782
28818
  });
28783
- Object.defineProperty(NumericColumn.prototype, "n5", {
28819
+ Object.defineProperty(NumericColumn.prototype, "oi", {
28820
+ get: function () {
28821
+ return this.og;
28822
+ },
28823
+ set: function (a) {
28824
+ var b = this.og;
28825
+ this.og = a;
28826
+ if (this.og != b) {
28827
+ this.et("FormatOverride", 9, b, this.og);
28828
+ }
28829
+ },
28830
+ enumerable: false,
28831
+ configurable: true
28832
+ });
28833
+ Object.defineProperty(NumericColumn.prototype, "n6", {
28784
28834
  get: function () {
28785
28835
  return this.hz;
28786
28836
  },
@@ -28790,7 +28840,7 @@ var NumericColumn = /** @class */ /*@__PURE__*/ (function (_super) {
28790
28840
  enumerable: false,
28791
28841
  configurable: true
28792
28842
  });
28793
- Object.defineProperty(NumericColumn.prototype, "og", {
28843
+ Object.defineProperty(NumericColumn.prototype, "oh", {
28794
28844
  get: function () {
28795
28845
  return this.kq;
28796
28846
  },
@@ -28800,7 +28850,7 @@ var NumericColumn = /** @class */ /*@__PURE__*/ (function (_super) {
28800
28850
  enumerable: false,
28801
28851
  configurable: true
28802
28852
  });
28803
- Object.defineProperty(NumericColumn.prototype, "on", {
28853
+ Object.defineProperty(NumericColumn.prototype, "oo", {
28804
28854
  get: function () {
28805
28855
  return this.lk;
28806
28856
  },
@@ -28810,7 +28860,7 @@ var NumericColumn = /** @class */ /*@__PURE__*/ (function (_super) {
28810
28860
  enumerable: false,
28811
28861
  configurable: true
28812
28862
  });
28813
- Object.defineProperty(NumericColumn.prototype, "oo", {
28863
+ Object.defineProperty(NumericColumn.prototype, "op", {
28814
28864
  get: function () {
28815
28865
  if (this.gz == null) {
28816
28866
  return null;
@@ -28828,13 +28878,13 @@ var NumericColumn = /** @class */ /*@__PURE__*/ (function (_super) {
28828
28878
  switch (a) {
28829
28879
  case "FormatString":
28830
28880
  case "FormatSpecifiers":
28831
- if (this.os != null) {
28832
- this.n4 = new BindingFormatter();
28833
- this.n4.j = this.os;
28834
- this.n4.d = this.n3;
28881
+ if (this.ot != null) {
28882
+ this.n5 = new BindingFormatter();
28883
+ this.n5.j = this.ot;
28884
+ this.n5.d = this.n4;
28835
28885
  }
28836
28886
  else {
28837
- this.n4 = null;
28887
+ this.n5 = null;
28838
28888
  }
28839
28889
  break;
28840
28890
  }
@@ -28846,32 +28896,32 @@ var NumericColumn = /** @class */ /*@__PURE__*/ (function (_super) {
28846
28896
  return a.af == 4 ? "numeric_mergedCell" : "numeric";
28847
28897
  };
28848
28898
  NumericColumn.prototype.dz = function (a, b, c) {
28849
- return this.op(b);
28899
+ return this.oq(b);
28850
28900
  };
28851
28901
  NumericColumn.prototype.eo = function (a, b, c, d) {
28852
28902
  _super.prototype.eo.call(this, a, b, c, d);
28853
28903
  var e = a;
28854
28904
  {
28855
28905
  e.mk = false;
28856
- e.mo = this.n8(c);
28906
+ e.mo = this.n9(c);
28857
28907
  }
28858
28908
  };
28859
28909
  NumericColumn.prototype.el = function (a, b, c, d) {
28860
28910
  _super.prototype.el.call(this, a, b, c, d);
28861
28911
  var e = a;
28862
- e.my = this.od;
28863
- e.mw = this.oc;
28864
- e.m0 = this.oe;
28865
- e.nt = this.o1;
28866
- e.no = this.ox;
28867
- e.nv = this.o3;
28868
- e.nq = this.oz;
28869
- e.ni = this.os;
28870
- e.mg = this.n3;
28871
- e.na = this.oh;
28872
- e.mm = this.n7;
28873
- };
28874
- NumericColumn.prototype.n8 = function (a) {
28912
+ e.my = this.oe;
28913
+ e.mw = this.od;
28914
+ e.m0 = this.of;
28915
+ e.nt = this.o2;
28916
+ e.no = this.oy;
28917
+ e.nv = this.o4;
28918
+ e.nq = this.o0;
28919
+ e.ni = this.ot;
28920
+ e.mg = this.n4;
28921
+ e.na = this.oi;
28922
+ e.mm = this.n8;
28923
+ };
28924
+ NumericColumn.prototype.n9 = function (a) {
28875
28925
  if (a == null) {
28876
28926
  return NaN;
28877
28927
  }
@@ -28910,17 +28960,17 @@ var NumericColumn = /** @class */ /*@__PURE__*/ (function (_super) {
28910
28960
  }
28911
28961
  return NaN;
28912
28962
  };
28913
- NumericColumn.prototype.op = function (a) {
28963
+ NumericColumn.prototype.oq = function (a) {
28914
28964
  var b = false;
28915
28965
  var c = 0;
28916
28966
  var d = 0;
28917
28967
  {
28918
28968
  b = false;
28919
- d = this.n8(a);
28969
+ d = this.n9(a);
28920
28970
  }
28921
- if (this.oh != null) {
28971
+ if (this.oi != null) {
28922
28972
  var val_ = d;
28923
- var override_ = this.oh;
28973
+ var override_ = this.oi;
28924
28974
  return (override_.format(val_));
28925
28975
  }
28926
28976
  return NumericCellFormatter.d(this, d);
@@ -29849,7 +29899,7 @@ var SectionHeader = /** @class */ /*@__PURE__*/ (function (_super) {
29849
29899
  this.hl();
29850
29900
  if (this.g4.containsKey(c.f)) {
29851
29901
  var j = this.g4.item(c.f);
29852
- var k = j.n8(b);
29902
+ var k = j.n9(b);
29853
29903
  if (k != null) {
29854
29904
  e = k;
29855
29905
  }
@@ -30487,7 +30537,7 @@ var TemplateColumn = /** @class */ /*@__PURE__*/ (function (_super) {
30487
30537
  function TemplateColumn() {
30488
30538
  var _this = _super.call(this) || this;
30489
30539
  _this.cellUpdating = null;
30490
- _this.jm = false;
30540
+ _this.jl = false;
30491
30541
  return _this;
30492
30542
  }
30493
30543
  TemplateColumn.prototype.n = function (a) {
@@ -30506,7 +30556,7 @@ var TemplateColumn = /** @class */ /*@__PURE__*/ (function (_super) {
30506
30556
  TemplateColumn.prototype.el = function (a, b, c, d) {
30507
30557
  _super.prototype.el.call(this, a, b, c, d);
30508
30558
  };
30509
- TemplateColumn.prototype.n3 = function (a, b) {
30559
+ TemplateColumn.prototype.n4 = function (a, b) {
30510
30560
  if (this.cellUpdating != null) {
30511
30561
  this.cellUpdating(this, ((function () {
30512
30562
  var $ret = new TemplateCellUpdatingEventArgs();
@@ -30519,7 +30569,7 @@ var TemplateColumn = /** @class */ /*@__PURE__*/ (function (_super) {
30519
30569
  TemplateColumn.prototype.ev = function (a, b, c, d) {
30520
30570
  switch (a) {
30521
30571
  case "IsEditable":
30522
- this.jm = false;
30572
+ this.jl = false;
30523
30573
  break;
30524
30574
  }
30525
30575
  _super.prototype.ev.call(this, a, b, c, d);
@@ -30570,24 +30620,24 @@ var TextColumn = /** @class */ /*@__PURE__*/ (function (_super) {
30570
30620
  __extends(TextColumn, _super);
30571
30621
  function TextColumn() {
30572
30622
  var _this = _super !== null && _super.apply(this, arguments) || this;
30573
- _this.n4 = null;
30623
+ _this.n5 = null;
30574
30624
  return _this;
30575
30625
  }
30576
- Object.defineProperty(TextColumn.prototype, "n8", {
30626
+ Object.defineProperty(TextColumn.prototype, "n9", {
30577
30627
  get: function () {
30578
- return this.n4;
30628
+ return this.n5;
30579
30629
  },
30580
30630
  set: function (a) {
30581
- var b = this.n4;
30582
- this.n4 = a;
30583
- if (this.n4 != b) {
30584
- this.et("FormatString", 8, b, this.n4);
30631
+ var b = this.n5;
30632
+ this.n5 = a;
30633
+ if (this.n5 != b) {
30634
+ this.et("FormatString", 8, b, this.n5);
30585
30635
  }
30586
30636
  },
30587
30637
  enumerable: false,
30588
30638
  configurable: true
30589
30639
  });
30590
- Object.defineProperty(TextColumn.prototype, "n2", {
30640
+ Object.defineProperty(TextColumn.prototype, "n3", {
30591
30641
  get: function () {
30592
30642
  return this.hz;
30593
30643
  },
@@ -30597,7 +30647,7 @@ var TextColumn = /** @class */ /*@__PURE__*/ (function (_super) {
30597
30647
  enumerable: false,
30598
30648
  configurable: true
30599
30649
  });
30600
- Object.defineProperty(TextColumn.prototype, "n3", {
30650
+ Object.defineProperty(TextColumn.prototype, "n4", {
30601
30651
  get: function () {
30602
30652
  return this.kq;
30603
30653
  },
@@ -30607,7 +30657,7 @@ var TextColumn = /** @class */ /*@__PURE__*/ (function (_super) {
30607
30657
  enumerable: false,
30608
30658
  configurable: true
30609
30659
  });
30610
- Object.defineProperty(TextColumn.prototype, "n5", {
30660
+ Object.defineProperty(TextColumn.prototype, "n6", {
30611
30661
  get: function () {
30612
30662
  return this.lk;
30613
30663
  },
@@ -30617,7 +30667,7 @@ var TextColumn = /** @class */ /*@__PURE__*/ (function (_super) {
30617
30667
  enumerable: false,
30618
30668
  configurable: true
30619
30669
  });
30620
- Object.defineProperty(TextColumn.prototype, "n6", {
30670
+ Object.defineProperty(TextColumn.prototype, "n7", {
30621
30671
  get: function () {
30622
30672
  if (this.gz == null) {
30623
30673
  return null;
@@ -30644,13 +30694,13 @@ var TextColumn = /** @class */ /*@__PURE__*/ (function (_super) {
30644
30694
  };
30645
30695
  TextColumn.prototype.dz = function (a, b, c) {
30646
30696
  if (b != null) {
30647
- return this.n7(b);
30697
+ return this.n8(b);
30648
30698
  }
30649
30699
  else {
30650
30700
  return null;
30651
30701
  }
30652
30702
  };
30653
- TextColumn.prototype.n7 = function (a) {
30703
+ TextColumn.prototype.n8 = function (a) {
30654
30704
  if (typeof a === 'string') {
30655
30705
  return a;
30656
30706
  }
@@ -30686,7 +30736,7 @@ var TextHeader = /** @class */ /*@__PURE__*/ (function (_super) {
30686
30736
  var e = a;
30687
30737
  var f = b.cf(a.l);
30688
30738
  e.mk = f.hi;
30689
- e.m2 = f.nq;
30739
+ e.m2 = f.nr;
30690
30740
  e.mm = f.hm;
30691
30741
  };
30692
30742
  TextHeader.prototype.eo = function (a, b, c, d) {
@@ -30696,7 +30746,7 @@ var TextHeader = /** @class */ /*@__PURE__*/ (function (_super) {
30696
30746
  e.mh = f.k3;
30697
30747
  e.j1 = e.mh;
30698
30748
  e.n = f.hr;
30699
- e.mq = f.jb;
30749
+ e.mq = f.ja;
30700
30750
  e.mo = this.g0;
30701
30751
  };
30702
30752
  TextHeader.$t = markType(TextHeader, 'TextHeader', Header.$);
@@ -32580,7 +32630,7 @@ var VisibilityEngine = /** @class */ /*@__PURE__*/ (function (_super) {
32580
32630
  }
32581
32631
  else if (!m) {
32582
32632
  var ab = a.cf(aa);
32583
- if (!ab.jn) {
32633
+ if (!ab.jm) {
32584
32634
  l = true;
32585
32635
  }
32586
32636
  }
@@ -33614,7 +33664,7 @@ var VisibilityEngine = /** @class */ /*@__PURE__*/ (function (_super) {
33614
33664
  return;
33615
33665
  }
33616
33666
  var k = a.actualColumns._inner[b.l.a5];
33617
- if (!k.js()) {
33667
+ if (!k.jr()) {
33618
33668
  return;
33619
33669
  }
33620
33670
  var l = k.ic();
@@ -34095,7 +34145,7 @@ var SpatialEngine = /** @class */ /*@__PURE__*/ (function (_super) {
34095
34145
  }
34096
34146
  };
34097
34147
  SpatialEngine.prototype.q = function (a, b, c) {
34098
- var e_25, _a;
34148
+ var e_27, _a;
34099
34149
  b.absoluteWidth = 0;
34100
34150
  b.c4 = 0;
34101
34151
  b.cz = 0;
@@ -34138,8 +34188,8 @@ var SpatialEngine = /** @class */ /*@__PURE__*/ (function (_super) {
34138
34188
  }
34139
34189
  }
34140
34190
  }
34141
- catch (e_25_1) {
34142
- e_25 = { error: e_25_1 };
34191
+ catch (e_27_1) {
34192
+ e_27 = { error: e_27_1 };
34143
34193
  }
34144
34194
  finally {
34145
34195
  try {
@@ -34147,8 +34197,8 @@ var SpatialEngine = /** @class */ /*@__PURE__*/ (function (_super) {
34147
34197
  _a.call(_b);
34148
34198
  }
34149
34199
  finally {
34150
- if (e_25)
34151
- throw e_25.error;
34200
+ if (e_27)
34201
+ throw e_27.error;
34152
34202
  }
34153
34203
  }
34154
34204
  b.cz = Math.max(0, b.cz - b.cv);
@@ -34171,7 +34221,7 @@ var SpatialEngine = /** @class */ /*@__PURE__*/ (function (_super) {
34171
34221
  return b;
34172
34222
  };
34173
34223
  SpatialEngine.p = function (a, b, c, d, e, f, g) {
34174
- var e_26, _a, e_27, _b;
34224
+ var e_28, _a, e_29, _b;
34175
34225
  c -= d;
34176
34226
  c -= truncate((a.inset.left + a.inset.right));
34177
34227
  c -= (g.count * a.model.cv);
@@ -34189,7 +34239,7 @@ var SpatialEngine = /** @class */ /*@__PURE__*/ (function (_super) {
34189
34239
  while (f > 0 && !j) {
34190
34240
  j = true;
34191
34241
  try {
34192
- for (var _c = (e_26 = void 0, __values(fromEnum(g))), _d = _c.next(); !_d.done; _d = _c.next()) {
34242
+ for (var _c = (e_28 = void 0, __values(fromEnum(g))), _d = _c.next(); !_d.done; _d = _c.next()) {
34193
34243
  var l = _d.value;
34194
34244
  if (k.contains(l)) {
34195
34245
  continue;
@@ -34224,8 +34274,8 @@ var SpatialEngine = /** @class */ /*@__PURE__*/ (function (_super) {
34224
34274
  }
34225
34275
  }
34226
34276
  }
34227
- catch (e_26_1) {
34228
- e_26 = { error: e_26_1 };
34277
+ catch (e_28_1) {
34278
+ e_28 = { error: e_28_1 };
34229
34279
  }
34230
34280
  finally {
34231
34281
  try {
@@ -34233,8 +34283,8 @@ var SpatialEngine = /** @class */ /*@__PURE__*/ (function (_super) {
34233
34283
  _a.call(_c);
34234
34284
  }
34235
34285
  finally {
34236
- if (e_26)
34237
- throw e_26.error;
34286
+ if (e_28)
34287
+ throw e_28.error;
34238
34288
  }
34239
34289
  }
34240
34290
  i = (c) / f;
@@ -34296,8 +34346,8 @@ var SpatialEngine = /** @class */ /*@__PURE__*/ (function (_super) {
34296
34346
  }
34297
34347
  }
34298
34348
  }
34299
- catch (e_27_1) {
34300
- e_27 = { error: e_27_1 };
34349
+ catch (e_29_1) {
34350
+ e_29 = { error: e_29_1 };
34301
34351
  }
34302
34352
  finally {
34303
34353
  try {
@@ -34305,8 +34355,8 @@ var SpatialEngine = /** @class */ /*@__PURE__*/ (function (_super) {
34305
34355
  _b.call(_e);
34306
34356
  }
34307
34357
  finally {
34308
- if (e_27)
34309
- throw e_27.error;
34358
+ if (e_29)
34359
+ throw e_29.error;
34310
34360
  }
34311
34361
  }
34312
34362
  a.model.cz = Math.max(0, a.model.cz - a.model.cv);
@@ -36112,7 +36162,7 @@ var VisualModel = /** @class */ /*@__PURE__*/ (function (_super) {
36112
36162
  return a;
36113
36163
  };
36114
36164
  VisualModel.prototype.a = function (a) {
36115
- var e_28, _a;
36165
+ var e_30, _a;
36116
36166
  var b = new GridLayerExport(a.v);
36117
36167
  var c = a == this.a8;
36118
36168
  try {
@@ -36125,8 +36175,8 @@ var VisualModel = /** @class */ /*@__PURE__*/ (function (_super) {
36125
36175
  b.e(e);
36126
36176
  }
36127
36177
  }
36128
- catch (e_28_1) {
36129
- e_28 = { error: e_28_1 };
36178
+ catch (e_30_1) {
36179
+ e_30 = { error: e_30_1 };
36130
36180
  }
36131
36181
  finally {
36132
36182
  try {
@@ -36134,8 +36184,8 @@ var VisualModel = /** @class */ /*@__PURE__*/ (function (_super) {
36134
36184
  _a.call(_b);
36135
36185
  }
36136
36186
  finally {
36137
- if (e_28)
36138
- throw e_28.error;
36187
+ if (e_30)
36188
+ throw e_30.error;
36139
36189
  }
36140
36190
  }
36141
36191
  return b;