24 lines
608 B
TypeScript
24 lines
608 B
TypeScript
/**
|
|
* @glam/visualizations - Data visualization components for GLAM frontends
|
|
*
|
|
* This package contains visualization components:
|
|
* - Graph: Knowledge graph, relationship diagrams
|
|
* - Map: Geographic data with MapLibre GL
|
|
* - UML: LinkML schema diagrams with Mermaid
|
|
* - Charts: D3-based statistical visualizations
|
|
*/
|
|
|
|
// Graph components
|
|
export * from './components/graph';
|
|
|
|
// Map components
|
|
export * from './components/map';
|
|
|
|
// UML/Schema diagram components
|
|
export * from './components/uml';
|
|
|
|
// Chart components
|
|
export * from './components/charts';
|
|
|
|
// Shared utilities
|
|
export * from './utils';
|