@datatechsolutions/ui 2.11.27 → 2.11.30
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 +133 -133
- package/dist/astrlabe/index.mjs +4 -4
- package/dist/astrlabe/workflow-canvas.js +4 -4
- package/dist/astrlabe/workflow-canvas.mjs +3 -3
- package/dist/brand/index.d.mts +85 -0
- package/dist/brand/index.d.ts +85 -0
- package/dist/brand/index.js +66 -0
- package/dist/brand/index.js.map +1 -0
- package/dist/brand/index.mjs +64 -0
- package/dist/brand/index.mjs.map +1 -0
- package/dist/{chunk-NS6EPZOO.mjs → chunk-5ZWN5Q7H.mjs} +3 -3
- package/dist/{chunk-NS6EPZOO.mjs.map → chunk-5ZWN5Q7H.mjs.map} +1 -1
- package/dist/{chunk-VIZ3MFLZ.js → chunk-KMDY6OLI.js} +59 -76
- package/dist/chunk-KMDY6OLI.js.map +1 -0
- package/dist/{chunk-TLZ3SAQW.js → chunk-KPHTHSHJ.js} +3 -3
- package/dist/{chunk-TLZ3SAQW.js.map → chunk-KPHTHSHJ.js.map} +1 -1
- package/dist/{chunk-LCOSRCQA.mjs → chunk-N4G3UXRU.mjs} +14 -31
- package/dist/chunk-N4G3UXRU.mjs.map +1 -0
- package/dist/index.js +730 -730
- package/dist/index.mjs +2 -2
- package/package.json +9 -3
- package/src/brand/logos/astrlabe-icon.svg +40 -0
- package/src/brand/logos/astrlabe-logo-dark.svg +41 -0
- package/src/brand/logos/astrlabe-logo.svg +49 -0
- package/src/brand/logos/fuel-icon.svg +32 -0
- package/src/brand/logos/fuel-logo-dark.svg +43 -0
- package/src/brand/logos/fuel-logo.svg +43 -0
- package/src/brand/logos/kori-icon.svg +45 -0
- package/src/brand/logos/kori-logo-dark.svg +40 -0
- package/src/brand/logos/kori-logo.svg +43 -0
- package/src/brand/logos/windsock-icon.svg +78 -0
- package/src/brand/logos/windsock-logo-dark.svg +66 -0
- package/src/brand/logos/windsock-logo.svg +66 -0
- package/dist/chunk-LCOSRCQA.mjs.map +0 -1
- package/dist/chunk-VIZ3MFLZ.js.map +0 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { ToggleSwitch, GlassModal, ContextMenu, FormInput, FormSelect, FormTextarea, Button, IconButton } from './chunk-
|
|
2
|
+
import { ToggleSwitch, GlassModal, ContextMenu, FormInput, FormSelect, FormTextarea, Button, IconButton } from './chunk-5ZWN5Q7H.mjs';
|
|
3
|
+
import { useTranslations, I18nProvider, createI18nFromMessages } from './chunk-7VJ7CMMT.mjs';
|
|
3
4
|
import { GraphNodeHeader, GraphNodeMeta, GraphNodeBadge, GraphNodeIconBubble } from './chunk-OZNTQROP.mjs';
|
|
4
5
|
import { getAgentTier, createDefaultLogicNodeConfig, applyDagreLayout } from './chunk-TLPPVL3W.mjs';
|
|
5
|
-
import { useTranslations, I18nProvider, createI18nFromMessages } from './chunk-7VJ7CMMT.mjs';
|
|
6
6
|
import { memo, useState, useRef, useCallback, useEffect, lazy, createContext, useMemo, useContext } from 'react';
|
|
7
7
|
import { Position, NodeResizer, MarkerType, useReactFlow, getBezierPath, BaseEdge, EdgeLabelRenderer, Handle, ReactFlowProvider, useNodesState, useEdgesState, addEdge, BackgroundVariant } from '@xyflow/react';
|
|
8
8
|
import '@xyflow/react/dist/style.css';
|
|
@@ -2820,8 +2820,6 @@ var DatasourceFlowNode = memo(function DatasourceFlowNode2({ id, data, selected
|
|
|
2820
2820
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-wrap items-center gap-2", children: [
|
|
2821
2821
|
config.dialect && /* @__PURE__ */ jsx(NodeCardBadge, { className: "inline-flex items-center rounded-full px-2 py-0.5 text-[10px] font-semibold bg-cyan-100 text-cyan-700 dark:bg-cyan-900/30 dark:text-cyan-300", children: config.dialect }),
|
|
2822
2822
|
readOnly && /* @__PURE__ */ jsx(NodeCardBadge, { className: "inline-flex items-center rounded-full px-2 py-0.5 text-[10px] font-medium bg-slate-100 text-slate-700 dark:bg-slate-500/20 dark:text-slate-300", children: "Sample Data" }),
|
|
2823
|
-
/* @__PURE__ */ jsx(NodeCardBadge, { className: "inline-flex items-center rounded-full px-2 py-0.5 text-[10px] font-medium bg-cyan-100 text-cyan-700 dark:bg-cyan-900/30 dark:text-cyan-300", children: config.table }),
|
|
2824
|
-
/* @__PURE__ */ jsx(NodeCardBadge, { className: "inline-flex items-center rounded-full px-2 py-0.5 text-[10px] font-medium bg-blue-50 text-blue-700 dark:bg-blue-900/25 dark:text-blue-300", children: config.outputVariable }),
|
|
2825
2823
|
columnCount > 0 && /* @__PURE__ */ jsxs("span", { className: "text-[10px] text-gray-400 dark:text-gray-500", children: [
|
|
2826
2824
|
columnCount,
|
|
2827
2825
|
" ",
|
|
@@ -2834,33 +2832,18 @@ var DatasourceFlowNode = memo(function DatasourceFlowNode2({ id, data, selected
|
|
|
2834
2832
|
t("datasourceFilters")
|
|
2835
2833
|
] })
|
|
2836
2834
|
] }),
|
|
2837
|
-
!isCompact && /* @__PURE__ */ jsxs("div", { className: "mt-2
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
columnCount > visibleColumns.length && /* @__PURE__ */ jsxs("span", { className: "text-[10px] text-gray-400 dark:text-gray-500", children: [
|
|
2847
|
-
"+",
|
|
2848
|
-
columnCount - visibleColumns.length,
|
|
2849
|
-
" more"
|
|
2835
|
+
!isCompact && /* @__PURE__ */ jsxs("div", { className: "mt-2 space-y-1", children: [
|
|
2836
|
+
/* @__PURE__ */ jsxs("p", { className: "truncate text-[10px] text-gray-500 dark:text-gray-400", children: [
|
|
2837
|
+
config.table,
|
|
2838
|
+
" \u2192 ",
|
|
2839
|
+
config.outputVariable
|
|
2840
|
+
] }),
|
|
2841
|
+
/* @__PURE__ */ jsxs("p", { className: "truncate text-[10px] text-gray-400 dark:text-gray-500", children: [
|
|
2842
|
+
visibleColumns.join(", "),
|
|
2843
|
+
columnCount > visibleColumns.length ? ` +${columnCount - visibleColumns.length} more` : ""
|
|
2850
2844
|
] })
|
|
2851
2845
|
] }),
|
|
2852
|
-
!isCompact && filterEntries.length > 0 && /* @__PURE__ */ jsx("
|
|
2853
|
-
NodeCardBadge,
|
|
2854
|
-
{
|
|
2855
|
-
className: "inline-flex items-center rounded-full px-2 py-0.5 text-[10px] font-medium bg-cyan-50 text-cyan-700 dark:bg-cyan-900/20 dark:text-cyan-300",
|
|
2856
|
-
children: [
|
|
2857
|
-
field,
|
|
2858
|
-
" \u2192 ",
|
|
2859
|
-
variableName
|
|
2860
|
-
]
|
|
2861
|
-
},
|
|
2862
|
-
`${field}:${variableName}`
|
|
2863
|
-
)) }),
|
|
2846
|
+
!isCompact && filterEntries.length > 0 && /* @__PURE__ */ jsx("p", { className: "mt-2 truncate text-[10px] text-cyan-700 dark:text-cyan-300", children: filterEntries.map(([field, variableName]) => `${field} \u2192 ${variableName}`).join(" \xB7 ") }),
|
|
2864
2847
|
onRemoveFromCanvas && /* @__PURE__ */ jsx(
|
|
2865
2848
|
"span",
|
|
2866
2849
|
{
|
|
@@ -7562,5 +7545,5 @@ function Workspace({
|
|
|
7562
7545
|
}
|
|
7563
7546
|
|
|
7564
7547
|
export { AgentFlowNode, AgentToolFlowNode, AnswerFlowNode, AnthropicIcon, CATEGORY_COLORS, CATEGORY_PILL_COLORS, CodeFlowNode, CrewAIIcon, DocumentExtractorFlowNode, EndFlowNode, EntityFlowNode, FRAMEWORK_META, GoogleADKIcon, GroupFlowNode, HttpRequestFlowNode, ICON_MAP, 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, WorkflowCanvas, Workspace, getCompatibleModels, getDefaultFrameworkForModel, getEntityBadgeColor, getEntityGradient, getEntityHandleColor, getEntityIcon, getEntityMinimapColor, getFrameworkMeta, getNodeExecutionAccent, getNodeExecutionAccentRgb, isFrameworkCompatibleWithProviders, isModelCompatibleWithFramework, useModalStore, useWorkflowBuilderClient, useWorkflowBuilderClientOptional, useWorkflowStore };
|
|
7565
|
-
//# sourceMappingURL=chunk-
|
|
7566
|
-
//# sourceMappingURL=chunk-
|
|
7548
|
+
//# sourceMappingURL=chunk-N4G3UXRU.mjs.map
|
|
7549
|
+
//# sourceMappingURL=chunk-N4G3UXRU.mjs.map
|