@cdc/dashboard 4.26.3 → 4.26.5

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.
Files changed (151) hide show
  1. package/CONFIG.md +219 -0
  2. package/README.md +60 -20
  3. package/dist/cdcdashboard-CY9IcPSi.es.js +6 -0
  4. package/dist/cdcdashboard-DlpiY3fQ.es.js +4 -0
  5. package/dist/cdcdashboard.js +61559 -58048
  6. package/examples/__data__/data-2.json +6 -0
  7. package/examples/__data__/data.json +6 -0
  8. package/examples/dashboard-conditions-filters-incomplete.json +221 -0
  9. package/examples/dashboard-missing-datasets-multi.json +174 -0
  10. package/examples/dashboard-missing-datasets-single.json +121 -0
  11. package/examples/dashboard-multi-dashboard-version-regression.json +146 -0
  12. package/examples/dashboard-shared-filter-row-delete-cleanup.json +186 -0
  13. package/examples/dashboard-stale-dataset-keys.json +181 -0
  14. package/examples/dashboard-tiered-filter-regression.json +190 -0
  15. package/examples/legend-issue.json +1 -1
  16. package/examples/minimal-example.json +34 -0
  17. package/examples/private/cfa-dashboard.json +651 -0
  18. package/examples/private/data-bite-wrap.json +6936 -0
  19. package/examples/private/dengue.json +4640 -0
  20. package/examples/private/link_to_file.json +16662 -0
  21. package/examples/private/multi-dash-fix.json +16963 -0
  22. package/examples/private/versions.json +41612 -0
  23. package/examples/sankey.json +3 -3
  24. package/examples/test-api-filter-reset.json +4 -4
  25. package/examples/tp5-test.json +86 -4
  26. package/examples/us-map-filter-example.json +1074 -0
  27. package/package.json +9 -9
  28. package/src/CdcDashboard.tsx +6 -2
  29. package/src/CdcDashboardComponent.tsx +179 -88
  30. package/src/DashboardCopyPasteContext.test.tsx +33 -0
  31. package/src/DashboardCopyPasteContext.tsx +48 -0
  32. package/src/_stories/Dashboard.EditorRegression.stories.tsx +72 -0
  33. package/src/_stories/Dashboard.Regression.stories.tsx +196 -0
  34. package/src/_stories/Dashboard.Zoom.stories.tsx +88 -0
  35. package/src/_stories/Dashboard.smoke.stories.tsx +33 -0
  36. package/src/_stories/Dashboard.stories.tsx +337 -2
  37. package/src/_stories/FilteredTextMigrationComparison.stories.tsx +87 -0
  38. package/src/_stories/_mock/dashboard-data-driven-colors.json +171 -0
  39. package/src/_stories/_mock/tp5-test.json +86 -5
  40. package/src/components/Column.test.tsx +176 -0
  41. package/src/components/Column.tsx +214 -13
  42. package/src/components/DashboardConditionModal.test.tsx +420 -0
  43. package/src/components/DashboardConditionModal.tsx +367 -0
  44. package/src/components/DashboardConditionSummary.tsx +59 -0
  45. package/src/components/DashboardEditors.tsx +23 -0
  46. package/src/components/DashboardFilters/DashboardFilters.test.tsx +267 -0
  47. package/src/components/DashboardFilters/DashboardFilters.tsx +193 -172
  48. package/src/components/DashboardFilters/DashboardFiltersEditor/DashboardFiltersEditor.test.tsx +164 -0
  49. package/src/components/DashboardFilters/DashboardFiltersEditor/DashboardFiltersEditor.tsx +46 -6
  50. package/src/components/DashboardFilters/DashboardFiltersEditor/components/APIModal.tsx +5 -3
  51. package/src/components/DashboardFilters/DashboardFiltersEditor/components/DeleteFilterModal.tsx +59 -58
  52. package/src/components/DashboardFilters/DashboardFiltersEditor/components/FilterEditor.test.tsx +304 -0
  53. package/src/components/DashboardFilters/DashboardFiltersEditor/components/FilterEditor.tsx +43 -36
  54. package/src/components/DashboardFilters/DashboardFiltersEditor/components/NestedDropDownDashboard.tsx +2 -2
  55. package/src/components/DashboardFilters/DashboardFiltersWrapper.test.tsx +142 -0
  56. package/src/components/DashboardFilters/DashboardFiltersWrapper.tsx +32 -27
  57. package/src/components/DashboardFilters/dashboardfilter.styles.css +42 -27
  58. package/src/components/DataDesignerModal.tsx +2 -1
  59. package/src/components/ExpandCollapseButtons.tsx +6 -4
  60. package/src/components/Grid.tsx +12 -7
  61. package/src/components/Header/Header.tsx +36 -17
  62. package/src/components/MultiConfigTabs/MultiConfigTabs.tsx +141 -140
  63. package/src/components/Row.test.tsx +228 -0
  64. package/src/components/Row.tsx +104 -28
  65. package/src/components/VisualizationRow.test.tsx +396 -0
  66. package/src/components/VisualizationRow.tsx +177 -51
  67. package/src/components/VisualizationsPanel/VisualizationsPanel.test.tsx +49 -0
  68. package/src/components/VisualizationsPanel/VisualizationsPanel.tsx +14 -13
  69. package/src/components/Widget/Widget.test.tsx +218 -0
  70. package/src/components/Widget/Widget.tsx +123 -20
  71. package/src/components/Widget/widget.styles.css +58 -14
  72. package/src/components/dashboard-condition-modal.css +76 -0
  73. package/src/components/dashboard-condition-summary.css +87 -0
  74. package/src/data/initial-state.js +1 -0
  75. package/src/helpers/addValuesToDashboardFilters.ts +3 -5
  76. package/src/helpers/addVisualization.ts +17 -4
  77. package/src/helpers/cloneDashboardWidget.ts +127 -0
  78. package/src/helpers/dashboardColumnWidgets.ts +99 -0
  79. package/src/helpers/dashboardConditionUi.ts +47 -0
  80. package/src/helpers/dashboardConditions.ts +200 -0
  81. package/src/helpers/dashboardFilterTargets.ts +156 -0
  82. package/src/helpers/filterData.ts +4 -9
  83. package/src/helpers/filterVisibility.ts +20 -0
  84. package/src/helpers/formatConfigBeforeSave.ts +2 -2
  85. package/src/helpers/getFilteredData.ts +18 -5
  86. package/src/helpers/getUpdateConfig.ts +43 -12
  87. package/src/helpers/getVizRowColumnLocator.ts +11 -1
  88. package/src/helpers/iconHash.tsx +9 -3
  89. package/src/helpers/mapDataToConfig.ts +31 -29
  90. package/src/helpers/reloadURLHelpers.ts +25 -5
  91. package/src/helpers/removeDashboardFilter.ts +33 -33
  92. package/src/helpers/tests/addVisualization.test.ts +53 -9
  93. package/src/helpers/tests/cloneDashboardWidget.test.ts +136 -0
  94. package/src/helpers/tests/dashboardColumnWidgets.test.ts +99 -0
  95. package/src/helpers/tests/dashboardConditionUi.test.ts +41 -0
  96. package/src/helpers/tests/dashboardConditions.test.ts +428 -0
  97. package/src/helpers/tests/formatConfigBeforeSave.test.ts +51 -0
  98. package/src/helpers/tests/getFilteredData.test.ts +265 -86
  99. package/src/helpers/tests/getUpdateConfig.test.ts +338 -0
  100. package/src/helpers/tests/reloadURLHelpers.test.ts +394 -238
  101. package/src/index.tsx +6 -3
  102. package/src/scss/grid.scss +281 -22
  103. package/src/scss/main.scss +215 -64
  104. package/src/store/dashboard.actions.ts +17 -4
  105. package/src/store/dashboard.reducer.test.ts +538 -0
  106. package/src/store/dashboard.reducer.ts +136 -22
  107. package/src/test/CdcDashboard.test.jsx +24 -0
  108. package/src/test/CdcDashboard.test.tsx +148 -0
  109. package/src/test/CdcDashboardComponent.test.tsx +935 -2
  110. package/src/types/ConfigRow.ts +15 -0
  111. package/src/types/DashboardFilters.ts +4 -0
  112. package/src/types/SharedFilter.ts +2 -0
  113. package/tests/fixtures/dashboard-config-with-metadata.json +1 -1
  114. package/dist/cdcdashboard-vr9HZwRt.es.js +0 -6
  115. package/examples/DEV-6574.json +0 -2224
  116. package/examples/api-dashboard-data.json +0 -272
  117. package/examples/api-dashboard-years.json +0 -11
  118. package/examples/api-geographies-data.json +0 -11
  119. package/examples/chart-data.json +0 -5409
  120. package/examples/custom/css/respiratory.css +0 -236
  121. package/examples/custom/js/respiratory.js +0 -242
  122. package/examples/default-data.json +0 -368
  123. package/examples/default-filter-control.json +0 -209
  124. package/examples/default-multi-dataset-shared-filter.json +0 -1729
  125. package/examples/default-multi-dataset.json +0 -506
  126. package/examples/ed-visits-county-file.json +0 -402
  127. package/examples/filters/Alabama.json +0 -72
  128. package/examples/filters/Alaska.json +0 -1737
  129. package/examples/filters/Arkansas.json +0 -4713
  130. package/examples/filters/California.json +0 -212
  131. package/examples/filters/Colorado.json +0 -1500
  132. package/examples/filters/Connecticut.json +0 -559
  133. package/examples/filters/Delaware.json +0 -63
  134. package/examples/filters/DistrictofColumbia.json +0 -63
  135. package/examples/filters/Florida.json +0 -4217
  136. package/examples/filters/States.json +0 -146
  137. package/examples/state-level.json +0 -90136
  138. package/examples/state-points.json +0 -10474
  139. package/examples/temp-example-data.json +0 -130
  140. package/examples/test-dashboard-simple.json +0 -503
  141. package/examples/test-example.json +0 -752
  142. package/examples/test-file.json +0 -147
  143. package/examples/test.json +0 -752
  144. package/examples/testing.json +0 -94456
  145. /package/examples/{data → __data__}/data-with-metadata.json +0 -0
  146. /package/examples/{legend-issue-data.json → __data__/legend-issue-data.json} +0 -0
  147. /package/examples/api-test/{categories.json → __data__/categories.json} +0 -0
  148. /package/examples/api-test/{chart-data.json → __data__/chart-data.json} +0 -0
  149. /package/examples/api-test/{topics.json → __data__/topics.json} +0 -0
  150. /package/examples/api-test/{years.json → __data__/years.json} +0 -0
  151. /package/src/_stories/{Dashboard.Pages.stories.tsx → Dashboard.Pages.smoke.stories.tsx} +0 -0
@@ -0,0 +1,651 @@
1
+ {
2
+ "dashboard": {
3
+ "theme": "theme-blue",
4
+ "sharedFilters": [],
5
+ "titleStyle": "small"
6
+ },
7
+ "rows": [
8
+ {
9
+ "columns": [
10
+ {
11
+ "width": 12,
12
+ "toggleName": "View HSA Map",
13
+ "widget": "map1749061009678"
14
+ },
15
+ {
16
+ "width": 12,
17
+ "widget": "map1749061008090",
18
+ "toggleName": "View State Map"
19
+ },
20
+ {
21
+ "width": 12
22
+ }
23
+ ],
24
+ "toggle": true
25
+ }
26
+ ],
27
+ "visualizations": {
28
+ "map1749061008090": {
29
+ "annotations": [],
30
+ "general": {
31
+ "navigationTarget": "_self",
32
+ "annotationDropdownText": "Annotations",
33
+ "geoBorderColor": "darkGray",
34
+ "headerColor": "theme-blue",
35
+ "title": "covid",
36
+ "showTitle": false,
37
+ "titleStyle": "legacy",
38
+ "showSidebar": "hidden",
39
+ "showDownloadMediaButton": false,
40
+ "displayAsHex": false,
41
+ "displayStateLabels": false,
42
+ "territoriesAlwaysShow": false,
43
+ "language": "en",
44
+ "geoType": "us",
45
+ "geoLabelOverride": "",
46
+ "hasRegions": false,
47
+ "fullBorder": false,
48
+ "type": "data",
49
+ "convertFipsCodes": true,
50
+ "palette": {
51
+ "isReversed": false,
52
+ "name": "qualitative1",
53
+ "version": "1.0",
54
+ "customColors": [
55
+ "#6d085a",
56
+ "#b83d93",
57
+ "#ffffff",
58
+ "#3bbbb0",
59
+ "#006166",
60
+ "#939393",
61
+ "#333333"
62
+ ]
63
+ },
64
+ "allowMapZoom": true,
65
+ "hideGeoColumnInTooltip": true,
66
+ "hidePrimaryColumnInTooltip": false,
67
+ "hideUnselectedStates": true,
68
+ "statesPicked": [],
69
+ "equalNumberOptIn": false,
70
+ "expandDataTable": false
71
+ },
72
+ "type": "map",
73
+ "columns": {
74
+ "geo": {
75
+ "name": "state",
76
+ "label": "Location",
77
+ "tooltip": false,
78
+ "dataTable": true,
79
+ "displayColumn": ""
80
+ },
81
+ "primary": {
82
+ "dataTable": true,
83
+ "tooltip": false,
84
+ "prefix": "",
85
+ "suffix": "",
86
+ "name": "category",
87
+ "label": "Epidemic Trend Category",
88
+ "roundToPlace": 0
89
+ },
90
+ "navigate": {
91
+ "name": "Select Option"
92
+ },
93
+ "latitude": {
94
+ "name": ""
95
+ },
96
+ "longitude": {
97
+ "name": ""
98
+ },
99
+ "additionalColumn1": {
100
+ "label": "Probability Epidemic is Growing (%)",
101
+ "dataTable": true,
102
+ "tooltips": false,
103
+ "prefix": "",
104
+ "suffix": "",
105
+ "name": "p_growing",
106
+ "tooltip": false
107
+ },
108
+ "additionalColumn2": {
109
+ "label": "Date",
110
+ "dataTable": true,
111
+ "tooltips": false,
112
+ "prefix": "",
113
+ "suffix": "",
114
+ "name": "report_date"
115
+ },
116
+ "additionalColumn3": {
117
+ "label": "Epidemic Status",
118
+ "dataTable": false,
119
+ "tooltips": false,
120
+ "prefix": "",
121
+ "suffix": "",
122
+ "name": "category",
123
+ "tooltip": true
124
+ },
125
+ "additionalColumn4": {
126
+ "label": "Percent Visits",
127
+ "dataTable": false,
128
+ "tooltips": false,
129
+ "prefix": "",
130
+ "suffix": "",
131
+ "name": "percent_visits",
132
+ "tooltip": false
133
+ },
134
+ "additionalColumn5": {
135
+ "label": "Threshold Classification",
136
+ "dataTable": false,
137
+ "tooltips": false,
138
+ "prefix": "",
139
+ "suffix": "",
140
+ "name": "threshold_classification",
141
+ "tooltip": true
142
+ },
143
+ "additionalColumn6": {
144
+ "label": "Median",
145
+ "dataTable": false,
146
+ "tooltips": false,
147
+ "prefix": "",
148
+ "suffix": "",
149
+ "name": "median",
150
+ "tooltip": true
151
+ },
152
+ "additionalColumn7": {
153
+ "label": "Lower",
154
+ "dataTable": false,
155
+ "tooltips": false,
156
+ "prefix": "",
157
+ "suffix": "",
158
+ "name": "lower",
159
+ "tooltip": true
160
+ },
161
+ "additionalColumn8": {
162
+ "label": "Upper",
163
+ "dataTable": false,
164
+ "tooltips": false,
165
+ "prefix": "",
166
+ "suffix": "",
167
+ "name": "upper",
168
+ "tooltip": true
169
+ }
170
+ },
171
+ "legend": {
172
+ "descriptions": {},
173
+ "specialClasses": [],
174
+ "unified": false,
175
+ "singleColumn": true,
176
+ "singleRow": false,
177
+ "verticalSorted": false,
178
+ "showSpecialClassesLast": false,
179
+ "dynamicDescription": false,
180
+ "type": "category",
181
+ "numberOfItems": 6,
182
+ "position": "side",
183
+ "title": "Epidemic Trends",
184
+ "style": "circles",
185
+ "subStyle": "linear blocks",
186
+ "tickRotation": "",
187
+ "singleColumnLegend": false,
188
+ "hideBorder": false,
189
+ "groupBy": "",
190
+ "categoryValuesOrder": [
191
+ "Growing",
192
+ "Likely Growing",
193
+ "Not Changing",
194
+ "Likely Declining",
195
+ "Declining",
196
+ "Not Estimated",
197
+ "Data Unavailable"
198
+ ],
199
+ "additionalCategories": [
200
+ "Growing",
201
+ "Likely Growing",
202
+ "Not Changing",
203
+ "Likely Declining",
204
+ "Declining",
205
+ "Not Estimated",
206
+ "Data Unavailable"
207
+ ]
208
+ },
209
+ "filters": [],
210
+ "table": {
211
+ "wrapColumns": false,
212
+ "label": "Data Table",
213
+ "expanded": false,
214
+ "limitHeight": true,
215
+ "height": "600",
216
+ "caption": "",
217
+ "showDownloadUrl": false,
218
+ "downloadUrlLabel": "",
219
+ "showDataTableLink": false,
220
+ "showDownloadLinkBelow": true,
221
+ "showFullGeoNameInCSV": false,
222
+ "forceDisplay": true,
223
+ "download": true,
224
+ "indexLabel": "",
225
+ "cellMinWidth": "0",
226
+ "collapsible": true
227
+ },
228
+ "tooltips": {
229
+ "appearanceType": "hover",
230
+ "linkLabel": "Learn More",
231
+ "opacity": 90,
232
+ "capitalizeLabels": true
233
+ },
234
+ "visual": {
235
+ "border": false,
236
+ "borderColorTheme": false,
237
+ "accent": false,
238
+ "background": false,
239
+ "hideBackgroundColor": false,
240
+ "tp5Treatment": false,
241
+ "tp5Background": false,
242
+ "minBubbleSize": 1,
243
+ "maxBubbleSize": 20,
244
+ "extraBubbleBorder": false,
245
+ "cityStyle": "circle",
246
+ "cityStyleLabel": "",
247
+ "showBubbleZeros": false,
248
+ "additionalCityStyles": [],
249
+ "geoCodeCircleSize": 2
250
+ },
251
+ "mapPosition": {
252
+ "coordinates": [
253
+ 0,
254
+ 30
255
+ ],
256
+ "zoom": 1
257
+ },
258
+ "map": {
259
+ "layers": [],
260
+ "patterns": []
261
+ },
262
+ "hexMap": {
263
+ "type": "",
264
+ "shapeGroups": [
265
+ {
266
+ "legendTitle": "",
267
+ "legendDescription": "",
268
+ "items": [
269
+ {
270
+ "key": "",
271
+ "shape": "Arrow up",
272
+ "column": "",
273
+ "operator": "=",
274
+ "value": ""
275
+ }
276
+ ]
277
+ }
278
+ ]
279
+ },
280
+ "filterBehavior": "Filter Change",
281
+ "filterIntro": "",
282
+ "smallMultiples": {
283
+ "mode": "",
284
+ "tileColumn": "",
285
+ "tilesPerRowDesktop": 2,
286
+ "tilesPerRowMobile": 1,
287
+ "tileOrderType": "asc",
288
+ "tileOrder": [],
289
+ "tileTitles": {},
290
+ "synchronizedTooltips": true
291
+ },
292
+ "markupVariables": [],
293
+ "enableMarkupVariables": false,
294
+ "dataKey": "rt_estimates_map",
295
+ "dataDescription": {
296
+ "horizontal": false,
297
+ "series": false
298
+ },
299
+ "validated": "4.24.3",
300
+ "visualizationType": "us",
301
+ "version": "4.25.1",
302
+ "migrations": {
303
+ "addColorMigration": true
304
+ },
305
+ "uid": "map1749061008090",
306
+ "showEditorPanel": true,
307
+ "locale": "en-US",
308
+ "dataMetadata": {}
309
+ },
310
+ "map1749061009678": {
311
+ "annotations": [],
312
+ "general": {
313
+ "navigationTarget": "_self",
314
+ "noDataMessage": "No State Selected",
315
+ "annotationDropdownText": "Annotations",
316
+ "geoBorderColor": "darkGray",
317
+ "headerColor": "theme-blue",
318
+ "title": "",
319
+ "showTitle": true,
320
+ "titleStyle": "small",
321
+ "showSidebar": "hidden",
322
+ "showDownloadMediaButton": false,
323
+ "displayAsHex": false,
324
+ "displayStateLabels": true,
325
+ "territoriesAlwaysShow": false,
326
+ "language": "en",
327
+ "geoType": "us-county",
328
+ "geoLabelOverride": "",
329
+ "hasRegions": false,
330
+ "fullBorder": false,
331
+ "type": "data",
332
+ "convertFipsCodes": true,
333
+ "palette": {
334
+ "isReversed": false,
335
+ "name": "qualitative1",
336
+ "version": "1.0",
337
+ "customColors": [
338
+ "#6d085a",
339
+ "#b83d93",
340
+ "#ffffff",
341
+ "#3bbbb0",
342
+ "#006166",
343
+ "#939393",
344
+ "#333333"
345
+ ]
346
+ },
347
+ "allowMapZoom": true,
348
+ "hideGeoColumnInTooltip": false,
349
+ "hidePrimaryColumnInTooltip": false,
350
+ "hideUnselectedStates": true,
351
+ "statesPicked": [],
352
+ "expandDataTable": false,
353
+ "showHSABoundaries": true,
354
+ "showNeighboringStates": true,
355
+ "showStateDropdown": false
356
+ },
357
+ "type": "map",
358
+ "columns": {
359
+ "geo": {
360
+ "name": "county_fips",
361
+ "label": "Location",
362
+ "tooltip": false,
363
+ "dataTable": true,
364
+ "displayColumn": "county_name"
365
+ },
366
+ "primary": {
367
+ "dataTable": false,
368
+ "tooltip": false,
369
+ "prefix": "",
370
+ "suffix": "",
371
+ "name": "category",
372
+ "label": "Epidemic Trend",
373
+ "roundToPlace": 0
374
+ },
375
+ "navigate": {
376
+ "name": ""
377
+ },
378
+ "latitude": {
379
+ "name": ""
380
+ },
381
+ "longitude": {
382
+ "name": ""
383
+ },
384
+ "hsa": {
385
+ "name": "hsa_description"
386
+ },
387
+ "additionalColumn2": {
388
+ "label": "Epidemic Trend Category",
389
+ "dataTable": true,
390
+ "tooltips": false,
391
+ "prefix": "",
392
+ "suffix": "",
393
+ "name": "category"
394
+ },
395
+ "additionalColumn3": {
396
+ "label": "Probability Epidemic is Growing (%)",
397
+ "dataTable": true,
398
+ "tooltips": false,
399
+ "prefix": "",
400
+ "suffix": "",
401
+ "name": "p_growing"
402
+ },
403
+ "additionalColumn4": {
404
+ "label": "Date",
405
+ "dataTable": true,
406
+ "tooltips": false,
407
+ "prefix": "",
408
+ "suffix": "",
409
+ "name": "report_date"
410
+ },
411
+ "additionalColumn5": {
412
+ "label": "Epidemic Trend",
413
+ "dataTable": false,
414
+ "tooltips": false,
415
+ "prefix": "",
416
+ "suffix": "",
417
+ "name": "category_tooltip",
418
+ "tooltip": true
419
+ }
420
+ },
421
+ "legend": {
422
+ "descriptions": {},
423
+ "specialClasses": [],
424
+ "unified": false,
425
+ "singleColumn": true,
426
+ "singleRow": false,
427
+ "verticalSorted": false,
428
+ "showSpecialClassesLast": false,
429
+ "dynamicDescription": false,
430
+ "type": "category",
431
+ "numberOfItems": 3,
432
+ "position": "side",
433
+ "title": "Epidemic Trends",
434
+ "style": "circles",
435
+ "subStyle": "linear blocks",
436
+ "tickRotation": "",
437
+ "singleColumnLegend": false,
438
+ "hideBorder": false,
439
+ "groupBy": "",
440
+ "categoryValuesOrder": [
441
+ "Growing",
442
+ "Likely Growing",
443
+ "Not Changing",
444
+ "Likely Declining",
445
+ "Declining",
446
+ "Not Estimated"
447
+ ],
448
+ "additionalCategories": [
449
+ "Growing",
450
+ "Likely Growing",
451
+ "Not Changing",
452
+ "Likely Declining",
453
+ "Declining",
454
+ "Not Estimated"
455
+ ]
456
+ },
457
+ "filters": [],
458
+ "table": {
459
+ "wrapColumns": false,
460
+ "label": "Data Table",
461
+ "expanded": false,
462
+ "limitHeight": true,
463
+ "height": "650",
464
+ "caption": "",
465
+ "showDownloadUrl": false,
466
+ "downloadUrlLabel": "",
467
+ "showDataTableLink": false,
468
+ "showDownloadLinkBelow": true,
469
+ "showFullGeoNameInCSV": true,
470
+ "forceDisplay": true,
471
+ "download": true,
472
+ "indexLabel": "",
473
+ "cellMinWidth": "0",
474
+ "collapsible": true,
475
+ "sharedFilterColumns": [
476
+ "State"
477
+ ],
478
+ "showNonGeoData": true
479
+ },
480
+ "tooltips": {
481
+ "appearanceType": "hover",
482
+ "linkLabel": "Learn More",
483
+ "opacity": 90,
484
+ "capitalizeLabels": true
485
+ },
486
+ "visual": {
487
+ "border": false,
488
+ "borderColorTheme": false,
489
+ "accent": false,
490
+ "background": false,
491
+ "hideBackgroundColor": false,
492
+ "tp5Treatment": false,
493
+ "tp5Background": false,
494
+ "minBubbleSize": 1,
495
+ "maxBubbleSize": 20,
496
+ "extraBubbleBorder": false,
497
+ "cityStyle": "circle",
498
+ "cityStyleLabel": "",
499
+ "showBubbleZeros": false,
500
+ "additionalCityStyles": [],
501
+ "geoCodeCircleSize": 8
502
+ },
503
+ "mapPosition": {
504
+ "coordinates": [
505
+ 0,
506
+ 30
507
+ ],
508
+ "zoom": 1
509
+ },
510
+ "map": {
511
+ "layers": [],
512
+ "patterns": []
513
+ },
514
+ "hexMap": {
515
+ "type": "",
516
+ "shapeGroups": [
517
+ {
518
+ "legendTitle": "",
519
+ "legendDescription": "",
520
+ "items": [
521
+ {
522
+ "key": "",
523
+ "shape": "Arrow Up",
524
+ "column": "",
525
+ "operator": "=",
526
+ "value": ""
527
+ }
528
+ ]
529
+ }
530
+ ]
531
+ },
532
+ "filterBehavior": "Filter Change",
533
+ "filterIntro": "",
534
+ "smallMultiples": {
535
+ "mode": "",
536
+ "tileColumn": "",
537
+ "tilesPerRowDesktop": 2,
538
+ "tilesPerRowMobile": 1,
539
+ "tileOrderType": "asc",
540
+ "tileOrder": [],
541
+ "tileTitles": {},
542
+ "synchronizedTooltips": true
543
+ },
544
+ "markupVariables": [],
545
+ "enableMarkupVariables": false,
546
+ "openModal": true,
547
+ "uid": "map1749061009678",
548
+ "dataDescription": {
549
+ "horizontal": false,
550
+ "series": false
551
+ },
552
+ "dataKey": "rt_substate_map",
553
+ "showEditorPanel": true,
554
+ "locale": "en-US",
555
+ "dataMetadata": {},
556
+ "migrations": {
557
+ "showPuertoRico": true
558
+ }
559
+ }
560
+ },
561
+ "table": {
562
+ "label": "Data Table",
563
+ "show": false,
564
+ "showDownloadUrl": false,
565
+ "showVertical": true
566
+ },
567
+ "id": 15,
568
+ "category": "General",
569
+ "type": "dashboard",
570
+ "subType": null,
571
+ "orientation": null,
572
+ "content": "Present multiple data visualizations with shared filter controls.",
573
+ "visualizationType": null,
574
+ "activeVizButtonID": 15,
575
+ "version": "4.26.4-1",
576
+ "migrations": {
577
+ "addColorMigration": true
578
+ },
579
+ "uuid": 1776960009230,
580
+ "label": "COVID-19",
581
+ "general": {
582
+ "palette": {
583
+ "version": "1.0",
584
+ "backups": [
585
+ {
586
+ "version": "1.0"
587
+ },
588
+ {
589
+ "version": "1.0"
590
+ },
591
+ {
592
+ "version": "1.0"
593
+ },
594
+ {
595
+ "version": "1.0"
596
+ },
597
+ {
598
+ "version": "1.0"
599
+ },
600
+ {
601
+ "version": "1.0"
602
+ },
603
+ {
604
+ "version": "1.0"
605
+ },
606
+ {
607
+ "version": "1.0"
608
+ },
609
+ {
610
+ "version": "1.0"
611
+ },
612
+ {
613
+ "version": "1.0"
614
+ },
615
+ {
616
+ "version": "1.0"
617
+ },
618
+ {
619
+ "version": "1.0"
620
+ },
621
+ {
622
+ "version": "1.0"
623
+ },
624
+ {
625
+ "version": "1.0"
626
+ }
627
+ ]
628
+ }
629
+ },
630
+ "locale": "en-US",
631
+ "datasets": {
632
+ "rt_substate_map": {
633
+ "dataMetadata": {},
634
+ "dataFileSize": 662465,
635
+ "dataFileName": "https://cfa-public.services.cdc.gov/od-public?$datakey=rt_estimates_map&$select=county_fips,county_name,hsa_description,category,p_growing,report_date,category_tooltip&disease=%22COVID-19%22&$limit=10000&location_type=%22hsa%22&$order=county_name",
636
+ "dataFileSourceType": "url",
637
+ "dataFileFormat": "JSON",
638
+ "preview": true,
639
+ "dataUrl": "https://cfa-public.services.cdc.gov/od-public?$datakey=rt_estimates_map&$select=county_fips,county_name,hsa_description,category,p_growing,report_date,category_tooltip&disease=%22COVID-19%22&$limit=10000&location_type=%22hsa%22&$order=county_name"
640
+ },
641
+ "rt_estimates_map": {
642
+ "dataFileSize": 21449,
643
+ "dataFileName": "https://cfa-public.services.cdc.gov/od-public?$datakey=rt_estimates_map&disease=\"COVID-19\"&location_type=%22state%22&$limit=60",
644
+ "dataFileSourceType": "url",
645
+ "dataFileFormat": "JSON",
646
+ "preview": false,
647
+ "dataUrl": "https://cfa-public.services.cdc.gov/od-public?$datakey=rt_estimates_map&disease=\"COVID-19\"&location_type=%22state%22&$limit=60",
648
+ "dataMetadata": {}
649
+ }
650
+ }
651
+ }