@elevasis/ui 2.25.1 → 2.25.3
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 +9 -4
- package/dist/{chunk-AZQY7AJR.js → chunk-UV5BY6DD.js} +95 -16
- package/dist/components/index.css +9 -4
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +1 -1
- package/dist/components/navigation/index.css +9 -4
- package/dist/execution/index.d.ts +1 -0
- package/dist/features/auth/index.css +9 -4
- package/dist/features/crm/index.css +9 -4
- package/dist/features/dashboard/index.css +9 -4
- package/dist/features/dashboard/index.d.ts +1 -0
- package/dist/features/delivery/index.css +9 -4
- package/dist/features/lead-gen/index.css +9 -4
- package/dist/features/monitoring/index.css +9 -4
- package/dist/features/monitoring/requests/index.css +9 -4
- package/dist/features/operations/index.css +9 -4
- package/dist/features/operations/index.d.ts +1 -0
- package/dist/features/operations/index.js +1 -1
- package/dist/features/settings/index.css +9 -4
- package/dist/hooks/delivery/index.css +9 -4
- package/dist/hooks/index.css +9 -4
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/operations/command-view/utils/transformCommandViewData.d.ts +1 -0
- package/dist/hooks/published.css +9 -4
- package/dist/hooks/published.d.ts +1 -0
- package/dist/index.css +9 -4
- package/dist/index.d.ts +19 -0
- package/dist/organization/index.css +9 -4
- package/dist/provider/index.css +9 -4
- package/dist/provider/index.d.ts +18 -0
- package/dist/provider/published.css +9 -4
- package/dist/provider/published.d.ts +18 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/utils/index.d.ts +1 -0
- package/package.json +33 -33
package/dist/app/index.css
CHANGED
|
@@ -32,8 +32,12 @@
|
|
|
32
32
|
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
33
33
|
--tab-border-color: var(--color-border);
|
|
34
34
|
}
|
|
35
|
-
.mantine-Tabs-tab:hover {
|
|
36
|
-
background-color: var(--color-surface-hover);
|
|
35
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab:not([data-active]):hover {
|
|
36
|
+
background-color: color-mix(in srgb, var(--color-surface-hover) 70%, transparent);
|
|
37
|
+
}
|
|
38
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
39
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
40
|
+
background-color: transparent;
|
|
37
41
|
}
|
|
38
42
|
.mantine-Pagination-control:not([data-active]) {
|
|
39
43
|
background: var(--color-surface);
|
|
@@ -52,11 +56,12 @@
|
|
|
52
56
|
::-webkit-scrollbar-thumb:hover {
|
|
53
57
|
background: var(--color-text-subtle);
|
|
54
58
|
}
|
|
55
|
-
.mantine-Checkbox-input {
|
|
59
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:not(:disabled):not(:checked):not([data-indeterminate]) {
|
|
56
60
|
background-color: var(--color-surface);
|
|
57
61
|
border-color: var(--color-border);
|
|
58
62
|
}
|
|
59
|
-
.mantine-Checkbox-input:checked
|
|
63
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:checked,
|
|
64
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input[data-indeterminate] {
|
|
60
65
|
background-color: var(--color-primary);
|
|
61
66
|
border-color: var(--color-primary);
|
|
62
67
|
}
|
|
@@ -43,7 +43,7 @@ import { create } from 'zustand';
|
|
|
43
43
|
import { formatDistanceToNow } from 'date-fns';
|
|
44
44
|
|
|
45
45
|
var NodeIdPathSchema = z.string().trim().min(1).max(100).regex(/^([a-z0-9-]+)(\.[a-z0-9-]+)*$/, "Node IDs must be lowercase dotted paths");
|
|
46
|
-
z.string().trim().min(1).max(200).regex(/^[a-z]+:([a-z0-9-]+)(\.[a-z0-9-]+)*$/, "Node references must use kind:dotted-path");
|
|
46
|
+
var NodeIdStringSchema = z.string().trim().min(1).max(200).regex(/^[a-z]+:([a-z0-9-]+)(\.[a-z0-9-]+)*$/, "Node references must use kind:dotted-path");
|
|
47
47
|
var UiPositionSchema = z.enum(["sidebar-primary", "sidebar-bottom"]);
|
|
48
48
|
var FeatureSchema = z.object({
|
|
49
49
|
id: NodeIdPathSchema,
|
|
@@ -379,6 +379,30 @@ var StatusEntrySchema = z.object({
|
|
|
379
379
|
var StatusesDomainSchema = z.object({
|
|
380
380
|
entries: z.array(StatusEntrySchema).default([])
|
|
381
381
|
});
|
|
382
|
+
var KnowledgeLinkSchema = z.object({
|
|
383
|
+
nodeId: NodeIdStringSchema
|
|
384
|
+
});
|
|
385
|
+
var OrgKnowledgeKindSchema = z.enum(["playbook", "strategy", "reference"]);
|
|
386
|
+
var OrgKnowledgeNodeSchema = z.object({
|
|
387
|
+
id: ModelIdSchema,
|
|
388
|
+
kind: OrgKnowledgeKindSchema,
|
|
389
|
+
title: z.string().trim().min(1).max(200),
|
|
390
|
+
summary: z.string().trim().min(1).max(1e3),
|
|
391
|
+
/** Raw MDX string. Phase 2 will introduce a structured block format. */
|
|
392
|
+
body: z.string().trim().min(1),
|
|
393
|
+
/**
|
|
394
|
+
* Graph links to other OM nodes this knowledge node governs.
|
|
395
|
+
* Each link emits a `governs` edge: knowledge-node -> target node.
|
|
396
|
+
*/
|
|
397
|
+
links: z.array(KnowledgeLinkSchema).default([]),
|
|
398
|
+
/** Identifiers of the roles or members who own this knowledge node. */
|
|
399
|
+
ownerIds: z.array(ModelIdSchema).default([]),
|
|
400
|
+
/** ISO date string (YYYY-MM-DD or full ISO 8601) of last meaningful update. */
|
|
401
|
+
updatedAt: z.string().trim().min(1).max(50)
|
|
402
|
+
});
|
|
403
|
+
var KnowledgeDomainSchema = z.object({
|
|
404
|
+
nodes: z.array(OrgKnowledgeNodeSchema).default([])
|
|
405
|
+
});
|
|
382
406
|
|
|
383
407
|
// ../core/src/organization-model/schema.ts
|
|
384
408
|
var OrganizationModelSchemaBase = z.object({
|
|
@@ -395,7 +419,8 @@ var OrganizationModelSchemaBase = z.object({
|
|
|
395
419
|
roles: RolesDomainSchema.default(DEFAULT_ORGANIZATION_MODEL_ROLES),
|
|
396
420
|
goals: GoalsDomainSchema.default(DEFAULT_ORGANIZATION_MODEL_GOALS),
|
|
397
421
|
statuses: StatusesDomainSchema.default({ entries: [] }),
|
|
398
|
-
operations: OperationsDomainSchema.default({ entries: [] })
|
|
422
|
+
operations: OperationsDomainSchema.default({ entries: [] }),
|
|
423
|
+
knowledge: KnowledgeDomainSchema.default({ nodes: [] })
|
|
399
424
|
});
|
|
400
425
|
function addIssue(ctx, path, message) {
|
|
401
426
|
ctx.addIssue({
|
|
@@ -430,7 +455,11 @@ var OrganizationModelSchema = OrganizationModelSchemaBase.superRefine((model, ct
|
|
|
430
455
|
if (segments.length > 1) {
|
|
431
456
|
const parentId = segments.slice(0, -1).join(".");
|
|
432
457
|
if (!featuresById.has(parentId)) {
|
|
433
|
-
addIssue(
|
|
458
|
+
addIssue(
|
|
459
|
+
ctx,
|
|
460
|
+
["features", featureIndex, "id"],
|
|
461
|
+
`Feature "${feature.id}" references unknown parent "${parentId}"`
|
|
462
|
+
);
|
|
434
463
|
}
|
|
435
464
|
}
|
|
436
465
|
const hasChildren = model.features.some(
|
|
@@ -496,7 +525,8 @@ var OrganizationGraphNodeKindSchema = z.enum([
|
|
|
496
525
|
"surface",
|
|
497
526
|
"entity",
|
|
498
527
|
"capability",
|
|
499
|
-
"resource"
|
|
528
|
+
"resource",
|
|
529
|
+
"knowledge"
|
|
500
530
|
]);
|
|
501
531
|
var OrganizationGraphEdgeKindSchema = z.enum([
|
|
502
532
|
"contains",
|
|
@@ -504,7 +534,8 @@ var OrganizationGraphEdgeKindSchema = z.enum([
|
|
|
504
534
|
"exposes",
|
|
505
535
|
"maps_to",
|
|
506
536
|
"operates-on",
|
|
507
|
-
"uses"
|
|
537
|
+
"uses",
|
|
538
|
+
"governs"
|
|
508
539
|
]);
|
|
509
540
|
var OrganizationGraphNodeSchema = z.object({
|
|
510
541
|
id: z.string().trim().min(1).max(200),
|
|
@@ -648,6 +679,30 @@ function buildOrganizationGraph(input) {
|
|
|
648
679
|
});
|
|
649
680
|
}
|
|
650
681
|
}
|
|
682
|
+
for (const node of [...organizationModel.knowledge?.nodes ?? []].sort((a, b) => a.id.localeCompare(b.id))) {
|
|
683
|
+
const id = nodeId("knowledge", node.id);
|
|
684
|
+
pushUniqueNode(nodes, nodeIds, {
|
|
685
|
+
id,
|
|
686
|
+
kind: "knowledge",
|
|
687
|
+
label: node.title,
|
|
688
|
+
sourceId: node.id,
|
|
689
|
+
description: node.summary
|
|
690
|
+
});
|
|
691
|
+
pushUniqueEdge(edges, edgeIds, {
|
|
692
|
+
id: edgeId("contains", organizationNode.id, id),
|
|
693
|
+
kind: "contains",
|
|
694
|
+
sourceId: organizationNode.id,
|
|
695
|
+
targetId: id
|
|
696
|
+
});
|
|
697
|
+
for (const link of node.links) {
|
|
698
|
+
pushUniqueEdge(edges, edgeIds, {
|
|
699
|
+
id: edgeId("governs", id, link.nodeId),
|
|
700
|
+
kind: "governs",
|
|
701
|
+
sourceId: id,
|
|
702
|
+
targetId: link.nodeId
|
|
703
|
+
});
|
|
704
|
+
}
|
|
705
|
+
}
|
|
651
706
|
if (commandViewData) {
|
|
652
707
|
const commandViewResources = collectCommandViewResources(commandViewData).sort(
|
|
653
708
|
(a, b) => a.resourceId.localeCompare(b.resourceId)
|
|
@@ -4218,7 +4273,8 @@ var NODE_KIND_LABELS = {
|
|
|
4218
4273
|
surface: "Surface",
|
|
4219
4274
|
entity: "Entity",
|
|
4220
4275
|
capability: "Capability",
|
|
4221
|
-
resource: "Resource"
|
|
4276
|
+
resource: "Resource",
|
|
4277
|
+
knowledge: "Knowledge"
|
|
4222
4278
|
};
|
|
4223
4279
|
var NODE_KIND_MEANINGS = {
|
|
4224
4280
|
organization: "The root of the shared organization model and the parent for every derived node.",
|
|
@@ -4226,7 +4282,8 @@ var NODE_KIND_MEANINGS = {
|
|
|
4226
4282
|
surface: "A user-facing or operational surface that exposes feature behavior in the model.",
|
|
4227
4283
|
entity: "A shared business concept that can be referenced by surfaces, resources, or capabilities.",
|
|
4228
4284
|
capability: "A reusable capability that can be attached to a feature or surface.",
|
|
4229
|
-
resource: "A concrete command-view or mapped resource that bridges execution topology into the model."
|
|
4285
|
+
resource: "A concrete command-view or mapped resource that bridges execution topology into the model.",
|
|
4286
|
+
knowledge: "An operational knowledge node that documents a process, strategy, or runbook in the org model."
|
|
4230
4287
|
};
|
|
4231
4288
|
var EDGE_KIND_LABELS = {
|
|
4232
4289
|
contains: "Containment",
|
|
@@ -4234,7 +4291,8 @@ var EDGE_KIND_LABELS = {
|
|
|
4234
4291
|
exposes: "Exposure",
|
|
4235
4292
|
maps_to: "Mapping",
|
|
4236
4293
|
"operates-on": "Operates on",
|
|
4237
|
-
uses: "Uses"
|
|
4294
|
+
uses: "Uses",
|
|
4295
|
+
governs: "Governs"
|
|
4238
4296
|
};
|
|
4239
4297
|
var EDGE_KIND_MEANINGS = {
|
|
4240
4298
|
contains: "A hierarchy or ownership link inside the shared graph.",
|
|
@@ -4242,7 +4300,8 @@ var EDGE_KIND_MEANINGS = {
|
|
|
4242
4300
|
exposes: "A feature enables a surface to be visible or reachable.",
|
|
4243
4301
|
maps_to: "A concrete resource is aligned to a domain, entity, capability, or surface.",
|
|
4244
4302
|
"operates-on": "A concrete resource operates on an Organization Model node.",
|
|
4245
|
-
uses: "A concrete resource depends on another graph node or integration."
|
|
4303
|
+
uses: "A concrete resource depends on another graph node or integration.",
|
|
4304
|
+
governs: "A knowledge node governs or provides authoritative guidance for another node."
|
|
4246
4305
|
};
|
|
4247
4306
|
var RELATIONSHIP_MEANINGS = {
|
|
4248
4307
|
triggers: "Executable handoff: the source resource starts the target resource.",
|
|
@@ -4865,7 +4924,8 @@ var ORGANIZATION_GRAPH_NODE_KIND_ORDER = [
|
|
|
4865
4924
|
"surface",
|
|
4866
4925
|
"entity",
|
|
4867
4926
|
"capability",
|
|
4868
|
-
"resource"
|
|
4927
|
+
"resource",
|
|
4928
|
+
"knowledge"
|
|
4869
4929
|
];
|
|
4870
4930
|
var ORGANIZATION_GRAPH_NODE_KIND_LABELS = {
|
|
4871
4931
|
organization: "Organization",
|
|
@@ -4873,7 +4933,8 @@ var ORGANIZATION_GRAPH_NODE_KIND_LABELS = {
|
|
|
4873
4933
|
surface: "Surface",
|
|
4874
4934
|
entity: "Entity",
|
|
4875
4935
|
capability: "Capability",
|
|
4876
|
-
resource: "Resource"
|
|
4936
|
+
resource: "Resource",
|
|
4937
|
+
knowledge: "Knowledge"
|
|
4877
4938
|
};
|
|
4878
4939
|
var DEFAULT_ORGANIZATION_GRAPH_FILTERS = {
|
|
4879
4940
|
search: "",
|
|
@@ -5768,7 +5829,8 @@ var NODE_KIND_ORDER = {
|
|
|
5768
5829
|
surface: 2,
|
|
5769
5830
|
capability: 3,
|
|
5770
5831
|
entity: 4,
|
|
5771
|
-
resource: 5
|
|
5832
|
+
resource: 5,
|
|
5833
|
+
knowledge: 6
|
|
5772
5834
|
};
|
|
5773
5835
|
var NODE_KIND_LABEL = {
|
|
5774
5836
|
organization: "Organization",
|
|
@@ -5776,7 +5838,8 @@ var NODE_KIND_LABEL = {
|
|
|
5776
5838
|
surface: "Surface",
|
|
5777
5839
|
capability: "Capability",
|
|
5778
5840
|
entity: "Entity",
|
|
5779
|
-
resource: "Resource"
|
|
5841
|
+
resource: "Resource",
|
|
5842
|
+
knowledge: "Knowledge"
|
|
5780
5843
|
};
|
|
5781
5844
|
function getNodeLabel(node) {
|
|
5782
5845
|
return node.label || node.sourceId || node.id;
|
|
@@ -7116,7 +7179,8 @@ function getNodeThemeByKind(tokens) {
|
|
|
7116
7179
|
surface: mixColors(tokens.primary, tokens.success, 0.48),
|
|
7117
7180
|
entity: mixColors(tokens.primary, tokens.error, 0.4),
|
|
7118
7181
|
capability: mixColors(tokens.primary, tokens.success, 0.72),
|
|
7119
|
-
resource: mixColors(tokens.primary, tokens.warning, 0.58)
|
|
7182
|
+
resource: mixColors(tokens.primary, tokens.warning, 0.58),
|
|
7183
|
+
knowledge: mixColors(tokens.primary, tokens.text, 0.6)
|
|
7120
7184
|
};
|
|
7121
7185
|
return Object.fromEntries(
|
|
7122
7186
|
Object.entries(accentByKind).map(([kind, accent]) => {
|
|
@@ -7569,7 +7633,13 @@ function OrganizationGraphCanvas({
|
|
|
7569
7633
|
const lastSizeRef = useRef(null);
|
|
7570
7634
|
const layoutSelectedElement = visualizationMode === "focus" ? selectedElement : null;
|
|
7571
7635
|
const elements = useMemo(
|
|
7572
|
-
() => toCytoscapeElementsWithHealth(
|
|
7636
|
+
() => toCytoscapeElementsWithHealth(
|
|
7637
|
+
graph,
|
|
7638
|
+
themeTokens,
|
|
7639
|
+
commandViewHealthByNodeId,
|
|
7640
|
+
visualizationMode,
|
|
7641
|
+
layoutSelectedElement
|
|
7642
|
+
),
|
|
7573
7643
|
[commandViewHealthByNodeId, graph, layoutSelectedElement, themeTokens, visualizationMode]
|
|
7574
7644
|
);
|
|
7575
7645
|
const cytoscapeStyle = useMemo(() => createCytoscapeStyle(themeTokens), [themeTokens]);
|
|
@@ -7875,7 +7945,16 @@ function OrganizationGraphPage({ lens = "default", timeRange = "30d" }) {
|
|
|
7875
7945
|
revealedIds: commandViewRevealIds,
|
|
7876
7946
|
mode
|
|
7877
7947
|
});
|
|
7878
|
-
}, [
|
|
7948
|
+
}, [
|
|
7949
|
+
commandViewData,
|
|
7950
|
+
commandViewRevealIds,
|
|
7951
|
+
diagnosticCategories,
|
|
7952
|
+
diagnosticsHidden,
|
|
7953
|
+
graph,
|
|
7954
|
+
lens,
|
|
7955
|
+
mode,
|
|
7956
|
+
resourcesHidden
|
|
7957
|
+
]);
|
|
7879
7958
|
const visibleGraph = useMemo(() => {
|
|
7880
7959
|
if (!graph || visibilityProjection.hiddenIds.size === 0) {
|
|
7881
7960
|
return graph;
|
|
@@ -543,8 +543,12 @@
|
|
|
543
543
|
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
544
544
|
--tab-border-color: var(--color-border);
|
|
545
545
|
}
|
|
546
|
-
.mantine-Tabs-tab:hover {
|
|
547
|
-
background-color: var(--color-surface-hover);
|
|
546
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab:not([data-active]):hover {
|
|
547
|
+
background-color: color-mix(in srgb, var(--color-surface-hover) 70%, transparent);
|
|
548
|
+
}
|
|
549
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
550
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
551
|
+
background-color: transparent;
|
|
548
552
|
}
|
|
549
553
|
.mantine-Pagination-control:not([data-active]) {
|
|
550
554
|
background: var(--color-surface);
|
|
@@ -563,11 +567,12 @@
|
|
|
563
567
|
::-webkit-scrollbar-thumb:hover {
|
|
564
568
|
background: var(--color-text-subtle);
|
|
565
569
|
}
|
|
566
|
-
.mantine-Checkbox-input {
|
|
570
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:not(:disabled):not(:checked):not([data-indeterminate]) {
|
|
567
571
|
background-color: var(--color-surface);
|
|
568
572
|
border-color: var(--color-border);
|
|
569
573
|
}
|
|
570
|
-
.mantine-Checkbox-input:checked
|
|
574
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:checked,
|
|
575
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input[data-indeterminate] {
|
|
571
576
|
background-color: var(--color-primary);
|
|
572
577
|
border-color: var(--color-primary);
|
|
573
578
|
}
|
package/dist/components/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import { useBreadcrumbs } from '../chunk-26HQMR7S.js';
|
|
|
2
2
|
import '../chunk-Q5BEODAT.js';
|
|
3
3
|
export { AllTasksPage, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../chunk-IX7LWINC.js';
|
|
4
4
|
export { LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, getEnrichmentColor, getStatusColor, leadGenManifest, useDeleteLists } from '../chunk-QB2CC4VH.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-
|
|
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-UV5BY6DD.js';
|
|
6
6
|
import '../chunk-ROSMICXG.js';
|
|
7
7
|
import '../chunk-N55DVMAG.js';
|
|
8
8
|
import '../chunk-ZTWA5H77.js';
|
|
@@ -159,8 +159,12 @@
|
|
|
159
159
|
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
160
160
|
--tab-border-color: var(--color-border);
|
|
161
161
|
}
|
|
162
|
-
.mantine-Tabs-tab:hover {
|
|
163
|
-
background-color: var(--color-surface-hover);
|
|
162
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab:not([data-active]):hover {
|
|
163
|
+
background-color: color-mix(in srgb, var(--color-surface-hover) 70%, transparent);
|
|
164
|
+
}
|
|
165
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
166
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
167
|
+
background-color: transparent;
|
|
164
168
|
}
|
|
165
169
|
.mantine-Pagination-control:not([data-active]) {
|
|
166
170
|
background: var(--color-surface);
|
|
@@ -179,11 +183,12 @@
|
|
|
179
183
|
::-webkit-scrollbar-thumb:hover {
|
|
180
184
|
background: var(--color-text-subtle);
|
|
181
185
|
}
|
|
182
|
-
.mantine-Checkbox-input {
|
|
186
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:not(:disabled):not(:checked):not([data-indeterminate]) {
|
|
183
187
|
background-color: var(--color-surface);
|
|
184
188
|
border-color: var(--color-border);
|
|
185
189
|
}
|
|
186
|
-
.mantine-Checkbox-input:checked
|
|
190
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:checked,
|
|
191
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input[data-indeterminate] {
|
|
187
192
|
background-color: var(--color-primary);
|
|
188
193
|
border-color: var(--color-primary);
|
|
189
194
|
}
|
|
@@ -159,8 +159,12 @@
|
|
|
159
159
|
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
160
160
|
--tab-border-color: var(--color-border);
|
|
161
161
|
}
|
|
162
|
-
.mantine-Tabs-tab:hover {
|
|
163
|
-
background-color: var(--color-surface-hover);
|
|
162
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab:not([data-active]):hover {
|
|
163
|
+
background-color: color-mix(in srgb, var(--color-surface-hover) 70%, transparent);
|
|
164
|
+
}
|
|
165
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
166
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
167
|
+
background-color: transparent;
|
|
164
168
|
}
|
|
165
169
|
.mantine-Pagination-control:not([data-active]) {
|
|
166
170
|
background: var(--color-surface);
|
|
@@ -179,11 +183,12 @@
|
|
|
179
183
|
::-webkit-scrollbar-thumb:hover {
|
|
180
184
|
background: var(--color-text-subtle);
|
|
181
185
|
}
|
|
182
|
-
.mantine-Checkbox-input {
|
|
186
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:not(:disabled):not(:checked):not([data-indeterminate]) {
|
|
183
187
|
background-color: var(--color-surface);
|
|
184
188
|
border-color: var(--color-border);
|
|
185
189
|
}
|
|
186
|
-
.mantine-Checkbox-input:checked
|
|
190
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:checked,
|
|
191
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input[data-indeterminate] {
|
|
187
192
|
background-color: var(--color-primary);
|
|
188
193
|
border-color: var(--color-primary);
|
|
189
194
|
}
|
|
@@ -159,8 +159,12 @@
|
|
|
159
159
|
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
160
160
|
--tab-border-color: var(--color-border);
|
|
161
161
|
}
|
|
162
|
-
.mantine-Tabs-tab:hover {
|
|
163
|
-
background-color: var(--color-surface-hover);
|
|
162
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab:not([data-active]):hover {
|
|
163
|
+
background-color: color-mix(in srgb, var(--color-surface-hover) 70%, transparent);
|
|
164
|
+
}
|
|
165
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
166
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
167
|
+
background-color: transparent;
|
|
164
168
|
}
|
|
165
169
|
.mantine-Pagination-control:not([data-active]) {
|
|
166
170
|
background: var(--color-surface);
|
|
@@ -179,11 +183,12 @@
|
|
|
179
183
|
::-webkit-scrollbar-thumb:hover {
|
|
180
184
|
background: var(--color-text-subtle);
|
|
181
185
|
}
|
|
182
|
-
.mantine-Checkbox-input {
|
|
186
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:not(:disabled):not(:checked):not([data-indeterminate]) {
|
|
183
187
|
background-color: var(--color-surface);
|
|
184
188
|
border-color: var(--color-border);
|
|
185
189
|
}
|
|
186
|
-
.mantine-Checkbox-input:checked
|
|
190
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:checked,
|
|
191
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input[data-indeterminate] {
|
|
187
192
|
background-color: var(--color-primary);
|
|
188
193
|
border-color: var(--color-primary);
|
|
189
194
|
}
|
|
@@ -159,8 +159,12 @@
|
|
|
159
159
|
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
160
160
|
--tab-border-color: var(--color-border);
|
|
161
161
|
}
|
|
162
|
-
.mantine-Tabs-tab:hover {
|
|
163
|
-
background-color: var(--color-surface-hover);
|
|
162
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab:not([data-active]):hover {
|
|
163
|
+
background-color: color-mix(in srgb, var(--color-surface-hover) 70%, transparent);
|
|
164
|
+
}
|
|
165
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
166
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
167
|
+
background-color: transparent;
|
|
164
168
|
}
|
|
165
169
|
.mantine-Pagination-control:not([data-active]) {
|
|
166
170
|
background: var(--color-surface);
|
|
@@ -179,11 +183,12 @@
|
|
|
179
183
|
::-webkit-scrollbar-thumb:hover {
|
|
180
184
|
background: var(--color-text-subtle);
|
|
181
185
|
}
|
|
182
|
-
.mantine-Checkbox-input {
|
|
186
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:not(:disabled):not(:checked):not([data-indeterminate]) {
|
|
183
187
|
background-color: var(--color-surface);
|
|
184
188
|
border-color: var(--color-border);
|
|
185
189
|
}
|
|
186
|
-
.mantine-Checkbox-input:checked
|
|
190
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:checked,
|
|
191
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input[data-indeterminate] {
|
|
187
192
|
background-color: var(--color-primary);
|
|
188
193
|
border-color: var(--color-primary);
|
|
189
194
|
}
|
|
@@ -543,8 +543,12 @@
|
|
|
543
543
|
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
544
544
|
--tab-border-color: var(--color-border);
|
|
545
545
|
}
|
|
546
|
-
.mantine-Tabs-tab:hover {
|
|
547
|
-
background-color: var(--color-surface-hover);
|
|
546
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab:not([data-active]):hover {
|
|
547
|
+
background-color: color-mix(in srgb, var(--color-surface-hover) 70%, transparent);
|
|
548
|
+
}
|
|
549
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
550
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
551
|
+
background-color: transparent;
|
|
548
552
|
}
|
|
549
553
|
.mantine-Pagination-control:not([data-active]) {
|
|
550
554
|
background: var(--color-surface);
|
|
@@ -563,11 +567,12 @@
|
|
|
563
567
|
::-webkit-scrollbar-thumb:hover {
|
|
564
568
|
background: var(--color-text-subtle);
|
|
565
569
|
}
|
|
566
|
-
.mantine-Checkbox-input {
|
|
570
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:not(:disabled):not(:checked):not([data-indeterminate]) {
|
|
567
571
|
background-color: var(--color-surface);
|
|
568
572
|
border-color: var(--color-border);
|
|
569
573
|
}
|
|
570
|
-
.mantine-Checkbox-input:checked
|
|
574
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:checked,
|
|
575
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input[data-indeterminate] {
|
|
571
576
|
background-color: var(--color-primary);
|
|
572
577
|
border-color: var(--color-primary);
|
|
573
578
|
}
|
|
@@ -159,8 +159,12 @@
|
|
|
159
159
|
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
160
160
|
--tab-border-color: var(--color-border);
|
|
161
161
|
}
|
|
162
|
-
.mantine-Tabs-tab:hover {
|
|
163
|
-
background-color: var(--color-surface-hover);
|
|
162
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab:not([data-active]):hover {
|
|
163
|
+
background-color: color-mix(in srgb, var(--color-surface-hover) 70%, transparent);
|
|
164
|
+
}
|
|
165
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
166
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
167
|
+
background-color: transparent;
|
|
164
168
|
}
|
|
165
169
|
.mantine-Pagination-control:not([data-active]) {
|
|
166
170
|
background: var(--color-surface);
|
|
@@ -179,11 +183,12 @@
|
|
|
179
183
|
::-webkit-scrollbar-thumb:hover {
|
|
180
184
|
background: var(--color-text-subtle);
|
|
181
185
|
}
|
|
182
|
-
.mantine-Checkbox-input {
|
|
186
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:not(:disabled):not(:checked):not([data-indeterminate]) {
|
|
183
187
|
background-color: var(--color-surface);
|
|
184
188
|
border-color: var(--color-border);
|
|
185
189
|
}
|
|
186
|
-
.mantine-Checkbox-input:checked
|
|
190
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:checked,
|
|
191
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input[data-indeterminate] {
|
|
187
192
|
background-color: var(--color-primary);
|
|
188
193
|
border-color: var(--color-primary);
|
|
189
194
|
}
|
|
@@ -543,8 +543,12 @@
|
|
|
543
543
|
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
544
544
|
--tab-border-color: var(--color-border);
|
|
545
545
|
}
|
|
546
|
-
.mantine-Tabs-tab:hover {
|
|
547
|
-
background-color: var(--color-surface-hover);
|
|
546
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab:not([data-active]):hover {
|
|
547
|
+
background-color: color-mix(in srgb, var(--color-surface-hover) 70%, transparent);
|
|
548
|
+
}
|
|
549
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
550
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
551
|
+
background-color: transparent;
|
|
548
552
|
}
|
|
549
553
|
.mantine-Pagination-control:not([data-active]) {
|
|
550
554
|
background: var(--color-surface);
|
|
@@ -563,11 +567,12 @@
|
|
|
563
567
|
::-webkit-scrollbar-thumb:hover {
|
|
564
568
|
background: var(--color-text-subtle);
|
|
565
569
|
}
|
|
566
|
-
.mantine-Checkbox-input {
|
|
570
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:not(:disabled):not(:checked):not([data-indeterminate]) {
|
|
567
571
|
background-color: var(--color-surface);
|
|
568
572
|
border-color: var(--color-border);
|
|
569
573
|
}
|
|
570
|
-
.mantine-Checkbox-input:checked
|
|
574
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:checked,
|
|
575
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input[data-indeterminate] {
|
|
571
576
|
background-color: var(--color-primary);
|
|
572
577
|
border-color: var(--color-primary);
|
|
573
578
|
}
|
|
@@ -159,8 +159,12 @@
|
|
|
159
159
|
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
160
160
|
--tab-border-color: var(--color-border);
|
|
161
161
|
}
|
|
162
|
-
.mantine-Tabs-tab:hover {
|
|
163
|
-
background-color: var(--color-surface-hover);
|
|
162
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab:not([data-active]):hover {
|
|
163
|
+
background-color: color-mix(in srgb, var(--color-surface-hover) 70%, transparent);
|
|
164
|
+
}
|
|
165
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
166
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
167
|
+
background-color: transparent;
|
|
164
168
|
}
|
|
165
169
|
.mantine-Pagination-control:not([data-active]) {
|
|
166
170
|
background: var(--color-surface);
|
|
@@ -179,11 +183,12 @@
|
|
|
179
183
|
::-webkit-scrollbar-thumb:hover {
|
|
180
184
|
background: var(--color-text-subtle);
|
|
181
185
|
}
|
|
182
|
-
.mantine-Checkbox-input {
|
|
186
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:not(:disabled):not(:checked):not([data-indeterminate]) {
|
|
183
187
|
background-color: var(--color-surface);
|
|
184
188
|
border-color: var(--color-border);
|
|
185
189
|
}
|
|
186
|
-
.mantine-Checkbox-input:checked
|
|
190
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:checked,
|
|
191
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input[data-indeterminate] {
|
|
187
192
|
background-color: var(--color-primary);
|
|
188
193
|
border-color: var(--color-primary);
|
|
189
194
|
}
|
|
@@ -159,8 +159,12 @@
|
|
|
159
159
|
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
160
160
|
--tab-border-color: var(--color-border);
|
|
161
161
|
}
|
|
162
|
-
.mantine-Tabs-tab:hover {
|
|
163
|
-
background-color: var(--color-surface-hover);
|
|
162
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab:not([data-active]):hover {
|
|
163
|
+
background-color: color-mix(in srgb, var(--color-surface-hover) 70%, transparent);
|
|
164
|
+
}
|
|
165
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
166
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
167
|
+
background-color: transparent;
|
|
164
168
|
}
|
|
165
169
|
.mantine-Pagination-control:not([data-active]) {
|
|
166
170
|
background: var(--color-surface);
|
|
@@ -179,11 +183,12 @@
|
|
|
179
183
|
::-webkit-scrollbar-thumb:hover {
|
|
180
184
|
background: var(--color-text-subtle);
|
|
181
185
|
}
|
|
182
|
-
.mantine-Checkbox-input {
|
|
186
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:not(:disabled):not(:checked):not([data-indeterminate]) {
|
|
183
187
|
background-color: var(--color-surface);
|
|
184
188
|
border-color: var(--color-border);
|
|
185
189
|
}
|
|
186
|
-
.mantine-Checkbox-input:checked
|
|
190
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:checked,
|
|
191
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input[data-indeterminate] {
|
|
187
192
|
background-color: var(--color-primary);
|
|
188
193
|
border-color: var(--color-primary);
|
|
189
194
|
}
|
|
@@ -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-
|
|
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-UV5BY6DD.js';
|
|
2
2
|
import '../../chunk-ROSMICXG.js';
|
|
3
3
|
import '../../chunk-N55DVMAG.js';
|
|
4
4
|
import '../../chunk-ZTWA5H77.js';
|
|
@@ -159,8 +159,12 @@
|
|
|
159
159
|
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
160
160
|
--tab-border-color: var(--color-border);
|
|
161
161
|
}
|
|
162
|
-
.mantine-Tabs-tab:hover {
|
|
163
|
-
background-color: var(--color-surface-hover);
|
|
162
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab:not([data-active]):hover {
|
|
163
|
+
background-color: color-mix(in srgb, var(--color-surface-hover) 70%, transparent);
|
|
164
|
+
}
|
|
165
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
166
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
167
|
+
background-color: transparent;
|
|
164
168
|
}
|
|
165
169
|
.mantine-Pagination-control:not([data-active]) {
|
|
166
170
|
background: var(--color-surface);
|
|
@@ -179,11 +183,12 @@
|
|
|
179
183
|
::-webkit-scrollbar-thumb:hover {
|
|
180
184
|
background: var(--color-text-subtle);
|
|
181
185
|
}
|
|
182
|
-
.mantine-Checkbox-input {
|
|
186
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:not(:disabled):not(:checked):not([data-indeterminate]) {
|
|
183
187
|
background-color: var(--color-surface);
|
|
184
188
|
border-color: var(--color-border);
|
|
185
189
|
}
|
|
186
|
-
.mantine-Checkbox-input:checked
|
|
190
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:checked,
|
|
191
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input[data-indeterminate] {
|
|
187
192
|
background-color: var(--color-primary);
|
|
188
193
|
border-color: var(--color-primary);
|
|
189
194
|
}
|
|
@@ -159,8 +159,12 @@
|
|
|
159
159
|
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
160
160
|
--tab-border-color: var(--color-border);
|
|
161
161
|
}
|
|
162
|
-
.mantine-Tabs-tab:hover {
|
|
163
|
-
background-color: var(--color-surface-hover);
|
|
162
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab:not([data-active]):hover {
|
|
163
|
+
background-color: color-mix(in srgb, var(--color-surface-hover) 70%, transparent);
|
|
164
|
+
}
|
|
165
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
166
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
167
|
+
background-color: transparent;
|
|
164
168
|
}
|
|
165
169
|
.mantine-Pagination-control:not([data-active]) {
|
|
166
170
|
background: var(--color-surface);
|
|
@@ -179,11 +183,12 @@
|
|
|
179
183
|
::-webkit-scrollbar-thumb:hover {
|
|
180
184
|
background: var(--color-text-subtle);
|
|
181
185
|
}
|
|
182
|
-
.mantine-Checkbox-input {
|
|
186
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:not(:disabled):not(:checked):not([data-indeterminate]) {
|
|
183
187
|
background-color: var(--color-surface);
|
|
184
188
|
border-color: var(--color-border);
|
|
185
189
|
}
|
|
186
|
-
.mantine-Checkbox-input:checked
|
|
190
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:checked,
|
|
191
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input[data-indeterminate] {
|
|
187
192
|
background-color: var(--color-primary);
|
|
188
193
|
border-color: var(--color-primary);
|
|
189
194
|
}
|
package/dist/hooks/index.css
CHANGED
|
@@ -543,8 +543,12 @@
|
|
|
543
543
|
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
544
544
|
--tab-border-color: var(--color-border);
|
|
545
545
|
}
|
|
546
|
-
.mantine-Tabs-tab:hover {
|
|
547
|
-
background-color: var(--color-surface-hover);
|
|
546
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab:not([data-active]):hover {
|
|
547
|
+
background-color: color-mix(in srgb, var(--color-surface-hover) 70%, transparent);
|
|
548
|
+
}
|
|
549
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
550
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
551
|
+
background-color: transparent;
|
|
548
552
|
}
|
|
549
553
|
.mantine-Pagination-control:not([data-active]) {
|
|
550
554
|
background: var(--color-surface);
|
|
@@ -563,11 +567,12 @@
|
|
|
563
567
|
::-webkit-scrollbar-thumb:hover {
|
|
564
568
|
background: var(--color-text-subtle);
|
|
565
569
|
}
|
|
566
|
-
.mantine-Checkbox-input {
|
|
570
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:not(:disabled):not(:checked):not([data-indeterminate]) {
|
|
567
571
|
background-color: var(--color-surface);
|
|
568
572
|
border-color: var(--color-border);
|
|
569
573
|
}
|
|
570
|
-
.mantine-Checkbox-input:checked
|
|
574
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:checked,
|
|
575
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input[data-indeterminate] {
|
|
571
576
|
background-color: var(--color-primary);
|
|
572
577
|
border-color: var(--color-primary);
|
|
573
578
|
}
|
package/dist/hooks/index.d.ts
CHANGED
package/dist/hooks/published.css
CHANGED
|
@@ -543,8 +543,12 @@
|
|
|
543
543
|
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
544
544
|
--tab-border-color: var(--color-border);
|
|
545
545
|
}
|
|
546
|
-
.mantine-Tabs-tab:hover {
|
|
547
|
-
background-color: var(--color-surface-hover);
|
|
546
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab:not([data-active]):hover {
|
|
547
|
+
background-color: color-mix(in srgb, var(--color-surface-hover) 70%, transparent);
|
|
548
|
+
}
|
|
549
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
550
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
551
|
+
background-color: transparent;
|
|
548
552
|
}
|
|
549
553
|
.mantine-Pagination-control:not([data-active]) {
|
|
550
554
|
background: var(--color-surface);
|
|
@@ -563,11 +567,12 @@
|
|
|
563
567
|
::-webkit-scrollbar-thumb:hover {
|
|
564
568
|
background: var(--color-text-subtle);
|
|
565
569
|
}
|
|
566
|
-
.mantine-Checkbox-input {
|
|
570
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:not(:disabled):not(:checked):not([data-indeterminate]) {
|
|
567
571
|
background-color: var(--color-surface);
|
|
568
572
|
border-color: var(--color-border);
|
|
569
573
|
}
|
|
570
|
-
.mantine-Checkbox-input:checked
|
|
574
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:checked,
|
|
575
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input[data-indeterminate] {
|
|
571
576
|
background-color: var(--color-primary);
|
|
572
577
|
border-color: var(--color-primary);
|
|
573
578
|
}
|
package/dist/index.css
CHANGED
|
@@ -543,8 +543,12 @@
|
|
|
543
543
|
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
544
544
|
--tab-border-color: var(--color-border);
|
|
545
545
|
}
|
|
546
|
-
.mantine-Tabs-tab:hover {
|
|
547
|
-
background-color: var(--color-surface-hover);
|
|
546
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab:not([data-active]):hover {
|
|
547
|
+
background-color: color-mix(in srgb, var(--color-surface-hover) 70%, transparent);
|
|
548
|
+
}
|
|
549
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
550
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
551
|
+
background-color: transparent;
|
|
548
552
|
}
|
|
549
553
|
.mantine-Pagination-control:not([data-active]) {
|
|
550
554
|
background: var(--color-surface);
|
|
@@ -563,11 +567,12 @@
|
|
|
563
567
|
::-webkit-scrollbar-thumb:hover {
|
|
564
568
|
background: var(--color-text-subtle);
|
|
565
569
|
}
|
|
566
|
-
.mantine-Checkbox-input {
|
|
570
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:not(:disabled):not(:checked):not([data-indeterminate]) {
|
|
567
571
|
background-color: var(--color-surface);
|
|
568
572
|
border-color: var(--color-border);
|
|
569
573
|
}
|
|
570
|
-
.mantine-Checkbox-input:checked
|
|
574
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:checked,
|
|
575
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input[data-indeterminate] {
|
|
571
576
|
background-color: var(--color-primary);
|
|
572
577
|
border-color: var(--color-primary);
|
|
573
578
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -5494,6 +5494,24 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
5494
5494
|
supportedStatusSemanticClass: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5495
5495
|
}, z.core.$strip>>>;
|
|
5496
5496
|
}, z.core.$strip>>;
|
|
5497
|
+
knowledge: z.ZodDefault<z.ZodObject<{
|
|
5498
|
+
nodes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5499
|
+
id: z.ZodString;
|
|
5500
|
+
kind: z.ZodEnum<{
|
|
5501
|
+
playbook: "playbook";
|
|
5502
|
+
strategy: "strategy";
|
|
5503
|
+
reference: "reference";
|
|
5504
|
+
}>;
|
|
5505
|
+
title: z.ZodString;
|
|
5506
|
+
summary: z.ZodString;
|
|
5507
|
+
body: z.ZodString;
|
|
5508
|
+
links: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5509
|
+
nodeId: z.ZodString;
|
|
5510
|
+
}, z.core.$strip>>>;
|
|
5511
|
+
ownerIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5512
|
+
updatedAt: z.ZodString;
|
|
5513
|
+
}, z.core.$strip>>>;
|
|
5514
|
+
}, z.core.$strip>>;
|
|
5497
5515
|
}, z.core.$strip>;
|
|
5498
5516
|
|
|
5499
5517
|
type OrganizationModel = z.infer<typeof OrganizationModelSchema>;
|
|
@@ -5508,6 +5526,7 @@ declare const LinkSchema: z.ZodObject<{
|
|
|
5508
5526
|
maps_to: "maps_to";
|
|
5509
5527
|
"operates-on": "operates-on";
|
|
5510
5528
|
uses: "uses";
|
|
5529
|
+
governs: "governs";
|
|
5511
5530
|
}>;
|
|
5512
5531
|
}, z.core.$strip>;
|
|
5513
5532
|
type Link = z.infer<typeof LinkSchema>;
|
|
@@ -159,8 +159,12 @@
|
|
|
159
159
|
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
160
160
|
--tab-border-color: var(--color-border);
|
|
161
161
|
}
|
|
162
|
-
.mantine-Tabs-tab:hover {
|
|
163
|
-
background-color: var(--color-surface-hover);
|
|
162
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab:not([data-active]):hover {
|
|
163
|
+
background-color: color-mix(in srgb, var(--color-surface-hover) 70%, transparent);
|
|
164
|
+
}
|
|
165
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
166
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
167
|
+
background-color: transparent;
|
|
164
168
|
}
|
|
165
169
|
.mantine-Pagination-control:not([data-active]) {
|
|
166
170
|
background: var(--color-surface);
|
|
@@ -179,11 +183,12 @@
|
|
|
179
183
|
::-webkit-scrollbar-thumb:hover {
|
|
180
184
|
background: var(--color-text-subtle);
|
|
181
185
|
}
|
|
182
|
-
.mantine-Checkbox-input {
|
|
186
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:not(:disabled):not(:checked):not([data-indeterminate]) {
|
|
183
187
|
background-color: var(--color-surface);
|
|
184
188
|
border-color: var(--color-border);
|
|
185
189
|
}
|
|
186
|
-
.mantine-Checkbox-input:checked
|
|
190
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:checked,
|
|
191
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input[data-indeterminate] {
|
|
187
192
|
background-color: var(--color-primary);
|
|
188
193
|
border-color: var(--color-primary);
|
|
189
194
|
}
|
package/dist/provider/index.css
CHANGED
|
@@ -543,8 +543,12 @@
|
|
|
543
543
|
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
544
544
|
--tab-border-color: var(--color-border);
|
|
545
545
|
}
|
|
546
|
-
.mantine-Tabs-tab:hover {
|
|
547
|
-
background-color: var(--color-surface-hover);
|
|
546
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab:not([data-active]):hover {
|
|
547
|
+
background-color: color-mix(in srgb, var(--color-surface-hover) 70%, transparent);
|
|
548
|
+
}
|
|
549
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
550
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
551
|
+
background-color: transparent;
|
|
548
552
|
}
|
|
549
553
|
.mantine-Pagination-control:not([data-active]) {
|
|
550
554
|
background: var(--color-surface);
|
|
@@ -563,11 +567,12 @@
|
|
|
563
567
|
::-webkit-scrollbar-thumb:hover {
|
|
564
568
|
background: var(--color-text-subtle);
|
|
565
569
|
}
|
|
566
|
-
.mantine-Checkbox-input {
|
|
570
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:not(:disabled):not(:checked):not([data-indeterminate]) {
|
|
567
571
|
background-color: var(--color-surface);
|
|
568
572
|
border-color: var(--color-border);
|
|
569
573
|
}
|
|
570
|
-
.mantine-Checkbox-input:checked
|
|
574
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:checked,
|
|
575
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input[data-indeterminate] {
|
|
571
576
|
background-color: var(--color-primary);
|
|
572
577
|
border-color: var(--color-primary);
|
|
573
578
|
}
|
package/dist/provider/index.d.ts
CHANGED
|
@@ -3410,6 +3410,24 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
3410
3410
|
supportedStatusSemanticClass: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3411
3411
|
}, z.core.$strip>>>;
|
|
3412
3412
|
}, z.core.$strip>>;
|
|
3413
|
+
knowledge: z.ZodDefault<z.ZodObject<{
|
|
3414
|
+
nodes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3415
|
+
id: z.ZodString;
|
|
3416
|
+
kind: z.ZodEnum<{
|
|
3417
|
+
playbook: "playbook";
|
|
3418
|
+
strategy: "strategy";
|
|
3419
|
+
reference: "reference";
|
|
3420
|
+
}>;
|
|
3421
|
+
title: z.ZodString;
|
|
3422
|
+
summary: z.ZodString;
|
|
3423
|
+
body: z.ZodString;
|
|
3424
|
+
links: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3425
|
+
nodeId: z.ZodString;
|
|
3426
|
+
}, z.core.$strip>>>;
|
|
3427
|
+
ownerIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3428
|
+
updatedAt: z.ZodString;
|
|
3429
|
+
}, z.core.$strip>>>;
|
|
3430
|
+
}, z.core.$strip>>;
|
|
3413
3431
|
}, z.core.$strip>;
|
|
3414
3432
|
|
|
3415
3433
|
type OrganizationModel = z.infer<typeof OrganizationModelSchema>;
|
|
@@ -159,8 +159,12 @@
|
|
|
159
159
|
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
160
160
|
--tab-border-color: var(--color-border);
|
|
161
161
|
}
|
|
162
|
-
.mantine-Tabs-tab:hover {
|
|
163
|
-
background-color: var(--color-surface-hover);
|
|
162
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab:not([data-active]):hover {
|
|
163
|
+
background-color: color-mix(in srgb, var(--color-surface-hover) 70%, transparent);
|
|
164
|
+
}
|
|
165
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
166
|
+
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
167
|
+
background-color: transparent;
|
|
164
168
|
}
|
|
165
169
|
.mantine-Pagination-control:not([data-active]) {
|
|
166
170
|
background: var(--color-surface);
|
|
@@ -179,11 +183,12 @@
|
|
|
179
183
|
::-webkit-scrollbar-thumb:hover {
|
|
180
184
|
background: var(--color-text-subtle);
|
|
181
185
|
}
|
|
182
|
-
.mantine-Checkbox-input {
|
|
186
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:not(:disabled):not(:checked):not([data-indeterminate]) {
|
|
183
187
|
background-color: var(--color-surface);
|
|
184
188
|
border-color: var(--color-border);
|
|
185
189
|
}
|
|
186
|
-
.mantine-Checkbox-input:checked
|
|
190
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input:checked,
|
|
191
|
+
[data-mantine-color-scheme] .mantine-Checkbox-input[data-indeterminate] {
|
|
187
192
|
background-color: var(--color-primary);
|
|
188
193
|
border-color: var(--color-primary);
|
|
189
194
|
}
|
|
@@ -3409,6 +3409,24 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
3409
3409
|
supportedStatusSemanticClass: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3410
3410
|
}, z.core.$strip>>>;
|
|
3411
3411
|
}, z.core.$strip>>;
|
|
3412
|
+
knowledge: z.ZodDefault<z.ZodObject<{
|
|
3413
|
+
nodes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3414
|
+
id: z.ZodString;
|
|
3415
|
+
kind: z.ZodEnum<{
|
|
3416
|
+
playbook: "playbook";
|
|
3417
|
+
strategy: "strategy";
|
|
3418
|
+
reference: "reference";
|
|
3419
|
+
}>;
|
|
3420
|
+
title: z.ZodString;
|
|
3421
|
+
summary: z.ZodString;
|
|
3422
|
+
body: z.ZodString;
|
|
3423
|
+
links: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3424
|
+
nodeId: z.ZodString;
|
|
3425
|
+
}, z.core.$strip>>>;
|
|
3426
|
+
ownerIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3427
|
+
updatedAt: z.ZodString;
|
|
3428
|
+
}, z.core.$strip>>>;
|
|
3429
|
+
}, z.core.$strip>>;
|
|
3412
3430
|
}, z.core.$strip>;
|
|
3413
3431
|
|
|
3414
3432
|
type OrganizationModel = z.infer<typeof OrganizationModelSchema>;
|
package/dist/types/index.d.ts
CHANGED
package/dist/utils/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elevasis/ui",
|
|
3
|
-
"version": "2.25.
|
|
3
|
+
"version": "2.25.3",
|
|
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",
|
|
@@ -11,6 +11,38 @@
|
|
|
11
11
|
"dist",
|
|
12
12
|
"src/**/README.md"
|
|
13
13
|
],
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"@mantine/charts": "8.2.7",
|
|
16
|
+
"@mantine/notifications": "8.2.7",
|
|
17
|
+
"@mantine/tiptap": "8.2.7",
|
|
18
|
+
"@tiptap/extension-link": "^2.11.7",
|
|
19
|
+
"@tiptap/extension-placeholder": "^2.11.7",
|
|
20
|
+
"@tiptap/react": "^2.11.7",
|
|
21
|
+
"@tiptap/starter-kit": "^2.11.7",
|
|
22
|
+
"@mdx-js/mdx": "^3.1.1",
|
|
23
|
+
"@types/react": "^19.2.2",
|
|
24
|
+
"@types/react-dom": "^19.1.9",
|
|
25
|
+
"cytoscape": "^3.33.1",
|
|
26
|
+
"globals": "^16.3.0",
|
|
27
|
+
"recharts": "^3.2.1",
|
|
28
|
+
"rollup": "^4.59.0",
|
|
29
|
+
"rollup-plugin-dts": "^6.3.0",
|
|
30
|
+
"tsup": "^8.0.0",
|
|
31
|
+
"typescript": "5.9.2",
|
|
32
|
+
"vite": "^7.0.0",
|
|
33
|
+
"@testing-library/react": "^16.3.0",
|
|
34
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
35
|
+
"msw": "^2.11.0",
|
|
36
|
+
"vitest": "^3.2.4",
|
|
37
|
+
"@repo/core": "0.15.1",
|
|
38
|
+
"@repo/eslint-config": "0.0.0",
|
|
39
|
+
"@repo/typescript-config": "0.0.0"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@dagrejs/dagre": "^1.1.4",
|
|
43
|
+
"@microsoft/fetch-event-source": "^2.0.1",
|
|
44
|
+
"react-json-pretty": "^2.2.0"
|
|
45
|
+
},
|
|
14
46
|
"exports": {
|
|
15
47
|
"./provider": {
|
|
16
48
|
"types": "./dist/provider/published.d.ts",
|
|
@@ -202,38 +234,6 @@
|
|
|
202
234
|
"@testing-library/jest-dom": "^6.9.1",
|
|
203
235
|
"msw": "^2.11.0"
|
|
204
236
|
},
|
|
205
|
-
"devDependencies": {
|
|
206
|
-
"@mantine/charts": "8.2.7",
|
|
207
|
-
"@mantine/notifications": "8.2.7",
|
|
208
|
-
"@mantine/tiptap": "8.2.7",
|
|
209
|
-
"@tiptap/extension-link": "^2.11.7",
|
|
210
|
-
"@tiptap/extension-placeholder": "^2.11.7",
|
|
211
|
-
"@tiptap/react": "^2.11.7",
|
|
212
|
-
"@tiptap/starter-kit": "^2.11.7",
|
|
213
|
-
"@mdx-js/mdx": "^3.1.1",
|
|
214
|
-
"@types/react": "^19.2.2",
|
|
215
|
-
"@types/react-dom": "^19.1.9",
|
|
216
|
-
"cytoscape": "^3.33.1",
|
|
217
|
-
"globals": "^16.3.0",
|
|
218
|
-
"recharts": "^3.2.1",
|
|
219
|
-
"rollup": "^4.59.0",
|
|
220
|
-
"rollup-plugin-dts": "^6.3.0",
|
|
221
|
-
"tsup": "^8.0.0",
|
|
222
|
-
"typescript": "5.9.2",
|
|
223
|
-
"vite": "^7.0.0",
|
|
224
|
-
"@testing-library/react": "^16.3.0",
|
|
225
|
-
"@testing-library/jest-dom": "^6.9.1",
|
|
226
|
-
"msw": "^2.11.0",
|
|
227
|
-
"vitest": "^3.2.4",
|
|
228
|
-
"@repo/core": "0.15.1",
|
|
229
|
-
"@repo/eslint-config": "0.0.0",
|
|
230
|
-
"@repo/typescript-config": "0.0.0"
|
|
231
|
-
},
|
|
232
|
-
"dependencies": {
|
|
233
|
-
"@dagrejs/dagre": "^1.1.4",
|
|
234
|
-
"@microsoft/fetch-event-source": "^2.0.1",
|
|
235
|
-
"react-json-pretty": "^2.2.0"
|
|
236
|
-
},
|
|
237
237
|
"peerDependenciesMeta": {
|
|
238
238
|
"@mantine/core": {
|
|
239
239
|
"optional": true
|