Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | /**
* @module Shared
* @description Barrel export for all shared browser modules.
*
* @intelligence Intelligence module aggregation — barrel export providing clean import surface for all shared analytical infrastructure components.
*
* @business API surface management — clean module exports reduce coupling and enable future package extraction. Supports modular architecture for enterprise customization.
*
* @marketing Developer ecosystem enablement — clean imports make the codebase approachable for open-source contributors. Lower barrier to contribution increases community engagement.
* */
export * from './types.js';
export * from './theme.js';
export * from './logger.js';
export * from './dom-utils.js';
export * from './data-loader.js';
export * from './fallback-ui.js';
export * from './error-boundary.js';
// Note: chart-factory is intentionally excluded from this barrel export
// to keep the root entry point free of chart.js type dependencies.
// Import chart utilities directly: import { createChart } from 'riksdagsmonitor/shared/chart-factory';
|