@linzjs/step-ag-grid 32.4.1 → 32.4.2

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.
@@ -61329,7 +61329,9 @@ const Grid = ({
61329
61329
  ...colDef.cellClassRules,
61330
61330
  "GridCell-readonly": (ccp) => !suppressReadOnlyStyle && !editable(ccp)
61331
61331
  },
61332
- width: colDef.minWidth || 120
61332
+ // If chromatic we fix the size to minWidth if set otherwise 120px
61333
+ // else whatever user has configured which will probably be undefined
61334
+ width: isChromatic() ? colDef.minWidth || 120 : colDef.width
61333
61335
  };
61334
61336
  }
61335
61337
  },