@opensite/ui 2.1.2 → 2.1.3
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-faq.cjs +35 -522
- package/dist/contact-faq.d.cts +2 -10
- package/dist/contact-faq.d.ts +2 -10
- package/dist/contact-faq.js +34 -524
- package/dist/contact-vendor.cjs +33 -535
- package/dist/contact-vendor.js +32 -519
- package/dist/hero-newsletter-minimal.cjs +42 -492
- package/dist/hero-newsletter-minimal.js +44 -494
- package/dist/hero-saas-dashboard-preview.cjs +36 -36
- package/dist/hero-saas-dashboard-preview.js +36 -36
- package/dist/registry.cjs +146 -311
- package/dist/registry.js +147 -312
- package/package.json +2 -2
|
@@ -913,7 +913,7 @@ function HeroSaasDashboardPreview({
|
|
|
913
913
|
className: "h-12"
|
|
914
914
|
};
|
|
915
915
|
const action = buttonAction || defaultButtonAction;
|
|
916
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
916
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: "mt-12 w-full flex items-center justify-center", children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
917
917
|
forms.Form,
|
|
918
918
|
{
|
|
919
919
|
form,
|
|
@@ -936,7 +936,7 @@ function HeroSaasDashboardPreview({
|
|
|
936
936
|
resetSubmissionState();
|
|
937
937
|
},
|
|
938
938
|
children: [
|
|
939
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "
|
|
939
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-col items-center gap-4 sm:flex-row sm:justify-center", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex w-full max-w-md items-center gap-2", children: [
|
|
940
940
|
formFields.map((field) => /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex-1", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
941
941
|
integration.DynamicFormField,
|
|
942
942
|
{
|
|
@@ -962,7 +962,7 @@ function HeroSaasDashboardPreview({
|
|
|
962
962
|
helperText && (typeof helperText === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("text-sm text-center mt-4"), children: helperText }) : helperText)
|
|
963
963
|
]
|
|
964
964
|
}
|
|
965
|
-
);
|
|
965
|
+
) });
|
|
966
966
|
}, [
|
|
967
967
|
formSlot,
|
|
968
968
|
formFields,
|
|
@@ -1032,39 +1032,39 @@ function HeroSaasDashboardPreview({
|
|
|
1032
1032
|
className: cn(className),
|
|
1033
1033
|
containerClassName,
|
|
1034
1034
|
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "pt-10 md:pt-0", children: [
|
|
1035
|
-
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1035
|
+
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
1036
|
+
"div",
|
|
1037
|
+
{
|
|
1038
|
+
className: cn(
|
|
1039
|
+
"mmx-auto text-center flex flex-col items-center gap-6 md:gap-8 max-w-full md:max-w-md",
|
|
1040
|
+
headerClassName
|
|
1041
|
+
),
|
|
1042
|
+
children: [
|
|
1043
|
+
renderBadge,
|
|
1044
|
+
heading && (typeof heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
1045
|
+
"h1",
|
|
1046
|
+
{
|
|
1047
|
+
className: cn(
|
|
1048
|
+
"text-4xl font-bold tracking-tight md:text-5xl lg:text-6xl text-balance",
|
|
1049
|
+
headingClassName
|
|
1050
|
+
),
|
|
1051
|
+
children: heading
|
|
1052
|
+
}
|
|
1053
|
+
) : heading),
|
|
1054
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
1055
|
+
"p",
|
|
1056
|
+
{
|
|
1057
|
+
className: cn(
|
|
1058
|
+
"text-lg md:text-xl text-balance",
|
|
1059
|
+
descriptionClassName
|
|
1060
|
+
),
|
|
1061
|
+
children: description
|
|
1062
|
+
}
|
|
1063
|
+
) : description),
|
|
1064
|
+
renderForm
|
|
1065
|
+
]
|
|
1066
|
+
}
|
|
1067
|
+
),
|
|
1068
1068
|
renderBrowserPreview
|
|
1069
1069
|
] })
|
|
1070
1070
|
}
|
|
@@ -892,7 +892,7 @@ function HeroSaasDashboardPreview({
|
|
|
892
892
|
className: "h-12"
|
|
893
893
|
};
|
|
894
894
|
const action = buttonAction || defaultButtonAction;
|
|
895
|
-
return /* @__PURE__ */ jsxs(
|
|
895
|
+
return /* @__PURE__ */ jsx("div", { className: "mt-12 w-full flex items-center justify-center", children: /* @__PURE__ */ jsxs(
|
|
896
896
|
Form,
|
|
897
897
|
{
|
|
898
898
|
form,
|
|
@@ -915,7 +915,7 @@ function HeroSaasDashboardPreview({
|
|
|
915
915
|
resetSubmissionState();
|
|
916
916
|
},
|
|
917
917
|
children: [
|
|
918
|
-
/* @__PURE__ */ jsx("div", { className: "
|
|
918
|
+
/* @__PURE__ */ jsx("div", { className: "flex flex-col items-center gap-4 sm:flex-row sm:justify-center", children: /* @__PURE__ */ jsxs("div", { className: "flex w-full max-w-md items-center gap-2", children: [
|
|
919
919
|
formFields.map((field) => /* @__PURE__ */ jsx("div", { className: "flex-1", children: /* @__PURE__ */ jsx(
|
|
920
920
|
DynamicFormField,
|
|
921
921
|
{
|
|
@@ -941,7 +941,7 @@ function HeroSaasDashboardPreview({
|
|
|
941
941
|
helperText && (typeof helperText === "string" ? /* @__PURE__ */ jsx("p", { className: cn("text-sm text-center mt-4"), children: helperText }) : helperText)
|
|
942
942
|
]
|
|
943
943
|
}
|
|
944
|
-
);
|
|
944
|
+
) });
|
|
945
945
|
}, [
|
|
946
946
|
formSlot,
|
|
947
947
|
formFields,
|
|
@@ -1011,39 +1011,39 @@ function HeroSaasDashboardPreview({
|
|
|
1011
1011
|
className: cn(className),
|
|
1012
1012
|
containerClassName,
|
|
1013
1013
|
children: /* @__PURE__ */ jsxs("div", { className: "pt-10 md:pt-0", children: [
|
|
1014
|
-
/* @__PURE__ */ jsxs(
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1014
|
+
/* @__PURE__ */ jsxs(
|
|
1015
|
+
"div",
|
|
1016
|
+
{
|
|
1017
|
+
className: cn(
|
|
1018
|
+
"mmx-auto text-center flex flex-col items-center gap-6 md:gap-8 max-w-full md:max-w-md",
|
|
1019
|
+
headerClassName
|
|
1020
|
+
),
|
|
1021
|
+
children: [
|
|
1022
|
+
renderBadge,
|
|
1023
|
+
heading && (typeof heading === "string" ? /* @__PURE__ */ jsx(
|
|
1024
|
+
"h1",
|
|
1025
|
+
{
|
|
1026
|
+
className: cn(
|
|
1027
|
+
"text-4xl font-bold tracking-tight md:text-5xl lg:text-6xl text-balance",
|
|
1028
|
+
headingClassName
|
|
1029
|
+
),
|
|
1030
|
+
children: heading
|
|
1031
|
+
}
|
|
1032
|
+
) : heading),
|
|
1033
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsx(
|
|
1034
|
+
"p",
|
|
1035
|
+
{
|
|
1036
|
+
className: cn(
|
|
1037
|
+
"text-lg md:text-xl text-balance",
|
|
1038
|
+
descriptionClassName
|
|
1039
|
+
),
|
|
1040
|
+
children: description
|
|
1041
|
+
}
|
|
1042
|
+
) : description),
|
|
1043
|
+
renderForm
|
|
1044
|
+
]
|
|
1045
|
+
}
|
|
1046
|
+
),
|
|
1047
1047
|
renderBrowserPreview
|
|
1048
1048
|
] })
|
|
1049
1049
|
}
|