@elevasis/ui 2.8.0 → 2.9.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-OFT2QK6B.js → chunk-4JPW5U5I.js} +2 -2
- package/dist/{chunk-UX3Q4YYN.js → chunk-AQQYVAFK.js} +2 -2
- package/dist/{chunk-MGEC63TE.js → chunk-UE5QQDCR.js} +2 -2
- package/dist/components/index.d.ts +15 -3
- package/dist/components/index.js +3 -3
- package/dist/features/crm/index.d.ts +6 -2
- package/dist/features/crm/index.js +1 -1
- package/dist/features/delivery/index.d.ts +6 -2
- package/dist/features/delivery/index.js +1 -1
- package/dist/features/lead-gen/index.d.ts +6 -2
- package/dist/features/lead-gen/index.js +1 -1
- package/package.json +4 -4
|
@@ -42,10 +42,10 @@ var LeadGenSidebarMiddle = ({ items = LEAD_GEN_ITEMS } = {}) => {
|
|
|
42
42
|
);
|
|
43
43
|
}) }) });
|
|
44
44
|
};
|
|
45
|
-
var LeadGenSidebar = () => {
|
|
45
|
+
var LeadGenSidebar = ({ children } = {}) => {
|
|
46
46
|
return /* @__PURE__ */ jsxs(Stack, { gap: 0, style: { height: "100%", display: "flex", flexDirection: "column" }, children: [
|
|
47
47
|
/* @__PURE__ */ jsx(LeadGenSidebarTop, {}),
|
|
48
|
-
/* @__PURE__ */ jsx(LeadGenSidebarMiddle, {})
|
|
48
|
+
children ?? /* @__PURE__ */ jsx(LeadGenSidebarMiddle, {})
|
|
49
49
|
] });
|
|
50
50
|
};
|
|
51
51
|
var leadGenManifest = {
|
|
@@ -321,10 +321,10 @@ var ProjectsSidebarMiddle = ({
|
|
|
321
321
|
] })
|
|
322
322
|
] });
|
|
323
323
|
};
|
|
324
|
-
var ProjectsSidebar = () => {
|
|
324
|
+
var ProjectsSidebar = ({ children } = {}) => {
|
|
325
325
|
return /* @__PURE__ */ jsxs(Stack, { gap: 0, style: { height: "100%", display: "flex", flexDirection: "column" }, children: [
|
|
326
326
|
/* @__PURE__ */ jsx(ProjectsSidebarTop, {}),
|
|
327
|
-
/* @__PURE__ */ jsx(ProjectsSidebarMiddle, {})
|
|
327
|
+
children ?? /* @__PURE__ */ jsx(ProjectsSidebarMiddle, {})
|
|
328
328
|
] });
|
|
329
329
|
};
|
|
330
330
|
var deliveryManifest = {
|
|
@@ -303,10 +303,10 @@ var CrmSidebarMiddle = ({ items = CRM_ITEMS } = {}) => {
|
|
|
303
303
|
) })
|
|
304
304
|
] });
|
|
305
305
|
};
|
|
306
|
-
var CrmSidebar = () => {
|
|
306
|
+
var CrmSidebar = ({ children } = {}) => {
|
|
307
307
|
return /* @__PURE__ */ jsxs(Stack, { gap: 0, style: { height: "100%", display: "flex", flexDirection: "column" }, children: [
|
|
308
308
|
/* @__PURE__ */ jsx(CrmSidebarTop, {}),
|
|
309
|
-
/* @__PURE__ */ jsx(CrmSidebarMiddle, {})
|
|
309
|
+
children ?? /* @__PURE__ */ jsx(CrmSidebarMiddle, {})
|
|
310
310
|
] });
|
|
311
311
|
};
|
|
312
312
|
var PIPELINE_FUNNEL_ORDER = [
|
|
@@ -8637,7 +8637,11 @@ interface DealDrawerProps {
|
|
|
8637
8637
|
}
|
|
8638
8638
|
declare function DealDrawer({ deal, config, opened, onClose, renderActions }: DealDrawerProps): react_jsx_runtime.JSX.Element | null;
|
|
8639
8639
|
|
|
8640
|
-
|
|
8640
|
+
interface CrmSidebarProps {
|
|
8641
|
+
/** Replace the default `CrmSidebarMiddle` with custom middle content. Leave unset for the default layout. */
|
|
8642
|
+
children?: ReactNode;
|
|
8643
|
+
}
|
|
8644
|
+
declare const CrmSidebar: ({ children }?: CrmSidebarProps) => react_jsx_runtime.JSX.Element;
|
|
8641
8645
|
|
|
8642
8646
|
declare const CrmSidebarTop: () => react_jsx_runtime.JSX.Element;
|
|
8643
8647
|
|
|
@@ -8857,7 +8861,11 @@ interface DealDetailPageProps {
|
|
|
8857
8861
|
}
|
|
8858
8862
|
declare function DealDetailPage({ dealId, renderActions, onDealLoaded }: DealDetailPageProps): react_jsx_runtime.JSX.Element;
|
|
8859
8863
|
|
|
8860
|
-
|
|
8864
|
+
interface LeadGenSidebarProps {
|
|
8865
|
+
/** Replace the default `LeadGenSidebarMiddle` with custom middle content. Leave unset for the default layout. */
|
|
8866
|
+
children?: ReactNode;
|
|
8867
|
+
}
|
|
8868
|
+
declare const LeadGenSidebar: ({ children }?: LeadGenSidebarProps) => react_jsx_runtime.JSX.Element;
|
|
8861
8869
|
|
|
8862
8870
|
declare const LeadGenSidebarTop: () => react_jsx_runtime.JSX.Element;
|
|
8863
8871
|
|
|
@@ -8947,7 +8955,11 @@ interface TaskCardProps {
|
|
|
8947
8955
|
}
|
|
8948
8956
|
declare function TaskCard({ task }: TaskCardProps): react_jsx_runtime.JSX.Element;
|
|
8949
8957
|
|
|
8950
|
-
|
|
8958
|
+
interface ProjectsSidebarProps {
|
|
8959
|
+
/** Replace the default `ProjectsSidebarMiddle` with custom middle content. Leave unset for the default layout. */
|
|
8960
|
+
children?: ReactNode;
|
|
8961
|
+
}
|
|
8962
|
+
declare const ProjectsSidebar: ({ children }?: ProjectsSidebarProps) => react_jsx_runtime.JSX.Element;
|
|
8951
8963
|
|
|
8952
8964
|
declare const ProjectsSidebarTop: () => react_jsx_runtime.JSX.Element;
|
|
8953
8965
|
|
package/dist/components/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import '../chunk-NYMKWGKN.js';
|
|
2
2
|
import { useBreadcrumbs } from '../chunk-MG3NF7QL.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, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, getEnrichmentColor, getStatusColor, leadGenManifest, useDeleteLists } from '../chunk-
|
|
3
|
+
export { AllTasksPage, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../chunk-AQQYVAFK.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-4JPW5U5I.js';
|
|
5
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-F5QSLYUB.js';
|
|
6
6
|
import '../chunk-ROSMICXG.js';
|
|
7
7
|
import { SubshellLoader, CollapsibleSidebarGroup } from '../chunk-IDACMRGQ.js';
|
|
@@ -10,7 +10,7 @@ export { ActivityCard, ActivityFilters as ActivityFiltersBar, ActivityTable, Bus
|
|
|
10
10
|
export { ResourceHealthPanel } from '../chunk-7PDDPNQS.js';
|
|
11
11
|
export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, seoManifest } from '../chunk-C2OFFC7J.js';
|
|
12
12
|
export { CreateCredentialModal, CredentialList, CredentialSettings, MembershipFeaturePanel, MembershipStatusBadge, OAuthConnectModal, OrganizationMembershipsList, WebhookUrlDisplayModal, settingsManifest } from '../chunk-KGEYEUR5.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-
|
|
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-UE5QQDCR.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';
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import {
|
|
2
|
+
import { ReactNode, ComponentType } from 'react';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
interface CrmSidebarProps {
|
|
6
|
+
/** Replace the default `CrmSidebarMiddle` with custom middle content. Leave unset for the default layout. */
|
|
7
|
+
children?: ReactNode;
|
|
8
|
+
}
|
|
9
|
+
declare const CrmSidebar: ({ children }?: CrmSidebarProps) => react_jsx_runtime.JSX.Element;
|
|
6
10
|
|
|
7
11
|
declare const CrmSidebarTop: () => react_jsx_runtime.JSX.Element;
|
|
8
12
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ActivityFeedWidget, CRM_ITEMS, 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, CRM_ITEMS, 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-UE5QQDCR.js';
|
|
2
2
|
import '../../chunk-TUMSNGTX.js';
|
|
3
3
|
import '../../chunk-BZZCNLT6.js';
|
|
4
4
|
import '../../chunk-27COZ5AH.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { ComponentType } from 'react';
|
|
2
|
+
import { ReactNode, ComponentType } from 'react';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
|
|
5
5
|
interface HealthStatusCardProps {
|
|
@@ -2580,7 +2580,11 @@ interface TaskCardProps {
|
|
|
2580
2580
|
}
|
|
2581
2581
|
declare function TaskCard({ task }: TaskCardProps): react_jsx_runtime.JSX.Element;
|
|
2582
2582
|
|
|
2583
|
-
|
|
2583
|
+
interface ProjectsSidebarProps {
|
|
2584
|
+
/** Replace the default `ProjectsSidebarMiddle` with custom middle content. Leave unset for the default layout. */
|
|
2585
|
+
children?: ReactNode;
|
|
2586
|
+
}
|
|
2587
|
+
declare const ProjectsSidebar: ({ children }?: ProjectsSidebarProps) => react_jsx_runtime.JSX.Element;
|
|
2584
2588
|
|
|
2585
2589
|
declare const ProjectsSidebarTop: () => react_jsx_runtime.JSX.Element;
|
|
2586
2590
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AllTasksPage, DELIVERY_COMMUNICATION_ITEMS, DELIVERY_PROJECT_ITEMS, DELIVERY_WORK_ITEMS, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../../chunk-
|
|
1
|
+
export { AllTasksPage, DELIVERY_COMMUNICATION_ITEMS, DELIVERY_PROJECT_ITEMS, DELIVERY_WORK_ITEMS, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../../chunk-AQQYVAFK.js';
|
|
2
2
|
import '../../chunk-TUMSNGTX.js';
|
|
3
3
|
import '../../chunk-BZZCNLT6.js';
|
|
4
4
|
import '../../chunk-27COZ5AH.js';
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import {
|
|
2
|
+
import { ReactNode, ComponentType } from 'react';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
interface LeadGenSidebarProps {
|
|
7
|
+
/** Replace the default `LeadGenSidebarMiddle` with custom middle content. Leave unset for the default layout. */
|
|
8
|
+
children?: ReactNode;
|
|
9
|
+
}
|
|
10
|
+
declare const LeadGenSidebar: ({ children }?: LeadGenSidebarProps) => react_jsx_runtime.JSX.Element;
|
|
7
11
|
|
|
8
12
|
declare const LeadGenSidebarTop: () => react_jsx_runtime.JSX.Element;
|
|
9
13
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { CompanyDetailModal, ContactDetailModal, LEAD_GEN_ITEMS, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, formatDate, getEnrichmentColor, getEnrichmentStatus, getStatusColor, leadGenManifest, useDeleteLists } from '../../chunk-
|
|
1
|
+
export { CompanyDetailModal, ContactDetailModal, LEAD_GEN_ITEMS, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, formatDate, getEnrichmentColor, getEnrichmentStatus, getStatusColor, leadGenManifest, useDeleteLists } from '../../chunk-4JPW5U5I.js';
|
|
2
2
|
import '../../chunk-F5QSLYUB.js';
|
|
3
3
|
import '../../chunk-ROSMICXG.js';
|
|
4
4
|
import '../../chunk-IDACMRGQ.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elevasis/ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.9.0",
|
|
4
4
|
"description": "UI components and platform-aware hooks for building custom frontends on the Elevasis platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -186,9 +186,9 @@
|
|
|
186
186
|
"tsup": "^8.0.0",
|
|
187
187
|
"typescript": "5.9.2",
|
|
188
188
|
"vite": "^7.0.0",
|
|
189
|
-
"@repo/core": "0.
|
|
190
|
-
"@repo/
|
|
191
|
-
"@repo/
|
|
189
|
+
"@repo/core": "0.2.0",
|
|
190
|
+
"@repo/typescript-config": "0.0.0",
|
|
191
|
+
"@repo/eslint-config": "0.0.0"
|
|
192
192
|
},
|
|
193
193
|
"dependencies": {
|
|
194
194
|
"@dagrejs/dagre": "^1.1.4",
|