@axos-web-dev/shared-components 1.0.72-patch.1 → 1.0.72-patch.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.
@@ -154,9 +154,15 @@ const ErrorAlert = ({
154
154
  /* @__PURE__ */ jsx("h2", { className: clsx("header_3", headerForm({ variant })), children: "Let's try that again" }),
155
155
  /* @__PURE__ */ jsx("hr", { className: clsx(separator) }),
156
156
  /* @__PURE__ */ jsxs("div", { children: [
157
- /* @__PURE__ */ jsx("p", { children: "The ACE User ID or ACE Company ID you provided isn't recognized." }),
158
157
  /* @__PURE__ */ jsxs("p", { children: [
159
- "Please try entering your ACE User ID and ACE Company ID again or call customer support at",
158
+ "The ",
159
+ /* @__PURE__ */ jsx("b", { children: "Axos Resource Center" }),
160
+ " credentials you provided isn't recognized."
161
+ ] }),
162
+ /* @__PURE__ */ jsxs("p", { children: [
163
+ "Please try entering your ",
164
+ /* @__PURE__ */ jsx("b", { children: "Axos Resource Center" }),
165
+ " credentials again or call customer support at",
160
166
  " ",
161
167
  /* @__PURE__ */ jsx(Hyperlink, { targetUrl: "tel:+8446782722", children: "(844) 678 - 2722" }),
162
168
  " ",
@@ -63,16 +63,20 @@ const SignIn = (props) => {
63
63
  /* @__PURE__ */ jsx("h2", { className: "header_1", children: headline ?? "Log in" }),
64
64
  bodyCopy ?? /* @__PURE__ */ jsxs("div", { className: clsx(body_sign_in), children: [
65
65
  /* @__PURE__ */ jsx("p", { children: "Please login to access this resource." }),
66
- /* @__PURE__ */ jsx("p", { children: "Your Digital Help credentials were sent via email during the onboarding process." })
66
+ /* @__PURE__ */ jsxs("p", { children: [
67
+ "Your ",
68
+ /* @__PURE__ */ jsx("b", { children: "Axos Resource Center" }),
69
+ " credentials were sent via email during the onboarding process."
70
+ ] })
67
71
  ] }),
68
72
  /* @__PURE__ */ jsx("div", { className: `${form_input_wrapper} push_up`, children: /* @__PURE__ */ jsx(
69
73
  Input,
70
74
  {
71
75
  id: "username",
72
76
  ...register("username", { required: true }),
73
- label: "ACE User ID",
77
+ label: "Username",
74
78
  sizes: "medium",
75
- placeholder: "ACE User ID",
79
+ placeholder: "Username",
76
80
  required: true,
77
81
  error: !!errors.username,
78
82
  helperText: errors?.username?.message,
@@ -84,9 +88,9 @@ const SignIn = (props) => {
84
88
  {
85
89
  id: "password",
86
90
  ...register("password", { required: true }),
87
- label: "ACE Company ID",
91
+ label: "Password",
88
92
  sizes: "medium",
89
- placeholder: "ACE Company ID",
93
+ placeholder: "Password",
90
94
  required: true,
91
95
  error: !!errors.password,
92
96
  helperText: errors?.password?.message,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@axos-web-dev/shared-components",
3
3
  "description": "Axos shared components library for web.",
4
- "version": "1.0.72-patch.1",
4
+ "version": "1.0.72-patch.2",
5
5
  "type": "module",
6
6
  "module": "dist/main.js",
7
7
  "types": "dist/main.d.ts",