@moderneinc/react-charts 1.1.0-next.dcefa6 → 1.2.0-next.c015c0

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 CHANGED
@@ -1,11 +1,17 @@
1
1
  /**
2
2
  * @moderneinc/react-charts
3
- * Parliament chart visualization library for React
3
+ * Chart visualization library for React
4
4
  */
5
- export { ParliamentChart } from './components/parliament-chart/parliament-chart';
6
- export type { ParliamentChartProps, ProcessedDataItem, HoveredData, ChartConfig } from './components/parliament-chart/parliament-chart.types';
7
- export type { ParliamentChartTheme, ParliamentChartColors } from './theme/default-colors';
8
- export { DEFAULT_CHART_CONFIG, MODERNE_VULNERABILITY_COLORS, CAMPAIGN_NOT_APPLICABLE, CAMPAIGN_NO_LST, CAMPAIGN_DATA_MISSING } from './components/parliament-chart/parliament-chart.constants';
5
+ export { ParliamentChart } from './components/parliament-chart/parliament-chart.component';
6
+ export { CAMPAIGN_DATA_MISSING, CAMPAIGN_NO_LST, CAMPAIGN_NOT_APPLICABLE, DEFAULT_CHART_CONFIG, MODERNE_VULNERABILITY_COLORS } from './components/parliament-chart/parliament-chart.constants';
7
+ export type { ChartConfig, HoveredData, ParliamentChartProps, ProcessedDataItem } from './components/parliament-chart/parliament-chart.types';
9
8
  export { calculateOptimalArcAngle, calculateOptimalSeatSize } from './components/parliament-chart/utils/parliament-arc-calculator';
10
9
  export { calculateDataSeries } from './components/parliament-chart/utils/parliament-chart-data.utils';
11
- export { DEFAULT_CHART_COLORS } from './theme/default-colors';
10
+ export { StackedAreaChart } from './components/stacked-area-chart/stacked-area-chart.component';
11
+ export { CATEGORY_LABELS, DEFAULT_STACKED_AREA_COLORS, DEFAULT_STACKED_AREA_CONFIG, STACKED_AREA_PALETTES } from './components/stacked-area-chart/stacked-area-chart.constants';
12
+ export type { StackedAreaCategory, StackedAreaChartProps, StackedAreaChartSlotProps, StackedAreaDataPoint, StackedAreaMarker } from './components/stacked-area-chart/stacked-area-chart.types';
13
+ export { TimelineChart } from './components/timeline-chart/timeline-chart.component';
14
+ export type { TimelineChartProps, TimelineEvent, TimelineSelectedEventsProps, TimelineSelection } from './components/timeline-chart/timeline-chart.types';
15
+ export { TimelineSelectedEvents } from './components/timeline-chart/timeline-selected-events.component';
16
+ export type { ParliamentChartColors, ParliamentChartTheme } from './theme/default-colors';
17
+ export { DEFAULT_CHART_COLORS, MEASURE_GRADIENT_COLORS } from './theme/default-colors';