@axos-web-dev/shared-components 1.0.100-dev.48 → 1.0.100-dev.49

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.
@@ -1,6 +1,6 @@
1
- import '../assets/Blockquote/Blockquote.css.css';const quote_spacer = "_quote_spacer_lqs2u_1";
2
- const author = "_author_lqs2u_13";
3
- const quote = "_quote_lqs2u_1";
1
+ import '../assets/Blockquote/Blockquote.css.css';const quote_spacer = "_quote_spacer_ovx4r_1";
2
+ const author = "_author_ovx4r_7";
3
+ const quote = "_quote_ovx4r_1";
4
4
  const css = {
5
5
  quote_spacer,
6
6
  author,
@@ -159,7 +159,6 @@ const MortgageRate = ({
159
159
  const [downPaymentPercentage, setDownPaymentPercentage] = useState(10);
160
160
  const [_downPayment, setDownPayment] = useState(0);
161
161
  const [isTypingDownPayment, setIsTypingDownPayment] = useState(false);
162
- const [salesPriceVal, setSalesPriceVal] = useState(0);
163
162
  const cachedEmailValidator = useCachedEmailValidator(validateEmail);
164
163
  const schema = z.object({
165
164
  firstName: z.string({ message: "First Name is required." }).regex(/^[A-Za-z][^0-9_!¡?÷?¿/\\+=@#$%ˆ&*,.^(){}|~<>;:[\]]{1,}$/g, {
@@ -195,19 +194,9 @@ const MortgageRate = ({
195
194
  ),
196
195
  downPayment: z.number({ message: "Down Payment is required." }).optional().refine((val) => loanPurpose === 1 ? val != null : true, {
197
196
  message: "Down Payment is required."
198
- }).refine(
199
- (val) => {
200
- if (loanPurpose === 1) {
201
- return val != null && val >= salesPriceVal * 0.01 && val <= salesPriceVal;
202
- }
203
- return true;
204
- },
205
- {
206
- message: `Value must be between ${salesPriceVal * 0.01} and ${salesPriceVal}.`
207
- }
208
- ),
197
+ }),
209
198
  creditScore: z.number({ message: "Credit Score is required." }).positive({ message: "Credit Score is required." }),
210
- zipCode: z.number({ message: "Zip Code is required." }).positive({ message: "Zip Code is required." }),
199
+ zipCode: z.string().trim().min(1, { message: "Zip Code is required." }).regex(/^\d{5}$/, { message: "ZIP code must be 5 digits." }),
211
200
  appraisedValue: z.number({ message: "Home Price is required." }).optional().refine(
212
201
  (val) => {
213
202
  if (loanPurpose === 2 && val == null) {
@@ -215,7 +204,7 @@ const MortgageRate = ({
215
204
  }
216
205
  return true;
217
206
  },
218
- { message: "Appraised Value is required for refinance" }
207
+ { message: "Appraised Value is required for refinance." }
219
208
  ),
220
209
  mortgageBalance: z.number({ message: "Mortgage Balance is required." }).optional().refine(
221
210
  (val) => {
@@ -224,7 +213,7 @@ const MortgageRate = ({
224
213
  }
225
214
  return true;
226
215
  },
227
- { message: "Mortgage Balance is required for refinance" }
216
+ { message: "Mortgage Balance is required for refinance." }
228
217
  ),
229
218
  cashOut: z.number({ message: "Cash Out is required." }).optional(),
230
219
  loanPurpose: z.number({ message: "Loan Purpose is required." })
@@ -236,12 +225,28 @@ const MortgageRate = ({
236
225
  message: "fields are not valid."
237
226
  });
238
227
  }
228
+ if (loanPurpose === 1 && data.salesPrice != null && data.downPayment != null) {
229
+ const minDownPayment = data.salesPrice * 0.01;
230
+ const maxDownPayment = data.salesPrice;
231
+ if (data.downPayment < minDownPayment || data.downPayment > maxDownPayment) {
232
+ ctx.addIssue({
233
+ code: z.ZodIssueCode.custom,
234
+ path: ["downPayment"],
235
+ message: `Value must be between ${minDownPayment.toLocaleString()} and ${maxDownPayment.toLocaleString()}.`
236
+ });
237
+ }
238
+ }
239
239
  });
240
240
  const methods = useForm({
241
- resolver: zodResolver(gen_schema, {
242
- async: true
243
- }),
244
- mode: "all",
241
+ resolver: zodResolver(
242
+ gen_schema,
243
+ {
244
+ async: true
245
+ },
246
+ { mode: "async" }
247
+ ),
248
+ mode: "onChange",
249
+ reValidateMode: "onChange",
245
250
  defaultValues: {
246
251
  loanPurpose: 1,
247
252
  AlternativeEmail: "bestbank@axos.com",
@@ -282,13 +287,11 @@ const MortgageRate = ({
282
287
  const {
283
288
  handleSubmit,
284
289
  register,
285
- formState: { errors, isValid, isSubmitting },
290
+ formState: { errors, isValid, isSubmitting, isValidating },
286
291
  watch
287
292
  } = methods;
293
+ const shouldDisable = !isValid || isSubmitting || isValidating;
288
294
  const salesPrice = watch("salesPrice");
289
- useEffect(() => {
290
- setSalesPriceVal(salesPrice);
291
- });
292
295
  useEffect(() => {
293
296
  if (salesPrice > 0 && !isTypingDownPayment) {
294
297
  const calculatedDownPayment = Math.round(
@@ -297,7 +300,7 @@ const MortgageRate = ({
297
300
  if (!isTypingDownPayment) setDownPayment(calculatedDownPayment);
298
301
  methods.setValue("downPayment", calculatedDownPayment);
299
302
  }
300
- }, [salesPrice, downPaymentPercentage]);
303
+ }, [salesPrice, downPaymentPercentage, isTypingDownPayment, methods]);
301
304
  const submitForm = async (data) => {
302
305
  const processData = {
303
306
  ...data
@@ -544,7 +547,8 @@ const MortgageRate = ({
544
547
  type: "text",
545
548
  ...register("downPayment", {
546
549
  required: true,
547
- setValueAs: (value) => parseCurrency(value)
550
+ setValueAs: (value) => parseCurrency(value),
551
+ deps: ["salesPrice"]
548
552
  }),
549
553
  salesPrice: watch("salesPrice"),
550
554
  downPaymentPercentage,
@@ -652,17 +656,23 @@ const MortgageRate = ({
652
656
  Input,
653
657
  {
654
658
  id: "zipCode",
655
- type: "number",
659
+ type: "text",
660
+ inputMode: "numeric",
656
661
  ...register("zipCode", {
657
662
  required: true,
658
- setValueAs: (value) => Number(value)
663
+ pattern: /^\d{5}$/
659
664
  }),
660
665
  label: "Zip Code",
661
666
  sizes: "medium",
662
667
  required: true,
663
668
  error: !!errors.zipCode,
664
669
  helperText: errors.zipCode?.message,
665
- variant
670
+ variant,
671
+ maxLength: 5,
672
+ onInput: (e) => {
673
+ const target = e.target;
674
+ target.value = target.value.replace(/\D/g, "");
675
+ }
666
676
  }
667
677
  ) }),
668
678
  loanPurpose === 2 ? /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx("div", { className: fullRowForm, children: /* @__PURE__ */ jsx(
@@ -775,12 +785,12 @@ const MortgageRate = ({
775
785
  "button",
776
786
  {
777
787
  type: "submit",
778
- disabled: !isValid,
788
+ disabled: shouldDisable,
779
789
  className: button({
780
790
  color: "secondary",
781
791
  size: "large",
782
792
  rounded: "medium",
783
- disabled: !isValid
793
+ disabled: shouldDisable
784
794
  }),
785
795
  children: "Get My Rate"
786
796
  }
@@ -16,12 +16,12 @@ import "../../Input/InputPhone.js";
16
16
  import "../../Input/InputTextArea.js";
17
17
  import { DownPaymentInput } from "../../Input/DownPaymentInput.js";
18
18
  import "../../Input/RadioButton.js";
19
+ import { LoadingIndicator } from "../../LoadingIndicator/index.js";
19
20
  import clsx from "clsx";
20
21
  import { useForm, FormProvider } from "react-hook-form";
21
22
  import * as z from "zod";
22
23
  import { headerForm, headerContainer, form, fullRowForm, formWrapper, actions, formContainer } from "../Forms.css.js";
23
24
  import { SalesforceSchema } from "../SalesforceFieldsForm.js";
24
- import { LoadingIndicator } from "../../LoadingIndicator/index.js";
25
25
  const MortgageRateFilters = ({
26
26
  formData,
27
27
  onSubmit
@@ -62,7 +62,7 @@ const MortgageRateFilters = ({
62
62
  }
63
63
  ),
64
64
  creditScore: z.number({ message: "Credit Score is required." }).positive({ message: "Credit Score is required." }),
65
- zipCode: z.number().positive({ message: "Zip Code is required." }),
65
+ zipCode: z.string().trim().min(1, { message: "Zip Code is required." }).regex(/^\d{5}$/, { message: "ZIP code must be 5 digits." }),
66
66
  appraisedValue: z.number({ message: "Home Price is required." }).optional().refine(
67
67
  (val) => {
68
68
  if (loanPurpose === 2) {
@@ -390,10 +390,11 @@ const MortgageRateFilters = ({
390
390
  Input,
391
391
  {
392
392
  id: "zipCode",
393
- type: "number",
393
+ type: "text",
394
+ inputMode: "numeric",
394
395
  ...register("zipCode", {
395
396
  required: true,
396
- setValueAs: (value) => Number(value)
397
+ pattern: /^\d{5}$/
397
398
  }),
398
399
  label: "Zip Code",
399
400
  sizes: "medium",
@@ -401,7 +402,12 @@ const MortgageRateFilters = ({
401
402
  error: !!errors.zipCode,
402
403
  helperText: errors.zipCode?.message,
403
404
  variant: "tertiary",
404
- defaultValue: formData.zipCode
405
+ defaultValue: formData.zipCode,
406
+ maxLength: 5,
407
+ onInput: (e) => {
408
+ const target = e.target;
409
+ target.value = target.value.replace(/\D/g, "");
410
+ }
405
411
  }
406
412
  ) }),
407
413
  loanPurpose === 2 ? /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
@@ -1,42 +1,42 @@
1
- import '../../assets/NavigationMenu/AxosBank/NavBar.css.css';const header = "_header_yjw9r_1";
2
- const wrapper = "_wrapper_yjw9r_9";
3
- const header_main_row = "_header_main_row_yjw9r_21";
4
- const logo_wrap = "_logo_wrap_yjw9r_33";
5
- const primary_links = "_primary_links_yjw9r_41";
6
- const main_nav_link = "_main_nav_link_yjw9r_49";
7
- const sub_nav_link = "_sub_nav_link_yjw9r_113";
8
- const signin_wrap = "_signin_wrap_yjw9r_117";
9
- const signin_btn = "_signin_btn_yjw9r_119";
10
- const header_sub_row = "_header_sub_row_yjw9r_195";
11
- const signin_dropdown = "_signin_dropdown_yjw9r_261";
12
- const shadow = "_shadow_yjw9r_281";
13
- const signin_header = "_signin_header_yjw9r_301";
14
- const signin_subheader = "_signin_subheader_yjw9r_315";
15
- const opacity = "_opacity_yjw9r_357";
16
- const fadeInDown = "_fadeInDown_yjw9r_1";
17
- const signin_footer = "_signin_footer_yjw9r_369";
18
- const open = "_open_yjw9r_411";
19
- const dd_wrapper = "_dd_wrapper_yjw9r_435";
20
- const dd_media = "_dd_media_yjw9r_453";
21
- const dd_media_img = "_dd_media_img_yjw9r_463";
22
- const dd_site_navs = "_dd_site_navs_yjw9r_471";
23
- const dd_media_header = "_dd_media_header_yjw9r_485";
24
- const mt_8 = "_mt_8_yjw9r_507";
25
- const mt_16 = "_mt_16_yjw9r_515";
26
- const ml_8 = "_ml_8_yjw9r_523";
27
- const reversed_row = "_reversed_row_yjw9r_531";
28
- const headline = "_headline_yjw9r_539";
29
- const nav_anchor = "_nav_anchor_yjw9r_555";
30
- const headline_cta = "_headline_cta_yjw9r_571";
31
- const site_lists = "_site_lists_yjw9r_603";
32
- const modify_fit = "_modify_fit_yjw9r_643";
33
- const mobile_only = "_mobile_only_yjw9r_693";
34
- const mobile_logo = "_mobile_logo_yjw9r_705";
35
- const highlight = "_highlight_yjw9r_719";
36
- const mobile_opened = "_mobile_opened_yjw9r_731";
37
- const dd_footer = "_dd_footer_yjw9r_747";
38
- const skip_btn = "_skip_btn_yjw9r_763";
39
- const desktop_only = "_desktop_only_yjw9r_835";
1
+ import '../../assets/NavigationMenu/AxosBank/NavBar.css.css';const header = "_header_1upco_1";
2
+ const wrapper = "_wrapper_1upco_5";
3
+ const header_main_row = "_header_main_row_1upco_11";
4
+ const logo_wrap = "_logo_wrap_1upco_17";
5
+ const primary_links = "_primary_links_1upco_21";
6
+ const main_nav_link = "_main_nav_link_1upco_25";
7
+ const sub_nav_link = "_sub_nav_link_1upco_57";
8
+ const signin_wrap = "_signin_wrap_1upco_59";
9
+ const signin_btn = "_signin_btn_1upco_60";
10
+ const header_sub_row = "_header_sub_row_1upco_98";
11
+ const signin_dropdown = "_signin_dropdown_1upco_131";
12
+ const shadow = "_shadow_1upco_141";
13
+ const signin_header = "_signin_header_1upco_151";
14
+ const signin_subheader = "_signin_subheader_1upco_158";
15
+ const opacity = "_opacity_1upco_179";
16
+ const fadeInDown = "_fadeInDown_1upco_1";
17
+ const signin_footer = "_signin_footer_1upco_185";
18
+ const open = "_open_1upco_206";
19
+ const dd_wrapper = "_dd_wrapper_1upco_218";
20
+ const dd_media = "_dd_media_1upco_227";
21
+ const dd_media_img = "_dd_media_img_1upco_232";
22
+ const dd_site_navs = "_dd_site_navs_1upco_236";
23
+ const dd_media_header = "_dd_media_header_1upco_243";
24
+ const mt_8 = "_mt_8_1upco_254";
25
+ const mt_16 = "_mt_16_1upco_258";
26
+ const ml_8 = "_ml_8_1upco_262";
27
+ const reversed_row = "_reversed_row_1upco_266";
28
+ const headline = "_headline_1upco_270";
29
+ const nav_anchor = "_nav_anchor_1upco_278";
30
+ const headline_cta = "_headline_cta_1upco_286";
31
+ const site_lists = "_site_lists_1upco_302";
32
+ const modify_fit = "_modify_fit_1upco_322";
33
+ const mobile_only = "_mobile_only_1upco_347";
34
+ const mobile_logo = "_mobile_logo_1upco_353";
35
+ const highlight = "_highlight_1upco_360";
36
+ const mobile_opened = "_mobile_opened_1upco_366";
37
+ const dd_footer = "_dd_footer_1upco_374";
38
+ const skip_btn = "_skip_btn_1upco_382";
39
+ const desktop_only = "_desktop_only_1upco_418";
40
40
  const styles = {
41
41
  header,
42
42
  wrapper,
@@ -1,40 +1,40 @@
1
- import '../../assets/NavigationMenu/AxosClearing/NavBar.css.css';const header = "_header_5ho04_1";
2
- const wrapper = "_wrapper_5ho04_9";
3
- const header_main_row = "_header_main_row_5ho04_21";
4
- const mobile_header = "_mobile_header_5ho04_23";
5
- const logo_wrap = "_logo_wrap_5ho04_35";
6
- const primary_links = "_primary_links_5ho04_43";
7
- const main_nav_link = "_main_nav_link_5ho04_51";
8
- const sub_nav_link = "_sub_nav_link_5ho04_115";
9
- const signin_wrap = "_signin_wrap_5ho04_119";
10
- const signin_btn = "_signin_btn_5ho04_121";
11
- const sub_nav = "_sub_nav_5ho04_115";
12
- const header_sub_row = "_header_sub_row_5ho04_239";
13
- const signin_dropdown = "_signin_dropdown_5ho04_287";
14
- const shadow = "_shadow_5ho04_307";
15
- const signin_subheader = "_signin_subheader_5ho04_319";
16
- const opacity = "_opacity_5ho04_361";
17
- const fadeInDown = "_fadeInDown_5ho04_1";
18
- const open = "_open_5ho04_373";
19
- const hamburger = "_hamburger_5ho04_409";
20
- const mobile_only = "_mobile_only_5ho04_437";
21
- const mobile_logo = "_mobile_logo_5ho04_449";
22
- const highlight = "_highlight_5ho04_459";
23
- const mobile_nav = "_mobile_nav_5ho04_513";
24
- const mobile_opened = "_mobile_opened_5ho04_535";
25
- const mobile_nav_item = "_mobile_nav_item_5ho04_551";
26
- const has_dropdown = "_has_dropdown_5ho04_581";
27
- const icon_wrap = "_icon_wrap_5ho04_623";
28
- const mobile_footer = "_mobile_footer_5ho04_633";
29
- const mobile_footer_content = "_mobile_footer_content_5ho04_643";
30
- const mobile_footer_media = "_mobile_footer_media_5ho04_673";
31
- const footer_cta = "_footer_cta_5ho04_685";
32
- const inner_wrapper = "_inner_wrapper_5ho04_743";
33
- const btn = "_btn_5ho04_755";
34
- const sub_menu = "_sub_menu_5ho04_765";
35
- const main = "_main_5ho04_51";
36
- const dd_footer = "_dd_footer_5ho04_815";
37
- const desktop_only = "_desktop_only_5ho04_865";
1
+ import '../../assets/NavigationMenu/AxosClearing/NavBar.css.css';const header = "_header_hmrrj_1";
2
+ const wrapper = "_wrapper_hmrrj_5";
3
+ const header_main_row = "_header_main_row_hmrrj_11";
4
+ const mobile_header = "_mobile_header_hmrrj_12";
5
+ const logo_wrap = "_logo_wrap_hmrrj_18";
6
+ const primary_links = "_primary_links_hmrrj_22";
7
+ const main_nav_link = "_main_nav_link_hmrrj_26";
8
+ const sub_nav_link = "_sub_nav_link_hmrrj_58";
9
+ const signin_wrap = "_signin_wrap_hmrrj_60";
10
+ const signin_btn = "_signin_btn_hmrrj_61";
11
+ const sub_nav = "_sub_nav_hmrrj_58";
12
+ const header_sub_row = "_header_sub_row_hmrrj_120";
13
+ const signin_dropdown = "_signin_dropdown_hmrrj_144";
14
+ const shadow = "_shadow_hmrrj_154";
15
+ const signin_subheader = "_signin_subheader_hmrrj_160";
16
+ const opacity = "_opacity_hmrrj_181";
17
+ const fadeInDown = "_fadeInDown_hmrrj_1";
18
+ const open = "_open_hmrrj_187";
19
+ const hamburger = "_hamburger_hmrrj_205";
20
+ const mobile_only = "_mobile_only_hmrrj_219";
21
+ const mobile_logo = "_mobile_logo_hmrrj_225";
22
+ const highlight = "_highlight_hmrrj_230";
23
+ const mobile_nav = "_mobile_nav_hmrrj_257";
24
+ const mobile_opened = "_mobile_opened_hmrrj_268";
25
+ const mobile_nav_item = "_mobile_nav_item_hmrrj_276";
26
+ const has_dropdown = "_has_dropdown_hmrrj_291";
27
+ const icon_wrap = "_icon_wrap_hmrrj_312";
28
+ const mobile_footer = "_mobile_footer_hmrrj_317";
29
+ const mobile_footer_content = "_mobile_footer_content_hmrrj_322";
30
+ const mobile_footer_media = "_mobile_footer_media_hmrrj_337";
31
+ const footer_cta = "_footer_cta_hmrrj_343";
32
+ const inner_wrapper = "_inner_wrapper_hmrrj_372";
33
+ const btn = "_btn_hmrrj_378";
34
+ const sub_menu = "_sub_menu_hmrrj_383";
35
+ const main = "_main_hmrrj_26";
36
+ const dd_footer = "_dd_footer_hmrrj_408";
37
+ const desktop_only = "_desktop_only_hmrrj_433";
38
38
  const styles = {
39
39
  header,
40
40
  wrapper,
@@ -1,44 +1,44 @@
1
- import '../../assets/NavigationMenu/AxosFiduciary/NavBar.css.css';const header = "_header_1hqsj_1";
2
- const wrapper = "_wrapper_1hqsj_9";
3
- const header_main_row = "_header_main_row_1hqsj_21";
4
- const mobile_header = "_mobile_header_1hqsj_23";
5
- const logo_wrap = "_logo_wrap_1hqsj_35";
6
- const primary_links = "_primary_links_1hqsj_43";
7
- const main_nav = "_main_nav_1hqsj_51";
8
- const main_nav_link = "_main_nav_link_1hqsj_65";
9
- const sub_nav_link = "_sub_nav_link_1hqsj_109";
10
- const signin_wrap = "_signin_wrap_1hqsj_113";
11
- const signin_btn = "_signin_btn_1hqsj_115";
12
- const sub_nav = "_sub_nav_1hqsj_109";
13
- const header_sub_row = "_header_sub_row_1hqsj_197";
14
- const shadow = "_shadow_1hqsj_229";
15
- const opacity = "_opacity_1hqsj_261";
16
- const fadeInDown = "_fadeInDown_1hqsj_1";
17
- const footer = "_footer_1hqsj_273";
18
- const open = "_open_1hqsj_305";
19
- const mt_8 = "_mt_8_1hqsj_321";
20
- const mt_16 = "_mt_16_1hqsj_329";
21
- const ml_8 = "_ml_8_1hqsj_337";
22
- const reversed_row = "_reversed_row_1hqsj_345";
23
- const nav_anchor = "_nav_anchor_1hqsj_353";
24
- const site_lists = "_site_lists_1hqsj_375";
25
- const hamburger = "_hamburger_1hqsj_383";
26
- const mobile_logo = "_mobile_logo_1hqsj_411";
27
- const mobile_nav = "_mobile_nav_1hqsj_461";
28
- const mobile_opened = "_mobile_opened_1hqsj_483";
29
- const _mobile_opened = "__mobile_opened_1hqsj_491";
30
- const mobile_nav_item = "_mobile_nav_item_1hqsj_499";
31
- const icon_wrap = "_icon_wrap_1hqsj_529";
32
- const mobile_footer = "_mobile_footer_1hqsj_539";
33
- const mobile_footer_content = "_mobile_footer_content_1hqsj_549";
34
- const mobile_footer_media = "_mobile_footer_media_1hqsj_579";
35
- const footer_cta = "_footer_cta_1hqsj_593";
36
- const inner_wrapper = "_inner_wrapper_1hqsj_657";
37
- const btn = "_btn_1hqsj_667";
38
- const sub_menu = "_sub_menu_1hqsj_677";
39
- const main = "_main_1hqsj_51";
40
- const desktop_only = "_desktop_only_1hqsj_735";
41
- const mobile_only = "_mobile_only_1hqsj_829";
1
+ import '../../assets/NavigationMenu/AxosFiduciary/NavBar.css.css';const header = "_header_15z7t_1";
2
+ const wrapper = "_wrapper_15z7t_5";
3
+ const header_main_row = "_header_main_row_15z7t_11";
4
+ const mobile_header = "_mobile_header_15z7t_12";
5
+ const logo_wrap = "_logo_wrap_15z7t_18";
6
+ const primary_links = "_primary_links_15z7t_22";
7
+ const main_nav = "_main_nav_15z7t_26";
8
+ const main_nav_link = "_main_nav_link_15z7t_33";
9
+ const sub_nav_link = "_sub_nav_link_15z7t_55";
10
+ const signin_wrap = "_signin_wrap_15z7t_57";
11
+ const signin_btn = "_signin_btn_15z7t_58";
12
+ const sub_nav = "_sub_nav_15z7t_55";
13
+ const header_sub_row = "_header_sub_row_15z7t_99";
14
+ const shadow = "_shadow_15z7t_115";
15
+ const opacity = "_opacity_15z7t_131";
16
+ const fadeInDown = "_fadeInDown_15z7t_1";
17
+ const footer = "_footer_15z7t_137";
18
+ const open = "_open_15z7t_153";
19
+ const mt_8 = "_mt_8_15z7t_161";
20
+ const mt_16 = "_mt_16_15z7t_165";
21
+ const ml_8 = "_ml_8_15z7t_169";
22
+ const reversed_row = "_reversed_row_15z7t_173";
23
+ const nav_anchor = "_nav_anchor_15z7t_177";
24
+ const site_lists = "_site_lists_15z7t_188";
25
+ const hamburger = "_hamburger_15z7t_192";
26
+ const mobile_logo = "_mobile_logo_15z7t_206";
27
+ const mobile_nav = "_mobile_nav_15z7t_231";
28
+ const mobile_opened = "_mobile_opened_15z7t_242";
29
+ const _mobile_opened = "__mobile_opened_15z7t_246";
30
+ const mobile_nav_item = "_mobile_nav_item_15z7t_250";
31
+ const icon_wrap = "_icon_wrap_15z7t_265";
32
+ const mobile_footer = "_mobile_footer_15z7t_270";
33
+ const mobile_footer_content = "_mobile_footer_content_15z7t_275";
34
+ const mobile_footer_media = "_mobile_footer_media_15z7t_290";
35
+ const footer_cta = "_footer_cta_15z7t_297";
36
+ const inner_wrapper = "_inner_wrapper_15z7t_329";
37
+ const btn = "_btn_15z7t_334";
38
+ const sub_menu = "_sub_menu_15z7t_339";
39
+ const main = "_main_15z7t_26";
40
+ const desktop_only = "_desktop_only_15z7t_368";
41
+ const mobile_only = "_mobile_only_15z7t_415";
42
42
  const styles = {
43
43
  header,
44
44
  wrapper,
@@ -61,7 +61,7 @@ export declare const TableCell: ({ children, as, variant, highlighted, colSpan,
61
61
  is?: string | undefined;
62
62
  exportparts?: string | undefined;
63
63
  part?: string | undefined;
64
- popover?: "" | "auto" | "manual" | "hint" | undefined;
64
+ popover?: "" | "auto" | "manual" | undefined;
65
65
  popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
66
66
  popoverTarget?: string | undefined;
67
67
  onToggle?: import('react').ToggleEventHandler<HTMLTableCellElement> | undefined;
@@ -1,72 +1,72 @@
1
- ._quote_spacer_lqs2u_1 {
2
- line-height: 1.35;
3
- margin-block: clamp(1.88rem, 1.99vw + 1.41rem, 3rem);
4
- margin-inline: auto;
5
- }
6
-
7
- ._author_lqs2u_13,
8
- ._quote_lqs2u_1 {
9
- color: #1f1f1f;
10
- }
11
-
12
- ._author_lqs2u_13 {
13
- text-align: right;
14
- margin-top: 18px;
15
- }
16
-
17
- ._author_lqs2u_13 cite {
18
- font-style: normal;
19
- }
20
-
21
- ._quote_spacer_lqs2u_1 .img_fluid {
22
- margin-right: 24px;
23
- transform: rotateY(180deg) scaleY(-1);
24
- }
25
-
26
- ._quote_spacer_lqs2u_1 .flex_row {
27
- align-items: flex-start;
28
- }
29
-
30
- ._quote_lqs2u_1 p {
31
- font-size: clamp(1.22rem, 0.92vw + 1rem, 1.74rem);
32
- font-style: italic;
33
- line-height: 1.2;
34
- }
35
-
36
- .lchs2s1 ._quote_lqs2u_1 p {
37
- color: #1e3860;
38
- }
39
-
40
- @media (max-width: 768px) {
41
- ._quote_spacer_lqs2u_1 .img_fluid {
42
- max-width: 30px;
43
- margin-right: 12px;
44
- }
45
- ._author_lqs2u_13 {
46
- margin-top: 14px;
47
- }
48
- ._quote_lqs2u_1 p {
49
- font-size: 18px;
50
- }
51
- ._author_lqs2u_13 cite {
52
- font-size: 14px;
53
- }
54
- }
55
-
56
- @media (max-width: 500px) {
57
- ._author_lqs2u_13 {
58
- margin-top: 12px;
59
- }
60
- }
61
-
62
- @media (min-width: 604px) {
63
- ._quote_spacer_lqs2u_1 {
64
- width: min(calc(100% - 2rem), 792px);
65
- }
66
- }
67
-
68
- @media (min-width: 1023px) {
69
- ._quote_lqs2u_1 p {
70
- font-weight: 700;
71
- }
72
- }
1
+ ._quote_spacer_ovx4r_1 {
2
+ line-height: 1.35;
3
+ margin-block: clamp(1.88rem, 1.99vw + 1.41rem, 3rem);
4
+ margin-inline: auto;
5
+ }
6
+
7
+ ._author_ovx4r_7,
8
+ ._quote_ovx4r_1 {
9
+ color: #1f1f1f;
10
+ }
11
+
12
+ ._author_ovx4r_7 {
13
+ text-align: right;
14
+ margin-top: 18px;
15
+ }
16
+
17
+ ._author_ovx4r_7 cite {
18
+ font-style: normal;
19
+ }
20
+
21
+ ._quote_spacer_ovx4r_1 .img_fluid {
22
+ margin-right: 24px;
23
+ transform: rotateY(180deg) scaleY(-1);
24
+ }
25
+
26
+ ._quote_spacer_ovx4r_1 .flex_row {
27
+ align-items: flex-start;
28
+ }
29
+
30
+ ._quote_ovx4r_1 p {
31
+ font-size: clamp(1.22rem, 0.92vw + 1rem, 1.74rem);
32
+ font-style: italic;
33
+ line-height: 1.2;
34
+ }
35
+
36
+ .lchs2s1 ._quote_ovx4r_1 p {
37
+ color: #1e3860;
38
+ }
39
+
40
+ @media (max-width: 768px) {
41
+ ._quote_spacer_ovx4r_1 .img_fluid {
42
+ max-width: 30px;
43
+ margin-right: 12px;
44
+ }
45
+ ._author_ovx4r_7 {
46
+ margin-top: 14px;
47
+ }
48
+ ._quote_ovx4r_1 p {
49
+ font-size: 18px;
50
+ }
51
+ ._author_ovx4r_7 cite {
52
+ font-size: 14px;
53
+ }
54
+ }
55
+
56
+ @media (max-width: 500px) {
57
+ ._author_ovx4r_7 {
58
+ margin-top: 12px;
59
+ }
60
+ }
61
+
62
+ @media (min-width: 604px) {
63
+ ._quote_spacer_ovx4r_1 {
64
+ width: min(calc(100% - 2rem), 792px);
65
+ }
66
+ }
67
+
68
+ @media (min-width: 1023px) {
69
+ ._quote_ovx4r_1 p {
70
+ font-weight: 700;
71
+ }
72
+ }