@elevasis/ui 2.25.5 → 2.25.6
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/app/index.css +3 -24
- package/dist/app/index.d.ts +63 -56
- package/dist/app/index.js +3 -2
- package/dist/chunk-5RLYII6P.js +314 -0
- package/dist/chunk-6U7AIIHF.js +880 -0
- package/dist/{chunk-NHHCUECV.js → chunk-7F3IQMLI.js} +1 -1
- package/dist/{chunk-N2AP4I5N.js → chunk-ARJPZ66V.js} +39 -757
- package/dist/{chunk-IS53MXE4.js → chunk-BDKM56TP.js} +1 -1
- package/dist/{chunk-KINQW4JT.js → chunk-C7IBFI5B.js} +1 -1
- package/dist/{chunk-5BJXMZN4.js → chunk-CPAJXBTL.js} +9 -5
- package/dist/chunk-HAEJ4M54.js +94 -0
- package/dist/{chunk-QNCVK3ZF.js → chunk-JXSBOG2R.js} +1 -1
- package/dist/{chunk-3KY2GNPE.js → chunk-KNISO652.js} +1 -1
- package/dist/{chunk-VMAWXEVG.js → chunk-L7D6KNHV.js} +457 -290
- package/dist/{chunk-JMI7L7Y7.js → chunk-LPM7O6XM.js} +2 -233
- package/dist/{chunk-FVKLHLF4.js → chunk-QARSVM7Q.js} +1 -1
- package/dist/{chunk-F7JDHS2I.js → chunk-SBQ4MYQV.js} +3 -2
- package/dist/{chunk-MU4VPAMR.js → chunk-YRKQNPK2.js} +1 -1
- package/dist/components/index.css +3 -24
- package/dist/components/index.d.ts +11 -2
- package/dist/components/index.js +18 -16
- package/dist/components/navigation/index.css +3 -24
- package/dist/features/auth/index.css +3 -24
- package/dist/features/crm/index.css +3 -24
- package/dist/features/crm/index.js +5 -4
- package/dist/features/dashboard/index.css +3 -24
- package/dist/features/dashboard/index.js +5 -4
- package/dist/features/delivery/index.css +3 -24
- package/dist/features/delivery/index.js +5 -4
- package/dist/features/knowledge/index.js +397 -1
- package/dist/features/lead-gen/index.css +3 -24
- package/dist/features/lead-gen/index.d.ts +158 -151
- package/dist/features/lead-gen/index.js +6 -5
- package/dist/features/monitoring/index.css +3 -24
- package/dist/features/monitoring/index.js +6 -5
- package/dist/features/monitoring/requests/index.css +3 -24
- package/dist/features/monitoring/requests/index.js +4 -3
- package/dist/features/operations/index.css +3 -24
- package/dist/features/operations/index.js +9 -7
- package/dist/features/settings/index.css +3 -24
- package/dist/features/settings/index.js +5 -4
- package/dist/hooks/delivery/index.css +3 -24
- package/dist/hooks/index.css +3 -24
- package/dist/hooks/index.d.ts +14 -3
- package/dist/hooks/index.js +4 -3
- package/dist/hooks/published.css +3 -24
- package/dist/hooks/published.d.ts +14 -3
- package/dist/hooks/published.js +4 -3
- package/dist/index.css +3 -24
- package/dist/index.d.ts +611 -593
- package/dist/index.js +4 -3
- package/dist/knowledge/index.d.ts +14 -4
- package/dist/knowledge/index.js +20 -119
- package/dist/organization/index.css +3 -24
- package/dist/provider/index.css +3 -24
- package/dist/provider/index.d.ts +346 -339
- package/dist/provider/index.js +3 -2
- package/dist/provider/published.css +3 -24
- package/dist/provider/published.d.ts +346 -339
- package/dist/provider/published.js +2 -1
- package/package.json +33 -33
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { CRM_DISCOVERY_REPLIED_STATE, CRM_DISCOVERY_LINK_SENT_STATE, CRM_DISCOVERY_NUDGING_STATE, CRM_DISCOVERY_BOOKING_CANCELLED_STATE } from './chunk-5RLYII6P.js';
|
|
1
2
|
import { ApiClientProvider, useApiClient } from './chunk-T6INEVX6.js';
|
|
2
3
|
import { OrganizationProvider } from './chunk-HOIT677G.js';
|
|
3
4
|
import { getErrorInfo, getErrorTitle, formatErrorMessage } from './chunk-SGXXJE52.js';
|
|
@@ -38,238 +39,6 @@ function NotificationProvider({ adapter, children }) {
|
|
|
38
39
|
function useNotificationAdapter() {
|
|
39
40
|
return useContext(NotificationContext);
|
|
40
41
|
}
|
|
41
|
-
var ModelIdSchema = z.string().trim().min(1).max(100).regex(/^[a-z0-9]+(?:[-._][a-z0-9]+)*$/, "IDs must be lowercase and use -, _, or . separators");
|
|
42
|
-
var LabelSchema = z.string().trim().min(1).max(120);
|
|
43
|
-
var DescriptionSchema = z.string().trim().min(1).max(2e3);
|
|
44
|
-
var ColorTokenSchema = z.string().trim().min(1).max(50);
|
|
45
|
-
var IconNameSchema = z.string().trim().min(1).max(80);
|
|
46
|
-
var PathSchema = z.string().trim().startsWith("/").max(300);
|
|
47
|
-
var ReferenceIdsSchema = z.array(ModelIdSchema).default([]);
|
|
48
|
-
var DisplayMetadataSchema = z.object({
|
|
49
|
-
label: LabelSchema,
|
|
50
|
-
description: DescriptionSchema.optional(),
|
|
51
|
-
color: ColorTokenSchema.optional(),
|
|
52
|
-
icon: IconNameSchema.optional()
|
|
53
|
-
});
|
|
54
|
-
var TechStackEntrySchema = z.object({
|
|
55
|
-
/** Name of the external platform (e.g. "HubSpot", "Stripe", "Notion"). */
|
|
56
|
-
platform: z.string().trim().min(1).max(200),
|
|
57
|
-
/** Free-form description of what this integration is used for. */
|
|
58
|
-
purpose: z.string().trim().min(1).max(500),
|
|
59
|
-
/**
|
|
60
|
-
* Health of the credential backing this integration.
|
|
61
|
-
* - configured: credential present and valid
|
|
62
|
-
* - pending: not yet set up
|
|
63
|
-
* - expired: credential existed but has lapsed
|
|
64
|
-
* - missing: expected but not present
|
|
65
|
-
*/
|
|
66
|
-
credentialStatus: z.enum(["configured", "pending", "expired", "missing"]),
|
|
67
|
-
/**
|
|
68
|
-
* Whether this integration is the primary system of record for its domain
|
|
69
|
-
* (e.g. HubSpot is SoR for contacts). Defaults to false.
|
|
70
|
-
*/
|
|
71
|
-
isSystemOfRecord: z.boolean().default(false)
|
|
72
|
-
});
|
|
73
|
-
DisplayMetadataSchema.extend({
|
|
74
|
-
id: ModelIdSchema,
|
|
75
|
-
resourceId: z.string().trim().min(1).max(255),
|
|
76
|
-
resourceType: z.enum(["workflow", "agent", "trigger", "integration", "external", "human_checkpoint"]),
|
|
77
|
-
featureIds: ReferenceIdsSchema,
|
|
78
|
-
entityIds: ReferenceIdsSchema,
|
|
79
|
-
surfaceIds: ReferenceIdsSchema,
|
|
80
|
-
capabilityIds: ReferenceIdsSchema,
|
|
81
|
-
/** Optional tech-stack metadata for external-SaaS integrations. */
|
|
82
|
-
techStack: TechStackEntrySchema.optional()
|
|
83
|
-
});
|
|
84
|
-
var SalesStageSemanticClassSchema = z.enum(["open", "active", "nurturing", "closed_won", "closed_lost"]);
|
|
85
|
-
var SalesStageSchema = DisplayMetadataSchema.extend({
|
|
86
|
-
id: ModelIdSchema,
|
|
87
|
-
order: z.number().int().min(0),
|
|
88
|
-
semanticClass: SalesStageSemanticClassSchema,
|
|
89
|
-
surfaceIds: ReferenceIdsSchema,
|
|
90
|
-
resourceIds: ReferenceIdsSchema
|
|
91
|
-
});
|
|
92
|
-
var SalesPipelineSchema = z.object({
|
|
93
|
-
id: ModelIdSchema,
|
|
94
|
-
label: z.string().trim().min(1).max(120),
|
|
95
|
-
description: DescriptionSchema.optional(),
|
|
96
|
-
entityId: ModelIdSchema,
|
|
97
|
-
stages: z.array(SalesStageSchema).min(1)
|
|
98
|
-
});
|
|
99
|
-
var OrganizationModelSalesSchema = z.object({
|
|
100
|
-
entityId: ModelIdSchema,
|
|
101
|
-
defaultPipelineId: ModelIdSchema,
|
|
102
|
-
pipelines: z.array(SalesPipelineSchema).min(1)
|
|
103
|
-
});
|
|
104
|
-
function findPipeline(definitions, pipelineKey) {
|
|
105
|
-
return definitions.find((def) => def.pipelineKey === pipelineKey);
|
|
106
|
-
}
|
|
107
|
-
var CRM_DISCOVERY_REPLIED_STATE = {
|
|
108
|
-
stateKey: "discovery_replied"};
|
|
109
|
-
var CRM_DISCOVERY_LINK_SENT_STATE = {
|
|
110
|
-
stateKey: "discovery_link_sent"};
|
|
111
|
-
var CRM_DISCOVERY_NUDGING_STATE = {
|
|
112
|
-
stateKey: "discovery_nudging"};
|
|
113
|
-
var CRM_DISCOVERY_BOOKING_CANCELLED_STATE = {
|
|
114
|
-
stateKey: "discovery_booking_cancelled"};
|
|
115
|
-
var CRM_PRIORITY_BUCKETS = [
|
|
116
|
-
{ bucketKey: "needs_response", label: "Needs Response", rank: 10, color: "red" },
|
|
117
|
-
{ bucketKey: "follow_up_due", label: "Follow-up Due", rank: 20, color: "orange" },
|
|
118
|
-
{ bucketKey: "waiting", label: "Waiting", rank: 30, color: "blue" },
|
|
119
|
-
{ bucketKey: "stale", label: "Stale", rank: 40, color: "gray" },
|
|
120
|
-
{ bucketKey: "closed_low", label: "Closed", rank: 50, color: "dark" }
|
|
121
|
-
];
|
|
122
|
-
var DEFAULT_CRM_PRIORITY_RULE_CONFIG = {
|
|
123
|
-
buckets: CRM_PRIORITY_BUCKETS,
|
|
124
|
-
closedStageKeys: ["closed_won", "closed_lost"],
|
|
125
|
-
followUpAfterDaysByStateKey: {
|
|
126
|
-
discovery_link_sent: 3,
|
|
127
|
-
discovery_nudging: 2,
|
|
128
|
-
reply_sent: 3,
|
|
129
|
-
followup_1_sent: 3,
|
|
130
|
-
followup_2_sent: 5,
|
|
131
|
-
followup_3_sent: 7
|
|
132
|
-
},
|
|
133
|
-
staleAfterDays: 14
|
|
134
|
-
};
|
|
135
|
-
var PENDING_STATE = { stateKey: "pending", label: "Pending" };
|
|
136
|
-
var ACQ_LIST_MEMBERS_LEAD_GEN_PIPELINE = {
|
|
137
|
-
pipelineKey: "lead-gen",
|
|
138
|
-
label: "Lead Generation",
|
|
139
|
-
entityKey: "acq.list-member",
|
|
140
|
-
stages: [
|
|
141
|
-
{
|
|
142
|
-
stageKey: "outreach",
|
|
143
|
-
label: "Outreach",
|
|
144
|
-
states: [
|
|
145
|
-
PENDING_STATE,
|
|
146
|
-
{ stateKey: "personalized", label: "Personalized" },
|
|
147
|
-
{ stateKey: "uploaded", label: "Uploaded" },
|
|
148
|
-
{ stateKey: "interested", label: "Interested" }
|
|
149
|
-
]
|
|
150
|
-
},
|
|
151
|
-
{
|
|
152
|
-
stageKey: "prospecting",
|
|
153
|
-
label: "Prospecting",
|
|
154
|
-
states: [
|
|
155
|
-
PENDING_STATE,
|
|
156
|
-
{ stateKey: "discovered", label: "Discovered" },
|
|
157
|
-
{ stateKey: "verified", label: "Verified" }
|
|
158
|
-
]
|
|
159
|
-
},
|
|
160
|
-
{
|
|
161
|
-
stageKey: "qualification",
|
|
162
|
-
label: "Qualification",
|
|
163
|
-
states: [PENDING_STATE]
|
|
164
|
-
}
|
|
165
|
-
]
|
|
166
|
-
};
|
|
167
|
-
var ACQ_LIST_COMPANIES_LEAD_GEN_PIPELINE = {
|
|
168
|
-
pipelineKey: "lead-gen",
|
|
169
|
-
label: "Lead Generation",
|
|
170
|
-
entityKey: "acq.list-company",
|
|
171
|
-
stages: [
|
|
172
|
-
{
|
|
173
|
-
stageKey: "outreach",
|
|
174
|
-
label: "Outreach",
|
|
175
|
-
states: [PENDING_STATE]
|
|
176
|
-
},
|
|
177
|
-
{
|
|
178
|
-
stageKey: "prospecting",
|
|
179
|
-
label: "Prospecting",
|
|
180
|
-
states: [
|
|
181
|
-
PENDING_STATE,
|
|
182
|
-
{ stateKey: "populated", label: "Populated" },
|
|
183
|
-
{ stateKey: "extracted", label: "Extracted" }
|
|
184
|
-
]
|
|
185
|
-
},
|
|
186
|
-
{
|
|
187
|
-
stageKey: "qualification",
|
|
188
|
-
label: "Qualification",
|
|
189
|
-
states: [PENDING_STATE, { stateKey: "qualified", label: "Qualified" }]
|
|
190
|
-
}
|
|
191
|
-
]
|
|
192
|
-
};
|
|
193
|
-
var LEAD_GEN_PIPELINE_DEFINITIONS = {
|
|
194
|
-
"acq.list-member": [ACQ_LIST_MEMBERS_LEAD_GEN_PIPELINE],
|
|
195
|
-
"acq.list-company": [ACQ_LIST_COMPANIES_LEAD_GEN_PIPELINE]
|
|
196
|
-
};
|
|
197
|
-
var LEAD_GEN_STAGE_CATALOG = {
|
|
198
|
-
// Prospecting — company population
|
|
199
|
-
scraped: {
|
|
200
|
-
key: "scraped",
|
|
201
|
-
label: "Scraped",
|
|
202
|
-
description: "Company was scraped from a source directory (Apify actor run).",
|
|
203
|
-
order: 1,
|
|
204
|
-
entity: "company"
|
|
205
|
-
},
|
|
206
|
-
populated: {
|
|
207
|
-
key: "populated",
|
|
208
|
-
label: "Populated",
|
|
209
|
-
description: "Company record populated with structured data from scrape results.",
|
|
210
|
-
order: 2,
|
|
211
|
-
entity: "company"
|
|
212
|
-
},
|
|
213
|
-
extracted: {
|
|
214
|
-
key: "extracted",
|
|
215
|
-
label: "Extracted",
|
|
216
|
-
description: "Website content extracted and parsed for company intelligence.",
|
|
217
|
-
order: 3,
|
|
218
|
-
entity: "company"
|
|
219
|
-
},
|
|
220
|
-
enriched: {
|
|
221
|
-
key: "enriched",
|
|
222
|
-
label: "Enriched",
|
|
223
|
-
description: "Company or contact enriched with third-party data (e.g. Tomba, Anymailfinder).",
|
|
224
|
-
order: 4,
|
|
225
|
-
entity: "company"
|
|
226
|
-
},
|
|
227
|
-
// Prospecting — contact discovery
|
|
228
|
-
discovered: {
|
|
229
|
-
key: "discovered",
|
|
230
|
-
label: "Discovered",
|
|
231
|
-
description: "Contact email address discovered via an email-discovery workflow.",
|
|
232
|
-
order: 5,
|
|
233
|
-
entity: "contact"
|
|
234
|
-
},
|
|
235
|
-
verified: {
|
|
236
|
-
key: "verified",
|
|
237
|
-
label: "Verified",
|
|
238
|
-
description: "Contact email address verified as deliverable (email verification workflow).",
|
|
239
|
-
order: 6,
|
|
240
|
-
entity: "contact"
|
|
241
|
-
},
|
|
242
|
-
// Qualification
|
|
243
|
-
qualified: {
|
|
244
|
-
key: "qualified",
|
|
245
|
-
label: "Qualified",
|
|
246
|
-
description: "Company passed the ICP qualification rubric (company-qualification workflow).",
|
|
247
|
-
order: 7,
|
|
248
|
-
entity: "company"
|
|
249
|
-
},
|
|
250
|
-
// Outreach
|
|
251
|
-
personalized: {
|
|
252
|
-
key: "personalized",
|
|
253
|
-
label: "Personalized",
|
|
254
|
-
description: "Outreach message personalized for the contact (Instantly personalization workflow).",
|
|
255
|
-
order: 8,
|
|
256
|
-
entity: "contact"
|
|
257
|
-
},
|
|
258
|
-
uploaded: {
|
|
259
|
-
key: "uploaded",
|
|
260
|
-
label: "Uploaded",
|
|
261
|
-
description: "Contact uploaded to an Instantly campaign for outreach.",
|
|
262
|
-
order: 9,
|
|
263
|
-
entity: "contact"
|
|
264
|
-
},
|
|
265
|
-
interested: {
|
|
266
|
-
key: "interested",
|
|
267
|
-
label: "Interested",
|
|
268
|
-
description: "Contact replied with a positive signal (Instantly reply-handler transition).",
|
|
269
|
-
order: 10,
|
|
270
|
-
entity: "contact"
|
|
271
|
-
}
|
|
272
|
-
};
|
|
273
42
|
|
|
274
43
|
// ../core/src/business/acquisition/deal-ownership.ts
|
|
275
44
|
var INBOUND_EVENT_TYPES = ["reply_received"];
|
|
@@ -521,4 +290,4 @@ function OrgServiceBridge({
|
|
|
521
290
|
return /* @__PURE__ */ jsx(ElevasisServiceProvider, { apiRequest, organizationId: currentWorkOSOrganizationId, isReady, children: /* @__PURE__ */ jsx(NotificationProvider, { adapter: notifications, children: /* @__PURE__ */ jsx(InitializationProvider, { children }) }) });
|
|
522
291
|
}
|
|
523
292
|
|
|
524
|
-
export {
|
|
293
|
+
export { CrmActionsProvider, EMPTY_LIST_ACTIONS, ElevasisCoreProvider, ListActionsProvider, NotificationProvider, deriveActions, findListActionByCapability, getListActionWorkflowId, useCrmActions, useListActions, useNotificationAdapter };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { useCyberColors, CyberLegendItem, CyberAreaChart } from './chunk-KMAXFJPH.js';
|
|
2
|
-
import { useResourcesHealth } from './chunk-
|
|
2
|
+
import { useResourcesHealth } from './chunk-CPAJXBTL.js';
|
|
3
3
|
import { CardHeader, EmptyState } from './chunk-U36X6NZM.js';
|
|
4
4
|
import { getTimeRangeDates, formatBucketTime } from './chunk-SGXXJE52.js';
|
|
5
5
|
import { Paper, Center, Loader, Group } from '@mantine/core';
|
|
@@ -4,11 +4,12 @@ import { SubshellNavItem } from './chunk-X4WBGKJQ.js';
|
|
|
4
4
|
import { SubshellSidebarSection } from './chunk-IIMU5YAJ.js';
|
|
5
5
|
import { FilterBar } from './chunk-PDHTXPSF.js';
|
|
6
6
|
import { CustomModal } from './chunk-KVJ3LFH2.js';
|
|
7
|
-
import { useDealTasksDue, useDealsLookup, useCreateDealTask, useDealsSummary, useDeleteDeal, usePaginationState, useDeals, useTableSort, sortData, useTableSelection, useDealDetail, useCompany, dealKeys, useExecuteAction } from './chunk-
|
|
7
|
+
import { useDealTasksDue, useDealsLookup, useCreateDealTask, useDealsSummary, useDeleteDeal, usePaginationState, useDeals, useTableSort, sortData, useTableSelection, useDealDetail, useCompany, dealKeys, useExecuteAction } from './chunk-CPAJXBTL.js';
|
|
8
8
|
import { showApiErrorNotification, showSuccessNotification } from './chunk-HKBEURCV.js';
|
|
9
9
|
import { SubshellContentContainer } from './chunk-TKAYX2SP.js';
|
|
10
10
|
import { CenteredErrorState, CardHeader, StatCard, PageTitleCaption, EmptyState, ActivityTimeline } from './chunk-U36X6NZM.js';
|
|
11
|
-
import { useCrmActions,
|
|
11
|
+
import { useCrmActions, deriveActions } from './chunk-LPM7O6XM.js';
|
|
12
|
+
import { DEFAULT_CRM_PRIORITY_RULE_CONFIG, CRM_PRIORITY_BUCKETS } from './chunk-5RLYII6P.js';
|
|
12
13
|
import { useRouterContext } from './chunk-Q7DJKLEN.js';
|
|
13
14
|
import { PAGE_SIZE_DEFAULT, formatTimeAgo } from './chunk-SGXXJE52.js';
|
|
14
15
|
import { useElevasisServices } from './chunk-5WWZXCS5.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PRESETS, getPreset, generateShades, mantineThemeOverride, createCssVariablesResolver, PresetsProvider } from './chunk-QIW6OCEI.js';
|
|
2
2
|
import { AppBackground } from './chunk-WLOQ4IBG.js';
|
|
3
|
-
import { ElevasisCoreProvider } from './chunk-
|
|
3
|
+
import { ElevasisCoreProvider } from './chunk-LPM7O6XM.js';
|
|
4
4
|
import { ElevasisLoader } from './chunk-SZHARWKU.js';
|
|
5
5
|
import { AppearanceProvider } from './chunk-E565XMTQ.js';
|
|
6
6
|
import { getErrorInfo, formatErrorMessage, getErrorTitle } from './chunk-SGXXJE52.js';
|
|
@@ -540,32 +540,11 @@
|
|
|
540
540
|
.mantine-Select-option:hover {
|
|
541
541
|
background-color: var(--color-surface-hover) !important;
|
|
542
542
|
}
|
|
543
|
-
[data-mantine-color-scheme] .mantine-Tabs-root {
|
|
544
|
-
--tabs-color: var(--color-primary);
|
|
543
|
+
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
545
544
|
--tab-border-color: var(--color-border);
|
|
546
|
-
--tab-hover-color: color-mix(in srgb, var(--color-surface-hover) 70%, transparent);
|
|
547
545
|
}
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
}
|
|
551
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab {
|
|
552
|
-
color: var(--color-text);
|
|
553
|
-
border-color: transparent;
|
|
554
|
-
background-color: transparent;
|
|
555
|
-
transition:
|
|
556
|
-
background-color var(--duration-fast) var(--easing),
|
|
557
|
-
border-color var(--duration-fast) var(--easing),
|
|
558
|
-
color var(--duration-fast) var(--easing);
|
|
559
|
-
}
|
|
560
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab:not([data-active]):hover {
|
|
561
|
-
background-color: var(--tab-hover-color);
|
|
562
|
-
border-color: var(--color-border);
|
|
563
|
-
}
|
|
564
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
565
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
566
|
-
color: var(--color-text);
|
|
567
|
-
background-color: transparent;
|
|
568
|
-
border-color: var(--color-primary);
|
|
546
|
+
.mantine-Tabs-tab:hover {
|
|
547
|
+
background-color: var(--color-surface-hover);
|
|
569
548
|
}
|
|
570
549
|
.mantine-Pagination-control:not([data-active]) {
|
|
571
550
|
background: var(--color-surface);
|
|
@@ -4351,6 +4351,15 @@ declare function CreateRoleModal({ opened, onClose, onCreated }: CreateRoleModal
|
|
|
4351
4351
|
|
|
4352
4352
|
declare function showAuthError(error: unknown): void;
|
|
4353
4353
|
|
|
4354
|
+
interface TabSectionProps {
|
|
4355
|
+
icon?: ReactNode;
|
|
4356
|
+
title: string;
|
|
4357
|
+
description?: ReactNode;
|
|
4358
|
+
rightSection?: ReactNode;
|
|
4359
|
+
children: ReactNode;
|
|
4360
|
+
}
|
|
4361
|
+
declare function TabSection({ icon, title, description, rightSection, children }: TabSectionProps): react_jsx_runtime.JSX.Element;
|
|
4362
|
+
|
|
4354
4363
|
interface EmptyStateProps {
|
|
4355
4364
|
/** Icon component to display (e.g., IconKey from @tabler/icons-react) */
|
|
4356
4365
|
icon: ComponentType<{
|
|
@@ -6868,5 +6877,5 @@ declare const OperationsSidebarMiddle: () => react_jsx_runtime.JSX.Element;
|
|
|
6868
6877
|
|
|
6869
6878
|
declare const operationsManifest: FeatureModule;
|
|
6870
6879
|
|
|
6871
|
-
export { APIErrorAlert, AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeySettings, AppErrorBoundary, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CONTAINER_CONSTANTS, Can, 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, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, 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, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipFeaturePanel, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipsList, PIPELINE_FUNNEL_ORDER, PageNotFound, PageTitleCaption, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, 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, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, VisualizerContainer, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, buildErrorReport, calculateProgress, catalogItemToResourceDefinition, crmManifest, deliveryManifest, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getStatusColor, iconMap, leadGenManifest, mdxComponents, milestoneStatusColors, monitoringManifest, noteTypeColors, operationsManifest, projectStatusColors, seoManifest, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, taskStatusColors, taskTypeColors, useCrmPipelineSummary, useCrmQuickMetrics, useDeleteLists, useGraphBackgroundStyles, useGraphTheme, useNewKnowledgeMapLayout, useRecentCrmActivity };
|
|
6872
|
-
export type { ActivityEntry, ActivityFiltersProps, ActivityTableProps, AppErrorBoundaryProps, BaseEdgeProps, BaseExecutionLogsProps, BreadcrumbsProps, CommandViewGraphRef, ContextViewerProps, CostByModelTableProps, CrashErrorFallbackProps, CreateRoleModalProps, CrmOverviewProps, DealKanbanCardProps, ErrorAnalysisCardProps, ErrorReportCardProps, ExecutionBreakdownTableProps, ExecutionHealthCardProps, ExecutionLogEntry, ExecutionLogsFiltersProps, ExecutionLogsTableProps, FeatureUnavailableStateProps, FitViewButtonVariant, FormFieldRendererProps, GraphFitViewHandlerProps, JsonViewerProps, KanbanBoardProps, KnowledgeMapEdgeData, KnowledgeMapNodeData, LogLevel, MdxRendererProps, NavigationButtonProps, PermissionRow, ProjectsSidebarMiddleProps, ResourceHealthPanelProps, RichTextEditorProps, RunResourceButtonProps, RunResourceInputResolver, SavedViewPreset, ScheduleType, SerializedKnowledgeMap, SerializedKnowledgeNode, StatCardProps, StyledMarkdownProps, TaskFilterStatus, TrendIndicatorProps, ZodFormRendererProps };
|
|
6880
|
+
export { APIErrorAlert, AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeySettings, AppErrorBoundary, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CONTAINER_CONSTANTS, Can, 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, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, 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, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipFeaturePanel, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipsList, PIPELINE_FUNNEL_ORDER, PageNotFound, PageTitleCaption, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, SHARED_VIZ_CONSTANTS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StyledMarkdown, TabCountBadge, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, VisualizerContainer, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, buildErrorReport, calculateProgress, catalogItemToResourceDefinition, crmManifest, deliveryManifest, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getStatusColor, iconMap, leadGenManifest, mdxComponents, milestoneStatusColors, monitoringManifest, noteTypeColors, operationsManifest, projectStatusColors, seoManifest, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, taskStatusColors, taskTypeColors, useCrmPipelineSummary, useCrmQuickMetrics, useDeleteLists, useGraphBackgroundStyles, useGraphTheme, useNewKnowledgeMapLayout, useRecentCrmActivity };
|
|
6881
|
+
export type { ActivityEntry, ActivityFiltersProps, ActivityTableProps, AppErrorBoundaryProps, BaseEdgeProps, BaseExecutionLogsProps, BreadcrumbsProps, CommandViewGraphRef, ContextViewerProps, CostByModelTableProps, CrashErrorFallbackProps, CreateRoleModalProps, CrmOverviewProps, DealKanbanCardProps, ErrorAnalysisCardProps, ErrorReportCardProps, ExecutionBreakdownTableProps, ExecutionHealthCardProps, ExecutionLogEntry, ExecutionLogsFiltersProps, ExecutionLogsTableProps, FeatureUnavailableStateProps, FitViewButtonVariant, FormFieldRendererProps, GraphFitViewHandlerProps, JsonViewerProps, KanbanBoardProps, KnowledgeMapEdgeData, KnowledgeMapNodeData, LogLevel, MdxRendererProps, NavigationButtonProps, PermissionRow, ProjectsSidebarMiddleProps, ResourceHealthPanelProps, RichTextEditorProps, RunResourceButtonProps, RunResourceInputResolver, SavedViewPreset, ScheduleType, SerializedKnowledgeMap, SerializedKnowledgeNode, StatCardProps, StyledMarkdownProps, TabSectionProps, TaskFilterStatus, TrendIndicatorProps, ZodFormRendererProps };
|
package/dist/components/index.js
CHANGED
|
@@ -1,26 +1,27 @@
|
|
|
1
1
|
import '../chunk-Q5BEODAT.js';
|
|
2
2
|
import { useBreadcrumbs } from '../chunk-S66IQSSR.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, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, 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, 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-KNISO652.js';
|
|
4
|
+
export { LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, TabSection, getEnrichmentColor, getStatusColor, leadGenManifest, useDeleteLists } from '../chunk-L7D6KNHV.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-ARJPZ66V.js';
|
|
6
6
|
import '../chunk-N55DVMAG.js';
|
|
7
7
|
import '../chunk-ZTWA5H77.js';
|
|
8
8
|
import '../chunk-ROSMICXG.js';
|
|
9
|
-
import
|
|
10
|
-
|
|
9
|
+
import '../chunk-6U7AIIHF.js';
|
|
10
|
+
import { BaseNode, useGraphTheme, BaseEdge, GraphBackground, GraphLegend, GraphFitViewButton } from '../chunk-7F3IQMLI.js';
|
|
11
|
+
export { AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, BaseEdge, BaseNode, EmptyVisualizer, ExecutionStats, ExecutionStatusBadge, FormFieldRenderer, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, RunResourceButton, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, VisualizerContainer, WorkflowExecutionTimeline, ZodFormRenderer, getGraphBackgroundStyles, useGraphBackgroundStyles, useGraphTheme } from '../chunk-7F3IQMLI.js';
|
|
11
12
|
import '../chunk-ECNNI3NT.js';
|
|
12
|
-
import '../chunk-
|
|
13
|
-
import { NotificationList } from '../chunk-
|
|
14
|
-
export { ActivityCard, ActivityFilters as ActivityFiltersBar, ActivityTable, BusinessImpactCard, CostBreakdownCard, CostByModelTable, CostMetricsCard, ErrorAnalysisCard, ErrorBreakdownTable, ExecutionBreakdownTable, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, NotificationItem, NotificationList, monitoringManifest } from '../chunk-
|
|
15
|
-
export { ResourceHealthPanel } from '../chunk-
|
|
13
|
+
import '../chunk-BDKM56TP.js';
|
|
14
|
+
import { NotificationList } from '../chunk-JXSBOG2R.js';
|
|
15
|
+
export { ActivityCard, ActivityFilters as ActivityFiltersBar, ActivityTable, BusinessImpactCard, CostBreakdownCard, CostByModelTable, CostMetricsCard, ErrorAnalysisCard, ErrorBreakdownTable, ExecutionBreakdownTable, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, NotificationItem, NotificationList, monitoringManifest } from '../chunk-JXSBOG2R.js';
|
|
16
|
+
export { ResourceHealthPanel } from '../chunk-QARSVM7Q.js';
|
|
16
17
|
export { ResourceHealthChart, getHealthColor } from '../chunk-LGKLC5MG.js';
|
|
17
18
|
import '../chunk-KMAXFJPH.js';
|
|
18
19
|
export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, seoManifest } from '../chunk-DWK2QIAK.js';
|
|
19
|
-
import { showAuthError } from '../chunk-
|
|
20
|
-
export { CreateCredentialModal, CredentialList, CredentialSettings, MembershipFeaturePanel, MembershipStatusBadge, OAuthConnectModal, OrganizationMembershipsList, WebhookUrlDisplayModal, settingsManifest, showAuthError } from '../chunk-
|
|
20
|
+
import { showAuthError } from '../chunk-C7IBFI5B.js';
|
|
21
|
+
export { CreateCredentialModal, CredentialList, CredentialSettings, MembershipFeaturePanel, MembershipStatusBadge, OAuthConnectModal, OrganizationMembershipsList, WebhookUrlDisplayModal, settingsManifest, showAuthError } from '../chunk-C7IBFI5B.js';
|
|
21
22
|
import { AppShellLoader } from '../chunk-RYTEQBAO.js';
|
|
22
|
-
import { setDealReferrer, compareDealsByPriority } from '../chunk-
|
|
23
|
-
export { ActivityFeedWidget, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, crmManifest, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../chunk-
|
|
23
|
+
import { setDealReferrer, compareDealsByPriority } from '../chunk-SBQ4MYQV.js';
|
|
24
|
+
export { ActivityFeedWidget, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, crmManifest, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../chunk-SBQ4MYQV.js';
|
|
24
25
|
import '../chunk-BZZCNLT6.js';
|
|
25
26
|
export { SortableHeader, TableSelectionToolbar } from '../chunk-TUMSNGTX.js';
|
|
26
27
|
import '../chunk-X4WBGKJQ.js';
|
|
@@ -32,7 +33,7 @@ export { ConfirmationInputModal, ConfirmationModal, CustomModal } from '../chunk
|
|
|
32
33
|
import '../chunk-SNHGSCKH.js';
|
|
33
34
|
export { CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS } from '../chunk-E4WQGJNS.js';
|
|
34
35
|
import '../chunk-7M2VOCYN.js';
|
|
35
|
-
import { useCommandViewLayout, useOrganizationPermissions, useCreateOrgRole, usePermissionCatalog, useUpdateApiKey, useDeleteApiKey, useCreateApiKey, useListApiKeys, usePaginationState, useActivateDeployment, useDeactivateDeployment, useDeleteDeployment, useListDeployments, useResources, useCreateSchedule, useListSchedules, usePauseSchedule, useResumeSchedule, useCancelSchedule, useDeleteSchedule, useDeals, useTransitionItem, dealKeys, useMarkAllAsRead, useNotifications } from '../chunk-
|
|
36
|
+
import { useCommandViewLayout, useOrganizationPermissions, useCreateOrgRole, usePermissionCatalog, useUpdateApiKey, useDeleteApiKey, useCreateApiKey, useListApiKeys, usePaginationState, useActivateDeployment, useDeactivateDeployment, useDeleteDeployment, useListDeployments, useResources, useCreateSchedule, useListSchedules, usePauseSchedule, useResumeSchedule, useCancelSchedule, useDeleteSchedule, useDeals, useTransitionItem, dealKeys, useMarkAllAsRead, useNotifications } from '../chunk-CPAJXBTL.js';
|
|
36
37
|
import '../chunk-VKMNWHTL.js';
|
|
37
38
|
import { showSuccessNotification, showErrorNotification, showApiErrorNotification } from '../chunk-HKBEURCV.js';
|
|
38
39
|
export { showApiErrorNotification, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification } from '../chunk-HKBEURCV.js';
|
|
@@ -41,7 +42,7 @@ import { Graph_module_css_default, useDirectedChainHighlighting, useNodeSelectio
|
|
|
41
42
|
export { Graph_module_css_default as graphStyles } from '../chunk-22UVE3RA.js';
|
|
42
43
|
import '../chunk-3ZMAGTWF.js';
|
|
43
44
|
import '../chunk-VMJVQAFZ.js';
|
|
44
|
-
import '../chunk-
|
|
45
|
+
import '../chunk-YRKQNPK2.js';
|
|
45
46
|
import '../chunk-QIW6OCEI.js';
|
|
46
47
|
import '../chunk-WLOQ4IBG.js';
|
|
47
48
|
import '../chunk-TAIX4NO3.js';
|
|
@@ -49,10 +50,11 @@ import { SubshellContentContainer } from '../chunk-TKAYX2SP.js';
|
|
|
49
50
|
import { ListSkeleton, EmptyState, PageTitleCaption, StatCard, CenteredErrorState, CardHeader } from '../chunk-U36X6NZM.js';
|
|
50
51
|
export { APIErrorAlert, ActivityTimeline, CardHeader, CenteredErrorState, CollapsibleSection, ContextViewer, CustomSelector, DetailCardSkeleton, EmptyState, FeatureUnavailableState, GlowDot, JsonViewer, ListSkeleton, PageNotFound, PageTitleCaption, ResourceCard, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, TabCountBadge, TimeRangeSelector, TrendIndicator, catalogItemToResourceDefinition } from '../chunk-U36X6NZM.js';
|
|
51
52
|
export { NavigationButton } from '../chunk-NYBEU5TE.js';
|
|
52
|
-
import '../chunk-
|
|
53
|
+
import '../chunk-LPM7O6XM.js';
|
|
53
54
|
export { ElevasisLoader } from '../chunk-SZHARWKU.js';
|
|
54
55
|
import '../chunk-V3HUIZJX.js';
|
|
55
56
|
export { StyledMarkdown } from '../chunk-3KMDHCAR.js';
|
|
57
|
+
import '../chunk-5RLYII6P.js';
|
|
56
58
|
import '../chunk-T6INEVX6.js';
|
|
57
59
|
import '../chunk-2IFYDILW.js';
|
|
58
60
|
import { useRouterContext } from '../chunk-Q7DJKLEN.js';
|
|
@@ -156,32 +156,11 @@
|
|
|
156
156
|
.mantine-Select-option:hover {
|
|
157
157
|
background-color: var(--color-surface-hover) !important;
|
|
158
158
|
}
|
|
159
|
-
[data-mantine-color-scheme] .mantine-Tabs-root {
|
|
160
|
-
--tabs-color: var(--color-primary);
|
|
159
|
+
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
161
160
|
--tab-border-color: var(--color-border);
|
|
162
|
-
--tab-hover-color: color-mix(in srgb, var(--color-surface-hover) 70%, transparent);
|
|
163
161
|
}
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
}
|
|
167
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab {
|
|
168
|
-
color: var(--color-text);
|
|
169
|
-
border-color: transparent;
|
|
170
|
-
background-color: transparent;
|
|
171
|
-
transition:
|
|
172
|
-
background-color var(--duration-fast) var(--easing),
|
|
173
|
-
border-color var(--duration-fast) var(--easing),
|
|
174
|
-
color var(--duration-fast) var(--easing);
|
|
175
|
-
}
|
|
176
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab:not([data-active]):hover {
|
|
177
|
-
background-color: var(--tab-hover-color);
|
|
178
|
-
border-color: var(--color-border);
|
|
179
|
-
}
|
|
180
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
181
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
182
|
-
color: var(--color-text);
|
|
183
|
-
background-color: transparent;
|
|
184
|
-
border-color: var(--color-primary);
|
|
162
|
+
.mantine-Tabs-tab:hover {
|
|
163
|
+
background-color: var(--color-surface-hover);
|
|
185
164
|
}
|
|
186
165
|
.mantine-Pagination-control:not([data-active]) {
|
|
187
166
|
background: var(--color-surface);
|
|
@@ -156,32 +156,11 @@
|
|
|
156
156
|
.mantine-Select-option:hover {
|
|
157
157
|
background-color: var(--color-surface-hover) !important;
|
|
158
158
|
}
|
|
159
|
-
[data-mantine-color-scheme] .mantine-Tabs-root {
|
|
160
|
-
--tabs-color: var(--color-primary);
|
|
159
|
+
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
161
160
|
--tab-border-color: var(--color-border);
|
|
162
|
-
--tab-hover-color: color-mix(in srgb, var(--color-surface-hover) 70%, transparent);
|
|
163
161
|
}
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
}
|
|
167
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab {
|
|
168
|
-
color: var(--color-text);
|
|
169
|
-
border-color: transparent;
|
|
170
|
-
background-color: transparent;
|
|
171
|
-
transition:
|
|
172
|
-
background-color var(--duration-fast) var(--easing),
|
|
173
|
-
border-color var(--duration-fast) var(--easing),
|
|
174
|
-
color var(--duration-fast) var(--easing);
|
|
175
|
-
}
|
|
176
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab:not([data-active]):hover {
|
|
177
|
-
background-color: var(--tab-hover-color);
|
|
178
|
-
border-color: var(--color-border);
|
|
179
|
-
}
|
|
180
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
181
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
182
|
-
color: var(--color-text);
|
|
183
|
-
background-color: transparent;
|
|
184
|
-
border-color: var(--color-primary);
|
|
162
|
+
.mantine-Tabs-tab:hover {
|
|
163
|
+
background-color: var(--color-surface-hover);
|
|
185
164
|
}
|
|
186
165
|
.mantine-Pagination-control:not([data-active]) {
|
|
187
166
|
background: var(--color-surface);
|
|
@@ -156,32 +156,11 @@
|
|
|
156
156
|
.mantine-Select-option:hover {
|
|
157
157
|
background-color: var(--color-surface-hover) !important;
|
|
158
158
|
}
|
|
159
|
-
[data-mantine-color-scheme] .mantine-Tabs-root {
|
|
160
|
-
--tabs-color: var(--color-primary);
|
|
159
|
+
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
161
160
|
--tab-border-color: var(--color-border);
|
|
162
|
-
--tab-hover-color: color-mix(in srgb, var(--color-surface-hover) 70%, transparent);
|
|
163
161
|
}
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
}
|
|
167
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab {
|
|
168
|
-
color: var(--color-text);
|
|
169
|
-
border-color: transparent;
|
|
170
|
-
background-color: transparent;
|
|
171
|
-
transition:
|
|
172
|
-
background-color var(--duration-fast) var(--easing),
|
|
173
|
-
border-color var(--duration-fast) var(--easing),
|
|
174
|
-
color var(--duration-fast) var(--easing);
|
|
175
|
-
}
|
|
176
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab:not([data-active]):hover {
|
|
177
|
-
background-color: var(--tab-hover-color);
|
|
178
|
-
border-color: var(--color-border);
|
|
179
|
-
}
|
|
180
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
181
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
182
|
-
color: var(--color-text);
|
|
183
|
-
background-color: transparent;
|
|
184
|
-
border-color: var(--color-primary);
|
|
162
|
+
.mantine-Tabs-tab:hover {
|
|
163
|
+
background-color: var(--color-surface-hover);
|
|
185
164
|
}
|
|
186
165
|
.mantine-Pagination-control:not([data-active]) {
|
|
187
166
|
background: var(--color-surface);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ActivityFeedWidget, CRM_ITEMS, CompanyDetailPage, ConversationThread, CrmOverview, CrmSettingsPage, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DEAL_STAGE_COLORS, DEAL_STAGE_OPTIONS, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, crmManifest, crmPrioritySettingsKeys, formatDealStageLabel, useCrmPipelineSummary, useCrmPrioritySettings, useCrmQuickMetrics, useRecentCrmActivity, useResetCrmPrioritySettings, useUpdateCrmPrioritySettings } from '../../chunk-
|
|
1
|
+
export { ActivityFeedWidget, CRM_ITEMS, CompanyDetailPage, ConversationThread, CrmOverview, CrmSettingsPage, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DEAL_STAGE_COLORS, DEAL_STAGE_OPTIONS, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, crmManifest, crmPrioritySettingsKeys, formatDealStageLabel, useCrmPipelineSummary, useCrmPrioritySettings, useCrmQuickMetrics, useRecentCrmActivity, useResetCrmPrioritySettings, useUpdateCrmPrioritySettings } from '../../chunk-SBQ4MYQV.js';
|
|
2
2
|
import '../../chunk-BZZCNLT6.js';
|
|
3
3
|
import '../../chunk-TUMSNGTX.js';
|
|
4
4
|
import '../../chunk-X4WBGKJQ.js';
|
|
@@ -6,24 +6,25 @@ import '../../chunk-IIMU5YAJ.js';
|
|
|
6
6
|
import '../../chunk-PDHTXPSF.js';
|
|
7
7
|
import '../../chunk-KVJ3LFH2.js';
|
|
8
8
|
import '../../chunk-7M2VOCYN.js';
|
|
9
|
-
import '../../chunk-
|
|
9
|
+
import '../../chunk-CPAJXBTL.js';
|
|
10
10
|
import '../../chunk-VKMNWHTL.js';
|
|
11
11
|
import '../../chunk-HKBEURCV.js';
|
|
12
12
|
import '../../chunk-BRXELOHC.js';
|
|
13
13
|
import '../../chunk-22UVE3RA.js';
|
|
14
14
|
import '../../chunk-3ZMAGTWF.js';
|
|
15
15
|
import '../../chunk-VMJVQAFZ.js';
|
|
16
|
-
import '../../chunk-
|
|
16
|
+
import '../../chunk-YRKQNPK2.js';
|
|
17
17
|
import '../../chunk-QIW6OCEI.js';
|
|
18
18
|
import '../../chunk-WLOQ4IBG.js';
|
|
19
19
|
import '../../chunk-TAIX4NO3.js';
|
|
20
20
|
import '../../chunk-TKAYX2SP.js';
|
|
21
21
|
import '../../chunk-U36X6NZM.js';
|
|
22
22
|
import '../../chunk-NYBEU5TE.js';
|
|
23
|
-
import '../../chunk-
|
|
23
|
+
import '../../chunk-LPM7O6XM.js';
|
|
24
24
|
import '../../chunk-SZHARWKU.js';
|
|
25
25
|
import '../../chunk-V3HUIZJX.js';
|
|
26
26
|
import '../../chunk-3KMDHCAR.js';
|
|
27
|
+
import '../../chunk-5RLYII6P.js';
|
|
27
28
|
import '../../chunk-T6INEVX6.js';
|
|
28
29
|
import '../../chunk-2IFYDILW.js';
|
|
29
30
|
import '../../chunk-Q7DJKLEN.js';
|
|
@@ -156,32 +156,11 @@
|
|
|
156
156
|
.mantine-Select-option:hover {
|
|
157
157
|
background-color: var(--color-surface-hover) !important;
|
|
158
158
|
}
|
|
159
|
-
[data-mantine-color-scheme] .mantine-Tabs-root {
|
|
160
|
-
--tabs-color: var(--color-primary);
|
|
159
|
+
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
161
160
|
--tab-border-color: var(--color-border);
|
|
162
|
-
--tab-hover-color: color-mix(in srgb, var(--color-surface-hover) 70%, transparent);
|
|
163
161
|
}
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
}
|
|
167
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab {
|
|
168
|
-
color: var(--color-text);
|
|
169
|
-
border-color: transparent;
|
|
170
|
-
background-color: transparent;
|
|
171
|
-
transition:
|
|
172
|
-
background-color var(--duration-fast) var(--easing),
|
|
173
|
-
border-color var(--duration-fast) var(--easing),
|
|
174
|
-
color var(--duration-fast) var(--easing);
|
|
175
|
-
}
|
|
176
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab:not([data-active]):hover {
|
|
177
|
-
background-color: var(--tab-hover-color);
|
|
178
|
-
border-color: var(--color-border);
|
|
179
|
-
}
|
|
180
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
181
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
182
|
-
color: var(--color-text);
|
|
183
|
-
background-color: transparent;
|
|
184
|
-
border-color: var(--color-primary);
|
|
162
|
+
.mantine-Tabs-tab:hover {
|
|
163
|
+
background-color: var(--color-surface-hover);
|
|
185
164
|
}
|
|
186
165
|
.mantine-Pagination-control:not([data-active]) {
|
|
187
166
|
background: var(--color-surface);
|