@mxenabled/connect-widget 0.3.0 → 0.4.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/index.es.js CHANGED
@@ -53419,16 +53419,17 @@ MessageBox.propTypes = {
53419
53419
  MessageBox.displayName = "MessageBox";
53420
53420
 
53421
53421
  const InstitutionBlock = ({ institution, style }) => {
53422
- const { guid, name, url } = institution;
53422
+ const { guid, logo_url, name, url } = institution;
53423
53423
  const tokens = useTokens();
53424
53424
  const styles = getStyles$V(tokens);
53425
53425
  return /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { "data-test": "institution-block", style: { ...styles.institutionBlock, ...style }, children: [
53426
53426
  /* @__PURE__ */ jsxRuntimeExports.jsx(
53427
- InstitutionLogo,
53427
+ De,
53428
53428
  {
53429
53429
  alt: `${name} logo`,
53430
53430
  "data-test": "institution-block-logo",
53431
53431
  institutionGuid: guid,
53432
+ logoUrl: logo_url,
53432
53433
  size: 64
53433
53434
  }
53434
53435
  ),