igniteui-webcomponents-data-grids 7.0.1 → 7.1.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-webcomponents-data-grids.umd.js +767 -690
- package/bundles/igniteui-webcomponents-data-grids.umd.min.js +1 -1
- package/esm2015/lib/CheckboxListView_combined.js +2 -2
- package/esm2015/lib/ColumnFilterCondition_combined.js +680 -640
- package/esm2015/lib/ColumnGroupingView_combined.js +1 -1
- package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +1 -1
- package/esm2015/lib/DataGridScrollerKeyboardListener.js +4 -1
- package/esm2015/lib/DataGridToolbarView_combined.js +1 -1
- package/esm2015/lib/DraggerView.js +8 -8
- package/esm2015/lib/GridExternalWrapper.js +6 -0
- package/esm2015/lib/GridFilterDialogView_combined.js +36 -35
- package/esm2015/lib/NativeUIComboFactory.js +1 -1
- package/esm2015/lib/NativeUIGridFactory.js +2 -2
- package/esm2015/lib/SectionHeaderCell.js +12 -0
- package/esm2015/lib/SummaryCell.js +9 -0
- package/esm2015/lib/TemplateCell.js +1 -1
- package/esm2015/lib/igc-data-grid-component.js +7 -1
- package/esm5/lib/CheckboxListView_combined.js +2 -2
- package/esm5/lib/ColumnFilterCondition_combined.js +677 -637
- package/esm5/lib/ColumnGroupingView_combined.js +1 -1
- package/esm5/lib/ComparisonOperatorSelectorView_combined.js +1 -1
- package/esm5/lib/DataGridScrollerKeyboardListener.js +4 -1
- package/esm5/lib/DataGridToolbarView_combined.js +1 -1
- package/esm5/lib/DraggerView.js +8 -8
- package/esm5/lib/GridExternalWrapper.js +6 -0
- package/esm5/lib/GridFilterDialogView_combined.js +36 -35
- package/esm5/lib/NativeUIComboFactory.js +1 -1
- package/esm5/lib/NativeUIGridFactory.js +2 -2
- package/esm5/lib/SectionHeaderCell.js +12 -0
- package/esm5/lib/SummaryCell.js +9 -0
- package/esm5/lib/TemplateCell.js +1 -1
- package/esm5/lib/igc-data-grid-component.js +7 -1
- package/fesm2015/igniteui-webcomponents-data-grids.js +769 -692
- package/fesm5/igniteui-webcomponents-data-grids.js +768 -691
- package/lib/ColumnFilterCondition_combined.d.ts +117 -114
- package/lib/DataGridScrollerKeyboardListener.d.ts +1 -0
- package/lib/GridExternalWrapper.d.ts +2 -0
- package/lib/SectionHeaderCell.d.ts +2 -0
- package/lib/SummaryCell.d.ts +2 -0
- package/lib/igc-data-grid-component.d.ts +2 -0
- package/package.json +4 -4
|
@@ -1031,12 +1031,12 @@ export var DefaultCellActionManager = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1031
1031
|
};
|
|
1032
1032
|
DefaultCellActionManager.prototype.previewMouseDownCell = function (a, b, c) {
|
|
1033
1033
|
if (this.b != null && this.a != null) {
|
|
1034
|
-
this.b.
|
|
1034
|
+
this.b.xk(this.a, a, b, c);
|
|
1035
1035
|
}
|
|
1036
1036
|
};
|
|
1037
1037
|
DefaultCellActionManager.prototype.previewMouseUpCell = function (a, b, c) {
|
|
1038
1038
|
if (this.b != null && this.a != null) {
|
|
1039
|
-
this.b.
|
|
1039
|
+
this.b.xl(this.a, a, b, c);
|
|
1040
1040
|
}
|
|
1041
1041
|
};
|
|
1042
1042
|
DefaultCellActionManager.prototype.mouseDownCell = function (a, b) {
|
|
@@ -1061,7 +1061,7 @@ export var DefaultCellActionManager = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1061
1061
|
};
|
|
1062
1062
|
DefaultCellActionManager.prototype.mouseIsOver = function (a, b) {
|
|
1063
1063
|
if (this.b != null && this.a != null) {
|
|
1064
|
-
this.b.
|
|
1064
|
+
this.b.xj(this.a, a, b);
|
|
1065
1065
|
}
|
|
1066
1066
|
};
|
|
1067
1067
|
DefaultCellActionManager.prototype.doubleClicked = function (a) {
|
|
@@ -1194,7 +1194,7 @@ export var DefaultCellActionManager = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1194
1194
|
});
|
|
1195
1195
|
Object.defineProperty(DefaultCellActionManager.prototype, "mousePosition", {
|
|
1196
1196
|
get: function () {
|
|
1197
|
-
return this.b.
|
|
1197
|
+
return this.b.ach;
|
|
1198
1198
|
},
|
|
1199
1199
|
enumerable: false,
|
|
1200
1200
|
configurable: true
|
|
@@ -6991,7 +6991,7 @@ export var DataSourceNotificationBridge = /** @class */ /*@__PURE__*/ (function
|
|
|
6991
6991
|
}
|
|
6992
6992
|
};
|
|
6993
6993
|
DataSourceNotificationBridge.prototype.notifySetItem = function (a, b, c) {
|
|
6994
|
-
this.b.
|
|
6994
|
+
this.b.x2(a, b, c);
|
|
6995
6995
|
if (this.a != null) {
|
|
6996
6996
|
this.a.notifySetItem(a, b, c);
|
|
6997
6997
|
}
|
|
@@ -7003,13 +7003,13 @@ export var DataSourceNotificationBridge = /** @class */ /*@__PURE__*/ (function
|
|
|
7003
7003
|
}
|
|
7004
7004
|
};
|
|
7005
7005
|
DataSourceNotificationBridge.prototype.notifyInsertItem = function (a, b) {
|
|
7006
|
-
this.b.
|
|
7006
|
+
this.b.xg(a, b);
|
|
7007
7007
|
if (this.a != null) {
|
|
7008
7008
|
this.a.notifyInsertItem(a, b);
|
|
7009
7009
|
}
|
|
7010
7010
|
};
|
|
7011
7011
|
DataSourceNotificationBridge.prototype.notifyRemoveItem = function (a, b) {
|
|
7012
|
-
this.b.
|
|
7012
|
+
this.b.xn(a, b);
|
|
7013
7013
|
if (this.a != null) {
|
|
7014
7014
|
this.a.notifyRemoveItem(a, b);
|
|
7015
7015
|
}
|
|
@@ -7279,11 +7279,9 @@ export var EditingManager = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
7279
7279
|
configurable: true
|
|
7280
7280
|
});
|
|
7281
7281
|
EditingManager.prototype.y = function (a, b) {
|
|
7282
|
-
if (
|
|
7283
|
-
if (
|
|
7284
|
-
|
|
7285
|
-
this.g.c6.r(this.g, this.c, b.propertyName, b.animationType, b.oldValue, b.newValue, 9);
|
|
7286
|
-
}
|
|
7282
|
+
if (b.animationType != 10) {
|
|
7283
|
+
if (this.c != null) {
|
|
7284
|
+
this.g.c6.r(this.g, this.c, b.propertyName, b.animationType, b.oldValue, b.newValue, 9);
|
|
7287
7285
|
}
|
|
7288
7286
|
}
|
|
7289
7287
|
};
|
|
@@ -7370,7 +7368,7 @@ export var EditingManager = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
7370
7368
|
EditingManager.prototype.x = function () {
|
|
7371
7369
|
};
|
|
7372
7370
|
EditingManager.prototype.z = function () {
|
|
7373
|
-
this.g.
|
|
7371
|
+
this.g.yf();
|
|
7374
7372
|
};
|
|
7375
7373
|
EditingManager.prototype.h = function (a, b) {
|
|
7376
7374
|
if (a.is != 0) {
|
|
@@ -7451,11 +7449,11 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
7451
7449
|
_this.be = 0;
|
|
7452
7450
|
_this.e2 = null;
|
|
7453
7451
|
_this.h8 = true;
|
|
7454
|
-
_this.aap = null;
|
|
7455
7452
|
_this.aaq = null;
|
|
7456
|
-
_this.
|
|
7457
|
-
_this.
|
|
7458
|
-
_this.
|
|
7453
|
+
_this.aar = null;
|
|
7454
|
+
_this.aai = null;
|
|
7455
|
+
_this.acn = new Thickness(0, 1);
|
|
7456
|
+
_this.ach = null;
|
|
7459
7457
|
_this.as = null;
|
|
7460
7458
|
_this.ap = null;
|
|
7461
7459
|
_this.hx = false;
|
|
@@ -7559,7 +7557,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
7559
7557
|
_this.bb = 1;
|
|
7560
7558
|
_this.a8 = 1;
|
|
7561
7559
|
_this.a0 = 1;
|
|
7562
|
-
_this.
|
|
7560
|
+
_this.aco = new Thickness(1, 0, 0, 0, 0);
|
|
7563
7561
|
_this.ch = 5;
|
|
7564
7562
|
_this.c2 = 1;
|
|
7565
7563
|
_this.el = 1;
|
|
@@ -7576,71 +7574,71 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
7576
7574
|
_this.hy = false;
|
|
7577
7575
|
_this.h3 = true;
|
|
7578
7576
|
_this.h4 = true;
|
|
7579
|
-
_this.
|
|
7580
|
-
_this.
|
|
7581
|
-
_this.
|
|
7582
|
-
_this.
|
|
7577
|
+
_this.z6 = null;
|
|
7578
|
+
_this.aay = null;
|
|
7579
|
+
_this.aa1 = null;
|
|
7580
|
+
_this.aa5 = null;
|
|
7583
7581
|
_this.mf = NaN;
|
|
7584
7582
|
_this.gu = null;
|
|
7585
7583
|
_this.mb = NaN;
|
|
7586
|
-
_this.
|
|
7587
|
-
_this.
|
|
7584
|
+
_this.aah = null;
|
|
7585
|
+
_this.aa0 = null;
|
|
7586
|
+
_this.aap = null;
|
|
7588
7587
|
_this.aao = null;
|
|
7589
|
-
_this.aan = null;
|
|
7590
7588
|
_this.dh = null;
|
|
7591
7589
|
_this.dg = null;
|
|
7592
|
-
_this.
|
|
7593
|
-
_this.
|
|
7594
|
-
_this.
|
|
7590
|
+
_this.z5 = null;
|
|
7591
|
+
_this.z7 = null;
|
|
7592
|
+
_this.aam = null;
|
|
7595
7593
|
_this.f7 = 0;
|
|
7596
7594
|
_this.gt = null;
|
|
7597
|
-
_this.
|
|
7598
|
-
_this.
|
|
7595
|
+
_this.aax = null;
|
|
7596
|
+
_this.aaz = null;
|
|
7599
7597
|
_this.gw = null;
|
|
7600
7598
|
_this.gx = null;
|
|
7601
7599
|
_this.gz = null;
|
|
7602
|
-
_this.
|
|
7600
|
+
_this.aa4 = null;
|
|
7603
7601
|
_this.gy = null;
|
|
7604
7602
|
_this.g0 = null;
|
|
7605
|
-
_this.
|
|
7606
|
-
_this.aa1 = null;
|
|
7607
|
-
_this.aa5 = null;
|
|
7603
|
+
_this.aa8 = null;
|
|
7608
7604
|
_this.aa2 = null;
|
|
7609
7605
|
_this.aa6 = null;
|
|
7606
|
+
_this.aa3 = null;
|
|
7607
|
+
_this.aa7 = null;
|
|
7610
7608
|
_this.nd = truncate(DeviceUtils.g(2));
|
|
7611
7609
|
_this.m8 = truncate(DeviceUtils.g(1));
|
|
7612
|
-
_this.
|
|
7613
|
-
_this.aai = null;
|
|
7614
|
-
_this.aam = null;
|
|
7615
|
-
_this.gv = null;
|
|
7616
|
-
_this.aar = null;
|
|
7610
|
+
_this.aal = null;
|
|
7617
7611
|
_this.aaj = null;
|
|
7618
|
-
_this.
|
|
7612
|
+
_this.aan = null;
|
|
7613
|
+
_this.gv = null;
|
|
7619
7614
|
_this.aas = null;
|
|
7615
|
+
_this.aak = null;
|
|
7616
|
+
_this.aav = null;
|
|
7620
7617
|
_this.aat = null;
|
|
7618
|
+
_this.aau = null;
|
|
7621
7619
|
_this.m4 = truncate(DeviceUtils.g(4));
|
|
7622
7620
|
_this.l5 = 1;
|
|
7623
7621
|
_this.m2 = truncate(DeviceUtils.g(2));
|
|
7624
7622
|
_this.l4 = 1;
|
|
7625
|
-
_this.
|
|
7626
|
-
_this.
|
|
7623
|
+
_this.aag = null;
|
|
7624
|
+
_this.z8 = null;
|
|
7627
7625
|
_this.ip = false;
|
|
7628
7626
|
_this.bi = 0;
|
|
7629
|
-
_this.
|
|
7627
|
+
_this.aad = null;
|
|
7630
7628
|
_this.bk = 0;
|
|
7631
|
-
_this.
|
|
7632
|
-
_this.
|
|
7633
|
-
_this.
|
|
7634
|
-
_this.
|
|
7635
|
-
_this.
|
|
7629
|
+
_this.z2 = null;
|
|
7630
|
+
_this.z4 = null;
|
|
7631
|
+
_this.acm = GridStyleRepository.u;
|
|
7632
|
+
_this.ack = GridStyleRepository.u;
|
|
7633
|
+
_this.acl = new Thickness(0, NaN);
|
|
7636
7634
|
_this.ih = false;
|
|
7637
|
-
_this.
|
|
7638
|
-
_this.
|
|
7639
|
-
_this.
|
|
7635
|
+
_this.zw = GridStyleRepository.p;
|
|
7636
|
+
_this.zv = new CornerRadius(0, NaN);
|
|
7637
|
+
_this.zu = GridStyleRepository.p;
|
|
7640
7638
|
_this.ht = true;
|
|
7641
7639
|
_this.iv = false;
|
|
7642
|
-
_this.
|
|
7643
|
-
_this.
|
|
7640
|
+
_this.z1 = null;
|
|
7641
|
+
_this.z3 = null;
|
|
7644
7642
|
_this.g9 = new DefaultPlatformPixelConverter();
|
|
7645
7643
|
_this.e3 = null;
|
|
7646
7644
|
_this.fr = null;
|
|
@@ -7763,13 +7761,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
7763
7761
|
_this.pb = null;
|
|
7764
7762
|
_this.pc = null;
|
|
7765
7763
|
_this.gn = 1;
|
|
7766
|
-
_this.
|
|
7767
|
-
_this.z9 = null;
|
|
7768
|
-
_this.aae = null;
|
|
7769
|
-
_this.aad = null;
|
|
7764
|
+
_this.aaw = null;
|
|
7770
7765
|
_this.aaa = null;
|
|
7766
|
+
_this.aaf = null;
|
|
7767
|
+
_this.aae = null;
|
|
7771
7768
|
_this.aab = null;
|
|
7772
|
-
_this.
|
|
7769
|
+
_this.aac = null;
|
|
7770
|
+
_this.z9 = null;
|
|
7773
7771
|
_this.hh = false;
|
|
7774
7772
|
_this.hl = false;
|
|
7775
7773
|
_this.sectionHeader = new SectionHeader();
|
|
@@ -7785,10 +7783,10 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
7785
7783
|
_this.cq = new EditRowDefinition();
|
|
7786
7784
|
_this.cz = new FilterRowDefinition();
|
|
7787
7785
|
_this.cz.grid = _this;
|
|
7788
|
-
_this.
|
|
7789
|
-
_this.
|
|
7790
|
-
_this.
|
|
7791
|
-
_this.
|
|
7786
|
+
_this.acl = _this.acm;
|
|
7787
|
+
_this.zv = _this.zw;
|
|
7788
|
+
_this.z2 = GridStyleRepository.s(_this.theme, 28);
|
|
7789
|
+
_this.z1 = GridStyleRepository.s(_this.theme, 29);
|
|
7792
7790
|
_this.ay = new ColumnController(_this.dm, _this.autoGenerateColumns, runOn(_this, _this.vz));
|
|
7793
7791
|
var a = _this.ay.j;
|
|
7794
7792
|
a.collectionChanged = delegateCombine(a.collectionChanged, runOn(_this, _this.um));
|
|
@@ -7800,19 +7798,19 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
7800
7798
|
_this.j6 = _this.k7();
|
|
7801
7799
|
_this.f6 = new SelectionManager(_this, _this.c6);
|
|
7802
7800
|
_this.ae = new ActivationManager(_this, _this.c6);
|
|
7803
|
-
_this.ed.ag(runOn(_this, _this.
|
|
7804
|
-
_this.ei.an(runOn(_this, _this.
|
|
7805
|
-
_this.d9.an(runOn(_this, _this.
|
|
7801
|
+
_this.ed.ag(runOn(_this, _this.y8));
|
|
7802
|
+
_this.ei.an(runOn(_this, _this.y9));
|
|
7803
|
+
_this.d9.an(runOn(_this, _this.y7));
|
|
7806
7804
|
var b = _this.d6;
|
|
7807
|
-
b.collectionChanged = delegateCombine(b.collectionChanged, runOn(_this, _this.
|
|
7808
|
-
_this.ec.ag(runOn(_this, _this.
|
|
7809
|
-
_this.eh.an(runOn(_this, _this.
|
|
7805
|
+
b.collectionChanged = delegateCombine(b.collectionChanged, runOn(_this, _this.y6));
|
|
7806
|
+
_this.ec.ag(runOn(_this, _this.x7));
|
|
7807
|
+
_this.eh.an(runOn(_this, _this.x8));
|
|
7810
7808
|
_this.b3 = new ColumnSortDescriptionCollection();
|
|
7811
7809
|
_this.a3 = new ColumnGroupDescriptionCollection();
|
|
7812
7810
|
_this.b8 = new ColumnSummaryDescriptionCollection();
|
|
7813
|
-
_this.b3.m(runOn(_this, _this.
|
|
7811
|
+
_this.b3.m(runOn(_this, _this.zf));
|
|
7814
7812
|
_this.a3.m(runOn(_this, _this.vh));
|
|
7815
|
-
_this.b8.m(runOn(_this, _this.
|
|
7813
|
+
_this.b8.m(runOn(_this, _this.zh));
|
|
7816
7814
|
_this.u = new FilterExpressionCollection();
|
|
7817
7815
|
_this.u.n(runOn(_this, _this.ve));
|
|
7818
7816
|
_this.ga = new SortManager(_this);
|
|
@@ -7934,7 +7932,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
7934
7932
|
var b = this.gp;
|
|
7935
7933
|
this.gp = a;
|
|
7936
7934
|
if (b != this.gp) {
|
|
7937
|
-
this.
|
|
7935
|
+
this.xm("Theme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, this.gp));
|
|
7938
7936
|
}
|
|
7939
7937
|
},
|
|
7940
7938
|
enumerable: false,
|
|
@@ -8067,15 +8065,15 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8067
8065
|
})()));
|
|
8068
8066
|
}
|
|
8069
8067
|
};
|
|
8070
|
-
DataGrid.prototype.
|
|
8068
|
+
DataGrid.prototype.xs = function (a, b) {
|
|
8071
8069
|
this.vn(a);
|
|
8072
8070
|
};
|
|
8073
8071
|
DataGrid.prototype.xe = function (a) {
|
|
8074
8072
|
if (a.w == 2) {
|
|
8075
|
-
this.
|
|
8073
|
+
this.zo(a.l.x);
|
|
8076
8074
|
}
|
|
8077
8075
|
};
|
|
8078
|
-
DataGrid.prototype.
|
|
8076
|
+
DataGrid.prototype.zo = function (a) {
|
|
8079
8077
|
if (this.ck.j) {
|
|
8080
8078
|
if (!this.je(true)) {
|
|
8081
8079
|
return;
|
|
@@ -8164,7 +8162,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8164
8162
|
var g = this.model.b9._inner[a.l.a5].n;
|
|
8165
8163
|
if (this.selectionBehavior == 1) {
|
|
8166
8164
|
if (b) {
|
|
8167
|
-
this.
|
|
8165
|
+
this.yb(a.l.x, g);
|
|
8168
8166
|
}
|
|
8169
8167
|
else {
|
|
8170
8168
|
if (c && this.au != null) {
|
|
@@ -8174,20 +8172,20 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8174
8172
|
this.uo(Math.min(this.au.k, h), Math.max(this.au.k, h), Math.min(this.au.l, i), Math.max(this.au.l, i));
|
|
8175
8173
|
}
|
|
8176
8174
|
else {
|
|
8177
|
-
this.
|
|
8175
|
+
this.yn();
|
|
8178
8176
|
this.uo(g, g, a.l.x, a.l.x);
|
|
8179
8177
|
}
|
|
8180
8178
|
}
|
|
8181
8179
|
}
|
|
8182
8180
|
else if (this.selectionBehavior == 0) {
|
|
8183
|
-
this.
|
|
8181
|
+
this.yb(a.l.x, g);
|
|
8184
8182
|
}
|
|
8185
8183
|
}
|
|
8186
8184
|
}
|
|
8187
8185
|
else {
|
|
8188
8186
|
this.f6.z(a, c, b, this.selectionBehavior == 0);
|
|
8189
8187
|
}
|
|
8190
|
-
this.
|
|
8188
|
+
this.x1();
|
|
8191
8189
|
if (this.activationMode == 1) {
|
|
8192
8190
|
this.ae.aa(a);
|
|
8193
8191
|
}
|
|
@@ -8203,12 +8201,12 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8203
8201
|
})()));
|
|
8204
8202
|
}
|
|
8205
8203
|
};
|
|
8206
|
-
DataGrid.prototype.
|
|
8204
|
+
DataGrid.prototype.yb = function (a, b) {
|
|
8207
8205
|
var c = false;
|
|
8208
8206
|
for (var d = 0; d < this.selectedCellRanges.count; d++) {
|
|
8209
8207
|
var e = this.selectedCellRanges._inner[d];
|
|
8210
8208
|
if (e.k == b && e.i == b && e.l == a && e.j == a) {
|
|
8211
|
-
this.
|
|
8209
|
+
this.yo(this.selectedCellRanges._inner[d]);
|
|
8212
8210
|
c = true;
|
|
8213
8211
|
break;
|
|
8214
8212
|
}
|
|
@@ -8225,7 +8223,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8225
8223
|
var b = this.bs;
|
|
8226
8224
|
this.bs = a;
|
|
8227
8225
|
if (b != this.bs) {
|
|
8228
|
-
this.
|
|
8226
|
+
this.xm("ColumnResizingMode", enumGetBox(ColumnResizingMode_$type, b), enumGetBox(ColumnResizingMode_$type, this.bs));
|
|
8229
8227
|
}
|
|
8230
8228
|
},
|
|
8231
8229
|
enumerable: false,
|
|
@@ -8239,7 +8237,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8239
8237
|
var b = this.be;
|
|
8240
8238
|
this.be = a;
|
|
8241
8239
|
if (b != this.be) {
|
|
8242
|
-
this.
|
|
8240
|
+
this.xm("ColumnMovingMode", enumGetBox(ColumnMovingMode_$type, b), enumGetBox(ColumnMovingMode_$type, this.be));
|
|
8243
8241
|
}
|
|
8244
8242
|
},
|
|
8245
8243
|
enumerable: false,
|
|
@@ -8253,7 +8251,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8253
8251
|
var b = this.h8;
|
|
8254
8252
|
this.h8 = a;
|
|
8255
8253
|
if (b != this.h8) {
|
|
8256
|
-
this.
|
|
8254
|
+
this.xm("IsRowHoverEnabled", b, this.h8);
|
|
8257
8255
|
}
|
|
8258
8256
|
},
|
|
8259
8257
|
enumerable: false,
|
|
@@ -8261,13 +8259,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8261
8259
|
});
|
|
8262
8260
|
Object.defineProperty(DataGrid.prototype, "rowHoverBackground", {
|
|
8263
8261
|
get: function () {
|
|
8264
|
-
return this.
|
|
8262
|
+
return this.aaq;
|
|
8265
8263
|
},
|
|
8266
8264
|
set: function (a) {
|
|
8267
|
-
var b = this.
|
|
8268
|
-
this.
|
|
8269
|
-
if (b != this.
|
|
8270
|
-
this.
|
|
8265
|
+
var b = this.aaq;
|
|
8266
|
+
this.aaq = a;
|
|
8267
|
+
if (b != this.aaq) {
|
|
8268
|
+
this.xm("RowHoverBackground", b, this.aaq);
|
|
8271
8269
|
}
|
|
8272
8270
|
},
|
|
8273
8271
|
enumerable: false,
|
|
@@ -8275,13 +8273,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8275
8273
|
});
|
|
8276
8274
|
Object.defineProperty(DataGrid.prototype, "rowHoverTextColor", {
|
|
8277
8275
|
get: function () {
|
|
8278
|
-
return this.
|
|
8276
|
+
return this.aar;
|
|
8279
8277
|
},
|
|
8280
8278
|
set: function (a) {
|
|
8281
|
-
var b = this.
|
|
8282
|
-
this.
|
|
8283
|
-
if (b != this.
|
|
8284
|
-
this.
|
|
8279
|
+
var b = this.aar;
|
|
8280
|
+
this.aar = a;
|
|
8281
|
+
if (b != this.aar) {
|
|
8282
|
+
this.xm("RowHoverTextColor", b, this.aar);
|
|
8285
8283
|
}
|
|
8286
8284
|
},
|
|
8287
8285
|
enumerable: false,
|
|
@@ -8289,13 +8287,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8289
8287
|
});
|
|
8290
8288
|
Object.defineProperty(DataGrid.prototype, "editRowBorder", {
|
|
8291
8289
|
get: function () {
|
|
8292
|
-
return this.
|
|
8290
|
+
return this.aai;
|
|
8293
8291
|
},
|
|
8294
8292
|
set: function (a) {
|
|
8295
|
-
var b = this.
|
|
8296
|
-
this.
|
|
8297
|
-
if (b != this.
|
|
8298
|
-
this.
|
|
8293
|
+
var b = this.aai;
|
|
8294
|
+
this.aai = a;
|
|
8295
|
+
if (b != this.aai) {
|
|
8296
|
+
this.xm("EditRowBorder", b, this.aai);
|
|
8299
8297
|
}
|
|
8300
8298
|
},
|
|
8301
8299
|
enumerable: false,
|
|
@@ -8303,13 +8301,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8303
8301
|
});
|
|
8304
8302
|
Object.defineProperty(DataGrid.prototype, "editRowBorderWidth", {
|
|
8305
8303
|
get: function () {
|
|
8306
|
-
return this.
|
|
8304
|
+
return this.acn;
|
|
8307
8305
|
},
|
|
8308
8306
|
set: function (a) {
|
|
8309
|
-
var b = this.
|
|
8310
|
-
this.
|
|
8311
|
-
if (b != this.
|
|
8312
|
-
this.
|
|
8307
|
+
var b = this.acn;
|
|
8308
|
+
this.acn = a;
|
|
8309
|
+
if (b != this.acn) {
|
|
8310
|
+
this.xm("EditRowBorderWidth", b, this.acn);
|
|
8313
8311
|
}
|
|
8314
8312
|
},
|
|
8315
8313
|
enumerable: false,
|
|
@@ -8317,7 +8315,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8317
8315
|
});
|
|
8318
8316
|
DataGrid.prototype.wf = function (a, b, c) {
|
|
8319
8317
|
this.ap = a.l.ab();
|
|
8320
|
-
this.
|
|
8318
|
+
this.ach = { $type: Point_$type, x: b, y: c };
|
|
8321
8319
|
this.hx = a.bo && a.bp;
|
|
8322
8320
|
if (this.dragger != null && this.columnResizingMode != 2 && this.ap.h) {
|
|
8323
8321
|
var d = this.az.j._inner[a.l.a5];
|
|
@@ -8356,10 +8354,10 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8356
8354
|
this.e2.f(-1);
|
|
8357
8355
|
}
|
|
8358
8356
|
};
|
|
8359
|
-
DataGrid.prototype.xj = function (a, b, c, d) {
|
|
8360
|
-
};
|
|
8361
8357
|
DataGrid.prototype.xk = function (a, b, c, d) {
|
|
8362
8358
|
};
|
|
8359
|
+
DataGrid.prototype.xl = function (a, b, c, d) {
|
|
8360
|
+
};
|
|
8363
8361
|
Object.defineProperty(DataGrid.prototype, "oj", {
|
|
8364
8362
|
get: function () {
|
|
8365
8363
|
return this.na;
|
|
@@ -8395,7 +8393,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8395
8393
|
}
|
|
8396
8394
|
}
|
|
8397
8395
|
};
|
|
8398
|
-
DataGrid.prototype.
|
|
8396
|
+
DataGrid.prototype.xj = function (a, b, c) {
|
|
8399
8397
|
if (this.dragger == null || !this.dragger.isDragActive) {
|
|
8400
8398
|
if (a.l.h && this.columnResizingMode != 2) {
|
|
8401
8399
|
var d = this.az.j._inner[a.l.a5];
|
|
@@ -8432,7 +8430,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8432
8430
|
}
|
|
8433
8431
|
else if (this.selectionMode == 5 && this.mouseDragSelectionEnabled && a.aj && !a.a0) {
|
|
8434
8432
|
if (!d) {
|
|
8435
|
-
this.
|
|
8433
|
+
this.yn();
|
|
8436
8434
|
}
|
|
8437
8435
|
this.no = a.x;
|
|
8438
8436
|
this.nn = this.model.b9._inner[a.a5].n;
|
|
@@ -8518,13 +8516,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8518
8516
|
}
|
|
8519
8517
|
}
|
|
8520
8518
|
else if (this.dragger.dragType == 3) {
|
|
8521
|
-
this.
|
|
8519
|
+
this.x1();
|
|
8522
8520
|
if (this.deferEventForRowDragSelection) {
|
|
8523
8521
|
this.va();
|
|
8524
8522
|
}
|
|
8525
8523
|
}
|
|
8526
8524
|
else if (this.dragger.dragType == 0) {
|
|
8527
|
-
this.
|
|
8525
|
+
this.x1();
|
|
8528
8526
|
}
|
|
8529
8527
|
};
|
|
8530
8528
|
DataGrid.prototype.w6 = function (a, b) {
|
|
@@ -8672,29 +8670,29 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8672
8670
|
DataGrid.prototype.xa = function (a) {
|
|
8673
8671
|
if (a || !this.i5(this.l9 + this.model.actualVisibleRegion.x, this.ma + this.model.actualVisibleRegion.y)) {
|
|
8674
8672
|
var b = this.l9 + this.model.actualVisibleRegion.x;
|
|
8675
|
-
var c = this.
|
|
8673
|
+
var c = this.acj(b, this.l8, this.l9, this.ma);
|
|
8676
8674
|
var d = this.av(c, this.no, this.nn, this.iu);
|
|
8677
|
-
this.
|
|
8675
|
+
this.y5(d);
|
|
8678
8676
|
}
|
|
8679
8677
|
};
|
|
8680
|
-
DataGrid.prototype.
|
|
8678
|
+
DataGrid.prototype.y5 = function (a) {
|
|
8681
8679
|
if (this.at == null) {
|
|
8682
8680
|
this.at = a;
|
|
8683
8681
|
this.un(this.at);
|
|
8684
8682
|
}
|
|
8685
8683
|
else {
|
|
8686
|
-
this.
|
|
8684
|
+
this.zt(a);
|
|
8687
8685
|
}
|
|
8688
8686
|
};
|
|
8689
8687
|
DataGrid.prototype.xb = function (a, b) {
|
|
8690
8688
|
if (a || !this.i5(this.l9 + this.model.actualVisibleRegion.x, this.ma + this.model.actualVisibleRegion.y)) {
|
|
8691
8689
|
var c = this.l9 + this.model.actualVisibleRegion.x;
|
|
8692
|
-
var d = this.
|
|
8690
|
+
var d = this.acj(c, this.l8, this.l9, this.ma);
|
|
8693
8691
|
var e = this.av(d, this.no, 0, this.iu);
|
|
8694
|
-
this.
|
|
8692
|
+
this.za(e.l, e.j);
|
|
8695
8693
|
}
|
|
8696
8694
|
};
|
|
8697
|
-
DataGrid.prototype.
|
|
8695
|
+
DataGrid.prototype.za = function (a, b) {
|
|
8698
8696
|
for (var c = a; c <= b; c++) {
|
|
8699
8697
|
if (this.lt.contains(c)) {
|
|
8700
8698
|
continue;
|
|
@@ -8731,7 +8729,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8731
8729
|
}
|
|
8732
8730
|
}
|
|
8733
8731
|
};
|
|
8734
|
-
DataGrid.prototype.
|
|
8732
|
+
DataGrid.prototype.acj = function (a, b, c, d) {
|
|
8735
8733
|
c += this.model.actualVisibleRegion.x;
|
|
8736
8734
|
d += this.model.actualVisibleRegion.y;
|
|
8737
8735
|
return new Rect(0, Math.min(a, c), Math.min(b, d), Math.abs(c - a), Math.abs(d - b));
|
|
@@ -8877,7 +8875,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8877
8875
|
}
|
|
8878
8876
|
this.hb.requestFrame(this.ni);
|
|
8879
8877
|
};
|
|
8880
|
-
DataGrid.prototype.
|
|
8878
|
+
DataGrid.prototype.zt = function (a) {
|
|
8881
8879
|
if (a.k != this.at.k || a.i != this.at.i || a.l != this.at.l || a.j != this.at.j) {
|
|
8882
8880
|
this.at.k = a.k;
|
|
8883
8881
|
this.at.i = a.i;
|
|
@@ -8890,19 +8888,19 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8890
8888
|
this.vx(this.at);
|
|
8891
8889
|
}
|
|
8892
8890
|
};
|
|
8893
|
-
DataGrid.prototype.
|
|
8891
|
+
DataGrid.prototype.yv = function (a) {
|
|
8894
8892
|
if (this.actualDataSource != null && this.actualDataSource.actualSchema != null) {
|
|
8895
8893
|
a.m = this.actualDataSource.resolveSchemaPropertyType(a.f);
|
|
8896
8894
|
a.o = true;
|
|
8897
8895
|
}
|
|
8898
8896
|
};
|
|
8899
|
-
DataGrid.prototype.
|
|
8897
|
+
DataGrid.prototype.yw = function (a) {
|
|
8900
8898
|
if (this.actualDataSource != null && this.actualDataSource.actualSchema != null) {
|
|
8901
8899
|
a.g = this.actualDataSource.resolveSchemaPropertyType(a.ah);
|
|
8902
8900
|
a.s = true;
|
|
8903
8901
|
}
|
|
8904
8902
|
};
|
|
8905
|
-
DataGrid.prototype.
|
|
8903
|
+
DataGrid.prototype.zh = function (a, b) {
|
|
8906
8904
|
var _this = this;
|
|
8907
8905
|
switch (b.action) {
|
|
8908
8906
|
case 0:
|
|
@@ -8910,7 +8908,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8910
8908
|
for (var c = 0; c < b.newItems.count; c++) {
|
|
8911
8909
|
var d = b.newItems.item(c);
|
|
8912
8910
|
if (!d.s) {
|
|
8913
|
-
this.
|
|
8911
|
+
this.yw(d);
|
|
8914
8912
|
}
|
|
8915
8913
|
}
|
|
8916
8914
|
}
|
|
@@ -8932,7 +8930,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8932
8930
|
for (var c = 0; c < b.newItems.count; c++) {
|
|
8933
8931
|
var d = b.newItems.item(c);
|
|
8934
8932
|
if (!d.o) {
|
|
8935
|
-
this.
|
|
8933
|
+
this.yv(d);
|
|
8936
8934
|
}
|
|
8937
8935
|
}
|
|
8938
8936
|
}
|
|
@@ -8976,7 +8974,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8976
8974
|
})()));
|
|
8977
8975
|
}
|
|
8978
8976
|
};
|
|
8979
|
-
DataGrid.prototype.
|
|
8977
|
+
DataGrid.prototype.zf = function (a, b) {
|
|
8980
8978
|
var e_1, _a;
|
|
8981
8979
|
var _this = this;
|
|
8982
8980
|
this.j7 = true;
|
|
@@ -8986,7 +8984,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8986
8984
|
if (b.newItems != null) {
|
|
8987
8985
|
for (var c = 0; c < b.newItems.count; c++) {
|
|
8988
8986
|
var d = b.newItems.item(c);
|
|
8989
|
-
this.
|
|
8987
|
+
this.zn(d.f, this.b6(d.c));
|
|
8990
8988
|
}
|
|
8991
8989
|
}
|
|
8992
8990
|
break;
|
|
@@ -8994,7 +8992,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8994
8992
|
if (b.oldItems != null) {
|
|
8995
8993
|
for (var e = 0; e < b.oldItems.count; e++) {
|
|
8996
8994
|
var f = b.oldItems.item(e);
|
|
8997
|
-
this.
|
|
8995
|
+
this.zn(f.f, 0);
|
|
8998
8996
|
}
|
|
8999
8997
|
}
|
|
9000
8998
|
break;
|
|
@@ -9002,13 +9000,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9002
9000
|
if (b.oldItems != null) {
|
|
9003
9001
|
for (var g = 0; g < b.oldItems.count; g++) {
|
|
9004
9002
|
var h = b.oldItems.item(g);
|
|
9005
|
-
this.
|
|
9003
|
+
this.zn(h.f, 0);
|
|
9006
9004
|
}
|
|
9007
9005
|
}
|
|
9008
9006
|
if (b.newItems != null) {
|
|
9009
9007
|
for (var i = 0; i < b.newItems.count; i++) {
|
|
9010
9008
|
var j = b.newItems.item(i);
|
|
9011
|
-
this.
|
|
9009
|
+
this.zn(j.f, this.b6(j.c));
|
|
9012
9010
|
}
|
|
9013
9011
|
}
|
|
9014
9012
|
break;
|
|
@@ -9046,7 +9044,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9046
9044
|
this.j7 = false;
|
|
9047
9045
|
}
|
|
9048
9046
|
};
|
|
9049
|
-
DataGrid.prototype.
|
|
9047
|
+
DataGrid.prototype.zn = function (a, b) {
|
|
9050
9048
|
for (var c = 0; c < this.columns.count; c++) {
|
|
9051
9049
|
if (this.columns._inner[c].mr == a) {
|
|
9052
9050
|
this.columns._inner[c].hu = b;
|
|
@@ -9060,7 +9058,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9060
9058
|
}
|
|
9061
9059
|
return 0;
|
|
9062
9060
|
};
|
|
9063
|
-
DataGrid.prototype.
|
|
9061
|
+
DataGrid.prototype.y8 = function (a, b) {
|
|
9064
9062
|
var e_2, _a, e_3, _b, e_4, _c;
|
|
9065
9063
|
var _this = this;
|
|
9066
9064
|
this.io = true;
|
|
@@ -9182,7 +9180,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9182
9180
|
}
|
|
9183
9181
|
}
|
|
9184
9182
|
};
|
|
9185
|
-
DataGrid.prototype.
|
|
9183
|
+
DataGrid.prototype.y9 = function (a, b) {
|
|
9186
9184
|
var e_5, _a, e_6, _b, e_7, _c;
|
|
9187
9185
|
var _this = this;
|
|
9188
9186
|
if (!this.ji && this.actualDataSource != null) {
|
|
@@ -9305,7 +9303,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9305
9303
|
}
|
|
9306
9304
|
}
|
|
9307
9305
|
};
|
|
9308
|
-
DataGrid.prototype.
|
|
9306
|
+
DataGrid.prototype.y7 = function (a, b) {
|
|
9309
9307
|
var e_8, _a, e_9, _b;
|
|
9310
9308
|
var _this = this;
|
|
9311
9309
|
this.io = true;
|
|
@@ -9380,7 +9378,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9380
9378
|
}
|
|
9381
9379
|
}
|
|
9382
9380
|
};
|
|
9383
|
-
DataGrid.prototype.
|
|
9381
|
+
DataGrid.prototype.y6 = function (a, b) {
|
|
9384
9382
|
var _this = this;
|
|
9385
9383
|
this.io = true;
|
|
9386
9384
|
this.i0 = true;
|
|
@@ -9396,7 +9394,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9396
9394
|
}
|
|
9397
9395
|
}
|
|
9398
9396
|
};
|
|
9399
|
-
DataGrid.prototype.
|
|
9397
|
+
DataGrid.prototype.x7 = function (a, b) {
|
|
9400
9398
|
var e_10, _a;
|
|
9401
9399
|
if (!this.jh && this.actualDataSource != null) {
|
|
9402
9400
|
if (!this.ix) {
|
|
@@ -9464,7 +9462,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9464
9462
|
}
|
|
9465
9463
|
}
|
|
9466
9464
|
};
|
|
9467
|
-
DataGrid.prototype.
|
|
9465
|
+
DataGrid.prototype.x8 = function (a, b) {
|
|
9468
9466
|
var e_11, _a;
|
|
9469
9467
|
if (!this.jh && this.actualDataSource != null) {
|
|
9470
9468
|
if (!this.ix) {
|
|
@@ -9663,7 +9661,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9663
9661
|
}
|
|
9664
9662
|
this.f3.grid = this;
|
|
9665
9663
|
if (b != this.f3) {
|
|
9666
|
-
this.
|
|
9664
|
+
this.xm("SectionHeader", b, this.f3);
|
|
9667
9665
|
}
|
|
9668
9666
|
},
|
|
9669
9667
|
enumerable: false,
|
|
@@ -9691,7 +9689,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9691
9689
|
}
|
|
9692
9690
|
this.gd.grid = this;
|
|
9693
9691
|
if (b != this.gd) {
|
|
9694
|
-
this.
|
|
9692
|
+
this.xm("SummaryRowRoot", b, this.gd);
|
|
9695
9693
|
}
|
|
9696
9694
|
},
|
|
9697
9695
|
enumerable: false,
|
|
@@ -9709,7 +9707,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9709
9707
|
}
|
|
9710
9708
|
this.gf.grid = this;
|
|
9711
9709
|
if (b != this.gf) {
|
|
9712
|
-
this.
|
|
9710
|
+
this.xm("SummaryRowSection", b, this.gf);
|
|
9713
9711
|
}
|
|
9714
9712
|
},
|
|
9715
9713
|
enumerable: false,
|
|
@@ -9723,7 +9721,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9723
9721
|
var b = this.fy;
|
|
9724
9722
|
this.fy = a;
|
|
9725
9723
|
if (b != this.fy) {
|
|
9726
|
-
this.
|
|
9724
|
+
this.xm("RowSeparator", b, this.fy);
|
|
9727
9725
|
}
|
|
9728
9726
|
},
|
|
9729
9727
|
enumerable: false,
|
|
@@ -9737,7 +9735,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9737
9735
|
var b = this.ey;
|
|
9738
9736
|
this.ey = a;
|
|
9739
9737
|
if (b != this.ey) {
|
|
9740
|
-
this.
|
|
9738
|
+
this.xm("HeaderRowSeparator", b, this.ey);
|
|
9741
9739
|
}
|
|
9742
9740
|
},
|
|
9743
9741
|
enumerable: false,
|
|
@@ -9751,7 +9749,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9751
9749
|
var b = this.e0;
|
|
9752
9750
|
this.e0 = a;
|
|
9753
9751
|
if (b != this.e0) {
|
|
9754
|
-
this.
|
|
9752
|
+
this.xm("HeaderSeparator", b, this.e0);
|
|
9755
9753
|
}
|
|
9756
9754
|
},
|
|
9757
9755
|
enumerable: false,
|
|
@@ -9765,7 +9763,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9765
9763
|
var b = this.bu;
|
|
9766
9764
|
this.bu = a;
|
|
9767
9765
|
if (b != this.bu) {
|
|
9768
|
-
this.
|
|
9766
|
+
this.xm("ColumnResizingSeparator", b, this.bu);
|
|
9769
9767
|
}
|
|
9770
9768
|
},
|
|
9771
9769
|
enumerable: false,
|
|
@@ -9779,7 +9777,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9779
9777
|
var b = this.bg;
|
|
9780
9778
|
this.bg = a;
|
|
9781
9779
|
if (b != this.bg) {
|
|
9782
|
-
this.
|
|
9780
|
+
this.xm("ColumnMovingSeparator", b, this.bg);
|
|
9783
9781
|
}
|
|
9784
9782
|
},
|
|
9785
9783
|
enumerable: false,
|
|
@@ -9793,7 +9791,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9793
9791
|
var b = this.fm;
|
|
9794
9792
|
this.fm = a;
|
|
9795
9793
|
if (b != this.fm) {
|
|
9796
|
-
this.
|
|
9794
|
+
this.xm("PinnedAreaSeparator", b, this.fm);
|
|
9797
9795
|
}
|
|
9798
9796
|
},
|
|
9799
9797
|
enumerable: false,
|
|
@@ -9807,7 +9805,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9807
9805
|
var b = this.b;
|
|
9808
9806
|
this.b = a;
|
|
9809
9807
|
if (b != this.b) {
|
|
9810
|
-
this.
|
|
9808
|
+
this.xm("AutoGenerateDesiredColumns", b, this.b);
|
|
9811
9809
|
}
|
|
9812
9810
|
},
|
|
9813
9811
|
enumerable: false,
|
|
@@ -9821,7 +9819,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9821
9819
|
var b = this.c;
|
|
9822
9820
|
this.c = a;
|
|
9823
9821
|
if (b != this.c) {
|
|
9824
|
-
this.
|
|
9822
|
+
this.xm("DataSourceDesiredProperties", b, this.c);
|
|
9825
9823
|
}
|
|
9826
9824
|
},
|
|
9827
9825
|
enumerable: false,
|
|
@@ -9875,7 +9873,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9875
9873
|
var b = this.gr;
|
|
9876
9874
|
this.gr = a;
|
|
9877
9875
|
if (b != this.gr) {
|
|
9878
|
-
this.
|
|
9876
|
+
this.xm("Density", enumGetBox(ControlDisplayDensity_$type, b), enumGetBox(ControlDisplayDensity_$type, this.gr));
|
|
9879
9877
|
}
|
|
9880
9878
|
},
|
|
9881
9879
|
enumerable: false,
|
|
@@ -9889,7 +9887,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9889
9887
|
var b = this.m1;
|
|
9890
9888
|
this.m1 = a;
|
|
9891
9889
|
if (b != this.m1) {
|
|
9892
|
-
this.
|
|
9890
|
+
this.xm("ActualRowHeight", b, this.m1);
|
|
9893
9891
|
}
|
|
9894
9892
|
},
|
|
9895
9893
|
enumerable: false,
|
|
@@ -9903,7 +9901,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9903
9901
|
var b = this.nf;
|
|
9904
9902
|
this.nf = a;
|
|
9905
9903
|
if (b != this.nf) {
|
|
9906
|
-
this.
|
|
9904
|
+
this.xm("RowHeight", b, this.nf);
|
|
9907
9905
|
}
|
|
9908
9906
|
},
|
|
9909
9907
|
enumerable: false,
|
|
@@ -9917,7 +9915,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9917
9915
|
var b = this.cb;
|
|
9918
9916
|
this.cb = a;
|
|
9919
9917
|
if (b != this.cb) {
|
|
9920
|
-
this.
|
|
9918
|
+
this.xm("DefaultColumnWidth", b, this.cb);
|
|
9921
9919
|
}
|
|
9922
9920
|
},
|
|
9923
9921
|
enumerable: false,
|
|
@@ -9931,7 +9929,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9931
9929
|
var b = this.l6;
|
|
9932
9930
|
this.l6 = a;
|
|
9933
9931
|
if (b != this.l6) {
|
|
9934
|
-
this.
|
|
9932
|
+
this.xm("DefaultColumnMinWidth", b, this.l6);
|
|
9935
9933
|
}
|
|
9936
9934
|
},
|
|
9937
9935
|
enumerable: false,
|
|
@@ -9945,7 +9943,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9945
9943
|
var b = this.m0;
|
|
9946
9944
|
this.m0 = a;
|
|
9947
9945
|
if (b != this.m0) {
|
|
9948
|
-
this.
|
|
9946
|
+
this.xm("ActualHeaderHeight", b, this.m0);
|
|
9949
9947
|
}
|
|
9950
9948
|
},
|
|
9951
9949
|
enumerable: false,
|
|
@@ -9959,7 +9957,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9959
9957
|
var b = this.m7;
|
|
9960
9958
|
this.m7 = a;
|
|
9961
9959
|
if (b != this.m7) {
|
|
9962
|
-
this.
|
|
9960
|
+
this.xm("HeaderHeight", b, this.m7);
|
|
9963
9961
|
}
|
|
9964
9962
|
},
|
|
9965
9963
|
enumerable: false,
|
|
@@ -9973,7 +9971,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9973
9971
|
var b = this.nk;
|
|
9974
9972
|
this.nk = a;
|
|
9975
9973
|
if (b != this.nk) {
|
|
9976
|
-
this.
|
|
9974
|
+
this.xm("SectionHeaderHeight", b, this.nk);
|
|
9977
9975
|
}
|
|
9978
9976
|
},
|
|
9979
9977
|
enumerable: false,
|
|
@@ -9987,7 +9985,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9987
9985
|
var b = this.ov;
|
|
9988
9986
|
this.ov = a;
|
|
9989
9987
|
if (b != this.ov) {
|
|
9990
|
-
this.
|
|
9988
|
+
this.xm("ItemsSource", b, this.ov);
|
|
9991
9989
|
}
|
|
9992
9990
|
},
|
|
9993
9991
|
enumerable: false,
|
|
@@ -10001,7 +9999,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10001
9999
|
var b = this.nj;
|
|
10002
10000
|
this.nj = a;
|
|
10003
10001
|
if (b != this.nj) {
|
|
10004
|
-
this.
|
|
10002
|
+
this.xm("SectionFooterHeight", b, this.nj);
|
|
10005
10003
|
}
|
|
10006
10004
|
},
|
|
10007
10005
|
enumerable: false,
|
|
@@ -10015,7 +10013,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10015
10013
|
var b = this.nh;
|
|
10016
10014
|
this.nh = a;
|
|
10017
10015
|
if (b != this.nh) {
|
|
10018
|
-
this.
|
|
10016
|
+
this.xm("RowSpacingHeight", b, this.nh);
|
|
10019
10017
|
}
|
|
10020
10018
|
},
|
|
10021
10019
|
enumerable: false,
|
|
@@ -10029,7 +10027,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10029
10027
|
var b = this.m5;
|
|
10030
10028
|
this.m5 = a;
|
|
10031
10029
|
if (b != this.m5) {
|
|
10032
|
-
this.
|
|
10030
|
+
this.xm("ColumnSpacingWidth", b, this.m5);
|
|
10033
10031
|
}
|
|
10034
10032
|
},
|
|
10035
10033
|
enumerable: false,
|
|
@@ -10043,7 +10041,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10043
10041
|
var b = this.ew;
|
|
10044
10042
|
this.ew = a;
|
|
10045
10043
|
if (b != this.ew) {
|
|
10046
|
-
this.
|
|
10044
|
+
this.xm("HeaderClickAction", enumGetBox(HeaderClickAction_$type, b), enumGetBox(HeaderClickAction_$type, this.ew));
|
|
10047
10045
|
if ((this.ew == 0 || this.ew == 2) && (b == 1 || b == 3)) {
|
|
10048
10046
|
this.ga.h();
|
|
10049
10047
|
}
|
|
@@ -10060,7 +10058,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10060
10058
|
var b = this.cn;
|
|
10061
10059
|
this.cn = a;
|
|
10062
10060
|
if (b != this.cn) {
|
|
10063
|
-
this.
|
|
10061
|
+
this.xm("EditMode", enumGetBox(EditModeType_$type, b), enumGetBox(EditModeType_$type, this.cn));
|
|
10064
10062
|
}
|
|
10065
10063
|
},
|
|
10066
10064
|
enumerable: false,
|
|
@@ -10074,7 +10072,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10074
10072
|
var b = this.cl;
|
|
10075
10073
|
this.cl = a;
|
|
10076
10074
|
if (b != this.cl) {
|
|
10077
|
-
this.
|
|
10075
|
+
this.xm("EditModeClickAction", enumGetBox(EditModeClickAction_$type, b), enumGetBox(EditModeClickAction_$type, this.cl));
|
|
10078
10076
|
}
|
|
10079
10077
|
},
|
|
10080
10078
|
enumerable: false,
|
|
@@ -10088,7 +10086,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10088
10086
|
var b = this.hn;
|
|
10089
10087
|
this.hn = a;
|
|
10090
10088
|
if (b != this.hn) {
|
|
10091
|
-
this.
|
|
10089
|
+
this.xm("EditOnKeyPress", b, this.hn);
|
|
10092
10090
|
}
|
|
10093
10091
|
},
|
|
10094
10092
|
enumerable: false,
|
|
@@ -10102,7 +10100,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10102
10100
|
var b = this.hj;
|
|
10103
10101
|
this.hj = a;
|
|
10104
10102
|
if (b != this.hj) {
|
|
10105
|
-
this.
|
|
10103
|
+
this.xm("AutoGenerateColumns", b, this.hj);
|
|
10106
10104
|
}
|
|
10107
10105
|
},
|
|
10108
10106
|
enumerable: false,
|
|
@@ -10116,7 +10114,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10116
10114
|
var b = this.ng;
|
|
10117
10115
|
this.ng = a;
|
|
10118
10116
|
if (b != this.ng) {
|
|
10119
|
-
this.
|
|
10117
|
+
this.xm("RowSeparatorHeight", b, this.ng);
|
|
10120
10118
|
}
|
|
10121
10119
|
},
|
|
10122
10120
|
enumerable: false,
|
|
@@ -10130,7 +10128,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10130
10128
|
var b = this.h7;
|
|
10131
10129
|
this.h7 = a;
|
|
10132
10130
|
if (b != this.h7) {
|
|
10133
|
-
this.
|
|
10131
|
+
this.xm("IsPlaceholderRenderingEnabled", b, this.h7);
|
|
10134
10132
|
}
|
|
10135
10133
|
},
|
|
10136
10134
|
enumerable: false,
|
|
@@ -10152,7 +10150,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10152
10150
|
set: function (a) {
|
|
10153
10151
|
var b = this.bw;
|
|
10154
10152
|
this.bw = a;
|
|
10155
|
-
this.
|
|
10153
|
+
this.xm("ColumnAddingAnimationMode", enumGetBox(ColumnShowingAnimationMode_$type, b), enumGetBox(ColumnShowingAnimationMode_$type, this.bw));
|
|
10156
10154
|
},
|
|
10157
10155
|
enumerable: false,
|
|
10158
10156
|
configurable: true
|
|
@@ -10171,7 +10169,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10171
10169
|
set: function (a) {
|
|
10172
10170
|
var b = this.bn;
|
|
10173
10171
|
this.bn = a;
|
|
10174
|
-
this.
|
|
10172
|
+
this.xm("ColumnPropertyUpdatingAnimationMode", enumGetBox(ColumnPropertyUpdatingAnimationMode_$type, b), enumGetBox(ColumnPropertyUpdatingAnimationMode_$type, this.bn));
|
|
10175
10173
|
},
|
|
10176
10174
|
enumerable: false,
|
|
10177
10175
|
configurable: true
|
|
@@ -10197,7 +10195,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10197
10195
|
set: function (a) {
|
|
10198
10196
|
var b = this.ah;
|
|
10199
10197
|
this.ah = a;
|
|
10200
|
-
this.
|
|
10198
|
+
this.xm("CellDataLoadedAnimationMode", enumGetBox(CellDataLoadedAnimationMode_$type, b), enumGetBox(CellDataLoadedAnimationMode_$type, this.ah));
|
|
10201
10199
|
},
|
|
10202
10200
|
enumerable: false,
|
|
10203
10201
|
configurable: true
|
|
@@ -10216,7 +10214,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10216
10214
|
set: function (a) {
|
|
10217
10215
|
var b = this.fw;
|
|
10218
10216
|
this.fw = a;
|
|
10219
|
-
this.
|
|
10217
|
+
this.xm("RowSelectionAnimationMode", enumGetBox(RowSelectionAnimationMode_$type, b), enumGetBox(RowSelectionAnimationMode_$type, this.fw));
|
|
10220
10218
|
},
|
|
10221
10219
|
enumerable: false,
|
|
10222
10220
|
configurable: true
|
|
@@ -10236,7 +10234,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10236
10234
|
var b = this.ft;
|
|
10237
10235
|
this.ft = a;
|
|
10238
10236
|
if (b != this.ft) {
|
|
10239
|
-
this.
|
|
10237
|
+
this.xm("RowHoverAnimationMode", enumGetBox(RowHoverAnimationMode_$type, b), enumGetBox(RowHoverAnimationMode_$type, this.ft));
|
|
10240
10238
|
}
|
|
10241
10239
|
},
|
|
10242
10240
|
enumerable: false,
|
|
@@ -10256,7 +10254,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10256
10254
|
set: function (a) {
|
|
10257
10255
|
var b = this.aw;
|
|
10258
10256
|
this.aw = a;
|
|
10259
|
-
this.
|
|
10257
|
+
this.xm("CellSelectionAnimationMode", enumGetBox(CellSelectionAnimationMode_$type, b), enumGetBox(CellSelectionAnimationMode_$type, this.aw));
|
|
10260
10258
|
},
|
|
10261
10259
|
enumerable: false,
|
|
10262
10260
|
configurable: true
|
|
@@ -10269,7 +10267,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10269
10267
|
var b = this.dk;
|
|
10270
10268
|
this.dk = a;
|
|
10271
10269
|
if (b != this.dk) {
|
|
10272
|
-
this.
|
|
10270
|
+
this.xm("ColumnAnimationSettings", b, this.dk);
|
|
10273
10271
|
}
|
|
10274
10272
|
},
|
|
10275
10273
|
enumerable: false,
|
|
@@ -10283,7 +10281,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10283
10281
|
var b = this.c7;
|
|
10284
10282
|
this.c7 = a;
|
|
10285
10283
|
if (b != this.c7) {
|
|
10286
|
-
this.
|
|
10284
|
+
this.xm("AnimationSettings", b, this.c7);
|
|
10287
10285
|
}
|
|
10288
10286
|
},
|
|
10289
10287
|
enumerable: false,
|
|
@@ -10305,7 +10303,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10305
10303
|
set: function (a) {
|
|
10306
10304
|
var b = this.bp;
|
|
10307
10305
|
this.bp = a;
|
|
10308
|
-
this.
|
|
10306
|
+
this.xm("ColumnResizingAnimationMode", enumGetBox(ColumnResizingAnimationMode_$type, b), enumGetBox(ColumnResizingAnimationMode_$type, this.bp));
|
|
10309
10307
|
},
|
|
10310
10308
|
enumerable: false,
|
|
10311
10309
|
configurable: true
|
|
@@ -10326,7 +10324,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10326
10324
|
set: function (a) {
|
|
10327
10325
|
var b = this.bx;
|
|
10328
10326
|
this.bx = a;
|
|
10329
|
-
this.
|
|
10327
|
+
this.xm("ColumnShowingAnimationMode", enumGetBox(ColumnShowingAnimationMode_$type, b), enumGetBox(ColumnShowingAnimationMode_$type, this.bx));
|
|
10330
10328
|
},
|
|
10331
10329
|
enumerable: false,
|
|
10332
10330
|
configurable: true
|
|
@@ -10347,7 +10345,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10347
10345
|
set: function (a) {
|
|
10348
10346
|
var b = this.bb;
|
|
10349
10347
|
this.bb = a;
|
|
10350
|
-
this.
|
|
10348
|
+
this.xm("ColumnMovingAnimationMode", enumGetBox(ColumnMovingAnimationMode_$type, b), enumGetBox(ColumnMovingAnimationMode_$type, this.bb));
|
|
10351
10349
|
},
|
|
10352
10350
|
enumerable: false,
|
|
10353
10351
|
configurable: true
|
|
@@ -10368,7 +10366,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10368
10366
|
set: function (a) {
|
|
10369
10367
|
var b = this.a8;
|
|
10370
10368
|
this.a8 = a;
|
|
10371
|
-
this.
|
|
10369
|
+
this.xm("ColumnHidingAnimationMode", enumGetBox(ColumnHidingAnimationMode_$type, b), enumGetBox(ColumnHidingAnimationMode_$type, this.a8));
|
|
10372
10370
|
},
|
|
10373
10371
|
enumerable: false,
|
|
10374
10372
|
configurable: true
|
|
@@ -10389,20 +10387,20 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10389
10387
|
set: function (a) {
|
|
10390
10388
|
var b = this.a0;
|
|
10391
10389
|
this.a0 = a;
|
|
10392
|
-
this.
|
|
10390
|
+
this.xm("ColumnExchangingAnimationMode", enumGetBox(ColumnExchangingAnimationMode_$type, b), enumGetBox(ColumnExchangingAnimationMode_$type, this.a0));
|
|
10393
10391
|
},
|
|
10394
10392
|
enumerable: false,
|
|
10395
10393
|
configurable: true
|
|
10396
10394
|
});
|
|
10397
10395
|
Object.defineProperty(DataGrid.prototype, "inset", {
|
|
10398
10396
|
get: function () {
|
|
10399
|
-
return this.
|
|
10397
|
+
return this.aco;
|
|
10400
10398
|
},
|
|
10401
10399
|
set: function (a) {
|
|
10402
|
-
var b = this.
|
|
10403
|
-
this.
|
|
10404
|
-
if (b != this.
|
|
10405
|
-
this.
|
|
10400
|
+
var b = this.aco;
|
|
10401
|
+
this.aco = a;
|
|
10402
|
+
if (b != this.aco) {
|
|
10403
|
+
this.xm("Inset", b, this.aco);
|
|
10406
10404
|
}
|
|
10407
10405
|
},
|
|
10408
10406
|
enumerable: false,
|
|
@@ -10416,7 +10414,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10416
10414
|
var b = this.ch;
|
|
10417
10415
|
this.ch = a;
|
|
10418
10416
|
if (b != this.ch) {
|
|
10419
|
-
this.
|
|
10417
|
+
this.xm("SelectionMode", enumGetBox(DataGridSelectionMode_$type, b), enumGetBox(DataGridSelectionMode_$type, this.ch));
|
|
10420
10418
|
}
|
|
10421
10419
|
},
|
|
10422
10420
|
enumerable: false,
|
|
@@ -10430,7 +10428,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10430
10428
|
var b = this.c2;
|
|
10431
10429
|
this.c2 = a;
|
|
10432
10430
|
if (b != this.c2) {
|
|
10433
|
-
this.
|
|
10431
|
+
this.xm("ActivationMode", enumGetBox(GridActivationMode_$type, b), enumGetBox(GridActivationMode_$type, this.c2));
|
|
10434
10432
|
}
|
|
10435
10433
|
},
|
|
10436
10434
|
enumerable: false,
|
|
@@ -10444,7 +10442,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10444
10442
|
var b = this.el;
|
|
10445
10443
|
this.el = a;
|
|
10446
10444
|
if (b != this.el) {
|
|
10447
|
-
this.
|
|
10445
|
+
this.xm("SelectionBehavior", enumGetBox(GridSelectionBehavior_$type, b), enumGetBox(GridSelectionBehavior_$type, this.el));
|
|
10448
10446
|
}
|
|
10449
10447
|
},
|
|
10450
10448
|
enumerable: false,
|
|
@@ -10522,7 +10520,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10522
10520
|
enumerable: false,
|
|
10523
10521
|
configurable: true
|
|
10524
10522
|
});
|
|
10525
|
-
DataGrid.prototype.
|
|
10523
|
+
DataGrid.prototype.zj = function (a, b) {
|
|
10526
10524
|
var e_12, _a, e_13, _b, e_14, _c;
|
|
10527
10525
|
if (this.actualDataSource == null) {
|
|
10528
10526
|
return;
|
|
@@ -10604,7 +10602,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10604
10602
|
var b = this.hu;
|
|
10605
10603
|
this.hu = a;
|
|
10606
10604
|
if (b != this.hu) {
|
|
10607
|
-
this.
|
|
10605
|
+
this.xm("IsColumnOptionsEnabled", b, this.hu);
|
|
10608
10606
|
}
|
|
10609
10607
|
},
|
|
10610
10608
|
enumerable: false,
|
|
@@ -10618,7 +10616,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10618
10616
|
var b = this.hy;
|
|
10619
10617
|
this.hy = a;
|
|
10620
10618
|
if (b != this.hy) {
|
|
10621
|
-
this.
|
|
10619
|
+
this.xm("IsGroupByAreaVisible", b, this.hy);
|
|
10622
10620
|
}
|
|
10623
10621
|
},
|
|
10624
10622
|
enumerable: false,
|
|
@@ -10632,7 +10630,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10632
10630
|
var b = this.h3;
|
|
10633
10631
|
this.h3 = a;
|
|
10634
10632
|
if (b != this.h3) {
|
|
10635
|
-
this.
|
|
10633
|
+
this.xm("IsGroupRowSticky", b, this.h3);
|
|
10636
10634
|
}
|
|
10637
10635
|
},
|
|
10638
10636
|
enumerable: false,
|
|
@@ -10646,7 +10644,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10646
10644
|
var b = this.h4;
|
|
10647
10645
|
this.h4 = a;
|
|
10648
10646
|
if (b != this.h4) {
|
|
10649
|
-
this.
|
|
10647
|
+
this.xm("IsHeaderSeparatorVisible", b, this.h4);
|
|
10650
10648
|
}
|
|
10651
10649
|
},
|
|
10652
10650
|
enumerable: false,
|
|
@@ -10654,13 +10652,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10654
10652
|
});
|
|
10655
10653
|
Object.defineProperty(DataGrid.prototype, "cellSelectedBackground", {
|
|
10656
10654
|
get: function () {
|
|
10657
|
-
return this.
|
|
10655
|
+
return this.z6;
|
|
10658
10656
|
},
|
|
10659
10657
|
set: function (a) {
|
|
10660
|
-
var b = this.
|
|
10661
|
-
this.
|
|
10662
|
-
if (b != this.
|
|
10663
|
-
this.
|
|
10658
|
+
var b = this.z6;
|
|
10659
|
+
this.z6 = a;
|
|
10660
|
+
if (b != this.z6) {
|
|
10661
|
+
this.xm("CellSelectedBackground", b, this.z6);
|
|
10664
10662
|
}
|
|
10665
10663
|
},
|
|
10666
10664
|
enumerable: false,
|
|
@@ -10668,13 +10666,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10668
10666
|
});
|
|
10669
10667
|
Object.defineProperty(DataGrid.prototype, "sectionHeaderSelectedBackground", {
|
|
10670
10668
|
get: function () {
|
|
10671
|
-
return this.
|
|
10669
|
+
return this.aay;
|
|
10672
10670
|
},
|
|
10673
10671
|
set: function (a) {
|
|
10674
|
-
var b = this.
|
|
10675
|
-
this.
|
|
10676
|
-
if (b != this.
|
|
10677
|
-
this.
|
|
10672
|
+
var b = this.aay;
|
|
10673
|
+
this.aay = a;
|
|
10674
|
+
if (b != this.aay) {
|
|
10675
|
+
this.xm("SectionHeaderSelectedBackground", b, this.aay);
|
|
10678
10676
|
}
|
|
10679
10677
|
},
|
|
10680
10678
|
enumerable: false,
|
|
@@ -10682,13 +10680,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10682
10680
|
});
|
|
10683
10681
|
Object.defineProperty(DataGrid.prototype, "summaryRootBackground", {
|
|
10684
10682
|
get: function () {
|
|
10685
|
-
return this.
|
|
10683
|
+
return this.aa1;
|
|
10686
10684
|
},
|
|
10687
10685
|
set: function (a) {
|
|
10688
|
-
var b = this.
|
|
10689
|
-
this.
|
|
10690
|
-
if (b != this.
|
|
10691
|
-
this.
|
|
10686
|
+
var b = this.aa1;
|
|
10687
|
+
this.aa1 = a;
|
|
10688
|
+
if (b != this.aa1) {
|
|
10689
|
+
this.xm("SummaryRootBackground", b, this.aa1);
|
|
10692
10690
|
}
|
|
10693
10691
|
},
|
|
10694
10692
|
enumerable: false,
|
|
@@ -10696,13 +10694,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10696
10694
|
});
|
|
10697
10695
|
Object.defineProperty(DataGrid.prototype, "summarySectionBackground", {
|
|
10698
10696
|
get: function () {
|
|
10699
|
-
return this.
|
|
10697
|
+
return this.aa5;
|
|
10700
10698
|
},
|
|
10701
10699
|
set: function (a) {
|
|
10702
|
-
var b = this.
|
|
10703
|
-
this.
|
|
10704
|
-
if (b != this.
|
|
10705
|
-
this.
|
|
10700
|
+
var b = this.aa5;
|
|
10701
|
+
this.aa5 = a;
|
|
10702
|
+
if (b != this.aa5) {
|
|
10703
|
+
this.xm("SummarySectionBackground", b, this.aa5);
|
|
10706
10704
|
}
|
|
10707
10705
|
},
|
|
10708
10706
|
enumerable: false,
|
|
@@ -10716,7 +10714,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10716
10714
|
var b = this.mf;
|
|
10717
10715
|
this.mf = a;
|
|
10718
10716
|
if (b != this.mf) {
|
|
10719
|
-
this.
|
|
10717
|
+
this.xm("PinnedRowOpacity", b, this.mf);
|
|
10720
10718
|
}
|
|
10721
10719
|
},
|
|
10722
10720
|
enumerable: false,
|
|
@@ -10730,7 +10728,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10730
10728
|
var b = this.gu;
|
|
10731
10729
|
this.gu = a;
|
|
10732
10730
|
if (b != this.gu) {
|
|
10733
|
-
this.
|
|
10731
|
+
this.xm("EditTextStyle", b, this.gu);
|
|
10734
10732
|
}
|
|
10735
10733
|
},
|
|
10736
10734
|
enumerable: false,
|
|
@@ -10744,7 +10742,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10744
10742
|
var b = this.mb;
|
|
10745
10743
|
this.mb = a;
|
|
10746
10744
|
if (b != this.mb) {
|
|
10747
|
-
this.
|
|
10745
|
+
this.xm("EditOpacity", b, this.mb);
|
|
10748
10746
|
}
|
|
10749
10747
|
},
|
|
10750
10748
|
enumerable: false,
|
|
@@ -10752,13 +10750,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10752
10750
|
});
|
|
10753
10751
|
Object.defineProperty(DataGrid.prototype, "deletedTextColor", {
|
|
10754
10752
|
get: function () {
|
|
10755
|
-
return this.
|
|
10753
|
+
return this.aah;
|
|
10756
10754
|
},
|
|
10757
10755
|
set: function (a) {
|
|
10758
|
-
var b = this.
|
|
10759
|
-
this.
|
|
10760
|
-
if (b != this.
|
|
10761
|
-
this.
|
|
10756
|
+
var b = this.aah;
|
|
10757
|
+
this.aah = a;
|
|
10758
|
+
if (b != this.aah) {
|
|
10759
|
+
this.xm("DeletedTextColor", b, this.aah);
|
|
10762
10760
|
}
|
|
10763
10761
|
},
|
|
10764
10762
|
enumerable: false,
|
|
@@ -10766,13 +10764,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10766
10764
|
});
|
|
10767
10765
|
Object.defineProperty(DataGrid.prototype, "stickyRowBackground", {
|
|
10768
10766
|
get: function () {
|
|
10769
|
-
return this.
|
|
10767
|
+
return this.aa0;
|
|
10770
10768
|
},
|
|
10771
10769
|
set: function (a) {
|
|
10772
|
-
var b = this.
|
|
10773
|
-
this.
|
|
10774
|
-
if (b != this.
|
|
10775
|
-
this.
|
|
10770
|
+
var b = this.aa0;
|
|
10771
|
+
this.aa0 = a;
|
|
10772
|
+
if (b != this.aa0) {
|
|
10773
|
+
this.xm("StickyRowBackground", b, this.aa0);
|
|
10776
10774
|
}
|
|
10777
10775
|
},
|
|
10778
10776
|
enumerable: false,
|
|
@@ -10780,13 +10778,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10780
10778
|
});
|
|
10781
10779
|
Object.defineProperty(DataGrid.prototype, "pinnedRowBackground", {
|
|
10782
10780
|
get: function () {
|
|
10783
|
-
return this.
|
|
10781
|
+
return this.aap;
|
|
10784
10782
|
},
|
|
10785
10783
|
set: function (a) {
|
|
10786
|
-
var b = this.
|
|
10787
|
-
this.
|
|
10788
|
-
if (b != this.
|
|
10789
|
-
this.
|
|
10784
|
+
var b = this.aap;
|
|
10785
|
+
this.aap = a;
|
|
10786
|
+
if (b != this.aap) {
|
|
10787
|
+
this.xm("PinnedRowBackground", b, this.aap);
|
|
10790
10788
|
}
|
|
10791
10789
|
},
|
|
10792
10790
|
enumerable: false,
|
|
@@ -10794,13 +10792,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10794
10792
|
});
|
|
10795
10793
|
Object.defineProperty(DataGrid.prototype, "lastStickyRowBackground", {
|
|
10796
10794
|
get: function () {
|
|
10797
|
-
return this.
|
|
10795
|
+
return this.aao;
|
|
10798
10796
|
},
|
|
10799
10797
|
set: function (a) {
|
|
10800
|
-
var b = this.
|
|
10801
|
-
this.
|
|
10802
|
-
if (b != this.
|
|
10803
|
-
this.
|
|
10798
|
+
var b = this.aao;
|
|
10799
|
+
this.aao = a;
|
|
10800
|
+
if (b != this.aao) {
|
|
10801
|
+
this.xm("LastStickyRowBackground", b, this.aao);
|
|
10804
10802
|
}
|
|
10805
10803
|
},
|
|
10806
10804
|
enumerable: false,
|
|
@@ -10814,7 +10812,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10814
10812
|
var b = this.dg;
|
|
10815
10813
|
this.dg = a;
|
|
10816
10814
|
if (b != this.dg) {
|
|
10817
|
-
this.
|
|
10815
|
+
this.xm("ActiveCell", b, this.dg);
|
|
10818
10816
|
}
|
|
10819
10817
|
},
|
|
10820
10818
|
enumerable: false,
|
|
@@ -10822,13 +10820,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10822
10820
|
});
|
|
10823
10821
|
Object.defineProperty(DataGrid.prototype, "cellBackground", {
|
|
10824
10822
|
get: function () {
|
|
10825
|
-
return this.
|
|
10823
|
+
return this.z5;
|
|
10826
10824
|
},
|
|
10827
10825
|
set: function (a) {
|
|
10828
|
-
var b = this.
|
|
10829
|
-
this.
|
|
10830
|
-
if (b != this.
|
|
10831
|
-
this.
|
|
10826
|
+
var b = this.z5;
|
|
10827
|
+
this.z5 = a;
|
|
10828
|
+
if (b != this.z5) {
|
|
10829
|
+
this.xm("CellBackground", b, this.z5);
|
|
10832
10830
|
}
|
|
10833
10831
|
},
|
|
10834
10832
|
enumerable: false,
|
|
@@ -10836,13 +10834,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10836
10834
|
});
|
|
10837
10835
|
Object.defineProperty(DataGrid.prototype, "cellTextColor", {
|
|
10838
10836
|
get: function () {
|
|
10839
|
-
return this.
|
|
10837
|
+
return this.z7;
|
|
10840
10838
|
},
|
|
10841
10839
|
set: function (a) {
|
|
10842
|
-
var b = this.
|
|
10843
|
-
this.
|
|
10844
|
-
if (b != this.
|
|
10845
|
-
this.
|
|
10840
|
+
var b = this.z7;
|
|
10841
|
+
this.z7 = a;
|
|
10842
|
+
if (b != this.z7) {
|
|
10843
|
+
this.xm("CellTextColor", b, this.z7);
|
|
10846
10844
|
}
|
|
10847
10845
|
},
|
|
10848
10846
|
enumerable: false,
|
|
@@ -10850,13 +10848,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10850
10848
|
});
|
|
10851
10849
|
Object.defineProperty(DataGrid.prototype, "headerSortIndicatorColor", {
|
|
10852
10850
|
get: function () {
|
|
10853
|
-
return this.
|
|
10851
|
+
return this.aam;
|
|
10854
10852
|
},
|
|
10855
10853
|
set: function (a) {
|
|
10856
|
-
var b = this.
|
|
10857
|
-
this.
|
|
10858
|
-
if (b != this.
|
|
10859
|
-
this.
|
|
10854
|
+
var b = this.aam;
|
|
10855
|
+
this.aam = a;
|
|
10856
|
+
if (b != this.aam) {
|
|
10857
|
+
this.xm("HeaderSortIndicatorColor", b, this.aam);
|
|
10860
10858
|
}
|
|
10861
10859
|
},
|
|
10862
10860
|
enumerable: false,
|
|
@@ -10870,7 +10868,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10870
10868
|
var b = this.f7;
|
|
10871
10869
|
this.f7 = a;
|
|
10872
10870
|
if (b != this.f7) {
|
|
10873
|
-
this.
|
|
10871
|
+
this.xm("HeaderSortIndicatorStyle", enumGetBox(SortIndicatorStyle_$type, b), enumGetBox(SortIndicatorStyle_$type, this.f7));
|
|
10874
10872
|
}
|
|
10875
10873
|
},
|
|
10876
10874
|
enumerable: false,
|
|
@@ -10884,7 +10882,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10884
10882
|
var b = this.gt;
|
|
10885
10883
|
this.gt = a;
|
|
10886
10884
|
if (b != this.gt) {
|
|
10887
|
-
this.
|
|
10885
|
+
this.xm("CellTextStyle", b, this.gt);
|
|
10888
10886
|
}
|
|
10889
10887
|
},
|
|
10890
10888
|
enumerable: false,
|
|
@@ -10892,13 +10890,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10892
10890
|
});
|
|
10893
10891
|
Object.defineProperty(DataGrid.prototype, "sectionHeaderBackground", {
|
|
10894
10892
|
get: function () {
|
|
10895
|
-
return this.
|
|
10893
|
+
return this.aax;
|
|
10896
10894
|
},
|
|
10897
10895
|
set: function (a) {
|
|
10898
|
-
var b = this.
|
|
10899
|
-
this.
|
|
10900
|
-
if (b != this.
|
|
10901
|
-
this.
|
|
10896
|
+
var b = this.aax;
|
|
10897
|
+
this.aax = a;
|
|
10898
|
+
if (b != this.aax) {
|
|
10899
|
+
this.xm("SectionHeaderBackground", b, this.aax);
|
|
10902
10900
|
}
|
|
10903
10901
|
},
|
|
10904
10902
|
enumerable: false,
|
|
@@ -10906,13 +10904,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10906
10904
|
});
|
|
10907
10905
|
Object.defineProperty(DataGrid.prototype, "sectionHeaderTextColor", {
|
|
10908
10906
|
get: function () {
|
|
10909
|
-
return this.
|
|
10907
|
+
return this.aaz;
|
|
10910
10908
|
},
|
|
10911
10909
|
set: function (a) {
|
|
10912
|
-
var b = this.
|
|
10913
|
-
this.
|
|
10914
|
-
if (b != this.
|
|
10915
|
-
this.
|
|
10910
|
+
var b = this.aaz;
|
|
10911
|
+
this.aaz = a;
|
|
10912
|
+
if (b != this.aaz) {
|
|
10913
|
+
this.xm("SectionHeaderTextColor", b, this.aaz);
|
|
10916
10914
|
}
|
|
10917
10915
|
},
|
|
10918
10916
|
enumerable: false,
|
|
@@ -10926,7 +10924,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10926
10924
|
var b = this.gw;
|
|
10927
10925
|
this.gw = a;
|
|
10928
10926
|
if (b != this.gw) {
|
|
10929
|
-
this.
|
|
10927
|
+
this.xm("SectionHeaderTextStyle", b, this.gw);
|
|
10930
10928
|
}
|
|
10931
10929
|
},
|
|
10932
10930
|
enumerable: false,
|
|
@@ -10940,7 +10938,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10940
10938
|
var b = this.gx;
|
|
10941
10939
|
this.gx = a;
|
|
10942
10940
|
if (b != this.gx) {
|
|
10943
|
-
this.
|
|
10941
|
+
this.xm("SummaryRootLabelTextStyle", b, this.gx);
|
|
10944
10942
|
}
|
|
10945
10943
|
},
|
|
10946
10944
|
enumerable: false,
|
|
@@ -10954,7 +10952,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10954
10952
|
var b = this.gz;
|
|
10955
10953
|
this.gz = a;
|
|
10956
10954
|
if (b != this.gz) {
|
|
10957
|
-
this.
|
|
10955
|
+
this.xm("SummarySectionLabelTextStyle", b, this.gz);
|
|
10958
10956
|
}
|
|
10959
10957
|
},
|
|
10960
10958
|
enumerable: false,
|
|
@@ -10962,13 +10960,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10962
10960
|
});
|
|
10963
10961
|
Object.defineProperty(DataGrid.prototype, "summaryRootValueTextColor", {
|
|
10964
10962
|
get: function () {
|
|
10965
|
-
return this.
|
|
10963
|
+
return this.aa4;
|
|
10966
10964
|
},
|
|
10967
10965
|
set: function (a) {
|
|
10968
|
-
var b = this.
|
|
10969
|
-
this.
|
|
10970
|
-
if (b != this.
|
|
10971
|
-
this.
|
|
10966
|
+
var b = this.aa4;
|
|
10967
|
+
this.aa4 = a;
|
|
10968
|
+
if (b != this.aa4) {
|
|
10969
|
+
this.xm("SummaryRootValueTextColor", b, this.aa4);
|
|
10972
10970
|
}
|
|
10973
10971
|
},
|
|
10974
10972
|
enumerable: false,
|
|
@@ -10982,7 +10980,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10982
10980
|
var b = this.gy;
|
|
10983
10981
|
this.gy = a;
|
|
10984
10982
|
if (b != this.gy) {
|
|
10985
|
-
this.
|
|
10983
|
+
this.xm("SummaryRootValueTextStyle", b, this.gy);
|
|
10986
10984
|
}
|
|
10987
10985
|
},
|
|
10988
10986
|
enumerable: false,
|
|
@@ -10996,7 +10994,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10996
10994
|
var b = this.g0;
|
|
10997
10995
|
this.g0 = a;
|
|
10998
10996
|
if (b != this.g0) {
|
|
10999
|
-
this.
|
|
10997
|
+
this.xm("SummarySectionValueTextStyle", b, this.g0);
|
|
11000
10998
|
}
|
|
11001
10999
|
},
|
|
11002
11000
|
enumerable: false,
|
|
@@ -11004,13 +11002,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11004
11002
|
});
|
|
11005
11003
|
Object.defineProperty(DataGrid.prototype, "summarySectionValueTextColor", {
|
|
11006
11004
|
get: function () {
|
|
11007
|
-
return this.
|
|
11005
|
+
return this.aa8;
|
|
11008
11006
|
},
|
|
11009
11007
|
set: function (a) {
|
|
11010
|
-
var b = this.
|
|
11011
|
-
this.
|
|
11012
|
-
if (b != this.
|
|
11013
|
-
this.
|
|
11008
|
+
var b = this.aa8;
|
|
11009
|
+
this.aa8 = a;
|
|
11010
|
+
if (b != this.aa8) {
|
|
11011
|
+
this.xm("SummarySectionValueTextColor", b, this.aa8);
|
|
11014
11012
|
}
|
|
11015
11013
|
},
|
|
11016
11014
|
enumerable: false,
|
|
@@ -11018,13 +11016,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11018
11016
|
});
|
|
11019
11017
|
Object.defineProperty(DataGrid.prototype, "summaryRootLabelTextColor", {
|
|
11020
11018
|
get: function () {
|
|
11021
|
-
return this.
|
|
11019
|
+
return this.aa2;
|
|
11022
11020
|
},
|
|
11023
11021
|
set: function (a) {
|
|
11024
|
-
var b = this.
|
|
11025
|
-
this.
|
|
11026
|
-
if (b != this.
|
|
11027
|
-
this.
|
|
11022
|
+
var b = this.aa2;
|
|
11023
|
+
this.aa2 = a;
|
|
11024
|
+
if (b != this.aa2) {
|
|
11025
|
+
this.xm("SummaryRootLabelTextColor", b, this.aa2);
|
|
11028
11026
|
}
|
|
11029
11027
|
},
|
|
11030
11028
|
enumerable: false,
|
|
@@ -11032,13 +11030,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11032
11030
|
});
|
|
11033
11031
|
Object.defineProperty(DataGrid.prototype, "summarySectionLabelTextColor", {
|
|
11034
11032
|
get: function () {
|
|
11035
|
-
return this.
|
|
11033
|
+
return this.aa6;
|
|
11036
11034
|
},
|
|
11037
11035
|
set: function (a) {
|
|
11038
|
-
var b = this.
|
|
11039
|
-
this.
|
|
11040
|
-
if (b != this.
|
|
11041
|
-
this.
|
|
11036
|
+
var b = this.aa6;
|
|
11037
|
+
this.aa6 = a;
|
|
11038
|
+
if (b != this.aa6) {
|
|
11039
|
+
this.xm("SummarySectionLabelTextColor", b, this.aa6);
|
|
11042
11040
|
}
|
|
11043
11041
|
},
|
|
11044
11042
|
enumerable: false,
|
|
@@ -11046,13 +11044,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11046
11044
|
});
|
|
11047
11045
|
Object.defineProperty(DataGrid.prototype, "summaryRootSelectedBackground", {
|
|
11048
11046
|
get: function () {
|
|
11049
|
-
return this.
|
|
11047
|
+
return this.aa3;
|
|
11050
11048
|
},
|
|
11051
11049
|
set: function (a) {
|
|
11052
|
-
var b = this.
|
|
11053
|
-
this.
|
|
11054
|
-
if (b != this.
|
|
11055
|
-
this.
|
|
11050
|
+
var b = this.aa3;
|
|
11051
|
+
this.aa3 = a;
|
|
11052
|
+
if (b != this.aa3) {
|
|
11053
|
+
this.xm("SummaryRootSelectedBackground", b, this.aa3);
|
|
11056
11054
|
}
|
|
11057
11055
|
},
|
|
11058
11056
|
enumerable: false,
|
|
@@ -11060,13 +11058,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11060
11058
|
});
|
|
11061
11059
|
Object.defineProperty(DataGrid.prototype, "summarySectionSelectedBackground", {
|
|
11062
11060
|
get: function () {
|
|
11063
|
-
return this.
|
|
11061
|
+
return this.aa7;
|
|
11064
11062
|
},
|
|
11065
11063
|
set: function (a) {
|
|
11066
|
-
var b = this.
|
|
11067
|
-
this.
|
|
11068
|
-
if (b != this.
|
|
11069
|
-
this.
|
|
11064
|
+
var b = this.aa7;
|
|
11065
|
+
this.aa7 = a;
|
|
11066
|
+
if (b != this.aa7) {
|
|
11067
|
+
this.xm("SummarySectionSelectedBackground", b, this.aa7);
|
|
11070
11068
|
}
|
|
11071
11069
|
},
|
|
11072
11070
|
enumerable: false,
|
|
@@ -11080,7 +11078,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11080
11078
|
var b = this.nd;
|
|
11081
11079
|
this.nd = a;
|
|
11082
11080
|
if (b != this.nd) {
|
|
11083
|
-
this.
|
|
11081
|
+
this.xm("PinnedAreaSeparatorWidth", b, this.nd);
|
|
11084
11082
|
}
|
|
11085
11083
|
},
|
|
11086
11084
|
enumerable: false,
|
|
@@ -11094,7 +11092,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11094
11092
|
var b = this.m8;
|
|
11095
11093
|
this.m8 = a;
|
|
11096
11094
|
if (b != this.m8) {
|
|
11097
|
-
this.
|
|
11095
|
+
this.xm("HeaderSeparatorWidth", b, this.m8);
|
|
11098
11096
|
}
|
|
11099
11097
|
},
|
|
11100
11098
|
enumerable: false,
|
|
@@ -11110,13 +11108,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11110
11108
|
};
|
|
11111
11109
|
Object.defineProperty(DataGrid.prototype, "headerSeparatorBackground", {
|
|
11112
11110
|
get: function () {
|
|
11113
|
-
return this.
|
|
11111
|
+
return this.aal;
|
|
11114
11112
|
},
|
|
11115
11113
|
set: function (a) {
|
|
11116
|
-
var b = this.
|
|
11117
|
-
this.
|
|
11118
|
-
if (b != this.
|
|
11119
|
-
this.
|
|
11114
|
+
var b = this.aal;
|
|
11115
|
+
this.aal = a;
|
|
11116
|
+
if (b != this.aal) {
|
|
11117
|
+
this.xm("HeaderSeparatorBackground", b, this.aal);
|
|
11120
11118
|
}
|
|
11121
11119
|
},
|
|
11122
11120
|
enumerable: false,
|
|
@@ -11124,13 +11122,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11124
11122
|
});
|
|
11125
11123
|
Object.defineProperty(DataGrid.prototype, "headerBackground", {
|
|
11126
11124
|
get: function () {
|
|
11127
|
-
return this.
|
|
11125
|
+
return this.aaj;
|
|
11128
11126
|
},
|
|
11129
11127
|
set: function (a) {
|
|
11130
|
-
var b = this.
|
|
11131
|
-
this.
|
|
11132
|
-
if (b != this.
|
|
11133
|
-
this.
|
|
11128
|
+
var b = this.aaj;
|
|
11129
|
+
this.aaj = a;
|
|
11130
|
+
if (b != this.aaj) {
|
|
11131
|
+
this.xm("HeaderBackground", b, this.aaj);
|
|
11134
11132
|
}
|
|
11135
11133
|
},
|
|
11136
11134
|
enumerable: false,
|
|
@@ -11138,13 +11136,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11138
11136
|
});
|
|
11139
11137
|
Object.defineProperty(DataGrid.prototype, "headerTextColor", {
|
|
11140
11138
|
get: function () {
|
|
11141
|
-
return this.
|
|
11139
|
+
return this.aan;
|
|
11142
11140
|
},
|
|
11143
11141
|
set: function (a) {
|
|
11144
|
-
var b = this.
|
|
11145
|
-
this.
|
|
11146
|
-
if (b != this.
|
|
11147
|
-
this.
|
|
11142
|
+
var b = this.aan;
|
|
11143
|
+
this.aan = a;
|
|
11144
|
+
if (b != this.aan) {
|
|
11145
|
+
this.xm("HeaderTextColor", b, this.aan);
|
|
11148
11146
|
}
|
|
11149
11147
|
},
|
|
11150
11148
|
enumerable: false,
|
|
@@ -11158,7 +11156,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11158
11156
|
var b = this.gv;
|
|
11159
11157
|
this.gv = a;
|
|
11160
11158
|
if (b != this.gv) {
|
|
11161
|
-
this.
|
|
11159
|
+
this.xm("HeaderTextStyle", b, this.gv);
|
|
11162
11160
|
}
|
|
11163
11161
|
},
|
|
11164
11162
|
enumerable: false,
|
|
@@ -11166,13 +11164,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11166
11164
|
});
|
|
11167
11165
|
Object.defineProperty(DataGrid.prototype, "rowSeparatorBackground", {
|
|
11168
11166
|
get: function () {
|
|
11169
|
-
return this.
|
|
11167
|
+
return this.aas;
|
|
11170
11168
|
},
|
|
11171
11169
|
set: function (a) {
|
|
11172
|
-
var b = this.
|
|
11173
|
-
this.
|
|
11174
|
-
if (b != this.
|
|
11175
|
-
this.
|
|
11170
|
+
var b = this.aas;
|
|
11171
|
+
this.aas = a;
|
|
11172
|
+
if (b != this.aas) {
|
|
11173
|
+
this.xm("RowSeparatorBackground", b, this.aas);
|
|
11176
11174
|
}
|
|
11177
11175
|
},
|
|
11178
11176
|
enumerable: false,
|
|
@@ -11180,13 +11178,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11180
11178
|
});
|
|
11181
11179
|
Object.defineProperty(DataGrid.prototype, "headerRowSeparatorBackground", {
|
|
11182
11180
|
get: function () {
|
|
11183
|
-
return this.
|
|
11181
|
+
return this.aak;
|
|
11184
11182
|
},
|
|
11185
11183
|
set: function (a) {
|
|
11186
|
-
var b = this.
|
|
11187
|
-
this.
|
|
11188
|
-
if (b != this.
|
|
11189
|
-
this.
|
|
11184
|
+
var b = this.aak;
|
|
11185
|
+
this.aak = a;
|
|
11186
|
+
if (b != this.aak) {
|
|
11187
|
+
this.xm("HeaderRowSeparatorBackground", b, this.aak);
|
|
11190
11188
|
}
|
|
11191
11189
|
},
|
|
11192
11190
|
enumerable: false,
|
|
@@ -11194,13 +11192,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11194
11192
|
});
|
|
11195
11193
|
Object.defineProperty(DataGrid.prototype, "rowSeparatorStickyRowBackground", {
|
|
11196
11194
|
get: function () {
|
|
11197
|
-
return this.
|
|
11195
|
+
return this.aav;
|
|
11198
11196
|
},
|
|
11199
11197
|
set: function (a) {
|
|
11200
|
-
var b = this.
|
|
11201
|
-
this.
|
|
11202
|
-
if (b != this.
|
|
11203
|
-
this.
|
|
11198
|
+
var b = this.aav;
|
|
11199
|
+
this.aav = a;
|
|
11200
|
+
if (b != this.aav) {
|
|
11201
|
+
this.xm("RowSeparatorStickyRowBackground", b, this.aav);
|
|
11204
11202
|
}
|
|
11205
11203
|
},
|
|
11206
11204
|
enumerable: false,
|
|
@@ -11208,13 +11206,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11208
11206
|
});
|
|
11209
11207
|
Object.defineProperty(DataGrid.prototype, "rowSeparatorLastStickyRowBackground", {
|
|
11210
11208
|
get: function () {
|
|
11211
|
-
return this.
|
|
11209
|
+
return this.aat;
|
|
11212
11210
|
},
|
|
11213
11211
|
set: function (a) {
|
|
11214
|
-
var b = this.
|
|
11215
|
-
this.
|
|
11216
|
-
if (b != this.
|
|
11217
|
-
this.
|
|
11212
|
+
var b = this.aat;
|
|
11213
|
+
this.aat = a;
|
|
11214
|
+
if (b != this.aat) {
|
|
11215
|
+
this.xm("RowSeparatorLastStickyRowBackground", b, this.aat);
|
|
11218
11216
|
}
|
|
11219
11217
|
},
|
|
11220
11218
|
enumerable: false,
|
|
@@ -11222,13 +11220,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11222
11220
|
});
|
|
11223
11221
|
Object.defineProperty(DataGrid.prototype, "rowSeparatorPinnedRowBackground", {
|
|
11224
11222
|
get: function () {
|
|
11225
|
-
return this.
|
|
11223
|
+
return this.aau;
|
|
11226
11224
|
},
|
|
11227
11225
|
set: function (a) {
|
|
11228
|
-
var b = this.
|
|
11229
|
-
this.
|
|
11230
|
-
if (b != this.
|
|
11231
|
-
this.
|
|
11226
|
+
var b = this.aau;
|
|
11227
|
+
this.aau = a;
|
|
11228
|
+
if (b != this.aau) {
|
|
11229
|
+
this.xm("RowSeparatorPinnedRowBackground", b, this.aau);
|
|
11232
11230
|
}
|
|
11233
11231
|
},
|
|
11234
11232
|
enumerable: false,
|
|
@@ -11242,7 +11240,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11242
11240
|
var b = this.m4;
|
|
11243
11241
|
this.m4 = a;
|
|
11244
11242
|
if (b != this.m4) {
|
|
11245
|
-
this.
|
|
11243
|
+
this.xm("ColumnResizingSeparatorWidth", b, this.m4);
|
|
11246
11244
|
}
|
|
11247
11245
|
},
|
|
11248
11246
|
enumerable: false,
|
|
@@ -11256,7 +11254,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11256
11254
|
var b = this.l5;
|
|
11257
11255
|
this.l5 = a;
|
|
11258
11256
|
if (b != this.l5) {
|
|
11259
|
-
this.
|
|
11257
|
+
this.xm("ColumnResizingSeparatorOpacity", b, this.l5);
|
|
11260
11258
|
}
|
|
11261
11259
|
},
|
|
11262
11260
|
enumerable: false,
|
|
@@ -11270,7 +11268,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11270
11268
|
var b = this.m2;
|
|
11271
11269
|
this.m2 = a;
|
|
11272
11270
|
if (b != this.m2) {
|
|
11273
|
-
this.
|
|
11271
|
+
this.xm("ColumnMovingSeparatorWidth", b, this.m2);
|
|
11274
11272
|
}
|
|
11275
11273
|
},
|
|
11276
11274
|
enumerable: false,
|
|
@@ -11284,7 +11282,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11284
11282
|
var b = this.l4;
|
|
11285
11283
|
this.l4 = a;
|
|
11286
11284
|
if (b != this.l4) {
|
|
11287
|
-
this.
|
|
11285
|
+
this.xm("ColumnMovingSeparatorOpacity", b, this.l4);
|
|
11288
11286
|
}
|
|
11289
11287
|
},
|
|
11290
11288
|
enumerable: false,
|
|
@@ -11292,13 +11290,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11292
11290
|
});
|
|
11293
11291
|
Object.defineProperty(DataGrid.prototype, "columnResizingSeparatorBackground", {
|
|
11294
11292
|
get: function () {
|
|
11295
|
-
return this.
|
|
11293
|
+
return this.aag;
|
|
11296
11294
|
},
|
|
11297
11295
|
set: function (a) {
|
|
11298
|
-
var b = this.
|
|
11299
|
-
this.
|
|
11300
|
-
if (b != this.
|
|
11301
|
-
this.
|
|
11296
|
+
var b = this.aag;
|
|
11297
|
+
this.aag = a;
|
|
11298
|
+
if (b != this.aag) {
|
|
11299
|
+
this.xm("ColumnResizingSeparatorBackground", b, this.aag);
|
|
11302
11300
|
}
|
|
11303
11301
|
},
|
|
11304
11302
|
enumerable: false,
|
|
@@ -11306,13 +11304,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11306
11304
|
});
|
|
11307
11305
|
Object.defineProperty(DataGrid.prototype, "columnMovingSeparatorBackground", {
|
|
11308
11306
|
get: function () {
|
|
11309
|
-
return this.
|
|
11307
|
+
return this.z8;
|
|
11310
11308
|
},
|
|
11311
11309
|
set: function (a) {
|
|
11312
|
-
var b = this.
|
|
11313
|
-
this.
|
|
11314
|
-
if (b != this.
|
|
11315
|
-
this.
|
|
11310
|
+
var b = this.z8;
|
|
11311
|
+
this.z8 = a;
|
|
11312
|
+
if (b != this.z8) {
|
|
11313
|
+
this.xm("ColumnMovingSeparatorBackground", b, this.z8);
|
|
11316
11314
|
}
|
|
11317
11315
|
},
|
|
11318
11316
|
enumerable: false,
|
|
@@ -11326,7 +11324,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11326
11324
|
var b = this.ip;
|
|
11327
11325
|
this.ip = a;
|
|
11328
11326
|
if (b != this.ip) {
|
|
11329
|
-
this.
|
|
11327
|
+
this.xm("ShiftSectionContent", b, this.ip);
|
|
11330
11328
|
}
|
|
11331
11329
|
},
|
|
11332
11330
|
enumerable: false,
|
|
@@ -11340,7 +11338,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11340
11338
|
var b = this.bi;
|
|
11341
11339
|
this.bi = a;
|
|
11342
11340
|
if (b != this.bi) {
|
|
11343
|
-
this.
|
|
11341
|
+
this.xm("ColumnOptionsIconAlignment", enumGetBox(ColumnOptionsIconAlignment_$type, b), enumGetBox(ColumnOptionsIconAlignment_$type, this.bi));
|
|
11344
11342
|
}
|
|
11345
11343
|
},
|
|
11346
11344
|
enumerable: false,
|
|
@@ -11348,13 +11346,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11348
11346
|
});
|
|
11349
11347
|
Object.defineProperty(DataGrid.prototype, "columnOptionsIconColor", {
|
|
11350
11348
|
get: function () {
|
|
11351
|
-
return this.
|
|
11349
|
+
return this.aad;
|
|
11352
11350
|
},
|
|
11353
11351
|
set: function (a) {
|
|
11354
|
-
var b = this.
|
|
11355
|
-
this.
|
|
11356
|
-
if (b != this.
|
|
11357
|
-
this.
|
|
11352
|
+
var b = this.aad;
|
|
11353
|
+
this.aad = a;
|
|
11354
|
+
if (b != this.aad) {
|
|
11355
|
+
this.xm("ColumnOptionsIconColor", b, this.aad);
|
|
11358
11356
|
}
|
|
11359
11357
|
},
|
|
11360
11358
|
enumerable: false,
|
|
@@ -11368,7 +11366,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11368
11366
|
var b = this.bk;
|
|
11369
11367
|
this.bk = a;
|
|
11370
11368
|
if (b != this.bk) {
|
|
11371
|
-
this.
|
|
11369
|
+
this.xm("ColumnOptionsIconBehavior", enumGetBox(ColumnOptionsIconBehavior_$type, b), enumGetBox(ColumnOptionsIconBehavior_$type, this.bk));
|
|
11372
11370
|
}
|
|
11373
11371
|
},
|
|
11374
11372
|
enumerable: false,
|
|
@@ -11376,13 +11374,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11376
11374
|
});
|
|
11377
11375
|
Object.defineProperty(DataGrid.prototype, "actualBorder", {
|
|
11378
11376
|
get: function () {
|
|
11379
|
-
return this.
|
|
11377
|
+
return this.z2;
|
|
11380
11378
|
},
|
|
11381
11379
|
set: function (a) {
|
|
11382
|
-
var b = this.
|
|
11383
|
-
this.
|
|
11384
|
-
if (b != this.
|
|
11385
|
-
this.
|
|
11380
|
+
var b = this.z2;
|
|
11381
|
+
this.z2 = a;
|
|
11382
|
+
if (b != this.z2) {
|
|
11383
|
+
this.xm("ActualBorder", b, this.z2);
|
|
11386
11384
|
}
|
|
11387
11385
|
},
|
|
11388
11386
|
enumerable: false,
|
|
@@ -11390,27 +11388,27 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11390
11388
|
});
|
|
11391
11389
|
Object.defineProperty(DataGrid.prototype, "border", {
|
|
11392
11390
|
get: function () {
|
|
11393
|
-
return this.
|
|
11391
|
+
return this.z4;
|
|
11394
11392
|
},
|
|
11395
11393
|
set: function (a) {
|
|
11396
|
-
var b = this.
|
|
11397
|
-
this.
|
|
11398
|
-
if (b != this.
|
|
11399
|
-
this.
|
|
11394
|
+
var b = this.z4;
|
|
11395
|
+
this.z4 = a;
|
|
11396
|
+
if (b != this.z4) {
|
|
11397
|
+
this.xm("Border", b, this.z4);
|
|
11400
11398
|
}
|
|
11401
11399
|
},
|
|
11402
11400
|
enumerable: false,
|
|
11403
11401
|
configurable: true
|
|
11404
11402
|
});
|
|
11405
|
-
Object.defineProperty(DataGrid.prototype, "
|
|
11403
|
+
Object.defineProperty(DataGrid.prototype, "acs", {
|
|
11406
11404
|
get: function () {
|
|
11407
|
-
return this.
|
|
11405
|
+
return this.acm;
|
|
11408
11406
|
},
|
|
11409
11407
|
set: function (a) {
|
|
11410
|
-
var b = this.
|
|
11411
|
-
this.
|
|
11412
|
-
if (b != this.
|
|
11413
|
-
this.
|
|
11408
|
+
var b = this.acm;
|
|
11409
|
+
this.acm = a;
|
|
11410
|
+
if (b != this.acm) {
|
|
11411
|
+
this.xm("DefaultBorderWidth", b, this.acm);
|
|
11414
11412
|
}
|
|
11415
11413
|
},
|
|
11416
11414
|
enumerable: false,
|
|
@@ -11418,13 +11416,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11418
11416
|
});
|
|
11419
11417
|
Object.defineProperty(DataGrid.prototype, "actualBorderWidth", {
|
|
11420
11418
|
get: function () {
|
|
11421
|
-
return this.
|
|
11419
|
+
return this.ack;
|
|
11422
11420
|
},
|
|
11423
11421
|
set: function (a) {
|
|
11424
|
-
var b = this.
|
|
11425
|
-
this.
|
|
11426
|
-
if (b != this.
|
|
11427
|
-
this.
|
|
11422
|
+
var b = this.ack;
|
|
11423
|
+
this.ack = a;
|
|
11424
|
+
if (b != this.ack) {
|
|
11425
|
+
this.xm("ActualBorderWidth", b, this.ack);
|
|
11428
11426
|
}
|
|
11429
11427
|
},
|
|
11430
11428
|
enumerable: false,
|
|
@@ -11432,13 +11430,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11432
11430
|
});
|
|
11433
11431
|
Object.defineProperty(DataGrid.prototype, "borderWidth", {
|
|
11434
11432
|
get: function () {
|
|
11435
|
-
return this.
|
|
11433
|
+
return this.acl;
|
|
11436
11434
|
},
|
|
11437
11435
|
set: function (a) {
|
|
11438
|
-
var b = this.
|
|
11439
|
-
this.
|
|
11440
|
-
if (b != this.
|
|
11441
|
-
this.
|
|
11436
|
+
var b = this.acl;
|
|
11437
|
+
this.acl = a;
|
|
11438
|
+
if (b != this.acl) {
|
|
11439
|
+
this.xm("BorderWidth", b, this.acl);
|
|
11442
11440
|
}
|
|
11443
11441
|
},
|
|
11444
11442
|
enumerable: false,
|
|
@@ -11452,21 +11450,21 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11452
11450
|
var b = this.ih;
|
|
11453
11451
|
this.ih = a;
|
|
11454
11452
|
if (b != this.ih) {
|
|
11455
|
-
this.
|
|
11453
|
+
this.xm("NotifyOnAllSelectionChanges", b, this.ih);
|
|
11456
11454
|
}
|
|
11457
11455
|
},
|
|
11458
11456
|
enumerable: false,
|
|
11459
11457
|
configurable: true
|
|
11460
11458
|
});
|
|
11461
|
-
Object.defineProperty(DataGrid.prototype, "
|
|
11459
|
+
Object.defineProperty(DataGrid.prototype, "z0", {
|
|
11462
11460
|
get: function () {
|
|
11463
|
-
return this.
|
|
11461
|
+
return this.zw;
|
|
11464
11462
|
},
|
|
11465
11463
|
set: function (a) {
|
|
11466
|
-
var b = this.
|
|
11467
|
-
this.
|
|
11468
|
-
if (b != this.
|
|
11469
|
-
this.
|
|
11464
|
+
var b = this.zw;
|
|
11465
|
+
this.zw = a;
|
|
11466
|
+
if (b != this.zw) {
|
|
11467
|
+
this.xm("DefaultCornerRadius", b, this.zw);
|
|
11470
11468
|
}
|
|
11471
11469
|
},
|
|
11472
11470
|
enumerable: false,
|
|
@@ -11474,13 +11472,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11474
11472
|
});
|
|
11475
11473
|
Object.defineProperty(DataGrid.prototype, "cornerRadius", {
|
|
11476
11474
|
get: function () {
|
|
11477
|
-
return this.
|
|
11475
|
+
return this.zv;
|
|
11478
11476
|
},
|
|
11479
11477
|
set: function (a) {
|
|
11480
|
-
var b = this.
|
|
11481
|
-
this.
|
|
11482
|
-
if (b != this.
|
|
11483
|
-
this.
|
|
11478
|
+
var b = this.zv;
|
|
11479
|
+
this.zv = a;
|
|
11480
|
+
if (b != this.zv) {
|
|
11481
|
+
this.xm("CornerRadius", b, this.zv);
|
|
11484
11482
|
}
|
|
11485
11483
|
},
|
|
11486
11484
|
enumerable: false,
|
|
@@ -11488,13 +11486,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11488
11486
|
});
|
|
11489
11487
|
Object.defineProperty(DataGrid.prototype, "actualCornerRadius", {
|
|
11490
11488
|
get: function () {
|
|
11491
|
-
return this.
|
|
11489
|
+
return this.zu;
|
|
11492
11490
|
},
|
|
11493
11491
|
set: function (a) {
|
|
11494
|
-
var b = this.
|
|
11495
|
-
this.
|
|
11496
|
-
if (b != this.
|
|
11497
|
-
this.
|
|
11492
|
+
var b = this.zu;
|
|
11493
|
+
this.zu = a;
|
|
11494
|
+
if (b != this.zu) {
|
|
11495
|
+
this.xm("ActualCornerRadius", b, this.zu);
|
|
11498
11496
|
}
|
|
11499
11497
|
},
|
|
11500
11498
|
enumerable: false,
|
|
@@ -11508,7 +11506,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11508
11506
|
var b = this.ht;
|
|
11509
11507
|
this.ht = a;
|
|
11510
11508
|
if (this.ht != b) {
|
|
11511
|
-
this.
|
|
11509
|
+
this.xm("IsActiveCellStyleEnabled", b, this.ht);
|
|
11512
11510
|
}
|
|
11513
11511
|
},
|
|
11514
11512
|
enumerable: false,
|
|
@@ -11522,7 +11520,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11522
11520
|
var b = this.iv;
|
|
11523
11521
|
this.iv = a;
|
|
11524
11522
|
if (b != this.iv) {
|
|
11525
|
-
this.
|
|
11523
|
+
this.xm("StopPropagation", b, this.iv);
|
|
11526
11524
|
}
|
|
11527
11525
|
},
|
|
11528
11526
|
enumerable: false,
|
|
@@ -11530,13 +11528,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11530
11528
|
});
|
|
11531
11529
|
Object.defineProperty(DataGrid.prototype, "actualBackground", {
|
|
11532
11530
|
get: function () {
|
|
11533
|
-
return this.
|
|
11531
|
+
return this.z1;
|
|
11534
11532
|
},
|
|
11535
11533
|
set: function (a) {
|
|
11536
|
-
var b = this.
|
|
11537
|
-
this.
|
|
11538
|
-
if (b != this.
|
|
11539
|
-
this.
|
|
11534
|
+
var b = this.z1;
|
|
11535
|
+
this.z1 = a;
|
|
11536
|
+
if (b != this.z1) {
|
|
11537
|
+
this.xm("ActualBackground", b, this.z1);
|
|
11540
11538
|
}
|
|
11541
11539
|
},
|
|
11542
11540
|
enumerable: false,
|
|
@@ -11544,13 +11542,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11544
11542
|
});
|
|
11545
11543
|
Object.defineProperty(DataGrid.prototype, "background", {
|
|
11546
11544
|
get: function () {
|
|
11547
|
-
return this.
|
|
11545
|
+
return this.z3;
|
|
11548
11546
|
},
|
|
11549
11547
|
set: function (a) {
|
|
11550
|
-
var b = this.
|
|
11551
|
-
this.
|
|
11552
|
-
if (b != this.
|
|
11553
|
-
this.
|
|
11548
|
+
var b = this.z3;
|
|
11549
|
+
this.z3 = a;
|
|
11550
|
+
if (b != this.z3) {
|
|
11551
|
+
this.xm("Background", b, this.z3);
|
|
11554
11552
|
}
|
|
11555
11553
|
},
|
|
11556
11554
|
enumerable: false,
|
|
@@ -11572,12 +11570,12 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11572
11570
|
},
|
|
11573
11571
|
set: function (a) {
|
|
11574
11572
|
this.e3 = a;
|
|
11575
|
-
this.
|
|
11573
|
+
this.xo(this.e3);
|
|
11576
11574
|
},
|
|
11577
11575
|
enumerable: false,
|
|
11578
11576
|
configurable: true
|
|
11579
11577
|
});
|
|
11580
|
-
DataGrid.prototype.
|
|
11578
|
+
DataGrid.prototype.xo = function (a) {
|
|
11581
11579
|
if (a != null) {
|
|
11582
11580
|
a.refresh(this.model, false);
|
|
11583
11581
|
}
|
|
@@ -11775,7 +11773,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11775
11773
|
this.gh = a;
|
|
11776
11774
|
this.iw = true;
|
|
11777
11775
|
if (b != this.gh) {
|
|
11778
|
-
this.
|
|
11776
|
+
this.xm("SummaryScope", enumGetBox(SummaryScope_$type, b), enumGetBox(SummaryScope_$type, this.gh));
|
|
11779
11777
|
}
|
|
11780
11778
|
},
|
|
11781
11779
|
enumerable: false,
|
|
@@ -11790,7 +11788,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11790
11788
|
this.hz = a;
|
|
11791
11789
|
this.h0 = true;
|
|
11792
11790
|
if (b != this.hz) {
|
|
11793
|
-
this.
|
|
11791
|
+
this.xm("IsGroupCollapsable", b, this.hz);
|
|
11794
11792
|
}
|
|
11795
11793
|
},
|
|
11796
11794
|
enumerable: false,
|
|
@@ -11805,7 +11803,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11805
11803
|
this.es = a;
|
|
11806
11804
|
this.ho = true;
|
|
11807
11805
|
if (b != this.es) {
|
|
11808
|
-
this.
|
|
11806
|
+
this.xm("GroupHeaderDisplayMode", enumGetBox(GroupHeaderDisplayMode_$type, b), enumGetBox(GroupHeaderDisplayMode_$type, this.es));
|
|
11809
11807
|
}
|
|
11810
11808
|
},
|
|
11811
11809
|
enumerable: false,
|
|
@@ -11820,7 +11818,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11820
11818
|
this.h1 = a;
|
|
11821
11819
|
this.h2 = true;
|
|
11822
11820
|
if (b != this.h1) {
|
|
11823
|
-
this.
|
|
11821
|
+
this.xm("IsGroupExpandedDefault", b, this.h1);
|
|
11824
11822
|
}
|
|
11825
11823
|
},
|
|
11826
11824
|
enumerable: false,
|
|
@@ -11835,7 +11833,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11835
11833
|
this.eu = a;
|
|
11836
11834
|
this.hp = true;
|
|
11837
11835
|
if (b != this.eu) {
|
|
11838
|
-
this.
|
|
11836
|
+
this.xm("GroupSummaryDisplayMode", enumGetBox(GroupSummaryDisplayMode_$type, b), enumGetBox(GroupSummaryDisplayMode_$type, this.eu));
|
|
11839
11837
|
}
|
|
11840
11838
|
},
|
|
11841
11839
|
enumerable: false,
|
|
@@ -11851,18 +11849,18 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11851
11849
|
enumerable: false,
|
|
11852
11850
|
configurable: true
|
|
11853
11851
|
});
|
|
11854
|
-
DataGrid.prototype.
|
|
11852
|
+
DataGrid.prototype.xm = function (a, b, c) {
|
|
11855
11853
|
if (this.propertyChanged != null) {
|
|
11856
11854
|
this.propertyChanged(this, new PropertyChangedEventArgs(a));
|
|
11857
11855
|
}
|
|
11858
|
-
this.
|
|
11856
|
+
this.x9(a, b, c);
|
|
11859
11857
|
if (this.postPropertyChanged != null) {
|
|
11860
11858
|
this.postPropertyChanged(this, new PropertyChangedEventArgs(a));
|
|
11861
11859
|
}
|
|
11862
11860
|
};
|
|
11863
|
-
DataGrid.prototype.
|
|
11861
|
+
DataGrid.prototype.yu = function () {
|
|
11864
11862
|
};
|
|
11865
|
-
DataGrid.prototype.
|
|
11863
|
+
DataGrid.prototype.ye = function () {
|
|
11866
11864
|
var _this = this;
|
|
11867
11865
|
if (this.l2 == 0) {
|
|
11868
11866
|
return;
|
|
@@ -11879,7 +11877,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11879
11877
|
this.renderingEngine.invalidateVisibility(function () { return _this.gk.t(_this); });
|
|
11880
11878
|
this.renderingEngine.refresh(this.model, false);
|
|
11881
11879
|
};
|
|
11882
|
-
DataGrid.prototype.
|
|
11880
|
+
DataGrid.prototype.yf = function () {
|
|
11883
11881
|
var _this = this;
|
|
11884
11882
|
if (this.hs) {
|
|
11885
11883
|
this.vg();
|
|
@@ -11897,7 +11895,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11897
11895
|
DataGrid.prototype.vg = function () {
|
|
11898
11896
|
if (this.hs) {
|
|
11899
11897
|
this.hs = false;
|
|
11900
|
-
this.
|
|
11898
|
+
this.ye();
|
|
11901
11899
|
this.invalidateVisibleRows();
|
|
11902
11900
|
}
|
|
11903
11901
|
};
|
|
@@ -11934,7 +11932,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11934
11932
|
var b = this.x;
|
|
11935
11933
|
this.x = a;
|
|
11936
11934
|
if (this.x != b) {
|
|
11937
|
-
this.
|
|
11935
|
+
this.xm("ActualDataSource", b, this.x);
|
|
11938
11936
|
}
|
|
11939
11937
|
},
|
|
11940
11938
|
enumerable: false,
|
|
@@ -11948,7 +11946,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11948
11946
|
var b = this.d;
|
|
11949
11947
|
this.d = a;
|
|
11950
11948
|
if (this.d != b) {
|
|
11951
|
-
this.
|
|
11949
|
+
this.xm("PrimaryKey", b, this.d);
|
|
11952
11950
|
}
|
|
11953
11951
|
},
|
|
11954
11952
|
enumerable: false,
|
|
@@ -11962,7 +11960,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11962
11960
|
var b = this.a;
|
|
11963
11961
|
this.a = a;
|
|
11964
11962
|
if (this.a != b) {
|
|
11965
|
-
this.
|
|
11963
|
+
this.xm("ActualPrimaryKey", b, this.a);
|
|
11966
11964
|
}
|
|
11967
11965
|
},
|
|
11968
11966
|
enumerable: false,
|
|
@@ -11978,7 +11976,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11978
11976
|
enumerable: false,
|
|
11979
11977
|
configurable: true
|
|
11980
11978
|
});
|
|
11981
|
-
DataGrid.prototype.
|
|
11979
|
+
DataGrid.prototype.x9 = function (a, b, c) {
|
|
11982
11980
|
var _this = this;
|
|
11983
11981
|
if (a == "ItemsSource") {
|
|
11984
11982
|
if (this.x != null) {
|
|
@@ -12062,7 +12060,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12062
12060
|
this.actualPrimaryKey = this.n();
|
|
12063
12061
|
if (this.x.actualSchema != null) {
|
|
12064
12062
|
if (this.renderingEngine != null) {
|
|
12065
|
-
this.
|
|
12063
|
+
this.ya();
|
|
12066
12064
|
}
|
|
12067
12065
|
this.delayedExecutionManager.executeIn(function () { return _this.w4(); }, 0);
|
|
12068
12066
|
this.e7.setDataSource(this.x);
|
|
@@ -12071,8 +12069,8 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12071
12069
|
this.jh = true;
|
|
12072
12070
|
this.iy = true;
|
|
12073
12071
|
this.ix = true;
|
|
12074
|
-
this.
|
|
12075
|
-
this.
|
|
12072
|
+
this.zj(this.selectedItems, this.selectedKeys);
|
|
12073
|
+
this.zj(this.pinnedItems, this.pinnedKeys);
|
|
12076
12074
|
this.f6.a2();
|
|
12077
12075
|
this.ji = false;
|
|
12078
12076
|
this.jh = false;
|
|
@@ -12110,7 +12108,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12110
12108
|
break;
|
|
12111
12109
|
}
|
|
12112
12110
|
}
|
|
12113
|
-
this.
|
|
12111
|
+
this.zl();
|
|
12114
12112
|
}
|
|
12115
12113
|
}
|
|
12116
12114
|
if (a == "AutoGenerateColumns") {
|
|
@@ -12212,11 +12210,11 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12212
12210
|
var p = b;
|
|
12213
12211
|
var q = c;
|
|
12214
12212
|
if (p != null) {
|
|
12215
|
-
p.definitionPropertyUpdated = delegateRemove(p.definitionPropertyUpdated, runOn(this, this.
|
|
12213
|
+
p.definitionPropertyUpdated = delegateRemove(p.definitionPropertyUpdated, runOn(this, this.yy));
|
|
12216
12214
|
p.grid = null;
|
|
12217
12215
|
}
|
|
12218
12216
|
if (q != null) {
|
|
12219
|
-
q.definitionPropertyUpdated = delegateCombine(q.definitionPropertyUpdated, runOn(this, this.
|
|
12217
|
+
q.definitionPropertyUpdated = delegateCombine(q.definitionPropertyUpdated, runOn(this, this.yy));
|
|
12220
12218
|
q.grid = this;
|
|
12221
12219
|
}
|
|
12222
12220
|
if (this.k8()) {
|
|
@@ -12292,27 +12290,27 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12292
12290
|
if (a == "ActualRowHeight" || a == "ActualHeaderHeight" || a == "RowSeparatorHeight" || a == "IsGroupRowSticky" || a == "IsHeaderSeparatorVisible" || a == "ShiftSectionContent" || a == "PinnedAreaSeparatorWidth" || a == "MergedCellMode" || a == "MergedCellEvaluationCriteria") {
|
|
12293
12291
|
this.j6 = this.k7();
|
|
12294
12292
|
if (this.k8()) {
|
|
12295
|
-
this.
|
|
12293
|
+
this.ye();
|
|
12296
12294
|
}
|
|
12297
12295
|
}
|
|
12298
12296
|
if (a == "DefaultColumnWidth" || a == "DefaultColumnMinWidth" || a == "Inset" || a == "HeaderSeparatorWidth") {
|
|
12299
12297
|
if (this.model != null && this.model.b9 != null && this.model.b9.count > 0) {
|
|
12300
|
-
this.
|
|
12298
|
+
this.ye();
|
|
12301
12299
|
}
|
|
12302
12300
|
}
|
|
12303
12301
|
if (a == "SectionHeader") {
|
|
12304
12302
|
if (b != null) {
|
|
12305
12303
|
var z = typeCast(SectionHeader.$, b);
|
|
12306
|
-
z.sectionHeaderPropertyUpdating = delegateRemove(z.sectionHeaderPropertyUpdating, runOn(this, this.
|
|
12304
|
+
z.sectionHeaderPropertyUpdating = delegateRemove(z.sectionHeaderPropertyUpdating, runOn(this, this.xv));
|
|
12307
12305
|
z.grid = null;
|
|
12308
12306
|
}
|
|
12309
12307
|
if (this.sectionHeader != null) {
|
|
12310
12308
|
var aa = this.sectionHeader;
|
|
12311
|
-
aa.sectionHeaderPropertyUpdating = delegateCombine(aa.sectionHeaderPropertyUpdating, runOn(this, this.
|
|
12309
|
+
aa.sectionHeaderPropertyUpdating = delegateCombine(aa.sectionHeaderPropertyUpdating, runOn(this, this.xv));
|
|
12312
12310
|
this.sectionHeader.grid = this;
|
|
12313
12311
|
}
|
|
12314
12312
|
this.model.b5 = true;
|
|
12315
|
-
this.
|
|
12313
|
+
this.ye();
|
|
12316
12314
|
}
|
|
12317
12315
|
if (a == "PinnedAreaSeparator") {
|
|
12318
12316
|
if (b != null) {
|
|
@@ -12322,7 +12320,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12322
12320
|
if (this.pinnedAreaSeparator != null) {
|
|
12323
12321
|
this.pinnedAreaSeparator.grid = this;
|
|
12324
12322
|
}
|
|
12325
|
-
this.
|
|
12323
|
+
this.ye();
|
|
12326
12324
|
}
|
|
12327
12325
|
if (a == "ActiveCell") {
|
|
12328
12326
|
this.dh = typeCast(GridCellPosition.$, b);
|
|
@@ -12408,7 +12406,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12408
12406
|
break;
|
|
12409
12407
|
}
|
|
12410
12408
|
}
|
|
12411
|
-
this.
|
|
12409
|
+
this.ye();
|
|
12412
12410
|
}
|
|
12413
12411
|
if (a == "Density" || a == "RowHeight") {
|
|
12414
12412
|
this.w5();
|
|
@@ -12419,10 +12417,10 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12419
12417
|
this.externalGrid.setScrollerVerticalTrackInset(this.actualHeaderHeight + this.rowSeparatorHeight + af);
|
|
12420
12418
|
}
|
|
12421
12419
|
if (a == "DefaultBorderWidth" || a == "BorderWidth") {
|
|
12422
|
-
this.actualBorderWidth = this.
|
|
12420
|
+
this.actualBorderWidth = this.acr(this.borderWidth, this.acs);
|
|
12423
12421
|
}
|
|
12424
12422
|
if (a == "DefaultCornerRadius" || a == "CornerRadius") {
|
|
12425
|
-
this.actualCornerRadius = this.
|
|
12423
|
+
this.actualCornerRadius = this.zy(this.cornerRadius, this.z0);
|
|
12426
12424
|
}
|
|
12427
12425
|
if (a == "Border" || a == "Theme") {
|
|
12428
12426
|
this.actualBorder = this.border != null ? this.border : GridStyleRepository.s(this.theme, 28);
|
|
@@ -12434,10 +12432,10 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12434
12432
|
this.syncBorder();
|
|
12435
12433
|
}
|
|
12436
12434
|
if (a == "EditMode") {
|
|
12437
|
-
this.
|
|
12435
|
+
this.zl();
|
|
12438
12436
|
}
|
|
12439
12437
|
if (a == "FilterUIType") {
|
|
12440
|
-
this.
|
|
12438
|
+
this.ye();
|
|
12441
12439
|
var ag = this.j0() ? this.actualRowHeight + this.rowSeparatorHeight : 0;
|
|
12442
12440
|
this.externalGrid.setScrollerVerticalTrackInset(this.actualHeaderHeight + this.rowSeparatorHeight + ag);
|
|
12443
12441
|
}
|
|
@@ -12451,7 +12449,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12451
12449
|
this.externalGrid.setBackground(this.actualBackground);
|
|
12452
12450
|
}
|
|
12453
12451
|
};
|
|
12454
|
-
DataGrid.prototype.
|
|
12452
|
+
DataGrid.prototype.zl = function () {
|
|
12455
12453
|
if (this.z != null) {
|
|
12456
12454
|
if (this.editMode == 2 || this.editMode == 3) {
|
|
12457
12455
|
this.z.isBatchingEnabled = true;
|
|
@@ -12461,10 +12459,10 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12461
12459
|
}
|
|
12462
12460
|
}
|
|
12463
12461
|
};
|
|
12464
|
-
DataGrid.prototype.
|
|
12462
|
+
DataGrid.prototype.zy = function (a, b) {
|
|
12465
12463
|
return new CornerRadius(1, !isNaN_(a.d) ? a.d : b.d, !isNaN_(a.e) ? a.e : b.e, !isNaN_(a.c) ? a.c : b.c, !isNaN_(a.b) ? a.b : b.b);
|
|
12466
12464
|
};
|
|
12467
|
-
DataGrid.prototype.
|
|
12465
|
+
DataGrid.prototype.acr = function (a, b) {
|
|
12468
12466
|
return new Thickness(1, !isNaN_(a.left) ? a.left : b.left, !isNaN_(a.top) ? a.top : b.top, !isNaN_(a.right) ? a.right : b.right, !isNaN_(a.bottom) ? a.bottom : b.bottom);
|
|
12469
12467
|
};
|
|
12470
12468
|
DataGrid.prototype.syncBorder = function () {
|
|
@@ -12544,16 +12542,16 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12544
12542
|
}
|
|
12545
12543
|
this.c6.r(this, null, b.propertyName, b.animationType, b.oldValue, b.newValue, 8);
|
|
12546
12544
|
};
|
|
12547
|
-
DataGrid.prototype.
|
|
12548
|
-
this.
|
|
12545
|
+
DataGrid.prototype.yy = function (a, b) {
|
|
12546
|
+
this.yz(b.propertyName, b.animationType, b.oldValue, b.newValue, false);
|
|
12549
12547
|
};
|
|
12550
12548
|
DataGrid.prototype.vi = function (a, b) {
|
|
12551
|
-
this.
|
|
12549
|
+
this.yz(b.propertyName, b.animationType, b.oldValue, b.newValue, true);
|
|
12552
12550
|
};
|
|
12553
12551
|
DataGrid.prototype.vj = function (a, b) {
|
|
12554
12552
|
this.vk(b.propertyName, b.animationType, b.oldValue, b.newValue);
|
|
12555
12553
|
};
|
|
12556
|
-
DataGrid.prototype.
|
|
12554
|
+
DataGrid.prototype.yz = function (a, b, c, d, e) {
|
|
12557
12555
|
if (b == 10) {
|
|
12558
12556
|
return;
|
|
12559
12557
|
}
|
|
@@ -12578,7 +12576,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12578
12576
|
this.w4();
|
|
12579
12577
|
};
|
|
12580
12578
|
DataGrid.prototype.u4 = function (a, b) {
|
|
12581
|
-
this.
|
|
12579
|
+
this.xp();
|
|
12582
12580
|
};
|
|
12583
12581
|
DataGrid.prototype.rg = function (a) {
|
|
12584
12582
|
var b = "";
|
|
@@ -12592,7 +12590,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12592
12590
|
b += EnumUtil.getName(DataSourceSummaryOperand_$type, a.operand);
|
|
12593
12591
|
return b;
|
|
12594
12592
|
};
|
|
12595
|
-
DataGrid.prototype.
|
|
12593
|
+
DataGrid.prototype.xp = function () {
|
|
12596
12594
|
this.vc();
|
|
12597
12595
|
if (this.summaryDescriptions.j.count > 0 && this.rootSummariesChanged != null) {
|
|
12598
12596
|
this.rootSummariesChanged(this, new DataSourceRootSummariesChangedEventArgs());
|
|
@@ -12631,19 +12629,19 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12631
12629
|
DataGrid.prototype.w4 = function () {
|
|
12632
12630
|
this.e7.setDataSource(this.x);
|
|
12633
12631
|
this.az.d = this.x.actualSchema;
|
|
12634
|
-
this.
|
|
12632
|
+
this.zm();
|
|
12635
12633
|
this.vc();
|
|
12636
12634
|
for (var a = 0; a < this.groupDescriptions.j.count; a++) {
|
|
12637
|
-
this.
|
|
12635
|
+
this.yv(this.groupDescriptions.j.item(a));
|
|
12638
12636
|
}
|
|
12639
12637
|
for (var b = 0; b < this.summaryDescriptions.j.count; b++) {
|
|
12640
|
-
this.
|
|
12638
|
+
this.yw(this.summaryDescriptions.j.item(b));
|
|
12641
12639
|
}
|
|
12642
12640
|
if (this.hs) {
|
|
12643
12641
|
this.vg();
|
|
12644
12642
|
}
|
|
12645
12643
|
else {
|
|
12646
|
-
this.
|
|
12644
|
+
this.ye();
|
|
12647
12645
|
this.invalidateVisibleRows();
|
|
12648
12646
|
}
|
|
12649
12647
|
};
|
|
@@ -12678,7 +12676,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12678
12676
|
this.ml = a;
|
|
12679
12677
|
this.mk = b;
|
|
12680
12678
|
this.fp.y(a, b);
|
|
12681
|
-
this.
|
|
12679
|
+
this.ye();
|
|
12682
12680
|
if (this.sizeChanged != null) {
|
|
12683
12681
|
this.sizeChanged(this, ((function () {
|
|
12684
12682
|
var $ret = new GridSizeChangedEventArgs();
|
|
@@ -12706,7 +12704,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12706
12704
|
if (f.x != this.model.actualVisibleRegion.x || f.y != this.model.actualVisibleRegion.y || f.width != this.model.actualVisibleRegion.width || f.height != this.model.actualVisibleRegion.height) {
|
|
12707
12705
|
var g_1 = this.model.actualVisibleRegion;
|
|
12708
12706
|
this.model.actualVisibleRegion = f;
|
|
12709
|
-
this.
|
|
12707
|
+
this.yf();
|
|
12710
12708
|
if (this.viewportChanged != null) {
|
|
12711
12709
|
this.viewportChanged(this, ((function () {
|
|
12712
12710
|
var $ret = new GridViewportChangedEventArgs();
|
|
@@ -12737,14 +12735,14 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12737
12735
|
enumerable: false,
|
|
12738
12736
|
configurable: true
|
|
12739
12737
|
});
|
|
12740
|
-
DataGrid.prototype.
|
|
12738
|
+
DataGrid.prototype.xi = function (a, b, c) {
|
|
12741
12739
|
var d = this.cj(a.l);
|
|
12742
12740
|
a.a2 = true;
|
|
12743
12741
|
d.en(a, this, b, c);
|
|
12744
12742
|
a.a2 = false;
|
|
12745
12743
|
d.ep(a, this, b, c);
|
|
12746
12744
|
};
|
|
12747
|
-
DataGrid.prototype.
|
|
12745
|
+
DataGrid.prototype.xh = function (a, b, c, d) {
|
|
12748
12746
|
var e = this.cj(a.l);
|
|
12749
12747
|
if (!Base.equalsStatic(d, a.k8)) {
|
|
12750
12748
|
a.k8 = d;
|
|
@@ -12803,7 +12801,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12803
12801
|
this.externalGrid.removeExternalColumn(b.externalObject);
|
|
12804
12802
|
this.wp(a);
|
|
12805
12803
|
}
|
|
12806
|
-
this.
|
|
12804
|
+
this.ye();
|
|
12807
12805
|
if (this.jp(a)) {
|
|
12808
12806
|
var f = this.model.h(b.lb).a;
|
|
12809
12807
|
b.hw = 2;
|
|
@@ -12856,7 +12854,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12856
12854
|
this.w0();
|
|
12857
12855
|
break;
|
|
12858
12856
|
}
|
|
12859
|
-
this.
|
|
12857
|
+
this.ye();
|
|
12860
12858
|
if (!this.ig) {
|
|
12861
12859
|
this.ig = true;
|
|
12862
12860
|
this.delayedExecutionManager.executeIn(function () {
|
|
@@ -12880,7 +12878,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12880
12878
|
b.columnCellsPropertyUpdating = delegateRemove(b.columnCellsPropertyUpdating, runOn(this, this.ux));
|
|
12881
12879
|
b.columnHeaderCellsPropertyUpdating = delegateRemove(b.columnHeaderCellsPropertyUpdating, runOn(this, this.u0));
|
|
12882
12880
|
this.gc.v(this.d2, a, b, this.model);
|
|
12883
|
-
this.
|
|
12881
|
+
this.ye();
|
|
12884
12882
|
b.hw = 0;
|
|
12885
12883
|
this.f6.ag(a, b);
|
|
12886
12884
|
};
|
|
@@ -12896,11 +12894,11 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12896
12894
|
if (this.jn(b) && !b.j1 && b.hw != 3) {
|
|
12897
12895
|
var c = b.hw;
|
|
12898
12896
|
b.hw = 1;
|
|
12899
|
-
this.
|
|
12897
|
+
this.ye();
|
|
12900
12898
|
this.c6.ar(this, this.columnAnimationSettings, this.model.h(b.lb), true, c);
|
|
12901
12899
|
}
|
|
12902
12900
|
else {
|
|
12903
|
-
this.
|
|
12901
|
+
this.ye();
|
|
12904
12902
|
}
|
|
12905
12903
|
for (var d = 0; d < this.sortDescriptions.j.count; d++) {
|
|
12906
12904
|
if (b.mr == this.sortDescriptions.j.item(d).f) {
|
|
@@ -12920,7 +12918,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12920
12918
|
}
|
|
12921
12919
|
}
|
|
12922
12920
|
if (b == "Width" || b == "MinWidth" || b == "Pinned") {
|
|
12923
|
-
this.
|
|
12921
|
+
this.ye();
|
|
12924
12922
|
this.uv();
|
|
12925
12923
|
if (b == "Width") {
|
|
12926
12924
|
this.w1(a, d, e);
|
|
@@ -12978,7 +12976,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12978
12976
|
}
|
|
12979
12977
|
this.c6.s(this, f, b, c, d, e, false, false, false, false);
|
|
12980
12978
|
};
|
|
12981
|
-
DataGrid.prototype.
|
|
12979
|
+
DataGrid.prototype.xv = function (a, b, c, d, e) {
|
|
12982
12980
|
if (c == 10) {
|
|
12983
12981
|
return;
|
|
12984
12982
|
}
|
|
@@ -13201,7 +13199,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
13201
13199
|
if (!this.jr(c) && d != 3) {
|
|
13202
13200
|
c.hw = 5;
|
|
13203
13201
|
}
|
|
13204
|
-
this.
|
|
13202
|
+
this.ye();
|
|
13205
13203
|
if (this.jr(c)) {
|
|
13206
13204
|
c.hw = 6;
|
|
13207
13205
|
this.c6.al(this, this.columnAnimationSettings, this.model.h(c.lb), d);
|
|
@@ -13213,14 +13211,14 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
13213
13211
|
switch (b.propertyName) {
|
|
13214
13212
|
case "Filter":
|
|
13215
13213
|
case "FilterExpression":
|
|
13216
|
-
this.
|
|
13214
|
+
this.zm();
|
|
13217
13215
|
break;
|
|
13218
13216
|
case "IsHidden":
|
|
13219
13217
|
if (c.j1) {
|
|
13220
13218
|
if (this.jq(c)) {
|
|
13221
13219
|
var d = c.hw;
|
|
13222
13220
|
c.hw = 2;
|
|
13223
|
-
this.
|
|
13221
|
+
this.ye();
|
|
13224
13222
|
this.c6.ak(this, this.columnAnimationSettings, this.model.h(c.lb), false, d);
|
|
13225
13223
|
}
|
|
13226
13224
|
else {
|
|
@@ -13229,21 +13227,21 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
13229
13227
|
this.externalGrid.ensureColumnsAreManual();
|
|
13230
13228
|
this.externalGrid.removeExternalColumn(c.externalObject);
|
|
13231
13229
|
}
|
|
13232
|
-
this.
|
|
13230
|
+
this.ye();
|
|
13233
13231
|
}
|
|
13234
13232
|
}
|
|
13235
13233
|
else {
|
|
13236
13234
|
if (this.jx(c)) {
|
|
13237
13235
|
var e = c.hw;
|
|
13238
13236
|
c.hw = 1;
|
|
13239
|
-
this.
|
|
13237
|
+
this.ye();
|
|
13240
13238
|
this.c6.ar(this, this.columnAnimationSettings, this.model.h(c.lb), false, e);
|
|
13241
13239
|
}
|
|
13242
13240
|
else {
|
|
13243
13241
|
c.hw = 5;
|
|
13244
13242
|
this.c6.ai(this, this.model.h(c.lb));
|
|
13245
13243
|
this.dx.ab();
|
|
13246
|
-
this.
|
|
13244
|
+
this.ye();
|
|
13247
13245
|
}
|
|
13248
13246
|
}
|
|
13249
13247
|
if (this.columnHiddenChanged != null) {
|
|
@@ -13257,12 +13255,12 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
13257
13255
|
break;
|
|
13258
13256
|
case "MergedCellMode":
|
|
13259
13257
|
if (this.k8()) {
|
|
13260
|
-
this.
|
|
13258
|
+
this.ye();
|
|
13261
13259
|
}
|
|
13262
13260
|
break;
|
|
13263
13261
|
}
|
|
13264
13262
|
};
|
|
13265
|
-
DataGrid.prototype.
|
|
13263
|
+
DataGrid.prototype.zm = function () {
|
|
13266
13264
|
if (this.actualDataSource == null) {
|
|
13267
13265
|
return;
|
|
13268
13266
|
}
|
|
@@ -13595,7 +13593,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
13595
13593
|
this.nb = f;
|
|
13596
13594
|
this.viewportManager.moveViewportTo(f, e);
|
|
13597
13595
|
};
|
|
13598
|
-
DataGrid.prototype.
|
|
13596
|
+
DataGrid.prototype.y1 = function (a) {
|
|
13599
13597
|
var b = truncate(a);
|
|
13600
13598
|
if (b < 0) {
|
|
13601
13599
|
b = 0;
|
|
@@ -13656,10 +13654,10 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
13656
13654
|
}
|
|
13657
13655
|
this.c6.z(this, a, b, false);
|
|
13658
13656
|
if (this.e8.getRowCount() != this.model.c5()) {
|
|
13659
|
-
this.
|
|
13657
|
+
this.ye();
|
|
13660
13658
|
}
|
|
13661
13659
|
else {
|
|
13662
|
-
this.
|
|
13660
|
+
this.yf();
|
|
13663
13661
|
}
|
|
13664
13662
|
this.uv();
|
|
13665
13663
|
};
|
|
@@ -13679,7 +13677,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
13679
13677
|
if (b < 0) {
|
|
13680
13678
|
b = 0;
|
|
13681
13679
|
}
|
|
13682
|
-
this.
|
|
13680
|
+
this.y1(b);
|
|
13683
13681
|
}
|
|
13684
13682
|
};
|
|
13685
13683
|
DataGrid.prototype.n0 = function (a) {
|
|
@@ -13702,7 +13700,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
13702
13700
|
var a = this.gc.b(this.model.actualVisibleRegion.bottom - this.model.df, this.model);
|
|
13703
13701
|
return this.gc.i(this.model, a);
|
|
13704
13702
|
};
|
|
13705
|
-
DataGrid.prototype.
|
|
13703
|
+
DataGrid.prototype.x4 = function () {
|
|
13706
13704
|
var a = this.getFirstVisibleIndex();
|
|
13707
13705
|
var b = this.getLastVisibleIndex();
|
|
13708
13706
|
this.e8.firstVisibleIndexRequested = a;
|
|
@@ -13756,12 +13754,12 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
13756
13754
|
DataGrid.prototype.va = function () {
|
|
13757
13755
|
if (this.hf) {
|
|
13758
13756
|
this.ji = true;
|
|
13759
|
-
this.
|
|
13757
|
+
this.zr(this.lp, this.lq, this.lr, this.ls);
|
|
13760
13758
|
this.ji = false;
|
|
13761
13759
|
}
|
|
13762
13760
|
this.hf = false;
|
|
13763
13761
|
};
|
|
13764
|
-
DataGrid.prototype.
|
|
13762
|
+
DataGrid.prototype.xt = function (a, b) {
|
|
13765
13763
|
if (a == null) {
|
|
13766
13764
|
var c = this.selectedKeys.ae.indexOf(b);
|
|
13767
13765
|
if (c > -1 && this.selectedItems.ae.count > 0) {
|
|
@@ -13784,7 +13782,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
13784
13782
|
}
|
|
13785
13783
|
this.ji = false;
|
|
13786
13784
|
};
|
|
13787
|
-
DataGrid.prototype.
|
|
13785
|
+
DataGrid.prototype.xu = function (a, b) {
|
|
13788
13786
|
if (a == null) {
|
|
13789
13787
|
var c = this.selectedKeys.ae.indexOf(b);
|
|
13790
13788
|
if (c > -1 && this.selectedItems.ae.count > 0) {
|
|
@@ -13796,20 +13794,20 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
13796
13794
|
}
|
|
13797
13795
|
this.ji = true;
|
|
13798
13796
|
if (!this.hf) {
|
|
13799
|
-
this.
|
|
13797
|
+
this.ys(a, b, true);
|
|
13800
13798
|
}
|
|
13801
13799
|
else {
|
|
13802
13800
|
this.lr.add1(a);
|
|
13803
13801
|
this.ls.add(b);
|
|
13804
13802
|
if (this.hg) {
|
|
13805
|
-
this.
|
|
13803
|
+
this.ys(a, b, false);
|
|
13806
13804
|
}
|
|
13807
13805
|
}
|
|
13808
13806
|
this.ji = false;
|
|
13809
13807
|
};
|
|
13810
|
-
DataGrid.prototype.
|
|
13808
|
+
DataGrid.prototype.x0 = function (a, b, c) {
|
|
13811
13809
|
this.ji = true;
|
|
13812
|
-
this.
|
|
13810
|
+
this.zq(a, b, c);
|
|
13813
13811
|
this.ji = false;
|
|
13814
13812
|
};
|
|
13815
13813
|
DataGrid.prototype.v6 = function (a, b, c) {
|
|
@@ -13925,7 +13923,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
13925
13923
|
}
|
|
13926
13924
|
var i = Math.min(this.nm, e);
|
|
13927
13925
|
var j = Math.max(this.nm, e);
|
|
13928
|
-
this.
|
|
13926
|
+
this.za(i, j);
|
|
13929
13927
|
}
|
|
13930
13928
|
else if (this.selectionMode == 5 && a) {
|
|
13931
13929
|
if (this.nm == -1) {
|
|
@@ -13939,7 +13937,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
13939
13937
|
k.k = Math.min(this.nl, this.model.b9._inner[f].n);
|
|
13940
13938
|
k.j = Math.max(this.nm, e);
|
|
13941
13939
|
k.i = Math.max(this.nl, this.model.b9._inner[f].n);
|
|
13942
|
-
this.
|
|
13940
|
+
this.y5(k);
|
|
13943
13941
|
}
|
|
13944
13942
|
else {
|
|
13945
13943
|
this.nm = -1;
|
|
@@ -13948,7 +13946,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
13948
13946
|
this.lt.clear();
|
|
13949
13947
|
this.lu.clear();
|
|
13950
13948
|
}
|
|
13951
|
-
this.
|
|
13949
|
+
this.x1();
|
|
13952
13950
|
return true;
|
|
13953
13951
|
};
|
|
13954
13952
|
DataGrid.prototype.kp = function (a, b) {
|
|
@@ -14109,7 +14107,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14109
14107
|
else if (b >= this.n8()) {
|
|
14110
14108
|
b = this.gc.j(b, this.model);
|
|
14111
14109
|
if (this.model.b9._inner[b].d == 0) {
|
|
14112
|
-
this.
|
|
14110
|
+
this.y1(b);
|
|
14113
14111
|
}
|
|
14114
14112
|
}
|
|
14115
14113
|
if (!d) {
|
|
@@ -14212,8 +14210,8 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14212
14210
|
j.j = Math.max(this.nm, e);
|
|
14213
14211
|
j.i = Math.max(this.nl, h);
|
|
14214
14212
|
this.io = false;
|
|
14215
|
-
this.
|
|
14216
|
-
this.
|
|
14213
|
+
this.y5(j);
|
|
14214
|
+
this.x1();
|
|
14217
14215
|
}
|
|
14218
14216
|
else {
|
|
14219
14217
|
this.nl = -1;
|
|
@@ -14325,8 +14323,8 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14325
14323
|
j.j = Math.max(this.nm, e);
|
|
14326
14324
|
j.i = Math.max(this.nl, h);
|
|
14327
14325
|
this.io = false;
|
|
14328
|
-
this.
|
|
14329
|
-
this.
|
|
14326
|
+
this.y5(j);
|
|
14327
|
+
this.x1();
|
|
14330
14328
|
}
|
|
14331
14329
|
else {
|
|
14332
14330
|
this.nl = -1;
|
|
@@ -14334,9 +14332,47 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14334
14332
|
}
|
|
14335
14333
|
return true;
|
|
14336
14334
|
};
|
|
14335
|
+
DataGrid.prototype.xf = function (a, b) {
|
|
14336
|
+
if (!b) {
|
|
14337
|
+
return;
|
|
14338
|
+
}
|
|
14339
|
+
if (this.activationMode == 0) {
|
|
14340
|
+
return;
|
|
14341
|
+
}
|
|
14342
|
+
if (this.activeCell != null) {
|
|
14343
|
+
return;
|
|
14344
|
+
}
|
|
14345
|
+
if (this.e8 == null || this.e8.getRowCount() == 0 || this.actualColumns.count == 0) {
|
|
14346
|
+
return;
|
|
14347
|
+
}
|
|
14348
|
+
var c;
|
|
14349
|
+
var d;
|
|
14350
|
+
if (a) {
|
|
14351
|
+
c = this.e8.getRowCount() - 1;
|
|
14352
|
+
d = this.n6(true);
|
|
14353
|
+
}
|
|
14354
|
+
else {
|
|
14355
|
+
c = 0;
|
|
14356
|
+
d = this.n1(true);
|
|
14357
|
+
}
|
|
14358
|
+
var e = this.actualColumns._inner[d];
|
|
14359
|
+
this.activeCell = ((function () {
|
|
14360
|
+
var $ret = new GridCellPosition();
|
|
14361
|
+
$ret.b = c;
|
|
14362
|
+
$ret.d = e.mw();
|
|
14363
|
+
return $ret;
|
|
14364
|
+
})());
|
|
14365
|
+
this.us(c, this.model.b9._inner[d].n, false);
|
|
14366
|
+
};
|
|
14337
14367
|
DataGrid.prototype.k0 = function (a, b) {
|
|
14338
14368
|
if (this.activationMode == 0 || this.activeCell == null) {
|
|
14339
|
-
|
|
14369
|
+
if (a) {
|
|
14370
|
+
this.externalGrid.moveFocusPrevious();
|
|
14371
|
+
}
|
|
14372
|
+
else {
|
|
14373
|
+
this.externalGrid.moveFocusNext();
|
|
14374
|
+
}
|
|
14375
|
+
return true;
|
|
14340
14376
|
}
|
|
14341
14377
|
var c = this.ae.s();
|
|
14342
14378
|
var d = this.model.b9._inner[c].n;
|
|
@@ -14374,7 +14410,9 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14374
14410
|
p = this.actualColumns._inner[o];
|
|
14375
14411
|
}
|
|
14376
14412
|
else {
|
|
14377
|
-
|
|
14413
|
+
this.activeCell = null;
|
|
14414
|
+
this.externalGrid.moveFocusPrevious();
|
|
14415
|
+
return true;
|
|
14378
14416
|
}
|
|
14379
14417
|
}
|
|
14380
14418
|
d = this.model.b9._inner[o].n;
|
|
@@ -14407,7 +14445,9 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14407
14445
|
l = j != 1 && j != 2 && j != 4 && j != 5;
|
|
14408
14446
|
}
|
|
14409
14447
|
else {
|
|
14410
|
-
|
|
14448
|
+
this.activeCell = null;
|
|
14449
|
+
this.externalGrid.moveFocusNext();
|
|
14450
|
+
return true;
|
|
14411
14451
|
}
|
|
14412
14452
|
}
|
|
14413
14453
|
d = this.model.b9._inner[s].n;
|
|
@@ -14448,7 +14488,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14448
14488
|
}
|
|
14449
14489
|
return true;
|
|
14450
14490
|
};
|
|
14451
|
-
DataGrid.prototype.
|
|
14491
|
+
DataGrid.prototype.x5 = function () {
|
|
14452
14492
|
};
|
|
14453
14493
|
DataGrid.prototype.k1 = function (a, b) {
|
|
14454
14494
|
if (this.ck.j) {
|
|
@@ -14500,7 +14540,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14500
14540
|
}
|
|
14501
14541
|
var i = Math.min(this.nm, e);
|
|
14502
14542
|
var j = Math.max(this.nm, e);
|
|
14503
|
-
this.
|
|
14543
|
+
this.za(i, j);
|
|
14504
14544
|
}
|
|
14505
14545
|
else if (this.selectionMode == 5 && a) {
|
|
14506
14546
|
if (this.nm == -1) {
|
|
@@ -14514,7 +14554,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14514
14554
|
k.k = Math.min(this.nl, this.model.b9._inner[f].n);
|
|
14515
14555
|
k.j = Math.max(this.nm, e);
|
|
14516
14556
|
k.i = Math.max(this.nl, this.model.b9._inner[f].n);
|
|
14517
|
-
this.
|
|
14557
|
+
this.y5(k);
|
|
14518
14558
|
}
|
|
14519
14559
|
else {
|
|
14520
14560
|
this.nm = -1;
|
|
@@ -14523,7 +14563,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14523
14563
|
this.lt.clear();
|
|
14524
14564
|
this.lu.clear();
|
|
14525
14565
|
}
|
|
14526
|
-
this.
|
|
14566
|
+
this.x1();
|
|
14527
14567
|
return true;
|
|
14528
14568
|
};
|
|
14529
14569
|
DataGrid.prototype.kq = function (a, b) {
|
|
@@ -14552,7 +14592,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14552
14592
|
if (this.activationMode != 0 && this.activeCell != null) {
|
|
14553
14593
|
var c = this.e8.getRowType(this.activeCell.b);
|
|
14554
14594
|
if (c == 1) {
|
|
14555
|
-
this.
|
|
14595
|
+
this.zo(this.activeCell.b);
|
|
14556
14596
|
}
|
|
14557
14597
|
else if (this.jy() && this.enterBehavior == 1 && (c == 0 || c == 3)) {
|
|
14558
14598
|
var d = this.ae.s();
|
|
@@ -14703,7 +14743,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14703
14743
|
var f = this.ck.o;
|
|
14704
14744
|
var g = this.ck.s;
|
|
14705
14745
|
if (b) {
|
|
14706
|
-
this.
|
|
14746
|
+
this.xr(f, g);
|
|
14707
14747
|
}
|
|
14708
14748
|
this.wc(e, f, g);
|
|
14709
14749
|
return true;
|
|
@@ -14735,7 +14775,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14735
14775
|
var b = this.ck.o;
|
|
14736
14776
|
var c = this.ck.s;
|
|
14737
14777
|
this.ck.w();
|
|
14738
|
-
this.
|
|
14778
|
+
this.xq(b, c);
|
|
14739
14779
|
if (a) {
|
|
14740
14780
|
if (this.autoAcceptEdits) {
|
|
14741
14781
|
if (this.canCommit) {
|
|
@@ -14783,13 +14823,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14783
14823
|
}
|
|
14784
14824
|
this.ji = false;
|
|
14785
14825
|
};
|
|
14786
|
-
DataGrid.prototype.
|
|
14826
|
+
DataGrid.prototype.x1 = function () {
|
|
14787
14827
|
if (this.io && this.selectionChanged != null) {
|
|
14788
14828
|
this.selectionChanged(this, new GridSelectionChangedEventArgs());
|
|
14789
14829
|
this.io = false;
|
|
14790
14830
|
}
|
|
14791
14831
|
};
|
|
14792
|
-
DataGrid.prototype.
|
|
14832
|
+
DataGrid.prototype.zr = function (a, b, c, d) {
|
|
14793
14833
|
if (a.count == 0 && b.count == 0 && c.count == 0 && d.count == 0) {
|
|
14794
14834
|
return;
|
|
14795
14835
|
}
|
|
@@ -14819,8 +14859,8 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14819
14859
|
}
|
|
14820
14860
|
}
|
|
14821
14861
|
this.notifyOnAllSelectionChanges = e;
|
|
14822
|
-
this.
|
|
14823
|
-
this.
|
|
14862
|
+
this.xw(c, a);
|
|
14863
|
+
this.xz(d, b);
|
|
14824
14864
|
};
|
|
14825
14865
|
DataGrid.prototype.up = function (a, b) {
|
|
14826
14866
|
var c = this.notifyOnAllSelectionChanges;
|
|
@@ -14831,8 +14871,8 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14831
14871
|
this.io = true;
|
|
14832
14872
|
}
|
|
14833
14873
|
this.notifyOnAllSelectionChanges = c;
|
|
14834
|
-
this.
|
|
14835
|
-
this.
|
|
14874
|
+
this.xw(null, a);
|
|
14875
|
+
this.xz(null, b);
|
|
14836
14876
|
};
|
|
14837
14877
|
DataGrid.prototype.uq = function (a, b, c) {
|
|
14838
14878
|
var d = this.notifyOnAllSelectionChanges;
|
|
@@ -14843,11 +14883,11 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14843
14883
|
}
|
|
14844
14884
|
this.notifyOnAllSelectionChanges = d;
|
|
14845
14885
|
if (c) {
|
|
14846
|
-
this.
|
|
14847
|
-
this.
|
|
14886
|
+
this.xx(null, a);
|
|
14887
|
+
this.xy(null, b);
|
|
14848
14888
|
}
|
|
14849
14889
|
};
|
|
14850
|
-
DataGrid.prototype.
|
|
14890
|
+
DataGrid.prototype.zq = function (a, b, c) {
|
|
14851
14891
|
var d = this.notifyOnAllSelectionChanges;
|
|
14852
14892
|
this.notifyOnAllSelectionChanges = false;
|
|
14853
14893
|
var e = this.selectedItems.ae._inner[a];
|
|
@@ -14855,9 +14895,9 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14855
14895
|
this.selectedItems.ae._inner[a] = b;
|
|
14856
14896
|
}
|
|
14857
14897
|
this.notifyOnAllSelectionChanges = d;
|
|
14858
|
-
this.
|
|
14898
|
+
this.xx(b, b);
|
|
14859
14899
|
};
|
|
14860
|
-
DataGrid.prototype.
|
|
14900
|
+
DataGrid.prototype.yr = function (a, b) {
|
|
14861
14901
|
var c = this.notifyOnAllSelectionChanges;
|
|
14862
14902
|
this.notifyOnAllSelectionChanges = false;
|
|
14863
14903
|
if (!this.iy) {
|
|
@@ -14867,10 +14907,10 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14867
14907
|
}
|
|
14868
14908
|
}
|
|
14869
14909
|
this.notifyOnAllSelectionChanges = c;
|
|
14870
|
-
this.
|
|
14871
|
-
this.
|
|
14910
|
+
this.xw(a, null);
|
|
14911
|
+
this.xz(b, null);
|
|
14872
14912
|
};
|
|
14873
|
-
DataGrid.prototype.
|
|
14913
|
+
DataGrid.prototype.ys = function (a, b, c) {
|
|
14874
14914
|
var d = this.notifyOnAllSelectionChanges;
|
|
14875
14915
|
this.notifyOnAllSelectionChanges = false;
|
|
14876
14916
|
if (!this.iy) {
|
|
@@ -14879,11 +14919,11 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14879
14919
|
}
|
|
14880
14920
|
this.notifyOnAllSelectionChanges = d;
|
|
14881
14921
|
if (c) {
|
|
14882
|
-
this.
|
|
14883
|
-
this.
|
|
14922
|
+
this.xx(a, null);
|
|
14923
|
+
this.xy(b, null);
|
|
14884
14924
|
}
|
|
14885
14925
|
};
|
|
14886
|
-
DataGrid.prototype.
|
|
14926
|
+
DataGrid.prototype.xx = function (a, b) {
|
|
14887
14927
|
if (!this.lk && this.selectedItemsChanged != null) {
|
|
14888
14928
|
var c = new GridSelectedItemsChangedEventArgs();
|
|
14889
14929
|
c.currentItems = this.selectedItems;
|
|
@@ -14900,7 +14940,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14900
14940
|
this.selectedItemsChanged(this, c);
|
|
14901
14941
|
}
|
|
14902
14942
|
};
|
|
14903
|
-
DataGrid.prototype.
|
|
14943
|
+
DataGrid.prototype.xy = function (a, b) {
|
|
14904
14944
|
if (!this.lk && this.selectedKeysChanged != null) {
|
|
14905
14945
|
var c = new GridSelectedKeysChangedEventArgs();
|
|
14906
14946
|
c.currentKeys = this.selectedKeys;
|
|
@@ -14917,7 +14957,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14917
14957
|
this.selectedKeysChanged(this, c);
|
|
14918
14958
|
}
|
|
14919
14959
|
};
|
|
14920
|
-
DataGrid.prototype.
|
|
14960
|
+
DataGrid.prototype.xw = function (a, b) {
|
|
14921
14961
|
if (!this.lk && this.selectedItemsChanged != null) {
|
|
14922
14962
|
var c = new GridSelectedItemsChangedEventArgs();
|
|
14923
14963
|
c.currentItems = this.selectedItems;
|
|
@@ -14932,7 +14972,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14932
14972
|
this.selectedItemsChanged(this, c);
|
|
14933
14973
|
}
|
|
14934
14974
|
};
|
|
14935
|
-
DataGrid.prototype.
|
|
14975
|
+
DataGrid.prototype.xz = function (a, b) {
|
|
14936
14976
|
if (!this.lk && this.selectedKeysChanged != null) {
|
|
14937
14977
|
var c = new GridSelectedKeysChangedEventArgs();
|
|
14938
14978
|
c.currentKeys = this.selectedKeys;
|
|
@@ -14971,7 +15011,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14971
15011
|
this.selectedCellRangesChanged(this, b);
|
|
14972
15012
|
}
|
|
14973
15013
|
};
|
|
14974
|
-
DataGrid.prototype.
|
|
15014
|
+
DataGrid.prototype.yo = function (a) {
|
|
14975
15015
|
if (this.selectedCellRanges.contains(a)) {
|
|
14976
15016
|
this.selectedCellRanges.remove(a);
|
|
14977
15017
|
if (this.selectedCellRangesChanged != null) {
|
|
@@ -14986,7 +15026,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14986
15026
|
}
|
|
14987
15027
|
}
|
|
14988
15028
|
};
|
|
14989
|
-
DataGrid.prototype.
|
|
15029
|
+
DataGrid.prototype.yn = function () {
|
|
14990
15030
|
if (this.selectedCellRanges.count > 0) {
|
|
14991
15031
|
var a = new GridSelectedCellRangesCollection();
|
|
14992
15032
|
for (var b = 0; b < this.selectedCellRanges.count; b++) {
|
|
@@ -15015,7 +15055,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15015
15055
|
}
|
|
15016
15056
|
}
|
|
15017
15057
|
};
|
|
15018
|
-
DataGrid.prototype.
|
|
15058
|
+
DataGrid.prototype.x2 = function (a, b, c) {
|
|
15019
15059
|
this.vn(a);
|
|
15020
15060
|
if (b != c) {
|
|
15021
15061
|
this.f6.aj(a);
|
|
@@ -15031,18 +15071,18 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15031
15071
|
this.m6 = -1;
|
|
15032
15072
|
}
|
|
15033
15073
|
this.f6.ad();
|
|
15034
|
-
this.
|
|
15035
|
-
this.
|
|
15074
|
+
this.xp();
|
|
15075
|
+
this.ye();
|
|
15036
15076
|
this.invalidateVisibleRows();
|
|
15037
15077
|
};
|
|
15038
|
-
DataGrid.prototype.
|
|
15078
|
+
DataGrid.prototype.yx = function (a, b) {
|
|
15039
15079
|
var c = this.lv(a, b);
|
|
15040
15080
|
for (var d = 0; d < c.count; d++) {
|
|
15041
15081
|
var e = c._inner[d];
|
|
15042
|
-
this.
|
|
15082
|
+
this.ym(e);
|
|
15043
15083
|
}
|
|
15044
15084
|
};
|
|
15045
|
-
DataGrid.prototype.
|
|
15085
|
+
DataGrid.prototype.yt = function (a, b) {
|
|
15046
15086
|
var c = this.lv(a, b);
|
|
15047
15087
|
for (var d = 0; d < c.count; d++) {
|
|
15048
15088
|
var e = c._inner[d];
|
|
@@ -15099,7 +15139,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15099
15139
|
}
|
|
15100
15140
|
return false;
|
|
15101
15141
|
};
|
|
15102
|
-
DataGrid.prototype.
|
|
15142
|
+
DataGrid.prototype.ym = function (a) {
|
|
15103
15143
|
var b = a.ah + "@@@" + EnumUtil.getName(DataSourceSummaryOperand_$type, a.i);
|
|
15104
15144
|
if (!this.ln.containsKey(b)) {
|
|
15105
15145
|
this.ln.item(b, 0);
|
|
@@ -15176,7 +15216,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15176
15216
|
}
|
|
15177
15217
|
this.c6.z(this, a, b, true);
|
|
15178
15218
|
this.model.b5 = true;
|
|
15179
|
-
this.
|
|
15219
|
+
this.yf();
|
|
15180
15220
|
};
|
|
15181
15221
|
DataGrid.prototype.n3 = function () {
|
|
15182
15222
|
return this.gc.o(this.model.actualVisibleRegion.left + this.model.cz, this, this.model);
|
|
@@ -15189,7 +15229,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15189
15229
|
var d = this.gc.i(this.model, b);
|
|
15190
15230
|
this.vo(c, d);
|
|
15191
15231
|
};
|
|
15192
|
-
DataGrid.prototype.
|
|
15232
|
+
DataGrid.prototype.ya = function () {
|
|
15193
15233
|
var _this = this;
|
|
15194
15234
|
if (!this.hs) {
|
|
15195
15235
|
this.hs = true;
|
|
@@ -15200,14 +15240,14 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15200
15240
|
}
|
|
15201
15241
|
}
|
|
15202
15242
|
};
|
|
15203
|
-
DataGrid.prototype.
|
|
15243
|
+
DataGrid.prototype.xg = function (a, b) {
|
|
15204
15244
|
var c = this.e8.getRowPathForRow(a);
|
|
15205
15245
|
this.dx.ae(c);
|
|
15206
15246
|
this.f6.ah(this.gc.i(this.model, c));
|
|
15207
15247
|
this.ae.ai(this.gc.i(this.model, c));
|
|
15208
|
-
this.
|
|
15248
|
+
this.ya();
|
|
15209
15249
|
};
|
|
15210
|
-
DataGrid.prototype.
|
|
15250
|
+
DataGrid.prototype.xn = function (a, b) {
|
|
15211
15251
|
var c = this.e8.getRowPathForRow(a);
|
|
15212
15252
|
this.dx.af(c);
|
|
15213
15253
|
this.f6.ai(this.gc.i(this.model, c), b);
|
|
@@ -15240,16 +15280,16 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15240
15280
|
}
|
|
15241
15281
|
}
|
|
15242
15282
|
}
|
|
15243
|
-
this.
|
|
15283
|
+
this.ya();
|
|
15244
15284
|
};
|
|
15245
15285
|
DataGrid.prototype.setActiveResponsiveState = function (a) {
|
|
15246
15286
|
for (var b = 0; b < this.fp.g.count; b++) {
|
|
15247
15287
|
if (this.fp.g._inner[b].n == a) {
|
|
15248
|
-
this.
|
|
15288
|
+
this.zc(this.fp.g._inner[b]);
|
|
15249
15289
|
}
|
|
15250
15290
|
}
|
|
15251
15291
|
};
|
|
15252
|
-
DataGrid.prototype.
|
|
15292
|
+
DataGrid.prototype.zc = function (a) {
|
|
15253
15293
|
this.fp.x(a);
|
|
15254
15294
|
};
|
|
15255
15295
|
DataGrid.prototype.notifySetItem = function (a, b, c) {
|
|
@@ -15359,7 +15399,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15359
15399
|
var b = this.il;
|
|
15360
15400
|
this.il = a;
|
|
15361
15401
|
if (b != this.il) {
|
|
15362
|
-
this.
|
|
15402
|
+
this.xm("ReactsToSortChanges", b, this.il);
|
|
15363
15403
|
}
|
|
15364
15404
|
},
|
|
15365
15405
|
enumerable: false,
|
|
@@ -15373,7 +15413,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15373
15413
|
var b = this.ik;
|
|
15374
15414
|
this.ik = a;
|
|
15375
15415
|
if (b != this.ik) {
|
|
15376
|
-
this.
|
|
15416
|
+
this.xm("ReactsToGroupChanges", b, this.ik);
|
|
15377
15417
|
}
|
|
15378
15418
|
},
|
|
15379
15419
|
enumerable: false,
|
|
@@ -15387,7 +15427,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15387
15427
|
var b = this.ij;
|
|
15388
15428
|
this.ij = a;
|
|
15389
15429
|
if (b != this.ij) {
|
|
15390
|
-
this.
|
|
15430
|
+
this.xm("ReactsToFilterChanges", b, this.ij);
|
|
15391
15431
|
}
|
|
15392
15432
|
},
|
|
15393
15433
|
enumerable: false,
|
|
@@ -15460,12 +15500,12 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15460
15500
|
var n = this.z.isPendingTransaction(k_3);
|
|
15461
15501
|
if (n && this.autoAcceptEdits) {
|
|
15462
15502
|
this.acceptEdit(k_3);
|
|
15463
|
-
this.
|
|
15503
|
+
this.zs(f_2, j, h_1);
|
|
15464
15504
|
}
|
|
15465
15505
|
}
|
|
15466
15506
|
else {
|
|
15467
15507
|
this.acceptEdit(k_3);
|
|
15468
|
-
this.
|
|
15508
|
+
this.zs(f_2, j, h_1);
|
|
15469
15509
|
}
|
|
15470
15510
|
this.ii = false;
|
|
15471
15511
|
}
|
|
@@ -15481,7 +15521,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15481
15521
|
}
|
|
15482
15522
|
return true;
|
|
15483
15523
|
};
|
|
15484
|
-
DataGrid.prototype.
|
|
15524
|
+
DataGrid.prototype.zs = function (a, b, c) {
|
|
15485
15525
|
if (this.actualPrimaryKey != null) {
|
|
15486
15526
|
var d = false;
|
|
15487
15527
|
var e = -1;
|
|
@@ -15575,7 +15615,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15575
15615
|
})()));
|
|
15576
15616
|
}
|
|
15577
15617
|
};
|
|
15578
|
-
DataGrid.prototype.
|
|
15618
|
+
DataGrid.prototype.xr = function (a, b) {
|
|
15579
15619
|
if (this.rowEditStarted != null) {
|
|
15580
15620
|
this.rowEditStarted(this, ((function () {
|
|
15581
15621
|
var $ret = new GridRowEditStartedEventArgs();
|
|
@@ -15585,7 +15625,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15585
15625
|
})()));
|
|
15586
15626
|
}
|
|
15587
15627
|
};
|
|
15588
|
-
DataGrid.prototype.
|
|
15628
|
+
DataGrid.prototype.xq = function (a, b) {
|
|
15589
15629
|
if (this.rowEditEnded != null) {
|
|
15590
15630
|
this.rowEditEnded(this, ((function () {
|
|
15591
15631
|
var $ret = new GridRowEditEndedEventArgs();
|
|
@@ -15742,7 +15782,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15742
15782
|
var b = this.ct;
|
|
15743
15783
|
this.ct = a;
|
|
15744
15784
|
if (b != this.ct) {
|
|
15745
|
-
this.
|
|
15785
|
+
this.xm("EnterBehavior", enumGetBox(EnterKeyBehaviors_$type, b), enumGetBox(EnterKeyBehaviors_$type, this.ct));
|
|
15746
15786
|
}
|
|
15747
15787
|
},
|
|
15748
15788
|
enumerable: false,
|
|
@@ -15756,7 +15796,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15756
15796
|
var b = this.cr;
|
|
15757
15797
|
this.cr = a;
|
|
15758
15798
|
if (b != this.cr) {
|
|
15759
|
-
this.
|
|
15799
|
+
this.xm("EnterBehaviorAfterEdit", enumGetBox(EnterKeyBehaviorAfterEdit_$type, b), enumGetBox(EnterKeyBehaviorAfterEdit_$type, this.cr));
|
|
15760
15800
|
}
|
|
15761
15801
|
},
|
|
15762
15802
|
enumerable: false,
|
|
@@ -15783,8 +15823,8 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15783
15823
|
this.f6.a2();
|
|
15784
15824
|
this.lk = false;
|
|
15785
15825
|
this.ji = false;
|
|
15786
|
-
this.
|
|
15787
|
-
this.
|
|
15826
|
+
this.xw(a, null);
|
|
15827
|
+
this.xz(b, null);
|
|
15788
15828
|
this.f6.as(-1);
|
|
15789
15829
|
}
|
|
15790
15830
|
}
|
|
@@ -15859,7 +15899,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15859
15899
|
var b = this.hw;
|
|
15860
15900
|
this.hw = a;
|
|
15861
15901
|
if (b != this.hw) {
|
|
15862
|
-
this.
|
|
15902
|
+
this.xm("IsColumnOptionsSummariesEnabled", b, this.hw);
|
|
15863
15903
|
}
|
|
15864
15904
|
},
|
|
15865
15905
|
enumerable: false,
|
|
@@ -15873,7 +15913,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15873
15913
|
var b = this.hv;
|
|
15874
15914
|
this.hv = a;
|
|
15875
15915
|
if (b != this.hv) {
|
|
15876
|
-
this.
|
|
15916
|
+
this.xm("IsColumnOptionsGroupingEnabled", b, this.hv);
|
|
15877
15917
|
}
|
|
15878
15918
|
},
|
|
15879
15919
|
enumerable: false,
|
|
@@ -15887,7 +15927,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15887
15927
|
var b = this.fj;
|
|
15888
15928
|
this.fj = a;
|
|
15889
15929
|
if (b != this.fj) {
|
|
15890
|
-
this.
|
|
15930
|
+
this.xm("MergedCellMode", enumGetBox(MergedCellMode_$type, b), enumGetBox(MergedCellMode_$type, this.fj));
|
|
15891
15931
|
}
|
|
15892
15932
|
},
|
|
15893
15933
|
enumerable: false,
|
|
@@ -15901,7 +15941,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15901
15941
|
var b = this.fh;
|
|
15902
15942
|
this.fh = a;
|
|
15903
15943
|
if (b != this.fh) {
|
|
15904
|
-
this.
|
|
15944
|
+
this.xm("MergedCellEvaluationCriteria", enumGetBox(MergedCellEvaluationCriteria_$type, b), enumGetBox(MergedCellEvaluationCriteria_$type, this.fh));
|
|
15905
15945
|
}
|
|
15906
15946
|
},
|
|
15907
15947
|
enumerable: false,
|
|
@@ -15915,7 +15955,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15915
15955
|
var b = this.af;
|
|
15916
15956
|
this.af = a;
|
|
15917
15957
|
if (this.af != b) {
|
|
15918
|
-
this.
|
|
15958
|
+
this.xm("MergedCellVerticalAlignment", enumGetBox(CellContentVerticalAlignment_$type, b), enumGetBox(CellContentVerticalAlignment_$type, this.af));
|
|
15919
15959
|
}
|
|
15920
15960
|
},
|
|
15921
15961
|
enumerable: false,
|
|
@@ -16380,7 +16420,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
16380
16420
|
var b = this.c0;
|
|
16381
16421
|
this.c0 = a;
|
|
16382
16422
|
if (b != this.c0) {
|
|
16383
|
-
this.
|
|
16423
|
+
this.xm("FilterUIType", enumGetBox(FilterUIType_$type, b), enumGetBox(FilterUIType_$type, this.c0));
|
|
16384
16424
|
}
|
|
16385
16425
|
},
|
|
16386
16426
|
enumerable: false,
|
|
@@ -16394,7 +16434,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
16394
16434
|
var b = this.cx;
|
|
16395
16435
|
this.cx = a;
|
|
16396
16436
|
if (b != this.cx) {
|
|
16397
|
-
this.
|
|
16437
|
+
this.xm("FilterLogicalOperator", enumGetBox(FilterLogicalOperator_$type, b), enumGetBox(FilterLogicalOperator_$type, this.cx));
|
|
16398
16438
|
}
|
|
16399
16439
|
},
|
|
16400
16440
|
enumerable: false,
|
|
@@ -16408,7 +16448,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
16408
16448
|
var b = this.cv;
|
|
16409
16449
|
this.cv = a;
|
|
16410
16450
|
if (b != this.cv) {
|
|
16411
|
-
this.
|
|
16451
|
+
this.xm("FilterComparisonType", enumGetBox(FilterComparisonType_$type, b), enumGetBox(FilterComparisonType_$type, this.cv));
|
|
16412
16452
|
}
|
|
16413
16453
|
},
|
|
16414
16454
|
enumerable: false,
|
|
@@ -16436,7 +16476,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
16436
16476
|
var b = this.hk;
|
|
16437
16477
|
this.hk = a;
|
|
16438
16478
|
if (b != this.hk) {
|
|
16439
|
-
this.
|
|
16479
|
+
this.xm("ClearSelectionOnEscape", b, this.hk);
|
|
16440
16480
|
}
|
|
16441
16481
|
},
|
|
16442
16482
|
enumerable: false,
|
|
@@ -16473,7 +16513,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
16473
16513
|
var b = this.h6;
|
|
16474
16514
|
this.h6 = a;
|
|
16475
16515
|
if (b != this.h6) {
|
|
16476
|
-
this.
|
|
16516
|
+
this.xm("IsPagerVisible", b, this.h6);
|
|
16477
16517
|
}
|
|
16478
16518
|
},
|
|
16479
16519
|
enumerable: false,
|
|
@@ -16487,7 +16527,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
16487
16527
|
var b = this.m9;
|
|
16488
16528
|
this.m9 = a;
|
|
16489
16529
|
if (b != this.m9) {
|
|
16490
|
-
this.
|
|
16530
|
+
this.xm("PageSize", b, this.m9);
|
|
16491
16531
|
}
|
|
16492
16532
|
},
|
|
16493
16533
|
enumerable: false,
|
|
@@ -16501,7 +16541,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
16501
16541
|
var b = this.ib;
|
|
16502
16542
|
this.ib = a;
|
|
16503
16543
|
if (b != this.ib) {
|
|
16504
|
-
this.
|
|
16544
|
+
this.xm("IsToolbarVisible", b, this.ib);
|
|
16505
16545
|
}
|
|
16506
16546
|
},
|
|
16507
16547
|
enumerable: false,
|
|
@@ -16515,7 +16555,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
16515
16555
|
var b = this.h9;
|
|
16516
16556
|
this.h9 = a;
|
|
16517
16557
|
if (b != this.h9) {
|
|
16518
|
-
this.
|
|
16558
|
+
this.xm("IsToolbarColumnChooserVisible", b, this.h9);
|
|
16519
16559
|
}
|
|
16520
16560
|
},
|
|
16521
16561
|
enumerable: false,
|
|
@@ -16529,7 +16569,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
16529
16569
|
var b = this.ia;
|
|
16530
16570
|
this.ia = a;
|
|
16531
16571
|
if (b != this.ia) {
|
|
16532
|
-
this.
|
|
16572
|
+
this.xm("IsToolbarColumnPinningVisible", b, this.ia);
|
|
16533
16573
|
}
|
|
16534
16574
|
},
|
|
16535
16575
|
enumerable: false,
|
|
@@ -16543,7 +16583,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
16543
16583
|
var b = this.pd;
|
|
16544
16584
|
this.pd = a;
|
|
16545
16585
|
if (b != this.pd) {
|
|
16546
|
-
this.
|
|
16586
|
+
this.xm("ToolbarTitle", b, this.pd);
|
|
16547
16587
|
}
|
|
16548
16588
|
},
|
|
16549
16589
|
enumerable: false,
|
|
@@ -16557,7 +16597,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
16557
16597
|
var b = this.o9;
|
|
16558
16598
|
this.o9 = a;
|
|
16559
16599
|
if (b != this.o9) {
|
|
16560
|
-
this.
|
|
16600
|
+
this.xm("ToolbarColumnChooserText", b, this.o9);
|
|
16561
16601
|
}
|
|
16562
16602
|
},
|
|
16563
16603
|
enumerable: false,
|
|
@@ -16571,7 +16611,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
16571
16611
|
var b = this.pa;
|
|
16572
16612
|
this.pa = a;
|
|
16573
16613
|
if (b != this.pa) {
|
|
16574
|
-
this.
|
|
16614
|
+
this.xm("ToolbarColumnChooserTitle", b, this.pa);
|
|
16575
16615
|
}
|
|
16576
16616
|
},
|
|
16577
16617
|
enumerable: false,
|
|
@@ -16585,7 +16625,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
16585
16625
|
var b = this.pb;
|
|
16586
16626
|
this.pb = a;
|
|
16587
16627
|
if (b != this.pb) {
|
|
16588
|
-
this.
|
|
16628
|
+
this.xm("ToolbarColumnPinningText", b, this.pb);
|
|
16589
16629
|
}
|
|
16590
16630
|
},
|
|
16591
16631
|
enumerable: false,
|
|
@@ -16599,7 +16639,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
16599
16639
|
var b = this.pc;
|
|
16600
16640
|
this.pc = a;
|
|
16601
16641
|
if (b != this.pc) {
|
|
16602
|
-
this.
|
|
16642
|
+
this.xm("ToolbarColumnPinningTitle", b, this.pc);
|
|
16603
16643
|
}
|
|
16604
16644
|
},
|
|
16605
16645
|
enumerable: false,
|
|
@@ -16613,7 +16653,7 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
16613
16653
|
var b = this.gn;
|
|
16614
16654
|
this.gn = a;
|
|
16615
16655
|
if (b != this.gn) {
|
|
16616
|
-
this.
|
|
16656
|
+
this.xm("ScrollbarStyle", enumGetBox(ScrollbarStyle_$type, b), enumGetBox(ScrollbarStyle_$type, this.gn));
|
|
16617
16657
|
}
|
|
16618
16658
|
},
|
|
16619
16659
|
enumerable: false,
|
|
@@ -16621,13 +16661,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
16621
16661
|
});
|
|
16622
16662
|
Object.defineProperty(DataGrid.prototype, "scrollbarBackground", {
|
|
16623
16663
|
get: function () {
|
|
16624
|
-
return this.
|
|
16664
|
+
return this.aaw;
|
|
16625
16665
|
},
|
|
16626
16666
|
set: function (a) {
|
|
16627
|
-
var b = this.
|
|
16628
|
-
this.
|
|
16629
|
-
if (b != this.
|
|
16630
|
-
this.
|
|
16667
|
+
var b = this.aaw;
|
|
16668
|
+
this.aaw = a;
|
|
16669
|
+
if (b != this.aaw) {
|
|
16670
|
+
this.xm("ScrollbarBackground", b, this.aaw);
|
|
16631
16671
|
}
|
|
16632
16672
|
},
|
|
16633
16673
|
enumerable: false,
|
|
@@ -16635,13 +16675,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
16635
16675
|
});
|
|
16636
16676
|
Object.defineProperty(DataGrid.prototype, "columnOptionsBackground", {
|
|
16637
16677
|
get: function () {
|
|
16638
|
-
return this.
|
|
16678
|
+
return this.aaa;
|
|
16639
16679
|
},
|
|
16640
16680
|
set: function (a) {
|
|
16641
|
-
var b = this.
|
|
16642
|
-
this.
|
|
16643
|
-
if (b != this.
|
|
16644
|
-
this.
|
|
16681
|
+
var b = this.aaa;
|
|
16682
|
+
this.aaa = a;
|
|
16683
|
+
if (b != this.aaa) {
|
|
16684
|
+
this.xm("ColumnOptionsBackground", b, this.aaa);
|
|
16645
16685
|
}
|
|
16646
16686
|
},
|
|
16647
16687
|
enumerable: false,
|
|
@@ -16649,13 +16689,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
16649
16689
|
});
|
|
16650
16690
|
Object.defineProperty(DataGrid.prototype, "columnOptionsTextColor", {
|
|
16651
16691
|
get: function () {
|
|
16652
|
-
return this.
|
|
16692
|
+
return this.aaf;
|
|
16653
16693
|
},
|
|
16654
16694
|
set: function (a) {
|
|
16655
|
-
var b = this.
|
|
16656
|
-
this.
|
|
16657
|
-
if (b != this.
|
|
16658
|
-
this.
|
|
16695
|
+
var b = this.aaf;
|
|
16696
|
+
this.aaf = a;
|
|
16697
|
+
if (b != this.aaf) {
|
|
16698
|
+
this.xm("ColumnOptionsTextColor", b, this.aaf);
|
|
16659
16699
|
}
|
|
16660
16700
|
},
|
|
16661
16701
|
enumerable: false,
|
|
@@ -16663,13 +16703,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
16663
16703
|
});
|
|
16664
16704
|
Object.defineProperty(DataGrid.prototype, "columnOptionsSeparatorColor", {
|
|
16665
16705
|
get: function () {
|
|
16666
|
-
return this.
|
|
16706
|
+
return this.aae;
|
|
16667
16707
|
},
|
|
16668
16708
|
set: function (a) {
|
|
16669
|
-
var b = this.
|
|
16670
|
-
this.
|
|
16671
|
-
if (b != this.
|
|
16672
|
-
this.
|
|
16709
|
+
var b = this.aae;
|
|
16710
|
+
this.aae = a;
|
|
16711
|
+
if (b != this.aae) {
|
|
16712
|
+
this.xm("ColumnOptionsSeparatorColor", b, this.aae);
|
|
16673
16713
|
}
|
|
16674
16714
|
},
|
|
16675
16715
|
enumerable: false,
|
|
@@ -16677,13 +16717,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
16677
16717
|
});
|
|
16678
16718
|
Object.defineProperty(DataGrid.prototype, "columnOptionsGroupHeaderBackground", {
|
|
16679
16719
|
get: function () {
|
|
16680
|
-
return this.
|
|
16720
|
+
return this.aab;
|
|
16681
16721
|
},
|
|
16682
16722
|
set: function (a) {
|
|
16683
|
-
var b = this.
|
|
16684
|
-
this.
|
|
16685
|
-
if (b != this.
|
|
16686
|
-
this.
|
|
16723
|
+
var b = this.aab;
|
|
16724
|
+
this.aab = a;
|
|
16725
|
+
if (b != this.aab) {
|
|
16726
|
+
this.xm("ColumnOptionsGroupHeaderBackground", b, this.aab);
|
|
16687
16727
|
}
|
|
16688
16728
|
},
|
|
16689
16729
|
enumerable: false,
|
|
@@ -16691,13 +16731,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
16691
16731
|
});
|
|
16692
16732
|
Object.defineProperty(DataGrid.prototype, "columnOptionsGroupHeaderTextColor", {
|
|
16693
16733
|
get: function () {
|
|
16694
|
-
return this.
|
|
16734
|
+
return this.aac;
|
|
16695
16735
|
},
|
|
16696
16736
|
set: function (a) {
|
|
16697
|
-
var b = this.
|
|
16698
|
-
this.
|
|
16699
|
-
if (b != this.
|
|
16700
|
-
this.
|
|
16737
|
+
var b = this.aac;
|
|
16738
|
+
this.aac = a;
|
|
16739
|
+
if (b != this.aac) {
|
|
16740
|
+
this.xm("ColumnOptionsGroupHeaderTextColor", b, this.aac);
|
|
16701
16741
|
}
|
|
16702
16742
|
},
|
|
16703
16743
|
enumerable: false,
|
|
@@ -16705,13 +16745,13 @@ export var DataGrid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
16705
16745
|
});
|
|
16706
16746
|
Object.defineProperty(DataGrid.prototype, "columnOptionsAccentColor", {
|
|
16707
16747
|
get: function () {
|
|
16708
|
-
return this.
|
|
16748
|
+
return this.z9;
|
|
16709
16749
|
},
|
|
16710
16750
|
set: function (a) {
|
|
16711
|
-
var b = this.
|
|
16712
|
-
this.
|
|
16713
|
-
if (b != this.
|
|
16714
|
-
this.
|
|
16751
|
+
var b = this.z9;
|
|
16752
|
+
this.z9 = a;
|
|
16753
|
+
if (b != this.z9) {
|
|
16754
|
+
this.xm("ColumnOptionsAccentColor", b, this.z9);
|
|
16715
16755
|
}
|
|
16716
16756
|
},
|
|
16717
16757
|
enumerable: false,
|
|
@@ -17167,7 +17207,7 @@ export var GridAnimationManager = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
17167
17207
|
i.hw = 5;
|
|
17168
17208
|
c.a = 5;
|
|
17169
17209
|
a.model.b2 = false;
|
|
17170
|
-
a.
|
|
17210
|
+
a.ye();
|
|
17171
17211
|
a.wz(i);
|
|
17172
17212
|
_this.w(f);
|
|
17173
17213
|
});
|
|
@@ -17477,7 +17517,7 @@ export var GridAnimationManager = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
17477
17517
|
f.hw = 5;
|
|
17478
17518
|
c.a = 5;
|
|
17479
17519
|
a.model.b2 = false;
|
|
17480
|
-
a.
|
|
17520
|
+
a.ye();
|
|
17481
17521
|
if (_this.k.containsKey(c.o)) {
|
|
17482
17522
|
var s = _this.k.item(c.o);
|
|
17483
17523
|
if (s.count == 0) {
|
|
@@ -17508,7 +17548,7 @@ export var GridAnimationManager = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
17508
17548
|
b.a = 3;
|
|
17509
17549
|
a.columns.remove(g);
|
|
17510
17550
|
a.model.b2 = false;
|
|
17511
|
-
a.
|
|
17551
|
+
a.ye();
|
|
17512
17552
|
});
|
|
17513
17553
|
n.effectsCanceled = delegateCombine(n.effectsCanceled, function (o, p) { return a.model.b2 = false; });
|
|
17514
17554
|
var o = a.model.h(b.o);
|
|
@@ -17967,7 +18007,7 @@ export var GridAnimationManager = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
17967
18007
|
a.model.dk(n._inner[o_1]);
|
|
17968
18008
|
}
|
|
17969
18009
|
h.hw = 5;
|
|
17970
|
-
a.
|
|
18010
|
+
a.ye();
|
|
17971
18011
|
a.wv(h);
|
|
17972
18012
|
_this.w(e);
|
|
17973
18013
|
});
|
|
@@ -18222,7 +18262,7 @@ export var GridAnimationManager = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
18222
18262
|
a.externalGrid.removeExternalColumn(i.externalObject);
|
|
18223
18263
|
}
|
|
18224
18264
|
a.model.b2 = false;
|
|
18225
|
-
a.
|
|
18265
|
+
a.ye();
|
|
18226
18266
|
a.wr(i);
|
|
18227
18267
|
_this.w(f);
|
|
18228
18268
|
});
|
|
@@ -18779,7 +18819,7 @@ export var GridAnimationManager = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
18779
18819
|
if (l.bq(n)) {
|
|
18780
18820
|
var o = a.e8.resolveValueForPath(a, l.l);
|
|
18781
18821
|
var p = a.rh(l.l, a, o, m);
|
|
18782
|
-
a.
|
|
18822
|
+
a.xh(l, o, a.e8.resolveRow(m), p);
|
|
18783
18823
|
}
|
|
18784
18824
|
}
|
|
18785
18825
|
return l.kx;
|
|
@@ -18823,7 +18863,7 @@ export var GridAnimationManager = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
18823
18863
|
k.g = 0;
|
|
18824
18864
|
k.h = 0;
|
|
18825
18865
|
k.j = 0;
|
|
18826
|
-
a.
|
|
18866
|
+
a.ye();
|
|
18827
18867
|
return k.g;
|
|
18828
18868
|
};
|
|
18829
18869
|
a.dx.u(b, h);
|
|
@@ -18901,7 +18941,7 @@ export var GridAnimationManager = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
18901
18941
|
}
|
|
18902
18942
|
if (p.bq(a.e8.getRowType(p.l.x))) {
|
|
18903
18943
|
var t = a.rh(p.l, a, r, q);
|
|
18904
|
-
a.
|
|
18944
|
+
a.xh(p, r, a.e8.resolveRow(q), t);
|
|
18905
18945
|
}
|
|
18906
18946
|
if (s) {
|
|
18907
18947
|
p.c7 = 1;
|
|
@@ -18909,7 +18949,7 @@ export var GridAnimationManager = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
18909
18949
|
}
|
|
18910
18950
|
else if (p.l.am) {
|
|
18911
18951
|
var u = a.rh(p.l, a, null, -1);
|
|
18912
|
-
a.
|
|
18952
|
+
a.xh(p, null, null, u);
|
|
18913
18953
|
}
|
|
18914
18954
|
return p.c7;
|
|
18915
18955
|
};
|
|
@@ -18978,7 +19018,7 @@ export var GridAnimationManager = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
18978
19018
|
}
|
|
18979
19019
|
if (o.bq(a.e8.getRowType(o.l.x))) {
|
|
18980
19020
|
var s = a.rh(o.l, a, q, p);
|
|
18981
|
-
a.
|
|
19021
|
+
a.xh(o, q, a.e8.resolveRow(p), s);
|
|
18982
19022
|
}
|
|
18983
19023
|
if (r) {
|
|
18984
19024
|
o.c7 = 1;
|
|
@@ -18986,7 +19026,7 @@ export var GridAnimationManager = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
18986
19026
|
}
|
|
18987
19027
|
else if (o.l.am) {
|
|
18988
19028
|
var t = a.rh(o.l, a, null, -1);
|
|
18989
|
-
a.
|
|
19029
|
+
a.xh(o, null, null, t);
|
|
18990
19030
|
}
|
|
18991
19031
|
return o.c7;
|
|
18992
19032
|
};
|
|
@@ -20103,7 +20143,7 @@ export var DefinitionBase = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
20103
20143
|
}
|
|
20104
20144
|
}
|
|
20105
20145
|
if (c) {
|
|
20106
|
-
this.grid.
|
|
20146
|
+
this.grid.ya();
|
|
20107
20147
|
}
|
|
20108
20148
|
};
|
|
20109
20149
|
DefinitionBase.prototype.fe = function () {
|
|
@@ -22519,7 +22559,7 @@ export var DataGridColumn = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
22519
22559
|
DataGridColumn.prototype.e2 = function (a) {
|
|
22520
22560
|
_super.prototype.e2.call(this, a);
|
|
22521
22561
|
if (this.grid != null) {
|
|
22522
|
-
this.grid.
|
|
22562
|
+
this.grid.yt(a, this);
|
|
22523
22563
|
}
|
|
22524
22564
|
};
|
|
22525
22565
|
DataGridColumn.prototype.ct = function () {
|
|
@@ -25488,7 +25528,7 @@ export var SelectionManager = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
25488
25528
|
if (f >= 0) {
|
|
25489
25529
|
if (this.a.selectedItems.ae._inner[f] == null) {
|
|
25490
25530
|
var g = this.a.e8.resolveValueForRow(a.l);
|
|
25491
|
-
this.a.
|
|
25531
|
+
this.a.x0(f, g, c);
|
|
25492
25532
|
}
|
|
25493
25533
|
}
|
|
25494
25534
|
}
|
|
@@ -25695,7 +25735,7 @@ export var SelectionManager = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
25695
25735
|
}
|
|
25696
25736
|
}
|
|
25697
25737
|
if (d) {
|
|
25698
|
-
this.a.
|
|
25738
|
+
this.a.xt(c, a);
|
|
25699
25739
|
}
|
|
25700
25740
|
};
|
|
25701
25741
|
SelectionManager.prototype.az = function (a, b, c, d) {
|
|
@@ -25715,7 +25755,7 @@ export var SelectionManager = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
25715
25755
|
}
|
|
25716
25756
|
}
|
|
25717
25757
|
if (d) {
|
|
25718
|
-
this.a.
|
|
25758
|
+
this.a.xu(c, a);
|
|
25719
25759
|
}
|
|
25720
25760
|
};
|
|
25721
25761
|
SelectionManager.prototype.ay = function (a, b, c) {
|
|
@@ -30919,7 +30959,7 @@ export var SectionHeader = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
30919
30959
|
}
|
|
30920
30960
|
}
|
|
30921
30961
|
if (!o.o) {
|
|
30922
|
-
b.
|
|
30962
|
+
b.yv(o);
|
|
30923
30963
|
}
|
|
30924
30964
|
if (k > 0) {
|
|
30925
30965
|
g += ", ";
|
|
@@ -33600,7 +33640,7 @@ export var GridLayerController = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
33600
33640
|
j.a6 = p;
|
|
33601
33641
|
j.be = q;
|
|
33602
33642
|
j.ge = b.n5(j.l);
|
|
33603
|
-
b.
|
|
33643
|
+
b.xi(j, k, b.e8.resolveRow(m));
|
|
33604
33644
|
if (l) {
|
|
33605
33645
|
j.c7 = 1;
|
|
33606
33646
|
}
|
|
@@ -33800,7 +33840,7 @@ export var VisibilityEngine = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
33800
33840
|
b.db = f.m;
|
|
33801
33841
|
b.c9 = f.l;
|
|
33802
33842
|
b.dc = f.n;
|
|
33803
|
-
a.
|
|
33843
|
+
a.x4();
|
|
33804
33844
|
this.d = f.b;
|
|
33805
33845
|
this.c = f.a;
|
|
33806
33846
|
var j = a.d2;
|