@opendata-ai/openchart-vanilla 6.3.0 → 6.4.1
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/index.d.ts +44 -3
- package/dist/index.js +580 -4
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/__tests__/selection-events.test.ts +869 -0
- package/src/index.ts +3 -1
- package/src/mount.ts +607 -3
- package/src/svg-renderer.ts +3 -0
- package/src/text-edit-overlay.ts +255 -0
package/src/index.ts
CHANGED
|
@@ -25,7 +25,7 @@ export { createSimulationWorker } from './graph/simulation-worker-url';
|
|
|
25
25
|
export type { GraphInstance, GraphMountOptions } from './graph-mount';
|
|
26
26
|
// Graph mount API
|
|
27
27
|
export { createGraph } from './graph-mount';
|
|
28
|
-
export type { ChartInstance, ExportOptions, MountOptions } from './mount';
|
|
28
|
+
export type { ChartInstance, ExportOptions, MountOptions, UpdateOptions } from './mount';
|
|
29
29
|
// Main mount API
|
|
30
30
|
export { createChart } from './mount';
|
|
31
31
|
// Cell renderers
|
|
@@ -51,6 +51,8 @@ export type { TableInstance, TableMountOptions, TableState } from './table-mount
|
|
|
51
51
|
export { createTable } from './table-mount';
|
|
52
52
|
// Table renderer (for advanced usage / custom rendering)
|
|
53
53
|
export { renderTable } from './table-renderer';
|
|
54
|
+
export type { TextEditOverlayConfig } from './text-edit-overlay';
|
|
55
|
+
export { createTextEditOverlay } from './text-edit-overlay';
|
|
54
56
|
export type { TooltipManager } from './tooltip';
|
|
55
57
|
// Tooltip
|
|
56
58
|
export { createTooltipManager } from './tooltip';
|