@axos-web-dev/shared-components 0.0.124 → 0.0.125
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.
|
@@ -46,8 +46,8 @@ const CommercialDeposits = ({
|
|
|
46
46
|
id
|
|
47
47
|
}) => {
|
|
48
48
|
const schema = z.object({
|
|
49
|
-
first_name: z.string({ message: "First
|
|
50
|
-
message: "First
|
|
49
|
+
first_name: z.string({ message: "First Name is required." }).regex(/^[A-Za-z][^0-9_!¡?÷?¿/\\+=@#$%ˆ&*,.^(){}|~<>;:[\]]{1,}$/g, {
|
|
50
|
+
message: "First Name is required."
|
|
51
51
|
}).trim().min(1, { message: "First Name is required." }),
|
|
52
52
|
last_name: z.string({ message: "Last Name is required." }).regex(/^[A-Za-z][^0-9_!¡?÷?¿/\\+=@#$%ˆ&*,.^(){}|~<>;:[\]]{1,}$/g, {
|
|
53
53
|
message: "Last Name is required."
|
|
@@ -63,7 +63,7 @@ const CpraRequest = ({
|
|
|
63
63
|
Contact_Method: z.string(),
|
|
64
64
|
DOB: z.string(),
|
|
65
65
|
First_Name: z.string().regex(/^[A-Za-z][^0-9_!¡?÷?¿/\\+=@#$%ˆ&*,.^(){}|~<>;:[\]]{1,}$/g, {
|
|
66
|
-
message: "First
|
|
66
|
+
message: "First Name is required."
|
|
67
67
|
}).trim().min(1, { message: "First Name is required." }),
|
|
68
68
|
Last_Name: z.string().regex(/^[A-Za-z][^0-9_!¡?÷?¿/\\+=@#$%ˆ&*,.^(){}|~<>;:[\]]{1,}$/g, {
|
|
69
69
|
message: "Last Name is required."
|
|
@@ -603,13 +603,14 @@ const CpraRequest = ({
|
|
|
603
603
|
...register("State_", {
|
|
604
604
|
required: true
|
|
605
605
|
}),
|
|
606
|
-
label: "
|
|
606
|
+
label: "State",
|
|
607
607
|
sizes: "medium",
|
|
608
608
|
required: true,
|
|
609
609
|
error: !!errors.State_,
|
|
610
610
|
helperText: errors.State_?.message,
|
|
611
611
|
variant,
|
|
612
612
|
children: [
|
|
613
|
+
/* @__PURE__ */ jsx("option", { value: "" }),
|
|
613
614
|
/* @__PURE__ */ jsx("option", { value: "AL", children: "Alabama - AL" }),
|
|
614
615
|
/* @__PURE__ */ jsx("option", { value: "AK", children: "Alaska - AK" }),
|
|
615
616
|
/* @__PURE__ */ jsx("option", { value: "AZ", children: "Arizona - AZ" }),
|
|
@@ -288,14 +288,7 @@
|
|
|
288
288
|
padding: 6px;
|
|
289
289
|
}
|
|
290
290
|
}
|
|
291
|
-
@media screen and (max-width:
|
|
292
|
-
.tfms6a1j label {
|
|
293
|
-
height: 48px;
|
|
294
|
-
display: flex;
|
|
295
|
-
align-items: flex-end;
|
|
296
|
-
}
|
|
297
|
-
}
|
|
298
|
-
@media screen and (max-width: 579px) and (min-width: 481px) {
|
|
291
|
+
@media screen and (max-width: 571px) and (min-width: 481px) {
|
|
299
292
|
.tfms6a1j label {
|
|
300
293
|
height: 48px;
|
|
301
294
|
display: flex;
|
|
@@ -303,7 +296,7 @@
|
|
|
303
296
|
}
|
|
304
297
|
}
|
|
305
298
|
@media screen and (max-width: 483px) {
|
|
306
|
-
.
|
|
299
|
+
.tfms6a1k label {
|
|
307
300
|
white-space: nowrap;
|
|
308
301
|
}
|
|
309
302
|
}
|