@elevasis/ui 2.4.1 → 2.6.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/{chunk-JT7WDIZI.js → chunk-4GZ6VZWO.js} +1 -1
- package/dist/{chunk-WSL5MNAI.js → chunk-6RGNVHG3.js} +6 -4
- package/dist/{chunk-WN764MR7.js → chunk-CC4WGHGG.js} +3 -2
- package/dist/{chunk-PEZ4WOPF.js → chunk-DQJM7T2N.js} +2 -2
- package/dist/{chunk-KRTZTBVP.js → chunk-FH5QGCXL.js} +8 -6
- package/dist/{chunk-2DZACNOX.js → chunk-MU5EZV3L.js} +5 -3
- package/dist/{chunk-ISHNN42L.js → chunk-O4PMRC6J.js} +223 -59
- package/dist/{chunk-ZG7MLOBE.js → chunk-PEDPD3PU.js} +1 -1
- package/dist/{chunk-5XGBMKUY.js → chunk-PHRDZFJT.js} +3 -3
- package/dist/{chunk-IPRMGSCV.js → chunk-POFDRPDI.js} +1 -1
- package/dist/{chunk-3ONP2CEB.js → chunk-X4BLH3JL.js} +6 -4
- package/dist/{chunk-J5KWNRSD.js → chunk-YIWLA2B6.js} +1 -0
- package/dist/{chunk-G3G2QEB6.js → chunk-ZB5PKIX5.js} +4 -13
- package/dist/components/index.d.ts +127 -105
- package/dist/components/index.js +16 -16
- package/dist/features/crm/index.d.ts +24 -0
- package/dist/features/crm/index.js +5 -5
- package/dist/features/dashboard/index.d.ts +2 -37
- package/dist/features/dashboard/index.js +5 -5
- package/dist/features/delivery/index.d.ts +25 -0
- package/dist/features/delivery/index.js +5 -5
- package/dist/features/lead-gen/index.d.ts +25 -1
- package/dist/features/lead-gen/index.js +8 -8
- package/dist/features/monitoring/index.d.ts +25 -0
- package/dist/features/monitoring/index.js +6 -6
- package/dist/features/operations/index.d.ts +83 -59
- package/dist/features/operations/index.js +7 -7
- package/dist/features/seo/index.d.ts +25 -0
- package/dist/features/seo/index.js +1 -1
- package/dist/features/settings/index.d.ts +24 -0
- package/dist/features/settings/index.js +5 -5
- package/dist/hooks/index.d.ts +239 -239
- package/dist/hooks/index.js +4 -4
- package/dist/hooks/published.d.ts +169 -169
- package/dist/hooks/published.js +3 -3
- package/dist/index.d.ts +302 -254
- package/dist/index.js +4 -4
- package/dist/provider/index.d.ts +63 -15
- package/dist/provider/index.js +2 -2
- package/dist/provider/published.d.ts +63 -15
- package/dist/provider/published.js +1 -1
- package/dist/types/index.d.ts +134 -134
- package/package.json +1 -1
|
@@ -2,8 +2,8 @@ import { ResourceHealthChart } from './chunk-LGKLC5MG.js';
|
|
|
2
2
|
import { useCyberColors, HeroStatsRow } from './chunk-KFICYU6S.js';
|
|
3
3
|
import { AppShellCenteredContainer, AppShellLoader } from './chunk-YEX4MQSY.js';
|
|
4
4
|
import { STATUS_COLORS, getStatusIcon, formatDuration, getStatusColors, AGENT_CONSTANTS, shouldAnimateEdge, TIMELINE_CONSTANTS, calculateBarPosition, CONTAINER_CONSTANTS, useExecutionPath, useUnifiedWorkflowLayout, WORKFLOW_CONSTANTS, useReactFlowAgent } from './chunk-XA34RETF.js';
|
|
5
|
-
import { useTimeRangeDates } from './chunk-
|
|
6
|
-
import { useDashboardMetrics, useResources, useUnresolvedErrors, useRecentExecutionsByResource, useCommandQueue, useScheduledTasks, useResourcesHealth } from './chunk-
|
|
5
|
+
import { useTimeRangeDates } from './chunk-DQJM7T2N.js';
|
|
6
|
+
import { useDashboardMetrics, useResources, useUnresolvedErrors, useRecentExecutionsByResource, useCommandQueue, useScheduledTasks, useResourcesHealth } from './chunk-POFDRPDI.js';
|
|
7
7
|
import { getTimeRangeDates } from './chunk-LXHZYSMQ.js';
|
|
8
8
|
import { Graph_module_css_default, useDirectedChainHighlighting, useNodeSelection, useFitViewTrigger } from './chunk-22UVE3RA.js';
|
|
9
9
|
import { glassBase } from './chunk-47YILFON.js';
|
|
@@ -15,7 +15,7 @@ import { memo, useMemo, useEffect, useState, useCallback, Fragment } from 'react
|
|
|
15
15
|
import { Paper, Stack, Text, Group, Badge, Box, useComputedColorScheme, Card, ActionIcon, Loader, SegmentedControl, Center, SimpleGrid, Title, Tabs, Grid, ThemeIcon } from '@mantine/core';
|
|
16
16
|
import { jsxs, jsx, Fragment as Fragment$1 } from 'react/jsx-runtime';
|
|
17
17
|
import { Position, Handle, getSmoothStepPath, BaseEdge as BaseEdge$1, EdgeLabelRenderer, Panel, useReactFlow, Controls, ReactFlowProvider, ReactFlow } from '@xyflow/react';
|
|
18
|
-
import { IconPlayerPlay, IconPlayerStop, IconArrowsSplit, IconSquare,
|
|
18
|
+
import { IconPlayerPlay, IconPlayerStop, IconArrowsSplit, IconSquare, IconFocus2, IconArrowUpRight, IconLayoutDashboard, IconActivity, IconAlertTriangle, IconHandStop, IconCalendarEvent, IconCircleCheck, IconBrain, IconGitBranch } from '@tabler/icons-react';
|
|
19
19
|
import '@xyflow/react/dist/style.css';
|
|
20
20
|
import '@mantine/charts/styles.css';
|
|
21
21
|
|
|
@@ -1811,14 +1811,5 @@ function UnresolvedErrorsTeaser({ timeRange, onNavigateToAllErrors }) {
|
|
|
1811
1811
|
}
|
|
1812
1812
|
);
|
|
1813
1813
|
}
|
|
1814
|
-
var dashboardManifest = {
|
|
1815
|
-
key: "dashboard",
|
|
1816
|
-
label: "Dashboard",
|
|
1817
|
-
navEntry: {
|
|
1818
|
-
label: "Dashboard",
|
|
1819
|
-
icon: IconDashboard,
|
|
1820
|
-
link: "/"
|
|
1821
|
-
}
|
|
1822
|
-
};
|
|
1823
1814
|
|
|
1824
|
-
export { AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, BaseEdge, BaseNode, Dashboard, EmptyVisualizer, ExecutionStats, ExecutionStatusBadge, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, OperationsOverview, RecentExecutionsByResource, ResourceOverview, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UnresolvedErrorsTeaser, VisualizerContainer, WorkflowExecutionTimeline,
|
|
1815
|
+
export { AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, BaseEdge, BaseNode, Dashboard, EmptyVisualizer, ExecutionStats, ExecutionStatusBadge, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, OperationsOverview, RecentExecutionsByResource, ResourceOverview, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UnresolvedErrorsTeaser, VisualizerContainer, WorkflowExecutionTimeline, getGraphBackgroundStyles, useGraphBackgroundStyles, useGraphTheme };
|
|
@@ -3545,6 +3545,45 @@ interface AgentIterationData {
|
|
|
3545
3545
|
status: 'running' | 'completed' | 'failed' | 'warning';
|
|
3546
3546
|
}
|
|
3547
3547
|
|
|
3548
|
+
/** Raw database row type for acq_deals table */
|
|
3549
|
+
type AcqDealRow = Database$1['public']['Tables']['acq_deals']['Row'];
|
|
3550
|
+
type DealStage = 'interested' | 'proposal' | 'closing' | 'closed_won' | 'closed_lost' | 'nurturing';
|
|
3551
|
+
interface KanbanStageConfig {
|
|
3552
|
+
color: string;
|
|
3553
|
+
label?: string;
|
|
3554
|
+
}
|
|
3555
|
+
type KanbanBoardConfig = Partial<Record<DealStage, KanbanStageConfig>>;
|
|
3556
|
+
interface DealContact {
|
|
3557
|
+
id: string;
|
|
3558
|
+
first_name: string | null;
|
|
3559
|
+
last_name: string | null;
|
|
3560
|
+
email: string;
|
|
3561
|
+
title: string | null;
|
|
3562
|
+
headline: string | null;
|
|
3563
|
+
linkedin_url: string | null;
|
|
3564
|
+
pipeline_status: Record<string, unknown> | null;
|
|
3565
|
+
enrichment_data: Record<string, unknown> | null;
|
|
3566
|
+
company: {
|
|
3567
|
+
id: string;
|
|
3568
|
+
name: string;
|
|
3569
|
+
domain: string | null;
|
|
3570
|
+
website: string | null;
|
|
3571
|
+
linkedin_url: string | null;
|
|
3572
|
+
segment: string | null;
|
|
3573
|
+
category: string | null;
|
|
3574
|
+
num_employees: number | null;
|
|
3575
|
+
} | null;
|
|
3576
|
+
}
|
|
3577
|
+
interface DealFilters {
|
|
3578
|
+
stage?: DealStage;
|
|
3579
|
+
search?: string;
|
|
3580
|
+
}
|
|
3581
|
+
/** Deal list item with joined contact and company data */
|
|
3582
|
+
interface DealListItem extends AcqDealRow {
|
|
3583
|
+
contact: DealContact | null;
|
|
3584
|
+
}
|
|
3585
|
+
type DealDetail = DealListItem;
|
|
3586
|
+
|
|
3548
3587
|
/**
|
|
3549
3588
|
* Action configuration for HITL tasks
|
|
3550
3589
|
* Defines available user actions and their behavior
|
|
@@ -3734,44 +3773,52 @@ interface NotificationDTO {
|
|
|
3734
3773
|
createdAt: string;
|
|
3735
3774
|
}
|
|
3736
3775
|
|
|
3737
|
-
/**
|
|
3738
|
-
|
|
3739
|
-
|
|
3740
|
-
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
|
|
3747
|
-
|
|
3748
|
-
|
|
3749
|
-
|
|
3750
|
-
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
|
|
3754
|
-
|
|
3755
|
-
|
|
3756
|
-
|
|
3757
|
-
|
|
3758
|
-
|
|
3759
|
-
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
|
|
3763
|
-
|
|
3764
|
-
}
|
|
3765
|
-
|
|
3766
|
-
|
|
3767
|
-
|
|
3768
|
-
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
|
|
3772
|
-
|
|
3773
|
-
|
|
3774
|
-
|
|
3776
|
+
/**
|
|
3777
|
+
* Full ListConfig shape. `qualification` is required; everything else optional.
|
|
3778
|
+
* Matches `acq_lists.config` jsonb and ListConfig type in types.ts.
|
|
3779
|
+
*/
|
|
3780
|
+
declare const ListConfigSchema: z.ZodObject<{
|
|
3781
|
+
qualification: z.ZodObject<{
|
|
3782
|
+
targetDescription: z.ZodString;
|
|
3783
|
+
minReviewCount: z.ZodNumber;
|
|
3784
|
+
minRating: z.ZodNumber;
|
|
3785
|
+
excludeFranchises: z.ZodBoolean;
|
|
3786
|
+
customRules: z.ZodString;
|
|
3787
|
+
}, z.core.$strip>;
|
|
3788
|
+
enrichment: z.ZodOptional<z.ZodObject<{
|
|
3789
|
+
emailDiscovery: z.ZodOptional<z.ZodObject<{
|
|
3790
|
+
primary: z.ZodEnum<{
|
|
3791
|
+
tomba: "tomba";
|
|
3792
|
+
anymailfinder: "anymailfinder";
|
|
3793
|
+
}>;
|
|
3794
|
+
credentialName: z.ZodOptional<z.ZodString>;
|
|
3795
|
+
}, z.core.$strip>>;
|
|
3796
|
+
emailVerification: z.ZodOptional<z.ZodObject<{
|
|
3797
|
+
provider: z.ZodLiteral<"millionverifier">;
|
|
3798
|
+
threshold: z.ZodOptional<z.ZodEnum<{
|
|
3799
|
+
ok: "ok";
|
|
3800
|
+
"ok+catch_all": "ok+catch_all";
|
|
3801
|
+
}>>;
|
|
3802
|
+
}, z.core.$strip>>;
|
|
3803
|
+
}, z.core.$strip>>;
|
|
3804
|
+
personalization: z.ZodOptional<z.ZodObject<{
|
|
3805
|
+
industryContext: z.ZodOptional<z.ZodString>;
|
|
3806
|
+
emailBody: z.ZodOptional<z.ZodString>;
|
|
3807
|
+
creativeDirection: z.ZodOptional<z.ZodString>;
|
|
3808
|
+
exclusionRules: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3809
|
+
}, z.core.$strip>>;
|
|
3810
|
+
pipeline: z.ZodOptional<z.ZodObject<{
|
|
3811
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
3812
|
+
key: z.ZodString;
|
|
3813
|
+
label: z.ZodString;
|
|
3814
|
+
resourceId: z.ZodString;
|
|
3815
|
+
inputTemplate: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3816
|
+
enabled: z.ZodBoolean;
|
|
3817
|
+
order: z.ZodNumber;
|
|
3818
|
+
}, z.core.$strip>>;
|
|
3819
|
+
}, z.core.$strip>>;
|
|
3820
|
+
}, z.core.$strip>;
|
|
3821
|
+
type ListConfigInput = z.infer<typeof ListConfigSchema>;
|
|
3775
3822
|
|
|
3776
3823
|
/**
|
|
3777
3824
|
* Multi-tenancy configuration types
|
|
@@ -4212,53 +4259,6 @@ interface Deployment {
|
|
|
4212
4259
|
updatedAt: string;
|
|
4213
4260
|
}
|
|
4214
4261
|
|
|
4215
|
-
/**
|
|
4216
|
-
* Full ListConfig shape. `qualification` is required; everything else optional.
|
|
4217
|
-
* Matches `acq_lists.config` jsonb and ListConfig type in types.ts.
|
|
4218
|
-
*/
|
|
4219
|
-
declare const ListConfigSchema: z.ZodObject<{
|
|
4220
|
-
qualification: z.ZodObject<{
|
|
4221
|
-
targetDescription: z.ZodString;
|
|
4222
|
-
minReviewCount: z.ZodNumber;
|
|
4223
|
-
minRating: z.ZodNumber;
|
|
4224
|
-
excludeFranchises: z.ZodBoolean;
|
|
4225
|
-
customRules: z.ZodString;
|
|
4226
|
-
}, z.core.$strip>;
|
|
4227
|
-
enrichment: z.ZodOptional<z.ZodObject<{
|
|
4228
|
-
emailDiscovery: z.ZodOptional<z.ZodObject<{
|
|
4229
|
-
primary: z.ZodEnum<{
|
|
4230
|
-
tomba: "tomba";
|
|
4231
|
-
anymailfinder: "anymailfinder";
|
|
4232
|
-
}>;
|
|
4233
|
-
credentialName: z.ZodOptional<z.ZodString>;
|
|
4234
|
-
}, z.core.$strip>>;
|
|
4235
|
-
emailVerification: z.ZodOptional<z.ZodObject<{
|
|
4236
|
-
provider: z.ZodLiteral<"millionverifier">;
|
|
4237
|
-
threshold: z.ZodOptional<z.ZodEnum<{
|
|
4238
|
-
ok: "ok";
|
|
4239
|
-
"ok+catch_all": "ok+catch_all";
|
|
4240
|
-
}>>;
|
|
4241
|
-
}, z.core.$strip>>;
|
|
4242
|
-
}, z.core.$strip>>;
|
|
4243
|
-
personalization: z.ZodOptional<z.ZodObject<{
|
|
4244
|
-
industryContext: z.ZodOptional<z.ZodString>;
|
|
4245
|
-
emailBody: z.ZodOptional<z.ZodString>;
|
|
4246
|
-
creativeDirection: z.ZodOptional<z.ZodString>;
|
|
4247
|
-
exclusionRules: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4248
|
-
}, z.core.$strip>>;
|
|
4249
|
-
pipeline: z.ZodOptional<z.ZodObject<{
|
|
4250
|
-
steps: z.ZodArray<z.ZodObject<{
|
|
4251
|
-
key: z.ZodString;
|
|
4252
|
-
label: z.ZodString;
|
|
4253
|
-
resourceId: z.ZodString;
|
|
4254
|
-
inputTemplate: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
4255
|
-
enabled: z.ZodBoolean;
|
|
4256
|
-
order: z.ZodNumber;
|
|
4257
|
-
}, z.core.$strip>>;
|
|
4258
|
-
}, z.core.$strip>>;
|
|
4259
|
-
}, z.core.$strip>;
|
|
4260
|
-
type ListConfigInput = z.infer<typeof ListConfigSchema>;
|
|
4261
|
-
|
|
4262
4262
|
interface TimeRangeSelectorProps {
|
|
4263
4263
|
value: TimeRange;
|
|
4264
4264
|
onChange: (value: TimeRange) => void;
|
|
@@ -6964,6 +6964,19 @@ type Database = {
|
|
|
6964
6964
|
}
|
|
6965
6965
|
}
|
|
6966
6966
|
|
|
6967
|
+
type MilestoneRow = Database['public']['Tables']['prj_milestones']['Row']
|
|
6968
|
+
|
|
6969
|
+
type TaskRow = Database['public']['Tables']['prj_tasks']['Row']
|
|
6970
|
+
|
|
6971
|
+
// ---------------------------------------------------------------------------
|
|
6972
|
+
// Response schemas (no .strict() — forward-compatible)
|
|
6973
|
+
// ---------------------------------------------------------------------------
|
|
6974
|
+
|
|
6975
|
+
declare const GetRecentActivityResponseSchema = z.object({
|
|
6976
|
+
entries: z.array(RecentActivityEntrySchema)
|
|
6977
|
+
})
|
|
6978
|
+
type GetRecentActivityResponse = z.infer<typeof GetRecentActivityResponseSchema>
|
|
6979
|
+
|
|
6967
6980
|
type SortDirection = 'asc' | 'desc';
|
|
6968
6981
|
interface SortState {
|
|
6969
6982
|
column: string;
|
|
@@ -7154,10 +7167,6 @@ interface CommandViewGraph$1 {
|
|
|
7154
7167
|
edges: CommandViewEdge$1[];
|
|
7155
7168
|
}
|
|
7156
7169
|
|
|
7157
|
-
type MilestoneRow = Database['public']['Tables']['prj_milestones']['Row']
|
|
7158
|
-
|
|
7159
|
-
type TaskRow = Database['public']['Tables']['prj_tasks']['Row']
|
|
7160
|
-
|
|
7161
7170
|
interface SortableHeaderProps {
|
|
7162
7171
|
column: string;
|
|
7163
7172
|
children: React.ReactNode;
|
|
@@ -8661,15 +8670,6 @@ declare function useCrmQuickMetrics(): {
|
|
|
8661
8670
|
error: unknown;
|
|
8662
8671
|
};
|
|
8663
8672
|
|
|
8664
|
-
// ---------------------------------------------------------------------------
|
|
8665
|
-
// Response schemas (no .strict() — forward-compatible)
|
|
8666
|
-
// ---------------------------------------------------------------------------
|
|
8667
|
-
|
|
8668
|
-
declare const GetRecentActivityResponseSchema = z.object({
|
|
8669
|
-
entries: z.array(RecentActivityEntrySchema)
|
|
8670
|
-
})
|
|
8671
|
-
type GetRecentActivityResponse = z.infer<typeof GetRecentActivityResponseSchema>
|
|
8672
|
-
|
|
8673
8673
|
declare function useRecentCrmActivity(opts?: {
|
|
8674
8674
|
limit?: number;
|
|
8675
8675
|
}): {
|
|
@@ -8737,6 +8737,27 @@ interface QuickCreateActionsProps {
|
|
|
8737
8737
|
}
|
|
8738
8738
|
declare function QuickCreateActions({ showSectionLabel }: QuickCreateActionsProps): react_jsx_runtime.JSX.Element;
|
|
8739
8739
|
|
|
8740
|
+
declare const SemanticDomainSchema = DisplayMetadataSchema.extend({
|
|
8741
|
+
id: ModelIdSchema,
|
|
8742
|
+
entityIds: ReferenceIdsSchema,
|
|
8743
|
+
surfaceIds: ReferenceIdsSchema,
|
|
8744
|
+
resourceIds: ReferenceIdsSchema,
|
|
8745
|
+
capabilityIds: ReferenceIdsSchema
|
|
8746
|
+
})
|
|
8747
|
+
|
|
8748
|
+
declare const FeatureKeySchema = z.enum([
|
|
8749
|
+
'acquisition',
|
|
8750
|
+
'delivery',
|
|
8751
|
+
'operations',
|
|
8752
|
+
'monitoring',
|
|
8753
|
+
'settings',
|
|
8754
|
+
'seo',
|
|
8755
|
+
'calibration'
|
|
8756
|
+
])
|
|
8757
|
+
|
|
8758
|
+
type OrganizationModelFeatureKey = z.infer<typeof FeatureKeySchema>
|
|
8759
|
+
type OrganizationModelSemanticDomain = z.infer<typeof SemanticDomainSchema>
|
|
8760
|
+
|
|
8740
8761
|
interface FeatureNavLink {
|
|
8741
8762
|
label: string;
|
|
8742
8763
|
link: string;
|
|
@@ -8757,6 +8778,9 @@ type FeatureSidebarComponent = ComponentType;
|
|
|
8757
8778
|
interface FeatureModule {
|
|
8758
8779
|
key: string;
|
|
8759
8780
|
label?: string;
|
|
8781
|
+
accessFeatureKey: OrganizationModelFeatureKey;
|
|
8782
|
+
domainIds?: OrganizationModelSemanticDomain['id'][];
|
|
8783
|
+
capabilityIds?: string[];
|
|
8760
8784
|
navEntry?: FeatureNavEntry;
|
|
8761
8785
|
sidebar?: FeatureSidebarComponent;
|
|
8762
8786
|
subshellRoutes?: string[];
|
|
@@ -8875,6 +8899,10 @@ declare const ProjectsSidebarMiddle: ({ currentPath, onNavigate }?: ProjectsSide
|
|
|
8875
8899
|
|
|
8876
8900
|
declare const deliveryManifest: FeatureModule;
|
|
8877
8901
|
|
|
8902
|
+
declare function AllTasksPage(): react_jsx_runtime.JSX.Element;
|
|
8903
|
+
|
|
8904
|
+
declare function UpcomingMilestonesPage(): react_jsx_runtime.JSX.Element;
|
|
8905
|
+
|
|
8878
8906
|
interface ProjectsListPageProps {
|
|
8879
8907
|
onProjectClick?: (projectId: string) => void;
|
|
8880
8908
|
}
|
|
@@ -8895,12 +8923,6 @@ declare const noteTypeColors: Record<string, string>;
|
|
|
8895
8923
|
declare function formatStatusLabel(status: string): string;
|
|
8896
8924
|
declare function calculateProgress(completed: number, total: number): number;
|
|
8897
8925
|
|
|
8898
|
-
/**
|
|
8899
|
-
* Compatibility manifest for existing consumers that still register a
|
|
8900
|
-
* top-level dashboard nav entry. Host apps should eventually own this nav item.
|
|
8901
|
-
*/
|
|
8902
|
-
declare const dashboardManifest: FeatureModule;
|
|
8903
|
-
|
|
8904
8926
|
declare const monitoringManifest: FeatureModule;
|
|
8905
8927
|
|
|
8906
8928
|
declare const settingsManifest: FeatureModule;
|
|
@@ -8913,5 +8935,5 @@ declare const OperationsSidebarMiddle: () => react_jsx_runtime.JSX.Element;
|
|
|
8913
8935
|
|
|
8914
8936
|
declare const operationsManifest: FeatureModule;
|
|
8915
8937
|
|
|
8916
|
-
export { APIErrorAlert, AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, ApiKeyDisplayModal, ApiKeyList, ApiKeySettings, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CONTAINER_CONSTANTS, CardHeader, CenteredErrorState, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CommandViewEdge, CommandViewGraph, CommandViewNode, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateScheduleModal, CredentialList, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, DealDrawer, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, DocTreeNav, EditApiKeyModal, ElevasisLoader, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilterBar, FormFieldRenderer, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, JsonViewer, KanbanBoard, KnowledgeBasePage, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipFeaturePanel, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipsList, PIPELINE_FUNNEL_ORDER, PageNotFound, PageTitleCaption, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, SAVED_VIEW_PRESETS, SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, SHARED_VIZ_CONSTANTS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StyledMarkdown, TabCountBadge, TableSelectionToolbar, TaskCard, TaskScheduler, TasksDueWidget, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, VisualizerContainer, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, buildErrorReport, buildListConfig, calculateProgress, catalogItemToResourceDefinition, crmManifest,
|
|
8938
|
+
export { APIErrorAlert, AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeySettings, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CONTAINER_CONSTANTS, CardHeader, CenteredErrorState, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CommandViewEdge, CommandViewGraph, CommandViewNode, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateScheduleModal, CredentialList, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, DealDrawer, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, DocTreeNav, EditApiKeyModal, ElevasisLoader, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilterBar, FormFieldRenderer, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, JsonViewer, KanbanBoard, KnowledgeBasePage, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipFeaturePanel, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipsList, PIPELINE_FUNNEL_ORDER, PageNotFound, PageTitleCaption, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, SAVED_VIEW_PRESETS, SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, SHARED_VIZ_CONSTANTS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StyledMarkdown, TabCountBadge, TableSelectionToolbar, TaskCard, TaskScheduler, TasksDueWidget, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, VisualizerContainer, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, buildErrorReport, buildListConfig, calculateProgress, catalogItemToResourceDefinition, crmManifest, deliveryManifest, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getStatusColor, iconMap, leadGenManifest, mdxComponents, milestoneStatusColors, monitoringManifest, noteTypeColors, operationsManifest, projectStatusColors, seoManifest, settingsManifest, showApiErrorNotification, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, taskStatusColors, taskTypeColors, useCrmPipelineSummary, useCrmQuickMetrics, useDeleteLists, useGraphBackgroundStyles, useGraphTheme, useNewKnowledgeMapLayout, useRecentCrmActivity };
|
|
8917
8939
|
export type { ActivityEntry, ActivityFiltersProps, ActivityTableProps, BaseEdgeProps, BaseExecutionLogsProps, BreadcrumbsProps, CommandViewGraphRef, ContextViewerProps, CostByModelTableProps, CrashErrorFallbackProps, CrmOverviewProps, DealDrawerProps, DealKanbanCardProps, ErrorAnalysisCardProps, ErrorReportCardProps, ExecutionBreakdownTableProps, ExecutionHealthCardProps, ExecutionLogEntry, ExecutionLogsFiltersProps, ExecutionLogsTableProps, FeatureUnavailableStateProps, FitViewButtonVariant, FormFieldRendererProps, GraphFitViewHandlerProps, JsonViewerProps, KanbanBoardProps, KnowledgeMapEdgeData, KnowledgeMapNodeData, LogLevel, MdxRendererProps, NavigationButtonProps, ProjectsSidebarMiddleProps, ResourceHealthPanelProps, RichTextEditorProps, SavedViewPreset, ScheduleType, SerializedKnowledgeMap, SerializedKnowledgeNode, StatCardProps, StyledMarkdownProps, TaskFilterStatus, TrendIndicatorProps };
|
package/dist/components/index.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import '../chunk-SMJLS23U.js';
|
|
2
2
|
import { useBreadcrumbs } from '../chunk-MG3NF7QL.js';
|
|
3
|
-
export { HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../chunk-
|
|
4
|
-
export { LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, 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, FormFieldRenderer, 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-6RGNVHG3.js';
|
|
4
|
+
export { LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, getEnrichmentColor, getStatusColor, leadGenManifest, useDeleteLists } from '../chunk-X4BLH3JL.js';
|
|
5
|
+
export { ActionModal, AgentDefinitionDisplay, AgentExecutionLogs, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, CheckpointGroup, CollapsibleJsonSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ContentSections, ContextUsageBadge, ContractDisplay, ExecutionErrorSection, FormFieldRenderer, 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-FH5QGCXL.js';
|
|
6
6
|
import '../chunk-ROSMICXG.js';
|
|
7
7
|
import { SubshellLoader, CollapsibleSidebarGroup } from '../chunk-IDACMRGQ.js';
|
|
8
|
-
import { NotificationList } from '../chunk-
|
|
9
|
-
export { ActivityCard, ActivityFilters as ActivityFiltersBar, ActivityTable, BusinessImpactCard, CostBreakdownCard, CostByModelTable, CostMetricsCard, ErrorAnalysisCard, ErrorBreakdownTable, ExecutionBreakdownTable, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, NotificationItem, NotificationList, monitoringManifest } from '../chunk-
|
|
10
|
-
export { ResourceHealthPanel } from '../chunk-
|
|
11
|
-
export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, seoManifest } from '../chunk-
|
|
12
|
-
export { CreateCredentialModal, CredentialList, CredentialSettings, MembershipFeaturePanel, MembershipStatusBadge, OAuthConnectModal, OrganizationMembershipsList, WebhookUrlDisplayModal, settingsManifest } from '../chunk-
|
|
13
|
-
export { ActivityFeedWidget, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, TasksDueWidget, crmManifest, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../chunk-
|
|
8
|
+
import { NotificationList } from '../chunk-PHRDZFJT.js';
|
|
9
|
+
export { ActivityCard, ActivityFilters as ActivityFiltersBar, ActivityTable, BusinessImpactCard, CostBreakdownCard, CostByModelTable, CostMetricsCard, ErrorAnalysisCard, ErrorBreakdownTable, ExecutionBreakdownTable, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, NotificationItem, NotificationList, monitoringManifest } from '../chunk-PHRDZFJT.js';
|
|
10
|
+
export { ResourceHealthPanel } from '../chunk-PEDPD3PU.js';
|
|
11
|
+
export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, seoManifest } from '../chunk-YIWLA2B6.js';
|
|
12
|
+
export { CreateCredentialModal, CredentialList, CredentialSettings, MembershipFeaturePanel, MembershipStatusBadge, OAuthConnectModal, OrganizationMembershipsList, WebhookUrlDisplayModal, settingsManifest } from '../chunk-CC4WGHGG.js';
|
|
13
|
+
export { ActivityFeedWidget, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, TasksDueWidget, crmManifest, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../chunk-MU5EZV3L.js';
|
|
14
14
|
export { SortableHeader, TableSelectionToolbar } from '../chunk-TUMSNGTX.js';
|
|
15
15
|
import { PageContainer } from '../chunk-BZZCNLT6.js';
|
|
16
16
|
import { SubshellNavItem } from '../chunk-27COZ5AH.js';
|
|
@@ -18,23 +18,23 @@ import { FilterBar } from '../chunk-PDHTXPSF.js';
|
|
|
18
18
|
export { FilterBar } from '../chunk-PDHTXPSF.js';
|
|
19
19
|
import { CustomModal } from '../chunk-GBMNCNHX.js';
|
|
20
20
|
export { ConfirmationInputModal, ConfirmationModal, CustomModal } from '../chunk-GBMNCNHX.js';
|
|
21
|
-
import { BaseNode, useGraphTheme, BaseEdge, GraphBackground, GraphLegend, GraphFitViewButton } from '../chunk-
|
|
22
|
-
export { AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, BaseEdge, BaseNode, EmptyVisualizer, ExecutionStats, ExecutionStatusBadge, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, VisualizerContainer, WorkflowExecutionTimeline,
|
|
21
|
+
import { BaseNode, useGraphTheme, BaseEdge, GraphBackground, GraphLegend, GraphFitViewButton } from '../chunk-ZB5PKIX5.js';
|
|
22
|
+
export { AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, BaseEdge, BaseNode, EmptyVisualizer, ExecutionStats, ExecutionStatusBadge, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, VisualizerContainer, WorkflowExecutionTimeline, getGraphBackgroundStyles, useGraphBackgroundStyles, useGraphTheme } from '../chunk-ZB5PKIX5.js';
|
|
23
23
|
export { ResourceHealthChart, getHealthColor } from '../chunk-LGKLC5MG.js';
|
|
24
24
|
import '../chunk-KFICYU6S.js';
|
|
25
25
|
import { AppShellLoader } from '../chunk-YEX4MQSY.js';
|
|
26
26
|
import '../chunk-VNUOQQNY.js';
|
|
27
27
|
export { CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS } from '../chunk-XA34RETF.js';
|
|
28
|
-
import { useUpdateApiKey, useDeleteApiKey, useCreateApiKey, useListApiKeys, useActivateDeployment, useDeactivateDeployment, useDeleteDeployment, useListDeployments } from '../chunk-
|
|
29
|
-
import { useCommandViewLayout, usePaginationState, useDeploymentDocs, useResources, useCreateSchedule, useListSchedules, usePauseSchedule, useResumeSchedule, useCancelSchedule, useDeleteSchedule, useDealNotes, useCreateDealNote, useDeals, useSyncDealStage, dealKeys, useMarkAllAsRead, useNotifications, showErrorNotification, showSuccessNotification, showApiErrorNotification } from '../chunk-
|
|
30
|
-
export { showApiErrorNotification, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification } from '../chunk-
|
|
28
|
+
import { useUpdateApiKey, useDeleteApiKey, useCreateApiKey, useListApiKeys, useActivateDeployment, useDeactivateDeployment, useDeleteDeployment, useListDeployments } from '../chunk-DQJM7T2N.js';
|
|
29
|
+
import { useCommandViewLayout, usePaginationState, useDeploymentDocs, useResources, useCreateSchedule, useListSchedules, usePauseSchedule, useResumeSchedule, useCancelSchedule, useDeleteSchedule, useDealNotes, useCreateDealNote, useDeals, useSyncDealStage, dealKeys, useMarkAllAsRead, useNotifications, showErrorNotification, showSuccessNotification, showApiErrorNotification } from '../chunk-POFDRPDI.js';
|
|
30
|
+
export { showApiErrorNotification, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification } from '../chunk-POFDRPDI.js';
|
|
31
31
|
import '../chunk-LXHZYSMQ.js';
|
|
32
32
|
import { Graph_module_css_default, useDirectedChainHighlighting, useNodeSelection, GRAPH_CONSTANTS } from '../chunk-22UVE3RA.js';
|
|
33
33
|
export { Graph_module_css_default as graphStyles } from '../chunk-22UVE3RA.js';
|
|
34
|
-
import '../chunk-
|
|
34
|
+
import '../chunk-4GZ6VZWO.js';
|
|
35
35
|
import '../chunk-47YILFON.js';
|
|
36
36
|
import '../chunk-CYXZHBP4.js';
|
|
37
|
-
import '../chunk-
|
|
37
|
+
import '../chunk-O4PMRC6J.js';
|
|
38
38
|
import { SubshellContainer, SubshellSidebar, SubshellRightSideContainer, SubshellContentContainer } from '../chunk-RX4UWZZR.js';
|
|
39
39
|
import { ListSkeleton, EmptyState, PageTitleCaption, StatCard, CenteredErrorState, CardHeader, ActivityTimeline } from '../chunk-Y3D3WFJG.js';
|
|
40
40
|
export { APIErrorAlert, ActivityTimeline, CardHeader, CenteredErrorState, CollapsibleSection, ContextViewer, CustomSelector, DetailCardSkeleton, ElevasisLoader, EmptyState, FeatureUnavailableState, GlowDot, JsonViewer, ListSkeleton, PageNotFound, PageTitleCaption, ResourceCard, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, TabCountBadge, TimeRangeSelector, TrendIndicator, catalogItemToResourceDefinition } from '../chunk-Y3D3WFJG.js';
|
|
@@ -2782,6 +2782,27 @@ interface QuickCreateActionsProps {
|
|
|
2782
2782
|
}
|
|
2783
2783
|
declare function QuickCreateActions({ showSectionLabel }: QuickCreateActionsProps): react_jsx_runtime.JSX.Element;
|
|
2784
2784
|
|
|
2785
|
+
declare const SemanticDomainSchema = DisplayMetadataSchema.extend({
|
|
2786
|
+
id: ModelIdSchema,
|
|
2787
|
+
entityIds: ReferenceIdsSchema,
|
|
2788
|
+
surfaceIds: ReferenceIdsSchema,
|
|
2789
|
+
resourceIds: ReferenceIdsSchema,
|
|
2790
|
+
capabilityIds: ReferenceIdsSchema
|
|
2791
|
+
})
|
|
2792
|
+
|
|
2793
|
+
declare const FeatureKeySchema = z.enum([
|
|
2794
|
+
'acquisition',
|
|
2795
|
+
'delivery',
|
|
2796
|
+
'operations',
|
|
2797
|
+
'monitoring',
|
|
2798
|
+
'settings',
|
|
2799
|
+
'seo',
|
|
2800
|
+
'calibration'
|
|
2801
|
+
])
|
|
2802
|
+
|
|
2803
|
+
type OrganizationModelFeatureKey = z.infer<typeof FeatureKeySchema>
|
|
2804
|
+
type OrganizationModelSemanticDomain = z.infer<typeof SemanticDomainSchema>
|
|
2805
|
+
|
|
2785
2806
|
interface FeatureNavLink {
|
|
2786
2807
|
label: string;
|
|
2787
2808
|
link: string;
|
|
@@ -2802,6 +2823,9 @@ type FeatureSidebarComponent = ComponentType;
|
|
|
2802
2823
|
interface FeatureModule {
|
|
2803
2824
|
key: string;
|
|
2804
2825
|
label?: string;
|
|
2826
|
+
accessFeatureKey: OrganizationModelFeatureKey;
|
|
2827
|
+
domainIds?: OrganizationModelSemanticDomain['id'][];
|
|
2828
|
+
capabilityIds?: string[];
|
|
2805
2829
|
navEntry?: FeatureNavEntry;
|
|
2806
2830
|
sidebar?: FeatureSidebarComponent;
|
|
2807
2831
|
subshellRoutes?: string[];
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
export { ActivityFeedWidget, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DEAL_STAGE_COLORS, DEAL_STAGE_OPTIONS, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, TasksDueWidget, crmManifest, formatDealStageLabel, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../../chunk-
|
|
1
|
+
export { ActivityFeedWidget, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DEAL_STAGE_COLORS, DEAL_STAGE_OPTIONS, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, TasksDueWidget, crmManifest, formatDealStageLabel, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../../chunk-MU5EZV3L.js';
|
|
2
2
|
import '../../chunk-TUMSNGTX.js';
|
|
3
3
|
import '../../chunk-BZZCNLT6.js';
|
|
4
4
|
import '../../chunk-27COZ5AH.js';
|
|
5
5
|
import '../../chunk-PDHTXPSF.js';
|
|
6
6
|
import '../../chunk-GBMNCNHX.js';
|
|
7
|
-
import '../../chunk-
|
|
8
|
-
import '../../chunk-
|
|
7
|
+
import '../../chunk-DQJM7T2N.js';
|
|
8
|
+
import '../../chunk-POFDRPDI.js';
|
|
9
9
|
import '../../chunk-LXHZYSMQ.js';
|
|
10
10
|
import '../../chunk-22UVE3RA.js';
|
|
11
|
-
import '../../chunk-
|
|
11
|
+
import '../../chunk-4GZ6VZWO.js';
|
|
12
12
|
import '../../chunk-47YILFON.js';
|
|
13
13
|
import '../../chunk-CYXZHBP4.js';
|
|
14
|
-
import '../../chunk-
|
|
14
|
+
import '../../chunk-O4PMRC6J.js';
|
|
15
15
|
import '../../chunk-RX4UWZZR.js';
|
|
16
16
|
import '../../chunk-Y3D3WFJG.js';
|
|
17
17
|
import '../../chunk-3KMDHCAR.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { ReactNode
|
|
2
|
+
import { ReactNode } from 'react';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Time range selector for dashboard metrics
|
|
@@ -246,40 +246,5 @@ interface UnresolvedErrorsTeaserProps {
|
|
|
246
246
|
}
|
|
247
247
|
declare function UnresolvedErrorsTeaser({ timeRange, onNavigateToAllErrors }: UnresolvedErrorsTeaserProps): react_jsx_runtime.JSX.Element;
|
|
248
248
|
|
|
249
|
-
|
|
250
|
-
label: string;
|
|
251
|
-
link: string;
|
|
252
|
-
featureKey?: string;
|
|
253
|
-
onClick?: () => void;
|
|
254
|
-
links?: FeatureNavLink[];
|
|
255
|
-
}
|
|
256
|
-
interface FeatureNavEntry {
|
|
257
|
-
label: string;
|
|
258
|
-
icon: ComponentType;
|
|
259
|
-
link?: string;
|
|
260
|
-
featureKey?: string;
|
|
261
|
-
requiresAdmin?: boolean;
|
|
262
|
-
dataOnboardingTourId?: string;
|
|
263
|
-
links?: FeatureNavLink[];
|
|
264
|
-
}
|
|
265
|
-
type FeatureSidebarComponent = ComponentType;
|
|
266
|
-
interface FeatureModule {
|
|
267
|
-
key: string;
|
|
268
|
-
label?: string;
|
|
269
|
-
navEntry?: FeatureNavEntry;
|
|
270
|
-
sidebar?: FeatureSidebarComponent;
|
|
271
|
-
subshellRoutes?: string[];
|
|
272
|
-
organizationGraph?: OrganizationGraphFeatureBridge;
|
|
273
|
-
}
|
|
274
|
-
interface OrganizationGraphFeatureBridge {
|
|
275
|
-
surfaceId: string;
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
/**
|
|
279
|
-
* Compatibility manifest for existing consumers that still register a
|
|
280
|
-
* top-level dashboard nav entry. Host apps should eventually own this nav item.
|
|
281
|
-
*/
|
|
282
|
-
declare const dashboardManifest: FeatureModule;
|
|
283
|
-
|
|
284
|
-
export { Dashboard, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser, dashboardManifest };
|
|
249
|
+
export { Dashboard, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser };
|
|
285
250
|
export type { DashboardProps, DisplayResource, OperationsOverviewProps, RecentExecutionsByResourceProps, ResourceOverviewProps, UnresolvedErrorsTeaserProps };
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
export { Dashboard, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser
|
|
1
|
+
export { Dashboard, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser } from '../../chunk-ZB5PKIX5.js';
|
|
2
2
|
import '../../chunk-LGKLC5MG.js';
|
|
3
3
|
import '../../chunk-KFICYU6S.js';
|
|
4
4
|
import '../../chunk-YEX4MQSY.js';
|
|
5
5
|
import '../../chunk-XA34RETF.js';
|
|
6
|
-
import '../../chunk-
|
|
7
|
-
import '../../chunk-
|
|
6
|
+
import '../../chunk-DQJM7T2N.js';
|
|
7
|
+
import '../../chunk-POFDRPDI.js';
|
|
8
8
|
import '../../chunk-LXHZYSMQ.js';
|
|
9
9
|
import '../../chunk-22UVE3RA.js';
|
|
10
|
-
import '../../chunk-
|
|
10
|
+
import '../../chunk-4GZ6VZWO.js';
|
|
11
11
|
import '../../chunk-47YILFON.js';
|
|
12
12
|
import '../../chunk-CYXZHBP4.js';
|
|
13
|
-
import '../../chunk-
|
|
13
|
+
import '../../chunk-O4PMRC6J.js';
|
|
14
14
|
import '../../chunk-RX4UWZZR.js';
|
|
15
15
|
import '../../chunk-Y3D3WFJG.js';
|
|
16
16
|
import '../../chunk-3KMDHCAR.js';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { z } from 'zod';
|
|
2
3
|
import { ComponentType } from 'react';
|
|
3
4
|
|
|
4
5
|
interface HealthStatusCardProps {
|
|
@@ -2589,6 +2590,27 @@ interface ProjectsSidebarMiddleProps {
|
|
|
2589
2590
|
}
|
|
2590
2591
|
declare const ProjectsSidebarMiddle: ({ currentPath, onNavigate }?: ProjectsSidebarMiddleProps) => react_jsx_runtime.JSX.Element;
|
|
2591
2592
|
|
|
2593
|
+
declare const SemanticDomainSchema = DisplayMetadataSchema.extend({
|
|
2594
|
+
id: ModelIdSchema,
|
|
2595
|
+
entityIds: ReferenceIdsSchema,
|
|
2596
|
+
surfaceIds: ReferenceIdsSchema,
|
|
2597
|
+
resourceIds: ReferenceIdsSchema,
|
|
2598
|
+
capabilityIds: ReferenceIdsSchema
|
|
2599
|
+
})
|
|
2600
|
+
|
|
2601
|
+
declare const FeatureKeySchema = z.enum([
|
|
2602
|
+
'acquisition',
|
|
2603
|
+
'delivery',
|
|
2604
|
+
'operations',
|
|
2605
|
+
'monitoring',
|
|
2606
|
+
'settings',
|
|
2607
|
+
'seo',
|
|
2608
|
+
'calibration'
|
|
2609
|
+
])
|
|
2610
|
+
|
|
2611
|
+
type OrganizationModelFeatureKey = z.infer<typeof FeatureKeySchema>
|
|
2612
|
+
type OrganizationModelSemanticDomain = z.infer<typeof SemanticDomainSchema>
|
|
2613
|
+
|
|
2592
2614
|
interface FeatureNavLink {
|
|
2593
2615
|
label: string;
|
|
2594
2616
|
link: string;
|
|
@@ -2609,6 +2631,9 @@ type FeatureSidebarComponent = ComponentType;
|
|
|
2609
2631
|
interface FeatureModule {
|
|
2610
2632
|
key: string;
|
|
2611
2633
|
label?: string;
|
|
2634
|
+
accessFeatureKey: OrganizationModelFeatureKey;
|
|
2635
|
+
domainIds?: OrganizationModelSemanticDomain['id'][];
|
|
2636
|
+
capabilityIds?: string[];
|
|
2612
2637
|
navEntry?: FeatureNavEntry;
|
|
2613
2638
|
sidebar?: FeatureSidebarComponent;
|
|
2614
2639
|
subshellRoutes?: string[];
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
export { AllTasksPage, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../../chunk-
|
|
1
|
+
export { AllTasksPage, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../../chunk-6RGNVHG3.js';
|
|
2
2
|
import '../../chunk-TUMSNGTX.js';
|
|
3
3
|
import '../../chunk-BZZCNLT6.js';
|
|
4
4
|
import '../../chunk-27COZ5AH.js';
|
|
5
5
|
import '../../chunk-PDHTXPSF.js';
|
|
6
6
|
import '../../chunk-GBMNCNHX.js';
|
|
7
|
-
import '../../chunk-
|
|
8
|
-
import '../../chunk-
|
|
7
|
+
import '../../chunk-DQJM7T2N.js';
|
|
8
|
+
import '../../chunk-POFDRPDI.js';
|
|
9
9
|
import '../../chunk-LXHZYSMQ.js';
|
|
10
10
|
import '../../chunk-22UVE3RA.js';
|
|
11
|
-
import '../../chunk-
|
|
11
|
+
import '../../chunk-4GZ6VZWO.js';
|
|
12
12
|
import '../../chunk-47YILFON.js';
|
|
13
13
|
import '../../chunk-CYXZHBP4.js';
|
|
14
|
-
import '../../chunk-
|
|
14
|
+
import '../../chunk-O4PMRC6J.js';
|
|
15
15
|
import '../../chunk-RX4UWZZR.js';
|
|
16
16
|
import '../../chunk-Y3D3WFJG.js';
|
|
17
17
|
import '../../chunk-3KMDHCAR.js';
|