nucleus-core-ts 0.9.796 → 0.9.797

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.
@@ -43,9 +43,13 @@ export function RunPlanIssues({ issues }) {
43
43
  className: theme.field.hint,
44
44
  children: `Dedup key: ${issue.dedupKey}`
45
45
  }) : null,
46
+ issue.keptRow ? /*#__PURE__*/ _jsx("span", {
47
+ className: theme.field.hint,
48
+ children: `Kept — ${describeRow(issue.keptRow)}`
49
+ }) : null,
46
50
  issue.row ? /*#__PURE__*/ _jsx("span", {
47
51
  className: theme.field.hint,
48
- children: describeRow(issue.row)
52
+ children: issue.keptRow ? `Skipped — ${describeRow(issue.row)}` : describeRow(issue.row)
49
53
  }) : null
50
54
  ]
51
55
  }, `${issue.sourceIndex}-${issue.kind}-${index}`))
@@ -16,6 +16,8 @@ export type RunIssueValue = {
16
16
  * narrow and rows are being lost. The values are the difference.
17
17
  */
18
18
  row?: Record<string, unknown>;
19
+ /** The record that claimed this key first — what the skipped one lost to. */
20
+ keptRow?: Record<string, unknown>;
19
21
  };
20
22
  /** What a run would do, computed without writing. */
21
23
  export type RunPlanValue = {