ag-grid-enterprise 32.3.2 → 32.3.4
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/dist/ag-grid-enterprise.js +124 -88
- package/dist/ag-grid-enterprise.min.js +1 -1
- package/dist/ag-grid-enterprise.min.noStyle.js +1 -1
- package/dist/ag-grid-enterprise.noStyle.js +124 -88
- package/dist/package/main.cjs.js +24 -22
- package/dist/package/main.cjs.min.js +16 -16
- package/dist/package/main.esm.min.mjs +16 -16
- package/dist/package/main.esm.mjs +24 -22
- package/dist/package/package.json +23 -23
- package/dist/types/advanced-filter/version.d.ts +1 -1
- package/dist/types/charts/version.d.ts +1 -1
- package/dist/types/clipboard/version.d.ts +1 -1
- package/dist/types/column-tool-panel/version.d.ts +1 -1
- package/dist/types/enterprise-core/version.d.ts +1 -1
- package/dist/types/excel-export/version.d.ts +1 -1
- package/dist/types/filter-tool-panel/version.d.ts +1 -1
- package/dist/types/master-detail/version.d.ts +1 -1
- package/dist/types/menu/version.d.ts +1 -1
- package/dist/types/multi-filter/version.d.ts +1 -1
- package/dist/types/range-selection/version.d.ts +1 -1
- package/dist/types/rich-select/version.d.ts +1 -1
- package/dist/types/row-grouping/version.d.ts +1 -1
- package/dist/types/server-side-row-model/version.d.ts +1 -1
- package/dist/types/set-filter/version.d.ts +1 -1
- package/dist/types/side-bar/version.d.ts +1 -1
- package/dist/types/sparklines/version.d.ts +1 -1
- package/dist/types/status-bar/version.d.ts +1 -1
- package/dist/types/viewport-row-model/version.d.ts +1 -1
- package/package.json +23 -23
|
@@ -1929,7 +1929,7 @@ var SortStage = class extends import_core8.BeanStub {
|
|
|
1929
1929
|
};
|
|
1930
1930
|
|
|
1931
1931
|
// community-modules/client-side-row-model/src/version.ts
|
|
1932
|
-
var VERSION = "32.3.
|
|
1932
|
+
var VERSION = "32.3.4";
|
|
1933
1933
|
|
|
1934
1934
|
// community-modules/client-side-row-model/src/clientSideRowModelModule.ts
|
|
1935
1935
|
var ClientSideRowModelCoreModule = (0, import_core9._defineModule)({
|
|
@@ -9476,16 +9476,16 @@ function _ensureDomOrder(eContainer, eChild, eChildBefore) {
|
|
|
9476
9476
|
if (eChildBefore && eChildBefore.nextSibling === eChild) {
|
|
9477
9477
|
return;
|
|
9478
9478
|
}
|
|
9479
|
-
if (
|
|
9479
|
+
if (!eContainer.firstChild) {
|
|
9480
|
+
eContainer.appendChild(eChild);
|
|
9481
|
+
} else if (eChildBefore) {
|
|
9480
9482
|
if (eChildBefore.nextSibling) {
|
|
9481
9483
|
eContainer.insertBefore(eChild, eChildBefore.nextSibling);
|
|
9482
9484
|
} else {
|
|
9483
9485
|
eContainer.appendChild(eChild);
|
|
9484
9486
|
}
|
|
9485
|
-
} else {
|
|
9486
|
-
|
|
9487
|
-
eContainer.insertAdjacentElement("afterbegin", eChild);
|
|
9488
|
-
}
|
|
9487
|
+
} else if (eContainer.firstChild && eContainer.firstChild !== eChild) {
|
|
9488
|
+
eContainer.insertAdjacentElement("afterbegin", eChild);
|
|
9489
9489
|
}
|
|
9490
9490
|
}
|
|
9491
9491
|
function _setDomChildOrder(eContainer, orderedChildren) {
|
|
@@ -9497,17 +9497,6 @@ function _setDomChildOrder(eContainer, orderedChildren) {
|
|
|
9497
9497
|
}
|
|
9498
9498
|
}
|
|
9499
9499
|
}
|
|
9500
|
-
function _insertWithDomOrder(eContainer, eToInsert, eChildBefore) {
|
|
9501
|
-
if (eChildBefore) {
|
|
9502
|
-
eChildBefore.insertAdjacentElement("afterend", eToInsert);
|
|
9503
|
-
} else {
|
|
9504
|
-
if (eContainer.firstChild) {
|
|
9505
|
-
eContainer.insertAdjacentElement("afterbegin", eToInsert);
|
|
9506
|
-
} else {
|
|
9507
|
-
eContainer.appendChild(eToInsert);
|
|
9508
|
-
}
|
|
9509
|
-
}
|
|
9510
|
-
}
|
|
9511
9500
|
function _addStylesToElement(eElement, styles) {
|
|
9512
9501
|
if (!styles) {
|
|
9513
9502
|
return;
|
|
@@ -19864,7 +19853,7 @@ function _defineModule(definition) {
|
|
|
19864
19853
|
}
|
|
19865
19854
|
|
|
19866
19855
|
// community-modules/core/src/version.ts
|
|
19867
|
-
var VERSION = "32.3.
|
|
19856
|
+
var VERSION = "32.3.4";
|
|
19868
19857
|
|
|
19869
19858
|
// community-modules/core/src/filter/columnFilterApi.ts
|
|
19870
19859
|
function isColumnFilterPresent(beans) {
|
|
@@ -28507,31 +28496,45 @@ var _RowCtrl = class _RowCtrl extends BeanStub {
|
|
|
28507
28496
|
list: [],
|
|
28508
28497
|
map: {}
|
|
28509
28498
|
};
|
|
28510
|
-
const addCell = (colInstanceId, cellCtrl) => {
|
|
28511
|
-
|
|
28499
|
+
const addCell = (colInstanceId, cellCtrl, index) => {
|
|
28500
|
+
if (index != null) {
|
|
28501
|
+
res.list.splice(index, 0, cellCtrl);
|
|
28502
|
+
} else {
|
|
28503
|
+
res.list.push(cellCtrl);
|
|
28504
|
+
}
|
|
28512
28505
|
res.map[colInstanceId] = cellCtrl;
|
|
28513
28506
|
};
|
|
28514
|
-
|
|
28507
|
+
const colsFromPrev = [];
|
|
28508
|
+
for (const col of cols) {
|
|
28515
28509
|
const colInstanceId = col.getInstanceId();
|
|
28516
28510
|
let cellCtrl = prev.map[colInstanceId];
|
|
28517
28511
|
if (!cellCtrl) {
|
|
28518
28512
|
cellCtrl = new CellCtrl(col, this.rowNode, this.beans, this);
|
|
28519
28513
|
}
|
|
28520
28514
|
addCell(colInstanceId, cellCtrl);
|
|
28521
|
-
}
|
|
28522
|
-
prev.list
|
|
28515
|
+
}
|
|
28516
|
+
for (const prevCellCtrl of prev.list) {
|
|
28523
28517
|
const colInstanceId = prevCellCtrl.getColumn().getInstanceId();
|
|
28524
28518
|
const cellInResult = res.map[colInstanceId] != null;
|
|
28525
28519
|
if (cellInResult) {
|
|
28526
|
-
|
|
28520
|
+
continue;
|
|
28527
28521
|
}
|
|
28528
28522
|
const keepCell = !this.isCellEligibleToBeRemoved(prevCellCtrl, pinned);
|
|
28529
28523
|
if (keepCell) {
|
|
28530
|
-
|
|
28531
|
-
|
|
28524
|
+
colsFromPrev.push([colInstanceId, prevCellCtrl]);
|
|
28525
|
+
} else {
|
|
28526
|
+
prevCellCtrl.destroy();
|
|
28532
28527
|
}
|
|
28533
|
-
|
|
28534
|
-
|
|
28528
|
+
}
|
|
28529
|
+
if (colsFromPrev.length) {
|
|
28530
|
+
for (const [colInstanceId, cellCtrl] of colsFromPrev) {
|
|
28531
|
+
const index = res.list.findIndex(
|
|
28532
|
+
(ctrl) => ctrl.getColumn().getLeft() > cellCtrl.getColumn().getLeft()
|
|
28533
|
+
);
|
|
28534
|
+
const normalisedIndex = index === -1 ? void 0 : Math.max(index - 1, 0);
|
|
28535
|
+
addCell(colInstanceId, cellCtrl, normalisedIndex);
|
|
28536
|
+
}
|
|
28537
|
+
}
|
|
28535
28538
|
return res;
|
|
28536
28539
|
}
|
|
28537
28540
|
updateColumnListsImpl(useFlushSync) {
|
|
@@ -30970,7 +30973,7 @@ var RowComp = class extends Component {
|
|
|
30970
30973
|
this.rowCtrl = ctrl;
|
|
30971
30974
|
const rowDiv = document.createElement("div");
|
|
30972
30975
|
rowDiv.setAttribute("comp-id", `${this.getCompId()}`);
|
|
30973
|
-
|
|
30976
|
+
this.setInitialStyle(rowDiv, containerType);
|
|
30974
30977
|
this.setTemplateFromElement(rowDiv);
|
|
30975
30978
|
const eGui = this.getGui();
|
|
30976
30979
|
const style = eGui.style;
|
|
@@ -30995,9 +30998,16 @@ var RowComp = class extends Component {
|
|
|
30995
30998
|
ctrl.unsetComp(containerType);
|
|
30996
30999
|
});
|
|
30997
31000
|
}
|
|
30998
|
-
|
|
31001
|
+
setInitialStyle(container, containerType) {
|
|
30999
31002
|
const transform = this.rowCtrl.getInitialTransform(containerType);
|
|
31000
|
-
|
|
31003
|
+
if (transform) {
|
|
31004
|
+
container.style.setProperty("transform", transform);
|
|
31005
|
+
} else {
|
|
31006
|
+
const top = this.rowCtrl.getInitialRowTop(containerType);
|
|
31007
|
+
if (top) {
|
|
31008
|
+
container.style.setProperty("top", top);
|
|
31009
|
+
}
|
|
31010
|
+
}
|
|
31001
31011
|
}
|
|
31002
31012
|
showFullWidth(compDetails) {
|
|
31003
31013
|
const callback = (cellRenderer) => {
|
|
@@ -31094,11 +31104,11 @@ function templateFactory(options) {
|
|
|
31094
31104
|
if (options.type === "center") {
|
|
31095
31105
|
res = /* html */
|
|
31096
31106
|
`<div class="${options.viewport}" data-ref="eViewport" role="presentation">
|
|
31097
|
-
<div class="${options.container}" data-ref="eContainer"></div>
|
|
31107
|
+
<div class="${options.container}" data-ref="eContainer" role="rowgroup"></div>
|
|
31098
31108
|
</div>`;
|
|
31099
31109
|
} else {
|
|
31100
31110
|
res = /* html */
|
|
31101
|
-
`<div class="${options.container}" data-ref="eContainer"></div>`;
|
|
31111
|
+
`<div class="${options.container}" data-ref="eContainer" role="rowgroup"></div>`;
|
|
31102
31112
|
}
|
|
31103
31113
|
return res;
|
|
31104
31114
|
}
|
|
@@ -31132,47 +31142,59 @@ var RowContainerComp = class extends Component {
|
|
|
31132
31142
|
destroy() {
|
|
31133
31143
|
this.setRowCtrls([]);
|
|
31134
31144
|
super.destroy();
|
|
31145
|
+
this.lastPlacedElement = null;
|
|
31135
31146
|
}
|
|
31136
31147
|
setRowCtrls(rowCtrls) {
|
|
31137
|
-
const
|
|
31148
|
+
const { rowComps, beans, options } = this;
|
|
31149
|
+
const oldRows = { ...rowComps };
|
|
31138
31150
|
this.rowComps = {};
|
|
31139
31151
|
this.lastPlacedElement = null;
|
|
31140
|
-
const
|
|
31141
|
-
|
|
31152
|
+
const orderedRows = [];
|
|
31153
|
+
for (const rowCtrl of rowCtrls) {
|
|
31154
|
+
const instanceId = rowCtrl.instanceId;
|
|
31142
31155
|
const existingRowComp = oldRows[instanceId];
|
|
31156
|
+
let rowComp;
|
|
31143
31157
|
if (existingRowComp) {
|
|
31144
|
-
|
|
31158
|
+
rowComp = existingRowComp;
|
|
31145
31159
|
delete oldRows[instanceId];
|
|
31146
|
-
this.ensureDomOrder(existingRowComp.getGui());
|
|
31147
31160
|
} else {
|
|
31148
|
-
if (!
|
|
31149
|
-
|
|
31161
|
+
if (!rowCtrl.getRowNode().displayed) {
|
|
31162
|
+
continue;
|
|
31150
31163
|
}
|
|
31151
|
-
|
|
31152
|
-
this.rowComps[instanceId] = rowComp;
|
|
31153
|
-
this.appendRow(rowComp.getGui());
|
|
31164
|
+
rowComp = new RowComp(rowCtrl, beans, options.type);
|
|
31154
31165
|
}
|
|
31155
|
-
|
|
31156
|
-
|
|
31157
|
-
|
|
31158
|
-
|
|
31159
|
-
|
|
31160
|
-
});
|
|
31161
|
-
_setAriaRole(this.eContainer, "rowgroup");
|
|
31166
|
+
this.rowComps[instanceId] = rowComp;
|
|
31167
|
+
orderedRows.push([rowComp, !existingRowComp]);
|
|
31168
|
+
}
|
|
31169
|
+
this.removeOldRows(Object.values(oldRows));
|
|
31170
|
+
this.addRowNodes(orderedRows);
|
|
31162
31171
|
}
|
|
31163
|
-
|
|
31164
|
-
|
|
31165
|
-
|
|
31166
|
-
|
|
31167
|
-
|
|
31172
|
+
addRowNodes(rows) {
|
|
31173
|
+
const { domOrder, eContainer } = this;
|
|
31174
|
+
for (const [rowComp, isNew] of rows) {
|
|
31175
|
+
const eGui = rowComp.getGui();
|
|
31176
|
+
if (!domOrder) {
|
|
31177
|
+
if (isNew) {
|
|
31178
|
+
eContainer.appendChild(eGui);
|
|
31179
|
+
}
|
|
31180
|
+
} else {
|
|
31181
|
+
this.ensureDomOrder(eGui);
|
|
31182
|
+
}
|
|
31183
|
+
}
|
|
31184
|
+
}
|
|
31185
|
+
removeOldRows(rowComps) {
|
|
31186
|
+
const { eContainer } = this;
|
|
31187
|
+
for (const oldRowComp of rowComps) {
|
|
31188
|
+
eContainer.removeChild(oldRowComp.getGui());
|
|
31189
|
+
oldRowComp.destroy();
|
|
31168
31190
|
}
|
|
31169
|
-
this.lastPlacedElement = element;
|
|
31170
31191
|
}
|
|
31171
31192
|
ensureDomOrder(eRow) {
|
|
31172
|
-
if (this.domOrder) {
|
|
31173
|
-
|
|
31174
|
-
this.lastPlacedElement = eRow;
|
|
31193
|
+
if (!this.domOrder) {
|
|
31194
|
+
return;
|
|
31175
31195
|
}
|
|
31196
|
+
_ensureDomOrder(this.eContainer, eRow, this.lastPlacedElement);
|
|
31197
|
+
this.lastPlacedElement = eRow;
|
|
31176
31198
|
}
|
|
31177
31199
|
};
|
|
31178
31200
|
var RowContainerSelector = {
|
|
@@ -47925,7 +47947,7 @@ var GridSerializer = class extends import_core6.BeanStub {
|
|
|
47925
47947
|
}
|
|
47926
47948
|
if (skipRowGroups && !isTreeData) {
|
|
47927
47949
|
columnsToExport = columnsToExport.filter(
|
|
47928
|
-
(column) => (0, import_core6.isColumnGroupAutoCol)(column)
|
|
47950
|
+
(column) => !(0, import_core6.isColumnGroupAutoCol)(column) && !(0, import_core6.isColumnControlsCol)(column)
|
|
47929
47951
|
);
|
|
47930
47952
|
}
|
|
47931
47953
|
return columnsToExport;
|
|
@@ -47993,7 +48015,7 @@ var GridSerializer = class extends import_core6.BeanStub {
|
|
|
47993
48015
|
};
|
|
47994
48016
|
|
|
47995
48017
|
// community-modules/csv-export/src/version.ts
|
|
47996
|
-
var VERSION = "32.3.
|
|
48018
|
+
var VERSION = "32.3.4";
|
|
47997
48019
|
|
|
47998
48020
|
// community-modules/csv-export/src/csvExportModule.ts
|
|
47999
48021
|
var CsvExportCoreModule = (0, import_core7._defineModule)({
|
|
@@ -49250,7 +49272,7 @@ function getInfiniteRowCount(beans) {
|
|
|
49250
49272
|
}
|
|
49251
49273
|
|
|
49252
49274
|
// community-modules/infinite-row-model/src/version.ts
|
|
49253
|
-
var VERSION = "32.3.
|
|
49275
|
+
var VERSION = "32.3.4";
|
|
49254
49276
|
|
|
49255
49277
|
// community-modules/infinite-row-model/src/infiniteRowModelModule.ts
|
|
49256
49278
|
var InfiniteRowModelCoreModule = (0, import_core4._defineModule)({
|
|
@@ -54711,7 +54733,7 @@ var AdvancedFilterService = class extends import_core24.BeanStub {
|
|
|
54711
54733
|
};
|
|
54712
54734
|
|
|
54713
54735
|
// enterprise-modules/advanced-filter/src/version.ts
|
|
54714
|
-
var VERSION = "32.3.
|
|
54736
|
+
var VERSION = "32.3.4";
|
|
54715
54737
|
|
|
54716
54738
|
// enterprise-modules/advanced-filter/src/advancedFilterModule.ts
|
|
54717
54739
|
var AdvancedFilterCoreModule = (0, import_core25._defineModule)({
|
|
@@ -56658,7 +56680,7 @@ var import_core101 = __webpack_require__(3423);
|
|
|
56658
56680
|
var import_ag_charts_community33 = __webpack_require__(4933);
|
|
56659
56681
|
|
|
56660
56682
|
// enterprise-modules/charts/src/version.ts
|
|
56661
|
-
var VERSION = "32.3.
|
|
56683
|
+
var VERSION = "32.3.4";
|
|
56662
56684
|
|
|
56663
56685
|
// enterprise-modules/charts/src/charts/chartComp/gridChartComp.ts
|
|
56664
56686
|
var import_core99 = __webpack_require__(3423);
|
|
@@ -68168,7 +68190,7 @@ ${apiError("writeText")}`);
|
|
|
68168
68190
|
};
|
|
68169
68191
|
|
|
68170
68192
|
// enterprise-modules/clipboard/src/version.ts
|
|
68171
|
-
var VERSION = "32.3.
|
|
68193
|
+
var VERSION = "32.3.4";
|
|
68172
68194
|
|
|
68173
68195
|
// enterprise-modules/clipboard/src/clipboardModule.ts
|
|
68174
68196
|
var ClipboardCoreModule = (0, import_core2._defineModule)({
|
|
@@ -70152,7 +70174,7 @@ var ModelItemUtils = class extends import_core14.BeanStub {
|
|
|
70152
70174
|
};
|
|
70153
70175
|
|
|
70154
70176
|
// enterprise-modules/column-tool-panel/src/version.ts
|
|
70155
|
-
var VERSION = "32.3.
|
|
70177
|
+
var VERSION = "32.3.4";
|
|
70156
70178
|
|
|
70157
70179
|
// enterprise-modules/column-tool-panel/src/columnsToolPanelModule.ts
|
|
70158
70180
|
var ColumnsToolPanelModule = (0, import_core15._defineModule)({
|
|
@@ -70710,7 +70732,7 @@ var _LicenseManager = class _LicenseManager {
|
|
|
70710
70732
|
this.watermarkMessage = "License Expired";
|
|
70711
70733
|
}
|
|
70712
70734
|
};
|
|
70713
|
-
_LicenseManager.RELEASE_INFORMATION = "
|
|
70735
|
+
_LicenseManager.RELEASE_INFORMATION = "MTczMTQzMDQwMzMxOQ==";
|
|
70714
70736
|
var LicenseManager = _LicenseManager;
|
|
70715
70737
|
|
|
70716
70738
|
// enterprise-modules/core/src/license/watermark.ts
|
|
@@ -70780,7 +70802,7 @@ var GridLicenseManager = class extends import_core3.BeanStub {
|
|
|
70780
70802
|
};
|
|
70781
70803
|
|
|
70782
70804
|
// enterprise-modules/core/src/version.ts
|
|
70783
|
-
var VERSION = "32.3.
|
|
70805
|
+
var VERSION = "32.3.4";
|
|
70784
70806
|
|
|
70785
70807
|
// enterprise-modules/core/src/widgets/agMenuItemRenderer.ts
|
|
70786
70808
|
var import_core4 = __webpack_require__(3423);
|
|
@@ -79244,7 +79266,7 @@ function exportMultipleSheetsAsExcel2(beans, params) {
|
|
|
79244
79266
|
}
|
|
79245
79267
|
|
|
79246
79268
|
// enterprise-modules/excel-export/src/version.ts
|
|
79247
|
-
var VERSION = "32.3.
|
|
79269
|
+
var VERSION = "32.3.4";
|
|
79248
79270
|
|
|
79249
79271
|
// enterprise-modules/excel-export/src/excelExportModule.ts
|
|
79250
79272
|
var ExcelExportCoreModule = (0, import_core10._defineModule)({
|
|
@@ -80261,7 +80283,7 @@ var FiltersToolPanel = class extends import_core6.Component {
|
|
|
80261
80283
|
};
|
|
80262
80284
|
|
|
80263
80285
|
// enterprise-modules/filter-tool-panel/src/version.ts
|
|
80264
|
-
var VERSION = "32.3.
|
|
80286
|
+
var VERSION = "32.3.4";
|
|
80265
80287
|
|
|
80266
80288
|
// enterprise-modules/filter-tool-panel/src/filtersToolPanelModule.ts
|
|
80267
80289
|
var FiltersToolPanelModule = (0, import_core7._defineModule)({
|
|
@@ -80603,7 +80625,7 @@ function forEachDetailGridInfo(beans, callback) {
|
|
|
80603
80625
|
}
|
|
80604
80626
|
|
|
80605
80627
|
// enterprise-modules/master-detail/src/version.ts
|
|
80606
|
-
var VERSION = "32.3.
|
|
80628
|
+
var VERSION = "32.3.4";
|
|
80607
80629
|
|
|
80608
80630
|
// enterprise-modules/master-detail/src/masterDetailModule.ts
|
|
80609
80631
|
var MasterDetailCoreModule = (0, import_core4._defineModule)({
|
|
@@ -82498,7 +82520,7 @@ var MenuUtils = class extends import_core11.BeanStub {
|
|
|
82498
82520
|
};
|
|
82499
82521
|
|
|
82500
82522
|
// enterprise-modules/menu/src/version.ts
|
|
82501
|
-
var VERSION = "32.3.
|
|
82523
|
+
var VERSION = "32.3.4";
|
|
82502
82524
|
|
|
82503
82525
|
// enterprise-modules/menu/src/menuModule.ts
|
|
82504
82526
|
var MenuCoreModule = (0, import_core12._defineModule)({
|
|
@@ -83121,7 +83143,7 @@ var MultiFloatingFilterComp = class extends import_core3.Component {
|
|
|
83121
83143
|
};
|
|
83122
83144
|
|
|
83123
83145
|
// enterprise-modules/multi-filter/src/version.ts
|
|
83124
|
-
var VERSION = "32.3.
|
|
83146
|
+
var VERSION = "32.3.4";
|
|
83125
83147
|
|
|
83126
83148
|
// enterprise-modules/multi-filter/src/multiFilterModule.ts
|
|
83127
83149
|
var MultiFilterCoreModule = (0, import_core4._defineModule)({
|
|
@@ -84671,7 +84693,7 @@ var SelectionHandleFactory = class extends import_core5.BeanStub {
|
|
|
84671
84693
|
};
|
|
84672
84694
|
|
|
84673
84695
|
// enterprise-modules/range-selection/src/version.ts
|
|
84674
|
-
var VERSION = "32.3.
|
|
84696
|
+
var VERSION = "32.3.4";
|
|
84675
84697
|
|
|
84676
84698
|
// enterprise-modules/range-selection/src/rangeSelectionModule.ts
|
|
84677
84699
|
var RangeSelectionCoreModule = (0, import_core6._defineModule)({
|
|
@@ -84886,7 +84908,7 @@ var RichSelectCellEditor = class extends import_core.PopupComponent {
|
|
|
84886
84908
|
};
|
|
84887
84909
|
|
|
84888
84910
|
// enterprise-modules/rich-select/src/version.ts
|
|
84889
|
-
var VERSION = "32.3.
|
|
84911
|
+
var VERSION = "32.3.4";
|
|
84890
84912
|
|
|
84891
84913
|
// enterprise-modules/rich-select/src/richSelectModule.ts
|
|
84892
84914
|
var RichSelectModule = (0, import_core3._defineModule)({
|
|
@@ -88099,8 +88121,10 @@ var PivotColDefService = class extends import_core19.BeanStub {
|
|
|
88099
88121
|
def.children.forEach((grp) => {
|
|
88100
88122
|
recursivelyAddSubTotals(grp, currentPivotColumnDefs, childAcc);
|
|
88101
88123
|
});
|
|
88124
|
+
const valueCols = this.funcColsService.getValueColumns();
|
|
88102
88125
|
const leafGroup = !def.children.some((child) => child.children);
|
|
88103
|
-
this.
|
|
88126
|
+
const hasCollapsedLeafGroup = leafGroup && valueCols.length === 1 && this.gos.get("removePivotHeaderRowWhenSingleValueColumn");
|
|
88127
|
+
valueCols.forEach((valueColumn) => {
|
|
88104
88128
|
const columnName = this.columnNameService.getDisplayNameForColumn(
|
|
88105
88129
|
valueColumn,
|
|
88106
88130
|
"header"
|
|
@@ -88109,7 +88133,7 @@ var PivotColDefService = class extends import_core19.BeanStub {
|
|
|
88109
88133
|
totalColDef.pivotTotalColumnIds = childAcc.get(valueColumn.getColId());
|
|
88110
88134
|
totalColDef.columnGroupShow = !isSuppressExpand ? "closed" : "open";
|
|
88111
88135
|
totalColDef.aggFunc = valueColumn.getAggFunc();
|
|
88112
|
-
if (!leafGroup) {
|
|
88136
|
+
if (!leafGroup || hasCollapsedLeafGroup) {
|
|
88113
88137
|
const children = def.children;
|
|
88114
88138
|
children.push(totalColDef);
|
|
88115
88139
|
currentPivotColumnDefs.push(totalColDef);
|
|
@@ -88640,7 +88664,7 @@ var ShowRowGroupColsService = class extends import_core21.BeanStub {
|
|
|
88640
88664
|
};
|
|
88641
88665
|
|
|
88642
88666
|
// enterprise-modules/row-grouping/src/version.ts
|
|
88643
|
-
var VERSION = "32.3.
|
|
88667
|
+
var VERSION = "32.3.4";
|
|
88644
88668
|
|
|
88645
88669
|
// enterprise-modules/row-grouping/src/rowGroupingModule.ts
|
|
88646
88670
|
var RowGroupingCoreModule = (0, import_core22._defineModule)({
|
|
@@ -93452,7 +93476,7 @@ var TransactionManager = class extends import_core19.BeanStub {
|
|
|
93452
93476
|
};
|
|
93453
93477
|
|
|
93454
93478
|
// enterprise-modules/server-side-row-model/src/version.ts
|
|
93455
|
-
var VERSION = "32.3.
|
|
93479
|
+
var VERSION = "32.3.4";
|
|
93456
93480
|
|
|
93457
93481
|
// enterprise-modules/server-side-row-model/src/serverSideRowModelModule.ts
|
|
93458
93482
|
var ServerSideRowModelCoreModule = (0, import_core20._defineModule)({
|
|
@@ -96053,7 +96077,7 @@ var SetFloatingFilterComp = class extends import_core8.Component {
|
|
|
96053
96077
|
};
|
|
96054
96078
|
|
|
96055
96079
|
// enterprise-modules/set-filter/src/version.ts
|
|
96056
|
-
var VERSION = "32.3.
|
|
96080
|
+
var VERSION = "32.3.4";
|
|
96057
96081
|
|
|
96058
96082
|
// enterprise-modules/set-filter/src/setFilterModule.ts
|
|
96059
96083
|
var SetFilterCoreModule = (0, import_core9._defineModule)({
|
|
@@ -97020,7 +97044,7 @@ var SideBarService = class extends import_core10.BeanStub {
|
|
|
97020
97044
|
};
|
|
97021
97045
|
|
|
97022
97046
|
// enterprise-modules/side-bar/src/version.ts
|
|
97023
|
-
var VERSION = "32.3.
|
|
97047
|
+
var VERSION = "32.3.4";
|
|
97024
97048
|
|
|
97025
97049
|
// enterprise-modules/side-bar/src/sideBarModule.ts
|
|
97026
97050
|
var SideBarCoreModule = (0, import_core11._defineModule)({
|
|
@@ -99210,7 +99234,7 @@ var SparklineTooltipSingleton = class extends import_core5.BeanStub {
|
|
|
99210
99234
|
};
|
|
99211
99235
|
|
|
99212
99236
|
// enterprise-modules/sparklines/src/version.ts
|
|
99213
|
-
var VERSION = "32.3.
|
|
99237
|
+
var VERSION = "32.3.4";
|
|
99214
99238
|
|
|
99215
99239
|
// enterprise-modules/sparklines/src/sparklinesModule.ts
|
|
99216
99240
|
var SparklinesModule = (0, import_core6._defineModule)({
|
|
@@ -99834,7 +99858,7 @@ var StatusBarService = class extends import_core9.BeanStub {
|
|
|
99834
99858
|
};
|
|
99835
99859
|
|
|
99836
99860
|
// enterprise-modules/status-bar/src/version.ts
|
|
99837
|
-
var VERSION = "32.3.
|
|
99861
|
+
var VERSION = "32.3.4";
|
|
99838
99862
|
|
|
99839
99863
|
// enterprise-modules/status-bar/src/statusBarModule.ts
|
|
99840
99864
|
var StatusBarCoreModule = (0, import_core10._defineModule)({
|
|
@@ -99900,7 +99924,7 @@ var import_core2 = __webpack_require__(3423);
|
|
|
99900
99924
|
var import_core3 = __webpack_require__(8299);
|
|
99901
99925
|
|
|
99902
99926
|
// enterprise-modules/viewport-row-model/src/version.ts
|
|
99903
|
-
var VERSION = "32.3.
|
|
99927
|
+
var VERSION = "32.3.4";
|
|
99904
99928
|
|
|
99905
99929
|
// enterprise-modules/viewport-row-model/src/viewportRowModel/viewportRowModel.ts
|
|
99906
99930
|
var import_core = __webpack_require__(3423);
|
|
@@ -106278,7 +106302,11 @@ __decorateClass([
|
|
|
106278
106302
|
|
|
106279
106303
|
// packages/ag-charts-community/src/util/canvas.util.ts
|
|
106280
106304
|
function createCanvasContext(width2 = 0, height2 = 0) {
|
|
106281
|
-
|
|
106305
|
+
const canvas = createElement("canvas");
|
|
106306
|
+
canvas.style.display = "block";
|
|
106307
|
+
canvas.style.width = width2 + "px";
|
|
106308
|
+
canvas.style.height = height2 + "px";
|
|
106309
|
+
return canvas.getContext("2d");
|
|
106282
106310
|
}
|
|
106283
106311
|
|
|
106284
106312
|
// packages/ag-charts-community/src/util/lruCache.ts
|
|
@@ -111530,7 +111558,7 @@ var DestroyFns = class {
|
|
|
111530
111558
|
};
|
|
111531
111559
|
|
|
111532
111560
|
// packages/ag-charts-community/src/version.ts
|
|
111533
|
-
var VERSION = "10.3.
|
|
111561
|
+
var VERSION = "10.3.4";
|
|
111534
111562
|
|
|
111535
111563
|
// packages/ag-charts-community/src/api/state/historyManager.ts
|
|
111536
111564
|
var NOT_FOUND = Symbol("previous-memento-not-found");
|
|
@@ -113537,7 +113565,7 @@ var LayersManager = class _LayersManager {
|
|
|
113537
113565
|
// packages/ag-charts-community/src/scene/spriteRenderer.ts
|
|
113538
113566
|
var _SpriteRenderer = class _SpriteRenderer {
|
|
113539
113567
|
constructor() {
|
|
113540
|
-
this.offscreenCanvas = new OffscreenCanvas(
|
|
113568
|
+
this.offscreenCanvas = typeof OffscreenCanvas !== "undefined" ? new OffscreenCanvas(0, 0) : createElement("canvas");
|
|
113541
113569
|
_SpriteRenderer.offscreenCanvasCount++;
|
|
113542
113570
|
const ctx = this.offscreenCanvas.getContext("2d");
|
|
113543
113571
|
if (ctx == null)
|
|
@@ -113573,7 +113601,15 @@ var _SpriteRenderer = class _SpriteRenderer {
|
|
|
113573
113601
|
}
|
|
113574
113602
|
ctx.closePath();
|
|
113575
113603
|
ctx.restore();
|
|
113576
|
-
|
|
113604
|
+
if ("transferToImageBitmap" in this.offscreenCanvas) {
|
|
113605
|
+
return this.offscreenCanvas.transferToImageBitmap();
|
|
113606
|
+
}
|
|
113607
|
+
const canvas = createElement("canvas");
|
|
113608
|
+
canvas.style.display = "block";
|
|
113609
|
+
canvas.style.width = offscreenCanvas.width + "px";
|
|
113610
|
+
canvas.style.height = offscreenCanvas.height + "px";
|
|
113611
|
+
canvas.getContext("2d")?.putImageData(ctx.getImageData(0, 0, offscreenCanvas.width, offscreenCanvas.height), 0, 0);
|
|
113612
|
+
return canvas;
|
|
113577
113613
|
}
|
|
113578
113614
|
};
|
|
113579
113615
|
_SpriteRenderer.offscreenCanvasCount = 0;
|