@elevasis/ui 2.17.0 → 2.17.2

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.
@@ -9,7 +9,7 @@ import { formatDateTime, OAUTH_POPUP_CHECK_INTERVAL, OAUTH_FLOW_TIMEOUT } from '
9
9
  import { useInitialization } from './chunk-DK2HVHCY.js';
10
10
  import { useElevasisServices } from './chunk-IRW7JMQ4.js';
11
11
  import { Table, Group, Text, Tooltip, ActionIcon, Stack, Title, Button, Select, TextInput, Alert, PasswordInput, Anchor, Paper, Card, Switch, Badge, Center, Loader, Box, Code, CopyButton, ThemeIcon, useMantineColorScheme, SimpleGrid, UnstyledButton, Divider, Textarea } from '@mantine/core';
12
- import { IconSettings, IconKey, IconCalendar, IconPencil, IconTrash, IconAlertTriangle, IconInfoCircle, IconExclamationMark, IconPlus, IconAlertCircle, IconUsers, IconSearch, IconBuilding, IconWebhook, IconCheck, IconCopy, IconUser, IconMail, IconRefresh, IconPalette, IconSun, IconEye, IconSparkles, IconTrendingUp, IconClock, IconPlayerPause, IconPlayerPlay, IconActivity, IconBrandDropbox, IconBrandGoogleDrive, IconPlug, IconMoon, IconDeviceDesktop } from '@tabler/icons-react';
12
+ import { IconSettings, IconKey, IconCalendar, IconPencil, IconTrash, IconAlertTriangle, IconInfoCircle, IconExclamationMark, IconPlus, IconAlertCircle, IconUsers, IconSearch, IconBuilding, IconWebhook, IconCheck, IconCopy, IconUser, IconMail, IconRefresh, IconPalette, IconSun, IconEye, IconSparkles, IconTrendingUp, IconClock, IconPlayerPause, IconPlayerPlay, IconActivity, IconBrandDropbox, IconBrandGoogleDrive, IconPlug, IconEdit, IconUserX, IconUserCheck, IconMoon, IconDeviceDesktop } from '@tabler/icons-react';
13
13
  import { z } from 'zod';
14
14
  import { useState, useEffect, useRef, useMemo, useCallback } from 'react';
15
15
  import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
@@ -547,7 +547,9 @@ function MembershipStatusBadge({ status, size = "sm", variant = "light" }) {
547
547
  function OrganizationMembershipsList({
548
548
  memberships,
549
549
  loading,
550
- error
550
+ error,
551
+ onEditRole,
552
+ onLeaveOrganization
551
553
  }) {
552
554
  const [searchTerm, setSearchTerm] = useState("");
553
555
  const [statusFilter, setStatusFilter] = useState("");
@@ -557,6 +559,26 @@ function OrganizationMembershipsList({
557
559
  const matchesStatus = !statusFilter || row.status === statusFilter;
558
560
  return matchesSearch && matchesStatus;
559
561
  });
562
+ const renderActions = (row) => {
563
+ if (!onEditRole && !onLeaveOrganization) {
564
+ return /* @__PURE__ */ jsx(ActionIcon, { variant: "light", size: "sm", color: "gray", title: "Configure member access", children: /* @__PURE__ */ jsx(IconSettings, { size: 14 }) });
565
+ }
566
+ return /* @__PURE__ */ jsxs(Fragment, { children: [
567
+ row.canEdit && onEditRole && /* @__PURE__ */ jsx(
568
+ ActionIcon,
569
+ {
570
+ variant: "subtle",
571
+ size: "sm",
572
+ color: "blue",
573
+ onClick: () => onEditRole(row.id),
574
+ disabled: row.status !== "active",
575
+ children: /* @__PURE__ */ jsx(IconEdit, { size: 16 })
576
+ }
577
+ ),
578
+ row.canRemove && onLeaveOrganization && row.status === "active" && /* @__PURE__ */ jsx(ActionIcon, { variant: "subtle", size: "sm", color: "red", onClick: () => onLeaveOrganization(row.id), children: /* @__PURE__ */ jsx(IconUserX, { size: 16 }) }),
579
+ row.status === "inactive" && /* @__PURE__ */ jsx(ActionIcon, { variant: "subtle", size: "sm", color: "green", disabled: true, title: "Contact admin to reactivate", children: /* @__PURE__ */ jsx(IconUserCheck, { size: 16 }) })
580
+ ] });
581
+ };
560
582
  if (error) {
561
583
  return /* @__PURE__ */ jsx(Paper, { withBorder: true, children: /* @__PURE__ */ jsx(APIErrorAlert, { error, title: "Failed to load memberships" }) });
562
584
  }
@@ -622,7 +644,7 @@ function OrganizationMembershipsList({
622
644
  /* @__PURE__ */ jsx(Table.Td, { children: /* @__PURE__ */ jsx(Badge, { variant: "light", color: "blue", size: "sm", children: row.role }) }),
623
645
  /* @__PURE__ */ jsx(Table.Td, { children: /* @__PURE__ */ jsx(MembershipStatusBadge, { status: row.status }) }),
624
646
  /* @__PURE__ */ jsx(Table.Td, { children: /* @__PURE__ */ jsx(Text, { size: "sm", c: "dimmed", children: row.joinedAt.toLocaleDateString() }) }),
625
- /* @__PURE__ */ jsx(Table.Td, { children: /* @__PURE__ */ jsx(Group, { gap: "xs", children: /* @__PURE__ */ jsx(ActionIcon, { variant: "light", size: "sm", color: "gray", title: "Configure member access", children: /* @__PURE__ */ jsx(IconSettings, { size: 14 }) }) }) })
647
+ /* @__PURE__ */ jsx(Table.Td, { children: /* @__PURE__ */ jsx(Group, { gap: "xs", children: renderActions(row) }) })
626
648
  ] }, row.id)) })
627
649
  ] }) })
628
650
  ] })
@@ -1,4 +1,4 @@
1
- import { ResourceExecuteDialog } from './chunk-OXWQQCDR.js';
1
+ import { ResourceExecuteDialog } from './chunk-HH3RNG2O.js';
2
2
  import { PageContainer } from './chunk-BZZCNLT6.js';
3
3
  import { TableSelectionToolbar, SortableHeader } from './chunk-TUMSNGTX.js';
4
4
  import { SubshellNavItem } from './chunk-CEWTOKE7.js';
@@ -2375,9 +2375,19 @@ var ResourceFilter = ({ value, onChange, fullWidth }) => {
2375
2375
  )
2376
2376
  ] });
2377
2377
  };
2378
- function ResourceHeader({ resource, type, connected, runningCount, sessionCapable }) {
2378
+ function ResourceHeader({
2379
+ resource,
2380
+ type,
2381
+ connected,
2382
+ runningCount,
2383
+ sessionCapable,
2384
+ organizationName: organizationNameProp,
2385
+ onRun,
2386
+ onNavigateToResources,
2387
+ onNavigateToSessions
2388
+ }) {
2379
2389
  const { currentMembership } = useOrganization();
2380
- const organizationName = currentMembership?.organization?.name;
2390
+ const organizationName = organizationNameProp ?? currentMembership?.organization?.name;
2381
2391
  const navigate = useNavigate();
2382
2392
  const Icon = getResourceIcon(type);
2383
2393
  const clipboard = useClipboard({ timeout: 2e3 });
@@ -2388,12 +2398,11 @@ function ResourceHeader({ resource, type, connected, runningCount, sessionCapabl
2388
2398
  color: "teal"
2389
2399
  });
2390
2400
  };
2391
- const handleGoToSessions = () => {
2392
- navigate({
2393
- to: "/operations/sessions",
2394
- search: { agent: resource.resourceId }
2395
- });
2396
- };
2401
+ const handleGoToSessions = onNavigateToSessions ?? (() => navigate({
2402
+ to: "/operations/sessions",
2403
+ search: { agent: resource.resourceId }
2404
+ }));
2405
+ const handleGoToResources = onNavigateToResources ?? (() => navigate({ to: "/operations/resources" }));
2397
2406
  return /* @__PURE__ */ jsxs(Fragment, { children: [
2398
2407
  /* @__PURE__ */ jsx(
2399
2408
  PageTitleCaption,
@@ -2429,17 +2438,9 @@ function ResourceHeader({ resource, type, connected, runningCount, sessionCapabl
2429
2438
  runningCount,
2430
2439
  " running"
2431
2440
  ] }),
2441
+ onRun && /* @__PURE__ */ jsx(Button, { size: "xs", variant: "filled", leftSection: /* @__PURE__ */ jsx(IconPlayerPlay, { size: 16 }), onClick: onRun, children: "Run" }),
2432
2442
  type === "agent" && sessionCapable && /* @__PURE__ */ jsx(Button, { size: "xs", variant: "light", leftSection: /* @__PURE__ */ jsx(IconMessage, { size: 16 }), onClick: handleGoToSessions, children: "Go to Sessions" }),
2433
- /* @__PURE__ */ jsx(
2434
- Button,
2435
- {
2436
- size: "sm",
2437
- variant: "light",
2438
- leftSection: /* @__PURE__ */ jsx(IconArrowLeft, { size: 16 }),
2439
- onClick: () => navigate({ to: "/operations/resources" }),
2440
- children: "Resources"
2441
- }
2442
- )
2443
+ /* @__PURE__ */ jsx(Button, { size: "xs", variant: "light", leftSection: /* @__PURE__ */ jsx(IconArrowLeft, { size: 16 }), onClick: handleGoToResources, children: "Resources" })
2443
2444
  ] })
2444
2445
  ] })
2445
2446
  ] });
@@ -3709,75 +3710,6 @@ function ResourcesSidebar({ timeRange }) {
3709
3710
  ] })
3710
3711
  ] });
3711
3712
  }
3712
- function ResourceHeader2({
3713
- resource,
3714
- type,
3715
- connected,
3716
- runningCount,
3717
- sessionCapable,
3718
- onRun,
3719
- onNavigateToResources,
3720
- onNavigateToSessions
3721
- }) {
3722
- const { currentMembership } = useOrganization();
3723
- const organizationName = currentMembership?.organization?.name;
3724
- const navigate = useNavigate();
3725
- const Icon = getResourceIcon(type);
3726
- const clipboard = useClipboard({ timeout: 2e3 });
3727
- const handleCopyId = () => {
3728
- clipboard.copy(`"${organizationName}/${resource.resourceId}"`);
3729
- notifications.show({
3730
- message: "Resource ID copied to clipboard",
3731
- color: "teal"
3732
- });
3733
- };
3734
- const handleGoToSessions = onNavigateToSessions ?? (() => navigate({
3735
- to: "/operations/sessions",
3736
- search: { agent: resource.resourceId }
3737
- }));
3738
- const handleGoToResources = onNavigateToResources ?? (() => navigate({ to: "/operations/resources" }));
3739
- return /* @__PURE__ */ jsxs(Fragment, { children: [
3740
- /* @__PURE__ */ jsx(
3741
- PageTitleCaption,
3742
- {
3743
- title: resource.name,
3744
- caption: resource.description || `${type.charAt(0).toUpperCase()}${type.slice(1)} details`
3745
- }
3746
- ),
3747
- /* @__PURE__ */ jsxs(Group, { justify: "space-between", children: [
3748
- /* @__PURE__ */ jsxs(Group, { gap: "xs", children: [
3749
- /* @__PURE__ */ jsx(Icon, { size: 20, color: "var(--color-primary)" }),
3750
- /* @__PURE__ */ jsxs(Badge, { color: "blue", variant: "light", children: [
3751
- type.charAt(0).toUpperCase(),
3752
- type.slice(1)
3753
- ] }),
3754
- /* @__PURE__ */ jsx(Badge, { color: ResourceStatusColors[resource.status], variant: "outline", size: "sm", children: resource.status.toUpperCase() }),
3755
- resource.version && /* @__PURE__ */ jsxs(Badge, { variant: "outline", size: "sm", children: [
3756
- "v",
3757
- resource.version
3758
- ] }),
3759
- /* @__PURE__ */ jsxs(Group, { gap: 4, children: [
3760
- /* @__PURE__ */ jsxs(Text, { size: "sm", ff: "monospace", c: "dimmed", children: [
3761
- organizationName,
3762
- "/",
3763
- resource.resourceId
3764
- ] }),
3765
- /* @__PURE__ */ jsx(Tooltip, { label: clipboard.copied ? "Copied!" : "Copy ID", children: /* @__PURE__ */ jsx(ActionIcon, { size: "sm", variant: "subtle", onClick: handleCopyId, color: clipboard.copied ? "teal" : "gray", children: /* @__PURE__ */ jsx(IconCopy, { size: 14, color: clipboard.copied ? "teal" : "gray" }) }) })
3766
- ] })
3767
- ] }),
3768
- /* @__PURE__ */ jsxs(Group, { gap: "xs", children: [
3769
- connected && /* @__PURE__ */ jsx(Badge, { color: "green", variant: "dot", children: "CONNECTED" }),
3770
- runningCount && runningCount > 0 && /* @__PURE__ */ jsxs(Badge, { color: "blue", variant: "filled", children: [
3771
- runningCount,
3772
- " running"
3773
- ] }),
3774
- onRun && /* @__PURE__ */ jsx(Button, { size: "xs", variant: "filled", leftSection: /* @__PURE__ */ jsx(IconPlayerPlay, { size: 16 }), onClick: onRun, children: "Run" }),
3775
- type === "agent" && sessionCapable && /* @__PURE__ */ jsx(Button, { size: "xs", variant: "light", leftSection: /* @__PURE__ */ jsx(IconMessage, { size: 16 }), onClick: handleGoToSessions, children: "Go to Sessions" }),
3776
- /* @__PURE__ */ jsx(Button, { size: "xs", variant: "light", leftSection: /* @__PURE__ */ jsx(IconArrowLeft, { size: 16 }), onClick: handleGoToResources, children: "Resources" })
3777
- ] })
3778
- ] })
3779
- ] });
3780
- }
3781
3713
  function ResourceErrorState2({ error }) {
3782
3714
  return /* @__PURE__ */ jsx(Stack, { children: /* @__PURE__ */ jsx(Card, { children: /* @__PURE__ */ jsxs(Stack, { align: "center", children: [
3783
3715
  /* @__PURE__ */ jsx(Text, { c: "red", children: "Failed to load resource" }),
@@ -4022,7 +3954,7 @@ function ResourceDetailPage({
4022
3954
  ),
4023
3955
  /* @__PURE__ */ jsxs(Stack, { children: [
4024
3956
  /* @__PURE__ */ jsx(
4025
- ResourceHeader2,
3957
+ ResourceHeader,
4026
3958
  {
4027
3959
  resource: validResource,
4028
3960
  type,
@@ -8256,8 +8256,12 @@ interface ResourceHeaderProps {
8256
8256
  connected?: boolean;
8257
8257
  runningCount?: number;
8258
8258
  sessionCapable?: boolean;
8259
+ organizationName?: string;
8260
+ onRun?: () => void;
8261
+ onNavigateToResources?: () => void;
8262
+ onNavigateToSessions?: () => void;
8259
8263
  }
8260
- declare function ResourceHeader({ resource, type, connected, runningCount, sessionCapable }: ResourceHeaderProps): react_jsx_runtime.JSX.Element;
8264
+ declare function ResourceHeader({ resource, type, connected, runningCount, sessionCapable, organizationName: organizationNameProp, onRun, onNavigateToResources, onNavigateToSessions }: ResourceHeaderProps): react_jsx_runtime.JSX.Element;
8261
8265
 
8262
8266
  interface ResourceErrorStateProps {
8263
8267
  error: Error;
@@ -8662,8 +8666,10 @@ interface OrganizationMembershipsListProps {
8662
8666
  memberships: MembershipWithDetails[];
8663
8667
  loading: boolean;
8664
8668
  error?: Error | null;
8669
+ onEditRole?: (membershipId: string) => void;
8670
+ onLeaveOrganization?: (membershipId: string) => void;
8665
8671
  }
8666
- declare function OrganizationMembershipsList({ memberships, loading, error }: OrganizationMembershipsListProps): react_jsx_runtime.JSX.Element;
8672
+ declare function OrganizationMembershipsList({ memberships, loading, error, onEditRole, onLeaveOrganization }: OrganizationMembershipsListProps): react_jsx_runtime.JSX.Element;
8667
8673
 
8668
8674
  interface WebhookUrlDisplayModalProps {
8669
8675
  opened: boolean;
@@ -1,8 +1,8 @@
1
1
  import { useBreadcrumbs } from '../chunk-MG3NF7QL.js';
2
2
  import '../chunk-6GUW5GGF.js';
3
3
  export { AllTasksPage, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../chunk-FNWWVX5N.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-MUZIYL5Q.js';
5
- export { ActionModal, AgentDefinitionDisplay, AgentExecutionLogs, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, CheckpointGroup, CollapsibleJsonSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ContentSections, ContextUsageBadge, ContractDisplay, ExecutionErrorSection, LogEntry, LogGroup, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceNotFoundState, SessionMemory, ToolsListDisplay, WorkflowDefinitionDisplay, WorkflowExecutionLogs, getExecutionStatusConfig, getIcon, getLogLevelConfig, iconMap, operationsManifest, useNewKnowledgeMapLayout } from '../chunk-OXWQQCDR.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-7L42RRHZ.js';
5
+ export { ActionModal, AgentDefinitionDisplay, AgentExecutionLogs, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, CheckpointGroup, CollapsibleJsonSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ContentSections, ContextUsageBadge, ContractDisplay, ExecutionErrorSection, LogEntry, LogGroup, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceNotFoundState, SessionMemory, ToolsListDisplay, WorkflowDefinitionDisplay, WorkflowExecutionLogs, getExecutionStatusConfig, getIcon, getLogLevelConfig, iconMap, operationsManifest, useNewKnowledgeMapLayout } from '../chunk-HH3RNG2O.js';
6
6
  import '../chunk-ROSMICXG.js';
7
7
  import '../chunk-ADSSLKKP.js';
8
8
  import '../chunk-ZTWA5H77.js';
@@ -15,7 +15,7 @@ export { ResourceHealthPanel } from '../chunk-JU6UB4YA.js';
15
15
  export { ResourceHealthChart, getHealthColor } from '../chunk-LGKLC5MG.js';
16
16
  import '../chunk-MJ6YV2B5.js';
17
17
  export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, seoManifest } from '../chunk-AL23U6C3.js';
18
- export { CreateCredentialModal, CredentialList, CredentialSettings, MembershipFeaturePanel, MembershipStatusBadge, OAuthConnectModal, OrganizationMembershipsList, WebhookUrlDisplayModal, settingsManifest } from '../chunk-S6CYH4RI.js';
18
+ export { CreateCredentialModal, CredentialList, CredentialSettings, MembershipFeaturePanel, MembershipStatusBadge, OAuthConnectModal, OrganizationMembershipsList, WebhookUrlDisplayModal, settingsManifest } from '../chunk-7GCWOUFT.js';
19
19
  import { AppShellLoader } from '../chunk-M25JL54Z.js';
20
20
  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-MDO4UCEJ.js';
21
21
  import '../chunk-BZZCNLT6.js';
@@ -1,5 +1,5 @@
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-MUZIYL5Q.js';
2
- import '../../chunk-OXWQQCDR.js';
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-7L42RRHZ.js';
2
+ import '../../chunk-HH3RNG2O.js';
3
3
  import '../../chunk-ROSMICXG.js';
4
4
  import '../../chunk-ADSSLKKP.js';
5
5
  import '../../chunk-ZTWA5H77.js';
@@ -1,4 +1,4 @@
1
- export { AgentExecutionPanel, AgentSessionGroup, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, CommandViewSidebarContent, ExecuteWorkflowModal, ExecutionPanel, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationGraphPage, ResourceDetailPage, ResourceExecuteDialog, ResourceExecuteForm, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, WorkflowExecutionPanel, operationsManifest } from '../../chunk-OXWQQCDR.js';
1
+ export { AgentExecutionPanel, AgentSessionGroup, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, CommandViewSidebarContent, ExecuteWorkflowModal, ExecutionPanel, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationGraphPage, ResourceDetailPage, ResourceExecuteDialog, ResourceExecuteForm, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, WorkflowExecutionPanel, operationsManifest } from '../../chunk-HH3RNG2O.js';
2
2
  import '../../chunk-ROSMICXG.js';
3
3
  import '../../chunk-ADSSLKKP.js';
4
4
  import '../../chunk-ZTWA5H77.js';
@@ -1,4 +1,4 @@
1
- export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberConfigModal, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } from '../../chunk-S6CYH4RI.js';
1
+ export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberConfigModal, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } from '../../chunk-7GCWOUFT.js';
2
2
  import '../../chunk-M25JL54Z.js';
3
3
  import '../../chunk-PDHTXPSF.js';
4
4
  import '../../chunk-GBMNCNHX.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elevasis/ui",
3
- "version": "2.17.0",
3
+ "version": "2.17.2",
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",
@@ -206,9 +206,9 @@
206
206
  "tsup": "^8.0.0",
207
207
  "typescript": "5.9.2",
208
208
  "vite": "^7.0.0",
209
- "@repo/eslint-config": "0.0.0",
209
+ "@repo/core": "0.8.2",
210
210
  "@repo/typescript-config": "0.0.0",
211
- "@repo/core": "0.8.0"
211
+ "@repo/eslint-config": "0.0.0"
212
212
  },
213
213
  "dependencies": {
214
214
  "@dagrejs/dagre": "^1.1.4",