@datatechsolutions/ui 2.11.61 → 2.11.62

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.
@@ -1,7 +1,7 @@
1
1
  "use client";
2
+ import { triggerHaptic } from './chunk-D2JF6C3E.mjs';
2
3
  import { useTranslations, useLocale } from './chunk-7VJ7CMMT.mjs';
3
4
  import { useLink, useRouter, usePathname } from './chunk-QWG2FMUN.mjs';
4
- import { triggerHaptic } from './chunk-D2JF6C3E.mjs';
5
5
  import * as Headless6 from '@headlessui/react';
6
6
  import { Button as Button$1, Transition, Dialog, TransitionChild, DialogPanel, DialogTitle, DialogBackdrop, Menu, MenuButton, MenuItems, MenuItem } from '@headlessui/react';
7
7
  import clsx, { clsx as clsx$1 } from 'clsx';
@@ -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, 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, UsersIcon, SparklesIcon, DocumentTextIcon, CpuChipIcon, ShoppingCartIcon, XCircleIcon, ShieldCheckIcon, LockClosedIcon, EnvelopeIcon, ChatBubbleLeftIcon, TrophyIcon, BanknotesIcon, MegaphoneIcon, CogIcon, ChartBarIcon, HomeIcon, Cog6ToothIcon, UserIcon, Squares2X2Icon, PlusCircleIcon, CloudIcon, NewspaperIcon, CommandLineIcon, BoltIcon } from '@heroicons/react/24/outline';
14
+ import { PlusIcon, MinusIcon, 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, UsersIcon, SparklesIcon, DocumentTextIcon, CpuChipIcon, ShoppingCartIcon, XCircleIcon, ShieldCheckIcon, LockClosedIcon, EnvelopeIcon, ChatBubbleLeftIcon, TrophyIcon, BanknotesIcon, MegaphoneIcon, CogIcon, ChartBarIcon, HomeIcon, Cog6ToothIcon, UserIcon, BoltIcon, ArrowRightIcon, 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';
@@ -2155,10 +2155,10 @@ function ChartRenderer({ spec, width = 640, height = 280, className }) {
2155
2155
  ] });
2156
2156
  }
2157
2157
  function buildTicks(min, max, count) {
2158
- const step = (max - min) / (count - 1);
2158
+ const step2 = (max - min) / (count - 1);
2159
2159
  const ticks = [];
2160
2160
  for (let index = 0; index < count; index += 1) {
2161
- ticks.push(min + step * index);
2161
+ ticks.push(min + step2 * index);
2162
2162
  }
2163
2163
  return ticks;
2164
2164
  }
@@ -6004,8 +6004,8 @@ function SidebarLayout({
6004
6004
  const identityEl = findSlot(sidebarChildren, IDENTITY_TYPE);
6005
6005
  const sidebarFooterEl = findSlot(sidebarChildren, SIDEBAR_FOOTER_TYPE);
6006
6006
  const sections = [];
6007
- function collectSections(node, group) {
6008
- Children.forEach(node, (child) => {
6007
+ function collectSections(node2, group) {
6008
+ Children.forEach(node2, (child) => {
6009
6009
  if (!isValidElement(child)) return;
6010
6010
  if (isSlotType(child, GROUP_TYPE)) {
6011
6011
  const groupProps = child.props;
@@ -7263,20 +7263,20 @@ function StepTimeline({
7263
7263
  {
7264
7264
  role: "list",
7265
7265
  className: "overflow-hidden rounded-md lg:flex lg:rounded-none lg:border-r lg:border-l lg:border-gray-200 dark:lg:border-white/15",
7266
- children: steps.map((step, stepIndex) => /* @__PURE__ */ jsx("li", { className: "relative overflow-hidden lg:flex-1", children: /* @__PURE__ */ jsxs(
7266
+ children: steps.map((step2, stepIndex) => /* @__PURE__ */ jsx("li", { className: "relative overflow-hidden lg:flex-1", children: /* @__PURE__ */ jsxs(
7267
7267
  "button",
7268
7268
  {
7269
7269
  type: "button",
7270
7270
  onClick: () => onStepClick?.(stepIndex),
7271
- disabled: step.status === "upcoming",
7271
+ disabled: step2.status === "upcoming",
7272
7272
  className: classNames(
7273
- step.status === "upcoming" ? "cursor-not-allowed" : "cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800",
7273
+ step2.status === "upcoming" ? "cursor-not-allowed" : "cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800",
7274
7274
  stepIndex === 0 ? "rounded-t-md border-b-0" : "",
7275
7275
  stepIndex === steps.length - 1 ? "rounded-b-md border-t-0" : "",
7276
7276
  "w-full overflow-hidden border border-gray-200 text-left transition-colors lg:border-0 dark:border-white/15"
7277
7277
  ),
7278
7278
  children: [
7279
- step.status === "complete" ? /* @__PURE__ */ jsxs("div", { className: "group", children: [
7279
+ step2.status === "complete" ? /* @__PURE__ */ jsxs("div", { className: "group", children: [
7280
7280
  /* @__PURE__ */ jsx(
7281
7281
  "span",
7282
7282
  {
@@ -7284,14 +7284,14 @@ function StepTimeline({
7284
7284
  className: "absolute top-0 left-0 h-full w-1 bg-transparent group-hover:bg-gray-200 lg:top-auto lg:bottom-0 lg:h-1 lg:w-full dark:group-hover:bg-white/20"
7285
7285
  }
7286
7286
  ),
7287
- renderCompleteContent ? renderCompleteContent(step) : /* @__PURE__ */ jsxs("span", { className: classNames(stepIndex !== 0 ? "lg:pl-9" : "", "flex items-start px-6 py-5 text-sm font-medium"), children: [
7287
+ renderCompleteContent ? renderCompleteContent(step2) : /* @__PURE__ */ jsxs("span", { className: classNames(stepIndex !== 0 ? "lg:pl-9" : "", "flex items-start px-6 py-5 text-sm font-medium"), children: [
7288
7288
  /* @__PURE__ */ jsx("span", { className: "shrink-0", children: /* @__PURE__ */ jsx("span", { className: "flex h-9 w-9 items-center justify-center rounded-full bg-blue-600 dark:bg-blue-500", children: /* @__PURE__ */ jsx(CheckIcon$2, { "aria-hidden": "true", className: "h-5 w-5 text-white" }) }) }),
7289
7289
  /* @__PURE__ */ jsxs("span", { className: "mt-0.5 ml-4 flex min-w-0 flex-col", children: [
7290
- /* @__PURE__ */ jsx("span", { className: "text-sm font-medium text-gray-900 dark:text-white", children: step.name }),
7291
- /* @__PURE__ */ jsx("span", { className: "text-sm font-medium text-gray-500 dark:text-gray-400", children: step.description })
7290
+ /* @__PURE__ */ jsx("span", { className: "text-sm font-medium text-gray-900 dark:text-white", children: step2.name }),
7291
+ /* @__PURE__ */ jsx("span", { className: "text-sm font-medium text-gray-500 dark:text-gray-400", children: step2.description })
7292
7292
  ] })
7293
7293
  ] })
7294
- ] }) : step.status === "current" ? /* @__PURE__ */ jsxs("div", { "aria-current": "step", children: [
7294
+ ] }) : step2.status === "current" ? /* @__PURE__ */ jsxs("div", { "aria-current": "step", children: [
7295
7295
  /* @__PURE__ */ jsx(
7296
7296
  "span",
7297
7297
  {
@@ -7300,10 +7300,10 @@ function StepTimeline({
7300
7300
  }
7301
7301
  ),
7302
7302
  /* @__PURE__ */ jsxs("span", { className: classNames(stepIndex !== 0 ? "lg:pl-9" : "", "flex items-start px-6 py-5 text-sm font-medium"), children: [
7303
- /* @__PURE__ */ jsx("span", { className: "shrink-0", children: /* @__PURE__ */ jsx("span", { className: "flex h-10 w-10 items-center justify-center rounded-full border-2 border-blue-600 dark:border-blue-500", children: /* @__PURE__ */ jsx("span", { className: "text-blue-600 dark:text-blue-400", children: step.id }) }) }),
7303
+ /* @__PURE__ */ jsx("span", { className: "shrink-0", children: /* @__PURE__ */ jsx("span", { className: "flex h-10 w-10 items-center justify-center rounded-full border-2 border-blue-600 dark:border-blue-500", children: /* @__PURE__ */ jsx("span", { className: "text-blue-600 dark:text-blue-400", children: step2.id }) }) }),
7304
7304
  /* @__PURE__ */ jsxs("span", { className: "mt-0.5 ml-4 flex min-w-0 flex-col", children: [
7305
- /* @__PURE__ */ jsx("span", { className: "text-sm font-medium text-blue-600 dark:text-blue-400", children: step.name }),
7306
- /* @__PURE__ */ jsx("span", { className: "text-sm font-medium text-gray-500 dark:text-gray-400", children: step.description })
7305
+ /* @__PURE__ */ jsx("span", { className: "text-sm font-medium text-blue-600 dark:text-blue-400", children: step2.name }),
7306
+ /* @__PURE__ */ jsx("span", { className: "text-sm font-medium text-gray-500 dark:text-gray-400", children: step2.description })
7307
7307
  ] })
7308
7308
  ] })
7309
7309
  ] }) : /* @__PURE__ */ jsxs("div", { className: "group", children: [
@@ -7315,10 +7315,10 @@ function StepTimeline({
7315
7315
  }
7316
7316
  ),
7317
7317
  /* @__PURE__ */ jsxs("span", { className: classNames(stepIndex !== 0 ? "lg:pl-9" : "", "flex items-start px-6 py-5 text-sm font-medium"), children: [
7318
- /* @__PURE__ */ jsx("span", { className: "shrink-0", children: /* @__PURE__ */ jsx("span", { className: "flex h-10 w-10 items-center justify-center rounded-full border-2 border-gray-300 dark:border-white/15", children: /* @__PURE__ */ jsx("span", { className: "text-gray-500 dark:text-gray-400", children: step.id }) }) }),
7318
+ /* @__PURE__ */ jsx("span", { className: "shrink-0", children: /* @__PURE__ */ jsx("span", { className: "flex h-10 w-10 items-center justify-center rounded-full border-2 border-gray-300 dark:border-white/15", children: /* @__PURE__ */ jsx("span", { className: "text-gray-500 dark:text-gray-400", children: step2.id }) }) }),
7319
7319
  /* @__PURE__ */ jsxs("span", { className: "mt-0.5 ml-4 flex min-w-0 flex-col", children: [
7320
- /* @__PURE__ */ jsx("span", { className: "text-sm font-medium text-gray-500 dark:text-gray-400", children: step.name }),
7321
- /* @__PURE__ */ jsx("span", { className: "text-sm font-medium text-gray-500 dark:text-gray-400", children: step.description })
7320
+ /* @__PURE__ */ jsx("span", { className: "text-sm font-medium text-gray-500 dark:text-gray-400", children: step2.name }),
7321
+ /* @__PURE__ */ jsx("span", { className: "text-sm font-medium text-gray-500 dark:text-gray-400", children: step2.description })
7322
7322
  ] })
7323
7323
  ] })
7324
7324
  ] }),
@@ -7334,7 +7334,7 @@ function StepTimeline({
7334
7334
  ) }) : null
7335
7335
  ]
7336
7336
  }
7337
- ) }, step.id))
7337
+ ) }, step2.id))
7338
7338
  }
7339
7339
  ) }) });
7340
7340
  }
@@ -7484,7 +7484,7 @@ function FormPriceInput({
7484
7484
  currencySymbol,
7485
7485
  value,
7486
7486
  onValueChange,
7487
- step = "0.01",
7487
+ step: step2 = "0.01",
7488
7488
  placeholder = "0.00",
7489
7489
  colorClass,
7490
7490
  disabled,
@@ -7517,7 +7517,7 @@ function FormPriceInput({
7517
7517
  {
7518
7518
  id: inputId,
7519
7519
  type: "number",
7520
- step,
7520
+ step: step2,
7521
7521
  value,
7522
7522
  onChange: (event) => onValueChange?.(event.target.value),
7523
7523
  placeholder,
@@ -7978,7 +7978,7 @@ function StepFormPage({
7978
7978
  ] }),
7979
7979
  /* @__PURE__ */ jsx("h1", { className: "mt-2 text-2xl font-bold tracking-tight text-slate-900 dark:text-white sm:text-3xl", children: steps[currentStep]?.title ?? title }),
7980
7980
  steps[currentStep]?.description ?? subtitle ? /* @__PURE__ */ jsx("p", { className: "mt-2 max-w-xl text-sm text-slate-500 dark:text-white/60 sm:text-base", children: steps[currentStep]?.description ?? subtitle }) : null,
7981
- /* @__PURE__ */ jsx("div", { className: "mt-6 flex items-center gap-2", children: steps.map((step, index) => {
7981
+ /* @__PURE__ */ jsx("div", { className: "mt-6 flex items-center gap-2", children: steps.map((step2, index) => {
7982
7982
  const isCompleted = index < currentStep;
7983
7983
  const isCurrent = index === currentStep;
7984
7984
  const isClickable = index < currentStep;
@@ -7992,12 +7992,12 @@ function StepFormPage({
7992
7992
  className: `flex items-center gap-2 rounded-full px-3 py-1.5 text-xs font-medium transition-all duration-200 ${isCurrent ? "bg-blue-500/15 text-blue-700 shadow-sm backdrop-blur-sm dark:bg-blue-500/25 dark:text-blue-300" : isCompleted ? "bg-emerald-500/10 text-emerald-700 cursor-pointer hover:bg-emerald-500/20 backdrop-blur-sm dark:bg-emerald-500/20 dark:text-emerald-300" : "bg-slate-500/8 text-slate-400 dark:bg-white/5 dark:text-white/30"}`,
7993
7993
  children: [
7994
7994
  /* @__PURE__ */ jsx("span", { className: `flex h-5 w-5 items-center justify-center rounded-full text-[10px] font-bold ${isCurrent ? "bg-blue-500 text-white" : isCompleted ? "bg-emerald-500 text-white" : "bg-slate-200 text-slate-400 dark:bg-white/10 dark:text-white/30"}`, children: isCompleted ? /* @__PURE__ */ jsx(CheckIcon$1, { className: "h-3 w-3" }) : index + 1 }),
7995
- /* @__PURE__ */ jsx("span", { className: "hidden sm:inline", children: step.title })
7995
+ /* @__PURE__ */ jsx("span", { className: "hidden sm:inline", children: step2.title })
7996
7996
  ]
7997
7997
  }
7998
7998
  ),
7999
7999
  index < steps.length - 1 ? /* @__PURE__ */ jsx("div", { className: `h-px flex-1 transition-colors duration-200 ${index < currentStep ? "bg-emerald-500/30 dark:bg-emerald-500/20" : "bg-slate-200 dark:bg-white/10"}` }) : null
8000
- ] }, step.id);
8000
+ ] }, step2.id);
8001
8001
  }) })
8002
8002
  ] })
8003
8003
  ] }),
@@ -13439,16 +13439,16 @@ function PipelinePreview({ activeFuel, activeState, activeStation, onActiveFuelC
13439
13439
  if (intervalRef.current) clearInterval(intervalRef.current);
13440
13440
  setActiveStep(0);
13441
13441
  onStepChange?.(0);
13442
- let step = 0;
13442
+ let step2 = 0;
13443
13443
  intervalRef.current = setInterval(() => {
13444
- step += 1;
13445
- if (step > 7) {
13444
+ step2 += 1;
13445
+ if (step2 > 7) {
13446
13446
  if (intervalRef.current) clearInterval(intervalRef.current);
13447
13447
  setActiveStep(7);
13448
13448
  onStepChange?.(7);
13449
13449
  } else {
13450
- setActiveStep(step);
13451
- onStepChange?.(step);
13450
+ setActiveStep(step2);
13451
+ onStepChange?.(step2);
13452
13452
  }
13453
13453
  }, 1400);
13454
13454
  }, [onStepChange]);
@@ -13460,21 +13460,21 @@ function PipelinePreview({ activeFuel, activeState, activeStation, onActiveFuelC
13460
13460
  useEffect(() => () => {
13461
13461
  if (intervalRef.current) clearInterval(intervalRef.current);
13462
13462
  }, []);
13463
- const getStatus = (node) => {
13463
+ const getStatus = (node2) => {
13464
13464
  if (activeStep < 0) return "idle";
13465
- if (node.step < activeStep) return "complete";
13466
- if (node.step === activeStep) return "active";
13465
+ if (node2.step < activeStep) return "complete";
13466
+ if (node2.step === activeStep) return "active";
13467
13467
  return "idle";
13468
13468
  };
13469
13469
  const rows = useMemo(() => {
13470
13470
  const result = [];
13471
- let step = -1;
13472
- for (const node of pipelineNodes) {
13473
- if (node.step !== step) {
13471
+ let step2 = -1;
13472
+ for (const node2 of pipelineNodes) {
13473
+ if (node2.step !== step2) {
13474
13474
  result.push([]);
13475
- step = node.step;
13475
+ step2 = node2.step;
13476
13476
  }
13477
- result[result.length - 1].push(node);
13477
+ result[result.length - 1].push(node2);
13478
13478
  }
13479
13479
  return result;
13480
13480
  }, [pipelineNodes]);
@@ -13588,26 +13588,26 @@ function PipelinePreview({ activeFuel, activeState, activeStation, onActiveFuelC
13588
13588
  ` }),
13589
13589
  rows.map((row, rowIndex) => /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-0 shrink-0", children: [
13590
13590
  rowIndex > 0 && row[0] && /* @__PURE__ */ jsx("svg", { width: "40", height: "2", className: "shrink-0 mx-1.5", children: /* @__PURE__ */ jsx("line", { x1: "0", y1: "1", x2: "40", y2: "1", stroke: activeStep >= row[0].step ? "#10b981" : "#374151", strokeWidth: "2", strokeDasharray: "4 3", style: { animation: activeStep === row[0].step ? "edgeFlow 0.8s linear infinite" : "none" } }) }),
13591
- /* @__PURE__ */ jsx("div", { className: `flex ${row.length > 1 ? "flex-col gap-2" : ""}`, children: row.map((node) => {
13592
- const status = getStatus(node);
13591
+ /* @__PURE__ */ jsx("div", { className: `flex ${row.length > 1 ? "flex-col gap-2" : ""}`, children: row.map((node2) => {
13592
+ const status = getStatus(node2);
13593
13593
  return /* @__PURE__ */ jsxs(
13594
13594
  "div",
13595
13595
  {
13596
13596
  className: `liquid-surface rounded-2xl px-4 py-3 transition-all duration-500 ${row.length > 1 ? "w-[180px]" : "w-[220px]"} ${status === "active" ? "ring-2 ring-blue-500/50 scale-[1.03]" : status === "complete" ? "ring-1 ring-emerald-500/30" : "opacity-40"}`,
13597
- style: status === "active" ? { "--glow": node.glow, animation: "nodeGlow 1.5s ease-in-out infinite" } : void 0,
13597
+ style: status === "active" ? { "--glow": node2.glow, animation: "nodeGlow 1.5s ease-in-out infinite" } : void 0,
13598
13598
  children: [
13599
13599
  /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2.5 mb-1.5", children: [
13600
- node.avatar ? /* @__PURE__ */ jsx("img", { src: node.avatar, alt: "", className: "h-9 w-9 rounded-xl shrink-0" }) : /* @__PURE__ */ jsx("div", { className: `flex h-9 w-9 items-center justify-center rounded-xl shrink-0 ${node.bg}`, children: /* @__PURE__ */ jsx(node.icon, { className: `h-5 w-5 ${node.color}` }) }),
13600
+ node2.avatar ? /* @__PURE__ */ jsx("img", { src: node2.avatar, alt: "", className: "h-9 w-9 rounded-xl shrink-0" }) : /* @__PURE__ */ jsx("div", { className: `flex h-9 w-9 items-center justify-center rounded-xl shrink-0 ${node2.bg}`, children: /* @__PURE__ */ jsx(node2.icon, { className: `h-5 w-5 ${node2.color}` }) }),
13601
13601
  /* @__PURE__ */ jsxs("div", { className: "min-w-0 flex-1", children: [
13602
- /* @__PURE__ */ jsx("div", { className: "text-[13px] font-semibold text-white truncate", children: node.label }),
13603
- /* @__PURE__ */ jsx("div", { className: "text-[9px] text-gray-500 truncate", children: node.subtitle })
13602
+ /* @__PURE__ */ jsx("div", { className: "text-[13px] font-semibold text-white truncate", children: node2.label }),
13603
+ /* @__PURE__ */ jsx("div", { className: "text-[9px] text-gray-500 truncate", children: node2.subtitle })
13604
13604
  ] }),
13605
13605
  status === "complete" ? /* @__PURE__ */ jsx(CheckCircleIcon$1, { className: "h-5 w-5 text-emerald-400 shrink-0" }) : null
13606
13606
  ] }),
13607
- node.badges && /* @__PURE__ */ jsx("div", { className: "flex flex-wrap gap-1 mt-1", children: node.badges.map((badge) => /* @__PURE__ */ jsx("span", { className: `rounded-full px-2 py-0.5 text-[8px] font-semibold ${badge.color}`, children: badge.text }, badge.text)) })
13607
+ node2.badges && /* @__PURE__ */ jsx("div", { className: "flex flex-wrap gap-1 mt-1", children: node2.badges.map((badge) => /* @__PURE__ */ jsx("span", { className: `rounded-full px-2 py-0.5 text-[8px] font-semibold ${badge.color}`, children: badge.text }, badge.text)) })
13608
13608
  ]
13609
13609
  },
13610
- node.id
13610
+ node2.id
13611
13611
  );
13612
13612
  }) })
13613
13613
  ] }, rowIndex))
@@ -13948,14 +13948,14 @@ function IncidentPipelineDemo({
13948
13948
  const handleRun = useCallback(() => {
13949
13949
  if (intervalRef.current) clearInterval(intervalRef.current);
13950
13950
  setActiveStep(0);
13951
- let step = 0;
13951
+ let step2 = 0;
13952
13952
  intervalRef.current = setInterval(() => {
13953
- step += 1;
13954
- if (step > 7) {
13953
+ step2 += 1;
13954
+ if (step2 > 7) {
13955
13955
  if (intervalRef.current) clearInterval(intervalRef.current);
13956
13956
  setActiveStep(7);
13957
13957
  } else {
13958
- setActiveStep(step);
13958
+ setActiveStep(step2);
13959
13959
  }
13960
13960
  }, 1200);
13961
13961
  }, []);
@@ -13971,21 +13971,21 @@ function IncidentPipelineDemo({
13971
13971
  useEffect(() => () => {
13972
13972
  if (intervalRef.current) clearInterval(intervalRef.current);
13973
13973
  }, []);
13974
- const getStatus = (node) => {
13974
+ const getStatus = (node2) => {
13975
13975
  if (activeStep < 0) return "idle";
13976
- if (node.step < activeStep) return "complete";
13977
- if (node.step === activeStep) return "active";
13976
+ if (node2.step < activeStep) return "complete";
13977
+ if (node2.step === activeStep) return "active";
13978
13978
  return "idle";
13979
13979
  };
13980
13980
  const rows = useMemo(() => {
13981
13981
  const result = [];
13982
- let step = -1;
13983
- for (const node of nodes) {
13984
- if (node.step !== step) {
13982
+ let step2 = -1;
13983
+ for (const node2 of nodes) {
13984
+ if (node2.step !== step2) {
13985
13985
  result.push([]);
13986
- step = node.step;
13986
+ step2 = node2.step;
13987
13987
  }
13988
- result[result.length - 1].push(node);
13988
+ result[result.length - 1].push(node2);
13989
13989
  }
13990
13990
  return result;
13991
13991
  }, [nodes]);
@@ -14031,26 +14031,26 @@ function IncidentPipelineDemo({
14031
14031
  ` }),
14032
14032
  rows.map((row, rowIndex) => /* @__PURE__ */ jsxs("div", { className: "flex shrink-0 items-center gap-0", children: [
14033
14033
  rowIndex > 0 && /* @__PURE__ */ jsx("svg", { width: "40", height: "2", className: "mx-1.5 shrink-0", children: /* @__PURE__ */ jsx("line", { x1: "0", y1: "1", x2: "40", y2: "1", stroke: activeStep >= rows[rowIndex][0].step ? "#10b981" : "#374151", strokeWidth: "2", strokeDasharray: "4 3", style: { animation: activeStep === rows[rowIndex][0].step ? "edgeFlow 0.8s linear infinite" : "none" } }) }),
14034
- /* @__PURE__ */ jsx("div", { className: `flex ${row.length > 1 ? "flex-col gap-2" : ""}`, children: row.map((node) => {
14035
- const status = getStatus(node);
14034
+ /* @__PURE__ */ jsx("div", { className: `flex ${row.length > 1 ? "flex-col gap-2" : ""}`, children: row.map((node2) => {
14035
+ const status = getStatus(node2);
14036
14036
  return /* @__PURE__ */ jsxs(
14037
14037
  "div",
14038
14038
  {
14039
14039
  className: `liquid-surface rounded-2xl px-4 py-3 transition-all duration-500 ${row.length > 1 ? "w-[180px]" : "w-[220px]"} ${status === "active" ? "scale-[1.03] ring-2 ring-red-500/50" : status === "complete" ? "ring-1 ring-emerald-500/30" : "opacity-40"}`,
14040
- style: status === "active" ? { "--glow": node.glow, animation: "nodeGlow 1.5s ease-in-out infinite" } : void 0,
14040
+ style: status === "active" ? { "--glow": node2.glow, animation: "nodeGlow 1.5s ease-in-out infinite" } : void 0,
14041
14041
  children: [
14042
14042
  /* @__PURE__ */ jsxs("div", { className: "mb-1.5 flex items-center gap-2.5", children: [
14043
- node.avatar ? /* @__PURE__ */ jsx("img", { src: node.avatar, alt: "", className: "h-9 w-9 rounded-xl shrink-0" }) : /* @__PURE__ */ jsx("div", { className: `flex h-9 w-9 items-center justify-center rounded-xl shrink-0 ${node.bg}`, children: /* @__PURE__ */ jsx(node.icon, { className: `h-5 w-5 ${node.color}` }) }),
14043
+ node2.avatar ? /* @__PURE__ */ jsx("img", { src: node2.avatar, alt: "", className: "h-9 w-9 rounded-xl shrink-0" }) : /* @__PURE__ */ jsx("div", { className: `flex h-9 w-9 items-center justify-center rounded-xl shrink-0 ${node2.bg}`, children: /* @__PURE__ */ jsx(node2.icon, { className: `h-5 w-5 ${node2.color}` }) }),
14044
14044
  /* @__PURE__ */ jsxs("div", { className: "min-w-0 flex-1", children: [
14045
- /* @__PURE__ */ jsx("div", { className: "truncate text-[13px] font-semibold text-white", children: node.label }),
14046
- /* @__PURE__ */ jsx("div", { className: "truncate text-[9px] text-gray-500", children: node.subtitle })
14045
+ /* @__PURE__ */ jsx("div", { className: "truncate text-[13px] font-semibold text-white", children: node2.label }),
14046
+ /* @__PURE__ */ jsx("div", { className: "truncate text-[9px] text-gray-500", children: node2.subtitle })
14047
14047
  ] }),
14048
14048
  status === "complete" && /* @__PURE__ */ jsx(CheckCircleIcon$1, { className: "h-5 w-5 shrink-0 text-emerald-400" })
14049
14049
  ] }),
14050
- node.badges && /* @__PURE__ */ jsx("div", { className: "flex flex-wrap gap-1 mt-1", children: node.badges.map((badge) => /* @__PURE__ */ jsx("span", { className: `rounded-full px-2 py-0.5 text-[8px] font-semibold ${badge.color}`, children: badge.text }, badge.text)) })
14050
+ node2.badges && /* @__PURE__ */ jsx("div", { className: "flex flex-wrap gap-1 mt-1", children: node2.badges.map((badge) => /* @__PURE__ */ jsx("span", { className: `rounded-full px-2 py-0.5 text-[8px] font-semibold ${badge.color}`, children: badge.text }, badge.text)) })
14051
14051
  ]
14052
14052
  },
14053
- node.id
14053
+ node2.id
14054
14054
  );
14055
14055
  }) })
14056
14056
  ] }, rowIndex))
@@ -16388,6 +16388,517 @@ var DashboardDemo = ({
16388
16388
  }
16389
16389
  );
16390
16390
  };
16391
+ 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)" }
16418
+ };
16419
+ var FALLBACK_META = { icon: BoltIcon, color: "text-gray-300", bg: "bg-gray-500/15", glow: "rgba(100,116,139,0.4)" };
16420
+ function getNodeMeta(type) {
16421
+ return NODE_TYPE_META[type] ?? FALLBACK_META;
16422
+ }
16423
+ var NODE_W = 180;
16424
+ var NODE_H = 80;
16425
+ var PADDING = 24;
16426
+ function DepartmentWorkflowDemo({
16427
+ workflow,
16428
+ stepDurationMs = 1100,
16429
+ autoPlay = false,
16430
+ className
16431
+ }) {
16432
+ const { graph, steps, title, description, accentBadge = "bg-indigo-500/15 text-indigo-300", completionSummary } = workflow;
16433
+ const [stepIndex, setStepIndex] = useState(-1);
16434
+ const intervalRef = useRef(null);
16435
+ const total = steps.length;
16436
+ const isIdle = stepIndex === -1;
16437
+ const isRunning = stepIndex >= 0 && stepIndex < total - 1;
16438
+ const isComplete = stepIndex === total - 1 && total > 0;
16439
+ const activeNodeIds = useMemo(() => {
16440
+ if (stepIndex < 0) return /* @__PURE__ */ new Set();
16441
+ return new Set(steps[stepIndex]?.nodes ?? []);
16442
+ }, [stepIndex, steps]);
16443
+ const completedNodeIds = useMemo(() => {
16444
+ if (stepIndex < 0) return /* @__PURE__ */ new Set();
16445
+ const ids = /* @__PURE__ */ new Set();
16446
+ for (let i = 0; i < stepIndex; i++) {
16447
+ for (const id of steps[i]?.nodes ?? []) ids.add(id);
16448
+ }
16449
+ return ids;
16450
+ }, [stepIndex, steps]);
16451
+ const getStatus = useCallback(
16452
+ (node2) => {
16453
+ if (activeNodeIds.has(node2.id)) return "running";
16454
+ if (completedNodeIds.has(node2.id)) return "complete";
16455
+ return "idle";
16456
+ },
16457
+ [activeNodeIds, completedNodeIds]
16458
+ );
16459
+ const handleRun = useCallback(() => {
16460
+ if (intervalRef.current) clearInterval(intervalRef.current);
16461
+ setStepIndex(0);
16462
+ let index = 0;
16463
+ intervalRef.current = setInterval(() => {
16464
+ index += 1;
16465
+ if (index >= total) {
16466
+ if (intervalRef.current) clearInterval(intervalRef.current);
16467
+ setStepIndex(total - 1);
16468
+ } else {
16469
+ setStepIndex(index);
16470
+ }
16471
+ }, stepDurationMs);
16472
+ }, [stepDurationMs, total]);
16473
+ const handleStop = useCallback(() => {
16474
+ if (intervalRef.current) clearInterval(intervalRef.current);
16475
+ setStepIndex(-1);
16476
+ }, []);
16477
+ useEffect(() => {
16478
+ if (autoPlay) handleRun();
16479
+ return () => {
16480
+ if (intervalRef.current) clearInterval(intervalRef.current);
16481
+ };
16482
+ }, [autoPlay, handleRun]);
16483
+ const bounds = useMemo(() => {
16484
+ if (graph.nodes.length === 0) return { width: 800, height: 400 };
16485
+ let maxX = 0;
16486
+ let maxY = 0;
16487
+ for (const node2 of graph.nodes) {
16488
+ if (node2.position.x > maxX) maxX = node2.position.x;
16489
+ if (node2.position.y > maxY) maxY = node2.position.y;
16490
+ }
16491
+ return { width: maxX + NODE_W + PADDING * 2, height: maxY + NODE_H + PADDING * 2 };
16492
+ }, [graph.nodes]);
16493
+ const currentStepLabel = stepIndex >= 0 ? steps[stepIndex]?.label : "Ready to run";
16494
+ return /* @__PURE__ */ jsxs("div", { className: `liquid-surface rounded-2xl overflow-hidden ${className ?? ""}`, children: [
16495
+ /* @__PURE__ */ jsxs("div", { className: "border-b border-white/5 px-5 py-4 flex items-start gap-4", children: [
16496
+ /* @__PURE__ */ jsxs("div", { className: "flex-1 min-w-0", children: [
16497
+ /* @__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: [
16498
+ /* @__PURE__ */ jsx(BoltIcon, { className: "h-3 w-3" }),
16499
+ "Astrlabe workflow"
16500
+ ] }),
16501
+ /* @__PURE__ */ jsx("h3", { className: "mt-2 text-lg font-bold text-white", children: title }),
16502
+ /* @__PURE__ */ jsx("p", { className: "mt-0.5 text-xs text-gray-400", children: description })
16503
+ ] }),
16504
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 shrink-0", children: [
16505
+ stepIndex >= 0 && /* @__PURE__ */ jsx("div", { className: "flex items-center gap-0.5", children: steps.map((_, index) => /* @__PURE__ */ jsx(
16506
+ "div",
16507
+ {
16508
+ className: `h-1 w-3 rounded-full transition-all duration-500 ${index < stepIndex || isComplete ? "bg-emerald-500" : index === stepIndex ? "bg-indigo-500 animate-pulse" : "bg-white/10"}`
16509
+ },
16510
+ index
16511
+ )) }),
16512
+ /* @__PURE__ */ jsx("span", { className: "max-w-[180px] truncate text-[10px] text-gray-400", children: currentStepLabel }),
16513
+ isIdle ? /* @__PURE__ */ jsxs(
16514
+ "button",
16515
+ {
16516
+ type: "button",
16517
+ onClick: handleRun,
16518
+ className: "flex items-center gap-1 rounded-lg bg-gradient-to-r from-indigo-600 to-violet-600 px-3 py-1 text-[11px] font-semibold text-white shadow-lg shadow-indigo-500/20 hover:shadow-indigo-500/30 hover:scale-105 active:scale-95 transition-all",
16519
+ children: [
16520
+ /* @__PURE__ */ jsx(PlayIcon, { className: "h-3 w-3" }),
16521
+ " Run"
16522
+ ]
16523
+ }
16524
+ ) : isRunning ? /* @__PURE__ */ jsxs(
16525
+ "button",
16526
+ {
16527
+ type: "button",
16528
+ onClick: handleStop,
16529
+ className: "flex items-center gap-1 rounded-lg bg-rose-600/80 px-3 py-1 text-[11px] font-semibold text-white",
16530
+ children: [
16531
+ /* @__PURE__ */ jsx(StopIcon, { className: "h-3 w-3" }),
16532
+ " Stop"
16533
+ ]
16534
+ }
16535
+ ) : /* @__PURE__ */ jsxs(
16536
+ "button",
16537
+ {
16538
+ type: "button",
16539
+ onClick: handleRun,
16540
+ 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",
16541
+ children: [
16542
+ /* @__PURE__ */ jsx(ArrowPathIcon, { className: "h-3 w-3" }),
16543
+ " Replay"
16544
+ ]
16545
+ }
16546
+ )
16547
+ ] })
16548
+ ] }),
16549
+ /* @__PURE__ */ jsxs("div", { className: "relative overflow-auto p-6", style: { minHeight: bounds.height + PADDING * 2 }, children: [
16550
+ /* @__PURE__ */ jsx("style", { children: `
16551
+ @keyframes astGlow { 0%, 100% { box-shadow: 0 0 12px var(--glow); } 50% { box-shadow: 0 0 28px var(--glow); } }
16552
+ @keyframes astEdge { to { stroke-dashoffset: -16; } }
16553
+ ` }),
16554
+ /* @__PURE__ */ jsxs("div", { className: "relative", style: { width: bounds.width, height: bounds.height }, children: [
16555
+ /* @__PURE__ */ jsx("svg", { className: "absolute inset-0 pointer-events-none", width: bounds.width, height: bounds.height, children: graph.edges.map((edge2) => {
16556
+ const source = graph.nodes.find((n) => n.id === edge2.source);
16557
+ const target = graph.nodes.find((n) => n.id === edge2.target);
16558
+ if (!source || !target) return null;
16559
+ const x1 = source.position.x + NODE_W;
16560
+ const y1 = source.position.y + NODE_H / 2;
16561
+ const x2 = target.position.x;
16562
+ const y2 = target.position.y + NODE_H / 2;
16563
+ const midX = (x1 + x2) / 2;
16564
+ const isActive = activeNodeIds.has(edge2.source) || completedNodeIds.has(edge2.source) && (activeNodeIds.has(edge2.target) || completedNodeIds.has(edge2.target));
16565
+ const isComplete2 = completedNodeIds.has(edge2.source) && completedNodeIds.has(edge2.target);
16566
+ const stroke = isComplete2 ? "#10b981" : isActive ? "#818cf8" : "#334155";
16567
+ return /* @__PURE__ */ jsxs("g", { children: [
16568
+ /* @__PURE__ */ jsx(
16569
+ "path",
16570
+ {
16571
+ d: `M ${x1} ${y1} C ${midX} ${y1}, ${midX} ${y2}, ${x2} ${y2}`,
16572
+ fill: "none",
16573
+ stroke,
16574
+ strokeWidth: 2,
16575
+ strokeDasharray: "6 4",
16576
+ style: { animation: isActive && !isComplete2 ? "astEdge 0.8s linear infinite" : "none" }
16577
+ }
16578
+ ),
16579
+ /* @__PURE__ */ jsx("circle", { cx: x2, cy: y2, r: "3", fill: stroke })
16580
+ ] }, edge2.id);
16581
+ }) }),
16582
+ graph.nodes.map((node2) => {
16583
+ const status = getStatus(node2);
16584
+ const meta = getNodeMeta(node2.type);
16585
+ const statusBorder = status === "running" ? "ring-2 ring-indigo-500/60 scale-[1.04]" : status === "complete" ? "ring-1 ring-emerald-500/40" : "opacity-60";
16586
+ return /* @__PURE__ */ jsx(
16587
+ "div",
16588
+ {
16589
+ className: `absolute liquid-surface rounded-2xl px-3 py-2.5 transition-all duration-500 ${statusBorder}`,
16590
+ style: {
16591
+ left: node2.position.x,
16592
+ top: node2.position.y,
16593
+ width: NODE_W,
16594
+ height: NODE_H,
16595
+ ...status === "running" ? { "--glow": meta.glow, animation: "astGlow 1.4s ease-in-out infinite" } : {}
16596
+ },
16597
+ children: /* @__PURE__ */ jsxs("div", { className: "flex items-start gap-2.5", children: [
16598
+ /* @__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}` }) }),
16599
+ /* @__PURE__ */ jsxs("div", { className: "min-w-0 flex-1", children: [
16600
+ /* @__PURE__ */ jsx("div", { className: "truncate text-[12px] font-semibold text-white", children: node2.data.label }),
16601
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-1 text-[9px] text-gray-500 font-mono", children: [
16602
+ /* @__PURE__ */ jsx("span", { className: "truncate", children: node2.type }),
16603
+ status === "running" && /* @__PURE__ */ jsxs("span", { className: "flex items-center gap-0.5 text-indigo-300", children: [
16604
+ /* @__PURE__ */ jsx(ArrowRightIcon, { className: "h-2.5 w-2.5 animate-pulse" }),
16605
+ "running"
16606
+ ] }),
16607
+ status === "complete" && /* @__PURE__ */ jsxs("span", { className: "flex items-center gap-0.5 text-emerald-400", children: [
16608
+ /* @__PURE__ */ jsx(CheckCircleIcon$1, { className: "h-2.5 w-2.5" }),
16609
+ "done"
16610
+ ] })
16611
+ ] })
16612
+ ] })
16613
+ ] })
16614
+ },
16615
+ node2.id
16616
+ );
16617
+ })
16618
+ ] })
16619
+ ] }),
16620
+ 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: [
16621
+ /* @__PURE__ */ jsx(CheckCircleIcon$1, { className: "h-4 w-4 shrink-0 text-emerald-400" }),
16622
+ /* @__PURE__ */ jsx("span", { className: "text-[11px] font-semibold text-emerald-300", children: completionSummary })
16623
+ ] })
16624
+ ] });
16625
+ }
16626
+
16627
+ // src/components/department-workflow-demo/workflows.ts
16628
+ function node(id, type, label, x, y) {
16629
+ return { id, type, position: { x, y }, data: { entityId: id, label } };
16630
+ }
16631
+ function edge(from, to) {
16632
+ return { id: `${from}->${to}`, source: from, target: to, sourceHandle: null, targetHandle: null };
16633
+ }
16634
+ function buildGraph(nodes, edges) {
16635
+ return { nodes, edges };
16636
+ }
16637
+ function step(label, ...nodes) {
16638
+ return { nodes, label };
16639
+ }
16640
+ var financialWorkflow = {
16641
+ title: "Financial planning & tax compliance",
16642
+ description: "Q4 close \u2014 aggregate transactions, compute Brazilian taxes in parallel, audit for compliance, publish report.",
16643
+ accentBadge: "bg-emerald-500/15 text-emerald-300",
16644
+ completionSummary: "Quarterly report published \xB7 R$ 387k taxes calculated \xB7 0 compliance violations",
16645
+ graph: buildGraph(
16646
+ [
16647
+ node("start", "start", "Trigger Q4 close", 0, 120),
16648
+ node("fetch-tx", "datasource", "Fetch transactions", 220, 120),
16649
+ node("icms", "code", "Calculate ICMS", 460, 10),
16650
+ node("pis-cofins", "code", "Calculate PIS/COFINS", 460, 120),
16651
+ node("iss", "code", "Calculate ISS", 460, 230),
16652
+ node("aggregate", "variable_aggregator", "Aggregate taxes", 700, 120),
16653
+ node("audit", "agent", "Compliance audit", 940, 120),
16654
+ node("report", "dashboard_output", "Publish report", 1180, 120)
16655
+ ],
16656
+ [
16657
+ edge("start", "fetch-tx"),
16658
+ edge("fetch-tx", "icms"),
16659
+ edge("fetch-tx", "pis-cofins"),
16660
+ edge("fetch-tx", "iss"),
16661
+ edge("icms", "aggregate"),
16662
+ edge("pis-cofins", "aggregate"),
16663
+ edge("iss", "aggregate"),
16664
+ edge("aggregate", "audit"),
16665
+ edge("audit", "report")
16666
+ ]
16667
+ ),
16668
+ steps: [
16669
+ step("Triggering quarterly close\u2026", "start"),
16670
+ step("Fetching Q4 transactions\u2026", "fetch-tx"),
16671
+ step("Calculating ICMS / PIS / ISS in parallel\u2026", "icms", "pis-cofins", "iss"),
16672
+ step("Aggregating tax breakdown\u2026", "aggregate"),
16673
+ step("Agent auditing compliance rules\u2026", "audit"),
16674
+ step("Publishing financial report\u2026", "report")
16675
+ ]
16676
+ };
16677
+ var salesWorkflow = {
16678
+ title: "Sales pipeline \u2014 lead to close",
16679
+ description: "Lead arrives \u2192 agents score, qualify, draft proposal, and drive negotiation to close.",
16680
+ accentBadge: "bg-blue-500/15 text-blue-300",
16681
+ completionSummary: "Deal closed \xB7 R$ 45k/m\xEAs \xB7 14-day cycle \xB7 Score 85/100",
16682
+ graph: buildGraph(
16683
+ [
16684
+ node("start", "start", "New lead (XPTO)", 0, 120),
16685
+ node("intake", "datasource", "CRM intake", 220, 120),
16686
+ node("score", "agent", "Lead scoring agent", 460, 120),
16687
+ node("gate", "if_else", "Score \u2265 80?", 700, 120),
16688
+ node("qualify", "agent", "Qualify SQL", 940, 10),
16689
+ node("nurture", "agent", "Nurture queue", 940, 230),
16690
+ node("proposal", "template_transform", "Draft proposal", 1180, 10),
16691
+ node("negotiate", "agent", "Negotiation agent", 1420, 10),
16692
+ node("close", "dashboard_output", "Deal closed", 1660, 10)
16693
+ ],
16694
+ [
16695
+ edge("start", "intake"),
16696
+ edge("intake", "score"),
16697
+ edge("score", "gate"),
16698
+ edge("gate", "qualify"),
16699
+ edge("gate", "nurture"),
16700
+ edge("qualify", "proposal"),
16701
+ edge("proposal", "negotiate"),
16702
+ edge("negotiate", "close")
16703
+ ]
16704
+ ),
16705
+ steps: [
16706
+ step("New lead arrived \u2014 XPTO Ltda\u2026", "start"),
16707
+ step("CRM intake and enrichment\u2026", "intake"),
16708
+ step("Scoring agent analyzing fit\u2026", "score"),
16709
+ step("Routing by score (85/100 \u2192 qualify)\u2026", "gate"),
16710
+ step("Qualifying as SQL\u2026", "qualify"),
16711
+ step("Generating proposal from template\u2026", "proposal"),
16712
+ step("Negotiation agent driving deal\u2026", "negotiate"),
16713
+ step("Deal closed \u2014 booking revenue\u2026", "close")
16714
+ ]
16715
+ };
16716
+ var marketingWorkflow = {
16717
+ title: "Marketing campaign \u2014 Black Friday",
16718
+ description: "Brief \u2192 parallel design, copy, audience \u2192 assemble \u2192 schedule \u2192 ship \u2192 measure.",
16719
+ accentBadge: "bg-pink-500/15 text-pink-300",
16720
+ completionSummary: "Campaign shipped \xB7 142k emails \xB7 6.8% CTR \xB7 +18% ROAS vs. target",
16721
+ graph: buildGraph(
16722
+ [
16723
+ node("start", "start", "Campaign brief", 0, 120),
16724
+ node("strategist", "agent", "Strategy agent", 220, 120),
16725
+ node("design", "agent", "Design agent", 460, 10),
16726
+ node("copy", "agent", "Copy agent", 460, 120),
16727
+ node("audience", "agent", "Audience builder", 460, 230),
16728
+ node("assemble", "variable_aggregator", "Assemble campaign", 700, 120),
16729
+ node("schedule", "agent", "Schedule blast", 940, 120),
16730
+ node("send", "http_request", "Send via email", 1180, 120),
16731
+ node("metrics", "dashboard_output", "Campaign metrics", 1420, 120)
16732
+ ],
16733
+ [
16734
+ edge("start", "strategist"),
16735
+ edge("strategist", "design"),
16736
+ edge("strategist", "copy"),
16737
+ edge("strategist", "audience"),
16738
+ edge("design", "assemble"),
16739
+ edge("copy", "assemble"),
16740
+ edge("audience", "assemble"),
16741
+ edge("assemble", "schedule"),
16742
+ edge("schedule", "send"),
16743
+ edge("send", "metrics")
16744
+ ]
16745
+ ),
16746
+ steps: [
16747
+ step("Receiving campaign brief\u2026", "start"),
16748
+ step("Strategist decomposing brief\u2026", "strategist"),
16749
+ step("Design, copy, and audience agents working in parallel\u2026", "design", "copy", "audience"),
16750
+ step("Assembling final campaign package\u2026", "assemble"),
16751
+ step("Scheduling send window\u2026", "schedule"),
16752
+ step("Dispatching through email provider\u2026", "send"),
16753
+ step("Measuring reach and engagement\u2026", "metrics")
16754
+ ]
16755
+ };
16756
+ var inventoryWorkflow = {
16757
+ title: "Inventory \u2014 predictive reorder",
16758
+ description: "Read stock \u2192 forecast demand \u2192 filter low-stock SKUs \u2192 iterate orders \u2192 publish report.",
16759
+ accentBadge: "bg-orange-500/15 text-orange-300",
16760
+ completionSummary: "12 SKUs reordered \xB7 R$ 84k committed \xB7 projected stockout avoided",
16761
+ graph: buildGraph(
16762
+ [
16763
+ node("start", "start", "Daily sweep", 0, 120),
16764
+ node("stock", "datasource", "Read stock levels", 220, 120),
16765
+ node("forecast", "agent", "Demand forecaster", 460, 120),
16766
+ node("filter", "list_operator", "Filter low-stock", 700, 120),
16767
+ node("loop", "iteration", "Per SKU", 940, 120),
16768
+ node("supplier", "agent", "Supplier selection", 1180, 120),
16769
+ node("order", "http_request", "Place purchase order", 1420, 120),
16770
+ node("report", "dashboard_output", "Reorder report", 1660, 120)
16771
+ ],
16772
+ [
16773
+ edge("start", "stock"),
16774
+ edge("stock", "forecast"),
16775
+ edge("forecast", "filter"),
16776
+ edge("filter", "loop"),
16777
+ edge("loop", "supplier"),
16778
+ edge("supplier", "order"),
16779
+ edge("order", "report")
16780
+ ]
16781
+ ),
16782
+ steps: [
16783
+ step("Kicking off daily inventory sweep\u2026", "start"),
16784
+ step("Reading current stock levels\u2026", "stock"),
16785
+ step("Forecasting demand with seasonality\u2026", "forecast"),
16786
+ step("Filtering SKUs below reorder threshold\u2026", "filter"),
16787
+ step("Iterating over flagged SKUs\u2026", "loop"),
16788
+ step("Selecting supplier per SKU\u2026", "supplier"),
16789
+ step("Placing purchase orders\u2026", "order"),
16790
+ step("Publishing reorder report\u2026", "report")
16791
+ ]
16792
+ };
16793
+ var hrWorkflow = {
16794
+ title: "HR \u2014 recruitment pipeline",
16795
+ description: "Screen resumes \u2192 rank by fit \u2192 interview scheduling \u2192 decision \u2192 hiring dashboard.",
16796
+ accentBadge: "bg-green-500/15 text-green-300",
16797
+ completionSummary: "3 offers extended \xB7 48 candidates processed \xB7 avg cycle 6 days",
16798
+ graph: buildGraph(
16799
+ [
16800
+ node("start", "start", "New posting", 0, 120),
16801
+ node("pool", "datasource", "Resume pool", 220, 120),
16802
+ node("screen", "agent", "Resume screener", 460, 120),
16803
+ node("rank", "list_operator", "Rank by fit", 700, 120),
16804
+ node("schedule", "agent", "Schedule interviews", 940, 120),
16805
+ node("assess", "agent", "Skills assessment", 1180, 120),
16806
+ node("decide", "agent", "Decision engine", 1420, 120),
16807
+ node("hire", "dashboard_output", "Hiring dashboard", 1660, 120)
16808
+ ],
16809
+ [
16810
+ edge("start", "pool"),
16811
+ edge("pool", "screen"),
16812
+ edge("screen", "rank"),
16813
+ edge("rank", "schedule"),
16814
+ edge("schedule", "assess"),
16815
+ edge("assess", "decide"),
16816
+ edge("decide", "hire")
16817
+ ]
16818
+ ),
16819
+ steps: [
16820
+ step("Job posting published\u2026", "start"),
16821
+ step("Pulling resume pool\u2026", "pool"),
16822
+ step("Screener agent filtering candidates\u2026", "screen"),
16823
+ step("Ranking candidates by role fit\u2026", "rank"),
16824
+ step("Scheduling interviews with top tier\u2026", "schedule"),
16825
+ step("Running skills assessment\u2026", "assess"),
16826
+ step("Decision engine producing offers\u2026", "decide"),
16827
+ step("Publishing to hiring dashboard\u2026", "hire")
16828
+ ]
16829
+ };
16830
+ var customerAnalyticsWorkflow = {
16831
+ title: "Customer analytics \u2014 churn & LTV",
16832
+ description: "Segment customers \u2192 parallel churn and LTV models \u2192 combine \u2192 recommend retention plays.",
16833
+ accentBadge: "bg-indigo-500/15 text-indigo-300",
16834
+ completionSummary: "4 at-risk segments identified \xB7 17 retention plays ranked by expected LTV lift",
16835
+ graph: buildGraph(
16836
+ [
16837
+ node("start", "start", "Nightly analytics", 0, 120),
16838
+ node("events", "datasource", "Customer events", 220, 120),
16839
+ node("segment", "agent", "Segmentation agent", 460, 120),
16840
+ node("churn", "agent", "Churn model", 700, 10),
16841
+ node("ltv", "agent", "LTV model", 700, 230),
16842
+ node("combine", "variable_aggregator", "Combine insights", 940, 120),
16843
+ node("actions", "agent", "Action recommender", 1180, 120),
16844
+ node("dashboard", "dashboard_output", "Analytics dashboard", 1420, 120)
16845
+ ],
16846
+ [
16847
+ edge("start", "events"),
16848
+ edge("events", "segment"),
16849
+ edge("segment", "churn"),
16850
+ edge("segment", "ltv"),
16851
+ edge("churn", "combine"),
16852
+ edge("ltv", "combine"),
16853
+ edge("combine", "actions"),
16854
+ edge("actions", "dashboard")
16855
+ ]
16856
+ ),
16857
+ steps: [
16858
+ step("Triggering nightly analytics\u2026", "start"),
16859
+ step("Pulling customer event stream\u2026", "events"),
16860
+ step("Segmentation agent clustering customers\u2026", "segment"),
16861
+ step("Churn and LTV models scoring in parallel\u2026", "churn", "ltv"),
16862
+ step("Combining predictions per segment\u2026", "combine"),
16863
+ step("Recommender ranking retention plays\u2026", "actions"),
16864
+ step("Publishing analytics dashboard\u2026", "dashboard")
16865
+ ]
16866
+ };
16867
+ var lgpdWorkflow = {
16868
+ title: "LGPD compliance \u2014 privacy sweep",
16869
+ description: "Scan audit logs \u2192 detect PII access violations \u2192 remediate \u2192 notify DPO \u2192 report.",
16870
+ accentBadge: "bg-red-500/15 text-red-300",
16871
+ completionSummary: "2 violations remediated \xB7 DPO notified \xB7 compliance report filed",
16872
+ graph: buildGraph(
16873
+ [
16874
+ node("start", "start", "Daily privacy sweep", 0, 120),
16875
+ node("logs", "datasource", "Audit logs", 220, 120),
16876
+ node("scan", "agent", "PII access scanner", 460, 120),
16877
+ node("gate", "if_else", "Violations?", 700, 120),
16878
+ node("remediate", "agent", "Remediation agent", 940, 10),
16879
+ node("notify", "http_request", "Notify DPO", 1180, 10),
16880
+ node("report", "dashboard_output", "Compliance report", 1420, 120)
16881
+ ],
16882
+ [
16883
+ edge("start", "logs"),
16884
+ edge("logs", "scan"),
16885
+ edge("scan", "gate"),
16886
+ edge("gate", "remediate"),
16887
+ edge("gate", "report"),
16888
+ edge("remediate", "notify"),
16889
+ edge("notify", "report")
16890
+ ]
16891
+ ),
16892
+ steps: [
16893
+ step("Starting daily privacy sweep\u2026", "start"),
16894
+ step("Pulling access audit logs\u2026", "logs"),
16895
+ step("Scanning for PII access violations\u2026", "scan"),
16896
+ step("Branching on findings\u2026", "gate"),
16897
+ step("Remediation agent applying fixes\u2026", "remediate"),
16898
+ step("Notifying data protection officer\u2026", "notify"),
16899
+ step("Filing compliance report\u2026", "report")
16900
+ ]
16901
+ };
16391
16902
  function EntityDrawer({
16392
16903
  open,
16393
16904
  onClose,
@@ -23578,6 +24089,6 @@ function SkipToContent({
23578
24089
  );
23579
24090
  }
23580
24091
 
23581
- 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, 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, durations, durationsReduced, easings, fadeOnly, fadeScale, filterByPermission, 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, 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, listItem, listItemReduced, notificationBanner, notificationBannerReduced, pageControlDot, prefersReducedMotion, registerCountry, registerSubdivisionTheme, resolveGlassAccentRgb, selectIsAuthenticated, selectShowShellChrome, selectUserInitial, selectUserName, shimmerClass, shimmerWhiteClass, slideDown, slideRight, slideUp, springPresets, springPresetsReduced, staggerContainer, swipeActionThreshold, swipeConstraints, useGeoMapState, useNotifications, usePlatformShellStore, usePullToRefresh, validateDashboardSpec, xScale, yScale };
23582
- //# sourceMappingURL=chunk-REZMAQKJ.mjs.map
23583
- //# sourceMappingURL=chunk-REZMAQKJ.mjs.map
24092
+ 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, 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, lgpdWorkflow, listItem, listItemReduced, marketingWorkflow, notificationBanner, notificationBannerReduced, pageControlDot, prefersReducedMotion, registerCountry, registerSubdivisionTheme, resolveGlassAccentRgb, salesWorkflow, selectIsAuthenticated, selectShowShellChrome, selectUserInitial, selectUserName, shimmerClass, shimmerWhiteClass, slideDown, slideRight, slideUp, springPresets, springPresetsReduced, staggerContainer, swipeActionThreshold, swipeConstraints, useGeoMapState, useNotifications, usePlatformShellStore, usePullToRefresh, validateDashboardSpec, xScale, yScale };
24093
+ //# sourceMappingURL=chunk-KRWGJS25.mjs.map
24094
+ //# sourceMappingURL=chunk-KRWGJS25.mjs.map