@elevasis/ui 2.0.3 → 2.1.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/components/index.d.ts +111 -1
- package/dist/components/index.js +1556 -13
- package/package.json +1 -1
|
@@ -8,6 +8,7 @@ import { UseFormReturnType } from '@mantine/form';
|
|
|
8
8
|
import { NodeProps, Node, EdgeProps, Edge } from '@xyflow/react';
|
|
9
9
|
export { default as graphStyles } from '../graph/Graph.module.css';
|
|
10
10
|
import { z } from 'zod';
|
|
11
|
+
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
11
12
|
|
|
12
13
|
interface EmptyStateProps {
|
|
13
14
|
/** Icon component to display (e.g., IconKey from @tabler/icons-react) */
|
|
@@ -3770,6 +3771,7 @@ interface DealFilters {
|
|
|
3770
3771
|
interface DealListItem extends AcqDealRow {
|
|
3771
3772
|
contact: DealContact | null;
|
|
3772
3773
|
}
|
|
3774
|
+
type DealDetail = DealListItem;
|
|
3773
3775
|
|
|
3774
3776
|
/**
|
|
3775
3777
|
* Multi-tenancy configuration types
|
|
@@ -4210,6 +4212,53 @@ interface Deployment {
|
|
|
4210
4212
|
updatedAt: string;
|
|
4211
4213
|
}
|
|
4212
4214
|
|
|
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
|
+
|
|
4213
4262
|
interface TimeRangeSelectorProps {
|
|
4214
4263
|
value: TimeRange;
|
|
4215
4264
|
onChange: (value: TimeRange) => void;
|
|
@@ -8714,6 +8763,15 @@ interface FeatureModule {
|
|
|
8714
8763
|
|
|
8715
8764
|
declare const crmManifest: FeatureModule;
|
|
8716
8765
|
|
|
8766
|
+
declare function DealsListPage(): react_jsx_runtime.JSX.Element;
|
|
8767
|
+
|
|
8768
|
+
interface DealDetailPageProps {
|
|
8769
|
+
dealId: string;
|
|
8770
|
+
renderActions?: (deal: DealDetail) => ReactNode;
|
|
8771
|
+
onDealLoaded?: (deal: DealDetail) => void;
|
|
8772
|
+
}
|
|
8773
|
+
declare function DealDetailPage({ dealId, renderActions, onDealLoaded }: DealDetailPageProps): react_jsx_runtime.JSX.Element;
|
|
8774
|
+
|
|
8717
8775
|
declare const LeadGenSidebar: () => react_jsx_runtime.JSX.Element;
|
|
8718
8776
|
|
|
8719
8777
|
declare const LeadGenSidebarTop: () => react_jsx_runtime.JSX.Element;
|
|
@@ -8722,6 +8780,53 @@ declare const LeadGenSidebarMiddle: () => react_jsx_runtime.JSX.Element;
|
|
|
8722
8780
|
|
|
8723
8781
|
declare const leadGenManifest: FeatureModule;
|
|
8724
8782
|
|
|
8783
|
+
interface LeadGenRouteLink {
|
|
8784
|
+
label: string;
|
|
8785
|
+
to: string;
|
|
8786
|
+
}
|
|
8787
|
+
declare const LEAD_GEN_ROUTE_LINKS: LeadGenRouteLink[];
|
|
8788
|
+
declare function LeadGenRouteShell({ title, caption, body, links }: {
|
|
8789
|
+
title: string;
|
|
8790
|
+
caption: string;
|
|
8791
|
+
body: ReactNode;
|
|
8792
|
+
links?: LeadGenRouteLink[];
|
|
8793
|
+
}): react_jsx_runtime.JSX.Element;
|
|
8794
|
+
declare function getStatusColor(status: string | null): "green" | "red" | "gray";
|
|
8795
|
+
declare function getEnrichmentColor(status: string): "green" | "red" | "gray" | "yellow";
|
|
8796
|
+
declare const LIST_TEMPLATE_OPTIONS: readonly [{
|
|
8797
|
+
readonly value: "blank";
|
|
8798
|
+
readonly label: "Blank";
|
|
8799
|
+
readonly description: "Create an empty draft list with qualification defaults and no pipeline steps.";
|
|
8800
|
+
}, {
|
|
8801
|
+
readonly value: "full_pipeline";
|
|
8802
|
+
readonly label: "Full 6-Stage";
|
|
8803
|
+
readonly description: "Create a complete lead-gen pipeline from scrape through personalization.";
|
|
8804
|
+
}, {
|
|
8805
|
+
readonly value: "personalize_only";
|
|
8806
|
+
readonly label: "Personalize Only";
|
|
8807
|
+
readonly description: "Start with personalization and upload-focused steps for already-prepared contacts.";
|
|
8808
|
+
}, {
|
|
8809
|
+
readonly value: "email_refresh";
|
|
8810
|
+
readonly label: "Email Refresh";
|
|
8811
|
+
readonly description: "Run discovery, verification, and personalization for an existing company set.";
|
|
8812
|
+
}];
|
|
8813
|
+
type LeadGenListTemplateValue = (typeof LIST_TEMPLATE_OPTIONS)[number]['value'];
|
|
8814
|
+
declare function buildListConfig(template: LeadGenListTemplateValue, targetDescription: string): ListConfigInput;
|
|
8815
|
+
|
|
8816
|
+
declare function useDeleteLists(): _tanstack_react_query.UseMutationResult<void, Error, string[], unknown>;
|
|
8817
|
+
|
|
8818
|
+
declare function LeadGenOverviewPage(): react_jsx_runtime.JSX.Element;
|
|
8819
|
+
declare function LeadGenDeliverabilityPage(): react_jsx_runtime.JSX.Element;
|
|
8820
|
+
|
|
8821
|
+
declare function LeadGenListsPage(): react_jsx_runtime.JSX.Element;
|
|
8822
|
+
|
|
8823
|
+
declare function LeadGenListDetailPage({ listId }: {
|
|
8824
|
+
listId: string;
|
|
8825
|
+
}): react_jsx_runtime.JSX.Element;
|
|
8826
|
+
|
|
8827
|
+
declare function LeadGenCompaniesPage(): react_jsx_runtime.JSX.Element;
|
|
8828
|
+
declare function LeadGenContactsPage(): react_jsx_runtime.JSX.Element;
|
|
8829
|
+
|
|
8725
8830
|
declare const SEOSidebar: () => react_jsx_runtime.JSX.Element;
|
|
8726
8831
|
|
|
8727
8832
|
declare const SEOSidebarTop: () => react_jsx_runtime.JSX.Element;
|
|
@@ -8764,6 +8869,11 @@ declare const ProjectsSidebarMiddle: ({ currentPath, onNavigate }?: ProjectsSide
|
|
|
8764
8869
|
|
|
8765
8870
|
declare const deliveryManifest: FeatureModule;
|
|
8766
8871
|
|
|
8872
|
+
interface ProjectsListPageProps {
|
|
8873
|
+
onProjectClick?: (projectId: string) => void;
|
|
8874
|
+
}
|
|
8875
|
+
declare function ProjectsListPage({ onProjectClick }?: ProjectsListPageProps): react_jsx_runtime.JSX.Element;
|
|
8876
|
+
|
|
8767
8877
|
declare const projectStatusColors: Record<string, string>;
|
|
8768
8878
|
declare const milestoneStatusColors: Record<string, string>;
|
|
8769
8879
|
declare const taskStatusColors: Record<string, string>;
|
|
@@ -8790,5 +8900,5 @@ declare const OperationsSidebarMiddle: () => react_jsx_runtime.JSX.Element;
|
|
|
8790
8900
|
|
|
8791
8901
|
declare const operationsManifest: FeatureModule;
|
|
8792
8902
|
|
|
8793
|
-
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, DealDrawer, DealKanbanCard, 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, 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, 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, calculateProgress, catalogItemToResourceDefinition, crmManifest, dashboardManifest, deliveryManifest, formatStatusLabel, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, iconMap, leadGenManifest, mdxComponents, milestoneStatusColors, monitoringManifest, noteTypeColors, operationsManifest, projectStatusColors, seoManifest, settingsManifest, showApiErrorNotification, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, taskStatusColors, taskTypeColors, useCrmPipelineSummary, useCrmQuickMetrics, useGraphBackgroundStyles, useGraphTheme, useNewKnowledgeMapLayout, useRecentCrmActivity };
|
|
8903
|
+
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, 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, dashboardManifest, 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 };
|
|
8794
8904
|
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 };
|