@cdc/dashboard 4.25.11 → 4.26.2
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/Dynamic_Data.md +66 -0
- package/dist/cdcdashboard-8NmHlKRI.es.js +15 -0
- package/dist/cdcdashboard-BPoPzKPz.es.js +6 -0
- package/dist/cdcdashboard-Cf9_fbQf.es.js +6 -0
- package/dist/{cdcdashboard-dgT_1dIT.es.js → cdcdashboard-DQ00cQCm.es.js} +1 -20
- package/dist/cdcdashboard-jiQQPkty.es.js +6 -0
- package/dist/cdcdashboard.js +83537 -86913
- package/examples/api-dashboard-data.json +272 -0
- package/examples/api-dashboard-years.json +11 -0
- package/examples/api-geographies-data.json +11 -0
- package/examples/default.json +522 -133
- package/examples/nested-dropdown.json +6985 -0
- package/examples/private/abc.json +467 -0
- package/examples/private/cat-y.json +1235 -0
- package/examples/private/chronic-dash.json +1584 -0
- package/examples/private/dash.json +12696 -0
- package/examples/private/map-issue.json +2260 -0
- package/examples/private/mpinc-state-reports.json +2260 -0
- package/examples/private/npcr.json +1 -0
- package/examples/private/nwss/rsv.json +1240 -0
- package/examples/private/simple-dash.json +490 -0
- package/examples/private/test-dash.json +0 -0
- package/examples/private/test.json +125407 -0
- package/examples/private/test123.json +491 -0
- package/examples/private/timeline-data.json +4994 -0
- package/examples/private/timeline.json +1708 -0
- package/examples/test-api-filter-reset.json +8 -4
- package/examples/test-dashboard-simple.json +503 -0
- package/examples/tp5-gauges.json +196 -0
- package/examples/tp5-test.json +266 -0
- package/index.html +1 -30
- package/package.json +39 -40
- package/src/CdcDashboardComponent.tsx +18 -5
- package/src/_stories/Dashboard.DataSetup.stories.tsx +204 -0
- package/src/_stories/Dashboard.stories.tsx +407 -1
- package/src/_stories/_mock/dashboard-line-chart-angles.json +1030 -0
- package/src/_stories/_mock/filter-cascade.json +3350 -0
- package/src/_stories/_mock/gallery-data-bite-dashboard.json +3500 -0
- package/src/_stories/_mock/nested-parent-child-filters.json +392 -0
- package/src/_stories/_mock/parent-child-filters.json +233 -0
- package/src/_stories/_mock/tp5-test.json +267 -0
- package/src/components/DashboardFilters/DashboardFilters.tsx +20 -11
- package/src/components/DashboardFilters/DashboardFiltersEditor/DashboardFiltersEditor.tsx +92 -38
- package/src/components/DashboardFilters/DashboardFiltersEditor/components/FilterEditor.tsx +56 -30
- package/src/components/DashboardFilters/DashboardFiltersEditor/components/NestedDropDownDashboard.tsx +151 -10
- package/src/components/DashboardFilters/DashboardFiltersWrapper.tsx +11 -7
- package/src/components/DataDesignerModal.tsx +6 -1
- package/src/components/Header/Header.tsx +51 -20
- package/src/components/VisualizationRow.tsx +76 -5
- package/src/components/VisualizationsPanel/VisualizationsPanel.tsx +2 -20
- package/src/components/Widget/Widget.tsx +1 -1
- package/src/data/initial-state.js +1 -0
- package/src/helpers/addValuesToDashboardFilters.ts +30 -31
- package/src/helpers/apiFilterHelpers.ts +28 -32
- package/src/helpers/changeFilterActive.ts +67 -65
- package/src/helpers/formatConfigBeforeSave.ts +6 -5
- package/src/helpers/getUpdateConfig.ts +91 -91
- package/src/helpers/tests/addValuesToDashboardFilters.test.ts +141 -44
- package/src/helpers/tests/apiFilterHelpers.test.ts +523 -420
- package/src/helpers/tests/updatesChildFilters.test.ts +53 -22
- package/src/helpers/updateChildFilters.ts +50 -27
- package/src/scss/main.scss +144 -1
- package/src/test/CdcDashboard.test.jsx +9 -4
- package/src/types/Dashboard.ts +1 -0
- package/src/types/FilterStyles.ts +8 -7
- package/src/types/SharedFilter.ts +13 -0
- package/vite.config.js +7 -1
- package/LICENSE +0 -201
- package/dist/cdcdashboard-BnB1QM5d.es.js +0 -361528
- package/dist/cdcdashboard-Ct2SB0vL.es.js +0 -231049
- package/dist/cdcdashboard-D6CG2-Hb.es.js +0 -39377
- package/dist/cdcdashboard-MXgURbdZ.es.js +0 -39194
- package/examples/private/DEV-10538.json +0 -407
- package/examples/private/DEV-11072.json +0 -7591
- package/examples/private/DEV-11405.json +0 -39112
- package/examples/private/delete.json +0 -32919
- package/examples/private/pedro.json +0 -1
package/examples/default.json
CHANGED
|
@@ -1,162 +1,551 @@
|
|
|
1
1
|
{
|
|
2
|
-
"type": "dashboard",
|
|
3
|
-
"data": [
|
|
4
|
-
{
|
|
5
|
-
"name": "Jupiter",
|
|
6
|
-
"Radius": "10.97",
|
|
7
|
-
"Diameter": "22",
|
|
8
|
-
"distance": "0"
|
|
9
|
-
},
|
|
10
|
-
{
|
|
11
|
-
"name": "Saturn",
|
|
12
|
-
"Radius": "9.14",
|
|
13
|
-
"Diameter": "18",
|
|
14
|
-
"distance": "0"
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
"name": "Uranus",
|
|
18
|
-
"Radius": "3.98",
|
|
19
|
-
"Diameter": "8",
|
|
20
|
-
"distance": "0"
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"name": "Neptune",
|
|
24
|
-
"Radius": "3.86",
|
|
25
|
-
"Diameter": "7",
|
|
26
|
-
"distance": "0"
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
"name": "Earth",
|
|
30
|
-
"Radius": "1",
|
|
31
|
-
"Diameter": "2",
|
|
32
|
-
"distance": "0"
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"name": "Venus",
|
|
36
|
-
"Radius": "0.950",
|
|
37
|
-
"Diameter": "2",
|
|
38
|
-
"distance": "0"
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
"name": "Mars",
|
|
42
|
-
"Radius": "0.532",
|
|
43
|
-
"Diameter": "1",
|
|
44
|
-
"distance": "0"
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
"name": "Mercury",
|
|
48
|
-
"Radius": "0.383",
|
|
49
|
-
"Diameter": "0.7",
|
|
50
|
-
"distance": "0"
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
"name": "Pluto",
|
|
54
|
-
"Radius": "0.181",
|
|
55
|
-
"Diameter": "0.3",
|
|
56
|
-
"distance": "0"
|
|
57
|
-
}
|
|
58
|
-
],
|
|
59
2
|
"dashboard": {
|
|
60
|
-
"
|
|
3
|
+
"theme": "theme-blue",
|
|
4
|
+
"title": "Amount Filtered by Location and Type ",
|
|
5
|
+
"sharedFilters": [
|
|
6
|
+
{
|
|
7
|
+
"values": [
|
|
8
|
+
"Alabama",
|
|
9
|
+
"Alaska",
|
|
10
|
+
"American Samoa",
|
|
11
|
+
"Arizona",
|
|
12
|
+
"Arkansas"
|
|
13
|
+
],
|
|
14
|
+
"columnName": "Location",
|
|
15
|
+
"showDropdown": true,
|
|
16
|
+
"usedBy": [
|
|
17
|
+
"data-bite1628875468150",
|
|
18
|
+
"chart1628875631849",
|
|
19
|
+
"data-bite1628876561387",
|
|
20
|
+
"data-bite1628877031319"
|
|
21
|
+
],
|
|
22
|
+
"tier": 1,
|
|
23
|
+
"type": "datafilter",
|
|
24
|
+
"order": "cust",
|
|
25
|
+
"orderedValues": [
|
|
26
|
+
"Alabama",
|
|
27
|
+
"Alaska",
|
|
28
|
+
"American Samoa",
|
|
29
|
+
"Arizona",
|
|
30
|
+
"Arkansas"
|
|
31
|
+
]
|
|
32
|
+
},
|
|
61
33
|
{
|
|
62
|
-
"
|
|
63
|
-
|
|
34
|
+
"values": [
|
|
35
|
+
"Federal",
|
|
36
|
+
"Local",
|
|
37
|
+
"State"
|
|
38
|
+
],
|
|
39
|
+
"columnName": "Type",
|
|
40
|
+
"showDropdown": true,
|
|
41
|
+
"usedBy": [
|
|
42
|
+
"data-bite1628875468150",
|
|
43
|
+
"chart1628875631849",
|
|
44
|
+
"data-bite1628876561387",
|
|
45
|
+
"data-bite1628877031319"
|
|
46
|
+
],
|
|
47
|
+
"tier": 1
|
|
64
48
|
}
|
|
65
49
|
]
|
|
66
50
|
},
|
|
67
51
|
"rows": [
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
],
|
|
71
|
-
"visualizations": {
|
|
72
|
-
"chart1": {
|
|
73
|
-
"uid": "chart1",
|
|
74
|
-
"type": "chart",
|
|
75
|
-
"title": "Chart Example",
|
|
76
|
-
"visualizationType": "Pie",
|
|
77
|
-
"palette": "qualitative-soft",
|
|
78
|
-
"filters": [
|
|
52
|
+
{
|
|
53
|
+
"columns": [
|
|
79
54
|
{
|
|
80
|
-
"
|
|
81
|
-
"
|
|
55
|
+
"width": 12,
|
|
56
|
+
"widget": "legacySharedFilters"
|
|
82
57
|
}
|
|
83
|
-
]
|
|
84
|
-
|
|
58
|
+
]
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"columns": [
|
|
62
|
+
{
|
|
63
|
+
"width": 6,
|
|
64
|
+
"widget": "data-bite1628875468150"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"width": 6,
|
|
68
|
+
"widget": "chart1628875631849"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"width": null
|
|
72
|
+
}
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"columns": [
|
|
77
|
+
{
|
|
78
|
+
"width": 6,
|
|
79
|
+
"widget": "data-bite1628877031319"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"width": 6,
|
|
83
|
+
"widget": "data-bite1628876561387"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"width": null
|
|
87
|
+
}
|
|
88
|
+
]
|
|
89
|
+
}
|
|
90
|
+
],
|
|
91
|
+
"visualizations": {
|
|
92
|
+
"data-bite1628875468150": {
|
|
93
|
+
"type": "data-bite",
|
|
94
|
+
"dataBite": "",
|
|
95
|
+
"dataFunction": "Mean (Average)",
|
|
96
|
+
"dataColumn": "Amount",
|
|
97
|
+
"bitePosition": "Left",
|
|
98
|
+
"biteFontSize": 24,
|
|
99
|
+
"fontSize": "medium",
|
|
100
|
+
"biteBody": "<span style=\"font-size: 20px;\">Average Amount 2019-2021</span> <br>Reflects the average of the dashboard level filter selections within the timeframe available in the data. In this case 2019-2021. \n This number is calculated within the Data Bite module.\n",
|
|
101
|
+
"imageData": {
|
|
102
|
+
"display": "none",
|
|
103
|
+
"url": "",
|
|
104
|
+
"alt": "",
|
|
105
|
+
"options": []
|
|
106
|
+
},
|
|
85
107
|
"dataFormat": {
|
|
86
|
-
"
|
|
87
|
-
"commas":
|
|
108
|
+
"roundToPlace": 0,
|
|
109
|
+
"commas": true,
|
|
88
110
|
"prefix": "",
|
|
89
111
|
"suffix": ""
|
|
90
112
|
},
|
|
113
|
+
"biteStyle": "graphic",
|
|
114
|
+
"filters": [],
|
|
115
|
+
"subtext": "Citation for Source ",
|
|
116
|
+
"title": "",
|
|
117
|
+
"theme": "theme-orange",
|
|
118
|
+
"shadow": true,
|
|
119
|
+
"visual": {
|
|
120
|
+
"border": false,
|
|
121
|
+
"accent": false,
|
|
122
|
+
"background": false,
|
|
123
|
+
"hideBackgroundColor": false,
|
|
124
|
+
"borderColorTheme": false
|
|
125
|
+
},
|
|
126
|
+
"general": {
|
|
127
|
+
"isCompactStyle": false
|
|
128
|
+
},
|
|
129
|
+
"imageUrl": "",
|
|
130
|
+
"prefix": "",
|
|
131
|
+
"suffix": "",
|
|
132
|
+
"uid": "data-bite1628875468150",
|
|
133
|
+
"visualizationType": "data-bite",
|
|
134
|
+
"dataKey": "dashboard_aggregate_example_no_add_fullname.csv",
|
|
135
|
+
"version": "4.25.1",
|
|
136
|
+
"migrations": {
|
|
137
|
+
"addColorMigration": true
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
"chart1628875631849": {
|
|
141
|
+
"type": "chart",
|
|
142
|
+
"title": "",
|
|
143
|
+
"theme": "theme-blue",
|
|
144
|
+
"fontSize": "large",
|
|
145
|
+
"height": "200",
|
|
146
|
+
"padding": {
|
|
147
|
+
"left": 5,
|
|
148
|
+
"right": 5
|
|
149
|
+
},
|
|
91
150
|
"yAxis": {
|
|
92
|
-
"
|
|
93
|
-
"
|
|
151
|
+
"size": "80",
|
|
152
|
+
"gridLines": false,
|
|
153
|
+
"label": "Amount",
|
|
154
|
+
"numTicks": "4"
|
|
94
155
|
},
|
|
156
|
+
"barThickness": 0.35,
|
|
95
157
|
"xAxis": {
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
"hide": false
|
|
158
|
+
"size": "0",
|
|
159
|
+
"tickRotation": 0,
|
|
160
|
+
"dataKey": "Year",
|
|
161
|
+
"label": ""
|
|
101
162
|
},
|
|
102
163
|
"table": {
|
|
103
164
|
"label": "Data Table",
|
|
104
|
-
"expanded": false
|
|
105
|
-
|
|
106
|
-
},
|
|
107
|
-
"map1": {
|
|
108
|
-
"uid": "map1",
|
|
109
|
-
"type": "map",
|
|
110
|
-
"defaultData": false,
|
|
111
|
-
"general": {
|
|
112
|
-
"title": "Map Example",
|
|
113
|
-
"subtext": "",
|
|
114
|
-
"territoriesLabel": "Territories",
|
|
115
|
-
"type": "data",
|
|
116
|
-
"geoType": "us",
|
|
117
|
-
"headerColor": "theme-blue",
|
|
118
|
-
"showSidebar": true,
|
|
119
|
-
"showTitle": true,
|
|
120
|
-
"geoBorderColor": "darkGray",
|
|
121
|
-
"showDownloadButton": true,
|
|
122
|
-
"expandDataTable": true
|
|
165
|
+
"expanded": false,
|
|
166
|
+
"show": false
|
|
123
167
|
},
|
|
124
|
-
"
|
|
125
|
-
|
|
126
|
-
"
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
"
|
|
138
|
-
"
|
|
139
|
-
},
|
|
140
|
-
"navigate": {
|
|
141
|
-
"name": "link",
|
|
142
|
-
"tooltip": false,
|
|
143
|
-
"dataTable": false
|
|
168
|
+
"legend": {
|
|
169
|
+
"behavior": "isolate",
|
|
170
|
+
"position": "right",
|
|
171
|
+
"hide": true
|
|
172
|
+
},
|
|
173
|
+
"palette": "qualitative-bold",
|
|
174
|
+
"labels": true,
|
|
175
|
+
"dataFormat": {},
|
|
176
|
+
"confidenceKeys": {},
|
|
177
|
+
"uid": "chart1628875631849",
|
|
178
|
+
"visualizationType": "Bar",
|
|
179
|
+
"series": [
|
|
180
|
+
{
|
|
181
|
+
"dataKey": "Amount",
|
|
182
|
+
"type": "Bar"
|
|
144
183
|
}
|
|
184
|
+
],
|
|
185
|
+
"dataKey": "dashboard_aggregate_example_no_add_fullname.csv"
|
|
186
|
+
},
|
|
187
|
+
"data-bite1628876561387": {
|
|
188
|
+
"type": "data-bite",
|
|
189
|
+
"dataBite": "",
|
|
190
|
+
"dataFunction": "Max",
|
|
191
|
+
"dataColumn": "Amount",
|
|
192
|
+
"bitePosition": "Right",
|
|
193
|
+
"biteFontSize": "58",
|
|
194
|
+
"fontSize": "medium",
|
|
195
|
+
"imageUrl": "",
|
|
196
|
+
"biteBody": "<span style=\"font-size: 24px;\"> Peak Amount</span> <br>Reflects the maximum point of data within the dashboard level filter selections within the timeframe set in the data. In this case 2019-2021. \nThis number is calculated within the Data Bite module.\n",
|
|
197
|
+
"prefix": "",
|
|
198
|
+
"suffix": "",
|
|
199
|
+
"dataFormat": {
|
|
200
|
+
"roundToPlace": 0,
|
|
201
|
+
"commas": true,
|
|
202
|
+
"prefix": "",
|
|
203
|
+
"suffix": ""
|
|
145
204
|
},
|
|
146
|
-
"
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
205
|
+
"biteStyle": "title",
|
|
206
|
+
"filters": [],
|
|
207
|
+
"subtext": "Source",
|
|
208
|
+
"title": "",
|
|
209
|
+
"theme": "theme-blue",
|
|
210
|
+
"shadow": true,
|
|
211
|
+
"uid": "data-bite1628876561387",
|
|
212
|
+
"visualizationType": "data-bite",
|
|
213
|
+
"dataKey": "dashboard_aggregate_example_no_add_fullname.csv"
|
|
214
|
+
},
|
|
215
|
+
"data-bite1628877031319": {
|
|
216
|
+
"type": "data-bite",
|
|
217
|
+
"dataBite": "",
|
|
218
|
+
"dataFunction": "Sum",
|
|
219
|
+
"dataColumn": "Amount",
|
|
220
|
+
"bitePosition": "Right",
|
|
221
|
+
"biteFontSize": "58",
|
|
222
|
+
"fontSize": "medium",
|
|
223
|
+
"imageUrl": "",
|
|
224
|
+
"biteBody": "<span style=\"font-size: 24px;\">State Total</span> <br>Reflects the Sum total of the dashboard level filter selections within the timeframe set in the data. In this case 2019-2021. \n This number is calculated within the Data Bite module.\n",
|
|
225
|
+
"prefix": "",
|
|
226
|
+
"suffix": "",
|
|
227
|
+
"dataFormat": {
|
|
228
|
+
"roundToPlace": 0,
|
|
229
|
+
"commas": true,
|
|
230
|
+
"prefix": "",
|
|
231
|
+
"suffix": ""
|
|
153
232
|
},
|
|
233
|
+
"biteStyle": "title",
|
|
154
234
|
"filters": [
|
|
155
235
|
{
|
|
156
|
-
"
|
|
157
|
-
|
|
236
|
+
"id": 1738001923264
|
|
237
|
+
}
|
|
238
|
+
],
|
|
239
|
+
"subtext": "Source ",
|
|
240
|
+
"title": "",
|
|
241
|
+
"theme": "theme-amber",
|
|
242
|
+
"shadow": true,
|
|
243
|
+
"uid": "data-bite1628877031319",
|
|
244
|
+
"visualizationType": "data-bite",
|
|
245
|
+
"dataKey": "dashboard_aggregate_example_no_add_fullname.csv"
|
|
246
|
+
},
|
|
247
|
+
"legacySharedFilters": {
|
|
248
|
+
"type": "dashboardFilters",
|
|
249
|
+
"visualizationType": "dashboardFilters",
|
|
250
|
+
"sharedFilterIndexes": [
|
|
251
|
+
0,
|
|
252
|
+
1
|
|
253
|
+
],
|
|
254
|
+
"filterBehavior": "Filter Change",
|
|
255
|
+
"uid": "legacySharedFilters"
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
"table": {
|
|
259
|
+
"label": "Data Table",
|
|
260
|
+
"show": true
|
|
261
|
+
},
|
|
262
|
+
"data": [],
|
|
263
|
+
"dataFileName": "",
|
|
264
|
+
"dataFileSourceType": "",
|
|
265
|
+
"type": "dashboard",
|
|
266
|
+
"uuid": 1628875999137,
|
|
267
|
+
"runtime": {},
|
|
268
|
+
"datasets": {
|
|
269
|
+
"dashboard_aggregate_example_no_add_fullname.csv": {
|
|
270
|
+
"data": [
|
|
271
|
+
{
|
|
272
|
+
"Location": "Alaska",
|
|
273
|
+
"Year": "2019",
|
|
274
|
+
"Type": "Federal",
|
|
275
|
+
"Amount": "1377"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"Location": "Alaska",
|
|
279
|
+
"Year": "2019",
|
|
280
|
+
"Type": "Local",
|
|
281
|
+
"Amount": "1613"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"Location": "Alaska",
|
|
285
|
+
"Year": "2019",
|
|
286
|
+
"Type": "State",
|
|
287
|
+
"Amount": "1495"
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"Location": "Alaska",
|
|
291
|
+
"Year": "2020",
|
|
292
|
+
"Type": "Federal",
|
|
293
|
+
"Amount": "1377"
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"Location": "Alaska",
|
|
297
|
+
"Year": "2020",
|
|
298
|
+
"Type": "Local",
|
|
299
|
+
"Amount": "1613"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"Location": "Alaska",
|
|
303
|
+
"Year": "2020",
|
|
304
|
+
"Type": "State",
|
|
305
|
+
"Amount": "1495"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"Location": "Alaska",
|
|
309
|
+
"Year": "2021",
|
|
310
|
+
"Type": "Federal",
|
|
311
|
+
"Amount": "1436"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"Location": "Alaska",
|
|
315
|
+
"Year": "2021",
|
|
316
|
+
"Type": "Local",
|
|
317
|
+
"Amount": "1672"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"Location": "Alaska",
|
|
321
|
+
"Year": "2021",
|
|
322
|
+
"Type": "State",
|
|
323
|
+
"Amount": "1554"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"Location": "Alabama",
|
|
327
|
+
"Year": "2019",
|
|
328
|
+
"Type": "Federal",
|
|
329
|
+
"Amount": "1375"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"Location": "Alabama",
|
|
333
|
+
"Year": "2019",
|
|
334
|
+
"Type": "Local",
|
|
335
|
+
"Amount": "1611"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"Location": "Alabama",
|
|
339
|
+
"Year": "2019",
|
|
340
|
+
"Type": "State",
|
|
341
|
+
"Amount": "1493"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"Location": "Alabama",
|
|
345
|
+
"Year": "2020",
|
|
346
|
+
"Type": "Federal",
|
|
347
|
+
"Amount": "1375"
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"Location": "Alabama",
|
|
351
|
+
"Year": "2020",
|
|
352
|
+
"Type": "Local",
|
|
353
|
+
"Amount": "1611"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"Location": "Alabama",
|
|
357
|
+
"Year": "2020",
|
|
358
|
+
"Type": "State",
|
|
359
|
+
"Amount": "1493"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"Location": "Alabama",
|
|
363
|
+
"Year": "2021",
|
|
364
|
+
"Type": "Federal",
|
|
365
|
+
"Amount": "1434"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"Location": "Alabama",
|
|
369
|
+
"Year": "2021",
|
|
370
|
+
"Type": "Local",
|
|
371
|
+
"Amount": "1670"
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"Location": "Alabama",
|
|
375
|
+
"Year": "2021",
|
|
376
|
+
"Type": "State",
|
|
377
|
+
"Amount": "1552"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"Location": "Arkansas",
|
|
381
|
+
"Year": "2019",
|
|
382
|
+
"Type": "Federal",
|
|
383
|
+
"Amount": "1398"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"Location": "Arkansas",
|
|
387
|
+
"Year": "2019",
|
|
388
|
+
"Type": "Local",
|
|
389
|
+
"Amount": "1634"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"Location": "Arkansas",
|
|
393
|
+
"Year": "2019",
|
|
394
|
+
"Type": "State",
|
|
395
|
+
"Amount": "1516"
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"Location": "Arkansas",
|
|
399
|
+
"Year": "2020",
|
|
400
|
+
"Type": "Federal",
|
|
401
|
+
"Amount": "1398"
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"Location": "Arkansas",
|
|
405
|
+
"Year": "2020",
|
|
406
|
+
"Type": "Local",
|
|
407
|
+
"Amount": "1634"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"Location": "Arkansas",
|
|
411
|
+
"Year": "2020",
|
|
412
|
+
"Type": "State",
|
|
413
|
+
"Amount": "1516"
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"Location": "Arkansas",
|
|
417
|
+
"Year": "2021",
|
|
418
|
+
"Type": "Federal",
|
|
419
|
+
"Amount": "1457"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"Location": "Arkansas",
|
|
423
|
+
"Year": "2021",
|
|
424
|
+
"Type": "Local",
|
|
425
|
+
"Amount": "1693"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"Location": "Arkansas",
|
|
429
|
+
"Year": "2021",
|
|
430
|
+
"Type": "State",
|
|
431
|
+
"Amount": "1575"
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
"Location": "American Samoa",
|
|
435
|
+
"Year": "2019",
|
|
436
|
+
"Type": "Federal",
|
|
437
|
+
"Amount": "1388"
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"Location": "American Samoa",
|
|
441
|
+
"Year": "2019",
|
|
442
|
+
"Type": "Local",
|
|
443
|
+
"Amount": "1624"
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"Location": "American Samoa",
|
|
447
|
+
"Year": "2019",
|
|
448
|
+
"Type": "State",
|
|
449
|
+
"Amount": "1506"
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"Location": "American Samoa",
|
|
453
|
+
"Year": "2020",
|
|
454
|
+
"Type": "Federal",
|
|
455
|
+
"Amount": "1388"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"Location": "American Samoa",
|
|
459
|
+
"Year": "2020",
|
|
460
|
+
"Type": "Local",
|
|
461
|
+
"Amount": "1624"
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"Location": "American Samoa",
|
|
465
|
+
"Year": "2020",
|
|
466
|
+
"Type": "State",
|
|
467
|
+
"Amount": "1506"
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
"Location": "American Samoa",
|
|
471
|
+
"Year": "2021",
|
|
472
|
+
"Type": "Federal",
|
|
473
|
+
"Amount": "1447"
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"Location": "American Samoa",
|
|
477
|
+
"Year": "2021",
|
|
478
|
+
"Type": "Local",
|
|
479
|
+
"Amount": "1683"
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"Location": "American Samoa",
|
|
483
|
+
"Year": "2021",
|
|
484
|
+
"Type": "State",
|
|
485
|
+
"Amount": "1565"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"Location": "Arizona",
|
|
489
|
+
"Year": "2019",
|
|
490
|
+
"Type": "Federal",
|
|
491
|
+
"Amount": "1401"
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"Location": "Arizona",
|
|
495
|
+
"Year": "2019",
|
|
496
|
+
"Type": "Local",
|
|
497
|
+
"Amount": "1637"
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"Location": "Arizona",
|
|
501
|
+
"Year": "2019",
|
|
502
|
+
"Type": "State",
|
|
503
|
+
"Amount": "1519"
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
"Location": "Arizona",
|
|
507
|
+
"Year": "2020",
|
|
508
|
+
"Type": "Federal",
|
|
509
|
+
"Amount": "1401"
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"Location": "Arizona",
|
|
513
|
+
"Year": "2020",
|
|
514
|
+
"Type": "Local",
|
|
515
|
+
"Amount": "1637"
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"Location": "Arizona",
|
|
519
|
+
"Year": "2020",
|
|
520
|
+
"Type": "State",
|
|
521
|
+
"Amount": "1519"
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"Location": "Arizona",
|
|
525
|
+
"Year": "2021",
|
|
526
|
+
"Type": "Federal",
|
|
527
|
+
"Amount": "1460"
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
"Location": "Arizona",
|
|
531
|
+
"Year": "2021",
|
|
532
|
+
"Type": "Local",
|
|
533
|
+
"Amount": "1696"
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
"Location": "Arizona",
|
|
537
|
+
"Year": "2021",
|
|
538
|
+
"Type": "State",
|
|
539
|
+
"Amount": "1578"
|
|
158
540
|
}
|
|
159
541
|
]
|
|
160
542
|
}
|
|
543
|
+
},
|
|
544
|
+
"dataUrl": "",
|
|
545
|
+
"dataDescription": {},
|
|
546
|
+
"formattedData": [],
|
|
547
|
+
"version": "4.25.1",
|
|
548
|
+
"migrations": {
|
|
549
|
+
"addColorMigration": true
|
|
161
550
|
}
|
|
162
|
-
}
|
|
551
|
+
}
|