Skip to content

Commit 49da16d

Browse files
fix rebase and conflicts
visual enhancement of the hovered edge
1 parent 6ff955a commit 49da16d

6 files changed

Lines changed: 106 additions & 70 deletions

File tree

bun.lock

Lines changed: 101 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/app-builder/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,6 @@
130130
"ui-design-system": "workspace:*",
131131
"ui-icons": "workspace:*",
132132
"uuid": "^14.0.0",
133-
"zod": "^4.1.11",
133+
"zod": "^4.1.11"
134134
}
135135
}

packages/app-builder/src/components/Graph/GraphComponents.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,8 +466,8 @@ function GraphEdge({
466466
style={{ ...style, strokeDasharray: isMerged ? '8 4' : appearance.dash }}
467467
className={cn(
468468
'transition-colors duration-200',
469-
appearance.stroke,
470469
highlighted ? appearance.active : appearance.dimmed,
470+
showLabel ? 'stroke-4!' : appearance.stroke,
471471
)}
472472
/>
473473
{showLabel ? (

packages/app-builder/src/components/Graph/GraphSettingsPanel.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { ClientObjectTagList } from '@app-builder/components/Annotations/ClientO
22
import { ClientComments } from '@app-builder/components/ClientDetail/ClientComments';
33
import { ScoreDetailPanel } from '@app-builder/components/ClientDetail/ScoreDetailPanel';
44
import { DataFields } from '@app-builder/components/Data/DataVisualisation/DataFields';
5-
import { Panel } from '@app-builder/components/Panel';
65
import { Spinner } from '@app-builder/components/Spinner';
76
import { SCORING_LEVELS_COLORS, SCORING_LEVELS_LABEL_KEYS } from '@app-builder/models/scoring';
87
import { useGetAnnotationsQuery } from '@app-builder/queries/data/get-annotations';
@@ -13,7 +12,7 @@ import { LAYOUT_NAMES } from 'ego-graph';
1312
import { type ReactNode, useMemo, useRef, useState } from 'react';
1413
import { useTranslation } from 'react-i18next';
1514
import { match, P } from 'ts-pattern';
16-
import { Button, Checkbox, cn, MenuCommand, Switch, Tag, ThresholdRange } from 'ui-design-system';
15+
import { Button, Checkbox, cn, MenuCommand, Panel, Switch, Tag, ThresholdRange } from 'ui-design-system';
1716
import { Icon, type IconName } from 'ui-icons';
1817
import { useGraphAnnotationsActions } from './contexts/GraphAnnotationsContext';
1918
import { useSelectedObject, useSetSelectedObject } from './contexts/GraphFocusContext';

packages/app-builder/src/routes/_app/_builder/test-graph/index.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,7 @@ function TestGraphRoute() {
8383
const dataModel = useDataModel();
8484
const { recordType, setRecordType, recordId, setRecordId, isGeneratingGraph, loadGraph } = useGraphSession();
8585

86-
const tableNames = dataModel
87-
.filter((table) => table.semanticType === 'person')
88-
.map((table) => table.name)
89-
.sort((a, b) => a.localeCompare(b));
86+
const tableNames = dataModel.map((table) => table.name).sort((a, b) => a.localeCompare(b));
9087

9188
return (
9289
<Page.Content className="min-h-0 flex-1" width="fluid">

packages/ui-icons/src/generated/icons-svg-sprite.svg

Lines changed: 1 addition & 14 deletions
Loading

0 commit comments

Comments
 (0)