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
|
@@ -567,7 +567,7 @@ var _LicenseManager = class _LicenseManager {
|
|
|
567
567
|
this.watermarkMessage = "License Expired";
|
|
568
568
|
}
|
|
569
569
|
};
|
|
570
|
-
_LicenseManager.RELEASE_INFORMATION = "
|
|
570
|
+
_LicenseManager.RELEASE_INFORMATION = "MTcyNzA3NDUwMzgwNQ==";
|
|
571
571
|
var LicenseManager = _LicenseManager;
|
|
572
572
|
|
|
573
573
|
// enterprise-modules/core/src/license/watermark.ts
|
|
@@ -637,7 +637,7 @@ var GridLicenseManager = class extends BeanStub {
|
|
|
637
637
|
};
|
|
638
638
|
|
|
639
639
|
// enterprise-modules/core/src/version.ts
|
|
640
|
-
var VERSION = "32.
|
|
640
|
+
var VERSION = "32.3.0";
|
|
641
641
|
|
|
642
642
|
// enterprise-modules/core/src/widgets/agMenuItemRenderer.ts
|
|
643
643
|
import {
|
|
@@ -2396,7 +2396,12 @@ var AgRichSelect = class extends AgPickerField {
|
|
|
2396
2396
|
}
|
|
2397
2397
|
const { searchType = "fuzzy", filterList } = this.config;
|
|
2398
2398
|
if (searchType === "fuzzy") {
|
|
2399
|
-
const fuzzySearchResult = _fuzzySuggestions(
|
|
2399
|
+
const fuzzySearchResult = _fuzzySuggestions({
|
|
2400
|
+
inputValue: searchValue,
|
|
2401
|
+
allSuggestions: valueList,
|
|
2402
|
+
hideIrrelevant: true,
|
|
2403
|
+
addSequentialWeight: true
|
|
2404
|
+
});
|
|
2400
2405
|
suggestions = fuzzySearchResult.values;
|
|
2401
2406
|
const indices = fuzzySearchResult.indices;
|
|
2402
2407
|
if (filterList && indices.length) {
|
|
@@ -3196,8 +3201,6 @@ import {
|
|
|
3196
3201
|
Component as Component10,
|
|
3197
3202
|
TabGuardFeature,
|
|
3198
3203
|
_createIconNoSpan as _createIconNoSpan6,
|
|
3199
|
-
_getDocument as _getDocument5,
|
|
3200
|
-
_isNothingFocused,
|
|
3201
3204
|
_setDisplayed as _setDisplayed4
|
|
3202
3205
|
} from "ag-grid-community";
|
|
3203
3206
|
|
|
@@ -3420,12 +3423,7 @@ var AgDialog = class extends AgPanel {
|
|
|
3420
3423
|
this.tabGuardFeature.initialiseTabGuard({
|
|
3421
3424
|
isFocusableContainer: true,
|
|
3422
3425
|
onFocusIn: () => {
|
|
3423
|
-
|
|
3424
|
-
const { activeElement } = eDocument;
|
|
3425
|
-
const restoreFocus = this.popupService.bringPopupToFront(eGui);
|
|
3426
|
-
if (restoreFocus && !_isNothingFocused(this.gos)) {
|
|
3427
|
-
activeElement?.focus?.();
|
|
3428
|
-
}
|
|
3426
|
+
this.popupService.bringPopupToFront(eGui);
|
|
3429
3427
|
},
|
|
3430
3428
|
onTabKeyDown: (e) => {
|
|
3431
3429
|
if (modal) {
|
|
@@ -6457,7 +6455,12 @@ var AgAutocompleteList = class extends PopupComponent {
|
|
|
6457
6455
|
let matchingStrings;
|
|
6458
6456
|
let topSuggestion;
|
|
6459
6457
|
if (this.params.useFuzzySearch) {
|
|
6460
|
-
matchingStrings = _fuzzySuggestions2(
|
|
6458
|
+
matchingStrings = _fuzzySuggestions2({
|
|
6459
|
+
inputValue: this.searchString,
|
|
6460
|
+
allSuggestions: searchStrings,
|
|
6461
|
+
hideIrrelevant: true,
|
|
6462
|
+
addSequentialWeight: true
|
|
6463
|
+
}).values;
|
|
6461
6464
|
topSuggestion = matchingStrings.length ? matchingStrings[0] : void 0;
|
|
6462
6465
|
} else {
|
|
6463
6466
|
const containsMatches = this.runContainsSearch(this.searchString, searchStrings);
|
|
@@ -9212,7 +9215,7 @@ var AdvancedFilterService = class extends BeanStub52 {
|
|
|
9212
9215
|
});
|
|
9213
9216
|
}
|
|
9214
9217
|
};
|
|
9215
|
-
var VERSION2 = "32.
|
|
9218
|
+
var VERSION2 = "32.3.0";
|
|
9216
9219
|
var AdvancedFilterCoreModule = _defineModule2({
|
|
9217
9220
|
version: VERSION2,
|
|
9218
9221
|
moduleName: `${ModuleNames2.AdvancedFilterModule}-core`,
|
|
@@ -10734,7 +10737,7 @@ var SelectionHandleFactory = class extends BeanStub23 {
|
|
|
10734
10737
|
return this.createBean(type === SelectionHandleType4.RANGE ? new AgRangeHandle() : new AgFillHandle());
|
|
10735
10738
|
}
|
|
10736
10739
|
};
|
|
10737
|
-
var VERSION3 = "32.
|
|
10740
|
+
var VERSION3 = "32.3.0";
|
|
10738
10741
|
var RangeSelectionCoreModule = _defineModule3({
|
|
10739
10742
|
version: VERSION3,
|
|
10740
10743
|
moduleName: `${ModuleNames3.RangeSelectionModule}-core`,
|
|
@@ -12723,7 +12726,7 @@ _ChartTranslationService.DEFAULT_TRANSLATIONS = {
|
|
|
12723
12726
|
avg: "Average"
|
|
12724
12727
|
};
|
|
12725
12728
|
var ChartTranslationService = _ChartTranslationService;
|
|
12726
|
-
var VERSION4 = "32.
|
|
12729
|
+
var VERSION4 = "32.3.0";
|
|
12727
12730
|
var ALL_AXIS_TYPES = ["number", "category", "grouped-category", "log", "time"];
|
|
12728
12731
|
function getLegacyAxisType(chartType) {
|
|
12729
12732
|
switch (chartType) {
|
|
@@ -19080,9 +19083,7 @@ function createLinePaths(root, data, size, padding) {
|
|
|
19080
19083
|
return line;
|
|
19081
19084
|
});
|
|
19082
19085
|
const linesGroup = new _Scene.Group();
|
|
19083
|
-
linesGroup.
|
|
19084
|
-
new _Scene.BBox(padding, padding, size - padding * 2, size - padding * 2)
|
|
19085
|
-
);
|
|
19086
|
+
linesGroup.setClipRect(new _Scene.BBox(padding, padding, size - padding * 2, size - padding * 2));
|
|
19086
19087
|
linesGroup.append(lines);
|
|
19087
19088
|
root.append(linesGroup);
|
|
19088
19089
|
return lines;
|
|
@@ -19487,9 +19488,7 @@ var MiniScatter = class extends MiniChartWithAxes {
|
|
|
19487
19488
|
this.points = points;
|
|
19488
19489
|
this.updateColors(fills, strokes);
|
|
19489
19490
|
const pointsGroup = new _Scene7.Group();
|
|
19490
|
-
pointsGroup.
|
|
19491
|
-
new _Scene7.BBox(padding, padding, size - padding * 2, size - padding * 2)
|
|
19492
|
-
);
|
|
19491
|
+
pointsGroup.setClipRect(new _Scene7.BBox(padding, padding, size - padding * 2, size - padding * 2));
|
|
19493
19492
|
pointsGroup.append(this.points);
|
|
19494
19493
|
this.root.append(pointsGroup);
|
|
19495
19494
|
}
|
|
@@ -19538,9 +19537,7 @@ var MiniBubble = class extends MiniChartWithAxes {
|
|
|
19538
19537
|
this.points = points;
|
|
19539
19538
|
this.updateColors(fills, strokes);
|
|
19540
19539
|
const pointsGroup = new _Scene8.Group();
|
|
19541
|
-
pointsGroup.
|
|
19542
|
-
new _Scene8.BBox(padding, padding, size - padding * 2, size - padding * 2)
|
|
19543
|
-
);
|
|
19540
|
+
pointsGroup.setClipRect(new _Scene8.BBox(padding, padding, size - padding * 2, size - padding * 2));
|
|
19544
19541
|
pointsGroup.append(this.points);
|
|
19545
19542
|
this.root.append(pointsGroup);
|
|
19546
19543
|
}
|
|
@@ -19818,10 +19815,10 @@ var MiniRadialColumn = class extends MiniChartWithPolarAxes {
|
|
|
19818
19815
|
}
|
|
19819
19816
|
updateColors(fills, strokes) {
|
|
19820
19817
|
this.series.forEach((group, i) => {
|
|
19821
|
-
group.children
|
|
19818
|
+
for (const sector of group.children()) {
|
|
19822
19819
|
sector.fill = fills[i % fills.length];
|
|
19823
19820
|
sector.stroke = strokes[i % strokes.length];
|
|
19824
|
-
}
|
|
19821
|
+
}
|
|
19825
19822
|
});
|
|
19826
19823
|
}
|
|
19827
19824
|
};
|
|
@@ -19879,10 +19876,10 @@ var MiniRadialBar = class extends MiniChartWithPolarAxes {
|
|
|
19879
19876
|
}
|
|
19880
19877
|
updateColors(fills, strokes) {
|
|
19881
19878
|
this.series.forEach((group, i) => {
|
|
19882
|
-
group.children
|
|
19879
|
+
for (const sector of group.children()) {
|
|
19883
19880
|
sector.fill = fills[i % fills.length];
|
|
19884
19881
|
sector.stroke = strokes[i % strokes.length];
|
|
19885
|
-
}
|
|
19882
|
+
}
|
|
19886
19883
|
});
|
|
19887
19884
|
}
|
|
19888
19885
|
};
|
|
@@ -19997,10 +19994,10 @@ var MiniNightingale = class extends MiniChartWithPolarAxes {
|
|
|
19997
19994
|
}
|
|
19998
19995
|
updateColors(fills, strokes) {
|
|
19999
19996
|
this.series.forEach((group, i) => {
|
|
20000
|
-
group.children
|
|
19997
|
+
for (const sector of group.children()) {
|
|
20001
19998
|
sector.fill = fills[i % fills.length];
|
|
20002
19999
|
sector.stroke = strokes[i % strokes.length];
|
|
20003
|
-
}
|
|
20000
|
+
}
|
|
20004
20001
|
});
|
|
20005
20002
|
}
|
|
20006
20003
|
};
|
|
@@ -20253,11 +20250,11 @@ var MiniBoxPlot = class extends MiniChartWithAxes {
|
|
|
20253
20250
|
const themeBackgroundColor = themeTemplateParameters?.get(_Theme4.DEFAULT_BACKGROUND_COLOUR);
|
|
20254
20251
|
const backgroundFill = (Array.isArray(themeBackgroundColor) ? themeBackgroundColor[0] : themeBackgroundColor) ?? "white";
|
|
20255
20252
|
this.boxPlotGroups.forEach((group, i) => {
|
|
20256
|
-
group.children
|
|
20253
|
+
for (const node of group.children()) {
|
|
20257
20254
|
const fill = fills[i % fills.length];
|
|
20258
20255
|
node.fill = isCustomTheme ? fill : _Util5.interpolateColor(fill, backgroundFill)(0.7);
|
|
20259
20256
|
node.stroke = strokes[i % strokes.length];
|
|
20260
|
-
}
|
|
20257
|
+
}
|
|
20261
20258
|
});
|
|
20262
20259
|
}
|
|
20263
20260
|
setLineProperties(line, x1, x2, y1, y2) {
|
|
@@ -20313,7 +20310,7 @@ var MiniTreemap = class extends MiniChart {
|
|
|
20313
20310
|
}, []);
|
|
20314
20311
|
this.updateColors(fills, strokes, themeTemplate, isCustomTheme);
|
|
20315
20312
|
const rectGroup = new _Scene19.Group();
|
|
20316
|
-
rectGroup.
|
|
20313
|
+
rectGroup.setClipRect(new _Scene19.BBox(padding, padding, size - padding, size - padding));
|
|
20317
20314
|
rectGroup.append(this.rects);
|
|
20318
20315
|
this.root.append(rectGroup);
|
|
20319
20316
|
}
|
|
@@ -20397,10 +20394,10 @@ var MiniSunburst = class extends MiniChartWithPolarAxes {
|
|
|
20397
20394
|
}
|
|
20398
20395
|
updateColors(fills, strokes) {
|
|
20399
20396
|
this.series.forEach((group, i) => {
|
|
20400
|
-
group.children
|
|
20397
|
+
for (const sector of group.children()) {
|
|
20401
20398
|
sector.fill = fills[i % fills.length];
|
|
20402
20399
|
sector.stroke = strokes[i % strokes.length];
|
|
20403
|
-
}
|
|
20400
|
+
}
|
|
20404
20401
|
});
|
|
20405
20402
|
}
|
|
20406
20403
|
};
|
|
@@ -20444,12 +20441,12 @@ var MiniHeatmap = class extends MiniChart {
|
|
|
20444
20441
|
}, []);
|
|
20445
20442
|
this.updateColors(fills, strokes, themeTemplate, isCustomTheme);
|
|
20446
20443
|
const rectGroup = new _Scene21.Group();
|
|
20447
|
-
rectGroup.
|
|
20444
|
+
rectGroup.setClipRect(new _Scene21.BBox(padding, padding, size - padding, size - padding));
|
|
20448
20445
|
rectGroup.append(this.rects);
|
|
20449
20446
|
this.root.append(rectGroup);
|
|
20450
20447
|
}
|
|
20451
20448
|
updateColors(fills, strokes, themeTemplate, isCustomTheme) {
|
|
20452
|
-
const defaultColorRange = themeTemplate?.get(_Theme6.
|
|
20449
|
+
const defaultColorRange = themeTemplate?.get(_Theme6.DEFAULT_DIVERGING_SERIES_COLOR_RANGE);
|
|
20453
20450
|
const defaultBackgroundColor = themeTemplate?.get(_Theme6.DEFAULT_BACKGROUND_COLOUR);
|
|
20454
20451
|
const backgroundFill = (Array.isArray(defaultBackgroundColor) ? defaultBackgroundColor[0] : defaultBackgroundColor) ?? "white";
|
|
20455
20452
|
const colorRange = isCustomTheme ? [fills[0], fills[1]] : defaultColorRange;
|
|
@@ -23835,7 +23832,7 @@ ${apiError("writeText")}`);
|
|
|
23835
23832
|
return startRangeIndex - endRangeIndex + 1;
|
|
23836
23833
|
}
|
|
23837
23834
|
};
|
|
23838
|
-
var VERSION5 = "32.
|
|
23835
|
+
var VERSION5 = "32.3.0";
|
|
23839
23836
|
var ClipboardCoreModule = _defineModule5({
|
|
23840
23837
|
version: VERSION5,
|
|
23841
23838
|
moduleName: `${ModuleNames5.ClipboardModule}-core`,
|
|
@@ -24670,6 +24667,7 @@ var DropZoneColumnComp = class extends PillDragComp {
|
|
|
24670
24667
|
createAggSelect(hidePopup, value) {
|
|
24671
24668
|
const itemSelected = () => {
|
|
24672
24669
|
hidePopup();
|
|
24670
|
+
this.getGui().focus();
|
|
24673
24671
|
this.funcColsService.setColumnAggFunc(this.column, value, "toolPanelDragAndDrop");
|
|
24674
24672
|
};
|
|
24675
24673
|
const localeTextFunc = this.localeService.getLocaleTextFunc();
|
|
@@ -25279,7 +25277,9 @@ var GroupFilter = class extends TabGuardComp7 {
|
|
|
25279
25277
|
const colId = eventColumn.getColId();
|
|
25280
25278
|
if (this.filterColumnPairs?.some(({ column }) => column.getColId() === colId)) {
|
|
25281
25279
|
setTimeout(() => {
|
|
25282
|
-
this.
|
|
25280
|
+
if (this.isAlive()) {
|
|
25281
|
+
this.updateGroups();
|
|
25282
|
+
}
|
|
25283
25283
|
});
|
|
25284
25284
|
}
|
|
25285
25285
|
}
|
|
@@ -27512,7 +27512,7 @@ var ShowRowGroupColsService = class extends BeanStub112 {
|
|
|
27512
27512
|
return this.showRowGroupColsMap[id];
|
|
27513
27513
|
}
|
|
27514
27514
|
};
|
|
27515
|
-
var VERSION6 = "32.
|
|
27515
|
+
var VERSION6 = "32.3.0";
|
|
27516
27516
|
var RowGroupingCoreModule = _defineModule6({
|
|
27517
27517
|
version: VERSION6,
|
|
27518
27518
|
moduleName: `${ModuleNames6.RowGroupingModule}-core`,
|
|
@@ -28230,7 +28230,7 @@ var AgSideBar = class extends Component48 {
|
|
|
28230
28230
|
const openPanel = eGui.querySelector(".ag-tool-panel-wrapper:not(.ag-hidden)");
|
|
28231
28231
|
const target = e.target;
|
|
28232
28232
|
if (!openPanel) {
|
|
28233
|
-
return;
|
|
28233
|
+
return focusService.focusNextGridCoreContainer(e.shiftKey, true);
|
|
28234
28234
|
}
|
|
28235
28235
|
if (sideBarGui.contains(activeElement)) {
|
|
28236
28236
|
if (focusService.focusInto(openPanel, e.shiftKey)) {
|
|
@@ -28557,7 +28557,7 @@ var SideBarService = class extends BeanStub19 {
|
|
|
28557
28557
|
};
|
|
28558
28558
|
|
|
28559
28559
|
// enterprise-modules/side-bar/src/version.ts
|
|
28560
|
-
var VERSION7 = "32.
|
|
28560
|
+
var VERSION7 = "32.3.0";
|
|
28561
28561
|
|
|
28562
28562
|
// enterprise-modules/side-bar/src/sideBarModule.ts
|
|
28563
28563
|
var SideBarCoreModule = _defineModule7({
|
|
@@ -29022,14 +29022,14 @@ var ToolPanelColumnGroupComp = class extends Component311 {
|
|
|
29022
29022
|
postConstruct() {
|
|
29023
29023
|
this.setTemplate(
|
|
29024
29024
|
/* html */
|
|
29025
|
-
`<div class="ag-column-select-column-group"
|
|
29026
|
-
|
|
29027
|
-
|
|
29028
|
-
|
|
29029
|
-
|
|
29030
|
-
|
|
29031
|
-
|
|
29032
|
-
|
|
29025
|
+
`<div class="ag-column-select-column-group">
|
|
29026
|
+
<span class="ag-column-group-icons" data-ref="eColumnGroupIcons" >
|
|
29027
|
+
<span class="ag-column-group-closed-icon" data-ref="eGroupClosedIcon"></span>
|
|
29028
|
+
<span class="ag-column-group-opened-icon" data-ref="eGroupOpenedIcon"></span>
|
|
29029
|
+
</span>
|
|
29030
|
+
<ag-checkbox data-ref="cbSelect" class="ag-column-select-checkbox"></ag-checkbox>
|
|
29031
|
+
<span class="ag-column-select-column-label" data-ref="eLabel"></span>
|
|
29032
|
+
</div>`,
|
|
29033
29033
|
[AgCheckboxSelector23]
|
|
29034
29034
|
);
|
|
29035
29035
|
this.eDragHandle = _createIconNoSpan34("columnDrag", this.gos);
|
|
@@ -29446,10 +29446,10 @@ var ToolPanelColumnComp = class extends Component410 {
|
|
|
29446
29446
|
postConstruct() {
|
|
29447
29447
|
this.setTemplate(
|
|
29448
29448
|
/* html */
|
|
29449
|
-
`<div class="ag-column-select-column"
|
|
29450
|
-
|
|
29451
|
-
|
|
29452
|
-
|
|
29449
|
+
`<div class="ag-column-select-column">
|
|
29450
|
+
<ag-checkbox data-ref="cbSelect" class="ag-column-select-checkbox"></ag-checkbox>
|
|
29451
|
+
<span class="ag-column-select-column-label" data-ref="eLabel"></span>
|
|
29452
|
+
</div>`,
|
|
29453
29453
|
[AgCheckboxSelector32]
|
|
29454
29454
|
);
|
|
29455
29455
|
this.eDragHandle = _createIconNoSpan42("columnDrag", this.gos);
|
|
@@ -30530,7 +30530,7 @@ var ModelItemUtils = class extends BeanStub26 {
|
|
|
30530
30530
|
};
|
|
30531
30531
|
}
|
|
30532
30532
|
};
|
|
30533
|
-
var VERSION8 = "32.
|
|
30533
|
+
var VERSION8 = "32.3.0";
|
|
30534
30534
|
var ColumnsToolPanelModule = _defineModule8({
|
|
30535
30535
|
version: VERSION8,
|
|
30536
30536
|
moduleName: ModuleNames23.ColumnsToolPanelModule,
|
|
@@ -30746,6 +30746,7 @@ var contentTypeFactory = {
|
|
|
30746
30746
|
}
|
|
30747
30747
|
};
|
|
30748
30748
|
var contentType_default = contentTypeFactory;
|
|
30749
|
+
var _normaliseImageExtension = (ext) => ext === "jpg" ? "jpeg" : ext;
|
|
30749
30750
|
var contentTypesFactory = {
|
|
30750
30751
|
getTemplate(sheetLen) {
|
|
30751
30752
|
const worksheets = new Array(sheetLen).fill(void 0).map((v, i) => ({
|
|
@@ -30758,8 +30759,7 @@ var contentTypesFactory = {
|
|
|
30758
30759
|
const sheetsWithTables = ExcelXlsxFactory.worksheetDataTables.size;
|
|
30759
30760
|
const imageTypesObject = {};
|
|
30760
30761
|
ExcelXlsxFactory.workbookImageIds.forEach((v) => {
|
|
30761
|
-
|
|
30762
|
-
imageTypesObject[type] = true;
|
|
30762
|
+
imageTypesObject[_normaliseImageExtension(v.type)] = true;
|
|
30763
30763
|
});
|
|
30764
30764
|
const imageDocs = new Array(sheetsWithImages).fill(void 0).map((v, i) => ({
|
|
30765
30765
|
name: "Override",
|
|
@@ -33674,10 +33674,11 @@ Please turn off ${featureName} to enable Excel table exports.`
|
|
|
33674
33674
|
const worksheetImageIds = this.worksheetImageIds.get(sheetIndex) || [];
|
|
33675
33675
|
const XMLArr = [];
|
|
33676
33676
|
for (const [key, value] of worksheetImageIds) {
|
|
33677
|
+
const { index, type } = value;
|
|
33677
33678
|
XMLArr.push({
|
|
33678
|
-
Id: `rId${
|
|
33679
|
+
Id: `rId${index + 1}`,
|
|
33679
33680
|
Type: "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image",
|
|
33680
|
-
Target: `../media/image${this.workbookImageIds.get(key).index + 1}.${
|
|
33681
|
+
Target: `../media/image${this.workbookImageIds.get(key).index + 1}.${_normaliseImageExtension(type)}`
|
|
33681
33682
|
});
|
|
33682
33683
|
}
|
|
33683
33684
|
return createXmlPart(relationships_default.getTemplate(XMLArr));
|
|
@@ -33695,11 +33696,10 @@ Please turn off ${featureName} to enable Excel table exports.`
|
|
|
33695
33696
|
continue;
|
|
33696
33697
|
}
|
|
33697
33698
|
const { index, type } = workbookImage;
|
|
33698
|
-
const imageType = type === "jpg" ? "jpeg" : type;
|
|
33699
33699
|
XMLArr.push({
|
|
33700
33700
|
Id: `rId${i + 1}`,
|
|
33701
33701
|
Type: "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image",
|
|
33702
|
-
Target: `../media/image${index + 1}.${
|
|
33702
|
+
Target: `../media/image${index + 1}.${_normaliseImageExtension(type)}`
|
|
33703
33703
|
});
|
|
33704
33704
|
}
|
|
33705
33705
|
return createXmlPart(relationships_default.getTemplate(XMLArr));
|
|
@@ -33910,7 +33910,8 @@ var ExcelSerializingSession = class extends BaseGridSerializingSession {
|
|
|
33910
33910
|
}
|
|
33911
33911
|
const padding = node.footer ? 1 : 0;
|
|
33912
33912
|
const currentRow = _last10(this.rows);
|
|
33913
|
-
|
|
33913
|
+
const outlineLevel = Math.min(node.level + padding, 7);
|
|
33914
|
+
currentRow.outlineLevel = outlineLevel;
|
|
33914
33915
|
if (rowGroupExpandState === "expanded") {
|
|
33915
33916
|
return;
|
|
33916
33917
|
}
|
|
@@ -34219,8 +34220,7 @@ var createExcelXMLCoreFolderStructure = () => {
|
|
|
34219
34220
|
images.forEach((value) => {
|
|
34220
34221
|
const firstImage = value[0].image[0];
|
|
34221
34222
|
const { base64, imageType } = firstImage;
|
|
34222
|
-
|
|
34223
|
-
ZipContainer.addFile(`xl/media/image${++imgCounter}.${ext}`, base64, true);
|
|
34223
|
+
ZipContainer.addFile(`xl/media/image${++imgCounter}.${_normaliseImageExtension(imageType)}`, base64, true);
|
|
34224
34224
|
});
|
|
34225
34225
|
};
|
|
34226
34226
|
var createExcelXmlWorksheets = (data) => {
|
|
@@ -34537,7 +34537,7 @@ function getMultipleSheetsAsExcel2(beans, params) {
|
|
|
34537
34537
|
function exportMultipleSheetsAsExcel2(beans, params) {
|
|
34538
34538
|
beans.excelCreator?.exportMultipleSheetsAsExcel(params);
|
|
34539
34539
|
}
|
|
34540
|
-
var VERSION9 = "32.
|
|
34540
|
+
var VERSION9 = "32.3.0";
|
|
34541
34541
|
var ExcelExportCoreModule = _defineModule9({
|
|
34542
34542
|
version: VERSION9,
|
|
34543
34543
|
moduleName: `${ModuleNames10.ExcelExportModule}-core`,
|
|
@@ -35550,7 +35550,7 @@ var FiltersToolPanel = class extends Component55 {
|
|
|
35550
35550
|
super.destroy();
|
|
35551
35551
|
}
|
|
35552
35552
|
};
|
|
35553
|
-
var VERSION10 = "32.
|
|
35553
|
+
var VERSION10 = "32.3.0";
|
|
35554
35554
|
var FiltersToolPanelModule = _defineModule10({
|
|
35555
35555
|
version: VERSION10,
|
|
35556
35556
|
moduleName: ModuleNames11.FiltersToolPanelModule,
|
|
@@ -35844,7 +35844,7 @@ function getDetailGridInfo(beans, id) {
|
|
|
35844
35844
|
function forEachDetailGridInfo(beans, callback) {
|
|
35845
35845
|
beans.detailGridApiService?.forEachDetailGridInfo(callback);
|
|
35846
35846
|
}
|
|
35847
|
-
var VERSION11 = "32.
|
|
35847
|
+
var VERSION11 = "32.3.0";
|
|
35848
35848
|
var MasterDetailCoreModule = _defineModule11({
|
|
35849
35849
|
version: VERSION11,
|
|
35850
35850
|
moduleName: `${ModuleNames12.MasterDetailModule}-core`,
|
|
@@ -37700,7 +37700,7 @@ var MenuUtils = class extends BeanStub74 {
|
|
|
37700
37700
|
}
|
|
37701
37701
|
}
|
|
37702
37702
|
};
|
|
37703
|
-
var VERSION12 = "32.
|
|
37703
|
+
var VERSION12 = "32.3.0";
|
|
37704
37704
|
var MenuCoreModule = _defineModule12({
|
|
37705
37705
|
version: VERSION12,
|
|
37706
37706
|
moduleName: `${ModuleNames52.MenuModule}-core`,
|
|
@@ -38302,7 +38302,7 @@ var MultiFloatingFilterComp = class extends Component57 {
|
|
|
38302
38302
|
});
|
|
38303
38303
|
}
|
|
38304
38304
|
};
|
|
38305
|
-
var VERSION13 = "32.
|
|
38305
|
+
var VERSION13 = "32.3.0";
|
|
38306
38306
|
var MultiFilterCoreModule = _defineModule13({
|
|
38307
38307
|
version: VERSION13,
|
|
38308
38308
|
moduleName: `${ModuleNames14.MultiFilterModule}-core`,
|
|
@@ -38479,7 +38479,7 @@ var RichSelectCellEditor = class extends PopupComponent2 {
|
|
|
38479
38479
|
return false;
|
|
38480
38480
|
}
|
|
38481
38481
|
};
|
|
38482
|
-
var VERSION14 = "32.
|
|
38482
|
+
var VERSION14 = "32.3.0";
|
|
38483
38483
|
var RichSelectModule = _defineModule14({
|
|
38484
38484
|
version: VERSION14,
|
|
38485
38485
|
moduleName: ModuleNames15.RichSelectModule,
|
|
@@ -43152,7 +43152,7 @@ var TransactionManager = class extends BeanStub162 {
|
|
|
43152
43152
|
}
|
|
43153
43153
|
}
|
|
43154
43154
|
};
|
|
43155
|
-
var VERSION15 = "32.
|
|
43155
|
+
var VERSION15 = "32.3.0";
|
|
43156
43156
|
var ServerSideRowModelCoreModule = _defineModule15({
|
|
43157
43157
|
version: VERSION15,
|
|
43158
43158
|
moduleName: `${ModuleNames25.ServerSideRowModelModule}-core`,
|
|
@@ -45131,7 +45131,7 @@ var SetFilter = class extends ProvidedFilter2 {
|
|
|
45131
45131
|
if (eMiniFilter.isDisplayed()) {
|
|
45132
45132
|
eMiniFilter.getFocusableElement().focus();
|
|
45133
45133
|
} else {
|
|
45134
|
-
this.virtualList?.focusRow(0);
|
|
45134
|
+
this.virtualList?.awaitStable(() => this.virtualList?.focusRow(0));
|
|
45135
45135
|
}
|
|
45136
45136
|
}
|
|
45137
45137
|
}
|
|
@@ -45714,7 +45714,7 @@ var SetFloatingFilterComp = class extends Component214 {
|
|
|
45714
45714
|
});
|
|
45715
45715
|
}
|
|
45716
45716
|
};
|
|
45717
|
-
var VERSION16 = "32.
|
|
45717
|
+
var VERSION16 = "32.3.0";
|
|
45718
45718
|
var SetFilterCoreModule = _defineModule16({
|
|
45719
45719
|
version: VERSION16,
|
|
45720
45720
|
moduleName: `${ModuleNames17.SetFilterModule}-core`,
|
|
@@ -47815,7 +47815,7 @@ var SparklineTooltipSingleton = class extends BeanStub31 {
|
|
|
47815
47815
|
super.destroy();
|
|
47816
47816
|
}
|
|
47817
47817
|
};
|
|
47818
|
-
var VERSION17 = "32.
|
|
47818
|
+
var VERSION17 = "32.3.0";
|
|
47819
47819
|
var SparklinesModule = _defineModule17({
|
|
47820
47820
|
version: VERSION17,
|
|
47821
47821
|
moduleName: ModuleNames18.SparklinesModule,
|
|
@@ -48415,7 +48415,7 @@ var StatusBarService = class extends BeanStub37 {
|
|
|
48415
48415
|
};
|
|
48416
48416
|
|
|
48417
48417
|
// enterprise-modules/status-bar/src/version.ts
|
|
48418
|
-
var VERSION18 = "32.
|
|
48418
|
+
var VERSION18 = "32.3.0";
|
|
48419
48419
|
|
|
48420
48420
|
// enterprise-modules/status-bar/src/statusBarModule.ts
|
|
48421
48421
|
var StatusBarCoreModule = _defineModule18({
|
|
@@ -48448,7 +48448,7 @@ var StatusBarModule = _defineModule18({
|
|
|
48448
48448
|
// enterprise-modules/viewport-row-model/dist/package/main.esm.mjs
|
|
48449
48449
|
import { ModuleNames as ModuleNames20, _defineModule as _defineModule19 } from "ag-grid-community";
|
|
48450
48450
|
import { BeanStub as BeanStub38, RowNode as RowNode4, _getRowHeightAsNumber as _getRowHeightAsNumber5, _iterateObject as _iterateObject6, _missing as _missing8, _warnOnce as _warnOnce51 } from "ag-grid-community";
|
|
48451
|
-
var VERSION19 = "32.
|
|
48451
|
+
var VERSION19 = "32.3.0";
|
|
48452
48452
|
var ViewportRowModel = class extends BeanStub38 {
|
|
48453
48453
|
constructor() {
|
|
48454
48454
|
super(...arguments);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ag-grid-enterprise",
|
|
3
|
-
"version": "32.
|
|
3
|
+
"version": "32.3.0",
|
|
4
4
|
"description": "Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue",
|
|
5
5
|
"main": "./dist/package/main.cjs.js",
|
|
6
6
|
"types": "./dist/types/main.d.ts",
|
|
@@ -82,31 +82,31 @@
|
|
|
82
82
|
],
|
|
83
83
|
"homepage": "https://www.ag-grid.com/",
|
|
84
84
|
"dependencies": {
|
|
85
|
-
"ag-grid-community": "32.
|
|
86
|
-
"ag-charts-community": "10.
|
|
85
|
+
"ag-grid-community": "32.3.0",
|
|
86
|
+
"ag-charts-community": "10.3.0"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
89
|
"source-map-loader": "^5.0.0",
|
|
90
|
-
"@ag-grid-community/styles": "32.
|
|
91
|
-
"@ag-grid-enterprise/advanced-filter": "32.
|
|
92
|
-
"@ag-grid-enterprise/charts": "32.
|
|
93
|
-
"@ag-grid-enterprise/clipboard": "32.
|
|
94
|
-
"@ag-grid-enterprise/column-tool-panel": "32.
|
|
95
|
-
"@ag-grid-enterprise/core": "32.
|
|
96
|
-
"@ag-grid-enterprise/excel-export": "32.
|
|
97
|
-
"@ag-grid-enterprise/filter-tool-panel": "32.
|
|
98
|
-
"@ag-grid-enterprise/master-detail": "32.
|
|
99
|
-
"@ag-grid-enterprise/menu": "32.
|
|
100
|
-
"@ag-grid-enterprise/multi-filter": "32.
|
|
101
|
-
"@ag-grid-enterprise/range-selection": "32.
|
|
102
|
-
"@ag-grid-enterprise/rich-select": "32.
|
|
103
|
-
"@ag-grid-enterprise/row-grouping": "32.
|
|
104
|
-
"@ag-grid-enterprise/server-side-row-model": "32.
|
|
105
|
-
"@ag-grid-enterprise/set-filter": "32.
|
|
106
|
-
"@ag-grid-enterprise/side-bar": "32.
|
|
107
|
-
"@ag-grid-enterprise/sparklines": "32.
|
|
108
|
-
"@ag-grid-enterprise/status-bar": "32.
|
|
109
|
-
"@ag-grid-enterprise/viewport-row-model": "32.
|
|
90
|
+
"@ag-grid-community/styles": "32.3.0",
|
|
91
|
+
"@ag-grid-enterprise/advanced-filter": "32.3.0",
|
|
92
|
+
"@ag-grid-enterprise/charts": "32.3.0",
|
|
93
|
+
"@ag-grid-enterprise/clipboard": "32.3.0",
|
|
94
|
+
"@ag-grid-enterprise/column-tool-panel": "32.3.0",
|
|
95
|
+
"@ag-grid-enterprise/core": "32.3.0",
|
|
96
|
+
"@ag-grid-enterprise/excel-export": "32.3.0",
|
|
97
|
+
"@ag-grid-enterprise/filter-tool-panel": "32.3.0",
|
|
98
|
+
"@ag-grid-enterprise/master-detail": "32.3.0",
|
|
99
|
+
"@ag-grid-enterprise/menu": "32.3.0",
|
|
100
|
+
"@ag-grid-enterprise/multi-filter": "32.3.0",
|
|
101
|
+
"@ag-grid-enterprise/range-selection": "32.3.0",
|
|
102
|
+
"@ag-grid-enterprise/rich-select": "32.3.0",
|
|
103
|
+
"@ag-grid-enterprise/row-grouping": "32.3.0",
|
|
104
|
+
"@ag-grid-enterprise/server-side-row-model": "32.3.0",
|
|
105
|
+
"@ag-grid-enterprise/set-filter": "32.3.0",
|
|
106
|
+
"@ag-grid-enterprise/side-bar": "32.3.0",
|
|
107
|
+
"@ag-grid-enterprise/sparklines": "32.3.0",
|
|
108
|
+
"@ag-grid-enterprise/status-bar": "32.3.0",
|
|
109
|
+
"@ag-grid-enterprise/viewport-row-model": "32.3.0",
|
|
110
110
|
"ts-loader": "^9.5.1",
|
|
111
111
|
"style-loader": "^3.3.4",
|
|
112
112
|
"css-loader": "^6.10.0",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "32.
|
|
1
|
+
export declare const VERSION = "32.3.0";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "32.
|
|
1
|
+
export declare const VERSION = "32.3.0";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "32.
|
|
1
|
+
export declare const VERSION = "32.3.0";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "32.
|
|
1
|
+
export declare const VERSION = "32.3.0";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "32.
|
|
1
|
+
export declare const VERSION = "32.3.0";
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
import type { ExcelOOXMLTemplate } from 'ag-grid-community';
|
|
2
|
+
type ImageExtension = 'jpeg' | 'png' | 'gif';
|
|
3
|
+
export declare const _normaliseImageExtension: (ext: 'jpg' | 'png' | 'gif') => ImageExtension;
|
|
2
4
|
declare const contentTypesFactory: ExcelOOXMLTemplate;
|
|
3
5
|
export default contentTypesFactory;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "32.
|
|
1
|
+
export declare const VERSION = "32.3.0";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "32.
|
|
1
|
+
export declare const VERSION = "32.3.0";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "32.
|
|
1
|
+
export declare const VERSION = "32.3.0";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "32.
|
|
1
|
+
export declare const VERSION = "32.3.0";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "32.
|
|
1
|
+
export declare const VERSION = "32.3.0";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "32.
|
|
1
|
+
export declare const VERSION = "32.3.0";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "32.
|
|
1
|
+
export declare const VERSION = "32.3.0";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "32.
|
|
1
|
+
export declare const VERSION = "32.3.0";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "32.
|
|
1
|
+
export declare const VERSION = "32.3.0";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "32.
|
|
1
|
+
export declare const VERSION = "32.3.0";
|
|
@@ -11,7 +11,7 @@ export declare class AgSideBar extends Component implements ISideBar {
|
|
|
11
11
|
private position;
|
|
12
12
|
constructor();
|
|
13
13
|
postConstruct(): void;
|
|
14
|
-
protected onTabKeyDown(e: KeyboardEvent):
|
|
14
|
+
protected onTabKeyDown(e: KeyboardEvent): boolean | undefined;
|
|
15
15
|
protected handleKeyDown(e: KeyboardEvent): void;
|
|
16
16
|
private onToolPanelButtonClicked;
|
|
17
17
|
private clearDownUi;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "32.
|
|
1
|
+
export declare const VERSION = "32.3.0";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "32.
|
|
1
|
+
export declare const VERSION = "32.3.0";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "32.
|
|
1
|
+
export declare const VERSION = "32.3.0";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "32.
|
|
1
|
+
export declare const VERSION = "32.3.0";
|