@elevasis/ui 1.7.3 → 1.7.4
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/{CoreAuthKitInner-Y6LQYIPX.js → CoreAuthKitInner-3J4RVQO6.js} +0 -1
- package/dist/api/index.js +0 -1
- package/dist/auth/context.js +0 -1
- package/dist/auth/index.js +0 -1
- package/dist/charts/index.js +1 -1
- package/dist/{chunk-2ISUX46O.js → chunk-F6RBK7NJ.js} +1 -6
- package/dist/{chunk-K3YVC5RW.js → chunk-Y6DNK5ZD.js} +1 -1
- package/dist/{chunk-54S7KNJV.js → chunk-Y7UY3HI4.js} +1 -1
- package/dist/components/index.d.ts +1 -2
- package/dist/components/index.js +33 -34
- package/dist/components/navigation/index.js +0 -1
- package/dist/execution/index.js +0 -1
- package/dist/graph/index.js +1 -2
- package/dist/hooks/index.js +0 -1
- package/dist/hooks/published.js +0 -1
- package/dist/index.js +3 -4
- package/dist/initialization/index.js +0 -1
- package/dist/layout/index.js +0 -1
- package/dist/organization/index.js +0 -1
- package/dist/profile/index.js +0 -1
- package/dist/provider/index.js +2 -3
- package/dist/provider/published.js +1 -2
- package/dist/router/context.js +0 -1
- package/dist/router/index.js +0 -1
- package/dist/sse/index.js +1 -1
- package/dist/supabase/index.js +0 -1
- package/dist/theme/index.js +0 -1
- package/dist/typeform/index.js +0 -1
- package/dist/typeform/schemas.js +0 -1
- package/dist/utils/index.js +0 -1
- package/package.json +3 -3
- package/dist/chunk-MLKGABMK.js +0 -7
package/dist/api/index.js
CHANGED
package/dist/auth/context.js
CHANGED
package/dist/auth/index.js
CHANGED
package/dist/charts/index.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import '../chunk-MLKGABMK.js';
|
|
2
1
|
import { useMemo, useState, useEffect } from 'react';
|
|
3
2
|
import { useComputedColorScheme, Group, Text, Box } from '@mantine/core';
|
|
4
3
|
import { ResponsiveContainer, AreaChart, CartesianGrid, XAxis, YAxis, Tooltip, ReferenceLine, Area } from 'recharts';
|
|
5
4
|
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
6
5
|
|
|
6
|
+
// src/components/charts/CyberAreaChart.tsx
|
|
7
7
|
var THEME_DERIVED = {
|
|
8
8
|
grid: "var(--color-border)",
|
|
9
9
|
gridLine: "var(--color-border)",
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { __export } from './chunk-MLKGABMK.js';
|
|
2
1
|
import { useState, useMemo, useCallback, useEffect } from 'react';
|
|
3
2
|
|
|
4
3
|
// src/graph/constants.ts
|
|
@@ -86,10 +85,6 @@ function useConnectionHighlight(nodes, edges) {
|
|
|
86
85
|
}
|
|
87
86
|
|
|
88
87
|
// src/graph/Graph.module.css.js
|
|
89
|
-
var Graph_module_css_exports = {};
|
|
90
|
-
__export(Graph_module_css_exports, {
|
|
91
|
-
default: () => Graph_module_css_default
|
|
92
|
-
});
|
|
93
88
|
var Graph_module_css_default = { "livePulse": "livePulse", "graphContainer": "graphContainer", "react-flow__node": "react-flow__node", "selected": "selected", "node": "node", "nodeCard": "nodeCard", "nodeCardSelected": "nodeCardSelected", "nodeAgent": "nodeAgent", "nodeWorkflow": "nodeWorkflow", "nodeTrigger": "nodeTrigger", "nodeIntegration": "nodeIntegration", "nodeExternal": "nodeExternal", "nodeHuman": "nodeHuman", "nodePrimary": "nodePrimary", "handle": "handle", "nodeIcon": "nodeIcon", "badge": "badge", "badgeProd": "badgeProd", "edge": "edge", "edgeAnimated": "edgeAnimated", "edgeGlow": "edgeGlow", "edgeHighlighted": "edgeHighlighted", "edgeLabel": "edgeLabel", "legend": "legend", "legendDot": "legendDot", "nodeHighlighted": "nodeHighlighted", "nodeDimmed": "nodeDimmed", "edgeDimmed": "edgeDimmed", "edgeLabelDimmed": "edgeLabelDimmed" };
|
|
94
89
|
|
|
95
90
|
// src/graph/hooks/useGraphHighlighting.ts
|
|
@@ -315,4 +310,4 @@ function calculateGraphHeight({
|
|
|
315
310
|
return Math.min(calculated, maxHeight);
|
|
316
311
|
}
|
|
317
312
|
|
|
318
|
-
export { GRAPH_CONSTANTS, Graph_module_css_default,
|
|
313
|
+
export { GRAPH_CONSTANTS, Graph_module_css_default, calculateGraphHeight, useConnectionHighlight, useDirectedChainHighlighting, useFitViewTrigger, useGraphHighlighting, useNodeSelection };
|
|
@@ -10,7 +10,7 @@ import { lazy, Suspense, useRef } from 'react';
|
|
|
10
10
|
import { QueryClientProvider, QueryClient } from '@tanstack/react-query';
|
|
11
11
|
import { jsx, Fragment } from 'react/jsx-runtime';
|
|
12
12
|
|
|
13
|
-
var LazyCoreAuthKitInner = lazy(() => import('./CoreAuthKitInner-
|
|
13
|
+
var LazyCoreAuthKitInner = lazy(() => import('./CoreAuthKitInner-3J4RVQO6.js').then((m) => ({ default: m.CoreAuthKitInner })));
|
|
14
14
|
var defaultQueryClient = null;
|
|
15
15
|
function getDefaultQueryClient() {
|
|
16
16
|
if (!defaultQueryClient) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { getPreset, generateShades, mantineThemeOverride, createCssVariablesResolver } from './chunk-KB5NKPTN.js';
|
|
2
|
-
import { ElevasisCoreProvider } from './chunk-
|
|
2
|
+
import { ElevasisCoreProvider } from './chunk-Y6DNK5ZD.js';
|
|
3
3
|
import { getErrorInfo, formatErrorMessage, getErrorTitle } from './chunk-4VGWQ5AN.js';
|
|
4
4
|
import { useMemo, useEffect } from 'react';
|
|
5
5
|
import { mergeThemeOverrides, MantineProvider } from '@mantine/core';
|
|
@@ -6,8 +6,7 @@ import { Icon, IconCheck } from '@tabler/icons-react';
|
|
|
6
6
|
import { Components } from 'react-markdown';
|
|
7
7
|
import { UseFormReturnType } from '@mantine/form';
|
|
8
8
|
import { NodeProps, Node, EdgeProps, Edge } from '@xyflow/react';
|
|
9
|
-
|
|
10
|
-
export { Graph_module_css as graphStyles };
|
|
9
|
+
export { default as graphStyles } from '../graph/Graph.module.css';
|
|
11
10
|
|
|
12
11
|
interface EmptyStateProps {
|
|
13
12
|
/** Icon component to display (e.g., IconKey from @tabler/icons-react) */
|
package/dist/components/index.js
CHANGED
|
@@ -3,8 +3,8 @@ import '../chunk-TYV5NJV2.js';
|
|
|
3
3
|
import { useMarkAsRead, useMarkAllAsRead, useNotificationCount, useNotifications, useSubmitAction, useDeleteTask } from '../chunk-G4TAF3T6.js';
|
|
4
4
|
import '../chunk-JGJSZ3UE.js';
|
|
5
5
|
import '../chunk-LHQTTUL2.js';
|
|
6
|
-
import { Graph_module_css_default,
|
|
7
|
-
export {
|
|
6
|
+
import { Graph_module_css_default, useDirectedChainHighlighting, useNodeSelection, useFitViewTrigger, useGraphHighlighting, calculateGraphHeight, GRAPH_CONSTANTS } from '../chunk-F6RBK7NJ.js';
|
|
7
|
+
export { Graph_module_css_default as graphStyles } from '../chunk-F6RBK7NJ.js';
|
|
8
8
|
import { STATUS_COLORS, getStatusIcon, formatDuration, getStatusColors, AGENT_CONSTANTS, shouldAnimateEdge, ResourceStatusColors, TIMELINE_CONSTANTS, calculateBarPosition, CONTAINER_CONSTANTS, useExecutionPath, useUnifiedWorkflowLayout, WORKFLOW_CONSTANTS, useReactFlowAgent } from '../chunk-YJFTZUJJ.js';
|
|
9
9
|
export { CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS } from '../chunk-YJFTZUJJ.js';
|
|
10
10
|
import '../chunk-TIRMFDM4.js';
|
|
@@ -18,7 +18,6 @@ import '../chunk-KA7LO7U5.js';
|
|
|
18
18
|
import '../chunk-DD3CCMCZ.js';
|
|
19
19
|
import { useAuthContext } from '../chunk-7PLEQFHO.js';
|
|
20
20
|
import { useRouterContext } from '../chunk-Q7DJKLEN.js';
|
|
21
|
-
import '../chunk-MLKGABMK.js';
|
|
22
21
|
import { Paper, Stack, Text, Group, Badge, Box, useComputedColorScheme, Center, Title, Button, Loader, Collapse, ScrollArea, Card, Skeleton, Select, Alert, Code, ThemeIcon, Grid, Modal, Space, TextInput, Table, Textarea, Radio, Checkbox, NumberInput, Tooltip, UnstyledButton, Divider, Popover, Indicator, ActionIcon, SegmentedControl, Menu, Accordion, SimpleGrid } from '@mantine/core';
|
|
23
22
|
import { jsxs, jsx, Fragment } from 'react/jsx-runtime';
|
|
24
23
|
import { IconPlayerPlay, IconPlayerStop, IconArrowsSplit, IconSquare, IconBrain, IconFileText, IconMail, IconSend, IconClock, IconArrowUp, IconMessageCircle, IconRocket, IconEye, IconEdit, IconAlertTriangle, IconRefresh, IconX, IconCheck, IconMinus, IconTrendingUp, IconTrendingDown, IconChevronUp, IconChevronDown, IconAlertCircle, IconInfoCircle, IconChevronRight, IconSelector, IconTrash, IconCircle, IconCircleFilled, IconBell, IconFocus2, IconRobot, IconGitBranch, IconDotsVertical, IconExternalLink, IconTool, IconSettings, IconCpu, IconClockHour4, IconVersions, IconNetwork, IconSitemap, IconFileOff, IconCircleX, IconCircleCheck } from '@tabler/icons-react';
|
|
@@ -1556,7 +1555,7 @@ function GraphLegend({ title = "Legend", items, position = "bottom-right" }) {
|
|
|
1556
1555
|
Card,
|
|
1557
1556
|
{
|
|
1558
1557
|
p: "xs",
|
|
1559
|
-
className:
|
|
1558
|
+
className: Graph_module_css_default.legend,
|
|
1560
1559
|
style: {
|
|
1561
1560
|
backgroundColor: "var(--glass-background)"
|
|
1562
1561
|
},
|
|
@@ -1636,12 +1635,12 @@ function GraphFitViewHandler({
|
|
|
1636
1635
|
return null;
|
|
1637
1636
|
}
|
|
1638
1637
|
var colorClassMap = {
|
|
1639
|
-
violet:
|
|
1640
|
-
blue:
|
|
1641
|
-
orange:
|
|
1642
|
-
teal:
|
|
1643
|
-
gray:
|
|
1644
|
-
yellow:
|
|
1638
|
+
violet: Graph_module_css_default.nodeAgent,
|
|
1639
|
+
blue: Graph_module_css_default.nodeWorkflow,
|
|
1640
|
+
orange: Graph_module_css_default.nodeTrigger,
|
|
1641
|
+
teal: Graph_module_css_default.nodeIntegration,
|
|
1642
|
+
gray: Graph_module_css_default.nodeExternal,
|
|
1643
|
+
yellow: Graph_module_css_default.nodeHuman
|
|
1645
1644
|
};
|
|
1646
1645
|
var BaseNode = memo(function BaseNode2({
|
|
1647
1646
|
children,
|
|
@@ -1654,18 +1653,18 @@ var BaseNode = memo(function BaseNode2({
|
|
|
1654
1653
|
showSourceHandle = true,
|
|
1655
1654
|
showTargetHandle = true
|
|
1656
1655
|
}) {
|
|
1657
|
-
const typeClass = colorClassMap[color] ||
|
|
1658
|
-
const highlightClass = highlighted ?
|
|
1656
|
+
const typeClass = colorClassMap[color] || Graph_module_css_default.nodeAgent;
|
|
1657
|
+
const highlightClass = highlighted ? Graph_module_css_default.nodeHighlighted : "";
|
|
1659
1658
|
const targetPosition = handleDirection === "horizontal" ? Position.Left : Position.Top;
|
|
1660
1659
|
const sourcePosition = handleDirection === "horizontal" ? Position.Right : Position.Bottom;
|
|
1661
|
-
return /* @__PURE__ */ jsxs("div", { className: `${
|
|
1660
|
+
return /* @__PURE__ */ jsxs("div", { className: `${Graph_module_css_default.node} ${typeClass} ${highlightClass} ${className}`, children: [
|
|
1662
1661
|
showTargetHandle && /* @__PURE__ */ jsx(Handle, { type: "target", position: targetPosition, style: { opacity: 0, pointerEvents: "none" } }),
|
|
1663
1662
|
showSourceHandle && /* @__PURE__ */ jsx(Handle, { type: "source", position: sourcePosition, style: { opacity: 0, pointerEvents: "none" } }),
|
|
1664
1663
|
/* @__PURE__ */ jsx(
|
|
1665
1664
|
Paper,
|
|
1666
1665
|
{
|
|
1667
1666
|
p: "sm",
|
|
1668
|
-
className: `${
|
|
1667
|
+
className: `${Graph_module_css_default.nodeCard} ${selected ? Graph_module_css_default.nodeCardSelected : ""}`,
|
|
1669
1668
|
style: {
|
|
1670
1669
|
width,
|
|
1671
1670
|
border: `1px solid ${selected ? `var(--mantine-color-${color}-5)` : "var(--color-border)"}`,
|
|
@@ -1976,7 +1975,7 @@ function UnifiedWorkflowGraph({
|
|
|
1976
1975
|
selectNodesOnDrag: false,
|
|
1977
1976
|
zoomOnScroll: true,
|
|
1978
1977
|
panOnDrag: true,
|
|
1979
|
-
className:
|
|
1978
|
+
className: Graph_module_css_default.graphContainer,
|
|
1980
1979
|
children: [
|
|
1981
1980
|
/* @__PURE__ */ jsx(GraphBackground, {}),
|
|
1982
1981
|
/* @__PURE__ */ jsx(Panel, { position: "top-right", style: { marginTop: 12, marginRight: 12 }, children: /* @__PURE__ */ jsx(
|
|
@@ -2101,7 +2100,7 @@ var AgentIterationNode = memo(function AgentIterationNode2({ data, selected }) {
|
|
|
2101
2100
|
top: 4,
|
|
2102
2101
|
right: 4
|
|
2103
2102
|
},
|
|
2104
|
-
children: /* @__PURE__ */ jsx("span", { className:
|
|
2103
|
+
children: /* @__PURE__ */ jsx("span", { className: Graph_module_css_default.livePulse, children: "LIVE" })
|
|
2105
2104
|
}
|
|
2106
2105
|
)
|
|
2107
2106
|
] });
|
|
@@ -2189,12 +2188,12 @@ function AgentExecutionVisualizer({
|
|
|
2189
2188
|
);
|
|
2190
2189
|
const { handlePaneClick, handleContainerClick } = useNodeSelection(selectedIterationId, handleIterationSelect);
|
|
2191
2190
|
const handleNodeClick = useCallback(
|
|
2192
|
-
(_event,
|
|
2193
|
-
if (
|
|
2194
|
-
handleIterationSelect(selectedIterationId ===
|
|
2191
|
+
(_event, node) => {
|
|
2192
|
+
if (node.id === "initialization" || node.id === "completion") {
|
|
2193
|
+
handleIterationSelect(selectedIterationId === node.id ? null : node.id);
|
|
2195
2194
|
return;
|
|
2196
2195
|
}
|
|
2197
|
-
const iterationNumber = Number.parseInt(
|
|
2196
|
+
const iterationNumber = Number.parseInt(node.id.replace("iteration-", ""), 10);
|
|
2198
2197
|
if (!Number.isNaN(iterationNumber)) {
|
|
2199
2198
|
handleIterationSelect(iterationNumber === selectedIterationId ? null : iterationNumber);
|
|
2200
2199
|
}
|
|
@@ -2226,7 +2225,7 @@ function AgentExecutionVisualizer({
|
|
|
2226
2225
|
selectNodesOnDrag: false,
|
|
2227
2226
|
zoomOnScroll: false,
|
|
2228
2227
|
panOnDrag: false,
|
|
2229
|
-
className:
|
|
2228
|
+
className: Graph_module_css_default.graphContainer,
|
|
2230
2229
|
children: [
|
|
2231
2230
|
/* @__PURE__ */ jsx(GraphBackground, {}),
|
|
2232
2231
|
/* @__PURE__ */ jsx(GraphFitViewButton, { padding: AGENT_CONSTANTS.FIT_VIEW_PADDING, variant: "mantine", duration: 300 }),
|
|
@@ -2798,10 +2797,10 @@ function useNewKnowledgeMapLayout(knowledgeMap, agentName) {
|
|
|
2798
2797
|
return { nodes: [], edges: [] };
|
|
2799
2798
|
}
|
|
2800
2799
|
const agentNodeId = "__agent__";
|
|
2801
|
-
const edges = knowledgeMap.nodes.map((
|
|
2802
|
-
id: `edge-${agentNodeId}-${
|
|
2800
|
+
const edges = knowledgeMap.nodes.map((node) => ({
|
|
2801
|
+
id: `edge-${agentNodeId}-${node.id}`,
|
|
2803
2802
|
source: agentNodeId,
|
|
2804
|
-
target:
|
|
2803
|
+
target: node.id,
|
|
2805
2804
|
type: "knowledgeMap",
|
|
2806
2805
|
data: {}
|
|
2807
2806
|
}));
|
|
@@ -2815,8 +2814,8 @@ function useNewKnowledgeMapLayout(knowledgeMap, agentName) {
|
|
|
2815
2814
|
marginy: 40
|
|
2816
2815
|
});
|
|
2817
2816
|
dagreGraph.setNode(agentNodeId, { width: NODE_WIDTH, height: NODE_HEIGHT });
|
|
2818
|
-
knowledgeMap.nodes.forEach((
|
|
2819
|
-
dagreGraph.setNode(
|
|
2817
|
+
knowledgeMap.nodes.forEach((node) => {
|
|
2818
|
+
dagreGraph.setNode(node.id, { width: NODE_WIDTH, height: NODE_HEIGHT });
|
|
2820
2819
|
});
|
|
2821
2820
|
edges.forEach((edge) => {
|
|
2822
2821
|
dagreGraph.setEdge(edge.source, edge.target);
|
|
@@ -2839,21 +2838,21 @@ function useNewKnowledgeMapLayout(knowledgeMap, agentName) {
|
|
|
2839
2838
|
isAgentNode: true
|
|
2840
2839
|
}
|
|
2841
2840
|
};
|
|
2842
|
-
const knowledgeNodes = knowledgeMap.nodes.map((
|
|
2843
|
-
const dagreNode = dagreGraph.node(
|
|
2841
|
+
const knowledgeNodes = knowledgeMap.nodes.map((node) => {
|
|
2842
|
+
const dagreNode = dagreGraph.node(node.id);
|
|
2844
2843
|
return {
|
|
2845
|
-
id:
|
|
2844
|
+
id: node.id,
|
|
2846
2845
|
type: "knowledgeMap",
|
|
2847
2846
|
position: {
|
|
2848
2847
|
x: dagreNode.x - NODE_WIDTH / 2,
|
|
2849
2848
|
y: dagreNode.y - NODE_HEIGHT / 2
|
|
2850
2849
|
},
|
|
2851
2850
|
data: {
|
|
2852
|
-
id:
|
|
2853
|
-
name:
|
|
2854
|
-
description:
|
|
2855
|
-
loaded:
|
|
2856
|
-
hasPrompt:
|
|
2851
|
+
id: node.id,
|
|
2852
|
+
name: node.id,
|
|
2853
|
+
description: node.description,
|
|
2854
|
+
loaded: node.loaded,
|
|
2855
|
+
hasPrompt: node.hasPrompt,
|
|
2857
2856
|
isAgentNode: false
|
|
2858
2857
|
}
|
|
2859
2858
|
};
|
package/dist/execution/index.js
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
1
|
export { AGENT_CONSTANTS, CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS, STATUS_COLORS, TIMELINE_CONSTANTS, WORKFLOW_CONSTANTS, calculateBarPosition, formatDuration, getEdgeColor, getEdgeOpacity, getResourceStatusColor, getStatusColors, getStatusIcon, shouldAnimateEdge, useAgentIterationData, useExecutionPath, useMergedExecution, useReactFlowAgent, useTimelineData, useUnifiedWorkflowLayout, useWorkflowStepsLayout } from '../chunk-YJFTZUJJ.js';
|
|
2
|
-
import '../chunk-MLKGABMK.js';
|
package/dist/graph/index.js
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export { GRAPH_CONSTANTS, calculateGraphHeight, useConnectionHighlight, useDirectedChainHighlighting, useFitViewTrigger, useGraphHighlighting, useNodeSelection } from '../chunk-
|
|
2
|
-
import '../chunk-MLKGABMK.js';
|
|
1
|
+
export { GRAPH_CONSTANTS, calculateGraphHeight, useConnectionHighlight, useDirectedChainHighlighting, useFitViewTrigger, useGraphHighlighting, useNodeSelection } from '../chunk-F6RBK7NJ.js';
|
package/dist/hooks/index.js
CHANGED
package/dist/hooks/published.js
CHANGED
|
@@ -7,7 +7,6 @@ import '../chunk-FWZJH3TL.js';
|
|
|
7
7
|
import { useElevasisServices } from '../chunk-KA7LO7U5.js';
|
|
8
8
|
import { useOrganization } from '../chunk-DD3CCMCZ.js';
|
|
9
9
|
import { useAuthContext } from '../chunk-7PLEQFHO.js';
|
|
10
|
-
import '../chunk-MLKGABMK.js';
|
|
11
10
|
import { useQuery, useQueryClient, useMutation } from '@tanstack/react-query';
|
|
12
11
|
import { useState, useRef, useCallback, useEffect } from 'react';
|
|
13
12
|
|
package/dist/index.js
CHANGED
|
@@ -7,11 +7,11 @@ import './chunk-TYV5NJV2.js';
|
|
|
7
7
|
export { OperationsService, createUseFeatureAccess, executionsKeys, observabilityKeys, scheduleKeys, sortData, useActivities, useActivityTrend, useBatchDelete, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCommandQueue, useCommandQueueTotals, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateSchedule, useDashboardMetrics, useDeleteExecution, useDeleteSchedule, useDeleteTask, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecution, useExecutionHealth, useExecutionLogs, useExecutions, useGetExecutionHistory, useGetSchedule, useListSchedules, useMarkAllAsRead, useMarkAsRead, useNotificationCount, useNotifications, usePaginationState, usePatchTask, usePauseSchedule, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResources, useResumeSchedule, useRetryExecution, useSSEConnection, useSortedData, useSubmitAction, useSuccessNotification, useTableSelection, useTableSort, useTopFailingResources, useUnresolveError, useUpdateAnchor, useUpdateSchedule, useWarningNotification } from './chunk-G4TAF3T6.js';
|
|
8
8
|
import './chunk-JGJSZ3UE.js';
|
|
9
9
|
export { TanStackRouterBridge } from './chunk-LHQTTUL2.js';
|
|
10
|
-
export { GRAPH_CONSTANTS, calculateGraphHeight, useConnectionHighlight, useDirectedChainHighlighting, useFitViewTrigger, useGraphHighlighting, useNodeSelection } from './chunk-
|
|
10
|
+
export { GRAPH_CONSTANTS, calculateGraphHeight, useConnectionHighlight, useDirectedChainHighlighting, useFitViewTrigger, useGraphHighlighting, useNodeSelection } from './chunk-F6RBK7NJ.js';
|
|
11
11
|
export { AGENT_CONSTANTS, CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS, STATUS_COLORS, TIMELINE_CONSTANTS, WORKFLOW_CONSTANTS, calculateBarPosition, formatDuration, getEdgeColor, getEdgeOpacity, getResourceStatusColor, getStatusColors, getStatusIcon, shouldAnimateEdge, useAgentIterationData, useExecutionPath, useMergedExecution, useReactFlowAgent, useTimelineData, useUnifiedWorkflowLayout, useWorkflowStepsLayout } from './chunk-YJFTZUJJ.js';
|
|
12
|
-
export { ElevasisProvider, ElevasisUIProvider, mantineNotificationAdapter } from './chunk-
|
|
12
|
+
export { ElevasisProvider, ElevasisUIProvider, mantineNotificationAdapter } from './chunk-Y7UY3HI4.js';
|
|
13
13
|
export { TOKEN_VAR_MAP, componentThemes, createCssVariablesResolver, generateShades, getPreset, mantineThemeOverride } from './chunk-KB5NKPTN.js';
|
|
14
|
-
export { ElevasisCoreProvider } from './chunk-
|
|
14
|
+
export { ElevasisCoreProvider } from './chunk-Y6DNK5ZD.js';
|
|
15
15
|
export { OrganizationProvider } from './chunk-SFF5MJEI.js';
|
|
16
16
|
export { ApiClientProvider, useApiClient, useApiClientContext } from './chunk-LBPALY25.js';
|
|
17
17
|
export { NotificationProvider, useNotificationAdapter } from './chunk-TIRMFDM4.js';
|
|
@@ -25,4 +25,3 @@ export { ElevasisServiceProvider, useElevasisServices } from './chunk-KA7LO7U5.j
|
|
|
25
25
|
export { useOrganization } from './chunk-DD3CCMCZ.js';
|
|
26
26
|
export { AuthProvider, useAuthContext } from './chunk-7PLEQFHO.js';
|
|
27
27
|
export { RouterProvider, useRouterContext } from './chunk-Q7DJKLEN.js';
|
|
28
|
-
import './chunk-MLKGABMK.js';
|
package/dist/layout/index.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { NavigationButton, ElevasisLoader } from '../chunk-YGYF6G7W.js';
|
|
2
2
|
import '../chunk-LHQTTUL2.js';
|
|
3
3
|
import { useRouterContext } from '../chunk-Q7DJKLEN.js';
|
|
4
|
-
import '../chunk-MLKGABMK.js';
|
|
5
4
|
import { Collapse, HoverCard, Stack, Group, Text, UnstyledButton, Tooltip, ScrollArea, Menu, Avatar, useComputedColorScheme, Container, Loader, Title, Button, Box, Center, useMantineColorScheme, Switch, Code } from '@mantine/core';
|
|
6
5
|
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
|
7
6
|
import { IconLayoutSidebarLeftExpand, IconLayoutSidebarLeftCollapse, IconUser, IconLogout, IconAlertCircle, IconChevronDown, IconChevronRight, IconMoonStars, IconSun } from '@tabler/icons-react';
|
package/dist/profile/index.js
CHANGED
package/dist/provider/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { ElevasisProvider, ElevasisUIProvider, mantineNotificationAdapter } from '../chunk-
|
|
1
|
+
export { ElevasisProvider, ElevasisUIProvider, mantineNotificationAdapter } from '../chunk-Y7UY3HI4.js';
|
|
2
2
|
import '../chunk-KB5NKPTN.js';
|
|
3
|
-
export { ElevasisCoreProvider } from '../chunk-
|
|
3
|
+
export { ElevasisCoreProvider } from '../chunk-Y6DNK5ZD.js';
|
|
4
4
|
import '../chunk-SFF5MJEI.js';
|
|
5
5
|
import '../chunk-LBPALY25.js';
|
|
6
6
|
export { NotificationProvider, useNotificationAdapter } from '../chunk-TIRMFDM4.js';
|
|
@@ -11,4 +11,3 @@ import '../chunk-L2CM2CUA.js';
|
|
|
11
11
|
export { ElevasisServiceProvider, useElevasisServices } from '../chunk-KA7LO7U5.js';
|
|
12
12
|
import '../chunk-DD3CCMCZ.js';
|
|
13
13
|
import '../chunk-7PLEQFHO.js';
|
|
14
|
-
import '../chunk-MLKGABMK.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ElevasisCoreProvider } from '../chunk-
|
|
1
|
+
export { ElevasisCoreProvider } from '../chunk-Y6DNK5ZD.js';
|
|
2
2
|
import '../chunk-SFF5MJEI.js';
|
|
3
3
|
import '../chunk-LBPALY25.js';
|
|
4
4
|
export { NotificationProvider, useNotificationAdapter } from '../chunk-TIRMFDM4.js';
|
|
@@ -9,4 +9,3 @@ import '../chunk-L2CM2CUA.js';
|
|
|
9
9
|
export { ElevasisServiceProvider, useElevasisServices } from '../chunk-KA7LO7U5.js';
|
|
10
10
|
import '../chunk-DD3CCMCZ.js';
|
|
11
11
|
import '../chunk-7PLEQFHO.js';
|
|
12
|
-
import '../chunk-MLKGABMK.js';
|
package/dist/router/context.js
CHANGED
package/dist/router/index.js
CHANGED
package/dist/sse/index.js
CHANGED
package/dist/supabase/index.js
CHANGED
package/dist/theme/index.js
CHANGED
package/dist/typeform/index.js
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export { answerValueSchema, checkboxWithOtherSchema, multiAnswerValueSchema, radioWithOtherSchema } from '../chunk-6M6OLGQY.js';
|
|
2
|
-
import '../chunk-MLKGABMK.js';
|
|
3
2
|
import { createContext, useMemo, useState, useCallback, useEffect, useContext, useRef } from 'react';
|
|
4
3
|
import { Box, Progress, Text, Group, Button, Kbd, Modal, Stack, Transition, Title, UnstyledButton, TextInput, Textarea, Center, Alert, Card, ActionIcon, Paper } from '@mantine/core';
|
|
5
4
|
import { IconArrowLeft, IconCheck, IconArrowRight, IconPlus, IconPencil, IconTrash, IconX } from '@tabler/icons-react';
|
package/dist/typeform/schemas.js
CHANGED
package/dist/utils/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elevasis/ui",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.4",
|
|
4
4
|
"description": "UI components and platform-aware hooks for building custom frontends on the Elevasis platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -183,8 +183,8 @@
|
|
|
183
183
|
"typescript": "5.9.2",
|
|
184
184
|
"vite": "^7.0.0",
|
|
185
185
|
"@repo/core": "0.0.0",
|
|
186
|
-
"@repo/
|
|
187
|
-
"@repo/
|
|
186
|
+
"@repo/typescript-config": "0.0.0",
|
|
187
|
+
"@repo/eslint-config": "0.0.0"
|
|
188
188
|
},
|
|
189
189
|
"dependencies": {
|
|
190
190
|
"@dagrejs/dagre": "^1.1.4",
|