@elevasis/ui 2.14.1 → 2.16.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-A7346I7H.js → chunk-5UQKR27N.js} +1 -1
- package/dist/{chunk-F2GI5TQT.js → chunk-6SHOLCSV.js} +4 -3
- package/dist/{chunk-TAUPDLQ7.js → chunk-7MBONWZZ.js} +1 -1
- package/dist/{chunk-DKQQK3WX.js → chunk-BKSSVQM6.js} +1 -1
- package/dist/{chunk-ETQRV5A6.js → chunk-C3INGWGK.js} +1 -1
- package/dist/{chunk-C7BX547M.js → chunk-DT7ETYBT.js} +6 -0
- package/dist/{chunk-JAUU6TZU.js → chunk-F4VHHW4O.js} +109 -143
- package/dist/{chunk-JL7RHMV2.js → chunk-LKU4JCPR.js} +2 -2
- package/dist/{chunk-NPWJYY4B.js → chunk-M2RM3CC4.js} +1 -1
- package/dist/{chunk-IO75JNQE.js → chunk-RWFT46RK.js} +1 -1
- package/dist/{chunk-C56A2MAS.js → chunk-XNEYUG4B.js} +13 -6
- package/dist/components/index.d.ts +141 -49
- package/dist/components/index.js +22 -396
- package/dist/features/auth/index.d.ts +70 -6
- package/dist/features/crm/index.d.ts +70 -6
- package/dist/features/crm/index.js +4 -4
- package/dist/features/dashboard/index.js +4 -4
- package/dist/features/delivery/index.d.ts +70 -6
- package/dist/features/delivery/index.js +4 -4
- package/dist/features/lead-gen/index.js +7 -7
- package/dist/features/monitoring/index.js +5 -5
- package/dist/features/monitoring/requests/index.js +4 -4
- package/dist/features/operations/index.js +6 -6
- package/dist/features/settings/index.d.ts +70 -6
- package/dist/features/settings/index.js +4 -4
- package/dist/hooks/index.d.ts +150 -65
- package/dist/hooks/index.js +3 -3
- package/dist/hooks/published.d.ts +150 -65
- package/dist/hooks/published.js +3 -3
- package/dist/index.d.ts +155 -66
- package/dist/index.js +3 -3
- package/dist/initialization/index.d.ts +70 -6
- package/dist/profile/index.d.ts +70 -6
- package/dist/provider/index.d.ts +5 -1
- package/dist/provider/index.js +2 -2
- package/dist/provider/published.d.ts +5 -1
- package/dist/provider/published.js +1 -1
- package/dist/supabase/index.d.ts +130 -12
- package/dist/types/index.d.ts +70 -6
- package/package.json +2 -2
- package/src/hooks/README.md +1 -2
|
@@ -2142,10 +2142,8 @@ type Database$1 = {
|
|
|
2142
2142
|
};
|
|
2143
2143
|
deployments: {
|
|
2144
2144
|
Row: {
|
|
2145
|
-
compiled_docs: Json$1 | null;
|
|
2146
2145
|
created_at: string;
|
|
2147
2146
|
deployment_version: string | null;
|
|
2148
|
-
documentation: Json$1 | null;
|
|
2149
2147
|
error_message: string | null;
|
|
2150
2148
|
id: string;
|
|
2151
2149
|
organization_id: string;
|
|
@@ -2157,10 +2155,8 @@ type Database$1 = {
|
|
|
2157
2155
|
updated_at: string;
|
|
2158
2156
|
};
|
|
2159
2157
|
Insert: {
|
|
2160
|
-
compiled_docs?: Json$1 | null;
|
|
2161
2158
|
created_at?: string;
|
|
2162
2159
|
deployment_version?: string | null;
|
|
2163
|
-
documentation?: Json$1 | null;
|
|
2164
2160
|
error_message?: string | null;
|
|
2165
2161
|
id?: string;
|
|
2166
2162
|
organization_id: string;
|
|
@@ -2172,10 +2168,8 @@ type Database$1 = {
|
|
|
2172
2168
|
updated_at?: string;
|
|
2173
2169
|
};
|
|
2174
2170
|
Update: {
|
|
2175
|
-
compiled_docs?: Json$1 | null;
|
|
2176
2171
|
created_at?: string;
|
|
2177
2172
|
deployment_version?: string | null;
|
|
2178
|
-
documentation?: Json$1 | null;
|
|
2179
2173
|
error_message?: string | null;
|
|
2180
2174
|
id?: string;
|
|
2181
2175
|
organization_id?: string;
|
|
@@ -2687,6 +2681,13 @@ type Database$1 = {
|
|
|
2687
2681
|
updated_at?: string;
|
|
2688
2682
|
};
|
|
2689
2683
|
Relationships: [
|
|
2684
|
+
{
|
|
2685
|
+
foreignKeyName: "fk_milestones_project";
|
|
2686
|
+
columns: ["project_id"];
|
|
2687
|
+
isOneToOne: false;
|
|
2688
|
+
referencedRelation: "prj_projects";
|
|
2689
|
+
referencedColumns: ["id"];
|
|
2690
|
+
},
|
|
2690
2691
|
{
|
|
2691
2692
|
foreignKeyName: "prj_milestones_organization_id_fkey";
|
|
2692
2693
|
columns: ["organization_id"];
|
|
@@ -2747,6 +2748,34 @@ type Database$1 = {
|
|
|
2747
2748
|
type?: string;
|
|
2748
2749
|
};
|
|
2749
2750
|
Relationships: [
|
|
2751
|
+
{
|
|
2752
|
+
foreignKeyName: "fk_notes_created_by";
|
|
2753
|
+
columns: ["created_by"];
|
|
2754
|
+
isOneToOne: false;
|
|
2755
|
+
referencedRelation: "users";
|
|
2756
|
+
referencedColumns: ["id"];
|
|
2757
|
+
},
|
|
2758
|
+
{
|
|
2759
|
+
foreignKeyName: "fk_notes_milestone";
|
|
2760
|
+
columns: ["milestone_id"];
|
|
2761
|
+
isOneToOne: false;
|
|
2762
|
+
referencedRelation: "prj_milestones";
|
|
2763
|
+
referencedColumns: ["id"];
|
|
2764
|
+
},
|
|
2765
|
+
{
|
|
2766
|
+
foreignKeyName: "fk_notes_project";
|
|
2767
|
+
columns: ["project_id"];
|
|
2768
|
+
isOneToOne: false;
|
|
2769
|
+
referencedRelation: "prj_projects";
|
|
2770
|
+
referencedColumns: ["id"];
|
|
2771
|
+
},
|
|
2772
|
+
{
|
|
2773
|
+
foreignKeyName: "fk_notes_task";
|
|
2774
|
+
columns: ["task_id"];
|
|
2775
|
+
isOneToOne: false;
|
|
2776
|
+
referencedRelation: "prj_tasks";
|
|
2777
|
+
referencedColumns: ["id"];
|
|
2778
|
+
},
|
|
2750
2779
|
{
|
|
2751
2780
|
foreignKeyName: "prj_notes_created_by_fkey";
|
|
2752
2781
|
columns: ["created_by"];
|
|
@@ -2837,6 +2866,20 @@ type Database$1 = {
|
|
|
2837
2866
|
updated_at?: string;
|
|
2838
2867
|
};
|
|
2839
2868
|
Relationships: [
|
|
2869
|
+
{
|
|
2870
|
+
foreignKeyName: "fk_projects_company";
|
|
2871
|
+
columns: ["client_company_id"];
|
|
2872
|
+
isOneToOne: false;
|
|
2873
|
+
referencedRelation: "acq_companies";
|
|
2874
|
+
referencedColumns: ["id"];
|
|
2875
|
+
},
|
|
2876
|
+
{
|
|
2877
|
+
foreignKeyName: "fk_projects_deal";
|
|
2878
|
+
columns: ["deal_id"];
|
|
2879
|
+
isOneToOne: false;
|
|
2880
|
+
referencedRelation: "acq_deals";
|
|
2881
|
+
referencedColumns: ["id"];
|
|
2882
|
+
},
|
|
2840
2883
|
{
|
|
2841
2884
|
foreignKeyName: "prj_projects_client_company_id_fkey";
|
|
2842
2885
|
columns: ["client_company_id"];
|
|
@@ -2919,6 +2962,27 @@ type Database$1 = {
|
|
|
2919
2962
|
updated_at?: string;
|
|
2920
2963
|
};
|
|
2921
2964
|
Relationships: [
|
|
2965
|
+
{
|
|
2966
|
+
foreignKeyName: "fk_tasks_milestone";
|
|
2967
|
+
columns: ["milestone_id"];
|
|
2968
|
+
isOneToOne: false;
|
|
2969
|
+
referencedRelation: "prj_milestones";
|
|
2970
|
+
referencedColumns: ["id"];
|
|
2971
|
+
},
|
|
2972
|
+
{
|
|
2973
|
+
foreignKeyName: "fk_tasks_parent";
|
|
2974
|
+
columns: ["parent_task_id"];
|
|
2975
|
+
isOneToOne: false;
|
|
2976
|
+
referencedRelation: "prj_tasks";
|
|
2977
|
+
referencedColumns: ["id"];
|
|
2978
|
+
},
|
|
2979
|
+
{
|
|
2980
|
+
foreignKeyName: "fk_tasks_project";
|
|
2981
|
+
columns: ["project_id"];
|
|
2982
|
+
isOneToOne: false;
|
|
2983
|
+
referencedRelation: "prj_projects";
|
|
2984
|
+
referencedColumns: ["id"];
|
|
2985
|
+
},
|
|
2922
2986
|
{
|
|
2923
2987
|
foreignKeyName: "prj_tasks_milestone_id_fkey";
|
|
2924
2988
|
columns: ["milestone_id"];
|
|
@@ -5658,10 +5722,8 @@ type Database = {
|
|
|
5658
5722
|
}
|
|
5659
5723
|
deployments: {
|
|
5660
5724
|
Row: {
|
|
5661
|
-
compiled_docs: Json | null
|
|
5662
5725
|
created_at: string
|
|
5663
5726
|
deployment_version: string | null
|
|
5664
|
-
documentation: Json | null
|
|
5665
5727
|
error_message: string | null
|
|
5666
5728
|
id: string
|
|
5667
5729
|
organization_id: string
|
|
@@ -5673,10 +5735,8 @@ type Database = {
|
|
|
5673
5735
|
updated_at: string
|
|
5674
5736
|
}
|
|
5675
5737
|
Insert: {
|
|
5676
|
-
compiled_docs?: Json | null
|
|
5677
5738
|
created_at?: string
|
|
5678
5739
|
deployment_version?: string | null
|
|
5679
|
-
documentation?: Json | null
|
|
5680
5740
|
error_message?: string | null
|
|
5681
5741
|
id?: string
|
|
5682
5742
|
organization_id: string
|
|
@@ -5688,10 +5748,8 @@ type Database = {
|
|
|
5688
5748
|
updated_at?: string
|
|
5689
5749
|
}
|
|
5690
5750
|
Update: {
|
|
5691
|
-
compiled_docs?: Json | null
|
|
5692
5751
|
created_at?: string
|
|
5693
5752
|
deployment_version?: string | null
|
|
5694
|
-
documentation?: Json | null
|
|
5695
5753
|
error_message?: string | null
|
|
5696
5754
|
id?: string
|
|
5697
5755
|
organization_id?: string
|
|
@@ -6203,6 +6261,13 @@ type Database = {
|
|
|
6203
6261
|
updated_at?: string
|
|
6204
6262
|
}
|
|
6205
6263
|
Relationships: [
|
|
6264
|
+
{
|
|
6265
|
+
foreignKeyName: "fk_milestones_project"
|
|
6266
|
+
columns: ["project_id"]
|
|
6267
|
+
isOneToOne: false
|
|
6268
|
+
referencedRelation: "prj_projects"
|
|
6269
|
+
referencedColumns: ["id"]
|
|
6270
|
+
},
|
|
6206
6271
|
{
|
|
6207
6272
|
foreignKeyName: "prj_milestones_organization_id_fkey"
|
|
6208
6273
|
columns: ["organization_id"]
|
|
@@ -6263,6 +6328,34 @@ type Database = {
|
|
|
6263
6328
|
type?: string
|
|
6264
6329
|
}
|
|
6265
6330
|
Relationships: [
|
|
6331
|
+
{
|
|
6332
|
+
foreignKeyName: "fk_notes_created_by"
|
|
6333
|
+
columns: ["created_by"]
|
|
6334
|
+
isOneToOne: false
|
|
6335
|
+
referencedRelation: "users"
|
|
6336
|
+
referencedColumns: ["id"]
|
|
6337
|
+
},
|
|
6338
|
+
{
|
|
6339
|
+
foreignKeyName: "fk_notes_milestone"
|
|
6340
|
+
columns: ["milestone_id"]
|
|
6341
|
+
isOneToOne: false
|
|
6342
|
+
referencedRelation: "prj_milestones"
|
|
6343
|
+
referencedColumns: ["id"]
|
|
6344
|
+
},
|
|
6345
|
+
{
|
|
6346
|
+
foreignKeyName: "fk_notes_project"
|
|
6347
|
+
columns: ["project_id"]
|
|
6348
|
+
isOneToOne: false
|
|
6349
|
+
referencedRelation: "prj_projects"
|
|
6350
|
+
referencedColumns: ["id"]
|
|
6351
|
+
},
|
|
6352
|
+
{
|
|
6353
|
+
foreignKeyName: "fk_notes_task"
|
|
6354
|
+
columns: ["task_id"]
|
|
6355
|
+
isOneToOne: false
|
|
6356
|
+
referencedRelation: "prj_tasks"
|
|
6357
|
+
referencedColumns: ["id"]
|
|
6358
|
+
},
|
|
6266
6359
|
{
|
|
6267
6360
|
foreignKeyName: "prj_notes_created_by_fkey"
|
|
6268
6361
|
columns: ["created_by"]
|
|
@@ -6353,6 +6446,20 @@ type Database = {
|
|
|
6353
6446
|
updated_at?: string
|
|
6354
6447
|
}
|
|
6355
6448
|
Relationships: [
|
|
6449
|
+
{
|
|
6450
|
+
foreignKeyName: "fk_projects_company"
|
|
6451
|
+
columns: ["client_company_id"]
|
|
6452
|
+
isOneToOne: false
|
|
6453
|
+
referencedRelation: "acq_companies"
|
|
6454
|
+
referencedColumns: ["id"]
|
|
6455
|
+
},
|
|
6456
|
+
{
|
|
6457
|
+
foreignKeyName: "fk_projects_deal"
|
|
6458
|
+
columns: ["deal_id"]
|
|
6459
|
+
isOneToOne: false
|
|
6460
|
+
referencedRelation: "acq_deals"
|
|
6461
|
+
referencedColumns: ["id"]
|
|
6462
|
+
},
|
|
6356
6463
|
{
|
|
6357
6464
|
foreignKeyName: "prj_projects_client_company_id_fkey"
|
|
6358
6465
|
columns: ["client_company_id"]
|
|
@@ -6435,6 +6542,27 @@ type Database = {
|
|
|
6435
6542
|
updated_at?: string
|
|
6436
6543
|
}
|
|
6437
6544
|
Relationships: [
|
|
6545
|
+
{
|
|
6546
|
+
foreignKeyName: "fk_tasks_milestone"
|
|
6547
|
+
columns: ["milestone_id"]
|
|
6548
|
+
isOneToOne: false
|
|
6549
|
+
referencedRelation: "prj_milestones"
|
|
6550
|
+
referencedColumns: ["id"]
|
|
6551
|
+
},
|
|
6552
|
+
{
|
|
6553
|
+
foreignKeyName: "fk_tasks_parent"
|
|
6554
|
+
columns: ["parent_task_id"]
|
|
6555
|
+
isOneToOne: false
|
|
6556
|
+
referencedRelation: "prj_tasks"
|
|
6557
|
+
referencedColumns: ["id"]
|
|
6558
|
+
},
|
|
6559
|
+
{
|
|
6560
|
+
foreignKeyName: "fk_tasks_project"
|
|
6561
|
+
columns: ["project_id"]
|
|
6562
|
+
isOneToOne: false
|
|
6563
|
+
referencedRelation: "prj_projects"
|
|
6564
|
+
referencedColumns: ["id"]
|
|
6565
|
+
},
|
|
6438
6566
|
{
|
|
6439
6567
|
foreignKeyName: "prj_tasks_milestone_id_fkey"
|
|
6440
6568
|
columns: ["milestone_id"]
|
|
@@ -6947,16 +7075,6 @@ interface SortState {
|
|
|
6947
7075
|
direction: SortDirection;
|
|
6948
7076
|
}
|
|
6949
7077
|
|
|
6950
|
-
interface DocFile {
|
|
6951
|
-
path: string;
|
|
6952
|
-
frontmatter: {
|
|
6953
|
-
title: string;
|
|
6954
|
-
order?: number;
|
|
6955
|
-
[key: string]: unknown;
|
|
6956
|
-
};
|
|
6957
|
-
compiledSource: string;
|
|
6958
|
-
}
|
|
6959
|
-
|
|
6960
7078
|
/**
|
|
6961
7079
|
* Command View Types
|
|
6962
7080
|
*
|
|
@@ -8244,32 +8362,6 @@ declare function getExecutionStatusConfig(status: string): {
|
|
|
8244
8362
|
readonly textColor: "var(--color-warning)";
|
|
8245
8363
|
};
|
|
8246
8364
|
|
|
8247
|
-
interface DocTreeNavProps {
|
|
8248
|
-
files: DocFile[];
|
|
8249
|
-
selectedPath: string | null;
|
|
8250
|
-
onSelect: (path: string) => void;
|
|
8251
|
-
}
|
|
8252
|
-
/**
|
|
8253
|
-
* Renders a tree navigation for documentation files.
|
|
8254
|
-
* Builds a tree from flat file paths, supports nested collapsible directories.
|
|
8255
|
-
* index.mdx files represent their parent directory's page.
|
|
8256
|
-
*/
|
|
8257
|
-
declare function DocTreeNav({ files, selectedPath, onSelect }: DocTreeNavProps): react_jsx_runtime.JSX.Element;
|
|
8258
|
-
|
|
8259
|
-
interface KnowledgeBasePageProps {
|
|
8260
|
-
/** MDX renderer component. Pass your app's MdxRenderer since it's app-specific. */
|
|
8261
|
-
mdxRenderer?: ComponentType<{
|
|
8262
|
-
compiledSource: string;
|
|
8263
|
-
}>;
|
|
8264
|
-
}
|
|
8265
|
-
/**
|
|
8266
|
-
* Knowledge Base page -- sub-shell layout for viewing deployment documentation.
|
|
8267
|
-
*
|
|
8268
|
-
* Sidebar: deployment selector + doc tree navigation.
|
|
8269
|
-
* Content: MdxRenderer for selected file.
|
|
8270
|
-
*/
|
|
8271
|
-
declare function KnowledgeBasePage({ mdxRenderer: MdxRenderer }: KnowledgeBasePageProps): react_jsx_runtime.JSX.Element;
|
|
8272
|
-
|
|
8273
8365
|
declare const TaskScheduler: () => react_jsx_runtime.JSX.Element;
|
|
8274
8366
|
|
|
8275
8367
|
interface CreateScheduleModalProps {
|
|
@@ -9010,5 +9102,5 @@ declare const OperationsSidebarMiddle: () => react_jsx_runtime.JSX.Element;
|
|
|
9010
9102
|
|
|
9011
9103
|
declare const operationsManifest: FeatureModule;
|
|
9012
9104
|
|
|
9013
|
-
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,
|
|
9105
|
+
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, 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, 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, RunResourceButton, 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, ZodFormRenderer, 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 };
|
|
9014
9106
|
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, RunResourceButtonProps, RunResourceInputResolver, SavedViewPreset, ScheduleType, SerializedKnowledgeMap, SerializedKnowledgeNode, StatCardProps, StyledMarkdownProps, TaskFilterStatus, TrendIndicatorProps, ZodFormRendererProps };
|