@elevasis/ui 2.28.1 → 2.29.0
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/api/index.js +2 -2
- package/dist/app/index.js +4 -4
- package/dist/charts/index.js +3 -3
- package/dist/{chunk-PBNIW7KV.js → chunk-3DUOPXOJ.js} +139 -8
- package/dist/{chunk-5R27NFOI.js → chunk-5CW2HXQA.js} +4 -4
- package/dist/{chunk-UOHOKDKL.js → chunk-65RQE3XF.js} +5 -5
- package/dist/{chunk-TVJROM2V.js → chunk-6NHCE7JM.js} +49 -28
- package/dist/{chunk-GJXAAYZ3.js → chunk-6WXDE5LZ.js} +1 -1
- package/dist/{chunk-ZPXV5KI3.js → chunk-7E3FUTND.js} +1 -1
- package/dist/{chunk-M6OJ43NL.js → chunk-A7R2URMV.js} +60 -25
- package/dist/{chunk-YNYGUVGW.js → chunk-AK5E6ILJ.js} +8 -7
- package/dist/{chunk-MZCDRBSI.js → chunk-CEHUFNAL.js} +1 -1
- package/dist/{chunk-CT5IR4ZA.js → chunk-CLUP5H3C.js} +6 -9
- package/dist/{chunk-MYEOTM7D.js → chunk-CN2HC4D4.js} +5 -1
- package/dist/{chunk-JS7VBTC4.js → chunk-FFDAE2QI.js} +82 -2
- package/dist/{chunk-MCRKFDKB.js → chunk-FGDUK74A.js} +4 -4
- package/dist/{chunk-N63RKL3L.js → chunk-HNFQCOD2.js} +4 -4
- package/dist/{chunk-SRNIHB7Y.js → chunk-HXZQWMKE.js} +1 -2
- package/dist/{chunk-3HCTCMAS.js → chunk-OHGNCWJP.js} +3 -3
- package/dist/{chunk-AYSO5A3R.js → chunk-OIMPGKDB.js} +2 -2
- package/dist/{chunk-NU5FNTOB.js → chunk-OWESKPTJ.js} +58 -7
- package/dist/{chunk-K4Q5QUHZ.js → chunk-QNL7UI5G.js} +4 -4
- package/dist/{chunk-HNN3QALL.js → chunk-SZWXQHKO.js} +2 -2
- package/dist/{chunk-MJMFIWEB.js → chunk-Y3YJKKEB.js} +1 -1
- package/dist/components/index.js +25 -25
- package/dist/features/crm/index.js +9 -9
- package/dist/features/dashboard/index.js +10 -10
- package/dist/features/delivery/index.js +9 -9
- package/dist/features/knowledge/index.js +33 -19
- package/dist/features/lead-gen/index.d.ts +17 -1
- package/dist/features/lead-gen/index.js +10 -10
- package/dist/features/monitoring/index.js +11 -11
- package/dist/features/monitoring/requests/index.js +8 -8
- package/dist/features/operations/index.js +14 -14
- package/dist/features/settings/index.js +9 -9
- package/dist/hooks/delivery/index.js +2 -2
- package/dist/hooks/index.js +8 -8
- package/dist/hooks/published.js +8 -8
- package/dist/index.d.ts +1 -3
- package/dist/index.js +8 -8
- package/dist/knowledge/index.d.ts +1 -1
- package/dist/knowledge/index.js +102 -2
- package/dist/provider/index.js +6 -6
- package/dist/provider/published.js +5 -5
- package/dist/test-utils/index.js +2 -2
- package/dist/utils/index.d.ts +1 -3
- package/dist/utils/index.js +1 -1
- package/dist/vite/index.js +2 -2
- package/dist/vite-plugin-knowledge/index.js +1 -1
- package/package.json +4 -4
|
@@ -332,6 +332,7 @@ var FEATURE_PREFIX = "feat:";
|
|
|
332
332
|
var LEAF_PREFIX = "leaf:";
|
|
333
333
|
var FOLDER_PREFIX = "folder:";
|
|
334
334
|
var GROUP_THRESHOLD = 8;
|
|
335
|
+
var SIDEBAR_TREE_ACCENT_COLOR = "var(--color-primary)";
|
|
335
336
|
var FOLDER_ORDER = [
|
|
336
337
|
"campaigns",
|
|
337
338
|
"pipeline",
|
|
@@ -641,9 +642,7 @@ function KnowledgeLeafRow({ elementProps, knowledgeNode, isActive, onSelectNode
|
|
|
641
642
|
token: getKnowledgeIconToken(knowledgeNode),
|
|
642
643
|
fallbackKind: knowledgeNode.kind,
|
|
643
644
|
size: 15,
|
|
644
|
-
style: {
|
|
645
|
-
color: isActive ? "var(--color-primary)" : hovered ? "var(--color-text)" : "var(--color-text-subtle)"
|
|
646
|
-
}
|
|
645
|
+
style: { color: SIDEBAR_TREE_ACCENT_COLOR }
|
|
647
646
|
}
|
|
648
647
|
),
|
|
649
648
|
/* @__PURE__ */ jsx(
|
|
@@ -717,7 +716,7 @@ function DirectoryRow({
|
|
|
717
716
|
justifyContent: "center",
|
|
718
717
|
width: 12,
|
|
719
718
|
height: 12,
|
|
720
|
-
color:
|
|
719
|
+
color: SIDEBAR_TREE_ACCENT_COLOR,
|
|
721
720
|
flexShrink: 0
|
|
722
721
|
},
|
|
723
722
|
children: expanded ? /* @__PURE__ */ jsx(IconChevronDown, { size: 12, stroke: 2 }) : /* @__PURE__ */ jsx(IconChevronRight, { size: 12, stroke: 2 })
|
|
@@ -729,9 +728,7 @@ function DirectoryRow({
|
|
|
729
728
|
token: iconToken,
|
|
730
729
|
fallbackKind: "feature",
|
|
731
730
|
size: 14,
|
|
732
|
-
style: {
|
|
733
|
-
color: isActive ? "var(--color-primary)" : hovered ? "var(--color-text)" : "var(--color-text-subtle)"
|
|
734
|
-
}
|
|
731
|
+
style: { color: SIDEBAR_TREE_ACCENT_COLOR }
|
|
735
732
|
}
|
|
736
733
|
),
|
|
737
734
|
/* @__PURE__ */ jsx(
|
|
@@ -769,7 +766,7 @@ function TrailingCopySlot({ count, command, label, showCopy }) {
|
|
|
769
766
|
height: 22,
|
|
770
767
|
flexShrink: 0
|
|
771
768
|
},
|
|
772
|
-
children: showCopy && command ? /* @__PURE__ */ jsx(CopyCommandControl, { command, label, visible: true }) : count > 0 ? /* @__PURE__ */ jsx(KindChip, { kind: String(count), tone: "
|
|
769
|
+
children: showCopy && command ? /* @__PURE__ */ jsx(CopyCommandControl, { command, label, visible: true }) : count > 0 ? /* @__PURE__ */ jsx(KindChip, { kind: String(count), tone: "primary" }) : null
|
|
773
770
|
}
|
|
774
771
|
);
|
|
775
772
|
}
|
|
@@ -2001,4 +1998,4 @@ function KnowledgeSearchBar({
|
|
|
2001
1998
|
);
|
|
2002
1999
|
}
|
|
2003
2000
|
|
|
2004
|
-
export { EdgeRelationshipGroup, KNOWLEDGE_ICON_TOKEN_BY_KIND, KeyField, KindChip, KnowledgeSearchBar, KnowledgeTree, NodeDescribeShell, NodeHeader, NodeMetadataFooter, RelatedKnowledgeSection, byKind, getKnowledgeIconToken };
|
|
2001
|
+
export { EdgeChip, EdgeGroup, EdgeRelationshipGroup, KNOWLEDGE_ICON_TOKEN_BY_KIND, KeyField, KindChip, KnowledgeSearchBar, KnowledgeTree, NodeDescribeShell, NodeHeader, NodeMetadataFooter, RelatedKnowledgeSection, byKind, getKnowledgeIconToken };
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { existsSync } from 'fs';
|
|
2
2
|
import { resolve } from 'path';
|
|
3
3
|
import { spawnSync } from 'child_process';
|
|
4
|
-
import { runKnowledgeCodegen } from '@elevasis/sdk/node';
|
|
5
4
|
|
|
6
5
|
// src/vite-plugin-knowledge/index.ts
|
|
7
6
|
function detectLayout(viteRoot) {
|
|
@@ -58,6 +57,11 @@ function knowledgePlugin() {
|
|
|
58
57
|
}
|
|
59
58
|
return;
|
|
60
59
|
}
|
|
60
|
+
const sdkNodeSpecifier = "@elevasis/sdk/node";
|
|
61
|
+
const { runKnowledgeCodegen } = await import(
|
|
62
|
+
/* @vite-ignore */
|
|
63
|
+
sdkNodeSpecifier
|
|
64
|
+
);
|
|
61
65
|
await runKnowledgeCodegen(layout);
|
|
62
66
|
}
|
|
63
67
|
return {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DisplayMetadataSchema, ModelIdSchema, DescriptionSchema, LEAD_GEN_STAGE_CATALOG } from './chunk-
|
|
1
|
+
import { DisplayMetadataSchema, ModelIdSchema, DescriptionSchema, LEAD_GEN_STAGE_CATALOG } from './chunk-OWESKPTJ.js';
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
|
|
4
4
|
var ProspectingLifecycleStageSchema = DisplayMetadataSchema.extend({
|
|
@@ -23,6 +23,86 @@ var ProspectingBuildTemplateSchema = DisplayMetadataSchema.extend({
|
|
|
23
23
|
id: ModelIdSchema,
|
|
24
24
|
steps: z.array(ProspectingBuildTemplateStepSchema).min(1)
|
|
25
25
|
});
|
|
26
|
+
z.object({
|
|
27
|
+
id: ModelIdSchema,
|
|
28
|
+
label: z.string(),
|
|
29
|
+
description: z.string(),
|
|
30
|
+
resourceId: ModelIdSchema
|
|
31
|
+
});
|
|
32
|
+
var CAPABILITY_REGISTRY = [
|
|
33
|
+
{
|
|
34
|
+
id: "lead-gen.company.source",
|
|
35
|
+
label: "Source companies",
|
|
36
|
+
description: "Import source companies from a list provider.",
|
|
37
|
+
resourceId: "lgn-import-workflow"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
id: "lead-gen.company.apollo-import",
|
|
41
|
+
label: "Import from Apollo",
|
|
42
|
+
description: "Pull companies and seed contact data from an Apollo search or list.",
|
|
43
|
+
resourceId: "lgn-01c-apollo-import-workflow"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
id: "lead-gen.contact.discover",
|
|
47
|
+
label: "Discover contact emails",
|
|
48
|
+
description: "Find email addresses for contacts at qualified companies.",
|
|
49
|
+
resourceId: "lgn-04-email-discovery-workflow"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
id: "lead-gen.contact.verify-email",
|
|
53
|
+
label: "Verify emails",
|
|
54
|
+
description: "Check email deliverability before outreach.",
|
|
55
|
+
resourceId: "lgn-05-email-verification-workflow"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
id: "lead-gen.company.website-extract",
|
|
59
|
+
label: "Extract website signals",
|
|
60
|
+
description: "Scrape and analyze company websites for qualification signals.",
|
|
61
|
+
resourceId: "lgn-02-website-extract-workflow"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
id: "lead-gen.company.qualify",
|
|
65
|
+
label: "Qualify companies",
|
|
66
|
+
description: "Score and filter companies against the ICP rubric.",
|
|
67
|
+
resourceId: "lgn-03-company-qualification-workflow"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
id: "lead-gen.company.dtc-subscription-qualify",
|
|
71
|
+
label: "Qualify DTC subscription fit",
|
|
72
|
+
description: "Classify subscription potential and consumable-product fit for DTC brands.",
|
|
73
|
+
resourceId: "lgn-03b-dtc-subscription-score-workflow"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
id: "lead-gen.contact.apollo-decision-maker-enrich",
|
|
77
|
+
label: "Enrich decision-makers",
|
|
78
|
+
description: "Find and enrich qualified contacts at qualified companies via Apollo.",
|
|
79
|
+
resourceId: "lgn-04b-apollo-decision-maker-enrich-workflow"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
id: "lead-gen.contact.personalize",
|
|
83
|
+
label: "Personalize outreach",
|
|
84
|
+
description: "Generate personalized opening lines for each contact.",
|
|
85
|
+
resourceId: "ist-personalization-workflow"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
id: "lead-gen.review.outreach-ready",
|
|
89
|
+
label: "Upload to outreach",
|
|
90
|
+
description: "Upload approved contacts to the outreach sequence after QC review.",
|
|
91
|
+
resourceId: "ist-upload-contacts-workflow"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
id: "lead-gen.export.list",
|
|
95
|
+
label: "Export lead list",
|
|
96
|
+
description: "Export approved leads as a downloadable lead list.",
|
|
97
|
+
resourceId: "lgn-06-export-list-workflow"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
id: "lead-gen.company.cleanup",
|
|
101
|
+
label: "Clean up companies",
|
|
102
|
+
description: "Remove disqualified or duplicate companies from the list.",
|
|
103
|
+
resourceId: "lgn-company-cleanup-workflow"
|
|
104
|
+
}
|
|
105
|
+
];
|
|
26
106
|
var PROSPECTING_STEPS = {
|
|
27
107
|
localServices: {
|
|
28
108
|
sourceCompanies: {
|
|
@@ -247,4 +327,4 @@ var DEFAULT_ORGANIZATION_MODEL_PROSPECTING = {
|
|
|
247
327
|
]
|
|
248
328
|
};
|
|
249
329
|
|
|
250
|
-
export { DEFAULT_ORGANIZATION_MODEL_PROSPECTING, OrganizationModelProspectingSchema, PROSPECTING_STEPS };
|
|
330
|
+
export { CAPABILITY_REGISTRY, DEFAULT_ORGANIZATION_MODEL_PROSPECTING, OrganizationModelProspectingSchema, PROSPECTING_STEPS };
|
|
@@ -5,12 +5,12 @@ import { SubshellNavItem } from './chunk-X4WBGKJQ.js';
|
|
|
5
5
|
import { SubshellSidebarSection } from './chunk-IIMU5YAJ.js';
|
|
6
6
|
import { FilterBar } from './chunk-PDHTXPSF.js';
|
|
7
7
|
import { CustomModal } from './chunk-KVJ3LFH2.js';
|
|
8
|
-
import { useProjectRealtime, useTableSort, sortData, usePaginationState, useTableSelection, useProjectActivities } from './chunk-
|
|
9
|
-
import { useCreateTask, useCreateMilestone, useProjectMilestones, useUpdateTask, useProjects, useDeleteProject, useProject, useProjectNotes, useUpdateMilestone, useCreateNote, showApiErrorNotification, projectKeys } from './chunk-
|
|
10
|
-
import { StatusBadge, EmptyState, PageTitleCaption, CenteredErrorState, StatCard, CardHeader } from './chunk-
|
|
8
|
+
import { useProjectRealtime, useTableSort, sortData, usePaginationState, useTableSelection, useProjectActivities } from './chunk-HNFQCOD2.js';
|
|
9
|
+
import { useCreateTask, useCreateMilestone, useProjectMilestones, useUpdateTask, useProjects, useDeleteProject, useProject, useProjectNotes, useUpdateMilestone, useCreateNote, showApiErrorNotification, projectKeys } from './chunk-CEHUFNAL.js';
|
|
10
|
+
import { StatusBadge, EmptyState, PageTitleCaption, CenteredErrorState, StatCard, CardHeader } from './chunk-6WXDE5LZ.js';
|
|
11
11
|
import { SubshellContentContainer } from './chunk-TKAYX2SP.js';
|
|
12
12
|
import { useRouterContext } from './chunk-Q7DJKLEN.js';
|
|
13
|
-
import { PAGE_SIZE_DEFAULT, formatTimeAgo, formatDate, formatRelativeTime } from './chunk-
|
|
13
|
+
import { PAGE_SIZE_DEFAULT, formatTimeAgo, formatDate, formatRelativeTime } from './chunk-HXZQWMKE.js';
|
|
14
14
|
import { useElevasisServices } from './chunk-5WWZXCS5.js';
|
|
15
15
|
import { useState, useMemo, useCallback } from 'react';
|
|
16
16
|
import { Stack, Text, Group, Checkbox, ActionIcon, TextInput, Button, Modal, Title, Textarea, Select, SimpleGrid, Card, ThemeIcon, RingProgress, Paper, Timeline, Badge, Collapse, Center, Loader, Table, Pagination, Alert, CopyButton, Tooltip, Space, Tabs, Divider, Anchor, Chip } from '@mantine/core';
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { observabilityKeys } from './chunk-VKMNWHTL.js';
|
|
2
|
-
import { showApiErrorNotification, showSuccessNotification, projectKeys, noteKeys, taskKeys, milestoneKeys } from './chunk-
|
|
2
|
+
import { showApiErrorNotification, showSuccessNotification, projectKeys, noteKeys, taskKeys, milestoneKeys } from './chunk-CEHUFNAL.js';
|
|
3
3
|
import { useSupabase } from './chunk-BRXELOHC.js';
|
|
4
|
-
import { useNotificationAdapter, deriveActions } from './chunk-
|
|
4
|
+
import { useNotificationAdapter, deriveActions } from './chunk-OWESKPTJ.js';
|
|
5
5
|
import { useOptionalElevasisFeatures } from './chunk-V3HUIZJX.js';
|
|
6
|
-
import { HTTP_HEADERS } from './chunk-
|
|
7
|
-
import { ResourceTypeSchema, NonEmptyStringSchema, OriginResourceTypeSchema, UuidSchema, CredentialNameSchema, STALE_TIME_DEFAULT, REFETCH_INTERVAL_DASHBOARD, STALE_TIME_MONITORING, getTimeRangeDates, REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, STALE_TIME_ADMIN, APIClientError, GC_TIME_MEDIUM, GC_TIME_SHORT } from './chunk-
|
|
6
|
+
import { HTTP_HEADERS } from './chunk-7E3FUTND.js';
|
|
7
|
+
import { ResourceTypeSchema, NonEmptyStringSchema, OriginResourceTypeSchema, UuidSchema, CredentialNameSchema, STALE_TIME_DEFAULT, REFETCH_INTERVAL_DASHBOARD, STALE_TIME_MONITORING, getTimeRangeDates, REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, STALE_TIME_ADMIN, APIClientError, GC_TIME_MEDIUM, GC_TIME_SHORT } from './chunk-HXZQWMKE.js';
|
|
8
8
|
import { useStableAccessToken } from './chunk-WFTNY755.js';
|
|
9
9
|
import { useInitialization } from './chunk-WKJ47GIW.js';
|
|
10
10
|
import { useOrganization } from './chunk-DD3CCMCZ.js';
|
|
@@ -313,7 +313,6 @@ var PAGE_SIZE_DEFAULT = 20;
|
|
|
313
313
|
var LIMIT_ACTIVITY_FEED = 50;
|
|
314
314
|
var DEBOUNCE_FILTER = 150;
|
|
315
315
|
var DEBOUNCE_SLIDER = 500;
|
|
316
|
-
var OAUTH_POPUP_CHECK_INTERVAL = 500;
|
|
317
316
|
var OAUTH_FLOW_TIMEOUT = 3e5;
|
|
318
317
|
|
|
319
318
|
// src/utils/suppress-warnings.ts
|
|
@@ -384,4 +383,4 @@ function setupBrowserMocks() {
|
|
|
384
383
|
setupResizeObserver();
|
|
385
384
|
}
|
|
386
385
|
|
|
387
|
-
export { APIClientError, API_URL, CredentialNameSchema, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, LIMIT_ACTIVITY_FEED, NonEmptyStringSchema, OAUTH_FLOW_TIMEOUT,
|
|
386
|
+
export { APIClientError, API_URL, CredentialNameSchema, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, LIMIT_ACTIVITY_FEED, NonEmptyStringSchema, OAUTH_FLOW_TIMEOUT, OriginResourceTypeSchema, PAGE_SIZE_DEFAULT, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, ResourceTypeSchema, SSE_CLOSE_GRACE_PERIOD, SSE_TOKEN_REFRESH_DELAY, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING, UuidSchema, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, debounce, formatBucketTime, formatChartAxisDate, formatDate, formatDateTime, formatErrorMessage, formatRelativeTime, formatTimeAgo, getErrorInfo, getErrorTitle, getNodeId, getResourceColor, getResourceIcon, getTimeRangeDates, getTimeRangeLabel, isAPIClientError, restoreConsole, setupBrowserMocks, suppressKnownWarnings, validateEmail };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { useCyberColors, CyberLegendItem, CyberAreaChart } from './chunk-CW3UNAF2.js';
|
|
2
|
-
import { useResourcesHealth } from './chunk-
|
|
3
|
-
import { CardHeader, EmptyState } from './chunk-
|
|
4
|
-
import { getTimeRangeDates, formatBucketTime } from './chunk-
|
|
2
|
+
import { useResourcesHealth } from './chunk-HNFQCOD2.js';
|
|
3
|
+
import { CardHeader, EmptyState } from './chunk-6WXDE5LZ.js';
|
|
4
|
+
import { getTimeRangeDates, formatBucketTime } from './chunk-HXZQWMKE.js';
|
|
5
5
|
import { Paper, Center, Loader, Group } from '@mantine/core';
|
|
6
6
|
import { IconActivity, IconChartBar } from '@tabler/icons-react';
|
|
7
7
|
import { useMemo } from 'react';
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { mantineThemeOverride, createCssVariablesResolver, PresetsProvider } from './chunk-LH4GPYDX.js';
|
|
2
2
|
import { PRESETS, getPreset, generateShades } from './chunk-HLFFKKT3.js';
|
|
3
3
|
import { AppBackground } from './chunk-WLOQ4IBG.js';
|
|
4
|
-
import { ElevasisCoreProvider } from './chunk-
|
|
4
|
+
import { ElevasisCoreProvider } from './chunk-OWESKPTJ.js';
|
|
5
5
|
import { ElevasisLoader } from './chunk-SZHARWKU.js';
|
|
6
6
|
import { AppearanceProvider } from './chunk-E565XMTQ.js';
|
|
7
|
-
import { getErrorInfo, formatErrorMessage, getErrorTitle } from './chunk-
|
|
7
|
+
import { getErrorInfo, formatErrorMessage, getErrorTitle } from './chunk-HXZQWMKE.js';
|
|
8
8
|
import { useMemo, useEffect } from 'react';
|
|
9
9
|
import { Loader, mergeThemeOverrides, MantineProvider } from '@mantine/core';
|
|
10
10
|
import '@mantine/core/styles.css';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { ApiClientProvider, useApiClient } from './chunk-
|
|
1
|
+
import { ApiClientProvider, useApiClient } from './chunk-7E3FUTND.js';
|
|
2
2
|
import { OrganizationProvider } from './chunk-HOIT677G.js';
|
|
3
|
-
import { getErrorInfo, getErrorTitle, formatErrorMessage } from './chunk-
|
|
3
|
+
import { getErrorInfo, getErrorTitle, formatErrorMessage } from './chunk-HXZQWMKE.js';
|
|
4
4
|
import { InitializationProvider } from './chunk-WKJ47GIW.js';
|
|
5
5
|
import { useOrganization } from './chunk-DD3CCMCZ.js';
|
|
6
6
|
import { ProfileProvider } from './chunk-XTVZFT7U.js';
|
|
@@ -246,13 +246,64 @@ function findPipeline(definitions, pipelineKey) {
|
|
|
246
246
|
return definitions.find((def) => def.pipelineKey === pipelineKey);
|
|
247
247
|
}
|
|
248
248
|
var CRM_DISCOVERY_REPLIED_STATE = {
|
|
249
|
-
stateKey: "discovery_replied"
|
|
249
|
+
stateKey: "discovery_replied",
|
|
250
|
+
label: "Discovery Replied"
|
|
251
|
+
};
|
|
250
252
|
var CRM_DISCOVERY_LINK_SENT_STATE = {
|
|
251
|
-
stateKey: "discovery_link_sent"
|
|
253
|
+
stateKey: "discovery_link_sent",
|
|
254
|
+
label: "Discovery Link Sent"
|
|
255
|
+
};
|
|
252
256
|
var CRM_DISCOVERY_NUDGING_STATE = {
|
|
253
|
-
stateKey: "discovery_nudging"
|
|
257
|
+
stateKey: "discovery_nudging",
|
|
258
|
+
label: "Discovery Nudging"
|
|
259
|
+
};
|
|
254
260
|
var CRM_DISCOVERY_BOOKING_CANCELLED_STATE = {
|
|
255
|
-
stateKey: "discovery_booking_cancelled"
|
|
261
|
+
stateKey: "discovery_booking_cancelled",
|
|
262
|
+
label: "Discovery Booking Cancelled"
|
|
263
|
+
};
|
|
264
|
+
var CRM_REPLY_SENT_STATE = {
|
|
265
|
+
stateKey: "reply_sent",
|
|
266
|
+
label: "Reply Sent"
|
|
267
|
+
};
|
|
268
|
+
var CRM_FOLLOWUP_1_SENT_STATE = {
|
|
269
|
+
stateKey: "followup_1_sent",
|
|
270
|
+
label: "Follow-up 1 Sent"
|
|
271
|
+
};
|
|
272
|
+
var CRM_FOLLOWUP_2_SENT_STATE = {
|
|
273
|
+
stateKey: "followup_2_sent",
|
|
274
|
+
label: "Follow-up 2 Sent"
|
|
275
|
+
};
|
|
276
|
+
var CRM_FOLLOWUP_3_SENT_STATE = {
|
|
277
|
+
stateKey: "followup_3_sent",
|
|
278
|
+
label: "Follow-up 3 Sent"
|
|
279
|
+
};
|
|
280
|
+
var CRM_PIPELINE_DEFINITION = {
|
|
281
|
+
pipelineKey: "crm",
|
|
282
|
+
label: "CRM",
|
|
283
|
+
entityKey: "crm.deal",
|
|
284
|
+
stages: [
|
|
285
|
+
{
|
|
286
|
+
stageKey: "interested",
|
|
287
|
+
label: "Interested",
|
|
288
|
+
color: "blue",
|
|
289
|
+
states: [
|
|
290
|
+
CRM_DISCOVERY_REPLIED_STATE,
|
|
291
|
+
CRM_DISCOVERY_LINK_SENT_STATE,
|
|
292
|
+
CRM_DISCOVERY_NUDGING_STATE,
|
|
293
|
+
CRM_DISCOVERY_BOOKING_CANCELLED_STATE,
|
|
294
|
+
CRM_REPLY_SENT_STATE,
|
|
295
|
+
CRM_FOLLOWUP_1_SENT_STATE,
|
|
296
|
+
CRM_FOLLOWUP_2_SENT_STATE,
|
|
297
|
+
CRM_FOLLOWUP_3_SENT_STATE
|
|
298
|
+
]
|
|
299
|
+
},
|
|
300
|
+
{ stageKey: "proposal", label: "Proposal", color: "yellow", states: [] },
|
|
301
|
+
{ stageKey: "closing", label: "Closing", color: "orange", states: [] },
|
|
302
|
+
{ stageKey: "closed_won", label: "Closed Won", color: "green", states: [] },
|
|
303
|
+
{ stageKey: "closed_lost", label: "Closed Lost", color: "red", states: [] },
|
|
304
|
+
{ stageKey: "nurturing", label: "Nurturing", color: "grape", states: [] }
|
|
305
|
+
]
|
|
306
|
+
};
|
|
256
307
|
var CRM_PRIORITY_BUCKETS = [
|
|
257
308
|
{ bucketKey: "needs_response", label: "Needs Response", rank: 10, color: "red" },
|
|
258
309
|
{ bucketKey: "follow_up_due", label: "Follow-up Due", rank: 20, color: "orange" },
|
|
@@ -667,4 +718,4 @@ function OrgServiceBridge({
|
|
|
667
718
|
return /* @__PURE__ */ jsx(ElevasisServiceProvider, { apiRequest, organizationId: currentWorkOSOrganizationId, isReady, children: /* @__PURE__ */ jsx(NotificationProvider, { adapter: notifications, children: /* @__PURE__ */ jsx(InitializationProvider, { children }) }) });
|
|
668
719
|
}
|
|
669
720
|
|
|
670
|
-
export { CRM_PRIORITY_BUCKETS, ColorTokenSchema, CrmActionsProvider, DEFAULT_CRM_PRIORITY_RULE_CONFIG, DEFAULT_ORGANIZATION_MODEL_SALES, DescriptionSchema, DisplayMetadataSchema, EMPTY_LIST_ACTIONS, ElevasisCoreProvider, IconNameSchema, LEAD_GEN_PIPELINE_DEFINITIONS, LEAD_GEN_STAGE_CATALOG, LabelSchema, ListActionsProvider, ModelIdSchema, NotificationProvider, OrganizationModelSalesSchema, PathSchema, ReferenceIdsSchema, deriveActions, findListActionByCapability, findPipeline, getListActionWorkflowId, useCrmActions, useListActions, useNotificationAdapter };
|
|
721
|
+
export { CRM_PIPELINE_DEFINITION, CRM_PRIORITY_BUCKETS, ColorTokenSchema, CrmActionsProvider, DEFAULT_CRM_PRIORITY_RULE_CONFIG, DEFAULT_ORGANIZATION_MODEL_SALES, DescriptionSchema, DisplayMetadataSchema, EMPTY_LIST_ACTIONS, ElevasisCoreProvider, IconNameSchema, LEAD_GEN_PIPELINE_DEFINITIONS, LEAD_GEN_STAGE_CATALOG, LabelSchema, ListActionsProvider, ModelIdSchema, NotificationProvider, OrganizationModelSalesSchema, PathSchema, ReferenceIdsSchema, deriveActions, findListActionByCapability, findPipeline, getListActionWorkflowId, useCrmActions, useListActions, useNotificationAdapter };
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { ZodFormRenderer } from './chunk-3MEXPLWT.js';
|
|
2
2
|
import { ResourceHealthChart } from './chunk-LGKLC5MG.js';
|
|
3
|
-
import { HeroStatsRow } from './chunk-
|
|
3
|
+
import { HeroStatsRow } from './chunk-SZWXQHKO.js';
|
|
4
4
|
import { useCyberColors } from './chunk-CW3UNAF2.js';
|
|
5
5
|
import { AppShellCenteredContainer, AppShellLoader } from './chunk-RYTEQBAO.js';
|
|
6
6
|
import { Graph_module_css_default, useDirectedChainHighlighting, useNodeSelection, useFitViewTrigger } from './chunk-22UVE3RA.js';
|
|
7
7
|
import { STATUS_COLORS, getStatusIcon, formatDuration, getStatusColors, AGENT_CONSTANTS, shouldAnimateEdge, TIMELINE_CONSTANTS, calculateBarPosition, CONTAINER_CONSTANTS, useExecutionPath, useUnifiedWorkflowLayout, WORKFLOW_CONSTANTS, useReactFlowAgent } from './chunk-E4WQGJNS.js';
|
|
8
|
-
import { useExecuteResource, useDashboardMetrics, useResources, useTimeRangeDates, useUnresolvedErrors, useRecentExecutionsByResource, useCommandQueue, useScheduledTasks, useResourcesHealth } from './chunk-
|
|
8
|
+
import { useExecuteResource, useDashboardMetrics, useResources, useTimeRangeDates, useUnresolvedErrors, useRecentExecutionsByResource, useCommandQueue, useScheduledTasks, useResourcesHealth } from './chunk-HNFQCOD2.js';
|
|
9
9
|
import { glassBase } from './chunk-LH4GPYDX.js';
|
|
10
|
-
import { GlowDot, CardHeader, EmptyState, PageTitleCaption, TabCountBadge } from './chunk-
|
|
11
|
-
import { formatTimeAgo, getTimeRangeDates, formatRelativeTime } from './chunk-
|
|
10
|
+
import { GlowDot, CardHeader, EmptyState, PageTitleCaption, TabCountBadge } from './chunk-6WXDE5LZ.js';
|
|
11
|
+
import { formatTimeAgo, getTimeRangeDates, formatRelativeTime } from './chunk-HXZQWMKE.js';
|
|
12
12
|
import { ResourceStatusColors } from './chunk-KRWALB24.js';
|
|
13
13
|
import { useInitialization } from './chunk-WKJ47GIW.js';
|
|
14
14
|
import { memo, useMemo, useEffect, useState, useCallback, Fragment } from 'react';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CyberAreaChart, useCyberColors, CyberLegendItem } from './chunk-CW3UNAF2.js';
|
|
2
2
|
import { useErrorTrends } from './chunk-VKMNWHTL.js';
|
|
3
|
-
import { CardHeader, CenteredErrorState, TrendIndicator, EmptyState, StatCard } from './chunk-
|
|
4
|
-
import { getTimeRangeLabel, getTimeRangeDates, formatBucketTime } from './chunk-
|
|
3
|
+
import { CardHeader, CenteredErrorState, TrendIndicator, EmptyState, StatCard } from './chunk-6WXDE5LZ.js';
|
|
4
|
+
import { getTimeRangeLabel, getTimeRangeDates, formatBucketTime } from './chunk-HXZQWMKE.js';
|
|
5
5
|
import { useRef, useState, useLayoutEffect, useEffect, useMemo, useCallback } from 'react';
|
|
6
6
|
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
7
7
|
import { Center, Loader, Paper, Button, Group, Text, NumberFormatter, Badge, Space, Tooltip, SimpleGrid, Alert, SegmentedControl, Box } from '@mantine/core';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FeatureUnavailableState } from './chunk-
|
|
1
|
+
import { FeatureUnavailableState } from './chunk-6WXDE5LZ.js';
|
|
2
2
|
import { useElevasisFeatures } from './chunk-V3HUIZJX.js';
|
|
3
3
|
import { SubshellContainer, SubshellSidebar, SubshellRightSideContainer } from './chunk-TKAYX2SP.js';
|
|
4
4
|
import { useRouterContext } from './chunk-Q7DJKLEN.js';
|
package/dist/components/index.js
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
import { useBreadcrumbs } from '../chunk-S66IQSSR.js';
|
|
2
2
|
import '../chunk-X2SUMO3P.js';
|
|
3
|
-
export { AllTasksPage, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../chunk-
|
|
4
|
-
export { LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, StepConfigForm, TabSection, getEnrichmentColor, getStatusColor, leadGenManifest, useDeleteLists } from '../chunk-
|
|
5
|
-
export { ActionModal, AgentDefinitionDisplay, AgentExecutionLogs, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, CheckpointGroup, CollapsibleJsonSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ContentSections, ContextUsageBadge, ContractDisplay, ExecutionErrorSection, LogEntry, LogGroup, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceNotFoundState, SessionMemory, ToolsListDisplay, WorkflowDefinitionDisplay, WorkflowExecutionLogs, getExecutionStatusConfig, getIcon, getLogLevelConfig, iconMap, operationsManifest, useNewKnowledgeMapLayout } from '../chunk-
|
|
3
|
+
export { AllTasksPage, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../chunk-FGDUK74A.js';
|
|
4
|
+
export { LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, StepConfigForm, TabSection, getEnrichmentColor, getStatusColor, leadGenManifest, useDeleteLists } from '../chunk-65RQE3XF.js';
|
|
5
|
+
export { ActionModal, AgentDefinitionDisplay, AgentExecutionLogs, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, CheckpointGroup, CollapsibleJsonSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ContentSections, ContextUsageBadge, ContractDisplay, ExecutionErrorSection, LogEntry, LogGroup, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceNotFoundState, SessionMemory, ToolsListDisplay, WorkflowDefinitionDisplay, WorkflowExecutionLogs, getExecutionStatusConfig, getIcon, getLogLevelConfig, iconMap, operationsManifest, useNewKnowledgeMapLayout } from '../chunk-AK5E6ILJ.js';
|
|
6
6
|
import '../chunk-ROSMICXG.js';
|
|
7
|
-
import '../chunk-
|
|
7
|
+
import '../chunk-3DUOPXOJ.js';
|
|
8
8
|
import '../chunk-ZTWA5H77.js';
|
|
9
9
|
import '../chunk-JDNEWB5F.js';
|
|
10
10
|
import '../chunk-JCGD4GM6.js';
|
|
11
11
|
import '../chunk-XQQEKWTL.js';
|
|
12
|
-
export { AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, BaseEdge, BaseNode, EmptyVisualizer, ExecutionStats, ExecutionStatusBadge, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, RunResourceButton, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, VisualizerContainer, WorkflowExecutionTimeline, getGraphBackgroundStyles, useGraphBackgroundStyles, useGraphTheme } from '../chunk-
|
|
12
|
+
export { AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, BaseEdge, BaseNode, EmptyVisualizer, ExecutionStats, ExecutionStatusBadge, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, RunResourceButton, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, VisualizerContainer, WorkflowExecutionTimeline, getGraphBackgroundStyles, useGraphBackgroundStyles, useGraphTheme } from '../chunk-QNL7UI5G.js';
|
|
13
13
|
import '../chunk-ECNNI3NT.js';
|
|
14
|
-
import '../chunk-
|
|
14
|
+
import '../chunk-FFDAE2QI.js';
|
|
15
15
|
export { ZodFormRenderer } from '../chunk-3MEXPLWT.js';
|
|
16
|
-
import { NotificationList } from '../chunk-
|
|
17
|
-
export { ActivityCard, ActivityFilters as ActivityFiltersBar, ActivityTable, BusinessImpactCard, CostBreakdownCard, CostByModelTable, CostMetricsCard, ErrorAnalysisCard, ErrorBreakdownTable, ExecutionBreakdownTable, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, NotificationItem, NotificationList, monitoringManifest } from '../chunk-
|
|
18
|
-
export { ResourceHealthPanel } from '../chunk-
|
|
16
|
+
import { NotificationList } from '../chunk-5CW2HXQA.js';
|
|
17
|
+
export { ActivityCard, ActivityFilters as ActivityFiltersBar, ActivityTable, BusinessImpactCard, CostBreakdownCard, CostByModelTable, CostMetricsCard, ErrorAnalysisCard, ErrorBreakdownTable, ExecutionBreakdownTable, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, NotificationItem, NotificationList, monitoringManifest } from '../chunk-5CW2HXQA.js';
|
|
18
|
+
export { ResourceHealthPanel } from '../chunk-OHGNCWJP.js';
|
|
19
19
|
export { ResourceHealthChart, getHealthColor } from '../chunk-LGKLC5MG.js';
|
|
20
|
-
import '../chunk-
|
|
20
|
+
import '../chunk-SZWXQHKO.js';
|
|
21
21
|
import '../chunk-CW3UNAF2.js';
|
|
22
22
|
export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, seoManifest } from '../chunk-DWK2QIAK.js';
|
|
23
|
-
import { showAuthError } from '../chunk-
|
|
24
|
-
export { CreateCredentialModal, CredentialList, CredentialSettings, MembershipFeaturePanel, MembershipStatusBadge, OAuthConnectModal, OrganizationMembershipsList, WebhookUrlDisplayModal, settingsManifest, showAuthError } from '../chunk-
|
|
23
|
+
import { showAuthError } from '../chunk-A7R2URMV.js';
|
|
24
|
+
export { CreateCredentialModal, CredentialList, CredentialSettings, MembershipFeaturePanel, MembershipStatusBadge, OAuthConnectModal, OrganizationMembershipsList, WebhookUrlDisplayModal, settingsManifest, showAuthError } from '../chunk-A7R2URMV.js';
|
|
25
25
|
import { AppShellLoader } from '../chunk-RYTEQBAO.js';
|
|
26
|
-
import { setDealReferrer, compareDealsByPriority } from '../chunk-
|
|
27
|
-
export { ActivityFeedWidget, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, crmManifest, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../chunk-
|
|
26
|
+
import { setDealReferrer, compareDealsByPriority } from '../chunk-6NHCE7JM.js';
|
|
27
|
+
export { ActivityFeedWidget, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, crmManifest, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../chunk-6NHCE7JM.js';
|
|
28
28
|
import '../chunk-BZZCNLT6.js';
|
|
29
29
|
export { SortableHeader, TableSelectionToolbar } from '../chunk-TUMSNGTX.js';
|
|
30
30
|
import '../chunk-X4WBGKJQ.js';
|
|
@@ -37,27 +37,27 @@ import '../chunk-XBMCDGHA.js';
|
|
|
37
37
|
export { Graph_module_css_default as graphStyles } from '../chunk-22UVE3RA.js';
|
|
38
38
|
export { CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS } from '../chunk-E4WQGJNS.js';
|
|
39
39
|
import '../chunk-7M2VOCYN.js';
|
|
40
|
-
import { useOrganizationPermissions, useCreateOrgRole, usePermissionCatalog, useUpdateApiKey, useDeleteApiKey, useCreateApiKey, useListApiKeys, usePaginationState, useActivateDeployment, useDeactivateDeployment, useDeleteDeployment, useListDeployments, useResources, useCreateSchedule, useListSchedules, usePauseSchedule, useResumeSchedule, useCancelSchedule, useDeleteSchedule, useDeals, useTransitionItem, dealKeys, useMarkAllAsRead, useNotifications } from '../chunk-
|
|
40
|
+
import { useOrganizationPermissions, useCreateOrgRole, usePermissionCatalog, useUpdateApiKey, useDeleteApiKey, useCreateApiKey, useListApiKeys, usePaginationState, useActivateDeployment, useDeactivateDeployment, useDeleteDeployment, useListDeployments, useResources, useCreateSchedule, useListSchedules, usePauseSchedule, useResumeSchedule, useCancelSchedule, useDeleteSchedule, useDeals, useTransitionItem, dealKeys, useMarkAllAsRead, useNotifications } from '../chunk-HNFQCOD2.js';
|
|
41
41
|
import '../chunk-VKMNWHTL.js';
|
|
42
|
-
import { showSuccessNotification, showErrorNotification, showApiErrorNotification } from '../chunk-
|
|
43
|
-
export { showApiErrorNotification, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification } from '../chunk-
|
|
42
|
+
import { showSuccessNotification, showErrorNotification, showApiErrorNotification } from '../chunk-CEHUFNAL.js';
|
|
43
|
+
export { showApiErrorNotification, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification } from '../chunk-CEHUFNAL.js';
|
|
44
44
|
import '../chunk-BRXELOHC.js';
|
|
45
45
|
import '../chunk-3ZMAGTWF.js';
|
|
46
46
|
import '../chunk-VMJVQAFZ.js';
|
|
47
|
-
import '../chunk-
|
|
47
|
+
import '../chunk-OIMPGKDB.js';
|
|
48
48
|
import '../chunk-LH4GPYDX.js';
|
|
49
49
|
import '../chunk-HLFFKKT3.js';
|
|
50
50
|
import '../chunk-WLOQ4IBG.js';
|
|
51
|
-
import '../chunk-
|
|
52
|
-
import { ListSkeleton, EmptyState, PageTitleCaption, StatCard, CenteredErrorState, CardHeader } from '../chunk-
|
|
53
|
-
export { APIErrorAlert, ActivityTimeline, CardHeader, CenteredErrorState, CollapsibleSection, ContextViewer, CustomSelector, DetailCardSkeleton, EmptyState, FeatureUnavailableState, GlowDot, JsonViewer, ListSkeleton, PageNotFound, PageTitleCaption, ResourceCard, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, TabCountBadge, TimeRangeSelector, TrendIndicator } from '../chunk-
|
|
51
|
+
import '../chunk-Y3YJKKEB.js';
|
|
52
|
+
import { ListSkeleton, EmptyState, PageTitleCaption, StatCard, CenteredErrorState, CardHeader } from '../chunk-6WXDE5LZ.js';
|
|
53
|
+
export { APIErrorAlert, ActivityTimeline, CardHeader, CenteredErrorState, CollapsibleSection, ContextViewer, CustomSelector, DetailCardSkeleton, EmptyState, FeatureUnavailableState, GlowDot, JsonViewer, ListSkeleton, PageNotFound, PageTitleCaption, ResourceCard, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, TabCountBadge, TimeRangeSelector, TrendIndicator } from '../chunk-6WXDE5LZ.js';
|
|
54
54
|
export { StyledMarkdown } from '../chunk-3KMDHCAR.js';
|
|
55
|
-
import '../chunk-
|
|
55
|
+
import '../chunk-OWESKPTJ.js';
|
|
56
56
|
export { ElevasisLoader } from '../chunk-SZHARWKU.js';
|
|
57
57
|
import '../chunk-V3HUIZJX.js';
|
|
58
58
|
import { SubshellContentContainer } from '../chunk-TKAYX2SP.js';
|
|
59
59
|
export { NavigationButton } from '../chunk-NYBEU5TE.js';
|
|
60
|
-
import '../chunk-
|
|
60
|
+
import '../chunk-7E3FUTND.js';
|
|
61
61
|
import '../chunk-2IFYDILW.js';
|
|
62
62
|
import { useRouterContext } from '../chunk-Q7DJKLEN.js';
|
|
63
63
|
export { RoleBadge } from '../chunk-GESXCQWY.js';
|
|
@@ -66,7 +66,7 @@ import { useAppearance } from '../chunk-E565XMTQ.js';
|
|
|
66
66
|
import '../chunk-KU7ZDWQ7.js';
|
|
67
67
|
import '../chunk-DT3QYZVU.js';
|
|
68
68
|
import '../chunk-RNP5R5I3.js';
|
|
69
|
-
import { formatDateTime, PAGE_SIZE_DEFAULT, formatTimeAgo } from '../chunk-
|
|
69
|
+
import { formatDateTime, PAGE_SIZE_DEFAULT, formatTimeAgo } from '../chunk-HXZQWMKE.js';
|
|
70
70
|
import '../chunk-KRWALB24.js';
|
|
71
71
|
import '../chunk-WFTNY755.js';
|
|
72
72
|
import { useInitialization } from '../chunk-WKJ47GIW.js';
|
|
@@ -3056,7 +3056,7 @@ function KanbanBoard({ config }) {
|
|
|
3056
3056
|
data: old.data.map((d) => d.id === deal.id ? { ...d, stage_key: targetStage } : d)
|
|
3057
3057
|
};
|
|
3058
3058
|
});
|
|
3059
|
-
transitionItem.mutate({ dealId: deal.id, pipelineKey: "
|
|
3059
|
+
transitionItem.mutate({ dealId: deal.id, pipelineKey: "crm", stageKey: targetStage });
|
|
3060
3060
|
},
|
|
3061
3061
|
[queryClient, transitionItem]
|
|
3062
3062
|
);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ActivityFeedWidget, CRM_ITEMS, CompanyDetailPage, ConversationThread, CrmOverview, CrmSettingsPage, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DEAL_STAGE_COLORS, DEAL_STAGE_OPTIONS, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, crmManifest, crmPrioritySettingsKeys, formatDealStageLabel, useCrmPipelineSummary, useCrmPrioritySettings, useCrmQuickMetrics, useRecentCrmActivity, useResetCrmPrioritySettings, useUpdateCrmPrioritySettings } from '../../chunk-
|
|
1
|
+
export { ActivityFeedWidget, CRM_ITEMS, CompanyDetailPage, ConversationThread, CrmOverview, CrmSettingsPage, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DEAL_STAGE_COLORS, DEAL_STAGE_OPTIONS, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, crmManifest, crmPrioritySettingsKeys, formatDealStageLabel, useCrmPipelineSummary, useCrmPrioritySettings, useCrmQuickMetrics, useRecentCrmActivity, useResetCrmPrioritySettings, useUpdateCrmPrioritySettings } from '../../chunk-6NHCE7JM.js';
|
|
2
2
|
import '../../chunk-BZZCNLT6.js';
|
|
3
3
|
import '../../chunk-TUMSNGTX.js';
|
|
4
4
|
import '../../chunk-X4WBGKJQ.js';
|
|
@@ -6,25 +6,25 @@ import '../../chunk-IIMU5YAJ.js';
|
|
|
6
6
|
import '../../chunk-PDHTXPSF.js';
|
|
7
7
|
import '../../chunk-KVJ3LFH2.js';
|
|
8
8
|
import '../../chunk-7M2VOCYN.js';
|
|
9
|
-
import '../../chunk-
|
|
9
|
+
import '../../chunk-HNFQCOD2.js';
|
|
10
10
|
import '../../chunk-VKMNWHTL.js';
|
|
11
|
-
import '../../chunk-
|
|
11
|
+
import '../../chunk-CEHUFNAL.js';
|
|
12
12
|
import '../../chunk-BRXELOHC.js';
|
|
13
13
|
import '../../chunk-3ZMAGTWF.js';
|
|
14
14
|
import '../../chunk-VMJVQAFZ.js';
|
|
15
|
-
import '../../chunk-
|
|
15
|
+
import '../../chunk-OIMPGKDB.js';
|
|
16
16
|
import '../../chunk-LH4GPYDX.js';
|
|
17
17
|
import '../../chunk-HLFFKKT3.js';
|
|
18
18
|
import '../../chunk-WLOQ4IBG.js';
|
|
19
|
-
import '../../chunk-
|
|
20
|
-
import '../../chunk-
|
|
19
|
+
import '../../chunk-Y3YJKKEB.js';
|
|
20
|
+
import '../../chunk-6WXDE5LZ.js';
|
|
21
21
|
import '../../chunk-3KMDHCAR.js';
|
|
22
|
-
import '../../chunk-
|
|
22
|
+
import '../../chunk-OWESKPTJ.js';
|
|
23
23
|
import '../../chunk-SZHARWKU.js';
|
|
24
24
|
import '../../chunk-V3HUIZJX.js';
|
|
25
25
|
import '../../chunk-TKAYX2SP.js';
|
|
26
26
|
import '../../chunk-NYBEU5TE.js';
|
|
27
|
-
import '../../chunk-
|
|
27
|
+
import '../../chunk-7E3FUTND.js';
|
|
28
28
|
import '../../chunk-2IFYDILW.js';
|
|
29
29
|
import '../../chunk-Q7DJKLEN.js';
|
|
30
30
|
import '../../chunk-GESXCQWY.js';
|
|
@@ -33,7 +33,7 @@ import '../../chunk-E565XMTQ.js';
|
|
|
33
33
|
import '../../chunk-KU7ZDWQ7.js';
|
|
34
34
|
import '../../chunk-DT3QYZVU.js';
|
|
35
35
|
import '../../chunk-RNP5R5I3.js';
|
|
36
|
-
import '../../chunk-
|
|
36
|
+
import '../../chunk-HXZQWMKE.js';
|
|
37
37
|
import '../../chunk-KRWALB24.js';
|
|
38
38
|
import '../../chunk-WFTNY755.js';
|
|
39
39
|
import '../../chunk-WKJ47GIW.js';
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
export { Dashboard, DashboardOperationsOverview, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser } from '../../chunk-
|
|
1
|
+
export { Dashboard, DashboardOperationsOverview, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser } from '../../chunk-QNL7UI5G.js';
|
|
2
2
|
import '../../chunk-3MEXPLWT.js';
|
|
3
3
|
import '../../chunk-LGKLC5MG.js';
|
|
4
|
-
import '../../chunk-
|
|
4
|
+
import '../../chunk-SZWXQHKO.js';
|
|
5
5
|
import '../../chunk-CW3UNAF2.js';
|
|
6
6
|
import '../../chunk-RYTEQBAO.js';
|
|
7
7
|
import '../../chunk-22UVE3RA.js';
|
|
8
8
|
import '../../chunk-E4WQGJNS.js';
|
|
9
9
|
import '../../chunk-7M2VOCYN.js';
|
|
10
|
-
import '../../chunk-
|
|
10
|
+
import '../../chunk-HNFQCOD2.js';
|
|
11
11
|
import '../../chunk-VKMNWHTL.js';
|
|
12
|
-
import '../../chunk-
|
|
12
|
+
import '../../chunk-CEHUFNAL.js';
|
|
13
13
|
import '../../chunk-BRXELOHC.js';
|
|
14
14
|
import '../../chunk-3ZMAGTWF.js';
|
|
15
15
|
import '../../chunk-VMJVQAFZ.js';
|
|
16
|
-
import '../../chunk-
|
|
16
|
+
import '../../chunk-OIMPGKDB.js';
|
|
17
17
|
import '../../chunk-LH4GPYDX.js';
|
|
18
18
|
import '../../chunk-HLFFKKT3.js';
|
|
19
19
|
import '../../chunk-WLOQ4IBG.js';
|
|
20
|
-
import '../../chunk-
|
|
21
|
-
import '../../chunk-
|
|
20
|
+
import '../../chunk-Y3YJKKEB.js';
|
|
21
|
+
import '../../chunk-6WXDE5LZ.js';
|
|
22
22
|
import '../../chunk-3KMDHCAR.js';
|
|
23
|
-
import '../../chunk-
|
|
23
|
+
import '../../chunk-OWESKPTJ.js';
|
|
24
24
|
import '../../chunk-SZHARWKU.js';
|
|
25
25
|
import '../../chunk-V3HUIZJX.js';
|
|
26
26
|
import '../../chunk-TKAYX2SP.js';
|
|
27
27
|
import '../../chunk-NYBEU5TE.js';
|
|
28
|
-
import '../../chunk-
|
|
28
|
+
import '../../chunk-7E3FUTND.js';
|
|
29
29
|
import '../../chunk-2IFYDILW.js';
|
|
30
30
|
import '../../chunk-Q7DJKLEN.js';
|
|
31
31
|
import '../../chunk-GESXCQWY.js';
|
|
@@ -34,7 +34,7 @@ import '../../chunk-E565XMTQ.js';
|
|
|
34
34
|
import '../../chunk-KU7ZDWQ7.js';
|
|
35
35
|
import '../../chunk-DT3QYZVU.js';
|
|
36
36
|
import '../../chunk-RNP5R5I3.js';
|
|
37
|
-
import '../../chunk-
|
|
37
|
+
import '../../chunk-HXZQWMKE.js';
|
|
38
38
|
import '../../chunk-KRWALB24.js';
|
|
39
39
|
import '../../chunk-WFTNY755.js';
|
|
40
40
|
import '../../chunk-WKJ47GIW.js';
|