@opensite/ui 1.2.9 → 1.3.0

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.
Files changed (41) hide show
  1. package/dist/carousel-scale-focus.cjs +3 -2
  2. package/dist/carousel-scale-focus.d.cts +5 -1
  3. package/dist/carousel-scale-focus.d.ts +5 -1
  4. package/dist/carousel-scale-focus.js +3 -2
  5. package/dist/feature-badge-grid-six.cjs +88 -13
  6. package/dist/feature-badge-grid-six.d.cts +1 -1
  7. package/dist/feature-badge-grid-six.d.ts +1 -1
  8. package/dist/feature-badge-grid-six.js +88 -13
  9. package/dist/feature-category-image-cards.cjs +1 -1
  10. package/dist/feature-category-image-cards.d.cts +1 -1
  11. package/dist/feature-category-image-cards.d.ts +1 -1
  12. package/dist/feature-category-image-cards.js +1 -1
  13. package/dist/feature-checklist-image.cjs +5 -5
  14. package/dist/feature-checklist-image.js +5 -5
  15. package/dist/feature-icon-grid-accent.cjs +6 -6
  16. package/dist/feature-icon-grid-accent.js +6 -6
  17. package/dist/feature-icon-grid-bordered.cjs +5 -10
  18. package/dist/feature-icon-grid-bordered.d.cts +1 -1
  19. package/dist/feature-icon-grid-bordered.d.ts +1 -1
  20. package/dist/feature-icon-grid-bordered.js +5 -10
  21. package/dist/feature-icon-grid-muted.cjs +1 -1
  22. package/dist/feature-icon-grid-muted.js +1 -1
  23. package/dist/feature-icon-tabs-content.cjs +90 -108
  24. package/dist/feature-icon-tabs-content.js +90 -108
  25. package/dist/feature-image-cards-three-column.cjs +21 -15
  26. package/dist/feature-image-cards-three-column.d.cts +1 -1
  27. package/dist/feature-image-cards-three-column.d.ts +1 -1
  28. package/dist/feature-image-cards-three-column.js +21 -15
  29. package/dist/feature-numbered-cards.cjs +1 -1
  30. package/dist/feature-numbered-cards.js +1 -1
  31. package/dist/feature-tabbed-content-image.cjs +1 -1
  32. package/dist/feature-tabbed-content-image.d.cts +1 -1
  33. package/dist/feature-tabbed-content-image.d.ts +1 -1
  34. package/dist/feature-tabbed-content-image.js +1 -1
  35. package/dist/feature-three-column-values.cjs +472 -35
  36. package/dist/feature-three-column-values.d.cts +4 -0
  37. package/dist/feature-three-column-values.d.ts +4 -0
  38. package/dist/feature-three-column-values.js +472 -35
  39. package/dist/registry.cjs +275 -194
  40. package/dist/registry.js +275 -194
  41. package/package.json +1 -1
@@ -1139,7 +1139,8 @@ function CarouselScaleFocus({
1139
1139
  indicatorClassName,
1140
1140
  startIndex = 1,
1141
1141
  background,
1142
- spacing,
1142
+ containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
1143
+ spacing = "py-12 md:py-32",
1143
1144
  pattern,
1144
1145
  patternOpacity,
1145
1146
  patternClassName,
@@ -1249,7 +1250,7 @@ function CarouselScaleFocus({
1249
1250
  patternOpacity,
1250
1251
  patternClassName,
1251
1252
  className: cn("overflow-hidden", className),
1252
- containerClassName: "px-6 sm:px-6 md:px-8 lg:px-8",
1253
+ containerClassName,
1253
1254
  children: [
1254
1255
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "md:px-45", children: [
1255
1256
  title || description ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-4 mb-6 md:mb-16 text-center", children: [
@@ -109,6 +109,10 @@ interface CarouselScaleFocusProps {
109
109
  * OptixFlow image optimization configuration
110
110
  */
111
111
  optixFlowConfig?: OptixFlowConfig;
112
+ /**
113
+ * Additional CSS classes for the container
114
+ */
115
+ containerClassName?: string;
112
116
  }
113
117
  /**
114
118
  * CarouselScaleFocus displays images with a scale and opacity focus effect.
@@ -130,6 +134,6 @@ interface CarouselScaleFocusProps {
130
134
  * />
131
135
  * ```
132
136
  */
133
- declare function CarouselScaleFocus({ title, description, titleClassName, descriptionClassName, images, imagesSlot, className, carouselClassName, carouselContentClassName, itemClassName, imageClassName, controlsClassName, indicatorsClassName, indicatorClassName, startIndex, background, spacing, pattern, patternOpacity, patternClassName, optixFlowConfig, }: CarouselScaleFocusProps): React.JSX.Element;
137
+ declare function CarouselScaleFocus({ title, description, titleClassName, descriptionClassName, images, imagesSlot, className, carouselClassName, carouselContentClassName, itemClassName, imageClassName, controlsClassName, indicatorsClassName, indicatorClassName, startIndex, background, containerClassName, spacing, pattern, patternOpacity, patternClassName, optixFlowConfig, }: CarouselScaleFocusProps): React.JSX.Element;
134
138
 
135
139
  export { CarouselScaleFocus, type CarouselScaleFocusImage, type CarouselScaleFocusProps };
@@ -109,6 +109,10 @@ interface CarouselScaleFocusProps {
109
109
  * OptixFlow image optimization configuration
110
110
  */
111
111
  optixFlowConfig?: OptixFlowConfig;
112
+ /**
113
+ * Additional CSS classes for the container
114
+ */
115
+ containerClassName?: string;
112
116
  }
113
117
  /**
114
118
  * CarouselScaleFocus displays images with a scale and opacity focus effect.
@@ -130,6 +134,6 @@ interface CarouselScaleFocusProps {
130
134
  * />
131
135
  * ```
132
136
  */
133
- declare function CarouselScaleFocus({ title, description, titleClassName, descriptionClassName, images, imagesSlot, className, carouselClassName, carouselContentClassName, itemClassName, imageClassName, controlsClassName, indicatorsClassName, indicatorClassName, startIndex, background, spacing, pattern, patternOpacity, patternClassName, optixFlowConfig, }: CarouselScaleFocusProps): React.JSX.Element;
137
+ declare function CarouselScaleFocus({ title, description, titleClassName, descriptionClassName, images, imagesSlot, className, carouselClassName, carouselContentClassName, itemClassName, imageClassName, controlsClassName, indicatorsClassName, indicatorClassName, startIndex, background, containerClassName, spacing, pattern, patternOpacity, patternClassName, optixFlowConfig, }: CarouselScaleFocusProps): React.JSX.Element;
134
138
 
135
139
  export { CarouselScaleFocus, type CarouselScaleFocusImage, type CarouselScaleFocusProps };
@@ -1115,7 +1115,8 @@ function CarouselScaleFocus({
1115
1115
  indicatorClassName,
1116
1116
  startIndex = 1,
1117
1117
  background,
1118
- spacing,
1118
+ containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
1119
+ spacing = "py-12 md:py-32",
1119
1120
  pattern,
1120
1121
  patternOpacity,
1121
1122
  patternClassName,
@@ -1225,7 +1226,7 @@ function CarouselScaleFocus({
1225
1226
  patternOpacity,
1226
1227
  patternClassName,
1227
1228
  className: cn("overflow-hidden", className),
1228
- containerClassName: "px-6 sm:px-6 md:px-8 lg:px-8",
1229
+ containerClassName,
1229
1230
  children: [
1230
1231
  /* @__PURE__ */ jsxs("div", { className: "md:px-45", children: [
1231
1232
  title || description ? /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-4 mb-6 md:mb-16 text-center", children: [
@@ -997,7 +997,8 @@ function FeatureBadgeGridSix({
997
997
  action,
998
998
  actionSlot,
999
999
  className,
1000
- containerClassName,
1000
+ containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
1001
+ spacing = "py-12 md:py-32",
1001
1002
  headerClassName,
1002
1003
  badgeClassName,
1003
1004
  titleClassName,
@@ -1005,7 +1006,6 @@ function FeatureBadgeGridSix({
1005
1006
  cardClassName,
1006
1007
  actionContainerClassName,
1007
1008
  background,
1008
- spacing,
1009
1009
  pattern,
1010
1010
  patternOpacity,
1011
1011
  patternClassName
@@ -1037,12 +1037,54 @@ function FeatureBadgeGridSix({
1037
1037
  return /* @__PURE__ */ jsxRuntime.jsxs(
1038
1038
  "div",
1039
1039
  {
1040
- className: cn("flex gap-6 space-y-4 rounded-lg md:block", cardClassName, feature.className),
1040
+ className: cn(
1041
+ "flex gap-6 space-y-4 rounded-lg md:block",
1042
+ cardClassName,
1043
+ feature.className
1044
+ ),
1041
1045
  children: [
1042
- iconContent && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "flex size-10 shrink-0 items-center justify-center rounded-full bg-primary text-primary-foreground md:size-12", children: iconContent }),
1046
+ iconContent && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "flex size-10 shrink-0 items-center justify-center rounded-lg bg-card text-card-foreground md:size-12 shadow-sm border", children: iconContent }),
1043
1047
  /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
1044
- feature.heading && (typeof feature.heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx("h3", { className: cn("font-medium md:mb-2 md:text-xl", feature.headingClassName), children: feature.heading }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("font-medium md:mb-2 md:text-xl", feature.headingClassName), children: feature.heading })),
1045
- feature.description && (typeof feature.description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("text-sm md:text-base", getTextColor(background, "muted"), feature.descriptionClassName), children: feature.description }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("text-sm md:text-base", getTextColor(background, "muted"), feature.descriptionClassName), children: feature.description }))
1048
+ feature.heading && (typeof feature.heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
1049
+ "h3",
1050
+ {
1051
+ className: cn(
1052
+ "font-medium md:mb-2 md:text-xl",
1053
+ feature.headingClassName
1054
+ ),
1055
+ children: feature.heading
1056
+ }
1057
+ ) : /* @__PURE__ */ jsxRuntime.jsx(
1058
+ "div",
1059
+ {
1060
+ className: cn(
1061
+ "font-medium md:mb-2 md:text-xl",
1062
+ feature.headingClassName
1063
+ ),
1064
+ children: feature.heading
1065
+ }
1066
+ )),
1067
+ feature.description && (typeof feature.description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
1068
+ "p",
1069
+ {
1070
+ className: cn(
1071
+ "text-sm md:text-base",
1072
+ getTextColor(background, "muted"),
1073
+ feature.descriptionClassName
1074
+ ),
1075
+ children: feature.description
1076
+ }
1077
+ ) : /* @__PURE__ */ jsxRuntime.jsx(
1078
+ "div",
1079
+ {
1080
+ className: cn(
1081
+ "text-sm md:text-base",
1082
+ getTextColor(background, "muted"),
1083
+ feature.descriptionClassName
1084
+ ),
1085
+ children: feature.description
1086
+ }
1087
+ ))
1046
1088
  ] })
1047
1089
  ]
1048
1090
  },
@@ -1086,7 +1128,7 @@ function FeatureBadgeGridSix({
1086
1128
  }
1087
1129
  );
1088
1130
  }, [actionSlot, action]);
1089
- return /* @__PURE__ */ jsxRuntime.jsxs(
1131
+ return /* @__PURE__ */ jsxRuntime.jsx(
1090
1132
  Section,
1091
1133
  {
1092
1134
  background,
@@ -1096,14 +1138,47 @@ function FeatureBadgeGridSix({
1096
1138
  patternClassName,
1097
1139
  className,
1098
1140
  containerClassName,
1099
- children: [
1100
- (label || badgeSlot || title) && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("mb-12 flex max-w-3xl flex-col gap-4", headerClassName), children: [
1141
+ children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col space-y-6 md:space-y-16", children: [
1142
+ (label || badgeSlot || title) && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("flex flex-col gap-4", headerClassName), children: [
1101
1143
  badgeContent,
1102
- title && (typeof title === "string" ? /* @__PURE__ */ jsxRuntime.jsx("h2", { className: cn("text-3xl font-medium md:text-4xl lg:text-5xl", titleClassName), children: title }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("text-3xl font-medium md:text-4xl lg:text-5xl", titleClassName), children: title }))
1144
+ title && (typeof title === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
1145
+ "h2",
1146
+ {
1147
+ className: cn(
1148
+ "text-2xl font-bold md:text-3xl lg:text-4xl",
1149
+ titleClassName
1150
+ ),
1151
+ children: title
1152
+ }
1153
+ ) : /* @__PURE__ */ jsxRuntime.jsx(
1154
+ "div",
1155
+ {
1156
+ className: cn(
1157
+ "text-2xl font-bold md:text-3xl lg:text-4xl",
1158
+ titleClassName
1159
+ ),
1160
+ children: title
1161
+ }
1162
+ ))
1103
1163
  ] }),
1104
- /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("grid gap-12 md:grid-cols-2", gridClassName), children: featuresContent }),
1105
- (action || actionSlot) && /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("mt-16 flex justify-center", actionContainerClassName), children: actionContent })
1106
- ]
1164
+ /* @__PURE__ */ jsxRuntime.jsx(
1165
+ "div",
1166
+ {
1167
+ className: cn(
1168
+ "grid gap-6 md:gap-12 grid-cols-1 md:grid-cols-2",
1169
+ gridClassName
1170
+ ),
1171
+ children: featuresContent
1172
+ }
1173
+ ),
1174
+ (action || actionSlot) && /* @__PURE__ */ jsxRuntime.jsx(
1175
+ "div",
1176
+ {
1177
+ className: cn("mt-8 flex justify-center", actionContainerClassName),
1178
+ children: actionContent
1179
+ }
1180
+ )
1181
+ ] })
1107
1182
  }
1108
1183
  );
1109
1184
  }
@@ -141,6 +141,6 @@ interface FeatureBadgeGridSixProps {
141
141
  * />
142
142
  * ```
143
143
  */
144
- declare function FeatureBadgeGridSix({ label, badgeSlot, title, features, featuresSlot, action, actionSlot, className, containerClassName, headerClassName, badgeClassName, titleClassName, gridClassName, cardClassName, actionContainerClassName, background, spacing, pattern, patternOpacity, patternClassName, }: FeatureBadgeGridSixProps): React.JSX.Element;
144
+ declare function FeatureBadgeGridSix({ label, badgeSlot, title, features, featuresSlot, action, actionSlot, className, containerClassName, spacing, headerClassName, badgeClassName, titleClassName, gridClassName, cardClassName, actionContainerClassName, background, pattern, patternOpacity, patternClassName, }: FeatureBadgeGridSixProps): React.JSX.Element;
145
145
 
146
146
  export { FeatureBadgeGridSix, type FeatureBadgeGridSixProps };
@@ -141,6 +141,6 @@ interface FeatureBadgeGridSixProps {
141
141
  * />
142
142
  * ```
143
143
  */
144
- declare function FeatureBadgeGridSix({ label, badgeSlot, title, features, featuresSlot, action, actionSlot, className, containerClassName, headerClassName, badgeClassName, titleClassName, gridClassName, cardClassName, actionContainerClassName, background, spacing, pattern, patternOpacity, patternClassName, }: FeatureBadgeGridSixProps): React.JSX.Element;
144
+ declare function FeatureBadgeGridSix({ label, badgeSlot, title, features, featuresSlot, action, actionSlot, className, containerClassName, spacing, headerClassName, badgeClassName, titleClassName, gridClassName, cardClassName, actionContainerClassName, background, pattern, patternOpacity, patternClassName, }: FeatureBadgeGridSixProps): React.JSX.Element;
145
145
 
146
146
  export { FeatureBadgeGridSix, type FeatureBadgeGridSixProps };
@@ -976,7 +976,8 @@ function FeatureBadgeGridSix({
976
976
  action,
977
977
  actionSlot,
978
978
  className,
979
- containerClassName,
979
+ containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
980
+ spacing = "py-12 md:py-32",
980
981
  headerClassName,
981
982
  badgeClassName,
982
983
  titleClassName,
@@ -984,7 +985,6 @@ function FeatureBadgeGridSix({
984
985
  cardClassName,
985
986
  actionContainerClassName,
986
987
  background,
987
- spacing,
988
988
  pattern,
989
989
  patternOpacity,
990
990
  patternClassName
@@ -1016,12 +1016,54 @@ function FeatureBadgeGridSix({
1016
1016
  return /* @__PURE__ */ jsxs(
1017
1017
  "div",
1018
1018
  {
1019
- className: cn("flex gap-6 space-y-4 rounded-lg md:block", cardClassName, feature.className),
1019
+ className: cn(
1020
+ "flex gap-6 space-y-4 rounded-lg md:block",
1021
+ cardClassName,
1022
+ feature.className
1023
+ ),
1020
1024
  children: [
1021
- iconContent && /* @__PURE__ */ jsx("span", { className: "flex size-10 shrink-0 items-center justify-center rounded-full bg-primary text-primary-foreground md:size-12", children: iconContent }),
1025
+ iconContent && /* @__PURE__ */ jsx("span", { className: "flex size-10 shrink-0 items-center justify-center rounded-lg bg-card text-card-foreground md:size-12 shadow-sm border", children: iconContent }),
1022
1026
  /* @__PURE__ */ jsxs("div", { children: [
1023
- feature.heading && (typeof feature.heading === "string" ? /* @__PURE__ */ jsx("h3", { className: cn("font-medium md:mb-2 md:text-xl", feature.headingClassName), children: feature.heading }) : /* @__PURE__ */ jsx("div", { className: cn("font-medium md:mb-2 md:text-xl", feature.headingClassName), children: feature.heading })),
1024
- feature.description && (typeof feature.description === "string" ? /* @__PURE__ */ jsx("p", { className: cn("text-sm md:text-base", getTextColor(background, "muted"), feature.descriptionClassName), children: feature.description }) : /* @__PURE__ */ jsx("div", { className: cn("text-sm md:text-base", getTextColor(background, "muted"), feature.descriptionClassName), children: feature.description }))
1027
+ feature.heading && (typeof feature.heading === "string" ? /* @__PURE__ */ jsx(
1028
+ "h3",
1029
+ {
1030
+ className: cn(
1031
+ "font-medium md:mb-2 md:text-xl",
1032
+ feature.headingClassName
1033
+ ),
1034
+ children: feature.heading
1035
+ }
1036
+ ) : /* @__PURE__ */ jsx(
1037
+ "div",
1038
+ {
1039
+ className: cn(
1040
+ "font-medium md:mb-2 md:text-xl",
1041
+ feature.headingClassName
1042
+ ),
1043
+ children: feature.heading
1044
+ }
1045
+ )),
1046
+ feature.description && (typeof feature.description === "string" ? /* @__PURE__ */ jsx(
1047
+ "p",
1048
+ {
1049
+ className: cn(
1050
+ "text-sm md:text-base",
1051
+ getTextColor(background, "muted"),
1052
+ feature.descriptionClassName
1053
+ ),
1054
+ children: feature.description
1055
+ }
1056
+ ) : /* @__PURE__ */ jsx(
1057
+ "div",
1058
+ {
1059
+ className: cn(
1060
+ "text-sm md:text-base",
1061
+ getTextColor(background, "muted"),
1062
+ feature.descriptionClassName
1063
+ ),
1064
+ children: feature.description
1065
+ }
1066
+ ))
1025
1067
  ] })
1026
1068
  ]
1027
1069
  },
@@ -1065,7 +1107,7 @@ function FeatureBadgeGridSix({
1065
1107
  }
1066
1108
  );
1067
1109
  }, [actionSlot, action]);
1068
- return /* @__PURE__ */ jsxs(
1110
+ return /* @__PURE__ */ jsx(
1069
1111
  Section,
1070
1112
  {
1071
1113
  background,
@@ -1075,14 +1117,47 @@ function FeatureBadgeGridSix({
1075
1117
  patternClassName,
1076
1118
  className,
1077
1119
  containerClassName,
1078
- children: [
1079
- (label || badgeSlot || title) && /* @__PURE__ */ jsxs("div", { className: cn("mb-12 flex max-w-3xl flex-col gap-4", headerClassName), children: [
1120
+ children: /* @__PURE__ */ jsxs("div", { className: "flex flex-col space-y-6 md:space-y-16", children: [
1121
+ (label || badgeSlot || title) && /* @__PURE__ */ jsxs("div", { className: cn("flex flex-col gap-4", headerClassName), children: [
1080
1122
  badgeContent,
1081
- title && (typeof title === "string" ? /* @__PURE__ */ jsx("h2", { className: cn("text-3xl font-medium md:text-4xl lg:text-5xl", titleClassName), children: title }) : /* @__PURE__ */ jsx("div", { className: cn("text-3xl font-medium md:text-4xl lg:text-5xl", titleClassName), children: title }))
1123
+ title && (typeof title === "string" ? /* @__PURE__ */ jsx(
1124
+ "h2",
1125
+ {
1126
+ className: cn(
1127
+ "text-2xl font-bold md:text-3xl lg:text-4xl",
1128
+ titleClassName
1129
+ ),
1130
+ children: title
1131
+ }
1132
+ ) : /* @__PURE__ */ jsx(
1133
+ "div",
1134
+ {
1135
+ className: cn(
1136
+ "text-2xl font-bold md:text-3xl lg:text-4xl",
1137
+ titleClassName
1138
+ ),
1139
+ children: title
1140
+ }
1141
+ ))
1082
1142
  ] }),
1083
- /* @__PURE__ */ jsx("div", { className: cn("grid gap-12 md:grid-cols-2", gridClassName), children: featuresContent }),
1084
- (action || actionSlot) && /* @__PURE__ */ jsx("div", { className: cn("mt-16 flex justify-center", actionContainerClassName), children: actionContent })
1085
- ]
1143
+ /* @__PURE__ */ jsx(
1144
+ "div",
1145
+ {
1146
+ className: cn(
1147
+ "grid gap-6 md:gap-12 grid-cols-1 md:grid-cols-2",
1148
+ gridClassName
1149
+ ),
1150
+ children: featuresContent
1151
+ }
1152
+ ),
1153
+ (action || actionSlot) && /* @__PURE__ */ jsx(
1154
+ "div",
1155
+ {
1156
+ className: cn("mt-8 flex justify-center", actionContainerClassName),
1157
+ children: actionContent
1158
+ }
1159
+ )
1160
+ ] })
1086
1161
  }
1087
1162
  );
1088
1163
  }
@@ -487,7 +487,6 @@ function FeatureCategoryImageCards({
487
487
  features,
488
488
  featuresSlot,
489
489
  className,
490
- containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
491
490
  headerClassName,
492
491
  badgeClassName,
493
492
  titleClassName,
@@ -496,6 +495,7 @@ function FeatureCategoryImageCards({
496
495
  cardClassName,
497
496
  optixFlowConfig,
498
497
  background,
498
+ containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
499
499
  spacing = "py-12 md:py-32",
500
500
  pattern,
501
501
  patternOpacity,
@@ -141,6 +141,6 @@ interface FeatureCategoryImageCardsProps {
141
141
  * />
142
142
  * ```
143
143
  */
144
- declare function FeatureCategoryImageCards({ badge, title, description, features, featuresSlot, className, containerClassName, headerClassName, badgeClassName, titleClassName, descriptionClassName, gridClassName, cardClassName, optixFlowConfig, background, spacing, pattern, patternOpacity, patternClassName, }: FeatureCategoryImageCardsProps): React.JSX.Element;
144
+ declare function FeatureCategoryImageCards({ badge, title, description, features, featuresSlot, className, headerClassName, badgeClassName, titleClassName, descriptionClassName, gridClassName, cardClassName, optixFlowConfig, background, containerClassName, spacing, pattern, patternOpacity, patternClassName, }: FeatureCategoryImageCardsProps): React.JSX.Element;
145
145
 
146
146
  export { FeatureCategoryImageCards, type FeatureCategoryImageCardsProps };
@@ -141,6 +141,6 @@ interface FeatureCategoryImageCardsProps {
141
141
  * />
142
142
  * ```
143
143
  */
144
- declare function FeatureCategoryImageCards({ badge, title, description, features, featuresSlot, className, containerClassName, headerClassName, badgeClassName, titleClassName, descriptionClassName, gridClassName, cardClassName, optixFlowConfig, background, spacing, pattern, patternOpacity, patternClassName, }: FeatureCategoryImageCardsProps): React.JSX.Element;
144
+ declare function FeatureCategoryImageCards({ badge, title, description, features, featuresSlot, className, headerClassName, badgeClassName, titleClassName, descriptionClassName, gridClassName, cardClassName, optixFlowConfig, background, containerClassName, spacing, pattern, patternOpacity, patternClassName, }: FeatureCategoryImageCardsProps): React.JSX.Element;
145
145
 
146
146
  export { FeatureCategoryImageCards, type FeatureCategoryImageCardsProps };
@@ -481,7 +481,6 @@ function FeatureCategoryImageCards({
481
481
  features,
482
482
  featuresSlot,
483
483
  className,
484
- containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
485
484
  headerClassName,
486
485
  badgeClassName,
487
486
  titleClassName,
@@ -490,6 +489,7 @@ function FeatureCategoryImageCards({
490
489
  cardClassName,
491
490
  optixFlowConfig,
492
491
  background,
492
+ containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
493
493
  spacing = "py-12 md:py-32",
494
494
  pattern,
495
495
  patternOpacity,
@@ -1036,7 +1036,7 @@ function FeatureChecklistImage({
1036
1036
  patternOpacity,
1037
1037
  patternClassName,
1038
1038
  className,
1039
- containerClassName: cn("max-w-6xl", containerClassName),
1039
+ containerClassName,
1040
1040
  children: /* @__PURE__ */ jsxRuntime.jsxs(
1041
1041
  "div",
1042
1042
  {
@@ -1050,7 +1050,7 @@ function FeatureChecklistImage({
1050
1050
  "div",
1051
1051
  {
1052
1052
  className: cn(
1053
- "px-4 md:px-6 lg:px-10 py-4 md:py-4 lg:py-0",
1053
+ "px-0 md:px-6 lg:px-10 py-4 md:py-0 flex flex-col gap-6 md:gap-10",
1054
1054
  contentClassName
1055
1055
  ),
1056
1056
  children: [
@@ -1073,12 +1073,12 @@ function FeatureChecklistImage({
1073
1073
  children: title
1074
1074
  }
1075
1075
  )),
1076
- description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("mt-1 md:mt-6", descriptionClassName), children: description }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("mt-1 md:mt-6", descriptionClassName), children: description })),
1076
+ description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("relative", descriptionClassName), children: description }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("relative", descriptionClassName), children: description })),
1077
1077
  actionsContent && /* @__PURE__ */ jsxRuntime.jsx(
1078
1078
  "div",
1079
1079
  {
1080
1080
  className: cn(
1081
- "flex flex-wrap items-center gap-4 md:gap-2",
1081
+ "flex flex-wrap items-center gap-4",
1082
1082
  actionsClassName
1083
1083
  ),
1084
1084
  children: actionsContent
@@ -1088,7 +1088,7 @@ function FeatureChecklistImage({
1088
1088
  "ul",
1089
1089
  {
1090
1090
  className: cn(
1091
- "mt-10 flex-wrap items-center gap-6 space-y-6 md:flex md:space-y-0",
1091
+ "flex-wrap items-center space-y-2 md:flex",
1092
1092
  checklistClassName
1093
1093
  ),
1094
1094
  children: checklistContent
@@ -1015,7 +1015,7 @@ function FeatureChecklistImage({
1015
1015
  patternOpacity,
1016
1016
  patternClassName,
1017
1017
  className,
1018
- containerClassName: cn("max-w-6xl", containerClassName),
1018
+ containerClassName,
1019
1019
  children: /* @__PURE__ */ jsxs(
1020
1020
  "div",
1021
1021
  {
@@ -1029,7 +1029,7 @@ function FeatureChecklistImage({
1029
1029
  "div",
1030
1030
  {
1031
1031
  className: cn(
1032
- "px-4 md:px-6 lg:px-10 py-4 md:py-4 lg:py-0",
1032
+ "px-0 md:px-6 lg:px-10 py-4 md:py-0 flex flex-col gap-6 md:gap-10",
1033
1033
  contentClassName
1034
1034
  ),
1035
1035
  children: [
@@ -1052,12 +1052,12 @@ function FeatureChecklistImage({
1052
1052
  children: title
1053
1053
  }
1054
1054
  )),
1055
- description && (typeof description === "string" ? /* @__PURE__ */ jsx("p", { className: cn("mt-1 md:mt-6", descriptionClassName), children: description }) : /* @__PURE__ */ jsx("div", { className: cn("mt-1 md:mt-6", descriptionClassName), children: description })),
1055
+ description && (typeof description === "string" ? /* @__PURE__ */ jsx("p", { className: cn("relative", descriptionClassName), children: description }) : /* @__PURE__ */ jsx("div", { className: cn("relative", descriptionClassName), children: description })),
1056
1056
  actionsContent && /* @__PURE__ */ jsx(
1057
1057
  "div",
1058
1058
  {
1059
1059
  className: cn(
1060
- "flex flex-wrap items-center gap-4 md:gap-2",
1060
+ "flex flex-wrap items-center gap-4",
1061
1061
  actionsClassName
1062
1062
  ),
1063
1063
  children: actionsContent
@@ -1067,7 +1067,7 @@ function FeatureChecklistImage({
1067
1067
  "ul",
1068
1068
  {
1069
1069
  className: cn(
1070
- "mt-10 flex-wrap items-center gap-6 space-y-6 md:flex md:space-y-0",
1070
+ "flex-wrap items-center space-y-2 md:flex",
1071
1071
  checklistClassName
1072
1072
  ),
1073
1073
  children: checklistContent
@@ -543,7 +543,7 @@ function FeatureIconGridAccent({
543
543
  features,
544
544
  featuresSlot,
545
545
  className,
546
- containerClassName,
546
+ containerClassName = "px-6 sm:px-6 md:px-6 lg:px-8",
547
547
  headerClassName,
548
548
  labelClassName,
549
549
  titleClassName,
@@ -551,7 +551,7 @@ function FeatureIconGridAccent({
551
551
  gridClassName,
552
552
  cardClassName,
553
553
  background,
554
- spacing,
554
+ spacing = "py-6 md:py-32",
555
555
  pattern,
556
556
  patternOpacity,
557
557
  patternClassName
@@ -590,7 +590,7 @@ function FeatureIconGridAccent({
590
590
  );
591
591
  });
592
592
  }, [featuresSlot, features, cardClassName, background]);
593
- return /* @__PURE__ */ jsxRuntime.jsxs(
593
+ return /* @__PURE__ */ jsxRuntime.jsx(
594
594
  Section,
595
595
  {
596
596
  background,
@@ -600,7 +600,7 @@ function FeatureIconGridAccent({
600
600
  patternClassName,
601
601
  className,
602
602
  containerClassName,
603
- children: [
603
+ children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col space-y-6 md:space-y-16", children: [
604
604
  (label || title || description) && /* @__PURE__ */ jsxRuntime.jsx(
605
605
  "div",
606
606
  {
@@ -634,13 +634,13 @@ function FeatureIconGridAccent({
634
634
  "div",
635
635
  {
636
636
  className: cn(
637
- "mx-auto mt-20 grid max-w-5xl gap-6 md:grid-cols-2",
637
+ "mx-auto grid max-w-5xl gap-6 md:grid-cols-2",
638
638
  gridClassName
639
639
  ),
640
640
  children: featuresContent
641
641
  }
642
642
  )
643
- ]
643
+ ] })
644
644
  }
645
645
  );
646
646
  }
@@ -522,7 +522,7 @@ function FeatureIconGridAccent({
522
522
  features,
523
523
  featuresSlot,
524
524
  className,
525
- containerClassName,
525
+ containerClassName = "px-6 sm:px-6 md:px-6 lg:px-8",
526
526
  headerClassName,
527
527
  labelClassName,
528
528
  titleClassName,
@@ -530,7 +530,7 @@ function FeatureIconGridAccent({
530
530
  gridClassName,
531
531
  cardClassName,
532
532
  background,
533
- spacing,
533
+ spacing = "py-6 md:py-32",
534
534
  pattern,
535
535
  patternOpacity,
536
536
  patternClassName
@@ -569,7 +569,7 @@ function FeatureIconGridAccent({
569
569
  );
570
570
  });
571
571
  }, [featuresSlot, features, cardClassName, background]);
572
- return /* @__PURE__ */ jsxs(
572
+ return /* @__PURE__ */ jsx(
573
573
  Section,
574
574
  {
575
575
  background,
@@ -579,7 +579,7 @@ function FeatureIconGridAccent({
579
579
  patternClassName,
580
580
  className,
581
581
  containerClassName,
582
- children: [
582
+ children: /* @__PURE__ */ jsxs("div", { className: "flex flex-col space-y-6 md:space-y-16", children: [
583
583
  (label || title || description) && /* @__PURE__ */ jsx(
584
584
  "div",
585
585
  {
@@ -613,13 +613,13 @@ function FeatureIconGridAccent({
613
613
  "div",
614
614
  {
615
615
  className: cn(
616
- "mx-auto mt-20 grid max-w-5xl gap-6 md:grid-cols-2",
616
+ "mx-auto grid max-w-5xl gap-6 md:grid-cols-2",
617
617
  gridClassName
618
618
  ),
619
619
  children: featuresContent
620
620
  }
621
621
  )
622
- ]
622
+ ] })
623
623
  }
624
624
  );
625
625
  }