@datatechsolutions/ui 2.11.60 → 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, Squares2X2Icon, PlusCircleIcon, XCircleIcon, CloudIcon, NewspaperIcon, ChartBarIcon, CommandLineIcon, BoltIcon, CpuChipIcon, ShieldCheckIcon, LockClosedIcon, UserIcon } 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';
@@ -20,9 +20,9 @@ import { CheckIcon as CheckIcon$2 } from '@heroicons/react/24/solid';
20
20
  import { ProgressBar, ProgressBarProvider } from 'react-transition-progress';
21
21
  import { CalendarIcon, ChevronLeftIcon as ChevronLeftIcon$2, ChevronRightIcon as ChevronRightIcon$2 } from 'lucide-react';
22
22
  import { geoAlbersUsa, geoMercator, geoPath } from 'd3-geo';
23
+ import * as ProgressPrimitive from '@radix-ui/react-progress';
23
24
  import * as TabsPrimitive from '@radix-ui/react-tabs';
24
25
  import { useTranslations as useTranslations$1 } from 'next-intl';
25
- import * as ProgressPrimitive from '@radix-ui/react-progress';
26
26
  import { create } from 'zustand';
27
27
 
28
28
  var Link = forwardRef(function Link2(props, ref) {
@@ -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))
@@ -14292,69 +14292,2676 @@ function BentoFeatureGrid({
14292
14292
  )
14293
14293
  ] }) }) });
14294
14294
  }
14295
- function EntityDrawer({
14296
- open,
14297
- onClose,
14298
- title,
14299
- subtitle,
14300
- icon,
14301
- gradient = "from-gray-400 to-gray-500",
14302
- maxWidth = "max-w-xl",
14303
- tabs,
14304
- children
14305
- }) {
14306
- if (!open) return null;
14307
- return /* @__PURE__ */ jsxs(Fragment, { children: [
14308
- /* @__PURE__ */ jsx(
14309
- "div",
14295
+ var CustomerAnalyticsDemo = () => /* @__PURE__ */ jsx(
14296
+ motion.div,
14297
+ {
14298
+ initial: { opacity: 0 },
14299
+ animate: { opacity: 1 },
14300
+ exit: { opacity: 0 },
14301
+ transition: { duration: 0.5 },
14302
+ className: "flex flex-col h-full overflow-hidden",
14303
+ children: /* @__PURE__ */ jsxs("div", { className: "flex-1 flex flex-col overflow-hidden", children: [
14304
+ /* @__PURE__ */ jsxs(
14305
+ motion.div,
14306
+ {
14307
+ initial: { y: -20, opacity: 0 },
14308
+ animate: { y: 0, opacity: 1 },
14309
+ transition: { duration: 0.5, delay: 0.3 },
14310
+ className: "h-14 border-b bg-background/95 backdrop-blur-sm flex items-center justify-between px-4",
14311
+ children: [
14312
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3", children: [
14313
+ /* @__PURE__ */ jsx("h2", { className: "text-sm font-semibold", children: "An\xE1lise de Clientes" }),
14314
+ /* @__PURE__ */ jsx("span", { className: "text-xs px-2 py-1 rounded-full bg-blue-500/10 text-blue-600 dark:text-blue-400 font-medium", children: "IA Analytics" })
14315
+ ] }),
14316
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
14317
+ /* @__PURE__ */ jsx(BellIcon, { className: "h-4 w-4 text-muted-foreground" }),
14318
+ /* @__PURE__ */ jsx(MagnifyingGlassIcon, { className: "h-4 w-4 text-muted-foreground" })
14319
+ ] })
14320
+ ]
14321
+ }
14322
+ ),
14323
+ /* @__PURE__ */ jsxs("div", { className: "flex-1 overflow-y-auto p-4 space-y-3", children: [
14324
+ /* @__PURE__ */ jsxs(
14325
+ motion.div,
14326
+ {
14327
+ initial: { opacity: 0, y: 20 },
14328
+ animate: { opacity: 1, y: 0 },
14329
+ transition: { delay: 0.5 },
14330
+ className: "grid grid-cols-2 gap-3",
14331
+ children: [
14332
+ /* @__PURE__ */ jsxs(Card, { className: "p-3 bg-gradient-to-br from-blue-500 to-cyan-500 text-white", children: [
14333
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between mb-2", children: [
14334
+ /* @__PURE__ */ jsx(UsersIcon, { className: "h-5 w-5" }),
14335
+ /* @__PURE__ */ jsx(Badge, { className: "bg-white/20 text-white border-white/30 h-5 text-xs", children: "+12%" })
14336
+ ] }),
14337
+ /* @__PURE__ */ jsx("p", { className: "text-2xl font-bold", children: "2.547" }),
14338
+ /* @__PURE__ */ jsx("p", { className: "text-xs opacity-90", children: "Clientes Ativos" })
14339
+ ] }),
14340
+ /* @__PURE__ */ jsxs(Card, { className: "p-3 bg-gradient-to-br from-purple-500 to-pink-500 text-white", children: [
14341
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between mb-2", children: [
14342
+ /* @__PURE__ */ jsx(ArrowTrendingUpIcon, { className: "h-5 w-5" }),
14343
+ /* @__PURE__ */ jsx(Badge, { className: "bg-white/20 text-white border-white/30 h-5 text-xs", children: "+28%" })
14344
+ ] }),
14345
+ /* @__PURE__ */ jsx("p", { className: "text-2xl font-bold", children: "R$ 485k" }),
14346
+ /* @__PURE__ */ jsx("p", { className: "text-xs opacity-90", children: "Receita Mensal" })
14347
+ ] })
14348
+ ]
14349
+ }
14350
+ ),
14351
+ /* @__PURE__ */ jsx(
14352
+ motion.div,
14353
+ {
14354
+ initial: { opacity: 0, y: 20 },
14355
+ animate: { opacity: 1, y: 0 },
14356
+ transition: { delay: 0.7 },
14357
+ children: /* @__PURE__ */ jsxs(Card, { className: "border-2", children: [
14358
+ /* @__PURE__ */ jsx("div", { className: "p-3 border-b bg-gradient-to-r from-blue-600 to-cyan-600 text-white", children: /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
14359
+ /* @__PURE__ */ jsx(SparklesIcon, { className: "h-4 w-4" }),
14360
+ /* @__PURE__ */ jsx("h3", { className: "text-sm font-bold", children: "Insights IA" })
14361
+ ] }) }),
14362
+ /* @__PURE__ */ jsxs("div", { className: "p-3 space-y-3", children: [
14363
+ /* @__PURE__ */ jsxs(
14364
+ motion.div,
14365
+ {
14366
+ initial: { opacity: 0, x: -10 },
14367
+ animate: { opacity: 1, x: 0 },
14368
+ transition: { delay: 0.9 },
14369
+ className: "flex items-start gap-2",
14370
+ children: [
14371
+ /* @__PURE__ */ jsx("div", { className: "h-6 w-6 rounded-full bg-green-500/10 flex items-center justify-center flex-shrink-0", children: /* @__PURE__ */ jsx(CheckCircleIcon$1, { className: "h-3 w-3 text-green-500" }) }),
14372
+ /* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
14373
+ /* @__PURE__ */ jsx("p", { className: "text-xs font-medium", children: "Segmento Premium crescendo" }),
14374
+ /* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground", children: "+45% de convers\xE3o em produtos acima de R$ 500" })
14375
+ ] })
14376
+ ]
14377
+ }
14378
+ ),
14379
+ /* @__PURE__ */ jsxs(
14380
+ motion.div,
14381
+ {
14382
+ initial: { opacity: 0, x: -10 },
14383
+ animate: { opacity: 1, x: 0 },
14384
+ transition: { delay: 1.1 },
14385
+ className: "flex items-start gap-2",
14386
+ children: [
14387
+ /* @__PURE__ */ jsx("div", { className: "h-6 w-6 rounded-full bg-blue-500/10 flex items-center justify-center flex-shrink-0", children: /* @__PURE__ */ jsx(ArrowTrendingUpIcon, { className: "h-3 w-3 text-blue-500" }) }),
14388
+ /* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
14389
+ /* @__PURE__ */ jsx("p", { className: "text-xs font-medium", children: "Reten\xE7\xE3o melhorou 32%" }),
14390
+ /* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground", children: "Ap\xF3s implementa\xE7\xE3o do programa de fidelidade" })
14391
+ ] })
14392
+ ]
14393
+ }
14394
+ ),
14395
+ /* @__PURE__ */ jsxs(
14396
+ motion.div,
14397
+ {
14398
+ initial: { opacity: 0, x: -10 },
14399
+ animate: { opacity: 1, x: 0 },
14400
+ transition: { delay: 1.3 },
14401
+ className: "flex items-start gap-2",
14402
+ children: [
14403
+ /* @__PURE__ */ jsx("div", { className: "h-6 w-6 rounded-full bg-purple-500/10 flex items-center justify-center flex-shrink-0", children: /* @__PURE__ */ jsx(UsersIcon, { className: "h-3 w-3 text-purple-500" }) }),
14404
+ /* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
14405
+ /* @__PURE__ */ jsx("p", { className: "text-xs font-medium", children: "847 clientes em risco" }),
14406
+ /* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground", children: "Sem compras h\xE1 60+ dias - recomendar campanha" })
14407
+ ] })
14408
+ ]
14409
+ }
14410
+ )
14411
+ ] })
14412
+ ] })
14413
+ }
14414
+ ),
14415
+ /* @__PURE__ */ jsx(
14416
+ motion.div,
14417
+ {
14418
+ initial: { opacity: 0, y: 20 },
14419
+ animate: { opacity: 1, y: 0 },
14420
+ transition: { delay: 1.5 },
14421
+ children: /* @__PURE__ */ jsxs(Card, { className: "p-3", children: [
14422
+ /* @__PURE__ */ jsx("h4", { className: "text-xs font-semibold mb-2", children: "Top Clientes (\xDAltimo M\xEAs)" }),
14423
+ /* @__PURE__ */ jsx("div", { className: "space-y-2", children: ["Maria Silva", "Jo\xE3o Santos", "Ana Costa"].map((name, i) => /* @__PURE__ */ jsxs(
14424
+ motion.div,
14425
+ {
14426
+ initial: { opacity: 0, x: -10 },
14427
+ animate: { opacity: 1, x: 0 },
14428
+ transition: { delay: 1.7 + i * 0.2 },
14429
+ className: "flex items-center justify-between",
14430
+ children: [
14431
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
14432
+ /* @__PURE__ */ jsx("div", { className: "h-6 w-6 rounded-full bg-gradient-to-br from-gray-400 to-gray-600 flex items-center justify-center text-white text-[10px] font-bold", children: name.charAt(0) }),
14433
+ /* @__PURE__ */ jsx("span", { className: "text-xs font-medium", children: name })
14434
+ ] }),
14435
+ /* @__PURE__ */ jsxs("span", { className: "text-xs text-muted-foreground", children: [
14436
+ "R$ ",
14437
+ Math.floor(Math.random() * 50 + 10),
14438
+ "k"
14439
+ ] })
14440
+ ]
14441
+ },
14442
+ name
14443
+ )) })
14444
+ ] })
14445
+ }
14446
+ )
14447
+ ] })
14448
+ ] })
14449
+ }
14450
+ );
14451
+ var FinancialDemo = () => /* @__PURE__ */ jsx(
14452
+ motion.div,
14453
+ {
14454
+ initial: { opacity: 0 },
14455
+ animate: { opacity: 1 },
14456
+ exit: { opacity: 0 },
14457
+ transition: { duration: 0.5 },
14458
+ className: "flex flex-col h-full overflow-hidden",
14459
+ children: /* @__PURE__ */ jsxs("div", { className: "flex-1 flex flex-col overflow-hidden", children: [
14460
+ /* @__PURE__ */ jsxs(
14461
+ motion.div,
14462
+ {
14463
+ initial: { y: -20, opacity: 0 },
14464
+ animate: { y: 0, opacity: 1 },
14465
+ transition: { duration: 0.5, delay: 0.3 },
14466
+ className: "h-14 border-b bg-background/95 backdrop-blur-sm flex items-center justify-between px-4",
14467
+ children: [
14468
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3", children: [
14469
+ /* @__PURE__ */ jsx("h2", { className: "text-sm font-semibold", children: "Planejamento Financeiro" }),
14470
+ /* @__PURE__ */ jsx("span", { className: "text-xs px-2 py-1 rounded-full bg-green-500/10 text-green-600 dark:text-green-400 font-medium", children: "Q4 2024" })
14471
+ ] }),
14472
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
14473
+ /* @__PURE__ */ jsx(BellIcon, { className: "h-4 w-4 text-muted-foreground" }),
14474
+ /* @__PURE__ */ jsx(MagnifyingGlassIcon, { className: "h-4 w-4 text-muted-foreground" })
14475
+ ] })
14476
+ ]
14477
+ }
14478
+ ),
14479
+ /* @__PURE__ */ jsxs("div", { className: "flex-1 overflow-y-auto p-4 space-y-3", children: [
14480
+ /* @__PURE__ */ jsxs(
14481
+ motion.div,
14482
+ {
14483
+ initial: { opacity: 0, y: 20 },
14484
+ animate: { opacity: 1, y: 0 },
14485
+ transition: { delay: 0.5 },
14486
+ className: "grid grid-cols-2 gap-3",
14487
+ children: [
14488
+ /* @__PURE__ */ jsxs(Card, { className: "p-3 bg-gradient-to-br from-green-500 to-emerald-500 text-white", children: [
14489
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between mb-2", children: [
14490
+ /* @__PURE__ */ jsx(ArrowTrendingUpIcon, { className: "h-5 w-5" }),
14491
+ /* @__PURE__ */ jsx(Badge, { className: "bg-white/20 text-white border-white/30 h-5 text-xs", children: "+18%" })
14492
+ ] }),
14493
+ /* @__PURE__ */ jsx("p", { className: "text-2xl font-bold", children: "R$ 1.2M" }),
14494
+ /* @__PURE__ */ jsx("p", { className: "text-xs opacity-90", children: "Receita do Trimestre" })
14495
+ ] }),
14496
+ /* @__PURE__ */ jsxs(Card, { className: "p-3 bg-gradient-to-br from-red-500 to-orange-500 text-white", children: [
14497
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between mb-2", children: [
14498
+ /* @__PURE__ */ jsx(DocumentTextIcon, { className: "h-5 w-5" }),
14499
+ /* @__PURE__ */ jsx(Badge, { className: "bg-white/20 text-white border-white/30 h-5 text-xs", children: "Auto" })
14500
+ ] }),
14501
+ /* @__PURE__ */ jsx("p", { className: "text-2xl font-bold", children: "R$ 387k" }),
14502
+ /* @__PURE__ */ jsx("p", { className: "text-xs opacity-90", children: "Impostos Calculados" })
14503
+ ] })
14504
+ ]
14505
+ }
14506
+ ),
14507
+ /* @__PURE__ */ jsx(
14508
+ motion.div,
14509
+ {
14510
+ initial: { opacity: 0, y: 20 },
14511
+ animate: { opacity: 1, y: 0 },
14512
+ transition: { delay: 0.7 },
14513
+ children: /* @__PURE__ */ jsxs(Card, { className: "border-2", children: [
14514
+ /* @__PURE__ */ jsx("div", { className: "p-3 border-b bg-gradient-to-r from-green-600 to-emerald-600 text-white", children: /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
14515
+ /* @__PURE__ */ jsx(DocumentTextIcon, { className: "h-4 w-4" }),
14516
+ /* @__PURE__ */ jsx("h3", { className: "text-sm font-bold", children: "Impostos Brasileiros" })
14517
+ ] }) }),
14518
+ /* @__PURE__ */ jsxs("div", { className: "p-3 space-y-2", children: [
14519
+ /* @__PURE__ */ jsxs(
14520
+ motion.div,
14521
+ {
14522
+ initial: { opacity: 0, x: -10 },
14523
+ animate: { opacity: 1, x: 0 },
14524
+ transition: { delay: 0.9 },
14525
+ className: "flex items-center justify-between p-2 bg-blue-50 dark:bg-blue-950/20 rounded-lg border border-blue-200 dark:border-blue-800",
14526
+ children: [
14527
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
14528
+ /* @__PURE__ */ jsx(CheckCircleIcon$1, { className: "h-4 w-4 text-blue-500" }),
14529
+ /* @__PURE__ */ jsxs("div", { children: [
14530
+ /* @__PURE__ */ jsx("p", { className: "text-xs font-medium", children: "ICMS" }),
14531
+ /* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground", children: "Estadual" })
14532
+ ] })
14533
+ ] }),
14534
+ /* @__PURE__ */ jsx("span", { className: "text-xs font-bold", children: "R$ 185k" })
14535
+ ]
14536
+ }
14537
+ ),
14538
+ /* @__PURE__ */ jsxs(
14539
+ motion.div,
14540
+ {
14541
+ initial: { opacity: 0, x: -10 },
14542
+ animate: { opacity: 1, x: 0 },
14543
+ transition: { delay: 1.1 },
14544
+ className: "flex items-center justify-between p-2 bg-green-50 dark:bg-green-950/20 rounded-lg border border-green-200 dark:border-green-800",
14545
+ children: [
14546
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
14547
+ /* @__PURE__ */ jsx(CheckCircleIcon$1, { className: "h-4 w-4 text-green-500" }),
14548
+ /* @__PURE__ */ jsxs("div", { children: [
14549
+ /* @__PURE__ */ jsx("p", { className: "text-xs font-medium", children: "PIS/COFINS" }),
14550
+ /* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground", children: "Federal" })
14551
+ ] })
14552
+ ] }),
14553
+ /* @__PURE__ */ jsx("span", { className: "text-xs font-bold", children: "R$ 142k" })
14554
+ ]
14555
+ }
14556
+ ),
14557
+ /* @__PURE__ */ jsxs(
14558
+ motion.div,
14559
+ {
14560
+ initial: { opacity: 0, x: -10 },
14561
+ animate: { opacity: 1, x: 0 },
14562
+ transition: { delay: 1.3 },
14563
+ className: "flex items-center justify-between p-2 bg-purple-50 dark:bg-purple-950/20 rounded-lg border border-purple-200 dark:border-purple-800",
14564
+ children: [
14565
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
14566
+ /* @__PURE__ */ jsx(CheckCircleIcon$1, { className: "h-4 w-4 text-purple-500" }),
14567
+ /* @__PURE__ */ jsxs("div", { children: [
14568
+ /* @__PURE__ */ jsx("p", { className: "text-xs font-medium", children: "ISS" }),
14569
+ /* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground", children: "Municipal" })
14570
+ ] })
14571
+ ] }),
14572
+ /* @__PURE__ */ jsx("span", { className: "text-xs font-bold", children: "R$ 60k" })
14573
+ ]
14574
+ }
14575
+ )
14576
+ ] })
14577
+ ] })
14578
+ }
14579
+ ),
14580
+ /* @__PURE__ */ jsx(
14581
+ motion.div,
14582
+ {
14583
+ initial: { opacity: 0, y: 20 },
14584
+ animate: { opacity: 1, y: 0 },
14585
+ transition: { delay: 1.5 },
14586
+ children: /* @__PURE__ */ jsxs(Card, { className: "p-3", children: [
14587
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 mb-3", children: [
14588
+ /* @__PURE__ */ jsx(CpuChipIcon, { className: "h-4 w-4 text-green-500" }),
14589
+ /* @__PURE__ */ jsx("h4", { className: "text-xs font-semibold", children: "4 Agentes Financeiros" })
14590
+ ] }),
14591
+ /* @__PURE__ */ jsx("div", { className: "grid grid-cols-2 gap-2", children: ["Finance", "Tax", "Reports", "Compliance"].map((agent, i) => /* @__PURE__ */ jsx(
14592
+ motion.div,
14593
+ {
14594
+ initial: { opacity: 0, scale: 0.9 },
14595
+ animate: { opacity: 1, scale: 1 },
14596
+ transition: { delay: 1.7 + i * 0.1 },
14597
+ children: /* @__PURE__ */ jsx(Badge, { className: "w-full justify-center bg-green-500/10 text-green-600 dark:text-green-400 text-xs", children: agent })
14598
+ },
14599
+ agent
14600
+ )) })
14601
+ ] })
14602
+ }
14603
+ )
14604
+ ] })
14605
+ ] })
14606
+ }
14607
+ );
14608
+ var Progress = React12.forwardRef(({ className, value, ...props }, ref) => /* @__PURE__ */ jsx(
14609
+ ProgressPrimitive.Root,
14610
+ {
14611
+ ref,
14612
+ className: clsx(
14613
+ "relative h-4 w-full overflow-hidden rounded-full bg-secondary",
14614
+ className
14615
+ ),
14616
+ ...props,
14617
+ children: /* @__PURE__ */ jsx(
14618
+ ProgressPrimitive.Indicator,
14310
14619
  {
14311
- className: "fixed inset-0 z-40 bg-black/20 backdrop-blur-[2px] transition-opacity",
14312
- onClick: onClose,
14313
- "data-testid": "entity-drawer-backdrop"
14620
+ className: "h-full w-full flex-1 bg-primary transition-all",
14621
+ style: { transform: `translateX(-${100 - (value || 0)}%)` }
14314
14622
  }
14315
- ),
14316
- /* @__PURE__ */ jsxs("div", { className: `fixed top-[64px] right-2 bottom-2 z-50 flex w-full ${maxWidth} flex-col overflow-hidden rounded-2xl border border-white/60 bg-white/80 shadow-[0_8px_60px_-12px_rgba(0,0,0,0.25),0_0_0_1px_rgba(255,255,255,0.1)] backdrop-blur-2xl dark:border-white/[0.12] dark:bg-gray-900/85 dark:shadow-[0_8px_60px_-12px_rgba(0,0,0,0.6),0_0_0_1px_rgba(255,255,255,0.06)]`, children: [
14317
- /* @__PURE__ */ jsx("div", { className: `absolute inset-y-0 left-0 w-[3px] bg-gradient-to-b ${gradient} opacity-80` }),
14318
- /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between px-6 py-5", children: [
14319
- /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3.5", children: [
14320
- /* @__PURE__ */ jsx("div", { className: `flex h-11 w-11 items-center justify-center rounded-[14px] bg-gradient-to-br ${gradient} shadow-lg shadow-black/20 ring-1 ring-white/25`, children: icon }),
14321
- /* @__PURE__ */ jsxs("div", { children: [
14322
- /* @__PURE__ */ jsx("h2", { className: "text-base font-bold tracking-tight text-gray-900 dark:text-white", children: title }),
14323
- subtitle && /* @__PURE__ */ jsx("p", { className: "mt-0.5 text-[13px] text-gray-500 dark:text-gray-400", children: subtitle })
14324
- ] })
14325
- ] }),
14623
+ )
14624
+ }
14625
+ ));
14626
+ Progress.displayName = ProgressPrimitive.Root.displayName;
14627
+ var HRRecruitmentDemo = () => /* @__PURE__ */ jsx(
14628
+ motion.div,
14629
+ {
14630
+ initial: { opacity: 0 },
14631
+ animate: { opacity: 1 },
14632
+ exit: { opacity: 0 },
14633
+ transition: { duration: 0.5 },
14634
+ className: "flex flex-col h-full overflow-hidden",
14635
+ children: /* @__PURE__ */ jsxs("div", { className: "flex-1 flex flex-col overflow-hidden", children: [
14636
+ /* @__PURE__ */ jsxs(
14637
+ motion.div,
14638
+ {
14639
+ initial: { y: -20, opacity: 0 },
14640
+ animate: { y: 0, opacity: 1 },
14641
+ transition: { duration: 0.5, delay: 0.3 },
14642
+ className: "h-14 border-b bg-background/95 backdrop-blur-sm flex items-center justify-between px-4",
14643
+ children: [
14644
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3", children: [
14645
+ /* @__PURE__ */ jsx("h2", { className: "text-sm font-semibold", children: "Recrutamento RH" }),
14646
+ /* @__PURE__ */ jsx("span", { className: "text-xs px-2 py-1 rounded-full bg-purple-500/10 text-purple-600 dark:text-purple-400 font-medium", children: "47 candidatos" })
14647
+ ] }),
14648
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
14649
+ /* @__PURE__ */ jsx(BellIcon, { className: "h-4 w-4 text-muted-foreground" }),
14650
+ /* @__PURE__ */ jsx(MagnifyingGlassIcon, { className: "h-4 w-4 text-muted-foreground" })
14651
+ ] })
14652
+ ]
14653
+ }
14654
+ ),
14655
+ /* @__PURE__ */ jsxs("div", { className: "flex-1 overflow-y-auto p-4 space-y-3", children: [
14656
+ /* @__PURE__ */ jsxs(
14657
+ motion.div,
14658
+ {
14659
+ initial: { opacity: 0, y: 20 },
14660
+ animate: { opacity: 1, y: 0 },
14661
+ transition: { delay: 0.5 },
14662
+ className: "grid grid-cols-2 gap-3",
14663
+ children: [
14664
+ /* @__PURE__ */ jsxs(Card, { className: "p-3 bg-gradient-to-br from-purple-500 to-indigo-500 text-white", children: [
14665
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between mb-2", children: [
14666
+ /* @__PURE__ */ jsx(UsersIcon, { className: "h-5 w-5" }),
14667
+ /* @__PURE__ */ jsx(Badge, { className: "bg-white/20 text-white border-white/30 h-5 text-xs", children: "IA" })
14668
+ ] }),
14669
+ /* @__PURE__ */ jsx("p", { className: "text-2xl font-bold", children: "12" }),
14670
+ /* @__PURE__ */ jsx("p", { className: "text-xs opacity-90", children: "Candidatos Qualificados" })
14671
+ ] }),
14672
+ /* @__PURE__ */ jsxs(Card, { className: "p-3 bg-gradient-to-br from-green-500 to-emerald-500 text-white", children: [
14673
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between mb-2", children: [
14674
+ /* @__PURE__ */ jsx(CheckCircleIcon$1, { className: "h-5 w-5" }),
14675
+ /* @__PURE__ */ jsx(Badge, { className: "bg-white/20 text-white border-white/30 h-5 text-xs", children: "+25%" })
14676
+ ] }),
14677
+ /* @__PURE__ */ jsx("p", { className: "text-2xl font-bold", children: "85%" }),
14678
+ /* @__PURE__ */ jsx("p", { className: "text-xs opacity-90", children: "Taxa de Match" })
14679
+ ] })
14680
+ ]
14681
+ }
14682
+ ),
14326
14683
  /* @__PURE__ */ jsx(
14327
- "button",
14684
+ motion.div,
14328
14685
  {
14329
- onClick: onClose,
14330
- "aria-label": "Close",
14331
- className: "rounded-xl p-2 text-gray-400 transition-all hover:bg-black/5 hover:text-gray-600 active:scale-95 dark:text-gray-500 dark:hover:bg-white/10 dark:hover:text-gray-300",
14332
- "data-testid": "entity-drawer-close",
14333
- children: /* @__PURE__ */ jsx(XMarkIcon$1, { className: "h-5 w-5" })
14686
+ initial: { opacity: 0, y: 20 },
14687
+ animate: { opacity: 1, y: 0 },
14688
+ transition: { delay: 0.7 },
14689
+ children: /* @__PURE__ */ jsxs(Card, { className: "border-2", children: [
14690
+ /* @__PURE__ */ jsx("div", { className: "p-3 border-b bg-gradient-to-r from-purple-600 to-indigo-600 text-white", children: /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
14691
+ /* @__PURE__ */ jsx(SparklesIcon, { className: "h-4 w-4" }),
14692
+ /* @__PURE__ */ jsx("h3", { className: "text-sm font-bold", children: "Vaga: Desenvolvedor Senior" })
14693
+ ] }) }),
14694
+ /* @__PURE__ */ jsxs("div", { className: "p-3 space-y-2", children: [
14695
+ /* @__PURE__ */ jsx(
14696
+ motion.div,
14697
+ {
14698
+ initial: { opacity: 0, x: -10 },
14699
+ animate: { opacity: 1, x: 0 },
14700
+ transition: { delay: 0.9 },
14701
+ className: "p-2 bg-green-50 dark:bg-green-950/20 rounded-lg border border-green-200 dark:border-green-800",
14702
+ children: /* @__PURE__ */ jsxs("div", { className: "flex items-start gap-2", children: [
14703
+ /* @__PURE__ */ jsx("div", { className: "h-8 w-8 rounded-full bg-gradient-to-br from-purple-500 to-indigo-500 flex items-center justify-center text-white text-xs font-bold flex-shrink-0", children: "AS" }),
14704
+ /* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
14705
+ /* @__PURE__ */ jsx("p", { className: "text-xs font-medium", children: "Ana Silva" }),
14706
+ /* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground", children: "Score: 95/100 - React, TypeScript, 8 anos exp." }),
14707
+ /* @__PURE__ */ jsx("div", { className: "mt-1", children: /* @__PURE__ */ jsx(Progress, { value: 95, className: "h-1" }) })
14708
+ ] })
14709
+ ] })
14710
+ }
14711
+ ),
14712
+ /* @__PURE__ */ jsx(
14713
+ motion.div,
14714
+ {
14715
+ initial: { opacity: 0, x: -10 },
14716
+ animate: { opacity: 1, x: 0 },
14717
+ transition: { delay: 1.1 },
14718
+ className: "p-2 bg-blue-50 dark:bg-blue-950/20 rounded-lg border border-blue-200 dark:border-blue-800",
14719
+ children: /* @__PURE__ */ jsxs("div", { className: "flex items-start gap-2", children: [
14720
+ /* @__PURE__ */ jsx("div", { className: "h-8 w-8 rounded-full bg-gradient-to-br from-blue-500 to-cyan-500 flex items-center justify-center text-white text-xs font-bold flex-shrink-0", children: "PM" }),
14721
+ /* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
14722
+ /* @__PURE__ */ jsx("p", { className: "text-xs font-medium", children: "Pedro Martins" }),
14723
+ /* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground", children: "Score: 88/100 - Node.js, AWS, 6 anos exp." }),
14724
+ /* @__PURE__ */ jsx("div", { className: "mt-1", children: /* @__PURE__ */ jsx(Progress, { value: 88, className: "h-1" }) })
14725
+ ] })
14726
+ ] })
14727
+ }
14728
+ ),
14729
+ /* @__PURE__ */ jsx(
14730
+ motion.div,
14731
+ {
14732
+ initial: { opacity: 0, x: -10 },
14733
+ animate: { opacity: 1, x: 0 },
14734
+ transition: { delay: 1.3 },
14735
+ className: "p-2 bg-purple-50 dark:bg-purple-950/20 rounded-lg border border-purple-200 dark:border-purple-800",
14736
+ children: /* @__PURE__ */ jsxs("div", { className: "flex items-start gap-2", children: [
14737
+ /* @__PURE__ */ jsx("div", { className: "h-8 w-8 rounded-full bg-gradient-to-br from-pink-500 to-purple-500 flex items-center justify-center text-white text-xs font-bold flex-shrink-0", children: "JO" }),
14738
+ /* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
14739
+ /* @__PURE__ */ jsx("p", { className: "text-xs font-medium", children: "Juliana Oliveira" }),
14740
+ /* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground", children: "Score: 82/100 - Python, Django, 5 anos exp." }),
14741
+ /* @__PURE__ */ jsx("div", { className: "mt-1", children: /* @__PURE__ */ jsx(Progress, { value: 82, className: "h-1" }) })
14742
+ ] })
14743
+ ] })
14744
+ }
14745
+ )
14746
+ ] })
14747
+ ] })
14748
+ }
14749
+ ),
14750
+ /* @__PURE__ */ jsx(
14751
+ motion.div,
14752
+ {
14753
+ initial: { opacity: 0, y: 20 },
14754
+ animate: { opacity: 1, y: 0 },
14755
+ transition: { delay: 1.5 },
14756
+ children: /* @__PURE__ */ jsxs(Card, { className: "p-3", children: [
14757
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 mb-3", children: [
14758
+ /* @__PURE__ */ jsx(CpuChipIcon, { className: "h-4 w-4 text-purple-500" }),
14759
+ /* @__PURE__ */ jsx("h4", { className: "text-xs font-semibold", children: "4 Agentes Coordenados" })
14760
+ ] }),
14761
+ /* @__PURE__ */ jsx("div", { className: "grid grid-cols-2 gap-2", children: ["HR", "Recruiter", "Skills", "Interview"].map((agent, i) => /* @__PURE__ */ jsx(
14762
+ motion.div,
14763
+ {
14764
+ initial: { opacity: 0, scale: 0.9 },
14765
+ animate: { opacity: 1, scale: 1 },
14766
+ transition: { delay: 1.7 + i * 0.1 },
14767
+ children: /* @__PURE__ */ jsx(Badge, { className: "w-full justify-center bg-purple-500/10 text-purple-600 dark:text-purple-400 text-xs", children: agent })
14768
+ },
14769
+ agent
14770
+ )) })
14771
+ ] })
14334
14772
  }
14335
14773
  )
14336
- ] }),
14337
- /* @__PURE__ */ jsx("div", { className: "mx-5 h-px bg-gradient-to-r from-transparent via-gray-200/80 to-transparent dark:via-white/10" }),
14338
- tabs,
14339
- /* @__PURE__ */ jsx("div", { className: "flex-1 overflow-y-auto px-6 py-5", children })
14774
+ ] })
14340
14775
  ] })
14341
- ] });
14342
- }
14343
-
14344
- // src/lib/locale-flags.ts
14345
- var flag_br = "data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%0A%3C!--%20Uploaded%20to%3A%20SVG%20Repo%2C%20www.svgrepo.com%2C%20Generator%3A%20SVG%20Repo%20Mixer%20Tools%20--%3E%0A%3Csvg%20height%3D%22800px%22%20width%3D%22800px%22%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20%0A%09%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpath%20style%3D%22fill%3A%23259245%3B%22%20d%3D%22M395.901%2C7.286H116.099C56.003%2C7.286%2C7.286%2C56.003%2C7.286%2C116.099v279.803%0A%09c0%2C60.095%2C48.717%2C108.812%2C108.812%2C108.812h279.803c60.095%2C0%2C108.812-48.717%2C108.812-108.812V116.099%0A%09C504.714%2C56.003%2C455.997%2C7.286%2C395.901%2C7.286z%22%2F%3E%0A%3Cpath%20d%3D%22M395.901%2C512H116.099C52.082%2C512%2C0%2C459.918%2C0%2C395.901V116.099C0%2C52.082%2C52.082%2C0%2C116.099%2C0h279.803%0A%09C459.918%2C0%2C512%2C52.082%2C512%2C116.099v279.803C512%2C459.918%2C459.918%2C512%2C395.901%2C512z%20M116.099%2C14.573%0A%09c-55.981%2C0-101.526%2C45.544-101.526%2C101.526v279.803c0%2C55.981%2C45.544%2C101.526%2C101.526%2C101.526h279.803%0A%09c55.981%2C0%2C101.526-45.545%2C101.526-101.526V116.099c0-55.981-45.545-101.526-101.526-101.526%0A%09C395.902%2C14.573%2C116.099%2C14.573%2C116.099%2C14.573z%22%2F%3E%0A%3Cpolygon%20style%3D%22fill%3A%23FFE000%3B%22%20points%3D%22256%2C374.81%2051.502%2C256%20256%2C137.19%20460.498%2C256%20%22%2F%3E%0A%3Cpath%20d%3D%22M256%2C382.097c-1.265%2C0-2.529-0.328-3.66-0.986L47.842%2C262.301c-2.245-1.305-3.626-3.705-3.626-6.301%0A%09s1.381-4.996%2C3.626-6.301l204.498-118.81c2.264-1.315%2C5.057-1.315%2C7.321%2C0l204.498%2C118.81c2.245%2C1.305%2C3.626%2C3.705%2C3.626%2C6.301%0A%09c0%2C2.596-1.381%2C4.996-3.626%2C6.301l-32.303%2C18.767c-3.48%2C2.02-7.939%2C0.841-9.961-2.64c-2.021-3.479-0.84-7.939%2C2.64-9.961%0A%09L445.993%2C256L256%2C145.617L66.007%2C256L256%2C366.383l139.861-81.258c3.478-2.021%2C7.938-0.841%2C9.961%2C2.64%0A%09c2.021%2C3.479%2C0.84%2C7.939-2.64%2C9.961L259.66%2C381.111C258.529%2C381.768%2C257.265%2C382.097%2C256%2C382.097z%22%2F%3E%0A%3Ccircle%20style%3D%22fill%3A%23103B9B%3B%22%20cx%3D%22256%22%20cy%3D%22256%22%20r%3D%2267.47%22%2F%3E%0A%3Cpath%20style%3D%22fill%3A%23FFFFFF%3B%22%20d%3D%22M316.265%2C293.777c-2.7%2C0-5.294-1.507-6.556-4.097c-10.094-20.712-27.403-36.941-48.741-45.697%0A%09c-21.334-8.755-45.052-9.367-66.782-1.72c-3.794%2C1.333-7.955-0.659-9.292-4.455c-1.335-3.796%2C0.659-7.956%2C4.455-9.292%0A%09c25.106-8.835%2C52.506-8.129%2C77.152%2C1.986c24.649%2C10.116%2C44.646%2C28.865%2C56.308%2C52.796c1.763%2C3.617%2C0.259%2C7.979-3.359%2C9.742%0A%09C318.423%2C293.54%2C317.336%2C293.777%2C316.265%2C293.777z%22%2F%3E%0A%3Cpath%20d%3D%22M256%2C330.753c-41.219%2C0-74.753-33.534-74.753-74.753s33.534-74.753%2C74.753-74.753s74.753%2C33.534%2C74.753%2C74.753%0A%09S297.219%2C330.753%2C256%2C330.753z%20M256%2C195.82c-33.183%2C0-60.18%2C26.997-60.18%2C60.18s26.997%2C60.18%2C60.18%2C60.18s60.18-26.997%2C60.18-60.18%0A%09S289.183%2C195.82%2C256%2C195.82z%22%2F%3E%0A%3C%2Fsvg%3E";
14346
- var flag_us = "data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%0A%3C!--%20Uploaded%20to%3A%20SVG%20Repo%2C%20www.svgrepo.com%2C%20Generator%3A%20SVG%20Repo%20Mixer%20Tools%20--%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20%0A%09%20viewBox%3D%220%200%20512.001%20512.001%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpath%20style%3D%22fill%3A%23FFFFFF%3B%22%20d%3D%22M395.901%2C7.287H116.099C56.003%2C7.287%2C7.286%2C56.004%2C7.286%2C116.1v279.803%0A%09c0%2C60.095%2C48.717%2C108.812%2C108.812%2C108.812h279.803c60.095%2C0%2C108.812-48.717%2C108.812-108.812V116.1%0A%09C504.714%2C56.004%2C455.997%2C7.287%2C395.901%2C7.287z%22%2F%3E%0A%3Cg%3E%0A%09%3Crect%20x%3D%227.286%22%20y%3D%22338.901%22%20style%3D%22fill%3A%23ED1F34%3B%22%20width%3D%22497.43%22%20height%3D%2255.26%22%2F%3E%0A%09%3Crect%20x%3D%22225.79%22%20y%3D%22228.361%22%20style%3D%22fill%3A%23ED1F34%3B%22%20width%3D%22278.92%22%20height%3D%2255.28%22%2F%3E%0A%09%3Crect%20x%3D%22236.17%22%20y%3D%22117.831%22%20style%3D%22fill%3A%23ED1F34%3B%22%20width%3D%22268.55%22%20height%3D%2255.26%22%2F%3E%0A%09%3Cpath%20style%3D%22fill%3A%23ED1F34%3B%22%20d%3D%22M116.099%2C504.715h279.803c40.628%2C0%2C76.05-22.27%2C94.739-55.264H21.36%0A%09%09C40.049%2C482.445%2C75.471%2C504.715%2C116.099%2C504.715z%22%2F%3E%0A%09%3Cpath%20style%3D%22fill%3A%23ED1F34%3B%22%20d%3D%22M490.64%2C62.552c-18.689-32.995-54.111-55.264-94.739-55.264H225.79v55.264H490.64z%22%2F%3E%0A%3C%2Fg%3E%0A%3Cpath%20style%3D%22fill%3A%23164FCE%3B%22%20d%3D%22M335.041%2C7.287H116.099C56.003%2C7.287%2C7.286%2C56.004%2C7.286%2C116.1v167.541h327.755L335.041%2C7.287%0A%09L335.041%2C7.287z%22%2F%3E%0A%3Cg%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2272.55%22%20cy%3D%22217.091%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22121.86%22%20cy%3D%22217.091%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22171.16%22%20cy%3D%22217.091%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22220.47%22%20cy%3D%22217.091%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22269.77%22%20cy%3D%22217.091%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2247.902%22%20cy%3D%22240.971%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2297.21%22%20cy%3D%22240.971%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22146.51%22%20cy%3D%22240.971%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22195.82%22%20cy%3D%22240.971%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22245.12%22%20cy%3D%22240.971%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22294.43%22%20cy%3D%22240.971%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2247.902%22%20cy%3D%22193.221%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2297.21%22%20cy%3D%22193.221%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22146.51%22%20cy%3D%22193.221%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22195.82%22%20cy%3D%22193.221%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22245.12%22%20cy%3D%22193.221%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22294.43%22%20cy%3D%22193.221%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2272.55%22%20cy%3D%22169.341%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22121.86%22%20cy%3D%22169.341%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22171.16%22%20cy%3D%22169.341%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22220.47%22%20cy%3D%22169.341%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22269.77%22%20cy%3D%22169.341%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2247.902%22%20cy%3D%22145.461%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2297.21%22%20cy%3D%22145.461%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22146.51%22%20cy%3D%22145.461%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22195.82%22%20cy%3D%22145.461%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22245.12%22%20cy%3D%22145.461%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22294.43%22%20cy%3D%22145.461%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2272.55%22%20cy%3D%22121.591%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22121.86%22%20cy%3D%22121.591%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22171.16%22%20cy%3D%22121.591%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22220.47%22%20cy%3D%22121.591%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22269.77%22%20cy%3D%22121.591%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2247.902%22%20cy%3D%2297.711%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2297.21%22%20cy%3D%2297.711%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22146.51%22%20cy%3D%2297.711%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22195.82%22%20cy%3D%2297.711%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22245.12%22%20cy%3D%2297.711%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22294.43%22%20cy%3D%2297.711%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2272.55%22%20cy%3D%2273.835%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22121.86%22%20cy%3D%2273.835%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22171.16%22%20cy%3D%2273.835%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22220.47%22%20cy%3D%2273.835%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22269.77%22%20cy%3D%2273.835%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2247.902%22%20cy%3D%2249.958%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2297.21%22%20cy%3D%2249.958%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22146.51%22%20cy%3D%2249.958%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22195.82%22%20cy%3D%2249.958%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22245.12%22%20cy%3D%2249.958%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22294.43%22%20cy%3D%2249.958%22%20r%3D%228.953%22%2F%3E%0A%3C%2Fg%3E%0A%3Cpath%20d%3D%22M497.341%2C59.688c-0.199-0.465-0.447-0.902-0.734-1.311C476.551%2C23.521%2C438.921%2C0.001%2C395.901%2C0.001H116.099%0A%09C52.082%2C0.001%2C0%2C52.083%2C0%2C116.1v279.803c0%2C20.462%2C5.328%2C39.7%2C14.659%2C56.412c0.199%2C0.464%2C0.447%2C0.902%2C0.734%2C1.311%0A%09C35.449%2C488.481%2C73.079%2C512%2C116.099%2C512h279.803c43.02%2C0%2C80.65-23.52%2C100.706-58.376c0.287-0.409%2C0.535-0.846%2C0.734-1.311%0A%09c9.331-16.712%2C14.659-35.95%2C14.659-56.412V116.1C512%2C95.638%2C506.672%2C76.4%2C497.341%2C59.688z%20M438.39%2C386.883%0A%09c-4.024%2C0-7.286%2C3.262-7.286%2C7.287s3.262%2C7.286%2C7.286%2C7.286h58.883c-0.791%2C14.595-4.676%2C28.38-11.013%2C40.708H25.74%0A%09c-6.337-12.328-10.222-26.113-11.013-40.708h390.501c4.024%2C0%2C7.286-3.262%2C7.286-7.286c0-4.025-3.262-7.287-7.286-7.287H14.573%0A%09v-40.692h482.854v40.692L438.39%2C386.883L438.39%2C386.883z%20M497.273%2C110.546H342.328V69.838H486.26%0A%09C492.597%2C82.166%2C496.482%2C95.951%2C497.273%2C110.546z%20M389.101%2C180.383h108.326v40.691H342.328v-40.691h19.156%0A%09c4.024%2C0%2C7.286-3.262%2C7.286-7.287c0-4.025-3.262-7.286-7.286-7.286h-19.156v-40.692h155.099v40.692H389.101%0A%09c-4.024%2C0-7.287%2C3.262-7.287%2C7.286C381.814%2C177.121%2C385.076%2C180.383%2C389.101%2C180.383z%20M342.328%2C235.647h155.099v40.708H342.328%0A%09V235.647z%20M497.427%2C290.928v40.691H14.573v-40.691H497.427z%20M477.132%2C55.265H342.328V14.574h53.574%0A%09C429.082%2C14.574%2C458.594%2C30.575%2C477.132%2C55.265z%20M116.099%2C14.574h211.656v261.781H14.573V116.1%0A%09C14.573%2C60.119%2C60.117%2C14.574%2C116.099%2C14.574z%20M395.901%2C497.428H116.099c-33.181%2C0-62.693-16.001-81.231-40.691h442.264%0A%09C458.594%2C481.427%2C429.082%2C497.428%2C395.901%2C497.428z%22%2F%3E%0A%3C%2Fsvg%3E";
14347
- var flag_es = "data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%0A%3C!--%20Uploaded%20to%3A%20SVG%20Repo%2C%20www.svgrepo.com%2C%20Generator%3A%20SVG%20Repo%20Mixer%20Tools%20--%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20%0A%09%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Crect%20x%3D%227.286%22%20y%3D%22131.64%22%20style%3D%22fill%3A%23FFE000%3B%22%20width%3D%22497.43%22%20height%3D%22248.71%22%2F%3E%0A%3Cg%3E%0A%09%3Cpath%20style%3D%22fill%3A%23ED1F34%3B%22%20d%3D%22M395.901%2C7.287H116.099C56.003%2C7.287%2C7.286%2C56.003%2C7.286%2C116.099v15.545h497.427v-15.545%0A%09%09C504.714%2C56.003%2C455.997%2C7.287%2C395.901%2C7.287z%22%2F%3E%0A%09%3Cpath%20style%3D%22fill%3A%23ED1F34%3B%22%20d%3D%22M7.286%2C395.901c0%2C60.095%2C48.717%2C108.812%2C108.812%2C108.812h279.803%0A%09%09c60.095%2C0%2C108.812-48.717%2C108.812-108.812v-15.545H7.286V395.901z%22%2F%3E%0A%3C%2Fg%3E%0A%3Cpath%20d%3D%22M395.901%2C0H116.099C52.082%2C0%2C0%2C52.082%2C0%2C116.099v279.803C0%2C459.918%2C52.082%2C512%2C116.099%2C512h279.803%0A%09C459.918%2C512%2C512%2C459.918%2C512%2C395.901V116.099C512%2C52.082%2C459.918%2C0%2C395.901%2C0z%20M116.099%2C14.573h279.803%0A%09c55.981%2C0%2C101.526%2C45.544%2C101.526%2C101.526v8.258H14.573v-8.258C14.573%2C60.117%2C60.117%2C14.573%2C116.099%2C14.573z%20M395.901%2C497.427%0A%09H116.099c-55.982%2C0-101.526-45.544-101.526-101.526v-8.258h390.655c4.024%2C0%2C7.286-3.262%2C7.286-7.287s-3.262-7.286-7.286-7.286%0A%09H14.573V138.93h482.854v234.14H438.39c-4.024%2C0-7.286%2C3.262-7.286%2C7.286s3.262%2C7.287%2C7.286%2C7.287h59.037v8.258%0A%09C497.427%2C451.883%2C451.883%2C497.427%2C395.901%2C497.427z%22%2F%3E%0A%3C%2Fsvg%3E";
14348
- var flag_fr = "data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%0A%3C!--%20Uploaded%20to%3A%20SVG%20Repo%2C%20www.svgrepo.com%2C%20Generator%3A%20SVG%20Repo%20Mixer%20Tools%20--%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20%0A%09%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Crect%20x%3D%22173.1%22%20y%3D%227.287%22%20style%3D%22fill%3A%23FFFFFF%3B%22%20width%3D%22165.81%22%20height%3D%22497.43%22%2F%3E%0A%3Cpath%20style%3D%22fill%3A%23164FCE%3B%22%20d%3D%22M116.099%2C7.287C56.003%2C7.287%2C7.286%2C56.003%2C7.286%2C116.099v279.803%0A%09c0%2C60.095%2C48.717%2C108.812%2C108.812%2C108.812h56.997V7.287H116.099z%22%2F%3E%0A%3Cpath%20style%3D%22fill%3A%23ED1F34%3B%22%20d%3D%22M395.901%2C7.287h-56.997v497.427h56.997c60.095%2C0%2C108.812-48.717%2C108.812-108.812V116.099%0A%09C504.714%2C56.003%2C455.997%2C7.287%2C395.901%2C7.287z%22%2F%3E%0A%3Cpath%20d%3D%22M395.901%2C0H116.099C52.082%2C0%2C0%2C52.082%2C0%2C116.099v279.803C0%2C459.918%2C52.082%2C512%2C116.099%2C512h279.803%0A%09C459.918%2C512%2C512%2C459.918%2C512%2C395.901V116.099C512%2C52.082%2C459.918%2C0%2C395.901%2C0z%20M14.573%2C395.901V116.099%0A%09c0-55.981%2C45.544-101.526%2C101.526-101.526h49.71v482.854h-49.71C60.117%2C497.427%2C14.573%2C451.883%2C14.573%2C395.901z%20M497.427%2C395.901%0A%09c0%2C55.982-45.545%2C101.526-101.526%2C101.526H346.19V156.515c0-4.024-3.262-7.286-7.286-7.286c-4.025%2C0-7.287%2C3.262-7.287%2C7.286%0A%09v340.912H180.382V14.573h151.236v92.199c0%2C4.024%2C3.262%2C7.286%2C7.287%2C7.286s7.286-3.262%2C7.286-7.286V14.573h49.711%0A%09c55.981%2C0%2C101.526%2C45.544%2C101.526%2C101.526L497.427%2C395.901L497.427%2C395.901z%22%2F%3E%0A%3C%2Fsvg%3E";
14349
- var flag_de = "data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%0A%3C!--%20Uploaded%20to%3A%20SVG%20Repo%2C%20www.svgrepo.com%2C%20Generator%3A%20SVG%20Repo%20Mixer%20Tools%20--%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20%0A%09%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Crect%20x%3D%227.286%22%20y%3D%22173.1%22%20style%3D%22fill%3A%23ED1F34%3B%22%20width%3D%22497.43%22%20height%3D%22165.81%22%2F%3E%0A%3Cpath%20style%3D%22fill%3A%23FFE000%3B%22%20d%3D%22M7.286%2C395.901c0%2C60.095%2C48.717%2C108.812%2C108.812%2C108.812h279.803%0A%09c60.095%2C0%2C108.812-48.717%2C108.812-108.812v-56.997H7.286V395.901z%22%2F%3E%0A%3Cpath%20style%3D%22fill%3A%23333333%3B%22%20d%3D%22M395.901%2C7.286H116.099C56.003%2C7.286%2C7.286%2C56.003%2C7.286%2C116.099v56.997h497.427v-56.997%0A%09C504.714%2C56.003%2C455.997%2C7.286%2C395.901%2C7.286z%22%2F%3E%0A%3Cpath%20d%3D%22M395.901%2C0H116.099C52.082%2C0%2C0%2C52.082%2C0%2C116.099v279.803C0%2C459.918%2C52.082%2C512%2C116.099%2C512h279.803%0A%09C459.918%2C512%2C512%2C459.918%2C512%2C395.901V116.099C512%2C52.082%2C459.918%2C0%2C395.901%2C0z%20M116.099%2C14.573h279.803%0A%09c55.981%2C0%2C101.526%2C45.544%2C101.526%2C101.526v49.71H14.573v-49.71C14.573%2C60.117%2C60.117%2C14.573%2C116.099%2C14.573z%20M395.901%2C497.427%0A%09H116.099c-55.982%2C0-101.526-45.544-101.526-101.526v-49.71h390.655c4.025%2C0%2C7.286-3.262%2C7.286-7.286s-3.262-7.286-7.286-7.286%0A%09H14.573V180.382h482.854v151.236H438.39c-4.025%2C0-7.286%2C3.262-7.286%2C7.286s3.262%2C7.286%2C7.286%2C7.286h59.037v49.71%0A%09C497.427%2C451.883%2C451.882%2C497.427%2C395.901%2C497.427z%22%2F%3E%0A%3C%2Fsvg%3E";
14350
- var flag_it = "data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%0A%3C!--%20Uploaded%20to%3A%20SVG%20Repo%2C%20www.svgrepo.com%2C%20Generator%3A%20SVG%20Repo%20Mixer%20Tools%20--%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20%0A%09%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Crect%20x%3D%22173.1%22%20y%3D%227.286%22%20style%3D%22fill%3A%23FFFFFF%3B%22%20width%3D%22165.81%22%20height%3D%22497.43%22%2F%3E%0A%3Cpath%20style%3D%22fill%3A%23259245%3B%22%20d%3D%22M116.099%2C7.286C56.003%2C7.286%2C7.286%2C56.003%2C7.286%2C116.099v279.803%0A%09c0%2C60.095%2C48.717%2C108.812%2C108.812%2C108.812h56.997V7.286H116.099z%22%2F%3E%0A%3Cpath%20style%3D%22fill%3A%23ED1F34%3B%22%20d%3D%22M395.901%2C7.286h-56.997v497.427h56.997c60.095%2C0%2C108.812-48.717%2C108.812-108.812V116.099%0A%09C504.714%2C56.003%2C455.997%2C7.286%2C395.901%2C7.286z%22%2F%3E%0A%3Cpath%20d%3D%22M395.901%2C0H116.099C52.082%2C0%2C0%2C52.082%2C0%2C116.099v279.803C0%2C459.918%2C52.082%2C512%2C116.099%2C512h279.803%0A%09C459.918%2C512%2C512%2C459.918%2C512%2C395.901V116.099C512%2C52.082%2C459.918%2C0%2C395.901%2C0z%20M14.573%2C395.901V116.099%0A%09c0-55.982%2C45.544-101.526%2C101.526-101.526h49.71v482.854h-49.71C60.117%2C497.427%2C14.573%2C451.883%2C14.573%2C395.901z%20M497.427%2C395.901%0A%09c0%2C55.982-45.544%2C101.526-101.526%2C101.526h-49.71V156.515c0-4.024-3.262-7.286-7.287-7.286c-4.024%2C0-7.286%2C3.262-7.286%2C7.286%0A%09v340.912H180.382V14.573h151.236v92.199c0%2C4.024%2C3.262%2C7.286%2C7.286%2C7.286c4.024%2C0%2C7.287-3.262%2C7.287-7.286V14.573h49.71%0A%09c55.981%2C0%2C101.526%2C45.544%2C101.526%2C101.526L497.427%2C395.901L497.427%2C395.901z%22%2F%3E%0A%3C%2Fsvg%3E";
14351
- var LOCALE_FLAGS = {
14352
- "br": flag_br,
14353
- "us": flag_us,
14354
- "es": flag_es,
14355
- "fr": flag_fr,
14356
- "de": flag_de,
14357
- "it": flag_it,
14776
+ }
14777
+ );
14778
+ var InventoryDemo = () => /* @__PURE__ */ jsx(
14779
+ motion.div,
14780
+ {
14781
+ initial: { opacity: 0 },
14782
+ animate: { opacity: 1 },
14783
+ exit: { opacity: 0 },
14784
+ transition: { duration: 0.5 },
14785
+ className: "flex flex-col h-full overflow-hidden",
14786
+ children: /* @__PURE__ */ jsxs("div", { className: "flex-1 flex flex-col overflow-hidden", children: [
14787
+ /* @__PURE__ */ jsxs(
14788
+ motion.div,
14789
+ {
14790
+ initial: { y: -20, opacity: 0 },
14791
+ animate: { y: 0, opacity: 1 },
14792
+ transition: { duration: 0.5, delay: 0.3 },
14793
+ className: "h-14 border-b bg-background/95 backdrop-blur-sm flex items-center justify-between px-4",
14794
+ children: [
14795
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3", children: [
14796
+ /* @__PURE__ */ jsx("h2", { className: "text-sm font-semibold", children: "Gest\xE3o de Estoque" }),
14797
+ /* @__PURE__ */ jsx("span", { className: "text-xs px-2 py-1 rounded-full bg-orange-500/10 text-orange-600 dark:text-orange-400 font-medium", children: "3 alertas" })
14798
+ ] }),
14799
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
14800
+ /* @__PURE__ */ jsx(BellIcon, { className: "h-4 w-4 text-muted-foreground" }),
14801
+ /* @__PURE__ */ jsx(MagnifyingGlassIcon, { className: "h-4 w-4 text-muted-foreground" })
14802
+ ] })
14803
+ ]
14804
+ }
14805
+ ),
14806
+ /* @__PURE__ */ jsxs("div", { className: "flex-1 overflow-y-auto p-4 space-y-3", children: [
14807
+ /* @__PURE__ */ jsxs(
14808
+ motion.div,
14809
+ {
14810
+ initial: { opacity: 0, y: 20 },
14811
+ animate: { opacity: 1, y: 0 },
14812
+ transition: { delay: 0.5 },
14813
+ className: "grid grid-cols-2 gap-3",
14814
+ children: [
14815
+ /* @__PURE__ */ jsxs(Card, { className: "p-3 bg-gradient-to-br from-green-500 to-emerald-500 text-white", children: [
14816
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between mb-2", children: [
14817
+ /* @__PURE__ */ jsx(ShoppingCartIcon, { className: "h-5 w-5" }),
14818
+ /* @__PURE__ */ jsx(Badge, { className: "bg-white/20 text-white border-white/30 h-5 text-xs", children: "OK" })
14819
+ ] }),
14820
+ /* @__PURE__ */ jsx("p", { className: "text-2xl font-bold", children: "1.284" }),
14821
+ /* @__PURE__ */ jsx("p", { className: "text-xs opacity-90", children: "Produtos em Estoque" })
14822
+ ] }),
14823
+ /* @__PURE__ */ jsxs(Card, { className: "p-3 bg-gradient-to-br from-orange-500 to-red-500 text-white", children: [
14824
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between mb-2", children: [
14825
+ /* @__PURE__ */ jsx(ExclamationTriangleIcon, { className: "h-5 w-5" }),
14826
+ /* @__PURE__ */ jsx(Badge, { className: "bg-white/20 text-white border-white/30 h-5 text-xs", children: "A\xE7\xE3o" })
14827
+ ] }),
14828
+ /* @__PURE__ */ jsx("p", { className: "text-2xl font-bold", children: "23" }),
14829
+ /* @__PURE__ */ jsx("p", { className: "text-xs opacity-90", children: "Estoque Baixo" })
14830
+ ] })
14831
+ ]
14832
+ }
14833
+ ),
14834
+ /* @__PURE__ */ jsx(
14835
+ motion.div,
14836
+ {
14837
+ initial: { opacity: 0, y: 20 },
14838
+ animate: { opacity: 1, y: 0 },
14839
+ transition: { delay: 0.7 },
14840
+ children: /* @__PURE__ */ jsxs(Card, { className: "border-2 border-orange-200 dark:border-orange-800", children: [
14841
+ /* @__PURE__ */ jsx("div", { className: "p-3 border-b bg-gradient-to-r from-orange-600 to-red-600 text-white", children: /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
14842
+ /* @__PURE__ */ jsx(ExclamationTriangleIcon, { className: "h-4 w-4" }),
14843
+ /* @__PURE__ */ jsx("h3", { className: "text-sm font-bold", children: "Alertas IA de Estoque" })
14844
+ ] }) }),
14845
+ /* @__PURE__ */ jsxs("div", { className: "p-3 space-y-2", children: [
14846
+ /* @__PURE__ */ jsx(
14847
+ motion.div,
14848
+ {
14849
+ initial: { opacity: 0, x: -10 },
14850
+ animate: { opacity: 1, x: 0 },
14851
+ transition: { delay: 0.9 },
14852
+ className: "p-2 bg-orange-50 dark:bg-orange-950/20 rounded-lg border border-orange-200 dark:border-orange-800",
14853
+ children: /* @__PURE__ */ jsxs("div", { className: "flex items-start gap-2", children: [
14854
+ /* @__PURE__ */ jsx(ExclamationTriangleIcon, { className: "h-4 w-4 text-orange-500 flex-shrink-0 mt-0.5" }),
14855
+ /* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
14856
+ /* @__PURE__ */ jsx("p", { className: "text-xs font-medium", children: "Notebook Dell XPS 15" }),
14857
+ /* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground", children: "Apenas 3 unidades - repor urgente" }),
14858
+ /* @__PURE__ */ jsx("div", { className: "mt-1", children: /* @__PURE__ */ jsx(Progress, { value: 15, className: "h-1" }) })
14859
+ ] })
14860
+ ] })
14861
+ }
14862
+ ),
14863
+ /* @__PURE__ */ jsx(
14864
+ motion.div,
14865
+ {
14866
+ initial: { opacity: 0, x: -10 },
14867
+ animate: { opacity: 1, x: 0 },
14868
+ transition: { delay: 1.1 },
14869
+ className: "p-2 bg-yellow-50 dark:bg-yellow-950/20 rounded-lg border border-yellow-200 dark:border-yellow-800",
14870
+ children: /* @__PURE__ */ jsxs("div", { className: "flex items-start gap-2", children: [
14871
+ /* @__PURE__ */ jsx(ArrowTrendingUpIcon, { className: "h-4 w-4 text-yellow-500 flex-shrink-0 mt-0.5" }),
14872
+ /* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
14873
+ /* @__PURE__ */ jsx("p", { className: "text-xs font-medium", children: "Mouse Logitech MX Master" }),
14874
+ /* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground", children: "Vendas +180% - aumentar estoque" }),
14875
+ /* @__PURE__ */ jsx("div", { className: "mt-1", children: /* @__PURE__ */ jsx(Progress, { value: 40, className: "h-1" }) })
14876
+ ] })
14877
+ ] })
14878
+ }
14879
+ ),
14880
+ /* @__PURE__ */ jsx(
14881
+ motion.div,
14882
+ {
14883
+ initial: { opacity: 0, x: -10 },
14884
+ animate: { opacity: 1, x: 0 },
14885
+ transition: { delay: 1.3 },
14886
+ className: "p-2 bg-red-50 dark:bg-red-950/20 rounded-lg border border-red-200 dark:border-red-800",
14887
+ children: /* @__PURE__ */ jsxs("div", { className: "flex items-start gap-2", children: [
14888
+ /* @__PURE__ */ jsx(XCircleIcon, { className: "h-4 w-4 text-red-500 flex-shrink-0 mt-0.5" }),
14889
+ /* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
14890
+ /* @__PURE__ */ jsx("p", { className: "text-xs font-medium", children: "Teclado Mec\xE2nico RGB" }),
14891
+ /* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground", children: "CR\xCDTICO: 1 unidade restante" }),
14892
+ /* @__PURE__ */ jsx("div", { className: "mt-1", children: /* @__PURE__ */ jsx(Progress, { value: 5, className: "h-1 bg-red-200" }) })
14893
+ ] })
14894
+ ] })
14895
+ }
14896
+ )
14897
+ ] })
14898
+ ] })
14899
+ }
14900
+ ),
14901
+ /* @__PURE__ */ jsx(
14902
+ motion.div,
14903
+ {
14904
+ initial: { opacity: 0, y: 20 },
14905
+ animate: { opacity: 1, y: 0 },
14906
+ transition: { delay: 1.5 },
14907
+ children: /* @__PURE__ */ jsxs(Card, { className: "p-3", children: [
14908
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 mb-3", children: [
14909
+ /* @__PURE__ */ jsx(SparklesIcon, { className: "h-4 w-4 text-purple-500" }),
14910
+ /* @__PURE__ */ jsx("h4", { className: "text-xs font-semibold", children: "Recomenda\xE7\xF5es IA" })
14911
+ ] }),
14912
+ /* @__PURE__ */ jsxs("div", { className: "space-y-2", children: [
14913
+ /* @__PURE__ */ jsxs(
14914
+ motion.div,
14915
+ {
14916
+ initial: { opacity: 0, x: -10 },
14917
+ animate: { opacity: 1, x: 0 },
14918
+ transition: { delay: 1.7 },
14919
+ className: "flex items-start gap-2 text-xs",
14920
+ children: [
14921
+ /* @__PURE__ */ jsx(CheckCircleIcon$1, { className: "h-3 w-3 text-green-500 flex-shrink-0 mt-0.5" }),
14922
+ /* @__PURE__ */ jsx("span", { children: "Pedido autom\xE1tico de 50 unidades Notebook Dell programado" })
14923
+ ]
14924
+ }
14925
+ ),
14926
+ /* @__PURE__ */ jsxs(
14927
+ motion.div,
14928
+ {
14929
+ initial: { opacity: 0, x: -10 },
14930
+ animate: { opacity: 1, x: 0 },
14931
+ transition: { delay: 1.9 },
14932
+ className: "flex items-start gap-2 text-xs",
14933
+ children: [
14934
+ /* @__PURE__ */ jsx(ArrowTrendingUpIcon, { className: "h-3 w-3 text-blue-500 flex-shrink-0 mt-0.5" }),
14935
+ /* @__PURE__ */ jsx("span", { children: "Black Friday: aumentar Mouse Logitech em 300%" })
14936
+ ]
14937
+ }
14938
+ )
14939
+ ] })
14940
+ ] })
14941
+ }
14942
+ )
14943
+ ] })
14944
+ ] })
14945
+ }
14946
+ );
14947
+ var LGPDComplianceDemo = () => /* @__PURE__ */ jsx(
14948
+ motion.div,
14949
+ {
14950
+ initial: { opacity: 0 },
14951
+ animate: { opacity: 1 },
14952
+ exit: { opacity: 0 },
14953
+ transition: { duration: 0.5 },
14954
+ className: "flex flex-col h-full overflow-hidden",
14955
+ children: /* @__PURE__ */ jsxs("div", { className: "flex-1 flex flex-col overflow-hidden", children: [
14956
+ /* @__PURE__ */ jsxs(
14957
+ motion.div,
14958
+ {
14959
+ initial: { y: -20, opacity: 0 },
14960
+ animate: { y: 0, opacity: 1 },
14961
+ transition: { duration: 0.5, delay: 0.3 },
14962
+ className: "h-14 border-b bg-background/95 backdrop-blur-sm flex items-center justify-between px-4",
14963
+ children: [
14964
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3", children: [
14965
+ /* @__PURE__ */ jsx("h2", { className: "text-sm font-semibold", children: "Conformidade LGPD" }),
14966
+ /* @__PURE__ */ jsx("span", { className: "text-xs px-2 py-1 rounded-full bg-blue-500/10 text-blue-600 dark:text-blue-400 font-medium", children: "Auditoria IA" })
14967
+ ] }),
14968
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
14969
+ /* @__PURE__ */ jsx(BellIcon, { className: "h-4 w-4 text-muted-foreground" }),
14970
+ /* @__PURE__ */ jsx(MagnifyingGlassIcon, { className: "h-4 w-4 text-muted-foreground" })
14971
+ ] })
14972
+ ]
14973
+ }
14974
+ ),
14975
+ /* @__PURE__ */ jsxs("div", { className: "flex-1 overflow-y-auto p-4 space-y-3", children: [
14976
+ /* @__PURE__ */ jsxs(
14977
+ motion.div,
14978
+ {
14979
+ initial: { opacity: 0, y: 20 },
14980
+ animate: { opacity: 1, y: 0 },
14981
+ transition: { delay: 0.5 },
14982
+ className: "grid grid-cols-2 gap-3",
14983
+ children: [
14984
+ /* @__PURE__ */ jsxs(Card, { className: "p-3 bg-gradient-to-br from-blue-500 to-cyan-500 text-white", children: [
14985
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between mb-2", children: [
14986
+ /* @__PURE__ */ jsx(ShieldCheckIcon, { className: "h-5 w-5" }),
14987
+ /* @__PURE__ */ jsx(Badge, { className: "bg-white/20 text-white border-white/30 h-5 text-xs", children: "Alto" })
14988
+ ] }),
14989
+ /* @__PURE__ */ jsx("p", { className: "text-2xl font-bold", children: "98%" }),
14990
+ /* @__PURE__ */ jsx("p", { className: "text-xs opacity-90", children: "Taxa de Conformidade" })
14991
+ ] }),
14992
+ /* @__PURE__ */ jsxs(Card, { className: "p-3 bg-gradient-to-br from-purple-500 to-indigo-500 text-white", children: [
14993
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between mb-2", children: [
14994
+ /* @__PURE__ */ jsx(UsersIcon, { className: "h-5 w-5" }),
14995
+ /* @__PURE__ */ jsx(Badge, { className: "bg-white/20 text-white border-white/30 h-5 text-xs", children: "LGPD" })
14996
+ ] }),
14997
+ /* @__PURE__ */ jsx("p", { className: "text-2xl font-bold", children: "15.4k" }),
14998
+ /* @__PURE__ */ jsx("p", { className: "text-xs opacity-90", children: "Titulares Protegidos" })
14999
+ ] })
15000
+ ]
15001
+ }
15002
+ ),
15003
+ /* @__PURE__ */ jsx(
15004
+ motion.div,
15005
+ {
15006
+ initial: { opacity: 0, y: 20 },
15007
+ animate: { opacity: 1, y: 0 },
15008
+ transition: { delay: 0.7 },
15009
+ children: /* @__PURE__ */ jsxs(Card, { className: "border-2", children: [
15010
+ /* @__PURE__ */ jsx("div", { className: "p-3 border-b bg-gradient-to-r from-blue-600 to-cyan-600 text-white", children: /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
15011
+ /* @__PURE__ */ jsx(ShieldCheckIcon, { className: "h-4 w-4" }),
15012
+ /* @__PURE__ */ jsx("h3", { className: "text-sm font-bold", children: "Status de Prote\xE7\xE3o" })
15013
+ ] }) }),
15014
+ /* @__PURE__ */ jsxs("div", { className: "p-3 space-y-2", children: [
15015
+ /* @__PURE__ */ jsx(
15016
+ motion.div,
15017
+ {
15018
+ initial: { opacity: 0, x: -10 },
15019
+ animate: { opacity: 1, x: 0 },
15020
+ transition: { delay: 0.9 },
15021
+ className: "p-2 bg-green-50 dark:bg-green-950/20 rounded-lg border border-green-200 dark:border-green-800",
15022
+ children: /* @__PURE__ */ jsxs("div", { className: "flex items-start gap-2", children: [
15023
+ /* @__PURE__ */ jsx(CheckCircleIcon$1, { className: "h-4 w-4 text-green-500 flex-shrink-0 mt-0.5" }),
15024
+ /* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
15025
+ /* @__PURE__ */ jsx("p", { className: "text-xs font-medium", children: "Consentimentos V\xE1lidos" }),
15026
+ /* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground", children: "15.2k titulares com aceite ativo" }),
15027
+ /* @__PURE__ */ jsx("div", { className: "mt-1", children: /* @__PURE__ */ jsx(Progress, { value: 98, className: "h-1" }) })
15028
+ ] })
15029
+ ] })
15030
+ }
15031
+ ),
15032
+ /* @__PURE__ */ jsx(
15033
+ motion.div,
15034
+ {
15035
+ initial: { opacity: 0, x: -10 },
15036
+ animate: { opacity: 1, x: 0 },
15037
+ transition: { delay: 1.1 },
15038
+ className: "p-2 bg-blue-50 dark:bg-blue-950/20 rounded-lg border border-blue-200 dark:border-blue-800",
15039
+ children: /* @__PURE__ */ jsxs("div", { className: "flex items-start gap-2", children: [
15040
+ /* @__PURE__ */ jsx(LockClosedIcon, { className: "h-4 w-4 text-blue-500 flex-shrink-0 mt-0.5" }),
15041
+ /* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
15042
+ /* @__PURE__ */ jsx("p", { className: "text-xs font-medium", children: "Dados Criptografados" }),
15043
+ /* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground", children: "AES-256 em todos os dados sens\xEDveis" }),
15044
+ /* @__PURE__ */ jsx("div", { className: "mt-1", children: /* @__PURE__ */ jsx(Progress, { value: 100, className: "h-1" }) })
15045
+ ] })
15046
+ ] })
15047
+ }
15048
+ ),
15049
+ /* @__PURE__ */ jsx(
15050
+ motion.div,
15051
+ {
15052
+ initial: { opacity: 0, x: -10 },
15053
+ animate: { opacity: 1, x: 0 },
15054
+ transition: { delay: 1.3 },
15055
+ className: "p-2 bg-yellow-50 dark:bg-yellow-950/20 rounded-lg border border-yellow-200 dark:border-yellow-800",
15056
+ children: /* @__PURE__ */ jsxs("div", { className: "flex items-start gap-2", children: [
15057
+ /* @__PURE__ */ jsx(ExclamationTriangleIcon, { className: "h-4 w-4 text-yellow-500 flex-shrink-0 mt-0.5" }),
15058
+ /* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
15059
+ /* @__PURE__ */ jsx("p", { className: "text-xs font-medium", children: "Solicita\xE7\xF5es Pendentes" }),
15060
+ /* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground", children: "12 pedidos de exclus\xE3o em an\xE1lise" }),
15061
+ /* @__PURE__ */ jsx("div", { className: "mt-1", children: /* @__PURE__ */ jsx(Progress, { value: 35, className: "h-1" }) })
15062
+ ] })
15063
+ ] })
15064
+ }
15065
+ )
15066
+ ] })
15067
+ ] })
15068
+ }
15069
+ ),
15070
+ /* @__PURE__ */ jsx(
15071
+ motion.div,
15072
+ {
15073
+ initial: { opacity: 0, y: 20 },
15074
+ animate: { opacity: 1, y: 0 },
15075
+ transition: { delay: 1.5 },
15076
+ children: /* @__PURE__ */ jsxs(Card, { className: "p-3", children: [
15077
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 mb-3", children: [
15078
+ /* @__PURE__ */ jsx(CpuChipIcon, { className: "h-4 w-4 text-blue-500" }),
15079
+ /* @__PURE__ */ jsx("h4", { className: "text-xs font-semibold", children: "4 Agentes LGPD" })
15080
+ ] }),
15081
+ /* @__PURE__ */ jsx("div", { className: "grid grid-cols-2 gap-2", children: ["LGPD", "Privacy", "Audit", "Security"].map((agent, i) => /* @__PURE__ */ jsx(
15082
+ motion.div,
15083
+ {
15084
+ initial: { opacity: 0, scale: 0.9 },
15085
+ animate: { opacity: 1, scale: 1 },
15086
+ transition: { delay: 1.7 + i * 0.1 },
15087
+ children: /* @__PURE__ */ jsx(Badge, { className: "w-full justify-center bg-blue-500/10 text-blue-600 dark:text-blue-400 text-xs", children: agent })
15088
+ },
15089
+ agent
15090
+ )) })
15091
+ ] })
15092
+ }
15093
+ )
15094
+ ] })
15095
+ ] })
15096
+ }
15097
+ );
15098
+ var MarketingDemo = () => /* @__PURE__ */ jsxs(Fragment, { children: [
15099
+ /* @__PURE__ */ jsxs(
15100
+ motion.div,
15101
+ {
15102
+ initial: { y: -20, opacity: 0 },
15103
+ animate: { y: 0, opacity: 1 },
15104
+ transition: { duration: 0.5, delay: 0.3 },
15105
+ className: "h-14 border-b bg-background/95 backdrop-blur-sm flex items-center justify-between px-4",
15106
+ children: [
15107
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3", children: [
15108
+ /* @__PURE__ */ jsx("h2", { className: "text-sm font-semibold", children: "Campanha Black Friday" }),
15109
+ /* @__PURE__ */ jsx("span", { className: "text-xs px-2 py-1 rounded-full bg-green-500/10 text-green-600 dark:text-green-400 font-medium", children: "4 agentes ativos" })
15110
+ ] }),
15111
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
15112
+ /* @__PURE__ */ jsx(BellIcon, { className: "h-4 w-4 text-muted-foreground" }),
15113
+ /* @__PURE__ */ jsx(MagnifyingGlassIcon, { className: "h-4 w-4 text-muted-foreground" })
15114
+ ] })
15115
+ ]
15116
+ }
15117
+ ),
15118
+ /* @__PURE__ */ jsx("div", { className: "flex-1 overflow-y-auto p-4 space-y-3", children: /* @__PURE__ */ jsx(
15119
+ motion.div,
15120
+ {
15121
+ initial: { opacity: 0, y: 20 },
15122
+ animate: { opacity: 1, y: 0 },
15123
+ transition: { delay: 0.5 },
15124
+ children: /* @__PURE__ */ jsxs(Card, { className: "border-2", children: [
15125
+ /* @__PURE__ */ jsxs("div", { className: "p-3 border-b bg-gradient-to-r from-purple-600 to-indigo-600 text-white", children: [
15126
+ /* @__PURE__ */ jsxs("div", { className: "flex items-start gap-2 mb-2", children: [
15127
+ /* @__PURE__ */ jsx(ShoppingCartIcon, { className: "h-4 w-4 mt-0.5" }),
15128
+ /* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
15129
+ /* @__PURE__ */ jsx("h3", { className: "text-sm font-bold mb-1", children: "Black Friday 2024" }),
15130
+ /* @__PURE__ */ jsx("p", { className: "text-xs opacity-90", children: "Campanha completa com 4 agentes especializados" })
15131
+ ] })
15132
+ ] }),
15133
+ /* @__PURE__ */ jsxs("div", { className: "flex gap-2", children: [
15134
+ /* @__PURE__ */ jsx(
15135
+ Badge,
15136
+ {
15137
+ className: "bg-white/20 text-white border-white/30 text-xs h-5",
15138
+ children: "4 agentes"
15139
+ }
15140
+ ),
15141
+ /* @__PURE__ */ jsx(
15142
+ Badge,
15143
+ {
15144
+ className: "bg-white/20 text-white border-white/30 text-xs h-5",
15145
+ children: "Ativo"
15146
+ }
15147
+ )
15148
+ ] })
15149
+ ] }),
15150
+ /* @__PURE__ */ jsxs("div", { className: "p-3 grid grid-cols-2 gap-2", children: [
15151
+ /* @__PURE__ */ jsx(
15152
+ motion.div,
15153
+ {
15154
+ initial: { opacity: 0, scale: 0.9 },
15155
+ animate: { opacity: 1, scale: 1 },
15156
+ transition: { delay: 0.7 },
15157
+ children: /* @__PURE__ */ jsxs(Card, { className: "p-2 bg-purple-50 dark:bg-purple-950/20 border-purple-200 dark:border-purple-800", children: [
15158
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 mb-1", children: [
15159
+ /* @__PURE__ */ jsx("div", { className: "h-6 w-6 rounded bg-gradient-to-br from-purple-500 to-pink-500 flex items-center justify-center text-white text-[10px] font-bold", children: "MA" }),
15160
+ /* @__PURE__ */ jsx("h4", { className: "text-xs font-semibold", children: "Marketing" })
15161
+ ] }),
15162
+ /* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground", children: "Estrat\xE9gia de descontos" }),
15163
+ /* @__PURE__ */ jsx(Badge, { className: "mt-1 h-4 text-[9px] bg-green-500", children: "Ativo" })
15164
+ ] })
15165
+ }
15166
+ ),
15167
+ /* @__PURE__ */ jsx(
15168
+ motion.div,
15169
+ {
15170
+ initial: { opacity: 0, scale: 0.9 },
15171
+ animate: { opacity: 1, scale: 1 },
15172
+ transition: { delay: 0.9 },
15173
+ children: /* @__PURE__ */ jsxs(Card, { className: "p-2 bg-blue-50 dark:bg-blue-950/20 border-blue-200 dark:border-blue-800", children: [
15174
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 mb-1", children: [
15175
+ /* @__PURE__ */ jsx("div", { className: "h-6 w-6 rounded bg-gradient-to-br from-blue-500 to-cyan-500 flex items-center justify-center text-white text-[10px] font-bold", children: "DA" }),
15176
+ /* @__PURE__ */ jsx("h4", { className: "text-xs font-semibold", children: "Design" })
15177
+ ] }),
15178
+ /* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground", children: "Gerando banners" }),
15179
+ /* @__PURE__ */ jsx(Badge, { className: "mt-1 h-4 text-[9px] bg-green-500", children: "Ativo" })
15180
+ ] })
15181
+ }
15182
+ ),
15183
+ /* @__PURE__ */ jsx(
15184
+ motion.div,
15185
+ {
15186
+ initial: { opacity: 0, scale: 0.9 },
15187
+ animate: { opacity: 1, scale: 1 },
15188
+ transition: { delay: 1.1 },
15189
+ children: /* @__PURE__ */ jsxs(Card, { className: "p-2 bg-orange-50 dark:bg-orange-950/20 border-orange-200 dark:border-orange-800", children: [
15190
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 mb-1", children: [
15191
+ /* @__PURE__ */ jsx("div", { className: "h-6 w-6 rounded bg-gradient-to-br from-orange-500 to-red-500 flex items-center justify-center text-white text-[10px] font-bold", children: "EA" }),
15192
+ /* @__PURE__ */ jsx("h4", { className: "text-xs font-semibold", children: "E-commerce" })
15193
+ ] }),
15194
+ /* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground mb-1", children: "Automa\xE7\xF5es" }),
15195
+ /* @__PURE__ */ jsx(Progress, { value: 65, className: "h-1" })
15196
+ ] })
15197
+ }
15198
+ ),
15199
+ /* @__PURE__ */ jsx(
15200
+ motion.div,
15201
+ {
15202
+ initial: { opacity: 0, scale: 0.9 },
15203
+ animate: { opacity: 1, scale: 1 },
15204
+ transition: { delay: 1.3 },
15205
+ children: /* @__PURE__ */ jsxs(Card, { className: "p-2 bg-green-50 dark:bg-green-950/20 border-green-200 dark:border-green-800", children: [
15206
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 mb-1", children: [
15207
+ /* @__PURE__ */ jsx("div", { className: "h-6 w-6 rounded bg-gradient-to-br from-green-500 to-emerald-500 flex items-center justify-center text-white text-[10px] font-bold", children: "EM" }),
15208
+ /* @__PURE__ */ jsx("h4", { className: "text-xs font-semibold", children: "Email" })
15209
+ ] }),
15210
+ /* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground", children: "Sequ\xEAncia de emails" }),
15211
+ /* @__PURE__ */ jsx(Badge, { className: "mt-1 h-4 text-[9px] bg-green-500", children: "Ativo" })
15212
+ ] })
15213
+ }
15214
+ )
15215
+ ] }),
15216
+ /* @__PURE__ */ jsxs("div", { className: "p-3 border-t", children: [
15217
+ /* @__PURE__ */ jsx("h4", { className: "text-xs font-semibold mb-2", children: "Progresso" }),
15218
+ /* @__PURE__ */ jsxs("div", { className: "space-y-1.5", children: [
15219
+ /* @__PURE__ */ jsxs(
15220
+ motion.div,
15221
+ {
15222
+ initial: { opacity: 0, x: -10 },
15223
+ animate: { opacity: 1, x: 0 },
15224
+ transition: { delay: 1.5 },
15225
+ className: "flex items-center gap-2 text-xs",
15226
+ children: [
15227
+ /* @__PURE__ */ jsx(CheckCircleIcon$1, { className: "h-3 w-3 text-green-500 flex-shrink-0" }),
15228
+ /* @__PURE__ */ jsx("span", { className: "text-muted-foreground", children: "An\xE1lise de produtos" })
15229
+ ]
15230
+ }
15231
+ ),
15232
+ /* @__PURE__ */ jsxs(
15233
+ motion.div,
15234
+ {
15235
+ initial: { opacity: 0, x: -10 },
15236
+ animate: { opacity: 1, x: 0 },
15237
+ transition: { delay: 1.7 },
15238
+ className: "flex items-center gap-2 text-xs",
15239
+ children: [
15240
+ /* @__PURE__ */ jsx(
15241
+ motion.div,
15242
+ {
15243
+ animate: { rotate: 360 },
15244
+ transition: {
15245
+ duration: 1,
15246
+ repeat: Infinity,
15247
+ ease: "linear"
15248
+ },
15249
+ children: /* @__PURE__ */ jsx(ArrowPathIcon, { className: "h-3 w-3 text-blue-500" })
15250
+ }
15251
+ ),
15252
+ /* @__PURE__ */ jsx("span", { className: "font-medium", children: "12 banners promocionais" })
15253
+ ]
15254
+ }
15255
+ ),
15256
+ /* @__PURE__ */ jsxs(
15257
+ motion.div,
15258
+ {
15259
+ initial: { opacity: 0, x: -10 },
15260
+ animate: { opacity: 1, x: 0 },
15261
+ transition: { delay: 1.9 },
15262
+ className: "flex items-center gap-2 text-xs",
15263
+ children: [
15264
+ /* @__PURE__ */ jsx(EnvelopeIcon, { className: "h-3 w-3 text-muted-foreground flex-shrink-0" }),
15265
+ /* @__PURE__ */ jsx("span", { className: "text-muted-foreground", children: "5 emails autom\xE1ticos" })
15266
+ ]
15267
+ }
15268
+ )
15269
+ ] })
15270
+ ] })
15271
+ ] })
15272
+ }
15273
+ ) })
15274
+ ] });
15275
+ var SalesDemo = () => /* @__PURE__ */ jsx(
15276
+ motion.div,
15277
+ {
15278
+ initial: { opacity: 0 },
15279
+ animate: { opacity: 1 },
15280
+ exit: { opacity: 0 },
15281
+ transition: { duration: 0.5 },
15282
+ className: "flex flex-col h-full overflow-hidden",
15283
+ children: /* @__PURE__ */ jsxs("div", { className: "flex-1 flex flex-col overflow-hidden", children: [
15284
+ /* @__PURE__ */ jsxs(
15285
+ motion.div,
15286
+ {
15287
+ initial: { y: -20, opacity: 0 },
15288
+ animate: { y: 0, opacity: 1 },
15289
+ transition: { duration: 0.5, delay: 0.3 },
15290
+ className: "h-14 border-b bg-background/95 backdrop-blur-sm flex items-center justify-between px-4",
15291
+ children: [
15292
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3", children: [
15293
+ /* @__PURE__ */ jsx("h2", { className: "text-sm font-semibold", children: "Funil de Vendas - XPTO" }),
15294
+ /* @__PURE__ */ jsx("span", { className: "text-xs px-2 py-1 rounded-full bg-blue-500/10 text-blue-600 dark:text-blue-400 font-medium", children: "4 agentes ativos" })
15295
+ ] }),
15296
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
15297
+ /* @__PURE__ */ jsx(BellIcon, { className: "h-4 w-4 text-muted-foreground" }),
15298
+ /* @__PURE__ */ jsx(MagnifyingGlassIcon, { className: "h-4 w-4 text-muted-foreground" })
15299
+ ] })
15300
+ ]
15301
+ }
15302
+ ),
15303
+ /* @__PURE__ */ jsxs("div", { className: "flex-1 overflow-y-auto p-4 space-y-3", children: [
15304
+ /* @__PURE__ */ jsx(
15305
+ motion.div,
15306
+ {
15307
+ initial: { opacity: 0, y: 20 },
15308
+ animate: { opacity: 1, y: 0 },
15309
+ transition: { delay: 0.5 },
15310
+ children: /* @__PURE__ */ jsxs(Card, { className: "border-2", children: [
15311
+ /* @__PURE__ */ jsxs("div", { className: "p-3 border-b bg-gradient-to-r from-blue-600 to-indigo-600 text-white", children: [
15312
+ /* @__PURE__ */ jsxs("div", { className: "flex items-start gap-2 mb-2", children: [
15313
+ /* @__PURE__ */ jsx(ArrowTrendingUpIcon, { className: "h-4 w-4 mt-0.5" }),
15314
+ /* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
15315
+ /* @__PURE__ */ jsx("h3", { className: "text-sm font-bold mb-1", children: "Lead Qualificado: Empresa XPTO" }),
15316
+ /* @__PURE__ */ jsx("p", { className: "text-xs opacity-90", children: "Pipeline de vendas com 4 agentes coordenados" })
15317
+ ] })
15318
+ ] }),
15319
+ /* @__PURE__ */ jsxs("div", { className: "flex gap-2", children: [
15320
+ /* @__PURE__ */ jsx(
15321
+ Badge,
15322
+ {
15323
+ className: "bg-white/20 text-white border-white/30 text-xs h-5",
15324
+ children: "Score: 85/100"
15325
+ }
15326
+ ),
15327
+ /* @__PURE__ */ jsx(
15328
+ Badge,
15329
+ {
15330
+ className: "bg-white/20 text-white border-white/30 text-xs h-5",
15331
+ children: "Em Progresso"
15332
+ }
15333
+ )
15334
+ ] })
15335
+ ] }),
15336
+ /* @__PURE__ */ jsxs("div", { className: "p-3 space-y-2", children: [
15337
+ /* @__PURE__ */ jsxs(
15338
+ motion.div,
15339
+ {
15340
+ initial: { opacity: 0, x: -10 },
15341
+ animate: { opacity: 1, x: 0 },
15342
+ transition: { delay: 0.7 },
15343
+ className: "relative",
15344
+ children: [
15345
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 p-2 bg-green-50 dark:bg-green-950/20 rounded-lg border border-green-200 dark:border-green-800", children: [
15346
+ /* @__PURE__ */ jsx("div", { className: "h-8 w-8 rounded-full bg-gradient-to-br from-green-500 to-emerald-500 flex items-center justify-center flex-shrink-0", children: /* @__PURE__ */ jsx(CheckCircleIcon$1, { className: "h-4 w-4 text-white" }) }),
15347
+ /* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
15348
+ /* @__PURE__ */ jsx("p", { className: "text-xs font-semibold", children: "Lead" }),
15349
+ /* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground", children: "Novo contato recebido" })
15350
+ ] }),
15351
+ /* @__PURE__ */ jsx(Badge, { className: "bg-green-500 text-white text-[9px] h-4", children: "Completo" })
15352
+ ] }),
15353
+ /* @__PURE__ */ jsx("div", { className: "absolute left-4 top-10 w-0.5 h-2 bg-gradient-to-b from-green-500 to-blue-500" })
15354
+ ]
15355
+ }
15356
+ ),
15357
+ /* @__PURE__ */ jsxs(
15358
+ motion.div,
15359
+ {
15360
+ initial: { opacity: 0, x: -10 },
15361
+ animate: { opacity: 1, x: 0 },
15362
+ transition: { delay: 0.9 },
15363
+ className: "relative",
15364
+ children: [
15365
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 p-2 bg-blue-50 dark:bg-blue-950/20 rounded-lg border-2 border-blue-400 dark:border-blue-600", children: [
15366
+ /* @__PURE__ */ jsx("div", { className: "h-8 w-8 rounded-full bg-gradient-to-br from-blue-500 to-cyan-500 flex items-center justify-center flex-shrink-0", children: /* @__PURE__ */ jsx(
15367
+ motion.div,
15368
+ {
15369
+ animate: { rotate: 360 },
15370
+ transition: {
15371
+ duration: 2,
15372
+ repeat: Infinity,
15373
+ ease: "linear"
15374
+ },
15375
+ children: /* @__PURE__ */ jsx(ArrowPathIcon, { className: "h-4 w-4 text-white" })
15376
+ }
15377
+ ) }),
15378
+ /* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
15379
+ /* @__PURE__ */ jsx("p", { className: "text-xs font-semibold", children: "Qualifica\xE7\xE3o" }),
15380
+ /* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground", children: "Score: 85/100 - Alta prioridade" })
15381
+ ] }),
15382
+ /* @__PURE__ */ jsx(Badge, { className: "bg-blue-500 text-white text-[9px] h-4", children: "Em An\xE1lise" })
15383
+ ] }),
15384
+ /* @__PURE__ */ jsx("div", { className: "absolute left-4 top-10 w-0.5 h-2 bg-gradient-to-b from-blue-500 to-purple-500" })
15385
+ ]
15386
+ }
15387
+ ),
15388
+ /* @__PURE__ */ jsxs(
15389
+ motion.div,
15390
+ {
15391
+ initial: { opacity: 0, x: -10 },
15392
+ animate: { opacity: 1, x: 0 },
15393
+ transition: { delay: 1.1 },
15394
+ className: "relative",
15395
+ children: [
15396
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 p-2 bg-purple-50 dark:bg-purple-950/20 rounded-lg border border-purple-200 dark:border-purple-800", children: [
15397
+ /* @__PURE__ */ jsx("div", { className: "h-8 w-8 rounded-full bg-gradient-to-br from-purple-500 to-pink-500 flex items-center justify-center flex-shrink-0", children: /* @__PURE__ */ jsx(DocumentTextIcon, { className: "h-4 w-4 text-white" }) }),
15398
+ /* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
15399
+ /* @__PURE__ */ jsx("p", { className: "text-xs font-semibold", children: "Proposta" }),
15400
+ /* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground", children: "R$ 45k/m\xEAs - Em prepara\xE7\xE3o" })
15401
+ ] }),
15402
+ /* @__PURE__ */ jsx(Badge, { className: "bg-purple-500/20 text-purple-600 dark:text-purple-400 text-[9px] h-4", children: "Pendente" })
15403
+ ] }),
15404
+ /* @__PURE__ */ jsx("div", { className: "absolute left-4 top-10 w-0.5 h-2 bg-gradient-to-b from-purple-500 to-orange-500" })
15405
+ ]
15406
+ }
15407
+ ),
15408
+ /* @__PURE__ */ jsxs(
15409
+ motion.div,
15410
+ {
15411
+ initial: { opacity: 0, x: -10 },
15412
+ animate: { opacity: 1, x: 0 },
15413
+ transition: { delay: 1.3 },
15414
+ className: "relative",
15415
+ children: [
15416
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 p-2 bg-orange-50 dark:bg-orange-950/20 rounded-lg border border-orange-200 dark:border-orange-800", children: [
15417
+ /* @__PURE__ */ jsx("div", { className: "h-8 w-8 rounded-full bg-gradient-to-br from-orange-500 to-red-500 flex items-center justify-center flex-shrink-0", children: /* @__PURE__ */ jsx(ChatBubbleLeftIcon, { className: "h-4 w-4 text-white" }) }),
15418
+ /* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
15419
+ /* @__PURE__ */ jsx("p", { className: "text-xs font-semibold", children: "Negocia\xE7\xE3o" }),
15420
+ /* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground", children: "Desconto 10% aprovado" })
15421
+ ] }),
15422
+ /* @__PURE__ */ jsx(Badge, { className: "bg-orange-500/20 text-orange-600 dark:text-orange-400 text-[9px] h-4", children: "Aguardando" })
15423
+ ] }),
15424
+ /* @__PURE__ */ jsx("div", { className: "absolute left-4 top-10 w-0.5 h-2 bg-gradient-to-b from-orange-500 to-green-600" })
15425
+ ]
15426
+ }
15427
+ ),
15428
+ /* @__PURE__ */ jsx(
15429
+ motion.div,
15430
+ {
15431
+ initial: { opacity: 0, x: -10 },
15432
+ animate: { opacity: 1, x: 0 },
15433
+ transition: { delay: 1.5 },
15434
+ children: /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 p-2 bg-white/[0.04] dark:bg-white/[0.04] rounded-lg border border-white/10 dark:border-white/[0.08]", children: [
15435
+ /* @__PURE__ */ jsx("div", { className: "h-8 w-8 rounded-full bg-gradient-to-br from-gray-400 to-gray-600 flex items-center justify-center flex-shrink-0", children: /* @__PURE__ */ jsx(TrophyIcon, { className: "h-4 w-4 text-white" }) }),
15436
+ /* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
15437
+ /* @__PURE__ */ jsx("p", { className: "text-xs font-semibold", children: "Fechamento" }),
15438
+ /* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground", children: "Aguardando assinatura" })
15439
+ ] }),
15440
+ /* @__PURE__ */ jsx(Badge, { className: "bg-gray-500/20 text-gray-600 dark:text-gray-400 text-[9px] h-4", children: "Futuro" })
15441
+ ] })
15442
+ }
15443
+ )
15444
+ ] })
15445
+ ] })
15446
+ }
15447
+ ),
15448
+ /* @__PURE__ */ jsx(
15449
+ motion.div,
15450
+ {
15451
+ initial: { opacity: 0, y: 20 },
15452
+ animate: { opacity: 1, y: 0 },
15453
+ transition: { delay: 1.7 },
15454
+ children: /* @__PURE__ */ jsxs(Card, { className: "p-3", children: [
15455
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 mb-3", children: [
15456
+ /* @__PURE__ */ jsx(CpuChipIcon, { className: "h-4 w-4 text-blue-500" }),
15457
+ /* @__PURE__ */ jsx("h4", { className: "text-xs font-semibold", children: "4 Agentes de Vendas" })
15458
+ ] }),
15459
+ /* @__PURE__ */ jsx("div", { className: "grid grid-cols-2 gap-2", children: ["Sales", "CRM", "Scoring", "Proposal"].map((agent, i) => /* @__PURE__ */ jsx(
15460
+ motion.div,
15461
+ {
15462
+ initial: { opacity: 0, scale: 0.9 },
15463
+ animate: { opacity: 1, scale: 1 },
15464
+ transition: { delay: 1.9 + i * 0.1 },
15465
+ children: /* @__PURE__ */ jsx(Badge, { className: "w-full justify-center bg-blue-500/10 text-blue-600 dark:text-blue-400 text-xs", children: agent })
15466
+ },
15467
+ agent
15468
+ )) })
15469
+ ] })
15470
+ }
15471
+ ),
15472
+ /* @__PURE__ */ jsx(
15473
+ motion.div,
15474
+ {
15475
+ initial: { opacity: 0, y: 20 },
15476
+ animate: { opacity: 1, y: 0 },
15477
+ transition: { delay: 2.1 },
15478
+ children: /* @__PURE__ */ jsxs(Card, { className: "p-3", children: [
15479
+ /* @__PURE__ */ jsx("h4", { className: "text-xs font-semibold mb-2", children: "M\xE9tricas do Funil" }),
15480
+ /* @__PURE__ */ jsxs("div", { className: "space-y-1.5", children: [
15481
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between text-xs", children: [
15482
+ /* @__PURE__ */ jsx("span", { className: "text-muted-foreground", children: "Taxa de Convers\xE3o" }),
15483
+ /* @__PURE__ */ jsx("span", { className: "font-bold text-green-600 dark:text-green-400", children: "68%" })
15484
+ ] }),
15485
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between text-xs", children: [
15486
+ /* @__PURE__ */ jsx("span", { className: "text-muted-foreground", children: "Valor M\xE9dio" }),
15487
+ /* @__PURE__ */ jsx("span", { className: "font-bold", children: "R$ 45k/m\xEAs" })
15488
+ ] }),
15489
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between text-xs", children: [
15490
+ /* @__PURE__ */ jsx("span", { className: "text-muted-foreground", children: "Tempo M\xE9dio" }),
15491
+ /* @__PURE__ */ jsx("span", { className: "font-bold", children: "14 dias" })
15492
+ ] })
15493
+ ] })
15494
+ ] })
15495
+ }
15496
+ )
15497
+ ] })
15498
+ ] })
15499
+ }
15500
+ );
15501
+ var InputStage = ({
15502
+ inputText,
15503
+ currentDepartmentTitle: _currentDepartmentTitle
15504
+ }) => /* @__PURE__ */ jsxs(
15505
+ motion.div,
15506
+ {
15507
+ initial: { opacity: 0, y: 20 },
15508
+ animate: { opacity: 1, y: 0 },
15509
+ exit: { opacity: 0, y: -20 },
15510
+ className: "flex-1 flex flex-col",
15511
+ children: [
15512
+ /* @__PURE__ */ jsx("div", { className: "flex-1 flex items-center justify-center p-8", children: /* @__PURE__ */ jsxs("div", { className: "text-center max-w-md", children: [
15513
+ /* @__PURE__ */ jsx("div", { className: "inline-flex items-center justify-center w-16 h-16 rounded-2xl bg-gradient-to-br from-purple-500 to-blue-500 mb-4", children: /* @__PURE__ */ jsx(SparklesIcon, { className: "w-8 h-8 text-white" }) }),
15514
+ /* @__PURE__ */ jsx("h3", { className: "text-2xl font-bold text-gray-900 dark:text-white mb-2", children: "Orquestrador de IA" }),
15515
+ /* @__PURE__ */ jsx("p", { className: "text-gray-600 dark:text-gray-400 text-sm", children: "Descreva o que precisa e veja os agentes colaborarem para executar" })
15516
+ ] }) }),
15517
+ /* @__PURE__ */ jsx("div", { className: "border-t border-white/10 dark:border-white/[0.08] p-4 bg-white/5 dark:bg-white/[0.03]", children: /* @__PURE__ */ jsx("div", { className: "max-w-4xl mx-auto", children: /* @__PURE__ */ jsx("div", { className: "relative", children: /* @__PURE__ */ jsxs("div", { className: "flex items-start gap-3 bg-white/[0.02] dark:bg-white/[0.02] rounded-2xl border border-white/10 dark:border-white/[0.08] p-4 shadow-sm hover:shadow-md transition-shadow", children: [
15518
+ /* @__PURE__ */ jsx("div", { className: "flex-1 min-h-[44px] flex items-center", children: /* @__PURE__ */ jsxs("p", { className: "text-gray-900 dark:text-white text-[15px]", children: [
15519
+ inputText,
15520
+ /* @__PURE__ */ jsx("span", { className: "animate-pulse ml-0.5", children: "|" })
15521
+ ] }) }),
15522
+ /* @__PURE__ */ jsx("button", { className: "flex-shrink-0 w-9 h-9 rounded-lg bg-gradient-to-br from-purple-500 to-blue-500 hover:from-purple-600 hover:to-blue-600 flex items-center justify-center transition-all shadow-sm hover:shadow-md", "aria-label": "Send message", children: /* @__PURE__ */ jsx(
15523
+ "svg",
15524
+ {
15525
+ width: "20",
15526
+ height: "20",
15527
+ viewBox: "0 0 24 24",
15528
+ fill: "none",
15529
+ stroke: "currentColor",
15530
+ className: "text-white",
15531
+ children: /* @__PURE__ */ jsx(
15532
+ "path",
15533
+ {
15534
+ strokeLinecap: "round",
15535
+ strokeLinejoin: "round",
15536
+ strokeWidth: 2,
15537
+ d: "M5 12h14M12 5l7 7-7 7"
15538
+ }
15539
+ )
15540
+ }
15541
+ ) })
15542
+ ] }) }) }) })
15543
+ ]
15544
+ },
15545
+ "input"
15546
+ );
15547
+ var AIAgentsSidebar = () => {
15548
+ const [activeAgents] = useState([
15549
+ {
15550
+ id: "1",
15551
+ name: "AI Orchestrator",
15552
+ role: "Task Coordination",
15553
+ status: "active",
15554
+ avatar: "\u{1F916}",
15555
+ skills: ["routing", "coordination"]
15556
+ },
15557
+ {
15558
+ id: "2",
15559
+ name: "Data Specialist",
15560
+ role: "Analytics & BI",
15561
+ status: "busy",
15562
+ avatar: "\u{1F4CA}",
15563
+ skills: ["analytics", "visualization"],
15564
+ workload: 45
15565
+ },
15566
+ {
15567
+ id: "3",
15568
+ name: "Content Creator",
15569
+ role: "Creative Solutions",
15570
+ status: "idle",
15571
+ avatar: "\u270D\uFE0F",
15572
+ skills: ["writing", "creativity"]
15573
+ }
15574
+ ]);
15575
+ return /* @__PURE__ */ jsxs(
15576
+ motion.div,
15577
+ {
15578
+ initial: { x: -20, opacity: 0 },
15579
+ animate: { x: 0, opacity: 1 },
15580
+ transition: { duration: 0.5 },
15581
+ className: "w-80 bg-white/5 dark:bg-white/[0.03] border-r border-white/10 dark:border-white/[0.06] flex flex-col",
15582
+ children: [
15583
+ activeAgents[0] && /* @__PURE__ */ jsxs("div", { className: "p-4 bg-gradient-to-br from-purple-500 to-blue-500 text-white", children: [
15584
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 mb-2", children: [
15585
+ /* @__PURE__ */ jsx(SparklesIcon, { className: "h-5 w-5" }),
15586
+ /* @__PURE__ */ jsx("h3", { className: "font-semibold text-sm", children: "Current Agent" })
15587
+ ] }),
15588
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3 mt-3", children: [
15589
+ /* @__PURE__ */ jsx("div", { className: "w-12 h-12 rounded-xl bg-white/20 flex items-center justify-center text-2xl", children: activeAgents[0].avatar }),
15590
+ /* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
15591
+ /* @__PURE__ */ jsx("h4", { className: "font-bold", children: activeAgents[0].name }),
15592
+ /* @__PURE__ */ jsx("p", { className: "text-xs text-white/80", children: activeAgents[0].role })
15593
+ ] }),
15594
+ /* @__PURE__ */ jsx("div", { className: "px-2 py-1 bg-green-500/30 rounded-full text-xs", children: "Active" })
15595
+ ] }),
15596
+ /* @__PURE__ */ jsx("div", { className: "flex gap-1 mt-3 flex-wrap", children: activeAgents[0].skills.map((skill) => /* @__PURE__ */ jsx(
15597
+ "span",
15598
+ {
15599
+ className: "px-2 py-0.5 bg-white/20 rounded-md text-xs",
15600
+ children: skill
15601
+ },
15602
+ skill
15603
+ )) })
15604
+ ] }),
15605
+ /* @__PURE__ */ jsxs("div", { className: "flex-1 p-4 overflow-y-auto", children: [
15606
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 mb-3", children: [
15607
+ /* @__PURE__ */ jsx(UsersIcon, { className: "h-5 w-5 text-gray-600 dark:text-gray-400" }),
15608
+ /* @__PURE__ */ jsx("h3", { className: "font-semibold text-sm", children: "Agent Team" })
15609
+ ] }),
15610
+ /* @__PURE__ */ jsx("div", { className: "space-y-2", children: activeAgents.slice(1).map((agent) => /* @__PURE__ */ jsxs(
15611
+ "div",
15612
+ {
15613
+ className: "flex items-center gap-2 p-2 rounded-lg bg-white/5 dark:bg-white/5",
15614
+ children: [
15615
+ /* @__PURE__ */ jsx("div", { className: "w-10 h-10 rounded-lg bg-gradient-to-br from-gray-100 to-gray-200 dark:from-zinc-700 dark:to-zinc-600 flex items-center justify-center text-lg", children: agent.avatar }),
15616
+ /* @__PURE__ */ jsxs("div", { className: "flex-1 min-w-0", children: [
15617
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between", children: [
15618
+ /* @__PURE__ */ jsx("h4", { className: "text-xs font-semibold truncate", children: agent.name }),
15619
+ /* @__PURE__ */ jsx(
15620
+ "span",
15621
+ {
15622
+ className: `px-1.5 py-0.5 rounded-full text-xs ${agent.status === "active" ? "bg-green-100 text-green-700 dark:bg-green-900/30 dark:text-green-400" : agent.status === "busy" ? "bg-yellow-100 text-yellow-700 dark:bg-yellow-900/30 dark:text-yellow-400" : "bg-white/10 text-gray-600 dark:bg-white/5 dark:text-gray-400"}`,
15623
+ children: agent.status
15624
+ }
15625
+ )
15626
+ ] }),
15627
+ agent.workload && /* @__PURE__ */ jsx("div", { className: "mt-1", children: /* @__PURE__ */ jsx("div", { className: "h-1 bg-white/10 dark:bg-white/[0.08] rounded-full", children: /* @__PURE__ */ jsx(
15628
+ "div",
15629
+ {
15630
+ className: "h-full bg-yellow-500 rounded-full",
15631
+ style: { width: `${agent.workload}%` }
15632
+ }
15633
+ ) }) })
15634
+ ] })
15635
+ ]
15636
+ },
15637
+ agent.id
15638
+ )) })
15639
+ ] })
15640
+ ]
15641
+ }
15642
+ );
15643
+ };
15644
+ var OrchestratorStage = ({
15645
+ currentDepartment,
15646
+ renderDepartmentDemo
15647
+ }) => /* @__PURE__ */ jsxs(
15648
+ motion.div,
15649
+ {
15650
+ initial: { opacity: 0 },
15651
+ animate: { opacity: 1 },
15652
+ exit: { opacity: 0 },
15653
+ className: "flex-1 flex flex-col w-full",
15654
+ children: [
15655
+ /* @__PURE__ */ jsxs("div", { className: "bg-gradient-to-r from-purple-600 to-blue-600 p-4 flex items-center justify-between", children: [
15656
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3", children: [
15657
+ /* @__PURE__ */ jsx(SparklesIcon, { className: "w-5 h-5 text-white" }),
15658
+ /* @__PURE__ */ jsxs("div", { children: [
15659
+ /* @__PURE__ */ jsx("h2", { className: "text-white font-semibold", children: "AI Agent Ecosystem" }),
15660
+ /* @__PURE__ */ jsxs("p", { className: "text-white/80 text-xs", children: [
15661
+ currentDepartment.title,
15662
+ " \u2022 2 messages \u2022 _Context: 24,001"
15663
+ ] })
15664
+ ] })
15665
+ ] }),
15666
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
15667
+ /* @__PURE__ */ jsx("span", { className: "px-2 py-1 bg-white/20 text-white text-xs rounded", children: "2 agents active" }),
15668
+ /* @__PURE__ */ jsx("span", { className: "px-2 py-1 bg-white/20 text-white text-xs rounded", children: "Task: 25%" })
15669
+ ] })
15670
+ ] }),
15671
+ /* @__PURE__ */ jsxs("div", { className: "flex-1 flex overflow-hidden", children: [
15672
+ /* @__PURE__ */ jsx(AIAgentsSidebar, {}),
15673
+ /* @__PURE__ */ jsxs("div", { className: "flex-1 flex flex-col bg-white/[0.02] dark:bg-white/[0.02]", children: [
15674
+ /* @__PURE__ */ jsxs("div", { className: "flex-1 overflow-y-auto p-6 space-y-4", children: [
15675
+ /* @__PURE__ */ jsxs(
15676
+ motion.div,
15677
+ {
15678
+ initial: { opacity: 0, y: 10 },
15679
+ animate: { opacity: 1, y: 0 },
15680
+ transition: { delay: 0.2 },
15681
+ className: "flex gap-3",
15682
+ children: [
15683
+ /* @__PURE__ */ jsx("div", { className: "flex-shrink-0 w-10 h-10 rounded-full bg-gradient-to-br from-purple-500 to-blue-500 flex items-center justify-center", children: /* @__PURE__ */ jsx("span", { className: "text-white text-sm font-bold", children: "AI" }) }),
15684
+ /* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
15685
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 mb-1", children: [
15686
+ /* @__PURE__ */ jsx("span", { className: "font-semibold text-gray-900 dark:text-white", children: "Orquestrador de IA" }),
15687
+ /* @__PURE__ */ jsx("span", { className: "text-xs text-gray-500", children: (/* @__PURE__ */ new Date()).toLocaleTimeString("pt-BR", {
15688
+ hour: "2-digit",
15689
+ minute: "2-digit"
15690
+ }) })
15691
+ ] }),
15692
+ /* @__PURE__ */ jsxs("p", { className: "text-sm text-gray-700 dark:text-gray-300 mb-3", children: [
15693
+ "Analisando sua solicita\xE7\xE3o para ",
15694
+ currentDepartment.title,
15695
+ ". Coordenando agentes especializados..."
15696
+ ] })
15697
+ ] })
15698
+ ]
15699
+ }
15700
+ ),
15701
+ /* @__PURE__ */ jsxs(
15702
+ motion.div,
15703
+ {
15704
+ initial: { opacity: 0, y: 10 },
15705
+ animate: { opacity: 1, y: 0 },
15706
+ transition: { delay: 0.5 },
15707
+ className: "flex gap-3",
15708
+ children: [
15709
+ /* @__PURE__ */ jsx("div", { className: "flex-shrink-0 w-10 h-10 rounded-full bg-gradient-to-br from-purple-500 to-blue-500 flex items-center justify-center", children: /* @__PURE__ */ jsx("span", { className: "text-white text-sm font-bold", children: "AI" }) }),
15710
+ /* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
15711
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 mb-1", children: [
15712
+ /* @__PURE__ */ jsx("span", { className: "font-semibold text-gray-900 dark:text-white", children: "Orquestrador de IA" }),
15713
+ /* @__PURE__ */ jsx("span", { className: "text-xs text-gray-500", children: (/* @__PURE__ */ new Date()).toLocaleTimeString("pt-BR", {
15714
+ hour: "2-digit",
15715
+ minute: "2-digit"
15716
+ }) })
15717
+ ] }),
15718
+ /* @__PURE__ */ jsx("p", { className: "text-sm text-gray-700 dark:text-gray-300 mb-4", children: "Aqui est\xE3o as capacidades dispon\xEDveis. Selecione uma \xE1rea para ver os agentes em a\xE7\xE3o:" }),
15719
+ /* @__PURE__ */ jsx(
15720
+ motion.div,
15721
+ {
15722
+ initial: { opacity: 0, scale: 0.95 },
15723
+ animate: { opacity: 1, scale: 1 },
15724
+ transition: { delay: 0.8 },
15725
+ children: renderDepartmentDemo()
15726
+ }
15727
+ )
15728
+ ] })
15729
+ ]
15730
+ }
15731
+ )
15732
+ ] }),
15733
+ /* @__PURE__ */ jsx("div", { className: "border-t border-white/10 dark:border-white/[0.08] p-4 bg-white/5 dark:bg-white/[0.03]", children: /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3 bg-white/[0.02] dark:bg-white/[0.02] rounded-xl border border-white/10 dark:border-white/[0.08] p-3 hover:shadow-sm transition-shadow", children: [
15734
+ /* @__PURE__ */ jsx(
15735
+ "input",
15736
+ {
15737
+ type: "text",
15738
+ placeholder: "Ask follow-up questions or provide more context...",
15739
+ className: "flex-1 bg-transparent border-none outline-none text-sm text-gray-900 dark:text-white placeholder-gray-500",
15740
+ "aria-label": "Follow-up message"
15741
+ }
15742
+ ),
15743
+ /* @__PURE__ */ jsx("button", { className: "flex-shrink-0 w-8 h-8 rounded-lg bg-gradient-to-br from-purple-500 to-blue-500 hover:from-purple-600 hover:to-blue-600 flex items-center justify-center transition-all", "aria-label": "Send message", children: /* @__PURE__ */ jsx(
15744
+ "svg",
15745
+ {
15746
+ width: "16",
15747
+ height: "16",
15748
+ viewBox: "0 0 24 24",
15749
+ fill: "none",
15750
+ stroke: "currentColor",
15751
+ className: "text-white",
15752
+ children: /* @__PURE__ */ jsx(
15753
+ "path",
15754
+ {
15755
+ strokeLinecap: "round",
15756
+ strokeLinejoin: "round",
15757
+ strokeWidth: 2,
15758
+ d: "M5 12h14M12 5l7 7-7 7"
15759
+ }
15760
+ )
15761
+ }
15762
+ ) })
15763
+ ] }) })
15764
+ ] })
15765
+ ] })
15766
+ ]
15767
+ },
15768
+ "orchestrator"
15769
+ );
15770
+ var ProcessingStage = ({
15771
+ currentDemo
15772
+ }) => /* @__PURE__ */ jsx(
15773
+ motion.div,
15774
+ {
15775
+ initial: { opacity: 0, scale: 0.95 },
15776
+ animate: { opacity: 1, scale: 1 },
15777
+ exit: { opacity: 0, scale: 0.95 },
15778
+ className: "flex-1 flex items-center justify-center p-8",
15779
+ children: /* @__PURE__ */ jsxs("div", { className: "text-center", children: [
15780
+ /* @__PURE__ */ jsx("div", { className: "inline-flex items-center justify-center w-20 h-20 rounded-full bg-gradient-to-br from-purple-500 to-blue-500 mb-4", children: /* @__PURE__ */ jsx(CpuChipIcon, { className: "w-10 h-10 text-white animate-pulse" }) }),
15781
+ /* @__PURE__ */ jsx("h3", { className: "text-xl font-bold text-gray-900 dark:text-white mb-2", children: "Coordenando agentes..." }),
15782
+ /* @__PURE__ */ jsx("p", { className: "text-gray-600 dark:text-gray-400 mb-6", children: currentDemo.processingText }),
15783
+ /* @__PURE__ */ jsx("div", { className: "flex gap-2 justify-center flex-wrap", children: currentDemo.agents.map((agent, idx) => /* @__PURE__ */ jsx(
15784
+ motion.div,
15785
+ {
15786
+ initial: { opacity: 0, scale: 0 },
15787
+ animate: { opacity: 1, scale: 1 },
15788
+ transition: { delay: idx * 0.2 },
15789
+ className: "px-3 py-1 bg-purple-100 dark:bg-purple-900/30 rounded-full text-sm text-purple-700 dark:text-purple-300",
15790
+ children: agent
15791
+ },
15792
+ agent
15793
+ )) })
15794
+ ] })
15795
+ },
15796
+ "processing"
15797
+ );
15798
+ var departments = [
15799
+ {
15800
+ id: "sales",
15801
+ title: "Vendas & E-commerce",
15802
+ description: "WhatsApp Business automatizado, gest\xE3o de produtos e processamento inteligente de pedidos",
15803
+ icon: ShoppingCartIcon,
15804
+ color: "blue",
15805
+ demoId: 6
15806
+ },
15807
+ {
15808
+ id: "hr",
15809
+ title: "Recursos Humanos",
15810
+ description: "Recrutamento inteligente, gest\xE3o de performance e compliance trabalhista brasileiro",
15811
+ icon: UsersIcon,
15812
+ color: "green",
15813
+ demoId: 3
15814
+ },
15815
+ {
15816
+ id: "finance",
15817
+ title: "Financeiro",
15818
+ description: "Controle financeiro inteligente com an\xE1lise preditiva e compliance fiscal brasileiro",
15819
+ icon: BanknotesIcon,
15820
+ color: "purple",
15821
+ demoId: 4
15822
+ },
15823
+ {
15824
+ id: "marketing",
15825
+ title: "Marketing",
15826
+ description: "Campanhas automatizadas, segmenta\xE7\xE3o inteligente e an\xE1lise de ROI em tempo real",
15827
+ icon: MegaphoneIcon,
15828
+ color: "orange",
15829
+ demoId: 0
15830
+ },
15831
+ {
15832
+ id: "operations",
15833
+ title: "Opera\xE7\xF5es",
15834
+ description: "Gest\xE3o de ativos, manuten\xE7\xE3o preditiva e otimiza\xE7\xE3o de processos operacionais",
15835
+ icon: CogIcon,
15836
+ color: "teal",
15837
+ demoId: 2
15838
+ },
15839
+ {
15840
+ id: "analytics",
15841
+ title: "Analytics Executivo",
15842
+ description: "Dashboards executivos, KPIs unificados e insights preditivos para tomada de decis\xE3o",
15843
+ icon: ChartBarIcon,
15844
+ color: "indigo",
15845
+ demoId: 1
15846
+ },
15847
+ {
15848
+ id: "compliance",
15849
+ title: "Compliance LGPD",
15850
+ description: "Prote\xE7\xE3o completa de dados, auditoria autom\xE1tica e conformidade total com LGPD",
15851
+ icon: DocumentTextIcon,
15852
+ color: "red",
15853
+ demoId: 5
15854
+ }
15855
+ ];
15856
+ var demos = [
15857
+ {
15858
+ id: 0,
15859
+ name: "Marketing Campaign",
15860
+ prompt: "Criar campanha de Black Friday para e-commerce",
15861
+ agents: ["Marketing", "Design", "E-commerce", "Email"],
15862
+ processingText: "Ativando equipe especializada para sua campanha"
15863
+ },
15864
+ {
15865
+ id: 1,
15866
+ name: "Customer Analytics",
15867
+ prompt: "Analisar comportamento dos clientes e identificar oportunidades",
15868
+ agents: ["Analytics", "CRM", "Insights", "Reports"],
15869
+ processingText: "Analisando dados e gerando insights"
15870
+ },
15871
+ {
15872
+ id: 2,
15873
+ name: "Inventory Management",
15874
+ prompt: "Verificar estoque e sugerir reposi\xE7\xF5es autom\xE1ticas",
15875
+ agents: ["Inventory", "Supply", "Forecast", "Logistics"],
15876
+ processingText: "Verificando estoque e planejando reposi\xE7\xE3o"
15877
+ },
15878
+ {
15879
+ id: 3,
15880
+ name: "HR Recruitment",
15881
+ prompt: "Processar candidaturas para vaga de Desenvolvedor Senior",
15882
+ agents: ["HR", "Recruiter", "Skills", "Interview"],
15883
+ processingText: "Processando candidaturas e avaliando perfis"
15884
+ },
15885
+ {
15886
+ id: 4,
15887
+ name: "Financial Planning",
15888
+ prompt: "Gerar relat\xF3rio financeiro e calcular impostos do trimestre",
15889
+ agents: ["Finance", "Tax", "Reports", "Compliance"],
15890
+ processingText: "Calculando impostos e gerando relat\xF3rios"
15891
+ },
15892
+ {
15893
+ id: 5,
15894
+ name: "LGPD Compliance",
15895
+ prompt: "Auditar dados pessoais e verificar conformidade LGPD",
15896
+ agents: ["LGPD", "Privacy", "Audit", "Security"],
15897
+ processingText: "Auditando dados e verificando conformidade"
15898
+ },
15899
+ {
15900
+ id: 6,
15901
+ name: "Sales Demo",
15902
+ prompt: "Qualificar lead empresa XPTO para proposta comercial",
15903
+ agents: ["Sales", "CRM", "Scoring", "Proposal"],
15904
+ processingText: "Qualificando lead e preparando proposta"
15905
+ }
15906
+ ];
15907
+ var AIOrchestratorDemo = ({
15908
+ className,
15909
+ selectedDepartmentIndex = 0
15910
+ }) => {
15911
+ const currentDepartmentIndex = selectedDepartmentIndex;
15912
+ const [stage, setStage] = useState(
15913
+ "input"
15914
+ );
15915
+ const [inputText, setInputText] = useState("");
15916
+ const currentDepartment = departments[currentDepartmentIndex];
15917
+ const currentDemo = currentDepartment ? demos[currentDepartment.demoId] : null;
15918
+ useEffect(() => {
15919
+ if (stage === "input" && currentDemo) {
15920
+ setInputText("");
15921
+ let index = 0;
15922
+ const currentPrompt = currentDemo.prompt;
15923
+ const typingInterval = setInterval(() => {
15924
+ if (index <= currentPrompt.length) {
15925
+ setInputText(currentPrompt.slice(0, index));
15926
+ index++;
15927
+ } else {
15928
+ clearInterval(typingInterval);
15929
+ setTimeout(() => setStage("processing"), 500);
15930
+ }
15931
+ }, 50);
15932
+ return () => clearInterval(typingInterval);
15933
+ }
15934
+ return void 0;
15935
+ }, [stage, currentDemo]);
15936
+ useEffect(() => {
15937
+ if (stage === "processing") {
15938
+ const timer = setTimeout(() => setStage("orchestrator"), 2e3);
15939
+ return () => clearTimeout(timer);
15940
+ }
15941
+ return void 0;
15942
+ }, [stage]);
15943
+ useEffect(() => {
15944
+ setStage("input");
15945
+ setInputText("");
15946
+ }, [selectedDepartmentIndex]);
15947
+ const renderDepartmentDemo = () => {
15948
+ if (!currentDepartment) return /* @__PURE__ */ jsx(SalesDemo, {});
15949
+ switch (currentDepartment.demoId) {
15950
+ case 0:
15951
+ return /* @__PURE__ */ jsx(MarketingDemo, {});
15952
+ case 1:
15953
+ return /* @__PURE__ */ jsx(CustomerAnalyticsDemo, {});
15954
+ case 2:
15955
+ return /* @__PURE__ */ jsx(InventoryDemo, {});
15956
+ case 3:
15957
+ return /* @__PURE__ */ jsx(HRRecruitmentDemo, {});
15958
+ case 4:
15959
+ return /* @__PURE__ */ jsx(FinancialDemo, {});
15960
+ case 5:
15961
+ return /* @__PURE__ */ jsx(LGPDComplianceDemo, {});
15962
+ case 6:
15963
+ return /* @__PURE__ */ jsx(SalesDemo, {});
15964
+ default:
15965
+ return /* @__PURE__ */ jsx(SalesDemo, {});
15966
+ }
15967
+ };
15968
+ return /* @__PURE__ */ jsxs(
15969
+ "section",
15970
+ {
15971
+ className: `min-h-[700px] flex flex-col bg-white/[0.02] dark:bg-white/[0.02] rounded-xl border border-white/10 dark:border-white/[0.06] overflow-hidden ${className || ""}`,
15972
+ children: [
15973
+ /* @__PURE__ */ jsxs("div", { className: "h-12 bg-white/5 dark:bg-white/[0.03] border-b border-white/10 dark:border-white/[0.06] flex items-center justify-between px-4", children: [
15974
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3", children: [
15975
+ /* @__PURE__ */ jsx("h1", { className: "text-base font-bold text-blue-600", children: "Kori ERP" }),
15976
+ /* @__PURE__ */ jsxs("div", { className: "relative w-64", children: [
15977
+ /* @__PURE__ */ jsx(
15978
+ "input",
15979
+ {
15980
+ type: "text",
15981
+ placeholder: "Buscar agentes, tarefas...",
15982
+ className: "w-full pl-8 pr-3 py-1.5 bg-white/[0.02] dark:bg-white/[0.02] border border-white/10 dark:border-white/[0.08] rounded-lg text-xs focus:outline-none focus:ring-1 focus:ring-blue-500",
15983
+ "aria-label": "Search agents and tasks"
15984
+ }
15985
+ ),
15986
+ /* @__PURE__ */ jsx(
15987
+ "svg",
15988
+ {
15989
+ className: "absolute left-2.5 top-2 w-3 h-3 text-gray-400",
15990
+ fill: "none",
15991
+ stroke: "currentColor",
15992
+ viewBox: "0 0 24 24",
15993
+ children: /* @__PURE__ */ jsx(
15994
+ "path",
15995
+ {
15996
+ strokeLinecap: "round",
15997
+ strokeLinejoin: "round",
15998
+ strokeWidth: 2,
15999
+ d: "M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"
16000
+ }
16001
+ )
16002
+ }
16003
+ )
16004
+ ] })
16005
+ ] }),
16006
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
16007
+ /* @__PURE__ */ jsx("button", { className: "p-1.5 hover:bg-white/10 dark:hover:bg-white/5 rounded-lg", "aria-label": "Help", children: /* @__PURE__ */ jsx(
16008
+ "svg",
16009
+ {
16010
+ className: "w-4 h-4 text-gray-600 dark:text-gray-400",
16011
+ fill: "none",
16012
+ stroke: "currentColor",
16013
+ viewBox: "0 0 24 24",
16014
+ children: /* @__PURE__ */ jsx(
16015
+ "path",
16016
+ {
16017
+ strokeLinecap: "round",
16018
+ strokeLinejoin: "round",
16019
+ strokeWidth: 2,
16020
+ d: "M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
16021
+ }
16022
+ )
16023
+ }
16024
+ ) }),
16025
+ /* @__PURE__ */ jsx("button", { className: "p-1.5 hover:bg-white/10 dark:hover:bg-white/5 rounded-lg", "aria-label": "Toggle dark mode", children: /* @__PURE__ */ jsx(
16026
+ "svg",
16027
+ {
16028
+ className: "w-4 h-4 text-gray-600 dark:text-gray-400",
16029
+ fill: "none",
16030
+ stroke: "currentColor",
16031
+ viewBox: "0 0 24 24",
16032
+ children: /* @__PURE__ */ jsx(
16033
+ "path",
16034
+ {
16035
+ strokeLinecap: "round",
16036
+ strokeLinejoin: "round",
16037
+ strokeWidth: 2,
16038
+ d: "M20.354 15.354A9 9 0 018.646 3.646 9.003 9.003 0 0012 21a9.003 9.003 0 008.354-5.646z"
16039
+ }
16040
+ )
16041
+ }
16042
+ ) }),
16043
+ /* @__PURE__ */ jsx("button", { className: "p-1.5 hover:bg-white/10 dark:hover:bg-white/5 rounded-lg", "aria-label": "Notifications", children: /* @__PURE__ */ jsx(
16044
+ "svg",
16045
+ {
16046
+ className: "w-4 h-4 text-gray-600 dark:text-gray-400",
16047
+ fill: "none",
16048
+ stroke: "currentColor",
16049
+ viewBox: "0 0 24 24",
16050
+ children: /* @__PURE__ */ jsx(
16051
+ "path",
16052
+ {
16053
+ strokeLinecap: "round",
16054
+ strokeLinejoin: "round",
16055
+ strokeWidth: 2,
16056
+ d: "M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9"
16057
+ }
16058
+ )
16059
+ }
16060
+ ) }),
16061
+ /* @__PURE__ */ jsx("div", { className: "w-7 h-7 rounded-full bg-purple-600 flex items-center justify-center text-white font-semibold text-xs", children: "N" })
16062
+ ] })
16063
+ ] }),
16064
+ /* @__PURE__ */ jsxs("div", { className: "flex-1 flex overflow-hidden", children: [
16065
+ /* @__PURE__ */ jsx("div", { className: "w-12 bg-white/5 dark:bg-white/[0.03] border-r border-white/10 dark:border-white/[0.06] flex flex-col items-center py-3 gap-2", children: /* @__PURE__ */ jsx("button", { className: "w-8 h-8 flex items-center justify-center text-gray-600 dark:text-gray-400 hover:bg-white/10 dark:hover:bg-white/5 rounded-lg transition-colors", "aria-label": "Home", children: /* @__PURE__ */ jsx(
16066
+ "svg",
16067
+ {
16068
+ className: "w-4 h-4",
16069
+ fill: "none",
16070
+ stroke: "currentColor",
16071
+ viewBox: "0 0 24 24",
16072
+ children: /* @__PURE__ */ jsx(
16073
+ "path",
16074
+ {
16075
+ strokeLinecap: "round",
16076
+ strokeLinejoin: "round",
16077
+ strokeWidth: 2,
16078
+ d: "M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6"
16079
+ }
16080
+ )
16081
+ }
16082
+ ) }) }),
16083
+ /* @__PURE__ */ jsx("div", { className: "flex-1 overflow-hidden flex", children: /* @__PURE__ */ jsxs(AnimatePresence, { mode: "wait", children: [
16084
+ stage === "input" && currentDepartment && /* @__PURE__ */ jsx(
16085
+ InputStage,
16086
+ {
16087
+ inputText,
16088
+ currentDepartmentTitle: currentDepartment.title
16089
+ }
16090
+ ),
16091
+ stage === "processing" && currentDemo && /* @__PURE__ */ jsx(ProcessingStage, { currentDemo }),
16092
+ stage === "orchestrator" && currentDepartment && /* @__PURE__ */ jsx(
16093
+ OrchestratorStage,
16094
+ {
16095
+ currentDepartment,
16096
+ renderDepartmentDemo
16097
+ }
16098
+ )
16099
+ ] }) })
16100
+ ] })
16101
+ ]
16102
+ }
16103
+ );
16104
+ };
16105
+ var DashboardDemoLayout = ({
16106
+ children
16107
+ }) => {
16108
+ return /* @__PURE__ */ jsxs(
16109
+ motion.div,
16110
+ {
16111
+ initial: { opacity: 0 },
16112
+ animate: { opacity: 1 },
16113
+ exit: { opacity: 0 },
16114
+ transition: { duration: 0.5 },
16115
+ className: "flex h-full",
16116
+ children: [
16117
+ /* @__PURE__ */ jsx(DashboardSidebar, {}),
16118
+ /* @__PURE__ */ jsx("div", { className: "flex-1 flex flex-col overflow-hidden", children })
16119
+ ]
16120
+ }
16121
+ );
16122
+ };
16123
+ var DashboardSidebar = () => /* @__PURE__ */ jsxs(
16124
+ motion.div,
16125
+ {
16126
+ initial: { x: -20, opacity: 0 },
16127
+ animate: { x: 0, opacity: 1 },
16128
+ transition: { duration: 0.5, delay: 0.2 },
16129
+ className: "w-16 bg-muted/50 border-r flex flex-col items-center py-4 gap-4",
16130
+ children: [
16131
+ /* @__PURE__ */ jsx("div", { className: "h-10 w-10 rounded-lg bg-gradient-to-br from-blue-500 to-purple-600 flex items-center justify-center mb-2", children: /* @__PURE__ */ jsx(CpuChipIcon, { className: "h-5 w-5 text-white" }) }),
16132
+ /* @__PURE__ */ jsxs(
16133
+ motion.div,
16134
+ {
16135
+ initial: { opacity: 0 },
16136
+ animate: { opacity: 1 },
16137
+ transition: { delay: 0.5 },
16138
+ className: "flex flex-col gap-2 flex-1",
16139
+ children: [
16140
+ /* @__PURE__ */ jsx("div", { className: "h-10 w-10 rounded-lg bg-primary/10 flex items-center justify-center text-primary", children: /* @__PURE__ */ jsx(HomeIcon, { className: "h-5 w-5" }) }),
16141
+ /* @__PURE__ */ jsx("div", { className: "h-10 w-10 rounded-lg hover:bg-muted flex items-center justify-center text-muted-foreground", children: /* @__PURE__ */ jsx(ShoppingCartIcon, { className: "h-5 w-5" }) }),
16142
+ /* @__PURE__ */ jsx("div", { className: "h-10 w-10 rounded-lg hover:bg-muted flex items-center justify-center text-muted-foreground", children: /* @__PURE__ */ jsx(UsersIcon, { className: "h-5 w-5" }) }),
16143
+ /* @__PURE__ */ jsx("div", { className: "h-10 w-10 rounded-lg hover:bg-muted flex items-center justify-center text-muted-foreground", children: /* @__PURE__ */ jsx(ArrowTrendingUpIcon, { className: "h-5 w-5" }) }),
16144
+ /* @__PURE__ */ jsx("div", { className: "h-10 w-10 rounded-lg hover:bg-muted flex items-center justify-center text-muted-foreground", children: /* @__PURE__ */ jsx(Cog6ToothIcon, { className: "h-5 w-5" }) })
16145
+ ]
16146
+ }
16147
+ ),
16148
+ /* @__PURE__ */ jsx("div", { className: "h-10 w-10 rounded-full bg-gradient-to-br from-gray-400 to-gray-600 flex items-center justify-center", children: /* @__PURE__ */ jsx(UserIcon, { className: "h-5 w-5 text-white" }) })
16149
+ ]
16150
+ }
16151
+ );
16152
+ var DashboardStage = ({
16153
+ demos: demos2,
16154
+ currentDemo,
16155
+ onDemoSelect
16156
+ }) => /* @__PURE__ */ jsxs(
16157
+ motion.div,
16158
+ {
16159
+ initial: { opacity: 0, scale: 0.95 },
16160
+ animate: { opacity: 1, scale: 1 },
16161
+ exit: { opacity: 0, scale: 0.95 },
16162
+ className: "w-full max-w-4xl",
16163
+ children: [
16164
+ /* @__PURE__ */ jsx("div", { className: "absolute bottom-8 left-1/2 transform -translate-x-1/2 flex gap-2 z-50", children: demos2.map((demo) => /* @__PURE__ */ jsx(
16165
+ "button",
16166
+ {
16167
+ onClick: () => onDemoSelect(demo.id),
16168
+ className: `h-2 rounded-full transition-all duration-300 ${currentDemo === demo.id ? "w-8 bg-primary" : "w-2 bg-muted-foreground/30"}`,
16169
+ "aria-label": `Go to ${demo.name}`
16170
+ },
16171
+ demo.id
16172
+ )) }),
16173
+ /* @__PURE__ */ jsx("div", { className: "w-full h-[700px] rounded-xl border-2 shadow-2xl bg-background overflow-hidden", children: /* @__PURE__ */ jsx(AnimatePresence, { mode: "wait", children: demos2[currentDemo]?.component }) })
16174
+ ]
16175
+ }
16176
+ );
16177
+ var InputStage2 = ({
16178
+ inputText,
16179
+ demoName: _demoName
16180
+ }) => /* @__PURE__ */ jsx(
16181
+ motion.div,
16182
+ {
16183
+ initial: { opacity: 0, scale: 0.95 },
16184
+ animate: { opacity: 1, scale: 1 },
16185
+ exit: { opacity: 0, scale: 0.95 },
16186
+ className: "w-full max-w-2xl",
16187
+ children: /* @__PURE__ */ jsxs("div", { className: "bg-background rounded-2xl shadow-2xl border-2 p-8", children: [
16188
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3 mb-6", children: [
16189
+ /* @__PURE__ */ jsx("div", { className: "h-12 w-12 rounded-xl bg-gradient-to-br from-blue-500 to-purple-600 flex items-center justify-center", children: /* @__PURE__ */ jsx(SparklesIcon, { className: "h-6 w-6 text-white" }) }),
16190
+ /* @__PURE__ */ jsxs("div", { children: [
16191
+ /* @__PURE__ */ jsx("h3", { className: "text-lg font-bold", children: "Kori AI Assistant" }),
16192
+ /* @__PURE__ */ jsx("p", { className: "text-sm text-muted-foreground", children: "Como posso ajudar hoje?" })
16193
+ ] })
16194
+ ] }),
16195
+ /* @__PURE__ */ jsxs("div", { className: "relative", children: [
16196
+ /* @__PURE__ */ jsx("div", { className: "min-h-[120px] p-4 rounded-lg border-2 border-primary/20 bg-muted/20", children: /* @__PURE__ */ jsxs("p", { className: "text-lg font-medium", children: [
16197
+ inputText,
16198
+ /* @__PURE__ */ jsx(
16199
+ motion.span,
16200
+ {
16201
+ animate: { opacity: [1, 0, 1] },
16202
+ transition: { duration: 0.8, repeat: Infinity },
16203
+ className: "inline-block w-0.5 h-6 bg-primary ml-1"
16204
+ }
16205
+ )
16206
+ ] }) }),
16207
+ /* @__PURE__ */ jsxs("div", { className: "mt-4 flex items-center justify-between text-sm text-muted-foreground", children: [
16208
+ /* @__PURE__ */ jsx("span", { children: "Processando com IA..." }),
16209
+ /* @__PURE__ */ jsxs(Badge, { className: "text-xs border border-border", children: [
16210
+ /* @__PURE__ */ jsx(SparklesIcon, { className: "h-3 w-3 mr-1" }),
16211
+ "Multi-Agent"
16212
+ ] })
16213
+ ] })
16214
+ ] })
16215
+ ] })
16216
+ }
16217
+ );
16218
+ var ProcessingStage2 = ({
16219
+ processingText,
16220
+ agents
16221
+ }) => /* @__PURE__ */ jsx(
16222
+ motion.div,
16223
+ {
16224
+ initial: { opacity: 0, scale: 0.95 },
16225
+ animate: { opacity: 1, scale: 1 },
16226
+ exit: { opacity: 0, scale: 0.95 },
16227
+ className: "w-full max-w-2xl",
16228
+ children: /* @__PURE__ */ jsx("div", { className: "bg-background rounded-2xl shadow-2xl border-2 p-8", children: /* @__PURE__ */ jsxs("div", { className: "text-center space-y-6", children: [
16229
+ /* @__PURE__ */ jsx(
16230
+ motion.div,
16231
+ {
16232
+ animate: { rotate: 360 },
16233
+ transition: { duration: 2, repeat: Infinity, ease: "linear" },
16234
+ className: "inline-flex h-16 w-16 rounded-full bg-gradient-to-br from-purple-600 to-indigo-600 items-center justify-center",
16235
+ children: /* @__PURE__ */ jsx(SparklesIcon, { className: "h-8 w-8 text-white" })
16236
+ }
16237
+ ),
16238
+ /* @__PURE__ */ jsxs("div", { children: [
16239
+ /* @__PURE__ */ jsx("h3", { className: "text-xl font-bold mb-2", children: "Coordenando Agentes..." }),
16240
+ /* @__PURE__ */ jsx("p", { className: "text-muted-foreground", children: processingText })
16241
+ ] }),
16242
+ /* @__PURE__ */ jsx("div", { className: "flex justify-center gap-2 flex-wrap", children: agents.map((agent, i) => /* @__PURE__ */ jsx(
16243
+ motion.div,
16244
+ {
16245
+ initial: { opacity: 0, y: 20 },
16246
+ animate: { opacity: 1, y: 0 },
16247
+ transition: { delay: i * 0.2 },
16248
+ children: /* @__PURE__ */ jsx(Badge, { className: "bg-primary/10 text-primary", children: agent })
16249
+ },
16250
+ agent
16251
+ )) })
16252
+ ] }) })
16253
+ }
16254
+ );
16255
+ var DashboardDemo = ({
16256
+ className,
16257
+ initialDemo = 0
16258
+ } = {}) => {
16259
+ const [stage, setStage] = useState(
16260
+ "input"
16261
+ );
16262
+ const [currentDemo, setCurrentDemo] = useState(initialDemo);
16263
+ const [inputText, setInputText] = useState("");
16264
+ const demos2 = useMemo(() => [
16265
+ {
16266
+ id: 0,
16267
+ name: "Marketing Campaign",
16268
+ prompt: "Criar campanha de Black Friday para e-commerce",
16269
+ agents: ["Marketing", "Design", "E-commerce", "Email"],
16270
+ processingText: "Ativando equipe especializada para sua campanha",
16271
+ component: /* @__PURE__ */ jsx(DashboardDemoLayout, { children: /* @__PURE__ */ jsx(MarketingDemo, {}) })
16272
+ },
16273
+ {
16274
+ id: 1,
16275
+ name: "Customer Analytics",
16276
+ prompt: "Analisar comportamento dos clientes e identificar oportunidades",
16277
+ agents: ["Analytics", "CRM", "Insights", "Reports"],
16278
+ processingText: "Analisando dados e gerando insights",
16279
+ component: /* @__PURE__ */ jsx(DashboardDemoLayout, { children: /* @__PURE__ */ jsx(CustomerAnalyticsDemo, {}) })
16280
+ },
16281
+ {
16282
+ id: 2,
16283
+ name: "Inventory Management",
16284
+ prompt: "Verificar estoque e sugerir reposi\xE7\xF5es autom\xE1ticas",
16285
+ agents: ["Inventory", "Supply", "Forecast", "Logistics"],
16286
+ processingText: "Verificando estoque e planejando reposi\xE7\xE3o",
16287
+ component: /* @__PURE__ */ jsx(DashboardDemoLayout, { children: /* @__PURE__ */ jsx(InventoryDemo, {}) })
16288
+ },
16289
+ {
16290
+ id: 3,
16291
+ name: "HR Recruitment",
16292
+ prompt: "Processar candidaturas para vaga de Desenvolvedor Senior",
16293
+ agents: ["HR", "Recruiter", "Skills", "Interview"],
16294
+ processingText: "Processando candidaturas e avaliando perfis",
16295
+ component: /* @__PURE__ */ jsx(DashboardDemoLayout, { children: /* @__PURE__ */ jsx(HRRecruitmentDemo, {}) })
16296
+ },
16297
+ {
16298
+ id: 4,
16299
+ name: "Financial Planning",
16300
+ prompt: "Gerar relat\xF3rio financeiro e calcular impostos do trimestre",
16301
+ agents: ["Finance", "Tax", "Reports", "Compliance"],
16302
+ processingText: "Calculando impostos e gerando relat\xF3rios",
16303
+ component: /* @__PURE__ */ jsx(DashboardDemoLayout, { children: /* @__PURE__ */ jsx(FinancialDemo, {}) })
16304
+ },
16305
+ {
16306
+ id: 5,
16307
+ name: "LGPD Compliance",
16308
+ prompt: "Auditar dados pessoais e verificar conformidade LGPD",
16309
+ agents: ["LGPD", "Privacy", "Audit", "Security"],
16310
+ processingText: "Auditando dados e verificando conformidade",
16311
+ component: /* @__PURE__ */ jsx(DashboardDemoLayout, { children: /* @__PURE__ */ jsx(LGPDComplianceDemo, {}) })
16312
+ }
16313
+ ], []);
16314
+ useEffect(() => {
16315
+ if (initialDemo !== void 0) {
16316
+ setCurrentDemo(initialDemo);
16317
+ setStage("input");
16318
+ setInputText("");
16319
+ }
16320
+ }, [initialDemo]);
16321
+ useEffect(() => {
16322
+ if (stage === "input" && demos2[currentDemo]) {
16323
+ setInputText("");
16324
+ let index = 0;
16325
+ const currentPrompt = demos2[currentDemo].prompt;
16326
+ const interval = setInterval(() => {
16327
+ if (index <= currentPrompt.length) {
16328
+ setInputText(currentPrompt.slice(0, index));
16329
+ index++;
16330
+ } else {
16331
+ clearInterval(interval);
16332
+ setTimeout(() => setStage("processing"), 500);
16333
+ }
16334
+ }, 50);
16335
+ return () => clearInterval(interval);
16336
+ }
16337
+ return void 0;
16338
+ }, [stage, currentDemo, demos2]);
16339
+ useEffect(() => {
16340
+ if (stage === "processing") {
16341
+ const timer = setTimeout(() => setStage("dashboard"), 2e3);
16342
+ return () => clearTimeout(timer);
16343
+ }
16344
+ return void 0;
16345
+ }, [stage]);
16346
+ useEffect(() => {
16347
+ if (stage === "dashboard") {
16348
+ const interval = setInterval(() => {
16349
+ setStage("input");
16350
+ setInputText("");
16351
+ setCurrentDemo((prev) => (prev + 1) % demos2.length);
16352
+ }, 12e3);
16353
+ return () => clearInterval(interval);
16354
+ }
16355
+ return void 0;
16356
+ }, [stage, demos2.length]);
16357
+ return /* @__PURE__ */ jsx(
16358
+ "div",
16359
+ {
16360
+ className: className || "hidden lg:flex items-center justify-center bg-muted/30 border-l relative overflow-hidden p-8",
16361
+ children: /* @__PURE__ */ jsxs(AnimatePresence, { mode: "wait", children: [
16362
+ stage === "input" && demos2[currentDemo] && /* @__PURE__ */ jsx(
16363
+ InputStage2,
16364
+ {
16365
+ inputText,
16366
+ demoName: demos2[currentDemo].name
16367
+ },
16368
+ "input"
16369
+ ),
16370
+ stage === "processing" && demos2[currentDemo] && /* @__PURE__ */ jsx(
16371
+ ProcessingStage2,
16372
+ {
16373
+ processingText: demos2[currentDemo].processingText,
16374
+ agents: demos2[currentDemo].agents
16375
+ },
16376
+ "processing"
16377
+ ),
16378
+ stage === "dashboard" && /* @__PURE__ */ jsx(
16379
+ DashboardStage,
16380
+ {
16381
+ demos: demos2,
16382
+ currentDemo,
16383
+ onDemoSelect: setCurrentDemo
16384
+ },
16385
+ "dashboard"
16386
+ )
16387
+ ] })
16388
+ }
16389
+ );
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
+ };
16902
+ function EntityDrawer({
16903
+ open,
16904
+ onClose,
16905
+ title,
16906
+ subtitle,
16907
+ icon,
16908
+ gradient = "from-gray-400 to-gray-500",
16909
+ maxWidth = "max-w-xl",
16910
+ tabs,
16911
+ children
16912
+ }) {
16913
+ if (!open) return null;
16914
+ return /* @__PURE__ */ jsxs(Fragment, { children: [
16915
+ /* @__PURE__ */ jsx(
16916
+ "div",
16917
+ {
16918
+ className: "fixed inset-0 z-40 bg-black/20 backdrop-blur-[2px] transition-opacity",
16919
+ onClick: onClose,
16920
+ "data-testid": "entity-drawer-backdrop"
16921
+ }
16922
+ ),
16923
+ /* @__PURE__ */ jsxs("div", { className: `fixed top-[64px] right-2 bottom-2 z-50 flex w-full ${maxWidth} flex-col overflow-hidden rounded-2xl border border-white/60 bg-white/80 shadow-[0_8px_60px_-12px_rgba(0,0,0,0.25),0_0_0_1px_rgba(255,255,255,0.1)] backdrop-blur-2xl dark:border-white/[0.12] dark:bg-gray-900/85 dark:shadow-[0_8px_60px_-12px_rgba(0,0,0,0.6),0_0_0_1px_rgba(255,255,255,0.06)]`, children: [
16924
+ /* @__PURE__ */ jsx("div", { className: `absolute inset-y-0 left-0 w-[3px] bg-gradient-to-b ${gradient} opacity-80` }),
16925
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between px-6 py-5", children: [
16926
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3.5", children: [
16927
+ /* @__PURE__ */ jsx("div", { className: `flex h-11 w-11 items-center justify-center rounded-[14px] bg-gradient-to-br ${gradient} shadow-lg shadow-black/20 ring-1 ring-white/25`, children: icon }),
16928
+ /* @__PURE__ */ jsxs("div", { children: [
16929
+ /* @__PURE__ */ jsx("h2", { className: "text-base font-bold tracking-tight text-gray-900 dark:text-white", children: title }),
16930
+ subtitle && /* @__PURE__ */ jsx("p", { className: "mt-0.5 text-[13px] text-gray-500 dark:text-gray-400", children: subtitle })
16931
+ ] })
16932
+ ] }),
16933
+ /* @__PURE__ */ jsx(
16934
+ "button",
16935
+ {
16936
+ onClick: onClose,
16937
+ "aria-label": "Close",
16938
+ className: "rounded-xl p-2 text-gray-400 transition-all hover:bg-black/5 hover:text-gray-600 active:scale-95 dark:text-gray-500 dark:hover:bg-white/10 dark:hover:text-gray-300",
16939
+ "data-testid": "entity-drawer-close",
16940
+ children: /* @__PURE__ */ jsx(XMarkIcon$1, { className: "h-5 w-5" })
16941
+ }
16942
+ )
16943
+ ] }),
16944
+ /* @__PURE__ */ jsx("div", { className: "mx-5 h-px bg-gradient-to-r from-transparent via-gray-200/80 to-transparent dark:via-white/10" }),
16945
+ tabs,
16946
+ /* @__PURE__ */ jsx("div", { className: "flex-1 overflow-y-auto px-6 py-5", children })
16947
+ ] })
16948
+ ] });
16949
+ }
16950
+
16951
+ // src/lib/locale-flags.ts
16952
+ var flag_br = "data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%0A%3C!--%20Uploaded%20to%3A%20SVG%20Repo%2C%20www.svgrepo.com%2C%20Generator%3A%20SVG%20Repo%20Mixer%20Tools%20--%3E%0A%3Csvg%20height%3D%22800px%22%20width%3D%22800px%22%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20%0A%09%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpath%20style%3D%22fill%3A%23259245%3B%22%20d%3D%22M395.901%2C7.286H116.099C56.003%2C7.286%2C7.286%2C56.003%2C7.286%2C116.099v279.803%0A%09c0%2C60.095%2C48.717%2C108.812%2C108.812%2C108.812h279.803c60.095%2C0%2C108.812-48.717%2C108.812-108.812V116.099%0A%09C504.714%2C56.003%2C455.997%2C7.286%2C395.901%2C7.286z%22%2F%3E%0A%3Cpath%20d%3D%22M395.901%2C512H116.099C52.082%2C512%2C0%2C459.918%2C0%2C395.901V116.099C0%2C52.082%2C52.082%2C0%2C116.099%2C0h279.803%0A%09C459.918%2C0%2C512%2C52.082%2C512%2C116.099v279.803C512%2C459.918%2C459.918%2C512%2C395.901%2C512z%20M116.099%2C14.573%0A%09c-55.981%2C0-101.526%2C45.544-101.526%2C101.526v279.803c0%2C55.981%2C45.544%2C101.526%2C101.526%2C101.526h279.803%0A%09c55.981%2C0%2C101.526-45.545%2C101.526-101.526V116.099c0-55.981-45.545-101.526-101.526-101.526%0A%09C395.902%2C14.573%2C116.099%2C14.573%2C116.099%2C14.573z%22%2F%3E%0A%3Cpolygon%20style%3D%22fill%3A%23FFE000%3B%22%20points%3D%22256%2C374.81%2051.502%2C256%20256%2C137.19%20460.498%2C256%20%22%2F%3E%0A%3Cpath%20d%3D%22M256%2C382.097c-1.265%2C0-2.529-0.328-3.66-0.986L47.842%2C262.301c-2.245-1.305-3.626-3.705-3.626-6.301%0A%09s1.381-4.996%2C3.626-6.301l204.498-118.81c2.264-1.315%2C5.057-1.315%2C7.321%2C0l204.498%2C118.81c2.245%2C1.305%2C3.626%2C3.705%2C3.626%2C6.301%0A%09c0%2C2.596-1.381%2C4.996-3.626%2C6.301l-32.303%2C18.767c-3.48%2C2.02-7.939%2C0.841-9.961-2.64c-2.021-3.479-0.84-7.939%2C2.64-9.961%0A%09L445.993%2C256L256%2C145.617L66.007%2C256L256%2C366.383l139.861-81.258c3.478-2.021%2C7.938-0.841%2C9.961%2C2.64%0A%09c2.021%2C3.479%2C0.84%2C7.939-2.64%2C9.961L259.66%2C381.111C258.529%2C381.768%2C257.265%2C382.097%2C256%2C382.097z%22%2F%3E%0A%3Ccircle%20style%3D%22fill%3A%23103B9B%3B%22%20cx%3D%22256%22%20cy%3D%22256%22%20r%3D%2267.47%22%2F%3E%0A%3Cpath%20style%3D%22fill%3A%23FFFFFF%3B%22%20d%3D%22M316.265%2C293.777c-2.7%2C0-5.294-1.507-6.556-4.097c-10.094-20.712-27.403-36.941-48.741-45.697%0A%09c-21.334-8.755-45.052-9.367-66.782-1.72c-3.794%2C1.333-7.955-0.659-9.292-4.455c-1.335-3.796%2C0.659-7.956%2C4.455-9.292%0A%09c25.106-8.835%2C52.506-8.129%2C77.152%2C1.986c24.649%2C10.116%2C44.646%2C28.865%2C56.308%2C52.796c1.763%2C3.617%2C0.259%2C7.979-3.359%2C9.742%0A%09C318.423%2C293.54%2C317.336%2C293.777%2C316.265%2C293.777z%22%2F%3E%0A%3Cpath%20d%3D%22M256%2C330.753c-41.219%2C0-74.753-33.534-74.753-74.753s33.534-74.753%2C74.753-74.753s74.753%2C33.534%2C74.753%2C74.753%0A%09S297.219%2C330.753%2C256%2C330.753z%20M256%2C195.82c-33.183%2C0-60.18%2C26.997-60.18%2C60.18s26.997%2C60.18%2C60.18%2C60.18s60.18-26.997%2C60.18-60.18%0A%09S289.183%2C195.82%2C256%2C195.82z%22%2F%3E%0A%3C%2Fsvg%3E";
16953
+ var flag_us = "data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%0A%3C!--%20Uploaded%20to%3A%20SVG%20Repo%2C%20www.svgrepo.com%2C%20Generator%3A%20SVG%20Repo%20Mixer%20Tools%20--%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20%0A%09%20viewBox%3D%220%200%20512.001%20512.001%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpath%20style%3D%22fill%3A%23FFFFFF%3B%22%20d%3D%22M395.901%2C7.287H116.099C56.003%2C7.287%2C7.286%2C56.004%2C7.286%2C116.1v279.803%0A%09c0%2C60.095%2C48.717%2C108.812%2C108.812%2C108.812h279.803c60.095%2C0%2C108.812-48.717%2C108.812-108.812V116.1%0A%09C504.714%2C56.004%2C455.997%2C7.287%2C395.901%2C7.287z%22%2F%3E%0A%3Cg%3E%0A%09%3Crect%20x%3D%227.286%22%20y%3D%22338.901%22%20style%3D%22fill%3A%23ED1F34%3B%22%20width%3D%22497.43%22%20height%3D%2255.26%22%2F%3E%0A%09%3Crect%20x%3D%22225.79%22%20y%3D%22228.361%22%20style%3D%22fill%3A%23ED1F34%3B%22%20width%3D%22278.92%22%20height%3D%2255.28%22%2F%3E%0A%09%3Crect%20x%3D%22236.17%22%20y%3D%22117.831%22%20style%3D%22fill%3A%23ED1F34%3B%22%20width%3D%22268.55%22%20height%3D%2255.26%22%2F%3E%0A%09%3Cpath%20style%3D%22fill%3A%23ED1F34%3B%22%20d%3D%22M116.099%2C504.715h279.803c40.628%2C0%2C76.05-22.27%2C94.739-55.264H21.36%0A%09%09C40.049%2C482.445%2C75.471%2C504.715%2C116.099%2C504.715z%22%2F%3E%0A%09%3Cpath%20style%3D%22fill%3A%23ED1F34%3B%22%20d%3D%22M490.64%2C62.552c-18.689-32.995-54.111-55.264-94.739-55.264H225.79v55.264H490.64z%22%2F%3E%0A%3C%2Fg%3E%0A%3Cpath%20style%3D%22fill%3A%23164FCE%3B%22%20d%3D%22M335.041%2C7.287H116.099C56.003%2C7.287%2C7.286%2C56.004%2C7.286%2C116.1v167.541h327.755L335.041%2C7.287%0A%09L335.041%2C7.287z%22%2F%3E%0A%3Cg%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2272.55%22%20cy%3D%22217.091%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22121.86%22%20cy%3D%22217.091%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22171.16%22%20cy%3D%22217.091%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22220.47%22%20cy%3D%22217.091%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22269.77%22%20cy%3D%22217.091%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2247.902%22%20cy%3D%22240.971%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2297.21%22%20cy%3D%22240.971%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22146.51%22%20cy%3D%22240.971%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22195.82%22%20cy%3D%22240.971%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22245.12%22%20cy%3D%22240.971%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22294.43%22%20cy%3D%22240.971%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2247.902%22%20cy%3D%22193.221%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2297.21%22%20cy%3D%22193.221%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22146.51%22%20cy%3D%22193.221%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22195.82%22%20cy%3D%22193.221%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22245.12%22%20cy%3D%22193.221%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22294.43%22%20cy%3D%22193.221%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2272.55%22%20cy%3D%22169.341%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22121.86%22%20cy%3D%22169.341%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22171.16%22%20cy%3D%22169.341%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22220.47%22%20cy%3D%22169.341%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22269.77%22%20cy%3D%22169.341%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2247.902%22%20cy%3D%22145.461%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2297.21%22%20cy%3D%22145.461%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22146.51%22%20cy%3D%22145.461%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22195.82%22%20cy%3D%22145.461%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22245.12%22%20cy%3D%22145.461%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22294.43%22%20cy%3D%22145.461%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2272.55%22%20cy%3D%22121.591%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22121.86%22%20cy%3D%22121.591%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22171.16%22%20cy%3D%22121.591%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22220.47%22%20cy%3D%22121.591%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22269.77%22%20cy%3D%22121.591%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2247.902%22%20cy%3D%2297.711%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2297.21%22%20cy%3D%2297.711%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22146.51%22%20cy%3D%2297.711%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22195.82%22%20cy%3D%2297.711%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22245.12%22%20cy%3D%2297.711%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22294.43%22%20cy%3D%2297.711%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2272.55%22%20cy%3D%2273.835%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22121.86%22%20cy%3D%2273.835%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22171.16%22%20cy%3D%2273.835%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22220.47%22%20cy%3D%2273.835%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22269.77%22%20cy%3D%2273.835%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2247.902%22%20cy%3D%2249.958%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%2297.21%22%20cy%3D%2249.958%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22146.51%22%20cy%3D%2249.958%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22195.82%22%20cy%3D%2249.958%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22245.12%22%20cy%3D%2249.958%22%20r%3D%228.953%22%2F%3E%0A%09%3Ccircle%20style%3D%22fill%3A%23FFFFFF%3B%22%20cx%3D%22294.43%22%20cy%3D%2249.958%22%20r%3D%228.953%22%2F%3E%0A%3C%2Fg%3E%0A%3Cpath%20d%3D%22M497.341%2C59.688c-0.199-0.465-0.447-0.902-0.734-1.311C476.551%2C23.521%2C438.921%2C0.001%2C395.901%2C0.001H116.099%0A%09C52.082%2C0.001%2C0%2C52.083%2C0%2C116.1v279.803c0%2C20.462%2C5.328%2C39.7%2C14.659%2C56.412c0.199%2C0.464%2C0.447%2C0.902%2C0.734%2C1.311%0A%09C35.449%2C488.481%2C73.079%2C512%2C116.099%2C512h279.803c43.02%2C0%2C80.65-23.52%2C100.706-58.376c0.287-0.409%2C0.535-0.846%2C0.734-1.311%0A%09c9.331-16.712%2C14.659-35.95%2C14.659-56.412V116.1C512%2C95.638%2C506.672%2C76.4%2C497.341%2C59.688z%20M438.39%2C386.883%0A%09c-4.024%2C0-7.286%2C3.262-7.286%2C7.287s3.262%2C7.286%2C7.286%2C7.286h58.883c-0.791%2C14.595-4.676%2C28.38-11.013%2C40.708H25.74%0A%09c-6.337-12.328-10.222-26.113-11.013-40.708h390.501c4.024%2C0%2C7.286-3.262%2C7.286-7.286c0-4.025-3.262-7.287-7.286-7.287H14.573%0A%09v-40.692h482.854v40.692L438.39%2C386.883L438.39%2C386.883z%20M497.273%2C110.546H342.328V69.838H486.26%0A%09C492.597%2C82.166%2C496.482%2C95.951%2C497.273%2C110.546z%20M389.101%2C180.383h108.326v40.691H342.328v-40.691h19.156%0A%09c4.024%2C0%2C7.286-3.262%2C7.286-7.287c0-4.025-3.262-7.286-7.286-7.286h-19.156v-40.692h155.099v40.692H389.101%0A%09c-4.024%2C0-7.287%2C3.262-7.287%2C7.286C381.814%2C177.121%2C385.076%2C180.383%2C389.101%2C180.383z%20M342.328%2C235.647h155.099v40.708H342.328%0A%09V235.647z%20M497.427%2C290.928v40.691H14.573v-40.691H497.427z%20M477.132%2C55.265H342.328V14.574h53.574%0A%09C429.082%2C14.574%2C458.594%2C30.575%2C477.132%2C55.265z%20M116.099%2C14.574h211.656v261.781H14.573V116.1%0A%09C14.573%2C60.119%2C60.117%2C14.574%2C116.099%2C14.574z%20M395.901%2C497.428H116.099c-33.181%2C0-62.693-16.001-81.231-40.691h442.264%0A%09C458.594%2C481.427%2C429.082%2C497.428%2C395.901%2C497.428z%22%2F%3E%0A%3C%2Fsvg%3E";
16954
+ var flag_es = "data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%0A%3C!--%20Uploaded%20to%3A%20SVG%20Repo%2C%20www.svgrepo.com%2C%20Generator%3A%20SVG%20Repo%20Mixer%20Tools%20--%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20%0A%09%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Crect%20x%3D%227.286%22%20y%3D%22131.64%22%20style%3D%22fill%3A%23FFE000%3B%22%20width%3D%22497.43%22%20height%3D%22248.71%22%2F%3E%0A%3Cg%3E%0A%09%3Cpath%20style%3D%22fill%3A%23ED1F34%3B%22%20d%3D%22M395.901%2C7.287H116.099C56.003%2C7.287%2C7.286%2C56.003%2C7.286%2C116.099v15.545h497.427v-15.545%0A%09%09C504.714%2C56.003%2C455.997%2C7.287%2C395.901%2C7.287z%22%2F%3E%0A%09%3Cpath%20style%3D%22fill%3A%23ED1F34%3B%22%20d%3D%22M7.286%2C395.901c0%2C60.095%2C48.717%2C108.812%2C108.812%2C108.812h279.803%0A%09%09c60.095%2C0%2C108.812-48.717%2C108.812-108.812v-15.545H7.286V395.901z%22%2F%3E%0A%3C%2Fg%3E%0A%3Cpath%20d%3D%22M395.901%2C0H116.099C52.082%2C0%2C0%2C52.082%2C0%2C116.099v279.803C0%2C459.918%2C52.082%2C512%2C116.099%2C512h279.803%0A%09C459.918%2C512%2C512%2C459.918%2C512%2C395.901V116.099C512%2C52.082%2C459.918%2C0%2C395.901%2C0z%20M116.099%2C14.573h279.803%0A%09c55.981%2C0%2C101.526%2C45.544%2C101.526%2C101.526v8.258H14.573v-8.258C14.573%2C60.117%2C60.117%2C14.573%2C116.099%2C14.573z%20M395.901%2C497.427%0A%09H116.099c-55.982%2C0-101.526-45.544-101.526-101.526v-8.258h390.655c4.024%2C0%2C7.286-3.262%2C7.286-7.287s-3.262-7.286-7.286-7.286%0A%09H14.573V138.93h482.854v234.14H438.39c-4.024%2C0-7.286%2C3.262-7.286%2C7.286s3.262%2C7.287%2C7.286%2C7.287h59.037v8.258%0A%09C497.427%2C451.883%2C451.883%2C497.427%2C395.901%2C497.427z%22%2F%3E%0A%3C%2Fsvg%3E";
16955
+ var flag_fr = "data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%0A%3C!--%20Uploaded%20to%3A%20SVG%20Repo%2C%20www.svgrepo.com%2C%20Generator%3A%20SVG%20Repo%20Mixer%20Tools%20--%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20%0A%09%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Crect%20x%3D%22173.1%22%20y%3D%227.287%22%20style%3D%22fill%3A%23FFFFFF%3B%22%20width%3D%22165.81%22%20height%3D%22497.43%22%2F%3E%0A%3Cpath%20style%3D%22fill%3A%23164FCE%3B%22%20d%3D%22M116.099%2C7.287C56.003%2C7.287%2C7.286%2C56.003%2C7.286%2C116.099v279.803%0A%09c0%2C60.095%2C48.717%2C108.812%2C108.812%2C108.812h56.997V7.287H116.099z%22%2F%3E%0A%3Cpath%20style%3D%22fill%3A%23ED1F34%3B%22%20d%3D%22M395.901%2C7.287h-56.997v497.427h56.997c60.095%2C0%2C108.812-48.717%2C108.812-108.812V116.099%0A%09C504.714%2C56.003%2C455.997%2C7.287%2C395.901%2C7.287z%22%2F%3E%0A%3Cpath%20d%3D%22M395.901%2C0H116.099C52.082%2C0%2C0%2C52.082%2C0%2C116.099v279.803C0%2C459.918%2C52.082%2C512%2C116.099%2C512h279.803%0A%09C459.918%2C512%2C512%2C459.918%2C512%2C395.901V116.099C512%2C52.082%2C459.918%2C0%2C395.901%2C0z%20M14.573%2C395.901V116.099%0A%09c0-55.981%2C45.544-101.526%2C101.526-101.526h49.71v482.854h-49.71C60.117%2C497.427%2C14.573%2C451.883%2C14.573%2C395.901z%20M497.427%2C395.901%0A%09c0%2C55.982-45.545%2C101.526-101.526%2C101.526H346.19V156.515c0-4.024-3.262-7.286-7.286-7.286c-4.025%2C0-7.287%2C3.262-7.287%2C7.286%0A%09v340.912H180.382V14.573h151.236v92.199c0%2C4.024%2C3.262%2C7.286%2C7.287%2C7.286s7.286-3.262%2C7.286-7.286V14.573h49.711%0A%09c55.981%2C0%2C101.526%2C45.544%2C101.526%2C101.526L497.427%2C395.901L497.427%2C395.901z%22%2F%3E%0A%3C%2Fsvg%3E";
16956
+ var flag_de = "data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%0A%3C!--%20Uploaded%20to%3A%20SVG%20Repo%2C%20www.svgrepo.com%2C%20Generator%3A%20SVG%20Repo%20Mixer%20Tools%20--%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20%0A%09%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Crect%20x%3D%227.286%22%20y%3D%22173.1%22%20style%3D%22fill%3A%23ED1F34%3B%22%20width%3D%22497.43%22%20height%3D%22165.81%22%2F%3E%0A%3Cpath%20style%3D%22fill%3A%23FFE000%3B%22%20d%3D%22M7.286%2C395.901c0%2C60.095%2C48.717%2C108.812%2C108.812%2C108.812h279.803%0A%09c60.095%2C0%2C108.812-48.717%2C108.812-108.812v-56.997H7.286V395.901z%22%2F%3E%0A%3Cpath%20style%3D%22fill%3A%23333333%3B%22%20d%3D%22M395.901%2C7.286H116.099C56.003%2C7.286%2C7.286%2C56.003%2C7.286%2C116.099v56.997h497.427v-56.997%0A%09C504.714%2C56.003%2C455.997%2C7.286%2C395.901%2C7.286z%22%2F%3E%0A%3Cpath%20d%3D%22M395.901%2C0H116.099C52.082%2C0%2C0%2C52.082%2C0%2C116.099v279.803C0%2C459.918%2C52.082%2C512%2C116.099%2C512h279.803%0A%09C459.918%2C512%2C512%2C459.918%2C512%2C395.901V116.099C512%2C52.082%2C459.918%2C0%2C395.901%2C0z%20M116.099%2C14.573h279.803%0A%09c55.981%2C0%2C101.526%2C45.544%2C101.526%2C101.526v49.71H14.573v-49.71C14.573%2C60.117%2C60.117%2C14.573%2C116.099%2C14.573z%20M395.901%2C497.427%0A%09H116.099c-55.982%2C0-101.526-45.544-101.526-101.526v-49.71h390.655c4.025%2C0%2C7.286-3.262%2C7.286-7.286s-3.262-7.286-7.286-7.286%0A%09H14.573V180.382h482.854v151.236H438.39c-4.025%2C0-7.286%2C3.262-7.286%2C7.286s3.262%2C7.286%2C7.286%2C7.286h59.037v49.71%0A%09C497.427%2C451.883%2C451.882%2C497.427%2C395.901%2C497.427z%22%2F%3E%0A%3C%2Fsvg%3E";
16957
+ var flag_it = "data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%0A%3C!--%20Uploaded%20to%3A%20SVG%20Repo%2C%20www.svgrepo.com%2C%20Generator%3A%20SVG%20Repo%20Mixer%20Tools%20--%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20%0A%09%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Crect%20x%3D%22173.1%22%20y%3D%227.286%22%20style%3D%22fill%3A%23FFFFFF%3B%22%20width%3D%22165.81%22%20height%3D%22497.43%22%2F%3E%0A%3Cpath%20style%3D%22fill%3A%23259245%3B%22%20d%3D%22M116.099%2C7.286C56.003%2C7.286%2C7.286%2C56.003%2C7.286%2C116.099v279.803%0A%09c0%2C60.095%2C48.717%2C108.812%2C108.812%2C108.812h56.997V7.286H116.099z%22%2F%3E%0A%3Cpath%20style%3D%22fill%3A%23ED1F34%3B%22%20d%3D%22M395.901%2C7.286h-56.997v497.427h56.997c60.095%2C0%2C108.812-48.717%2C108.812-108.812V116.099%0A%09C504.714%2C56.003%2C455.997%2C7.286%2C395.901%2C7.286z%22%2F%3E%0A%3Cpath%20d%3D%22M395.901%2C0H116.099C52.082%2C0%2C0%2C52.082%2C0%2C116.099v279.803C0%2C459.918%2C52.082%2C512%2C116.099%2C512h279.803%0A%09C459.918%2C512%2C512%2C459.918%2C512%2C395.901V116.099C512%2C52.082%2C459.918%2C0%2C395.901%2C0z%20M14.573%2C395.901V116.099%0A%09c0-55.982%2C45.544-101.526%2C101.526-101.526h49.71v482.854h-49.71C60.117%2C497.427%2C14.573%2C451.883%2C14.573%2C395.901z%20M497.427%2C395.901%0A%09c0%2C55.982-45.544%2C101.526-101.526%2C101.526h-49.71V156.515c0-4.024-3.262-7.286-7.287-7.286c-4.024%2C0-7.286%2C3.262-7.286%2C7.286%0A%09v340.912H180.382V14.573h151.236v92.199c0%2C4.024%2C3.262%2C7.286%2C7.286%2C7.286c4.024%2C0%2C7.287-3.262%2C7.287-7.286V14.573h49.71%0A%09c55.981%2C0%2C101.526%2C45.544%2C101.526%2C101.526L497.427%2C395.901L497.427%2C395.901z%22%2F%3E%0A%3C%2Fsvg%3E";
16958
+ var LOCALE_FLAGS = {
16959
+ "br": flag_br,
16960
+ "us": flag_us,
16961
+ "es": flag_es,
16962
+ "fr": flag_fr,
16963
+ "de": flag_de,
16964
+ "it": flag_it,
14358
16965
  // Locale code aliases
14359
16966
  "pt-BR": flag_br,
14360
16967
  "pt": flag_br,
@@ -20485,25 +23092,6 @@ var ContactSection = React12__default.memo(
20485
23092
  ] });
20486
23093
  }
20487
23094
  );
20488
- var Progress = React12.forwardRef(({ className, value, ...props }, ref) => /* @__PURE__ */ jsx(
20489
- ProgressPrimitive.Root,
20490
- {
20491
- ref,
20492
- className: clsx(
20493
- "relative h-4 w-full overflow-hidden rounded-full bg-secondary",
20494
- className
20495
- ),
20496
- ...props,
20497
- children: /* @__PURE__ */ jsx(
20498
- ProgressPrimitive.Indicator,
20499
- {
20500
- className: "h-full w-full flex-1 bg-primary transition-all",
20501
- style: { transform: `translateX(-${100 - (value || 0)}%)` }
20502
- }
20503
- )
20504
- }
20505
- ));
20506
- Progress.displayName = ProgressPrimitive.Root.displayName;
20507
23095
  function DropdownButton({
20508
23096
  as = Button,
20509
23097
  ...props
@@ -21501,6 +24089,6 @@ function SkipToContent({
21501
24089
  );
21502
24090
  }
21503
24091
 
21504
- export { 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, DE_THEME_CONFIG, 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, 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, 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, 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, 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, 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, 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 };
21505
- //# sourceMappingURL=chunk-VM24LJCV.mjs.map
21506
- //# sourceMappingURL=chunk-VM24LJCV.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