@sarunyu/system-one 4.9.35 → 4.9.37

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.js CHANGED
@@ -3049,7 +3049,7 @@ function RemovableTag({
3049
3049
  X,
3050
3050
  {
3051
3051
  size: 12,
3052
- weight: "bold",
3052
+ weight: "regular",
3053
3053
  color: iconColor,
3054
3054
  className: "shrink-0"
3055
3055
  }
@@ -3588,7 +3588,7 @@ const DropdownMultiple = forwardRef(
3588
3588
  Check,
3589
3589
  {
3590
3590
  size: 12,
3591
- weight: "bold",
3591
+ weight: "regular",
3592
3592
  className: "text-primary-action"
3593
3593
  }
3594
3594
  )
@@ -4231,7 +4231,7 @@ function ToastCloseButton({
4231
4231
  colorClass
4232
4232
  ),
4233
4233
  onClick: onClose,
4234
- children: /* @__PURE__ */ jsx(X, { size: 12, weight: "bold" })
4234
+ children: /* @__PURE__ */ jsx(X, { size: 12, weight: "regular" })
4235
4235
  }
4236
4236
  );
4237
4237
  }
@@ -4422,7 +4422,7 @@ const OptionList = forwardRef(
4422
4422
  Check,
4423
4423
  {
4424
4424
  size: 16,
4425
- weight: "bold",
4425
+ weight: "regular",
4426
4426
  className: "text-primary-action"
4427
4427
  }
4428
4428
  ) })
@@ -4792,7 +4792,7 @@ const Tag = forwardRef(function Tag2({
4792
4792
  className: cn(
4793
4793
  "inline-flex items-center justify-center rounded-[2px] transition-colors",
4794
4794
  s.closeButton,
4795
- !isDisabled && "cursor-pointer hover:bg-black/10"
4795
+ !isDisabled && "cursor-pointer hover:bg-black/10 dark:hover:bg-white/10"
4796
4796
  ),
4797
4797
  children: /* @__PURE__ */ jsx(CloseIcon, { disabled: isDisabled, className: s.closeIcon })
4798
4798
  }
@@ -4870,7 +4870,7 @@ function StickyShadowEdge({ direction }) {
4870
4870
  "aria-hidden": "true",
4871
4871
  className: "pointer-events-none absolute inset-y-0 left-[-10px] w-2.5",
4872
4872
  style: {
4873
- background: "linear-gradient(90deg, rgba(16,24,40,0.00) 0%, rgba(16,24,40,0.03) 55%, rgba(16,24,40,0.08) 100%)"
4873
+ background: "linear-gradient(90deg, rgba(var(--scroll-shadow-rgb),0.00) 0%, rgba(var(--scroll-shadow-rgb),0.03) 55%, rgba(var(--scroll-shadow-rgb),0.08) 100%)"
4874
4874
  }
4875
4875
  }
4876
4876
  );
@@ -4881,7 +4881,7 @@ function StickyShadowEdge({ direction }) {
4881
4881
  "aria-hidden": "true",
4882
4882
  className: "pointer-events-none absolute inset-y-0 right-[-10px] w-2.5",
4883
4883
  style: {
4884
- background: "linear-gradient(90deg, rgba(16,24,40,0.08) 0%, rgba(16,24,40,0.03) 45%, rgba(16,24,40,0.00) 100%)"
4884
+ background: "linear-gradient(90deg, rgba(var(--scroll-shadow-rgb),0.08) 0%, rgba(var(--scroll-shadow-rgb),0.03) 45%, rgba(var(--scroll-shadow-rgb),0.00) 100%)"
4885
4885
  }
4886
4886
  }
4887
4887
  );
@@ -6161,7 +6161,7 @@ function PaginationBanner({
6161
6161
  onClick: () => onIndexChange == null ? void 0 : onIndexChange(i),
6162
6162
  className: cn(
6163
6163
  "h-1.5 rounded-[12px] transition-all duration-200",
6164
- i === activeIndex ? "w-8 bg-bg-brand" : "w-1.5 bg-black/10 hover:bg-black/20"
6164
+ i === activeIndex ? "w-8 bg-bg-brand" : "w-1.5 bg-black/10 dark:bg-white/10 hover:bg-black/20 dark:hover:bg-white/20"
6165
6165
  )
6166
6166
  },
6167
6167
  i
@@ -6186,7 +6186,7 @@ function PaginationCarousel({
6186
6186
  children: /* @__PURE__ */ jsx(
6187
6187
  "div",
6188
6188
  {
6189
- className: "relative h-1.5 overflow-hidden rounded-[48px] bg-black/10",
6189
+ className: "relative h-1.5 overflow-hidden rounded-[48px] bg-black/10 dark:bg-white/10",
6190
6190
  style: { width: trackWidth },
6191
6191
  children: /* @__PURE__ */ jsx(
6192
6192
  "div",