ag-grid-enterprise 32.3.4 → 32.3.6

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.
@@ -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.4";
1932
+ var VERSION = "32.3.6";
1933
1933
 
1934
1934
  // community-modules/client-side-row-model/src/clientSideRowModelModule.ts
1935
1935
  var ClientSideRowModelCoreModule = (0, import_core9._defineModule)({
@@ -9140,140 +9140,7 @@ function _getAriaCheckboxStateName(translate, state) {
9140
9140
  return state === void 0 ? translate("ariaIndeterminate", "indeterminate") : state === true ? translate("ariaChecked", "checked") : translate("ariaUnchecked", "unchecked");
9141
9141
  }
9142
9142
 
9143
- // community-modules/core/src/utils/browser.ts
9144
- var isSafari;
9145
- var safariVersion;
9146
- var isChrome;
9147
- var isFirefox;
9148
- var isMacOs;
9149
- var isIOS;
9150
- var invisibleScrollbar;
9151
- var browserScrollbarWidth;
9152
- var maxDivHeight;
9153
- function _isBrowserSafari() {
9154
- if (isSafari === void 0) {
9155
- isSafari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent);
9156
- }
9157
- return isSafari;
9158
- }
9159
- function _getSafariVersion() {
9160
- if (safariVersion === void 0) {
9161
- if (_isBrowserSafari()) {
9162
- const versionMatch = navigator.userAgent.match(/version\/(\d+)/i);
9163
- if (versionMatch) {
9164
- safariVersion = versionMatch[1] != null ? parseFloat(versionMatch[1]) : 0;
9165
- }
9166
- } else {
9167
- safariVersion = 0;
9168
- }
9169
- }
9170
- return safariVersion;
9171
- }
9172
- function _isBrowserChrome() {
9173
- if (isChrome === void 0) {
9174
- const win = window;
9175
- isChrome = !!win.chrome && (!!win.chrome.webstore || !!win.chrome.runtime) || /Chrome/.test(navigator.userAgent) && /Google Inc/.test(navigator.vendor);
9176
- }
9177
- return isChrome;
9178
- }
9179
- function _isBrowserFirefox() {
9180
- if (isFirefox === void 0) {
9181
- isFirefox = /(firefox)/i.test(navigator.userAgent);
9182
- }
9183
- return isFirefox;
9184
- }
9185
- function _isMacOsUserAgent() {
9186
- if (isMacOs === void 0) {
9187
- isMacOs = /(Mac|iPhone|iPod|iPad)/i.test(navigator.platform);
9188
- }
9189
- return isMacOs;
9190
- }
9191
- function _isIOSUserAgent() {
9192
- if (isIOS === void 0) {
9193
- isIOS = /iPad|iPhone|iPod/.test(navigator.platform) || navigator.platform === "MacIntel" && navigator.maxTouchPoints > 1;
9194
- }
9195
- return isIOS;
9196
- }
9197
- function _browserSupportsPreventScroll() {
9198
- return !_isBrowserSafari() || _getSafariVersion() >= 15;
9199
- }
9200
- function _getTabIndex(el) {
9201
- if (!el) {
9202
- return null;
9203
- }
9204
- const numberTabIndex = el.tabIndex;
9205
- const tabIndex = el.getAttribute("tabIndex");
9206
- if (numberTabIndex === -1 && (tabIndex === null || tabIndex === "" && !_isBrowserFirefox())) {
9207
- return null;
9208
- }
9209
- return numberTabIndex.toString();
9210
- }
9211
- function _getMaxDivHeight() {
9212
- if (maxDivHeight !== void 0) {
9213
- return maxDivHeight;
9214
- }
9215
- if (!document.body) {
9216
- return -1;
9217
- }
9218
- let res = 1e6;
9219
- const testUpTo = _isBrowserFirefox() ? 6e6 : 1e9;
9220
- const div = document.createElement("div");
9221
- document.body.appendChild(div);
9222
- while (true) {
9223
- const test = res * 2;
9224
- div.style.height = test + "px";
9225
- if (test > testUpTo || div.clientHeight !== test) {
9226
- break;
9227
- } else {
9228
- res = test;
9229
- }
9230
- }
9231
- document.body.removeChild(div);
9232
- maxDivHeight = res;
9233
- return res;
9234
- }
9235
- function _getBodyWidth() {
9236
- return document.body?.clientWidth ?? (window.innerHeight || document.documentElement?.clientWidth || -1);
9237
- }
9238
- function _getBodyHeight() {
9239
- return document.body?.clientHeight ?? (window.innerHeight || document.documentElement?.clientHeight || -1);
9240
- }
9241
- function _getScrollbarWidth() {
9242
- if (browserScrollbarWidth == null) {
9243
- initScrollbarWidthAndVisibility();
9244
- }
9245
- return browserScrollbarWidth;
9246
- }
9247
- function initScrollbarWidthAndVisibility() {
9248
- const body = document.body;
9249
- const div = document.createElement("div");
9250
- div.style.width = div.style.height = "100px";
9251
- div.style.opacity = "0";
9252
- div.style.overflow = "scroll";
9253
- div.style.msOverflowStyle = "scrollbar";
9254
- div.style.position = "absolute";
9255
- body.appendChild(div);
9256
- let width = div.offsetWidth - div.clientWidth;
9257
- if (width === 0 && div.clientWidth === 0) {
9258
- width = null;
9259
- }
9260
- if (div.parentNode) {
9261
- div.parentNode.removeChild(div);
9262
- }
9263
- if (width != null) {
9264
- browserScrollbarWidth = width;
9265
- invisibleScrollbar = width === 0;
9266
- }
9267
- }
9268
- function _isInvisibleScrollbar() {
9269
- if (invisibleScrollbar == null) {
9270
- initScrollbarWidthAndVisibility();
9271
- }
9272
- return invisibleScrollbar;
9273
- }
9274
-
9275
9143
  // community-modules/core/src/utils/dom.ts
9276
- var rtlNegativeScroll;
9277
9144
  function _radioCssClass(element, elementClass, otherElementClass) {
9278
9145
  const parent = element.parentElement;
9279
9146
  let sibling = parent && parent.firstChild;
@@ -9403,46 +9270,16 @@ function _getElementRectWithOffset(el) {
9403
9270
  bottom: offsetElementRect.bottom + (borderBottomWidth || 0)
9404
9271
  };
9405
9272
  }
9406
- function _isRtlNegativeScroll() {
9407
- if (typeof rtlNegativeScroll === "boolean") {
9408
- return rtlNegativeScroll;
9409
- }
9410
- const template = document.createElement("div");
9411
- template.style.direction = "rtl";
9412
- template.style.width = "1px";
9413
- template.style.height = "1px";
9414
- template.style.position = "fixed";
9415
- template.style.top = "0px";
9416
- template.style.overflow = "hidden";
9417
- template.dir = "rtl";
9418
- template.innerHTML = /* html */
9419
- `<div style="width: 2px">
9420
- <span style="display: inline-block; width: 1px"></span>
9421
- <span style="display: inline-block; width: 1px"></span>
9422
- </div>`;
9423
- document.body.appendChild(template);
9424
- template.scrollLeft = 1;
9425
- rtlNegativeScroll = Math.floor(template.scrollLeft) === 0;
9426
- document.body.removeChild(template);
9427
- return rtlNegativeScroll;
9428
- }
9429
9273
  function _getScrollLeft(element, rtl) {
9430
9274
  let scrollLeft = element.scrollLeft;
9431
9275
  if (rtl) {
9432
9276
  scrollLeft = Math.abs(scrollLeft);
9433
- if (_isBrowserChrome() && !_isRtlNegativeScroll()) {
9434
- scrollLeft = element.scrollWidth - element.getBoundingClientRect().width - scrollLeft;
9435
- }
9436
9277
  }
9437
9278
  return scrollLeft;
9438
9279
  }
9439
9280
  function _setScrollLeft(element, value, rtl) {
9440
9281
  if (rtl) {
9441
- if (_isRtlNegativeScroll()) {
9442
- value *= -1;
9443
- } else if (_isBrowserSafari() || _isBrowserChrome()) {
9444
- value = element.scrollWidth - element.getBoundingClientRect().width - value;
9445
- }
9282
+ value *= -1;
9446
9283
  }
9447
9284
  element.scrollLeft = value;
9448
9285
  }
@@ -9613,6 +9450,138 @@ var NumberSequence = class {
9613
9450
  }
9614
9451
  };
9615
9452
 
9453
+ // community-modules/core/src/utils/browser.ts
9454
+ var isSafari;
9455
+ var safariVersion;
9456
+ var isChrome;
9457
+ var isFirefox;
9458
+ var isMacOs;
9459
+ var isIOS;
9460
+ var invisibleScrollbar;
9461
+ var browserScrollbarWidth;
9462
+ var maxDivHeight;
9463
+ function _isBrowserSafari() {
9464
+ if (isSafari === void 0) {
9465
+ isSafari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent);
9466
+ }
9467
+ return isSafari;
9468
+ }
9469
+ function _getSafariVersion() {
9470
+ if (safariVersion === void 0) {
9471
+ if (_isBrowserSafari()) {
9472
+ const versionMatch = navigator.userAgent.match(/version\/(\d+)/i);
9473
+ if (versionMatch) {
9474
+ safariVersion = versionMatch[1] != null ? parseFloat(versionMatch[1]) : 0;
9475
+ }
9476
+ } else {
9477
+ safariVersion = 0;
9478
+ }
9479
+ }
9480
+ return safariVersion;
9481
+ }
9482
+ function _isBrowserChrome() {
9483
+ if (isChrome === void 0) {
9484
+ const win = window;
9485
+ isChrome = !!win.chrome && (!!win.chrome.webstore || !!win.chrome.runtime) || /Chrome/.test(navigator.userAgent) && /Google Inc/.test(navigator.vendor);
9486
+ }
9487
+ return isChrome;
9488
+ }
9489
+ function _isBrowserFirefox() {
9490
+ if (isFirefox === void 0) {
9491
+ isFirefox = /(firefox)/i.test(navigator.userAgent);
9492
+ }
9493
+ return isFirefox;
9494
+ }
9495
+ function _isMacOsUserAgent() {
9496
+ if (isMacOs === void 0) {
9497
+ isMacOs = /(Mac|iPhone|iPod|iPad)/i.test(navigator.platform);
9498
+ }
9499
+ return isMacOs;
9500
+ }
9501
+ function _isIOSUserAgent() {
9502
+ if (isIOS === void 0) {
9503
+ isIOS = /iPad|iPhone|iPod/.test(navigator.platform) || navigator.platform === "MacIntel" && navigator.maxTouchPoints > 1;
9504
+ }
9505
+ return isIOS;
9506
+ }
9507
+ function _browserSupportsPreventScroll() {
9508
+ return !_isBrowserSafari() || _getSafariVersion() >= 15;
9509
+ }
9510
+ function _getTabIndex(el) {
9511
+ if (!el) {
9512
+ return null;
9513
+ }
9514
+ const numberTabIndex = el.tabIndex;
9515
+ const tabIndex = el.getAttribute("tabIndex");
9516
+ if (numberTabIndex === -1 && (tabIndex === null || tabIndex === "" && !_isBrowserFirefox())) {
9517
+ return null;
9518
+ }
9519
+ return numberTabIndex.toString();
9520
+ }
9521
+ function _getMaxDivHeight() {
9522
+ if (maxDivHeight !== void 0) {
9523
+ return maxDivHeight;
9524
+ }
9525
+ if (!document.body) {
9526
+ return -1;
9527
+ }
9528
+ let res = 1e6;
9529
+ const testUpTo = _isBrowserFirefox() ? 6e6 : 1e9;
9530
+ const div = document.createElement("div");
9531
+ document.body.appendChild(div);
9532
+ while (true) {
9533
+ const test = res * 2;
9534
+ div.style.height = test + "px";
9535
+ if (test > testUpTo || div.clientHeight !== test) {
9536
+ break;
9537
+ } else {
9538
+ res = test;
9539
+ }
9540
+ }
9541
+ document.body.removeChild(div);
9542
+ maxDivHeight = res;
9543
+ return res;
9544
+ }
9545
+ function _getBodyWidth() {
9546
+ return document.body?.clientWidth ?? (window.innerHeight || document.documentElement?.clientWidth || -1);
9547
+ }
9548
+ function _getBodyHeight() {
9549
+ return document.body?.clientHeight ?? (window.innerHeight || document.documentElement?.clientHeight || -1);
9550
+ }
9551
+ function _getScrollbarWidth() {
9552
+ if (browserScrollbarWidth == null) {
9553
+ initScrollbarWidthAndVisibility();
9554
+ }
9555
+ return browserScrollbarWidth;
9556
+ }
9557
+ function initScrollbarWidthAndVisibility() {
9558
+ const body = document.body;
9559
+ const div = document.createElement("div");
9560
+ div.style.width = div.style.height = "100px";
9561
+ div.style.opacity = "0";
9562
+ div.style.overflow = "scroll";
9563
+ div.style.msOverflowStyle = "scrollbar";
9564
+ div.style.position = "absolute";
9565
+ body.appendChild(div);
9566
+ let width = div.offsetWidth - div.clientWidth;
9567
+ if (width === 0 && div.clientWidth === 0) {
9568
+ width = null;
9569
+ }
9570
+ if (div.parentNode) {
9571
+ div.parentNode.removeChild(div);
9572
+ }
9573
+ if (width != null) {
9574
+ browserScrollbarWidth = width;
9575
+ invisibleScrollbar = width === 0;
9576
+ }
9577
+ }
9578
+ function _isInvisibleScrollbar() {
9579
+ if (invisibleScrollbar == null) {
9580
+ initScrollbarWidthAndVisibility();
9581
+ }
9582
+ return invisibleScrollbar;
9583
+ }
9584
+
9616
9585
  // community-modules/core/src/widgets/tooltipStateManager.ts
9617
9586
  var SHOW_QUICK_TOOLTIP_DIFF = 1e3;
9618
9587
  var FADE_OUT_TOOLTIP_TIMEOUT = 1e3;
@@ -19853,7 +19822,7 @@ function _defineModule(definition) {
19853
19822
  }
19854
19823
 
19855
19824
  // community-modules/core/src/version.ts
19856
- var VERSION = "32.3.4";
19825
+ var VERSION = "32.3.6";
19857
19826
 
19858
19827
  // community-modules/core/src/filter/columnFilterApi.ts
19859
19828
  function isColumnFilterPresent(beans) {
@@ -26050,7 +26019,7 @@ var GridBodyScrollFeature = class extends BeanStub {
26050
26019
  shouldBlockHorizontalScroll(scrollTo) {
26051
26020
  const clientWidth = this.centerRowsCtrl.getCenterWidth();
26052
26021
  const { scrollWidth } = this.centerRowsCtrl.getViewportElement();
26053
- if (this.enableRtl && _isRtlNegativeScroll()) {
26022
+ if (this.enableRtl) {
26054
26023
  if (scrollTo > 0) {
26055
26024
  return true;
26056
26025
  }
@@ -26089,7 +26058,7 @@ var GridBodyScrollFeature = class extends BeanStub {
26089
26058
  const minScrollLeft = 0;
26090
26059
  const maxScrollLeft = this.centerRowsCtrl.getViewportElement().scrollWidth - this.centerRowsCtrl.getCenterWidth();
26091
26060
  if (!fromAlignedGridsService && this.shouldBlockScrollUpdate(1 /* Horizontal */, hScrollPosition)) {
26092
- if (this.enableRtl && _isRtlNegativeScroll()) {
26061
+ if (this.enableRtl) {
26093
26062
  hScrollPosition = hScrollPosition > 0 ? 0 : maxScrollLeft;
26094
26063
  } else {
26095
26064
  hScrollPosition = Math.min(Math.max(hScrollPosition, minScrollLeft), maxScrollLeft);
@@ -48015,7 +47984,7 @@ var GridSerializer = class extends import_core6.BeanStub {
48015
47984
  };
48016
47985
 
48017
47986
  // community-modules/csv-export/src/version.ts
48018
- var VERSION = "32.3.4";
47987
+ var VERSION = "32.3.6";
48019
47988
 
48020
47989
  // community-modules/csv-export/src/csvExportModule.ts
48021
47990
  var CsvExportCoreModule = (0, import_core7._defineModule)({
@@ -49272,7 +49241,7 @@ function getInfiniteRowCount(beans) {
49272
49241
  }
49273
49242
 
49274
49243
  // community-modules/infinite-row-model/src/version.ts
49275
- var VERSION = "32.3.4";
49244
+ var VERSION = "32.3.6";
49276
49245
 
49277
49246
  // community-modules/infinite-row-model/src/infiniteRowModelModule.ts
49278
49247
  var InfiniteRowModelCoreModule = (0, import_core4._defineModule)({
@@ -54733,7 +54702,7 @@ var AdvancedFilterService = class extends import_core24.BeanStub {
54733
54702
  };
54734
54703
 
54735
54704
  // enterprise-modules/advanced-filter/src/version.ts
54736
- var VERSION = "32.3.4";
54705
+ var VERSION = "32.3.6";
54737
54706
 
54738
54707
  // enterprise-modules/advanced-filter/src/advancedFilterModule.ts
54739
54708
  var AdvancedFilterCoreModule = (0, import_core25._defineModule)({
@@ -56680,7 +56649,7 @@ var import_core101 = __webpack_require__(3423);
56680
56649
  var import_ag_charts_community33 = __webpack_require__(4933);
56681
56650
 
56682
56651
  // enterprise-modules/charts/src/version.ts
56683
- var VERSION = "32.3.4";
56652
+ var VERSION = "32.3.6";
56684
56653
 
56685
56654
  // enterprise-modules/charts/src/charts/chartComp/gridChartComp.ts
56686
56655
  var import_core99 = __webpack_require__(3423);
@@ -68190,7 +68159,7 @@ ${apiError("writeText")}`);
68190
68159
  };
68191
68160
 
68192
68161
  // enterprise-modules/clipboard/src/version.ts
68193
- var VERSION = "32.3.4";
68162
+ var VERSION = "32.3.6";
68194
68163
 
68195
68164
  // enterprise-modules/clipboard/src/clipboardModule.ts
68196
68165
  var ClipboardCoreModule = (0, import_core2._defineModule)({
@@ -70174,7 +70143,7 @@ var ModelItemUtils = class extends import_core14.BeanStub {
70174
70143
  };
70175
70144
 
70176
70145
  // enterprise-modules/column-tool-panel/src/version.ts
70177
- var VERSION = "32.3.4";
70146
+ var VERSION = "32.3.6";
70178
70147
 
70179
70148
  // enterprise-modules/column-tool-panel/src/columnsToolPanelModule.ts
70180
70149
  var ColumnsToolPanelModule = (0, import_core15._defineModule)({
@@ -70802,7 +70771,7 @@ var GridLicenseManager = class extends import_core3.BeanStub {
70802
70771
  };
70803
70772
 
70804
70773
  // enterprise-modules/core/src/version.ts
70805
- var VERSION = "32.3.4";
70774
+ var VERSION = "32.3.6";
70806
70775
 
70807
70776
  // enterprise-modules/core/src/widgets/agMenuItemRenderer.ts
70808
70777
  var import_core4 = __webpack_require__(3423);
@@ -79266,7 +79235,7 @@ function exportMultipleSheetsAsExcel2(beans, params) {
79266
79235
  }
79267
79236
 
79268
79237
  // enterprise-modules/excel-export/src/version.ts
79269
- var VERSION = "32.3.4";
79238
+ var VERSION = "32.3.6";
79270
79239
 
79271
79240
  // enterprise-modules/excel-export/src/excelExportModule.ts
79272
79241
  var ExcelExportCoreModule = (0, import_core10._defineModule)({
@@ -80283,7 +80252,7 @@ var FiltersToolPanel = class extends import_core6.Component {
80283
80252
  };
80284
80253
 
80285
80254
  // enterprise-modules/filter-tool-panel/src/version.ts
80286
- var VERSION = "32.3.4";
80255
+ var VERSION = "32.3.6";
80287
80256
 
80288
80257
  // enterprise-modules/filter-tool-panel/src/filtersToolPanelModule.ts
80289
80258
  var FiltersToolPanelModule = (0, import_core7._defineModule)({
@@ -80625,7 +80594,7 @@ function forEachDetailGridInfo(beans, callback) {
80625
80594
  }
80626
80595
 
80627
80596
  // enterprise-modules/master-detail/src/version.ts
80628
- var VERSION = "32.3.4";
80597
+ var VERSION = "32.3.6";
80629
80598
 
80630
80599
  // enterprise-modules/master-detail/src/masterDetailModule.ts
80631
80600
  var MasterDetailCoreModule = (0, import_core4._defineModule)({
@@ -82520,7 +82489,7 @@ var MenuUtils = class extends import_core11.BeanStub {
82520
82489
  };
82521
82490
 
82522
82491
  // enterprise-modules/menu/src/version.ts
82523
- var VERSION = "32.3.4";
82492
+ var VERSION = "32.3.6";
82524
82493
 
82525
82494
  // enterprise-modules/menu/src/menuModule.ts
82526
82495
  var MenuCoreModule = (0, import_core12._defineModule)({
@@ -83143,7 +83112,7 @@ var MultiFloatingFilterComp = class extends import_core3.Component {
83143
83112
  };
83144
83113
 
83145
83114
  // enterprise-modules/multi-filter/src/version.ts
83146
- var VERSION = "32.3.4";
83115
+ var VERSION = "32.3.6";
83147
83116
 
83148
83117
  // enterprise-modules/multi-filter/src/multiFilterModule.ts
83149
83118
  var MultiFilterCoreModule = (0, import_core4._defineModule)({
@@ -84693,7 +84662,7 @@ var SelectionHandleFactory = class extends import_core5.BeanStub {
84693
84662
  };
84694
84663
 
84695
84664
  // enterprise-modules/range-selection/src/version.ts
84696
- var VERSION = "32.3.4";
84665
+ var VERSION = "32.3.6";
84697
84666
 
84698
84667
  // enterprise-modules/range-selection/src/rangeSelectionModule.ts
84699
84668
  var RangeSelectionCoreModule = (0, import_core6._defineModule)({
@@ -84908,7 +84877,7 @@ var RichSelectCellEditor = class extends import_core.PopupComponent {
84908
84877
  };
84909
84878
 
84910
84879
  // enterprise-modules/rich-select/src/version.ts
84911
- var VERSION = "32.3.4";
84880
+ var VERSION = "32.3.6";
84912
84881
 
84913
84882
  // enterprise-modules/rich-select/src/richSelectModule.ts
84914
84883
  var RichSelectModule = (0, import_core3._defineModule)({
@@ -88664,7 +88633,7 @@ var ShowRowGroupColsService = class extends import_core21.BeanStub {
88664
88633
  };
88665
88634
 
88666
88635
  // enterprise-modules/row-grouping/src/version.ts
88667
- var VERSION = "32.3.4";
88636
+ var VERSION = "32.3.6";
88668
88637
 
88669
88638
  // enterprise-modules/row-grouping/src/rowGroupingModule.ts
88670
88639
  var RowGroupingCoreModule = (0, import_core22._defineModule)({
@@ -93476,7 +93445,7 @@ var TransactionManager = class extends import_core19.BeanStub {
93476
93445
  };
93477
93446
 
93478
93447
  // enterprise-modules/server-side-row-model/src/version.ts
93479
- var VERSION = "32.3.4";
93448
+ var VERSION = "32.3.6";
93480
93449
 
93481
93450
  // enterprise-modules/server-side-row-model/src/serverSideRowModelModule.ts
93482
93451
  var ServerSideRowModelCoreModule = (0, import_core20._defineModule)({
@@ -96077,7 +96046,7 @@ var SetFloatingFilterComp = class extends import_core8.Component {
96077
96046
  };
96078
96047
 
96079
96048
  // enterprise-modules/set-filter/src/version.ts
96080
- var VERSION = "32.3.4";
96049
+ var VERSION = "32.3.6";
96081
96050
 
96082
96051
  // enterprise-modules/set-filter/src/setFilterModule.ts
96083
96052
  var SetFilterCoreModule = (0, import_core9._defineModule)({
@@ -97044,7 +97013,7 @@ var SideBarService = class extends import_core10.BeanStub {
97044
97013
  };
97045
97014
 
97046
97015
  // enterprise-modules/side-bar/src/version.ts
97047
- var VERSION = "32.3.4";
97016
+ var VERSION = "32.3.6";
97048
97017
 
97049
97018
  // enterprise-modules/side-bar/src/sideBarModule.ts
97050
97019
  var SideBarCoreModule = (0, import_core11._defineModule)({
@@ -99234,7 +99203,7 @@ var SparklineTooltipSingleton = class extends import_core5.BeanStub {
99234
99203
  };
99235
99204
 
99236
99205
  // enterprise-modules/sparklines/src/version.ts
99237
- var VERSION = "32.3.4";
99206
+ var VERSION = "32.3.6";
99238
99207
 
99239
99208
  // enterprise-modules/sparklines/src/sparklinesModule.ts
99240
99209
  var SparklinesModule = (0, import_core6._defineModule)({
@@ -99858,7 +99827,7 @@ var StatusBarService = class extends import_core9.BeanStub {
99858
99827
  };
99859
99828
 
99860
99829
  // enterprise-modules/status-bar/src/version.ts
99861
- var VERSION = "32.3.4";
99830
+ var VERSION = "32.3.6";
99862
99831
 
99863
99832
  // enterprise-modules/status-bar/src/statusBarModule.ts
99864
99833
  var StatusBarCoreModule = (0, import_core10._defineModule)({
@@ -99924,7 +99893,7 @@ var import_core2 = __webpack_require__(3423);
99924
99893
  var import_core3 = __webpack_require__(8299);
99925
99894
 
99926
99895
  // enterprise-modules/viewport-row-model/src/version.ts
99927
- var VERSION = "32.3.4";
99896
+ var VERSION = "32.3.6";
99928
99897
 
99929
99898
  // enterprise-modules/viewport-row-model/src/viewportRowModel/viewportRowModel.ts
99930
99899
  var import_core = __webpack_require__(3423);
@@ -111558,7 +111527,7 @@ var DestroyFns = class {
111558
111527
  };
111559
111528
 
111560
111529
  // packages/ag-charts-community/src/version.ts
111561
- var VERSION = "10.3.4";
111530
+ var VERSION = "10.3.6";
111562
111531
 
111563
111532
  // packages/ag-charts-community/src/api/state/historyManager.ts
111564
111533
  var NOT_FOUND = Symbol("previous-memento-not-found");
@@ -124233,7 +124202,7 @@ var Legend = class extends BaseProperties {
124233
124202
  });
124234
124203
  }
124235
124204
  updatePaginationProxyButtons(oldPages) {
124236
- this.proxyLegendPagination.style.display = this.pagination.visible ? "absolute" : "none";
124205
+ this.proxyLegendPagination.style.display = this.pagination.visible ? "block" : "none";
124237
124206
  const oldNeedsButtons = (oldPages?.length ?? this.pages.length) > 1;
124238
124207
  const newNeedsButtons = this.pages.length > 1;
124239
124208
  if (oldNeedsButtons !== newNeedsButtons) {
@@ -138328,10 +138297,10 @@ var PRESETS = {
138328
138297
  function removeUsedEnterpriseOptions(options, silent) {
138329
138298
  let usedOptions = [];
138330
138299
  const isGaugeChart = isAgGaugeChartOptions(options);
138331
- const type = optionsType(options);
138332
- const optionsChartType = type ? chartTypes.get(type) : "unknown";
138300
+ const optsType = optionsType(options);
138301
+ const optionsChartType = optsType ? chartTypes.get(optsType) : "unknown";
138333
138302
  for (const {
138334
- type: type2,
138303
+ type,
138335
138304
  chartTypes: moduleChartTypes,
138336
138305
  optionsKey,
138337
138306
  optionsInnerKey,
@@ -138339,7 +138308,7 @@ function removeUsedEnterpriseOptions(options, silent) {
138339
138308
  } of EXPECTED_ENTERPRISE_MODULES) {
138340
138309
  if (optionsChartType !== "unknown" && !moduleChartTypes.includes(optionsChartType))
138341
138310
  continue;
138342
- if (type2 === "root" || type2 === "legend") {
138311
+ if (type === "root" || type === "legend") {
138343
138312
  const optionValue = options[optionsKey];
138344
138313
  if (optionValue == null)
138345
138314
  continue;
@@ -138350,12 +138319,12 @@ function removeUsedEnterpriseOptions(options, silent) {
138350
138319
  usedOptions.push(`${optionsKey}.${optionsInnerKey}`);
138351
138320
  delete optionValue[optionsInnerKey];
138352
138321
  }
138353
- } else if (type2 === "axis") {
138322
+ } else if (type === "axis") {
138354
138323
  if (!("axes" in options) || !options.axes?.some((axis) => axis.type === identifier))
138355
138324
  continue;
138356
138325
  usedOptions.push(`axis[type=${identifier}]`);
138357
138326
  options.axes = options.axes.filter((axis) => axis.type !== identifier);
138358
- } else if (type2 === "axis-option") {
138327
+ } else if (type === "axis-option") {
138359
138328
  if (!("axes" in options) || !options.axes?.some((axis) => axis[optionsKey]))
138360
138329
  continue;
138361
138330
  usedOptions.push(`axis.${optionsKey}`);
@@ -138364,12 +138333,12 @@ function removeUsedEnterpriseOptions(options, silent) {
138364
138333
  delete axis[optionsKey];
138365
138334
  }
138366
138335
  });
138367
- } else if (type2 === "series") {
138336
+ } else if (type === "series") {
138368
138337
  if (!options.series?.some((series) => series.type === identifier))
138369
138338
  continue;
138370
138339
  usedOptions.push(`series[type=${identifier}]`);
138371
138340
  options.series = options.series.filter((series) => series.type !== identifier);
138372
- } else if (type2 === "series-option") {
138341
+ } else if (type === "series-option") {
138373
138342
  if (!options.series?.some((series) => series[optionsKey]))
138374
138343
  continue;
138375
138344
  usedOptions.push(`series.${optionsKey}`);