@datatechsolutions/ui 2.11.65 → 2.11.66
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/astrlabe/index.js +131 -131
- package/dist/astrlabe/index.mjs +3 -3
- package/dist/astrlabe/workflow-canvas.js +3 -3
- package/dist/astrlabe/workflow-canvas.mjs +2 -2
- package/dist/{chunk-3MTLF75X.js → chunk-23SPYTXR.js} +64 -64
- package/dist/{chunk-3MTLF75X.js.map → chunk-23SPYTXR.js.map} +1 -1
- package/dist/{chunk-IK7HVMN5.mjs → chunk-2QHIFD2J.mjs} +3 -3
- package/dist/{chunk-IK7HVMN5.mjs.map → chunk-2QHIFD2J.mjs.map} +1 -1
- package/dist/{chunk-Y6OBQV2K.mjs → chunk-GQBSFIXC.mjs} +193 -140
- package/dist/chunk-GQBSFIXC.mjs.map +1 -0
- package/dist/{chunk-3J4F3ZDT.js → chunk-T23YGO4X.js} +192 -138
- package/dist/chunk-T23YGO4X.js.map +1 -0
- package/dist/index.d.mts +44 -5
- package/dist/index.d.ts +44 -5
- package/dist/index.js +747 -743
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/dist/chunk-3J4F3ZDT.js.map +0 -1
- package/dist/chunk-Y6OBQV2K.mjs.map +0 -1
|
@@ -11,7 +11,7 @@ import { AnimatePresence, motion, useReducedMotion, useMotionValue, useTransform
|
|
|
11
11
|
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
|
12
12
|
import { ChevronDownIcon, CheckCircleIcon, EyeSlashIcon, EyeIcon, XMarkIcon, CheckIcon, ChevronLeftIcon, ChevronRightIcon, EllipsisVerticalIcon, ClipboardDocumentIcon as ClipboardDocumentIcon$1, ArrowDownTrayIcon } from '@heroicons/react/20/solid';
|
|
13
13
|
import * as HeroIcons from '@heroicons/react/24/outline';
|
|
14
|
-
import { PlusIcon, MinusIcon, ShoppingCartIcon, BanknotesIcon, MegaphoneIcon, CubeIcon, UsersIcon, DocumentTextIcon, ShieldCheckIcon, CheckCircleIcon as CheckCircleIcon$1, RocketLaunchIcon, HandThumbUpIcon, AdjustmentsHorizontalIcon, TableCellsIcon, MapIcon, XMarkIcon as XMarkIcon$1, ClockIcon, BuildingStorefrontIcon, MagnifyingGlassIcon, InformationCircleIcon, ArrowTrendingUpIcon, ArrowTrendingDownIcon, ChevronUpIcon, ChevronDownIcon as ChevronDownIcon$1, ChevronUpDownIcon, DocumentMagnifyingGlassIcon, ShieldExclamationIcon, ServerStackIcon, WifiIcon, ExclamationTriangleIcon, ArrowPathIcon, FolderOpenIcon, BellIcon, TrashIcon, ExclamationCircleIcon, CheckIcon as CheckIcon$1, ClipboardDocumentCheckIcon, ClipboardDocumentIcon, CalendarDaysIcon, ChevronLeftIcon as ChevronLeftIcon$1, ChevronRightIcon as ChevronRightIcon$1, FunnelIcon, CameraIcon, ArrowUpTrayIcon, BeakerIcon, GlobeAltIcon, WrenchScrewdriverIcon, EyeDropperIcon, MoonIcon as MoonIcon$1, SunIcon as SunIcon$1, UserCircleIcon, ArrowRightOnRectangleIcon, LanguageIcon, PlayIcon, StopIcon, SparklesIcon, CpuChipIcon, XCircleIcon, LockClosedIcon, EnvelopeIcon, ChatBubbleLeftIcon, TrophyIcon, CogIcon, ChartBarIcon, HomeIcon, Cog6ToothIcon, UserIcon, BoltIcon,
|
|
14
|
+
import { PlusIcon, MinusIcon, ShoppingCartIcon, BanknotesIcon, MegaphoneIcon, CubeIcon, UsersIcon, DocumentTextIcon, ShieldCheckIcon, CheckCircleIcon as CheckCircleIcon$1, RocketLaunchIcon, HandThumbUpIcon, AdjustmentsHorizontalIcon, TableCellsIcon, MapIcon, XMarkIcon as XMarkIcon$1, ClockIcon, BuildingStorefrontIcon, MagnifyingGlassIcon, InformationCircleIcon, ArrowTrendingUpIcon, ArrowTrendingDownIcon, ChevronUpIcon, ChevronDownIcon as ChevronDownIcon$1, ChevronUpDownIcon, DocumentMagnifyingGlassIcon, ShieldExclamationIcon, ServerStackIcon, WifiIcon, ExclamationTriangleIcon, ArrowPathIcon, FolderOpenIcon, BellIcon, TrashIcon, ExclamationCircleIcon, CheckIcon as CheckIcon$1, ClipboardDocumentCheckIcon, ClipboardDocumentIcon, CalendarDaysIcon, ChevronLeftIcon as ChevronLeftIcon$1, ChevronRightIcon as ChevronRightIcon$1, FunnelIcon, CameraIcon, ArrowUpTrayIcon, BeakerIcon, GlobeAltIcon, WrenchScrewdriverIcon, EyeDropperIcon, MoonIcon as MoonIcon$1, SunIcon as SunIcon$1, UserCircleIcon, ArrowRightOnRectangleIcon, LanguageIcon, PlayIcon, StopIcon, SparklesIcon, CpuChipIcon, XCircleIcon, LockClosedIcon, EnvelopeIcon, ChatBubbleLeftIcon, TrophyIcon, CogIcon, ChartBarIcon, HomeIcon, Cog6ToothIcon, UserIcon, BoltIcon, Squares2X2Icon, PlusCircleIcon, CloudIcon, NewspaperIcon, CommandLineIcon, RectangleStackIcon, CodeBracketIcon, CircleStackIcon } from '@heroicons/react/24/outline';
|
|
15
15
|
import * as Popover from '@radix-ui/react-popover';
|
|
16
16
|
import { createPortal } from 'react-dom';
|
|
17
17
|
import { startOfDay, startOfMonth, endOfMonth, eachDayOfInterval, getDay, subMonths, addMonths, isAfter, format, isSameDay, isSameMonth, parse } from 'date-fns';
|
|
@@ -16388,50 +16388,58 @@ var DashboardDemo = ({
|
|
|
16388
16388
|
}
|
|
16389
16389
|
);
|
|
16390
16390
|
};
|
|
16391
|
+
var DEFAULT_THEME = {
|
|
16392
|
+
runButtonGradient: "from-indigo-600 to-violet-600",
|
|
16393
|
+
runButtonShadow: "shadow-indigo-500/20",
|
|
16394
|
+
stepActiveBg: "bg-indigo-500",
|
|
16395
|
+
activeRing: "ring-indigo-500/60",
|
|
16396
|
+
activeEdgeStroke: "#818cf8",
|
|
16397
|
+
completeEdgeStroke: "#10b981",
|
|
16398
|
+
badge: "bg-indigo-500/15 text-indigo-700 dark:text-indigo-300"
|
|
16399
|
+
};
|
|
16391
16400
|
var NODE_TYPE_META = {
|
|
16392
|
-
start: { icon: PlayIcon, color: "text-emerald-300", bg: "bg-emerald-500/15", glow: "rgba(16,185,129,0.45)" },
|
|
16393
|
-
end: { icon: CheckCircleIcon$1, color: "text-emerald-300", bg: "bg-emerald-500/15", glow: "rgba(16,185,129,0.45)" },
|
|
16394
|
-
datasource: { icon: CircleStackIcon, color: "text-sky-300", bg: "bg-sky-500/15", glow: "rgba(14,165,233,0.45)" },
|
|
16395
|
-
entity: { icon: RectangleStackIcon, color: "text-sky-300", bg: "bg-sky-500/15", glow: "rgba(14,165,233,0.45)" },
|
|
16396
|
-
http_request: { icon: CloudIcon, color: "text-cyan-300", bg: "bg-cyan-500/15", glow: "rgba(34,211,238,0.45)" },
|
|
16397
|
-
knowledge_base: { icon: ServerStackIcon, color: "text-cyan-300", bg: "bg-cyan-500/15", glow: "rgba(34,211,238,0.45)" },
|
|
16398
|
-
agent: { icon: CpuChipIcon, color: "text-purple-300", bg: "bg-purple-500/15", glow: "rgba(168,85,247,0.5)" },
|
|
16399
|
-
agent_tool: { icon: BeakerIcon, color: "text-violet-300", bg: "bg-violet-500/15", glow: "rgba(139,92,246,0.5)" },
|
|
16400
|
-
tool: { icon: BeakerIcon, color: "text-violet-300", bg: "bg-violet-500/15", glow: "rgba(139,92,246,0.5)" },
|
|
16401
|
-
code: { icon: CodeBracketIcon, color: "text-amber-300", bg: "bg-amber-500/15", glow: "rgba(245,158,11,0.45)" },
|
|
16402
|
-
template_transform: { icon: DocumentTextIcon, color: "text-amber-300", bg: "bg-amber-500/15", glow: "rgba(245,158,11,0.45)" },
|
|
16403
|
-
if_else: { icon: BoltIcon, color: "text-orange-300", bg: "bg-orange-500/15", glow: "rgba(251,146,60,0.5)" },
|
|
16404
|
-
question_classifier: { icon: BoltIcon, color: "text-orange-300", bg: "bg-orange-500/15", glow: "rgba(251,146,60,0.5)" },
|
|
16405
|
-
parameter_extractor: { icon: AdjustmentsHorizontalIcon, color: "text-orange-300", bg: "bg-orange-500/15", glow: "rgba(251,146,60,0.5)" },
|
|
16406
|
-
variable_aggregator: { icon: AdjustmentsHorizontalIcon, color: "text-yellow-300", bg: "bg-yellow-500/15", glow: "rgba(234,179,8,0.45)" },
|
|
16407
|
-
variable_assigner: { icon: AdjustmentsHorizontalIcon, color: "text-yellow-300", bg: "bg-yellow-500/15", glow: "rgba(234,179,8,0.45)" },
|
|
16408
|
-
iteration: { icon: ArrowPathIcon, color: "text-fuchsia-300", bg: "bg-fuchsia-500/15", glow: "rgba(232,121,249,0.5)" },
|
|
16409
|
-
iteration_start: { icon: ArrowPathIcon, color: "text-fuchsia-300", bg: "bg-fuchsia-500/15", glow: "rgba(232,121,249,0.5)" },
|
|
16410
|
-
list_operator: { icon: AdjustmentsHorizontalIcon, color: "text-fuchsia-300", bg: "bg-fuchsia-500/15", glow: "rgba(232,121,249,0.5)" },
|
|
16411
|
-
answer: { icon: ChartBarIcon, color: "text-emerald-300", bg: "bg-emerald-500/15", glow: "rgba(16,185,129,0.45)" },
|
|
16412
|
-
dashboard_output: { icon: ChartBarIcon, color: "text-emerald-300", bg: "bg-emerald-500/15", glow: "rgba(16,185,129,0.45)" },
|
|
16413
|
-
rule: { icon: BoltIcon, color: "text-rose-300", bg: "bg-rose-500/15", glow: "rgba(244,63,94,0.5)" },
|
|
16414
|
-
document_extractor: { icon: DocumentTextIcon, color: "text-amber-300", bg: "bg-amber-500/15", glow: "rgba(245,158,11,0.45)" },
|
|
16415
|
-
model_provider: { icon: CpuChipIcon, color: "text-violet-300", bg: "bg-violet-500/15", glow: "rgba(139,92,246,0.5)" },
|
|
16416
|
-
note: { icon: DocumentTextIcon, color: "text-slate-300", bg: "bg-slate-500/15", glow: "rgba(100,116,139,0.4)" },
|
|
16417
|
-
group: { icon: RectangleStackIcon, color: "text-slate-300", bg: "bg-slate-500/15", glow: "rgba(100,116,139,0.4)" }
|
|
16401
|
+
start: { icon: PlayIcon, color: "text-emerald-300", bg: "bg-emerald-500/15", glow: "rgba(16,185,129,0.45)", tag: "start" },
|
|
16402
|
+
end: { icon: CheckCircleIcon$1, color: "text-emerald-300", bg: "bg-emerald-500/15", glow: "rgba(16,185,129,0.45)", tag: "end" },
|
|
16403
|
+
datasource: { icon: CircleStackIcon, color: "text-sky-300", bg: "bg-sky-500/15", glow: "rgba(14,165,233,0.45)", tag: "datasource" },
|
|
16404
|
+
entity: { icon: RectangleStackIcon, color: "text-sky-300", bg: "bg-sky-500/15", glow: "rgba(14,165,233,0.45)", tag: "entity" },
|
|
16405
|
+
http_request: { icon: CloudIcon, color: "text-cyan-300", bg: "bg-cyan-500/15", glow: "rgba(34,211,238,0.45)", tag: "http" },
|
|
16406
|
+
knowledge_base: { icon: ServerStackIcon, color: "text-cyan-300", bg: "bg-cyan-500/15", glow: "rgba(34,211,238,0.45)", tag: "kb" },
|
|
16407
|
+
agent: { icon: CpuChipIcon, color: "text-purple-300", bg: "bg-purple-500/15", glow: "rgba(168,85,247,0.5)", tag: "agent" },
|
|
16408
|
+
agent_tool: { icon: BeakerIcon, color: "text-violet-300", bg: "bg-violet-500/15", glow: "rgba(139,92,246,0.5)", tag: "agent.tool" },
|
|
16409
|
+
tool: { icon: BeakerIcon, color: "text-violet-300", bg: "bg-violet-500/15", glow: "rgba(139,92,246,0.5)", tag: "tool" },
|
|
16410
|
+
code: { icon: CodeBracketIcon, color: "text-amber-300", bg: "bg-amber-500/15", glow: "rgba(245,158,11,0.45)", tag: "code" },
|
|
16411
|
+
template_transform: { icon: DocumentTextIcon, color: "text-amber-300", bg: "bg-amber-500/15", glow: "rgba(245,158,11,0.45)", tag: "template" },
|
|
16412
|
+
if_else: { icon: BoltIcon, color: "text-orange-300", bg: "bg-orange-500/15", glow: "rgba(251,146,60,0.5)", tag: "branch" },
|
|
16413
|
+
question_classifier: { icon: BoltIcon, color: "text-orange-300", bg: "bg-orange-500/15", glow: "rgba(251,146,60,0.5)", tag: "classifier" },
|
|
16414
|
+
parameter_extractor: { icon: AdjustmentsHorizontalIcon, color: "text-orange-300", bg: "bg-orange-500/15", glow: "rgba(251,146,60,0.5)", tag: "extractor" },
|
|
16415
|
+
variable_aggregator: { icon: AdjustmentsHorizontalIcon, color: "text-yellow-300", bg: "bg-yellow-500/15", glow: "rgba(234,179,8,0.45)", tag: "aggregate" },
|
|
16416
|
+
variable_assigner: { icon: AdjustmentsHorizontalIcon, color: "text-yellow-300", bg: "bg-yellow-500/15", glow: "rgba(234,179,8,0.45)", tag: "assign" },
|
|
16417
|
+
iteration: { icon: ArrowPathIcon, color: "text-fuchsia-300", bg: "bg-fuchsia-500/15", glow: "rgba(232,121,249,0.5)", tag: "iterate" },
|
|
16418
|
+
iteration_start: { icon: ArrowPathIcon, color: "text-fuchsia-300", bg: "bg-fuchsia-500/15", glow: "rgba(232,121,249,0.5)", tag: "iterate.start" },
|
|
16419
|
+
list_operator: { icon: AdjustmentsHorizontalIcon, color: "text-fuchsia-300", bg: "bg-fuchsia-500/15", glow: "rgba(232,121,249,0.5)", tag: "list" },
|
|
16420
|
+
answer: { icon: ChartBarIcon, color: "text-emerald-300", bg: "bg-emerald-500/15", glow: "rgba(16,185,129,0.45)", tag: "answer" },
|
|
16421
|
+
dashboard_output: { icon: ChartBarIcon, color: "text-emerald-300", bg: "bg-emerald-500/15", glow: "rgba(16,185,129,0.45)", tag: "dashboard" },
|
|
16422
|
+
rule: { icon: BoltIcon, color: "text-rose-300", bg: "bg-rose-500/15", glow: "rgba(244,63,94,0.5)", tag: "rule" },
|
|
16423
|
+
document_extractor: { icon: DocumentTextIcon, color: "text-amber-300", bg: "bg-amber-500/15", glow: "rgba(245,158,11,0.45)", tag: "extract" },
|
|
16424
|
+
model_provider: { icon: CpuChipIcon, color: "text-violet-300", bg: "bg-violet-500/15", glow: "rgba(139,92,246,0.5)", tag: "model" },
|
|
16425
|
+
note: { icon: DocumentTextIcon, color: "text-slate-300", bg: "bg-slate-500/15", glow: "rgba(100,116,139,0.4)", tag: "note" },
|
|
16426
|
+
group: { icon: RectangleStackIcon, color: "text-slate-300", bg: "bg-slate-500/15", glow: "rgba(100,116,139,0.4)", tag: "group" }
|
|
16418
16427
|
};
|
|
16419
|
-
var FALLBACK_META = { icon: BoltIcon, color: "text-gray-300", bg: "bg-gray-500/15", glow: "rgba(100,116,139,0.4)" };
|
|
16428
|
+
var FALLBACK_META = { icon: BoltIcon, color: "text-gray-300", bg: "bg-gray-500/15", glow: "rgba(100,116,139,0.4)", tag: "node" };
|
|
16420
16429
|
function getNodeMeta(type) {
|
|
16421
16430
|
return NODE_TYPE_META[type] ?? FALLBACK_META;
|
|
16422
16431
|
}
|
|
16423
|
-
var NODE_W = 180;
|
|
16424
|
-
var NODE_H = 80;
|
|
16425
|
-
var PADDING = 24;
|
|
16426
16432
|
function DepartmentWorkflowDemo({
|
|
16427
16433
|
workflow,
|
|
16428
16434
|
stepDurationMs = 1100,
|
|
16429
16435
|
autoPlay = false,
|
|
16430
16436
|
className,
|
|
16431
16437
|
hideHeader = false,
|
|
16432
|
-
onComplete
|
|
16438
|
+
onComplete,
|
|
16439
|
+
theme
|
|
16433
16440
|
}) {
|
|
16434
|
-
const
|
|
16441
|
+
const t = { ...DEFAULT_THEME, ...theme };
|
|
16442
|
+
const { graph, steps, title, description, accentBadge, completionSummary } = workflow;
|
|
16435
16443
|
const [stepIndex, setStepIndex] = useState(-1);
|
|
16436
16444
|
const intervalRef = useRef(null);
|
|
16437
16445
|
const completedRef = useRef(false);
|
|
@@ -16439,6 +16447,20 @@ function DepartmentWorkflowDemo({
|
|
|
16439
16447
|
const isIdle = stepIndex === -1;
|
|
16440
16448
|
const isRunning = stepIndex >= 0 && stepIndex < total - 1;
|
|
16441
16449
|
const isComplete = stepIndex === total - 1 && total > 0;
|
|
16450
|
+
const columns = useMemo(() => {
|
|
16451
|
+
const stepByNode = /* @__PURE__ */ new Map();
|
|
16452
|
+
steps.forEach((s, idx) => {
|
|
16453
|
+
for (const id of s.nodes) {
|
|
16454
|
+
if (!stepByNode.has(id)) stepByNode.set(id, idx);
|
|
16455
|
+
}
|
|
16456
|
+
});
|
|
16457
|
+
const cols = steps.map(() => []);
|
|
16458
|
+
for (const node2 of graph.nodes) {
|
|
16459
|
+
const idx = stepByNode.get(node2.id);
|
|
16460
|
+
if (idx !== void 0) cols[idx].push(node2);
|
|
16461
|
+
}
|
|
16462
|
+
return cols.map((col, i) => ({ stepIndex: i, nodes: col, label: steps[i]?.label ?? "" })).filter((c) => c.nodes.length > 0);
|
|
16463
|
+
}, [graph.nodes, steps]);
|
|
16442
16464
|
const activeNodeIds = useMemo(() => {
|
|
16443
16465
|
if (stepIndex < 0) return /* @__PURE__ */ new Set();
|
|
16444
16466
|
return new Set(steps[stepIndex]?.nodes ?? []);
|
|
@@ -16488,42 +16510,32 @@ function DepartmentWorkflowDemo({
|
|
|
16488
16510
|
if (intervalRef.current) clearInterval(intervalRef.current);
|
|
16489
16511
|
};
|
|
16490
16512
|
}, [autoPlay, handleRun]);
|
|
16491
|
-
const bounds = useMemo(() => {
|
|
16492
|
-
if (graph.nodes.length === 0) return { width: 800, height: 400 };
|
|
16493
|
-
let maxX = 0;
|
|
16494
|
-
let maxY = 0;
|
|
16495
|
-
for (const node2 of graph.nodes) {
|
|
16496
|
-
if (node2.position.x > maxX) maxX = node2.position.x;
|
|
16497
|
-
if (node2.position.y > maxY) maxY = node2.position.y;
|
|
16498
|
-
}
|
|
16499
|
-
return { width: maxX + NODE_W + PADDING * 2, height: maxY + NODE_H + PADDING * 2 };
|
|
16500
|
-
}, [graph.nodes]);
|
|
16501
16513
|
const currentStepLabel = stepIndex >= 0 ? steps[stepIndex]?.label : "Ready to run";
|
|
16502
16514
|
return /* @__PURE__ */ jsxs("div", { className: `liquid-surface rounded-2xl overflow-hidden ${className ?? ""}`, children: [
|
|
16503
16515
|
!hideHeader && /* @__PURE__ */ jsxs("div", { className: "border-b border-white/5 px-5 py-4 flex items-start gap-4", children: [
|
|
16504
16516
|
/* @__PURE__ */ jsxs("div", { className: "flex-1 min-w-0", children: [
|
|
16505
|
-
/* @__PURE__ */ jsxs("span", { className: `inline-flex items-center gap-1.5 rounded-full px-2.5 py-0.5 text-[10px] font-semibold uppercase tracking-wider ${accentBadge}`, children: [
|
|
16517
|
+
/* @__PURE__ */ jsxs("span", { className: `inline-flex items-center gap-1.5 rounded-full px-2.5 py-0.5 text-[10px] font-semibold uppercase tracking-wider ${accentBadge ?? t.badge}`, children: [
|
|
16506
16518
|
/* @__PURE__ */ jsx(BoltIcon, { className: "h-3 w-3" }),
|
|
16507
16519
|
"Astrlabe workflow"
|
|
16508
16520
|
] }),
|
|
16509
|
-
/* @__PURE__ */ jsx("h3", { className: "mt-2 text-lg font-bold text-white", children: title }),
|
|
16510
|
-
/* @__PURE__ */ jsx("p", { className: "mt-0.5 text-xs text-gray-400", children: description })
|
|
16521
|
+
/* @__PURE__ */ jsx("h3", { className: "mt-2 text-lg font-bold text-gray-900 dark:text-white", children: title }),
|
|
16522
|
+
/* @__PURE__ */ jsx("p", { className: "mt-0.5 text-xs text-gray-500 dark:text-gray-400", children: description })
|
|
16511
16523
|
] }),
|
|
16512
16524
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 shrink-0", children: [
|
|
16513
16525
|
stepIndex >= 0 && /* @__PURE__ */ jsx("div", { className: "flex items-center gap-0.5", children: steps.map((_, index) => /* @__PURE__ */ jsx(
|
|
16514
16526
|
"div",
|
|
16515
16527
|
{
|
|
16516
|
-
className: `h-1 w-3 rounded-full transition-all duration-500 ${index < stepIndex || isComplete ? "bg-emerald-500" : index === stepIndex ?
|
|
16528
|
+
className: `h-1 w-3 rounded-full transition-all duration-500 ${index < stepIndex || isComplete ? "bg-emerald-500" : index === stepIndex ? `${t.stepActiveBg} animate-pulse` : "bg-white/10"}`
|
|
16517
16529
|
},
|
|
16518
16530
|
index
|
|
16519
16531
|
)) }),
|
|
16520
|
-
/* @__PURE__ */ jsx("span", { className: "max-w-[180px] truncate text-[10px] text-gray-400", children: currentStepLabel }),
|
|
16532
|
+
/* @__PURE__ */ jsx("span", { className: "max-w-[180px] truncate text-[10px] text-gray-500 dark:text-gray-400", children: currentStepLabel }),
|
|
16521
16533
|
isIdle ? /* @__PURE__ */ jsxs(
|
|
16522
16534
|
"button",
|
|
16523
16535
|
{
|
|
16524
16536
|
type: "button",
|
|
16525
16537
|
onClick: handleRun,
|
|
16526
|
-
className:
|
|
16538
|
+
className: `flex items-center gap-1 rounded-lg bg-gradient-to-r ${t.runButtonGradient} px-3 py-1 text-[11px] font-semibold text-white shadow-lg ${t.runButtonShadow} hover:scale-105 active:scale-95 transition-all`,
|
|
16527
16539
|
children: [
|
|
16528
16540
|
/* @__PURE__ */ jsx(PlayIcon, { className: "h-3 w-3" }),
|
|
16529
16541
|
" Run"
|
|
@@ -16545,7 +16557,7 @@ function DepartmentWorkflowDemo({
|
|
|
16545
16557
|
{
|
|
16546
16558
|
type: "button",
|
|
16547
16559
|
onClick: handleRun,
|
|
16548
|
-
className: "flex items-center gap-1 rounded-lg border border-white/10 px-3 py-1 text-[11px] font-medium text-gray-300 hover:bg-white/5",
|
|
16560
|
+
className: "flex items-center gap-1 rounded-lg border border-white/10 px-3 py-1 text-[11px] font-medium text-gray-700 dark:text-gray-300 hover:bg-white/5",
|
|
16549
16561
|
children: [
|
|
16550
16562
|
/* @__PURE__ */ jsx(ArrowPathIcon, { className: "h-3 w-3" }),
|
|
16551
16563
|
" Replay"
|
|
@@ -16554,80 +16566,74 @@ function DepartmentWorkflowDemo({
|
|
|
16554
16566
|
)
|
|
16555
16567
|
] })
|
|
16556
16568
|
] }),
|
|
16557
|
-
/* @__PURE__ */ jsxs("div", { className: "
|
|
16569
|
+
/* @__PURE__ */ jsxs("div", { className: "overflow-x-auto px-4 py-5", children: [
|
|
16558
16570
|
/* @__PURE__ */ jsx("style", { children: `
|
|
16559
|
-
@keyframes
|
|
16560
|
-
@keyframes
|
|
16571
|
+
@keyframes deptGlow { 0%, 100% { box-shadow: 0 0 12px var(--glow); } 50% { box-shadow: 0 0 28px var(--glow); } }
|
|
16572
|
+
@keyframes deptEdge { to { stroke-dashoffset: -16; } }
|
|
16561
16573
|
` }),
|
|
16562
|
-
/* @__PURE__ */
|
|
16563
|
-
|
|
16564
|
-
|
|
16565
|
-
|
|
16566
|
-
|
|
16567
|
-
|
|
16568
|
-
const y1 = source.position.y + NODE_H / 2;
|
|
16569
|
-
const x2 = target.position.x;
|
|
16570
|
-
const y2 = target.position.y + NODE_H / 2;
|
|
16571
|
-
const midX = (x1 + x2) / 2;
|
|
16572
|
-
const isActive = activeNodeIds.has(edge2.source) || completedNodeIds.has(edge2.source) && (activeNodeIds.has(edge2.target) || completedNodeIds.has(edge2.target));
|
|
16573
|
-
const isComplete2 = completedNodeIds.has(edge2.source) && completedNodeIds.has(edge2.target);
|
|
16574
|
-
const stroke = isComplete2 ? "#10b981" : isActive ? "#818cf8" : "#334155";
|
|
16575
|
-
return /* @__PURE__ */ jsxs("g", { children: [
|
|
16574
|
+
/* @__PURE__ */ jsx("div", { className: "flex items-stretch gap-0 min-w-full", children: columns.map((col, colIdx) => {
|
|
16575
|
+
const isStepActive = stepIndex === col.stepIndex;
|
|
16576
|
+
const isStepDone = stepIndex > col.stepIndex;
|
|
16577
|
+
const showsConnector = colIdx > 0;
|
|
16578
|
+
return /* @__PURE__ */ jsxs("div", { className: "flex shrink-0 items-stretch", children: [
|
|
16579
|
+
showsConnector && /* @__PURE__ */ jsxs("svg", { width: "36", height: "100", className: "self-center shrink-0", viewBox: "0 0 36 100", children: [
|
|
16576
16580
|
/* @__PURE__ */ jsx(
|
|
16577
|
-
"
|
|
16581
|
+
"line",
|
|
16578
16582
|
{
|
|
16579
|
-
|
|
16580
|
-
|
|
16581
|
-
|
|
16582
|
-
|
|
16583
|
+
x1: "0",
|
|
16584
|
+
y1: "50",
|
|
16585
|
+
x2: "36",
|
|
16586
|
+
y2: "50",
|
|
16587
|
+
stroke: isStepDone ? t.completeEdgeStroke : isStepActive ? t.activeEdgeStroke : "#334155",
|
|
16588
|
+
strokeWidth: "2",
|
|
16583
16589
|
strokeDasharray: "6 4",
|
|
16584
|
-
style: { animation:
|
|
16590
|
+
style: { animation: isStepActive ? "deptEdge 0.8s linear infinite" : "none" }
|
|
16585
16591
|
}
|
|
16586
16592
|
),
|
|
16587
|
-
/* @__PURE__ */ jsx("circle", { cx:
|
|
16588
|
-
] },
|
|
16589
|
-
|
|
16590
|
-
|
|
16591
|
-
|
|
16592
|
-
|
|
16593
|
-
|
|
16594
|
-
|
|
16595
|
-
|
|
16596
|
-
|
|
16597
|
-
|
|
16598
|
-
|
|
16599
|
-
|
|
16600
|
-
|
|
16601
|
-
|
|
16602
|
-
|
|
16603
|
-
|
|
16604
|
-
|
|
16605
|
-
|
|
16606
|
-
|
|
16607
|
-
|
|
16608
|
-
|
|
16609
|
-
|
|
16610
|
-
|
|
16611
|
-
|
|
16612
|
-
|
|
16613
|
-
|
|
16614
|
-
|
|
16615
|
-
|
|
16616
|
-
|
|
16617
|
-
|
|
16593
|
+
/* @__PURE__ */ jsx("circle", { cx: "34", cy: "50", r: "3", fill: isStepDone ? t.completeEdgeStroke : isStepActive ? t.activeEdgeStroke : "#334155" })
|
|
16594
|
+
] }),
|
|
16595
|
+
/* @__PURE__ */ jsxs("div", { className: "flex w-[160px] flex-col gap-2 shrink-0", children: [
|
|
16596
|
+
/* @__PURE__ */ jsxs("div", { className: "text-[8px] font-bold uppercase tracking-wider text-gray-400 dark:text-gray-500 text-center", children: [
|
|
16597
|
+
"Step ",
|
|
16598
|
+
col.stepIndex + 1
|
|
16599
|
+
] }),
|
|
16600
|
+
col.nodes.map((node2) => {
|
|
16601
|
+
const status = getStatus(node2);
|
|
16602
|
+
const meta = getNodeMeta(node2.type);
|
|
16603
|
+
const statusClass = status === "running" ? `scale-[1.04] ring-2 ${t.activeRing}` : status === "complete" ? "ring-1 ring-emerald-500/40" : "opacity-50";
|
|
16604
|
+
return /* @__PURE__ */ jsx(
|
|
16605
|
+
"div",
|
|
16606
|
+
{
|
|
16607
|
+
className: `liquid-surface rounded-xl p-2.5 transition-all duration-500 ${statusClass}`,
|
|
16608
|
+
style: status === "running" ? { "--glow": meta.glow, animation: "deptGlow 1.4s ease-in-out infinite" } : void 0,
|
|
16609
|
+
children: /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
|
|
16610
|
+
/* @__PURE__ */ jsx("div", { className: `flex h-8 w-8 shrink-0 items-center justify-center rounded-lg ${meta.bg}`, children: /* @__PURE__ */ jsx(meta.icon, { className: `h-4 w-4 ${meta.color}` }) }),
|
|
16611
|
+
/* @__PURE__ */ jsxs("div", { className: "min-w-0 flex-1", children: [
|
|
16612
|
+
/* @__PURE__ */ jsx("div", { className: "truncate text-[11px] font-semibold text-gray-900 dark:text-white", children: node2.data.label }),
|
|
16613
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-1 text-[8px] text-gray-500 dark:text-gray-500", children: [
|
|
16614
|
+
/* @__PURE__ */ jsx("span", { className: "truncate font-mono", children: meta.tag }),
|
|
16615
|
+
status === "running" && /* @__PURE__ */ jsxs("span", { className: `flex items-center gap-0.5 ${t.stepActiveBg.replace("bg-", "text-")}`, children: [
|
|
16616
|
+
/* @__PURE__ */ jsx("span", { className: "h-1 w-1 rounded-full bg-current animate-pulse" }),
|
|
16617
|
+
"ativo"
|
|
16618
|
+
] }),
|
|
16619
|
+
status === "complete" && /* @__PURE__ */ jsxs("span", { className: "flex items-center gap-0.5 text-emerald-500", children: [
|
|
16620
|
+
/* @__PURE__ */ jsx(CheckCircleIcon$1, { className: "h-2.5 w-2.5" }),
|
|
16621
|
+
"ok"
|
|
16622
|
+
] })
|
|
16623
|
+
] })
|
|
16618
16624
|
] })
|
|
16619
16625
|
] })
|
|
16620
|
-
|
|
16621
|
-
|
|
16622
|
-
|
|
16623
|
-
|
|
16624
|
-
)
|
|
16625
|
-
})
|
|
16626
|
-
|
|
16626
|
+
},
|
|
16627
|
+
node2.id
|
|
16628
|
+
);
|
|
16629
|
+
})
|
|
16630
|
+
] })
|
|
16631
|
+
] }, col.stepIndex);
|
|
16632
|
+
}) })
|
|
16627
16633
|
] }),
|
|
16628
16634
|
isComplete && completionSummary && /* @__PURE__ */ jsxs("div", { className: "border-t border-white/5 bg-emerald-500/[0.06] px-5 py-3 flex items-center gap-2", children: [
|
|
16629
|
-
/* @__PURE__ */ jsx(CheckCircleIcon$1, { className: "h-4 w-4 shrink-0 text-emerald-
|
|
16630
|
-
/* @__PURE__ */ jsx("span", { className: "text-[11px] font-semibold text-emerald-300", children: completionSummary })
|
|
16635
|
+
/* @__PURE__ */ jsx(CheckCircleIcon$1, { className: "h-4 w-4 shrink-0 text-emerald-500" }),
|
|
16636
|
+
/* @__PURE__ */ jsx("span", { className: "text-[11px] font-semibold text-emerald-700 dark:text-emerald-300", children: completionSummary })
|
|
16631
16637
|
] })
|
|
16632
16638
|
] });
|
|
16633
16639
|
}
|
|
@@ -17061,6 +17067,32 @@ var lgpdWorkflow = {
|
|
|
17061
17067
|
step("Filing compliance report\u2026", "report")
|
|
17062
17068
|
]
|
|
17063
17069
|
};
|
|
17070
|
+
var DEFAULT_ASSISTANT_THEME = {
|
|
17071
|
+
brandGradient: "from-blue-500 to-purple-600",
|
|
17072
|
+
inputAvatar: "from-blue-500 to-purple-600",
|
|
17073
|
+
inputBorder: "border-indigo-300/40 dark:border-indigo-400/30",
|
|
17074
|
+
inputCursor: "bg-indigo-500",
|
|
17075
|
+
stageActiveBadge: "bg-indigo-500/15 text-indigo-600 dark:text-indigo-300",
|
|
17076
|
+
progressActiveBar: "bg-indigo-500",
|
|
17077
|
+
workflow: {}
|
|
17078
|
+
};
|
|
17079
|
+
var koriAssistantTheme = {
|
|
17080
|
+
brandGradient: "from-amber-500 to-orange-600",
|
|
17081
|
+
inputAvatar: "from-amber-500 to-orange-600",
|
|
17082
|
+
inputBorder: "border-amber-300/50 dark:border-amber-400/40",
|
|
17083
|
+
inputCursor: "bg-amber-500",
|
|
17084
|
+
stageActiveBadge: "bg-amber-500/15 text-amber-700 dark:text-amber-300",
|
|
17085
|
+
progressActiveBar: "bg-amber-500",
|
|
17086
|
+
workflow: {
|
|
17087
|
+
runButtonGradient: "from-amber-500 to-orange-600",
|
|
17088
|
+
runButtonShadow: "shadow-amber-500/25",
|
|
17089
|
+
stepActiveBg: "bg-amber-500",
|
|
17090
|
+
activeRing: "ring-amber-500/60",
|
|
17091
|
+
activeEdgeStroke: "#f59e0b",
|
|
17092
|
+
completeEdgeStroke: "#10b981",
|
|
17093
|
+
badge: "bg-amber-500/15 text-amber-700 dark:text-amber-300"
|
|
17094
|
+
}
|
|
17095
|
+
};
|
|
17064
17096
|
function DepartmentAssistantDemo({
|
|
17065
17097
|
flows,
|
|
17066
17098
|
initialIndex = 0,
|
|
@@ -17068,8 +17100,11 @@ function DepartmentAssistantDemo({
|
|
|
17068
17100
|
dashboardHoldMs = 1e4,
|
|
17069
17101
|
typingSpeedMs = 32,
|
|
17070
17102
|
workflowStepMs = 1050,
|
|
17103
|
+
theme,
|
|
17104
|
+
brandName = "Kori AI Assistant",
|
|
17071
17105
|
className
|
|
17072
17106
|
}) {
|
|
17107
|
+
const t = { ...DEFAULT_ASSISTANT_THEME, ...theme, workflow: { ...DEFAULT_ASSISTANT_THEME.workflow, ...theme?.workflow } };
|
|
17073
17108
|
const [flowIndex, setFlowIndex] = useState(initialIndex);
|
|
17074
17109
|
const [stage, setStage] = useState("input");
|
|
17075
17110
|
const [typed, setTyped] = useState("");
|
|
@@ -17085,25 +17120,25 @@ function DepartmentAssistantDemo({
|
|
|
17085
17120
|
setTyped(flow.prompt.slice(0, i));
|
|
17086
17121
|
} else {
|
|
17087
17122
|
clearInterval(interval);
|
|
17088
|
-
const
|
|
17089
|
-
return () => clearTimeout(
|
|
17123
|
+
const timer = setTimeout(() => setStage("workflow"), 700);
|
|
17124
|
+
return () => clearTimeout(timer);
|
|
17090
17125
|
}
|
|
17091
17126
|
return void 0;
|
|
17092
17127
|
}, typingSpeedMs);
|
|
17093
17128
|
return () => clearInterval(interval);
|
|
17094
17129
|
}, [stage, flow.prompt, typingSpeedMs]);
|
|
17095
17130
|
const handleWorkflowComplete = useCallback(() => {
|
|
17096
|
-
const
|
|
17097
|
-
rotateTimerRef.current =
|
|
17131
|
+
const timer = setTimeout(() => setStage("dashboard"), 1200);
|
|
17132
|
+
rotateTimerRef.current = timer;
|
|
17098
17133
|
}, []);
|
|
17099
17134
|
useEffect(() => {
|
|
17100
17135
|
if (stage !== "dashboard") return void 0;
|
|
17101
17136
|
if (!autoRotate) return void 0;
|
|
17102
|
-
const
|
|
17137
|
+
const timer = setTimeout(() => {
|
|
17103
17138
|
setFlowIndex((prev) => (prev + 1) % flows.length);
|
|
17104
17139
|
setStage("input");
|
|
17105
17140
|
}, dashboardHoldMs);
|
|
17106
|
-
return () => clearTimeout(
|
|
17141
|
+
return () => clearTimeout(timer);
|
|
17107
17142
|
}, [stage, autoRotate, dashboardHoldMs, flows.length]);
|
|
17108
17143
|
const handleDepartmentSelect = useCallback((next) => {
|
|
17109
17144
|
if (rotateTimerRef.current) clearTimeout(rotateTimerRef.current);
|
|
@@ -17114,8 +17149,8 @@ function DepartmentAssistantDemo({
|
|
|
17114
17149
|
return /* @__PURE__ */ jsxs("div", { className: `liquid-surface rounded-3xl overflow-hidden ${className ?? ""}`, children: [
|
|
17115
17150
|
/* @__PURE__ */ jsxs("div", { className: "border-b border-white/5 px-4 py-3 flex flex-wrap items-center gap-2", children: [
|
|
17116
17151
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 pr-3", children: [
|
|
17117
|
-
/* @__PURE__ */ jsx("div", { className:
|
|
17118
|
-
/* @__PURE__ */ jsx("span", { className: "text-sm font-bold text-gray-900 dark:text-white", children:
|
|
17152
|
+
/* @__PURE__ */ jsx("div", { className: `flex h-7 w-7 items-center justify-center rounded-lg bg-gradient-to-br ${t.brandGradient}`, children: /* @__PURE__ */ jsx(CpuChipIcon, { className: "h-4 w-4 text-white" }) }),
|
|
17153
|
+
/* @__PURE__ */ jsx("span", { className: "text-sm font-bold text-gray-900 dark:text-white", children: brandName })
|
|
17119
17154
|
] }),
|
|
17120
17155
|
/* @__PURE__ */ jsx("div", { className: "flex-1" }),
|
|
17121
17156
|
/* @__PURE__ */ jsx("div", { className: "flex flex-wrap items-center gap-1.5", children: flows.map((entry, index) => {
|
|
@@ -17125,7 +17160,7 @@ function DepartmentAssistantDemo({
|
|
|
17125
17160
|
{
|
|
17126
17161
|
type: "button",
|
|
17127
17162
|
onClick: () => handleDepartmentSelect(index),
|
|
17128
|
-
className: `group inline-flex items-center gap-1.5 rounded-full px-3 py-1.5 text-[11px] font-semibold transition-all ${isActive ? `bg-gradient-to-r ${entry.accent} text-white shadow-lg
|
|
17163
|
+
className: `group inline-flex items-center gap-1.5 rounded-full px-3 py-1.5 text-[11px] font-semibold transition-all ${isActive ? `bg-gradient-to-r ${entry.accent} text-white shadow-lg scale-105` : "text-gray-600 dark:text-gray-400 hover:bg-white/5 hover:text-gray-900 dark:hover:text-white"}`,
|
|
17129
17164
|
children: [
|
|
17130
17165
|
/* @__PURE__ */ jsx(entry.icon, { className: "h-3.5 w-3.5" }),
|
|
17131
17166
|
entry.name
|
|
@@ -17136,11 +17171,11 @@ function DepartmentAssistantDemo({
|
|
|
17136
17171
|
}) })
|
|
17137
17172
|
] }),
|
|
17138
17173
|
/* @__PURE__ */ jsxs("div", { className: "border-b border-white/5 px-6 py-3 flex items-center gap-3 text-[11px]", children: [
|
|
17139
|
-
/* @__PURE__ */ jsx(StageChip, { label: "Ask", stageIndex, mine: 0 }),
|
|
17174
|
+
/* @__PURE__ */ jsx(StageChip, { label: "Ask", stageIndex, mine: 0, activeBadge: t.stageActiveBadge }),
|
|
17140
17175
|
/* @__PURE__ */ jsx("div", { className: "h-px flex-1 bg-gradient-to-r from-white/10 to-white/5" }),
|
|
17141
|
-
/* @__PURE__ */ jsx(StageChip, { label: "Orchestrate", stageIndex, mine: 1 }),
|
|
17176
|
+
/* @__PURE__ */ jsx(StageChip, { label: "Orchestrate", stageIndex, mine: 1, activeBadge: t.stageActiveBadge }),
|
|
17142
17177
|
/* @__PURE__ */ jsx("div", { className: "h-px flex-1 bg-gradient-to-r from-white/5 to-white/10" }),
|
|
17143
|
-
/* @__PURE__ */ jsx(StageChip, { label: "Deliver", stageIndex, mine: 2 })
|
|
17178
|
+
/* @__PURE__ */ jsx(StageChip, { label: "Deliver", stageIndex, mine: 2, activeBadge: t.stageActiveBadge })
|
|
17144
17179
|
] }),
|
|
17145
17180
|
/* @__PURE__ */ jsx("div", { className: "relative", style: { minHeight: 600 }, children: /* @__PURE__ */ jsxs(AnimatePresence, { mode: "wait", children: [
|
|
17146
17181
|
stage === "input" && /* @__PURE__ */ jsx(
|
|
@@ -17151,7 +17186,17 @@ function DepartmentAssistantDemo({
|
|
|
17151
17186
|
exit: { opacity: 0, y: -12 },
|
|
17152
17187
|
transition: { duration: 0.45 },
|
|
17153
17188
|
className: "flex items-center justify-center p-10",
|
|
17154
|
-
children: /* @__PURE__ */ jsx(
|
|
17189
|
+
children: /* @__PURE__ */ jsx(
|
|
17190
|
+
InputStage3,
|
|
17191
|
+
{
|
|
17192
|
+
prompt: typed,
|
|
17193
|
+
department: flow.name,
|
|
17194
|
+
agents: flow.agents,
|
|
17195
|
+
avatarGradient: t.inputAvatar,
|
|
17196
|
+
borderClass: t.inputBorder,
|
|
17197
|
+
cursorClass: t.inputCursor
|
|
17198
|
+
}
|
|
17199
|
+
)
|
|
17155
17200
|
},
|
|
17156
17201
|
`input-${flow.id}`
|
|
17157
17202
|
),
|
|
@@ -17170,7 +17215,8 @@ function DepartmentAssistantDemo({
|
|
|
17170
17215
|
autoPlay: true,
|
|
17171
17216
|
hideHeader: true,
|
|
17172
17217
|
stepDurationMs: workflowStepMs,
|
|
17173
|
-
onComplete: handleWorkflowComplete
|
|
17218
|
+
onComplete: handleWorkflowComplete,
|
|
17219
|
+
theme: t.workflow
|
|
17174
17220
|
},
|
|
17175
17221
|
`wf-${flow.id}`
|
|
17176
17222
|
)
|
|
@@ -17192,7 +17238,7 @@ function DepartmentAssistantDemo({
|
|
|
17192
17238
|
] }) }),
|
|
17193
17239
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between border-t border-white/5 px-5 py-3", children: [
|
|
17194
17240
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 text-[11px] text-gray-500 dark:text-gray-400", children: [
|
|
17195
|
-
/* @__PURE__ */ jsx(BoltIcon, { className:
|
|
17241
|
+
/* @__PURE__ */ jsx(BoltIcon, { className: `h-3.5 w-3.5 ${t.progressActiveBar.replace("bg-", "text-")}` }),
|
|
17196
17242
|
/* @__PURE__ */ jsxs("span", { className: "font-medium", children: [
|
|
17197
17243
|
stage === "input" && "Usu\xE1rio envia um pedido ao assistente\u2026",
|
|
17198
17244
|
stage === "workflow" && "Astrlabe orquestrando agentes e datasources\u2026",
|
|
@@ -17202,20 +17248,20 @@ function DepartmentAssistantDemo({
|
|
|
17202
17248
|
/* @__PURE__ */ jsx("div", { className: "flex items-center gap-1", children: flows.map((entry, index) => /* @__PURE__ */ jsx(
|
|
17203
17249
|
"span",
|
|
17204
17250
|
{
|
|
17205
|
-
className: `h-1 rounded-full transition-all duration-500 ${index === flowIndex ?
|
|
17251
|
+
className: `h-1 rounded-full transition-all duration-500 ${index === flowIndex ? `w-8 ${t.progressActiveBar}` : "w-1.5 bg-gray-300 dark:bg-white/10"}`
|
|
17206
17252
|
},
|
|
17207
17253
|
entry.id
|
|
17208
17254
|
)) })
|
|
17209
17255
|
] })
|
|
17210
17256
|
] });
|
|
17211
17257
|
}
|
|
17212
|
-
function StageChip({ label, stageIndex, mine }) {
|
|
17258
|
+
function StageChip({ label, stageIndex, mine, activeBadge }) {
|
|
17213
17259
|
const isActive = stageIndex === mine;
|
|
17214
17260
|
const isDone = stageIndex > mine;
|
|
17215
17261
|
return /* @__PURE__ */ jsxs(
|
|
17216
17262
|
"div",
|
|
17217
17263
|
{
|
|
17218
|
-
className: `inline-flex items-center gap-1.5 rounded-full px-2.5 py-0.5 font-semibold transition-colors ${isActive ?
|
|
17264
|
+
className: `inline-flex items-center gap-1.5 rounded-full px-2.5 py-0.5 font-semibold transition-colors ${isActive ? activeBadge : isDone ? "bg-emerald-500/10 text-emerald-600 dark:text-emerald-300" : "bg-white/5 text-gray-500 dark:text-gray-500"}`,
|
|
17219
17265
|
children: [
|
|
17220
17266
|
isDone ? /* @__PURE__ */ jsx(CheckCircleIcon$1, { className: "h-3.5 w-3.5" }) : isActive ? /* @__PURE__ */ jsx(BoltIcon, { className: "h-3.5 w-3.5 animate-pulse" }) : /* @__PURE__ */ jsx("span", { className: "h-1.5 w-1.5 rounded-full bg-current" }),
|
|
17221
17267
|
label
|
|
@@ -17223,10 +17269,17 @@ function StageChip({ label, stageIndex, mine }) {
|
|
|
17223
17269
|
}
|
|
17224
17270
|
);
|
|
17225
17271
|
}
|
|
17226
|
-
function InputStage3({
|
|
17272
|
+
function InputStage3({
|
|
17273
|
+
prompt,
|
|
17274
|
+
department,
|
|
17275
|
+
agents,
|
|
17276
|
+
avatarGradient,
|
|
17277
|
+
borderClass,
|
|
17278
|
+
cursorClass
|
|
17279
|
+
}) {
|
|
17227
17280
|
return /* @__PURE__ */ jsx("div", { className: "w-full max-w-2xl", children: /* @__PURE__ */ jsxs("div", { className: "rounded-2xl border border-white/10 bg-white/70 dark:bg-zinc-900/70 p-8 shadow-2xl backdrop-blur-sm", children: [
|
|
17228
17281
|
/* @__PURE__ */ jsxs("div", { className: "mb-6 flex items-center gap-3", children: [
|
|
17229
|
-
/* @__PURE__ */ jsx("div", { className:
|
|
17282
|
+
/* @__PURE__ */ jsx("div", { className: `h-12 w-12 rounded-xl bg-gradient-to-br ${avatarGradient} flex items-center justify-center`, children: /* @__PURE__ */ jsx(SparklesIcon, { className: "h-6 w-6 text-white" }) }),
|
|
17230
17283
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
17231
17284
|
/* @__PURE__ */ jsxs("h3", { className: "text-base font-bold text-gray-900 dark:text-white", children: [
|
|
17232
17285
|
"Assistente \u2014 ",
|
|
@@ -17235,17 +17288,17 @@ function InputStage3({ prompt, department, agents }) {
|
|
|
17235
17288
|
/* @__PURE__ */ jsx("p", { className: "text-xs text-gray-500 dark:text-gray-400", children: "Digite um pedido e veja os agentes atuarem." })
|
|
17236
17289
|
] })
|
|
17237
17290
|
] }),
|
|
17238
|
-
/* @__PURE__ */ jsx("div", { className:
|
|
17291
|
+
/* @__PURE__ */ jsx("div", { className: `rounded-xl border-2 ${borderClass} bg-white/40 dark:bg-white/[0.02] p-4 min-h-[120px]`, children: /* @__PURE__ */ jsxs("p", { className: "text-base font-medium text-gray-900 dark:text-white", children: [
|
|
17239
17292
|
prompt,
|
|
17240
|
-
/* @__PURE__ */ jsx("span", { className:
|
|
17293
|
+
/* @__PURE__ */ jsx("span", { className: `ml-1 inline-block w-0.5 h-5 ${cursorClass} animate-pulse` })
|
|
17241
17294
|
] }) }),
|
|
17242
17295
|
/* @__PURE__ */ jsxs("div", { className: "mt-4 flex items-center gap-2 text-xs text-gray-500 dark:text-gray-400", children: [
|
|
17243
|
-
/* @__PURE__ */ jsx(BoltIcon, { className:
|
|
17296
|
+
/* @__PURE__ */ jsx(BoltIcon, { className: `h-3.5 w-3.5 ${cursorClass.replace("bg-", "text-")}` }),
|
|
17244
17297
|
"Agentes prontos:",
|
|
17245
17298
|
/* @__PURE__ */ jsx("div", { className: "flex flex-wrap gap-1.5", children: agents.map((agent) => /* @__PURE__ */ jsx(
|
|
17246
17299
|
"span",
|
|
17247
17300
|
{
|
|
17248
|
-
className: "inline-flex items-center rounded-full border border-
|
|
17301
|
+
className: "inline-flex items-center rounded-full border border-white/10 bg-white/60 dark:bg-white/[0.04] px-2 py-0.5 text-[10px] font-semibold text-gray-700 dark:text-gray-200",
|
|
17249
17302
|
children: agent
|
|
17250
17303
|
},
|
|
17251
17304
|
agent
|
|
@@ -24515,6 +24568,6 @@ function SkipToContent({
|
|
|
24515
24568
|
);
|
|
24516
24569
|
}
|
|
24517
24570
|
|
|
24518
|
-
export { AIOrchestratorDemo, ARGENTINA_ACCENT_MAP, ARGENTINA_MACRO_REGIONS, ARGENTINA_MAP_CENTER, ARGENTINA_PROVINCE_COORDINATES, ARGENTINA_PROVINCE_PALETTES, AR_THEME_CONFIG, AUSTRALIA_ACCENT_MAP, AUSTRALIA_MACRO_REGIONS, AUSTRALIA_MAP_CENTER, AUSTRALIA_STATE_COORDINATES, AUSTRALIA_STATE_PALETTES, AU_THEME_CONFIG, ActionMenu, ActionSheet, ActiveFilterChips, AgentAnalysisCard, AnalysisSkeleton, AnimatedNumber, AnimatedTableRow, AppLogo, AppNavigation, AppShell, ArchiveSwipeAction, AuthLayout, Avatar, AvatarButton, BRAZIL_ACCENT_MAP, BRAZIL_MACRO_REGIONS, BRAZIL_MAP_CENTER, BRAZIL_STATE_COORDINATES, BRAZIL_STATE_PALETTES, BR_THEME_CONFIG, BackupCodeGrid, BadRequestPage, Badge, BaseForm, BentoCard, BentoFeatureGrid, BooleanFlagsPicker, BottomSafeArea, BrandFilterSkeleton, BrandedLoader, Breadcrumb, Button, CANADA_ACCENT_MAP, CANADA_MACRO_REGIONS, CANADA_MAP_CENTER, CANADA_PROVINCE_COORDINATES, CANADA_PROVINCE_PALETTES, CA_THEME_CONFIG, CHILE_ACCENT_MAP, CHILE_MACRO_REGIONS, CHILE_MAP_CENTER, CHILE_REGION_COORDINATES, CHILE_REGION_PALETTES, CL_THEME_CONFIG, COLOMBIA_ACCENT_MAP, COLOMBIA_DEPARTMENT_COORDINATES, COLOMBIA_DEPARTMENT_PALETTES, COLOMBIA_MACRO_REGIONS, COLOMBIA_MAP_CENTER, CO_THEME_CONFIG, Card, CardActionMenu, CardContent, CardDescription, CardDivider, CardFooter, CardGridSkeleton, CardHeader, CardSectionHeader, CardTitle, CategoryBadge, CategoryTab, CategoryTabs, ChartRenderer, ChipPicker, CircularRefreshIndicator, Code, CollapsibleGroupedList, CompactSegmentedControl, ContactCard, ContactSection, Container, ContextMenu, CookieConsent, CopyableId, CountPill, CreateActionButton, CustomerAnalyticsDemo, DE_THEME_CONFIG, DashboardDemo, DashboardDemoLayout, DashboardProgressShell, DashboardView, DataPagination, DatePicker, DeleteSwipeAction, DepartmentAssistantDemo, DepartmentWorkflowDemo, Description4 as Description, DetailsPopover, DevModeBanner, Dialog4 as Dialog, DialogActions, DialogBody, DialogDescription, DialogTitle3 as DialogTitle, Divider, Dock, DockContainer, DockSkeleton, DotRefreshIndicator, Dropdown, DropdownButton, DropdownDivider, DropdownItem, DropdownLabel, DropdownMenu, DropdownSelect, DynamicIsland, DynamicIslandConfirm, DynamicIslandNotification, EGYPT_ACCENT_MAP, EGYPT_GOVERNORATE_COORDINATES, EGYPT_GOVERNORATE_PALETTES, EGYPT_MACRO_REGIONS, EGYPT_MAP_CENTER, EG_THEME_CONFIG, ES_THEME_CONFIG, EdgeSwipeIndicator, EdgeSwipeProvider, EditSwipeAction, EmptyState, EntityCard, EntityDrawer, ErrorMessage, ErrorState, ExpandableHistoryList, ExpandingPageIndicator, FRANCE_ACCENT_MAP, FRANCE_MACRO_REGIONS, FRANCE_MAP_CENTER, FRANCE_REGION_COORDINATES, FRANCE_REGION_PALETTES, FR_THEME_CONFIG, FUEL_PRICE_LOADER, FavoriteSwipeAction, FeatureCard, FeedItemCard, Field2 as Field, FieldGroup, Fieldset2 as Fieldset, FilterBadge, FilterPill, FilterSectionHeader, FilterTileButton, FinancialDemo, FloatingActionButton, FlyoutMenu, FlyoutNavGrid, FlyoutQuickActions, ForceTouchMenu, Form, FormActions, FormActionsRow, FormCheckbox, FormField, FormGrid, FormInput, FormPriceInput, FormSection, FormSelect, FormTextarea, FormToggle, FuelPipelineDemo, GB_THEME_CONFIG, GERMANY_ACCENT_MAP, GERMANY_MACRO_REGIONS, GERMANY_MAP_CENTER, GERMANY_STATE_COORDINATES, GERMANY_STATE_PALETTES, GeoMapCanvas, GeoMapLegend, GlassModal, Gradient, GradientBackground, GrowthIndicator, HRRecruitmentDemo, Heading, HeroPanel, HeroSection, ID_THEME_CONFIG, INDIA_ACCENT_MAP, INDIA_MACRO_REGIONS, INDIA_MAP_CENTER, INDIA_STATE_COORDINATES, INDIA_STATE_PALETTES, INDONESIA_ACCENT_MAP, INDONESIA_MACRO_REGIONS, INDONESIA_MAP_CENTER, INDONESIA_PROVINCE_COORDINATES, INDONESIA_PROVINCE_PALETTES, IN_THEME_CONFIG, ITALY_ACCENT_MAP, ITALY_MACRO_REGIONS, ITALY_MAP_CENTER, ITALY_REGION_COORDINATES, ITALY_REGION_PALETTES, IT_THEME_CONFIG, IconButton, ImageUpload, IncidentPipelineDemo, InfoPopover, InlineForm, InlineSpinner, Input, InteractiveGeoMap, InventoryDemo, ItemSummary, JAPAN_ACCENT_MAP, JAPAN_MACRO_REGIONS, JAPAN_MAP_CENTER, JAPAN_PREFECTURE_COORDINATES, JAPAN_PREFECTURE_PALETTES, JP_THEME_CONFIG, KORI_ERP_LOADER, KR_THEME_CONFIG, LGPDComplianceDemo, LOCALE_FLAGS, Label2 as Label, LabeledToggle, LanguageSwitcher, LaunchpadGrid, Lead, Legend2 as Legend, LiquidFilterInput, ListCard, ListCardItem, ListItem, LoadingOverlay, MEXICO_ACCENT_MAP, MEXICO_MACRO_REGIONS, MEXICO_MAP_CENTER, MEXICO_STATE_COORDINATES, MEXICO_STATE_PALETTES, MX_THEME_CONFIG, ManagementPageLayout, ManagementSurface, MapZoomControls, MarketPricesCard, MarketingDemo, MetricCard, MonthPicker, MultiColumnPicker, NETHERLANDS_ACCENT_MAP, NETHERLANDS_MACRO_REGIONS, NETHERLANDS_MAP_CENTER, NETHERLANDS_PROVINCE_COORDINATES, NETHERLANDS_PROVINCE_PALETTES, NEW_ZEALAND_ACCENT_MAP, NEW_ZEALAND_MACRO_REGIONS, NEW_ZEALAND_MAP_CENTER, NEW_ZEALAND_REGION_COORDINATES, NEW_ZEALAND_REGION_PALETTES, NG_THEME_CONFIG, NIGERIA_ACCENT_MAP, NIGERIA_MACRO_REGIONS, NIGERIA_MAP_CENTER, NIGERIA_STATE_COORDINATES, NIGERIA_STATE_PALETTES, NL_THEME_CONFIG, NORWAY_ACCENT_MAP, NORWAY_COUNTY_COORDINATES, NORWAY_COUNTY_PALETTES, NORWAY_MACRO_REGIONS, NORWAY_MAP_CENTER, NO_THEME_CONFIG, NZ_THEME_CONFIG, NavigationProgress, NoDataState, NoResultsState, NotFoundPage, NotificationBadge, NotificationBellButton, NotificationProvider, OfficeCard, OfflineState, OptionGrid, OtpInput, PERU_ACCENT_MAP, PERU_DEPARTMENT_COORDINATES, PERU_DEPARTMENT_PALETTES, PERU_MACRO_REGIONS, PERU_MAP_CENTER, PE_THEME_CONFIG, PHILIPPINES_ACCENT_MAP, PHILIPPINES_MACRO_REGIONS, PHILIPPINES_MAP_CENTER, PHILIPPINES_PROVINCE_COORDINATES, PHILIPPINES_PROVINCE_PALETTES, PH_THEME_CONFIG, PL_THEME_CONFIG, POLAND_ACCENT_MAP, POLAND_MACRO_REGIONS, POLAND_MAP_CENTER, POLAND_VOIVODESHIP_COORDINATES, POLAND_VOIVODESHIP_PALETTES, PORTUGAL_ACCENT_MAP, PORTUGAL_DISTRICT_COORDINATES, PORTUGAL_DISTRICT_PALETTES, PORTUGAL_MACRO_REGIONS, PORTUGAL_MAP_CENTER, PT_THEME_CONFIG, PageEmptyState, PageErrorState, PageHeader, PageHeading, PageIndicator, PageLoadingState, PageSectionHeader, Pagination, PasswordInput, PasswordStrengthMeter, Pill, PlatformShell, PlusGrid, PlusGridItem, PlusGridRow, PreferenceSection, PriceChangeBadge, ProfileIdentityCard, Progress, ProgressIndicator, PullToRefreshContainer, PullToRefreshIndicator, RadiantHeading, RadiantStatCard, RadiantSubheading, RecommendationCard, RegionFilterSkeleton, RoleBadge, SE_THEME_CONFIG, SOUTH_AFRICA_ACCENT_MAP, SOUTH_AFRICA_MACRO_REGIONS, SOUTH_AFRICA_MAP_CENTER, SOUTH_AFRICA_PROVINCE_COORDINATES, SOUTH_AFRICA_PROVINCE_PALETTES, SOUTH_KOREA_ACCENT_MAP, SOUTH_KOREA_MACRO_REGIONS, SOUTH_KOREA_MAP_CENTER, SOUTH_KOREA_PROVINCE_COORDINATES, SOUTH_KOREA_PROVINCE_PALETTES, SPAIN_ACCENT_MAP, SPAIN_MACRO_REGIONS, SPAIN_MAP_CENTER, SPAIN_PROVINCE_COORDINATES, SPAIN_PROVINCE_PALETTES, SWEDEN_ACCENT_MAP, SWEDEN_COUNTY_COORDINATES, SWEDEN_COUNTY_PALETTES, SWEDEN_MACRO_REGIONS, SWEDEN_MAP_CENTER, SafeArea, SafeAreaSpacer, SafeAreaView, SalesDemo, SearchBar, SearchFilterToolbar, SearchInput, SectionCard, SectionHeader, SectionHeaderSkeleton, SegmentedControl, Select, SelectableChipPicker, SelectableListPicker, SelectableOptionsGrid, SelectableTableRow, SelectionCard, ServerErrorPage, SettingsModal, Sheet, SkipToContent, SocialLoginButtons, SortableTableHeader, Spinner, Stat, StatCard, StatCardSkeleton, StatusBadge, StatusToggle, StepFormPage, StepNavigationButtons, StepTimeline, Strong, Subheading, SwipeableRow, Switch2 as Switch, THAILAND_ACCENT_MAP, THAILAND_MACRO_REGIONS, THAILAND_MAP_CENTER, THAILAND_PROVINCE_COORDINATES, THAILAND_PROVINCE_PALETTES, TH_THEME_CONFIG, TR_THEME_CONFIG, TURKEY_ACCENT_MAP, TURKEY_MACRO_REGIONS, TURKEY_MAP_CENTER, TURKEY_PROVINCE_COORDINATES, TURKEY_PROVINCE_PALETTES, Table, TableBody, TableCell, TableEmptyState, TableHead, TableHeader, TableRow, TableSkeleton, TableSkeletonRow, Tabs, TabsContent, TabsList, TabsTrigger, TagBadge, Text, TextLink, Textarea, ThemeSwitch, ThemeToggle, ThemeToggleCompact, TimePicker, ToggleSwitch, TouchTarget, UK_ACCENT_MAP, UK_MACRO_REGIONS, UK_MAP_CENTER, UK_NATION_COORDINATES, UK_NATION_PALETTES, US_ACCENT_MAP, US_MACRO_REGIONS, US_MAP_CENTER, US_STATE_COORDINATES, US_STATE_PALETTES, US_THEME_CONFIG, UserAvatar, UserMobileInfo, WINDSOCK_LOADER, WIRE_LOADER, WheelPicker, WindsockIcon, ZA_THEME_CONFIG, buildDockActions, buildFlyoutNavItems, buildLaunchpadItems, buttonPress, buttonPressReduced, buttonTap, cardHover, cardHoverReduced, cardPress, computeDomain, computeSeries, createMotionProps, customerAnalyticsWorkflow, durations, durationsReduced, easings, fadeOnly, fadeScale, filterByPermission, financialWorkflow, formatAddress, formatCurrency, formatCurrency2, formatDate, formatPercentage, getAllCountries, getArgentinaAccent, getArgentinaColors, getArgentinaFlagUrl, getArgentinaGradient, getArgentinaHexColor, getArgentinaPalette, getAustraliaAccent, getAustraliaColors, getAustraliaFlagUrl, getAustraliaGradient, getAustraliaHexColor, getAustraliaPalette, getBrazilAccent, getBrazilColors, getBrazilFlagUrl, getBrazilGradient, getBrazilHexColor, getBrazilPalette, getCanadaAccent, getCanadaColors, getCanadaFlagUrl, getCanadaGradient, getCanadaHexColor, getCanadaPalette, getChileAccent, getChileColors, getChileFlagUrl, getChileGradient, getChileHexColor, getChilePalette, getColombiaAccent, getColombiaColors, getColombiaFlagUrl, getColombiaGradient, getColombiaHexColor, getColombiaPalette, getCountryConfig, getEgyptAccent, getEgyptColors, getEgyptFlagUrl, getEgyptGradient, getEgyptHexColor, getEgyptPalette, getFranceAccent, getFranceColors, getFranceFlagUrl, getFranceGradient, getFranceHexColor, getFrancePalette, getGermanyAccent, getGermanyColors, getGermanyFlagUrl, getGermanyGradient, getGermanyHexColor, getGermanyPalette, getIndiaAccent, getIndiaColors, getIndiaFlagUrl, getIndiaGradient, getIndiaHexColor, getIndiaPalette, getIndonesiaAccent, getIndonesiaColors, getIndonesiaFlagUrl, getIndonesiaGradient, getIndonesiaHexColor, getIndonesiaPalette, getItalyAccent, getItalyColors, getItalyFlagUrl, getItalyGradient, getItalyHexColor, getItalyPalette, getJapanAccent, getJapanColors, getJapanFlagUrl, getJapanGradient, getJapanHexColor, getJapanPalette, getMexicoAccent, getMexicoColors, getMexicoFlagUrl, getMexicoGradient, getMexicoHexColor, getMexicoPalette, getNetherlandsAccent, getNetherlandsColors, getNetherlandsFlagUrl, getNetherlandsGradient, getNetherlandsHexColor, getNetherlandsPalette, getNewZealandAccent, getNewZealandColors, getNewZealandFlagUrl, getNewZealandGradient, getNewZealandHexColor, getNewZealandPalette, getNigeriaAccent, getNigeriaColors, getNigeriaFlagUrl, getNigeriaGradient, getNigeriaHexColor, getNigeriaPalette, getNorwayAccent, getNorwayColors, getNorwayFlagUrl, getNorwayGradient, getNorwayHexColor, getNorwayPalette, getPeruAccent, getPeruColors, getPeruFlagUrl, getPeruGradient, getPeruHexColor, getPeruPalette, getPhilippinesAccent, getPhilippinesColors, getPhilippinesFlagUrl, getPhilippinesGradient, getPhilippinesHexColor, getPhilippinesPalette, getPolandAccent, getPolandColors, getPolandFlagUrl, getPolandGradient, getPolandHexColor, getPolandPalette, getPortugalAccent, getPortugalColors, getPortugalFlagUrl, getPortugalGradient, getPortugalHexColor, getPortugalPalette, getSouthAfricaAccent, getSouthAfricaColors, getSouthAfricaFlagUrl, getSouthAfricaGradient, getSouthAfricaHexColor, getSouthAfricaPalette, getSouthKoreaAccent, getSouthKoreaColors, getSouthKoreaFlagUrl, getSouthKoreaGradient, getSouthKoreaHexColor, getSouthKoreaPalette, getSpainAccent, getSpainColors, getSpainFlagUrl, getSpainGradient, getSpainHexColor, getSpainPalette, getStatusColor, getSubdivisionAccent, getSubdivisionColors, getSubdivisionFlagUrl, getSubdivisionGradient, getSubdivisionHexColor, getSubdivisionPalette, getSwedenAccent, getSwedenColors, getSwedenFlagUrl, getSwedenGradient, getSwedenHexColor, getSwedenPalette, getThailandAccent, getThailandColors, getThailandFlagUrl, getThailandGradient, getThailandHexColor, getThailandPalette, getTransition, getTurkeyAccent, getTurkeyColors, getTurkeyFlagUrl, getTurkeyGradient, getTurkeyHexColor, getTurkeyPalette, getUKAccent, getUKColors, getUKFlagUrl, getUKGradient, getUKHexColor, getUKPalette, getUsAccent, getUsColors, getUsFlagUrl, getUsGradient, getUsHexColor, getUsPalette, getVariants, hrWorkflow, inventoryWorkflow, iosColors, isValidArgentinaProvince, isValidAustraliaState, isValidBrazilState, isValidCanadaProvince, isValidChileRegion, isValidColombiaDepartment, isValidEgyptGovernorate, isValidFranceRegion, isValidGermanyState, isValidIndiaState, isValidIndonesiaProvince, isValidItalyRegion, isValidJapanPrefecture, isValidMexicoState, isValidNetherlandsProvince, isValidNewZealandRegion, isValidNigeriaState, isValidNorwayCounty, isValidPeruDepartment, isValidPhilippinesProvince, isValidPolandVoivodeship, isValidPortugalDistrict, isValidSouthAfricaProvince, isValidSouthKoreaProvince, isValidSpainProvince, isValidSubdivision, isValidSwedenCounty, isValidThailandProvince, isValidTurkeyProvince, isValidUKNation, isValidUsState, koriDepartmentFlows, lgpdWorkflow, listItem, listItemReduced, logisticsWorkflow, manufacturingWorkflow, marketingWorkflow, notificationBanner, notificationBannerReduced, pageControlDot, payrollWorkflow, prefersReducedMotion, registerCountry, registerSubdivisionTheme, resolveGlassAccentRgb, salesWorkflow, selectIsAuthenticated, selectShowShellChrome, selectUserInitial, selectUserName, shimmerClass, shimmerWhiteClass, slideDown, slideRight, slideUp, springPresets, springPresetsReduced, staggerContainer, supportWorkflow, swipeActionThreshold, swipeConstraints, useGeoMapState, useNotifications, usePlatformShellStore, usePullToRefresh, validateDashboardSpec, xScale, yScale };
|
|
24519
|
-
//# sourceMappingURL=chunk-
|
|
24520
|
-
//# sourceMappingURL=chunk-
|
|
24571
|
+
export { AIOrchestratorDemo, ARGENTINA_ACCENT_MAP, ARGENTINA_MACRO_REGIONS, ARGENTINA_MAP_CENTER, ARGENTINA_PROVINCE_COORDINATES, ARGENTINA_PROVINCE_PALETTES, AR_THEME_CONFIG, AUSTRALIA_ACCENT_MAP, AUSTRALIA_MACRO_REGIONS, AUSTRALIA_MAP_CENTER, AUSTRALIA_STATE_COORDINATES, AUSTRALIA_STATE_PALETTES, AU_THEME_CONFIG, ActionMenu, ActionSheet, ActiveFilterChips, AgentAnalysisCard, AnalysisSkeleton, AnimatedNumber, AnimatedTableRow, AppLogo, AppNavigation, AppShell, ArchiveSwipeAction, AuthLayout, Avatar, AvatarButton, BRAZIL_ACCENT_MAP, BRAZIL_MACRO_REGIONS, BRAZIL_MAP_CENTER, BRAZIL_STATE_COORDINATES, BRAZIL_STATE_PALETTES, BR_THEME_CONFIG, BackupCodeGrid, BadRequestPage, Badge, BaseForm, BentoCard, BentoFeatureGrid, BooleanFlagsPicker, BottomSafeArea, BrandFilterSkeleton, BrandedLoader, Breadcrumb, Button, CANADA_ACCENT_MAP, CANADA_MACRO_REGIONS, CANADA_MAP_CENTER, CANADA_PROVINCE_COORDINATES, CANADA_PROVINCE_PALETTES, CA_THEME_CONFIG, CHILE_ACCENT_MAP, CHILE_MACRO_REGIONS, CHILE_MAP_CENTER, CHILE_REGION_COORDINATES, CHILE_REGION_PALETTES, CL_THEME_CONFIG, COLOMBIA_ACCENT_MAP, COLOMBIA_DEPARTMENT_COORDINATES, COLOMBIA_DEPARTMENT_PALETTES, COLOMBIA_MACRO_REGIONS, COLOMBIA_MAP_CENTER, CO_THEME_CONFIG, Card, CardActionMenu, CardContent, CardDescription, CardDivider, CardFooter, CardGridSkeleton, CardHeader, CardSectionHeader, CardTitle, CategoryBadge, CategoryTab, CategoryTabs, ChartRenderer, ChipPicker, CircularRefreshIndicator, Code, CollapsibleGroupedList, CompactSegmentedControl, ContactCard, ContactSection, Container, ContextMenu, CookieConsent, CopyableId, CountPill, CreateActionButton, CustomerAnalyticsDemo, DE_THEME_CONFIG, DashboardDemo, DashboardDemoLayout, DashboardProgressShell, DashboardView, DataPagination, DatePicker, DeleteSwipeAction, DepartmentAssistantDemo, DepartmentWorkflowDemo, Description4 as Description, DetailsPopover, DevModeBanner, Dialog4 as Dialog, DialogActions, DialogBody, DialogDescription, DialogTitle3 as DialogTitle, Divider, Dock, DockContainer, DockSkeleton, DotRefreshIndicator, Dropdown, DropdownButton, DropdownDivider, DropdownItem, DropdownLabel, DropdownMenu, DropdownSelect, DynamicIsland, DynamicIslandConfirm, DynamicIslandNotification, EGYPT_ACCENT_MAP, EGYPT_GOVERNORATE_COORDINATES, EGYPT_GOVERNORATE_PALETTES, EGYPT_MACRO_REGIONS, EGYPT_MAP_CENTER, EG_THEME_CONFIG, ES_THEME_CONFIG, EdgeSwipeIndicator, EdgeSwipeProvider, EditSwipeAction, EmptyState, EntityCard, EntityDrawer, ErrorMessage, ErrorState, ExpandableHistoryList, ExpandingPageIndicator, FRANCE_ACCENT_MAP, FRANCE_MACRO_REGIONS, FRANCE_MAP_CENTER, FRANCE_REGION_COORDINATES, FRANCE_REGION_PALETTES, FR_THEME_CONFIG, FUEL_PRICE_LOADER, FavoriteSwipeAction, FeatureCard, FeedItemCard, Field2 as Field, FieldGroup, Fieldset2 as Fieldset, FilterBadge, FilterPill, FilterSectionHeader, FilterTileButton, FinancialDemo, FloatingActionButton, FlyoutMenu, FlyoutNavGrid, FlyoutQuickActions, ForceTouchMenu, Form, FormActions, FormActionsRow, FormCheckbox, FormField, FormGrid, FormInput, FormPriceInput, FormSection, FormSelect, FormTextarea, FormToggle, FuelPipelineDemo, GB_THEME_CONFIG, GERMANY_ACCENT_MAP, GERMANY_MACRO_REGIONS, GERMANY_MAP_CENTER, GERMANY_STATE_COORDINATES, GERMANY_STATE_PALETTES, GeoMapCanvas, GeoMapLegend, GlassModal, Gradient, GradientBackground, GrowthIndicator, HRRecruitmentDemo, Heading, HeroPanel, HeroSection, ID_THEME_CONFIG, INDIA_ACCENT_MAP, INDIA_MACRO_REGIONS, INDIA_MAP_CENTER, INDIA_STATE_COORDINATES, INDIA_STATE_PALETTES, INDONESIA_ACCENT_MAP, INDONESIA_MACRO_REGIONS, INDONESIA_MAP_CENTER, INDONESIA_PROVINCE_COORDINATES, INDONESIA_PROVINCE_PALETTES, IN_THEME_CONFIG, ITALY_ACCENT_MAP, ITALY_MACRO_REGIONS, ITALY_MAP_CENTER, ITALY_REGION_COORDINATES, ITALY_REGION_PALETTES, IT_THEME_CONFIG, IconButton, ImageUpload, IncidentPipelineDemo, InfoPopover, InlineForm, InlineSpinner, Input, InteractiveGeoMap, InventoryDemo, ItemSummary, JAPAN_ACCENT_MAP, JAPAN_MACRO_REGIONS, JAPAN_MAP_CENTER, JAPAN_PREFECTURE_COORDINATES, JAPAN_PREFECTURE_PALETTES, JP_THEME_CONFIG, KORI_ERP_LOADER, KR_THEME_CONFIG, LGPDComplianceDemo, LOCALE_FLAGS, Label2 as Label, LabeledToggle, LanguageSwitcher, LaunchpadGrid, Lead, Legend2 as Legend, LiquidFilterInput, ListCard, ListCardItem, ListItem, LoadingOverlay, MEXICO_ACCENT_MAP, MEXICO_MACRO_REGIONS, MEXICO_MAP_CENTER, MEXICO_STATE_COORDINATES, MEXICO_STATE_PALETTES, MX_THEME_CONFIG, ManagementPageLayout, ManagementSurface, MapZoomControls, MarketPricesCard, MarketingDemo, MetricCard, MonthPicker, MultiColumnPicker, NETHERLANDS_ACCENT_MAP, NETHERLANDS_MACRO_REGIONS, NETHERLANDS_MAP_CENTER, NETHERLANDS_PROVINCE_COORDINATES, NETHERLANDS_PROVINCE_PALETTES, NEW_ZEALAND_ACCENT_MAP, NEW_ZEALAND_MACRO_REGIONS, NEW_ZEALAND_MAP_CENTER, NEW_ZEALAND_REGION_COORDINATES, NEW_ZEALAND_REGION_PALETTES, NG_THEME_CONFIG, NIGERIA_ACCENT_MAP, NIGERIA_MACRO_REGIONS, NIGERIA_MAP_CENTER, NIGERIA_STATE_COORDINATES, NIGERIA_STATE_PALETTES, NL_THEME_CONFIG, NORWAY_ACCENT_MAP, NORWAY_COUNTY_COORDINATES, NORWAY_COUNTY_PALETTES, NORWAY_MACRO_REGIONS, NORWAY_MAP_CENTER, NO_THEME_CONFIG, NZ_THEME_CONFIG, NavigationProgress, NoDataState, NoResultsState, NotFoundPage, NotificationBadge, NotificationBellButton, NotificationProvider, OfficeCard, OfflineState, OptionGrid, OtpInput, PERU_ACCENT_MAP, PERU_DEPARTMENT_COORDINATES, PERU_DEPARTMENT_PALETTES, PERU_MACRO_REGIONS, PERU_MAP_CENTER, PE_THEME_CONFIG, PHILIPPINES_ACCENT_MAP, PHILIPPINES_MACRO_REGIONS, PHILIPPINES_MAP_CENTER, PHILIPPINES_PROVINCE_COORDINATES, PHILIPPINES_PROVINCE_PALETTES, PH_THEME_CONFIG, PL_THEME_CONFIG, POLAND_ACCENT_MAP, POLAND_MACRO_REGIONS, POLAND_MAP_CENTER, POLAND_VOIVODESHIP_COORDINATES, POLAND_VOIVODESHIP_PALETTES, PORTUGAL_ACCENT_MAP, PORTUGAL_DISTRICT_COORDINATES, PORTUGAL_DISTRICT_PALETTES, PORTUGAL_MACRO_REGIONS, PORTUGAL_MAP_CENTER, PT_THEME_CONFIG, PageEmptyState, PageErrorState, PageHeader, PageHeading, PageIndicator, PageLoadingState, PageSectionHeader, Pagination, PasswordInput, PasswordStrengthMeter, Pill, PlatformShell, PlusGrid, PlusGridItem, PlusGridRow, PreferenceSection, PriceChangeBadge, ProfileIdentityCard, Progress, ProgressIndicator, PullToRefreshContainer, PullToRefreshIndicator, RadiantHeading, RadiantStatCard, RadiantSubheading, RecommendationCard, RegionFilterSkeleton, RoleBadge, SE_THEME_CONFIG, SOUTH_AFRICA_ACCENT_MAP, SOUTH_AFRICA_MACRO_REGIONS, SOUTH_AFRICA_MAP_CENTER, SOUTH_AFRICA_PROVINCE_COORDINATES, SOUTH_AFRICA_PROVINCE_PALETTES, SOUTH_KOREA_ACCENT_MAP, SOUTH_KOREA_MACRO_REGIONS, SOUTH_KOREA_MAP_CENTER, SOUTH_KOREA_PROVINCE_COORDINATES, SOUTH_KOREA_PROVINCE_PALETTES, SPAIN_ACCENT_MAP, SPAIN_MACRO_REGIONS, SPAIN_MAP_CENTER, SPAIN_PROVINCE_COORDINATES, SPAIN_PROVINCE_PALETTES, SWEDEN_ACCENT_MAP, SWEDEN_COUNTY_COORDINATES, SWEDEN_COUNTY_PALETTES, SWEDEN_MACRO_REGIONS, SWEDEN_MAP_CENTER, SafeArea, SafeAreaSpacer, SafeAreaView, SalesDemo, SearchBar, SearchFilterToolbar, SearchInput, SectionCard, SectionHeader, SectionHeaderSkeleton, SegmentedControl, Select, SelectableChipPicker, SelectableListPicker, SelectableOptionsGrid, SelectableTableRow, SelectionCard, ServerErrorPage, SettingsModal, Sheet, SkipToContent, SocialLoginButtons, SortableTableHeader, Spinner, Stat, StatCard, StatCardSkeleton, StatusBadge, StatusToggle, StepFormPage, StepNavigationButtons, StepTimeline, Strong, Subheading, SwipeableRow, Switch2 as Switch, THAILAND_ACCENT_MAP, THAILAND_MACRO_REGIONS, THAILAND_MAP_CENTER, THAILAND_PROVINCE_COORDINATES, THAILAND_PROVINCE_PALETTES, TH_THEME_CONFIG, TR_THEME_CONFIG, TURKEY_ACCENT_MAP, TURKEY_MACRO_REGIONS, TURKEY_MAP_CENTER, TURKEY_PROVINCE_COORDINATES, TURKEY_PROVINCE_PALETTES, Table, TableBody, TableCell, TableEmptyState, TableHead, TableHeader, TableRow, TableSkeleton, TableSkeletonRow, Tabs, TabsContent, TabsList, TabsTrigger, TagBadge, Text, TextLink, Textarea, ThemeSwitch, ThemeToggle, ThemeToggleCompact, TimePicker, ToggleSwitch, TouchTarget, UK_ACCENT_MAP, UK_MACRO_REGIONS, UK_MAP_CENTER, UK_NATION_COORDINATES, UK_NATION_PALETTES, US_ACCENT_MAP, US_MACRO_REGIONS, US_MAP_CENTER, US_STATE_COORDINATES, US_STATE_PALETTES, US_THEME_CONFIG, UserAvatar, UserMobileInfo, WINDSOCK_LOADER, WIRE_LOADER, WheelPicker, WindsockIcon, ZA_THEME_CONFIG, buildDockActions, buildFlyoutNavItems, buildLaunchpadItems, buttonPress, buttonPressReduced, buttonTap, cardHover, cardHoverReduced, cardPress, computeDomain, computeSeries, createMotionProps, customerAnalyticsWorkflow, durations, durationsReduced, easings, fadeOnly, fadeScale, filterByPermission, financialWorkflow, formatAddress, formatCurrency, formatCurrency2, formatDate, formatPercentage, getAllCountries, getArgentinaAccent, getArgentinaColors, getArgentinaFlagUrl, getArgentinaGradient, getArgentinaHexColor, getArgentinaPalette, getAustraliaAccent, getAustraliaColors, getAustraliaFlagUrl, getAustraliaGradient, getAustraliaHexColor, getAustraliaPalette, getBrazilAccent, getBrazilColors, getBrazilFlagUrl, getBrazilGradient, getBrazilHexColor, getBrazilPalette, getCanadaAccent, getCanadaColors, getCanadaFlagUrl, getCanadaGradient, getCanadaHexColor, getCanadaPalette, getChileAccent, getChileColors, getChileFlagUrl, getChileGradient, getChileHexColor, getChilePalette, getColombiaAccent, getColombiaColors, getColombiaFlagUrl, getColombiaGradient, getColombiaHexColor, getColombiaPalette, getCountryConfig, getEgyptAccent, getEgyptColors, getEgyptFlagUrl, getEgyptGradient, getEgyptHexColor, getEgyptPalette, getFranceAccent, getFranceColors, getFranceFlagUrl, getFranceGradient, getFranceHexColor, getFrancePalette, getGermanyAccent, getGermanyColors, getGermanyFlagUrl, getGermanyGradient, getGermanyHexColor, getGermanyPalette, getIndiaAccent, getIndiaColors, getIndiaFlagUrl, getIndiaGradient, getIndiaHexColor, getIndiaPalette, getIndonesiaAccent, getIndonesiaColors, getIndonesiaFlagUrl, getIndonesiaGradient, getIndonesiaHexColor, getIndonesiaPalette, getItalyAccent, getItalyColors, getItalyFlagUrl, getItalyGradient, getItalyHexColor, getItalyPalette, getJapanAccent, getJapanColors, getJapanFlagUrl, getJapanGradient, getJapanHexColor, getJapanPalette, getMexicoAccent, getMexicoColors, getMexicoFlagUrl, getMexicoGradient, getMexicoHexColor, getMexicoPalette, getNetherlandsAccent, getNetherlandsColors, getNetherlandsFlagUrl, getNetherlandsGradient, getNetherlandsHexColor, getNetherlandsPalette, getNewZealandAccent, getNewZealandColors, getNewZealandFlagUrl, getNewZealandGradient, getNewZealandHexColor, getNewZealandPalette, getNigeriaAccent, getNigeriaColors, getNigeriaFlagUrl, getNigeriaGradient, getNigeriaHexColor, getNigeriaPalette, getNorwayAccent, getNorwayColors, getNorwayFlagUrl, getNorwayGradient, getNorwayHexColor, getNorwayPalette, getPeruAccent, getPeruColors, getPeruFlagUrl, getPeruGradient, getPeruHexColor, getPeruPalette, getPhilippinesAccent, getPhilippinesColors, getPhilippinesFlagUrl, getPhilippinesGradient, getPhilippinesHexColor, getPhilippinesPalette, getPolandAccent, getPolandColors, getPolandFlagUrl, getPolandGradient, getPolandHexColor, getPolandPalette, getPortugalAccent, getPortugalColors, getPortugalFlagUrl, getPortugalGradient, getPortugalHexColor, getPortugalPalette, getSouthAfricaAccent, getSouthAfricaColors, getSouthAfricaFlagUrl, getSouthAfricaGradient, getSouthAfricaHexColor, getSouthAfricaPalette, getSouthKoreaAccent, getSouthKoreaColors, getSouthKoreaFlagUrl, getSouthKoreaGradient, getSouthKoreaHexColor, getSouthKoreaPalette, getSpainAccent, getSpainColors, getSpainFlagUrl, getSpainGradient, getSpainHexColor, getSpainPalette, getStatusColor, getSubdivisionAccent, getSubdivisionColors, getSubdivisionFlagUrl, getSubdivisionGradient, getSubdivisionHexColor, getSubdivisionPalette, getSwedenAccent, getSwedenColors, getSwedenFlagUrl, getSwedenGradient, getSwedenHexColor, getSwedenPalette, getThailandAccent, getThailandColors, getThailandFlagUrl, getThailandGradient, getThailandHexColor, getThailandPalette, getTransition, getTurkeyAccent, getTurkeyColors, getTurkeyFlagUrl, getTurkeyGradient, getTurkeyHexColor, getTurkeyPalette, getUKAccent, getUKColors, getUKFlagUrl, getUKGradient, getUKHexColor, getUKPalette, getUsAccent, getUsColors, getUsFlagUrl, getUsGradient, getUsHexColor, getUsPalette, getVariants, hrWorkflow, inventoryWorkflow, iosColors, isValidArgentinaProvince, isValidAustraliaState, isValidBrazilState, isValidCanadaProvince, isValidChileRegion, isValidColombiaDepartment, isValidEgyptGovernorate, isValidFranceRegion, isValidGermanyState, isValidIndiaState, isValidIndonesiaProvince, isValidItalyRegion, isValidJapanPrefecture, isValidMexicoState, isValidNetherlandsProvince, isValidNewZealandRegion, isValidNigeriaState, isValidNorwayCounty, isValidPeruDepartment, isValidPhilippinesProvince, isValidPolandVoivodeship, isValidPortugalDistrict, isValidSouthAfricaProvince, isValidSouthKoreaProvince, isValidSpainProvince, isValidSubdivision, isValidSwedenCounty, isValidThailandProvince, isValidTurkeyProvince, isValidUKNation, isValidUsState, koriAssistantTheme, koriDepartmentFlows, lgpdWorkflow, listItem, listItemReduced, logisticsWorkflow, manufacturingWorkflow, marketingWorkflow, notificationBanner, notificationBannerReduced, pageControlDot, payrollWorkflow, prefersReducedMotion, registerCountry, registerSubdivisionTheme, resolveGlassAccentRgb, salesWorkflow, selectIsAuthenticated, selectShowShellChrome, selectUserInitial, selectUserName, shimmerClass, shimmerWhiteClass, slideDown, slideRight, slideUp, springPresets, springPresetsReduced, staggerContainer, supportWorkflow, swipeActionThreshold, swipeConstraints, useGeoMapState, useNotifications, usePlatformShellStore, usePullToRefresh, validateDashboardSpec, xScale, yScale };
|
|
24572
|
+
//# sourceMappingURL=chunk-GQBSFIXC.mjs.map
|
|
24573
|
+
//# sourceMappingURL=chunk-GQBSFIXC.mjs.map
|