@datatechsolutions/ui 2.11.73 → 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.
- package/dist/astrlabe/index.js +131 -131
- package/dist/astrlabe/index.mjs +3 -3
- package/dist/astrlabe/workflow-canvas.js +3 -3
- package/dist/astrlabe/workflow-canvas.mjs +2 -2
- package/dist/{chunk-Q5W4CGXP.js → chunk-2VUZ4ZGV.js} +64 -64
- package/dist/{chunk-Q5W4CGXP.js.map → chunk-2VUZ4ZGV.js.map} +1 -1
- package/dist/{chunk-EBVEKRQB.js → chunk-4VUNR53L.js} +162 -54
- package/dist/chunk-4VUNR53L.js.map +1 -0
- package/dist/{chunk-Z47UM6TC.mjs → chunk-RBDOC5QZ.mjs} +162 -54
- package/dist/chunk-RBDOC5QZ.mjs.map +1 -0
- package/dist/{chunk-TP7H2NQN.mjs → chunk-WYHKTAQE.mjs} +3 -3
- package/dist/{chunk-TP7H2NQN.mjs.map → chunk-WYHKTAQE.mjs.map} +1 -1
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +744 -744
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/dist/chunk-EBVEKRQB.js.map +0 -1
- package/dist/chunk-Z47UM6TC.mjs.map +0 -1
|
@@ -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);
|
|
@@ -16573,71 +16573,66 @@ function DepartmentWorkflowDemo({
|
|
|
16573
16573
|
@keyframes deptGlow { 0%, 100% { box-shadow: 0 0 12px var(--glow); } 50% { box-shadow: 0 0 28px var(--glow); } }
|
|
16574
16574
|
@keyframes deptEdge { to { stroke-dashoffset: -16; } }
|
|
16575
16575
|
` }),
|
|
16576
|
-
/* @__PURE__ */ jsx("div", { className: "mx-auto flex items-
|
|
16576
|
+
/* @__PURE__ */ jsx("div", { className: "mx-auto flex items-center gap-0", children: columns.map((col, colIdx) => {
|
|
16577
16577
|
const isStepActive = stepIndex === col.stepIndex;
|
|
16578
16578
|
const isStepDone = stepIndex > col.stepIndex;
|
|
16579
16579
|
const showsConnector = colIdx > 0;
|
|
16580
|
-
|
|
16581
|
-
|
|
16582
|
-
|
|
16583
|
-
|
|
16580
|
+
const isParallel = col.nodes.length > 1;
|
|
16581
|
+
const nodeWidth = isParallel ? "w-[160px]" : "w-[180px]";
|
|
16582
|
+
return /* @__PURE__ */ jsxs("div", { className: "flex shrink-0 items-center gap-0", children: [
|
|
16583
|
+
showsConnector && /* @__PURE__ */ jsx("svg", { width: "28", height: "2", className: "mx-1 shrink-0", children: /* @__PURE__ */ jsx(
|
|
16584
|
+
"line",
|
|
16585
|
+
{
|
|
16586
|
+
x1: "0",
|
|
16587
|
+
y1: "1",
|
|
16588
|
+
x2: "28",
|
|
16589
|
+
y2: "1",
|
|
16590
|
+
stroke: isStepDone ? t.completeEdgeStroke : isStepActive ? t.activeEdgeStroke : "#334155",
|
|
16591
|
+
strokeWidth: "2",
|
|
16592
|
+
strokeDasharray: "5 3",
|
|
16593
|
+
style: { animation: isStepActive ? "deptEdge 0.8s linear infinite" : "none" }
|
|
16594
|
+
}
|
|
16595
|
+
) }),
|
|
16596
|
+
/* @__PURE__ */ jsx("div", { className: `flex ${isParallel ? "flex-col gap-2" : ""}`, children: col.nodes.map((node2) => {
|
|
16597
|
+
const status = getStatus(node2);
|
|
16598
|
+
const meta = getNodeMeta(node2.type);
|
|
16599
|
+
const avatar = nodeAvatars?.[node2.id];
|
|
16600
|
+
const subtitle = nodeSubtitles?.[node2.id] ?? meta.tag;
|
|
16601
|
+
const statusClass = status === "running" ? `scale-[1.03] ring-2 ${t.activeRing}` : status === "complete" ? "ring-1 ring-emerald-500/40" : "opacity-50";
|
|
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";
|
|
16603
|
+
return /* @__PURE__ */ jsxs(
|
|
16604
|
+
"div",
|
|
16584
16605
|
{
|
|
16585
|
-
|
|
16586
|
-
|
|
16587
|
-
|
|
16588
|
-
|
|
16589
|
-
stroke: isStepDone ? t.completeEdgeStroke : isStepActive ? t.activeEdgeStroke : "#334155",
|
|
16590
|
-
strokeWidth: "2",
|
|
16591
|
-
strokeDasharray: "5 3",
|
|
16592
|
-
style: { animation: isStepActive ? "deptEdge 0.8s linear infinite" : "none" }
|
|
16593
|
-
}
|
|
16594
|
-
),
|
|
16595
|
-
/* @__PURE__ */ jsx("circle", { cx: "22", cy: "50", r: "2.5", fill: isStepDone ? t.completeEdgeStroke : isStepActive ? t.activeEdgeStroke : "#334155" })
|
|
16596
|
-
] }),
|
|
16597
|
-
/* @__PURE__ */ jsxs("div", { className: "flex w-[148px] flex-col gap-2 shrink-0", children: [
|
|
16598
|
-
/* @__PURE__ */ jsxs("div", { className: "text-[8px] font-bold uppercase tracking-wider text-gray-400 dark:text-gray-500 text-center", children: [
|
|
16599
|
-
"Step ",
|
|
16600
|
-
col.stepIndex + 1
|
|
16601
|
-
] }),
|
|
16602
|
-
col.nodes.map((node2) => {
|
|
16603
|
-
const status = getStatus(node2);
|
|
16604
|
-
const meta = getNodeMeta(node2.type);
|
|
16605
|
-
const avatar = nodeAvatars?.[node2.id];
|
|
16606
|
-
const statusClass = status === "running" ? `scale-[1.04] ring-2 ${t.activeRing}` : status === "complete" ? "ring-1 ring-emerald-500/40" : "opacity-50";
|
|
16607
|
-
return /* @__PURE__ */ jsx(
|
|
16608
|
-
"div",
|
|
16609
|
-
{
|
|
16610
|
-
className: `liquid-surface rounded-xl p-2.5 transition-all duration-500 ${statusClass}`,
|
|
16611
|
-
style: status === "running" ? { "--glow": meta.glow, animation: "deptGlow 1.4s ease-in-out infinite" } : void 0,
|
|
16612
|
-
children: /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
|
|
16606
|
+
className: `liquid-surface rounded-2xl px-3.5 py-3 transition-all duration-500 ${nodeWidth} ${statusClass}`,
|
|
16607
|
+
style: status === "running" ? { "--glow": meta.glow, animation: "deptGlow 1.4s ease-in-out infinite" } : void 0,
|
|
16608
|
+
children: [
|
|
16609
|
+
/* @__PURE__ */ jsxs("div", { className: "mb-2 flex items-center gap-2.5", children: [
|
|
16613
16610
|
avatar ? /* @__PURE__ */ jsx(
|
|
16614
16611
|
"img",
|
|
16615
16612
|
{
|
|
16616
16613
|
src: avatar,
|
|
16617
16614
|
alt: "",
|
|
16618
|
-
className: `h-
|
|
16615
|
+
className: `h-9 w-9 shrink-0 rounded-xl bg-white/40 dark:bg-white/[0.06] ${status === "running" ? "ring-2 ring-white/40" : ""}`
|
|
16619
16616
|
}
|
|
16620
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}` }) }),
|
|
16621
16618
|
/* @__PURE__ */ jsxs("div", { className: "min-w-0 flex-1", children: [
|
|
16622
|
-
/* @__PURE__ */ jsx("div", { className: "truncate text-[
|
|
16623
|
-
/* @__PURE__ */
|
|
16624
|
-
|
|
16625
|
-
|
|
16626
|
-
|
|
16627
|
-
|
|
16628
|
-
|
|
16629
|
-
|
|
16630
|
-
|
|
16631
|
-
|
|
16632
|
-
] })
|
|
16633
|
-
] })
|
|
16619
|
+
/* @__PURE__ */ jsx("div", { className: "truncate text-[12px] font-semibold leading-tight text-gray-900 dark:text-white", children: node2.data.label }),
|
|
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 })
|
|
16621
|
+
] }),
|
|
16622
|
+
status === "complete" && /* @__PURE__ */ jsx(CheckCircleIcon$1, { className: "h-4 w-4 shrink-0 text-emerald-500" })
|
|
16623
|
+
] }),
|
|
16624
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-wrap gap-1", children: [
|
|
16625
|
+
/* @__PURE__ */ jsx("span", { className: `rounded-full px-2 py-0.5 text-[8.5px] font-semibold ${tagBadge}`, children: meta.tag }),
|
|
16626
|
+
status === "running" && /* @__PURE__ */ jsxs("span", { className: `rounded-full px-2 py-0.5 text-[8.5px] font-semibold ${t.stepActiveBg.replace("bg-", "bg-")}/20 ${t.stepActiveBg.replace("bg-", "text-")}`, children: [
|
|
16627
|
+
/* @__PURE__ */ jsx("span", { className: "mr-0.5 inline-block h-1 w-1 rounded-full bg-current animate-pulse" }),
|
|
16628
|
+
"executando"
|
|
16634
16629
|
] })
|
|
16635
16630
|
] })
|
|
16636
|
-
|
|
16637
|
-
|
|
16638
|
-
|
|
16639
|
-
|
|
16640
|
-
|
|
16631
|
+
]
|
|
16632
|
+
},
|
|
16633
|
+
node2.id
|
|
16634
|
+
);
|
|
16635
|
+
}) })
|
|
16641
16636
|
] }, col.stepIndex);
|
|
16642
16637
|
}) })
|
|
16643
16638
|
] }),
|
|
@@ -16666,6 +16661,16 @@ var financialWorkflow = {
|
|
|
16666
16661
|
description: "Q4 close \u2014 aggregate transactions, compute Brazilian taxes in parallel, audit for compliance, publish report.",
|
|
16667
16662
|
accentBadge: "bg-emerald-500/15 text-emerald-300",
|
|
16668
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
|
+
},
|
|
16669
16674
|
graph: buildGraph(
|
|
16670
16675
|
[
|
|
16671
16676
|
node("start", "start", "Trigger Q4 close", 0, 120),
|
|
@@ -16703,6 +16708,17 @@ var salesWorkflow = {
|
|
|
16703
16708
|
description: "Lead arrives \u2192 agents score, qualify, draft proposal, and drive negotiation to close.",
|
|
16704
16709
|
accentBadge: "bg-blue-500/15 text-blue-300",
|
|
16705
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
|
+
},
|
|
16706
16722
|
graph: buildGraph(
|
|
16707
16723
|
[
|
|
16708
16724
|
node("start", "start", "New lead (XPTO)", 0, 120),
|
|
@@ -16742,6 +16758,17 @@ var marketingWorkflow = {
|
|
|
16742
16758
|
description: "Brief \u2192 parallel design, copy, audience \u2192 assemble \u2192 schedule \u2192 ship \u2192 measure.",
|
|
16743
16759
|
accentBadge: "bg-pink-500/15 text-pink-300",
|
|
16744
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
|
+
},
|
|
16745
16772
|
graph: buildGraph(
|
|
16746
16773
|
[
|
|
16747
16774
|
node("start", "start", "Campaign brief", 0, 120),
|
|
@@ -16782,6 +16809,16 @@ var inventoryWorkflow = {
|
|
|
16782
16809
|
description: "Read stock \u2192 forecast demand \u2192 filter low-stock SKUs \u2192 iterate orders \u2192 publish report.",
|
|
16783
16810
|
accentBadge: "bg-orange-500/15 text-orange-300",
|
|
16784
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
|
+
},
|
|
16785
16822
|
graph: buildGraph(
|
|
16786
16823
|
[
|
|
16787
16824
|
node("start", "start", "Daily sweep", 0, 120),
|
|
@@ -16819,6 +16856,16 @@ var hrWorkflow = {
|
|
|
16819
16856
|
description: "Screen resumes \u2192 rank by fit \u2192 interview scheduling \u2192 decision \u2192 hiring dashboard.",
|
|
16820
16857
|
accentBadge: "bg-green-500/15 text-green-300",
|
|
16821
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
|
+
},
|
|
16822
16869
|
graph: buildGraph(
|
|
16823
16870
|
[
|
|
16824
16871
|
node("start", "start", "New posting", 0, 120),
|
|
@@ -16856,6 +16903,16 @@ var customerAnalyticsWorkflow = {
|
|
|
16856
16903
|
description: "Segment customers \u2192 parallel churn and LTV models \u2192 combine \u2192 recommend retention plays.",
|
|
16857
16904
|
accentBadge: "bg-indigo-500/15 text-indigo-300",
|
|
16858
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
|
+
},
|
|
16859
16916
|
graph: buildGraph(
|
|
16860
16917
|
[
|
|
16861
16918
|
node("start", "start", "Nightly analytics", 0, 120),
|
|
@@ -16893,6 +16950,17 @@ var payrollWorkflow = {
|
|
|
16893
16950
|
description: "Ponto \u2192 c\xE1lculos paralelos (FGTS / INSS / IRRF) \u2192 encargos \u2192 S-1200 \u2192 dashboard.",
|
|
16894
16951
|
accentBadge: "bg-cyan-500/15 text-cyan-300",
|
|
16895
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
|
+
},
|
|
16896
16964
|
graph: buildGraph(
|
|
16897
16965
|
[
|
|
16898
16966
|
node("start", "start", "Fechamento mensal", 0, 120),
|
|
@@ -16933,6 +17001,17 @@ var supportWorkflow = {
|
|
|
16933
17001
|
description: "Ticket \u2192 paralelo (hist\xF3rico do cliente, status do pedido, base de conhecimento) \u2192 classificar \u2192 rascunhar \u2192 revisar \u2192 responder.",
|
|
16934
17002
|
accentBadge: "bg-teal-500/15 text-teal-300",
|
|
16935
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
|
+
},
|
|
16936
17015
|
graph: buildGraph(
|
|
16937
17016
|
[
|
|
16938
17017
|
node("start", "start", "Ticket #847", 0, 120),
|
|
@@ -16973,6 +17052,16 @@ var manufacturingWorkflow = {
|
|
|
16973
17052
|
description: "Demanda \u2192 BOM \u2192 verificar estoque \u2192 alocar centros de trabalho \u2192 QC \u2192 liberar OPs.",
|
|
16974
17053
|
accentBadge: "bg-violet-500/15 text-violet-300",
|
|
16975
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
|
+
},
|
|
16976
17065
|
graph: buildGraph(
|
|
16977
17066
|
[
|
|
16978
17067
|
node("start", "start", "Trigger MRP semanal", 0, 120),
|
|
@@ -17010,6 +17099,16 @@ var logisticsWorkflow = {
|
|
|
17010
17099
|
description: "Pedidos \u2192 paralelo (tr\xE2nsito, frota, janelas) \u2192 otimizador \u2192 despacho \u2192 tracking.",
|
|
17011
17100
|
accentBadge: "bg-sky-500/15 text-sky-300",
|
|
17012
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
|
+
},
|
|
17013
17112
|
graph: buildGraph(
|
|
17014
17113
|
[
|
|
17015
17114
|
node("start", "start", "28 pedidos SP", 0, 120),
|
|
@@ -17047,6 +17146,15 @@ var lgpdWorkflow = {
|
|
|
17047
17146
|
description: "Scan audit logs \u2192 detect PII access violations \u2192 remediate \u2192 notify DPO \u2192 report.",
|
|
17048
17147
|
accentBadge: "bg-red-500/15 text-red-300",
|
|
17049
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
|
+
},
|
|
17050
17158
|
graph: buildGraph(
|
|
17051
17159
|
[
|
|
17052
17160
|
node("start", "start", "Daily privacy sweep", 0, 120),
|
|
@@ -24652,5 +24760,5 @@ function SkipToContent({
|
|
|
24652
24760
|
}
|
|
24653
24761
|
|
|
24654
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 };
|
|
24655
|
-
//# sourceMappingURL=chunk-
|
|
24656
|
-
//# sourceMappingURL=chunk-
|
|
24763
|
+
//# sourceMappingURL=chunk-RBDOC5QZ.mjs.map
|
|
24764
|
+
//# sourceMappingURL=chunk-RBDOC5QZ.mjs.map
|