Skip to content

Commit 9f2309a

Browse files
committed
more feedback
1 parent a97c3be commit 9f2309a

33 files changed

Lines changed: 77 additions & 3 deletions

src/components/charts/geo/ChoroplethMap.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ export function ChoroplethMap<TDatum extends Record<string, any> = Record<string
7575
showLegend: props.showLegend,
7676
title: props.title,
7777
description: props.description,
78+
accessibleTable: props.accessibleTable,
7879
summary: props.summary,
7980
})
8081

src/components/charts/geo/DistanceCartogram.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ export const DistanceCartogram = forwardRef(function DistanceCartogram<TDatum ex
9191
showLegend: props.showLegend,
9292
title: props.title,
9393
description: props.description,
94+
accessibleTable: props.accessibleTable,
9495
summary: props.summary,
9596
})
9697

src/components/charts/geo/FlowMap.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ export function FlowMap<TDatum extends Record<string, any> = Record<string, any>
9494
showLegend: props.showLegend,
9595
title: props.title,
9696
description: props.description,
97+
accessibleTable: props.accessibleTable,
9798
summary: props.summary,
9899
})
99100

src/components/charts/geo/ProportionalSymbolMap.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ export const ProportionalSymbolMap = forwardRef(function ProportionalSymbolMap<T
8686
showLegend: props.showLegend,
8787
title: props.title,
8888
description: props.description,
89+
accessibleTable: props.accessibleTable,
8990
summary: props.summary,
9091
})
9192

src/components/charts/network/ChordDiagram.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ export const ChordDiagram = forwardRef(function ChordDiagram<TNode extends Recor
6060
showLabels: props.showLabels,
6161
title: props.title,
6262
description: props.description,
63+
accessibleTable: props.accessibleTable,
6364
summary: props.summary,
6465
}, { width: 600, height: 600 })
6566

@@ -98,6 +99,7 @@ export const ChordDiagram = forwardRef(function ChordDiagram<TNode extends Recor
9899
const title = resolved.title
99100
const description = resolved.description
100101
const summary = resolved.summary
102+
const accessibleTable = resolved.accessibleTable
101103

102104
// ── Loading / empty states (computed early, returned after all hooks) ───
103105
const loadingEl = renderLoadingState(loading, width, height)

src/components/charts/network/CirclePack.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ export function CirclePack<TNode extends Record<string, any> = Record<string, an
4848
showLabels: props.showLabels,
4949
title: props.title,
5050
description: props.description,
51+
accessibleTable: props.accessibleTable,
5152
summary: props.summary,
5253
}, { width: 600, height: 600 })
5354

@@ -81,6 +82,7 @@ export function CirclePack<TNode extends Record<string, any> = Record<string, an
8182
const title = resolved.title
8283
const description = resolved.description
8384
const summary = resolved.summary
85+
const accessibleTable = resolved.accessibleTable
8486

8587
// ── Loading state (computed early, returned after all hooks) ─────────────
8688
const loadingEl = renderLoadingState(loading, width, height)

src/components/charts/network/ForceDirectedGraph.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ export const ForceDirectedGraph = forwardRef(function ForceDirectedGraph<TNode e
6363
showLabels: props.showLabels,
6464
title: props.title,
6565
description: props.description,
66+
accessibleTable: props.accessibleTable,
6667
summary: props.summary,
6768
}, { width: 600, height: 600 })
6869

@@ -104,6 +105,7 @@ export const ForceDirectedGraph = forwardRef(function ForceDirectedGraph<TNode e
104105
const title = resolved.title
105106
const description = resolved.description
106107
const summary = resolved.summary
108+
const accessibleTable = resolved.accessibleTable
107109

108110
// ── Loading / empty states (computed early, returned after all hooks) ───
109111
const loadingEl = renderLoadingState(loading, width, height)

src/components/charts/network/OrbitDiagram.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ export function OrbitDiagram<TDatum extends Record<string, any> = Record<string,
105105
showLabels: props.showLabels,
106106
title: props.title,
107107
description: props.description,
108+
accessibleTable: props.accessibleTable,
108109
summary: props.summary,
109110
}, { width: 600, height: 600 })
110111

@@ -144,6 +145,7 @@ export function OrbitDiagram<TDatum extends Record<string, any> = Record<string,
144145
const title = resolved.title
145146
const description = resolved.description
146147
const summary = resolved.summary
148+
const accessibleTable = resolved.accessibleTable
147149

148150
// ── Loading state (computed early, returned after all hooks) ─────────────
149151
const loadingEl = renderLoadingState(loading, width, height)

src/components/charts/network/SankeyDiagram.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ export const SankeyDiagram = forwardRef(function SankeyDiagram<TNode extends Rec
6363
showLabels: props.showLabels,
6464
title: props.title,
6565
description: props.description,
66+
accessibleTable: props.accessibleTable,
6667
summary: props.summary,
6768
}, { width: 800, height: 600 })
6869

@@ -103,6 +104,7 @@ export const SankeyDiagram = forwardRef(function SankeyDiagram<TNode extends Rec
103104
const title = resolved.title
104105
const description = resolved.description
105106
const summary = resolved.summary
107+
const accessibleTable = resolved.accessibleTable
106108

107109
// ── Loading / empty states (computed early, returned after all hooks) ───
108110
const loadingEl = renderLoadingState(loading, width, height)

src/components/charts/network/TreeDiagram.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ export function TreeDiagram<TNode extends Record<string, any> = Record<string, a
5050
showLabels: props.showLabels,
5151
title: props.title,
5252
description: props.description,
53+
accessibleTable: props.accessibleTable,
5354
summary: props.summary,
5455
}, { width: 600, height: 600 })
5556

@@ -85,6 +86,7 @@ export function TreeDiagram<TNode extends Record<string, any> = Record<string, a
8586
const title = resolved.title
8687
const description = resolved.description
8788
const summary = resolved.summary
89+
const accessibleTable = resolved.accessibleTable
8890

8991
// ── Loading state (computed early, returned after all hooks) ─────────────
9092
const loadingEl = renderLoadingState(loading, width, height)

0 commit comments

Comments
 (0)