pxengine 0.1.60 → 0.1.61

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/index.mjs CHANGED
@@ -34039,19 +34039,19 @@ var EditableField = React85.memo(
34039
34039
  "div",
34040
34040
  {
34041
34041
  className: cn(
34042
- "relative z-10 group flex flex-col gap-2 p-3 bg-paperBackground rounded-md mb-8",
34042
+ "relative z-10 group flex flex-col gap-1.5 p-2.5 bg-black border border-cardBorder rounded-lg mb-4",
34043
34043
  className
34044
34044
  ),
34045
34045
  children: [
34046
- /* @__PURE__ */ jsx94("div", { className: "flex justify-between items-start mb-2", children: /* @__PURE__ */ jsxs54("div", { className: "w-full flex justify-between items-center flex-wrap gap-2", children: [
34046
+ /* @__PURE__ */ jsx94("div", { className: "flex justify-between items-start mb-1.5", children: /* @__PURE__ */ jsxs54("div", { className: "w-full flex justify-between items-center flex-wrap gap-1.5", children: [
34047
34047
  /* @__PURE__ */ jsx94(
34048
34048
  "h4",
34049
34049
  {
34050
- className: "px-[6px] py-[2px] tracking-widest bg-purple200 hover:bg-purple200 text-purpleText text-xs font-normal rounded-[4px]",
34050
+ className: "px-1.5 py-px tracking-widest border border-cardBorder text-gold text-[9px] font-medium uppercase rounded-[3px]",
34051
34051
  children: label
34052
34052
  }
34053
34053
  ),
34054
- isEditingProp ? /* @__PURE__ */ jsxs54("div", { className: "flex items-center gap-3", children: [
34054
+ isEditingProp ? /* @__PURE__ */ jsxs54("div", { className: "flex items-center gap-2", children: [
34055
34055
  /* @__PURE__ */ jsx94(
34056
34056
  "button",
34057
34057
  {
@@ -34062,7 +34062,7 @@ var EditableField = React85.memo(
34062
34062
  className: "text-gray-500 hover:text-gray-700 transition-colors",
34063
34063
  disabled: isSaving,
34064
34064
  title: "Cancel",
34065
- children: /* @__PURE__ */ jsx94(X, { className: "h-5 w-5" })
34065
+ children: /* @__PURE__ */ jsx94(X, { className: "h-4 w-4" })
34066
34066
  }
34067
34067
  ),
34068
34068
  /* @__PURE__ */ jsx94(
@@ -34075,37 +34075,31 @@ var EditableField = React85.memo(
34075
34075
  className: "text-gray600 hover:text-gray600 transition-colors",
34076
34076
  disabled: isSaving,
34077
34077
  title: "Save",
34078
- children: isSaving ? /* @__PURE__ */ jsx94(LoaderCircle, { className: "h-5 w-5 animate-spin" }) : /* @__PURE__ */ jsx94(Save, { className: "h-5 w-5" })
34078
+ children: isSaving ? /* @__PURE__ */ jsx94(LoaderCircle, { className: "h-4 w-4 animate-spin" }) : /* @__PURE__ */ jsx94(Save, { className: "h-4 w-4" })
34079
34079
  }
34080
34080
  )
34081
- ] }) : /* @__PURE__ */ jsxs54("span", { className: cn(
34082
- "inline-flex items-center gap-1.5 text-[0.75rem] font-medium px-2 py-0.5 rounded-full",
34083
- isChanged ? "bg-yellow100 text-warningcolor" : "text-green-600 dark:text-green-500 bg-green-500/5"
34084
- ), children: [
34085
- isChanged ? "Changed by you" : "Suggested by an Agent",
34086
- isLatestMessage && /* @__PURE__ */ jsx94(
34087
- "span",
34088
- {
34089
- className: "flex items-center gap-1 cursor-pointer text-foreground hover:text-green-700 transition-colors ml-1 pl-1.5 ",
34090
- onClick: (e) => {
34091
- if (shouldStopPropagation !== false) {
34092
- e.stopPropagation();
34093
- }
34094
- onEdit?.();
34095
- },
34096
- children: /* @__PURE__ */ jsx94(SquarePen, { className: "h-5 w-5" })
34097
- }
34098
- )
34099
- ] })
34081
+ ] }) : isLatestMessage ? /* @__PURE__ */ jsx94(
34082
+ "button",
34083
+ {
34084
+ className: "p-1 rounded-md text-muted-foreground hover:text-foreground hover:bg-gray300 transition-colors",
34085
+ onClick: (e) => {
34086
+ if (shouldStopPropagation !== false) {
34087
+ e.stopPropagation();
34088
+ }
34089
+ onEdit?.();
34090
+ },
34091
+ title: "Edit",
34092
+ children: /* @__PURE__ */ jsx94(SquarePen, { className: "h-3.5 w-3.5" })
34093
+ }
34094
+ ) : null
34100
34095
  ] }) }),
34101
34096
  isEditingProp ? /* @__PURE__ */ jsx94("div", { className: "flex flex-col gap-3", children: renderInput() }) : /* @__PURE__ */ jsx94(
34102
34097
  "div",
34103
34098
  {
34104
34099
  className: cn(
34105
- "relative flex items-start justify-between rounded-lg px-3 py-2",
34106
- "text-base text-foreground/90 font-medium leading-relaxed"
34100
+ "relative flex items-start justify-between rounded-md px-2 py-1.5",
34101
+ "text-sm text-cardText font-medium leading-relaxed"
34107
34102
  ),
34108
- style: { fontFamily: "Noto Sans, sans-serif" },
34109
34103
  children: /* @__PURE__ */ jsx94("div", { className: "flex-1", children: formattedValue() })
34110
34104
  }
34111
34105
  )
@@ -34316,7 +34310,7 @@ var FormCard = React87.memo(
34316
34310
  "div",
34317
34311
  {
34318
34312
  className: cn(
34319
- "relative w-full rounded-[20px] bg-paperBackground dark:bg-gray100 border border-gray400 shadow-lg overflow-hidden mb-6 font-noto",
34313
+ "relative w-full rounded-lg bg-cardSurface border border-gray400 shadow-sm overflow-hidden mb-4",
34320
34314
  className
34321
34315
  ),
34322
34316
  children: [
@@ -34329,18 +34323,18 @@ var FormCard = React87.memo(
34329
34323
  children: copied ? /* @__PURE__ */ jsx96(Check, { className: "h-4 w-4 text-green-500" }) : /* @__PURE__ */ jsx96(Copy, { className: "h-4 w-4" })
34330
34324
  }
34331
34325
  ),
34332
- /* @__PURE__ */ jsxs56("div", { className: "p-6 relative", children: [
34326
+ /* @__PURE__ */ jsxs56("div", { className: "p-4 relative", children: [
34333
34327
  !hideTitle && title && /* @__PURE__ */ jsx96(
34334
34328
  "h3",
34335
34329
  {
34336
- className: "text-gray900 dark:text-white mb-12 text-[1rem] font-bold",
34330
+ className: "text-cardText mb-6 text-sm font-semibold",
34337
34331
  children: title
34338
34332
  }
34339
34333
  ),
34340
34334
  showTimeline && /* @__PURE__ */ jsx96(
34341
34335
  "div",
34342
34336
  {
34343
- className: "absolute z-0 left-[60px] top-[100px] bottom-[60px] w-[3px]",
34337
+ className: "absolute z-0 left-[48px] top-[70px] bottom-[40px] w-[2px]",
34344
34338
  style: {
34345
34339
  background: `
34346
34340
  radial-gradient(circle closest-side, #3C3D3E 98%, transparent) 50%/2px 5px repeat-y,
@@ -34373,7 +34367,7 @@ var FormCard = React87.memo(
34373
34367
  field.key
34374
34368
  ))
34375
34369
  ] }),
34376
- isLatestMessage && onProceed && proceedLabel ? /* @__PURE__ */ jsx96("div", { className: "my-6 flex justify-center", children: /* @__PURE__ */ jsxs56(
34370
+ isLatestMessage && onProceed && proceedLabel ? /* @__PURE__ */ jsx96("div", { className: "my-4 flex justify-center", children: /* @__PURE__ */ jsx96(
34377
34371
  "button",
34378
34372
  {
34379
34373
  onClick: () => {
@@ -34382,14 +34376,10 @@ var FormCard = React87.memo(
34382
34376
  }
34383
34377
  },
34384
34378
  className: cn(
34385
- "px-6 py-2.5 border rounded-full transition-colors text-sm font-medium flex items-center gap-2",
34386
- "bg-purpleLight dark:bg-purple200 text-purpleText2 dark:text-purpleText border-purpleText1 dark:border-purple100",
34387
- "hover:bg-purpleText1 dark:hover:bg-purple100 dark:hover:text-white"
34379
+ "px-4 py-1.5 border rounded-lg transition-colors text-xs font-medium",
34380
+ "bg-cardSurface hover:bg-cardSurface/80 text-gold border-cardBorder"
34388
34381
  ),
34389
- children: [
34390
- proceedLabel,
34391
- /* @__PURE__ */ jsx96(ChevronRight, { className: "w-4 h-4" })
34392
- ]
34382
+ children: proceedLabel
34393
34383
  }
34394
34384
  ) }) : !isLatestMessage && footer ? /* @__PURE__ */ jsx96("div", { className: "flex justify-end items-center pb-4 pr-4 gap-1 text-green-600 text-sm font-medium", children: footer }) : null
34395
34385
  ]
@@ -36828,7 +36818,7 @@ var CountrySelectEdit = ({
36828
36818
  inputValue.length > 0 && /* @__PURE__ */ jsx122("div", { className: "flex flex-wrap gap-1.5", children: inputValue.map((countryCode) => /* @__PURE__ */ jsxs82(
36829
36819
  Badge2,
36830
36820
  {
36831
- className: "flex items-center gap-1 px-2 py-1 bg-grayPill border border-foreground rounded-md text-white text-sm font-grotesk font-medium",
36821
+ className: "flex items-center gap-1 px-2 py-0.5 bg-grayPill border border-gray400 rounded-md text-white text-xs font-medium",
36832
36822
  children: [
36833
36823
  countryCode,
36834
36824
  /* @__PURE__ */ jsxs82(
@@ -36864,7 +36854,7 @@ var CountrySelectDisplay = ({ value }) => {
36864
36854
  return /* @__PURE__ */ jsx122(
36865
36855
  "div",
36866
36856
  {
36867
- className: "flex items-center gap-2 px-3 py-1 bg-grayPill border border-foreground rounded-md text-foreground text-sm font-grotesk font-medium",
36857
+ className: "flex items-center gap-1.5 px-2 py-0.5 bg-grayPill border border-gray400 rounded-md text-foreground text-xs font-medium",
36868
36858
  children: country ? country.name : item
36869
36859
  },
36870
36860
  item
@@ -36913,7 +36903,7 @@ var KeywordBundlesEdit = ({
36913
36903
  /* @__PURE__ */ jsx122("div", { className: "flex flex-wrap gap-1.5", children: Array.isArray(bundle.keywords) && bundle.keywords.map((keyword, kIndex) => /* @__PURE__ */ jsxs82(
36914
36904
  "div",
36915
36905
  {
36916
- className: "flex items-center gap-2 px-3 py-1 bg-grayPill border border-white rounded-md text-white text-sm font-medium hover:bg-red-900/40 hover:border-red-500 transition-all cursor-pointer group",
36906
+ className: "flex items-center gap-1.5 px-2 py-0.5 bg-grayPill border border-gray400 rounded-md text-white text-xs font-medium hover:bg-red-900/40 hover:border-red-500 transition-all cursor-pointer group",
36917
36907
  onClick: () => {
36918
36908
  const updatedBundles = [...bundles];
36919
36909
  const currentKeywords = parseKeywords(updatedBundles[bundleIndex].keywords);
@@ -37012,7 +37002,7 @@ var KeywordBundlesDisplay = ({ value }) => {
37012
37002
  /* @__PURE__ */ jsx122("div", { className: "flex flex-wrap gap-2 pt-1", children: deduped.map((keyword) => /* @__PURE__ */ jsx122(
37013
37003
  "div",
37014
37004
  {
37015
- className: "flex items-center gap-2 px-3 py-1 bg-grayPill border border-white rounded-md text-white text-sm font-medium",
37005
+ className: "flex items-center gap-1.5 px-2 py-0.5 bg-grayPill border border-gray400 rounded-md text-white text-xs font-medium",
37016
37006
  children: keyword
37017
37007
  },
37018
37008
  keyword
@@ -37083,7 +37073,7 @@ var PlatformSelectDisplay = ({ value }) => {
37083
37073
  return /* @__PURE__ */ jsx122("div", { className: "flex flex-wrap gap-2 pt-1", children: displayValues.map((platform) => /* @__PURE__ */ jsx122(
37084
37074
  "div",
37085
37075
  {
37086
- className: "flex items-center gap-2 px-3 py-1 bg-grayPill border border-foreground rounded-md text-foreground text-sm font-grotesk font-medium",
37076
+ className: "flex items-center gap-1.5 px-2 py-0.5 bg-grayPill border border-gray400 rounded-md text-foreground text-xs font-medium",
37087
37077
  children: platform
37088
37078
  },
37089
37079
  platform
@@ -37108,7 +37098,7 @@ var StringArrayDisplay = ({ value }) => {
37108
37098
  return /* @__PURE__ */ jsx123("div", { className: "flex flex-wrap gap-2 pt-1", children: value.map((item) => /* @__PURE__ */ jsx123(
37109
37099
  "div",
37110
37100
  {
37111
- className: "flex items-center gap-2 px-3 py-1 bg-grayPill border border-foreground rounded-md text-foreground text-sm font-grotesk font-medium",
37101
+ className: "flex items-center gap-1.5 px-2 py-0.5 bg-grayPill border border-gray400 rounded-md text-foreground text-xs font-medium",
37112
37102
  children: item
37113
37103
  },
37114
37104
  item
@@ -37267,9 +37257,9 @@ var CampaignSeedCard = React94.memo(
37267
37257
  onProceed: handleProceed,
37268
37258
  showTimeline: true,
37269
37259
  isLatestMessage: effectiveIsLatest,
37270
- className: cn("font-noto", className),
37271
- footer: !effectiveIsLatest && selectionStatus ? /* @__PURE__ */ jsxs83("div", { className: "flex justify-end items-center gap-1.5 text-green-600 text-[10px] font-semibold py-4 pr-6", children: [
37272
- /* @__PURE__ */ jsx123(CircleCheck, { className: "h-3.5 w-3.5" }),
37260
+ className,
37261
+ footer: !effectiveIsLatest && selectionStatus ? /* @__PURE__ */ jsxs83("div", { className: "flex justify-end items-center gap-1 text-green-600 text-[10px] font-semibold py-2 pr-4", children: [
37262
+ /* @__PURE__ */ jsx123(CircleCheck, { className: "h-3 w-3" }),
37273
37263
  /* @__PURE__ */ jsx123("span", { children: selectionStatus === "agent" ? "Suggested by Agent" : "Selected by you" })
37274
37264
  ] }) : formCardProps.footer
37275
37265
  }
@@ -37434,8 +37424,8 @@ var SearchSpecCard = React95.memo(
37434
37424
  onProceed: handleProceed,
37435
37425
  isLatestMessage: effectiveIsLatest,
37436
37426
  className,
37437
- footer: !effectiveIsLatest && selectionStatus ? /* @__PURE__ */ jsxs84("div", { className: "flex justify-end items-center gap-1.5 text-green-600 text-xs font-semibold py-1", children: [
37438
- /* @__PURE__ */ jsx124(CircleCheck, { className: "h-4 w-4" }),
37427
+ footer: !effectiveIsLatest && selectionStatus ? /* @__PURE__ */ jsxs84("div", { className: "flex justify-end items-center gap-1 text-green-600 text-[10px] font-semibold py-1", children: [
37428
+ /* @__PURE__ */ jsx124(CircleCheck, { className: "h-3 w-3" }),
37439
37429
  /* @__PURE__ */ jsx124("span", { children: selectionStatus === "agent" ? "Selected by Agent" : "Selected by User" })
37440
37430
  ] }) : formCardProps.footer
37441
37431
  }
@@ -37593,75 +37583,61 @@ var MCQCard = React96.memo(
37593
37583
  "div",
37594
37584
  {
37595
37585
  className: cn(
37596
- "p-6 rounded-[20px] border border-gray400 bg-background dark:bg-gray200 font-noto w-full",
37586
+ "p-4 rounded-lg border border-gray400 bg-cardSurface w-full",
37597
37587
  className
37598
37588
  ),
37599
37589
  children: [
37600
- /* @__PURE__ */ jsx125("div", { className: "mb-4", children: /* @__PURE__ */ jsx125("h4", { className: "font-medium text-foreground px-3 py-1 rounded-md inline-block mb-2", children: question }) }),
37601
- /* @__PURE__ */ jsx125("div", { className: "mb-6", children: /* @__PURE__ */ jsx125("div", { className: "space-y-4", children: optionsEntries.map(([key, label]) => {
37590
+ /* @__PURE__ */ jsx125("div", { className: "mb-4", children: /* @__PURE__ */ jsx125("p", { className: "text-sm text-cardText", children: question }) }),
37591
+ /* @__PURE__ */ jsx125("div", { className: "space-y-2.5 mb-4", children: optionsEntries.map(([key, label]) => {
37602
37592
  const isSelected = selectedOption === key;
37603
37593
  const isRecommended = key === recommended;
37604
- return /* @__PURE__ */ jsxs85(
37594
+ return /* @__PURE__ */ jsx125(
37605
37595
  "div",
37606
37596
  {
37607
37597
  onClick: (e) => handleOptionClick(key, e),
37608
37598
  className: cn(
37609
- "cursor-pointer rounded-xl p-3 transition-colors relative",
37610
- "border border-transparent bg-paperBackground",
37599
+ "cursor-pointer rounded-lg p-3 transition-colors",
37600
+ "border bg-black",
37601
+ isSelected ? "border-cardBorder" : "border-gray400",
37611
37602
  !selectedOption && !isOptionsDisabled && "hover:border-gray500",
37612
37603
  (isLoading || isOptionsDisabled) && "opacity-50 cursor-not-allowed"
37613
37604
  ),
37614
- children: [
37615
- /* @__PURE__ */ jsx125("div", { className: "absolute top-1/2 left-4 transform -translate-y-1/2", children: /* @__PURE__ */ jsx125(
37605
+ children: /* @__PURE__ */ jsxs85("div", { className: "flex items-start gap-3", children: [
37606
+ /* @__PURE__ */ jsx125("div", { className: "mt-0.5 flex-shrink-0", children: /* @__PURE__ */ jsx125(
37616
37607
  "div",
37617
37608
  {
37618
37609
  className: cn(
37619
- "w-5 h-5 rounded-full border flex items-center justify-center transition-colors",
37620
- isSelected ? "border-purple100 bg-gray300" : cn(
37621
- "border-gray300 bg-background",
37622
- !selectedOption && !isOptionsDisabled && "hover:border-purple100"
37610
+ "w-4 h-4 rounded-full border-2 flex items-center justify-center transition-colors",
37611
+ isSelected ? "border-gold" : cn(
37612
+ "border-gray500",
37613
+ !selectedOption && !isOptionsDisabled && "hover:border-gold"
37623
37614
  )
37624
37615
  ),
37625
- children: isSelected && /* @__PURE__ */ jsx125("div", { className: "w-2.5 h-2.5 rounded-full bg-purple100" })
37616
+ children: isSelected && /* @__PURE__ */ jsx125("div", { className: "w-2 h-2 rounded-full bg-gold" })
37626
37617
  }
37627
37618
  ) }),
37628
- /* @__PURE__ */ jsxs85("div", { className: "pl-12", children: [
37629
- (isRecommended || isSelected) && /* @__PURE__ */ jsxs85("div", { className: "flex gap-2 mb-2 flex-wrap", children: [
37630
- isRecommended && /* @__PURE__ */ jsx125("div", { className: "flex text-xs font-semibold", children: /* @__PURE__ */ jsx125("p", { className: "bg-greenBackground text-greenText px-2 py-1 rounded-[20px]", children: "Recommended" }) }),
37631
- isSelected && /* @__PURE__ */ jsx125("div", { className: "flex text-xs font-semibold", children: /* @__PURE__ */ jsx125(
37632
- "p",
37633
- {
37634
- className: cn(
37635
- "px-2 py-1 rounded-[20px]",
37636
- selectedOption === recommended ? "bg-purpleLight text-purpleText2 dark:bg-primary/20 dark:text-primary" : "bg-paperBackground text-primaryDark2 dark:bg-primary/20 dark:text-primary"
37637
- ),
37638
- children: "Selected by you"
37639
- }
37640
- ) })
37641
- ] }),
37642
- /* @__PURE__ */ jsx125("div", { className: "text-base font-medium text-txtColor", children: label })
37619
+ /* @__PURE__ */ jsxs85("div", { className: "flex-1 min-w-0", children: [
37620
+ isRecommended && /* @__PURE__ */ jsx125("p", { className: "text-xs font-semibold text-gold mb-1", children: "Recommended" }),
37621
+ /* @__PURE__ */ jsx125("p", { className: "text-sm text-cardText", children: label })
37643
37622
  ] })
37644
- ]
37623
+ ] })
37645
37624
  },
37646
37625
  key
37647
37626
  );
37648
- }) }) }),
37649
- /* @__PURE__ */ jsxs85("div", { className: "flex justify-between items-center", children: [
37650
- /* @__PURE__ */ jsx125("div", { className: "flex-1" }),
37651
- /* @__PURE__ */ jsx125(
37652
- "button",
37653
- {
37654
- onClick: handleProceed,
37655
- disabled: isContinueDisabled || isLoading || !selectedOption && !recommended,
37656
- className: cn(
37657
- "flex-3 px-4 py-2 border rounded-full text-sm disabled:opacity-50 disabled:cursor-not-allowed transition-colors",
37658
- "bg-purpleLight dark:bg-purple200 hover:bg-purpleText1 dark:hover:bg-purple100 text-purpleText2 dark:text-purpleText border-purpleText1 dark:border-purple-border dark:hover:text-white"
37659
- ),
37660
- children: isLoading ? "Sending..." : "Continue"
37661
- }
37662
- ),
37663
- /* @__PURE__ */ jsx125("div", { className: "flex-1" })
37664
- ] })
37627
+ }) }),
37628
+ /* @__PURE__ */ jsx125("div", { className: "flex justify-end", children: /* @__PURE__ */ jsx125(
37629
+ "button",
37630
+ {
37631
+ onClick: handleProceed,
37632
+ disabled: isContinueDisabled || isLoading || !selectedOption && !recommended,
37633
+ className: cn(
37634
+ "px-4 py-1.5 border rounded-lg text-xs font-medium transition-colors",
37635
+ "disabled:opacity-50 disabled:cursor-not-allowed",
37636
+ "bg-cardSurface hover:bg-cardSurface/80 text-gold border-cardBorder"
37637
+ ),
37638
+ children: isLoading ? "Sending..." : "Continue"
37639
+ }
37640
+ ) })
37665
37641
  ]
37666
37642
  }
37667
37643
  );
@@ -38322,9 +38298,9 @@ var CampaignConceptCard = React98.memo(
38322
38298
  idx + 1,
38323
38299
  "."
38324
38300
  ] }),
38325
- /* @__PURE__ */ jsx137("span", { className: "inline-flex items-center bg-grayPill border border-foreground px-2 py-1 text-foreground text-sm font-grotesk font-medium rounded-md", children: String(label) }),
38326
- /* @__PURE__ */ jsx137("span", { className: "text-foreground", children: "=" }),
38327
- /* @__PURE__ */ jsx137("span", { className: "inline-flex items-center bg-grayPill border border-foreground px-2 py-1 text-foreground text-sm rounded-md font-grotesk font-medium", children: formatVal(value) })
38301
+ /* @__PURE__ */ jsx137("span", { className: "inline-flex items-center bg-black border border-cardBorder px-2 py-0.5 text-cardText text-xs font-medium rounded-md", children: String(label) }),
38302
+ /* @__PURE__ */ jsx137("span", { className: "text-cardText", children: "=" }),
38303
+ /* @__PURE__ */ jsx137("span", { className: "inline-flex items-center bg-black border border-cardBorder px-2 py-1 text-cardText text-sm rounded-md font-grotesk font-medium", children: formatVal(value) })
38328
38304
  ] }, idx);
38329
38305
  }) });
38330
38306
  }
@@ -38337,9 +38313,9 @@ var CampaignConceptCard = React98.memo(
38337
38313
  idx + 1,
38338
38314
  "."
38339
38315
  ] }),
38340
- /* @__PURE__ */ jsx137("span", { className: "inline-flex items-center bg-grayPill border border-foreground px-2 py-1 text-foreground text-sm font-grotesk font-medium rounded-md", children: formatKey(k) }),
38341
- /* @__PURE__ */ jsx137("span", { className: "text-foreground", children: "=" }),
38342
- /* @__PURE__ */ jsx137("span", { className: "inline-flex items-center bg-grayPill border border-foreground px-2 py-1 text-foreground text-sm rounded-md font-grotesk font-medium", children: formatVal(v) })
38316
+ /* @__PURE__ */ jsx137("span", { className: "inline-flex items-center bg-black border border-cardBorder px-2 py-0.5 text-cardText text-xs font-medium rounded-md", children: formatKey(k) }),
38317
+ /* @__PURE__ */ jsx137("span", { className: "text-cardText", children: "=" }),
38318
+ /* @__PURE__ */ jsx137("span", { className: "inline-flex items-center bg-black border border-cardBorder px-2 py-1 text-cardText text-sm rounded-md font-grotesk font-medium", children: formatVal(v) })
38343
38319
  ] }, k)) });
38344
38320
  }
38345
38321
  return /* @__PURE__ */ jsx137("span", { className: "text-muted-foreground text-sm", children: String(val) });
@@ -38381,7 +38357,7 @@ var CampaignConceptCard = React98.memo(
38381
38357
  if (!val)
38382
38358
  return /* @__PURE__ */ jsx137("span", { className: "text-muted-foreground text-sm", children: "-" });
38383
38359
  const displayValue = typeof val === "object" && !Array.isArray(val) ? `${val.min ?? 0}-${val.max ?? 0}` : String(val);
38384
- return /* @__PURE__ */ jsx137("span", { className: "text-foreground text-sm", children: displayValue });
38360
+ return /* @__PURE__ */ jsx137("span", { className: "text-cardText text-sm", children: displayValue });
38385
38361
  },
38386
38362
  renderEdit: (v, onChange) => /* @__PURE__ */ jsx137(
38387
38363
  Input,
@@ -38406,7 +38382,7 @@ var CampaignConceptCard = React98.memo(
38406
38382
  return {
38407
38383
  ...field,
38408
38384
  label: field.label || "Primary KPI",
38409
- renderDisplay: (val) => /* @__PURE__ */ jsx137("span", { className: "text-foreground text-sm", children: val ? String(val) : "-" }),
38385
+ renderDisplay: (val) => /* @__PURE__ */ jsx137("span", { className: "text-cardText text-sm", children: val ? String(val) : "-" }),
38410
38386
  renderEdit: (v, onChange) => /* @__PURE__ */ jsx137(
38411
38387
  Input,
38412
38388
  {
@@ -38424,7 +38400,7 @@ var CampaignConceptCard = React98.memo(
38424
38400
  label: field.label || "Secondary KPIs",
38425
38401
  renderDisplay: (val) => {
38426
38402
  const display = Array.isArray(val) ? val.map(String).join(", ") : val ? String(val) : "-";
38427
- return /* @__PURE__ */ jsx137("span", { className: "text-foreground text-sm", children: display });
38403
+ return /* @__PURE__ */ jsx137("span", { className: "text-cardText text-sm", children: display });
38428
38404
  },
38429
38405
  renderEdit: (v, onChange) => /* @__PURE__ */ jsx137(
38430
38406
  Textarea,
@@ -38451,7 +38427,7 @@ var CampaignConceptCard = React98.memo(
38451
38427
  return {
38452
38428
  ...field,
38453
38429
  type: "textarea",
38454
- renderDisplay: (val) => /* @__PURE__ */ jsx137("span", { className: "text-foreground text-sm leading-relaxed", children: val ? String(val) : "-" })
38430
+ renderDisplay: (val) => /* @__PURE__ */ jsx137("span", { className: "text-cardText text-sm leading-relaxed", children: val ? String(val) : "-" })
38455
38431
  };
38456
38432
  }
38457
38433
  return {
@@ -38465,7 +38441,7 @@ var CampaignConceptCard = React98.memo(
38465
38441
  return /* @__PURE__ */ jsx137(
38466
38442
  "span",
38467
38443
  {
38468
- className: "inline-flex items-center bg-grayPill border border-foreground px-3 py-1 text-foreground text-sm font-grotesk font-medium rounded-md",
38444
+ className: "inline-flex items-center bg-black border border-cardBorder px-2 py-0.5 text-cardText text-xs font-medium rounded-md",
38469
38445
  children: label
38470
38446
  },
38471
38447
  idx
@@ -38475,7 +38451,7 @@ var CampaignConceptCard = React98.memo(
38475
38451
  if (typeof val === "object" && val !== null) {
38476
38452
  return /* @__PURE__ */ jsx137("div", { className: "text-muted-foreground text-xs font-mono bg-paperBackground p-2 rounded mt-1 overflow-auto max-h-24", children: Object.entries(val).map(([k, v]) => `${k.replace(/_/g, " ")}: ${v}`).join("\n") });
38477
38453
  }
38478
- return /* @__PURE__ */ jsx137("span", { className: "text-foreground text-sm", children: val !== void 0 && val !== null ? String(val) : "-" });
38454
+ return /* @__PURE__ */ jsx137("span", { className: "text-cardText text-sm", children: val !== void 0 && val !== null ? String(val) : "-" });
38479
38455
  }
38480
38456
  };
38481
38457
  });
@@ -38484,19 +38460,19 @@ var CampaignConceptCard = React98.memo(
38484
38460
  "div",
38485
38461
  {
38486
38462
  className: cn(
38487
- "w-full rounded-xl border bg-background dark:bg-gray100 relative transition-all duration-300",
38488
- isSelected || isRecommended ? "border-2 border-green500" : "border-gray400",
38463
+ "w-full rounded-lg border bg-cardSurface relative transition-all duration-300",
38464
+ isSelected || isRecommended ? "border-2 border-cardBorder" : "border-gray400",
38489
38465
  className
38490
38466
  ),
38491
38467
  children: [
38492
38468
  /* @__PURE__ */ jsxs96(
38493
38469
  "div",
38494
38470
  {
38495
- className: "px-5 py-4 relative flex items-start justify-between cursor-pointer select-none",
38471
+ className: "px-4 py-2.5 relative flex items-center justify-between cursor-pointer select-none",
38496
38472
  onClick: handleToggle,
38497
38473
  children: [
38498
38474
  /* @__PURE__ */ jsxs96("div", { className: "flex-1", children: [
38499
- /* @__PURE__ */ jsxs96("h3", { className: "mb-1 py-1 text-txtColor font-bold text-lg", children: [
38475
+ /* @__PURE__ */ jsxs96("h3", { className: "text-cardText font-semibold text-sm", children: [
38500
38476
  "Concept ",
38501
38477
  index !== void 0 ? index : "",
38502
38478
  " :",
@@ -38504,8 +38480,8 @@ var CampaignConceptCard = React98.memo(
38504
38480
  typeof cardTitle === "object" ? JSON.stringify(cardTitle) : String(cardTitle)
38505
38481
  ] }),
38506
38482
  /* @__PURE__ */ jsxs96("div", { className: "flex flex-wrap gap-2", children: [
38507
- isRecommended && /* @__PURE__ */ jsx137("div", { className: "inline-flex text-[10px] font-bold uppercase tracking-widest", children: /* @__PURE__ */ jsx137("span", { className: "bg-green-600/20 text-green-600 px-2 py-1 rounded-[20px]", children: "Recommended" }) }),
38508
- !effectiveIsLatest && selectionStatus && /* @__PURE__ */ jsx137("div", { className: "inline-flex text-[10px] font-bold uppercase tracking-widest text-[#3B82F6]", children: /* @__PURE__ */ jsx137("span", { className: "bg-[#3B82F6]/10 px-2 py-0.5 rounded border border-[#3B82F6]/20", children: selectionStatus === "agent" ? "Selected by Agent" : "Selected by You" }) })
38483
+ isRecommended && /* @__PURE__ */ jsx137("span", { className: "text-[10px] font-semibold uppercase tracking-widest text-gold", children: "Recommended" }),
38484
+ !effectiveIsLatest && selectionStatus && /* @__PURE__ */ jsx137("span", { className: "text-[10px] font-semibold uppercase tracking-widest text-gold", children: selectionStatus === "agent" ? "Selected by Agent" : "Selected by You" })
38509
38485
  ] })
38510
38486
  ] }),
38511
38487
  /* @__PURE__ */ jsx137(
@@ -38521,7 +38497,7 @@ var CampaignConceptCard = React98.memo(
38521
38497
  e.stopPropagation();
38522
38498
  handleToggle();
38523
38499
  },
38524
- className: "p-2 bg-background hover:bg-gray200 dark:hover:bg-gray200 text-foreground rounded-lg shadow-lg",
38500
+ className: "p-2 bg-cardSurface hover:bg-gray200 text-cardText rounded-lg",
38525
38501
  "aria-label": isOpen ? "Collapse" : "Expand",
38526
38502
  title: isOpen ? "Collapse" : "Expand",
38527
38503
  children: /* @__PURE__ */ jsx137(
@@ -38545,11 +38521,11 @@ var CampaignConceptCard = React98.memo(
38545
38521
  exit: { height: 0, opacity: 0 },
38546
38522
  transition: { duration: 0.2, ease: "easeIn" },
38547
38523
  className: "overflow-hidden",
38548
- children: /* @__PURE__ */ jsxs96("div", { className: "px-4 py-3 w-full relative", children: [
38524
+ children: /* @__PURE__ */ jsxs96("div", { className: "px-3 py-2 w-full relative", children: [
38549
38525
  /* @__PURE__ */ jsx137(
38550
38526
  "div",
38551
38527
  {
38552
- className: "absolute left-[60px] top-[100px] bottom-[60px] w-[3px]",
38528
+ className: "absolute left-[48px] top-[70px] bottom-[40px] w-[2px]",
38553
38529
  style: {
38554
38530
  background: `radial-gradient(circle closest-side, #3C3D3E 98%, transparent) 50%/2px 5px repeat-y, linear-gradient(#3C3D3E 50%, transparent 0) 50%/2px 10px repeat-y`
38555
38531
  }
@@ -38569,7 +38545,7 @@ var CampaignConceptCard = React98.memo(
38569
38545
  hideTitle: true,
38570
38546
  hideCopyButton: true,
38571
38547
  className: "bg-transparent border-none shadow-none mb-0 p-0",
38572
- footer: !effectiveIsLatest && selectionStatus ? /* @__PURE__ */ jsxs96("div", { className: "flex justify-end items-center gap-1.5 text-green-600 text-[10px] font-semibold py-4 pr-6", children: [
38548
+ footer: !effectiveIsLatest && selectionStatus ? /* @__PURE__ */ jsxs96("div", { className: "flex justify-end items-center gap-1 text-green-600 text-[10px] font-semibold py-2 pr-4", children: [
38573
38549
  /* @__PURE__ */ jsx137(CircleCheck, { className: "h-3.5 w-3.5" }),
38574
38550
  /* @__PURE__ */ jsx137("span", { children: selectionStatus === "agent" ? "Selected by Agent" : "Selected by You" })
38575
38551
  ] }) : formCardProps.footer