@abgov/react-components 5.0.0-alpha.2 → 5.0.0-alpha.3

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/index.mjs CHANGED
@@ -2861,12 +2861,13 @@ function GoAMicrositeHeader({
2861
2861
  "goa-microsite-header",
2862
2862
  {
2863
2863
  type,
2864
- version,
2864
+ version: typeof version === "string" ? version : void 0,
2865
2865
  feedbackurl: feedbackUrl,
2866
2866
  "data-testid": testId,
2867
2867
  maxcontentwidth: maxContentWidth,
2868
2868
  feedbackurltarget: feedbackUrlTarget,
2869
- headerurltarget: headerUrlTarget
2869
+ headerurltarget: headerUrlTarget,
2870
+ children: version && typeof version !== "string" && /* @__PURE__ */ jsx("div", { slot: "version", children: version })
2870
2871
  }
2871
2872
  );
2872
2873
  }