sellmate-design-system-react 0.8.1 → 0.8.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/index.cjs CHANGED
@@ -9397,14 +9397,14 @@ function SKeyValueTable({
9397
9397
  /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-[12px] font-bold leading-[20px] text-[color:var(--sys-color-fg-primary)]", children: f.label }),
9398
9398
  f.required && /* @__PURE__ */ jsxRuntime.jsx(SIcon, { name: "star", size: 12, color: "var(--sys-color-fg-accent)" })
9399
9399
  ] }),
9400
- f.helpText && /* @__PURE__ */ jsxRuntime.jsx(
9400
+ f.helpText && f.helpText.length > 0 && /* @__PURE__ */ jsxRuntime.jsx(
9401
9401
  STooltip,
9402
9402
  {
9403
9403
  trigger: "hover",
9404
9404
  icon: "helpOutline",
9405
9405
  iconSize: 16,
9406
9406
  color: "var(--sys-color-fg-success)",
9407
- message: [f.helpText]
9407
+ message: f.helpText
9408
9408
  }
9409
9409
  )
9410
9410
  ] })