nvis-fe-cms-libs 2.0.7 → 2.0.9

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.
@@ -941,7 +941,7 @@ var __async = (__this, __arguments, generator) => {
941
941
  "button",
942
942
  {
943
943
  onClick: () => setCurrentPartnerSlide(index2),
944
- className: `w-3 h-3 rounded-full transition-all duration-300 ${index2 === currentPartnerSlide ? "bg-brand-primary scale-125 shadow-lg" : "bg-muted hover:bg-brand-primary/70"}`,
944
+ className: `w-3 h-3 rounded-full transition-all duration-300 ${index2 === currentPartnerSlide ? "bg-brand-primary scale-125 shadow-lg" : "bg-surface hover:bg-brand-primary/70"}`,
945
945
  "aria-label": `Slide ${index2 + 1}`
946
946
  },
947
947
  index2
@@ -1344,17 +1344,17 @@ var __async = (__this, __arguments, generator) => {
1344
1344
  border: "none",
1345
1345
  cursor: "pointer",
1346
1346
  transition: "all 0.3s ease",
1347
- backgroundColor: index2 === currentPartnerSlide ? "var(--brand-primary)" : "rgba(255, 255, 255, 0.3)",
1347
+ backgroundColor: index2 === currentPartnerSlide ? "var(--brand-primary)" : "rgba(151, 151, 151, 0.8)",
1348
1348
  transform: index2 === currentPartnerSlide ? "scale(1.3)" : "scale(1)"
1349
1349
  },
1350
1350
  onMouseEnter: (e) => {
1351
1351
  if (index2 !== currentPartnerSlide) {
1352
- e.currentTarget.style.backgroundColor = "rgba(255, 255, 255, 0.5)";
1352
+ e.currentTarget.style.backgroundColor = "rgba(151, 151, 151, 0.8)";
1353
1353
  }
1354
1354
  },
1355
1355
  onMouseLeave: (e) => {
1356
1356
  if (index2 !== currentPartnerSlide) {
1357
- e.currentTarget.style.backgroundColor = "rgba(255, 255, 255, 0.3)";
1357
+ e.currentTarget.style.backgroundColor = "rgba(151, 151, 151, 0.8)";
1358
1358
  }
1359
1359
  },
1360
1360
  "aria-label": `Slide ${index2 + 1}`
@@ -2956,10 +2956,10 @@ var __async = (__this, __arguments, generator) => {
2956
2956
  };
2957
2957
  }
2958
2958
  return {
2959
- gradient: "linear-gradient(to right, var(--gradient-accent-soft-start), var(--gradient-accent-soft-end))",
2960
- border: "var(--gradient-accent-soft-start)",
2961
- line: "var(--gradient-accent-soft-start)",
2962
- iconBg: "var(--gradient-accent-soft-start)",
2959
+ gradient: "linear-gradient(to right, var(--gradient-brand-strong-start), var(--gradient-brand-strong-end))",
2960
+ border: "var(--gradient-brand-strong-start)",
2961
+ line: "var(--gradient-brand-strong-start)",
2962
+ iconBg: "var(--gradient-brand-strong-start)",
2963
2963
  shadow: "rgba(139, 92, 246, 0.2)"
2964
2964
  };
2965
2965
  };
@@ -3528,8 +3528,8 @@ var __async = (__this, __arguments, generator) => {
3528
3528
  className: "backdrop-blur-md px-4 py-2.5 rounded-2xl shadow-2xl border-2 flex items-center gap-2.5 cursor-pointer transform transition-all duration-300",
3529
3529
  style: {
3530
3530
  background: isHovered || isDragging ? colorStyle.gradientHover : colorStyle.gradient,
3531
- borderColor: colorStyle.border + "80",
3532
- boxShadow: `0 10px 40px ${colorStyle.shadowColor}4D`,
3531
+ borderColor: colorStyle.border,
3532
+ boxShadow: `0 10px 40px ${colorStyle.shadowColor}`,
3533
3533
  transform: isHovered || isDragging ? "scale(1.1)" : "scale(1)",
3534
3534
  filter: isHovered || isDragging ? "brightness(1.1)" : "brightness(1)",
3535
3535
  rotate: isDragging ? "2deg" : "0deg"