@datatechsolutions/ui 2.11.64 → 2.11.65
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-ZIBUWOWT.js → chunk-3J4F3ZDT.js} +160 -2
- package/dist/chunk-3J4F3ZDT.js.map +1 -0
- package/dist/{chunk-EBJ7O3S5.js → chunk-3MTLF75X.js} +64 -64
- package/dist/{chunk-EBJ7O3S5.js.map → chunk-3MTLF75X.js.map} +1 -1
- package/dist/{chunk-7GKAQFMY.mjs → chunk-IK7HVMN5.mjs} +3 -3
- package/dist/{chunk-7GKAQFMY.mjs.map → chunk-IK7HVMN5.mjs.map} +1 -1
- package/dist/{chunk-T7XUKDEH.mjs → chunk-Y6OBQV2K.mjs} +157 -3
- package/dist/chunk-Y6OBQV2K.mjs.map +1 -0
- package/dist/index.d.mts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +755 -739
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/dist/chunk-T7XUKDEH.mjs.map +0 -1
- package/dist/chunk-ZIBUWOWT.js.map +0 -1
package/dist/astrlabe/index.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import '../chunk-JB6RNAD2.mjs';
|
|
3
3
|
export { topologicalSortAgents, validateGraphNodeConfigs, validateNodeConfig, validateWorkflowGraph } from '../chunk-53SRKVKQ.mjs';
|
|
4
|
-
import { Workspace, useModalStore, CATEGORY_COLORS, CATEGORY_PILL_COLORS, ICON_MAP, WorkflowCanvas, getEntityIcon, getEntityGradient, useWorkflowStore, LOGIC_ICON_MAP, LOGIC_NODE_GRADIENTS, getFrameworkMeta, getCompatibleModels, isModelCompatibleWithFramework, FRAMEWORK_META, isFrameworkCompatibleWithProviders } from '../chunk-
|
|
5
|
-
export { AgentFlowNode, AgentToolFlowNode, AnswerFlowNode, AnthropicIcon, CodeFlowNode, CrewAIIcon, DocumentExtractorFlowNode, EndFlowNode, EntityFlowNode, FRAMEWORK_META, GoogleADKIcon, GroupFlowNode, HttpRequestFlowNode, IfElseFlowNode, IterationFlowNode, IterationStartFlowNode, KnowledgeBaseFlowNode, LOGIC_ICON_MAP, LOGIC_NODE_BADGE_COLORS, LOGIC_NODE_GRADIENTS, LOGIC_NODE_HANDLE_COLORS, LangChainIcon, ListOperatorFlowNode, LogicNodeModal, MINIMAP_NODE_COLORS, ModelProviderFlowNode, NODE_EXECUTION_ACCENT_COLORS, NodeCard, NodeContextMenu, NoteFlowNode, OpenAIIcon, PanelContextMenu, ParameterExtractorFlowNode, QuestionClassifierFlowNode, RuleFlowNode, SelectionContextMenu, StartFlowNode, StrandsIcon, TemplateTransformFlowNode, ToolFlowNode, VariableAggregatorFlowNode, VariableAssignerFlowNode, WorkflowBuilderProvider, Workspace, getCompatibleModels, getDefaultFrameworkForModel, getEntityBadgeColor, getEntityGradient, getEntityHandleColor, getEntityIcon, getEntityMinimapColor, getFrameworkMeta, getNodeExecutionAccent, getNodeExecutionAccentRgb, isModelCompatibleWithFramework, useModalStore, useWorkflowBuilderClient, useWorkflowBuilderClientOptional, useWorkflowStore } from '../chunk-
|
|
6
|
-
import { GlassModal, Button, FormInput, FormTextarea, ToggleSwitch, Input, DynamicIslandConfirm } from '../chunk-
|
|
4
|
+
import { Workspace, useModalStore, CATEGORY_COLORS, CATEGORY_PILL_COLORS, ICON_MAP, WorkflowCanvas, getEntityIcon, getEntityGradient, useWorkflowStore, LOGIC_ICON_MAP, LOGIC_NODE_GRADIENTS, getFrameworkMeta, getCompatibleModels, isModelCompatibleWithFramework, FRAMEWORK_META, isFrameworkCompatibleWithProviders } from '../chunk-IK7HVMN5.mjs';
|
|
5
|
+
export { AgentFlowNode, AgentToolFlowNode, AnswerFlowNode, AnthropicIcon, CodeFlowNode, CrewAIIcon, DocumentExtractorFlowNode, EndFlowNode, EntityFlowNode, FRAMEWORK_META, GoogleADKIcon, GroupFlowNode, HttpRequestFlowNode, IfElseFlowNode, IterationFlowNode, IterationStartFlowNode, KnowledgeBaseFlowNode, LOGIC_ICON_MAP, LOGIC_NODE_BADGE_COLORS, LOGIC_NODE_GRADIENTS, LOGIC_NODE_HANDLE_COLORS, LangChainIcon, ListOperatorFlowNode, LogicNodeModal, MINIMAP_NODE_COLORS, ModelProviderFlowNode, NODE_EXECUTION_ACCENT_COLORS, NodeCard, NodeContextMenu, NoteFlowNode, OpenAIIcon, PanelContextMenu, ParameterExtractorFlowNode, QuestionClassifierFlowNode, RuleFlowNode, SelectionContextMenu, StartFlowNode, StrandsIcon, TemplateTransformFlowNode, ToolFlowNode, VariableAggregatorFlowNode, VariableAssignerFlowNode, WorkflowBuilderProvider, Workspace, getCompatibleModels, getDefaultFrameworkForModel, getEntityBadgeColor, getEntityGradient, getEntityHandleColor, getEntityIcon, getEntityMinimapColor, getFrameworkMeta, getNodeExecutionAccent, getNodeExecutionAccentRgb, isModelCompatibleWithFramework, useModalStore, useWorkflowBuilderClient, useWorkflowBuilderClientOptional, useWorkflowStore } from '../chunk-IK7HVMN5.mjs';
|
|
6
|
+
import { GlassModal, Button, FormInput, FormTextarea, ToggleSwitch, Input, DynamicIslandConfirm } from '../chunk-Y6OBQV2K.mjs';
|
|
7
7
|
import { useTranslations } from '../chunk-7VJ7CMMT.mjs';
|
|
8
8
|
import '../chunk-QWG2FMUN.mjs';
|
|
9
9
|
import '../chunk-D2JF6C3E.mjs';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
-
var
|
|
5
|
-
require('../chunk-
|
|
4
|
+
var chunk3MTLF75X_js = require('../chunk-3MTLF75X.js');
|
|
5
|
+
require('../chunk-3J4F3ZDT.js');
|
|
6
6
|
require('../chunk-YXN2K77G.js');
|
|
7
7
|
require('../chunk-S7KHTUHA.js');
|
|
8
8
|
require('../chunk-UZ3CMNUJ.js');
|
|
@@ -13,7 +13,7 @@ require('../chunk-C7BI5LQ6.js');
|
|
|
13
13
|
|
|
14
14
|
Object.defineProperty(exports, "Workspace", {
|
|
15
15
|
enumerable: true,
|
|
16
|
-
get: function () { return
|
|
16
|
+
get: function () { return chunk3MTLF75X_js.Workspace; }
|
|
17
17
|
});
|
|
18
18
|
//# sourceMappingURL=workflow-canvas.js.map
|
|
19
19
|
//# sourceMappingURL=workflow-canvas.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
export { Workspace } from '../chunk-
|
|
3
|
-
import '../chunk-
|
|
2
|
+
export { Workspace } from '../chunk-IK7HVMN5.mjs';
|
|
3
|
+
import '../chunk-Y6OBQV2K.mjs';
|
|
4
4
|
import '../chunk-7VJ7CMMT.mjs';
|
|
5
5
|
import '../chunk-QWG2FMUN.mjs';
|
|
6
6
|
import '../chunk-D2JF6C3E.mjs';
|
|
@@ -16899,6 +16899,160 @@ var customerAnalyticsWorkflow = {
|
|
|
16899
16899
|
step("Publishing analytics dashboard\u2026", "dashboard")
|
|
16900
16900
|
]
|
|
16901
16901
|
};
|
|
16902
|
+
var payrollWorkflow = {
|
|
16903
|
+
title: "Folha de pagamento \u2014 fechamento eSocial",
|
|
16904
|
+
description: "Ponto \u2192 c\xE1lculos paralelos (FGTS / INSS / IRRF) \u2192 encargos \u2192 S-1200 \u2192 dashboard.",
|
|
16905
|
+
accentBadge: "bg-cyan-500/15 text-cyan-300",
|
|
16906
|
+
completionSummary: "142 holerites processados \xB7 R$ 890k bruto \xB7 eSocial S-1200 transmitido",
|
|
16907
|
+
graph: buildGraph(
|
|
16908
|
+
[
|
|
16909
|
+
node("start", "start", "Fechamento mensal", 0, 120),
|
|
16910
|
+
node("attendance", "datasource", "Buscar ponto", 220, 120),
|
|
16911
|
+
node("fgts", "code", "Calcular FGTS", 460, 10),
|
|
16912
|
+
node("inss", "code", "Calcular INSS", 460, 120),
|
|
16913
|
+
node("irrf", "code", "Calcular IRRF", 460, 230),
|
|
16914
|
+
node("aggregate", "variable_aggregator", "Agregar folha", 700, 120),
|
|
16915
|
+
node("esocial", "template_transform", "Gerar S-1200", 940, 120),
|
|
16916
|
+
node("transmit", "http_request", "Transmitir eSocial", 1180, 120),
|
|
16917
|
+
node("report", "dashboard_output", "Dashboard folha", 1420, 120)
|
|
16918
|
+
],
|
|
16919
|
+
[
|
|
16920
|
+
edge("start", "attendance"),
|
|
16921
|
+
edge("attendance", "fgts"),
|
|
16922
|
+
edge("attendance", "inss"),
|
|
16923
|
+
edge("attendance", "irrf"),
|
|
16924
|
+
edge("fgts", "aggregate"),
|
|
16925
|
+
edge("inss", "aggregate"),
|
|
16926
|
+
edge("irrf", "aggregate"),
|
|
16927
|
+
edge("aggregate", "esocial"),
|
|
16928
|
+
edge("esocial", "transmit"),
|
|
16929
|
+
edge("transmit", "report")
|
|
16930
|
+
]
|
|
16931
|
+
),
|
|
16932
|
+
steps: [
|
|
16933
|
+
step("Iniciando fechamento mensal\u2026", "start"),
|
|
16934
|
+
step("Buscando registros de ponto\u2026", "attendance"),
|
|
16935
|
+
step("Calculando FGTS, INSS e IRRF em paralelo\u2026", "fgts", "inss", "irrf"),
|
|
16936
|
+
step("Agregando folha consolidada\u2026", "aggregate"),
|
|
16937
|
+
step("Gerando evento S-1200\u2026", "esocial"),
|
|
16938
|
+
step("Transmitindo ao eSocial\u2026", "transmit"),
|
|
16939
|
+
step("Publicando dashboard da folha\u2026", "report")
|
|
16940
|
+
]
|
|
16941
|
+
};
|
|
16942
|
+
var supportWorkflow = {
|
|
16943
|
+
title: "Atendimento \u2014 ticket com SLA",
|
|
16944
|
+
description: "Ticket \u2192 paralelo (hist\xF3rico do cliente, status do pedido, base de conhecimento) \u2192 classificar \u2192 rascunhar \u2192 revisar \u2192 responder.",
|
|
16945
|
+
accentBadge: "bg-teal-500/15 text-teal-300",
|
|
16946
|
+
completionSummary: "Ticket respondido em 2min \xB7 CSAT esperado 4.8/5 \xB7 SLA cumprido",
|
|
16947
|
+
graph: buildGraph(
|
|
16948
|
+
[
|
|
16949
|
+
node("start", "start", "Ticket #847", 0, 120),
|
|
16950
|
+
node("history", "datasource", "Hist\xF3rico cliente", 220, 10),
|
|
16951
|
+
node("order", "datasource", "Status pedido", 220, 120),
|
|
16952
|
+
node("kb", "knowledge_base", "Base de conhecimento", 220, 230),
|
|
16953
|
+
node("classify", "question_classifier", "Classificar inten\xE7\xE3o", 460, 120),
|
|
16954
|
+
node("gate", "if_else", "Urgente?", 700, 120),
|
|
16955
|
+
node("draft", "agent", "Rascunhar resposta", 940, 120),
|
|
16956
|
+
node("review", "agent", "Revisor humano", 1180, 120),
|
|
16957
|
+
node("send", "http_request", "Enviar resposta", 1420, 120)
|
|
16958
|
+
],
|
|
16959
|
+
[
|
|
16960
|
+
edge("start", "history"),
|
|
16961
|
+
edge("start", "order"),
|
|
16962
|
+
edge("start", "kb"),
|
|
16963
|
+
edge("history", "classify"),
|
|
16964
|
+
edge("order", "classify"),
|
|
16965
|
+
edge("kb", "classify"),
|
|
16966
|
+
edge("classify", "gate"),
|
|
16967
|
+
edge("gate", "draft"),
|
|
16968
|
+
edge("draft", "review"),
|
|
16969
|
+
edge("review", "send")
|
|
16970
|
+
]
|
|
16971
|
+
),
|
|
16972
|
+
steps: [
|
|
16973
|
+
step("Ticket recebido\u2026", "start"),
|
|
16974
|
+
step("Buscando contexto em paralelo\u2026", "history", "order", "kb"),
|
|
16975
|
+
step("Classificando inten\xE7\xE3o e prioridade\u2026", "classify"),
|
|
16976
|
+
step("Avaliando SLA\u2026", "gate"),
|
|
16977
|
+
step("Rascunhando resposta personalizada\u2026", "draft"),
|
|
16978
|
+
step("Revis\xE3o humana (opcional)\u2026", "review"),
|
|
16979
|
+
step("Enviando resposta ao cliente\u2026", "send")
|
|
16980
|
+
]
|
|
16981
|
+
};
|
|
16982
|
+
var manufacturingWorkflow = {
|
|
16983
|
+
title: "Produ\xE7\xE3o \u2014 planejamento MRP",
|
|
16984
|
+
description: "Demanda \u2192 BOM \u2192 verificar estoque \u2192 alocar centros de trabalho \u2192 QC \u2192 liberar OPs.",
|
|
16985
|
+
accentBadge: "bg-violet-500/15 text-violet-300",
|
|
16986
|
+
completionSummary: "34 OPs liberadas \xB7 OEE 87% \xB7 3 desvios de QC tratados automaticamente",
|
|
16987
|
+
graph: buildGraph(
|
|
16988
|
+
[
|
|
16989
|
+
node("start", "start", "Trigger MRP semanal", 0, 120),
|
|
16990
|
+
node("demand", "datasource", "Buscar demanda", 220, 120),
|
|
16991
|
+
node("bom", "entity", "Explodir BOM", 460, 120),
|
|
16992
|
+
node("stock", "code", "Checar estoque", 700, 10),
|
|
16993
|
+
node("schedule", "agent", "Alocar centros", 700, 230),
|
|
16994
|
+
node("release", "iteration", "Liberar OPs", 940, 120),
|
|
16995
|
+
node("qc", "agent", "Checkpoint QC", 1180, 120),
|
|
16996
|
+
node("report", "dashboard_output", "Painel produ\xE7\xE3o", 1420, 120)
|
|
16997
|
+
],
|
|
16998
|
+
[
|
|
16999
|
+
edge("start", "demand"),
|
|
17000
|
+
edge("demand", "bom"),
|
|
17001
|
+
edge("bom", "stock"),
|
|
17002
|
+
edge("bom", "schedule"),
|
|
17003
|
+
edge("stock", "release"),
|
|
17004
|
+
edge("schedule", "release"),
|
|
17005
|
+
edge("release", "qc"),
|
|
17006
|
+
edge("qc", "report")
|
|
17007
|
+
]
|
|
17008
|
+
),
|
|
17009
|
+
steps: [
|
|
17010
|
+
step("Disparo semanal do MRP\u2026", "start"),
|
|
17011
|
+
step("Puxando demanda prevista\u2026", "demand"),
|
|
17012
|
+
step("Explodindo lista de materiais\u2026", "bom"),
|
|
17013
|
+
step("Checando estoque e alocando capacidade em paralelo\u2026", "stock", "schedule"),
|
|
17014
|
+
step("Liberando 34 ordens de produ\xE7\xE3o\u2026", "release"),
|
|
17015
|
+
step("Rodando checkpoints de qualidade\u2026", "qc"),
|
|
17016
|
+
step("Publicando painel da produ\xE7\xE3o\u2026", "report")
|
|
17017
|
+
]
|
|
17018
|
+
};
|
|
17019
|
+
var logisticsWorkflow = {
|
|
17020
|
+
title: "Log\xEDstica \u2014 roteiriza\xE7\xE3o inteligente",
|
|
17021
|
+
description: "Pedidos \u2192 paralelo (tr\xE2nsito, frota, janelas) \u2192 otimizador \u2192 despacho \u2192 tracking.",
|
|
17022
|
+
accentBadge: "bg-sky-500/15 text-sky-300",
|
|
17023
|
+
completionSummary: "28 entregas roteirizadas \xB7 -12% km \xB7 94% on-time esperado",
|
|
17024
|
+
graph: buildGraph(
|
|
17025
|
+
[
|
|
17026
|
+
node("start", "start", "28 pedidos SP", 0, 120),
|
|
17027
|
+
node("traffic", "http_request", "Tr\xE2nsito tempo real", 220, 10),
|
|
17028
|
+
node("fleet", "datasource", "Frota dispon\xEDvel", 220, 120),
|
|
17029
|
+
node("windows", "datasource", "Janelas de entrega", 220, 230),
|
|
17030
|
+
node("optimize", "agent", "Otimizador de rotas", 460, 120),
|
|
17031
|
+
node("dispatch", "iteration", "Despachar ve\xEDculos", 700, 120),
|
|
17032
|
+
node("notify", "http_request", "Notificar clientes", 940, 120),
|
|
17033
|
+
node("track", "dashboard_output", "Painel de tracking", 1180, 120)
|
|
17034
|
+
],
|
|
17035
|
+
[
|
|
17036
|
+
edge("start", "traffic"),
|
|
17037
|
+
edge("start", "fleet"),
|
|
17038
|
+
edge("start", "windows"),
|
|
17039
|
+
edge("traffic", "optimize"),
|
|
17040
|
+
edge("fleet", "optimize"),
|
|
17041
|
+
edge("windows", "optimize"),
|
|
17042
|
+
edge("optimize", "dispatch"),
|
|
17043
|
+
edge("dispatch", "notify"),
|
|
17044
|
+
edge("notify", "track")
|
|
17045
|
+
]
|
|
17046
|
+
),
|
|
17047
|
+
steps: [
|
|
17048
|
+
step("28 pedidos entraram na fila\u2026", "start"),
|
|
17049
|
+
step("Consultando tr\xE2nsito, frota e janelas em paralelo\u2026", "traffic", "fleet", "windows"),
|
|
17050
|
+
step("Otimizador montando rotas\u2026", "optimize"),
|
|
17051
|
+
step("Despachando ve\xEDculos\u2026", "dispatch"),
|
|
17052
|
+
step("Notificando clientes via WhatsApp\u2026", "notify"),
|
|
17053
|
+
step("Publicando painel de tracking\u2026", "track")
|
|
17054
|
+
]
|
|
17055
|
+
};
|
|
16902
17056
|
var lgpdWorkflow = {
|
|
16903
17057
|
title: "LGPD compliance \u2014 privacy sweep",
|
|
16904
17058
|
description: "Scan audit logs \u2192 detect PII access violations \u2192 remediate \u2192 notify DPO \u2192 report.",
|
|
@@ -25095,10 +25249,13 @@ exports.koriDepartmentFlows = koriDepartmentFlows;
|
|
|
25095
25249
|
exports.lgpdWorkflow = lgpdWorkflow;
|
|
25096
25250
|
exports.listItem = listItem;
|
|
25097
25251
|
exports.listItemReduced = listItemReduced;
|
|
25252
|
+
exports.logisticsWorkflow = logisticsWorkflow;
|
|
25253
|
+
exports.manufacturingWorkflow = manufacturingWorkflow;
|
|
25098
25254
|
exports.marketingWorkflow = marketingWorkflow;
|
|
25099
25255
|
exports.notificationBanner = notificationBanner;
|
|
25100
25256
|
exports.notificationBannerReduced = notificationBannerReduced;
|
|
25101
25257
|
exports.pageControlDot = pageControlDot;
|
|
25258
|
+
exports.payrollWorkflow = payrollWorkflow;
|
|
25102
25259
|
exports.prefersReducedMotion = prefersReducedMotion;
|
|
25103
25260
|
exports.registerCountry = registerCountry;
|
|
25104
25261
|
exports.registerSubdivisionTheme = registerSubdivisionTheme;
|
|
@@ -25116,6 +25273,7 @@ exports.slideUp = slideUp;
|
|
|
25116
25273
|
exports.springPresets = springPresets;
|
|
25117
25274
|
exports.springPresetsReduced = springPresetsReduced;
|
|
25118
25275
|
exports.staggerContainer = staggerContainer;
|
|
25276
|
+
exports.supportWorkflow = supportWorkflow;
|
|
25119
25277
|
exports.swipeActionThreshold = swipeActionThreshold;
|
|
25120
25278
|
exports.swipeConstraints = swipeConstraints;
|
|
25121
25279
|
exports.useGeoMapState = useGeoMapState;
|
|
@@ -25125,5 +25283,5 @@ exports.usePullToRefresh = usePullToRefresh;
|
|
|
25125
25283
|
exports.validateDashboardSpec = validateDashboardSpec;
|
|
25126
25284
|
exports.xScale = xScale;
|
|
25127
25285
|
exports.yScale = yScale;
|
|
25128
|
-
//# sourceMappingURL=chunk-
|
|
25129
|
-
//# sourceMappingURL=chunk-
|
|
25286
|
+
//# sourceMappingURL=chunk-3J4F3ZDT.js.map
|
|
25287
|
+
//# sourceMappingURL=chunk-3J4F3ZDT.js.map
|