@axos-web-dev/shared-components 0.0.135 → 0.0.136
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/Forms/SalesforceFieldsForm.d.ts +8 -0
- package/dist/Forms/SalesforceFieldsForm.js +21 -1
- package/dist/Input/InputProps.d.ts +0 -6
- package/dist/Table/Table.d.ts +2 -1
- package/dist/VideoTile/VideoTile.js +1 -1
- package/dist/utils/allowedAxosDomains.js +2 -1
- package/package.json +1 -1
- package/dist/Forms/BlendPurchase.d.ts +0 -11
- package/dist/Forms/BlendPurchase.js +0 -215
- package/dist/Forms/BlendRefinance.d.ts +0 -11
- package/dist/Forms/BlendRefinance.js +0 -215
- package/dist/Input/DatePicker.css.d.ts +0 -1
- package/dist/Input/DatePicker.css.js +0 -6
- package/dist/Input/Datepicker.d.ts +0 -3
- package/dist/Input/Datepicker.js +0 -47
- package/dist/Input/InputDate.css.d.ts +0 -6
- package/dist/Input/InputDate.css.js +0 -15
- package/dist/Input/InputDate.d.ts +0 -3
- package/dist/Input/InputDate.js +0 -47
- package/dist/assets/Input/DatePicker.css +0 -95
- package/dist/assets/Input/InputDate.css +0 -39
|
@@ -20,6 +20,8 @@ export interface SalesforceInputs {
|
|
|
20
20
|
First_UTMMedium__c: string;
|
|
21
21
|
First_UTMSource__c: string;
|
|
22
22
|
First_UTMTerm__c: string;
|
|
23
|
+
cjdata: string;
|
|
24
|
+
cjevent: string;
|
|
23
25
|
}
|
|
24
26
|
export declare const SalesforceSchema: z.ZodObject<{
|
|
25
27
|
Brand_SFDC2__c: z.ZodOptional<z.ZodString>;
|
|
@@ -35,6 +37,8 @@ export declare const SalesforceSchema: z.ZodObject<{
|
|
|
35
37
|
First_UTMMedium__c: z.ZodOptional<z.ZodString>;
|
|
36
38
|
First_UTMSource__c: z.ZodOptional<z.ZodString>;
|
|
37
39
|
First_UTMTerm__c: z.ZodOptional<z.ZodString>;
|
|
40
|
+
utm_cjdata: z.ZodOptional<z.ZodString>;
|
|
41
|
+
utm_cjevent: z.ZodOptional<z.ZodString>;
|
|
38
42
|
}, "strip", z.ZodTypeAny, {
|
|
39
43
|
Brand_SFDC2__c?: string | undefined;
|
|
40
44
|
Branch_SFDC2__c?: string | undefined;
|
|
@@ -49,6 +53,8 @@ export declare const SalesforceSchema: z.ZodObject<{
|
|
|
49
53
|
First_UTMMedium__c?: string | undefined;
|
|
50
54
|
First_UTMSource__c?: string | undefined;
|
|
51
55
|
First_UTMTerm__c?: string | undefined;
|
|
56
|
+
utm_cjdata?: string | undefined;
|
|
57
|
+
utm_cjevent?: string | undefined;
|
|
52
58
|
}, {
|
|
53
59
|
Brand_SFDC2__c?: string | undefined;
|
|
54
60
|
Branch_SFDC2__c?: string | undefined;
|
|
@@ -63,6 +69,8 @@ export declare const SalesforceSchema: z.ZodObject<{
|
|
|
63
69
|
First_UTMMedium__c?: string | undefined;
|
|
64
70
|
First_UTMSource__c?: string | undefined;
|
|
65
71
|
First_UTMTerm__c?: string | undefined;
|
|
72
|
+
utm_cjdata?: string | undefined;
|
|
73
|
+
utm_cjevent?: string | undefined;
|
|
66
74
|
}>;
|
|
67
75
|
export interface QueryParams {
|
|
68
76
|
[str: string]: string;
|
|
@@ -23,7 +23,9 @@ const SalesforceSchema = z.object({
|
|
|
23
23
|
First_UTMContent__c: z.string().optional(),
|
|
24
24
|
First_UTMMedium__c: z.string().optional(),
|
|
25
25
|
First_UTMSource__c: z.string().optional(),
|
|
26
|
-
First_UTMTerm__c: z.string().optional()
|
|
26
|
+
First_UTMTerm__c: z.string().optional(),
|
|
27
|
+
utm_cjdata: z.string().optional(),
|
|
28
|
+
utm_cjevent: z.string().optional()
|
|
27
29
|
});
|
|
28
30
|
const SalesforceFieldsForm = memo(function SaleforceFieldForm({
|
|
29
31
|
salesforceFields,
|
|
@@ -138,6 +140,24 @@ const SalesforceFieldsForm = memo(function SaleforceFieldForm({
|
|
|
138
140
|
value: queryParams?.utm_term
|
|
139
141
|
})
|
|
140
142
|
}
|
|
143
|
+
),
|
|
144
|
+
/* @__PURE__ */ jsx(
|
|
145
|
+
"input",
|
|
146
|
+
{
|
|
147
|
+
type: "hidden",
|
|
148
|
+
...register("Primary_Cjdata__c", {
|
|
149
|
+
value: `${queryParams?.utm_cjdata}`
|
|
150
|
+
})
|
|
151
|
+
}
|
|
152
|
+
),
|
|
153
|
+
/* @__PURE__ */ jsx(
|
|
154
|
+
"input",
|
|
155
|
+
{
|
|
156
|
+
type: "hidden",
|
|
157
|
+
...register("Primary_Cjevent__c", {
|
|
158
|
+
value: `${queryParams?.utm_cjevent}`
|
|
159
|
+
})
|
|
160
|
+
}
|
|
141
161
|
)
|
|
142
162
|
] });
|
|
143
163
|
});
|
|
@@ -36,9 +36,3 @@ export interface RadioButtonProps extends InputProps {
|
|
|
36
36
|
value: string | number;
|
|
37
37
|
groupName: string;
|
|
38
38
|
}
|
|
39
|
-
export interface DatepickerInputProps extends InputProps {
|
|
40
|
-
month?: string;
|
|
41
|
-
selected?: string;
|
|
42
|
-
show?: boolean;
|
|
43
|
-
onDateChange: (day: string) => void;
|
|
44
|
-
}
|
package/dist/Table/Table.d.ts
CHANGED
|
@@ -15,11 +15,13 @@ export declare const TableCell: ({ children, as, variant, highlighted, ...props
|
|
|
15
15
|
suppressContentEditableWarning?: boolean | undefined;
|
|
16
16
|
suppressHydrationWarning?: boolean | undefined;
|
|
17
17
|
accessKey?: string | undefined;
|
|
18
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
|
|
18
19
|
autoFocus?: boolean | undefined;
|
|
19
20
|
contentEditable?: (boolean | "false" | "true") | "inherit" | "plaintext-only" | undefined;
|
|
20
21
|
contextMenu?: string | undefined;
|
|
21
22
|
dir?: string | undefined;
|
|
22
23
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
24
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
23
25
|
hidden?: boolean | undefined;
|
|
24
26
|
id?: string | undefined;
|
|
25
27
|
lang?: string | undefined;
|
|
@@ -43,7 +45,6 @@ export declare const TableCell: ({ children, as, variant, highlighted, ...props
|
|
|
43
45
|
rev?: string | undefined;
|
|
44
46
|
typeof?: string | undefined;
|
|
45
47
|
vocab?: string | undefined;
|
|
46
|
-
autoCapitalize?: string | undefined;
|
|
47
48
|
autoCorrect?: string | undefined;
|
|
48
49
|
autoSave?: string | undefined;
|
|
49
50
|
color?: string | undefined;
|
|
@@ -19,7 +19,8 @@ const moreDomains = {
|
|
|
19
19
|
"{UNVENROLLMENT}": process.env.UNVENROLLMENT_URL || "https://enroll.axosbank.com",
|
|
20
20
|
"{AUTOAXB}": "https://auto.axosbank.com/partner/axos-purchase/AU",
|
|
21
21
|
"{COMMERCIALPORTAL}": process.env.COMMERCIALPORTAL_URL || "https://portals.axosbank.com/",
|
|
22
|
-
"{DEVAXC}": process.env.DEVELOPER_CLEARING || "https://developer.axosclearing.com"
|
|
22
|
+
"{DEVAXC}": process.env.DEVELOPER_CLEARING || "https://developer.axosclearing.com",
|
|
23
|
+
"{AFF}": process.env.FUNDFINDER_URL || "https://axosfundfinder.com/"
|
|
23
24
|
};
|
|
24
25
|
const isAllowedUrl = (url) => {
|
|
25
26
|
const uri = new URL(url, location.href);
|
package/package.json
CHANGED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { FormProps } from './FormProps';
|
|
2
|
-
|
|
3
|
-
export type BlendPurchaseInputs = {
|
|
4
|
-
property_Type: string;
|
|
5
|
-
Occupancy: string;
|
|
6
|
-
SalesPrice: string;
|
|
7
|
-
DownPayment: string;
|
|
8
|
-
CreditScore: string;
|
|
9
|
-
ZipCode: string;
|
|
10
|
-
};
|
|
11
|
-
export declare const BlendPurchase: ({ icon, children, onSubmit, disclosure, variant: fullVariant, headline, description, callToAction, validateEmail, id, }: FormProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,215 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
-
import { zodResolver } from "@hookform/resolvers/zod";
|
|
4
|
-
import { Button } from "../Button/Button.js";
|
|
5
|
-
import "../Button/Button.css.js";
|
|
6
|
-
import "react";
|
|
7
|
-
import "react-use";
|
|
8
|
-
import "../Input/Checkbox.js";
|
|
9
|
-
import "../Input/CurrencyInput.js";
|
|
10
|
-
import "../Input/Dropdown.js";
|
|
11
|
-
/* empty css */
|
|
12
|
-
/* empty css */
|
|
13
|
-
import { Input } from "../Input/Input.js";
|
|
14
|
-
import "../Input/Input.css.js";
|
|
15
|
-
import "../Input/InputAmount.js";
|
|
16
|
-
import { InputPhone } from "../Input/InputPhone.js";
|
|
17
|
-
import "../Input/InputTextArea.js";
|
|
18
|
-
import "../icons/ArrowIcon/ArrowIcon.css.js";
|
|
19
|
-
import SvgAxosX from "../icons/AxosX/index.js";
|
|
20
|
-
import SvgComponent from "../icons/AxosX/Blue.js";
|
|
21
|
-
import "../icons/CheckIcon/CheckIcon.css.js";
|
|
22
|
-
/* empty css */
|
|
23
|
-
/* empty css */
|
|
24
|
-
/* empty css */
|
|
25
|
-
/* empty css */
|
|
26
|
-
import { associatedEmail } from "../utils/EverestValidity.js";
|
|
27
|
-
import "../utils/allowedAxosDomains.js";
|
|
28
|
-
import { getVariant } from "../utils/getVariant.js";
|
|
29
|
-
import clsx from "clsx";
|
|
30
|
-
import { useForm, FormProvider } from "react-hook-form";
|
|
31
|
-
import * as z from "zod";
|
|
32
|
-
import { formContainer, iconForm, headerContainer, headerForm, form, descriptionField, formWrapper, disclosureForm, actions } from "./Forms.css.js";
|
|
33
|
-
import { SalesforceSchema } from "./SalesforceFieldsForm.js";
|
|
34
|
-
const BlendPurchase = ({
|
|
35
|
-
icon = false,
|
|
36
|
-
children,
|
|
37
|
-
onSubmit = (values) => {
|
|
38
|
-
console.log(values);
|
|
39
|
-
},
|
|
40
|
-
disclosure,
|
|
41
|
-
variant: fullVariant = "primary",
|
|
42
|
-
headline,
|
|
43
|
-
description,
|
|
44
|
-
callToAction,
|
|
45
|
-
validateEmail,
|
|
46
|
-
id
|
|
47
|
-
}) => {
|
|
48
|
-
const schema = z.object({
|
|
49
|
-
property_Type: z.string().regex(/^[A-Za-z][^0-9_!¡?÷?¿/\\+=@#$%ˆ&*,.^(){}|~<>;:[\]]{1,}$/g).trim().min(1, { message: "First Name is required." }),
|
|
50
|
-
Occupancy: z.string().regex(/^[A-Za-z][^0-9_!¡?÷?¿/\\+=@#$%ˆ&*,.^(){}|~<>;:[\]]{1,}$/g).trim().min(1, { message: "Last Name is required." }),
|
|
51
|
-
SalesPrice: z.string().email({ message: "Email is required." }).refine(async (val) => await validateEmail(val)),
|
|
52
|
-
DownPayment: z.string().regex(/[\d-]{10}/).min(10, { message: "Phone is required." }).max(12, { message: "Phone is required." }).transform((val, ctx) => {
|
|
53
|
-
const removeDashes = val.replace(/-/gi, "");
|
|
54
|
-
if (removeDashes.length !== 10) {
|
|
55
|
-
ctx.addIssue({
|
|
56
|
-
code: z.ZodIssueCode.custom,
|
|
57
|
-
message: "Phone must have at least 10 and no more than 10 characters."
|
|
58
|
-
});
|
|
59
|
-
return z.NEVER;
|
|
60
|
-
}
|
|
61
|
-
return removeDashes;
|
|
62
|
-
}),
|
|
63
|
-
CreditScore: z.string(),
|
|
64
|
-
ZipCode: z.string()
|
|
65
|
-
});
|
|
66
|
-
const methods = useForm({
|
|
67
|
-
resolver: zodResolver(schema.merge(SalesforceSchema), {
|
|
68
|
-
async: true
|
|
69
|
-
}),
|
|
70
|
-
mode: "all",
|
|
71
|
-
defaultValues: {}
|
|
72
|
-
});
|
|
73
|
-
const {
|
|
74
|
-
handleSubmit,
|
|
75
|
-
register,
|
|
76
|
-
formState: { errors, isValid, isSubmitting }
|
|
77
|
-
} = methods;
|
|
78
|
-
const submitForm = async (data) => {
|
|
79
|
-
await onSubmit(data);
|
|
80
|
-
};
|
|
81
|
-
const variant = getVariant(fullVariant);
|
|
82
|
-
return /* @__PURE__ */ jsx(
|
|
83
|
-
"section",
|
|
84
|
-
{
|
|
85
|
-
id: `id_${id}`,
|
|
86
|
-
className: clsx(formContainer({ variant })),
|
|
87
|
-
children: /* @__PURE__ */ jsx("div", { className: clsx("containment"), children: /* @__PURE__ */ jsxs(FormProvider, { ...methods, children: [
|
|
88
|
-
icon && /* @__PURE__ */ jsx("div", { className: clsx("text_center", iconForm), children: ["primary", "secondary"].includes(variant) ? /* @__PURE__ */ jsx(SvgComponent, {}) : /* @__PURE__ */ jsx(SvgAxosX, {}) }),
|
|
89
|
-
/* @__PURE__ */ jsxs("div", { className: `${headerContainer} text_center`, children: [
|
|
90
|
-
/* @__PURE__ */ jsx("h2", { className: clsx("header_2", headerForm({ variant })), children: headline }),
|
|
91
|
-
description && /* @__PURE__ */ jsx(
|
|
92
|
-
"div",
|
|
93
|
-
{
|
|
94
|
-
className: clsx(
|
|
95
|
-
"text_center",
|
|
96
|
-
form,
|
|
97
|
-
descriptionField({ variant })
|
|
98
|
-
),
|
|
99
|
-
children: description
|
|
100
|
-
}
|
|
101
|
-
)
|
|
102
|
-
] }),
|
|
103
|
-
/* @__PURE__ */ jsxs("form", { className: form, onSubmit: handleSubmit(submitForm), children: [
|
|
104
|
-
/* @__PURE__ */ jsxs("div", { className: clsx(formWrapper({ variant })), children: [
|
|
105
|
-
/* @__PURE__ */ jsx("div", { className: "", children: /* @__PURE__ */ jsx(
|
|
106
|
-
Input,
|
|
107
|
-
{
|
|
108
|
-
id: "property_Type",
|
|
109
|
-
...register("property_Type", { required: true }),
|
|
110
|
-
label: "Property Type",
|
|
111
|
-
sizes: "medium",
|
|
112
|
-
required: true,
|
|
113
|
-
error: !!errors.property_Type,
|
|
114
|
-
helperText: errors.property_Type?.message,
|
|
115
|
-
variant
|
|
116
|
-
}
|
|
117
|
-
) }),
|
|
118
|
-
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
119
|
-
Input,
|
|
120
|
-
{
|
|
121
|
-
id: "Occupancy",
|
|
122
|
-
...register("Occupancy", { required: true }),
|
|
123
|
-
label: "Property Usage",
|
|
124
|
-
sizes: "medium",
|
|
125
|
-
required: true,
|
|
126
|
-
error: !!errors.Occupancy,
|
|
127
|
-
helperText: errors.Occupancy?.message,
|
|
128
|
-
variant
|
|
129
|
-
}
|
|
130
|
-
) }),
|
|
131
|
-
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
132
|
-
Input,
|
|
133
|
-
{
|
|
134
|
-
id: "SalesPrice",
|
|
135
|
-
...register("SalesPrice", {
|
|
136
|
-
required: true,
|
|
137
|
-
validate: {
|
|
138
|
-
isValid: associatedEmail
|
|
139
|
-
}
|
|
140
|
-
}),
|
|
141
|
-
label: "Purchase Price",
|
|
142
|
-
sizes: "medium",
|
|
143
|
-
required: true,
|
|
144
|
-
error: !!errors.SalesPrice,
|
|
145
|
-
helperText: errors.SalesPrice?.message,
|
|
146
|
-
variant
|
|
147
|
-
}
|
|
148
|
-
) }),
|
|
149
|
-
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
150
|
-
InputPhone,
|
|
151
|
-
{
|
|
152
|
-
id: "DownPayment",
|
|
153
|
-
...register("DownPayment", {
|
|
154
|
-
required: true,
|
|
155
|
-
maxLength: 12
|
|
156
|
-
}),
|
|
157
|
-
label: "Down Payment",
|
|
158
|
-
sizes: "medium",
|
|
159
|
-
required: true,
|
|
160
|
-
error: !!errors.DownPayment,
|
|
161
|
-
helperText: errors.DownPayment?.message,
|
|
162
|
-
variant
|
|
163
|
-
}
|
|
164
|
-
) }),
|
|
165
|
-
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
166
|
-
InputPhone,
|
|
167
|
-
{
|
|
168
|
-
id: "CreditScore",
|
|
169
|
-
...register("CreditScore", {
|
|
170
|
-
required: true,
|
|
171
|
-
maxLength: 12
|
|
172
|
-
}),
|
|
173
|
-
label: "Credit Score",
|
|
174
|
-
sizes: "medium",
|
|
175
|
-
required: true,
|
|
176
|
-
error: !!errors.CreditScore,
|
|
177
|
-
helperText: errors.CreditScore?.message,
|
|
178
|
-
variant
|
|
179
|
-
}
|
|
180
|
-
) }),
|
|
181
|
-
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
182
|
-
InputPhone,
|
|
183
|
-
{
|
|
184
|
-
id: "ZipCode",
|
|
185
|
-
...register("ZipCode", { required: true, maxLength: 12 }),
|
|
186
|
-
label: "Zip Code",
|
|
187
|
-
sizes: "medium",
|
|
188
|
-
required: true,
|
|
189
|
-
error: !!errors.ZipCode,
|
|
190
|
-
helperText: errors.ZipCode?.message,
|
|
191
|
-
variant
|
|
192
|
-
}
|
|
193
|
-
) })
|
|
194
|
-
] }),
|
|
195
|
-
children,
|
|
196
|
-
/* @__PURE__ */ jsx("div", { className: disclosureForm({ variant }), children: disclosure }),
|
|
197
|
-
/* @__PURE__ */ jsx("div", { className: actions, children: /* @__PURE__ */ jsx(
|
|
198
|
-
Button,
|
|
199
|
-
{
|
|
200
|
-
color: getVariant(callToAction?.variant),
|
|
201
|
-
as: "button",
|
|
202
|
-
type: "submit",
|
|
203
|
-
disabled: !isValid || isSubmitting,
|
|
204
|
-
children: callToAction?.displayText
|
|
205
|
-
}
|
|
206
|
-
) })
|
|
207
|
-
] })
|
|
208
|
-
] }) })
|
|
209
|
-
},
|
|
210
|
-
id
|
|
211
|
-
);
|
|
212
|
-
};
|
|
213
|
-
export {
|
|
214
|
-
BlendPurchase
|
|
215
|
-
};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { FormProps } from './FormProps';
|
|
2
|
-
|
|
3
|
-
export type BlendPurchaseInputs = {
|
|
4
|
-
property_Type: string;
|
|
5
|
-
Occupancy: string;
|
|
6
|
-
SalesPrice: string;
|
|
7
|
-
DownPayment: string;
|
|
8
|
-
CreditScore: string;
|
|
9
|
-
ZipCode: string;
|
|
10
|
-
};
|
|
11
|
-
export declare const BlendPurchase: ({ icon, children, onSubmit, disclosure, variant: fullVariant, headline, description, callToAction, validateEmail, id, }: FormProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,215 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
-
import { zodResolver } from "@hookform/resolvers/zod";
|
|
4
|
-
import { Button } from "../Button/Button.js";
|
|
5
|
-
import "../Button/Button.css.js";
|
|
6
|
-
import "react";
|
|
7
|
-
import "react-use";
|
|
8
|
-
import "../Input/Checkbox.js";
|
|
9
|
-
import "../Input/CurrencyInput.js";
|
|
10
|
-
import "../Input/Dropdown.js";
|
|
11
|
-
/* empty css */
|
|
12
|
-
/* empty css */
|
|
13
|
-
import { Input } from "../Input/Input.js";
|
|
14
|
-
import "../Input/Input.css.js";
|
|
15
|
-
import "../Input/InputAmount.js";
|
|
16
|
-
import { InputPhone } from "../Input/InputPhone.js";
|
|
17
|
-
import "../Input/InputTextArea.js";
|
|
18
|
-
import "../icons/ArrowIcon/ArrowIcon.css.js";
|
|
19
|
-
import SvgAxosX from "../icons/AxosX/index.js";
|
|
20
|
-
import SvgComponent from "../icons/AxosX/Blue.js";
|
|
21
|
-
import "../icons/CheckIcon/CheckIcon.css.js";
|
|
22
|
-
/* empty css */
|
|
23
|
-
/* empty css */
|
|
24
|
-
/* empty css */
|
|
25
|
-
/* empty css */
|
|
26
|
-
import { associatedEmail } from "../utils/EverestValidity.js";
|
|
27
|
-
import "../utils/allowedAxosDomains.js";
|
|
28
|
-
import { getVariant } from "../utils/getVariant.js";
|
|
29
|
-
import clsx from "clsx";
|
|
30
|
-
import { useForm, FormProvider } from "react-hook-form";
|
|
31
|
-
import * as z from "zod";
|
|
32
|
-
import { formContainer, iconForm, headerContainer, headerForm, form, descriptionField, formWrapper, disclosureForm, actions } from "./Forms.css.js";
|
|
33
|
-
import { SalesforceSchema } from "./SalesforceFieldsForm.js";
|
|
34
|
-
const BlendPurchase = ({
|
|
35
|
-
icon = false,
|
|
36
|
-
children,
|
|
37
|
-
onSubmit = (values) => {
|
|
38
|
-
console.log(values);
|
|
39
|
-
},
|
|
40
|
-
disclosure,
|
|
41
|
-
variant: fullVariant = "primary",
|
|
42
|
-
headline,
|
|
43
|
-
description,
|
|
44
|
-
callToAction,
|
|
45
|
-
validateEmail,
|
|
46
|
-
id
|
|
47
|
-
}) => {
|
|
48
|
-
const schema = z.object({
|
|
49
|
-
property_Type: z.string().regex(/^[A-Za-z][^0-9_!¡?÷?¿/\\+=@#$%ˆ&*,.^(){}|~<>;:[\]]{1,}$/g).trim().min(1, { message: "First Name is required." }),
|
|
50
|
-
Occupancy: z.string().regex(/^[A-Za-z][^0-9_!¡?÷?¿/\\+=@#$%ˆ&*,.^(){}|~<>;:[\]]{1,}$/g).trim().min(1, { message: "Last Name is required." }),
|
|
51
|
-
SalesPrice: z.string().email({ message: "Email is required." }).refine(async (val) => await validateEmail(val)),
|
|
52
|
-
DownPayment: z.string().regex(/[\d-]{10}/).min(10, { message: "Phone is required." }).max(12, { message: "Phone is required." }).transform((val, ctx) => {
|
|
53
|
-
const removeDashes = val.replace(/-/gi, "");
|
|
54
|
-
if (removeDashes.length !== 10) {
|
|
55
|
-
ctx.addIssue({
|
|
56
|
-
code: z.ZodIssueCode.custom,
|
|
57
|
-
message: "Phone must have at least 10 and no more than 10 characters."
|
|
58
|
-
});
|
|
59
|
-
return z.NEVER;
|
|
60
|
-
}
|
|
61
|
-
return removeDashes;
|
|
62
|
-
}),
|
|
63
|
-
CreditScore: z.string(),
|
|
64
|
-
ZipCode: z.string()
|
|
65
|
-
});
|
|
66
|
-
const methods = useForm({
|
|
67
|
-
resolver: zodResolver(schema.merge(SalesforceSchema), {
|
|
68
|
-
async: true
|
|
69
|
-
}),
|
|
70
|
-
mode: "all",
|
|
71
|
-
defaultValues: {}
|
|
72
|
-
});
|
|
73
|
-
const {
|
|
74
|
-
handleSubmit,
|
|
75
|
-
register,
|
|
76
|
-
formState: { errors, isValid, isSubmitting }
|
|
77
|
-
} = methods;
|
|
78
|
-
const submitForm = async (data) => {
|
|
79
|
-
await onSubmit(data);
|
|
80
|
-
};
|
|
81
|
-
const variant = getVariant(fullVariant);
|
|
82
|
-
return /* @__PURE__ */ jsx(
|
|
83
|
-
"section",
|
|
84
|
-
{
|
|
85
|
-
id: `id_${id}`,
|
|
86
|
-
className: clsx(formContainer({ variant })),
|
|
87
|
-
children: /* @__PURE__ */ jsx("div", { className: clsx("containment"), children: /* @__PURE__ */ jsxs(FormProvider, { ...methods, children: [
|
|
88
|
-
icon && /* @__PURE__ */ jsx("div", { className: clsx("text_center", iconForm), children: ["primary", "secondary"].includes(variant) ? /* @__PURE__ */ jsx(SvgComponent, {}) : /* @__PURE__ */ jsx(SvgAxosX, {}) }),
|
|
89
|
-
/* @__PURE__ */ jsxs("div", { className: `${headerContainer} text_center`, children: [
|
|
90
|
-
/* @__PURE__ */ jsx("h2", { className: clsx("header_2", headerForm({ variant })), children: headline }),
|
|
91
|
-
description && /* @__PURE__ */ jsx(
|
|
92
|
-
"div",
|
|
93
|
-
{
|
|
94
|
-
className: clsx(
|
|
95
|
-
"text_center",
|
|
96
|
-
form,
|
|
97
|
-
descriptionField({ variant })
|
|
98
|
-
),
|
|
99
|
-
children: description
|
|
100
|
-
}
|
|
101
|
-
)
|
|
102
|
-
] }),
|
|
103
|
-
/* @__PURE__ */ jsxs("form", { className: form, onSubmit: handleSubmit(submitForm), children: [
|
|
104
|
-
/* @__PURE__ */ jsxs("div", { className: clsx(formWrapper({ variant })), children: [
|
|
105
|
-
/* @__PURE__ */ jsx("div", { className: "", children: /* @__PURE__ */ jsx(
|
|
106
|
-
Input,
|
|
107
|
-
{
|
|
108
|
-
id: "property_Type",
|
|
109
|
-
...register("property_Type", { required: true }),
|
|
110
|
-
label: "Property Type",
|
|
111
|
-
sizes: "medium",
|
|
112
|
-
required: true,
|
|
113
|
-
error: !!errors.property_Type,
|
|
114
|
-
helperText: errors.property_Type?.message,
|
|
115
|
-
variant
|
|
116
|
-
}
|
|
117
|
-
) }),
|
|
118
|
-
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
119
|
-
Input,
|
|
120
|
-
{
|
|
121
|
-
id: "Occupancy",
|
|
122
|
-
...register("Occupancy", { required: true }),
|
|
123
|
-
label: "Property Usage",
|
|
124
|
-
sizes: "medium",
|
|
125
|
-
required: true,
|
|
126
|
-
error: !!errors.Occupancy,
|
|
127
|
-
helperText: errors.Occupancy?.message,
|
|
128
|
-
variant
|
|
129
|
-
}
|
|
130
|
-
) }),
|
|
131
|
-
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
132
|
-
Input,
|
|
133
|
-
{
|
|
134
|
-
id: "SalesPrice",
|
|
135
|
-
...register("SalesPrice", {
|
|
136
|
-
required: true,
|
|
137
|
-
validate: {
|
|
138
|
-
isValid: associatedEmail
|
|
139
|
-
}
|
|
140
|
-
}),
|
|
141
|
-
label: "Purchase Price",
|
|
142
|
-
sizes: "medium",
|
|
143
|
-
required: true,
|
|
144
|
-
error: !!errors.SalesPrice,
|
|
145
|
-
helperText: errors.SalesPrice?.message,
|
|
146
|
-
variant
|
|
147
|
-
}
|
|
148
|
-
) }),
|
|
149
|
-
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
150
|
-
InputPhone,
|
|
151
|
-
{
|
|
152
|
-
id: "DownPayment",
|
|
153
|
-
...register("DownPayment", {
|
|
154
|
-
required: true,
|
|
155
|
-
maxLength: 12
|
|
156
|
-
}),
|
|
157
|
-
label: "Down Payment",
|
|
158
|
-
sizes: "medium",
|
|
159
|
-
required: true,
|
|
160
|
-
error: !!errors.DownPayment,
|
|
161
|
-
helperText: errors.DownPayment?.message,
|
|
162
|
-
variant
|
|
163
|
-
}
|
|
164
|
-
) }),
|
|
165
|
-
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
166
|
-
InputPhone,
|
|
167
|
-
{
|
|
168
|
-
id: "CreditScore",
|
|
169
|
-
...register("CreditScore", {
|
|
170
|
-
required: true,
|
|
171
|
-
maxLength: 12
|
|
172
|
-
}),
|
|
173
|
-
label: "Credit Score",
|
|
174
|
-
sizes: "medium",
|
|
175
|
-
required: true,
|
|
176
|
-
error: !!errors.CreditScore,
|
|
177
|
-
helperText: errors.CreditScore?.message,
|
|
178
|
-
variant
|
|
179
|
-
}
|
|
180
|
-
) }),
|
|
181
|
-
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
182
|
-
InputPhone,
|
|
183
|
-
{
|
|
184
|
-
id: "ZipCode",
|
|
185
|
-
...register("ZipCode", { required: true, maxLength: 12 }),
|
|
186
|
-
label: "Zip Code",
|
|
187
|
-
sizes: "medium",
|
|
188
|
-
required: true,
|
|
189
|
-
error: !!errors.ZipCode,
|
|
190
|
-
helperText: errors.ZipCode?.message,
|
|
191
|
-
variant
|
|
192
|
-
}
|
|
193
|
-
) })
|
|
194
|
-
] }),
|
|
195
|
-
children,
|
|
196
|
-
/* @__PURE__ */ jsx("div", { className: disclosureForm({ variant }), children: disclosure }),
|
|
197
|
-
/* @__PURE__ */ jsx("div", { className: actions, children: /* @__PURE__ */ jsx(
|
|
198
|
-
Button,
|
|
199
|
-
{
|
|
200
|
-
color: getVariant(callToAction?.variant),
|
|
201
|
-
as: "button",
|
|
202
|
-
type: "submit",
|
|
203
|
-
disabled: !isValid || isSubmitting,
|
|
204
|
-
children: callToAction?.displayText
|
|
205
|
-
}
|
|
206
|
-
) })
|
|
207
|
-
] })
|
|
208
|
-
] }) })
|
|
209
|
-
},
|
|
210
|
-
id
|
|
211
|
-
);
|
|
212
|
-
};
|
|
213
|
-
export {
|
|
214
|
-
BlendPurchase
|
|
215
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const datePicker: string;
|
package/dist/Input/Datepicker.js
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
import { jsxs, jsx } from "react/jsx-runtime";
|
|
3
|
-
import { useState } from "react";
|
|
4
|
-
import DatePicker from "react-date-picker";
|
|
5
|
-
import { wrapper, labelClassName, container, iconContainer, iconInput, helperText } from "./Input.css.js";
|
|
6
|
-
const DatePickerInput = (props) => {
|
|
7
|
-
const {
|
|
8
|
-
disabled,
|
|
9
|
-
label,
|
|
10
|
-
iconLeft,
|
|
11
|
-
iconRight,
|
|
12
|
-
sizes,
|
|
13
|
-
error = false,
|
|
14
|
-
helperText: helper,
|
|
15
|
-
variant
|
|
16
|
-
} = props;
|
|
17
|
-
const [value, onChange] = useState();
|
|
18
|
-
return /* @__PURE__ */ jsxs("div", { className: wrapper(), children: [
|
|
19
|
-
label && /* @__PURE__ */ jsx(
|
|
20
|
-
"label",
|
|
21
|
-
{
|
|
22
|
-
className: labelClassName({ error, variant }),
|
|
23
|
-
htmlFor: props.name,
|
|
24
|
-
children: label
|
|
25
|
-
}
|
|
26
|
-
),
|
|
27
|
-
/* @__PURE__ */ jsxs("div", { className: container({ size: sizes, error }), children: [
|
|
28
|
-
iconLeft && /* @__PURE__ */ jsx("span", { className: iconContainer["left"], children: /* @__PURE__ */ jsx("div", { className: iconInput({ size: sizes }), children: iconLeft }) }),
|
|
29
|
-
/* @__PURE__ */ jsx(
|
|
30
|
-
DatePicker,
|
|
31
|
-
{
|
|
32
|
-
dayPlaceholder: "dd",
|
|
33
|
-
monthPlaceholder: "mm",
|
|
34
|
-
yearPlaceholder: "yyyy",
|
|
35
|
-
minDate: /* @__PURE__ */ new Date(),
|
|
36
|
-
onChange,
|
|
37
|
-
value
|
|
38
|
-
}
|
|
39
|
-
),
|
|
40
|
-
iconRight && /* @__PURE__ */ jsx("span", { className: iconContainer.right, children: /* @__PURE__ */ jsx("div", { className: iconInput({ size: sizes }), children: iconRight }) })
|
|
41
|
-
] }),
|
|
42
|
-
/* @__PURE__ */ jsx("span", { className: helperText({ disabled, error }), children: helper })
|
|
43
|
-
] });
|
|
44
|
-
};
|
|
45
|
-
export {
|
|
46
|
-
DatePickerInput
|
|
47
|
-
};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/* empty css */
|
|
2
|
-
var calendarContainer = "skzved0";
|
|
3
|
-
var calendarIcon = "skzved1";
|
|
4
|
-
var inputDate = "skzved2";
|
|
5
|
-
var verticalCenter = "skzved3";
|
|
6
|
-
var calendar = "skzved4";
|
|
7
|
-
var headerCalendar = "skzved5";
|
|
8
|
-
export {
|
|
9
|
-
calendar,
|
|
10
|
-
calendarContainer,
|
|
11
|
-
calendarIcon,
|
|
12
|
-
headerCalendar,
|
|
13
|
-
inputDate,
|
|
14
|
-
verticalCenter
|
|
15
|
-
};
|
package/dist/Input/InputDate.js
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
import { jsxs, jsx } from "react/jsx-runtime";
|
|
3
|
-
import { useState } from "react";
|
|
4
|
-
import DatePicker from "react-date-picker";
|
|
5
|
-
import { wrapper, labelClassName, container, iconContainer, iconInput, helperText } from "./Input.css.js";
|
|
6
|
-
const InputDate = (props) => {
|
|
7
|
-
const {
|
|
8
|
-
disabled,
|
|
9
|
-
label,
|
|
10
|
-
iconLeft,
|
|
11
|
-
iconRight,
|
|
12
|
-
sizes,
|
|
13
|
-
error = false,
|
|
14
|
-
helperText: helper,
|
|
15
|
-
variant
|
|
16
|
-
} = props;
|
|
17
|
-
const [value, onChange] = useState();
|
|
18
|
-
return /* @__PURE__ */ jsxs("div", { className: wrapper(), children: [
|
|
19
|
-
label && /* @__PURE__ */ jsx(
|
|
20
|
-
"label",
|
|
21
|
-
{
|
|
22
|
-
className: labelClassName({ error, variant }),
|
|
23
|
-
htmlFor: props.name,
|
|
24
|
-
children: label
|
|
25
|
-
}
|
|
26
|
-
),
|
|
27
|
-
/* @__PURE__ */ jsxs("div", { className: container({ size: sizes, error }), children: [
|
|
28
|
-
iconLeft && /* @__PURE__ */ jsx("span", { className: iconContainer["left"], children: /* @__PURE__ */ jsx("div", { className: iconInput({ size: sizes }), children: iconLeft }) }),
|
|
29
|
-
/* @__PURE__ */ jsx(
|
|
30
|
-
DatePicker,
|
|
31
|
-
{
|
|
32
|
-
dayPlaceholder: "dd",
|
|
33
|
-
monthPlaceholder: "mm",
|
|
34
|
-
yearPlaceholder: "yyyy",
|
|
35
|
-
minDate: /* @__PURE__ */ new Date(),
|
|
36
|
-
onChange,
|
|
37
|
-
value
|
|
38
|
-
}
|
|
39
|
-
),
|
|
40
|
-
iconRight && /* @__PURE__ */ jsx("span", { className: iconContainer.right, children: /* @__PURE__ */ jsx("div", { className: iconInput({ size: sizes }), children: iconRight }) })
|
|
41
|
-
] }),
|
|
42
|
-
/* @__PURE__ */ jsx("span", { className: helperText({ disabled, error }), children: helper })
|
|
43
|
-
] });
|
|
44
|
-
};
|
|
45
|
-
export {
|
|
46
|
-
InputDate
|
|
47
|
-
};
|
|
@@ -1,95 +0,0 @@
|
|
|
1
|
-
.react-date-picker {
|
|
2
|
-
width: 100%;
|
|
3
|
-
}
|
|
4
|
-
.react-date-picker__wrapper {
|
|
5
|
-
border: none !important;
|
|
6
|
-
}
|
|
7
|
-
.react-calendar__month-view__weekdays__weekday {
|
|
8
|
-
width: 45px;
|
|
9
|
-
height: 22px;
|
|
10
|
-
margin: 0;
|
|
11
|
-
display: inline-flex;
|
|
12
|
-
align-items: center;
|
|
13
|
-
font-family: var(--main-font-family);
|
|
14
|
-
font-weight: 500;
|
|
15
|
-
letter-spacing: 0.2px;
|
|
16
|
-
justify-content: center;
|
|
17
|
-
}
|
|
18
|
-
.react-calendar__month-view__weekdays__weekday {
|
|
19
|
-
font-size: 12px;
|
|
20
|
-
line-height: 16;
|
|
21
|
-
color: #2F5B88;
|
|
22
|
-
}
|
|
23
|
-
.react-calendar__month-view__weekdays__weekday > abbr {
|
|
24
|
-
text-decoration: none;
|
|
25
|
-
}
|
|
26
|
-
.react-calendar__month-view__days__day {
|
|
27
|
-
width: 49px;
|
|
28
|
-
height: 49px;
|
|
29
|
-
margin: 0;
|
|
30
|
-
display: inline-flex;
|
|
31
|
-
align-items: center;
|
|
32
|
-
justify-content: center;
|
|
33
|
-
}
|
|
34
|
-
.react-calendar__month-view__days__day > abbr {
|
|
35
|
-
font-family: var(--main-font-family) !important;
|
|
36
|
-
font-weight: 500;
|
|
37
|
-
letter-spacing: 0.2px;
|
|
38
|
-
color: #051A3F;
|
|
39
|
-
}
|
|
40
|
-
.react-date-picker__inputGroup__input, .react-date-picker__inputGroup__divider {
|
|
41
|
-
color: #5E6A74 !important;
|
|
42
|
-
}
|
|
43
|
-
.react-date-picker__clear-button {
|
|
44
|
-
display: none;
|
|
45
|
-
}
|
|
46
|
-
.react-calendar__navigation__label__labelText {
|
|
47
|
-
font-weight: 600;
|
|
48
|
-
font-size: 24px;
|
|
49
|
-
line-height: 36px;
|
|
50
|
-
letter-spacing: 0.2px;
|
|
51
|
-
color: #1E3860;
|
|
52
|
-
font-family: var(--header-font-family);
|
|
53
|
-
}
|
|
54
|
-
.react-datepicker-popper {
|
|
55
|
-
transform: translateY(40px)!important;
|
|
56
|
-
}
|
|
57
|
-
.react-calendar__month-view__days__day--neighboringMonth {
|
|
58
|
-
background-color: #F4F4F4 !important;
|
|
59
|
-
opacity: 50%;
|
|
60
|
-
}
|
|
61
|
-
.react-calendar__month-view__days__day--neighboringMonth > abbr {
|
|
62
|
-
color: #5E6A74;
|
|
63
|
-
}
|
|
64
|
-
.react-calendar__tile--active > abbr {
|
|
65
|
-
color: white;
|
|
66
|
-
}
|
|
67
|
-
.react-calendar {
|
|
68
|
-
border: 12px solid #FFFFFF4D !important;
|
|
69
|
-
border-radius: 4px;
|
|
70
|
-
}
|
|
71
|
-
.react-calendar__navigation__prev2-button, .react-calendar__navigation__next2-button {
|
|
72
|
-
display: none;
|
|
73
|
-
}
|
|
74
|
-
.react-date-picker__calendar {
|
|
75
|
-
max-width: 100% !important;
|
|
76
|
-
}
|
|
77
|
-
.react-date-picker__inputGroup__input:focus-visible {
|
|
78
|
-
outline: none;
|
|
79
|
-
}
|
|
80
|
-
.react-date-picker__inputGroup__input:invalid {
|
|
81
|
-
background: transparent !important;
|
|
82
|
-
}
|
|
83
|
-
@media screen and (max-width:320px) {
|
|
84
|
-
.react-calendar__month-view__weekdays__weekday {
|
|
85
|
-
width: 43.5px;
|
|
86
|
-
}
|
|
87
|
-
.react-calendar__month-view__days__day {
|
|
88
|
-
width: 43.5px;
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
@media screen and (max-width:400px) {
|
|
92
|
-
.react-calendar__navigation .react-calendar__navigation__prev-button, .react-calendar__navigation .react-calendar__navigation__next-button {
|
|
93
|
-
min-width: auto;
|
|
94
|
-
}
|
|
95
|
-
}
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
.skzved0 {
|
|
2
|
-
position: relative;
|
|
3
|
-
}
|
|
4
|
-
.skzved1 {
|
|
5
|
-
position: relative;
|
|
6
|
-
top: 5px;
|
|
7
|
-
left: 5px;
|
|
8
|
-
}
|
|
9
|
-
.skzved2 {
|
|
10
|
-
width: 100px;
|
|
11
|
-
padding-left: 5px;
|
|
12
|
-
padding-right: 5px;
|
|
13
|
-
line-height: 28px;
|
|
14
|
-
font-size: 14pt;
|
|
15
|
-
}
|
|
16
|
-
.skzved3 {
|
|
17
|
-
display: flex;
|
|
18
|
-
justify-content: center;
|
|
19
|
-
align-items: center;
|
|
20
|
-
}
|
|
21
|
-
.skzved4 {
|
|
22
|
-
display: block;
|
|
23
|
-
background: #FFFFFF;
|
|
24
|
-
width: 300px;
|
|
25
|
-
border: solid 1px #CCCCCC;
|
|
26
|
-
margin: 10px auto;
|
|
27
|
-
box-shadow: 0 0 15px 0 #C0C0C0;
|
|
28
|
-
font-size: 1.3rem;
|
|
29
|
-
text-align: center;
|
|
30
|
-
z-index: 999;
|
|
31
|
-
}
|
|
32
|
-
.skzved4 .skzved5 {
|
|
33
|
-
display: flex;
|
|
34
|
-
justify-content: center;
|
|
35
|
-
align-items: center;
|
|
36
|
-
color: #FFFFFF;
|
|
37
|
-
cursor: default;
|
|
38
|
-
font-weight: bold;
|
|
39
|
-
}
|