@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.cjs CHANGED
@@ -12,7 +12,6 @@ var PopoverPrimitive = require('@radix-ui/react-popover');
12
12
  var icon = require('@page-speed/icon');
13
13
  var usePlatformFromUrl = require('@opensite/hooks/usePlatformFromUrl');
14
14
  var TabsPrimitive = require('@radix-ui/react-tabs');
15
- var forms = require('@page-speed/forms');
16
15
  var integration = require('@page-speed/forms/integration');
17
16
  var framerMotion = require('framer-motion');
18
17
  var lightbox = require('@page-speed/lightbox');
@@ -28,6 +27,7 @@ var CheckboxPrimitive = require('@radix-ui/react-checkbox');
28
27
  var LabelPrimitive = require('@radix-ui/react-label');
29
28
  var dateFns = require('date-fns');
30
29
  var DialogPrimitive = require('@radix-ui/react-dialog');
30
+ var forms = require('@page-speed/forms');
31
31
  var TooltipPrimitive = require('@radix-ui/react-tooltip');
32
32
  var NavigationMenuPrimitive = require('@radix-ui/react-navigation-menu');
33
33
  var SwitchPrimitive = require('@radix-ui/react-switch');
@@ -4396,12 +4396,18 @@ function FooterLinksGrid({
4396
4396
  }
4397
4397
  );
4398
4398
  }
4399
+ var DEFAULT_STYLE_RULES = {
4400
+ formContainer: "flex items-stretch w-full",
4401
+ fieldsContainer: "",
4402
+ fieldClassName: "",
4403
+ formClassName: ""
4404
+ };
4399
4405
  var DEFAULT_FORM_FIELDS = [
4400
4406
  {
4401
4407
  name: "email",
4402
4408
  type: "email",
4403
4409
  label: "Email Address",
4404
- placeholder: "Enter your email",
4410
+ placeholder: "Email Address",
4405
4411
  required: true,
4406
4412
  columnSpan: 12
4407
4413
  }
@@ -4414,7 +4420,6 @@ function FooterSocialNewsletter({
4414
4420
  className,
4415
4421
  contentClassName,
4416
4422
  logoWrapperClassName,
4417
- logoClassName,
4418
4423
  gridClassName,
4419
4424
  navSectionClassName,
4420
4425
  navTitleClassName,
@@ -4423,16 +4428,7 @@ function FooterSocialNewsletter({
4423
4428
  socialColumnClassName,
4424
4429
  socialLinksClassName,
4425
4430
  socialLinkClassName,
4426
- formFields = DEFAULT_FORM_FIELDS,
4427
- formConfig,
4428
- onSubmit,
4429
- onSuccess,
4430
- onError,
4431
- successMessage,
4432
- buttonAction,
4433
- helperText,
4434
- formSlot,
4435
- privacyClassName,
4431
+ formEngineSetup,
4436
4432
  bottomClassName,
4437
4433
  copyrightClassName,
4438
4434
  background,
@@ -4442,104 +4438,36 @@ function FooterSocialNewsletter({
4442
4438
  patternOpacity,
4443
4439
  optixFlowConfig
4444
4440
  }) {
4445
- const {
4446
- uploadTokens,
4447
- uploadProgress,
4448
- isUploading,
4449
- uploadFiles,
4450
- removeFile,
4451
- resetUpload
4452
- } = integration.useFileUpload({ onError });
4453
- const { form, submissionError, formMethod, resetSubmissionState } = integration.useContactForm({
4454
- formFields,
4455
- formConfig,
4456
- onSubmit,
4457
- onSuccess: (data) => {
4458
- resetUpload();
4459
- onSuccess?.(data);
4460
- },
4461
- onError,
4462
- uploadTokens
4463
- });
4464
4441
  const renderForm = React30__namespace.useMemo(() => {
4465
- if (formSlot) return formSlot;
4466
- const defaultButtonAction = {
4467
- label: "Subscribe",
4442
+ if (!formEngineSetup) return null;
4443
+ const action = {
4468
4444
  variant: "default",
4469
- className: "h-12"
4445
+ icon: /* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: "lucide/arrow-right", size: 16 })
4470
4446
  };
4471
- const action = buttonAction || defaultButtonAction;
4472
- return /* @__PURE__ */ jsxRuntime.jsxs(
4473
- forms.Form,
4447
+ return /* @__PURE__ */ jsxRuntime.jsx(
4448
+ integration.FormEngine,
4474
4449
  {
4475
- form,
4476
- fields: formFields,
4477
- notificationConfig: {
4478
- submissionError,
4479
- successMessage
4480
- },
4481
- formConfig: {
4482
- endpoint: formConfig?.endpoint,
4483
- method: formMethod,
4484
- submissionConfig: formConfig?.submissionConfig,
4485
- formLayout: "button-group",
4486
- buttonGroupSize: "sm",
4487
- submitLabel: action.label,
4488
- submitVariant: action.variant || "default",
4489
- submitIconComponent: action.icon || /* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: "lucide/send" })
4490
- },
4491
- onNewSubmission: () => {
4492
- resetUpload();
4493
- resetSubmissionState();
4450
+ formEngineSetup: {
4451
+ ...formEngineSetup,
4452
+ formLayoutSettings: {
4453
+ ...formEngineSetup.formLayoutSettings,
4454
+ formLayout: "button-group",
4455
+ buttonGroupSetup: {
4456
+ ...formEngineSetup.formLayoutSettings?.buttonGroupSetup,
4457
+ size: "default",
4458
+ submitLabel: action.icon || action.label,
4459
+ submitVariant: action.variant
4460
+ }
4461
+ }
4494
4462
  },
4495
- children: [
4496
- /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-4 sm:flex-row", children: [
4497
- formFields.map((field) => /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex-1", children: /* @__PURE__ */ jsxRuntime.jsx(
4498
- integration.DynamicFormField,
4499
- {
4500
- field,
4501
- uploadProgress,
4502
- onFileUpload: uploadFiles,
4503
- onFileRemove: removeFile,
4504
- isUploading
4505
- }
4506
- ) }, field.name)),
4507
- /* @__PURE__ */ jsxRuntime.jsxs(
4508
- Pressable,
4509
- {
4510
- onClick: form.handleSubmit,
4511
- asButton: true,
4512
- variant: action.variant,
4513
- className: cn("h-12", action.className),
4514
- disabled: form.isSubmitting,
4515
- children: [
4516
- action.label,
4517
- action.iconAfter
4518
- ]
4519
- }
4520
- )
4521
- ] }),
4522
- helperText && (typeof helperText === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("text-sm mt-2"), children: helperText }) : helperText)
4523
- ]
4463
+ defaultFields: DEFAULT_FORM_FIELDS,
4464
+ defaultStyleRules: {
4465
+ ...DEFAULT_STYLE_RULES,
4466
+ formContainer: cn(DEFAULT_STYLE_RULES.formContainer)
4467
+ }
4524
4468
  }
4525
4469
  );
4526
- }, [
4527
- formSlot,
4528
- formFields,
4529
- form,
4530
- formConfig,
4531
- formMethod,
4532
- buttonAction,
4533
- uploadProgress,
4534
- uploadFiles,
4535
- removeFile,
4536
- isUploading,
4537
- submissionError,
4538
- successMessage,
4539
- helperText,
4540
- resetUpload,
4541
- resetSubmissionState
4542
- ]);
4470
+ }, [formEngineSetup]);
4543
4471
  return /* @__PURE__ */ jsxRuntime.jsx(
4544
4472
  Section,
4545
4473
  {
@@ -4547,20 +4475,26 @@ function FooterSocialNewsletter({
4547
4475
  spacing,
4548
4476
  pattern,
4549
4477
  patternOpacity,
4550
- className: cn(className),
4478
+ className,
4551
4479
  containerClassName,
4552
4480
  children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn(contentClassName), children: /* @__PURE__ */ jsxRuntime.jsxs("footer", { children: [
4553
4481
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mb-20", children: [
4554
4482
  logo && /* @__PURE__ */ jsxRuntime.jsx(
4555
- FooterLogo,
4483
+ Pressable,
4556
4484
  {
4557
- logo,
4558
- logoClassName: cn(
4559
- "flex items-center gap-2",
4560
- logoWrapperClassName
4561
- ),
4562
- logoImageClassName: cn("h-10", logoClassName),
4563
- optixFlowConfig
4485
+ href: logo.url || "/",
4486
+ className: cn("block mb-8 md:mb-12", logoWrapperClassName),
4487
+ children: /* @__PURE__ */ jsxRuntime.jsx(
4488
+ img.Img,
4489
+ {
4490
+ src: logo.src,
4491
+ className: cn(
4492
+ "h-16 object-contain w-auto max-w-full",
4493
+ logo.className
4494
+ ),
4495
+ optixFlowConfig
4496
+ }
4497
+ )
4564
4498
  }
4565
4499
  ),
4566
4500
  socialLinks && socialLinks.length > 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("mt-6", socialColumnClassName), children: /* @__PURE__ */ jsxRuntime.jsx(
@@ -4573,10 +4507,9 @@ function FooterSocialNewsletter({
4573
4507
  children: socialLinks.map((social, idx) => /* @__PURE__ */ jsxRuntime.jsx("li", { children: /* @__PURE__ */ jsxRuntime.jsx(
4574
4508
  SocialLinkIcon,
4575
4509
  {
4576
- href: social.href,
4577
- label: social.label,
4578
- iconNameOverride: social.iconNameOverride,
4579
- iconSize: 20,
4510
+ size: "icon-lg",
4511
+ variant: "ghost",
4512
+ ...social,
4580
4513
  className: cn(
4581
4514
  "opacity-80 transition-colors hover:opacity-100",
4582
4515
  socialLinkClassName
@@ -6086,7 +6019,7 @@ function FooterAnimatedSocial({
6086
6019
  }
6087
6020
  );
6088
6021
  }
6089
- var DEFAULT_STYLE_RULES = {
6022
+ var DEFAULT_STYLE_RULES2 = {
6090
6023
  formContainer: "flex w-full items-end border-b border-b-foreground/10",
6091
6024
  fieldsContainer: "",
6092
6025
  fieldClassName: "",
@@ -6124,6 +6057,7 @@ function FooterNewsletterMinimal({
6124
6057
  socialLinksClassName,
6125
6058
  socialLinkClassName,
6126
6059
  newsletterSectionClassName,
6060
+ newsletterLabelClassName,
6127
6061
  newsletterFormClassName,
6128
6062
  bottomGridClassName,
6129
6063
  locationClassName,
@@ -6209,9 +6143,9 @@ function FooterNewsletterMinimal({
6209
6143
  },
6210
6144
  defaultFields: DEFAULT_FORM_FIELDS2,
6211
6145
  defaultStyleRules: {
6212
- ...DEFAULT_STYLE_RULES,
6146
+ ...DEFAULT_STYLE_RULES2,
6213
6147
  formContainer: cn(
6214
- DEFAULT_STYLE_RULES.formContainer,
6148
+ DEFAULT_STYLE_RULES2.formContainer,
6215
6149
  newsletterFormClassName
6216
6150
  )
6217
6151
  }
@@ -6237,29 +6171,41 @@ function FooterNewsletterMinimal({
6237
6171
  ),
6238
6172
  children: [
6239
6173
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-10", children: [
6240
- heading && /* @__PURE__ */ jsxRuntime.jsx(
6241
- "p",
6242
- {
6243
- className: cn(
6244
- "relative text-4xl font-medium tracking-tight lg:text-5xl",
6245
- headingClassName
6246
- ),
6247
- children: heading
6248
- }
6249
- ),
6250
- (supportLabel || supportEmail) && /* @__PURE__ */ jsxRuntime.jsxs(
6174
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-4", children: [
6175
+ heading && /* @__PURE__ */ jsxRuntime.jsx(
6176
+ "h2",
6177
+ {
6178
+ className: cn(
6179
+ "relative text-4xl font-semibold tracking-tight lg:text-5xl text-balance",
6180
+ headingClassName
6181
+ ),
6182
+ children: heading
6183
+ }
6184
+ ),
6185
+ location && /* @__PURE__ */ jsxRuntime.jsx(
6186
+ "div",
6187
+ {
6188
+ className: cn(
6189
+ "font-semibold text-lg opacity-75",
6190
+ locationClassName
6191
+ ),
6192
+ children: location
6193
+ }
6194
+ )
6195
+ ] }),
6196
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-col gap-4", children: (supportLabel || supportEmail) && /* @__PURE__ */ jsxRuntime.jsxs(
6251
6197
  "div",
6252
6198
  {
6253
6199
  className: cn(
6254
- "space-y-1 text-sm font-light tracking-tight lg:text-base",
6200
+ "space-y-1 text-sm tracking-tight lg:text-base",
6255
6201
  supportClassName
6256
6202
  ),
6257
6203
  children: [
6258
- supportLabel && /* @__PURE__ */ jsxRuntime.jsx("p", { children: supportLabel }),
6259
- supportEmail && /* @__PURE__ */ jsxRuntime.jsx(Pressable, { href: `mailto:${supportEmail}`, children: supportEmail })
6204
+ supportLabel && /* @__PURE__ */ jsxRuntime.jsx("p", { className: "font-light opacity-75", children: supportLabel }),
6205
+ supportEmail && /* @__PURE__ */ jsxRuntime.jsx(Pressable, { className: "font-semibold", href: supportEmail, children: supportEmail })
6260
6206
  ]
6261
6207
  }
6262
- )
6208
+ ) })
6263
6209
  ] }),
6264
6210
  /* @__PURE__ */ jsxRuntime.jsxs(
6265
6211
  "div",
@@ -6277,41 +6223,35 @@ function FooterNewsletterMinimal({
6277
6223
  ]
6278
6224
  }
6279
6225
  ),
6280
- /* @__PURE__ */ jsxRuntime.jsxs(
6226
+ /* @__PURE__ */ jsxRuntime.jsx(
6281
6227
  "div",
6282
6228
  {
6283
6229
  className: cn(
6284
6230
  "mt-20 flex flex-col justify-between gap-15 lg:flex-row",
6285
6231
  newsletterSectionClassName
6286
6232
  ),
6287
- children: [
6288
- formEngineSetup && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex w-full max-w-md flex-col gap-10", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-1 text-sm font-light tracking-tight lg:text-base", children: [
6289
- newsletterLabel && /* @__PURE__ */ jsxRuntime.jsx("p", { children: newsletterLabel }),
6290
- renderForm
6291
- ] }) }),
6292
- /* @__PURE__ */ jsxRuntime.jsxs(
6293
- "div",
6233
+ children: formEngineSetup && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex w-full max-w-md flex-col gap-10", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
6234
+ newsletterLabel && /* @__PURE__ */ jsxRuntime.jsx(
6235
+ "p",
6294
6236
  {
6295
6237
  className: cn(
6296
- "grid w-full max-w-xs grid-cols-2 gap-10 text-sm font-light lg:text-base",
6297
- bottomGridClassName
6238
+ "text-xl font-light tracking-tight",
6239
+ newsletterLabelClassName
6298
6240
  ),
6299
- children: [
6300
- location && /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("w-32", locationClassName), children: location }),
6301
- /* @__PURE__ */ jsxRuntime.jsx("ul", { className: cn("space-y-1", footerLinksClassName), children: footerLinksContent })
6302
- ]
6241
+ children: newsletterLabel
6303
6242
  }
6304
- )
6305
- ]
6243
+ ),
6244
+ renderForm
6245
+ ] }) })
6306
6246
  }
6307
6247
  ),
6308
6248
  brandText && /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("mt-20 w-full lg:mt-32", brandSectionClassName), children: /* @__PURE__ */ jsxRuntime.jsx(
6309
6249
  framerMotion.motion.div,
6310
6250
  {
6311
- initial: { opacity: 0, y: 20 },
6251
+ initial: { opacity: 0, y: 80 },
6312
6252
  whileInView: { opacity: 1, y: 0 },
6313
- viewport: { once: true },
6314
- transition: { duration: 0.6 },
6253
+ viewport: { once: true, amount: 0.5 },
6254
+ transition: { duration: 0.9, ease: [0.16, 1, 0.3, 1] },
6315
6255
  className: "text-center",
6316
6256
  children: /* @__PURE__ */ jsxRuntime.jsx(
6317
6257
  "span",
@@ -6329,19 +6269,51 @@ function FooterNewsletterMinimal({
6329
6269
  "div",
6330
6270
  {
6331
6271
  className: cn(
6332
- "mt-8 text-center text-sm opacity-80",
6272
+ "flex flex-col items-center space-y-6",
6273
+ brandText ? "mb-24" : "mt-8",
6333
6274
  copyrightClassName
6334
6275
  ),
6335
6276
  children: [
6336
- /* @__PURE__ */ jsxRuntime.jsx(FooterCopyright, { copyright }),
6337
6277
  /* @__PURE__ */ jsxRuntime.jsx(
6338
- BrandAttribution,
6278
+ "div",
6339
6279
  {
6340
- internalBrandSlug: "open_site_ai",
6341
- optionIndex: 4,
6342
- variant: "div",
6343
- containerClassName: "mt-2",
6344
- linkClassName: "underline underline-offset-4 transition-colors hover:opacity-100"
6280
+ className: cn(
6281
+ "flex items-center justify-center",
6282
+ bottomGridClassName
6283
+ ),
6284
+ children: /* @__PURE__ */ jsxRuntime.jsx(
6285
+ "div",
6286
+ {
6287
+ className: cn(
6288
+ "flex gap-4 md:gap-6 text-sm font-light lg:text-base",
6289
+ "text-center items-center justify-center flex-wrap",
6290
+ footerLinksClassName
6291
+ ),
6292
+ children: footerLinksContent
6293
+ }
6294
+ )
6295
+ }
6296
+ ),
6297
+ /* @__PURE__ */ jsxRuntime.jsxs(
6298
+ "div",
6299
+ {
6300
+ className: cn(
6301
+ "mt-8 text-center text-sm opacity-50",
6302
+ copyrightClassName
6303
+ ),
6304
+ children: [
6305
+ /* @__PURE__ */ jsxRuntime.jsx(FooterCopyright, { copyright }),
6306
+ /* @__PURE__ */ jsxRuntime.jsx(
6307
+ BrandAttribution,
6308
+ {
6309
+ internalBrandSlug: "open_site_ai",
6310
+ optionIndex: 4,
6311
+ variant: "div",
6312
+ containerClassName: "mt-2",
6313
+ linkClassName: "underline underline-offset-4 transition-colors hover:opacity-100"
6314
+ }
6315
+ )
6316
+ ]
6345
6317
  }
6346
6318
  )
6347
6319
  ]
@@ -11623,7 +11595,7 @@ function CtaImageOverlayArrow({
11623
11595
  }
11624
11596
  );
11625
11597
  }
11626
- var DEFAULT_STYLE_RULES2 = {
11598
+ var DEFAULT_STYLE_RULES3 = {
11627
11599
  formContainer: "flex items-stretch w-full",
11628
11600
  fieldsContainer: "",
11629
11601
  fieldClassName: "",
@@ -11694,8 +11666,8 @@ function CtaAppDownloadNewsletter({
11694
11666
  },
11695
11667
  defaultFields: DEFAULT_FORM_FIELDS3,
11696
11668
  defaultStyleRules: {
11697
- ...DEFAULT_STYLE_RULES2,
11698
- formContainer: cn(DEFAULT_STYLE_RULES2.formContainer, formClassName)
11669
+ ...DEFAULT_STYLE_RULES3,
11670
+ formContainer: cn(DEFAULT_STYLE_RULES3.formContainer, formClassName)
11699
11671
  }
11700
11672
  }
11701
11673
  );
@@ -11803,7 +11775,7 @@ function CtaAppDownloadNewsletter({
11803
11775
  }
11804
11776
  );
11805
11777
  }
11806
- var DEFAULT_STYLE_RULES3 = {
11778
+ var DEFAULT_STYLE_RULES4 = {
11807
11779
  formContainer: "mx-auto mb-8 flex max-w-md items-stretch w-full",
11808
11780
  fieldsContainer: "",
11809
11781
  fieldClassName: "",
@@ -11868,8 +11840,8 @@ function CtaNewsletterFeatures({
11868
11840
  },
11869
11841
  defaultFields: DEFAULT_FORM_FIELDS4,
11870
11842
  defaultStyleRules: {
11871
- ...DEFAULT_STYLE_RULES3,
11872
- formContainer: cn(DEFAULT_STYLE_RULES3.formContainer, formClassName)
11843
+ ...DEFAULT_STYLE_RULES4,
11844
+ formContainer: cn(DEFAULT_STYLE_RULES4.formContainer, formClassName)
11873
11845
  }
11874
11846
  }
11875
11847
  );
@@ -13545,7 +13517,7 @@ function ContactFloatingBanner({
13545
13517
  }
13546
13518
  );
13547
13519
  }
13548
- var DEFAULT_STYLE_RULES4 = {
13520
+ var DEFAULT_STYLE_RULES5 = {
13549
13521
  formContainer: "",
13550
13522
  fieldsContainer: "",
13551
13523
  fieldClassName: "",
@@ -13720,7 +13692,7 @@ function ContactCallback({
13720
13692
  {
13721
13693
  formEngineSetup,
13722
13694
  defaultFields: DEFAULT_FORM_FIELDS5,
13723
- defaultStyleRules: DEFAULT_STYLE_RULES4
13695
+ defaultStyleRules: DEFAULT_STYLE_RULES5
13724
13696
  }
13725
13697
  ) : null
13726
13698
  ] }) })
@@ -13728,7 +13700,7 @@ function ContactCallback({
13728
13700
  }
13729
13701
  );
13730
13702
  }
13731
- var DEFAULT_STYLE_RULES5 = {
13703
+ var DEFAULT_STYLE_RULES6 = {
13732
13704
  formContainer: "",
13733
13705
  fieldsContainer: "",
13734
13706
  fieldClassName: "",
@@ -13857,7 +13829,7 @@ function ContactCard({
13857
13829
  {
13858
13830
  formEngineSetup,
13859
13831
  defaultFields: DEFAULT_FORM_FIELDS6,
13860
- defaultStyleRules: DEFAULT_STYLE_RULES5
13832
+ defaultStyleRules: DEFAULT_STYLE_RULES6
13861
13833
  }
13862
13834
  ) : null }) }),
13863
13835
  /* @__PURE__ */ jsxRuntime.jsxs(
@@ -13917,7 +13889,7 @@ function ContactCard({
13917
13889
  }
13918
13890
  );
13919
13891
  }
13920
- var DEFAULT_STYLE_RULES6 = {
13892
+ var DEFAULT_STYLE_RULES7 = {
13921
13893
  formContainer: "",
13922
13894
  fieldsContainer: "",
13923
13895
  fieldClassName: "",
@@ -14075,14 +14047,14 @@ function ContactCareers({
14075
14047
  {
14076
14048
  formEngineSetup,
14077
14049
  defaultFields: DEFAULT_FORM_FIELDS7,
14078
- defaultStyleRules: DEFAULT_STYLE_RULES6
14050
+ defaultStyleRules: DEFAULT_STYLE_RULES7
14079
14051
  }
14080
14052
  ) : null }) })
14081
14053
  ] })
14082
14054
  }
14083
14055
  );
14084
14056
  }
14085
- var DEFAULT_STYLE_RULES7 = {
14057
+ var DEFAULT_STYLE_RULES8 = {
14086
14058
  formContainer: "",
14087
14059
  fieldsContainer: "",
14088
14060
  fieldClassName: "",
@@ -14303,14 +14275,14 @@ function ContactCatering({
14303
14275
  {
14304
14276
  formEngineSetup,
14305
14277
  defaultFields: DEFAULT_FORM_FIELDS8,
14306
- defaultStyleRules: DEFAULT_STYLE_RULES7
14278
+ defaultStyleRules: DEFAULT_STYLE_RULES8
14307
14279
  }
14308
14280
  ) : null }) })
14309
14281
  ] })
14310
14282
  }
14311
14283
  );
14312
14284
  }
14313
- var DEFAULT_STYLE_RULES8 = {
14285
+ var DEFAULT_STYLE_RULES9 = {
14314
14286
  formContainer: "",
14315
14287
  fieldsContainer: "",
14316
14288
  fieldClassName: "",
@@ -14484,14 +14456,14 @@ function ContactConsultation({
14484
14456
  {
14485
14457
  formEngineSetup,
14486
14458
  defaultFields: DEFAULT_FORM_FIELDS9,
14487
- defaultStyleRules: DEFAULT_STYLE_RULES8
14459
+ defaultStyleRules: DEFAULT_STYLE_RULES9
14488
14460
  }
14489
14461
  ) : null }) })
14490
14462
  ] })
14491
14463
  }
14492
14464
  );
14493
14465
  }
14494
- var DEFAULT_STYLE_RULES9 = {
14466
+ var DEFAULT_STYLE_RULES10 = {
14495
14467
  formContainer: "",
14496
14468
  fieldsContainer: "",
14497
14469
  fieldClassName: "",
@@ -14624,7 +14596,7 @@ function ContactDark({
14624
14596
  {
14625
14597
  formEngineSetup,
14626
14598
  defaultFields: DEFAULT_FORM_FIELDS10,
14627
- defaultStyleRules: DEFAULT_STYLE_RULES9
14599
+ defaultStyleRules: DEFAULT_STYLE_RULES10
14628
14600
  }
14629
14601
  ) : null }),
14630
14602
  /* @__PURE__ */ jsxRuntime.jsxs(
@@ -14815,7 +14787,7 @@ var BlurText = ({
14815
14787
  }
14816
14788
  );
14817
14789
  };
14818
- var DEFAULT_STYLE_RULES10 = {
14790
+ var DEFAULT_STYLE_RULES11 = {
14819
14791
  formContainer: "",
14820
14792
  fieldsContainer: "",
14821
14793
  fieldClassName: "",
@@ -14930,14 +14902,14 @@ function ContactDemo({
14930
14902
  {
14931
14903
  formEngineSetup,
14932
14904
  defaultFields: DEFAULT_FORM_FIELDS11,
14933
- defaultStyleRules: DEFAULT_STYLE_RULES10
14905
+ defaultStyleRules: DEFAULT_STYLE_RULES11
14934
14906
  }
14935
14907
  ) : null }) })
14936
14908
  ] })
14937
14909
  }
14938
14910
  );
14939
14911
  }
14940
- var DEFAULT_STYLE_RULES11 = {
14912
+ var DEFAULT_STYLE_RULES12 = {
14941
14913
  formContainer: "",
14942
14914
  fieldsContainer: "",
14943
14915
  fieldClassName: "",
@@ -15117,14 +15089,14 @@ function ContactEmergency({
15117
15089
  {
15118
15090
  formEngineSetup,
15119
15091
  defaultFields: DEFAULT_FORM_FIELDS12,
15120
- defaultStyleRules: DEFAULT_STYLE_RULES11
15092
+ defaultStyleRules: DEFAULT_STYLE_RULES12
15121
15093
  }
15122
15094
  ) : null })
15123
15095
  ] })
15124
15096
  }
15125
15097
  );
15126
15098
  }
15127
- var DEFAULT_STYLE_RULES12 = {
15099
+ var DEFAULT_STYLE_RULES13 = {
15128
15100
  formContainer: "",
15129
15101
  fieldsContainer: "",
15130
15102
  fieldClassName: "",
@@ -15226,7 +15198,7 @@ function ContactEvent({
15226
15198
  {
15227
15199
  formEngineSetup,
15228
15200
  defaultFields: DEFAULT_FORM_FIELDS13,
15229
- defaultStyleRules: DEFAULT_STYLE_RULES12
15201
+ defaultStyleRules: DEFAULT_STYLE_RULES13
15230
15202
  }
15231
15203
  ) : null }) })
15232
15204
  ] })
@@ -15293,7 +15265,7 @@ function AccordionContent({
15293
15265
  }
15294
15266
  );
15295
15267
  }
15296
- var DEFAULT_STYLE_RULES13 = {
15268
+ var DEFAULT_STYLE_RULES14 = {
15297
15269
  formContainer: "",
15298
15270
  fieldsContainer: "",
15299
15271
  fieldClassName: "",
@@ -15461,7 +15433,7 @@ function ContactFaq({
15461
15433
  {
15462
15434
  formEngineSetup,
15463
15435
  defaultFields: DEFAULT_FORM_FIELDS14,
15464
- defaultStyleRules: DEFAULT_STYLE_RULES13
15436
+ defaultStyleRules: DEFAULT_STYLE_RULES14
15465
15437
  }
15466
15438
  ) : null
15467
15439
  ] }) }),
@@ -15485,7 +15457,7 @@ function ContactFaq({
15485
15457
  }
15486
15458
  );
15487
15459
  }
15488
- var DEFAULT_STYLE_RULES14 = {
15460
+ var DEFAULT_STYLE_RULES15 = {
15489
15461
  formContainer: "",
15490
15462
  fieldsContainer: "",
15491
15463
  fieldClassName: "",
@@ -15587,14 +15559,14 @@ function ContactFeedback({
15587
15559
  {
15588
15560
  formEngineSetup,
15589
15561
  defaultFields: DEFAULT_FORM_FIELDS15,
15590
- defaultStyleRules: DEFAULT_STYLE_RULES14
15562
+ defaultStyleRules: DEFAULT_STYLE_RULES15
15591
15563
  }
15592
15564
  ) : null }) })
15593
15565
  ] })
15594
15566
  }
15595
15567
  );
15596
15568
  }
15597
- var DEFAULT_STYLE_RULES15 = {
15569
+ var DEFAULT_STYLE_RULES16 = {
15598
15570
  formContainer: "",
15599
15571
  fieldsContainer: "",
15600
15572
  fieldClassName: "",
@@ -15696,14 +15668,14 @@ function ContactFitness({
15696
15668
  {
15697
15669
  formEngineSetup,
15698
15670
  defaultFields: DEFAULT_FORM_FIELDS16,
15699
- defaultStyleRules: DEFAULT_STYLE_RULES15
15671
+ defaultStyleRules: DEFAULT_STYLE_RULES16
15700
15672
  }
15701
15673
  ) : null }) })
15702
15674
  ] })
15703
15675
  }
15704
15676
  );
15705
15677
  }
15706
- var DEFAULT_STYLE_RULES16 = {
15678
+ var DEFAULT_STYLE_RULES17 = {
15707
15679
  formContainer: "",
15708
15680
  fieldsContainer: "",
15709
15681
  fieldClassName: "",
@@ -15805,14 +15777,14 @@ function ContactGuest({
15805
15777
  {
15806
15778
  formEngineSetup,
15807
15779
  defaultFields: DEFAULT_FORM_FIELDS17,
15808
- defaultStyleRules: DEFAULT_STYLE_RULES16
15780
+ defaultStyleRules: DEFAULT_STYLE_RULES17
15809
15781
  }
15810
15782
  ) : null }) })
15811
15783
  ] })
15812
15784
  }
15813
15785
  );
15814
15786
  }
15815
- var DEFAULT_STYLE_RULES17 = {
15787
+ var DEFAULT_STYLE_RULES18 = {
15816
15788
  formContainer: "",
15817
15789
  fieldsContainer: "",
15818
15790
  fieldClassName: "",
@@ -16028,7 +16000,7 @@ function ContactImage({
16028
16000
  {
16029
16001
  formEngineSetup,
16030
16002
  defaultFields: DEFAULT_FORM_FIELDS18,
16031
- defaultStyleRules: DEFAULT_STYLE_RULES17
16003
+ defaultStyleRules: DEFAULT_STYLE_RULES18
16032
16004
  }
16033
16005
  ) : null })
16034
16006
  ]
@@ -16040,7 +16012,7 @@ function ContactImage({
16040
16012
  }
16041
16013
  );
16042
16014
  }
16043
- var DEFAULT_STYLE_RULES18 = {
16015
+ var DEFAULT_STYLE_RULES19 = {
16044
16016
  formContainer: "",
16045
16017
  fieldsContainer: "",
16046
16018
  fieldClassName: "",
@@ -16142,14 +16114,14 @@ function ContactInsurance({
16142
16114
  {
16143
16115
  formEngineSetup,
16144
16116
  defaultFields: DEFAULT_FORM_FIELDS19,
16145
- defaultStyleRules: DEFAULT_STYLE_RULES18
16117
+ defaultStyleRules: DEFAULT_STYLE_RULES19
16146
16118
  }
16147
16119
  ) : null }) })
16148
16120
  ] })
16149
16121
  }
16150
16122
  );
16151
16123
  }
16152
- var DEFAULT_STYLE_RULES19 = {
16124
+ var DEFAULT_STYLE_RULES20 = {
16153
16125
  formContainer: "",
16154
16126
  fieldsContainer: "",
16155
16127
  fieldClassName: "",
@@ -16273,14 +16245,14 @@ function ContactInterview({
16273
16245
  {
16274
16246
  formEngineSetup,
16275
16247
  defaultFields: DEFAULT_FORM_FIELDS20,
16276
- defaultStyleRules: DEFAULT_STYLE_RULES19
16248
+ defaultStyleRules: DEFAULT_STYLE_RULES20
16277
16249
  }
16278
16250
  ) : null
16279
16251
  ] }) }) })
16280
16252
  }
16281
16253
  );
16282
16254
  }
16283
- var DEFAULT_STYLE_RULES20 = {
16255
+ var DEFAULT_STYLE_RULES21 = {
16284
16256
  formContainer: "",
16285
16257
  fieldsContainer: "",
16286
16258
  fieldClassName: "",
@@ -16382,14 +16354,14 @@ function ContactLocations({
16382
16354
  {
16383
16355
  formEngineSetup,
16384
16356
  defaultFields: DEFAULT_FORM_FIELDS21,
16385
- defaultStyleRules: DEFAULT_STYLE_RULES20
16357
+ defaultStyleRules: DEFAULT_STYLE_RULES21
16386
16358
  }
16387
16359
  ) : null }) })
16388
16360
  ] })
16389
16361
  }
16390
16362
  );
16391
16363
  }
16392
- var DEFAULT_STYLE_RULES21 = {
16364
+ var DEFAULT_STYLE_RULES22 = {
16393
16365
  formContainer: "",
16394
16366
  fieldsContainer: "",
16395
16367
  fieldClassName: "",
@@ -16491,14 +16463,14 @@ function ContactMaintenance({
16491
16463
  {
16492
16464
  formEngineSetup,
16493
16465
  defaultFields: DEFAULT_FORM_FIELDS22,
16494
- defaultStyleRules: DEFAULT_STYLE_RULES21
16466
+ defaultStyleRules: DEFAULT_STYLE_RULES22
16495
16467
  }
16496
16468
  ) : null }) })
16497
16469
  ] })
16498
16470
  }
16499
16471
  );
16500
16472
  }
16501
- var DEFAULT_STYLE_RULES22 = {
16473
+ var DEFAULT_STYLE_RULES23 = {
16502
16474
  formContainer: "",
16503
16475
  fieldsContainer: "",
16504
16476
  fieldClassName: "",
@@ -16600,14 +16572,14 @@ function ContactMap({
16600
16572
  {
16601
16573
  formEngineSetup,
16602
16574
  defaultFields: DEFAULT_FORM_FIELDS23,
16603
- defaultStyleRules: DEFAULT_STYLE_RULES22
16575
+ defaultStyleRules: DEFAULT_STYLE_RULES23
16604
16576
  }
16605
16577
  ) : null }) })
16606
16578
  ] })
16607
16579
  }
16608
16580
  );
16609
16581
  }
16610
- var DEFAULT_STYLE_RULES23 = {
16582
+ var DEFAULT_STYLE_RULES24 = {
16611
16583
  formContainer: "",
16612
16584
  fieldsContainer: "",
16613
16585
  fieldClassName: "",
@@ -16709,14 +16681,14 @@ function ContactMinimal({
16709
16681
  {
16710
16682
  formEngineSetup,
16711
16683
  defaultFields: DEFAULT_FORM_FIELDS24,
16712
- defaultStyleRules: DEFAULT_STYLE_RULES23
16684
+ defaultStyleRules: DEFAULT_STYLE_RULES24
16713
16685
  }
16714
16686
  ) : null }) })
16715
16687
  ] })
16716
16688
  }
16717
16689
  );
16718
16690
  }
16719
- var DEFAULT_STYLE_RULES24 = {
16691
+ var DEFAULT_STYLE_RULES25 = {
16720
16692
  formContainer: "",
16721
16693
  fieldsContainer: "",
16722
16694
  fieldClassName: "",
@@ -16818,14 +16790,14 @@ function ContactMoving({
16818
16790
  {
16819
16791
  formEngineSetup,
16820
16792
  defaultFields: DEFAULT_FORM_FIELDS25,
16821
- defaultStyleRules: DEFAULT_STYLE_RULES24
16793
+ defaultStyleRules: DEFAULT_STYLE_RULES25
16822
16794
  }
16823
16795
  ) : null }) })
16824
16796
  ] })
16825
16797
  }
16826
16798
  );
16827
16799
  }
16828
- var DEFAULT_STYLE_RULES25 = {
16800
+ var DEFAULT_STYLE_RULES26 = {
16829
16801
  formContainer: "",
16830
16802
  fieldsContainer: "",
16831
16803
  fieldClassName: "",
@@ -16927,14 +16899,14 @@ function ContactMultistep({
16927
16899
  {
16928
16900
  formEngineSetup,
16929
16901
  defaultFields: DEFAULT_FORM_FIELDS26,
16930
- defaultStyleRules: DEFAULT_STYLE_RULES25
16902
+ defaultStyleRules: DEFAULT_STYLE_RULES26
16931
16903
  }
16932
16904
  ) : null }) })
16933
16905
  ] })
16934
16906
  }
16935
16907
  );
16936
16908
  }
16937
- var DEFAULT_STYLE_RULES26 = {
16909
+ var DEFAULT_STYLE_RULES27 = {
16938
16910
  formContainer: "",
16939
16911
  fieldsContainer: "",
16940
16912
  fieldClassName: "",
@@ -17036,14 +17008,14 @@ function ContactPartnership({
17036
17008
  {
17037
17009
  formEngineSetup,
17038
17010
  defaultFields: DEFAULT_FORM_FIELDS27,
17039
- defaultStyleRules: DEFAULT_STYLE_RULES26
17011
+ defaultStyleRules: DEFAULT_STYLE_RULES27
17040
17012
  }
17041
17013
  ) : null }) })
17042
17014
  ] })
17043
17015
  }
17044
17016
  );
17045
17017
  }
17046
- var DEFAULT_STYLE_RULES27 = {
17018
+ var DEFAULT_STYLE_RULES28 = {
17047
17019
  formContainer: "",
17048
17020
  fieldsContainer: "",
17049
17021
  fieldClassName: "",
@@ -17178,7 +17150,7 @@ function ContactPhotography({
17178
17150
  {
17179
17151
  formEngineSetup,
17180
17152
  defaultFields: DEFAULT_FORM_FIELDS28,
17181
- defaultStyleRules: DEFAULT_STYLE_RULES27
17153
+ defaultStyleRules: DEFAULT_STYLE_RULES28
17182
17154
  }
17183
17155
  ) : null
17184
17156
  ] }) })
@@ -17200,7 +17172,7 @@ function ContactPhotography({
17200
17172
  }
17201
17173
  );
17202
17174
  }
17203
- var DEFAULT_STYLE_RULES28 = {
17175
+ var DEFAULT_STYLE_RULES29 = {
17204
17176
  formContainer: "",
17205
17177
  fieldsContainer: "",
17206
17178
  fieldClassName: "",
@@ -17302,14 +17274,14 @@ function ContactPress({
17302
17274
  {
17303
17275
  formEngineSetup,
17304
17276
  defaultFields: DEFAULT_FORM_FIELDS29,
17305
- defaultStyleRules: DEFAULT_STYLE_RULES28
17277
+ defaultStyleRules: DEFAULT_STYLE_RULES29
17306
17278
  }
17307
17279
  ) : null }) })
17308
17280
  ] })
17309
17281
  }
17310
17282
  );
17311
17283
  }
17312
- var DEFAULT_STYLE_RULES29 = {
17284
+ var DEFAULT_STYLE_RULES30 = {
17313
17285
  formContainer: "",
17314
17286
  fieldsContainer: "",
17315
17287
  fieldClassName: "",
@@ -17411,14 +17383,14 @@ function ContactQuote({
17411
17383
  {
17412
17384
  formEngineSetup,
17413
17385
  defaultFields: DEFAULT_FORM_FIELDS30,
17414
- defaultStyleRules: DEFAULT_STYLE_RULES29
17386
+ defaultStyleRules: DEFAULT_STYLE_RULES30
17415
17387
  }
17416
17388
  ) : null }) })
17417
17389
  ] })
17418
17390
  }
17419
17391
  );
17420
17392
  }
17421
- var DEFAULT_STYLE_RULES30 = {
17393
+ var DEFAULT_STYLE_RULES31 = {
17422
17394
  formContainer: "",
17423
17395
  fieldsContainer: "",
17424
17396
  fieldClassName: "",
@@ -17520,14 +17492,14 @@ function ContactReferral({
17520
17492
  {
17521
17493
  formEngineSetup,
17522
17494
  defaultFields: DEFAULT_FORM_FIELDS31,
17523
- defaultStyleRules: DEFAULT_STYLE_RULES30
17495
+ defaultStyleRules: DEFAULT_STYLE_RULES31
17524
17496
  }
17525
17497
  ) : null }) })
17526
17498
  ] })
17527
17499
  }
17528
17500
  );
17529
17501
  }
17530
- var DEFAULT_STYLE_RULES31 = {
17502
+ var DEFAULT_STYLE_RULES32 = {
17531
17503
  formContainer: "",
17532
17504
  fieldsContainer: "",
17533
17505
  fieldClassName: "",
@@ -17629,14 +17601,14 @@ function ContactReport({
17629
17601
  {
17630
17602
  formEngineSetup,
17631
17603
  defaultFields: DEFAULT_FORM_FIELDS32,
17632
- defaultStyleRules: DEFAULT_STYLE_RULES31
17604
+ defaultStyleRules: DEFAULT_STYLE_RULES32
17633
17605
  }
17634
17606
  ) : null }) })
17635
17607
  ] })
17636
17608
  }
17637
17609
  );
17638
17610
  }
17639
- var DEFAULT_STYLE_RULES32 = {
17611
+ var DEFAULT_STYLE_RULES33 = {
17640
17612
  formContainer: "",
17641
17613
  fieldsContainer: "",
17642
17614
  fieldClassName: "",
@@ -17738,14 +17710,14 @@ function ContactReservation({
17738
17710
  {
17739
17711
  formEngineSetup,
17740
17712
  defaultFields: DEFAULT_FORM_FIELDS33,
17741
- defaultStyleRules: DEFAULT_STYLE_RULES32
17713
+ defaultStyleRules: DEFAULT_STYLE_RULES33
17742
17714
  }
17743
17715
  ) : null }) })
17744
17716
  ] })
17745
17717
  }
17746
17718
  );
17747
17719
  }
17748
- var DEFAULT_STYLE_RULES33 = {
17720
+ var DEFAULT_STYLE_RULES34 = {
17749
17721
  formContainer: "",
17750
17722
  fieldsContainer: "",
17751
17723
  fieldClassName: "",
@@ -17863,14 +17835,14 @@ function ContactRetreat({
17863
17835
  {
17864
17836
  formEngineSetup,
17865
17837
  defaultFields: DEFAULT_FORM_FIELDS34,
17866
- defaultStyleRules: DEFAULT_STYLE_RULES33
17838
+ defaultStyleRules: DEFAULT_STYLE_RULES34
17867
17839
  }
17868
17840
  ) : null }) })
17869
17841
  ] })
17870
17842
  }
17871
17843
  );
17872
17844
  }
17873
- var DEFAULT_STYLE_RULES34 = {
17845
+ var DEFAULT_STYLE_RULES35 = {
17874
17846
  formContainer: "",
17875
17847
  fieldsContainer: "",
17876
17848
  fieldClassName: "",
@@ -17972,14 +17944,14 @@ function ContactRsvp({
17972
17944
  {
17973
17945
  formEngineSetup,
17974
17946
  defaultFields: DEFAULT_FORM_FIELDS35,
17975
- defaultStyleRules: DEFAULT_STYLE_RULES34
17947
+ defaultStyleRules: DEFAULT_STYLE_RULES35
17976
17948
  }
17977
17949
  ) : null }) })
17978
17950
  ] })
17979
17951
  }
17980
17952
  );
17981
17953
  }
17982
- var DEFAULT_STYLE_RULES35 = {
17954
+ var DEFAULT_STYLE_RULES36 = {
17983
17955
  formContainer: "",
17984
17956
  fieldsContainer: "",
17985
17957
  fieldClassName: "",
@@ -18081,14 +18053,14 @@ function ContactSales({
18081
18053
  {
18082
18054
  formEngineSetup,
18083
18055
  defaultFields: DEFAULT_FORM_FIELDS36,
18084
- defaultStyleRules: DEFAULT_STYLE_RULES35
18056
+ defaultStyleRules: DEFAULT_STYLE_RULES36
18085
18057
  }
18086
18058
  ) : null }) })
18087
18059
  ] })
18088
18060
  }
18089
18061
  );
18090
18062
  }
18091
- var DEFAULT_STYLE_RULES36 = {
18063
+ var DEFAULT_STYLE_RULES37 = {
18092
18064
  formContainer: "",
18093
18065
  fieldsContainer: "",
18094
18066
  fieldClassName: "",
@@ -18190,14 +18162,14 @@ function ContactSchedule({
18190
18162
  {
18191
18163
  formEngineSetup,
18192
18164
  defaultFields: DEFAULT_FORM_FIELDS37,
18193
- defaultStyleRules: DEFAULT_STYLE_RULES36
18165
+ defaultStyleRules: DEFAULT_STYLE_RULES37
18194
18166
  }
18195
18167
  ) : null }) })
18196
18168
  ] })
18197
18169
  }
18198
18170
  );
18199
18171
  }
18200
- var DEFAULT_STYLE_RULES37 = {
18172
+ var DEFAULT_STYLE_RULES38 = {
18201
18173
  formContainer: "",
18202
18174
  fieldsContainer: "",
18203
18175
  fieldClassName: "",
@@ -18299,14 +18271,14 @@ function ContactSponsorship({
18299
18271
  {
18300
18272
  formEngineSetup,
18301
18273
  defaultFields: DEFAULT_FORM_FIELDS38,
18302
- defaultStyleRules: DEFAULT_STYLE_RULES37
18274
+ defaultStyleRules: DEFAULT_STYLE_RULES38
18303
18275
  }
18304
18276
  ) : null }) })
18305
18277
  ] })
18306
18278
  }
18307
18279
  );
18308
18280
  }
18309
- var DEFAULT_STYLE_RULES38 = {
18281
+ var DEFAULT_STYLE_RULES39 = {
18310
18282
  formContainer: "",
18311
18283
  fieldsContainer: "",
18312
18284
  fieldClassName: "",
@@ -18408,14 +18380,14 @@ function ContactSupport({
18408
18380
  {
18409
18381
  formEngineSetup,
18410
18382
  defaultFields: DEFAULT_FORM_FIELDS39,
18411
- defaultStyleRules: DEFAULT_STYLE_RULES38
18383
+ defaultStyleRules: DEFAULT_STYLE_RULES39
18412
18384
  }
18413
18385
  ) : null }) })
18414
18386
  ] })
18415
18387
  }
18416
18388
  );
18417
18389
  }
18418
- var DEFAULT_STYLE_RULES39 = {
18390
+ var DEFAULT_STYLE_RULES40 = {
18419
18391
  formContainer: "",
18420
18392
  fieldsContainer: "",
18421
18393
  fieldClassName: "",
@@ -18517,14 +18489,14 @@ function ContactTenant({
18517
18489
  {
18518
18490
  formEngineSetup,
18519
18491
  defaultFields: DEFAULT_FORM_FIELDS40,
18520
- defaultStyleRules: DEFAULT_STYLE_RULES39
18492
+ defaultStyleRules: DEFAULT_STYLE_RULES40
18521
18493
  }
18522
18494
  ) : null }) })
18523
18495
  ] })
18524
18496
  }
18525
18497
  );
18526
18498
  }
18527
- var DEFAULT_STYLE_RULES40 = {
18499
+ var DEFAULT_STYLE_RULES41 = {
18528
18500
  formContainer: "",
18529
18501
  fieldsContainer: "",
18530
18502
  fieldClassName: "",
@@ -18626,14 +18598,14 @@ function ContactVendor({
18626
18598
  {
18627
18599
  formEngineSetup,
18628
18600
  defaultFields: DEFAULT_FORM_FIELDS41,
18629
- defaultStyleRules: DEFAULT_STYLE_RULES40
18601
+ defaultStyleRules: DEFAULT_STYLE_RULES41
18630
18602
  }
18631
18603
  ) : null }) })
18632
18604
  ] })
18633
18605
  }
18634
18606
  );
18635
18607
  }
18636
- var DEFAULT_STYLE_RULES41 = {
18608
+ var DEFAULT_STYLE_RULES42 = {
18637
18609
  formContainer: "",
18638
18610
  fieldsContainer: "",
18639
18611
  fieldClassName: "",
@@ -18735,14 +18707,14 @@ function ContactVolunteer({
18735
18707
  {
18736
18708
  formEngineSetup,
18737
18709
  defaultFields: DEFAULT_FORM_FIELDS42,
18738
- defaultStyleRules: DEFAULT_STYLE_RULES41
18710
+ defaultStyleRules: DEFAULT_STYLE_RULES42
18739
18711
  }
18740
18712
  ) : null }) })
18741
18713
  ] })
18742
18714
  }
18743
18715
  );
18744
18716
  }
18745
- var DEFAULT_STYLE_RULES42 = {
18717
+ var DEFAULT_STYLE_RULES43 = {
18746
18718
  formContainer: "",
18747
18719
  fieldsContainer: "",
18748
18720
  fieldClassName: "",
@@ -18844,14 +18816,14 @@ function ContactWarranty({
18844
18816
  {
18845
18817
  formEngineSetup,
18846
18818
  defaultFields: DEFAULT_FORM_FIELDS43,
18847
- defaultStyleRules: DEFAULT_STYLE_RULES42
18819
+ defaultStyleRules: DEFAULT_STYLE_RULES43
18848
18820
  }
18849
18821
  ) : null }) })
18850
18822
  ] })
18851
18823
  }
18852
18824
  );
18853
18825
  }
18854
- var DEFAULT_STYLE_RULES43 = {
18826
+ var DEFAULT_STYLE_RULES44 = {
18855
18827
  formContainer: "",
18856
18828
  fieldsContainer: "",
18857
18829
  fieldClassName: "",
@@ -18953,7 +18925,7 @@ function ContactWedding({
18953
18925
  {
18954
18926
  formEngineSetup,
18955
18927
  defaultFields: DEFAULT_FORM_FIELDS44,
18956
- defaultStyleRules: DEFAULT_STYLE_RULES43
18928
+ defaultStyleRules: DEFAULT_STYLE_RULES44
18957
18929
  }
18958
18930
  ) : null }) })
18959
18931
  ] })
@@ -41833,7 +41805,7 @@ function FeatureAnimatedCarousel({
41833
41805
  }
41834
41806
  );
41835
41807
  }
41836
- var DEFAULT_STYLE_RULES44 = {
41808
+ var DEFAULT_STYLE_RULES45 = {
41837
41809
  formContainer: "space-y-4",
41838
41810
  fieldsContainer: "",
41839
41811
  fieldClassName: "",
@@ -41885,14 +41857,14 @@ function FooterNewsletterContact({
41885
41857
  }, [footerLinks]);
41886
41858
  const contactDetailsContent = React30__namespace.useMemo(() => {
41887
41859
  if (!contactDetails || contactDetails.length === 0) return null;
41888
- return contactDetails.map((item, idx) => /* @__PURE__ */ jsxRuntime.jsxs("li", { className: "flex items-center gap-3", children: [
41889
- /* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: item.icon, size: 16, className: "shrink-0" }),
41890
- /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex-1", children: item.type === "none" ? /* @__PURE__ */ jsxRuntime.jsx("p", { children: item.text }) : /* @__PURE__ */ jsxRuntime.jsx(
41860
+ return contactDetails.map((item, idx) => /* @__PURE__ */ jsxRuntime.jsxs("li", { className: "flex items-start gap-3", children: [
41861
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex items-center justify-center shrink-0 mt-1", children: /* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: item.icon, size: 16 }) }),
41862
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex-1", children: /* @__PURE__ */ jsxRuntime.jsx(
41891
41863
  Pressable,
41892
41864
  {
41893
- href: item.type === "email" ? `mailto:${item.link}` : `tel:${item.link}`,
41865
+ href: item.link,
41894
41866
  className: "underline-offset-4 hover:underline",
41895
- children: item.text
41867
+ children: item.label
41896
41868
  }
41897
41869
  ) })
41898
41870
  ] }, idx));
@@ -41938,9 +41910,9 @@ function FooterNewsletterContact({
41938
41910
  },
41939
41911
  defaultFields: DEFAULT_FORM_FIELDS45,
41940
41912
  defaultStyleRules: {
41941
- ...DEFAULT_STYLE_RULES44,
41913
+ ...DEFAULT_STYLE_RULES45,
41942
41914
  formContainer: cn(
41943
- DEFAULT_STYLE_RULES44.formContainer,
41915
+ DEFAULT_STYLE_RULES45.formContainer,
41944
41916
  newsletterFormClassName
41945
41917
  )
41946
41918
  }
@@ -41957,9 +41929,9 @@ function FooterNewsletterContact({
41957
41929
  className,
41958
41930
  containerClassName,
41959
41931
  children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-10", children: [
41960
- /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid grid-cols-1 gap-x-16 gap-y-8 md:grid-cols-2 xl:grid-cols-4", children: [
41961
- formEngineSetup && (newsletterTitle || newsletterDescription) && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-6 col-span-2 md:col-span-1", children: [
41962
- newsletterTitle && /* @__PURE__ */ jsxRuntime.jsx("h3", { className: "text-3xl font-medium font-serif leading-none", children: newsletterTitle }),
41932
+ /* @__PURE__ */ jsxRuntime.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: [
41933
+ formEngineSetup && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4 md:space-y-6 col-span-2 md:col-span-1", children: [
41934
+ newsletterTitle && /* @__PURE__ */ jsxRuntime.jsx("h3", { className: "text-2xl md:text-3xl font-medium leading-none", children: newsletterTitle }),
41963
41935
  newsletterDescription && /* @__PURE__ */ jsxRuntime.jsx("p", { className: "font-light leading-normal", children: newsletterDescription }),
41964
41936
  renderForm
41965
41937
  ] }),
@@ -42004,7 +41976,7 @@ function FooterNewsletterContact({
42004
41976
  }
42005
41977
  );
42006
41978
  }
42007
- var DEFAULT_STYLE_RULES45 = {
41979
+ var DEFAULT_STYLE_RULES46 = {
42008
41980
  formContainer: "flex items-stretch w-full",
42009
41981
  fieldsContainer: "",
42010
41982
  fieldClassName: "",
@@ -42083,9 +42055,9 @@ function FooterSplitImageAccordion({
42083
42055
  },
42084
42056
  defaultFields: DEFAULT_FORM_FIELDS46,
42085
42057
  defaultStyleRules: {
42086
- ...DEFAULT_STYLE_RULES45,
42058
+ ...DEFAULT_STYLE_RULES46,
42087
42059
  formContainer: cn(
42088
- DEFAULT_STYLE_RULES45.formContainer,
42060
+ DEFAULT_STYLE_RULES46.formContainer,
42089
42061
  newsletterFormClassName
42090
42062
  )
42091
42063
  }
@@ -42284,7 +42256,7 @@ function FooterSplitImageAccordion({
42284
42256
  }
42285
42257
  );
42286
42258
  }
42287
- var DEFAULT_STYLE_RULES46 = {
42259
+ var DEFAULT_STYLE_RULES47 = {
42288
42260
  formContainer: "flex items-stretch w-full",
42289
42261
  fieldsContainer: "",
42290
42262
  fieldClassName: "",
@@ -42315,20 +42287,15 @@ function FooterAccordionSocial({
42315
42287
  pattern,
42316
42288
  patternOpacity,
42317
42289
  patternClassName,
42318
- formEngineSetup,
42319
- buttonAction,
42320
- formSlot,
42321
- newsletterFormClassName
42290
+ formEngineSetup
42322
42291
  }) {
42323
42292
  const renderForm = React30__namespace.useMemo(() => {
42324
- if (formSlot) return formSlot;
42325
42293
  if (!formEngineSetup) return null;
42326
- const defaultButtonAction = {
42294
+ const action = {
42327
42295
  label: "",
42328
42296
  variant: "default",
42329
42297
  icon: /* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: "lucide/arrow-right", size: 16 })
42330
42298
  };
42331
- const action = buttonAction || defaultButtonAction;
42332
42299
  return /* @__PURE__ */ jsxRuntime.jsx(
42333
42300
  integration.FormEngine,
42334
42301
  {
@@ -42341,21 +42308,18 @@ function FooterAccordionSocial({
42341
42308
  ...formEngineSetup.formLayoutSettings?.buttonGroupSetup,
42342
42309
  size: "default",
42343
42310
  submitLabel: action.icon || action.label,
42344
- submitVariant: action.variant || "default"
42311
+ submitVariant: action.variant
42345
42312
  }
42346
42313
  }
42347
42314
  },
42348
42315
  defaultFields: DEFAULT_FORM_FIELDS47,
42349
42316
  defaultStyleRules: {
42350
- ...DEFAULT_STYLE_RULES46,
42351
- formContainer: cn(
42352
- DEFAULT_STYLE_RULES46.formContainer,
42353
- newsletterFormClassName
42354
- )
42317
+ ...DEFAULT_STYLE_RULES47,
42318
+ formContainer: cn(DEFAULT_STYLE_RULES47.formContainer)
42355
42319
  }
42356
42320
  }
42357
42321
  );
42358
- }, [formSlot, formEngineSetup, buttonAction, newsletterFormClassName]);
42322
+ }, [formEngineSetup]);
42359
42323
  return /* @__PURE__ */ jsxRuntime.jsx(
42360
42324
  Section,
42361
42325
  {
@@ -42369,19 +42333,19 @@ function FooterAccordionSocial({
42369
42333
  children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-10", children: [
42370
42334
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid gap-10 lg:grid-cols-2 lg:gap-20", children: [
42371
42335
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-6", children: [
42372
- logo && /* @__PURE__ */ jsxRuntime.jsx(
42373
- FooterLogo,
42336
+ logo && /* @__PURE__ */ jsxRuntime.jsx(Pressable, { href: logo.url || "/", className: "block mb-8 md:mb-12", children: /* @__PURE__ */ jsxRuntime.jsx(
42337
+ img.Img,
42374
42338
  {
42375
- logo,
42376
- logoClassName: "inline-block max-w-48",
42339
+ src: logo.src,
42340
+ className: "h-16 object-contain w-auto max-w-full",
42377
42341
  optixFlowConfig
42378
42342
  }
42379
- ),
42380
- formEngineSetup && /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
42381
- /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
42382
- /* @__PURE__ */ jsxRuntime.jsx("h3", { className: "text-2xl font-semibold", children: newsletterTitle }),
42383
- /* @__PURE__ */ jsxRuntime.jsx("p", { className: "opacity-80", children: newsletterDescription })
42384
- ] }),
42343
+ ) }),
42344
+ formEngineSetup && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-2", children: [
42345
+ newsletterTitle || newsletterDescription ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-2", children: [
42346
+ newsletterTitle ? /* @__PURE__ */ jsxRuntime.jsx("h3", { className: "text-xl font-semibold", children: newsletterTitle }) : null,
42347
+ newsletterDescription ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: "opacity-70", children: newsletterDescription }) : null
42348
+ ] }) : null,
42385
42349
  renderForm
42386
42350
  ] })
42387
42351
  ] }),
@@ -42399,27 +42363,24 @@ function FooterAccordionSocial({
42399
42363
  ] }),
42400
42364
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-wrap items-center justify-between gap-6 border-t pt-8", children: [
42401
42365
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-2 text-sm opacity-80 md:flex-row md:items-center md:gap-4", children: [
42402
- /* @__PURE__ */ jsxRuntime.jsx(FooterCopyright, { copyright }),
42366
+ /* @__PURE__ */ jsxRuntime.jsx(FooterCopyright, { copyright, className: "opacity-50" }),
42403
42367
  /* @__PURE__ */ jsxRuntime.jsx(
42404
42368
  BrandAttribution,
42405
42369
  {
42406
42370
  internalBrandSlug: "open_site_ai",
42407
42371
  optionIndex: 1,
42408
42372
  variant: "span",
42409
- linkClassName: "hover:opacity-100"
42373
+ linkClassName: "opacity-50 hover:opacity-100"
42410
42374
  }
42411
42375
  )
42412
42376
  ] }),
42413
42377
  socialLinks && socialLinks.length > 0 && /* @__PURE__ */ jsxRuntime.jsx("ul", { className: "flex flex-wrap gap-4", children: socialLinks.map((social, idx) => /* @__PURE__ */ jsxRuntime.jsx("li", { children: /* @__PURE__ */ jsxRuntime.jsx(
42414
42378
  SocialLinkIcon,
42415
42379
  {
42416
- href: social.href,
42417
- label: social.label,
42418
- iconNameOverride: social.iconNameOverride,
42419
- variant: "outline",
42420
- size: "icon",
42421
- asButton: true,
42422
- className: "rounded-full"
42380
+ ...social,
42381
+ variant: "ghost",
42382
+ size: "icon-lg",
42383
+ asButton: true
42423
42384
  }
42424
42385
  ) }, idx)) })
42425
42386
  ] })
@@ -47851,7 +47812,7 @@ function HeroImageLeftContent({
47851
47812
  }
47852
47813
  );
47853
47814
  }
47854
- var DEFAULT_STYLE_RULES47 = {
47815
+ var DEFAULT_STYLE_RULES48 = {
47855
47816
  formContainer: "",
47856
47817
  fieldsContainer: "",
47857
47818
  fieldClassName: "",
@@ -48095,7 +48056,7 @@ function HeroImageSlider({
48095
48056
  }
48096
48057
  },
48097
48058
  defaultFields: DEFAULT_FORM_FIELDS48,
48098
- defaultStyleRules: DEFAULT_STYLE_RULES47
48059
+ defaultStyleRules: DEFAULT_STYLE_RULES48
48099
48060
  }
48100
48061
  ),
48101
48062
  privacyNotice && /* @__PURE__ */ jsxRuntime.jsx(
@@ -57906,7 +57867,7 @@ function HeroPricingComparison({
57906
57867
  }
57907
57868
  );
57908
57869
  }
57909
- var DEFAULT_STYLE_RULES48 = {
57870
+ var DEFAULT_STYLE_RULES49 = {
57910
57871
  formContainer: "mt-10 flex justify-center items-center w-full max-w-md flex-col gap-4 sm:flex-row",
57911
57872
  fieldsContainer: "",
57912
57873
  fieldClassName: "",
@@ -57999,7 +57960,7 @@ function HeroNewsletterMinimal({
57999
57960
  }
58000
57961
  },
58001
57962
  defaultFields: DEFAULT_FORM_FIELDS51,
58002
- defaultStyleRules: DEFAULT_STYLE_RULES48
57963
+ defaultStyleRules: DEFAULT_STYLE_RULES49
58003
57964
  }
58004
57965
  ),
58005
57966
  helperText && (typeof helperText === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("text-sm mt-2 text-center"), children: helperText }) : helperText)
@@ -82059,7 +82020,7 @@ function ListSearchableGrid({
82059
82020
  }
82060
82021
  );
82061
82022
  }
82062
- var DEFAULT_STYLE_RULES49 = {
82023
+ var DEFAULT_STYLE_RULES50 = {
82063
82024
  formContainer: "flex items-stretch w-full",
82064
82025
  fieldsContainer: "",
82065
82026
  fieldClassName: "",
@@ -82154,8 +82115,8 @@ function OfferModalNewsletterDiscount({
82154
82115
  },
82155
82116
  defaultFields: DEFAULT_FORM_FIELDS53,
82156
82117
  defaultStyleRules: {
82157
- ...DEFAULT_STYLE_RULES49,
82158
- formContainer: cn(DEFAULT_STYLE_RULES49.formContainer, formClassName)
82118
+ ...DEFAULT_STYLE_RULES50,
82119
+ formContainer: cn(DEFAULT_STYLE_RULES50.formContainer, formClassName)
82159
82120
  }
82160
82121
  }
82161
82122
  );
@@ -82181,7 +82142,7 @@ function OfferModalNewsletterDiscount({
82181
82142
  }
82182
82143
  ) });
82183
82144
  }
82184
- var DEFAULT_STYLE_RULES50 = {
82145
+ var DEFAULT_STYLE_RULES51 = {
82185
82146
  formContainer: "flex items-stretch w-full",
82186
82147
  fieldsContainer: "",
82187
82148
  fieldClassName: "",
@@ -82299,8 +82260,8 @@ function OfferModalMembershipImage({
82299
82260
  },
82300
82261
  defaultFields: DEFAULT_FORM_FIELDS54,
82301
82262
  defaultStyleRules: {
82302
- ...DEFAULT_STYLE_RULES50,
82303
- formContainer: cn(DEFAULT_STYLE_RULES50.formContainer, formClassName)
82263
+ ...DEFAULT_STYLE_RULES51,
82264
+ formContainer: cn(DEFAULT_STYLE_RULES51.formContainer, formClassName)
82304
82265
  }
82305
82266
  }
82306
82267
  );
@@ -82461,7 +82422,7 @@ function SheetDescription({
82461
82422
  }
82462
82423
  );
82463
82424
  }
82464
- var DEFAULT_STYLE_RULES51 = {
82425
+ var DEFAULT_STYLE_RULES52 = {
82465
82426
  formContainer: "flex items-stretch w-full",
82466
82427
  fieldsContainer: "",
82467
82428
  fieldClassName: "",
@@ -82585,8 +82546,8 @@ function OfferModalSheetNewsletter({
82585
82546
  },
82586
82547
  defaultFields: DEFAULT_FORM_FIELDS55,
82587
82548
  defaultStyleRules: {
82588
- ...DEFAULT_STYLE_RULES51,
82589
- formContainer: cn(DEFAULT_STYLE_RULES51.formContainer, formClassName)
82549
+ ...DEFAULT_STYLE_RULES52,
82550
+ formContainer: cn(DEFAULT_STYLE_RULES52.formContainer, formClassName)
82590
82551
  }
82591
82552
  }
82592
82553
  );
@@ -99138,7 +99099,7 @@ function LinkPageMinimalProfile({
99138
99099
  }
99139
99100
  );
99140
99101
  }
99141
- var DEFAULT_STYLE_RULES52 = {
99102
+ var DEFAULT_STYLE_RULES53 = {
99142
99103
  formContainer: "w-full flex flex-col gap-3 justify-center items-center",
99143
99104
  fieldsContainer: "",
99144
99105
  fieldClassName: "",
@@ -99316,7 +99277,7 @@ function LinkPageNewsletterSocial({
99316
99277
  }
99317
99278
  },
99318
99279
  defaultFields: DEFAULT_FORM_FIELDS56,
99319
- defaultStyleRules: DEFAULT_STYLE_RULES52
99280
+ defaultStyleRules: DEFAULT_STYLE_RULES53
99320
99281
  }
99321
99282
  ),
99322
99283
  helperText && (typeof helperText === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("text-sm mt-2 text-center"), children: helperText }) : helperText)