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