ag-grid-enterprise 35.2.0 → 35.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2406,7 +2406,7 @@ function _findEnterpriseCoreModule(modules) {
2406
2406
  }
2407
2407
  return void 0;
2408
2408
  }
2409
- var VERSION = "35.2.0";
2409
+ var VERSION = "35.2.1";
2410
2410
  var MAX_URL_LENGTH = 2e3;
2411
2411
  var MIN_PARAM_LENGTH = 100;
2412
2412
  var VERSION_PARAM_NAME = "_version_";
@@ -23294,19 +23294,20 @@ var CtrlsService = class extends BeanStub {
23294
23294
  var shared_default = ':where([class^=ag-]),:where([class^=ag-]):after,:where([class^=ag-]):before{box-sizing:border-box}:where([class^=ag-]):where(button){color:inherit}:where([class^=ag-]):where(div,span,label):focus-visible{box-shadow:inset var(--ag-focus-shadow);outline:none;&:where(.invalid){box-shadow:inset var(--ag-focus-error-shadow)}}:where([class^=ag-]) ::-ms-clear{display:none}.ag-hidden{display:none!important}.ag-invisible{visibility:hidden!important}.ag-tab-guard{display:block;height:0;position:absolute;width:0}.ag-tab-guard-top{top:1px}.ag-tab-guard-bottom{bottom:1px}.ag-measurement-container{height:0;overflow:hidden;visibility:hidden;width:0}.ag-measurement-element-border{display:inline-block}.ag-measurement-element-border:before{border-left:var(--ag-internal-measurement-border);content:"";display:block}.ag-popup-child{top:0;z-index:5}.ag-popup-child:where(:not(.ag-tooltip-custom)){box-shadow:var(--ag-popup-shadow)}.ag-input-wrapper,.ag-picker-field-wrapper{align-items:center;display:flex;flex:1 1 auto;line-height:normal;position:relative}.ag-input-field{align-items:center;display:flex;flex-direction:row}.ag-input-field-input:where(:not([type=checkbox],[type=radio])){flex:1 1 auto;min-width:0;width:100%}.ag-chart,.ag-dnd-ghost,.ag-external,.ag-popup,.ag-root-wrapper{cursor:default;line-height:normal;white-space:normal;-webkit-font-smoothing:antialiased;background-color:var(--ag-background-color);color:var(--ag-text-color);color-scheme:var(--ag-browser-color-scheme);font-family:var(--ag-font-family);font-size:var(--ag-font-size);font-weight:var(--ag-font-weight);--ag-indentation-level:0}:where(.ag-icon):before{align-items:center;background-color:currentcolor;color:inherit;content:"";display:flex;font-family:inherit;font-size:var(--ag-icon-size);font-style:normal;font-variant:normal;height:var(--ag-icon-size);justify-content:center;line-height:var(--ag-icon-size);-webkit-mask-size:contain;mask-size:contain;text-transform:none;width:var(--ag-icon-size)}.ag-icon{background-position:50%;background-repeat:no-repeat;background-size:contain;color:var(--ag-icon-color);display:block;height:var(--ag-icon-size);position:relative;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:var(--ag-icon-size)}.ag-disabled .ag-icon,[disabled] .ag-icon{opacity:.5}.ag-icon-grip.ag-disabled,.ag-icon-grip[disabled]{opacity:.35}.ag-icon-loading{animation-duration:1s;animation-iteration-count:infinite;animation-name:spin;animation-timing-function:linear}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.ag-resizer{pointer-events:none;position:absolute;-webkit-user-select:none;-moz-user-select:none;user-select:none;z-index:1}:where(.ag-resizer){&.ag-resizer-topLeft{cursor:nwse-resize;height:5px;left:0;top:0;width:5px}&.ag-resizer-top{cursor:ns-resize;height:5px;left:5px;right:5px;top:0}&.ag-resizer-topRight{cursor:nesw-resize;height:5px;right:0;top:0;width:5px}&.ag-resizer-right{bottom:5px;cursor:ew-resize;right:0;top:5px;width:5px}&.ag-resizer-bottomRight{bottom:0;cursor:nwse-resize;height:5px;right:0;width:5px}&.ag-resizer-bottom{bottom:0;cursor:ns-resize;height:5px;left:5px;right:5px}&.ag-resizer-bottomLeft{bottom:0;cursor:nesw-resize;height:5px;left:0;width:5px}&.ag-resizer-left{bottom:5px;cursor:ew-resize;left:0;top:5px;width:5px}}.ag-menu{background-color:var(--ag-menu-background-color);border:var(--ag-menu-border);border-radius:var(--ag-border-radius);box-shadow:var(--ag-menu-shadow);color:var(--ag-menu-text-color);max-height:100%;overflow-y:auto;position:absolute;-webkit-user-select:none;-moz-user-select:none;user-select:none}';
23295
23295
  var IS_SSR = typeof window !== "object" || !window?.document?.fonts?.forEach;
23296
23296
  var FORCE_LEGACY_THEMES = false;
23297
- var _injectGlobalCSS = (css, styleContainer, debugId, layer, priority, nonce, isParams = false) => {
23297
+ var _injectGlobalCSS = (rawCss, styleContainer, debugId, layer, priority, nonce, isParams = false) => {
23298
23298
  if (IS_SSR || FORCE_LEGACY_THEMES) {
23299
23299
  return;
23300
23300
  }
23301
+ let injectedCss = rawCss;
23301
23302
  if (layer) {
23302
- css = `@layer ${CSS.escape(layer).replaceAll("\\.", ".")} { ${css} }`;
23303
+ injectedCss = `@layer ${CSS.escape(layer).replaceAll("\\.", ".")} { ${rawCss} }`;
23303
23304
  }
23304
23305
  let injections = injectionState.map.get(styleContainer);
23305
23306
  if (!injections) {
23306
23307
  injections = [];
23307
23308
  injectionState.map.set(styleContainer, injections);
23308
23309
  }
23309
- if (injections.some((i) => i.css === css)) {
23310
+ if (injections.some((i) => i.injectedCss === injectedCss)) {
23310
23311
  return;
23311
23312
  }
23312
23313
  const el = document.createElement("style");
@@ -23315,8 +23316,8 @@ var _injectGlobalCSS = (css, styleContainer, debugId, layer, priority, nonce, is
23315
23316
  }
23316
23317
  el.dataset.agCss = debugId;
23317
23318
  el.dataset.agCssVersion = VERSION;
23318
- el.textContent = css;
23319
- const newInjection = { css, el, priority, isParams };
23319
+ el.textContent = injectedCss;
23320
+ const newInjection = { rawCss, injectedCss, el, priority, isParams };
23320
23321
  let insertAfter;
23321
23322
  for (const injection of injections) {
23322
23323
  if (injection.priority > priority) {
@@ -23383,7 +23384,7 @@ var removeStaleParamsCss = (styleContainer, deleteAll = false) => {
23383
23384
  }
23384
23385
  const injections = injectionState.map.get(styleContainer) ?? [];
23385
23386
  for (let i = injections.length - 1; i >= 0; i--) {
23386
- if (deleteAll || injections[i].isParams && !neededCss.has(injections[i].css)) {
23387
+ if (deleteAll || injections[i].isParams && !neededCss.has(injections[i].rawCss)) {
23387
23388
  injections[i].el.remove();
23388
23389
  injections.splice(i, 1);
23389
23390
  }
@@ -61948,7 +61949,7 @@ var _LicenseManager = class _LicenseManager {
61948
61949
  }
61949
61950
  };
61950
61951
  // eslint-disable-next-line no-restricted-syntax
61951
- _LicenseManager.RELEASE_INFORMATION = "MTc3NDQyNTc0Nzc3NQ==";
61952
+ _LicenseManager.RELEASE_INFORMATION = "MTc3NTU1MDg5NDgwOQ==";
61952
61953
  var LicenseManager = _LicenseManager;
61953
61954
 
61954
61955
  // packages/ag-grid-enterprise/src/license/watermark.css
@@ -70156,7 +70157,7 @@ var AgGroupComponentSelector = {
70156
70157
  };
70157
70158
 
70158
70159
  // packages/ag-grid-enterprise/src/version.ts
70159
- var VERSION2 = "35.2.0";
70160
+ var VERSION2 = "35.2.1";
70160
70161
 
70161
70162
  // packages/ag-grid-enterprise/src/agGridEnterpriseModule.ts
70162
70163
  var EnterpriseCoreModule = {
@@ -84850,7 +84851,7 @@ var ColumnMenuModule = {
84850
84851
  showColumnChooser,
84851
84852
  hideColumnChooser
84852
84853
  },
84853
- dependsOn: [MenuCoreModule, SharedDragAndDropModule, ColumnMoveModule]
84854
+ dependsOn: [MenuCoreModule, SharedColumnStateUpdateStrategyModule, SharedDragAndDropModule, ColumnMoveModule]
84854
84855
  };
84855
84856
  var ContextMenuModule = {
84856
84857
  moduleName: "ContextMenu",