@cdc/chart 4.25.3 → 4.25.6
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/cdcchart.js +46641 -42561
- package/index.html +130 -129
- package/package.json +22 -27
- package/src/CdcChartComponent.tsx +75 -35
- package/src/_stories/Chart.CI.stories.tsx +10 -0
- package/src/_stories/Chart.DynamicSeries.stories.tsx +68 -49
- package/src/_stories/Chart.stories.tsx +99 -86
- package/src/_stories/ChartPrefixSuffix.stories.tsx +29 -32
- package/{examples/private/line-issue.json → src/_stories/_mock/barchart_labels.mock.json} +150 -35
- package/src/_stories/_mock/dynamic_series_bar_config.json +1 -1
- package/src/_stories/_mock/dynamic_series_suppression_mock.json +610 -0
- package/{examples/private/not-loading.json → src/_stories/_mock/pie_calculated_area.json} +152 -95
- package/src/components/Annotations/components/AnnotationDropdown.tsx +2 -2
- package/src/components/AreaChart/components/AreaChart.jsx +33 -5
- package/src/components/Axis/Categorical.Axis.tsx +2 -2
- package/src/components/BarChart/components/BarChart.Horizontal.tsx +38 -37
- package/src/components/BarChart/components/BarChart.StackedHorizontal.tsx +18 -8
- package/src/components/BarChart/components/BarChart.StackedVertical.tsx +8 -8
- package/src/components/BarChart/components/BarChart.Vertical.tsx +47 -36
- package/src/components/BarChart/components/{BarChart.jsx → BarChart.tsx} +23 -5
- package/src/components/BarChart/components/context.tsx +20 -2
- package/src/components/BarChart/helpers/getBarHeights.ts +47 -0
- package/src/components/BarChart/helpers/index.ts +5 -2
- package/src/components/BarChart/helpers/tests/getBarHeights.test.ts +83 -0
- package/src/{hooks → components/BarChart/helpers}/useBarChart.ts +9 -46
- package/src/components/BoxPlot/BoxPlot.tsx +2 -1
- package/src/components/Brush/BrushChart.tsx +73 -0
- package/src/components/Brush/BrushController..tsx +39 -0
- package/src/components/DeviationBar.jsx +2 -2
- package/src/components/EditorPanel/EditorPanel.tsx +232 -147
- package/src/components/EditorPanel/components/Panels/Panel.General.tsx +36 -36
- package/src/components/EditorPanel/components/Panels/Panel.Series.tsx +52 -25
- package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +12 -4
- package/src/components/EditorPanel/components/Panels/panelVisual.styles.css +8 -0
- package/src/components/EditorPanel/useEditorPermissions.ts +5 -5
- package/src/components/ForestPlot/ForestPlot.tsx +2 -2
- package/src/components/HoverLine/HoverLine.tsx +74 -0
- package/src/components/Legend/Legend.Component.tsx +1 -1
- package/src/components/Legend/Legend.Suppression.tsx +59 -25
- package/src/components/Legend/helpers/createFormatLabels.tsx +28 -0
- package/src/components/Legend/helpers/index.ts +1 -1
- package/src/components/LineChart/LineChartProps.ts +3 -1
- package/src/components/LineChart/components/LineChart.Circle.tsx +72 -119
- package/src/components/LineChart/helpers.ts +133 -56
- package/src/components/LineChart/index.tsx +106 -55
- package/src/components/LinearChart.tsx +178 -198
- package/src/components/PairedBarChart.jsx +3 -2
- package/src/components/PieChart/PieChart.tsx +127 -102
- package/src/components/ScatterPlot/ScatterPlot.jsx +5 -0
- package/src/components/Sparkline/components/SparkLine.tsx +80 -18
- package/src/data/initial-state.js +11 -6
- package/src/helpers/countNumOfTicks.ts +1 -1
- package/src/helpers/dataHelpers.ts +23 -2
- package/src/helpers/getNewRuntime.ts +35 -0
- package/src/helpers/getPiePercent.ts +22 -0
- package/src/helpers/getTransformedData.ts +22 -0
- package/src/helpers/sizeHelpers.ts +1 -1
- package/src/helpers/tests/getNewRuntime.test.ts +82 -0
- package/src/helpers/tests/getPiePercent.test.ts +38 -0
- package/src/hooks/useMinMax.ts +21 -28
- package/src/hooks/useRightAxis.ts +5 -3
- package/src/hooks/useScales.ts +15 -6
- package/src/hooks/useTooltip.tsx +218 -203
- package/src/index.jsx +2 -2
- package/src/scss/main.scss +13 -6
- package/src/store/chart.actions.ts +2 -6
- package/src/store/chart.reducer.ts +23 -23
- package/src/types/ChartConfig.ts +11 -3
- package/src/types/ChartContext.ts +0 -2
- package/examples/private/DEV-8850-2.json +0 -493
- package/examples/private/DEV-9822.json +0 -574
- package/examples/private/DEV-9840.json +0 -553
- package/examples/private/DEV-9850-3.json +0 -461
- package/examples/private/chart.json +0 -1084
- package/examples/private/ci_formatted.json +0 -202
- package/examples/private/ci_issue.json +0 -3016
- package/examples/private/completed.json +0 -634
- package/examples/private/dem-data-long.csv +0 -20
- package/examples/private/dem-data-long.json +0 -36
- package/examples/private/demographic_data.csv +0 -157
- package/examples/private/demographic_data.json +0 -2654
- package/examples/private/demographic_dynamic.json +0 -443
- package/examples/private/demographic_standard.json +0 -560
- package/examples/private/ehdi.json +0 -29939
- package/examples/private/test.json +0 -493
- package/src/components/ZoomBrush.tsx +0 -251
package/index.html
CHANGED
|
@@ -1,38 +1,39 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<html lang="en">
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="utf-8" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
|
7
|
+
<style>
|
|
8
|
+
body {
|
|
9
|
+
margin: 0;
|
|
10
|
+
border-top: none !important;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.cdc-map-outer-container {
|
|
14
|
+
min-height: 100vh;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
/* .react-container + .react-container {
|
|
17
18
|
margin-top: 3rem;
|
|
18
19
|
} */
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
</style>
|
|
21
|
+
<link rel="stylesheet prefetch" href="https://www.cdc.gov/TemplatePackage/5.0/css/app.min.css?_=71669" />
|
|
22
|
+
</head>
|
|
22
23
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
<body>
|
|
25
|
+
<!-- SANKEY EXAMPLE -->
|
|
26
|
+
<!-- <div class="container d-flex flex-wrap body-wrapper bg-white" style="width: 750px">
|
|
26
27
|
<main class="col-lg-9 order-lg-2" role="main" aria-label="Main Content Area">
|
|
27
28
|
<div class="row">
|
|
28
29
|
<div class="col-md-12"> -->
|
|
29
|
-
|
|
30
|
-
|
|
30
|
+
<!-- <div class="react-container" data-config="/examples/feature/sankey/sankey-example-data.json"></div> -->
|
|
31
|
+
<!-- </div>
|
|
31
32
|
</div>
|
|
32
33
|
</main>
|
|
33
34
|
</div> -->
|
|
34
35
|
|
|
35
|
-
|
|
36
|
+
<!--
|
|
36
37
|
EXAMPLES:
|
|
37
38
|
chart/examples/features: different chart types and tests
|
|
38
39
|
chart/examples/private: an ignored git folder used for addl. troubleshooting.
|
|
@@ -44,123 +45,123 @@
|
|
|
44
45
|
|
|
45
46
|
-->
|
|
46
47
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
48
|
+
<!-- GENERIC CHART TYPES -->
|
|
49
|
+
<!-- <div class="react-container" data-config="/examples/private/ari-other-conditions-1.json"></div> -->
|
|
50
|
+
<!-- <div class="react-container" data-config="/examples/private/Viral-Respiratory-Deaths-Age.json"></div> -->
|
|
51
|
+
<!-- <div class="react-container" data-config="/examples/cases-year.json"></div>-->
|
|
52
|
+
<!-- <div class="react-container" data-config="/examples/test.json"></div> -->
|
|
53
|
+
<!-- <div class="react-container" data-config="/examples/feature/line/line-chart.json"></div> -->
|
|
54
|
+
<!-- <div class="react-container" data-config="/examples/dev-8332.json"></div> -->
|
|
55
|
+
<!-- <div class="react-container" data-config="/examples/feature/annotations/index.json"></div> -->
|
|
56
|
+
<!-- <div class="react-container" data-config="/examples/feature/filters/url-filter.json"></div> -->
|
|
57
|
+
<!-- <div class="react-container" data-config="/examples/feature/bar/additional-column-tooltip.json"></div> -->
|
|
58
|
+
<!-- <div class="react-container" data-config="https://cdc.gov/poxvirus/mpox/modules/data-viz/mpx-trends_1.json"></div> -->
|
|
59
|
+
<!-- <div class="react-container" data-config="/examples/feature/area/area-chart-date-apple.json"></div> -->
|
|
60
|
+
<!-- <div class="react-container" data-config="/examples/feature/forest-plot/linear.json"></div> -->
|
|
61
|
+
<!-- <div class="react-container" data-config="/examples/feature/forest-plot/logarithmic.json"></div> -->
|
|
62
|
+
<!-- <div class="react-container" data-config="/examples/feature/forest-plot/forest-plot.json"></div> -->
|
|
63
|
+
<!-- <div class="react-container" data-config="/examples/feature/pie/planet-pie-example-config.json"></div> -->
|
|
64
|
+
<!-- <div class="react-container" data-config=https://www.cdc.gov/wcms/4.0/cdc-wp/data-presentation/examples/Line_Chart_Viz.json></div> -->
|
|
65
|
+
<!-- <div class="react-container" data-config=/examples/feature/regions/index.json></div> -->
|
|
66
|
+
<!-- <div class="react-container" data-config=https://www.cdc.gov/wcms/4.0/cdc-wp/data-presentation/examples/Line_Chart_Regions_Viz.json></div> -->
|
|
67
|
+
<!-- <div class="react-container" data-config=https://www.cdc.gov/wcms/4.0/cdc-wp/data-presentation/examples/Line_Chart_Regions_Viz.json></div> -->
|
|
68
|
+
<!-- <div class="react-container" data-config="/examples/feature/forecasting/forecasting.json"></div> -->
|
|
69
|
+
<!-- <div class="react-container" data-config="/examples/feature/forecasting/combo-forecasting.json"></div> -->
|
|
70
|
+
<!-- <div class="react-container" data-config="/examples/feature/forecasting/effective_reproduction.json"></div> -->
|
|
71
|
+
<!-- <div class="react-container" data-config="/examples/feature/area/area-chart-date.json"></div> -->
|
|
72
|
+
<!-- <div class="react-container" data-config="/examples/feature/area/area-chart-category.json"></div> -->
|
|
73
|
+
<!-- <div class="react-container" data-config="/examples/scatterplot-image-download.json"></div> -->
|
|
74
|
+
<!-- <div class="react-container" data-config="/examples/feature/deviation/planet-deviation-config.json"></div> -->
|
|
75
|
+
<!-- <div class="react-container" data-config="/examples/private/test.json"></div> -->
|
|
76
|
+
<!-- <div class="react-container" data-config="/examples/feature/combo/planet-combo-example-config.json"></div> -->
|
|
77
|
+
<!-- <div class="react-container" data-config="/examples/feature/combo/right-issues.json"></div> -->
|
|
78
|
+
<!-- <div class="react-container" data-config="/examples/dev-9822.json"></div> -->
|
|
79
|
+
|
|
80
|
+
<!-- BAR -->
|
|
81
|
+
<!-- <div class="react-container" data-config="/examples/feature/bar/planet-example-config.json"></div> -->
|
|
82
|
+
<!-- <div class="react-container" data-config="/examples/feature/bar/planet-chart-horizontal-example-config.json"></div> -->
|
|
83
|
+
<!-- <div class="react-container" data-config="/examples/feature/bar/example-bar-chart.json"></div> -->
|
|
84
|
+
<!-- <div class="react-container" data-config="/examples/feature/bar/horizontal-chart-max-increase.json"></div> -->
|
|
85
|
+
<!-- <div class="react-container" data-config="/examples/feature/bar/horizontal-chart.json"></div> -->
|
|
86
|
+
<!-- <div class="react-container" data-config="/examples/feature/bar/horizontal-stacked-bar-chart.json"></div> -->
|
|
87
|
+
<!-- <div class="react-container" data-config="/examples/feature/bar/planet-chart-horizontal-example-config.json"></div> -->
|
|
88
|
+
|
|
89
|
+
<!-- TESTS DATA TABLE SORTING -->
|
|
90
|
+
<!-- Bar Chart with Confidence Intervals (bottom of page) -->
|
|
91
|
+
<!-- <div class="react-container" data-config="https://www.cdc.gov/wcms/4.0/cdc-wp/data-presentation/examples/Example_Bar_CI.json"></div> -->
|
|
92
|
+
<!-- TPOXX Patient Data -->
|
|
93
|
+
<!-- <div class="react-container" data-config="https://www.cdc.gov/poxvirus/mpox/modules/data-viz/tpoxx_weekly_race_eth.json"></div> -->
|
|
94
|
+
<!-- <div class="react-container" data-config="https://www.cdc.gov/poxvirus/mpox/modules/data-viz/mpx-tpoxx-age-gender.json"></div> -->
|
|
95
|
+
<!-- Non-Variola Orthopoxvirus (NVO) Laboratory Testing by Demographics -->
|
|
96
|
+
<!-- <div class="react-container" data-config="https://wwwdev-cdc.msappproxy.net/poxvirus/mpox/modules/data-viz/lab-data.json"></div> -->
|
|
97
|
+
<!-- <div class="react-container" data-config="https://wwwdev-cdc.msappproxy.net/poxvirus/mpox/modules/data-viz/lab-data-age.json"></div> -->
|
|
98
|
+
<!-- PROBLEM WITH THEIR PAGE CONFIG or CONFLICT with -->
|
|
99
|
+
<!-- CORS ERROR pulling data on Covid Flu RSV page at https://wwwdev-cdc.msappproxy.net/respiratory-viruses/index.html-->
|
|
100
|
+
<!-- <div class="react-container" data-config="https://wwwdev-cdc.msappproxy.net/respiratory-viruses/modules/emergency-dept-visits_live.json"></div> -->
|
|
101
|
+
<!-- MPOX -->
|
|
102
|
+
<!-- <div class="react-container" data-config="https://www.cdc.gov/poxvirus/mpox/modules/data-viz/mpox-demographics-monthly.json"></div> -->
|
|
103
|
+
<!-- <div class="react-container" data-config="/https://www.cdc.gov/poxvirus/mpox/modules/data-viz/mpx-age-sex1.json"></div> -->
|
|
104
|
+
|
|
105
|
+
<!-- TESTS DATE EXCLUSIONS -->
|
|
106
|
+
<!-- <div class="react-container" data-config="/examples/feature/boxplot/boxplot.json"></div> -->
|
|
107
|
+
<!-- <div class="react-container" data-config="/examples/feature/tests-case-rate/case-rate-example-config.json"></div> -->
|
|
108
|
+
|
|
109
|
+
<!-- TESTS BIG SMALL-->
|
|
110
|
+
<!-- <div class="react-container" data-config="/examples/feature/tests-big-small/big-small-test-line.json"></div> -->
|
|
111
|
+
<!-- <div class="react-container" data-config="/examples/feature/tests-big-small/big-small-test-bar.json"></div> -->
|
|
112
|
+
<!-- <div class="react-container" data-config="/examples/feature/tests-big-small/big-small-test-negative.json"></div> -->
|
|
113
|
+
<!-- <div class="react-container" data-config="/examples/feature/tests-big-small/line-chart-max-increase.json"></div> -->
|
|
114
|
+
|
|
115
|
+
<!-- TESTS NONNUMERICS -->
|
|
116
|
+
<!-- <div
|
|
115
117
|
class="react-container"
|
|
116
118
|
data-config="/examples/feature/tests-non-numerics/planet-pie-example-config-nonnumeric.json"
|
|
117
119
|
></div> -->
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
<!-- <div class="react-container" data-config="/examples/sparkline.json"></div> -->
|
|
124
|
-
<!-- <div
|
|
120
|
+
<div class="react-container" data-config="/examples/feature/tests-non-numerics/example-combo-bar-nonnumeric.json">
|
|
121
|
+
</div>
|
|
122
|
+
<!-- <div class="react-container" data-config="/examples/feature/tests-non-numerics/example-bar-chart-nonnumeric.json"></div> -->
|
|
123
|
+
<!-- <div class="react-container" data-config="/examples/sparkline.json"></div> -->
|
|
124
|
+
<!-- <div
|
|
125
125
|
class="react-container"
|
|
126
126
|
data-config="/examples/feature/tests-non-numerics/sparkline-chart-nonnumeric.json"
|
|
127
127
|
></div> -->
|
|
128
|
-
|
|
129
|
-
|
|
128
|
+
<!-- <div class="react-container" data-config="/examples/region-issue.json"></div> -->
|
|
129
|
+
<!-- <div class="react-container" data-config="/examples/feature/tests-non-numerics/stacked-vertical-bar-example-nonnumerics.json"></div> -->
|
|
130
130
|
|
|
131
|
-
|
|
132
|
-
|
|
131
|
+
<!-- TESTS CUTOFF -->
|
|
132
|
+
<!-- <div class="react-container" data-config="/examples/feature/tests-cutoff/cutoff-example-config.json"></div> -->
|
|
133
133
|
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
134
|
+
<!-- TESTS COVID -->
|
|
135
|
+
<!-- <div class="react-container" data-config="/examples/feature/tests-covid/covid-confidence-example-config.json"></div> -->
|
|
136
|
+
<!-- <div class="react-container" data-config="/examples/feature/tests-covid/covid-example-config.json"></div> -->
|
|
137
137
|
|
|
138
|
-
|
|
138
|
+
<!--
|
|
139
139
|
GALLERY EXAMPLES BELOW THIS LINE...
|
|
140
140
|
https://www.cdc.gov/wcms/4.0/cdc-wp/data-presentation/examples/example-data-map-cities-states.html
|
|
141
141
|
|
|
142
142
|
-->
|
|
143
143
|
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
144
|
+
<!-- GENERIC CHART TYPES -->
|
|
145
|
+
<!-- <div class="react-container" data-config="/examples/gallery/paired-bar/paired-bar-chart.json"></div> -->
|
|
146
|
+
<!-- <div class="react-container" data-config="/examples/feature/line/line-chart.json"></div> -->
|
|
147
|
+
<!-- <div class="react-container" data-config="/examples/feature/annotations/index.json"></div> -->
|
|
148
|
+
|
|
149
|
+
<!-- HORIZONTAL BAR CHARTS -->
|
|
150
|
+
<!-- <div class="react-container" data-config="/examples/gallery/bar-chart-horizontal/horizontal-bar-chart-with-numbers-on-bar.json"></div> -->
|
|
151
|
+
<!-- <div class="react-container" data-config="/examples/gallery/bar-chart-horizontal/horizontal-bar-chart.json"></div> -->
|
|
152
|
+
<!-- <div class="react-container" data-config="/examples/gallery/bar-chart-horizontal/horizontal-stacked.json"></div> -->
|
|
153
|
+
|
|
154
|
+
<!-- VERTICAL BAR CHARTS -->
|
|
155
|
+
<!-- <div class="react-container" data-config="/examples/gallery/bar-chart-vertical/combo-line-chart.json"></div> -->
|
|
156
|
+
<!-- <div class="react-container" data-config="/examples/gallery/bar-chart-vertical/vertical-bar-chart-categorical.json"></div> -->
|
|
157
|
+
<!-- <div class="react-container" data-config="/examples/gallery/bar-chart-vertical/vertical-bar-chart-stacked.json"></div> -->
|
|
158
|
+
<!-- <div class="react-container" data-config="/examples/gallery/bar-chart-vertical/vertical-bar-chart-confidence.json"></div> -->
|
|
159
|
+
<!-- <div class="react-container" data-config="/examples/gallery/bar-chart-vertical/vertical-bar-chart.json"></div> -->
|
|
160
|
+
<!-- <div class="react-container" data-config="https://www.cdc.gov/respiratory-viruses/modules/respiratory-virus-activity/emergency-dept-visits_live.json"></div> -->
|
|
161
|
+
|
|
162
|
+
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
163
|
+
|
|
164
|
+
<script type="module" src="./src/index.jsx"></script>
|
|
165
|
+
</body>
|
|
166
|
+
|
|
167
|
+
</html>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cdc/chart",
|
|
3
|
-
"version": "4.25.
|
|
3
|
+
"version": "4.25.6",
|
|
4
4
|
"description": "React component for visualizing tabular data in various types of charts",
|
|
5
5
|
"moduleName": "CdcChart",
|
|
6
6
|
"main": "dist/cdcchart",
|
|
@@ -27,43 +27,38 @@
|
|
|
27
27
|
"license": "Apache-2.0",
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@hello-pangea/dnd": "^16.2.0",
|
|
30
|
-
"@
|
|
31
|
-
"@visx/
|
|
32
|
-
"@visx/
|
|
33
|
-
"@visx/
|
|
34
|
-
"@visx/
|
|
35
|
-
"@visx/
|
|
36
|
-
"@visx/
|
|
37
|
-
"@visx/
|
|
38
|
-
"@visx/
|
|
39
|
-
"@visx/
|
|
40
|
-
"@visx/
|
|
41
|
-
"@visx/
|
|
42
|
-
"@visx/
|
|
43
|
-
"
|
|
44
|
-
"chroma-js": "^2.1.2",
|
|
45
|
-
"d3-array": "^2.8.0",
|
|
30
|
+
"@react-spring/web": "^9.7.5",
|
|
31
|
+
"@visx/axis": "3.12.0",
|
|
32
|
+
"@visx/curve": "3.12.0",
|
|
33
|
+
"@visx/event": "3.12.0",
|
|
34
|
+
"@visx/glyph": "3.12.0",
|
|
35
|
+
"@visx/gradient": "3.12.0",
|
|
36
|
+
"@visx/marker": "3.12.0",
|
|
37
|
+
"@visx/mock-data": "3.12.0",
|
|
38
|
+
"@visx/scale": "3.12.0",
|
|
39
|
+
"@visx/shape": "3.12.0",
|
|
40
|
+
"@visx/stats": "3.12.0",
|
|
41
|
+
"@visx/text": "3.12.0",
|
|
42
|
+
"@visx/tooltip": "3.12.0",
|
|
43
|
+
"d3-array": "3.2.4",
|
|
46
44
|
"d3-format": "^3.1.0",
|
|
47
45
|
"d3-sankey": "^0.12.3",
|
|
48
|
-
"d3-time-format": "
|
|
49
|
-
"html-react-parser": "^3.0.8",
|
|
46
|
+
"d3-time-format": "4.1.0",
|
|
50
47
|
"js-base64": "^2.5.2",
|
|
51
|
-
"papaparse": "^5.3.0",
|
|
52
48
|
"react-accessible-accordion": "^3.3.4",
|
|
53
|
-
"react-icons": "
|
|
54
|
-
"
|
|
55
|
-
"react-table": "^7.5.0",
|
|
56
|
-
"react-tooltip": "5.8.2-beta.3",
|
|
57
|
-
"use-debounce": "^6.0.1",
|
|
58
|
-
"whatwg-fetch": "^3.6.2"
|
|
49
|
+
"react-icons": "5.5.0",
|
|
50
|
+
"use-debounce": "^6.0.1"
|
|
59
51
|
},
|
|
60
52
|
"peerDependencies": {
|
|
61
53
|
"react": "^18.2.0",
|
|
62
54
|
"react-dom": "^18.2.0"
|
|
63
55
|
},
|
|
64
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "6097de1ff814001880d9ac64bd66becdc092d63c",
|
|
65
57
|
"devDependencies": {
|
|
58
|
+
"@types/d3-array": "^3.2.1",
|
|
59
|
+
"@types/d3-format": "^3.0.4",
|
|
66
60
|
"@types/d3-sankey": "^0.12.4",
|
|
61
|
+
"@types/d3-time-format": "^4.0.3",
|
|
67
62
|
"resize-observer-polyfill": "^1.5.1"
|
|
68
63
|
}
|
|
69
64
|
}
|