@axos-web-dev/shared-components 0.0.232 → 0.0.233
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/Accordion/Accordion.css.d.ts +9 -9
- package/dist/Comparison/Comparison.css.js +2 -2
- package/dist/FooterSiteMap/AxosBank/FooterSiteMap.css.js +1 -1
- package/dist/Forms/CraPublicFile.d.ts +10 -0
- package/dist/Forms/CraPublicFile.js +283 -0
- package/dist/Forms/Forms.css.js +2 -2
- package/dist/Forms/MortgageRate/MortgageRateWatch.d.ts +1 -0
- package/dist/Forms/SalesforceFieldsForm.d.ts +1 -0
- package/dist/Forms/index.d.ts +2 -1
- package/dist/Forms/index.js +3 -1
- package/dist/HeroBanner/HeroBanner.css.js +1 -1
- package/dist/ImageBillboard/ImageBillboard.css.js +1 -1
- package/dist/Input/Checkbox.d.ts +1 -1
- package/dist/Input/Input.css.js +1 -1
- package/dist/Insight/Featured/CategorySelector.css.js +1 -1
- package/dist/NavigationMenu/AxosAdvisorServices/NavData.js +0 -5
- package/dist/NavigationMenu/AxosAdvisorServices/index.js +2 -11
- package/dist/Table/Table.d.ts +14 -15
- package/dist/index.css.js +1 -1
- package/dist/main.js +3 -1
- package/package.json +1 -1
|
@@ -4,39 +4,39 @@ export declare const accordion: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
|
4
4
|
width: {
|
|
5
5
|
"1/2": {
|
|
6
6
|
display: "flex";
|
|
7
|
-
flexBasis:
|
|
7
|
+
flexBasis: `${number}%`;
|
|
8
8
|
};
|
|
9
9
|
"1/3": {
|
|
10
10
|
display: "flex";
|
|
11
|
-
flexBasis:
|
|
11
|
+
flexBasis: `${number}%`;
|
|
12
12
|
};
|
|
13
13
|
"2/3": {
|
|
14
14
|
display: "flex";
|
|
15
|
-
flexBasis:
|
|
15
|
+
flexBasis: `${number}%`;
|
|
16
16
|
};
|
|
17
17
|
"1/4": {
|
|
18
18
|
display: "flex";
|
|
19
|
-
flexBasis:
|
|
19
|
+
flexBasis: `${number}%`;
|
|
20
20
|
};
|
|
21
21
|
"3/4": {
|
|
22
22
|
display: "flex";
|
|
23
|
-
flexBasis:
|
|
23
|
+
flexBasis: `${number}%`;
|
|
24
24
|
};
|
|
25
25
|
"1/5": {
|
|
26
26
|
display: "flex";
|
|
27
|
-
flexBasis:
|
|
27
|
+
flexBasis: `${number}%`;
|
|
28
28
|
};
|
|
29
29
|
"2/5": {
|
|
30
30
|
display: "flex";
|
|
31
|
-
flexBasis:
|
|
31
|
+
flexBasis: `${number}%`;
|
|
32
32
|
};
|
|
33
33
|
"3/5": {
|
|
34
34
|
display: "flex";
|
|
35
|
-
flexBasis:
|
|
35
|
+
flexBasis: `${number}%`;
|
|
36
36
|
};
|
|
37
37
|
"4/5": {
|
|
38
38
|
display: "flex";
|
|
39
|
-
flexBasis:
|
|
39
|
+
flexBasis: `${number}%`;
|
|
40
40
|
};
|
|
41
41
|
};
|
|
42
42
|
}>;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/* empty css */
|
|
2
|
+
/* empty css */
|
|
3
|
+
/* empty css */
|
|
2
4
|
/* empty css */
|
|
3
5
|
/* empty css */
|
|
4
6
|
/* empty css */
|
|
5
7
|
/* empty css */
|
|
6
8
|
/* empty css */
|
|
7
9
|
/* empty css */
|
|
8
|
-
/* empty css */
|
|
9
|
-
/* empty css */
|
|
10
10
|
/* empty css */
|
|
11
11
|
import { createRuntimeFn } from "@vanilla-extract/recipes/createRuntimeFn";
|
|
12
12
|
var comparison = createRuntimeFn({ defaultClassName: "_198o0lt0", variantClassNames: { variant: { primary: "_198o0lt1", secondary: "_198o0lt2", tertiary: "_198o0lt3", quaternary: "_198o0lt4" } }, defaultVariants: {}, compoundVariants: [] });
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FormProps } from './FormProps';
|
|
2
|
+
|
|
3
|
+
export type CraPublicFileInputs = {
|
|
4
|
+
first_name: string;
|
|
5
|
+
last_name: string;
|
|
6
|
+
email: string;
|
|
7
|
+
phone: string;
|
|
8
|
+
comments: string;
|
|
9
|
+
};
|
|
10
|
+
export declare const CraPublicFile: ({ icon, children, onSubmit, disclosure, variant: fullVariant, headline, description, callToAction, validateEmail, id, }: FormProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,283 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { zodResolver } from "@hookform/resolvers/zod";
|
|
4
|
+
import "../Input/Checkbox.js";
|
|
5
|
+
import "../Input/CurrencyInput.js";
|
|
6
|
+
import "../Input/Dropdown.js";
|
|
7
|
+
import "../Input/Dropdown.css.js";
|
|
8
|
+
import { Input } from "../Input/Input.js";
|
|
9
|
+
import "../Input/Input.css.js";
|
|
10
|
+
import "../Input/InputAmount.js";
|
|
11
|
+
import { InputPhone } from "../Input/InputPhone.js";
|
|
12
|
+
import { InputTextArea } from "../Input/InputTextArea.js";
|
|
13
|
+
import "../Input/DownPaymentInput.js";
|
|
14
|
+
import "../Input/RadioButton.js";
|
|
15
|
+
import "../icons/ArrowIcon/ArrowIcon.css.js";
|
|
16
|
+
import SvgAxosX from "../icons/AxosX/index.js";
|
|
17
|
+
import SvgComponent from "../icons/AxosX/Blue.js";
|
|
18
|
+
import "../icons/CheckIcon/CheckIcon.css.js";
|
|
19
|
+
/* empty css */
|
|
20
|
+
/* empty css */
|
|
21
|
+
/* empty css */
|
|
22
|
+
/* empty css */
|
|
23
|
+
/* empty css */
|
|
24
|
+
import "../Accordion/Accordion.js";
|
|
25
|
+
import "../Accordion/Accordion.css.js";
|
|
26
|
+
import { getVariant } from "../utils/getVariant.js";
|
|
27
|
+
import clsx from "clsx";
|
|
28
|
+
import "react";
|
|
29
|
+
import "../Chevron/Chevron.css.js";
|
|
30
|
+
import "../AlertBanner/AlertBanner.css.js";
|
|
31
|
+
import "../Article/Article.css.js";
|
|
32
|
+
import { Button } from "../Button/Button.js";
|
|
33
|
+
import "../Button/Button.css.js";
|
|
34
|
+
import "react-use";
|
|
35
|
+
import "../ArticlesSet/ArticlesSet.css.js";
|
|
36
|
+
import "../IconBillboard/IconBillboard.css.js";
|
|
37
|
+
import "../utils/allowedAxosDomains.js";
|
|
38
|
+
import "../Calculators/calculator.css.js";
|
|
39
|
+
import "../Calculators/AnnualFeeCalculator/AnnualFeeCalculator.css.js";
|
|
40
|
+
import "../Calculators/ApyCalculator/ApyCalculator.css.js";
|
|
41
|
+
import "../Table/Table.css.js";
|
|
42
|
+
import "../Calculators/AxosOneCalculator/BalanceAPYCalculator.css.js";
|
|
43
|
+
import "../Calculators/BalanceAPYCalculator/BalanceAPYCalculator.css.js";
|
|
44
|
+
import { useForm, FormProvider } from "react-hook-form";
|
|
45
|
+
import { z } from "zod";
|
|
46
|
+
import { formContainer, iconForm, headerContainer, headerForm, form, descriptionField, formWrapper, disclosureForm, actions } from "./Forms.css.js";
|
|
47
|
+
import { SalesforceSchema } from "./SalesforceFieldsForm.js";
|
|
48
|
+
/* empty css */
|
|
49
|
+
/* empty css */
|
|
50
|
+
import "../Input/RadioButton.css.js";
|
|
51
|
+
import "../Input/Checkbox.css.js";
|
|
52
|
+
import "../LoadingIndicator/LoadingIndicator.css.js";
|
|
53
|
+
import "../Interstitial/Interstitial-variants.css.js";
|
|
54
|
+
import "../Inputs/Input.css.js";
|
|
55
|
+
/* empty css */
|
|
56
|
+
import "../Hyperlink/Hyperlink.css.js";
|
|
57
|
+
/* empty css */
|
|
58
|
+
import "iframe-resizer";
|
|
59
|
+
/* empty css */
|
|
60
|
+
import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
61
|
+
import "../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
|
|
62
|
+
/* empty css */
|
|
63
|
+
/* empty css */
|
|
64
|
+
/* empty css */
|
|
65
|
+
import "../Carousel/index.js";
|
|
66
|
+
/* empty css */
|
|
67
|
+
import "../Comparison/Comparison.css.js";
|
|
68
|
+
import "../HeroBanner/HeroBanner.css.js";
|
|
69
|
+
import "../HeroBanner/LargeBanner.css.js";
|
|
70
|
+
import "../HeroBanner/SelectionBanner.css.js";
|
|
71
|
+
import "../SetContainer/SetContainer.css.js";
|
|
72
|
+
import "../Tab/Tab.css.js";
|
|
73
|
+
import "../icons/Star/Star.css.js";
|
|
74
|
+
import "../ContentBanner/ContentBanner.css.js";
|
|
75
|
+
/* empty css */
|
|
76
|
+
import "../ExecutiveBio/ExecutiveBio.css.js";
|
|
77
|
+
import "../FaqAccordion/index.js";
|
|
78
|
+
import "../FooterDisclosure/FooterDisclosure.css.js";
|
|
79
|
+
/* empty css */
|
|
80
|
+
/* empty css */
|
|
81
|
+
import "../ImageBillboard/ImageBillboard.css.js";
|
|
82
|
+
/* empty css */
|
|
83
|
+
/* empty css */
|
|
84
|
+
/* empty css */
|
|
85
|
+
/* empty css */
|
|
86
|
+
/* empty css */
|
|
87
|
+
import "../LandingPageHeader/LandingPageHeader.css.js";
|
|
88
|
+
/* empty css */
|
|
89
|
+
import "../Modal/contextApi/store.js";
|
|
90
|
+
/* empty css */
|
|
91
|
+
import "next/navigation.js";
|
|
92
|
+
/* empty css */
|
|
93
|
+
/* empty css */
|
|
94
|
+
/* empty css */
|
|
95
|
+
/* empty css */
|
|
96
|
+
import "../NavigationMenu/AxosBank/NavData.js";
|
|
97
|
+
import "next/image.js";
|
|
98
|
+
import "next/link.js";
|
|
99
|
+
/* empty css */
|
|
100
|
+
/* empty css */
|
|
101
|
+
import "../NavigationMenu/AxosALTS/NavData.js";
|
|
102
|
+
/* empty css */
|
|
103
|
+
/* empty css */
|
|
104
|
+
import "../NavigationMenu/LaVictoire/NavData.js";
|
|
105
|
+
import "../PageNavItem/PageNavItem.css.js";
|
|
106
|
+
import "react-slick";
|
|
107
|
+
/* empty css */
|
|
108
|
+
/* empty css */
|
|
109
|
+
/* empty css */
|
|
110
|
+
/* empty css */
|
|
111
|
+
import "../StepItem/StepItem.css.js";
|
|
112
|
+
import "../StepItemSet/StepItemSet.css.js";
|
|
113
|
+
/* empty css */
|
|
114
|
+
/* empty css */
|
|
115
|
+
/* empty css */
|
|
116
|
+
import "next/script.js";
|
|
117
|
+
/* empty css */
|
|
118
|
+
/* empty css */
|
|
119
|
+
const CraPublicFile = ({
|
|
120
|
+
icon = false,
|
|
121
|
+
children,
|
|
122
|
+
onSubmit = (values) => {
|
|
123
|
+
console.log(values);
|
|
124
|
+
},
|
|
125
|
+
disclosure,
|
|
126
|
+
variant: fullVariant = "primary",
|
|
127
|
+
headline,
|
|
128
|
+
description,
|
|
129
|
+
callToAction,
|
|
130
|
+
validateEmail,
|
|
131
|
+
id
|
|
132
|
+
}) => {
|
|
133
|
+
const schema = z.object({
|
|
134
|
+
first_name: z.string().regex(/^[a-zA-Z]*(?:[a-zA-Z][a-zA-Z'-]*\s{0,1}){2,}$/g).trim().min(1, { message: "First Name is required." }),
|
|
135
|
+
last_name: z.string().regex(/^[a-zA-Z]*(?:[a-zA-Z][a-zA-Z'-]*\s{0,1}){2,}$/g).trim().min(1, { message: "Last Name is required." }),
|
|
136
|
+
email: z.string().email({ message: "Email is required." }).refine(async (val) => await validateEmail(val)),
|
|
137
|
+
phone: z.string().regex(/[\d-]{10}/).min(10, { message: "Phone is required." }).max(12, { message: "Phone is required." }).transform((val, ctx) => {
|
|
138
|
+
const removeDashes = val.replace(/-/gi, "");
|
|
139
|
+
if (removeDashes.length !== 10) {
|
|
140
|
+
ctx.addIssue({
|
|
141
|
+
code: z.ZodIssueCode.custom,
|
|
142
|
+
message: "Phone must have at least 10 and no more than 10 characters."
|
|
143
|
+
});
|
|
144
|
+
return z.NEVER;
|
|
145
|
+
}
|
|
146
|
+
return removeDashes;
|
|
147
|
+
}),
|
|
148
|
+
comments: z.string()
|
|
149
|
+
});
|
|
150
|
+
const methods = useForm({
|
|
151
|
+
resolver: zodResolver(
|
|
152
|
+
schema.merge(SalesforceSchema),
|
|
153
|
+
{
|
|
154
|
+
async: true
|
|
155
|
+
},
|
|
156
|
+
{ mode: "async" }
|
|
157
|
+
),
|
|
158
|
+
mode: "onChange",
|
|
159
|
+
shouldUnregister: true,
|
|
160
|
+
defaultValues: {
|
|
161
|
+
email: ""
|
|
162
|
+
}
|
|
163
|
+
});
|
|
164
|
+
const {
|
|
165
|
+
handleSubmit,
|
|
166
|
+
register,
|
|
167
|
+
formState: { errors, isValid, isSubmitting }
|
|
168
|
+
} = methods;
|
|
169
|
+
const submitForm = async (data) => {
|
|
170
|
+
await onSubmit(data);
|
|
171
|
+
};
|
|
172
|
+
const variant = getVariant(fullVariant);
|
|
173
|
+
return /* @__PURE__ */ jsx("section", { id, className: clsx(formContainer({ variant })), children: /* @__PURE__ */ jsx("div", { className: clsx("containment"), children: /* @__PURE__ */ jsxs(FormProvider, { ...methods, children: [
|
|
174
|
+
icon && /* @__PURE__ */ jsx("div", { className: clsx("text_center", iconForm), children: ["primary", "secondary"].includes(variant) ? /* @__PURE__ */ jsx(SvgComponent, {}) : /* @__PURE__ */ jsx(SvgAxosX, {}) }),
|
|
175
|
+
/* @__PURE__ */ jsxs("div", { className: `${headerContainer} text_center`, children: [
|
|
176
|
+
/* @__PURE__ */ jsx("h2", { className: clsx("header_2", headerForm({ variant })), children: headline }),
|
|
177
|
+
description && /* @__PURE__ */ jsx(
|
|
178
|
+
"div",
|
|
179
|
+
{
|
|
180
|
+
className: clsx(
|
|
181
|
+
"text_center",
|
|
182
|
+
form,
|
|
183
|
+
descriptionField({ variant })
|
|
184
|
+
),
|
|
185
|
+
children: description
|
|
186
|
+
}
|
|
187
|
+
)
|
|
188
|
+
] }),
|
|
189
|
+
/* @__PURE__ */ jsxs("form", { className: form, onSubmit: handleSubmit(submitForm), children: [
|
|
190
|
+
/* @__PURE__ */ jsxs("div", { className: clsx(formWrapper({ variant })), children: [
|
|
191
|
+
/* @__PURE__ */ jsx("div", { className: "", children: /* @__PURE__ */ jsx(
|
|
192
|
+
Input,
|
|
193
|
+
{
|
|
194
|
+
id: "first_name",
|
|
195
|
+
...register("first_name", { required: true }),
|
|
196
|
+
label: "First Name",
|
|
197
|
+
sizes: "medium",
|
|
198
|
+
placeholder: "First Name",
|
|
199
|
+
required: true,
|
|
200
|
+
error: !!errors.first_name,
|
|
201
|
+
helperText: errors.first_name?.message,
|
|
202
|
+
variant
|
|
203
|
+
}
|
|
204
|
+
) }),
|
|
205
|
+
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
206
|
+
Input,
|
|
207
|
+
{
|
|
208
|
+
id: "last_name",
|
|
209
|
+
...register("last_name", { required: true }),
|
|
210
|
+
label: "Last Name",
|
|
211
|
+
sizes: "medium",
|
|
212
|
+
placeholder: "Last Name",
|
|
213
|
+
required: true,
|
|
214
|
+
error: !!errors.last_name,
|
|
215
|
+
helperText: errors.last_name?.message,
|
|
216
|
+
variant
|
|
217
|
+
}
|
|
218
|
+
) }),
|
|
219
|
+
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
220
|
+
Input,
|
|
221
|
+
{
|
|
222
|
+
id: "email",
|
|
223
|
+
...register("email", {
|
|
224
|
+
required: true
|
|
225
|
+
}),
|
|
226
|
+
type: "email",
|
|
227
|
+
label: "Email",
|
|
228
|
+
sizes: "medium",
|
|
229
|
+
placeholder: "Email",
|
|
230
|
+
required: true,
|
|
231
|
+
error: !!errors.email,
|
|
232
|
+
helperText: errors.email?.message,
|
|
233
|
+
variant
|
|
234
|
+
}
|
|
235
|
+
) }),
|
|
236
|
+
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
237
|
+
InputPhone,
|
|
238
|
+
{
|
|
239
|
+
id: "phone",
|
|
240
|
+
...register("phone", { required: true, maxLength: 12 }),
|
|
241
|
+
label: "Phone",
|
|
242
|
+
sizes: "medium",
|
|
243
|
+
placeholder: "Phone",
|
|
244
|
+
type: "tel",
|
|
245
|
+
required: true,
|
|
246
|
+
error: !!errors.phone,
|
|
247
|
+
helperText: errors.phone?.message,
|
|
248
|
+
variant
|
|
249
|
+
}
|
|
250
|
+
) }),
|
|
251
|
+
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
252
|
+
InputTextArea,
|
|
253
|
+
{
|
|
254
|
+
id: "comments",
|
|
255
|
+
...register("comments"),
|
|
256
|
+
label: "Comments/Questions",
|
|
257
|
+
sizes: "medium",
|
|
258
|
+
placeholder: "",
|
|
259
|
+
error: !!errors.comments,
|
|
260
|
+
helperText: errors.comments?.message,
|
|
261
|
+
variant,
|
|
262
|
+
rows: 1
|
|
263
|
+
}
|
|
264
|
+
) })
|
|
265
|
+
] }),
|
|
266
|
+
children,
|
|
267
|
+
/* @__PURE__ */ jsx("div", { className: disclosureForm({ variant }), children: disclosure }),
|
|
268
|
+
/* @__PURE__ */ jsx("div", { className: actions, children: /* @__PURE__ */ jsx(
|
|
269
|
+
Button,
|
|
270
|
+
{
|
|
271
|
+
color: getVariant(callToAction?.variant),
|
|
272
|
+
as: "button",
|
|
273
|
+
type: "submit",
|
|
274
|
+
disabled: !isValid || isSubmitting,
|
|
275
|
+
children: callToAction?.displayText
|
|
276
|
+
}
|
|
277
|
+
) })
|
|
278
|
+
] })
|
|
279
|
+
] }) }) }, id);
|
|
280
|
+
};
|
|
281
|
+
export {
|
|
282
|
+
CraPublicFile
|
|
283
|
+
};
|
package/dist/Forms/Forms.css.js
CHANGED
package/dist/Forms/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export * from './ContactUsBusiness';
|
|
|
11
11
|
export * from './ContactUsLVF';
|
|
12
12
|
export * from './ContactUsNMLSId';
|
|
13
13
|
export * from './CpraRequest';
|
|
14
|
+
export * from './CraPublicFile';
|
|
14
15
|
export * from './DealerServices';
|
|
15
16
|
export * from './EmailOnly';
|
|
16
17
|
export * from './EmailUs';
|
|
@@ -25,5 +26,5 @@ export * from './SalesforceFieldsForm';
|
|
|
25
26
|
export * from './ScheduleCall';
|
|
26
27
|
export * from './ScheduleCallPremier';
|
|
27
28
|
export * from './SuccesForm';
|
|
28
|
-
export * from './WcplSurvey';
|
|
29
29
|
export * from './VendorQuestionnaire';
|
|
30
|
+
export * from './WcplSurvey';
|
package/dist/Forms/index.js
CHANGED
|
@@ -12,6 +12,7 @@ import { ContactUsBusiness } from "./ContactUsBusiness.js";
|
|
|
12
12
|
import { ContactUsLVF } from "./ContactUsLVF.js";
|
|
13
13
|
import { ContactUsNMLSId } from "./ContactUsNMLSId.js";
|
|
14
14
|
import { CpraRequest } from "./CpraRequest.js";
|
|
15
|
+
import { CraPublicFile } from "./CraPublicFile.js";
|
|
15
16
|
import { DealerServices } from "./DealerServices.js";
|
|
16
17
|
import { EmailOnly } from "./EmailOnly.js";
|
|
17
18
|
import { EmailUs } from "./EmailUs.js";
|
|
@@ -31,8 +32,8 @@ import { SalesforceFieldsForm, SalesforceSchema } from "./SalesforceFieldsForm.j
|
|
|
31
32
|
import { ScheduleCall } from "./ScheduleCall.js";
|
|
32
33
|
import { ScheduleCallPremier } from "./ScheduleCallPremier.js";
|
|
33
34
|
import { SuccesFormWrapper } from "./SuccesForm.js";
|
|
34
|
-
import { WCPLSurvey } from "./WcplSurvey.js";
|
|
35
35
|
import { VendorQuestionnaire } from "./VendorQuestionnaire.js";
|
|
36
|
+
import { WCPLSurvey } from "./WcplSurvey.js";
|
|
36
37
|
export {
|
|
37
38
|
ApplicationStart,
|
|
38
39
|
ApplyNow,
|
|
@@ -47,6 +48,7 @@ export {
|
|
|
47
48
|
ContactUsLVF,
|
|
48
49
|
ContactUsNMLSId,
|
|
49
50
|
CpraRequest,
|
|
51
|
+
CraPublicFile,
|
|
50
52
|
DealerServices,
|
|
51
53
|
EmailOnly,
|
|
52
54
|
EmailUs,
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
/* empty css */
|
|
1
2
|
/* empty css */
|
|
2
3
|
/* empty css */
|
|
3
4
|
/* empty css */
|
|
4
5
|
/* empty css */
|
|
5
|
-
/* empty css */
|
|
6
6
|
/* empty css */
|
|
7
7
|
import { createRuntimeFn } from "@vanilla-extract/recipes/createRuntimeFn";
|
|
8
8
|
var billboard = createRuntimeFn({ defaultClassName: "_1m7m2a0", variantClassNames: { variant: { primary: "_1m7m2a1", secondary: "_1m7m2a2", tertiary: "_1m7m2a3", quaternary: "_1m7m2a4" } }, defaultVariants: {}, compoundVariants: [] });
|
package/dist/Input/Checkbox.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { InputProps } from './InputProps';
|
|
2
2
|
|
|
3
3
|
export declare const Checkbox: import('react').ForwardRefExoticComponent<InputProps & {
|
|
4
|
-
children?: import('react').ReactNode
|
|
4
|
+
children?: import('react').ReactNode;
|
|
5
5
|
} & import('react').RefAttributes<HTMLInputElement>>;
|
package/dist/Input/Input.css.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
/* empty css */
|
|
1
2
|
/* empty css */
|
|
2
3
|
/* empty css */
|
|
3
4
|
/* empty css */
|
|
4
|
-
/* empty css */
|
|
5
5
|
/* empty css */
|
|
6
6
|
import { createRuntimeFn } from "@vanilla-extract/recipes/createRuntimeFn";
|
|
7
7
|
var iconInput = createRuntimeFn({ defaultClassName: "_18du0la0", variantClassNames: { size: { small: "_18du0la1", medium: "_18du0la2", large: "_18du0la3" } }, defaultVariants: {}, compoundVariants: [] });
|
|
@@ -28,11 +28,6 @@ const subNavItems = {
|
|
|
28
28
|
name: "Technology Providers",
|
|
29
29
|
url: "/optimize-operations/technology-providers",
|
|
30
30
|
id: "oo_1"
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
name: "Axos Client Portal",
|
|
34
|
-
url: "https://www.axosbank.com/pages/axos-client-portal",
|
|
35
|
-
id: "oo_2"
|
|
36
31
|
}
|
|
37
32
|
],
|
|
38
33
|
axosAdvantage: [
|
|
@@ -4,15 +4,14 @@ import { Button } from "../../Button/Button.js";
|
|
|
4
4
|
import "../../Button/Button.css.js";
|
|
5
5
|
import { useState, useRef, useEffect } from "react";
|
|
6
6
|
import { useClickAway } from "react-use";
|
|
7
|
-
import
|
|
7
|
+
import "../../utils/allowedAxosDomains.js";
|
|
8
|
+
import { appendQueryParams } from "../../utils/appendQueryParams.js";
|
|
8
9
|
import clsx from "clsx";
|
|
9
10
|
import { NavItem } from "../NavItem/index.js";
|
|
10
11
|
import { Sign_in_btn, expand } from "./NavBar.css.js";
|
|
11
12
|
import styles from "./NavBar.module.js";
|
|
12
13
|
import { navItems } from "./NavData.js";
|
|
13
14
|
import SubNavBar from "./SubNavBar.js";
|
|
14
|
-
import "../../utils/allowedAxosDomains.js";
|
|
15
|
-
import { appendQueryParams } from "../../utils/appendQueryParams.js";
|
|
16
15
|
function NavBar() {
|
|
17
16
|
const [isOpenSignIn, setisOpenSignIn] = useState(false);
|
|
18
17
|
const [isOpenSignInToggle, setisOpenSignInToggle] = useState(false);
|
|
@@ -368,14 +367,6 @@ function NavBar() {
|
|
|
368
367
|
role: "menuitem",
|
|
369
368
|
children: "Technology Providers"
|
|
370
369
|
}
|
|
371
|
-
),
|
|
372
|
-
/* @__PURE__ */ jsx(
|
|
373
|
-
Hyperlink,
|
|
374
|
-
{
|
|
375
|
-
targetUrl: "{AXOSBANK}/pages/axos-client-portal",
|
|
376
|
-
role: "menuitem",
|
|
377
|
-
children: "Axos Client Portal"
|
|
378
|
-
}
|
|
379
370
|
)
|
|
380
371
|
]
|
|
381
372
|
}
|
package/dist/Table/Table.d.ts
CHANGED
|
@@ -10,19 +10,17 @@ export declare const TableCell: ({ children, as, variant, highlighted, colSpan,
|
|
|
10
10
|
colSpan: number | undefined;
|
|
11
11
|
className: string;
|
|
12
12
|
manifest?: string | undefined;
|
|
13
|
-
amp?: string;
|
|
13
|
+
amp?: string | undefined;
|
|
14
14
|
defaultChecked?: boolean | undefined;
|
|
15
15
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
16
16
|
suppressContentEditableWarning?: boolean | undefined;
|
|
17
17
|
suppressHydrationWarning?: boolean | undefined;
|
|
18
18
|
accessKey?: string | undefined;
|
|
19
|
-
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
|
|
20
19
|
autoFocus?: boolean | undefined;
|
|
21
|
-
contentEditable?: (boolean | "false" | "true") | "
|
|
20
|
+
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
22
21
|
contextMenu?: string | undefined;
|
|
23
22
|
dir?: string | undefined;
|
|
24
23
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
25
|
-
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
26
24
|
hidden?: boolean | undefined;
|
|
27
25
|
id?: string | undefined;
|
|
28
26
|
lang?: string | undefined;
|
|
@@ -32,7 +30,7 @@ export declare const TableCell: ({ children, as, variant, highlighted, colSpan,
|
|
|
32
30
|
style?: import('react').CSSProperties | undefined;
|
|
33
31
|
tabIndex?: number | undefined;
|
|
34
32
|
title?: string | undefined;
|
|
35
|
-
translate?: "
|
|
33
|
+
translate?: "no" | "yes" | undefined;
|
|
36
34
|
radioGroup?: string | undefined;
|
|
37
35
|
role?: import('react').AriaRole | undefined;
|
|
38
36
|
about?: string | undefined;
|
|
@@ -46,6 +44,7 @@ export declare const TableCell: ({ children, as, variant, highlighted, colSpan,
|
|
|
46
44
|
rev?: string | undefined;
|
|
47
45
|
typeof?: string | undefined;
|
|
48
46
|
vocab?: string | undefined;
|
|
47
|
+
autoCapitalize?: string | undefined;
|
|
49
48
|
autoCorrect?: string | undefined;
|
|
50
49
|
autoSave?: string | undefined;
|
|
51
50
|
color?: string | undefined;
|
|
@@ -56,38 +55,38 @@ export declare const TableCell: ({ children, as, variant, highlighted, colSpan,
|
|
|
56
55
|
itemRef?: string | undefined;
|
|
57
56
|
results?: number | undefined;
|
|
58
57
|
security?: string | undefined;
|
|
59
|
-
unselectable?: "
|
|
60
|
-
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" |
|
|
58
|
+
unselectable?: "off" | "on" | undefined;
|
|
59
|
+
inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
61
60
|
is?: string | undefined;
|
|
62
61
|
popover?: "" | "auto" | "manual" | undefined;
|
|
63
|
-
popoverTargetAction?: "
|
|
62
|
+
popoverTargetAction?: "hide" | "show" | "toggle" | undefined;
|
|
64
63
|
popoverTarget?: string | undefined;
|
|
65
64
|
onToggle?: import('react').ToggleEventHandler<HTMLTableCellElement> | undefined;
|
|
66
65
|
onBeforeToggle?: import('react').ToggleEventHandler<HTMLTableCellElement> | undefined;
|
|
67
66
|
inert?: boolean | undefined;
|
|
68
67
|
"aria-activedescendant"?: string | undefined;
|
|
69
68
|
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
70
|
-
"aria-autocomplete"?: "none" | "
|
|
69
|
+
"aria-autocomplete"?: "none" | "both" | "inline" | "list" | undefined;
|
|
71
70
|
"aria-braillelabel"?: string | undefined;
|
|
72
71
|
"aria-brailleroledescription"?: string | undefined;
|
|
73
72
|
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
74
|
-
"aria-checked"?: boolean | "
|
|
73
|
+
"aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
75
74
|
"aria-colcount"?: number | undefined;
|
|
76
75
|
"aria-colindex"?: number | undefined;
|
|
77
76
|
"aria-colindextext"?: string | undefined;
|
|
78
77
|
"aria-colspan"?: number | undefined;
|
|
79
78
|
"aria-controls"?: string | undefined;
|
|
80
|
-
"aria-current"?: boolean | "false" | "true" | "
|
|
79
|
+
"aria-current"?: boolean | "page" | "false" | "true" | "time" | "step" | "location" | "date" | undefined;
|
|
81
80
|
"aria-describedby"?: string | undefined;
|
|
82
81
|
"aria-description"?: string | undefined;
|
|
83
82
|
"aria-details"?: string | undefined;
|
|
84
83
|
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
85
|
-
"aria-dropeffect"?: "
|
|
84
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
|
86
85
|
"aria-errormessage"?: string | undefined;
|
|
87
86
|
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
88
87
|
"aria-flowto"?: string | undefined;
|
|
89
88
|
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
90
|
-
"aria-haspopup"?: boolean | "
|
|
89
|
+
"aria-haspopup"?: boolean | "grid" | "listbox" | "menu" | "false" | "true" | "dialog" | "tree" | undefined;
|
|
91
90
|
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
92
91
|
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
93
92
|
"aria-keyshortcuts"?: string | undefined;
|
|
@@ -102,9 +101,9 @@ export declare const TableCell: ({ children, as, variant, highlighted, colSpan,
|
|
|
102
101
|
"aria-owns"?: string | undefined;
|
|
103
102
|
"aria-placeholder"?: string | undefined;
|
|
104
103
|
"aria-posinset"?: number | undefined;
|
|
105
|
-
"aria-pressed"?: boolean | "
|
|
104
|
+
"aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
106
105
|
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
107
|
-
"aria-relevant"?: "
|
|
106
|
+
"aria-relevant"?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
108
107
|
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
109
108
|
"aria-roledescription"?: string | undefined;
|
|
110
109
|
"aria-rowcount"?: number | undefined;
|
package/dist/index.css.js
CHANGED
package/dist/main.js
CHANGED
|
@@ -59,6 +59,7 @@ import { ContactUsBusiness } from "./Forms/ContactUsBusiness.js";
|
|
|
59
59
|
import { ContactUsLVF } from "./Forms/ContactUsLVF.js";
|
|
60
60
|
import { ContactUsNMLSId } from "./Forms/ContactUsNMLSId.js";
|
|
61
61
|
import { CpraRequest } from "./Forms/CpraRequest.js";
|
|
62
|
+
import { CraPublicFile } from "./Forms/CraPublicFile.js";
|
|
62
63
|
import { DealerServices } from "./Forms/DealerServices.js";
|
|
63
64
|
import { EmailOnly } from "./Forms/EmailOnly.js";
|
|
64
65
|
import { EmailUs } from "./Forms/EmailUs.js";
|
|
@@ -77,8 +78,8 @@ import { SalesforceFieldsForm, SalesforceSchema } from "./Forms/SalesforceFields
|
|
|
77
78
|
import { ScheduleCall } from "./Forms/ScheduleCall.js";
|
|
78
79
|
import { ScheduleCallPremier } from "./Forms/ScheduleCallPremier.js";
|
|
79
80
|
import { SuccesFormWrapper } from "./Forms/SuccesForm.js";
|
|
80
|
-
import { WCPLSurvey } from "./Forms/WcplSurvey.js";
|
|
81
81
|
import { VendorQuestionnaire } from "./Forms/VendorQuestionnaire.js";
|
|
82
|
+
import { WCPLSurvey } from "./Forms/WcplSurvey.js";
|
|
82
83
|
import { HeroBanner } from "./HeroBanner/HeroBanner.js";
|
|
83
84
|
import { headline_text, heroSupertag, hero_banner, hero_btns, hero_content, hero_embedded_image, hero_img, hero_text, hero_wrapper, logout, reversed, reversed_lg_image } from "./HeroBanner/HeroBanner.css.js";
|
|
84
85
|
import { selection_headline_text, selection_section, selection_section_bg, selection_section_content, selection_section_icon, selection_section_icon_img } from "./HeroBanner/SelectionBanner.css.js";
|
|
@@ -248,6 +249,7 @@ export {
|
|
|
248
249
|
ContactUsNMLSId,
|
|
249
250
|
ContentBanner,
|
|
250
251
|
CpraRequest,
|
|
252
|
+
CraPublicFile,
|
|
251
253
|
CurrencyInput,
|
|
252
254
|
DealerServices,
|
|
253
255
|
DownPaymentInput,
|