@opensite/ui 1.3.0 → 1.3.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/feature-accordion-image.cjs +1 -1
- package/dist/feature-accordion-image.js +1 -1
- package/dist/feature-bento-image-grid.cjs +2 -2
- package/dist/feature-bento-image-grid.js +2 -2
- package/dist/feature-bento-utilities.cjs +2 -2
- package/dist/feature-bento-utilities.js +2 -2
- package/dist/feature-capabilities-grid.cjs +5 -6
- package/dist/feature-capabilities-grid.js +5 -6
- package/dist/feature-checklist-three-column.cjs +2 -2
- package/dist/feature-checklist-three-column.js +2 -2
- package/dist/feature-icon-grid-bordered.cjs +1 -1
- package/dist/feature-icon-grid-bordered.js +1 -1
- package/dist/feature-icon-tabs-content.cjs +7 -7
- package/dist/feature-icon-tabs-content.js +7 -7
- package/dist/feature-image-cards-three-column.cjs +4 -4
- package/dist/feature-image-cards-three-column.js +4 -4
- package/dist/feature-image-overlay-badge.cjs +1 -1
- package/dist/feature-image-overlay-badge.js +1 -1
- package/dist/feature-integration-cards.cjs +2 -2
- package/dist/feature-integration-cards.js +2 -2
- package/dist/feature-numbered-cards.cjs +1 -1
- package/dist/feature-numbered-cards.js +1 -1
- package/dist/feature-pattern-grid-links.cjs +142 -29
- package/dist/feature-pattern-grid-links.d.cts +21 -1
- package/dist/feature-pattern-grid-links.d.ts +21 -1
- package/dist/feature-pattern-grid-links.js +142 -29
- package/dist/feature-showcase.cjs +3 -1
- package/dist/feature-showcase.d.cts +5 -1
- package/dist/feature-showcase.d.ts +5 -1
- package/dist/feature-showcase.js +3 -1
- package/dist/feature-split-image-reverse.cjs +2 -2
- package/dist/feature-split-image-reverse.js +2 -2
- package/dist/feature-three-column-values.cjs +2 -2
- package/dist/feature-three-column-values.js +2 -2
- package/dist/feature-utility-cards-grid.cjs +23 -7
- package/dist/feature-utility-cards-grid.js +23 -7
- package/dist/registry.cjs +200 -70
- package/dist/registry.js +200 -70
- package/package.json +1 -1
|
@@ -980,7 +980,7 @@ function FeatureUtilityCardsGrid({
|
|
|
980
980
|
utilities,
|
|
981
981
|
utilitiesSlot,
|
|
982
982
|
className,
|
|
983
|
-
containerClassName,
|
|
983
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
984
984
|
headerClassName,
|
|
985
985
|
labelClassName,
|
|
986
986
|
titleClassName,
|
|
@@ -989,7 +989,7 @@ function FeatureUtilityCardsGrid({
|
|
|
989
989
|
cardClassName,
|
|
990
990
|
optixFlowConfig,
|
|
991
991
|
background,
|
|
992
|
-
spacing = "py-
|
|
992
|
+
spacing = "py-12 md:py-32",
|
|
993
993
|
pattern,
|
|
994
994
|
patternOpacity,
|
|
995
995
|
patternClassName
|
|
@@ -997,7 +997,14 @@ function FeatureUtilityCardsGrid({
|
|
|
997
997
|
const renderLabelIcon = React.useMemo(() => {
|
|
998
998
|
if (labelIcon) return labelIcon;
|
|
999
999
|
if (labelIconName)
|
|
1000
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
1000
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
1001
|
+
DynamicIcon,
|
|
1002
|
+
{
|
|
1003
|
+
name: labelIconName,
|
|
1004
|
+
size: 20,
|
|
1005
|
+
className: getAccentColor(background)
|
|
1006
|
+
}
|
|
1007
|
+
);
|
|
1001
1008
|
return null;
|
|
1002
1009
|
}, [labelIcon, labelIconName, background]);
|
|
1003
1010
|
const learnMoreContent = React.useMemo(() => {
|
|
@@ -1094,10 +1101,19 @@ function FeatureUtilityCardsGrid({
|
|
|
1094
1101
|
headerClassName
|
|
1095
1102
|
),
|
|
1096
1103
|
children: [
|
|
1097
|
-
(label || labelIcon || labelIconName) && /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1104
|
+
(label || labelIcon || labelIconName) && /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1105
|
+
"div",
|
|
1106
|
+
{
|
|
1107
|
+
className: cn(
|
|
1108
|
+
"text-lg flex items-center gap-4",
|
|
1109
|
+
labelClassName
|
|
1110
|
+
),
|
|
1111
|
+
children: [
|
|
1112
|
+
renderLabelIcon,
|
|
1113
|
+
label && (typeof label === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { children: label }) : /* @__PURE__ */ jsxRuntime.jsx("div", { children: label }))
|
|
1114
|
+
]
|
|
1115
|
+
}
|
|
1116
|
+
),
|
|
1101
1117
|
learnMoreContent
|
|
1102
1118
|
]
|
|
1103
1119
|
}
|
|
@@ -958,7 +958,7 @@ function FeatureUtilityCardsGrid({
|
|
|
958
958
|
utilities,
|
|
959
959
|
utilitiesSlot,
|
|
960
960
|
className,
|
|
961
|
-
containerClassName,
|
|
961
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
962
962
|
headerClassName,
|
|
963
963
|
labelClassName,
|
|
964
964
|
titleClassName,
|
|
@@ -967,7 +967,7 @@ function FeatureUtilityCardsGrid({
|
|
|
967
967
|
cardClassName,
|
|
968
968
|
optixFlowConfig,
|
|
969
969
|
background,
|
|
970
|
-
spacing = "py-
|
|
970
|
+
spacing = "py-12 md:py-32",
|
|
971
971
|
pattern,
|
|
972
972
|
patternOpacity,
|
|
973
973
|
patternClassName
|
|
@@ -975,7 +975,14 @@ function FeatureUtilityCardsGrid({
|
|
|
975
975
|
const renderLabelIcon = useMemo(() => {
|
|
976
976
|
if (labelIcon) return labelIcon;
|
|
977
977
|
if (labelIconName)
|
|
978
|
-
return /* @__PURE__ */ jsx(
|
|
978
|
+
return /* @__PURE__ */ jsx(
|
|
979
|
+
DynamicIcon,
|
|
980
|
+
{
|
|
981
|
+
name: labelIconName,
|
|
982
|
+
size: 20,
|
|
983
|
+
className: getAccentColor(background)
|
|
984
|
+
}
|
|
985
|
+
);
|
|
979
986
|
return null;
|
|
980
987
|
}, [labelIcon, labelIconName, background]);
|
|
981
988
|
const learnMoreContent = useMemo(() => {
|
|
@@ -1072,10 +1079,19 @@ function FeatureUtilityCardsGrid({
|
|
|
1072
1079
|
headerClassName
|
|
1073
1080
|
),
|
|
1074
1081
|
children: [
|
|
1075
|
-
(label || labelIcon || labelIconName) && /* @__PURE__ */ jsxs(
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1082
|
+
(label || labelIcon || labelIconName) && /* @__PURE__ */ jsxs(
|
|
1083
|
+
"div",
|
|
1084
|
+
{
|
|
1085
|
+
className: cn(
|
|
1086
|
+
"text-lg flex items-center gap-4",
|
|
1087
|
+
labelClassName
|
|
1088
|
+
),
|
|
1089
|
+
children: [
|
|
1090
|
+
renderLabelIcon,
|
|
1091
|
+
label && (typeof label === "string" ? /* @__PURE__ */ jsx("p", { children: label }) : /* @__PURE__ */ jsx("div", { children: label }))
|
|
1092
|
+
]
|
|
1093
|
+
}
|
|
1094
|
+
),
|
|
1079
1095
|
learnMoreContent
|
|
1080
1096
|
]
|
|
1081
1097
|
}
|
package/dist/registry.cjs
CHANGED
|
@@ -20539,10 +20539,11 @@ function FeatureShowcase({
|
|
|
20539
20539
|
slideClassName,
|
|
20540
20540
|
contentClassName,
|
|
20541
20541
|
mediaClassName,
|
|
20542
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
20542
20543
|
equalizeOnMobile,
|
|
20543
20544
|
stretchMediaOnMobile,
|
|
20544
20545
|
background,
|
|
20545
|
-
spacing = "py-
|
|
20546
|
+
spacing = "py-12 md:py-32",
|
|
20546
20547
|
pattern,
|
|
20547
20548
|
patternOpacity,
|
|
20548
20549
|
patternClassName
|
|
@@ -20665,6 +20666,7 @@ function FeatureShowcase({
|
|
|
20665
20666
|
patternOpacity,
|
|
20666
20667
|
patternClassName,
|
|
20667
20668
|
className,
|
|
20669
|
+
containerClassName,
|
|
20668
20670
|
children: [
|
|
20669
20671
|
children,
|
|
20670
20672
|
carouselContent
|
|
@@ -20830,7 +20832,7 @@ function FeatureSplitImageReverse({
|
|
|
20830
20832
|
actions,
|
|
20831
20833
|
actionsSlot,
|
|
20832
20834
|
className,
|
|
20833
|
-
containerClassName,
|
|
20835
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
20834
20836
|
gridClassName,
|
|
20835
20837
|
imageClassName,
|
|
20836
20838
|
contentClassName,
|
|
@@ -20839,7 +20841,7 @@ function FeatureSplitImageReverse({
|
|
|
20839
20841
|
actionsClassName,
|
|
20840
20842
|
optixFlowConfig,
|
|
20841
20843
|
background,
|
|
20842
|
-
spacing = "py-
|
|
20844
|
+
spacing = "py-12 md:py-32",
|
|
20843
20845
|
pattern,
|
|
20844
20846
|
patternOpacity,
|
|
20845
20847
|
patternClassName
|
|
@@ -23985,7 +23987,7 @@ function FeatureIconGridBordered({
|
|
|
23985
23987
|
"div",
|
|
23986
23988
|
{
|
|
23987
23989
|
className: cn(
|
|
23988
|
-
"relative flex h-full flex-col justify-between gap-6 rounded-none border-dashed px-
|
|
23990
|
+
"relative flex h-full flex-col justify-between gap-6 rounded-none border-dashed px-0 md:border-l md:px-5",
|
|
23989
23991
|
cardClassName,
|
|
23990
23992
|
feature.className
|
|
23991
23993
|
),
|
|
@@ -24857,7 +24859,7 @@ function FeatureNumberedCards({
|
|
|
24857
24859
|
"span",
|
|
24858
24860
|
{
|
|
24859
24861
|
className: cn(
|
|
24860
|
-
"absolute top-5 left-5 flex size-
|
|
24862
|
+
"absolute top-2 md:top-5 left-2 md:left-5 flex size-10 md:size-12 items-center justify-center rounded-md shadow-lg bg-primary text-sm md:text-md text-primary-foreground lg:top-10 lg:left-10 font-semibold",
|
|
24861
24863
|
badgeClassName
|
|
24862
24864
|
),
|
|
24863
24865
|
children: String(index + 1).padStart(2, "0")
|
|
@@ -25045,13 +25047,13 @@ function FeatureThreeColumnValues({
|
|
|
25045
25047
|
values,
|
|
25046
25048
|
valuesSlot,
|
|
25047
25049
|
className,
|
|
25048
|
-
containerClassName,
|
|
25050
|
+
containerClassName = "px-6 sm:px-6 md:px-6 lg:px-8",
|
|
25049
25051
|
labelClassName,
|
|
25050
25052
|
titleClassName,
|
|
25051
25053
|
gridClassName,
|
|
25052
25054
|
cardClassName,
|
|
25053
25055
|
background,
|
|
25054
|
-
spacing = "py-
|
|
25056
|
+
spacing = "py-12 md:py-32",
|
|
25055
25057
|
pattern,
|
|
25056
25058
|
patternOpacity,
|
|
25057
25059
|
patternClassName
|
|
@@ -25354,59 +25356,124 @@ function FeatureBadgeGridSix({
|
|
|
25354
25356
|
);
|
|
25355
25357
|
}
|
|
25356
25358
|
function FeaturePatternGridLinks({
|
|
25359
|
+
title,
|
|
25360
|
+
description,
|
|
25361
|
+
titleClassName,
|
|
25362
|
+
descriptionClassName,
|
|
25363
|
+
headerClassName,
|
|
25357
25364
|
features,
|
|
25358
25365
|
featuresSlot,
|
|
25359
25366
|
className,
|
|
25360
|
-
|
|
25367
|
+
spacing = "py-12 md:py-32",
|
|
25368
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
25361
25369
|
gridClassName,
|
|
25362
25370
|
cardClassName,
|
|
25363
25371
|
background,
|
|
25364
|
-
spacing,
|
|
25365
25372
|
pattern,
|
|
25366
25373
|
patternOpacity,
|
|
25367
25374
|
patternClassName
|
|
25368
25375
|
}) {
|
|
25369
|
-
const renderFeatureIcon = React52.useCallback(
|
|
25370
|
-
|
|
25371
|
-
|
|
25372
|
-
|
|
25373
|
-
|
|
25374
|
-
|
|
25375
|
-
|
|
25376
|
-
|
|
25377
|
-
|
|
25378
|
-
|
|
25379
|
-
|
|
25380
|
-
|
|
25381
|
-
|
|
25382
|
-
|
|
25383
|
-
|
|
25384
|
-
|
|
25385
|
-
|
|
25386
|
-
|
|
25387
|
-
|
|
25388
|
-
|
|
25389
|
-
|
|
25390
|
-
|
|
25376
|
+
const renderFeatureIcon = React52.useCallback(
|
|
25377
|
+
(feature) => {
|
|
25378
|
+
if (feature.icon) return feature.icon;
|
|
25379
|
+
if (feature.iconName)
|
|
25380
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
25381
|
+
DynamicIcon,
|
|
25382
|
+
{
|
|
25383
|
+
name: feature.iconName,
|
|
25384
|
+
size: 24,
|
|
25385
|
+
className: feature.iconClassName
|
|
25386
|
+
}
|
|
25387
|
+
);
|
|
25388
|
+
return null;
|
|
25389
|
+
},
|
|
25390
|
+
[]
|
|
25391
|
+
);
|
|
25392
|
+
const renderFeatureLink = React52.useCallback(
|
|
25393
|
+
(feature) => {
|
|
25394
|
+
if (feature.linkSlot) return feature.linkSlot;
|
|
25395
|
+
if (!feature.link && !feature.linkLabel) return null;
|
|
25396
|
+
const label = feature.linkLabel || (feature.link ? "Learn more" : null);
|
|
25397
|
+
if (!label) return null;
|
|
25398
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
25399
|
+
Pressable,
|
|
25400
|
+
{
|
|
25401
|
+
href: feature.link,
|
|
25402
|
+
className: cn(
|
|
25403
|
+
"flex items-center gap-2 text-sm font-medium",
|
|
25404
|
+
feature.linkClassName
|
|
25405
|
+
),
|
|
25406
|
+
children: [
|
|
25407
|
+
label,
|
|
25408
|
+
/* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: "lucide/chevron-right", size: 16 })
|
|
25409
|
+
]
|
|
25410
|
+
}
|
|
25411
|
+
);
|
|
25412
|
+
},
|
|
25413
|
+
[]
|
|
25414
|
+
);
|
|
25391
25415
|
const featuresContent = React52.useMemo(() => {
|
|
25392
25416
|
if (featuresSlot) return featuresSlot;
|
|
25393
25417
|
if (!features || features.length === 0) return null;
|
|
25394
25418
|
return features.map((feature, index) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
25395
25419
|
"div",
|
|
25396
25420
|
{
|
|
25397
|
-
className: cn(
|
|
25421
|
+
className: cn(
|
|
25422
|
+
"flex flex-col gap-10 rounded-lg border p-8",
|
|
25423
|
+
cardClassName,
|
|
25424
|
+
feature.className
|
|
25425
|
+
),
|
|
25398
25426
|
children: [
|
|
25399
25427
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
25400
25428
|
renderFeatureIcon(feature),
|
|
25401
|
-
feature.title && (typeof feature.title === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
25402
|
-
|
|
25429
|
+
feature.title && (typeof feature.title === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
25430
|
+
"h3",
|
|
25431
|
+
{
|
|
25432
|
+
className: cn("mt-6 mb-2 font-medium", feature.titleClassName),
|
|
25433
|
+
children: feature.title
|
|
25434
|
+
}
|
|
25435
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
25436
|
+
"div",
|
|
25437
|
+
{
|
|
25438
|
+
className: cn("mt-6 mb-2 font-medium", feature.titleClassName),
|
|
25439
|
+
children: feature.title
|
|
25440
|
+
}
|
|
25441
|
+
)),
|
|
25442
|
+
feature.description && (typeof feature.description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
25443
|
+
"p",
|
|
25444
|
+
{
|
|
25445
|
+
className: cn(
|
|
25446
|
+
"text-sm",
|
|
25447
|
+
getTextColor(background, "muted"),
|
|
25448
|
+
feature.descriptionClassName
|
|
25449
|
+
),
|
|
25450
|
+
children: feature.description
|
|
25451
|
+
}
|
|
25452
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
25453
|
+
"div",
|
|
25454
|
+
{
|
|
25455
|
+
className: cn(
|
|
25456
|
+
"text-sm",
|
|
25457
|
+
getTextColor(background, "muted"),
|
|
25458
|
+
feature.descriptionClassName
|
|
25459
|
+
),
|
|
25460
|
+
children: feature.description
|
|
25461
|
+
}
|
|
25462
|
+
))
|
|
25403
25463
|
] }),
|
|
25404
25464
|
renderFeatureLink(feature)
|
|
25405
25465
|
]
|
|
25406
25466
|
},
|
|
25407
25467
|
index
|
|
25408
25468
|
));
|
|
25409
|
-
}, [
|
|
25469
|
+
}, [
|
|
25470
|
+
featuresSlot,
|
|
25471
|
+
features,
|
|
25472
|
+
cardClassName,
|
|
25473
|
+
renderFeatureIcon,
|
|
25474
|
+
renderFeatureLink,
|
|
25475
|
+
background
|
|
25476
|
+
]);
|
|
25410
25477
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
25411
25478
|
Section,
|
|
25412
25479
|
{
|
|
@@ -25417,7 +25484,55 @@ function FeaturePatternGridLinks({
|
|
|
25417
25484
|
patternClassName,
|
|
25418
25485
|
className,
|
|
25419
25486
|
containerClassName,
|
|
25420
|
-
children: /* @__PURE__ */ jsxRuntime.
|
|
25487
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col space-y-6 md:space-y-16", children: [
|
|
25488
|
+
title || description ? /* @__PURE__ */ jsxRuntime.jsxs(
|
|
25489
|
+
"div",
|
|
25490
|
+
{
|
|
25491
|
+
className: cn(
|
|
25492
|
+
"flex flex-col gap-4 md:gap-6 text-left",
|
|
25493
|
+
headerClassName
|
|
25494
|
+
),
|
|
25495
|
+
children: [
|
|
25496
|
+
title && (typeof title === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
25497
|
+
"h2",
|
|
25498
|
+
{
|
|
25499
|
+
className: cn(
|
|
25500
|
+
"text-xl font-semibold text-balance md:text-2xl lg:text-3xl max-w-lg md:max-w-md",
|
|
25501
|
+
titleClassName
|
|
25502
|
+
),
|
|
25503
|
+
children: title
|
|
25504
|
+
}
|
|
25505
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
25506
|
+
"div",
|
|
25507
|
+
{
|
|
25508
|
+
className: cn(
|
|
25509
|
+
"text-xl font-semibold text-balance md:text-2xl lg:text-3xl max-w-lg md:max-w-md",
|
|
25510
|
+
titleClassName
|
|
25511
|
+
),
|
|
25512
|
+
children: title
|
|
25513
|
+
}
|
|
25514
|
+
)),
|
|
25515
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("max-w-lg md:max-w-md", descriptionClassName), children: description }) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
25516
|
+
"div",
|
|
25517
|
+
{
|
|
25518
|
+
className: cn("max-w-lg md:max-w-md", descriptionClassName),
|
|
25519
|
+
children: description
|
|
25520
|
+
}
|
|
25521
|
+
))
|
|
25522
|
+
]
|
|
25523
|
+
}
|
|
25524
|
+
) : null,
|
|
25525
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
25526
|
+
"div",
|
|
25527
|
+
{
|
|
25528
|
+
className: cn(
|
|
25529
|
+
"grid gap-6 md:grid-cols-2 lg:grid-cols-3",
|
|
25530
|
+
gridClassName
|
|
25531
|
+
),
|
|
25532
|
+
children: featuresContent
|
|
25533
|
+
}
|
|
25534
|
+
)
|
|
25535
|
+
] })
|
|
25421
25536
|
}
|
|
25422
25537
|
);
|
|
25423
25538
|
}
|
|
@@ -25685,7 +25800,7 @@ function FeatureUtilityCardsGrid({
|
|
|
25685
25800
|
utilities,
|
|
25686
25801
|
utilitiesSlot,
|
|
25687
25802
|
className,
|
|
25688
|
-
containerClassName,
|
|
25803
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
25689
25804
|
headerClassName,
|
|
25690
25805
|
labelClassName,
|
|
25691
25806
|
titleClassName,
|
|
@@ -25694,7 +25809,7 @@ function FeatureUtilityCardsGrid({
|
|
|
25694
25809
|
cardClassName,
|
|
25695
25810
|
optixFlowConfig,
|
|
25696
25811
|
background,
|
|
25697
|
-
spacing = "py-
|
|
25812
|
+
spacing = "py-12 md:py-32",
|
|
25698
25813
|
pattern,
|
|
25699
25814
|
patternOpacity,
|
|
25700
25815
|
patternClassName
|
|
@@ -25702,7 +25817,14 @@ function FeatureUtilityCardsGrid({
|
|
|
25702
25817
|
const renderLabelIcon = React52.useMemo(() => {
|
|
25703
25818
|
if (labelIcon) return labelIcon;
|
|
25704
25819
|
if (labelIconName)
|
|
25705
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
25820
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
25821
|
+
DynamicIcon,
|
|
25822
|
+
{
|
|
25823
|
+
name: labelIconName,
|
|
25824
|
+
size: 20,
|
|
25825
|
+
className: getAccentColor(background)
|
|
25826
|
+
}
|
|
25827
|
+
);
|
|
25706
25828
|
return null;
|
|
25707
25829
|
}, [labelIcon, labelIconName, background]);
|
|
25708
25830
|
const learnMoreContent = React52.useMemo(() => {
|
|
@@ -25799,10 +25921,19 @@ function FeatureUtilityCardsGrid({
|
|
|
25799
25921
|
headerClassName
|
|
25800
25922
|
),
|
|
25801
25923
|
children: [
|
|
25802
|
-
(label || labelIcon || labelIconName) && /* @__PURE__ */ jsxRuntime.jsxs(
|
|
25803
|
-
|
|
25804
|
-
|
|
25805
|
-
|
|
25924
|
+
(label || labelIcon || labelIconName) && /* @__PURE__ */ jsxRuntime.jsxs(
|
|
25925
|
+
"div",
|
|
25926
|
+
{
|
|
25927
|
+
className: cn(
|
|
25928
|
+
"text-lg flex items-center gap-4",
|
|
25929
|
+
labelClassName
|
|
25930
|
+
),
|
|
25931
|
+
children: [
|
|
25932
|
+
renderLabelIcon,
|
|
25933
|
+
label && (typeof label === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { children: label }) : /* @__PURE__ */ jsxRuntime.jsx("div", { children: label }))
|
|
25934
|
+
]
|
|
25935
|
+
}
|
|
25936
|
+
),
|
|
25806
25937
|
learnMoreContent
|
|
25807
25938
|
]
|
|
25808
25939
|
}
|
|
@@ -25850,7 +25981,7 @@ function FeatureBentoUtilities({
|
|
|
25850
25981
|
rightColumnCards,
|
|
25851
25982
|
rightColumnSlot,
|
|
25852
25983
|
className,
|
|
25853
|
-
containerClassName,
|
|
25984
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
25854
25985
|
headerClassName,
|
|
25855
25986
|
labelClassName,
|
|
25856
25987
|
titleClassName,
|
|
@@ -25859,7 +25990,7 @@ function FeatureBentoUtilities({
|
|
|
25859
25990
|
columnClassName,
|
|
25860
25991
|
optixFlowConfig,
|
|
25861
25992
|
background,
|
|
25862
|
-
spacing,
|
|
25993
|
+
spacing = "py-12 md:py-32",
|
|
25863
25994
|
pattern,
|
|
25864
25995
|
patternOpacity,
|
|
25865
25996
|
patternClassName
|
|
@@ -25957,7 +26088,7 @@ function FeatureChecklistThreeColumn({
|
|
|
25957
26088
|
cards,
|
|
25958
26089
|
cardsSlot,
|
|
25959
26090
|
className,
|
|
25960
|
-
containerClassName,
|
|
26091
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
25961
26092
|
headerGridClassName,
|
|
25962
26093
|
titleClassName,
|
|
25963
26094
|
checklistClassName,
|
|
@@ -25965,7 +26096,7 @@ function FeatureChecklistThreeColumn({
|
|
|
25965
26096
|
cardClassName,
|
|
25966
26097
|
optixFlowConfig,
|
|
25967
26098
|
background,
|
|
25968
|
-
spacing,
|
|
26099
|
+
spacing = "py-12 md:py-32",
|
|
25969
26100
|
pattern,
|
|
25970
26101
|
patternOpacity,
|
|
25971
26102
|
patternClassName
|
|
@@ -26084,7 +26215,7 @@ function FeatureIntegrationCards({
|
|
|
26084
26215
|
integrations,
|
|
26085
26216
|
integrationsSlot,
|
|
26086
26217
|
className,
|
|
26087
|
-
containerClassName,
|
|
26218
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
26088
26219
|
headerClassName,
|
|
26089
26220
|
titleClassName,
|
|
26090
26221
|
descriptionClassName,
|
|
@@ -26092,7 +26223,7 @@ function FeatureIntegrationCards({
|
|
|
26092
26223
|
cardClassName,
|
|
26093
26224
|
optixFlowConfig,
|
|
26094
26225
|
background,
|
|
26095
|
-
spacing,
|
|
26226
|
+
spacing = "py-12 md:py-32",
|
|
26096
26227
|
pattern,
|
|
26097
26228
|
patternOpacity,
|
|
26098
26229
|
patternClassName
|
|
@@ -26195,7 +26326,7 @@ function FeatureIconTabsContent({
|
|
|
26195
26326
|
tabContentClassName,
|
|
26196
26327
|
optixFlowConfig,
|
|
26197
26328
|
background,
|
|
26198
|
-
spacing = "
|
|
26329
|
+
spacing = "pt-14 pb-12 md:pt-32 md:pb-32",
|
|
26199
26330
|
pattern,
|
|
26200
26331
|
patternOpacity,
|
|
26201
26332
|
patternClassName
|
|
@@ -26275,7 +26406,7 @@ function FeatureIconTabsContent({
|
|
|
26275
26406
|
if (!tabs || tabs.length === 0) return null;
|
|
26276
26407
|
const activeDefaultTab = defaultTab || tabs[0]?.value;
|
|
26277
26408
|
return /* @__PURE__ */ jsxRuntime.jsxs(Tabs, { defaultValue: activeDefaultTab, className: "mt-8", children: [
|
|
26278
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "container overflow-x-auto
|
|
26409
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "container overflow-x-auto pl-0 pr-4 md:pl-4 md:pr-4 pb-2 md:px-6 scrollbar-thin scrollbar-track-transparent scrollbar-thumb-border/50 hover:scrollbar-thumb-border md:overflow-x-visible [&::-webkit-scrollbar]:h-1 [&::-webkit-scrollbar-track]:bg-transparent [&::-webkit-scrollbar-thumb]:rounded-full [&::-webkit-scrollbar-thumb]:bg-border/30", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
26279
26410
|
TabsList,
|
|
26280
26411
|
{
|
|
26281
26412
|
className: cn(
|
|
@@ -26301,7 +26432,7 @@ function FeatureIconTabsContent({
|
|
|
26301
26432
|
))
|
|
26302
26433
|
}
|
|
26303
26434
|
) }),
|
|
26304
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("py-6
|
|
26435
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("py-6 md:py-10", contentWrapperClassName), children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "p-4 md:p-8 bg-muted/60 rounded-2xl shadow-lg", children: tabs.map((tab) => {
|
|
26305
26436
|
if (tab.contentSlot) {
|
|
26306
26437
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
26307
26438
|
TabsContent,
|
|
@@ -26338,7 +26469,7 @@ function FeatureIconTabsContent({
|
|
|
26338
26469
|
"h3",
|
|
26339
26470
|
{
|
|
26340
26471
|
className: cn(
|
|
26341
|
-
"text-
|
|
26472
|
+
"text-2xl font-semibold",
|
|
26342
26473
|
content.titleClassName
|
|
26343
26474
|
),
|
|
26344
26475
|
children: content.title
|
|
@@ -26347,7 +26478,7 @@ function FeatureIconTabsContent({
|
|
|
26347
26478
|
"div",
|
|
26348
26479
|
{
|
|
26349
26480
|
className: cn(
|
|
26350
|
-
"text-
|
|
26481
|
+
"text-2xl font-semibold",
|
|
26351
26482
|
content.titleClassName
|
|
26352
26483
|
),
|
|
26353
26484
|
children: content.title
|
|
@@ -26419,7 +26550,7 @@ function FeatureIconTabsContent({
|
|
|
26419
26550
|
"h1",
|
|
26420
26551
|
{
|
|
26421
26552
|
className: cn(
|
|
26422
|
-
"max-w-
|
|
26553
|
+
"max-w-4xl text-3xl font-semibold md:text-6xl text-balance",
|
|
26423
26554
|
headingClassName
|
|
26424
26555
|
),
|
|
26425
26556
|
children: heading
|
|
@@ -26428,7 +26559,7 @@ function FeatureIconTabsContent({
|
|
|
26428
26559
|
"div",
|
|
26429
26560
|
{
|
|
26430
26561
|
className: cn(
|
|
26431
|
-
"max-w-
|
|
26562
|
+
"max-w-4xl text-3xl font-semibold md:text-6xl text-balance",
|
|
26432
26563
|
headingClassName
|
|
26433
26564
|
),
|
|
26434
26565
|
children: heading
|
|
@@ -26504,7 +26635,7 @@ function FeatureImageOverlayBadge({
|
|
|
26504
26635
|
overlayLinkUrl,
|
|
26505
26636
|
overlayLinkOnClick,
|
|
26506
26637
|
className,
|
|
26507
|
-
containerClassName,
|
|
26638
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
26508
26639
|
gridClassName,
|
|
26509
26640
|
contentClassName,
|
|
26510
26641
|
badgeClassName,
|
|
@@ -26848,7 +26979,7 @@ function FeatureBentoImageGrid({
|
|
|
26848
26979
|
items,
|
|
26849
26980
|
itemsSlot,
|
|
26850
26981
|
className,
|
|
26851
|
-
containerClassName,
|
|
26982
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
26852
26983
|
titleClassName,
|
|
26853
26984
|
descriptionClassName,
|
|
26854
26985
|
gridClassName,
|
|
@@ -26856,7 +26987,7 @@ function FeatureBentoImageGrid({
|
|
|
26856
26987
|
smallCardClassName,
|
|
26857
26988
|
optixFlowConfig,
|
|
26858
26989
|
background,
|
|
26859
|
-
spacing,
|
|
26990
|
+
spacing = "py-12 md:py-32",
|
|
26860
26991
|
pattern,
|
|
26861
26992
|
patternOpacity,
|
|
26862
26993
|
patternClassName
|
|
@@ -27003,7 +27134,7 @@ function FeatureImageCardsThreeColumn({
|
|
|
27003
27134
|
cardsSlot,
|
|
27004
27135
|
className,
|
|
27005
27136
|
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
27006
|
-
spacing = "py-
|
|
27137
|
+
spacing = "py-12 md:py-32",
|
|
27007
27138
|
titleClassName,
|
|
27008
27139
|
descriptionClassName,
|
|
27009
27140
|
gridClassName,
|
|
@@ -27059,7 +27190,7 @@ function FeatureImageCardsThreeColumn({
|
|
|
27059
27190
|
),
|
|
27060
27191
|
children: [
|
|
27061
27192
|
renderImage(card, imageAlt),
|
|
27062
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute top-0 right-0 bottom-0 left-0 translate-y-
|
|
27193
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute top-0 right-0 bottom-0 left-0 translate-y-10 md:translate-y-20 rounded-xl bg-linear-to-t from-black to-transparent transition-transform duration-300 group-hover:translate-y-0" }),
|
|
27063
27194
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "absolute top-0 flex h-full w-full flex-col justify-between p-4 md:p-6", children: [
|
|
27064
27195
|
(card.badgeText || card.avatarSrc || card.icon || card.iconName) && /* @__PURE__ */ jsxRuntime.jsxs(
|
|
27065
27196
|
Badge,
|
|
@@ -27129,7 +27260,7 @@ function FeatureImageCardsThreeColumn({
|
|
|
27129
27260
|
"h2",
|
|
27130
27261
|
{
|
|
27131
27262
|
className: cn(
|
|
27132
|
-
"text-
|
|
27263
|
+
"text-2xl font-semibold text-balance md:text-3xl lg:text-4xl max-w-lg md:max-w-md",
|
|
27133
27264
|
titleClassName
|
|
27134
27265
|
),
|
|
27135
27266
|
children: title
|
|
@@ -27138,7 +27269,7 @@ function FeatureImageCardsThreeColumn({
|
|
|
27138
27269
|
"div",
|
|
27139
27270
|
{
|
|
27140
27271
|
className: cn(
|
|
27141
|
-
"text-
|
|
27272
|
+
"text-2xl font-semibold text-balance md:text-3xl lg:text-4xl max-w-lg md:max-w-md",
|
|
27142
27273
|
titleClassName
|
|
27143
27274
|
),
|
|
27144
27275
|
children: title
|
|
@@ -27515,7 +27646,7 @@ function FeatureAccordionImage({
|
|
|
27515
27646
|
imageClassName,
|
|
27516
27647
|
optixFlowConfig,
|
|
27517
27648
|
background,
|
|
27518
|
-
spacing,
|
|
27649
|
+
spacing = "py-12 md:py-32",
|
|
27519
27650
|
pattern,
|
|
27520
27651
|
patternOpacity,
|
|
27521
27652
|
patternClassName
|
|
@@ -27658,8 +27789,8 @@ function FeatureCapabilitiesGrid({
|
|
|
27658
27789
|
items,
|
|
27659
27790
|
itemsSlot,
|
|
27660
27791
|
className,
|
|
27661
|
-
containerClassName = "px-
|
|
27662
|
-
spacing = "py-
|
|
27792
|
+
containerClassName = "mx-auto w-full max-w-screen-lg md:max-w-screen-4xl relative z-10 px-6 sm:px-2 md:px-2 lg:px-2",
|
|
27793
|
+
spacing = "py-12 md:py-32",
|
|
27663
27794
|
eyebrowClassName,
|
|
27664
27795
|
headingClassName,
|
|
27665
27796
|
gridClassName,
|
|
@@ -27686,7 +27817,7 @@ function FeatureCapabilitiesGrid({
|
|
|
27686
27817
|
Card,
|
|
27687
27818
|
{
|
|
27688
27819
|
className: cn(
|
|
27689
|
-
"group relative rounded-md overflow-visible border-border/10 bg-
|
|
27820
|
+
"group relative rounded-md overflow-visible border-border/10 bg-card text-card-foreground p-0 transition-colors duration-300 hover:border-border/20",
|
|
27690
27821
|
cardClassName,
|
|
27691
27822
|
item.className
|
|
27692
27823
|
),
|
|
@@ -27704,7 +27835,7 @@ function FeatureCapabilitiesGrid({
|
|
|
27704
27835
|
"div",
|
|
27705
27836
|
{
|
|
27706
27837
|
className: cn(
|
|
27707
|
-
"flex h-10 w-10 items-center justify-center rounded-xl border
|
|
27838
|
+
"flex h-10 w-10 items-center justify-center rounded-xl border ",
|
|
27708
27839
|
item.iconClassName
|
|
27709
27840
|
),
|
|
27710
27841
|
children: iconContent
|
|
@@ -27733,7 +27864,7 @@ function FeatureCapabilitiesGrid({
|
|
|
27733
27864
|
"span",
|
|
27734
27865
|
{
|
|
27735
27866
|
className: cn(
|
|
27736
|
-
"rounded-full border
|
|
27867
|
+
"rounded-full border px-2 py-0.5 text-[10px] leading-none",
|
|
27737
27868
|
item.badgeClassName
|
|
27738
27869
|
),
|
|
27739
27870
|
children: item.badge
|
|
@@ -27778,7 +27909,6 @@ function FeatureCapabilitiesGrid({
|
|
|
27778
27909
|
patternClassName,
|
|
27779
27910
|
className,
|
|
27780
27911
|
containerClassName,
|
|
27781
|
-
containerMaxWidth: "lg",
|
|
27782
27912
|
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col space-y-6 md:space-y-16", children: [
|
|
27783
27913
|
eyebrow || heading ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col space-y-4 md:space-y-6", children: [
|
|
27784
27914
|
eyebrow && (typeof eyebrow === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("text-sm tracking-widest", eyebrowClassName), children: eyebrow }) : /* @__PURE__ */ jsxRuntime.jsx(
|