@opensite/ui 1.9.7 → 1.9.8
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/contact-callback.cjs +12 -6
- package/dist/contact-callback.js +12 -6
- package/dist/contact-card.cjs +22 -9
- package/dist/contact-card.js +22 -9
- package/dist/contact-careers.cjs +12 -6
- package/dist/contact-careers.js +12 -6
- package/dist/contact-catering.cjs +3 -6
- package/dist/contact-catering.js +3 -6
- package/dist/contact-demo.cjs +11 -2
- package/dist/contact-demo.js +11 -2
- package/dist/contact-event.cjs +2 -2
- package/dist/contact-event.js +2 -2
- package/dist/contact-feedback.cjs +2 -2
- package/dist/contact-feedback.js +2 -2
- package/dist/contact-fitness.cjs +2 -2
- package/dist/contact-fitness.js +2 -2
- package/dist/contact-guest.cjs +11 -2
- package/dist/contact-guest.js +11 -2
- package/dist/contact-image.cjs +11 -2
- package/dist/contact-image.js +11 -2
- package/dist/contact-maintenance.cjs +41 -7
- package/dist/contact-maintenance.js +41 -7
- package/dist/contact-map.cjs +41 -7
- package/dist/contact-map.js +41 -7
- package/dist/contact-minimal.cjs +47 -4
- package/dist/contact-minimal.js +47 -4
- package/dist/contact-moving.cjs +41 -7
- package/dist/contact-moving.js +41 -7
- package/dist/contact-multistep.cjs +41 -7
- package/dist/contact-multistep.js +41 -7
- package/dist/contact-partnership.cjs +41 -7
- package/dist/contact-partnership.js +41 -7
- package/dist/registry.cjs +340 -78
- package/dist/registry.js +340 -78
- package/package.json +1 -1
package/dist/registry.cjs
CHANGED
|
@@ -12662,10 +12662,7 @@ function ContactCallback({
|
|
|
12662
12662
|
onSuccess,
|
|
12663
12663
|
onError
|
|
12664
12664
|
}) {
|
|
12665
|
-
const fields = React56.useMemo(
|
|
12666
|
-
() => formFields || DEFAULT_FORM_FIELDS,
|
|
12667
|
-
[formFields]
|
|
12668
|
-
);
|
|
12665
|
+
const fields = React56.useMemo(() => formFields || DEFAULT_FORM_FIELDS, [formFields]);
|
|
12669
12666
|
const { form, submissionError, formMethod, resetSubmissionState } = integration.useContactForm({
|
|
12670
12667
|
formFields: fields,
|
|
12671
12668
|
formConfig,
|
|
@@ -12718,13 +12715,22 @@ function ContactCallback({
|
|
|
12718
12715
|
"h2",
|
|
12719
12716
|
{
|
|
12720
12717
|
className: cn(
|
|
12721
|
-
"mb-3 text-3xl font-bold tracking-tight",
|
|
12718
|
+
"mb-3 text-3xl font-bold tracking-tight text-balance",
|
|
12722
12719
|
headingClassName
|
|
12723
12720
|
),
|
|
12724
12721
|
children: heading
|
|
12725
12722
|
}
|
|
12726
12723
|
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: headingClassName, children: heading })),
|
|
12727
|
-
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
12724
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
12725
|
+
"p",
|
|
12726
|
+
{
|
|
12727
|
+
className: cn(
|
|
12728
|
+
"leading-relaxed text-balance",
|
|
12729
|
+
descriptionClassName
|
|
12730
|
+
),
|
|
12731
|
+
children: description
|
|
12732
|
+
}
|
|
12733
|
+
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: descriptionClassName, children: description }))
|
|
12728
12734
|
] }),
|
|
12729
12735
|
/* @__PURE__ */ jsxRuntime.jsx(Card, { className: cardClassName, children: /* @__PURE__ */ jsxRuntime.jsx(CardContent, { className: cn("p-6 lg:p-8", cardContentClassName), children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
12730
12736
|
forms.Form,
|
|
@@ -12859,10 +12865,7 @@ function ContactCard({
|
|
|
12859
12865
|
onSuccess,
|
|
12860
12866
|
onError
|
|
12861
12867
|
}) {
|
|
12862
|
-
const fields = React56.useMemo(
|
|
12863
|
-
() => formFields || DEFAULT_FORM_FIELDS2,
|
|
12864
|
-
[formFields]
|
|
12865
|
-
);
|
|
12868
|
+
const fields = React56.useMemo(() => formFields || DEFAULT_FORM_FIELDS2, [formFields]);
|
|
12866
12869
|
const { form, submissionError, formMethod, resetSubmissionState } = integration.useContactForm({
|
|
12867
12870
|
formFields: fields,
|
|
12868
12871
|
formConfig,
|
|
@@ -12874,7 +12877,14 @@ function ContactCard({
|
|
|
12874
12877
|
if (actionsSlot) return actionsSlot;
|
|
12875
12878
|
if (actions && actions.length > 0) {
|
|
12876
12879
|
return actions.map((action, index) => {
|
|
12877
|
-
const {
|
|
12880
|
+
const {
|
|
12881
|
+
label,
|
|
12882
|
+
icon,
|
|
12883
|
+
iconAfter,
|
|
12884
|
+
children,
|
|
12885
|
+
className: actionClassName,
|
|
12886
|
+
...pressableProps
|
|
12887
|
+
} = action;
|
|
12878
12888
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
12879
12889
|
Pressable,
|
|
12880
12890
|
{
|
|
@@ -12918,12 +12928,12 @@ function ContactCard({
|
|
|
12918
12928
|
"h3",
|
|
12919
12929
|
{
|
|
12920
12930
|
className: cn(
|
|
12921
|
-
"mb-6 text-2xl font-semibold tracking-tight",
|
|
12931
|
+
"mb-6 text-2xl font-semibold tracking-tight text-balance",
|
|
12922
12932
|
formHeadingClassName
|
|
12923
12933
|
),
|
|
12924
12934
|
children: formHeading
|
|
12925
12935
|
}
|
|
12926
|
-
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: formHeadingClassName, children: formHeading })),
|
|
12936
|
+
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("text-balance", formHeadingClassName), children: formHeading })),
|
|
12927
12937
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
12928
12938
|
forms.Form,
|
|
12929
12939
|
{
|
|
@@ -12969,13 +12979,22 @@ function ContactCard({
|
|
|
12969
12979
|
"h2",
|
|
12970
12980
|
{
|
|
12971
12981
|
className: cn(
|
|
12972
|
-
"mb-3 text-3xl font-bold tracking-tight",
|
|
12982
|
+
"mb-3 text-3xl font-bold tracking-tight text-balance",
|
|
12973
12983
|
headingClassName
|
|
12974
12984
|
),
|
|
12975
12985
|
children: heading
|
|
12976
12986
|
}
|
|
12977
12987
|
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: headingClassName, children: heading })),
|
|
12978
|
-
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
12988
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
12989
|
+
"p",
|
|
12990
|
+
{
|
|
12991
|
+
className: cn(
|
|
12992
|
+
"leading-relaxed text-balance",
|
|
12993
|
+
descriptionClassName
|
|
12994
|
+
),
|
|
12995
|
+
children: description
|
|
12996
|
+
}
|
|
12997
|
+
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: descriptionClassName, children: description })),
|
|
12979
12998
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("mt-10 space-y-4", contactOptionsClassName), children: contactOptionsContent })
|
|
12980
12999
|
] })
|
|
12981
13000
|
] }) })
|
|
@@ -13110,10 +13129,7 @@ function ContactCareers({
|
|
|
13110
13129
|
onSuccess,
|
|
13111
13130
|
onError
|
|
13112
13131
|
}) {
|
|
13113
|
-
const fields = React56.useMemo(
|
|
13114
|
-
() => formFields || DEFAULT_FORM_FIELDS3,
|
|
13115
|
-
[formFields]
|
|
13116
|
-
);
|
|
13132
|
+
const fields = React56.useMemo(() => formFields || DEFAULT_FORM_FIELDS3, [formFields]);
|
|
13117
13133
|
const {
|
|
13118
13134
|
uploadTokens,
|
|
13119
13135
|
uploadProgress,
|
|
@@ -13178,13 +13194,22 @@ function ContactCareers({
|
|
|
13178
13194
|
"h2",
|
|
13179
13195
|
{
|
|
13180
13196
|
className: cn(
|
|
13181
|
-
"mb-3 text-3xl font-bold tracking-tight",
|
|
13197
|
+
"mb-3 text-3xl font-bold tracking-tight text-balance",
|
|
13182
13198
|
headingClassName
|
|
13183
13199
|
),
|
|
13184
13200
|
children: heading
|
|
13185
13201
|
}
|
|
13186
13202
|
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: headingClassName, children: heading })),
|
|
13187
|
-
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
13203
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
13204
|
+
"p",
|
|
13205
|
+
{
|
|
13206
|
+
className: cn(
|
|
13207
|
+
"leading-relaxed text-balance",
|
|
13208
|
+
descriptionClassName
|
|
13209
|
+
),
|
|
13210
|
+
children: description
|
|
13211
|
+
}
|
|
13212
|
+
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: descriptionClassName, children: description }))
|
|
13188
13213
|
] }),
|
|
13189
13214
|
/* @__PURE__ */ jsxRuntime.jsx(Card, { className: cardClassName, children: /* @__PURE__ */ jsxRuntime.jsx(CardContent, { className: cn("p-0", cardContentClassName), children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
13190
13215
|
forms.Form,
|
|
@@ -13432,10 +13457,7 @@ function ContactCatering({
|
|
|
13432
13457
|
onSuccess,
|
|
13433
13458
|
onError
|
|
13434
13459
|
}) {
|
|
13435
|
-
const fields = React56.useMemo(
|
|
13436
|
-
() => formFields || DEFAULT_FORM_FIELDS4,
|
|
13437
|
-
[formFields]
|
|
13438
|
-
);
|
|
13460
|
+
const fields = React56.useMemo(() => formFields || DEFAULT_FORM_FIELDS4, [formFields]);
|
|
13439
13461
|
const { form, submissionError, formMethod, resetSubmissionState } = integration.useContactForm({
|
|
13440
13462
|
formFields: fields,
|
|
13441
13463
|
formConfig,
|
|
@@ -13488,7 +13510,7 @@ function ContactCatering({
|
|
|
13488
13510
|
"h2",
|
|
13489
13511
|
{
|
|
13490
13512
|
className: cn(
|
|
13491
|
-
"mb-3 text-3xl font-bold tracking-tight",
|
|
13513
|
+
"mb-3 text-3xl font-bold tracking-tight text-balance",
|
|
13492
13514
|
headingClassName
|
|
13493
13515
|
),
|
|
13494
13516
|
children: heading
|
|
@@ -13498,7 +13520,7 @@ function ContactCatering({
|
|
|
13498
13520
|
"p",
|
|
13499
13521
|
{
|
|
13500
13522
|
className: cn(
|
|
13501
|
-
"leading-relaxed text-
|
|
13523
|
+
"leading-relaxed text-balance",
|
|
13502
13524
|
descriptionClassName
|
|
13503
13525
|
),
|
|
13504
13526
|
children: description
|
|
@@ -14277,13 +14299,22 @@ function ContactDemo({
|
|
|
14277
14299
|
"h2",
|
|
14278
14300
|
{
|
|
14279
14301
|
className: cn(
|
|
14280
|
-
"mb-3 text-3xl font-bold tracking-tight",
|
|
14302
|
+
"mb-3 text-3xl font-bold tracking-tight text-balance",
|
|
14281
14303
|
headingClassName
|
|
14282
14304
|
),
|
|
14283
14305
|
children: heading
|
|
14284
14306
|
}
|
|
14285
14307
|
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: headingClassName, children: heading })),
|
|
14286
|
-
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
14308
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
14309
|
+
"p",
|
|
14310
|
+
{
|
|
14311
|
+
className: cn(
|
|
14312
|
+
"leading-relaxed text-balance",
|
|
14313
|
+
descriptionClassName
|
|
14314
|
+
),
|
|
14315
|
+
children: description
|
|
14316
|
+
}
|
|
14317
|
+
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: descriptionClassName, children: description }))
|
|
14287
14318
|
] }),
|
|
14288
14319
|
/* @__PURE__ */ jsxRuntime.jsx(Card, { className: cardClassName, children: /* @__PURE__ */ jsxRuntime.jsx(CardContent, { className: cn("p-6 lg:p-8", cardContentClassName), children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
14289
14320
|
forms.Form,
|
|
@@ -14902,7 +14933,7 @@ function ContactEvent({
|
|
|
14902
14933
|
"h2",
|
|
14903
14934
|
{
|
|
14904
14935
|
className: cn(
|
|
14905
|
-
"mb-3 text-3xl font-bold tracking-tight",
|
|
14936
|
+
"mb-3 text-3xl font-bold tracking-tight text-balance",
|
|
14906
14937
|
headingClassName
|
|
14907
14938
|
),
|
|
14908
14939
|
children: heading
|
|
@@ -14912,7 +14943,7 @@ function ContactEvent({
|
|
|
14912
14943
|
"p",
|
|
14913
14944
|
{
|
|
14914
14945
|
className: cn(
|
|
14915
|
-
"leading-relaxed text-
|
|
14946
|
+
"leading-relaxed text-balance",
|
|
14916
14947
|
descriptionClassName
|
|
14917
14948
|
),
|
|
14918
14949
|
children: description
|
|
@@ -15491,7 +15522,7 @@ function ContactFeedback({
|
|
|
15491
15522
|
"h2",
|
|
15492
15523
|
{
|
|
15493
15524
|
className: cn(
|
|
15494
|
-
"mb-3 text-3xl font-bold tracking-tight",
|
|
15525
|
+
"mb-3 text-3xl font-bold tracking-tight text-balance",
|
|
15495
15526
|
headingClassName
|
|
15496
15527
|
),
|
|
15497
15528
|
children: heading
|
|
@@ -15501,7 +15532,7 @@ function ContactFeedback({
|
|
|
15501
15532
|
"p",
|
|
15502
15533
|
{
|
|
15503
15534
|
className: cn(
|
|
15504
|
-
"leading-relaxed text-
|
|
15535
|
+
"leading-relaxed text-balance",
|
|
15505
15536
|
descriptionClassName
|
|
15506
15537
|
),
|
|
15507
15538
|
children: description
|
|
@@ -15685,7 +15716,7 @@ function ContactFitness({
|
|
|
15685
15716
|
"h2",
|
|
15686
15717
|
{
|
|
15687
15718
|
className: cn(
|
|
15688
|
-
"mb-3 text-3xl font-bold tracking-tight",
|
|
15719
|
+
"mb-3 text-3xl font-bold tracking-tight text-balance",
|
|
15689
15720
|
headingClassName
|
|
15690
15721
|
),
|
|
15691
15722
|
children: heading
|
|
@@ -15695,7 +15726,7 @@ function ContactFitness({
|
|
|
15695
15726
|
"p",
|
|
15696
15727
|
{
|
|
15697
15728
|
className: cn(
|
|
15698
|
-
"leading-relaxed text-
|
|
15729
|
+
"leading-relaxed text-balance",
|
|
15699
15730
|
descriptionClassName
|
|
15700
15731
|
),
|
|
15701
15732
|
children: description
|
|
@@ -15921,13 +15952,22 @@ function ContactGuest({
|
|
|
15921
15952
|
"h2",
|
|
15922
15953
|
{
|
|
15923
15954
|
className: cn(
|
|
15924
|
-
"mb-3 text-3xl font-bold tracking-tight",
|
|
15955
|
+
"mb-3 text-3xl font-bold tracking-tight text-balance",
|
|
15925
15956
|
headingClassName
|
|
15926
15957
|
),
|
|
15927
15958
|
children: heading
|
|
15928
15959
|
}
|
|
15929
15960
|
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: headingClassName, children: heading })),
|
|
15930
|
-
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
15961
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
15962
|
+
"p",
|
|
15963
|
+
{
|
|
15964
|
+
className: cn(
|
|
15965
|
+
"leading-relaxed text-balance",
|
|
15966
|
+
descriptionClassName
|
|
15967
|
+
),
|
|
15968
|
+
children: description
|
|
15969
|
+
}
|
|
15970
|
+
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: descriptionClassName, children: description }))
|
|
15931
15971
|
] }),
|
|
15932
15972
|
/* @__PURE__ */ jsxRuntime.jsx(Card, { className: cn("mx-auto max-w-xl", cardClassName), children: /* @__PURE__ */ jsxRuntime.jsx(CardContent, { className: cn("p-6 lg:p-8", cardContentClassName), children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
15933
15973
|
forms.Form,
|
|
@@ -16148,13 +16188,22 @@ function ContactImage({
|
|
|
16148
16188
|
"h2",
|
|
16149
16189
|
{
|
|
16150
16190
|
className: cn(
|
|
16151
|
-
"mb-3 text-3xl font-bold tracking-tight",
|
|
16191
|
+
"mb-3 text-3xl font-bold tracking-tight text-balance",
|
|
16152
16192
|
headingClassName
|
|
16153
16193
|
),
|
|
16154
16194
|
children: heading
|
|
16155
16195
|
}
|
|
16156
16196
|
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: headingClassName, children: heading })),
|
|
16157
|
-
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
16197
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
16198
|
+
"p",
|
|
16199
|
+
{
|
|
16200
|
+
className: cn(
|
|
16201
|
+
"leading-relaxed text-balance",
|
|
16202
|
+
descriptionClassName
|
|
16203
|
+
),
|
|
16204
|
+
children: description
|
|
16205
|
+
}
|
|
16206
|
+
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: descriptionClassName, children: description }))
|
|
16158
16207
|
] }),
|
|
16159
16208
|
/* @__PURE__ */ jsxRuntime.jsx(Card, { className: cn("mx-auto max-w-xl", cardClassName), children: /* @__PURE__ */ jsxRuntime.jsx(CardContent, { className: cn("p-6 lg:p-8", cardContentClassName), children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
16160
16209
|
forms.Form,
|
|
@@ -17042,12 +17091,28 @@ function ContactMaintenance({
|
|
|
17042
17091
|
if (actionsSlot) return actionsSlot;
|
|
17043
17092
|
if (actions && actions.length > 0) {
|
|
17044
17093
|
return actions.map((action, index) => {
|
|
17045
|
-
const {
|
|
17046
|
-
return /* @__PURE__ */ jsxRuntime.jsx(Pressable, { asButton: true, className: actionClassName, ...pressableProps, children: children ?? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
17047
|
-
icon,
|
|
17094
|
+
const {
|
|
17048
17095
|
label,
|
|
17049
|
-
|
|
17050
|
-
|
|
17096
|
+
icon,
|
|
17097
|
+
iconAfter,
|
|
17098
|
+
children,
|
|
17099
|
+
className: actionClassName,
|
|
17100
|
+
...pressableProps
|
|
17101
|
+
} = action;
|
|
17102
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
17103
|
+
Pressable,
|
|
17104
|
+
{
|
|
17105
|
+
asButton: true,
|
|
17106
|
+
className: actionClassName,
|
|
17107
|
+
...pressableProps,
|
|
17108
|
+
children: children ?? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
17109
|
+
icon,
|
|
17110
|
+
label,
|
|
17111
|
+
iconAfter
|
|
17112
|
+
] })
|
|
17113
|
+
},
|
|
17114
|
+
index
|
|
17115
|
+
);
|
|
17051
17116
|
});
|
|
17052
17117
|
}
|
|
17053
17118
|
return null;
|
|
@@ -17062,8 +17127,26 @@ function ContactMaintenance({
|
|
|
17062
17127
|
className: cn("py-12", className),
|
|
17063
17128
|
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("mx-auto max-w-4xl px-4", containerClassName), children: [
|
|
17064
17129
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("mb-10 text-center", headerClassName), children: [
|
|
17065
|
-
heading && (typeof heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
17066
|
-
|
|
17130
|
+
heading && (typeof heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
17131
|
+
"h2",
|
|
17132
|
+
{
|
|
17133
|
+
className: cn(
|
|
17134
|
+
"mb-3 text-3xl font-bold tracking-tight text-balance",
|
|
17135
|
+
headingClassName
|
|
17136
|
+
),
|
|
17137
|
+
children: heading
|
|
17138
|
+
}
|
|
17139
|
+
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: headingClassName, children: heading })),
|
|
17140
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
17141
|
+
"p",
|
|
17142
|
+
{
|
|
17143
|
+
className: cn(
|
|
17144
|
+
"leading-relaxed text-balance",
|
|
17145
|
+
descriptionClassName
|
|
17146
|
+
),
|
|
17147
|
+
children: description
|
|
17148
|
+
}
|
|
17149
|
+
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: descriptionClassName, children: description }))
|
|
17067
17150
|
] }),
|
|
17068
17151
|
/* @__PURE__ */ jsxRuntime.jsx(Card, { className: cn("mx-auto max-w-xl", cardClassName), children: /* @__PURE__ */ jsxRuntime.jsx(CardContent, { className: cn("p-6 lg:p-8", cardContentClassName), children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
17069
17152
|
forms.Form,
|
|
@@ -17243,12 +17326,28 @@ function ContactMap({
|
|
|
17243
17326
|
if (actionsSlot) return actionsSlot;
|
|
17244
17327
|
if (actions && actions.length > 0) {
|
|
17245
17328
|
return actions.map((action, index) => {
|
|
17246
|
-
const {
|
|
17247
|
-
return /* @__PURE__ */ jsxRuntime.jsx(Pressable, { asButton: true, className: actionClassName, ...pressableProps, children: children ?? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
17248
|
-
icon,
|
|
17329
|
+
const {
|
|
17249
17330
|
label,
|
|
17250
|
-
|
|
17251
|
-
|
|
17331
|
+
icon,
|
|
17332
|
+
iconAfter,
|
|
17333
|
+
children,
|
|
17334
|
+
className: actionClassName,
|
|
17335
|
+
...pressableProps
|
|
17336
|
+
} = action;
|
|
17337
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
17338
|
+
Pressable,
|
|
17339
|
+
{
|
|
17340
|
+
asButton: true,
|
|
17341
|
+
className: actionClassName,
|
|
17342
|
+
...pressableProps,
|
|
17343
|
+
children: children ?? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
17344
|
+
icon,
|
|
17345
|
+
label,
|
|
17346
|
+
iconAfter
|
|
17347
|
+
] })
|
|
17348
|
+
},
|
|
17349
|
+
index
|
|
17350
|
+
);
|
|
17252
17351
|
});
|
|
17253
17352
|
}
|
|
17254
17353
|
return null;
|
|
@@ -17263,8 +17362,26 @@ function ContactMap({
|
|
|
17263
17362
|
className: cn("py-12", className),
|
|
17264
17363
|
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("mx-auto max-w-4xl px-4", containerClassName), children: [
|
|
17265
17364
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("mb-10 text-center", headerClassName), children: [
|
|
17266
|
-
heading && (typeof heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
17267
|
-
|
|
17365
|
+
heading && (typeof heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
17366
|
+
"h2",
|
|
17367
|
+
{
|
|
17368
|
+
className: cn(
|
|
17369
|
+
"mb-3 text-3xl font-bold tracking-tight text-balance",
|
|
17370
|
+
headingClassName
|
|
17371
|
+
),
|
|
17372
|
+
children: heading
|
|
17373
|
+
}
|
|
17374
|
+
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: headingClassName, children: heading })),
|
|
17375
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
17376
|
+
"p",
|
|
17377
|
+
{
|
|
17378
|
+
className: cn(
|
|
17379
|
+
"leading-relaxed text-balance",
|
|
17380
|
+
descriptionClassName
|
|
17381
|
+
),
|
|
17382
|
+
children: description
|
|
17383
|
+
}
|
|
17384
|
+
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: descriptionClassName, children: description }))
|
|
17268
17385
|
] }),
|
|
17269
17386
|
/* @__PURE__ */ jsxRuntime.jsx(Card, { className: cn("mx-auto max-w-xl", cardClassName), children: /* @__PURE__ */ jsxRuntime.jsx(CardContent, { className: cn("p-6 lg:p-8", cardContentClassName), children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
17270
17387
|
forms.Form,
|
|
@@ -17441,7 +17558,14 @@ function ContactMinimal({
|
|
|
17441
17558
|
if (actionsSlot) return actionsSlot;
|
|
17442
17559
|
if (actions && actions.length > 0) {
|
|
17443
17560
|
return actions.map((action, index) => {
|
|
17444
|
-
const {
|
|
17561
|
+
const {
|
|
17562
|
+
label,
|
|
17563
|
+
icon,
|
|
17564
|
+
iconAfter,
|
|
17565
|
+
children,
|
|
17566
|
+
className: actionClassName,
|
|
17567
|
+
...pressableProps
|
|
17568
|
+
} = action;
|
|
17445
17569
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
17446
17570
|
Pressable,
|
|
17447
17571
|
{
|
|
@@ -17463,7 +17587,25 @@ function ContactMinimal({
|
|
|
17463
17587
|
const footerContent = React56__namespace.useMemo(() => {
|
|
17464
17588
|
if (footerSlot) return footerSlot;
|
|
17465
17589
|
if (footer) {
|
|
17466
|
-
return typeof footer === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
17590
|
+
return typeof footer === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
17591
|
+
"p",
|
|
17592
|
+
{
|
|
17593
|
+
className: cn(
|
|
17594
|
+
"mt-6 text-center text-sm text-balance",
|
|
17595
|
+
footerClassName
|
|
17596
|
+
),
|
|
17597
|
+
children: footer
|
|
17598
|
+
}
|
|
17599
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
17600
|
+
"div",
|
|
17601
|
+
{
|
|
17602
|
+
className: cn(
|
|
17603
|
+
"mt-6 text-center text-sm text-balance",
|
|
17604
|
+
footerClassName
|
|
17605
|
+
),
|
|
17606
|
+
children: footer
|
|
17607
|
+
}
|
|
17608
|
+
);
|
|
17467
17609
|
}
|
|
17468
17610
|
return null;
|
|
17469
17611
|
}, [footerSlot, footer, footerClassName]);
|
|
@@ -17477,8 +17619,26 @@ function ContactMinimal({
|
|
|
17477
17619
|
className: cn("py-12", className),
|
|
17478
17620
|
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("mx-auto w-full max-w-md px-4", containerClassName), children: [
|
|
17479
17621
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("mb-10 text-center", headerClassName), children: [
|
|
17480
|
-
heading && (typeof heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
17481
|
-
|
|
17622
|
+
heading && (typeof heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
17623
|
+
"h2",
|
|
17624
|
+
{
|
|
17625
|
+
className: cn(
|
|
17626
|
+
"mb-3 text-3xl font-bold tracking-tight",
|
|
17627
|
+
headingClassName
|
|
17628
|
+
),
|
|
17629
|
+
children: heading
|
|
17630
|
+
}
|
|
17631
|
+
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: headingClassName, children: heading })),
|
|
17632
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
17633
|
+
"p",
|
|
17634
|
+
{
|
|
17635
|
+
className: cn(
|
|
17636
|
+
"leading-relaxed text-muted-foreground",
|
|
17637
|
+
descriptionClassName
|
|
17638
|
+
),
|
|
17639
|
+
children: description
|
|
17640
|
+
}
|
|
17641
|
+
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: descriptionClassName, children: description }))
|
|
17482
17642
|
] }),
|
|
17483
17643
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
17484
17644
|
forms.Form,
|
|
@@ -17630,12 +17790,28 @@ function ContactMoving({
|
|
|
17630
17790
|
if (actionsSlot) return actionsSlot;
|
|
17631
17791
|
if (actions && actions.length > 0) {
|
|
17632
17792
|
return actions.map((action, index) => {
|
|
17633
|
-
const {
|
|
17634
|
-
return /* @__PURE__ */ jsxRuntime.jsx(Pressable, { asButton: true, className: actionClassName, ...pressableProps, children: children ?? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
17635
|
-
icon,
|
|
17793
|
+
const {
|
|
17636
17794
|
label,
|
|
17637
|
-
|
|
17638
|
-
|
|
17795
|
+
icon,
|
|
17796
|
+
iconAfter,
|
|
17797
|
+
children,
|
|
17798
|
+
className: actionClassName,
|
|
17799
|
+
...pressableProps
|
|
17800
|
+
} = action;
|
|
17801
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
17802
|
+
Pressable,
|
|
17803
|
+
{
|
|
17804
|
+
asButton: true,
|
|
17805
|
+
className: actionClassName,
|
|
17806
|
+
...pressableProps,
|
|
17807
|
+
children: children ?? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
17808
|
+
icon,
|
|
17809
|
+
label,
|
|
17810
|
+
iconAfter
|
|
17811
|
+
] })
|
|
17812
|
+
},
|
|
17813
|
+
index
|
|
17814
|
+
);
|
|
17639
17815
|
});
|
|
17640
17816
|
}
|
|
17641
17817
|
return null;
|
|
@@ -17650,8 +17826,26 @@ function ContactMoving({
|
|
|
17650
17826
|
className: cn("py-12", className),
|
|
17651
17827
|
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("mx-auto max-w-4xl px-4", containerClassName), children: [
|
|
17652
17828
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("mb-10 text-center", headerClassName), children: [
|
|
17653
|
-
heading && (typeof heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
17654
|
-
|
|
17829
|
+
heading && (typeof heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
17830
|
+
"h2",
|
|
17831
|
+
{
|
|
17832
|
+
className: cn(
|
|
17833
|
+
"mb-3 text-3xl font-bold tracking-tight text-balance",
|
|
17834
|
+
headingClassName
|
|
17835
|
+
),
|
|
17836
|
+
children: heading
|
|
17837
|
+
}
|
|
17838
|
+
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: headingClassName, children: heading })),
|
|
17839
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
17840
|
+
"p",
|
|
17841
|
+
{
|
|
17842
|
+
className: cn(
|
|
17843
|
+
"leading-relaxed text-balance",
|
|
17844
|
+
descriptionClassName
|
|
17845
|
+
),
|
|
17846
|
+
children: description
|
|
17847
|
+
}
|
|
17848
|
+
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: descriptionClassName, children: description }))
|
|
17655
17849
|
] }),
|
|
17656
17850
|
/* @__PURE__ */ jsxRuntime.jsx(Card, { className: cn("mx-auto max-w-xl", cardClassName), children: /* @__PURE__ */ jsxRuntime.jsx(CardContent, { className: cn("p-6 lg:p-8", cardContentClassName), children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
17657
17851
|
forms.Form,
|
|
@@ -17831,12 +18025,28 @@ function ContactMultistep({
|
|
|
17831
18025
|
if (actionsSlot) return actionsSlot;
|
|
17832
18026
|
if (actions && actions.length > 0) {
|
|
17833
18027
|
return actions.map((action, index) => {
|
|
17834
|
-
const {
|
|
17835
|
-
return /* @__PURE__ */ jsxRuntime.jsx(Pressable, { asButton: true, className: actionClassName, ...pressableProps, children: children ?? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
17836
|
-
icon,
|
|
18028
|
+
const {
|
|
17837
18029
|
label,
|
|
17838
|
-
|
|
17839
|
-
|
|
18030
|
+
icon,
|
|
18031
|
+
iconAfter,
|
|
18032
|
+
children,
|
|
18033
|
+
className: actionClassName,
|
|
18034
|
+
...pressableProps
|
|
18035
|
+
} = action;
|
|
18036
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
18037
|
+
Pressable,
|
|
18038
|
+
{
|
|
18039
|
+
asButton: true,
|
|
18040
|
+
className: actionClassName,
|
|
18041
|
+
...pressableProps,
|
|
18042
|
+
children: children ?? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
18043
|
+
icon,
|
|
18044
|
+
label,
|
|
18045
|
+
iconAfter
|
|
18046
|
+
] })
|
|
18047
|
+
},
|
|
18048
|
+
index
|
|
18049
|
+
);
|
|
17840
18050
|
});
|
|
17841
18051
|
}
|
|
17842
18052
|
return null;
|
|
@@ -17851,8 +18061,26 @@ function ContactMultistep({
|
|
|
17851
18061
|
className: cn("py-12", className),
|
|
17852
18062
|
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("mx-auto max-w-4xl px-4", containerClassName), children: [
|
|
17853
18063
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("mb-10 text-center", headerClassName), children: [
|
|
17854
|
-
heading && (typeof heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
17855
|
-
|
|
18064
|
+
heading && (typeof heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
18065
|
+
"h2",
|
|
18066
|
+
{
|
|
18067
|
+
className: cn(
|
|
18068
|
+
"mb-3 text-3xl font-bold tracking-tight",
|
|
18069
|
+
headingClassName
|
|
18070
|
+
),
|
|
18071
|
+
children: heading
|
|
18072
|
+
}
|
|
18073
|
+
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: headingClassName, children: heading })),
|
|
18074
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
18075
|
+
"p",
|
|
18076
|
+
{
|
|
18077
|
+
className: cn(
|
|
18078
|
+
"leading-relaxed text-balance",
|
|
18079
|
+
descriptionClassName
|
|
18080
|
+
),
|
|
18081
|
+
children: description
|
|
18082
|
+
}
|
|
18083
|
+
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: descriptionClassName, children: description }))
|
|
17856
18084
|
] }),
|
|
17857
18085
|
/* @__PURE__ */ jsxRuntime.jsx(Card, { className: cn("mx-auto max-w-xl", cardClassName), children: /* @__PURE__ */ jsxRuntime.jsx(CardContent, { className: cn("p-6 lg:p-8", cardContentClassName), children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
17858
18086
|
forms.Form,
|
|
@@ -18032,12 +18260,28 @@ function ContactPartnership({
|
|
|
18032
18260
|
if (actionsSlot) return actionsSlot;
|
|
18033
18261
|
if (actions && actions.length > 0) {
|
|
18034
18262
|
return actions.map((action, index) => {
|
|
18035
|
-
const {
|
|
18036
|
-
return /* @__PURE__ */ jsxRuntime.jsx(Pressable, { asButton: true, className: actionClassName, ...pressableProps, children: children ?? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
18037
|
-
icon,
|
|
18263
|
+
const {
|
|
18038
18264
|
label,
|
|
18039
|
-
|
|
18040
|
-
|
|
18265
|
+
icon,
|
|
18266
|
+
iconAfter,
|
|
18267
|
+
children,
|
|
18268
|
+
className: actionClassName,
|
|
18269
|
+
...pressableProps
|
|
18270
|
+
} = action;
|
|
18271
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
18272
|
+
Pressable,
|
|
18273
|
+
{
|
|
18274
|
+
asButton: true,
|
|
18275
|
+
className: actionClassName,
|
|
18276
|
+
...pressableProps,
|
|
18277
|
+
children: children ?? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
18278
|
+
icon,
|
|
18279
|
+
label,
|
|
18280
|
+
iconAfter
|
|
18281
|
+
] })
|
|
18282
|
+
},
|
|
18283
|
+
index
|
|
18284
|
+
);
|
|
18041
18285
|
});
|
|
18042
18286
|
}
|
|
18043
18287
|
return null;
|
|
@@ -18052,8 +18296,26 @@ function ContactPartnership({
|
|
|
18052
18296
|
className: cn("py-12", className),
|
|
18053
18297
|
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("mx-auto max-w-4xl px-4", containerClassName), children: [
|
|
18054
18298
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("mb-10 text-center", headerClassName), children: [
|
|
18055
|
-
heading && (typeof heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
18056
|
-
|
|
18299
|
+
heading && (typeof heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
18300
|
+
"h2",
|
|
18301
|
+
{
|
|
18302
|
+
className: cn(
|
|
18303
|
+
"mb-3 text-3xl font-bold tracking-tight text-balance",
|
|
18304
|
+
headingClassName
|
|
18305
|
+
),
|
|
18306
|
+
children: heading
|
|
18307
|
+
}
|
|
18308
|
+
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: headingClassName, children: heading })),
|
|
18309
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
18310
|
+
"p",
|
|
18311
|
+
{
|
|
18312
|
+
className: cn(
|
|
18313
|
+
"leading-relaxed text-balance",
|
|
18314
|
+
descriptionClassName
|
|
18315
|
+
),
|
|
18316
|
+
children: description
|
|
18317
|
+
}
|
|
18318
|
+
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: descriptionClassName, children: description }))
|
|
18057
18319
|
] }),
|
|
18058
18320
|
/* @__PURE__ */ jsxRuntime.jsx(Card, { className: cn("mx-auto max-w-xl", cardClassName), children: /* @__PURE__ */ jsxRuntime.jsx(CardContent, { className: cn("p-6 lg:p-8", cardContentClassName), children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
18059
18321
|
forms.Form,
|