@opensite/ui 2.5.0 → 2.5.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.
package/dist/registry.js CHANGED
@@ -11,8 +11,7 @@ import * as PopoverPrimitive from '@radix-ui/react-popover';
11
11
  import { Icon } from '@page-speed/icon';
12
12
  import { usePlatformFromUrl } from '@opensite/hooks/usePlatformFromUrl';
13
13
  import * as TabsPrimitive from '@radix-ui/react-tabs';
14
- import { Form, useForm, Field } from '@page-speed/forms';
15
- import { useFileUpload, useContactForm, DynamicFormField, FormEngine, submitPageSpeedForm, PageSpeedFormSubmissionError, isValidEmail } from '@page-speed/forms/integration';
14
+ import { FormEngine, useFileUpload, useContactForm, DynamicFormField, submitPageSpeedForm, PageSpeedFormSubmissionError, isValidEmail } from '@page-speed/forms/integration';
16
15
  import { AnimatePresence, motion, useMotionValue, useMotionTemplate, useSpring, useTransform, useInView, useScroll, useMotionValueEvent } from 'framer-motion';
17
16
  import { Lightbox } from '@page-speed/lightbox';
18
17
  import * as SeparatorPrimitive from '@radix-ui/react-separator';
@@ -27,6 +26,7 @@ import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
27
26
  import * as LabelPrimitive from '@radix-ui/react-label';
28
27
  import { format } from 'date-fns';
29
28
  import * as DialogPrimitive from '@radix-ui/react-dialog';
29
+ import { Form, useForm, Field } from '@page-speed/forms';
30
30
  import * as TooltipPrimitive from '@radix-ui/react-tooltip';
31
31
  import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
32
32
  import * as SwitchPrimitive from '@radix-ui/react-switch';
@@ -4356,12 +4356,18 @@ function FooterLinksGrid({
4356
4356
  }
4357
4357
  );
4358
4358
  }
4359
+ var DEFAULT_STYLE_RULES = {
4360
+ formContainer: "flex items-stretch w-full",
4361
+ fieldsContainer: "",
4362
+ fieldClassName: "",
4363
+ formClassName: ""
4364
+ };
4359
4365
  var DEFAULT_FORM_FIELDS = [
4360
4366
  {
4361
4367
  name: "email",
4362
4368
  type: "email",
4363
4369
  label: "Email Address",
4364
- placeholder: "Enter your email",
4370
+ placeholder: "Email Address",
4365
4371
  required: true,
4366
4372
  columnSpan: 12
4367
4373
  }
@@ -4374,7 +4380,6 @@ function FooterSocialNewsletter({
4374
4380
  className,
4375
4381
  contentClassName,
4376
4382
  logoWrapperClassName,
4377
- logoClassName,
4378
4383
  gridClassName,
4379
4384
  navSectionClassName,
4380
4385
  navTitleClassName,
@@ -4383,16 +4388,7 @@ function FooterSocialNewsletter({
4383
4388
  socialColumnClassName,
4384
4389
  socialLinksClassName,
4385
4390
  socialLinkClassName,
4386
- formFields = DEFAULT_FORM_FIELDS,
4387
- formConfig,
4388
- onSubmit,
4389
- onSuccess,
4390
- onError,
4391
- successMessage,
4392
- buttonAction,
4393
- helperText,
4394
- formSlot,
4395
- privacyClassName,
4391
+ formEngineSetup,
4396
4392
  bottomClassName,
4397
4393
  copyrightClassName,
4398
4394
  background,
@@ -4402,104 +4398,36 @@ function FooterSocialNewsletter({
4402
4398
  patternOpacity,
4403
4399
  optixFlowConfig
4404
4400
  }) {
4405
- const {
4406
- uploadTokens,
4407
- uploadProgress,
4408
- isUploading,
4409
- uploadFiles,
4410
- removeFile,
4411
- resetUpload
4412
- } = useFileUpload({ onError });
4413
- const { form, submissionError, formMethod, resetSubmissionState } = useContactForm({
4414
- formFields,
4415
- formConfig,
4416
- onSubmit,
4417
- onSuccess: (data) => {
4418
- resetUpload();
4419
- onSuccess?.(data);
4420
- },
4421
- onError,
4422
- uploadTokens
4423
- });
4424
4401
  const renderForm = React30.useMemo(() => {
4425
- if (formSlot) return formSlot;
4426
- const defaultButtonAction = {
4427
- label: "Subscribe",
4402
+ if (!formEngineSetup) return null;
4403
+ const action = {
4428
4404
  variant: "default",
4429
- className: "h-12"
4405
+ icon: /* @__PURE__ */ jsx(DynamicIcon, { name: "lucide/arrow-right", size: 16 })
4430
4406
  };
4431
- const action = buttonAction || defaultButtonAction;
4432
- return /* @__PURE__ */ jsxs(
4433
- Form,
4407
+ return /* @__PURE__ */ jsx(
4408
+ FormEngine,
4434
4409
  {
4435
- form,
4436
- fields: formFields,
4437
- notificationConfig: {
4438
- submissionError,
4439
- successMessage
4440
- },
4441
- formConfig: {
4442
- endpoint: formConfig?.endpoint,
4443
- method: formMethod,
4444
- submissionConfig: formConfig?.submissionConfig,
4445
- formLayout: "button-group",
4446
- buttonGroupSize: "sm",
4447
- submitLabel: action.label,
4448
- submitVariant: action.variant || "default",
4449
- submitIconComponent: action.icon || /* @__PURE__ */ jsx(DynamicIcon, { name: "lucide/send" })
4450
- },
4451
- onNewSubmission: () => {
4452
- resetUpload();
4453
- resetSubmissionState();
4410
+ formEngineSetup: {
4411
+ ...formEngineSetup,
4412
+ formLayoutSettings: {
4413
+ ...formEngineSetup.formLayoutSettings,
4414
+ formLayout: "button-group",
4415
+ buttonGroupSetup: {
4416
+ ...formEngineSetup.formLayoutSettings?.buttonGroupSetup,
4417
+ size: "default",
4418
+ submitLabel: action.icon || action.label,
4419
+ submitVariant: action.variant
4420
+ }
4421
+ }
4454
4422
  },
4455
- children: [
4456
- /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-4 sm:flex-row", children: [
4457
- formFields.map((field) => /* @__PURE__ */ jsx("div", { className: "flex-1", children: /* @__PURE__ */ jsx(
4458
- DynamicFormField,
4459
- {
4460
- field,
4461
- uploadProgress,
4462
- onFileUpload: uploadFiles,
4463
- onFileRemove: removeFile,
4464
- isUploading
4465
- }
4466
- ) }, field.name)),
4467
- /* @__PURE__ */ jsxs(
4468
- Pressable,
4469
- {
4470
- onClick: form.handleSubmit,
4471
- asButton: true,
4472
- variant: action.variant,
4473
- className: cn("h-12", action.className),
4474
- disabled: form.isSubmitting,
4475
- children: [
4476
- action.label,
4477
- action.iconAfter
4478
- ]
4479
- }
4480
- )
4481
- ] }),
4482
- helperText && (typeof helperText === "string" ? /* @__PURE__ */ jsx("p", { className: cn("text-sm mt-2"), children: helperText }) : helperText)
4483
- ]
4423
+ defaultFields: DEFAULT_FORM_FIELDS,
4424
+ defaultStyleRules: {
4425
+ ...DEFAULT_STYLE_RULES,
4426
+ formContainer: cn(DEFAULT_STYLE_RULES.formContainer)
4427
+ }
4484
4428
  }
4485
4429
  );
4486
- }, [
4487
- formSlot,
4488
- formFields,
4489
- form,
4490
- formConfig,
4491
- formMethod,
4492
- buttonAction,
4493
- uploadProgress,
4494
- uploadFiles,
4495
- removeFile,
4496
- isUploading,
4497
- submissionError,
4498
- successMessage,
4499
- helperText,
4500
- resetUpload,
4501
- resetSubmissionState
4502
- ]);
4430
+ }, [formEngineSetup]);
4503
4431
  return /* @__PURE__ */ jsx(
4504
4432
  Section,
4505
4433
  {
@@ -4507,20 +4435,26 @@ function FooterSocialNewsletter({
4507
4435
  spacing,
4508
4436
  pattern,
4509
4437
  patternOpacity,
4510
- className: cn(className),
4438
+ className,
4511
4439
  containerClassName,
4512
4440
  children: /* @__PURE__ */ jsx("div", { className: cn(contentClassName), children: /* @__PURE__ */ jsxs("footer", { children: [
4513
4441
  /* @__PURE__ */ jsxs("div", { className: "mb-20", children: [
4514
4442
  logo && /* @__PURE__ */ jsx(
4515
- FooterLogo,
4443
+ Pressable,
4516
4444
  {
4517
- logo,
4518
- logoClassName: cn(
4519
- "flex items-center gap-2",
4520
- logoWrapperClassName
4521
- ),
4522
- logoImageClassName: cn("h-10", logoClassName),
4523
- optixFlowConfig
4445
+ href: logo.url || "/",
4446
+ className: cn("block mb-8 md:mb-12", logoWrapperClassName),
4447
+ children: /* @__PURE__ */ jsx(
4448
+ Img,
4449
+ {
4450
+ src: logo.src,
4451
+ className: cn(
4452
+ "h-16 object-contain w-auto max-w-full",
4453
+ logo.className
4454
+ ),
4455
+ optixFlowConfig
4456
+ }
4457
+ )
4524
4458
  }
4525
4459
  ),
4526
4460
  socialLinks && socialLinks.length > 0 && /* @__PURE__ */ jsx("div", { className: cn("mt-6", socialColumnClassName), children: /* @__PURE__ */ jsx(
@@ -4533,10 +4467,9 @@ function FooterSocialNewsletter({
4533
4467
  children: socialLinks.map((social, idx) => /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
4534
4468
  SocialLinkIcon,
4535
4469
  {
4536
- href: social.href,
4537
- label: social.label,
4538
- iconNameOverride: social.iconNameOverride,
4539
- iconSize: 20,
4470
+ size: "icon-lg",
4471
+ variant: "ghost",
4472
+ ...social,
4540
4473
  className: cn(
4541
4474
  "opacity-80 transition-colors hover:opacity-100",
4542
4475
  socialLinkClassName
@@ -6046,7 +5979,7 @@ function FooterAnimatedSocial({
6046
5979
  }
6047
5980
  );
6048
5981
  }
6049
- var DEFAULT_STYLE_RULES = {
5982
+ var DEFAULT_STYLE_RULES2 = {
6050
5983
  formContainer: "flex w-full items-end border-b border-b-foreground/10",
6051
5984
  fieldsContainer: "",
6052
5985
  fieldClassName: "",
@@ -6084,6 +6017,7 @@ function FooterNewsletterMinimal({
6084
6017
  socialLinksClassName,
6085
6018
  socialLinkClassName,
6086
6019
  newsletterSectionClassName,
6020
+ newsletterLabelClassName,
6087
6021
  newsletterFormClassName,
6088
6022
  bottomGridClassName,
6089
6023
  locationClassName,
@@ -6169,9 +6103,9 @@ function FooterNewsletterMinimal({
6169
6103
  },
6170
6104
  defaultFields: DEFAULT_FORM_FIELDS2,
6171
6105
  defaultStyleRules: {
6172
- ...DEFAULT_STYLE_RULES,
6106
+ ...DEFAULT_STYLE_RULES2,
6173
6107
  formContainer: cn(
6174
- DEFAULT_STYLE_RULES.formContainer,
6108
+ DEFAULT_STYLE_RULES2.formContainer,
6175
6109
  newsletterFormClassName
6176
6110
  )
6177
6111
  }
@@ -6197,29 +6131,41 @@ function FooterNewsletterMinimal({
6197
6131
  ),
6198
6132
  children: [
6199
6133
  /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-10", children: [
6200
- heading && /* @__PURE__ */ jsx(
6201
- "p",
6202
- {
6203
- className: cn(
6204
- "relative text-4xl font-medium tracking-tight lg:text-5xl",
6205
- headingClassName
6206
- ),
6207
- children: heading
6208
- }
6209
- ),
6210
- (supportLabel || supportEmail) && /* @__PURE__ */ jsxs(
6134
+ /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-4", children: [
6135
+ heading && /* @__PURE__ */ jsx(
6136
+ "h2",
6137
+ {
6138
+ className: cn(
6139
+ "relative text-4xl font-semibold tracking-tight lg:text-5xl text-balance",
6140
+ headingClassName
6141
+ ),
6142
+ children: heading
6143
+ }
6144
+ ),
6145
+ location && /* @__PURE__ */ jsx(
6146
+ "div",
6147
+ {
6148
+ className: cn(
6149
+ "font-semibold text-lg opacity-75",
6150
+ locationClassName
6151
+ ),
6152
+ children: location
6153
+ }
6154
+ )
6155
+ ] }),
6156
+ /* @__PURE__ */ jsx("div", { className: "flex flex-col gap-4", children: (supportLabel || supportEmail) && /* @__PURE__ */ jsxs(
6211
6157
  "div",
6212
6158
  {
6213
6159
  className: cn(
6214
- "space-y-1 text-sm font-light tracking-tight lg:text-base",
6160
+ "space-y-1 text-sm tracking-tight lg:text-base",
6215
6161
  supportClassName
6216
6162
  ),
6217
6163
  children: [
6218
- supportLabel && /* @__PURE__ */ jsx("p", { children: supportLabel }),
6219
- supportEmail && /* @__PURE__ */ jsx(Pressable, { href: `mailto:${supportEmail}`, children: supportEmail })
6164
+ supportLabel && /* @__PURE__ */ jsx("p", { className: "font-light opacity-75", children: supportLabel }),
6165
+ supportEmail && /* @__PURE__ */ jsx(Pressable, { className: "font-semibold", href: supportEmail, children: supportEmail })
6220
6166
  ]
6221
6167
  }
6222
- )
6168
+ ) })
6223
6169
  ] }),
6224
6170
  /* @__PURE__ */ jsxs(
6225
6171
  "div",
@@ -6237,41 +6183,35 @@ function FooterNewsletterMinimal({
6237
6183
  ]
6238
6184
  }
6239
6185
  ),
6240
- /* @__PURE__ */ jsxs(
6186
+ /* @__PURE__ */ jsx(
6241
6187
  "div",
6242
6188
  {
6243
6189
  className: cn(
6244
6190
  "mt-20 flex flex-col justify-between gap-15 lg:flex-row",
6245
6191
  newsletterSectionClassName
6246
6192
  ),
6247
- children: [
6248
- formEngineSetup && /* @__PURE__ */ jsx("div", { className: "flex w-full max-w-md flex-col gap-10", children: /* @__PURE__ */ jsxs("div", { className: "space-y-1 text-sm font-light tracking-tight lg:text-base", children: [
6249
- newsletterLabel && /* @__PURE__ */ jsx("p", { children: newsletterLabel }),
6250
- renderForm
6251
- ] }) }),
6252
- /* @__PURE__ */ jsxs(
6253
- "div",
6193
+ children: formEngineSetup && /* @__PURE__ */ jsx("div", { className: "flex w-full max-w-md flex-col gap-10", children: /* @__PURE__ */ jsxs("div", { className: "space-y-4", children: [
6194
+ newsletterLabel && /* @__PURE__ */ jsx(
6195
+ "p",
6254
6196
  {
6255
6197
  className: cn(
6256
- "grid w-full max-w-xs grid-cols-2 gap-10 text-sm font-light lg:text-base",
6257
- bottomGridClassName
6198
+ "text-xl font-light tracking-tight",
6199
+ newsletterLabelClassName
6258
6200
  ),
6259
- children: [
6260
- location && /* @__PURE__ */ jsx("div", { className: cn("w-32", locationClassName), children: location }),
6261
- /* @__PURE__ */ jsx("ul", { className: cn("space-y-1", footerLinksClassName), children: footerLinksContent })
6262
- ]
6201
+ children: newsletterLabel
6263
6202
  }
6264
- )
6265
- ]
6203
+ ),
6204
+ renderForm
6205
+ ] }) })
6266
6206
  }
6267
6207
  ),
6268
6208
  brandText && /* @__PURE__ */ jsx("div", { className: cn("mt-20 w-full lg:mt-32", brandSectionClassName), children: /* @__PURE__ */ jsx(
6269
6209
  motion.div,
6270
6210
  {
6271
- initial: { opacity: 0, y: 20 },
6211
+ initial: { opacity: 0, y: 80 },
6272
6212
  whileInView: { opacity: 1, y: 0 },
6273
- viewport: { once: true },
6274
- transition: { duration: 0.6 },
6213
+ viewport: { once: true, amount: 0.5 },
6214
+ transition: { duration: 0.9, ease: [0.16, 1, 0.3, 1] },
6275
6215
  className: "text-center",
6276
6216
  children: /* @__PURE__ */ jsx(
6277
6217
  "span",
@@ -6289,19 +6229,51 @@ function FooterNewsletterMinimal({
6289
6229
  "div",
6290
6230
  {
6291
6231
  className: cn(
6292
- "mt-8 text-center text-sm opacity-80",
6232
+ "flex flex-col items-center space-y-6",
6233
+ brandText ? "mb-24" : "mt-8",
6293
6234
  copyrightClassName
6294
6235
  ),
6295
6236
  children: [
6296
- /* @__PURE__ */ jsx(FooterCopyright, { copyright }),
6297
6237
  /* @__PURE__ */ jsx(
6298
- BrandAttribution,
6238
+ "div",
6299
6239
  {
6300
- internalBrandSlug: "open_site_ai",
6301
- optionIndex: 4,
6302
- variant: "div",
6303
- containerClassName: "mt-2",
6304
- linkClassName: "underline underline-offset-4 transition-colors hover:opacity-100"
6240
+ className: cn(
6241
+ "flex items-center justify-center",
6242
+ bottomGridClassName
6243
+ ),
6244
+ children: /* @__PURE__ */ jsx(
6245
+ "div",
6246
+ {
6247
+ className: cn(
6248
+ "flex gap-4 md:gap-6 text-sm font-light lg:text-base",
6249
+ "text-center items-center justify-center flex-wrap",
6250
+ footerLinksClassName
6251
+ ),
6252
+ children: footerLinksContent
6253
+ }
6254
+ )
6255
+ }
6256
+ ),
6257
+ /* @__PURE__ */ jsxs(
6258
+ "div",
6259
+ {
6260
+ className: cn(
6261
+ "mt-8 text-center text-sm opacity-50",
6262
+ copyrightClassName
6263
+ ),
6264
+ children: [
6265
+ /* @__PURE__ */ jsx(FooterCopyright, { copyright }),
6266
+ /* @__PURE__ */ jsx(
6267
+ BrandAttribution,
6268
+ {
6269
+ internalBrandSlug: "open_site_ai",
6270
+ optionIndex: 4,
6271
+ variant: "div",
6272
+ containerClassName: "mt-2",
6273
+ linkClassName: "underline underline-offset-4 transition-colors hover:opacity-100"
6274
+ }
6275
+ )
6276
+ ]
6305
6277
  }
6306
6278
  )
6307
6279
  ]
@@ -11583,7 +11555,7 @@ function CtaImageOverlayArrow({
11583
11555
  }
11584
11556
  );
11585
11557
  }
11586
- var DEFAULT_STYLE_RULES2 = {
11558
+ var DEFAULT_STYLE_RULES3 = {
11587
11559
  formContainer: "flex items-stretch w-full",
11588
11560
  fieldsContainer: "",
11589
11561
  fieldClassName: "",
@@ -11654,8 +11626,8 @@ function CtaAppDownloadNewsletter({
11654
11626
  },
11655
11627
  defaultFields: DEFAULT_FORM_FIELDS3,
11656
11628
  defaultStyleRules: {
11657
- ...DEFAULT_STYLE_RULES2,
11658
- formContainer: cn(DEFAULT_STYLE_RULES2.formContainer, formClassName)
11629
+ ...DEFAULT_STYLE_RULES3,
11630
+ formContainer: cn(DEFAULT_STYLE_RULES3.formContainer, formClassName)
11659
11631
  }
11660
11632
  }
11661
11633
  );
@@ -11763,7 +11735,7 @@ function CtaAppDownloadNewsletter({
11763
11735
  }
11764
11736
  );
11765
11737
  }
11766
- var DEFAULT_STYLE_RULES3 = {
11738
+ var DEFAULT_STYLE_RULES4 = {
11767
11739
  formContainer: "mx-auto mb-8 flex max-w-md items-stretch w-full",
11768
11740
  fieldsContainer: "",
11769
11741
  fieldClassName: "",
@@ -11828,8 +11800,8 @@ function CtaNewsletterFeatures({
11828
11800
  },
11829
11801
  defaultFields: DEFAULT_FORM_FIELDS4,
11830
11802
  defaultStyleRules: {
11831
- ...DEFAULT_STYLE_RULES3,
11832
- formContainer: cn(DEFAULT_STYLE_RULES3.formContainer, formClassName)
11803
+ ...DEFAULT_STYLE_RULES4,
11804
+ formContainer: cn(DEFAULT_STYLE_RULES4.formContainer, formClassName)
11833
11805
  }
11834
11806
  }
11835
11807
  );
@@ -13505,7 +13477,7 @@ function ContactFloatingBanner({
13505
13477
  }
13506
13478
  );
13507
13479
  }
13508
- var DEFAULT_STYLE_RULES4 = {
13480
+ var DEFAULT_STYLE_RULES5 = {
13509
13481
  formContainer: "",
13510
13482
  fieldsContainer: "",
13511
13483
  fieldClassName: "",
@@ -13680,7 +13652,7 @@ function ContactCallback({
13680
13652
  {
13681
13653
  formEngineSetup,
13682
13654
  defaultFields: DEFAULT_FORM_FIELDS5,
13683
- defaultStyleRules: DEFAULT_STYLE_RULES4
13655
+ defaultStyleRules: DEFAULT_STYLE_RULES5
13684
13656
  }
13685
13657
  ) : null
13686
13658
  ] }) })
@@ -13688,7 +13660,7 @@ function ContactCallback({
13688
13660
  }
13689
13661
  );
13690
13662
  }
13691
- var DEFAULT_STYLE_RULES5 = {
13663
+ var DEFAULT_STYLE_RULES6 = {
13692
13664
  formContainer: "",
13693
13665
  fieldsContainer: "",
13694
13666
  fieldClassName: "",
@@ -13817,7 +13789,7 @@ function ContactCard({
13817
13789
  {
13818
13790
  formEngineSetup,
13819
13791
  defaultFields: DEFAULT_FORM_FIELDS6,
13820
- defaultStyleRules: DEFAULT_STYLE_RULES5
13792
+ defaultStyleRules: DEFAULT_STYLE_RULES6
13821
13793
  }
13822
13794
  ) : null }) }),
13823
13795
  /* @__PURE__ */ jsxs(
@@ -13877,7 +13849,7 @@ function ContactCard({
13877
13849
  }
13878
13850
  );
13879
13851
  }
13880
- var DEFAULT_STYLE_RULES6 = {
13852
+ var DEFAULT_STYLE_RULES7 = {
13881
13853
  formContainer: "",
13882
13854
  fieldsContainer: "",
13883
13855
  fieldClassName: "",
@@ -14035,14 +14007,14 @@ function ContactCareers({
14035
14007
  {
14036
14008
  formEngineSetup,
14037
14009
  defaultFields: DEFAULT_FORM_FIELDS7,
14038
- defaultStyleRules: DEFAULT_STYLE_RULES6
14010
+ defaultStyleRules: DEFAULT_STYLE_RULES7
14039
14011
  }
14040
14012
  ) : null }) })
14041
14013
  ] })
14042
14014
  }
14043
14015
  );
14044
14016
  }
14045
- var DEFAULT_STYLE_RULES7 = {
14017
+ var DEFAULT_STYLE_RULES8 = {
14046
14018
  formContainer: "",
14047
14019
  fieldsContainer: "",
14048
14020
  fieldClassName: "",
@@ -14263,14 +14235,14 @@ function ContactCatering({
14263
14235
  {
14264
14236
  formEngineSetup,
14265
14237
  defaultFields: DEFAULT_FORM_FIELDS8,
14266
- defaultStyleRules: DEFAULT_STYLE_RULES7
14238
+ defaultStyleRules: DEFAULT_STYLE_RULES8
14267
14239
  }
14268
14240
  ) : null }) })
14269
14241
  ] })
14270
14242
  }
14271
14243
  );
14272
14244
  }
14273
- var DEFAULT_STYLE_RULES8 = {
14245
+ var DEFAULT_STYLE_RULES9 = {
14274
14246
  formContainer: "",
14275
14247
  fieldsContainer: "",
14276
14248
  fieldClassName: "",
@@ -14444,14 +14416,14 @@ function ContactConsultation({
14444
14416
  {
14445
14417
  formEngineSetup,
14446
14418
  defaultFields: DEFAULT_FORM_FIELDS9,
14447
- defaultStyleRules: DEFAULT_STYLE_RULES8
14419
+ defaultStyleRules: DEFAULT_STYLE_RULES9
14448
14420
  }
14449
14421
  ) : null }) })
14450
14422
  ] })
14451
14423
  }
14452
14424
  );
14453
14425
  }
14454
- var DEFAULT_STYLE_RULES9 = {
14426
+ var DEFAULT_STYLE_RULES10 = {
14455
14427
  formContainer: "",
14456
14428
  fieldsContainer: "",
14457
14429
  fieldClassName: "",
@@ -14584,7 +14556,7 @@ function ContactDark({
14584
14556
  {
14585
14557
  formEngineSetup,
14586
14558
  defaultFields: DEFAULT_FORM_FIELDS10,
14587
- defaultStyleRules: DEFAULT_STYLE_RULES9
14559
+ defaultStyleRules: DEFAULT_STYLE_RULES10
14588
14560
  }
14589
14561
  ) : null }),
14590
14562
  /* @__PURE__ */ jsxs(
@@ -14775,7 +14747,7 @@ var BlurText = ({
14775
14747
  }
14776
14748
  );
14777
14749
  };
14778
- var DEFAULT_STYLE_RULES10 = {
14750
+ var DEFAULT_STYLE_RULES11 = {
14779
14751
  formContainer: "",
14780
14752
  fieldsContainer: "",
14781
14753
  fieldClassName: "",
@@ -14890,14 +14862,14 @@ function ContactDemo({
14890
14862
  {
14891
14863
  formEngineSetup,
14892
14864
  defaultFields: DEFAULT_FORM_FIELDS11,
14893
- defaultStyleRules: DEFAULT_STYLE_RULES10
14865
+ defaultStyleRules: DEFAULT_STYLE_RULES11
14894
14866
  }
14895
14867
  ) : null }) })
14896
14868
  ] })
14897
14869
  }
14898
14870
  );
14899
14871
  }
14900
- var DEFAULT_STYLE_RULES11 = {
14872
+ var DEFAULT_STYLE_RULES12 = {
14901
14873
  formContainer: "",
14902
14874
  fieldsContainer: "",
14903
14875
  fieldClassName: "",
@@ -15077,14 +15049,14 @@ function ContactEmergency({
15077
15049
  {
15078
15050
  formEngineSetup,
15079
15051
  defaultFields: DEFAULT_FORM_FIELDS12,
15080
- defaultStyleRules: DEFAULT_STYLE_RULES11
15052
+ defaultStyleRules: DEFAULT_STYLE_RULES12
15081
15053
  }
15082
15054
  ) : null })
15083
15055
  ] })
15084
15056
  }
15085
15057
  );
15086
15058
  }
15087
- var DEFAULT_STYLE_RULES12 = {
15059
+ var DEFAULT_STYLE_RULES13 = {
15088
15060
  formContainer: "",
15089
15061
  fieldsContainer: "",
15090
15062
  fieldClassName: "",
@@ -15186,7 +15158,7 @@ function ContactEvent({
15186
15158
  {
15187
15159
  formEngineSetup,
15188
15160
  defaultFields: DEFAULT_FORM_FIELDS13,
15189
- defaultStyleRules: DEFAULT_STYLE_RULES12
15161
+ defaultStyleRules: DEFAULT_STYLE_RULES13
15190
15162
  }
15191
15163
  ) : null }) })
15192
15164
  ] })
@@ -15253,7 +15225,7 @@ function AccordionContent({
15253
15225
  }
15254
15226
  );
15255
15227
  }
15256
- var DEFAULT_STYLE_RULES13 = {
15228
+ var DEFAULT_STYLE_RULES14 = {
15257
15229
  formContainer: "",
15258
15230
  fieldsContainer: "",
15259
15231
  fieldClassName: "",
@@ -15421,7 +15393,7 @@ function ContactFaq({
15421
15393
  {
15422
15394
  formEngineSetup,
15423
15395
  defaultFields: DEFAULT_FORM_FIELDS14,
15424
- defaultStyleRules: DEFAULT_STYLE_RULES13
15396
+ defaultStyleRules: DEFAULT_STYLE_RULES14
15425
15397
  }
15426
15398
  ) : null
15427
15399
  ] }) }),
@@ -15445,7 +15417,7 @@ function ContactFaq({
15445
15417
  }
15446
15418
  );
15447
15419
  }
15448
- var DEFAULT_STYLE_RULES14 = {
15420
+ var DEFAULT_STYLE_RULES15 = {
15449
15421
  formContainer: "",
15450
15422
  fieldsContainer: "",
15451
15423
  fieldClassName: "",
@@ -15547,14 +15519,14 @@ function ContactFeedback({
15547
15519
  {
15548
15520
  formEngineSetup,
15549
15521
  defaultFields: DEFAULT_FORM_FIELDS15,
15550
- defaultStyleRules: DEFAULT_STYLE_RULES14
15522
+ defaultStyleRules: DEFAULT_STYLE_RULES15
15551
15523
  }
15552
15524
  ) : null }) })
15553
15525
  ] })
15554
15526
  }
15555
15527
  );
15556
15528
  }
15557
- var DEFAULT_STYLE_RULES15 = {
15529
+ var DEFAULT_STYLE_RULES16 = {
15558
15530
  formContainer: "",
15559
15531
  fieldsContainer: "",
15560
15532
  fieldClassName: "",
@@ -15656,14 +15628,14 @@ function ContactFitness({
15656
15628
  {
15657
15629
  formEngineSetup,
15658
15630
  defaultFields: DEFAULT_FORM_FIELDS16,
15659
- defaultStyleRules: DEFAULT_STYLE_RULES15
15631
+ defaultStyleRules: DEFAULT_STYLE_RULES16
15660
15632
  }
15661
15633
  ) : null }) })
15662
15634
  ] })
15663
15635
  }
15664
15636
  );
15665
15637
  }
15666
- var DEFAULT_STYLE_RULES16 = {
15638
+ var DEFAULT_STYLE_RULES17 = {
15667
15639
  formContainer: "",
15668
15640
  fieldsContainer: "",
15669
15641
  fieldClassName: "",
@@ -15765,14 +15737,14 @@ function ContactGuest({
15765
15737
  {
15766
15738
  formEngineSetup,
15767
15739
  defaultFields: DEFAULT_FORM_FIELDS17,
15768
- defaultStyleRules: DEFAULT_STYLE_RULES16
15740
+ defaultStyleRules: DEFAULT_STYLE_RULES17
15769
15741
  }
15770
15742
  ) : null }) })
15771
15743
  ] })
15772
15744
  }
15773
15745
  );
15774
15746
  }
15775
- var DEFAULT_STYLE_RULES17 = {
15747
+ var DEFAULT_STYLE_RULES18 = {
15776
15748
  formContainer: "",
15777
15749
  fieldsContainer: "",
15778
15750
  fieldClassName: "",
@@ -15988,7 +15960,7 @@ function ContactImage({
15988
15960
  {
15989
15961
  formEngineSetup,
15990
15962
  defaultFields: DEFAULT_FORM_FIELDS18,
15991
- defaultStyleRules: DEFAULT_STYLE_RULES17
15963
+ defaultStyleRules: DEFAULT_STYLE_RULES18
15992
15964
  }
15993
15965
  ) : null })
15994
15966
  ]
@@ -16000,7 +15972,7 @@ function ContactImage({
16000
15972
  }
16001
15973
  );
16002
15974
  }
16003
- var DEFAULT_STYLE_RULES18 = {
15975
+ var DEFAULT_STYLE_RULES19 = {
16004
15976
  formContainer: "",
16005
15977
  fieldsContainer: "",
16006
15978
  fieldClassName: "",
@@ -16102,14 +16074,14 @@ function ContactInsurance({
16102
16074
  {
16103
16075
  formEngineSetup,
16104
16076
  defaultFields: DEFAULT_FORM_FIELDS19,
16105
- defaultStyleRules: DEFAULT_STYLE_RULES18
16077
+ defaultStyleRules: DEFAULT_STYLE_RULES19
16106
16078
  }
16107
16079
  ) : null }) })
16108
16080
  ] })
16109
16081
  }
16110
16082
  );
16111
16083
  }
16112
- var DEFAULT_STYLE_RULES19 = {
16084
+ var DEFAULT_STYLE_RULES20 = {
16113
16085
  formContainer: "",
16114
16086
  fieldsContainer: "",
16115
16087
  fieldClassName: "",
@@ -16233,14 +16205,14 @@ function ContactInterview({
16233
16205
  {
16234
16206
  formEngineSetup,
16235
16207
  defaultFields: DEFAULT_FORM_FIELDS20,
16236
- defaultStyleRules: DEFAULT_STYLE_RULES19
16208
+ defaultStyleRules: DEFAULT_STYLE_RULES20
16237
16209
  }
16238
16210
  ) : null
16239
16211
  ] }) }) })
16240
16212
  }
16241
16213
  );
16242
16214
  }
16243
- var DEFAULT_STYLE_RULES20 = {
16215
+ var DEFAULT_STYLE_RULES21 = {
16244
16216
  formContainer: "",
16245
16217
  fieldsContainer: "",
16246
16218
  fieldClassName: "",
@@ -16342,14 +16314,14 @@ function ContactLocations({
16342
16314
  {
16343
16315
  formEngineSetup,
16344
16316
  defaultFields: DEFAULT_FORM_FIELDS21,
16345
- defaultStyleRules: DEFAULT_STYLE_RULES20
16317
+ defaultStyleRules: DEFAULT_STYLE_RULES21
16346
16318
  }
16347
16319
  ) : null }) })
16348
16320
  ] })
16349
16321
  }
16350
16322
  );
16351
16323
  }
16352
- var DEFAULT_STYLE_RULES21 = {
16324
+ var DEFAULT_STYLE_RULES22 = {
16353
16325
  formContainer: "",
16354
16326
  fieldsContainer: "",
16355
16327
  fieldClassName: "",
@@ -16451,14 +16423,14 @@ function ContactMaintenance({
16451
16423
  {
16452
16424
  formEngineSetup,
16453
16425
  defaultFields: DEFAULT_FORM_FIELDS22,
16454
- defaultStyleRules: DEFAULT_STYLE_RULES21
16426
+ defaultStyleRules: DEFAULT_STYLE_RULES22
16455
16427
  }
16456
16428
  ) : null }) })
16457
16429
  ] })
16458
16430
  }
16459
16431
  );
16460
16432
  }
16461
- var DEFAULT_STYLE_RULES22 = {
16433
+ var DEFAULT_STYLE_RULES23 = {
16462
16434
  formContainer: "",
16463
16435
  fieldsContainer: "",
16464
16436
  fieldClassName: "",
@@ -16560,14 +16532,14 @@ function ContactMap({
16560
16532
  {
16561
16533
  formEngineSetup,
16562
16534
  defaultFields: DEFAULT_FORM_FIELDS23,
16563
- defaultStyleRules: DEFAULT_STYLE_RULES22
16535
+ defaultStyleRules: DEFAULT_STYLE_RULES23
16564
16536
  }
16565
16537
  ) : null }) })
16566
16538
  ] })
16567
16539
  }
16568
16540
  );
16569
16541
  }
16570
- var DEFAULT_STYLE_RULES23 = {
16542
+ var DEFAULT_STYLE_RULES24 = {
16571
16543
  formContainer: "",
16572
16544
  fieldsContainer: "",
16573
16545
  fieldClassName: "",
@@ -16669,14 +16641,14 @@ function ContactMinimal({
16669
16641
  {
16670
16642
  formEngineSetup,
16671
16643
  defaultFields: DEFAULT_FORM_FIELDS24,
16672
- defaultStyleRules: DEFAULT_STYLE_RULES23
16644
+ defaultStyleRules: DEFAULT_STYLE_RULES24
16673
16645
  }
16674
16646
  ) : null }) })
16675
16647
  ] })
16676
16648
  }
16677
16649
  );
16678
16650
  }
16679
- var DEFAULT_STYLE_RULES24 = {
16651
+ var DEFAULT_STYLE_RULES25 = {
16680
16652
  formContainer: "",
16681
16653
  fieldsContainer: "",
16682
16654
  fieldClassName: "",
@@ -16778,14 +16750,14 @@ function ContactMoving({
16778
16750
  {
16779
16751
  formEngineSetup,
16780
16752
  defaultFields: DEFAULT_FORM_FIELDS25,
16781
- defaultStyleRules: DEFAULT_STYLE_RULES24
16753
+ defaultStyleRules: DEFAULT_STYLE_RULES25
16782
16754
  }
16783
16755
  ) : null }) })
16784
16756
  ] })
16785
16757
  }
16786
16758
  );
16787
16759
  }
16788
- var DEFAULT_STYLE_RULES25 = {
16760
+ var DEFAULT_STYLE_RULES26 = {
16789
16761
  formContainer: "",
16790
16762
  fieldsContainer: "",
16791
16763
  fieldClassName: "",
@@ -16887,14 +16859,14 @@ function ContactMultistep({
16887
16859
  {
16888
16860
  formEngineSetup,
16889
16861
  defaultFields: DEFAULT_FORM_FIELDS26,
16890
- defaultStyleRules: DEFAULT_STYLE_RULES25
16862
+ defaultStyleRules: DEFAULT_STYLE_RULES26
16891
16863
  }
16892
16864
  ) : null }) })
16893
16865
  ] })
16894
16866
  }
16895
16867
  );
16896
16868
  }
16897
- var DEFAULT_STYLE_RULES26 = {
16869
+ var DEFAULT_STYLE_RULES27 = {
16898
16870
  formContainer: "",
16899
16871
  fieldsContainer: "",
16900
16872
  fieldClassName: "",
@@ -16996,14 +16968,14 @@ function ContactPartnership({
16996
16968
  {
16997
16969
  formEngineSetup,
16998
16970
  defaultFields: DEFAULT_FORM_FIELDS27,
16999
- defaultStyleRules: DEFAULT_STYLE_RULES26
16971
+ defaultStyleRules: DEFAULT_STYLE_RULES27
17000
16972
  }
17001
16973
  ) : null }) })
17002
16974
  ] })
17003
16975
  }
17004
16976
  );
17005
16977
  }
17006
- var DEFAULT_STYLE_RULES27 = {
16978
+ var DEFAULT_STYLE_RULES28 = {
17007
16979
  formContainer: "",
17008
16980
  fieldsContainer: "",
17009
16981
  fieldClassName: "",
@@ -17138,7 +17110,7 @@ function ContactPhotography({
17138
17110
  {
17139
17111
  formEngineSetup,
17140
17112
  defaultFields: DEFAULT_FORM_FIELDS28,
17141
- defaultStyleRules: DEFAULT_STYLE_RULES27
17113
+ defaultStyleRules: DEFAULT_STYLE_RULES28
17142
17114
  }
17143
17115
  ) : null
17144
17116
  ] }) })
@@ -17160,7 +17132,7 @@ function ContactPhotography({
17160
17132
  }
17161
17133
  );
17162
17134
  }
17163
- var DEFAULT_STYLE_RULES28 = {
17135
+ var DEFAULT_STYLE_RULES29 = {
17164
17136
  formContainer: "",
17165
17137
  fieldsContainer: "",
17166
17138
  fieldClassName: "",
@@ -17262,14 +17234,14 @@ function ContactPress({
17262
17234
  {
17263
17235
  formEngineSetup,
17264
17236
  defaultFields: DEFAULT_FORM_FIELDS29,
17265
- defaultStyleRules: DEFAULT_STYLE_RULES28
17237
+ defaultStyleRules: DEFAULT_STYLE_RULES29
17266
17238
  }
17267
17239
  ) : null }) })
17268
17240
  ] })
17269
17241
  }
17270
17242
  );
17271
17243
  }
17272
- var DEFAULT_STYLE_RULES29 = {
17244
+ var DEFAULT_STYLE_RULES30 = {
17273
17245
  formContainer: "",
17274
17246
  fieldsContainer: "",
17275
17247
  fieldClassName: "",
@@ -17371,14 +17343,14 @@ function ContactQuote({
17371
17343
  {
17372
17344
  formEngineSetup,
17373
17345
  defaultFields: DEFAULT_FORM_FIELDS30,
17374
- defaultStyleRules: DEFAULT_STYLE_RULES29
17346
+ defaultStyleRules: DEFAULT_STYLE_RULES30
17375
17347
  }
17376
17348
  ) : null }) })
17377
17349
  ] })
17378
17350
  }
17379
17351
  );
17380
17352
  }
17381
- var DEFAULT_STYLE_RULES30 = {
17353
+ var DEFAULT_STYLE_RULES31 = {
17382
17354
  formContainer: "",
17383
17355
  fieldsContainer: "",
17384
17356
  fieldClassName: "",
@@ -17480,14 +17452,14 @@ function ContactReferral({
17480
17452
  {
17481
17453
  formEngineSetup,
17482
17454
  defaultFields: DEFAULT_FORM_FIELDS31,
17483
- defaultStyleRules: DEFAULT_STYLE_RULES30
17455
+ defaultStyleRules: DEFAULT_STYLE_RULES31
17484
17456
  }
17485
17457
  ) : null }) })
17486
17458
  ] })
17487
17459
  }
17488
17460
  );
17489
17461
  }
17490
- var DEFAULT_STYLE_RULES31 = {
17462
+ var DEFAULT_STYLE_RULES32 = {
17491
17463
  formContainer: "",
17492
17464
  fieldsContainer: "",
17493
17465
  fieldClassName: "",
@@ -17589,14 +17561,14 @@ function ContactReport({
17589
17561
  {
17590
17562
  formEngineSetup,
17591
17563
  defaultFields: DEFAULT_FORM_FIELDS32,
17592
- defaultStyleRules: DEFAULT_STYLE_RULES31
17564
+ defaultStyleRules: DEFAULT_STYLE_RULES32
17593
17565
  }
17594
17566
  ) : null }) })
17595
17567
  ] })
17596
17568
  }
17597
17569
  );
17598
17570
  }
17599
- var DEFAULT_STYLE_RULES32 = {
17571
+ var DEFAULT_STYLE_RULES33 = {
17600
17572
  formContainer: "",
17601
17573
  fieldsContainer: "",
17602
17574
  fieldClassName: "",
@@ -17698,14 +17670,14 @@ function ContactReservation({
17698
17670
  {
17699
17671
  formEngineSetup,
17700
17672
  defaultFields: DEFAULT_FORM_FIELDS33,
17701
- defaultStyleRules: DEFAULT_STYLE_RULES32
17673
+ defaultStyleRules: DEFAULT_STYLE_RULES33
17702
17674
  }
17703
17675
  ) : null }) })
17704
17676
  ] })
17705
17677
  }
17706
17678
  );
17707
17679
  }
17708
- var DEFAULT_STYLE_RULES33 = {
17680
+ var DEFAULT_STYLE_RULES34 = {
17709
17681
  formContainer: "",
17710
17682
  fieldsContainer: "",
17711
17683
  fieldClassName: "",
@@ -17823,14 +17795,14 @@ function ContactRetreat({
17823
17795
  {
17824
17796
  formEngineSetup,
17825
17797
  defaultFields: DEFAULT_FORM_FIELDS34,
17826
- defaultStyleRules: DEFAULT_STYLE_RULES33
17798
+ defaultStyleRules: DEFAULT_STYLE_RULES34
17827
17799
  }
17828
17800
  ) : null }) })
17829
17801
  ] })
17830
17802
  }
17831
17803
  );
17832
17804
  }
17833
- var DEFAULT_STYLE_RULES34 = {
17805
+ var DEFAULT_STYLE_RULES35 = {
17834
17806
  formContainer: "",
17835
17807
  fieldsContainer: "",
17836
17808
  fieldClassName: "",
@@ -17932,14 +17904,14 @@ function ContactRsvp({
17932
17904
  {
17933
17905
  formEngineSetup,
17934
17906
  defaultFields: DEFAULT_FORM_FIELDS35,
17935
- defaultStyleRules: DEFAULT_STYLE_RULES34
17907
+ defaultStyleRules: DEFAULT_STYLE_RULES35
17936
17908
  }
17937
17909
  ) : null }) })
17938
17910
  ] })
17939
17911
  }
17940
17912
  );
17941
17913
  }
17942
- var DEFAULT_STYLE_RULES35 = {
17914
+ var DEFAULT_STYLE_RULES36 = {
17943
17915
  formContainer: "",
17944
17916
  fieldsContainer: "",
17945
17917
  fieldClassName: "",
@@ -18041,14 +18013,14 @@ function ContactSales({
18041
18013
  {
18042
18014
  formEngineSetup,
18043
18015
  defaultFields: DEFAULT_FORM_FIELDS36,
18044
- defaultStyleRules: DEFAULT_STYLE_RULES35
18016
+ defaultStyleRules: DEFAULT_STYLE_RULES36
18045
18017
  }
18046
18018
  ) : null }) })
18047
18019
  ] })
18048
18020
  }
18049
18021
  );
18050
18022
  }
18051
- var DEFAULT_STYLE_RULES36 = {
18023
+ var DEFAULT_STYLE_RULES37 = {
18052
18024
  formContainer: "",
18053
18025
  fieldsContainer: "",
18054
18026
  fieldClassName: "",
@@ -18150,14 +18122,14 @@ function ContactSchedule({
18150
18122
  {
18151
18123
  formEngineSetup,
18152
18124
  defaultFields: DEFAULT_FORM_FIELDS37,
18153
- defaultStyleRules: DEFAULT_STYLE_RULES36
18125
+ defaultStyleRules: DEFAULT_STYLE_RULES37
18154
18126
  }
18155
18127
  ) : null }) })
18156
18128
  ] })
18157
18129
  }
18158
18130
  );
18159
18131
  }
18160
- var DEFAULT_STYLE_RULES37 = {
18132
+ var DEFAULT_STYLE_RULES38 = {
18161
18133
  formContainer: "",
18162
18134
  fieldsContainer: "",
18163
18135
  fieldClassName: "",
@@ -18259,14 +18231,14 @@ function ContactSponsorship({
18259
18231
  {
18260
18232
  formEngineSetup,
18261
18233
  defaultFields: DEFAULT_FORM_FIELDS38,
18262
- defaultStyleRules: DEFAULT_STYLE_RULES37
18234
+ defaultStyleRules: DEFAULT_STYLE_RULES38
18263
18235
  }
18264
18236
  ) : null }) })
18265
18237
  ] })
18266
18238
  }
18267
18239
  );
18268
18240
  }
18269
- var DEFAULT_STYLE_RULES38 = {
18241
+ var DEFAULT_STYLE_RULES39 = {
18270
18242
  formContainer: "",
18271
18243
  fieldsContainer: "",
18272
18244
  fieldClassName: "",
@@ -18368,14 +18340,14 @@ function ContactSupport({
18368
18340
  {
18369
18341
  formEngineSetup,
18370
18342
  defaultFields: DEFAULT_FORM_FIELDS39,
18371
- defaultStyleRules: DEFAULT_STYLE_RULES38
18343
+ defaultStyleRules: DEFAULT_STYLE_RULES39
18372
18344
  }
18373
18345
  ) : null }) })
18374
18346
  ] })
18375
18347
  }
18376
18348
  );
18377
18349
  }
18378
- var DEFAULT_STYLE_RULES39 = {
18350
+ var DEFAULT_STYLE_RULES40 = {
18379
18351
  formContainer: "",
18380
18352
  fieldsContainer: "",
18381
18353
  fieldClassName: "",
@@ -18477,14 +18449,14 @@ function ContactTenant({
18477
18449
  {
18478
18450
  formEngineSetup,
18479
18451
  defaultFields: DEFAULT_FORM_FIELDS40,
18480
- defaultStyleRules: DEFAULT_STYLE_RULES39
18452
+ defaultStyleRules: DEFAULT_STYLE_RULES40
18481
18453
  }
18482
18454
  ) : null }) })
18483
18455
  ] })
18484
18456
  }
18485
18457
  );
18486
18458
  }
18487
- var DEFAULT_STYLE_RULES40 = {
18459
+ var DEFAULT_STYLE_RULES41 = {
18488
18460
  formContainer: "",
18489
18461
  fieldsContainer: "",
18490
18462
  fieldClassName: "",
@@ -18586,14 +18558,14 @@ function ContactVendor({
18586
18558
  {
18587
18559
  formEngineSetup,
18588
18560
  defaultFields: DEFAULT_FORM_FIELDS41,
18589
- defaultStyleRules: DEFAULT_STYLE_RULES40
18561
+ defaultStyleRules: DEFAULT_STYLE_RULES41
18590
18562
  }
18591
18563
  ) : null }) })
18592
18564
  ] })
18593
18565
  }
18594
18566
  );
18595
18567
  }
18596
- var DEFAULT_STYLE_RULES41 = {
18568
+ var DEFAULT_STYLE_RULES42 = {
18597
18569
  formContainer: "",
18598
18570
  fieldsContainer: "",
18599
18571
  fieldClassName: "",
@@ -18695,14 +18667,14 @@ function ContactVolunteer({
18695
18667
  {
18696
18668
  formEngineSetup,
18697
18669
  defaultFields: DEFAULT_FORM_FIELDS42,
18698
- defaultStyleRules: DEFAULT_STYLE_RULES41
18670
+ defaultStyleRules: DEFAULT_STYLE_RULES42
18699
18671
  }
18700
18672
  ) : null }) })
18701
18673
  ] })
18702
18674
  }
18703
18675
  );
18704
18676
  }
18705
- var DEFAULT_STYLE_RULES42 = {
18677
+ var DEFAULT_STYLE_RULES43 = {
18706
18678
  formContainer: "",
18707
18679
  fieldsContainer: "",
18708
18680
  fieldClassName: "",
@@ -18804,14 +18776,14 @@ function ContactWarranty({
18804
18776
  {
18805
18777
  formEngineSetup,
18806
18778
  defaultFields: DEFAULT_FORM_FIELDS43,
18807
- defaultStyleRules: DEFAULT_STYLE_RULES42
18779
+ defaultStyleRules: DEFAULT_STYLE_RULES43
18808
18780
  }
18809
18781
  ) : null }) })
18810
18782
  ] })
18811
18783
  }
18812
18784
  );
18813
18785
  }
18814
- var DEFAULT_STYLE_RULES43 = {
18786
+ var DEFAULT_STYLE_RULES44 = {
18815
18787
  formContainer: "",
18816
18788
  fieldsContainer: "",
18817
18789
  fieldClassName: "",
@@ -18913,7 +18885,7 @@ function ContactWedding({
18913
18885
  {
18914
18886
  formEngineSetup,
18915
18887
  defaultFields: DEFAULT_FORM_FIELDS44,
18916
- defaultStyleRules: DEFAULT_STYLE_RULES43
18888
+ defaultStyleRules: DEFAULT_STYLE_RULES44
18917
18889
  }
18918
18890
  ) : null }) })
18919
18891
  ] })
@@ -41793,7 +41765,7 @@ function FeatureAnimatedCarousel({
41793
41765
  }
41794
41766
  );
41795
41767
  }
41796
- var DEFAULT_STYLE_RULES44 = {
41768
+ var DEFAULT_STYLE_RULES45 = {
41797
41769
  formContainer: "space-y-4",
41798
41770
  fieldsContainer: "",
41799
41771
  fieldClassName: "",
@@ -41845,14 +41817,14 @@ function FooterNewsletterContact({
41845
41817
  }, [footerLinks]);
41846
41818
  const contactDetailsContent = React30.useMemo(() => {
41847
41819
  if (!contactDetails || contactDetails.length === 0) return null;
41848
- return contactDetails.map((item, idx) => /* @__PURE__ */ jsxs("li", { className: "flex items-center gap-3", children: [
41849
- /* @__PURE__ */ jsx(DynamicIcon, { name: item.icon, size: 16, className: "shrink-0" }),
41850
- /* @__PURE__ */ jsx("div", { className: "flex-1", children: item.type === "none" ? /* @__PURE__ */ jsx("p", { children: item.text }) : /* @__PURE__ */ jsx(
41820
+ return contactDetails.map((item, idx) => /* @__PURE__ */ jsxs("li", { className: "flex items-start gap-3", children: [
41821
+ /* @__PURE__ */ jsx("div", { className: "flex items-center justify-center shrink-0 mt-1", children: /* @__PURE__ */ jsx(DynamicIcon, { name: item.icon, size: 16 }) }),
41822
+ /* @__PURE__ */ jsx("div", { className: "flex-1", children: /* @__PURE__ */ jsx(
41851
41823
  Pressable,
41852
41824
  {
41853
- href: item.type === "email" ? `mailto:${item.link}` : `tel:${item.link}`,
41825
+ href: item.link,
41854
41826
  className: "underline-offset-4 hover:underline",
41855
- children: item.text
41827
+ children: item.label
41856
41828
  }
41857
41829
  ) })
41858
41830
  ] }, idx));
@@ -41898,9 +41870,9 @@ function FooterNewsletterContact({
41898
41870
  },
41899
41871
  defaultFields: DEFAULT_FORM_FIELDS45,
41900
41872
  defaultStyleRules: {
41901
- ...DEFAULT_STYLE_RULES44,
41873
+ ...DEFAULT_STYLE_RULES45,
41902
41874
  formContainer: cn(
41903
- DEFAULT_STYLE_RULES44.formContainer,
41875
+ DEFAULT_STYLE_RULES45.formContainer,
41904
41876
  newsletterFormClassName
41905
41877
  )
41906
41878
  }
@@ -41917,9 +41889,9 @@ function FooterNewsletterContact({
41917
41889
  className,
41918
41890
  containerClassName,
41919
41891
  children: /* @__PURE__ */ jsxs("div", { className: "space-y-10", children: [
41920
- /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-1 gap-x-16 gap-y-8 md:grid-cols-2 xl:grid-cols-4", children: [
41921
- formEngineSetup && (newsletterTitle || newsletterDescription) && /* @__PURE__ */ jsxs("div", { className: "space-y-6 col-span-2 md:col-span-1", children: [
41922
- newsletterTitle && /* @__PURE__ */ jsx("h3", { className: "text-3xl font-medium font-serif leading-none", children: newsletterTitle }),
41892
+ /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-1 gap-x-6 md:gap-x-8 lg:gap-x-12 xl:gap-x-16 gap-y-8 md:grid-cols-2 lg:grid-cols-4", children: [
41893
+ formEngineSetup && /* @__PURE__ */ jsxs("div", { className: "space-y-4 md:space-y-6 col-span-2 md:col-span-1", children: [
41894
+ newsletterTitle && /* @__PURE__ */ jsx("h3", { className: "text-2xl md:text-3xl font-medium leading-none", children: newsletterTitle }),
41923
41895
  newsletterDescription && /* @__PURE__ */ jsx("p", { className: "font-light leading-normal", children: newsletterDescription }),
41924
41896
  renderForm
41925
41897
  ] }),
@@ -41964,7 +41936,7 @@ function FooterNewsletterContact({
41964
41936
  }
41965
41937
  );
41966
41938
  }
41967
- var DEFAULT_STYLE_RULES45 = {
41939
+ var DEFAULT_STYLE_RULES46 = {
41968
41940
  formContainer: "flex items-stretch w-full",
41969
41941
  fieldsContainer: "",
41970
41942
  fieldClassName: "",
@@ -42043,9 +42015,9 @@ function FooterSplitImageAccordion({
42043
42015
  },
42044
42016
  defaultFields: DEFAULT_FORM_FIELDS46,
42045
42017
  defaultStyleRules: {
42046
- ...DEFAULT_STYLE_RULES45,
42018
+ ...DEFAULT_STYLE_RULES46,
42047
42019
  formContainer: cn(
42048
- DEFAULT_STYLE_RULES45.formContainer,
42020
+ DEFAULT_STYLE_RULES46.formContainer,
42049
42021
  newsletterFormClassName
42050
42022
  )
42051
42023
  }
@@ -42244,7 +42216,7 @@ function FooterSplitImageAccordion({
42244
42216
  }
42245
42217
  );
42246
42218
  }
42247
- var DEFAULT_STYLE_RULES46 = {
42219
+ var DEFAULT_STYLE_RULES47 = {
42248
42220
  formContainer: "flex items-stretch w-full",
42249
42221
  fieldsContainer: "",
42250
42222
  fieldClassName: "",
@@ -42275,20 +42247,15 @@ function FooterAccordionSocial({
42275
42247
  pattern,
42276
42248
  patternOpacity,
42277
42249
  patternClassName,
42278
- formEngineSetup,
42279
- buttonAction,
42280
- formSlot,
42281
- newsletterFormClassName
42250
+ formEngineSetup
42282
42251
  }) {
42283
42252
  const renderForm = React30.useMemo(() => {
42284
- if (formSlot) return formSlot;
42285
42253
  if (!formEngineSetup) return null;
42286
- const defaultButtonAction = {
42254
+ const action = {
42287
42255
  label: "",
42288
42256
  variant: "default",
42289
42257
  icon: /* @__PURE__ */ jsx(DynamicIcon, { name: "lucide/arrow-right", size: 16 })
42290
42258
  };
42291
- const action = buttonAction || defaultButtonAction;
42292
42259
  return /* @__PURE__ */ jsx(
42293
42260
  FormEngine,
42294
42261
  {
@@ -42301,21 +42268,18 @@ function FooterAccordionSocial({
42301
42268
  ...formEngineSetup.formLayoutSettings?.buttonGroupSetup,
42302
42269
  size: "default",
42303
42270
  submitLabel: action.icon || action.label,
42304
- submitVariant: action.variant || "default"
42271
+ submitVariant: action.variant
42305
42272
  }
42306
42273
  }
42307
42274
  },
42308
42275
  defaultFields: DEFAULT_FORM_FIELDS47,
42309
42276
  defaultStyleRules: {
42310
- ...DEFAULT_STYLE_RULES46,
42311
- formContainer: cn(
42312
- DEFAULT_STYLE_RULES46.formContainer,
42313
- newsletterFormClassName
42314
- )
42277
+ ...DEFAULT_STYLE_RULES47,
42278
+ formContainer: cn(DEFAULT_STYLE_RULES47.formContainer)
42315
42279
  }
42316
42280
  }
42317
42281
  );
42318
- }, [formSlot, formEngineSetup, buttonAction, newsletterFormClassName]);
42282
+ }, [formEngineSetup]);
42319
42283
  return /* @__PURE__ */ jsx(
42320
42284
  Section,
42321
42285
  {
@@ -42329,19 +42293,19 @@ function FooterAccordionSocial({
42329
42293
  children: /* @__PURE__ */ jsxs("div", { className: "space-y-10", children: [
42330
42294
  /* @__PURE__ */ jsxs("div", { className: "grid gap-10 lg:grid-cols-2 lg:gap-20", children: [
42331
42295
  /* @__PURE__ */ jsxs("div", { className: "space-y-6", children: [
42332
- logo && /* @__PURE__ */ jsx(
42333
- FooterLogo,
42296
+ logo && /* @__PURE__ */ jsx(Pressable, { href: logo.url || "/", className: "block mb-8 md:mb-12", children: /* @__PURE__ */ jsx(
42297
+ Img,
42334
42298
  {
42335
- logo,
42336
- logoClassName: "inline-block max-w-48",
42299
+ src: logo.src,
42300
+ className: "h-16 object-contain w-auto max-w-full",
42337
42301
  optixFlowConfig
42338
42302
  }
42339
- ),
42340
- formEngineSetup && /* @__PURE__ */ jsxs(Fragment$1, { children: [
42341
- /* @__PURE__ */ jsxs("div", { className: "space-y-4", children: [
42342
- /* @__PURE__ */ jsx("h3", { className: "text-2xl font-semibold", children: newsletterTitle }),
42343
- /* @__PURE__ */ jsx("p", { className: "opacity-80", children: newsletterDescription })
42344
- ] }),
42303
+ ) }),
42304
+ formEngineSetup && /* @__PURE__ */ jsxs("div", { className: "space-y-2", children: [
42305
+ newsletterTitle || newsletterDescription ? /* @__PURE__ */ jsxs("div", { className: "space-y-2", children: [
42306
+ newsletterTitle ? /* @__PURE__ */ jsx("h3", { className: "text-xl font-semibold", children: newsletterTitle }) : null,
42307
+ newsletterDescription ? /* @__PURE__ */ jsx("p", { className: "opacity-70", children: newsletterDescription }) : null
42308
+ ] }) : null,
42345
42309
  renderForm
42346
42310
  ] })
42347
42311
  ] }),
@@ -42359,27 +42323,24 @@ function FooterAccordionSocial({
42359
42323
  ] }),
42360
42324
  /* @__PURE__ */ jsxs("div", { className: "flex flex-wrap items-center justify-between gap-6 border-t pt-8", children: [
42361
42325
  /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-2 text-sm opacity-80 md:flex-row md:items-center md:gap-4", children: [
42362
- /* @__PURE__ */ jsx(FooterCopyright, { copyright }),
42326
+ /* @__PURE__ */ jsx(FooterCopyright, { copyright, className: "opacity-50" }),
42363
42327
  /* @__PURE__ */ jsx(
42364
42328
  BrandAttribution,
42365
42329
  {
42366
42330
  internalBrandSlug: "open_site_ai",
42367
42331
  optionIndex: 1,
42368
42332
  variant: "span",
42369
- linkClassName: "hover:opacity-100"
42333
+ linkClassName: "opacity-50 hover:opacity-100"
42370
42334
  }
42371
42335
  )
42372
42336
  ] }),
42373
42337
  socialLinks && socialLinks.length > 0 && /* @__PURE__ */ jsx("ul", { className: "flex flex-wrap gap-4", children: socialLinks.map((social, idx) => /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
42374
42338
  SocialLinkIcon,
42375
42339
  {
42376
- href: social.href,
42377
- label: social.label,
42378
- iconNameOverride: social.iconNameOverride,
42379
- variant: "outline",
42380
- size: "icon",
42381
- asButton: true,
42382
- className: "rounded-full"
42340
+ ...social,
42341
+ variant: "ghost",
42342
+ size: "icon-lg",
42343
+ asButton: true
42383
42344
  }
42384
42345
  ) }, idx)) })
42385
42346
  ] })
@@ -47811,7 +47772,7 @@ function HeroImageLeftContent({
47811
47772
  }
47812
47773
  );
47813
47774
  }
47814
- var DEFAULT_STYLE_RULES47 = {
47775
+ var DEFAULT_STYLE_RULES48 = {
47815
47776
  formContainer: "",
47816
47777
  fieldsContainer: "",
47817
47778
  fieldClassName: "",
@@ -48055,7 +48016,7 @@ function HeroImageSlider({
48055
48016
  }
48056
48017
  },
48057
48018
  defaultFields: DEFAULT_FORM_FIELDS48,
48058
- defaultStyleRules: DEFAULT_STYLE_RULES47
48019
+ defaultStyleRules: DEFAULT_STYLE_RULES48
48059
48020
  }
48060
48021
  ),
48061
48022
  privacyNotice && /* @__PURE__ */ jsx(
@@ -57866,7 +57827,7 @@ function HeroPricingComparison({
57866
57827
  }
57867
57828
  );
57868
57829
  }
57869
- var DEFAULT_STYLE_RULES48 = {
57830
+ var DEFAULT_STYLE_RULES49 = {
57870
57831
  formContainer: "mt-10 flex justify-center items-center w-full max-w-md flex-col gap-4 sm:flex-row",
57871
57832
  fieldsContainer: "",
57872
57833
  fieldClassName: "",
@@ -57959,7 +57920,7 @@ function HeroNewsletterMinimal({
57959
57920
  }
57960
57921
  },
57961
57922
  defaultFields: DEFAULT_FORM_FIELDS51,
57962
- defaultStyleRules: DEFAULT_STYLE_RULES48
57923
+ defaultStyleRules: DEFAULT_STYLE_RULES49
57963
57924
  }
57964
57925
  ),
57965
57926
  helperText && (typeof helperText === "string" ? /* @__PURE__ */ jsx("p", { className: cn("text-sm mt-2 text-center"), children: helperText }) : helperText)
@@ -82019,7 +81980,7 @@ function ListSearchableGrid({
82019
81980
  }
82020
81981
  );
82021
81982
  }
82022
- var DEFAULT_STYLE_RULES49 = {
81983
+ var DEFAULT_STYLE_RULES50 = {
82023
81984
  formContainer: "flex items-stretch w-full",
82024
81985
  fieldsContainer: "",
82025
81986
  fieldClassName: "",
@@ -82114,8 +82075,8 @@ function OfferModalNewsletterDiscount({
82114
82075
  },
82115
82076
  defaultFields: DEFAULT_FORM_FIELDS53,
82116
82077
  defaultStyleRules: {
82117
- ...DEFAULT_STYLE_RULES49,
82118
- formContainer: cn(DEFAULT_STYLE_RULES49.formContainer, formClassName)
82078
+ ...DEFAULT_STYLE_RULES50,
82079
+ formContainer: cn(DEFAULT_STYLE_RULES50.formContainer, formClassName)
82119
82080
  }
82120
82081
  }
82121
82082
  );
@@ -82141,7 +82102,7 @@ function OfferModalNewsletterDiscount({
82141
82102
  }
82142
82103
  ) });
82143
82104
  }
82144
- var DEFAULT_STYLE_RULES50 = {
82105
+ var DEFAULT_STYLE_RULES51 = {
82145
82106
  formContainer: "flex items-stretch w-full",
82146
82107
  fieldsContainer: "",
82147
82108
  fieldClassName: "",
@@ -82259,8 +82220,8 @@ function OfferModalMembershipImage({
82259
82220
  },
82260
82221
  defaultFields: DEFAULT_FORM_FIELDS54,
82261
82222
  defaultStyleRules: {
82262
- ...DEFAULT_STYLE_RULES50,
82263
- formContainer: cn(DEFAULT_STYLE_RULES50.formContainer, formClassName)
82223
+ ...DEFAULT_STYLE_RULES51,
82224
+ formContainer: cn(DEFAULT_STYLE_RULES51.formContainer, formClassName)
82264
82225
  }
82265
82226
  }
82266
82227
  );
@@ -82421,7 +82382,7 @@ function SheetDescription({
82421
82382
  }
82422
82383
  );
82423
82384
  }
82424
- var DEFAULT_STYLE_RULES51 = {
82385
+ var DEFAULT_STYLE_RULES52 = {
82425
82386
  formContainer: "flex items-stretch w-full",
82426
82387
  fieldsContainer: "",
82427
82388
  fieldClassName: "",
@@ -82545,8 +82506,8 @@ function OfferModalSheetNewsletter({
82545
82506
  },
82546
82507
  defaultFields: DEFAULT_FORM_FIELDS55,
82547
82508
  defaultStyleRules: {
82548
- ...DEFAULT_STYLE_RULES51,
82549
- formContainer: cn(DEFAULT_STYLE_RULES51.formContainer, formClassName)
82509
+ ...DEFAULT_STYLE_RULES52,
82510
+ formContainer: cn(DEFAULT_STYLE_RULES52.formContainer, formClassName)
82550
82511
  }
82551
82512
  }
82552
82513
  );
@@ -99098,7 +99059,7 @@ function LinkPageMinimalProfile({
99098
99059
  }
99099
99060
  );
99100
99061
  }
99101
- var DEFAULT_STYLE_RULES52 = {
99062
+ var DEFAULT_STYLE_RULES53 = {
99102
99063
  formContainer: "w-full flex flex-col gap-3 justify-center items-center",
99103
99064
  fieldsContainer: "",
99104
99065
  fieldClassName: "",
@@ -99276,7 +99237,7 @@ function LinkPageNewsletterSocial({
99276
99237
  }
99277
99238
  },
99278
99239
  defaultFields: DEFAULT_FORM_FIELDS56,
99279
- defaultStyleRules: DEFAULT_STYLE_RULES52
99240
+ defaultStyleRules: DEFAULT_STYLE_RULES53
99280
99241
  }
99281
99242
  ),
99282
99243
  helperText && (typeof helperText === "string" ? /* @__PURE__ */ jsx("p", { className: cn("text-sm mt-2 text-center"), children: helperText }) : helperText)