ag-grid-enterprise 32.2.2 → 32.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ag-grid-enterprise.js +4630 -3860
- 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 +4629 -3859
- package/dist/package/main.cjs.js +76 -74
- package/dist/package/main.cjs.min.js +34 -34
- package/dist/package/main.esm.min.mjs +95 -95
- package/dist/package/main.esm.mjs +76 -76
- 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/excelExport/assets/excelInterfaces.d.ts +1 -1
- package/dist/types/excel-export/excelExport/files/ooxml/contentTypes.d.ts +2 -0
- 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/sideBar/agSideBar.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
- package/styles/_css-content.scss +34 -16
- package/styles/ag-grid-no-native-widgets.css +17 -8
- package/styles/ag-grid-no-native-widgets.min.css +3 -3
- package/styles/ag-grid.css +17 -8
- package/styles/ag-grid.min.css +3 -3
package/dist/package/main.cjs.js
CHANGED
|
@@ -569,7 +569,7 @@ var _LicenseManager = class _LicenseManager {
|
|
|
569
569
|
this.watermarkMessage = "License Expired";
|
|
570
570
|
}
|
|
571
571
|
};
|
|
572
|
-
_LicenseManager.RELEASE_INFORMATION = "
|
|
572
|
+
_LicenseManager.RELEASE_INFORMATION = "MTcyNzA3NDUwMzgwNQ==";
|
|
573
573
|
var LicenseManager = _LicenseManager;
|
|
574
574
|
|
|
575
575
|
// enterprise-modules/core/src/license/watermark.ts
|
|
@@ -639,7 +639,7 @@ var GridLicenseManager = class extends import_core3.BeanStub {
|
|
|
639
639
|
};
|
|
640
640
|
|
|
641
641
|
// enterprise-modules/core/src/version.ts
|
|
642
|
-
var VERSION = "32.
|
|
642
|
+
var VERSION = "32.3.0";
|
|
643
643
|
|
|
644
644
|
// enterprise-modules/core/src/widgets/agMenuItemRenderer.ts
|
|
645
645
|
var import_core4 = require("ag-grid-community");
|
|
@@ -2332,7 +2332,12 @@ var AgRichSelect = class extends import_core13.AgPickerField {
|
|
|
2332
2332
|
}
|
|
2333
2333
|
const { searchType = "fuzzy", filterList } = this.config;
|
|
2334
2334
|
if (searchType === "fuzzy") {
|
|
2335
|
-
const fuzzySearchResult = (0, import_core13._fuzzySuggestions)(
|
|
2335
|
+
const fuzzySearchResult = (0, import_core13._fuzzySuggestions)({
|
|
2336
|
+
inputValue: searchValue,
|
|
2337
|
+
allSuggestions: valueList,
|
|
2338
|
+
hideIrrelevant: true,
|
|
2339
|
+
addSequentialWeight: true
|
|
2340
|
+
});
|
|
2336
2341
|
suggestions = fuzzySearchResult.values;
|
|
2337
2342
|
const indices = fuzzySearchResult.indices;
|
|
2338
2343
|
if (filterList && indices.length) {
|
|
@@ -3312,12 +3317,7 @@ var AgDialog = class extends AgPanel {
|
|
|
3312
3317
|
this.tabGuardFeature.initialiseTabGuard({
|
|
3313
3318
|
isFocusableContainer: true,
|
|
3314
3319
|
onFocusIn: () => {
|
|
3315
|
-
|
|
3316
|
-
const { activeElement } = eDocument;
|
|
3317
|
-
const restoreFocus = this.popupService.bringPopupToFront(eGui);
|
|
3318
|
-
if (restoreFocus && !(0, import_core17._isNothingFocused)(this.gos)) {
|
|
3319
|
-
activeElement?.focus?.();
|
|
3320
|
-
}
|
|
3320
|
+
this.popupService.bringPopupToFront(eGui);
|
|
3321
3321
|
},
|
|
3322
3322
|
onTabKeyDown: (e) => {
|
|
3323
3323
|
if (modal) {
|
|
@@ -6246,7 +6246,12 @@ var AgAutocompleteList = class extends import_core33.PopupComponent {
|
|
|
6246
6246
|
let matchingStrings;
|
|
6247
6247
|
let topSuggestion;
|
|
6248
6248
|
if (this.params.useFuzzySearch) {
|
|
6249
|
-
matchingStrings = (0, import_core33._fuzzySuggestions)(
|
|
6249
|
+
matchingStrings = (0, import_core33._fuzzySuggestions)({
|
|
6250
|
+
inputValue: this.searchString,
|
|
6251
|
+
allSuggestions: searchStrings,
|
|
6252
|
+
hideIrrelevant: true,
|
|
6253
|
+
addSequentialWeight: true
|
|
6254
|
+
}).values;
|
|
6250
6255
|
topSuggestion = matchingStrings.length ? matchingStrings[0] : void 0;
|
|
6251
6256
|
} else {
|
|
6252
6257
|
const containsMatches = this.runContainsSearch(this.searchString, searchStrings);
|
|
@@ -9001,7 +9006,7 @@ var AdvancedFilterService = class extends import_core28.BeanStub {
|
|
|
9001
9006
|
});
|
|
9002
9007
|
}
|
|
9003
9008
|
};
|
|
9004
|
-
var VERSION2 = "32.
|
|
9009
|
+
var VERSION2 = "32.3.0";
|
|
9005
9010
|
var AdvancedFilterCoreModule = (0, import_core25._defineModule)({
|
|
9006
9011
|
version: VERSION2,
|
|
9007
9012
|
moduleName: `${import_core25.ModuleNames.AdvancedFilterModule}-core`,
|
|
@@ -10505,7 +10510,7 @@ var SelectionHandleFactory = class extends import_core54.BeanStub {
|
|
|
10505
10510
|
return this.createBean(type === import_core54.SelectionHandleType.RANGE ? new AgRangeHandle() : new AgFillHandle());
|
|
10506
10511
|
}
|
|
10507
10512
|
};
|
|
10508
|
-
var VERSION3 = "32.
|
|
10513
|
+
var VERSION3 = "32.3.0";
|
|
10509
10514
|
var RangeSelectionCoreModule = (0, import_core51._defineModule)({
|
|
10510
10515
|
version: VERSION3,
|
|
10511
10516
|
moduleName: `${import_core51.ModuleNames.RangeSelectionModule}-core`,
|
|
@@ -12429,7 +12434,7 @@ _ChartTranslationService.DEFAULT_TRANSLATIONS = {
|
|
|
12429
12434
|
avg: "Average"
|
|
12430
12435
|
};
|
|
12431
12436
|
var ChartTranslationService = _ChartTranslationService;
|
|
12432
|
-
var VERSION4 = "32.
|
|
12437
|
+
var VERSION4 = "32.3.0";
|
|
12433
12438
|
var ALL_AXIS_TYPES = ["number", "category", "grouped-category", "log", "time"];
|
|
12434
12439
|
function getLegacyAxisType(chartType) {
|
|
12435
12440
|
switch (chartType) {
|
|
@@ -18786,9 +18791,7 @@ function createLinePaths(root, data, size, padding) {
|
|
|
18786
18791
|
return line;
|
|
18787
18792
|
});
|
|
18788
18793
|
const linesGroup = new import_ag_charts_community11._Scene.Group();
|
|
18789
|
-
linesGroup.
|
|
18790
|
-
new import_ag_charts_community11._Scene.BBox(padding, padding, size - padding * 2, size - padding * 2)
|
|
18791
|
-
);
|
|
18794
|
+
linesGroup.setClipRect(new import_ag_charts_community11._Scene.BBox(padding, padding, size - padding * 2, size - padding * 2));
|
|
18792
18795
|
linesGroup.append(lines);
|
|
18793
18796
|
root.append(linesGroup);
|
|
18794
18797
|
return lines;
|
|
@@ -19193,9 +19196,7 @@ var MiniScatter = class extends MiniChartWithAxes {
|
|
|
19193
19196
|
this.points = points;
|
|
19194
19197
|
this.updateColors(fills, strokes);
|
|
19195
19198
|
const pointsGroup = new import_ag_charts_community17._Scene.Group();
|
|
19196
|
-
pointsGroup.
|
|
19197
|
-
new import_ag_charts_community17._Scene.BBox(padding, padding, size - padding * 2, size - padding * 2)
|
|
19198
|
-
);
|
|
19199
|
+
pointsGroup.setClipRect(new import_ag_charts_community17._Scene.BBox(padding, padding, size - padding * 2, size - padding * 2));
|
|
19199
19200
|
pointsGroup.append(this.points);
|
|
19200
19201
|
this.root.append(pointsGroup);
|
|
19201
19202
|
}
|
|
@@ -19244,9 +19245,7 @@ var MiniBubble = class extends MiniChartWithAxes {
|
|
|
19244
19245
|
this.points = points;
|
|
19245
19246
|
this.updateColors(fills, strokes);
|
|
19246
19247
|
const pointsGroup = new import_ag_charts_community18._Scene.Group();
|
|
19247
|
-
pointsGroup.
|
|
19248
|
-
new import_ag_charts_community18._Scene.BBox(padding, padding, size - padding * 2, size - padding * 2)
|
|
19249
|
-
);
|
|
19248
|
+
pointsGroup.setClipRect(new import_ag_charts_community18._Scene.BBox(padding, padding, size - padding * 2, size - padding * 2));
|
|
19250
19249
|
pointsGroup.append(this.points);
|
|
19251
19250
|
this.root.append(pointsGroup);
|
|
19252
19251
|
}
|
|
@@ -19524,10 +19523,10 @@ var MiniRadialColumn = class extends MiniChartWithPolarAxes {
|
|
|
19524
19523
|
}
|
|
19525
19524
|
updateColors(fills, strokes) {
|
|
19526
19525
|
this.series.forEach((group, i) => {
|
|
19527
|
-
group.children
|
|
19526
|
+
for (const sector of group.children()) {
|
|
19528
19527
|
sector.fill = fills[i % fills.length];
|
|
19529
19528
|
sector.stroke = strokes[i % strokes.length];
|
|
19530
|
-
}
|
|
19529
|
+
}
|
|
19531
19530
|
});
|
|
19532
19531
|
}
|
|
19533
19532
|
};
|
|
@@ -19585,10 +19584,10 @@ var MiniRadialBar = class extends MiniChartWithPolarAxes {
|
|
|
19585
19584
|
}
|
|
19586
19585
|
updateColors(fills, strokes) {
|
|
19587
19586
|
this.series.forEach((group, i) => {
|
|
19588
|
-
group.children
|
|
19587
|
+
for (const sector of group.children()) {
|
|
19589
19588
|
sector.fill = fills[i % fills.length];
|
|
19590
19589
|
sector.stroke = strokes[i % strokes.length];
|
|
19591
|
-
}
|
|
19590
|
+
}
|
|
19592
19591
|
});
|
|
19593
19592
|
}
|
|
19594
19593
|
};
|
|
@@ -19703,10 +19702,10 @@ var MiniNightingale = class extends MiniChartWithPolarAxes {
|
|
|
19703
19702
|
}
|
|
19704
19703
|
updateColors(fills, strokes) {
|
|
19705
19704
|
this.series.forEach((group, i) => {
|
|
19706
|
-
group.children
|
|
19705
|
+
for (const sector of group.children()) {
|
|
19707
19706
|
sector.fill = fills[i % fills.length];
|
|
19708
19707
|
sector.stroke = strokes[i % strokes.length];
|
|
19709
|
-
}
|
|
19708
|
+
}
|
|
19710
19709
|
});
|
|
19711
19710
|
}
|
|
19712
19711
|
};
|
|
@@ -19959,11 +19958,11 @@ var MiniBoxPlot = class extends MiniChartWithAxes {
|
|
|
19959
19958
|
const themeBackgroundColor = themeTemplateParameters?.get(import_ag_charts_community28._Theme.DEFAULT_BACKGROUND_COLOUR);
|
|
19960
19959
|
const backgroundFill = (Array.isArray(themeBackgroundColor) ? themeBackgroundColor[0] : themeBackgroundColor) ?? "white";
|
|
19961
19960
|
this.boxPlotGroups.forEach((group, i) => {
|
|
19962
|
-
group.children
|
|
19961
|
+
for (const node of group.children()) {
|
|
19963
19962
|
const fill = fills[i % fills.length];
|
|
19964
19963
|
node.fill = isCustomTheme ? fill : import_ag_charts_community28._Util.interpolateColor(fill, backgroundFill)(0.7);
|
|
19965
19964
|
node.stroke = strokes[i % strokes.length];
|
|
19966
|
-
}
|
|
19965
|
+
}
|
|
19967
19966
|
});
|
|
19968
19967
|
}
|
|
19969
19968
|
setLineProperties(line, x1, x2, y1, y2) {
|
|
@@ -20019,7 +20018,7 @@ var MiniTreemap = class extends MiniChart {
|
|
|
20019
20018
|
}, []);
|
|
20020
20019
|
this.updateColors(fills, strokes, themeTemplate, isCustomTheme);
|
|
20021
20020
|
const rectGroup = new import_ag_charts_community29._Scene.Group();
|
|
20022
|
-
rectGroup.
|
|
20021
|
+
rectGroup.setClipRect(new import_ag_charts_community29._Scene.BBox(padding, padding, size - padding, size - padding));
|
|
20023
20022
|
rectGroup.append(this.rects);
|
|
20024
20023
|
this.root.append(rectGroup);
|
|
20025
20024
|
}
|
|
@@ -20103,10 +20102,10 @@ var MiniSunburst = class extends MiniChartWithPolarAxes {
|
|
|
20103
20102
|
}
|
|
20104
20103
|
updateColors(fills, strokes) {
|
|
20105
20104
|
this.series.forEach((group, i) => {
|
|
20106
|
-
group.children
|
|
20105
|
+
for (const sector of group.children()) {
|
|
20107
20106
|
sector.fill = fills[i % fills.length];
|
|
20108
20107
|
sector.stroke = strokes[i % strokes.length];
|
|
20109
|
-
}
|
|
20108
|
+
}
|
|
20110
20109
|
});
|
|
20111
20110
|
}
|
|
20112
20111
|
};
|
|
@@ -20150,12 +20149,12 @@ var MiniHeatmap = class extends MiniChart {
|
|
|
20150
20149
|
}, []);
|
|
20151
20150
|
this.updateColors(fills, strokes, themeTemplate, isCustomTheme);
|
|
20152
20151
|
const rectGroup = new import_ag_charts_community31._Scene.Group();
|
|
20153
|
-
rectGroup.
|
|
20152
|
+
rectGroup.setClipRect(new import_ag_charts_community31._Scene.BBox(padding, padding, size - padding, size - padding));
|
|
20154
20153
|
rectGroup.append(this.rects);
|
|
20155
20154
|
this.root.append(rectGroup);
|
|
20156
20155
|
}
|
|
20157
20156
|
updateColors(fills, strokes, themeTemplate, isCustomTheme) {
|
|
20158
|
-
const defaultColorRange = themeTemplate?.get(import_ag_charts_community31._Theme.
|
|
20157
|
+
const defaultColorRange = themeTemplate?.get(import_ag_charts_community31._Theme.DEFAULT_DIVERGING_SERIES_COLOR_RANGE);
|
|
20159
20158
|
const defaultBackgroundColor = themeTemplate?.get(import_ag_charts_community31._Theme.DEFAULT_BACKGROUND_COLOUR);
|
|
20160
20159
|
const backgroundFill = (Array.isArray(defaultBackgroundColor) ? defaultBackgroundColor[0] : defaultBackgroundColor) ?? "white";
|
|
20161
20160
|
const colorRange = isCustomTheme ? [fills[0], fills[1]] : defaultColorRange;
|
|
@@ -23531,7 +23530,7 @@ ${apiError("writeText")}`);
|
|
|
23531
23530
|
return startRangeIndex - endRangeIndex + 1;
|
|
23532
23531
|
}
|
|
23533
23532
|
};
|
|
23534
|
-
var VERSION5 = "32.
|
|
23533
|
+
var VERSION5 = "32.3.0";
|
|
23535
23534
|
var ClipboardCoreModule = (0, import_core161._defineModule)({
|
|
23536
23535
|
version: VERSION5,
|
|
23537
23536
|
moduleName: `${import_core161.ModuleNames.ClipboardModule}-core`,
|
|
@@ -24326,6 +24325,7 @@ var DropZoneColumnComp = class extends PillDragComp {
|
|
|
24326
24325
|
createAggSelect(hidePopup, value) {
|
|
24327
24326
|
const itemSelected = () => {
|
|
24328
24327
|
hidePopup();
|
|
24328
|
+
this.getGui().focus();
|
|
24329
24329
|
this.funcColsService.setColumnAggFunc(this.column, value, "toolPanelDragAndDrop");
|
|
24330
24330
|
};
|
|
24331
24331
|
const localeTextFunc = this.localeService.getLocaleTextFunc();
|
|
@@ -24935,7 +24935,9 @@ var GroupFilter = class extends import_core178.TabGuardComp {
|
|
|
24935
24935
|
const colId = eventColumn.getColId();
|
|
24936
24936
|
if (this.filterColumnPairs?.some(({ column }) => column.getColId() === colId)) {
|
|
24937
24937
|
setTimeout(() => {
|
|
24938
|
-
this.
|
|
24938
|
+
if (this.isAlive()) {
|
|
24939
|
+
this.updateGroups();
|
|
24940
|
+
}
|
|
24939
24941
|
});
|
|
24940
24942
|
}
|
|
24941
24943
|
}
|
|
@@ -27168,7 +27170,7 @@ var ShowRowGroupColsService = class extends import_core186.BeanStub {
|
|
|
27168
27170
|
return this.showRowGroupColsMap[id];
|
|
27169
27171
|
}
|
|
27170
27172
|
};
|
|
27171
|
-
var VERSION6 = "32.
|
|
27173
|
+
var VERSION6 = "32.3.0";
|
|
27172
27174
|
var RowGroupingCoreModule = (0, import_core164._defineModule)({
|
|
27173
27175
|
version: VERSION6,
|
|
27174
27176
|
moduleName: `${import_core164.ModuleNames.RowGroupingModule}-core`,
|
|
@@ -27875,7 +27877,7 @@ var AgSideBar = class extends import_core196.Component {
|
|
|
27875
27877
|
const openPanel = eGui.querySelector(".ag-tool-panel-wrapper:not(.ag-hidden)");
|
|
27876
27878
|
const target = e.target;
|
|
27877
27879
|
if (!openPanel) {
|
|
27878
|
-
return;
|
|
27880
|
+
return focusService.focusNextGridCoreContainer(e.shiftKey, true);
|
|
27879
27881
|
}
|
|
27880
27882
|
if (sideBarGui.contains(activeElement)) {
|
|
27881
27883
|
if (focusService.focusInto(openPanel, e.shiftKey)) {
|
|
@@ -28202,7 +28204,7 @@ var SideBarService = class extends import_core197.BeanStub {
|
|
|
28202
28204
|
};
|
|
28203
28205
|
|
|
28204
28206
|
// enterprise-modules/side-bar/src/version.ts
|
|
28205
|
-
var VERSION7 = "32.
|
|
28207
|
+
var VERSION7 = "32.3.0";
|
|
28206
28208
|
|
|
28207
28209
|
// enterprise-modules/side-bar/src/sideBarModule.ts
|
|
28208
28210
|
var SideBarCoreModule = (0, import_core198._defineModule)({
|
|
@@ -28623,14 +28625,14 @@ var ToolPanelColumnGroupComp = class extends import_core210.Component {
|
|
|
28623
28625
|
postConstruct() {
|
|
28624
28626
|
this.setTemplate(
|
|
28625
28627
|
/* html */
|
|
28626
|
-
`<div class="ag-column-select-column-group"
|
|
28627
|
-
|
|
28628
|
-
|
|
28629
|
-
|
|
28630
|
-
|
|
28631
|
-
|
|
28632
|
-
|
|
28633
|
-
|
|
28628
|
+
`<div class="ag-column-select-column-group">
|
|
28629
|
+
<span class="ag-column-group-icons" data-ref="eColumnGroupIcons" >
|
|
28630
|
+
<span class="ag-column-group-closed-icon" data-ref="eGroupClosedIcon"></span>
|
|
28631
|
+
<span class="ag-column-group-opened-icon" data-ref="eGroupOpenedIcon"></span>
|
|
28632
|
+
</span>
|
|
28633
|
+
<ag-checkbox data-ref="cbSelect" class="ag-column-select-checkbox"></ag-checkbox>
|
|
28634
|
+
<span class="ag-column-select-column-label" data-ref="eLabel"></span>
|
|
28635
|
+
</div>`,
|
|
28634
28636
|
[import_core210.AgCheckboxSelector]
|
|
28635
28637
|
);
|
|
28636
28638
|
this.eDragHandle = (0, import_core210._createIconNoSpan)("columnDrag", this.gos);
|
|
@@ -29047,10 +29049,10 @@ var ToolPanelColumnComp = class extends import_core213.Component {
|
|
|
29047
29049
|
postConstruct() {
|
|
29048
29050
|
this.setTemplate(
|
|
29049
29051
|
/* html */
|
|
29050
|
-
`<div class="ag-column-select-column"
|
|
29051
|
-
|
|
29052
|
-
|
|
29053
|
-
|
|
29052
|
+
`<div class="ag-column-select-column">
|
|
29053
|
+
<ag-checkbox data-ref="cbSelect" class="ag-column-select-checkbox"></ag-checkbox>
|
|
29054
|
+
<span class="ag-column-select-column-label" data-ref="eLabel"></span>
|
|
29055
|
+
</div>`,
|
|
29054
29056
|
[import_core213.AgCheckboxSelector]
|
|
29055
29057
|
);
|
|
29056
29058
|
this.eDragHandle = (0, import_core213._createIconNoSpan)("columnDrag", this.gos);
|
|
@@ -30131,7 +30133,7 @@ var ModelItemUtils = class extends import_core215.BeanStub {
|
|
|
30131
30133
|
};
|
|
30132
30134
|
}
|
|
30133
30135
|
};
|
|
30134
|
-
var VERSION8 = "32.
|
|
30136
|
+
var VERSION8 = "32.3.0";
|
|
30135
30137
|
var ColumnsToolPanelModule = (0, import_core200._defineModule)({
|
|
30136
30138
|
version: VERSION8,
|
|
30137
30139
|
moduleName: import_core200.ModuleNames.ColumnsToolPanelModule,
|
|
@@ -30347,6 +30349,7 @@ var contentTypeFactory = {
|
|
|
30347
30349
|
}
|
|
30348
30350
|
};
|
|
30349
30351
|
var contentType_default = contentTypeFactory;
|
|
30352
|
+
var _normaliseImageExtension = (ext) => ext === "jpg" ? "jpeg" : ext;
|
|
30350
30353
|
var contentTypesFactory = {
|
|
30351
30354
|
getTemplate(sheetLen) {
|
|
30352
30355
|
const worksheets = new Array(sheetLen).fill(void 0).map((v, i) => ({
|
|
@@ -30359,8 +30362,7 @@ var contentTypesFactory = {
|
|
|
30359
30362
|
const sheetsWithTables = ExcelXlsxFactory.worksheetDataTables.size;
|
|
30360
30363
|
const imageTypesObject = {};
|
|
30361
30364
|
ExcelXlsxFactory.workbookImageIds.forEach((v) => {
|
|
30362
|
-
|
|
30363
|
-
imageTypesObject[type] = true;
|
|
30365
|
+
imageTypesObject[_normaliseImageExtension(v.type)] = true;
|
|
30364
30366
|
});
|
|
30365
30367
|
const imageDocs = new Array(sheetsWithImages).fill(void 0).map((v, i) => ({
|
|
30366
30368
|
name: "Override",
|
|
@@ -33275,10 +33277,11 @@ Please turn off ${featureName} to enable Excel table exports.`
|
|
|
33275
33277
|
const worksheetImageIds = this.worksheetImageIds.get(sheetIndex) || [];
|
|
33276
33278
|
const XMLArr = [];
|
|
33277
33279
|
for (const [key, value] of worksheetImageIds) {
|
|
33280
|
+
const { index, type } = value;
|
|
33278
33281
|
XMLArr.push({
|
|
33279
|
-
Id: `rId${
|
|
33282
|
+
Id: `rId${index + 1}`,
|
|
33280
33283
|
Type: "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image",
|
|
33281
|
-
Target: `../media/image${this.workbookImageIds.get(key).index + 1}.${
|
|
33284
|
+
Target: `../media/image${this.workbookImageIds.get(key).index + 1}.${_normaliseImageExtension(type)}`
|
|
33282
33285
|
});
|
|
33283
33286
|
}
|
|
33284
33287
|
return createXmlPart(relationships_default.getTemplate(XMLArr));
|
|
@@ -33296,11 +33299,10 @@ Please turn off ${featureName} to enable Excel table exports.`
|
|
|
33296
33299
|
continue;
|
|
33297
33300
|
}
|
|
33298
33301
|
const { index, type } = workbookImage;
|
|
33299
|
-
const imageType = type === "jpg" ? "jpeg" : type;
|
|
33300
33302
|
XMLArr.push({
|
|
33301
33303
|
Id: `rId${i + 1}`,
|
|
33302
33304
|
Type: "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image",
|
|
33303
|
-
Target: `../media/image${index + 1}.${
|
|
33305
|
+
Target: `../media/image${index + 1}.${_normaliseImageExtension(type)}`
|
|
33304
33306
|
});
|
|
33305
33307
|
}
|
|
33306
33308
|
return createXmlPart(relationships_default.getTemplate(XMLArr));
|
|
@@ -33511,7 +33513,8 @@ var ExcelSerializingSession = class extends import_csv_export4.BaseGridSerializi
|
|
|
33511
33513
|
}
|
|
33512
33514
|
const padding = node.footer ? 1 : 0;
|
|
33513
33515
|
const currentRow = (0, import_core219._last)(this.rows);
|
|
33514
|
-
|
|
33516
|
+
const outlineLevel = Math.min(node.level + padding, 7);
|
|
33517
|
+
currentRow.outlineLevel = outlineLevel;
|
|
33515
33518
|
if (rowGroupExpandState === "expanded") {
|
|
33516
33519
|
return;
|
|
33517
33520
|
}
|
|
@@ -33820,8 +33823,7 @@ var createExcelXMLCoreFolderStructure = () => {
|
|
|
33820
33823
|
images.forEach((value) => {
|
|
33821
33824
|
const firstImage = value[0].image[0];
|
|
33822
33825
|
const { base64, imageType } = firstImage;
|
|
33823
|
-
|
|
33824
|
-
import_csv_export3.ZipContainer.addFile(`xl/media/image${++imgCounter}.${ext}`, base64, true);
|
|
33826
|
+
import_csv_export3.ZipContainer.addFile(`xl/media/image${++imgCounter}.${_normaliseImageExtension(imageType)}`, base64, true);
|
|
33825
33827
|
});
|
|
33826
33828
|
};
|
|
33827
33829
|
var createExcelXmlWorksheets = (data) => {
|
|
@@ -34138,7 +34140,7 @@ function getMultipleSheetsAsExcel2(beans, params) {
|
|
|
34138
34140
|
function exportMultipleSheetsAsExcel2(beans, params) {
|
|
34139
34141
|
beans.excelCreator?.exportMultipleSheetsAsExcel(params);
|
|
34140
34142
|
}
|
|
34141
|
-
var VERSION9 = "32.
|
|
34143
|
+
var VERSION9 = "32.3.0";
|
|
34142
34144
|
var ExcelExportCoreModule = (0, import_core216._defineModule)({
|
|
34143
34145
|
version: VERSION9,
|
|
34144
34146
|
moduleName: `${import_core216.ModuleNames.ExcelExportModule}-core`,
|
|
@@ -35117,7 +35119,7 @@ var FiltersToolPanel = class extends import_core228.Component {
|
|
|
35117
35119
|
super.destroy();
|
|
35118
35120
|
}
|
|
35119
35121
|
};
|
|
35120
|
-
var VERSION10 = "32.
|
|
35122
|
+
var VERSION10 = "32.3.0";
|
|
35121
35123
|
var FiltersToolPanelModule = (0, import_core226._defineModule)({
|
|
35122
35124
|
version: VERSION10,
|
|
35123
35125
|
moduleName: import_core226.ModuleNames.FiltersToolPanelModule,
|
|
@@ -35411,7 +35413,7 @@ function getDetailGridInfo(beans, id) {
|
|
|
35411
35413
|
function forEachDetailGridInfo(beans, callback) {
|
|
35412
35414
|
beans.detailGridApiService?.forEachDetailGridInfo(callback);
|
|
35413
35415
|
}
|
|
35414
|
-
var VERSION11 = "32.
|
|
35416
|
+
var VERSION11 = "32.3.0";
|
|
35415
35417
|
var MasterDetailCoreModule = (0, import_core234._defineModule)({
|
|
35416
35418
|
version: VERSION11,
|
|
35417
35419
|
moduleName: `${import_core234.ModuleNames.MasterDetailModule}-core`,
|
|
@@ -37249,7 +37251,7 @@ var MenuUtils = class extends import_core251.BeanStub {
|
|
|
37249
37251
|
}
|
|
37250
37252
|
}
|
|
37251
37253
|
};
|
|
37252
|
-
var VERSION12 = "32.
|
|
37254
|
+
var VERSION12 = "32.3.0";
|
|
37253
37255
|
var MenuCoreModule = (0, import_core239._defineModule)({
|
|
37254
37256
|
version: VERSION12,
|
|
37255
37257
|
moduleName: `${import_core239.ModuleNames.MenuModule}-core`,
|
|
@@ -37829,7 +37831,7 @@ var MultiFloatingFilterComp = class extends import_core256.Component {
|
|
|
37829
37831
|
});
|
|
37830
37832
|
}
|
|
37831
37833
|
};
|
|
37832
|
-
var VERSION13 = "32.
|
|
37834
|
+
var VERSION13 = "32.3.0";
|
|
37833
37835
|
var MultiFilterCoreModule = (0, import_core252._defineModule)({
|
|
37834
37836
|
version: VERSION13,
|
|
37835
37837
|
moduleName: `${import_core252.ModuleNames.MultiFilterModule}-core`,
|
|
@@ -38006,7 +38008,7 @@ var RichSelectCellEditor = class extends import_core259.PopupComponent {
|
|
|
38006
38008
|
return false;
|
|
38007
38009
|
}
|
|
38008
38010
|
};
|
|
38009
|
-
var VERSION14 = "32.
|
|
38011
|
+
var VERSION14 = "32.3.0";
|
|
38010
38012
|
var RichSelectModule = (0, import_core257._defineModule)({
|
|
38011
38013
|
version: VERSION14,
|
|
38012
38014
|
moduleName: import_core257.ModuleNames.RichSelectModule,
|
|
@@ -42602,7 +42604,7 @@ var TransactionManager = class extends import_core281.BeanStub {
|
|
|
42602
42604
|
}
|
|
42603
42605
|
}
|
|
42604
42606
|
};
|
|
42605
|
-
var VERSION15 = "32.
|
|
42607
|
+
var VERSION15 = "32.3.0";
|
|
42606
42608
|
var ServerSideRowModelCoreModule = (0, import_core261._defineModule)({
|
|
42607
42609
|
version: VERSION15,
|
|
42608
42610
|
moduleName: `${import_core261.ModuleNames.ServerSideRowModelModule}-core`,
|
|
@@ -44544,7 +44546,7 @@ var SetFilter = class extends import_core284.ProvidedFilter {
|
|
|
44544
44546
|
if (eMiniFilter.isDisplayed()) {
|
|
44545
44547
|
eMiniFilter.getFocusableElement().focus();
|
|
44546
44548
|
} else {
|
|
44547
|
-
this.virtualList?.focusRow(0);
|
|
44549
|
+
this.virtualList?.awaitStable(() => this.virtualList?.focusRow(0));
|
|
44548
44550
|
}
|
|
44549
44551
|
}
|
|
44550
44552
|
}
|
|
@@ -45127,7 +45129,7 @@ var SetFloatingFilterComp = class extends import_core291.Component {
|
|
|
45127
45129
|
});
|
|
45128
45130
|
}
|
|
45129
45131
|
};
|
|
45130
|
-
var VERSION16 = "32.
|
|
45132
|
+
var VERSION16 = "32.3.0";
|
|
45131
45133
|
var SetFilterCoreModule = (0, import_core282._defineModule)({
|
|
45132
45134
|
version: VERSION16,
|
|
45133
45135
|
moduleName: `${import_core282.ModuleNames.SetFilterModule}-core`,
|
|
@@ -47228,7 +47230,7 @@ var SparklineTooltipSingleton = class extends import_core298.BeanStub {
|
|
|
47228
47230
|
super.destroy();
|
|
47229
47231
|
}
|
|
47230
47232
|
};
|
|
47231
|
-
var VERSION17 = "32.
|
|
47233
|
+
var VERSION17 = "32.3.0";
|
|
47232
47234
|
var SparklinesModule = (0, import_core292._defineModule)({
|
|
47233
47235
|
version: VERSION17,
|
|
47234
47236
|
moduleName: import_core292.ModuleNames.SparklinesModule,
|
|
@@ -47818,7 +47820,7 @@ var StatusBarService = class extends import_core307.BeanStub {
|
|
|
47818
47820
|
};
|
|
47819
47821
|
|
|
47820
47822
|
// enterprise-modules/status-bar/src/version.ts
|
|
47821
|
-
var VERSION18 = "32.
|
|
47823
|
+
var VERSION18 = "32.3.0";
|
|
47822
47824
|
|
|
47823
47825
|
// enterprise-modules/status-bar/src/statusBarModule.ts
|
|
47824
47826
|
var StatusBarCoreModule = (0, import_core308._defineModule)({
|
|
@@ -47851,7 +47853,7 @@ var StatusBarModule = (0, import_core308._defineModule)({
|
|
|
47851
47853
|
// enterprise-modules/viewport-row-model/dist/package/main.esm.mjs
|
|
47852
47854
|
var import_core310 = require("ag-grid-community");
|
|
47853
47855
|
var import_core312 = require("ag-grid-community");
|
|
47854
|
-
var VERSION19 = "32.
|
|
47856
|
+
var VERSION19 = "32.3.0";
|
|
47855
47857
|
var ViewportRowModel = class extends import_core312.BeanStub {
|
|
47856
47858
|
constructor() {
|
|
47857
47859
|
super(...arguments);
|