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
@@ -189,6 +189,7 @@ import { LayoutAction_$type } from "./LayoutAction";
189
189
  import { ToolActionInfo } from "igniteui-webcomponents-core";
190
190
  import { ICommandAvailabilityListener_$type } from "igniteui-webcomponents-core";
191
191
  import { ICommandStateChangedListener_$type } from "igniteui-webcomponents-core";
192
+ import { IToolbarContextAccessor_$type } from "igniteui-webcomponents-core";
192
193
  import { Stack$1 } from "igniteui-webcomponents-core";
193
194
  import { DataSourceSpecialRow } from "igniteui-webcomponents-core";
194
195
  import { RowRange } from "./RowRange";
@@ -5234,7 +5235,7 @@ export let Pager = /*@__PURE__*/ (() => {
5234
5235
  if (this.b.isVirtual) {
5235
5236
  this.b.firstVisibleIndexRequested = a;
5236
5237
  this.b.lastVisibleIndexRequested = a + this.ah;
5237
- this.d.ed = false;
5238
+ this.d.ef = false;
5238
5239
  }
5239
5240
  this.b2();
5240
5241
  this.ac.clear();
@@ -5245,7 +5246,7 @@ export let Pager = /*@__PURE__*/ (() => {
5245
5246
  let c = this.b.getItemAtIndex(b);
5246
5247
  this.ac.add1(c);
5247
5248
  if (c != null) {
5248
- this.d.ed = true;
5249
+ this.d.ef = true;
5249
5250
  }
5250
5251
  }
5251
5252
  let d = new Array(this.ac.count);
@@ -5256,7 +5257,7 @@ export let Pager = /*@__PURE__*/ (() => {
5256
5257
  if (this.targetGrid != null) {
5257
5258
  this.targetGrid.actualDataSource.queueAutoRefresh();
5258
5259
  this.targetGrid.actualDataSource.flushAutoRefresh();
5259
- if (this.b.isVirtual && this.d.ed) {
5260
+ if (this.b.isVirtual && this.d.ef) {
5260
5261
  this.targetGrid.wk(0, this.ao - 1);
5261
5262
  }
5262
5263
  else {
@@ -5287,7 +5288,7 @@ export let Pager = /*@__PURE__*/ (() => {
5287
5288
  this.b.summaryScope = this.p;
5288
5289
  let b = this.b;
5289
5290
  b.schemaChanged = delegateCombine(b.schemaChanged, runOn(this, this.bj));
5290
- this.d.ec = this.b;
5291
+ this.d.ee = this.b;
5291
5292
  switch (this.l) {
5292
5293
  case 1:
5293
5294
  case 0:
@@ -5788,13 +5789,13 @@ export let ColumnController = /*@__PURE__*/ (() => {
5788
5789
  let a = new Dictionary$2(String_$type, Boolean_$type, 0);
5789
5790
  for (let b = 0; b < this.i.count; b++) {
5790
5791
  let c = this.i._inner[b];
5791
- if (!c.ji) {
5792
+ if (!c.jh) {
5792
5793
  a.item(c.lo, true);
5793
5794
  }
5794
5795
  }
5795
5796
  let d = false;
5796
5797
  for (let e = this.i.count - 1; e >= 0; e--) {
5797
- if (this.i._inner[e].ji) {
5798
+ if (this.i._inner[e].jh) {
5798
5799
  this.k.removeExternalColumn(this.i._inner[e].externalObject);
5799
5800
  }
5800
5801
  }
@@ -5857,7 +5858,7 @@ export let ColumnController = /*@__PURE__*/ (() => {
5857
5858
  break;
5858
5859
  }
5859
5860
  c.lo = a;
5860
- c.ji = true;
5861
+ c.jh = true;
5861
5862
  c.mf = this.t(a) ? c.lo : (createGuid());
5862
5863
  return c;
5863
5864
  }
@@ -6342,7 +6343,7 @@ export let DataGrid = /*@__PURE__*/ (() => {
6342
6343
  }
6343
6344
  if (a.l.aj) {
6344
6345
  let e = this.ay.h(a.l);
6345
- if (e.jm && !this.cj.j && this.editOnKeyPress) {
6346
+ if (e.jl && !this.cj.j && this.editOnKeyPress) {
6346
6347
  this.cj.x();
6347
6348
  }
6348
6349
  }
@@ -6363,7 +6364,7 @@ export let DataGrid = /*@__PURE__*/ (() => {
6363
6364
  if (a.w == 0 && this.headerClickAction != 4) {
6364
6365
  this.f9.d(this.cf(a.l));
6365
6366
  let f = this.ay.h(a.l);
6366
- f.mz("Sorted");
6367
+ f.m0("Sorted");
6367
6368
  }
6368
6369
  this.ik = false;
6369
6370
  if (this.selectionMode == 5) {
@@ -6500,7 +6501,7 @@ export let DataGrid = /*@__PURE__*/ (() => {
6500
6501
  this.hu = a.bk && a.bl;
6501
6502
  if (this.dragger != null && this.columnResizingMode != 2 && this.ao.h) {
6502
6503
  let d = this.ay.j._inner[a.l.a5];
6503
- if (d.jq) {
6504
+ if (d.jp) {
6504
6505
  let e = this.model.b9._inner[this.ao.a5];
6505
6506
  this.mb = e.k;
6506
6507
  this.l8 = this.model.cz;
@@ -6574,7 +6575,7 @@ export let DataGrid = /*@__PURE__*/ (() => {
6574
6575
  if (this.dragger == null || !this.dragger.isDragActive) {
6575
6576
  if (a.l.h && this.columnResizingMode != 2) {
6576
6577
  let d = this.ay.j._inner[a.l.a5];
6577
- if (d.jq) {
6578
+ if (d.jp) {
6578
6579
  this.externalGrid.setResizeCursor();
6579
6580
  }
6580
6581
  }
@@ -6597,7 +6598,7 @@ export let DataGrid = /*@__PURE__*/ (() => {
6597
6598
  this.md = this.model.actualVisibleRegion.top;
6598
6599
  if ((this.dragger == null || !this.dragger.isDragActive) && a.g && !a.h && !a.ay && this.columnMovingMode != 1) {
6599
6600
  let e = this.cf(a);
6600
- if (e != null && e.jo) {
6601
+ if (e != null && e.jn) {
6601
6602
  this.externalGrid.ensureColumnsAreManual();
6602
6603
  }
6603
6604
  this.externalGrid.setHandCursor();
@@ -6617,7 +6618,7 @@ export let DataGrid = /*@__PURE__*/ (() => {
6617
6618
  }
6618
6619
  this.dragger.dragStart(b, c, this.model.actualVisibleRegion.x, this.model.actualVisibleRegion.y, 0, a, d);
6619
6620
  }
6620
- else if (this.selectionMode == 2 && this.mouseDragSelectionEnabled && a.aj) {
6621
+ else if (this.selectionMode == 2 && this.mouseDragSelectionEnabled && (a.aj || (a.ay && !a.g))) {
6621
6622
  if (!d) {
6622
6623
  this.je = true;
6623
6624
  this.selectedKeys.clear();
@@ -6658,7 +6659,7 @@ export let DataGrid = /*@__PURE__*/ (() => {
6658
6659
  if (this.ly != -1) {
6659
6660
  let c = this.model.b9._inner[this.dragger.cellPath.a5];
6660
6661
  this.c5.ah(this, this.columnAnimationSettings, c, this.ly);
6661
- this.columns._inner[this.dragger.cellPath.a5].mz("Resized");
6662
+ this.columns._inner[this.dragger.cellPath.a5].m0("Resized");
6662
6663
  }
6663
6664
  else {
6664
6665
  this.renderingEngine.refresh(this.model, false);
@@ -6677,11 +6678,11 @@ export let DataGrid = /*@__PURE__*/ (() => {
6677
6678
  this.moveColumn(this.dragger.cellPath.a5, this.nk);
6678
6679
  this.ld = false;
6679
6680
  this.pinColumn(this.columns._inner[this.nk], this.fn);
6680
- this.columns._inner[this.nk].mz("Pinned");
6681
+ this.columns._inner[this.nk].m0("Pinned");
6681
6682
  }
6682
6683
  else {
6683
6684
  this.moveColumn(this.dragger.cellPath.a5, this.nk);
6684
- this.columns._inner[this.nk].mz("Moved");
6685
+ this.columns._inner[this.nk].m0("Moved");
6685
6686
  }
6686
6687
  d = false;
6687
6688
  }
@@ -10240,7 +10241,7 @@ export let DataGrid = /*@__PURE__*/ (() => {
10240
10241
  this.columnsAutoGenerated(this, a);
10241
10242
  }
10242
10243
  for (let b of fromEnum(this.actualColumns)) {
10243
- b.jr = false;
10244
+ b.jq = false;
10244
10245
  }
10245
10246
  }
10246
10247
  onSizeChanged(a, b) {
@@ -10323,19 +10324,19 @@ export let DataGrid = /*@__PURE__*/ (() => {
10323
10324
  return this.ay.h(a);
10324
10325
  }
10325
10326
  hideThenRemoveColumn(a) {
10326
- a.jh = true;
10327
- a.jp = true;
10327
+ a.jg = true;
10328
+ a.jo = true;
10328
10329
  }
10329
10330
  exchangeColumn(a, b) {
10330
10331
  let c = this.columns.indexOf(b);
10331
10332
  if (c == -1) {
10332
10333
  return;
10333
10334
  }
10334
- if ((a != null && a.jo) || (b != null && b.jo)) {
10335
+ if ((a != null && a.jn) || (b != null && b.jn)) {
10335
10336
  throw new InvalidOperationException(1, "Cannot exchange a column created from markup");
10336
10337
  }
10337
10338
  if (this.columns.contains(a)) {
10338
- if (a.jp) {
10339
+ if (a.jo) {
10339
10340
  this.externalGrid.removeExternalColumn(a.externalObject);
10340
10341
  }
10341
10342
  else {
@@ -10359,7 +10360,7 @@ export let DataGrid = /*@__PURE__*/ (() => {
10359
10360
  }
10360
10361
  b.il = a.il;
10361
10362
  if (!this.jl(a)) {
10362
- a.jp = false;
10363
+ a.jo = false;
10363
10364
  a.ht = 5;
10364
10365
  this.externalGrid.removeExternalColumn(b.externalObject);
10365
10366
  this.v6(a);
@@ -10450,10 +10451,10 @@ export let DataGrid = /*@__PURE__*/ (() => {
10450
10451
  b.columnCellsPropertyUpdating = delegateCombine(b.columnCellsPropertyUpdating, runOn(this, this.ue));
10451
10452
  b.columnHeaderCellsPropertyUpdating = delegateCombine(b.columnHeaderCellsPropertyUpdating, runOn(this, this.uh));
10452
10453
  this.gb.t(a, b, this.model);
10453
- if (b.jp) {
10454
+ if (b.jo) {
10454
10455
  b.ht = 3;
10455
10456
  }
10456
- if (this.jj(b) && !b.jp && b.ht != 3) {
10457
+ if (this.jj(b) && !b.jo && b.ht != 3) {
10457
10458
  let c = b.ht;
10458
10459
  b.ht = 1;
10459
10460
  this.xu();
@@ -10530,7 +10531,7 @@ export let DataGrid = /*@__PURE__*/ (() => {
10530
10531
  }
10531
10532
  if (b == "SortDirection" && false == this.j3) {
10532
10533
  this.f9.f(a, a.hr);
10533
- a.mz("Sorted");
10534
+ a.m0("Sorted");
10534
10535
  }
10535
10536
  if (stringStartsWith(b, "transition@@@")) {
10536
10537
  this.c5.r(this, f, b, c, d, e, 1);
@@ -10599,18 +10600,18 @@ export let DataGrid = /*@__PURE__*/ (() => {
10599
10600
  let c = this.columns._inner[a];
10600
10601
  b = Math.min(this.columns.count - 1, Math.max(0, b));
10601
10602
  this.lc = true;
10602
- if (c != null && c.jo) {
10603
+ if (c != null && c.jn) {
10603
10604
  throw new InvalidOperationException(1, "Can't move a column that was created from markup");
10604
10605
  }
10605
10606
  if (b > a) {
10606
10607
  let d = this.columns._inner[b - 1];
10607
- if (d.jo) {
10608
+ if (d.jn) {
10608
10609
  throw new InvalidOperationException(1, "Can't move a column to before columns created from markup");
10609
10610
  }
10610
10611
  }
10611
10612
  else {
10612
10613
  let e = this.columns._inner[b];
10613
- if (e.jo) {
10614
+ if (e.jn) {
10614
10615
  throw new InvalidOperationException(1, "Can't move a column to before columns created from markup");
10615
10616
  }
10616
10617
  }
@@ -10652,7 +10653,7 @@ export let DataGrid = /*@__PURE__*/ (() => {
10652
10653
  break;
10653
10654
  }
10654
10655
  let j = d._inner[i];
10655
- if (!j.jp && j.il == g) {
10656
+ if (!j.jo && j.il == g) {
10656
10657
  h = i;
10657
10658
  }
10658
10659
  } while (h == -1);
@@ -10775,7 +10776,7 @@ export let DataGrid = /*@__PURE__*/ (() => {
10775
10776
  this.yy();
10776
10777
  break;
10777
10778
  case "IsHidden":
10778
- if (c.jp) {
10779
+ if (c.jo) {
10779
10780
  if (this.jm(c)) {
10780
10781
  let d = c.ht;
10781
10782
  c.ht = 2;
@@ -10784,7 +10785,7 @@ export let DataGrid = /*@__PURE__*/ (() => {
10784
10785
  }
10785
10786
  else {
10786
10787
  c.ht = 3;
10787
- if (c.je) {
10788
+ if (c.jd) {
10788
10789
  this.externalGrid.ensureColumnsAreManual();
10789
10790
  this.externalGrid.removeExternalColumn(c.externalObject);
10790
10791
  }
@@ -10809,7 +10810,7 @@ export let DataGrid = /*@__PURE__*/ (() => {
10809
10810
  this.columnHiddenChanged(this, ((() => {
10810
10811
  let $ret = new ColumnHiddenChangedEventArgs();
10811
10812
  $ret.a = c;
10812
- $ret.b = c.jp;
10813
+ $ret.b = c.jo;
10813
10814
  return $ret;
10814
10815
  })()));
10815
10816
  }
@@ -11359,7 +11360,7 @@ export let DataGrid = /*@__PURE__*/ (() => {
11359
11360
  if (a != null) {
11360
11361
  let b = this.activeCell.b;
11361
11362
  let c = this.actualColumns.indexOf(a);
11362
- if (a.jm) {
11363
+ if (a.jl) {
11363
11364
  let d = this.model.e(c, b);
11364
11365
  if (d != null) {
11365
11366
  this.cj.ab(d);
@@ -11497,13 +11498,13 @@ export let DataGrid = /*@__PURE__*/ (() => {
11497
11498
  let b = this.actualColumns.count - 1;
11498
11499
  let c = this.gb.j(b, this.model);
11499
11500
  if (a) {
11500
- while (b > 0 && (this.actualColumns._inner[c].jp || this.actualColumns._inner[c].il == 1)) {
11501
+ while (b > 0 && (this.actualColumns._inner[c].jo || this.actualColumns._inner[c].il == 1)) {
11501
11502
  b--;
11502
11503
  c = this.gb.j(b, this.model);
11503
11504
  }
11504
11505
  }
11505
11506
  else {
11506
- while (b > 0 && (this.actualColumns._inner[c].jp || this.actualColumns._inner[c].il != 0)) {
11507
+ while (b > 0 && (this.actualColumns._inner[c].jo || this.actualColumns._inner[c].il != 0)) {
11507
11508
  b--;
11508
11509
  c = this.gb.j(b, this.model);
11509
11510
  }
@@ -11514,13 +11515,13 @@ export let DataGrid = /*@__PURE__*/ (() => {
11514
11515
  let b = 0;
11515
11516
  let c = this.gb.j(b, this.model);
11516
11517
  if (a) {
11517
- while (b < this.actualColumns.count - 1 && (this.actualColumns._inner[c].jp || this.actualColumns._inner[c].il == 2)) {
11518
+ while (b < this.actualColumns.count - 1 && (this.actualColumns._inner[c].jo || this.actualColumns._inner[c].il == 2)) {
11518
11519
  b++;
11519
11520
  c = this.gb.j(b, this.model);
11520
11521
  }
11521
11522
  }
11522
11523
  else {
11523
- while (b < this.actualColumns.count - 1 && (this.actualColumns._inner[c].jp || this.actualColumns._inner[c].il != 0)) {
11524
+ while (b < this.actualColumns.count - 1 && (this.actualColumns._inner[c].jo || this.actualColumns._inner[c].il != 0)) {
11524
11525
  b++;
11525
11526
  c = this.gb.j(b, this.model);
11526
11527
  }
@@ -11532,21 +11533,21 @@ export let DataGrid = /*@__PURE__*/ (() => {
11532
11533
  if (!b) {
11533
11534
  c = this.gb.j(c, this.model);
11534
11535
  }
11535
- if (this.actualColumns._inner[c].jp) {
11536
+ if (this.actualColumns._inner[c].jo) {
11536
11537
  let d = c;
11537
11538
  let e = this.model.b9._inner[c].n;
11538
- while (e > 0 && this.actualColumns._inner[d].jp) {
11539
+ while (e > 0 && this.actualColumns._inner[d].jo) {
11539
11540
  e--;
11540
11541
  d = this.gb.j(e, this.model);
11541
11542
  }
11542
- if (this.actualColumns._inner[d].jp) {
11543
+ if (this.actualColumns._inner[d].jo) {
11543
11544
  d = c;
11544
11545
  e = this.model.b9._inner[c].n;
11545
- while (e < this.actualColumns.count - 1 && this.actualColumns._inner[d].jp) {
11546
+ while (e < this.actualColumns.count - 1 && this.actualColumns._inner[d].jo) {
11546
11547
  e++;
11547
11548
  d = this.gb.j(e, this.model);
11548
11549
  }
11549
- if (!this.actualColumns._inner[d].jp) {
11550
+ if (!this.actualColumns._inner[d].jo) {
11550
11551
  c = d;
11551
11552
  }
11552
11553
  }
@@ -11565,21 +11566,21 @@ export let DataGrid = /*@__PURE__*/ (() => {
11565
11566
  }
11566
11567
  nu(a) {
11567
11568
  a = Math.min(a, this.actualColumns.count - 1);
11568
- if (this.actualColumns._inner[a].jp) {
11569
+ if (this.actualColumns._inner[a].jo) {
11569
11570
  let b = a;
11570
11571
  let c = this.model.b9._inner[b].n;
11571
- while (c < this.actualColumns.count - 1 && this.actualColumns._inner[b].jp) {
11572
+ while (c < this.actualColumns.count - 1 && this.actualColumns._inner[b].jo) {
11572
11573
  c++;
11573
11574
  b = this.gb.j(c, this.model);
11574
11575
  }
11575
- if (this.actualColumns._inner[b].jp) {
11576
+ if (this.actualColumns._inner[b].jo) {
11576
11577
  b = a;
11577
11578
  c = this.model.b9._inner[b].n;
11578
- while (c > 0 && this.actualColumns._inner[b].jp) {
11579
+ while (c > 0 && this.actualColumns._inner[b].jo) {
11579
11580
  c--;
11580
11581
  b = this.gb.j(c, this.model);
11581
11582
  }
11582
- if (!this.actualColumns._inner[b].jp) {
11583
+ if (!this.actualColumns._inner[b].jo) {
11583
11584
  a = b;
11584
11585
  }
11585
11586
  }
@@ -11870,7 +11871,7 @@ export let DataGrid = /*@__PURE__*/ (() => {
11870
11871
  }
11871
11872
  d = this.model.b9._inner[o].n;
11872
11873
  h = p.lt();
11873
- } while (this.cj.j && g >= 0 && (!l || !p.jm));
11874
+ } while (this.cj.j && g >= 0 && (!l || !p.jl));
11874
11875
  if (this.groupSummaryDisplayMode != 1) {
11875
11876
  if (j == 1 || j == 2) {
11876
11877
  let q = this.n1();
@@ -11903,7 +11904,7 @@ export let DataGrid = /*@__PURE__*/ (() => {
11903
11904
  }
11904
11905
  d = this.model.b9._inner[s].n;
11905
11906
  h = t.lt();
11906
- } while (this.cj.j && g < this.e7.getRowCount() && (!l || !t.jm));
11907
+ } while (this.cj.j && g < this.e7.getRowCount() && (!l || !t.jl));
11907
11908
  if (this.groupSummaryDisplayMode != 1) {
11908
11909
  if (j == 1 || j == 2) {
11909
11910
  let u = this.nw();
@@ -12048,7 +12049,7 @@ export let DataGrid = /*@__PURE__*/ (() => {
12048
12049
  else if (this.ju() && this.enterBehavior == 1 && (c == 0 || c == 3)) {
12049
12050
  let d = this.ad.s();
12050
12051
  let e = this.actualColumns._inner[d];
12051
- if (e != null && e.jm) {
12052
+ if (e != null && e.jl) {
12052
12053
  let f = this.model.e(d, this.activeCell.b);
12053
12054
  return this.lb(f);
12054
12055
  }
@@ -12153,7 +12154,7 @@ export let DataGrid = /*@__PURE__*/ (() => {
12153
12154
  if (this.ju() && (a == 0 || a == 3)) {
12154
12155
  let b = this.ad.s();
12155
12156
  let c = this.actualColumns._inner[b];
12156
- if (c != null && c.jm) {
12157
+ if (c != null && c.jl) {
12157
12158
  let d = this.model.e(b, this.activeCell.b);
12158
12159
  if (d == null) {
12159
12160
  this.ap = new CellPath(3, b, this.activeCell.b, 1);
@@ -12181,7 +12182,7 @@ export let DataGrid = /*@__PURE__*/ (() => {
12181
12182
  }
12182
12183
  }
12183
12184
  let c = this.cf(a.l);
12184
- if (!c.jm) {
12185
+ if (!c.jl) {
12185
12186
  return false;
12186
12187
  }
12187
12188
  this.cj.ad(a);
@@ -13184,7 +13185,7 @@ export let DataGrid = /*@__PURE__*/ (() => {
13184
13185
  return;
13185
13186
  }
13186
13187
  let a = this.ay.g(this.activeCell.d);
13187
- if (a.jm) {
13188
+ if (a.jl) {
13188
13189
  let b = this.model.h(a.ko);
13189
13190
  let c = this.model.e(b.n, this.activeCell.b);
13190
13191
  if (c != null) {
@@ -13374,7 +13375,7 @@ export let DataGrid = /*@__PURE__*/ (() => {
13374
13375
  let i = new SaveLayoutColumn();
13375
13376
  i.o = h.lo;
13376
13377
  i.e = h.width;
13377
- i.i = toNullable(Boolean_$type, h.jp);
13378
+ i.i = toNullable(Boolean_$type, h.jo);
13378
13379
  i.j = toNullable(PinnedPositions_$type, h.il);
13379
13380
  let j = "";
13380
13381
  let k = "";
@@ -13570,7 +13571,7 @@ export let DataGrid = /*@__PURE__*/ (() => {
13570
13571
  j.width = o;
13571
13572
  }
13572
13573
  if (nullableNotEquals(i.i, null)) {
13573
- j.jp = i.i.value;
13574
+ j.jo = i.i.value;
13574
13575
  }
13575
13576
  if (nullableNotEquals(i.j, null)) {
13576
13577
  j.il = i.j.value;
@@ -15396,7 +15397,7 @@ export let GridAnimationManager = /*@__PURE__*/ (() => {
15396
15397
  k.effectsFinished = delegateCombine(k.effectsFinished, (l, m) => {
15397
15398
  i.ht = 3;
15398
15399
  c.a = 3;
15399
- if (i.je) {
15400
+ if (i.jd) {
15400
15401
  a.externalGrid.ensureColumnsAreManual();
15401
15402
  a.externalGrid.removeExternalColumn(i.externalObject);
15402
15403
  }
@@ -15570,7 +15571,7 @@ export let GridAnimationManager = /*@__PURE__*/ (() => {
15570
15571
  let j = a.columnPropertyUpdatingAnimationMode;
15571
15572
  let k = new ColumnCellsEffect();
15572
15573
  k.bx(i);
15573
- k.t = 7;
15574
+ k.t = 8;
15574
15575
  k.as = true;
15575
15576
  if (g == 0) {
15576
15577
  k.v = 5;
@@ -15735,7 +15736,7 @@ export let GridAnimationManager = /*@__PURE__*/ (() => {
15735
15736
  let m = a.columnPropertyUpdatingAnimationMode;
15736
15737
  let n = new ColumnCellsEffect();
15737
15738
  n.bx(l);
15738
- n.t = 7;
15739
+ n.t = 8;
15739
15740
  n.as = true;
15740
15741
  if (g) {
15741
15742
  n.v = 5;
@@ -15937,7 +15938,7 @@ export let GridAnimationManager = /*@__PURE__*/ (() => {
15937
15938
  for (let h = b; h <= c; h++) {
15938
15939
  let i = new RowCellsEffect();
15939
15940
  g.g(i);
15940
- i.t = 6;
15941
+ i.t = 7;
15941
15942
  i.bx(e);
15942
15943
  i.al = true;
15943
15944
  i.bq = 1;
@@ -16315,7 +16316,7 @@ export let GridAnimationManager = /*@__PURE__*/ (() => {
16315
16316
  let h = new CellEffect();
16316
16317
  h.onFinished = delegateCombine(h.onFinished, (i) => this.w(e));
16317
16318
  h.onCanceled = delegateCombine(h.onCanceled, (i, j) => this.v(e));
16318
- h.t = 8;
16319
+ h.t = 9;
16319
16320
  h.bx(f);
16320
16321
  h.al = true;
16321
16322
  h.bq = 1;
@@ -16392,7 +16393,7 @@ export let GridAnimationManager = /*@__PURE__*/ (() => {
16392
16393
  let h = new CellEffect();
16393
16394
  h.onFinished = delegateCombine(h.onFinished, (i) => this.w(e));
16394
16395
  h.onCanceled = delegateCombine(h.onCanceled, (i, j) => this.v(e));
16395
- h.t = 8;
16396
+ h.t = 9;
16396
16397
  h.bx(f);
16397
16398
  h.al = true;
16398
16399
  h.bq = 0;
@@ -16508,7 +16509,7 @@ export let GridAnimationManager = /*@__PURE__*/ (() => {
16508
16509
  let e = new RowCellsEffect();
16509
16510
  e.onFinished = delegateCombine(e.onFinished, (f) => this.w(c));
16510
16511
  e.onCanceled = delegateCombine(e.onCanceled, (f, g) => this.v(c));
16511
- e.t = 5;
16512
+ e.t = 6;
16512
16513
  e.bx(d);
16513
16514
  e.al = true;
16514
16515
  e.bq = 1;
@@ -16549,7 +16550,7 @@ export let GridAnimationManager = /*@__PURE__*/ (() => {
16549
16550
  let e = new RowCellsEffect();
16550
16551
  e.onFinished = delegateCombine(e.onFinished, (f) => this.w(c));
16551
16552
  e.onCanceled = delegateCombine(e.onCanceled, (f, g) => this.v(c));
16552
- e.t = 5;
16553
+ e.t = 6;
16553
16554
  e.bx(d);
16554
16555
  e.al = true;
16555
16556
  e.bq = 0;
@@ -19153,47 +19154,47 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
19153
19154
  this.ku = null;
19154
19155
  this.kv = null;
19155
19156
  this.ks = null;
19156
- this.np = null;
19157
- this.nk = null;
19158
- this.nn = null;
19159
- this.ni = null;
19157
+ this.nq = null;
19158
+ this.nl = null;
19160
19159
  this.no = null;
19161
19160
  this.nj = null;
19161
+ this.np = null;
19162
+ this.nk = null;
19162
19163
  this.h5 = null;
19163
19164
  this.hu = null;
19164
19165
  this.jx = NaN;
19165
- this.i6 = false;
19166
- this.i0 = false;
19167
- this.i9 = false;
19166
+ this.i5 = false;
19167
+ this.iz = false;
19168
+ this.i8 = false;
19168
19169
  this.g0 = null;
19169
19170
  this.g2 = null;
19170
19171
  this.h9 = null;
19171
- this.i5 = true;
19172
- this.i8 = true;
19173
- this.i7 = false;
19174
- this.ja = false;
19172
+ this.i4 = true;
19173
+ this.i7 = true;
19174
+ this.i6 = false;
19175
+ this.i9 = false;
19175
19176
  this.hq = 0;
19176
19177
  this.ij = 0;
19177
- this.iz = false;
19178
+ this.iy = false;
19178
19179
  this.hg = 0;
19179
19180
  this.hh = 0;
19180
- this.ng = null;
19181
- this.nl = null;
19181
+ this.nh = null;
19182
+ this.nm = null;
19182
19183
  this.hl = 0;
19183
19184
  this.hk = 0;
19185
+ this.iu = true;
19186
+ this.i0 = true;
19187
+ this.iw = true;
19188
+ this.i2 = true;
19184
19189
  this.iv = true;
19185
19190
  this.i1 = true;
19186
- this.ix = true;
19187
19191
  this.i3 = true;
19188
- this.iw = true;
19189
- this.i2 = true;
19190
- this.i4 = true;
19191
- this.nm = null;
19192
- this.nh = null;
19192
+ this.nn = null;
19193
+ this.ni = null;
19193
19194
  this.jw = NaN;
19194
19195
  this.jv = 0;
19195
- this.is = null;
19196
19196
  this.ir = null;
19197
+ this.iq = null;
19197
19198
  this.hy = 0;
19198
19199
  this.kp = null;
19199
19200
  this.kt = null;
@@ -19210,20 +19211,20 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
19210
19211
  this.h7 = null;
19211
19212
  this.columnCellsPropertyUpdating = null;
19212
19213
  this.columnHeaderCellsPropertyUpdating = null;
19213
- this.ip = null;
19214
- this.iy = false;
19214
+ this.io = null;
19215
+ this.ix = false;
19215
19216
  this.ju = null;
19216
19217
  this.hw = null;
19217
19218
  this._commandCompleted = null;
19218
19219
  this._invalidateActions = null;
19219
- this.im = null;
19220
- this.iy = true;
19220
+ this.jt = null;
19221
+ this.ix = true;
19221
19222
  this.header = new TextHeader();
19222
- this.iy = false;
19223
+ this.ix = false;
19223
19224
  this.e = this.f();
19224
19225
  this.j = this.k();
19225
- this.nu = this.ny();
19226
- this.ns = this.nx();
19226
+ this.nv = this.nz();
19227
+ this.nt = this.ny();
19227
19228
  this.ko = DataGridColumn.kn++;
19228
19229
  this.h7 = new GridFilterOperandsCollection();
19229
19230
  let a = this.h7;
@@ -19277,10 +19278,10 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
19277
19278
  }
19278
19279
  return false;
19279
19280
  }
19280
- ny() {
19281
+ nz() {
19281
19282
  return GridStyleRepository.bg;
19282
19283
  }
19283
- nx() {
19284
+ ny() {
19284
19285
  return GridStyleRepository.a7;
19285
19286
  }
19286
19287
  get ht() {
@@ -19396,44 +19397,24 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
19396
19397
  this.et("ActualHeaderText", 8, b, this.ks);
19397
19398
  }
19398
19399
  }
19399
- get n1() {
19400
- return this.np;
19401
- }
19402
- set n1(a) {
19403
- let b = this.np;
19404
- this.np = a;
19405
- if (this.np != b) {
19406
- this.et("SelectedBackground", 10, b, this.np);
19407
- }
19408
- }
19409
- get nu() {
19410
- return this.nk;
19411
- }
19412
- set nu(a) {
19413
- let b = this.nk;
19414
- this.nk = a;
19415
- if (this.nk != b) {
19416
- this.et("ActualSelectedBackground", 2, b, this.nk);
19417
- }
19418
- }
19419
- get nz() {
19420
- return this.nn;
19400
+ get n2() {
19401
+ return this.nq;
19421
19402
  }
19422
- set nz(a) {
19423
- let b = this.nn;
19424
- this.nn = a;
19425
- if (this.nn != b) {
19426
- this.et("RowHoverBackground", 10, b, this.nn);
19403
+ set n2(a) {
19404
+ let b = this.nq;
19405
+ this.nq = a;
19406
+ if (this.nq != b) {
19407
+ this.et("SelectedBackground", 10, b, this.nq);
19427
19408
  }
19428
19409
  }
19429
- get ns() {
19430
- return this.ni;
19410
+ get nv() {
19411
+ return this.nl;
19431
19412
  }
19432
- set ns(a) {
19433
- let b = this.ni;
19434
- this.ni = a;
19435
- if (this.ni != b) {
19436
- this.et("ActualHoverBackground", 2, b, this.ni);
19413
+ set nv(a) {
19414
+ let b = this.nl;
19415
+ this.nl = a;
19416
+ if (this.nl != b) {
19417
+ this.et("ActualSelectedBackground", 2, b, this.nl);
19437
19418
  }
19438
19419
  }
19439
19420
  get n0() {
@@ -19443,7 +19424,7 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
19443
19424
  let b = this.no;
19444
19425
  this.no = a;
19445
19426
  if (this.no != b) {
19446
- this.et("RowHoverTextColor", 10, b, this.no);
19427
+ this.et("RowHoverBackground", 10, b, this.no);
19447
19428
  }
19448
19429
  }
19449
19430
  get nt() {
@@ -19453,7 +19434,27 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
19453
19434
  let b = this.nj;
19454
19435
  this.nj = a;
19455
19436
  if (this.nj != b) {
19456
- this.et("ActualRowHoverTextColor", 2, b, this.nj);
19437
+ this.et("ActualHoverBackground", 2, b, this.nj);
19438
+ }
19439
+ }
19440
+ get n1() {
19441
+ return this.np;
19442
+ }
19443
+ set n1(a) {
19444
+ let b = this.np;
19445
+ this.np = a;
19446
+ if (this.np != b) {
19447
+ this.et("RowHoverTextColor", 10, b, this.np);
19448
+ }
19449
+ }
19450
+ get nu() {
19451
+ return this.nk;
19452
+ }
19453
+ set nu(a) {
19454
+ let b = this.nk;
19455
+ this.nk = a;
19456
+ if (this.nk != b) {
19457
+ this.et("ActualRowHoverTextColor", 2, b, this.nk);
19457
19458
  }
19458
19459
  }
19459
19460
  get h6() {
@@ -19486,36 +19487,36 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
19486
19487
  this.et("MinWidth", 10, b, a);
19487
19488
  }
19488
19489
  }
19489
- get jo() {
19490
- return this.i6;
19490
+ get jn() {
19491
+ return this.i5;
19491
19492
  }
19492
- set jo(a) {
19493
- let b = this.i6;
19494
- this.i6 = a;
19495
- if (this.i6 != b) {
19496
- this.et("IsFromMarkup", 10, b, this.i6);
19493
+ set jn(a) {
19494
+ let b = this.i5;
19495
+ this.i5 = a;
19496
+ if (this.i5 != b) {
19497
+ this.et("IsFromMarkup", 10, b, this.i5);
19497
19498
  }
19498
19499
  }
19499
- get ji() {
19500
- return this.i0;
19500
+ get jh() {
19501
+ return this.iz;
19501
19502
  }
19502
- set ji(a) {
19503
- let b = this.i0;
19503
+ set jh(a) {
19504
+ let b = this.iz;
19504
19505
  if (a) {
19505
- this.jr = true;
19506
+ this.jq = true;
19506
19507
  }
19507
- this.i0 = a;
19508
- if (this.i0 != b) {
19509
- this.et("IsAutoGenerated", 10, b, this.i0);
19508
+ this.iz = a;
19509
+ if (this.iz != b) {
19510
+ this.et("IsAutoGenerated", 10, b, this.iz);
19510
19511
  }
19511
19512
  }
19512
- get jr() {
19513
- return this.i9;
19513
+ get jq() {
19514
+ return this.i8;
19514
19515
  }
19515
- set jr(a) {
19516
+ set jq(a) {
19516
19517
  let self_ = this;
19517
19518
  let value_ = a;
19518
- this.i9 = value_;
19519
+ this.i8 = value_;
19519
19520
  self_.___mustPassByValue = true;
19520
19521
  }
19521
19522
  get g1() {
@@ -19565,24 +19566,14 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
19565
19566
  }
19566
19567
  this.h9.grid = this.grid;
19567
19568
  }
19568
- get jn() {
19569
- return this.i5;
19570
- }
19571
- set jn(a) {
19572
- let b = this.i5;
19573
- this.i5 = a;
19574
- if (this.i5 != b) {
19575
- this.et("IsFilteringEnabled", 10, b, this.i5);
19576
- }
19577
- }
19578
- get jq() {
19579
- return this.i8;
19569
+ get jm() {
19570
+ return this.i4;
19580
19571
  }
19581
- set jq(a) {
19582
- let b = this.i8;
19583
- this.i8 = a;
19584
- if (this.i8 != b) {
19585
- this.et("IsResizingEnabled", 10, b, this.i8);
19572
+ set jm(a) {
19573
+ let b = this.i4;
19574
+ this.i4 = a;
19575
+ if (this.i4 != b) {
19576
+ this.et("IsFilteringEnabled", 10, b, this.i4);
19586
19577
  }
19587
19578
  }
19588
19579
  get jp() {
@@ -19592,17 +19583,27 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
19592
19583
  let b = this.i7;
19593
19584
  this.i7 = a;
19594
19585
  if (this.i7 != b) {
19595
- this.et("IsHidden", 10, b, this.i7);
19586
+ this.et("IsResizingEnabled", 10, b, this.i7);
19596
19587
  }
19597
19588
  }
19598
- get jt() {
19599
- return this.ja;
19589
+ get jo() {
19590
+ return this.i6;
19600
19591
  }
19601
- set jt(a) {
19602
- let b = this.ja;
19603
- this.ja = a;
19604
- if (this.ja != b) {
19605
- this.et("ShouldRemoveWhenHidden", 10, b, this.ja);
19592
+ set jo(a) {
19593
+ let b = this.i6;
19594
+ this.i6 = a;
19595
+ if (this.i6 != b) {
19596
+ this.et("IsHidden", 10, b, this.i6);
19597
+ }
19598
+ }
19599
+ get js() {
19600
+ return this.i9;
19601
+ }
19602
+ set js(a) {
19603
+ let b = this.i9;
19604
+ this.i9 = a;
19605
+ if (this.i9 != b) {
19606
+ this.et("ShouldRemoveWhenHidden", 10, b, this.i9);
19606
19607
  }
19607
19608
  }
19608
19609
  get hr() {
@@ -19625,21 +19626,21 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
19625
19626
  this.et("Pinned", 11, enumGetBox(PinnedPositions_$type, b), enumGetBox(PinnedPositions_$type, this.ij));
19626
19627
  }
19627
19628
  }
19628
- get jh() {
19629
- return this.iz;
19629
+ get jg() {
19630
+ return this.iy;
19630
19631
  }
19631
- set jh(a) {
19632
- let b = this.iz;
19633
- this.iz = a;
19634
- if (this.iz != b) {
19635
- this.et("InternalShouldRemoveWhenHidden", 10, b, this.iz);
19632
+ set jg(a) {
19633
+ let b = this.iy;
19634
+ this.iy = a;
19635
+ if (this.iy != b) {
19636
+ this.et("InternalShouldRemoveWhenHidden", 10, b, this.iy);
19636
19637
  }
19637
19638
  }
19638
- get je() {
19639
- if (this.iz) {
19639
+ get jd() {
19640
+ if (this.iy) {
19640
19641
  return true;
19641
19642
  }
19642
- return this.ja;
19643
+ return this.i9;
19643
19644
  }
19644
19645
  get hi() {
19645
19646
  return this.hg;
@@ -19661,24 +19662,24 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
19661
19662
  this.et("ColumnOptionsIconAlignment", 10, enumGetBox(ColumnOptionsIconAlignment_$type, b), enumGetBox(ColumnOptionsIconAlignment_$type, this.hh));
19662
19663
  }
19663
19664
  }
19664
- get nq() {
19665
- return this.ng;
19665
+ get nr() {
19666
+ return this.nh;
19666
19667
  }
19667
- set nq(a) {
19668
- let b = this.ng;
19669
- this.ng = a;
19670
- if (this.ng != b) {
19671
- this.et("ActualColumnOptionsIconColor", 2, b, this.ng);
19668
+ set nr(a) {
19669
+ let b = this.nh;
19670
+ this.nh = a;
19671
+ if (this.nh != b) {
19672
+ this.et("ActualColumnOptionsIconColor", 2, b, this.nh);
19672
19673
  }
19673
19674
  }
19674
- get nv() {
19675
- return this.nl;
19675
+ get nw() {
19676
+ return this.nm;
19676
19677
  }
19677
- set nv(a) {
19678
- let b = this.nl;
19679
- this.nl = a;
19680
- if (this.nl != b) {
19681
- this.et("ColumnOptionsIconColor", 10, b, this.nl);
19678
+ set nw(a) {
19679
+ let b = this.nm;
19680
+ this.nm = a;
19681
+ if (this.nm != b) {
19682
+ this.et("ColumnOptionsIconColor", 10, b, this.nm);
19682
19683
  }
19683
19684
  }
19684
19685
  get hn() {
@@ -19701,44 +19702,24 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
19701
19702
  this.et("ActualColumnOptionsIconBehavior", 4, enumGetBox(ColumnOptionsIconBehavior_$type, b), enumGetBox(ColumnOptionsIconBehavior_$type, this.hk));
19702
19703
  }
19703
19704
  }
19704
- get jb() {
19705
- return this.iv;
19706
- }
19707
- set jb(a) {
19708
- let b = this.iv;
19709
- this.iv = a;
19710
- if (this.iv != b) {
19711
- this.et("ActualIsColumnOptionsEnabled", 5, b, this.iv);
19712
- }
19713
- }
19714
- get jj() {
19715
- return this.i1;
19716
- }
19717
- set jj(a) {
19718
- let b = this.i1;
19719
- this.i1 = a;
19720
- if (this.i1 != b) {
19721
- this.et("IsColumnOptionsEnabled", 10, b, this.i1);
19722
- }
19723
- }
19724
- get jd() {
19725
- return this.ix;
19705
+ get ja() {
19706
+ return this.iu;
19726
19707
  }
19727
- set jd(a) {
19728
- let b = this.ix;
19729
- this.ix = a;
19730
- if (this.ix != b) {
19731
- this.et("ActualIsColumnOptionsSummariesEnabled", 5, b, this.ix);
19708
+ set ja(a) {
19709
+ let b = this.iu;
19710
+ this.iu = a;
19711
+ if (this.iu != b) {
19712
+ this.et("ActualIsColumnOptionsEnabled", 5, b, this.iu);
19732
19713
  }
19733
19714
  }
19734
- get jl() {
19735
- return this.i3;
19715
+ get ji() {
19716
+ return this.i0;
19736
19717
  }
19737
- set jl(a) {
19738
- let b = this.i3;
19739
- this.i3 = a;
19740
- if (b != this.i3) {
19741
- this.et("IsColumnOptionsSummariesEnabled", 10, b, this.i3);
19718
+ set ji(a) {
19719
+ let b = this.i0;
19720
+ this.i0 = a;
19721
+ if (this.i0 != b) {
19722
+ this.et("IsColumnOptionsEnabled", 10, b, this.i0);
19742
19723
  }
19743
19724
  }
19744
19725
  get jc() {
@@ -19748,7 +19729,7 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
19748
19729
  let b = this.iw;
19749
19730
  this.iw = a;
19750
19731
  if (this.iw != b) {
19751
- this.et("ActualIsColumnOptionsGroupingEnabled", 5, b, this.iw);
19732
+ this.et("ActualIsColumnOptionsSummariesEnabled", 5, b, this.iw);
19752
19733
  }
19753
19734
  }
19754
19735
  get jk() {
@@ -19758,37 +19739,57 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
19758
19739
  let b = this.i2;
19759
19740
  this.i2 = a;
19760
19741
  if (b != this.i2) {
19761
- this.et("IsColumnOptionsGroupingEnabled", 10, b, this.i2);
19742
+ this.et("IsColumnOptionsSummariesEnabled", 10, b, this.i2);
19762
19743
  }
19763
19744
  }
19764
- get jm() {
19765
- return this.i4;
19745
+ get jb() {
19746
+ return this.iv;
19766
19747
  }
19767
- set jm(a) {
19768
- let b = this.i4;
19769
- this.i4 = a;
19770
- if (this.i4 != b) {
19771
- this.et("IsEditable", 10, b, this.i4);
19748
+ set jb(a) {
19749
+ let b = this.iv;
19750
+ this.iv = a;
19751
+ if (this.iv != b) {
19752
+ this.et("ActualIsColumnOptionsGroupingEnabled", 5, b, this.iv);
19772
19753
  }
19773
19754
  }
19774
- get nw() {
19775
- return this.nm;
19755
+ get jj() {
19756
+ return this.i1;
19776
19757
  }
19777
- set nw(a) {
19778
- let b = this.nm;
19779
- this.nm = a;
19780
- if (this.nm != b) {
19781
- this.et("DeletedTextColor", 10, b, this.nm);
19758
+ set jj(a) {
19759
+ let b = this.i1;
19760
+ this.i1 = a;
19761
+ if (b != this.i1) {
19762
+ this.et("IsColumnOptionsGroupingEnabled", 10, b, this.i1);
19782
19763
  }
19783
19764
  }
19784
- get nr() {
19785
- return this.nh;
19765
+ get jl() {
19766
+ return this.i3;
19786
19767
  }
19787
- set nr(a) {
19788
- let b = this.nh;
19789
- this.nh = a;
19790
- if (this.nh != b) {
19791
- this.et("ActualDeletedTextColor", 2, b, this.nh);
19768
+ set jl(a) {
19769
+ let b = this.i3;
19770
+ this.i3 = a;
19771
+ if (this.i3 != b) {
19772
+ this.et("IsEditable", 10, b, this.i3);
19773
+ }
19774
+ }
19775
+ get nx() {
19776
+ return this.nn;
19777
+ }
19778
+ set nx(a) {
19779
+ let b = this.nn;
19780
+ this.nn = a;
19781
+ if (this.nn != b) {
19782
+ this.et("DeletedTextColor", 10, b, this.nn);
19783
+ }
19784
+ }
19785
+ get ns() {
19786
+ return this.ni;
19787
+ }
19788
+ set ns(a) {
19789
+ let b = this.ni;
19790
+ this.ni = a;
19791
+ if (this.ni != b) {
19792
+ this.et("ActualDeletedTextColor", 2, b, this.ni);
19792
19793
  }
19793
19794
  }
19794
19795
  get jz() {
@@ -19812,23 +19813,23 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
19812
19813
  }
19813
19814
  }
19814
19815
  get textEditStyle() {
19815
- return this.is;
19816
- }
19817
- set textEditStyle(a) {
19818
- let b = this.is;
19819
- this.is = a;
19820
- if (this.is != b) {
19821
- this.et("EditFontInfo", 10, b, this.is);
19822
- }
19823
- }
19824
- get it() {
19825
19816
  return this.ir;
19826
19817
  }
19827
- set it(a) {
19818
+ set textEditStyle(a) {
19828
19819
  let b = this.ir;
19829
19820
  this.ir = a;
19830
19821
  if (this.ir != b) {
19831
- this.et("ActualEditFontInfo", 3, b, this.ir);
19822
+ this.et("EditFontInfo", 10, b, this.ir);
19823
+ }
19824
+ }
19825
+ get is() {
19826
+ return this.iq;
19827
+ }
19828
+ set is(a) {
19829
+ let b = this.iq;
19830
+ this.iq = a;
19831
+ if (this.iq != b) {
19832
+ this.et("ActualEditFontInfo", 3, b, this.iq);
19832
19833
  }
19833
19834
  }
19834
19835
  get hz() {
@@ -19988,7 +19989,7 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
19988
19989
  }
19989
19990
  return this.id == 0 ? this.grid.mergedCellEvaluationCriteria : this.id;
19990
19991
  }
19991
- js() {
19992
+ jr() {
19992
19993
  let a = this.ig();
19993
19994
  if (a == 3 && this.hr != 0) {
19994
19995
  return true;
@@ -20036,21 +20037,21 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
20036
20037
  }
20037
20038
  el(a, b, c, d) {
20038
20039
  super.el(a, b, c, d);
20039
- a.l9 = this.nu;
20040
- a.l5 = this.ns;
20041
- a.l6 = this.nt;
20040
+ a.l9 = this.nv;
20041
+ a.l5 = this.nt;
20042
+ a.l6 = this.nu;
20042
20043
  a.gm = this.kk;
20043
20044
  a.gq = this.km;
20044
20045
  a.go = this.kl;
20045
20046
  a.gk = this.kj;
20046
20047
  if (this.grid != null) {
20047
- if (this.it != null) {
20048
- this.it.w(this.grid.externalGrid.renderer);
20048
+ if (this.is != null) {
20049
+ this.is.w(this.grid.externalGrid.renderer);
20049
20050
  }
20050
20051
  }
20051
- a.af = this.it;
20052
+ a.af = this.is;
20052
20053
  a.ck = this.jy;
20053
- a.l1 = this.nr;
20054
+ a.l1 = this.ns;
20054
20055
  if (a.l.af == 4) {
20055
20056
  a.be = false;
20056
20057
  a.i = this.g8;
@@ -20070,17 +20071,17 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
20070
20071
  let e = c;
20071
20072
  let f = d;
20072
20073
  if (e != null) {
20073
- e.definitionPropertyUpdated = delegateRemove(e.definitionPropertyUpdated, runOn(this, this.my));
20074
+ e.definitionPropertyUpdated = delegateRemove(e.definitionPropertyUpdated, runOn(this, this.mz));
20074
20075
  }
20075
20076
  if (f != null) {
20076
- f.definitionPropertyUpdated = delegateCombine(f.definitionPropertyUpdated, runOn(this, this.my));
20077
+ f.definitionPropertyUpdated = delegateCombine(f.definitionPropertyUpdated, runOn(this, this.mz));
20077
20078
  if (f.g == 4) {
20078
20079
  f.e = this.g5();
20079
20080
  }
20080
20081
  if (f.l == 4) {
20081
20082
  f.j = this.hb();
20082
20083
  }
20083
- if (!this.iy) {
20084
+ if (!this.ix) {
20084
20085
  f.ey();
20085
20086
  }
20086
20087
  }
@@ -20089,7 +20090,7 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
20089
20090
  this.k3 = d;
20090
20091
  break;
20091
20092
  case "SelectedBackground":
20092
- this.nf();
20093
+ this.ng();
20093
20094
  break;
20094
20095
  case "ActualHorizontalAlignment":
20095
20096
  if (this.header != null) {
@@ -20106,7 +20107,7 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
20106
20107
  }
20107
20108
  break;
20108
20109
  case "SortDirection":
20109
- this.nc(this, "SortDirection", 11, c, d);
20110
+ this.nd(this, "SortDirection", 11, c, d);
20110
20111
  break;
20111
20112
  case "ActualLastStickyRowBackground":
20112
20113
  if (c != null && this.ga == null) {
@@ -20114,43 +20115,43 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
20114
20115
  }
20115
20116
  break;
20116
20117
  case "ColumnOptionsIconAlignment":
20117
- this.m3();
20118
+ this.m4();
20118
20119
  break;
20119
20120
  case "ColumnOptionsIconColor":
20120
- this.m7();
20121
+ this.m8();
20121
20122
  break;
20122
20123
  case "ColumnOptionsIconBehavior":
20123
- this.m6();
20124
+ this.m7();
20124
20125
  break;
20125
20126
  case "IsColumnOptionsEnabled":
20126
- this.m4();
20127
+ this.m5();
20127
20128
  break;
20128
20129
  case "IsColumnOptionsSummariesEnabled":
20129
- this.m8();
20130
+ this.m9();
20130
20131
  break;
20131
20132
  case "IsColumnOptionsGroupingEnabled":
20132
- this.m5();
20133
+ this.m6();
20133
20134
  break;
20134
20135
  case "DeletedTextColor":
20135
- this.m9();
20136
+ this.na();
20136
20137
  break;
20137
20138
  case "EditOpacity":
20138
- this.nb();
20139
+ this.nc();
20139
20140
  break;
20140
20141
  case "EditFontInfo":
20141
- this.na();
20142
+ this.nb();
20142
20143
  break;
20143
20144
  case "RowHoverBackground":
20144
- this.nd();
20145
+ this.ne();
20145
20146
  break;
20146
20147
  case "RowHoverTextColor":
20147
- this.ne();
20148
+ this.nf();
20148
20149
  break;
20149
20150
  case "MergedCellVerticalAlignment":
20150
20151
  this.g8 = this.g9();
20151
20152
  break;
20152
20153
  }
20153
- this.m2(a, b, c, d);
20154
+ this.m3(a, b, c, d);
20154
20155
  }
20155
20156
  hb() {
20156
20157
  return this.j;
@@ -20167,13 +20168,13 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
20167
20168
  }
20168
20169
  return 1;
20169
20170
  }
20170
- nc(a, b, c, d, e) {
20171
+ nd(a, b, c, d, e) {
20171
20172
  if (this.columnHeaderCellsPropertyUpdating != null) {
20172
20173
  this.columnHeaderCellsPropertyUpdating(this, b, c, d, e);
20173
20174
  }
20174
20175
  }
20175
- my(a, b) {
20176
- this.nc(this, b.propertyName, b.animationType, b.oldValue, b.newValue);
20176
+ mz(a, b) {
20177
+ this.nd(this, b.propertyName, b.animationType, b.oldValue, b.newValue);
20177
20178
  }
20178
20179
  eq(a, b) {
20179
20180
  if (this.hx != null) {
@@ -20182,8 +20183,8 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
20182
20183
  if (this.header != null) {
20183
20184
  this.header.grid = b;
20184
20185
  }
20185
- this.nf();
20186
- this.nf();
20186
+ this.ng();
20187
+ this.ng();
20187
20188
  this.e5();
20188
20189
  this.fh();
20189
20190
  this.e6();
@@ -20195,23 +20196,23 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
20195
20196
  this.fd();
20196
20197
  this.fe();
20197
20198
  this.ff();
20199
+ this.nc();
20198
20200
  this.nb();
20199
20201
  this.na();
20200
- this.m9();
20201
- this.m3();
20202
- this.m7();
20203
- this.m6();
20204
20202
  this.m4();
20205
20203
  this.m8();
20204
+ this.m7();
20206
20205
  this.m5();
20207
- this.nd();
20206
+ this.m9();
20207
+ this.m6();
20208
20208
  this.ne();
20209
+ this.nf();
20209
20210
  this.g8 = this.g9();
20210
20211
  }
20211
20212
  es(a, b) {
20212
20213
  switch (b.propertyName) {
20213
20214
  case "CellSelectedBackground":
20214
- this.nf();
20215
+ this.ng();
20215
20216
  break;
20216
20217
  case "CellBackground":
20217
20218
  this.e5();
@@ -20235,77 +20236,77 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
20235
20236
  this.ff();
20236
20237
  break;
20237
20238
  case "ColumnOptionsIconAlignment":
20238
- this.m3();
20239
+ this.m4();
20239
20240
  break;
20240
20241
  case "ColumnOptionsIconColor":
20241
- this.m7();
20242
+ this.m8();
20242
20243
  break;
20243
20244
  case "ColumnOptionsIconBehavior":
20244
- this.m6();
20245
+ this.m7();
20245
20246
  break;
20246
20247
  case "IsColumnOptionsEnabled":
20247
- this.m4();
20248
+ this.m5();
20248
20249
  break;
20249
20250
  case "IsColumnOptionsSummariesEnabled":
20250
- this.m8();
20251
+ this.m9();
20251
20252
  break;
20252
20253
  case "IsColumnOptionsGroupingEnabled":
20253
- this.m5();
20254
+ this.m6();
20254
20255
  break;
20255
20256
  case "DeletedTextColor":
20256
- this.m9();
20257
+ this.na();
20257
20258
  break;
20258
20259
  case "EditOpacity":
20259
- this.nb();
20260
+ this.nc();
20260
20261
  break;
20261
20262
  case "EditTextStyle":
20262
- this.na();
20263
+ this.nb();
20263
20264
  break;
20264
20265
  case "RowHoverBackground":
20265
- this.nd();
20266
+ this.ne();
20266
20267
  break;
20267
20268
  case "RowHoverTextColor":
20268
- this.ne();
20269
+ this.nf();
20269
20270
  break;
20270
20271
  case "MergedCellVerticalAlignment":
20271
20272
  this.g8 = this.g9();
20272
20273
  break;
20273
20274
  }
20274
20275
  }
20275
- nd() {
20276
- if (this.nz == null) {
20276
+ ne() {
20277
+ if (this.n0 == null) {
20277
20278
  if (this.grid != null && this.grid.rowHoverBackground != null) {
20278
- this.ns = this.grid.rowHoverBackground;
20279
+ this.nt = this.grid.rowHoverBackground;
20279
20280
  return;
20280
20281
  }
20281
- this.ns = this.nx();
20282
+ this.nt = this.ny();
20282
20283
  }
20283
20284
  else {
20284
- this.ns = this.nz;
20285
+ this.nt = this.n0;
20285
20286
  }
20286
20287
  }
20287
- ne() {
20288
- if (this.n0 == null) {
20288
+ nf() {
20289
+ if (this.n1 == null) {
20289
20290
  if (this.grid != null && this.grid.rowHoverTextColor != null) {
20290
- this.nt = this.grid.rowHoverTextColor;
20291
+ this.nu = this.grid.rowHoverTextColor;
20291
20292
  return;
20292
20293
  }
20293
- this.nt = null;
20294
+ this.nu = null;
20294
20295
  }
20295
20296
  else {
20296
- this.nt = this.n0;
20297
+ this.nu = this.n1;
20297
20298
  }
20298
20299
  }
20299
- nf() {
20300
- if (this.n1 == null) {
20300
+ ng() {
20301
+ if (this.n2 == null) {
20301
20302
  if (this.grid != null && this.grid.cellSelectedBackground != null) {
20302
- this.nu = this.grid.cellSelectedBackground;
20303
+ this.nv = this.grid.cellSelectedBackground;
20303
20304
  return;
20304
20305
  }
20305
- this.nu = this.ny();
20306
+ this.nv = this.nz();
20306
20307
  }
20307
20308
  else {
20308
- this.nu = this.n1;
20309
+ this.nv = this.n2;
20309
20310
  }
20310
20311
  }
20311
20312
  e5() {
@@ -20357,19 +20358,19 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
20357
20358
  this.bf = this.bm;
20358
20359
  }
20359
20360
  }
20360
- m9() {
20361
- if (this.nw == null) {
20361
+ na() {
20362
+ if (this.nx == null) {
20362
20363
  if (this.grid != null && this.grid.deletedTextColor != null) {
20363
- this.nr = this.grid.deletedTextColor;
20364
+ this.ns = this.grid.deletedTextColor;
20364
20365
  return;
20365
20366
  }
20366
- this.nr = GridStyleRepository.bs;
20367
+ this.ns = GridStyleRepository.bs;
20367
20368
  }
20368
20369
  else {
20369
- this.nr = this.nw;
20370
+ this.ns = this.nx;
20370
20371
  }
20371
20372
  }
20372
- nb() {
20373
+ nc() {
20373
20374
  if (isNaN_(this.jz)) {
20374
20375
  if (this.grid != null && !isNaN_(this.grid.editOpacity)) {
20375
20376
  this.jy = this.grid.editOpacity;
@@ -20381,16 +20382,16 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
20381
20382
  this.jy = this.jz;
20382
20383
  }
20383
20384
  }
20384
- na() {
20385
+ nb() {
20385
20386
  if (this.textEditStyle == null) {
20386
20387
  if (this.grid != null && this.grid.editTextStyle != null) {
20387
- this.it = this.grid.editTextStyle;
20388
+ this.is = this.grid.editTextStyle;
20388
20389
  return;
20389
20390
  }
20390
- this.it = GridStyleRepository.m;
20391
+ this.is = GridStyleRepository.m;
20391
20392
  }
20392
20393
  else {
20393
- this.it = this.textEditStyle;
20394
+ this.is = this.textEditStyle;
20394
20395
  }
20395
20396
  }
20396
20397
  fe() {
@@ -20429,7 +20430,7 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
20429
20430
  this.ga = this.gu;
20430
20431
  }
20431
20432
  }
20432
- m3() {
20433
+ m4() {
20433
20434
  if (this.hj == 0) {
20434
20435
  if (this.grid != null && this.grid.columnOptionsIconAlignment != 0) {
20435
20436
  this.hi = this.grid.columnOptionsIconAlignment;
@@ -20441,19 +20442,19 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
20441
20442
  this.hi = this.hj;
20442
20443
  }
20443
20444
  }
20444
- m7() {
20445
- if (this.nv == null) {
20445
+ m8() {
20446
+ if (this.nw == null) {
20446
20447
  if (this.grid != null && this.grid.columnOptionsIconColor != null) {
20447
- this.nq = this.grid.columnOptionsIconColor;
20448
+ this.nr = this.grid.columnOptionsIconColor;
20448
20449
  return;
20449
20450
  }
20450
- this.nq = GridStyleRepository.a5;
20451
+ this.nr = GridStyleRepository.a5;
20451
20452
  }
20452
20453
  else {
20453
- this.nq = this.nv;
20454
+ this.nr = this.nw;
20454
20455
  }
20455
20456
  }
20456
- m6() {
20457
+ m7() {
20457
20458
  if (this.hn == 0) {
20458
20459
  if (this.grid != null && this.grid.columnOptionsIconBehavior != 0) {
20459
20460
  this.hm = this.grid.columnOptionsIconBehavior;
@@ -20465,31 +20466,31 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
20465
20466
  this.hm = this.hn;
20466
20467
  }
20467
20468
  }
20468
- m4() {
20469
+ m5() {
20469
20470
  if (this.grid != null) {
20470
- this.jb = this.grid.isColumnOptionsEnabled && this.jj;
20471
+ this.ja = this.grid.isColumnOptionsEnabled && this.ji;
20471
20472
  }
20472
20473
  else {
20473
- this.jb = true;
20474
+ this.ja = true;
20474
20475
  }
20475
20476
  }
20476
- m8() {
20477
+ m9() {
20477
20478
  if (this.grid != null) {
20478
- this.jd = this.grid.isColumnOptionsSummariesEnabled && this.jl;
20479
+ this.jc = this.grid.isColumnOptionsSummariesEnabled && this.jk;
20479
20480
  }
20480
20481
  else {
20481
- this.jd = false;
20482
+ this.jc = false;
20482
20483
  }
20483
20484
  }
20484
- m5() {
20485
+ m6() {
20485
20486
  if (this.grid != null) {
20486
- this.jc = this.grid.isColumnOptionsGroupingEnabled && this.jk;
20487
+ this.jb = this.grid.isColumnOptionsGroupingEnabled && this.jj;
20487
20488
  }
20488
20489
  else {
20489
- this.jc = false;
20490
+ this.jb = false;
20490
20491
  }
20491
20492
  }
20492
- m2(a, b, c, d) {
20493
+ m3(a, b, c, d) {
20493
20494
  if (this.columnCellsPropertyUpdating != null) {
20494
20495
  this.columnCellsPropertyUpdating(this, a, b, c, d);
20495
20496
  }
@@ -20515,15 +20516,15 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
20515
20516
  lt() {
20516
20517
  return this.mf != null && this.mf != "" ? this.mf : this.lo;
20517
20518
  }
20518
- m1(a, b, c) {
20519
- if (this.ip == null) {
20520
- this.ip = new FastIterationDictionary$2(String_$type, Base.$, 0);
20519
+ m2(a, b, c) {
20520
+ if (this.io == null) {
20521
+ this.io = new FastIterationDictionary$2(String_$type, Base.$, 0);
20521
20522
  }
20522
20523
  let d = null;
20523
- if (this.ip.d(a)) {
20524
- d = this.ip.item(a);
20524
+ if (this.io.d(a)) {
20525
+ d = this.io.item(a);
20525
20526
  }
20526
- this.ip.item(a, c);
20527
+ this.io.item(a, c);
20527
20528
  let e = false;
20528
20529
  if (d == null && c != null) {
20529
20530
  e = true;
@@ -20534,42 +20535,42 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
20534
20535
  }
20535
20536
  }
20536
20537
  if (e) {
20537
- this.nc(this, a, b, d, c);
20538
+ this.nd(this, a, b, d, c);
20538
20539
  }
20539
20540
  }
20540
- jg() {
20541
- if (this.ip == null) {
20541
+ jf() {
20542
+ if (this.io == null) {
20542
20543
  return false;
20543
20544
  }
20544
- return this.ip.r > 0;
20545
+ return this.io.r > 0;
20545
20546
  }
20546
- get iq() {
20547
- return this.ip;
20547
+ get ip() {
20548
+ return this.io;
20548
20549
  }
20549
- jf(a) {
20550
- if (this.ip == null) {
20550
+ je(a) {
20551
+ if (this.io == null) {
20551
20552
  return false;
20552
20553
  }
20553
- return this.ip.d(a);
20554
+ return this.io.d(a);
20554
20555
  }
20555
- m0(a) {
20556
- if (this.ip == null) {
20556
+ m1(a) {
20557
+ if (this.io == null) {
20557
20558
  return;
20558
20559
  }
20559
- if (this.ip.d(a)) {
20560
- this.ip.f(a);
20560
+ if (this.io.d(a)) {
20561
+ this.io.f(a);
20561
20562
  }
20562
20563
  }
20563
20564
  kr(a) {
20564
- if (this.ip == null) {
20565
+ if (this.io == null) {
20565
20566
  return null;
20566
20567
  }
20567
- if (this.ip.d(a)) {
20568
- return this.ip.item(a);
20568
+ if (this.io.d(a)) {
20569
+ return this.io.item(a);
20569
20570
  }
20570
20571
  return null;
20571
20572
  }
20572
- mz(a) {
20573
+ m0(a) {
20573
20574
  if (this.ju == null) {
20574
20575
  this.ju = new List$1(LayoutAction_$type, 0);
20575
20576
  }
@@ -20711,11 +20712,34 @@ export let DataGridColumn = /*@__PURE__*/ (() => {
20711
20712
  set invalidateActions(a) {
20712
20713
  this._invalidateActions = a;
20713
20714
  }
20714
- get io() {
20715
- return this.im;
20715
+ im() {
20716
+ if (this.jt == null) {
20717
+ return null;
20718
+ }
20719
+ for (let a of fromEnum(this.jt)) {
20720
+ return a;
20721
+ }
20722
+ return null;
20723
+ }
20724
+ my(a) {
20725
+ if (this.jt == null) {
20726
+ return;
20727
+ }
20728
+ for (let b of fromEnum(this.jt)) {
20729
+ a(b);
20730
+ }
20716
20731
  }
20717
20732
  provideContextAccessor(a) {
20718
- this.im = a;
20733
+ if (this.jt == null) {
20734
+ this.jt = new HashSet$1(IToolbarContextAccessor_$type, 0);
20735
+ }
20736
+ this.jt.add_1(a);
20737
+ }
20738
+ dismissContextAccessor(a) {
20739
+ if (this.jt == null) {
20740
+ return;
20741
+ }
20742
+ this.jt.remove(a);
20719
20743
  }
20720
20744
  mx() {
20721
20745
  if (this.hx != null) {
@@ -22878,44 +22902,44 @@ export let ComboBoxColumn = /*@__PURE__*/ (() => {
22878
22902
  class ComboBoxColumn extends DataGridColumn {
22879
22903
  constructor() {
22880
22904
  super();
22881
- this.n3 = null;
22905
+ this.n4 = null;
22882
22906
  this.hz = 4;
22883
22907
  }
22884
- get n4() {
22885
- return this.n3;
22908
+ get n5() {
22909
+ return this.n4;
22886
22910
  }
22887
- set n4(a) {
22888
- let b = this.n3;
22889
- this.n3 = a;
22890
- if (this.n3 != b) {
22891
- this.et("ActualDataSource", 10, b, this.n3);
22911
+ set n5(a) {
22912
+ let b = this.n4;
22913
+ this.n4 = a;
22914
+ if (this.n4 != b) {
22915
+ this.et("ActualDataSource", 10, b, this.n4);
22892
22916
  }
22893
22917
  }
22894
- get n5() {
22918
+ get n6() {
22895
22919
  return this.kq;
22896
22920
  }
22897
- set n5(a) {
22921
+ set n6(a) {
22898
22922
  this.kq = a;
22899
22923
  }
22900
- get n9() {
22924
+ get oa() {
22901
22925
  return this.lk;
22902
22926
  }
22903
- set n9(a) {
22927
+ set oa(a) {
22904
22928
  this.lk = a;
22905
22929
  }
22906
- get oa() {
22930
+ get ob() {
22907
22931
  if (this.gz == null) {
22908
22932
  return null;
22909
22933
  }
22910
22934
  return this.gz[0];
22911
22935
  }
22912
- set oa(a) {
22936
+ set ob(a) {
22913
22937
  this.gz = [a];
22914
22938
  }
22915
- get n2() {
22939
+ get n3() {
22916
22940
  return this.gz;
22917
22941
  }
22918
- set n2(a) {
22942
+ set n3(a) {
22919
22943
  this.gz = a;
22920
22944
  }
22921
22945
  n(a) {
@@ -22926,14 +22950,14 @@ export let ComboBoxColumn = /*@__PURE__*/ (() => {
22926
22950
  }
22927
22951
  eq(a, b) {
22928
22952
  super.eq(a, b);
22929
- if (this.n4 == null && this.n5 != null) {
22953
+ if (this.n5 == null && this.n6 != null) {
22930
22954
  if (b != null) {
22931
- this.n4 = b.externalGrid.createLocalDataSource(this.n5);
22955
+ this.n5 = b.externalGrid.createLocalDataSource(this.n6);
22932
22956
  }
22933
22957
  }
22934
22958
  }
22935
22959
  dz(a, b, c) {
22936
- return this.n8(b);
22960
+ return this.n9(b);
22937
22961
  }
22938
22962
  eo(a, b, c, d) {
22939
22963
  super.eo(a, b, c, d);
@@ -22947,68 +22971,68 @@ export let ComboBoxColumn = /*@__PURE__*/ (() => {
22947
22971
  super.ev(a, b, c, d);
22948
22972
  switch (a) {
22949
22973
  case "EditorItemsSourceInternal":
22950
- if (typeCast(IDataSource_$type, this.n5) !== null) {
22951
- this.n4 = this.n5;
22974
+ if (typeCast(IDataSource_$type, this.n6) !== null) {
22975
+ this.n5 = this.n6;
22952
22976
  }
22953
22977
  else if (this.grid != null) {
22954
- this.n4 = this.grid.externalGrid.createLocalDataSource(this.n5);
22978
+ this.n5 = this.grid.externalGrid.createLocalDataSource(this.n6);
22955
22979
  }
22956
22980
  break;
22957
22981
  case "ActualDataSource":
22958
22982
  if (c != null) {
22959
22983
  let e = c;
22960
- e.schemaChanged = delegateRemove(e.schemaChanged, runOn(this, this.ob));
22984
+ e.schemaChanged = delegateRemove(e.schemaChanged, runOn(this, this.oc));
22961
22985
  }
22962
- if (this.n4 != null) {
22963
- let f = this.n4;
22964
- f.schemaChanged = delegateCombine(f.schemaChanged, runOn(this, this.ob));
22986
+ if (this.n5 != null) {
22987
+ let f = this.n5;
22988
+ f.schemaChanged = delegateCombine(f.schemaChanged, runOn(this, this.oc));
22965
22989
  }
22966
- this.oc();
22990
+ this.od();
22967
22991
  break;
22968
22992
  case "EditorTextFieldInternal":
22969
22993
  case "EditorValueFieldInternal":
22970
- this.oc();
22994
+ this.od();
22971
22995
  break;
22972
22996
  }
22973
22997
  }
22974
- ob(a, b) {
22975
- this.oc();
22998
+ oc(a, b) {
22999
+ this.od();
22976
23000
  }
22977
- oc() {
22978
- if (this.n4 != null) {
22979
- if (this.oa != null) {
22980
- this.n4.primaryKey = this.gz;
23001
+ od() {
23002
+ if (this.n5 != null) {
23003
+ if (this.ob != null) {
23004
+ this.n5.primaryKey = this.gz;
22981
23005
  }
22982
- else if (this.n9 != null) {
22983
- this.n4.primaryKey = [this.n9];
23006
+ else if (this.oa != null) {
23007
+ this.n5.primaryKey = [this.oa];
22984
23008
  }
22985
23009
  else {
22986
- let a = this.n4.actualSchema;
23010
+ let a = this.n5.actualSchema;
22987
23011
  if (a != null && a.propertyNames.length > 0) {
22988
- this.n4.primaryKey = [a.propertyNames[0]];
23012
+ this.n5.primaryKey = [a.propertyNames[0]];
22989
23013
  }
22990
23014
  }
22991
23015
  }
22992
23016
  }
22993
- n7(a) {
23017
+ n8(a) {
22994
23018
  if (typeof a === 'string') {
22995
23019
  return a;
22996
23020
  }
22997
23021
  return null;
22998
23022
  }
22999
- n8(a) {
23023
+ n9(a) {
23000
23024
  let b = null;
23001
- if (this.n4 != null && this.n9 != null) {
23002
- let c = this.n4.indexOfKey(typeCast(Array_$type, a) !== null ? a : [a]);
23025
+ if (this.n5 != null && this.oa != null) {
23026
+ let c = this.n5.indexOfKey(typeCast(Array_$type, a) !== null ? a : [a]);
23003
23027
  if (c > -1) {
23004
- let d = this.n4.getItemPropertyAtIndex(c, this.n9);
23028
+ let d = this.n5.getItemPropertyAtIndex(c, this.oa);
23005
23029
  if (d != null) {
23006
- b = this.n7(d);
23030
+ b = this.n8(d);
23007
23031
  }
23008
23032
  }
23009
23033
  }
23010
23034
  if (b == null && a != null) {
23011
- b = this.n7(a);
23035
+ b = this.n8(a);
23012
23036
  }
23013
23037
  return b;
23014
23038
  }
@@ -23021,122 +23045,122 @@ export let ComboBoxColumn = /*@__PURE__*/ (() => {
23021
23045
  */
23022
23046
  export let DateTimeColumn = /*@__PURE__*/ (() => {
23023
23047
  class DateTimeColumn extends DataGridColumn {
23024
- get n7() {
23025
- return this.n6;
23048
+ get n8() {
23049
+ return this.n7;
23026
23050
  }
23027
- set n7(a) {
23028
- let b = this.n6;
23029
- this.n6 = a;
23030
- if (this.n6 != b) {
23031
- this.et("DateTimeFormat", 4, enumGetBox(DateTimeFormats_$type, b), enumGetBox(DateTimeFormats_$type, this.n6));
23051
+ set n8(a) {
23052
+ let b = this.n7;
23053
+ this.n7 = a;
23054
+ if (this.n7 != b) {
23055
+ this.et("DateTimeFormat", 4, enumGetBox(DateTimeFormats_$type, b), enumGetBox(DateTimeFormats_$type, this.n7));
23032
23056
  }
23033
23057
  }
23034
- get op() {
23058
+ get oq() {
23059
+ return this.oh;
23060
+ }
23061
+ set oq(a) {
23062
+ let b = this.oh;
23063
+ this.oh = a;
23064
+ if (this.oh != b) {
23065
+ this.et("FormatString", 8, b, this.oh);
23066
+ }
23067
+ }
23068
+ get oj() {
23035
23069
  return this.og;
23036
23070
  }
23037
- set op(a) {
23071
+ set oj(a) {
23038
23072
  let b = this.og;
23039
23073
  this.og = a;
23040
23074
  if (this.og != b) {
23041
- this.et("FormatString", 8, b, this.og);
23042
- }
23043
- }
23044
- get oi() {
23045
- return this.of;
23046
- }
23047
- set oi(a) {
23048
- let b = this.of;
23049
- this.of = a;
23050
- if (this.of != b) {
23051
- this.et("EditorFormatString", 8, b, this.of);
23075
+ this.et("EditorFormatString", 8, b, this.og);
23052
23076
  }
23053
23077
  }
23054
- get n3() {
23055
- return this.n2;
23078
+ get n4() {
23079
+ return this.n3;
23056
23080
  }
23057
- set n3(a) {
23058
- let b = this.n2;
23059
- this.n2 = a;
23060
- if (this.n2 != b) {
23061
- this.et("FormatSpecifiers", 9, b, this.n2);
23081
+ set n4(a) {
23082
+ let b = this.n3;
23083
+ this.n3 = a;
23084
+ if (this.n3 != b) {
23085
+ this.et("FormatSpecifiers", 9, b, this.n3);
23062
23086
  }
23063
23087
  }
23064
- get oe() {
23065
- return this.oc;
23088
+ get of() {
23089
+ return this.od;
23066
23090
  }
23067
- set oe(a) {
23068
- let b = this.oc;
23069
- this.oc = a;
23070
- if (this.oc != b) {
23071
- this.et("FormatOverride", 9, b, this.oc);
23091
+ set of(a) {
23092
+ let b = this.od;
23093
+ this.od = a;
23094
+ if (this.od != b) {
23095
+ this.et("FormatOverride", 9, b, this.od);
23072
23096
  }
23073
23097
  }
23074
- get oa() {
23075
- return this.n9;
23098
+ get ob() {
23099
+ return this.oa;
23076
23100
  }
23077
- set oa(a) {
23078
- let b = this.n9;
23079
- this.n9 = a;
23080
- if (b != this.n9) {
23081
- this.et("ShowTodayButton", 5, b, this.n9);
23101
+ set ob(a) {
23102
+ let b = this.oa;
23103
+ this.oa = a;
23104
+ if (b != this.oa) {
23105
+ this.et("ShowTodayButton", 5, b, this.oa);
23082
23106
  }
23083
23107
  }
23084
- get n8() {
23108
+ get n9() {
23085
23109
  return this.hz;
23086
23110
  }
23087
- set n8(a) {
23111
+ set n9(a) {
23088
23112
  this.hz = a;
23089
23113
  }
23090
- get od() {
23114
+ get oe() {
23091
23115
  return this.kq;
23092
23116
  }
23093
- set od(a) {
23117
+ set oe(a) {
23094
23118
  this.kq = a;
23095
23119
  }
23096
- get ok() {
23120
+ get ol() {
23097
23121
  return this.lk;
23098
23122
  }
23099
- set ok(a) {
23123
+ set ol(a) {
23100
23124
  this.lk = a;
23101
23125
  }
23102
- get ol() {
23126
+ get om() {
23103
23127
  if (this.gz == null) {
23104
23128
  return null;
23105
23129
  }
23106
23130
  return this.gz[0];
23107
23131
  }
23108
- set ol(a) {
23132
+ set om(a) {
23109
23133
  this.gz = [a];
23110
23134
  }
23111
23135
  ev(a, b, c, d) {
23112
23136
  super.ev(a, b, c, d);
23113
23137
  switch (a) {
23114
23138
  case "DateTimeFormat":
23115
- this.n5.k();
23139
+ this.n6.k();
23116
23140
  break;
23117
23141
  case "FormatString":
23118
23142
  case "FormatSpecifiers":
23119
- if (this.op != null) {
23120
- this.n4 = new BindingFormatter();
23121
- this.n4.j = this.op;
23122
- this.n4.d = this.n3;
23143
+ if (this.oq != null) {
23144
+ this.n5 = new BindingFormatter();
23145
+ this.n5.j = this.oq;
23146
+ this.n5.d = this.n4;
23123
23147
  }
23124
23148
  else {
23125
- this.n4 = null;
23149
+ this.n5 = null;
23126
23150
  }
23127
23151
  break;
23128
23152
  }
23129
23153
  }
23130
23154
  constructor() {
23131
23155
  super();
23132
- this.n5 = new DateTimeColumnValueFormatter();
23133
- this.n6 = 0;
23156
+ this.n6 = new DateTimeColumnValueFormatter();
23157
+ this.n7 = 0;
23158
+ this.oh = null;
23134
23159
  this.og = null;
23135
- this.of = null;
23136
- this.n2 = null;
23137
- this.oc = null;
23138
- this.n9 = false;
23139
- this.n4 = null;
23160
+ this.n3 = null;
23161
+ this.od = null;
23162
+ this.oa = false;
23163
+ this.n5 = null;
23140
23164
  }
23141
23165
  n(a) {
23142
23166
  return new DateTimeCellModel();
@@ -23145,24 +23169,24 @@ export let DateTimeColumn = /*@__PURE__*/ (() => {
23145
23169
  return a.af == 4 ? "datetime_mergedCell" : "datetime";
23146
23170
  }
23147
23171
  dz(a, b, c) {
23148
- return this.om(b);
23172
+ return this.on(b);
23149
23173
  }
23150
23174
  eo(a, b, c, d) {
23151
23175
  super.eo(a, b, c, d);
23152
23176
  let e = a;
23153
- e.mp = this.ob(c);
23154
- e.mj = this.n5;
23155
- this.n5.j(e.ml);
23177
+ e.mp = this.oc(c);
23178
+ e.mj = this.n6;
23179
+ this.n6.j(e.ml);
23156
23180
  }
23157
23181
  el(a, b, c, d) {
23158
23182
  super.el(a, b, c, d);
23159
23183
  let e = a;
23160
- e.ml = this.n7;
23161
- e.m6 = this.op;
23162
- e.mg = this.n3;
23163
- e.mz = this.oe;
23184
+ e.ml = this.n8;
23185
+ e.m6 = this.oq;
23186
+ e.mg = this.n4;
23187
+ e.mz = this.of;
23164
23188
  }
23165
- ob(a) {
23189
+ oc(a) {
23166
23190
  if (a == null) {
23167
23191
  return dateMinValue();
23168
23192
  }
@@ -23171,23 +23195,23 @@ export let DateTimeColumn = /*@__PURE__*/ (() => {
23171
23195
  }
23172
23196
  return dateMinValue();
23173
23197
  }
23174
- om(a) {
23198
+ on(a) {
23175
23199
  let b = (typeCast(Date_$type, a) !== null) ? a : dateMinValue();
23176
- if (this.n4 != null) {
23200
+ if (this.n5 != null) {
23177
23201
  if (+b == +(dateMinValue())) {
23178
23202
  return "";
23179
23203
  }
23180
- return this.n4.i(b);
23204
+ return this.n5.i(b);
23181
23205
  }
23182
- if (this.oc != null) {
23206
+ if (this.od != null) {
23183
23207
  if (+b == +(dateMinValue())) {
23184
23208
  return "";
23185
23209
  }
23186
23210
  let date_ = b;
23187
- return (this.oc.format(date_));
23211
+ return (this.od.format(date_));
23188
23212
  }
23189
- this.n5.j(this.n7);
23190
- let c = this.n5.i(b);
23213
+ this.n6.j(this.n8);
23214
+ let c = this.n6.i(b);
23191
23215
  if (c == stringEmpty()) {
23192
23216
  if (a != null && !(typeCast(Date_$type, a) !== null)) {
23193
23217
  return a.toString();
@@ -23347,23 +23371,21 @@ export let DataGridColumnToolbarManager = /*@__PURE__*/ (() => {
23347
23371
  }
23348
23372
  }
23349
23373
  a9() {
23350
- if (this.f.io != null) {
23351
- this.f.io.setContextValue("GridColumnOptionsColumnName", 3, this.f.k3);
23352
- }
23374
+ this.f.my((a) => a.setContextValue("GridColumnOptionsColumnName", 3, this.f.k3));
23353
23375
  }
23354
23376
  bj() {
23355
- if (this.f.io != null) {
23356
- this.f.io.setContextValue("GridColumnOptionsSortAscending", 5, this.e == 1);
23357
- this.f.io.setContextValue("GridColumnOptionsSortDescending", 5, this.e == 2);
23358
- }
23377
+ this.f.my((a) => {
23378
+ a.setContextValue("GridColumnOptionsSortAscending", 5, this.e == 1);
23379
+ a.setContextValue("GridColumnOptionsSortDescending", 5, this.e == 2);
23380
+ });
23359
23381
  }
23360
23382
  bg() {
23361
- if (this.f.io != null) {
23362
- this.f.io.setContextValue("GridColumnOptionsMoveLeftSelected", 5, false);
23363
- this.f.io.setContextValue("GridColumnOptionsMoveRightSelected", 5, false);
23364
- this.f.io.setContextValue("GridColumnOptionsMoveLeftDisabled", 5, !this.m(this.f));
23365
- this.f.io.setContextValue("GridColumnOptionsMoveRightDisabled", 5, !this.n(this.f));
23366
- }
23383
+ this.f.my((a) => {
23384
+ a.setContextValue("GridColumnOptionsMoveLeftSelected", 5, false);
23385
+ a.setContextValue("GridColumnOptionsMoveRightSelected", 5, false);
23386
+ a.setContextValue("GridColumnOptionsMoveLeftDisabled", 5, !this.m(this.f));
23387
+ a.setContextValue("GridColumnOptionsMoveRightDisabled", 5, !this.n(this.f));
23388
+ });
23367
23389
  }
23368
23390
  l(a) {
23369
23391
  let b = this.f;
@@ -23393,12 +23415,12 @@ export let DataGridColumnToolbarManager = /*@__PURE__*/ (() => {
23393
23415
  return this.l(true);
23394
23416
  }
23395
23417
  bh() {
23396
- if (this.f.io != null) {
23397
- this.f.io.setContextValue("GridColumnOptionsPinnedLeft", 5, this.f.il == 1);
23398
- this.f.io.setContextValue("GridColumnOptionsPinnedRight", 5, this.f.il == 2);
23399
- this.f.io.setContextValue("GridColumnOptionsPinnedLeftIcon", 3, (this.f.il == 1) ? "UnpinLeft" : "PinLeft");
23400
- this.f.io.setContextValue("GridColumnOptionsPinnedRightIcon", 3, (this.f.il == 2) ? "UnpinRight" : "PinRight");
23401
- }
23418
+ this.f.my((a) => {
23419
+ a.setContextValue("GridColumnOptionsPinnedLeft", 5, this.f.il == 1);
23420
+ a.setContextValue("GridColumnOptionsPinnedRight", 5, this.f.il == 2);
23421
+ a.setContextValue("GridColumnOptionsPinnedLeftIcon", 3, (this.f.il == 1) ? "UnpinLeft" : "PinLeft");
23422
+ a.setContextValue("GridColumnOptionsPinnedRightIcon", 3, (this.f.il == 2) ? "UnpinRight" : "PinRight");
23423
+ });
23402
23424
  }
23403
23425
  bc() {
23404
23426
  let a = false;
@@ -23410,16 +23432,12 @@ export let DataGridColumnToolbarManager = /*@__PURE__*/ (() => {
23410
23432
  break;
23411
23433
  }
23412
23434
  }
23413
- if (this.f.io != null) {
23414
- this.f.io.setContextValue("GridColumnOptionsGroupedIcon", 3, (a) ? "Ungroup" : "Group");
23415
- }
23435
+ this.f.my((e) => e.setContextValue("GridColumnOptionsGroupedIcon", 3, (a) ? "Ungroup" : "Group"));
23416
23436
  }
23417
23437
  bn() {
23418
23438
  let a = false;
23419
- a = !this.f.jp;
23420
- if (this.f.io != null) {
23421
- this.f.io.setContextValue("GridColumnOptionsVisibilityIcon", 3, (a) ? "Hide" : "Show");
23422
- }
23439
+ a = !this.f.jo;
23440
+ this.f.my((b) => b.setContextValue("GridColumnOptionsVisibilityIcon", 3, (a) ? "Hide" : "Show"));
23423
23441
  }
23424
23442
  a3(a) {
23425
23443
  this.q.add(a);
@@ -23766,17 +23784,13 @@ export let DataGridColumnToolbarManager = /*@__PURE__*/ (() => {
23766
23784
  return x;
23767
23785
  }
23768
23786
  bk() {
23769
- if (this.f.io != null) {
23770
- this.f.io.setContextValue("GridColumnOptionsSummariesTitle", 3, this.al());
23771
- }
23787
+ this.f.my((a) => a.setContextValue("GridColumnOptionsSummariesTitle", 3, this.al()));
23772
23788
  }
23773
23789
  bl() {
23774
23790
  if (this.f == null || this.f.grid == null) {
23775
23791
  return;
23776
23792
  }
23777
- if (this.f.io != null) {
23778
- this.f.io.setContextValue("GridColumnOptionsSummariesTitle", 3, this.an());
23779
- }
23793
+ this.f.my((a) => a.setContextValue("GridColumnOptionsSummariesTitle", 3, this.an()));
23780
23794
  let a = false;
23781
23795
  let b = false;
23782
23796
  let c = false;
@@ -23808,17 +23822,17 @@ export let DataGridColumnToolbarManager = /*@__PURE__*/ (() => {
23808
23822
  }
23809
23823
  }
23810
23824
  }
23811
- if (this.f.io != null) {
23812
- this.f.io.setContextValue("GridColumnOptionsSummariesVisible", 6, this.b6());
23813
- this.f.io.setContextValue("GridColumnOptionsSummariesAverageChecked", 5, a);
23814
- this.f.io.setContextValue("GridColumnOptionsSummariesMinimumChecked", 5, b);
23815
- this.f.io.setContextValue("GridColumnOptionsSummariesMaximumChecked", 5, c);
23816
- this.f.io.setContextValue("GridColumnOptionsSummariesSumChecked", 5, e);
23817
- this.f.io.setContextValue("GridColumnOptionsSummariesCountChecked", 5, d);
23818
- }
23825
+ this.f.my((j) => {
23826
+ j.setContextValue("GridColumnOptionsSummariesVisible", 6, this.b6());
23827
+ j.setContextValue("GridColumnOptionsSummariesAverageChecked", 5, a);
23828
+ j.setContextValue("GridColumnOptionsSummariesMinimumChecked", 5, b);
23829
+ j.setContextValue("GridColumnOptionsSummariesMaximumChecked", 5, c);
23830
+ j.setContextValue("GridColumnOptionsSummariesSumChecked", 5, e);
23831
+ j.setContextValue("GridColumnOptionsSummariesCountChecked", 5, d);
23832
+ });
23819
23833
  }
23820
23834
  b6() {
23821
- if (this.f.jd && this.f.grid.summaryScope != 3) {
23835
+ if (this.f.jc && this.f.grid.summaryScope != 3) {
23822
23836
  return 0;
23823
23837
  }
23824
23838
  return 1;
@@ -23835,15 +23849,13 @@ export let DataGridColumnToolbarManager = /*@__PURE__*/ (() => {
23835
23849
  }
23836
23850
  u() {
23837
23851
  let a = 0;
23838
- if (this.f.io != null) {
23839
- let b = this.f.io.getContextValue("GridColumnOptionsSummariesAverageChecked", 5);
23840
- let c = this.f.io.getContextValue("GridColumnOptionsSummariesMinimumChecked", 5);
23841
- let d = this.f.io.getContextValue("GridColumnOptionsSummariesMaximumChecked", 5);
23842
- let e = this.f.io.getContextValue("GridColumnOptionsSummariesSumChecked", 5);
23843
- let f = this.f.io.getContextValue("GridColumnOptionsSummariesCountChecked", 5);
23844
- if (b) {
23845
- a++;
23846
- }
23852
+ let b = this.f.im();
23853
+ if (b != null) {
23854
+ let c = b.getContextValue("GridColumnOptionsSummariesAverageChecked", 5);
23855
+ let d = b.getContextValue("GridColumnOptionsSummariesMinimumChecked", 5);
23856
+ let e = b.getContextValue("GridColumnOptionsSummariesMaximumChecked", 5);
23857
+ let f = b.getContextValue("GridColumnOptionsSummariesSumChecked", 5);
23858
+ let g = b.getContextValue("GridColumnOptionsSummariesCountChecked", 5);
23847
23859
  if (c) {
23848
23860
  a++;
23849
23861
  }
@@ -23856,6 +23868,9 @@ export let DataGridColumnToolbarManager = /*@__PURE__*/ (() => {
23856
23868
  if (f) {
23857
23869
  a++;
23858
23870
  }
23871
+ if (g) {
23872
+ a++;
23873
+ }
23859
23874
  }
23860
23875
  return a;
23861
23876
  }
@@ -23913,11 +23928,11 @@ export let DataGridColumnToolbarManager = /*@__PURE__*/ (() => {
23913
23928
  }
23914
23929
  }
23915
23930
  e.flushAutoRefresh();
23916
- if (this.f.io != null) {
23917
- this.f.io.setContextValue("GridColumnOptionsFilterItemsSource", 7, e);
23918
- this.f.io.setContextValue("GridColumnOptionsFilterDataMemberPath", 3, c);
23919
- this.f.io.setContextValue("GridColumnOptionsFilterPrimaryKey", 7, [c]);
23920
- }
23931
+ this.f.my((k) => {
23932
+ k.setContextValue("GridColumnOptionsFilterItemsSource", 7, e);
23933
+ k.setContextValue("GridColumnOptionsFilterDataMemberPath", 3, c);
23934
+ k.setContextValue("GridColumnOptionsFilterPrimaryKey", 7, [c]);
23935
+ });
23921
23936
  e.shouldEmitSectionHeaders = true;
23922
23937
  e.isSectionHeaderNormalRow = true;
23923
23938
  e.isSectionExpandedDefault = false;
@@ -23952,31 +23967,25 @@ export let DataGridColumnToolbarManager = /*@__PURE__*/ (() => {
23952
23967
  }
23953
23968
  }
23954
23969
  if (e.count == 0 || !c) {
23955
- if (this.f.io != null) {
23956
- this.f.io.setContextValue("GridColumnOptionsFilterIndexType", 6, 0);
23957
- }
23958
- this.f.io.setContextValue("GridColumnOptionsFilterSelectedKeys", 7, new LayoutSelectedKeysCollection());
23970
+ this.f.my((h) => {
23971
+ h.setContextValue("GridColumnOptionsFilterIndexType", 6, 0);
23972
+ h.setContextValue("GridColumnOptionsFilterSelectedKeys", 7, new LayoutSelectedKeysCollection());
23973
+ });
23959
23974
  return;
23960
23975
  }
23961
23976
  switch (d.value) {
23962
23977
  case 0:
23963
- if (this.f.io != null) {
23964
- this.f.io.setContextValue("GridColumnOptionsFilterIndexType", 6, 1);
23965
- }
23978
+ this.f.my((h) => h.setContextValue("GridColumnOptionsFilterIndexType", 6, 1));
23966
23979
  break;
23967
23980
  case 1:
23968
- if (this.f.io != null) {
23969
- this.f.io.setContextValue("GridColumnOptionsFilterIndexType", 6, 0);
23970
- }
23981
+ this.f.my((h) => h.setContextValue("GridColumnOptionsFilterIndexType", 6, 0));
23971
23982
  break;
23972
23983
  }
23973
23984
  let h = new LayoutSelectedKeysCollection();
23974
23985
  for (let i of fromEnum(e)) {
23975
23986
  h.add(new LayoutPrimaryKeyValue(0, [b], [i.value]));
23976
23987
  }
23977
- if (this.f.io != null) {
23978
- this.f.io.setContextValue("GridColumnOptionsFilterSelectedKeys", 7, h);
23979
- }
23988
+ this.f.my((j) => j.setContextValue("GridColumnOptionsFilterSelectedKeys", 7, h));
23980
23989
  this.b3();
23981
23990
  }
23982
23991
  b3() {
@@ -24025,7 +24034,7 @@ export let DataGridColumnToolbarManager = /*@__PURE__*/ (() => {
24025
24034
  if (this.f.grid != null && this.f.grid.filterUIType != 0) {
24026
24035
  return false;
24027
24036
  }
24028
- if (!this.f.jn) {
24037
+ if (!this.f.jm) {
24029
24038
  return false;
24030
24039
  }
24031
24040
  if (this.f.grid == null || this.f.grid.actualDataSource == null || !this.f.grid.actualDataSource.isGroupingSupported || !this.f.grid.actualDataSource.isFilteringSupported) {
@@ -24180,86 +24189,91 @@ export let DataGridColumnToolbarManager = /*@__PURE__*/ (() => {
24180
24189
  return c;
24181
24190
  }
24182
24191
  a6() {
24183
- if (this.f.io != null) {
24184
- let a = this.f.io.getContextValue("GridColumnOptionsSummariesAverageChecked", 5);
24185
- let b = this.f.io.getContextValue("GridColumnOptionsSummariesMinimumChecked", 5);
24186
- let c = this.f.io.getContextValue("GridColumnOptionsSummariesMaximumChecked", 5);
24187
- let d = this.f.io.getContextValue("GridColumnOptionsSummariesSumChecked", 5);
24188
- let e = this.f.io.getContextValue("GridColumnOptionsSummariesCountChecked", 5);
24189
- let f = new HashSet$1(DataSourceSummaryOperand_$type, 0);
24190
- if (a) {
24191
- f.add_1(3);
24192
- }
24192
+ let a = this.f.im();
24193
+ if (a != null) {
24194
+ let b = a.getContextValue("GridColumnOptionsSummariesAverageChecked", 5);
24195
+ let c = a.getContextValue("GridColumnOptionsSummariesMinimumChecked", 5);
24196
+ let d = a.getContextValue("GridColumnOptionsSummariesMaximumChecked", 5);
24197
+ let e = a.getContextValue("GridColumnOptionsSummariesSumChecked", 5);
24198
+ let f = a.getContextValue("GridColumnOptionsSummariesCountChecked", 5);
24199
+ let g = new HashSet$1(DataSourceSummaryOperand_$type, 0);
24193
24200
  if (b) {
24194
- f.add_1(0);
24201
+ g.add_1(3);
24195
24202
  }
24196
24203
  if (c) {
24197
- f.add_1(1);
24204
+ g.add_1(0);
24198
24205
  }
24199
24206
  if (d) {
24200
- f.add_1(2);
24201
- }
24202
- if (e) {
24203
- f.add_1(4);
24204
- }
24205
- this.by(f);
24206
- if (a) {
24207
- this.bm(a, 3);
24207
+ g.add_1(1);
24208
24208
  }
24209
24209
  if (e) {
24210
- this.bm(e, 4);
24210
+ g.add_1(2);
24211
24211
  }
24212
- if (c) {
24213
- this.bm(c, 1);
24212
+ if (f) {
24213
+ g.add_1(4);
24214
24214
  }
24215
+ this.by(g);
24215
24216
  if (b) {
24216
- this.bm(b, 0);
24217
+ this.bm(b, 3);
24218
+ }
24219
+ if (f) {
24220
+ this.bm(f, 4);
24217
24221
  }
24218
24222
  if (d) {
24219
- this.bm(d, 2);
24223
+ this.bm(d, 1);
24224
+ }
24225
+ if (c) {
24226
+ this.bm(c, 0);
24227
+ }
24228
+ if (e) {
24229
+ this.bm(e, 2);
24220
24230
  }
24221
24231
  }
24222
24232
  }
24223
24233
  a5() {
24224
- let a = this.f.io.getContextValue("GridColumnOptionsFilterSelectedKeys", 7);
24225
- let b = EnumUtil.getEnumValue(ToolActionCheckboxListIndexType_$type, this.f.io.getContextValue("GridColumnOptionsFilterIndexType", 6));
24226
- if (0 == a.count) {
24234
+ let a = this.f.im();
24235
+ if (a == null) {
24236
+ return;
24237
+ }
24238
+ let b = a.getContextValue("GridColumnOptionsFilterSelectedKeys", 7);
24239
+ let c = EnumUtil.getEnumValue(ToolActionCheckboxListIndexType_$type, a.getContextValue("GridColumnOptionsFilterIndexType", 6));
24240
+ if (0 == b.count) {
24227
24241
  this.a7();
24228
24242
  return;
24229
24243
  }
24230
- let c;
24231
24244
  let d;
24232
- if (b == 0) {
24233
- d = false;
24234
- c = 1;
24245
+ let e;
24246
+ if (c == 0) {
24247
+ e = false;
24248
+ d = 1;
24235
24249
  }
24236
24250
  else {
24237
- d = true;
24238
- c = 0;
24251
+ e = true;
24252
+ d = 0;
24239
24253
  }
24240
- let e = new List$1(ColumnComparisonFilterCondition.$, 0);
24241
- let f = a;
24242
- for (let g = 0; g < f.count; g++) {
24243
- let h = f._inner[g];
24244
- let i = h.value[0];
24245
- let j = DataGridColumnToolbarManager.b(c, i);
24246
- e.add(j);
24254
+ let f = new List$1(ColumnComparisonFilterCondition.$, 0);
24255
+ let g = b;
24256
+ for (let h = 0; h < g.count; h++) {
24257
+ let i = g._inner[h];
24258
+ let j = i.value[0];
24259
+ let k = DataGridColumnToolbarManager.b(d, j);
24260
+ f.add(k);
24247
24261
  }
24248
- if (e.count == 1) {
24249
- this.f.g1 = e._inner[0];
24262
+ if (f.count == 1) {
24263
+ this.f.g1 = f._inner[0];
24250
24264
  }
24251
24265
  else {
24252
- let k = new ColumnFilterConditionGroup();
24253
- k.usesOrOperator = d;
24254
- for (let l of fromEnum(e)) {
24255
- k.add(l);
24266
+ let l = new ColumnFilterConditionGroup();
24267
+ l.usesOrOperator = e;
24268
+ for (let m of fromEnum(f)) {
24269
+ l.add(m);
24256
24270
  }
24257
- this.f.g1 = k;
24271
+ this.f.g1 = l;
24258
24272
  }
24259
- this.f.mz("Filtered");
24273
+ this.f.m0("Filtered");
24260
24274
  }
24261
24275
  b2() {
24262
- this.f.jp = !this.f.jp;
24276
+ this.f.jo = !this.f.jo;
24263
24277
  }
24264
24278
  b1() {
24265
24279
  let a = new ColumnGroupDescription(0);
@@ -24573,8 +24587,8 @@ export let EditorDefinition = /*@__PURE__*/ (() => {
24573
24587
  e.mg = f.gz;
24574
24588
  e.mi = b.actualDataSource.resolveSchemaPropertyType(f.lo);
24575
24589
  if (typeCast(DateTimeColumn.$, f) !== null) {
24576
- e.nf = (typeCast(DateTimeColumn.$, f)).oi;
24577
- e.ms = (typeCast(DateTimeColumn.$, f)).oa;
24590
+ e.nf = (typeCast(DateTimeColumn.$, f)).oj;
24591
+ e.ms = (typeCast(DateTimeColumn.$, f)).ob;
24578
24592
  }
24579
24593
  }
24580
24594
  }
@@ -24699,7 +24713,7 @@ export let FilterRowDefinition = /*@__PURE__*/ (() => {
24699
24713
  a.gk = this.g2;
24700
24714
  let e = a;
24701
24715
  let f = b.cf(a.l);
24702
- e.mq = f.jn;
24716
+ e.mq = f.jm;
24703
24717
  }
24704
24718
  eo(a, b, c, d) {
24705
24719
  super.eo(a, b, c, d);
@@ -24973,8 +24987,8 @@ export let Header = /*@__PURE__*/ (() => {
24973
24987
  super.eo(a, b, c, d);
24974
24988
  let e = b.cf(a.l);
24975
24989
  if (e != null) {
24976
- if (a.l.g && e.jg()) {
24977
- let f = e.iq;
24990
+ if (a.l.g && e.jf()) {
24991
+ let f = e.ip;
24978
24992
  let g = f.o;
24979
24993
  let h = g.count;
24980
24994
  let i = f.p;
@@ -25138,58 +25152,58 @@ export let HeaderSeparator = /*@__PURE__*/ (() => {
25138
25152
  */
25139
25153
  export let ImageColumn = /*@__PURE__*/ (() => {
25140
25154
  class ImageColumn extends DataGridColumn {
25141
- get n6() {
25142
- return this.n5;
25155
+ get n7() {
25156
+ return this.n6;
25143
25157
  }
25144
- set n6(a) {
25145
- let b = this.n5;
25146
- this.n5 = a;
25147
- if (this.n5 != b) {
25148
- this.et("ImageStretchOption", 4, enumGetBox(ImageStretchOptions_$type, b), enumGetBox(ImageStretchOptions_$type, this.n5));
25158
+ set n7(a) {
25159
+ let b = this.n6;
25160
+ this.n6 = a;
25161
+ if (this.n6 != b) {
25162
+ this.et("ImageStretchOption", 4, enumGetBox(ImageStretchOptions_$type, b), enumGetBox(ImageStretchOptions_$type, this.n6));
25149
25163
  }
25150
25164
  }
25151
- get n4() {
25152
- return this.n3;
25165
+ get n5() {
25166
+ return this.n4;
25153
25167
  }
25154
- set n4(a) {
25155
- let b = this.n3;
25156
- this.n3 = a;
25157
- if (this.n3 != b) {
25158
- this.et("ImageResourceType", 11, enumGetBox(ImageResourceType_$type, b), enumGetBox(ImageResourceType_$type, this.n3));
25168
+ set n5(a) {
25169
+ let b = this.n4;
25170
+ this.n4 = a;
25171
+ if (this.n4 != b) {
25172
+ this.et("ImageResourceType", 11, enumGetBox(ImageResourceType_$type, b), enumGetBox(ImageResourceType_$type, this.n4));
25159
25173
  }
25160
25174
  }
25161
- get n2() {
25175
+ get n3() {
25162
25176
  return this.hz;
25163
25177
  }
25164
- set n2(a) {
25178
+ set n3(a) {
25165
25179
  this.hz = a;
25166
25180
  }
25167
- get n7() {
25181
+ get n8() {
25168
25182
  return this.kq;
25169
25183
  }
25170
- set n7(a) {
25184
+ set n8(a) {
25171
25185
  this.kq = a;
25172
25186
  }
25173
- get n8() {
25187
+ get n9() {
25174
25188
  return this.lk;
25175
25189
  }
25176
- set n8(a) {
25190
+ set n9(a) {
25177
25191
  this.lk = a;
25178
25192
  }
25179
- get n9() {
25193
+ get oa() {
25180
25194
  if (this.gz == null) {
25181
25195
  return null;
25182
25196
  }
25183
25197
  return this.gz[0];
25184
25198
  }
25185
- set n9(a) {
25199
+ set oa(a) {
25186
25200
  this.gz = [a];
25187
25201
  }
25188
25202
  constructor() {
25189
25203
  super();
25190
- this.n5 = 0;
25191
- this.n3 = 0;
25192
25204
  this.n6 = 0;
25205
+ this.n4 = 0;
25206
+ this.n7 = 0;
25193
25207
  this.j = this.k();
25194
25208
  this.e = this.f();
25195
25209
  }
@@ -25228,15 +25242,15 @@ export let ImageColumn = /*@__PURE__*/ (() => {
25228
25242
  let e = a;
25229
25243
  if (c != null) {
25230
25244
  e.j1 = c.toString();
25231
- e.mi = this.n6;
25232
- e.mg = this.n4;
25233
- e.mn = this.oa(c);
25245
+ e.mi = this.n7;
25246
+ e.mg = this.n5;
25247
+ e.mn = this.ob(c);
25234
25248
  }
25235
25249
  }
25236
25250
  el(a, b, c, d) {
25237
25251
  super.el(a, b, c, d);
25238
25252
  }
25239
- oa(a) {
25253
+ ob(a) {
25240
25254
  if (a == null) {
25241
25255
  return "";
25242
25256
  }
@@ -25417,7 +25431,7 @@ export let NumericCellFormatter = /*@__PURE__*/ (() => {
25417
25431
  return NumericCellFormatter.b(a.mh, a.mw, a.my, a.m0, a.mm, a.nt, a.nv, a.no, a.nq, a.mo);
25418
25432
  }
25419
25433
  static d(a, b) {
25420
- return NumericCellFormatter.b(a.n4, a.oc, a.od, a.oe, a.n7, a.o1, a.o3, a.ox, a.oz, b);
25434
+ return NumericCellFormatter.b(a.n5, a.od, a.oe, a.of, a.n8, a.o2, a.o4, a.oy, a.o0, b);
25421
25435
  }
25422
25436
  }
25423
25437
  NumericCellFormatter.$t = /*@__PURE__*/ markType(NumericCellFormatter, 'NumericCellFormatter');
@@ -25431,18 +25445,18 @@ export let NumericColumn = /*@__PURE__*/ (() => {
25431
25445
  class NumericColumn extends DataGridColumn {
25432
25446
  constructor() {
25433
25447
  super();
25434
- this.oj = null;
25435
- this.ol = null;
25436
25448
  this.ok = null;
25437
- this.om = "";
25438
- this.n9 = 10;
25439
- this.oa = 0;
25440
- this.ob = -1;
25441
- this.n6 = false;
25442
- this.oi = null;
25443
- this.n2 = null;
25444
- this.of = null;
25445
- this.n4 = null;
25449
+ this.om = null;
25450
+ this.ol = null;
25451
+ this.on = "";
25452
+ this.oa = 10;
25453
+ this.ob = 0;
25454
+ this.oc = -1;
25455
+ this.n7 = false;
25456
+ this.oj = null;
25457
+ this.n3 = null;
25458
+ this.og = null;
25459
+ this.n5 = null;
25446
25460
  this.e = this.f();
25447
25461
  }
25448
25462
  f() {
@@ -25451,54 +25465,44 @@ export let NumericColumn = /*@__PURE__*/ (() => {
25451
25465
  }
25452
25466
  return 2;
25453
25467
  }
25454
- get ox() {
25455
- return this.oj;
25456
- }
25457
- set ox(a) {
25458
- let b = this.oj;
25459
- this.oj = a;
25460
- if (this.oj != b) {
25461
- this.et("NegativePrefix", 8, b, this.oj);
25462
- }
25463
- }
25464
- get o1() {
25465
- return this.ol;
25466
- }
25467
- set o1(a) {
25468
- let b = this.ol;
25469
- this.ol = a;
25470
- if (this.ol != b) {
25471
- this.et("PositivePrefix", 8, b, this.ol);
25472
- }
25473
- }
25474
- get oz() {
25468
+ get oy() {
25475
25469
  return this.ok;
25476
25470
  }
25477
- set oz(a) {
25471
+ set oy(a) {
25478
25472
  let b = this.ok;
25479
25473
  this.ok = a;
25480
25474
  if (this.ok != b) {
25481
- this.et("NegativeSuffix", 8, b, this.ok);
25475
+ this.et("NegativePrefix", 8, b, this.ok);
25482
25476
  }
25483
25477
  }
25484
- get o3() {
25478
+ get o2() {
25485
25479
  return this.om;
25486
25480
  }
25487
- set o3(a) {
25481
+ set o2(a) {
25488
25482
  let b = this.om;
25489
25483
  this.om = a;
25490
25484
  if (this.om != b) {
25491
- this.et("PositiveSuffix", 8, b, this.om);
25485
+ this.et("PositivePrefix", 8, b, this.om);
25492
25486
  }
25493
25487
  }
25494
- get oc() {
25495
- return this.n9;
25488
+ get o0() {
25489
+ return this.ol;
25490
+ }
25491
+ set o0(a) {
25492
+ let b = this.ol;
25493
+ this.ol = a;
25494
+ if (this.ol != b) {
25495
+ this.et("NegativeSuffix", 8, b, this.ol);
25496
+ }
25496
25497
  }
25497
- set oc(a) {
25498
- let b = this.n9;
25499
- this.n9 = a;
25500
- if (this.n9 != b) {
25501
- this.et("MaxFractionDigits", 6, b, this.n9);
25498
+ get o4() {
25499
+ return this.on;
25500
+ }
25501
+ set o4(a) {
25502
+ let b = this.on;
25503
+ this.on = a;
25504
+ if (this.on != b) {
25505
+ this.et("PositiveSuffix", 8, b, this.on);
25502
25506
  }
25503
25507
  }
25504
25508
  get od() {
@@ -25508,7 +25512,7 @@ export let NumericColumn = /*@__PURE__*/ (() => {
25508
25512
  let b = this.oa;
25509
25513
  this.oa = a;
25510
25514
  if (this.oa != b) {
25511
- this.et("MinFractionDigits", 6, b, this.oa);
25515
+ this.et("MaxFractionDigits", 6, b, this.oa);
25512
25516
  }
25513
25517
  }
25514
25518
  get oe() {
@@ -25518,74 +25522,84 @@ export let NumericColumn = /*@__PURE__*/ (() => {
25518
25522
  let b = this.ob;
25519
25523
  this.ob = a;
25520
25524
  if (this.ob != b) {
25521
- this.et("MinIntegerDigits", 6, b, this.ob);
25525
+ this.et("MinFractionDigits", 6, b, this.ob);
25522
25526
  }
25523
25527
  }
25524
- get n7() {
25525
- return this.n6;
25528
+ get of() {
25529
+ return this.oc;
25526
25530
  }
25527
- set n7(a) {
25528
- let b = this.n6;
25529
- this.n6 = a;
25530
- if (this.n6 != b) {
25531
- this.et("ShowGroupingSeparator", 5, b, this.n6);
25531
+ set of(a) {
25532
+ let b = this.oc;
25533
+ this.oc = a;
25534
+ if (this.oc != b) {
25535
+ this.et("MinIntegerDigits", 6, b, this.oc);
25532
25536
  }
25533
25537
  }
25534
- get os() {
25535
- return this.oi;
25538
+ get n8() {
25539
+ return this.n7;
25536
25540
  }
25537
- set os(a) {
25538
- let b = this.oi;
25539
- this.oi = a;
25540
- if (this.oi != b) {
25541
- this.et("FormatString", 8, b, this.oi);
25541
+ set n8(a) {
25542
+ let b = this.n7;
25543
+ this.n7 = a;
25544
+ if (this.n7 != b) {
25545
+ this.et("ShowGroupingSeparator", 5, b, this.n7);
25542
25546
  }
25543
25547
  }
25544
- get n3() {
25545
- return this.n2;
25548
+ get ot() {
25549
+ return this.oj;
25546
25550
  }
25547
- set n3(a) {
25548
- let b = this.n2;
25549
- this.n2 = a;
25550
- if (this.n2 != b) {
25551
- this.et("FormatSpecifiers", 9, b, this.n2);
25551
+ set ot(a) {
25552
+ let b = this.oj;
25553
+ this.oj = a;
25554
+ if (this.oj != b) {
25555
+ this.et("FormatString", 8, b, this.oj);
25552
25556
  }
25553
25557
  }
25554
- get oh() {
25555
- return this.of;
25558
+ get n4() {
25559
+ return this.n3;
25556
25560
  }
25557
- set oh(a) {
25558
- let b = this.of;
25559
- this.of = a;
25560
- if (this.of != b) {
25561
- this.et("FormatOverride", 9, b, this.of);
25561
+ set n4(a) {
25562
+ let b = this.n3;
25563
+ this.n3 = a;
25564
+ if (this.n3 != b) {
25565
+ this.et("FormatSpecifiers", 9, b, this.n3);
25562
25566
  }
25563
25567
  }
25564
- get n5() {
25568
+ get oi() {
25569
+ return this.og;
25570
+ }
25571
+ set oi(a) {
25572
+ let b = this.og;
25573
+ this.og = a;
25574
+ if (this.og != b) {
25575
+ this.et("FormatOverride", 9, b, this.og);
25576
+ }
25577
+ }
25578
+ get n6() {
25565
25579
  return this.hz;
25566
25580
  }
25567
- set n5(a) {
25581
+ set n6(a) {
25568
25582
  this.hz = a;
25569
25583
  }
25570
- get og() {
25584
+ get oh() {
25571
25585
  return this.kq;
25572
25586
  }
25573
- set og(a) {
25587
+ set oh(a) {
25574
25588
  this.kq = a;
25575
25589
  }
25576
- get on() {
25590
+ get oo() {
25577
25591
  return this.lk;
25578
25592
  }
25579
- set on(a) {
25593
+ set oo(a) {
25580
25594
  this.lk = a;
25581
25595
  }
25582
- get oo() {
25596
+ get op() {
25583
25597
  if (this.gz == null) {
25584
25598
  return null;
25585
25599
  }
25586
25600
  return this.gz[0];
25587
25601
  }
25588
- set oo(a) {
25602
+ set op(a) {
25589
25603
  this.gz = [a];
25590
25604
  }
25591
25605
  ev(a, b, c, d) {
@@ -25593,13 +25607,13 @@ export let NumericColumn = /*@__PURE__*/ (() => {
25593
25607
  switch (a) {
25594
25608
  case "FormatString":
25595
25609
  case "FormatSpecifiers":
25596
- if (this.os != null) {
25597
- this.n4 = new BindingFormatter();
25598
- this.n4.j = this.os;
25599
- this.n4.d = this.n3;
25610
+ if (this.ot != null) {
25611
+ this.n5 = new BindingFormatter();
25612
+ this.n5.j = this.ot;
25613
+ this.n5.d = this.n4;
25600
25614
  }
25601
25615
  else {
25602
- this.n4 = null;
25616
+ this.n5 = null;
25603
25617
  }
25604
25618
  break;
25605
25619
  }
@@ -25611,32 +25625,32 @@ export let NumericColumn = /*@__PURE__*/ (() => {
25611
25625
  return a.af == 4 ? "numeric_mergedCell" : "numeric";
25612
25626
  }
25613
25627
  dz(a, b, c) {
25614
- return this.op(b);
25628
+ return this.oq(b);
25615
25629
  }
25616
25630
  eo(a, b, c, d) {
25617
25631
  super.eo(a, b, c, d);
25618
25632
  let e = a;
25619
25633
  {
25620
25634
  e.mk = false;
25621
- e.mo = this.n8(c);
25635
+ e.mo = this.n9(c);
25622
25636
  }
25623
25637
  }
25624
25638
  el(a, b, c, d) {
25625
25639
  super.el(a, b, c, d);
25626
25640
  let e = a;
25627
- e.my = this.od;
25628
- e.mw = this.oc;
25629
- e.m0 = this.oe;
25630
- e.nt = this.o1;
25631
- e.no = this.ox;
25632
- e.nv = this.o3;
25633
- e.nq = this.oz;
25634
- e.ni = this.os;
25635
- e.mg = this.n3;
25636
- e.na = this.oh;
25637
- e.mm = this.n7;
25638
- }
25639
- n8(a) {
25641
+ e.my = this.oe;
25642
+ e.mw = this.od;
25643
+ e.m0 = this.of;
25644
+ e.nt = this.o2;
25645
+ e.no = this.oy;
25646
+ e.nv = this.o4;
25647
+ e.nq = this.o0;
25648
+ e.ni = this.ot;
25649
+ e.mg = this.n4;
25650
+ e.na = this.oi;
25651
+ e.mm = this.n8;
25652
+ }
25653
+ n9(a) {
25640
25654
  if (a == null) {
25641
25655
  return NaN;
25642
25656
  }
@@ -25675,17 +25689,17 @@ export let NumericColumn = /*@__PURE__*/ (() => {
25675
25689
  }
25676
25690
  return NaN;
25677
25691
  }
25678
- op(a) {
25692
+ oq(a) {
25679
25693
  let b = false;
25680
25694
  let c = 0;
25681
25695
  let d = 0;
25682
25696
  {
25683
25697
  b = false;
25684
- d = this.n8(a);
25698
+ d = this.n9(a);
25685
25699
  }
25686
- if (this.oh != null) {
25700
+ if (this.oi != null) {
25687
25701
  let val_ = d;
25688
- let override_ = this.oh;
25702
+ let override_ = this.oi;
25689
25703
  return (override_.format(val_));
25690
25704
  }
25691
25705
  return NumericCellFormatter.d(this, d);
@@ -26574,7 +26588,7 @@ export let SectionHeader = /*@__PURE__*/ (() => {
26574
26588
  this.hl();
26575
26589
  if (this.g4.containsKey(c.f)) {
26576
26590
  let j = this.g4.item(c.f);
26577
- let k = j.n8(b);
26591
+ let k = j.n9(b);
26578
26592
  if (k != null) {
26579
26593
  e = k;
26580
26594
  }
@@ -27159,7 +27173,7 @@ export let TemplateColumn = /*@__PURE__*/ (() => {
27159
27173
  constructor() {
27160
27174
  super();
27161
27175
  this.cellUpdating = null;
27162
- this.jm = false;
27176
+ this.jl = false;
27163
27177
  }
27164
27178
  n(a) {
27165
27179
  return new TemplateCellModel();
@@ -27177,7 +27191,7 @@ export let TemplateColumn = /*@__PURE__*/ (() => {
27177
27191
  el(a, b, c, d) {
27178
27192
  super.el(a, b, c, d);
27179
27193
  }
27180
- n3(a, b) {
27194
+ n4(a, b) {
27181
27195
  if (this.cellUpdating != null) {
27182
27196
  this.cellUpdating(this, ((() => {
27183
27197
  let $ret = new TemplateCellUpdatingEventArgs();
@@ -27190,7 +27204,7 @@ export let TemplateColumn = /*@__PURE__*/ (() => {
27190
27204
  ev(a, b, c, d) {
27191
27205
  switch (a) {
27192
27206
  case "IsEditable":
27193
- this.jm = false;
27207
+ this.jl = false;
27194
27208
  break;
27195
27209
  }
27196
27210
  super.ev(a, b, c, d);
@@ -27232,43 +27246,43 @@ export let TextColumn = /*@__PURE__*/ (() => {
27232
27246
  class TextColumn extends DataGridColumn {
27233
27247
  constructor() {
27234
27248
  super(...arguments);
27235
- this.n4 = null;
27249
+ this.n5 = null;
27236
27250
  }
27237
- get n8() {
27238
- return this.n4;
27251
+ get n9() {
27252
+ return this.n5;
27239
27253
  }
27240
- set n8(a) {
27241
- let b = this.n4;
27242
- this.n4 = a;
27243
- if (this.n4 != b) {
27244
- this.et("FormatString", 8, b, this.n4);
27254
+ set n9(a) {
27255
+ let b = this.n5;
27256
+ this.n5 = a;
27257
+ if (this.n5 != b) {
27258
+ this.et("FormatString", 8, b, this.n5);
27245
27259
  }
27246
27260
  }
27247
- get n2() {
27261
+ get n3() {
27248
27262
  return this.hz;
27249
27263
  }
27250
- set n2(a) {
27264
+ set n3(a) {
27251
27265
  this.hz = a;
27252
27266
  }
27253
- get n3() {
27267
+ get n4() {
27254
27268
  return this.kq;
27255
27269
  }
27256
- set n3(a) {
27270
+ set n4(a) {
27257
27271
  this.kq = a;
27258
27272
  }
27259
- get n5() {
27273
+ get n6() {
27260
27274
  return this.lk;
27261
27275
  }
27262
- set n5(a) {
27276
+ set n6(a) {
27263
27277
  this.lk = a;
27264
27278
  }
27265
- get n6() {
27279
+ get n7() {
27266
27280
  if (this.gz == null) {
27267
27281
  return null;
27268
27282
  }
27269
27283
  return this.gz[0];
27270
27284
  }
27271
- set n6(a) {
27285
+ set n7(a) {
27272
27286
  this.gz = [a];
27273
27287
  }
27274
27288
  n(a) {
@@ -27285,13 +27299,13 @@ export let TextColumn = /*@__PURE__*/ (() => {
27285
27299
  }
27286
27300
  dz(a, b, c) {
27287
27301
  if (b != null) {
27288
- return this.n7(b);
27302
+ return this.n8(b);
27289
27303
  }
27290
27304
  else {
27291
27305
  return null;
27292
27306
  }
27293
27307
  }
27294
- n7(a) {
27308
+ n8(a) {
27295
27309
  if (typeof a === 'string') {
27296
27310
  return a;
27297
27311
  }
@@ -27326,7 +27340,7 @@ export let TextHeader = /*@__PURE__*/ (() => {
27326
27340
  let e = a;
27327
27341
  let f = b.cf(a.l);
27328
27342
  e.mk = f.hi;
27329
- e.m2 = f.nq;
27343
+ e.m2 = f.nr;
27330
27344
  e.mm = f.hm;
27331
27345
  }
27332
27346
  eo(a, b, c, d) {
@@ -27336,7 +27350,7 @@ export let TextHeader = /*@__PURE__*/ (() => {
27336
27350
  e.mh = f.k3;
27337
27351
  e.j1 = e.mh;
27338
27352
  e.n = f.hr;
27339
- e.mq = f.jb;
27353
+ e.mq = f.ja;
27340
27354
  e.mo = this.g0;
27341
27355
  }
27342
27356
  }
@@ -29094,7 +29108,7 @@ export let VisibilityEngine = /*@__PURE__*/ (() => {
29094
29108
  }
29095
29109
  else if (!m) {
29096
29110
  let ab = a.cf(aa);
29097
- if (!ab.jn) {
29111
+ if (!ab.jm) {
29098
29112
  l = true;
29099
29113
  }
29100
29114
  }
@@ -30119,7 +30133,7 @@ export let VisibilityEngine = /*@__PURE__*/ (() => {
30119
30133
  return;
30120
30134
  }
30121
30135
  let k = a.actualColumns._inner[b.l.a5];
30122
- if (!k.js()) {
30136
+ if (!k.jr()) {
30123
30137
  return;
30124
30138
  }
30125
30139
  let l = k.ic();