@datatechsolutions/ui 2.11.74 → 2.11.76
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/astrlabe/index.js +150 -150
- package/dist/astrlabe/index.mjs +6 -6
- package/dist/astrlabe/workflow-canvas.js +4 -4
- package/dist/astrlabe/workflow-canvas.mjs +3 -3
- package/dist/{chunk-PRCRY6MW.js → chunk-EAGAWIIC.js} +64 -64
- package/dist/{chunk-PRCRY6MW.js.map → chunk-EAGAWIIC.js.map} +1 -1
- package/dist/{chunk-HLFZARBM.mjs → chunk-JIQSAUYC.mjs} +3 -3
- package/dist/{chunk-HLFZARBM.mjs.map → chunk-JIQSAUYC.mjs.map} +1 -1
- package/dist/{chunk-NIGFMRWC.js → chunk-KNXAOJAK.js} +189 -26
- package/dist/chunk-KNXAOJAK.js.map +1 -0
- package/dist/{chunk-JV4V2FJP.mjs → chunk-ZJQ5RLGK.mjs} +189 -26
- package/dist/chunk-ZJQ5RLGK.mjs.map +1 -0
- package/dist/index.d.mts +32 -3
- package/dist/index.d.ts +32 -3
- package/dist/index.js +753 -753
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
- package/dist/chunk-JV4V2FJP.mjs.map +0 -1
- package/dist/chunk-NIGFMRWC.js.map +0 -1
|
@@ -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';
|
|
@@ -16437,10 +16437,11 @@ function DepartmentWorkflowDemo({
|
|
|
16437
16437
|
hideHeader = false,
|
|
16438
16438
|
onComplete,
|
|
16439
16439
|
theme,
|
|
16440
|
-
nodeAvatars
|
|
16440
|
+
nodeAvatars,
|
|
16441
|
+
onStepChange
|
|
16441
16442
|
}) {
|
|
16442
16443
|
const t = { ...DEFAULT_THEME, ...theme };
|
|
16443
|
-
const { graph, steps, title, description, accentBadge, completionSummary } = workflow;
|
|
16444
|
+
const { graph, steps, title, description, accentBadge, completionSummary, nodeSubtitles } = workflow;
|
|
16444
16445
|
const [stepIndex, setStepIndex] = useState(-1);
|
|
16445
16446
|
const intervalRef = useRef(null);
|
|
16446
16447
|
const completedRef = useRef(false);
|
|
@@ -16511,6 +16512,11 @@ function DepartmentWorkflowDemo({
|
|
|
16511
16512
|
if (intervalRef.current) clearInterval(intervalRef.current);
|
|
16512
16513
|
};
|
|
16513
16514
|
}, [autoPlay, handleRun]);
|
|
16515
|
+
useEffect(() => {
|
|
16516
|
+
if (stepIndex >= 0 && onStepChange) {
|
|
16517
|
+
onStepChange(stepIndex, steps[stepIndex]?.label ?? "");
|
|
16518
|
+
}
|
|
16519
|
+
}, [stepIndex, steps, onStepChange]);
|
|
16514
16520
|
const currentStepLabel = stepIndex >= 0 ? steps[stepIndex]?.label : "Ready to run";
|
|
16515
16521
|
const Shell = hideHeader ? ({ children: c }) => /* @__PURE__ */ jsx("div", { className, children: c }) : ({ children: c }) => /* @__PURE__ */ jsx("div", { className: `liquid-surface rounded-2xl overflow-hidden ${className ?? ""}`, children: c });
|
|
16516
16522
|
return /* @__PURE__ */ jsxs(Shell, { children: [
|
|
@@ -16578,14 +16584,14 @@ function DepartmentWorkflowDemo({
|
|
|
16578
16584
|
const isStepDone = stepIndex > col.stepIndex;
|
|
16579
16585
|
const showsConnector = colIdx > 0;
|
|
16580
16586
|
const isParallel = col.nodes.length > 1;
|
|
16581
|
-
const nodeWidth = isParallel ? "w-[
|
|
16587
|
+
const nodeWidth = isParallel ? "w-[160px]" : "w-[180px]";
|
|
16582
16588
|
return /* @__PURE__ */ jsxs("div", { className: "flex shrink-0 items-center gap-0", children: [
|
|
16583
|
-
showsConnector && /* @__PURE__ */ jsx("svg", { width: "
|
|
16589
|
+
showsConnector && /* @__PURE__ */ jsx("svg", { width: "28", height: "2", className: "mx-1 shrink-0", children: /* @__PURE__ */ jsx(
|
|
16584
16590
|
"line",
|
|
16585
16591
|
{
|
|
16586
16592
|
x1: "0",
|
|
16587
16593
|
y1: "1",
|
|
16588
|
-
x2: "
|
|
16594
|
+
x2: "28",
|
|
16589
16595
|
y2: "1",
|
|
16590
16596
|
stroke: isStepDone ? t.completeEdgeStroke : isStepActive ? t.activeEdgeStroke : "#334155",
|
|
16591
16597
|
strokeWidth: "2",
|
|
@@ -16597,6 +16603,7 @@ function DepartmentWorkflowDemo({
|
|
|
16597
16603
|
const status = getStatus(node2);
|
|
16598
16604
|
const meta = getNodeMeta(node2.type);
|
|
16599
16605
|
const avatar = nodeAvatars?.[node2.id];
|
|
16606
|
+
const subtitle = nodeSubtitles?.[node2.id] ?? meta.tag;
|
|
16600
16607
|
const statusClass = status === "running" ? `scale-[1.03] ring-2 ${t.activeRing}` : status === "complete" ? "ring-1 ring-emerald-500/40" : "opacity-50";
|
|
16601
16608
|
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
16609
|
return /* @__PURE__ */ jsxs(
|
|
@@ -16616,7 +16623,7 @@ function DepartmentWorkflowDemo({
|
|
|
16616
16623
|
) : /* @__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
16624
|
/* @__PURE__ */ jsxs("div", { className: "min-w-0 flex-1", children: [
|
|
16618
16625
|
/* @__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: "
|
|
16626
|
+
/* @__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
16627
|
] }),
|
|
16621
16628
|
status === "complete" && /* @__PURE__ */ jsx(CheckCircleIcon$1, { className: "h-4 w-4 shrink-0 text-emerald-500" })
|
|
16622
16629
|
] }),
|
|
@@ -16660,6 +16667,16 @@ var financialWorkflow = {
|
|
|
16660
16667
|
description: "Q4 close \u2014 aggregate transactions, compute Brazilian taxes in parallel, audit for compliance, publish report.",
|
|
16661
16668
|
accentBadge: "bg-emerald-500/15 text-emerald-300",
|
|
16662
16669
|
completionSummary: "Quarterly report published \xB7 R$ 387k taxes calculated \xB7 0 compliance violations",
|
|
16670
|
+
nodeSubtitles: {
|
|
16671
|
+
start: "Trigger Q4",
|
|
16672
|
+
"fetch-tx": "Aurora \xB7 12k linhas",
|
|
16673
|
+
icms: "estadual",
|
|
16674
|
+
"pis-cofins": "federal",
|
|
16675
|
+
iss: "municipal",
|
|
16676
|
+
aggregate: "3 fontes \u2192 consolidado",
|
|
16677
|
+
audit: "Carlos \xB7 regras Receita",
|
|
16678
|
+
report: "PDF + dashboard"
|
|
16679
|
+
},
|
|
16663
16680
|
graph: buildGraph(
|
|
16664
16681
|
[
|
|
16665
16682
|
node("start", "start", "Trigger Q4 close", 0, 120),
|
|
@@ -16697,6 +16714,17 @@ var salesWorkflow = {
|
|
|
16697
16714
|
description: "Lead arrives \u2192 agents score, qualify, draft proposal, and drive negotiation to close.",
|
|
16698
16715
|
accentBadge: "bg-blue-500/15 text-blue-300",
|
|
16699
16716
|
completionSummary: "Deal closed \xB7 R$ 45k/m\xEAs \xB7 14-day cycle \xB7 Score 85/100",
|
|
16717
|
+
nodeSubtitles: {
|
|
16718
|
+
start: "XPTO Ltda",
|
|
16719
|
+
intake: "CRM \xB7 enriquecimento",
|
|
16720
|
+
score: "modelo \xB7 0-100",
|
|
16721
|
+
gate: "fork \xB7 \u226580",
|
|
16722
|
+
qualify: "Beatriz \xB7 SQL/MQL",
|
|
16723
|
+
nurture: "fila de nutri\xE7\xE3o",
|
|
16724
|
+
proposal: "CPQ \xB7 template",
|
|
16725
|
+
negotiate: "Beatriz \xB7 desconto",
|
|
16726
|
+
close: "fatura \xB7 CRM"
|
|
16727
|
+
},
|
|
16700
16728
|
graph: buildGraph(
|
|
16701
16729
|
[
|
|
16702
16730
|
node("start", "start", "New lead (XPTO)", 0, 120),
|
|
@@ -16736,6 +16764,17 @@ var marketingWorkflow = {
|
|
|
16736
16764
|
description: "Brief \u2192 parallel design, copy, audience \u2192 assemble \u2192 schedule \u2192 ship \u2192 measure.",
|
|
16737
16765
|
accentBadge: "bg-pink-500/15 text-pink-300",
|
|
16738
16766
|
completionSummary: "Campaign shipped \xB7 142k emails \xB7 6.8% CTR \xB7 +18% ROAS vs. target",
|
|
16767
|
+
nodeSubtitles: {
|
|
16768
|
+
start: "brief recebido",
|
|
16769
|
+
strategist: "decompor objetivos",
|
|
16770
|
+
design: "creative \xB7 4 pe\xE7as",
|
|
16771
|
+
copy: "headline \xB7 CTA",
|
|
16772
|
+
audience: "segmenta\xE7\xE3o \xB7 142k",
|
|
16773
|
+
assemble: "pacote final",
|
|
16774
|
+
schedule: "janela ideal",
|
|
16775
|
+
send: "SES \xB7 142k disparos",
|
|
16776
|
+
metrics: "CTR \xB7 ROAS \xB7 conv"
|
|
16777
|
+
},
|
|
16739
16778
|
graph: buildGraph(
|
|
16740
16779
|
[
|
|
16741
16780
|
node("start", "start", "Campaign brief", 0, 120),
|
|
@@ -16776,6 +16815,16 @@ var inventoryWorkflow = {
|
|
|
16776
16815
|
description: "Read stock \u2192 forecast demand \u2192 filter low-stock SKUs \u2192 iterate orders \u2192 publish report.",
|
|
16777
16816
|
accentBadge: "bg-orange-500/15 text-orange-300",
|
|
16778
16817
|
completionSummary: "12 SKUs reordered \xB7 R$ 84k committed \xB7 projected stockout avoided",
|
|
16818
|
+
nodeSubtitles: {
|
|
16819
|
+
start: "cron di\xE1rio 06:00",
|
|
16820
|
+
stock: "1.847 SKUs \xB7 ABC",
|
|
16821
|
+
forecast: "Paulo \xB7 sazonalidade",
|
|
16822
|
+
filter: "abaixo do m\xEDn",
|
|
16823
|
+
loop: "por SKU \xB7 12 itens",
|
|
16824
|
+
supplier: "cota\xE7\xE3o \xB7 3 fornec",
|
|
16825
|
+
order: "PO \xB7 ERP/SAP",
|
|
16826
|
+
report: "painel reposi\xE7\xE3o"
|
|
16827
|
+
},
|
|
16779
16828
|
graph: buildGraph(
|
|
16780
16829
|
[
|
|
16781
16830
|
node("start", "start", "Daily sweep", 0, 120),
|
|
@@ -16813,6 +16862,16 @@ var hrWorkflow = {
|
|
|
16813
16862
|
description: "Screen resumes \u2192 rank by fit \u2192 interview scheduling \u2192 decision \u2192 hiring dashboard.",
|
|
16814
16863
|
accentBadge: "bg-green-500/15 text-green-300",
|
|
16815
16864
|
completionSummary: "3 offers extended \xB7 48 candidates processed \xB7 avg cycle 6 days",
|
|
16865
|
+
nodeSubtitles: {
|
|
16866
|
+
start: "vaga publicada",
|
|
16867
|
+
pool: "47 curr\xEDculos",
|
|
16868
|
+
screen: "triagem por skill",
|
|
16869
|
+
rank: "fit score \xB7 top 5",
|
|
16870
|
+
schedule: "agenda integrada",
|
|
16871
|
+
assess: "teste t\xE9cnico",
|
|
16872
|
+
decide: "recomenda\xE7\xE3o",
|
|
16873
|
+
hire: "painel admiss\xE3o"
|
|
16874
|
+
},
|
|
16816
16875
|
graph: buildGraph(
|
|
16817
16876
|
[
|
|
16818
16877
|
node("start", "start", "New posting", 0, 120),
|
|
@@ -16850,6 +16909,16 @@ var customerAnalyticsWorkflow = {
|
|
|
16850
16909
|
description: "Segment customers \u2192 parallel churn and LTV models \u2192 combine \u2192 recommend retention plays.",
|
|
16851
16910
|
accentBadge: "bg-indigo-500/15 text-indigo-300",
|
|
16852
16911
|
completionSummary: "4 at-risk segments identified \xB7 17 retention plays ranked by expected LTV lift",
|
|
16912
|
+
nodeSubtitles: {
|
|
16913
|
+
start: "cron noturno",
|
|
16914
|
+
events: "12k eventos \xB7 30d",
|
|
16915
|
+
segment: "clusters \xB7 k=8",
|
|
16916
|
+
churn: "modelo \xB7 risco%",
|
|
16917
|
+
ltv: "modelo \xB7 R$/cliente",
|
|
16918
|
+
combine: "matriz risco \xD7 LTV",
|
|
16919
|
+
actions: "plays priorizados",
|
|
16920
|
+
dashboard: "painel reten\xE7\xE3o"
|
|
16921
|
+
},
|
|
16853
16922
|
graph: buildGraph(
|
|
16854
16923
|
[
|
|
16855
16924
|
node("start", "start", "Nightly analytics", 0, 120),
|
|
@@ -16887,6 +16956,17 @@ var payrollWorkflow = {
|
|
|
16887
16956
|
description: "Ponto \u2192 c\xE1lculos paralelos (FGTS / INSS / IRRF) \u2192 encargos \u2192 S-1200 \u2192 dashboard.",
|
|
16888
16957
|
accentBadge: "bg-cyan-500/15 text-cyan-300",
|
|
16889
16958
|
completionSummary: "142 holerites processados \xB7 R$ 890k bruto \xB7 eSocial S-1200 transmitido",
|
|
16959
|
+
nodeSubtitles: {
|
|
16960
|
+
start: "m\xEAs fechado",
|
|
16961
|
+
attendance: "ponto \xB7 142 colab",
|
|
16962
|
+
fgts: "8% \xB7 GRRF",
|
|
16963
|
+
inss: "tabela progressiva",
|
|
16964
|
+
irrf: "tabela vigente",
|
|
16965
|
+
aggregate: "Laura \xB7 holerites",
|
|
16966
|
+
esocial: "evento S-1200",
|
|
16967
|
+
transmit: "TXT \xB7 governo",
|
|
16968
|
+
report: "painel folha"
|
|
16969
|
+
},
|
|
16890
16970
|
graph: buildGraph(
|
|
16891
16971
|
[
|
|
16892
16972
|
node("start", "start", "Fechamento mensal", 0, 120),
|
|
@@ -16927,6 +17007,17 @@ var supportWorkflow = {
|
|
|
16927
17007
|
description: "Ticket \u2192 paralelo (hist\xF3rico do cliente, status do pedido, base de conhecimento) \u2192 classificar \u2192 rascunhar \u2192 revisar \u2192 responder.",
|
|
16928
17008
|
accentBadge: "bg-teal-500/15 text-teal-300",
|
|
16929
17009
|
completionSummary: "Ticket respondido em 2min \xB7 CSAT esperado 4.8/5 \xB7 SLA cumprido",
|
|
17010
|
+
nodeSubtitles: {
|
|
17011
|
+
start: "Maria \xB7 #847",
|
|
17012
|
+
history: "CRM \xB7 18 meses",
|
|
17013
|
+
order: "rastreio Correios",
|
|
17014
|
+
kb: "FAQ \xB7 embeddings",
|
|
17015
|
+
classify: "intent \xB7 prioridade",
|
|
17016
|
+
gate: "urgente?",
|
|
17017
|
+
draft: "Camila \xB7 resposta",
|
|
17018
|
+
review: "humano (opt)",
|
|
17019
|
+
send: "WhatsApp \xB7 email"
|
|
17020
|
+
},
|
|
16930
17021
|
graph: buildGraph(
|
|
16931
17022
|
[
|
|
16932
17023
|
node("start", "start", "Ticket #847", 0, 120),
|
|
@@ -16967,6 +17058,16 @@ var manufacturingWorkflow = {
|
|
|
16967
17058
|
description: "Demanda \u2192 BOM \u2192 verificar estoque \u2192 alocar centros de trabalho \u2192 QC \u2192 liberar OPs.",
|
|
16968
17059
|
accentBadge: "bg-violet-500/15 text-violet-300",
|
|
16969
17060
|
completionSummary: "34 OPs liberadas \xB7 OEE 87% \xB7 3 desvios de QC tratados automaticamente",
|
|
17061
|
+
nodeSubtitles: {
|
|
17062
|
+
start: "cron semanal",
|
|
17063
|
+
demand: "forecast S&OP",
|
|
17064
|
+
bom: "componentes \xB7 280",
|
|
17065
|
+
stock: "mat\xE9ria-prima",
|
|
17066
|
+
schedule: "MRP \xB7 5 centros",
|
|
17067
|
+
release: "34 OPs",
|
|
17068
|
+
qc: "amostragem \xB7 99.4%",
|
|
17069
|
+
report: "painel produ\xE7\xE3o"
|
|
17070
|
+
},
|
|
16970
17071
|
graph: buildGraph(
|
|
16971
17072
|
[
|
|
16972
17073
|
node("start", "start", "Trigger MRP semanal", 0, 120),
|
|
@@ -17004,6 +17105,16 @@ var logisticsWorkflow = {
|
|
|
17004
17105
|
description: "Pedidos \u2192 paralelo (tr\xE2nsito, frota, janelas) \u2192 otimizador \u2192 despacho \u2192 tracking.",
|
|
17005
17106
|
accentBadge: "bg-sky-500/15 text-sky-300",
|
|
17006
17107
|
completionSummary: "28 entregas roteirizadas \xB7 -12% km \xB7 94% on-time esperado",
|
|
17108
|
+
nodeSubtitles: {
|
|
17109
|
+
start: "28 pedidos SP",
|
|
17110
|
+
traffic: "Google Maps API",
|
|
17111
|
+
fleet: "4 ve\xEDculos \xB7 disp",
|
|
17112
|
+
windows: "janelas \xB7 cliente",
|
|
17113
|
+
optimize: "TSP \xB7 OR-tools",
|
|
17114
|
+
dispatch: "app motorista",
|
|
17115
|
+
notify: "WhatsApp Bus",
|
|
17116
|
+
track: "painel ao vivo"
|
|
17117
|
+
},
|
|
17007
17118
|
graph: buildGraph(
|
|
17008
17119
|
[
|
|
17009
17120
|
node("start", "start", "28 pedidos SP", 0, 120),
|
|
@@ -17041,6 +17152,15 @@ var lgpdWorkflow = {
|
|
|
17041
17152
|
description: "Scan audit logs \u2192 detect PII access violations \u2192 remediate \u2192 notify DPO \u2192 report.",
|
|
17042
17153
|
accentBadge: "bg-red-500/15 text-red-300",
|
|
17043
17154
|
completionSummary: "2 violations remediated \xB7 DPO notified \xB7 compliance report filed",
|
|
17155
|
+
nodeSubtitles: {
|
|
17156
|
+
start: "sweep di\xE1rio",
|
|
17157
|
+
logs: "CloudTrail \xB7 24h",
|
|
17158
|
+
scan: "Roberta \xB7 regex PII",
|
|
17159
|
+
gate: "viola\xE7\xF5es?",
|
|
17160
|
+
remediate: "mascarar \xB7 notificar",
|
|
17161
|
+
notify: "email DPO",
|
|
17162
|
+
report: "painel ANPD"
|
|
17163
|
+
},
|
|
17044
17164
|
graph: buildGraph(
|
|
17045
17165
|
[
|
|
17046
17166
|
node("start", "start", "Daily privacy sweep", 0, 120),
|
|
@@ -17097,6 +17217,20 @@ var koriAssistantTheme = {
|
|
|
17097
17217
|
badge: "bg-amber-500/15 text-amber-700 dark:text-amber-300"
|
|
17098
17218
|
}
|
|
17099
17219
|
};
|
|
17220
|
+
var DEFAULT_LABELS = {
|
|
17221
|
+
conversation: (persona, department) => `Conversa \u2014 ${persona} \xB7 ${department}`,
|
|
17222
|
+
composerHint: "Mensagem para Kori AI\u2026",
|
|
17223
|
+
composerEnter: "\u23CE enviar",
|
|
17224
|
+
personaTag: (persona) => persona.toUpperCase(),
|
|
17225
|
+
assistantResponse: (count) => `Entendi. Vou ativar ${count} agentes especializados e orquestrar o fluxo no Astrlabe.`,
|
|
17226
|
+
stageAsk: "Ask",
|
|
17227
|
+
stageOrchestrate: "Orchestrate",
|
|
17228
|
+
stageDeliver: "Deliver",
|
|
17229
|
+
footerInput: "Usu\xE1rio envia um pedido ao assistente\u2026",
|
|
17230
|
+
footerWorkflow: "Astrlabe orquestrando agentes e datasources\u2026",
|
|
17231
|
+
footerDashboard: "Pronto \u2014 dashboard do ERP atualizado.",
|
|
17232
|
+
workflowStep: (current, total) => `Etapa ${current} de ${total}`
|
|
17233
|
+
};
|
|
17100
17234
|
function DepartmentAssistantDemo({
|
|
17101
17235
|
flows,
|
|
17102
17236
|
initialIndex = 0,
|
|
@@ -17106,20 +17240,29 @@ function DepartmentAssistantDemo({
|
|
|
17106
17240
|
workflowStepMs = 1050,
|
|
17107
17241
|
theme,
|
|
17108
17242
|
brandName = "Kori AI Assistant",
|
|
17243
|
+
labels,
|
|
17109
17244
|
className
|
|
17110
17245
|
}) {
|
|
17111
17246
|
const t = { ...DEFAULT_ASSISTANT_THEME, ...theme, workflow: { ...DEFAULT_ASSISTANT_THEME.workflow, ...theme?.workflow } };
|
|
17247
|
+
const L = { ...DEFAULT_LABELS, ...labels };
|
|
17112
17248
|
const [flowIndex, setFlowIndex] = useState(initialIndex);
|
|
17113
17249
|
const [stage, setStage] = useState("input");
|
|
17114
17250
|
const [userTyped, setUserTyped] = useState("");
|
|
17115
17251
|
const [assistantTyped, setAssistantTyped] = useState("");
|
|
17116
17252
|
const [inputPhase, setInputPhase] = useState("user");
|
|
17253
|
+
const [workflowStepIndex, setWorkflowStepIndex] = useState(-1);
|
|
17254
|
+
const [workflowStepLabel, setWorkflowStepLabel] = useState("");
|
|
17117
17255
|
const rotateTimerRef = useRef(null);
|
|
17118
17256
|
const flow = flows[flowIndex];
|
|
17257
|
+
const totalSteps = flow.workflow.steps.length;
|
|
17119
17258
|
const assistantMessage = useMemo(
|
|
17120
|
-
() =>
|
|
17121
|
-
[flow.agents.length]
|
|
17259
|
+
() => L.assistantResponse(flow.agents.length),
|
|
17260
|
+
[flow.agents.length, L]
|
|
17122
17261
|
);
|
|
17262
|
+
useEffect(() => {
|
|
17263
|
+
setWorkflowStepIndex(-1);
|
|
17264
|
+
setWorkflowStepLabel("");
|
|
17265
|
+
}, [flow.id]);
|
|
17123
17266
|
useEffect(() => {
|
|
17124
17267
|
if (stage === "input") {
|
|
17125
17268
|
setInputPhase("user");
|
|
@@ -17206,11 +17349,22 @@ function DepartmentAssistantDemo({
|
|
|
17206
17349
|
}) })
|
|
17207
17350
|
] }),
|
|
17208
17351
|
/* @__PURE__ */ jsxs("div", { className: "border-b border-white/5 px-6 py-3 flex items-center gap-3 text-[11px]", children: [
|
|
17209
|
-
/* @__PURE__ */ jsx(StageChip, { label:
|
|
17352
|
+
/* @__PURE__ */ jsx(StageChip, { label: L.stageAsk, stageIndex, mine: 0, activeBadge: t.stageActiveBadge }),
|
|
17210
17353
|
/* @__PURE__ */ jsx("div", { className: "h-px flex-1 bg-gradient-to-r from-white/10 to-white/5" }),
|
|
17211
|
-
/* @__PURE__ */ jsx(StageChip, { label:
|
|
17354
|
+
/* @__PURE__ */ jsx(StageChip, { label: L.stageOrchestrate, stageIndex, mine: 1, activeBadge: t.stageActiveBadge }),
|
|
17212
17355
|
/* @__PURE__ */ jsx("div", { className: "h-px flex-1 bg-gradient-to-r from-white/5 to-white/10" }),
|
|
17213
|
-
/* @__PURE__ */ jsx(StageChip, { label:
|
|
17356
|
+
/* @__PURE__ */ jsx(StageChip, { label: L.stageDeliver, stageIndex, mine: 2, activeBadge: t.stageActiveBadge })
|
|
17357
|
+
] }),
|
|
17358
|
+
stage === "workflow" && /* @__PURE__ */ jsxs("div", { className: "border-b border-white/5 px-6 py-2.5 flex items-center gap-3", children: [
|
|
17359
|
+
/* @__PURE__ */ jsx("div", { className: "flex items-center gap-1", children: flow.workflow.steps.map((_, index) => /* @__PURE__ */ jsx(
|
|
17360
|
+
"span",
|
|
17361
|
+
{
|
|
17362
|
+
className: `h-1 w-3.5 rounded-full transition-all duration-500 ${workflowStepIndex < 0 ? "bg-white/10" : index < workflowStepIndex ? "bg-emerald-500" : index === workflowStepIndex ? `${t.progressActiveBar} animate-pulse` : "bg-white/10"}`
|
|
17363
|
+
},
|
|
17364
|
+
index
|
|
17365
|
+
)) }),
|
|
17366
|
+
/* @__PURE__ */ jsx("span", { className: "text-[10px] font-bold uppercase tracking-wider text-gray-500 dark:text-gray-400", children: L.workflowStep(workflowStepIndex + 1, totalSteps) }),
|
|
17367
|
+
/* @__PURE__ */ jsx("span", { className: "truncate text-[11px] text-gray-700 dark:text-gray-200 flex-1", children: workflowStepLabel || flow.workflow.steps[0]?.label })
|
|
17214
17368
|
] }),
|
|
17215
17369
|
/* @__PURE__ */ jsx("div", { className: "relative", style: { height: 620 }, children: /* @__PURE__ */ jsxs(AnimatePresence, { mode: "wait", children: [
|
|
17216
17370
|
stage === "input" && /* @__PURE__ */ jsx(
|
|
@@ -17234,7 +17388,11 @@ function DepartmentAssistantDemo({
|
|
|
17234
17388
|
agents: flow.agents,
|
|
17235
17389
|
agentAvatars: flow.agentAvatars,
|
|
17236
17390
|
avatarGradient: t.inputAvatar,
|
|
17237
|
-
cursorClass: t.inputCursor
|
|
17391
|
+
cursorClass: t.inputCursor,
|
|
17392
|
+
conversationLabel: L.conversation,
|
|
17393
|
+
personaTagFn: L.personaTag,
|
|
17394
|
+
composerHint: L.composerHint,
|
|
17395
|
+
composerEnter: L.composerEnter
|
|
17238
17396
|
}
|
|
17239
17397
|
)
|
|
17240
17398
|
},
|
|
@@ -17256,6 +17414,10 @@ function DepartmentAssistantDemo({
|
|
|
17256
17414
|
hideHeader: true,
|
|
17257
17415
|
stepDurationMs: workflowStepMs,
|
|
17258
17416
|
onComplete: handleWorkflowComplete,
|
|
17417
|
+
onStepChange: (idx, label) => {
|
|
17418
|
+
setWorkflowStepIndex(idx);
|
|
17419
|
+
setWorkflowStepLabel(label);
|
|
17420
|
+
},
|
|
17259
17421
|
theme: t.workflow,
|
|
17260
17422
|
nodeAvatars: flow.nodeAvatars
|
|
17261
17423
|
},
|
|
@@ -17281,9 +17443,9 @@ function DepartmentAssistantDemo({
|
|
|
17281
17443
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 text-[11px] text-gray-500 dark:text-gray-400", children: [
|
|
17282
17444
|
/* @__PURE__ */ jsx(BoltIcon, { className: `h-3.5 w-3.5 ${t.progressActiveBar.replace("bg-", "text-")}` }),
|
|
17283
17445
|
/* @__PURE__ */ jsxs("span", { className: "font-medium", children: [
|
|
17284
|
-
stage === "input" &&
|
|
17285
|
-
stage === "workflow" &&
|
|
17286
|
-
stage === "dashboard" &&
|
|
17446
|
+
stage === "input" && L.footerInput,
|
|
17447
|
+
stage === "workflow" && L.footerWorkflow,
|
|
17448
|
+
stage === "dashboard" && L.footerDashboard
|
|
17287
17449
|
] })
|
|
17288
17450
|
] }),
|
|
17289
17451
|
/* @__PURE__ */ jsx("div", { className: "flex items-center gap-1", children: flows.map((entry, index) => /* @__PURE__ */ jsx(
|
|
@@ -17321,7 +17483,11 @@ function InputStage3({
|
|
|
17321
17483
|
agents,
|
|
17322
17484
|
agentAvatars,
|
|
17323
17485
|
avatarGradient,
|
|
17324
|
-
cursorClass
|
|
17486
|
+
cursorClass,
|
|
17487
|
+
conversationLabel,
|
|
17488
|
+
personaTagFn,
|
|
17489
|
+
composerHint,
|
|
17490
|
+
composerEnter
|
|
17325
17491
|
}) {
|
|
17326
17492
|
const cursor = /* @__PURE__ */ jsx("span", { className: `ml-0.5 inline-block w-[2px] h-4 align-middle ${cursorClass} animate-pulse` });
|
|
17327
17493
|
const showAssistant = phase === "assistant";
|
|
@@ -17329,10 +17495,7 @@ function InputStage3({
|
|
|
17329
17495
|
return /* @__PURE__ */ jsxs("div", { className: "flex h-full flex-col px-4 py-6 sm:px-8", children: [
|
|
17330
17496
|
/* @__PURE__ */ jsxs("div", { className: "mb-5 flex items-center justify-center gap-2 text-[10px] font-semibold uppercase tracking-wider text-gray-400 dark:text-gray-500", children: [
|
|
17331
17497
|
/* @__PURE__ */ jsx("span", { className: "h-1 w-1 rounded-full bg-emerald-500 animate-pulse" }),
|
|
17332
|
-
|
|
17333
|
-
personaName,
|
|
17334
|
-
" \xB7 ",
|
|
17335
|
-
department
|
|
17498
|
+
conversationLabel(personaName, department)
|
|
17336
17499
|
] }),
|
|
17337
17500
|
/* @__PURE__ */ jsxs("div", { className: "mx-auto flex w-full max-w-3xl flex-1 flex-col justify-end gap-4 overflow-hidden", children: [
|
|
17338
17501
|
/* @__PURE__ */ jsx("div", { className: "flex justify-end", children: /* @__PURE__ */ jsx("div", { className: "liquid-surface max-w-[88%] rounded-2xl rounded-tr-md px-5 py-3.5", children: /* @__PURE__ */ jsxs("p", { className: "text-base leading-relaxed text-gray-900 dark:text-white", children: [
|
|
@@ -17349,7 +17512,7 @@ function InputStage3({
|
|
|
17349
17512
|
}
|
|
17350
17513
|
) : /* @__PURE__ */ jsx("div", { className: `flex h-11 w-11 shrink-0 items-center justify-center rounded-2xl bg-gradient-to-br ${avatarGradient} shadow-md`, children: /* @__PURE__ */ jsx(SparklesIcon, { className: "h-5 w-5 text-white" }) }),
|
|
17351
17514
|
/* @__PURE__ */ jsxs("div", { className: "liquid-surface max-w-[88%] rounded-2xl rounded-bl-md px-5 py-3.5", children: [
|
|
17352
|
-
assistantMessage.length > 0 && /* @__PURE__ */ jsx("div", { className: "mb-1 text-[10px] font-bold uppercase tracking-wider text-gray-500 dark:text-gray-400", children: personaName }),
|
|
17515
|
+
assistantMessage.length > 0 && /* @__PURE__ */ jsx("div", { className: "mb-1 text-[10px] font-bold uppercase tracking-wider text-gray-500 dark:text-gray-400", children: personaTagFn(personaName) }),
|
|
17353
17516
|
assistantMessage.length === 0 ? /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-1 py-1", children: [
|
|
17354
17517
|
/* @__PURE__ */ jsx("span", { className: `h-1.5 w-1.5 rounded-full ${cursorClass} animate-pulse` }),
|
|
17355
17518
|
/* @__PURE__ */ jsx("span", { className: `h-1.5 w-1.5 rounded-full ${cursorClass} animate-pulse`, style: { animationDelay: "150ms" } }),
|
|
@@ -17378,8 +17541,8 @@ function InputStage3({
|
|
|
17378
17541
|
] })
|
|
17379
17542
|
] }),
|
|
17380
17543
|
/* @__PURE__ */ jsx("div", { className: "mx-auto mt-5 w-full max-w-3xl", children: /* @__PURE__ */ jsxs("div", { className: "liquid-surface flex items-center gap-3 rounded-full px-4 py-2.5 opacity-60", children: [
|
|
17381
|
-
/* @__PURE__ */ jsx("div", { className: "text-xs italic text-gray-500 dark:text-gray-400", children:
|
|
17382
|
-
/* @__PURE__ */ jsx("div", { className: "ml-auto flex items-center gap-1 text-[10px] text-gray-400 dark:text-gray-500", children:
|
|
17544
|
+
/* @__PURE__ */ jsx("div", { className: "text-xs italic text-gray-500 dark:text-gray-400", children: composerHint }),
|
|
17545
|
+
/* @__PURE__ */ jsx("div", { className: "ml-auto flex items-center gap-1 text-[10px] text-gray-400 dark:text-gray-500", children: composerEnter })
|
|
17383
17546
|
] }) })
|
|
17384
17547
|
] });
|
|
17385
17548
|
}
|
|
@@ -24646,5 +24809,5 @@ function SkipToContent({
|
|
|
24646
24809
|
}
|
|
24647
24810
|
|
|
24648
24811
|
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-
|
|
24650
|
-
//# sourceMappingURL=chunk-
|
|
24812
|
+
//# sourceMappingURL=chunk-ZJQ5RLGK.mjs.map
|
|
24813
|
+
//# sourceMappingURL=chunk-ZJQ5RLGK.mjs.map
|