@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 +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/workflow/index.cjs +5 -5
- package/dist/workflow/index.cjs.map +1 -1
- package/dist/workflow/index.d.cts +2 -2
- package/dist/workflow/index.d.ts +2 -2
- package/dist/workflow/index.js +5 -5
- package/dist/workflow/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -10389,13 +10389,13 @@ var WorkflowCard = ({
|
|
|
10389
10389
|
name,
|
|
10390
10390
|
description,
|
|
10391
10391
|
integrations = [],
|
|
10392
|
-
|
|
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 ||
|
|
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
|
-
|
|
10442
|
-
/* @__PURE__ */ jsxRuntime.jsx(IndicatorDot, { $variant: "
|
|
10443
|
-
/* @__PURE__ */ jsxRuntime.jsx(IndicatorText, { children: "
|
|
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
|
] })
|