@agentiffai/design 1.3.16 → 1.3.17

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
@@ -10389,13 +10389,13 @@ var WorkflowCard = ({
10389
10389
  name,
10390
10390
  description,
10391
10391
  integrations = [],
10392
- requiresInput = false,
10392
+ needsSetup = false,
10393
10393
  onClick,
10394
10394
  disabled = false,
10395
10395
  className
10396
10396
  }) => {
10397
10397
  const missingCount = integrations.filter((i) => i.connected === false).length;
10398
- const hasFooter = integrations.length > 0 || requiresInput;
10398
+ const hasFooter = integrations.length > 0 || needsSetup;
10399
10399
  return /* @__PURE__ */ jsxRuntime.jsxs(
10400
10400
  Card3,
10401
10401
  {
@@ -10438,9 +10438,9 @@ var WorkflowCard = ({
10438
10438
  ]
10439
10439
  }
10440
10440
  ),
10441
- requiresInput && /* @__PURE__ */ jsxRuntime.jsxs(IndicatorPill, { $variant: "info", title: "Requires input", children: [
10442
- /* @__PURE__ */ jsxRuntime.jsx(IndicatorDot, { $variant: "info" }),
10443
- /* @__PURE__ */ jsxRuntime.jsx(IndicatorText, { children: "Input required" })
10441
+ needsSetup && /* @__PURE__ */ jsxRuntime.jsxs(IndicatorPill, { $variant: "warning", title: "Setup required before use", children: [
10442
+ /* @__PURE__ */ jsxRuntime.jsx(IndicatorDot, { $variant: "warning" }),
10443
+ /* @__PURE__ */ jsxRuntime.jsx(IndicatorText, { children: "Needs Setup" })
10444
10444
  ] })
10445
10445
  ] })
10446
10446
  ] })