@mxenabled/connect-widget 2.8.0 → 2.8.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.
package/dist/index.es.js CHANGED
@@ -80263,7 +80263,17 @@ const Verified = ({ microdeposit, onDone }) => {
80263
80263
  variant: "contained",
80264
80264
  children: __("Continue")
80265
80265
  }
80266
- ) })
80266
+ ) }),
80267
+ /* @__PURE__ */ jsxRuntimeExports.jsx(
80268
+ AriaLive,
80269
+ {
80270
+ level: "polite",
80271
+ message: __(
80272
+ "Deposits verified. You're almost done setting things up. Continue to your institution."
80273
+ ),
80274
+ timeout: 100
80275
+ }
80276
+ )
80267
80277
  ] });
80268
80278
  };
80269
80279
  const getStyles$h = (tokens) => ({
@@ -81590,6 +81600,7 @@ const ManualAccountForm = React__default.forwardRef(
81590
81600
  setReturnField(field.name);
81591
81601
  props.setShowDayPicker(true);
81592
81602
  },
81603
+ required: field.validation?.required || false,
81593
81604
  value: values[field.name]
81594
81605
  }
81595
81606
  ) }, i);
@@ -81624,6 +81635,7 @@ const ManualAccountForm = React__default.forwardRef(
81624
81635
  label: field.label,
81625
81636
  name: field.name,
81626
81637
  onChange: handleTextInputChange,
81638
+ required: field.validation?.required || false,
81627
81639
  value: values[field.name]
81628
81640
  }
81629
81641
  ) }, i);
@@ -81640,6 +81652,7 @@ const ManualAccountForm = React__default.forwardRef(
81640
81652
  children: __("Please try saving your account again.")
81641
81653
  }
81642
81654
  ) }) }),
81655
+ /* @__PURE__ */ jsxRuntimeExports.jsx(RequiredFieldNote, { styles: styles.requiredText }),
81643
81656
  /* @__PURE__ */ jsxRuntimeExports.jsx("div", { children: /* @__PURE__ */ jsxRuntimeExports.jsx(
81644
81657
  Button$2,
81645
81658
  {
@@ -81692,6 +81705,9 @@ const getStyles$c = (tokens) => ({
81692
81705
  saveButton: {
81693
81706
  marginTop: tokens.Spacing.Medium,
81694
81707
  width: "100%"
81708
+ },
81709
+ requiredText: {
81710
+ marginTop: "-32px"
81695
81711
  }
81696
81712
  });
81697
81713
  ManualAccountForm.displayName = "ManualAccountForm";