@datatechsolutions/ui 2.11.74 → 2.11.75

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.
@@ -16440,7 +16440,7 @@ function DepartmentWorkflowDemo({
16440
16440
  nodeAvatars
16441
16441
  }) {
16442
16442
  const t = { ...DEFAULT_THEME, ...theme };
16443
- const { graph, steps, title, description, accentBadge, completionSummary } = workflow;
16443
+ const { graph, steps, title, description, accentBadge, completionSummary, nodeSubtitles } = workflow;
16444
16444
  const [stepIndex, setStepIndex] = useState(-1);
16445
16445
  const intervalRef = useRef(null);
16446
16446
  const completedRef = useRef(false);
@@ -16578,14 +16578,14 @@ function DepartmentWorkflowDemo({
16578
16578
  const isStepDone = stepIndex > col.stepIndex;
16579
16579
  const showsConnector = colIdx > 0;
16580
16580
  const isParallel = col.nodes.length > 1;
16581
- const nodeWidth = isParallel ? "w-[170px]" : "w-[200px]";
16581
+ const nodeWidth = isParallel ? "w-[160px]" : "w-[180px]";
16582
16582
  return /* @__PURE__ */ jsxs("div", { className: "flex shrink-0 items-center gap-0", children: [
16583
- showsConnector && /* @__PURE__ */ jsx("svg", { width: "40", height: "2", className: "mx-1 shrink-0", children: /* @__PURE__ */ jsx(
16583
+ showsConnector && /* @__PURE__ */ jsx("svg", { width: "28", height: "2", className: "mx-1 shrink-0", children: /* @__PURE__ */ jsx(
16584
16584
  "line",
16585
16585
  {
16586
16586
  x1: "0",
16587
16587
  y1: "1",
16588
- x2: "40",
16588
+ x2: "28",
16589
16589
  y2: "1",
16590
16590
  stroke: isStepDone ? t.completeEdgeStroke : isStepActive ? t.activeEdgeStroke : "#334155",
16591
16591
  strokeWidth: "2",
@@ -16597,6 +16597,7 @@ function DepartmentWorkflowDemo({
16597
16597
  const status = getStatus(node2);
16598
16598
  const meta = getNodeMeta(node2.type);
16599
16599
  const avatar = nodeAvatars?.[node2.id];
16600
+ const subtitle = nodeSubtitles?.[node2.id] ?? meta.tag;
16600
16601
  const statusClass = status === "running" ? `scale-[1.03] ring-2 ${t.activeRing}` : status === "complete" ? "ring-1 ring-emerald-500/40" : "opacity-50";
16601
16602
  const tagBadge = meta.tag === "agent" || meta.tag === "agent.tool" ? "bg-purple-500/20 text-purple-700 dark:text-purple-300" : meta.tag === "datasource" || meta.tag === "kb" || meta.tag === "entity" ? "bg-sky-500/20 text-sky-700 dark:text-sky-300" : meta.tag === "http" ? "bg-cyan-500/20 text-cyan-700 dark:text-cyan-300" : meta.tag === "code" || meta.tag === "template" ? "bg-amber-500/20 text-amber-700 dark:text-amber-300" : meta.tag === "branch" || meta.tag === "classifier" ? "bg-orange-500/20 text-orange-700 dark:text-orange-300" : meta.tag === "aggregate" || meta.tag === "assign" ? "bg-yellow-500/20 text-yellow-700 dark:text-yellow-300" : meta.tag === "iterate" || meta.tag === "list" ? "bg-fuchsia-500/20 text-fuchsia-700 dark:text-fuchsia-300" : meta.tag === "dashboard" || meta.tag === "answer" || meta.tag === "start" || meta.tag === "end" ? "bg-emerald-500/20 text-emerald-700 dark:text-emerald-300" : "bg-slate-500/20 text-slate-700 dark:text-slate-300";
16602
16603
  return /* @__PURE__ */ jsxs(
@@ -16616,7 +16617,7 @@ function DepartmentWorkflowDemo({
16616
16617
  ) : /* @__PURE__ */ jsx("div", { className: `flex h-9 w-9 shrink-0 items-center justify-center rounded-xl ${meta.bg}`, children: /* @__PURE__ */ jsx(meta.icon, { className: `h-5 w-5 ${meta.color}` }) }),
16617
16618
  /* @__PURE__ */ jsxs("div", { className: "min-w-0 flex-1", children: [
16618
16619
  /* @__PURE__ */ jsx("div", { className: "truncate text-[12px] font-semibold leading-tight text-gray-900 dark:text-white", children: node2.data.label }),
16619
- /* @__PURE__ */ jsx("div", { className: "truncate text-[9px] text-gray-500 dark:text-gray-500 mt-0.5 font-mono", children: meta.tag })
16620
+ /* @__PURE__ */ jsx("div", { className: "line-clamp-2 text-[9.5px] text-gray-500 dark:text-gray-400 mt-0.5 leading-snug", children: subtitle })
16620
16621
  ] }),
16621
16622
  status === "complete" && /* @__PURE__ */ jsx(CheckCircleIcon$1, { className: "h-4 w-4 shrink-0 text-emerald-500" })
16622
16623
  ] }),
@@ -16660,6 +16661,16 @@ var financialWorkflow = {
16660
16661
  description: "Q4 close \u2014 aggregate transactions, compute Brazilian taxes in parallel, audit for compliance, publish report.",
16661
16662
  accentBadge: "bg-emerald-500/15 text-emerald-300",
16662
16663
  completionSummary: "Quarterly report published \xB7 R$ 387k taxes calculated \xB7 0 compliance violations",
16664
+ nodeSubtitles: {
16665
+ start: "Trigger Q4",
16666
+ "fetch-tx": "Aurora \xB7 12k linhas",
16667
+ icms: "estadual",
16668
+ "pis-cofins": "federal",
16669
+ iss: "municipal",
16670
+ aggregate: "3 fontes \u2192 consolidado",
16671
+ audit: "Carlos \xB7 regras Receita",
16672
+ report: "PDF + dashboard"
16673
+ },
16663
16674
  graph: buildGraph(
16664
16675
  [
16665
16676
  node("start", "start", "Trigger Q4 close", 0, 120),
@@ -16697,6 +16708,17 @@ var salesWorkflow = {
16697
16708
  description: "Lead arrives \u2192 agents score, qualify, draft proposal, and drive negotiation to close.",
16698
16709
  accentBadge: "bg-blue-500/15 text-blue-300",
16699
16710
  completionSummary: "Deal closed \xB7 R$ 45k/m\xEAs \xB7 14-day cycle \xB7 Score 85/100",
16711
+ nodeSubtitles: {
16712
+ start: "XPTO Ltda",
16713
+ intake: "CRM \xB7 enriquecimento",
16714
+ score: "modelo \xB7 0-100",
16715
+ gate: "fork \xB7 \u226580",
16716
+ qualify: "Beatriz \xB7 SQL/MQL",
16717
+ nurture: "fila de nutri\xE7\xE3o",
16718
+ proposal: "CPQ \xB7 template",
16719
+ negotiate: "Beatriz \xB7 desconto",
16720
+ close: "fatura \xB7 CRM"
16721
+ },
16700
16722
  graph: buildGraph(
16701
16723
  [
16702
16724
  node("start", "start", "New lead (XPTO)", 0, 120),
@@ -16736,6 +16758,17 @@ var marketingWorkflow = {
16736
16758
  description: "Brief \u2192 parallel design, copy, audience \u2192 assemble \u2192 schedule \u2192 ship \u2192 measure.",
16737
16759
  accentBadge: "bg-pink-500/15 text-pink-300",
16738
16760
  completionSummary: "Campaign shipped \xB7 142k emails \xB7 6.8% CTR \xB7 +18% ROAS vs. target",
16761
+ nodeSubtitles: {
16762
+ start: "brief recebido",
16763
+ strategist: "decompor objetivos",
16764
+ design: "creative \xB7 4 pe\xE7as",
16765
+ copy: "headline \xB7 CTA",
16766
+ audience: "segmenta\xE7\xE3o \xB7 142k",
16767
+ assemble: "pacote final",
16768
+ schedule: "janela ideal",
16769
+ send: "SES \xB7 142k disparos",
16770
+ metrics: "CTR \xB7 ROAS \xB7 conv"
16771
+ },
16739
16772
  graph: buildGraph(
16740
16773
  [
16741
16774
  node("start", "start", "Campaign brief", 0, 120),
@@ -16776,6 +16809,16 @@ var inventoryWorkflow = {
16776
16809
  description: "Read stock \u2192 forecast demand \u2192 filter low-stock SKUs \u2192 iterate orders \u2192 publish report.",
16777
16810
  accentBadge: "bg-orange-500/15 text-orange-300",
16778
16811
  completionSummary: "12 SKUs reordered \xB7 R$ 84k committed \xB7 projected stockout avoided",
16812
+ nodeSubtitles: {
16813
+ start: "cron di\xE1rio 06:00",
16814
+ stock: "1.847 SKUs \xB7 ABC",
16815
+ forecast: "Paulo \xB7 sazonalidade",
16816
+ filter: "abaixo do m\xEDn",
16817
+ loop: "por SKU \xB7 12 itens",
16818
+ supplier: "cota\xE7\xE3o \xB7 3 fornec",
16819
+ order: "PO \xB7 ERP/SAP",
16820
+ report: "painel reposi\xE7\xE3o"
16821
+ },
16779
16822
  graph: buildGraph(
16780
16823
  [
16781
16824
  node("start", "start", "Daily sweep", 0, 120),
@@ -16813,6 +16856,16 @@ var hrWorkflow = {
16813
16856
  description: "Screen resumes \u2192 rank by fit \u2192 interview scheduling \u2192 decision \u2192 hiring dashboard.",
16814
16857
  accentBadge: "bg-green-500/15 text-green-300",
16815
16858
  completionSummary: "3 offers extended \xB7 48 candidates processed \xB7 avg cycle 6 days",
16859
+ nodeSubtitles: {
16860
+ start: "vaga publicada",
16861
+ pool: "47 curr\xEDculos",
16862
+ screen: "triagem por skill",
16863
+ rank: "fit score \xB7 top 5",
16864
+ schedule: "agenda integrada",
16865
+ assess: "teste t\xE9cnico",
16866
+ decide: "recomenda\xE7\xE3o",
16867
+ hire: "painel admiss\xE3o"
16868
+ },
16816
16869
  graph: buildGraph(
16817
16870
  [
16818
16871
  node("start", "start", "New posting", 0, 120),
@@ -16850,6 +16903,16 @@ var customerAnalyticsWorkflow = {
16850
16903
  description: "Segment customers \u2192 parallel churn and LTV models \u2192 combine \u2192 recommend retention plays.",
16851
16904
  accentBadge: "bg-indigo-500/15 text-indigo-300",
16852
16905
  completionSummary: "4 at-risk segments identified \xB7 17 retention plays ranked by expected LTV lift",
16906
+ nodeSubtitles: {
16907
+ start: "cron noturno",
16908
+ events: "12k eventos \xB7 30d",
16909
+ segment: "clusters \xB7 k=8",
16910
+ churn: "modelo \xB7 risco%",
16911
+ ltv: "modelo \xB7 R$/cliente",
16912
+ combine: "matriz risco \xD7 LTV",
16913
+ actions: "plays priorizados",
16914
+ dashboard: "painel reten\xE7\xE3o"
16915
+ },
16853
16916
  graph: buildGraph(
16854
16917
  [
16855
16918
  node("start", "start", "Nightly analytics", 0, 120),
@@ -16887,6 +16950,17 @@ var payrollWorkflow = {
16887
16950
  description: "Ponto \u2192 c\xE1lculos paralelos (FGTS / INSS / IRRF) \u2192 encargos \u2192 S-1200 \u2192 dashboard.",
16888
16951
  accentBadge: "bg-cyan-500/15 text-cyan-300",
16889
16952
  completionSummary: "142 holerites processados \xB7 R$ 890k bruto \xB7 eSocial S-1200 transmitido",
16953
+ nodeSubtitles: {
16954
+ start: "m\xEAs fechado",
16955
+ attendance: "ponto \xB7 142 colab",
16956
+ fgts: "8% \xB7 GRRF",
16957
+ inss: "tabela progressiva",
16958
+ irrf: "tabela vigente",
16959
+ aggregate: "Laura \xB7 holerites",
16960
+ esocial: "evento S-1200",
16961
+ transmit: "TXT \xB7 governo",
16962
+ report: "painel folha"
16963
+ },
16890
16964
  graph: buildGraph(
16891
16965
  [
16892
16966
  node("start", "start", "Fechamento mensal", 0, 120),
@@ -16927,6 +17001,17 @@ var supportWorkflow = {
16927
17001
  description: "Ticket \u2192 paralelo (hist\xF3rico do cliente, status do pedido, base de conhecimento) \u2192 classificar \u2192 rascunhar \u2192 revisar \u2192 responder.",
16928
17002
  accentBadge: "bg-teal-500/15 text-teal-300",
16929
17003
  completionSummary: "Ticket respondido em 2min \xB7 CSAT esperado 4.8/5 \xB7 SLA cumprido",
17004
+ nodeSubtitles: {
17005
+ start: "Maria \xB7 #847",
17006
+ history: "CRM \xB7 18 meses",
17007
+ order: "rastreio Correios",
17008
+ kb: "FAQ \xB7 embeddings",
17009
+ classify: "intent \xB7 prioridade",
17010
+ gate: "urgente?",
17011
+ draft: "Camila \xB7 resposta",
17012
+ review: "humano (opt)",
17013
+ send: "WhatsApp \xB7 email"
17014
+ },
16930
17015
  graph: buildGraph(
16931
17016
  [
16932
17017
  node("start", "start", "Ticket #847", 0, 120),
@@ -16967,6 +17052,16 @@ var manufacturingWorkflow = {
16967
17052
  description: "Demanda \u2192 BOM \u2192 verificar estoque \u2192 alocar centros de trabalho \u2192 QC \u2192 liberar OPs.",
16968
17053
  accentBadge: "bg-violet-500/15 text-violet-300",
16969
17054
  completionSummary: "34 OPs liberadas \xB7 OEE 87% \xB7 3 desvios de QC tratados automaticamente",
17055
+ nodeSubtitles: {
17056
+ start: "cron semanal",
17057
+ demand: "forecast S&OP",
17058
+ bom: "componentes \xB7 280",
17059
+ stock: "mat\xE9ria-prima",
17060
+ schedule: "MRP \xB7 5 centros",
17061
+ release: "34 OPs",
17062
+ qc: "amostragem \xB7 99.4%",
17063
+ report: "painel produ\xE7\xE3o"
17064
+ },
16970
17065
  graph: buildGraph(
16971
17066
  [
16972
17067
  node("start", "start", "Trigger MRP semanal", 0, 120),
@@ -17004,6 +17099,16 @@ var logisticsWorkflow = {
17004
17099
  description: "Pedidos \u2192 paralelo (tr\xE2nsito, frota, janelas) \u2192 otimizador \u2192 despacho \u2192 tracking.",
17005
17100
  accentBadge: "bg-sky-500/15 text-sky-300",
17006
17101
  completionSummary: "28 entregas roteirizadas \xB7 -12% km \xB7 94% on-time esperado",
17102
+ nodeSubtitles: {
17103
+ start: "28 pedidos SP",
17104
+ traffic: "Google Maps API",
17105
+ fleet: "4 ve\xEDculos \xB7 disp",
17106
+ windows: "janelas \xB7 cliente",
17107
+ optimize: "TSP \xB7 OR-tools",
17108
+ dispatch: "app motorista",
17109
+ notify: "WhatsApp Bus",
17110
+ track: "painel ao vivo"
17111
+ },
17007
17112
  graph: buildGraph(
17008
17113
  [
17009
17114
  node("start", "start", "28 pedidos SP", 0, 120),
@@ -17041,6 +17146,15 @@ var lgpdWorkflow = {
17041
17146
  description: "Scan audit logs \u2192 detect PII access violations \u2192 remediate \u2192 notify DPO \u2192 report.",
17042
17147
  accentBadge: "bg-red-500/15 text-red-300",
17043
17148
  completionSummary: "2 violations remediated \xB7 DPO notified \xB7 compliance report filed",
17149
+ nodeSubtitles: {
17150
+ start: "sweep di\xE1rio",
17151
+ logs: "CloudTrail \xB7 24h",
17152
+ scan: "Roberta \xB7 regex PII",
17153
+ gate: "viola\xE7\xF5es?",
17154
+ remediate: "mascarar \xB7 notificar",
17155
+ notify: "email DPO",
17156
+ report: "painel ANPD"
17157
+ },
17044
17158
  graph: buildGraph(
17045
17159
  [
17046
17160
  node("start", "start", "Daily privacy sweep", 0, 120),
@@ -24646,5 +24760,5 @@ function SkipToContent({
24646
24760
  }
24647
24761
 
24648
24762
  export { AIOrchestratorDemo, ARGENTINA_ACCENT_MAP, ARGENTINA_MACRO_REGIONS, ARGENTINA_MAP_CENTER, ARGENTINA_PROVINCE_COORDINATES, ARGENTINA_PROVINCE_PALETTES, AR_THEME_CONFIG, AUSTRALIA_ACCENT_MAP, AUSTRALIA_MACRO_REGIONS, AUSTRALIA_MAP_CENTER, AUSTRALIA_STATE_COORDINATES, AUSTRALIA_STATE_PALETTES, AU_THEME_CONFIG, ActionMenu, ActionSheet, ActiveFilterChips, AgentAnalysisCard, AnalysisSkeleton, AnimatedNumber, AnimatedTableRow, AppLogo, AppNavigation, AppShell, ArchiveSwipeAction, AuthLayout, Avatar, AvatarButton, BRAZIL_ACCENT_MAP, BRAZIL_MACRO_REGIONS, BRAZIL_MAP_CENTER, BRAZIL_STATE_COORDINATES, BRAZIL_STATE_PALETTES, BR_THEME_CONFIG, BackupCodeGrid, BadRequestPage, Badge, BaseForm, BentoCard, BentoFeatureGrid, BooleanFlagsPicker, BottomSafeArea, BrandFilterSkeleton, BrandedLoader, Breadcrumb, Button, CANADA_ACCENT_MAP, CANADA_MACRO_REGIONS, CANADA_MAP_CENTER, CANADA_PROVINCE_COORDINATES, CANADA_PROVINCE_PALETTES, CA_THEME_CONFIG, CHILE_ACCENT_MAP, CHILE_MACRO_REGIONS, CHILE_MAP_CENTER, CHILE_REGION_COORDINATES, CHILE_REGION_PALETTES, CL_THEME_CONFIG, COLOMBIA_ACCENT_MAP, COLOMBIA_DEPARTMENT_COORDINATES, COLOMBIA_DEPARTMENT_PALETTES, COLOMBIA_MACRO_REGIONS, COLOMBIA_MAP_CENTER, CO_THEME_CONFIG, Card, CardActionMenu, CardContent, CardDescription, CardDivider, CardFooter, CardGridSkeleton, CardHeader, CardSectionHeader, CardTitle, CategoryBadge, CategoryTab, CategoryTabs, ChartRenderer, ChipPicker, CircularRefreshIndicator, Code, CollapsibleGroupedList, CompactSegmentedControl, ContactCard, ContactSection, Container, ContextMenu, CookieConsent, CopyableId, CountPill, CreateActionButton, CustomerAnalyticsDemo, DE_THEME_CONFIG, DashboardDemo, DashboardDemoLayout, DashboardProgressShell, DashboardView, DataPagination, DatePicker, DeleteSwipeAction, DepartmentAssistantDemo, DepartmentWorkflowDemo, Description4 as Description, DetailsPopover, DevModeBanner, Dialog4 as Dialog, DialogActions, DialogBody, DialogDescription, DialogTitle3 as DialogTitle, Divider, Dock, DockContainer, DockSkeleton, DotRefreshIndicator, Dropdown, DropdownButton, DropdownDivider, DropdownItem, DropdownLabel, DropdownMenu, DropdownSelect, DynamicIsland, DynamicIslandConfirm, DynamicIslandNotification, EGYPT_ACCENT_MAP, EGYPT_GOVERNORATE_COORDINATES, EGYPT_GOVERNORATE_PALETTES, EGYPT_MACRO_REGIONS, EGYPT_MAP_CENTER, EG_THEME_CONFIG, ES_THEME_CONFIG, EdgeSwipeIndicator, EdgeSwipeProvider, EditSwipeAction, EmptyState, EntityCard, EntityDrawer, ErrorMessage, ErrorState, ExpandableHistoryList, ExpandingPageIndicator, FRANCE_ACCENT_MAP, FRANCE_MACRO_REGIONS, FRANCE_MAP_CENTER, FRANCE_REGION_COORDINATES, FRANCE_REGION_PALETTES, FR_THEME_CONFIG, FUEL_PRICE_LOADER, FavoriteSwipeAction, FeatureCard, FeedItemCard, Field2 as Field, FieldGroup, Fieldset2 as Fieldset, FilterBadge, FilterPill, FilterSectionHeader, FilterTileButton, FinancialDemo, FloatingActionButton, FlyoutMenu, FlyoutNavGrid, FlyoutQuickActions, ForceTouchMenu, Form, FormActions, FormActionsRow, FormCheckbox, FormField, FormGrid, FormInput, FormPriceInput, FormSection, FormSelect, FormTextarea, FormToggle, FuelPipelineDemo, GB_THEME_CONFIG, GERMANY_ACCENT_MAP, GERMANY_MACRO_REGIONS, GERMANY_MAP_CENTER, GERMANY_STATE_COORDINATES, GERMANY_STATE_PALETTES, GeoMapCanvas, GeoMapLegend, GlassModal, Gradient, GradientBackground, GrowthIndicator, HRRecruitmentDemo, Heading, HeroPanel, HeroSection, ID_THEME_CONFIG, INDIA_ACCENT_MAP, INDIA_MACRO_REGIONS, INDIA_MAP_CENTER, INDIA_STATE_COORDINATES, INDIA_STATE_PALETTES, INDONESIA_ACCENT_MAP, INDONESIA_MACRO_REGIONS, INDONESIA_MAP_CENTER, INDONESIA_PROVINCE_COORDINATES, INDONESIA_PROVINCE_PALETTES, IN_THEME_CONFIG, ITALY_ACCENT_MAP, ITALY_MACRO_REGIONS, ITALY_MAP_CENTER, ITALY_REGION_COORDINATES, ITALY_REGION_PALETTES, IT_THEME_CONFIG, IconButton, ImageUpload, IncidentPipelineDemo, InfoPopover, InlineForm, InlineSpinner, Input, InteractiveGeoMap, InventoryDemo, ItemSummary, JAPAN_ACCENT_MAP, JAPAN_MACRO_REGIONS, JAPAN_MAP_CENTER, JAPAN_PREFECTURE_COORDINATES, JAPAN_PREFECTURE_PALETTES, JP_THEME_CONFIG, KORI_ERP_LOADER, KR_THEME_CONFIG, LGPDComplianceDemo, LOCALE_FLAGS, Label2 as Label, LabeledToggle, LanguageSwitcher, LaunchpadGrid, Lead, Legend2 as Legend, LiquidFilterInput, ListCard, ListCardItem, ListItem, LoadingOverlay, MEXICO_ACCENT_MAP, MEXICO_MACRO_REGIONS, MEXICO_MAP_CENTER, MEXICO_STATE_COORDINATES, MEXICO_STATE_PALETTES, MX_THEME_CONFIG, ManagementPageLayout, ManagementSurface, MapZoomControls, MarketPricesCard, MarketingDemo, MetricCard, MonthPicker, MultiColumnPicker, NETHERLANDS_ACCENT_MAP, NETHERLANDS_MACRO_REGIONS, NETHERLANDS_MAP_CENTER, NETHERLANDS_PROVINCE_COORDINATES, NETHERLANDS_PROVINCE_PALETTES, NEW_ZEALAND_ACCENT_MAP, NEW_ZEALAND_MACRO_REGIONS, NEW_ZEALAND_MAP_CENTER, NEW_ZEALAND_REGION_COORDINATES, NEW_ZEALAND_REGION_PALETTES, NG_THEME_CONFIG, NIGERIA_ACCENT_MAP, NIGERIA_MACRO_REGIONS, NIGERIA_MAP_CENTER, NIGERIA_STATE_COORDINATES, NIGERIA_STATE_PALETTES, NL_THEME_CONFIG, NORWAY_ACCENT_MAP, NORWAY_COUNTY_COORDINATES, NORWAY_COUNTY_PALETTES, NORWAY_MACRO_REGIONS, NORWAY_MAP_CENTER, NO_THEME_CONFIG, NZ_THEME_CONFIG, NavigationProgress, NoDataState, NoResultsState, NotFoundPage, NotificationBadge, NotificationBellButton, NotificationProvider, OfficeCard, OfflineState, OptionGrid, OtpInput, PERU_ACCENT_MAP, PERU_DEPARTMENT_COORDINATES, PERU_DEPARTMENT_PALETTES, PERU_MACRO_REGIONS, PERU_MAP_CENTER, PE_THEME_CONFIG, PHILIPPINES_ACCENT_MAP, PHILIPPINES_MACRO_REGIONS, PHILIPPINES_MAP_CENTER, PHILIPPINES_PROVINCE_COORDINATES, PHILIPPINES_PROVINCE_PALETTES, PH_THEME_CONFIG, PL_THEME_CONFIG, POLAND_ACCENT_MAP, POLAND_MACRO_REGIONS, POLAND_MAP_CENTER, POLAND_VOIVODESHIP_COORDINATES, POLAND_VOIVODESHIP_PALETTES, PORTUGAL_ACCENT_MAP, PORTUGAL_DISTRICT_COORDINATES, PORTUGAL_DISTRICT_PALETTES, PORTUGAL_MACRO_REGIONS, PORTUGAL_MAP_CENTER, PT_THEME_CONFIG, PageEmptyState, PageErrorState, PageHeader, PageHeading, PageIndicator, PageLoadingState, PageSectionHeader, Pagination, PasswordInput, PasswordStrengthMeter, Pill, PlatformShell, PlusGrid, PlusGridItem, PlusGridRow, PreferenceSection, PriceChangeBadge, ProfileIdentityCard, Progress, ProgressIndicator, PullToRefreshContainer, PullToRefreshIndicator, RadiantHeading, RadiantStatCard, RadiantSubheading, RecommendationCard, RegionFilterSkeleton, RoleBadge, SE_THEME_CONFIG, SOUTH_AFRICA_ACCENT_MAP, SOUTH_AFRICA_MACRO_REGIONS, SOUTH_AFRICA_MAP_CENTER, SOUTH_AFRICA_PROVINCE_COORDINATES, SOUTH_AFRICA_PROVINCE_PALETTES, SOUTH_KOREA_ACCENT_MAP, SOUTH_KOREA_MACRO_REGIONS, SOUTH_KOREA_MAP_CENTER, SOUTH_KOREA_PROVINCE_COORDINATES, SOUTH_KOREA_PROVINCE_PALETTES, SPAIN_ACCENT_MAP, SPAIN_MACRO_REGIONS, SPAIN_MAP_CENTER, SPAIN_PROVINCE_COORDINATES, SPAIN_PROVINCE_PALETTES, SWEDEN_ACCENT_MAP, SWEDEN_COUNTY_COORDINATES, SWEDEN_COUNTY_PALETTES, SWEDEN_MACRO_REGIONS, SWEDEN_MAP_CENTER, SafeArea, SafeAreaSpacer, SafeAreaView, SalesDemo, SearchBar, SearchFilterToolbar, SearchInput, SectionCard, SectionHeader, SectionHeaderSkeleton, SegmentedControl, Select, SelectableChipPicker, SelectableListPicker, SelectableOptionsGrid, SelectableTableRow, SelectionCard, ServerErrorPage, SettingsModal, Sheet, SkipToContent, SocialLoginButtons, SortableTableHeader, Spinner, Stat, StatCard, StatCardSkeleton, StatusBadge, StatusToggle, StepFormPage, StepNavigationButtons, StepTimeline, Strong, Subheading, SwipeableRow, Switch2 as Switch, THAILAND_ACCENT_MAP, THAILAND_MACRO_REGIONS, THAILAND_MAP_CENTER, THAILAND_PROVINCE_COORDINATES, THAILAND_PROVINCE_PALETTES, TH_THEME_CONFIG, TR_THEME_CONFIG, TURKEY_ACCENT_MAP, TURKEY_MACRO_REGIONS, TURKEY_MAP_CENTER, TURKEY_PROVINCE_COORDINATES, TURKEY_PROVINCE_PALETTES, Table, TableBody, TableCell, TableEmptyState, TableHead, TableHeader, TableRow, TableSkeleton, TableSkeletonRow, Tabs, TabsContent, TabsList, TabsTrigger, TagBadge, Text, TextLink, Textarea, ThemeSwitch, ThemeToggle, ThemeToggleCompact, TimePicker, ToggleSwitch, TouchTarget, UK_ACCENT_MAP, UK_MACRO_REGIONS, UK_MAP_CENTER, UK_NATION_COORDINATES, UK_NATION_PALETTES, US_ACCENT_MAP, US_MACRO_REGIONS, US_MAP_CENTER, US_STATE_COORDINATES, US_STATE_PALETTES, US_THEME_CONFIG, UserAvatar, UserMobileInfo, WINDSOCK_LOADER, WIRE_LOADER, WheelPicker, WindsockIcon, ZA_THEME_CONFIG, buildDockActions, buildFlyoutNavItems, buildLaunchpadItems, buttonPress, buttonPressReduced, buttonTap, cardHover, cardHoverReduced, cardPress, computeDomain, computeSeries, createMotionProps, customerAnalyticsWorkflow, durations, durationsReduced, easings, fadeOnly, fadeScale, filterByPermission, financialWorkflow, formatAddress, formatCurrency, formatCurrency2, formatDate, formatPercentage, getAllCountries, getArgentinaAccent, getArgentinaColors, getArgentinaFlagUrl, getArgentinaGradient, getArgentinaHexColor, getArgentinaPalette, getAustraliaAccent, getAustraliaColors, getAustraliaFlagUrl, getAustraliaGradient, getAustraliaHexColor, getAustraliaPalette, getBrazilAccent, getBrazilColors, getBrazilFlagUrl, getBrazilGradient, getBrazilHexColor, getBrazilPalette, getCanadaAccent, getCanadaColors, getCanadaFlagUrl, getCanadaGradient, getCanadaHexColor, getCanadaPalette, getChileAccent, getChileColors, getChileFlagUrl, getChileGradient, getChileHexColor, getChilePalette, getColombiaAccent, getColombiaColors, getColombiaFlagUrl, getColombiaGradient, getColombiaHexColor, getColombiaPalette, getCountryConfig, getEgyptAccent, getEgyptColors, getEgyptFlagUrl, getEgyptGradient, getEgyptHexColor, getEgyptPalette, getFranceAccent, getFranceColors, getFranceFlagUrl, getFranceGradient, getFranceHexColor, getFrancePalette, getGermanyAccent, getGermanyColors, getGermanyFlagUrl, getGermanyGradient, getGermanyHexColor, getGermanyPalette, getIndiaAccent, getIndiaColors, getIndiaFlagUrl, getIndiaGradient, getIndiaHexColor, getIndiaPalette, getIndonesiaAccent, getIndonesiaColors, getIndonesiaFlagUrl, getIndonesiaGradient, getIndonesiaHexColor, getIndonesiaPalette, getItalyAccent, getItalyColors, getItalyFlagUrl, getItalyGradient, getItalyHexColor, getItalyPalette, getJapanAccent, getJapanColors, getJapanFlagUrl, getJapanGradient, getJapanHexColor, getJapanPalette, getMexicoAccent, getMexicoColors, getMexicoFlagUrl, getMexicoGradient, getMexicoHexColor, getMexicoPalette, getNetherlandsAccent, getNetherlandsColors, getNetherlandsFlagUrl, getNetherlandsGradient, getNetherlandsHexColor, getNetherlandsPalette, getNewZealandAccent, getNewZealandColors, getNewZealandFlagUrl, getNewZealandGradient, getNewZealandHexColor, getNewZealandPalette, getNigeriaAccent, getNigeriaColors, getNigeriaFlagUrl, getNigeriaGradient, getNigeriaHexColor, getNigeriaPalette, getNorwayAccent, getNorwayColors, getNorwayFlagUrl, getNorwayGradient, getNorwayHexColor, getNorwayPalette, getPeruAccent, getPeruColors, getPeruFlagUrl, getPeruGradient, getPeruHexColor, getPeruPalette, getPhilippinesAccent, getPhilippinesColors, getPhilippinesFlagUrl, getPhilippinesGradient, getPhilippinesHexColor, getPhilippinesPalette, getPolandAccent, getPolandColors, getPolandFlagUrl, getPolandGradient, getPolandHexColor, getPolandPalette, getPortugalAccent, getPortugalColors, getPortugalFlagUrl, getPortugalGradient, getPortugalHexColor, getPortugalPalette, getSouthAfricaAccent, getSouthAfricaColors, getSouthAfricaFlagUrl, getSouthAfricaGradient, getSouthAfricaHexColor, getSouthAfricaPalette, getSouthKoreaAccent, getSouthKoreaColors, getSouthKoreaFlagUrl, getSouthKoreaGradient, getSouthKoreaHexColor, getSouthKoreaPalette, getSpainAccent, getSpainColors, getSpainFlagUrl, getSpainGradient, getSpainHexColor, getSpainPalette, getStatusColor, getSubdivisionAccent, getSubdivisionColors, getSubdivisionFlagUrl, getSubdivisionGradient, getSubdivisionHexColor, getSubdivisionPalette, getSwedenAccent, getSwedenColors, getSwedenFlagUrl, getSwedenGradient, getSwedenHexColor, getSwedenPalette, getThailandAccent, getThailandColors, getThailandFlagUrl, getThailandGradient, getThailandHexColor, getThailandPalette, getTransition, getTurkeyAccent, getTurkeyColors, getTurkeyFlagUrl, getTurkeyGradient, getTurkeyHexColor, getTurkeyPalette, getUKAccent, getUKColors, getUKFlagUrl, getUKGradient, getUKHexColor, getUKPalette, getUsAccent, getUsColors, getUsFlagUrl, getUsGradient, getUsHexColor, getUsPalette, getVariants, hrWorkflow, inventoryWorkflow, iosColors, isValidArgentinaProvince, isValidAustraliaState, isValidBrazilState, isValidCanadaProvince, isValidChileRegion, isValidColombiaDepartment, isValidEgyptGovernorate, isValidFranceRegion, isValidGermanyState, isValidIndiaState, isValidIndonesiaProvince, isValidItalyRegion, isValidJapanPrefecture, isValidMexicoState, isValidNetherlandsProvince, isValidNewZealandRegion, isValidNigeriaState, isValidNorwayCounty, isValidPeruDepartment, isValidPhilippinesProvince, isValidPolandVoivodeship, isValidPortugalDistrict, isValidSouthAfricaProvince, isValidSouthKoreaProvince, isValidSpainProvince, isValidSubdivision, isValidSwedenCounty, isValidThailandProvince, isValidTurkeyProvince, isValidUKNation, isValidUsState, koriAssistantTheme, koriDepartmentFlows, lgpdWorkflow, listItem, listItemReduced, logisticsWorkflow, manufacturingWorkflow, marketingWorkflow, notificationBanner, notificationBannerReduced, pageControlDot, payrollWorkflow, prefersReducedMotion, registerCountry, registerSubdivisionTheme, resolveGlassAccentRgb, salesWorkflow, selectIsAuthenticated, selectShowShellChrome, selectUserInitial, selectUserName, shimmerClass, shimmerWhiteClass, slideDown, slideRight, slideUp, springPresets, springPresetsReduced, staggerContainer, supportWorkflow, swipeActionThreshold, swipeConstraints, useGeoMapState, useNotifications, usePlatformShellStore, usePullToRefresh, validateDashboardSpec, xScale, yScale };
24649
- //# sourceMappingURL=chunk-JV4V2FJP.mjs.map
24650
- //# sourceMappingURL=chunk-JV4V2FJP.mjs.map
24763
+ //# sourceMappingURL=chunk-RBDOC5QZ.mjs.map
24764
+ //# sourceMappingURL=chunk-RBDOC5QZ.mjs.map