@cdc/dashboard 4.26.4 → 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 (91) hide show
  1. package/CONFIG.md +77 -30
  2. package/LICENSE +201 -0
  3. package/dist/cdcdashboard.js +49936 -49166
  4. package/examples/dashboard-conditions-filters-incomplete.json +221 -0
  5. package/examples/dashboard-missing-datasets-multi.json +174 -0
  6. package/examples/dashboard-missing-datasets-single.json +121 -0
  7. package/examples/dashboard-multi-dashboard-version-regression.json +146 -0
  8. package/examples/dashboard-shared-filter-row-delete-cleanup.json +186 -0
  9. package/examples/dashboard-stale-dataset-keys.json +181 -0
  10. package/examples/dashboard-tiered-filter-regression.json +190 -0
  11. package/examples/private/cfa-dashboard.json +651 -0
  12. package/examples/private/data-bite-wrap.json +6936 -0
  13. package/examples/private/multi-dash-fix.json +16963 -0
  14. package/examples/private/versions.json +41612 -0
  15. package/examples/us-map-filter-example.json +1074 -0
  16. package/package.json +9 -9
  17. package/src/CdcDashboard.tsx +6 -2
  18. package/src/CdcDashboardComponent.tsx +178 -87
  19. package/src/DashboardCopyPasteContext.test.tsx +33 -0
  20. package/src/DashboardCopyPasteContext.tsx +48 -0
  21. package/src/_stories/Dashboard.EditorRegression.stories.tsx +72 -0
  22. package/src/_stories/Dashboard.Regression.stories.tsx +196 -0
  23. package/src/_stories/Dashboard.Zoom.stories.tsx +88 -0
  24. package/src/_stories/Dashboard.stories.tsx +294 -0
  25. package/src/_stories/FilteredTextMigrationComparison.stories.tsx +87 -0
  26. package/src/components/Column.test.tsx +176 -0
  27. package/src/components/Column.tsx +214 -13
  28. package/src/components/DashboardConditionModal.test.tsx +420 -0
  29. package/src/components/DashboardConditionModal.tsx +367 -0
  30. package/src/components/DashboardConditionSummary.tsx +59 -0
  31. package/src/components/DashboardEditors.tsx +8 -0
  32. package/src/components/DashboardFilters/DashboardFilters.test.tsx +139 -1
  33. package/src/components/DashboardFilters/DashboardFilters.tsx +192 -174
  34. package/src/components/DashboardFilters/DashboardFiltersEditor/DashboardFiltersEditor.test.tsx +164 -0
  35. package/src/components/DashboardFilters/DashboardFiltersEditor/DashboardFiltersEditor.tsx +41 -2
  36. package/src/components/DashboardFilters/DashboardFiltersEditor/components/FilterEditor.test.tsx +180 -3
  37. package/src/components/DashboardFilters/DashboardFiltersEditor/components/FilterEditor.tsx +15 -32
  38. package/src/components/DashboardFilters/DashboardFiltersWrapper.test.tsx +142 -0
  39. package/src/components/DashboardFilters/DashboardFiltersWrapper.tsx +32 -27
  40. package/src/components/DashboardFilters/dashboardfilter.styles.css +42 -27
  41. package/src/components/DataDesignerModal.tsx +2 -1
  42. package/src/components/Grid.tsx +8 -4
  43. package/src/components/Header/Header.tsx +36 -17
  44. package/src/components/Row.test.tsx +228 -0
  45. package/src/components/Row.tsx +93 -18
  46. package/src/components/VisualizationRow.test.tsx +396 -0
  47. package/src/components/VisualizationRow.tsx +110 -35
  48. package/src/components/VisualizationsPanel/VisualizationsPanel.test.tsx +49 -0
  49. package/src/components/VisualizationsPanel/VisualizationsPanel.tsx +14 -13
  50. package/src/components/Widget/Widget.test.tsx +218 -0
  51. package/src/components/Widget/Widget.tsx +119 -17
  52. package/src/components/Widget/widget.styles.css +31 -18
  53. package/src/components/dashboard-condition-modal.css +76 -0
  54. package/src/components/dashboard-condition-summary.css +87 -0
  55. package/src/helpers/addValuesToDashboardFilters.ts +3 -5
  56. package/src/helpers/addVisualization.ts +15 -4
  57. package/src/helpers/cloneDashboardWidget.ts +127 -0
  58. package/src/helpers/dashboardColumnWidgets.ts +99 -0
  59. package/src/helpers/dashboardConditionUi.ts +47 -0
  60. package/src/helpers/dashboardConditions.ts +200 -0
  61. package/src/helpers/dashboardFilterTargets.ts +156 -0
  62. package/src/helpers/filterData.ts +4 -9
  63. package/src/helpers/filterVisibility.ts +20 -0
  64. package/src/helpers/formatConfigBeforeSave.ts +2 -2
  65. package/src/helpers/getFilteredData.ts +18 -5
  66. package/src/helpers/getUpdateConfig.ts +43 -12
  67. package/src/helpers/getVizRowColumnLocator.ts +11 -1
  68. package/src/helpers/iconHash.tsx +9 -3
  69. package/src/helpers/mapDataToConfig.ts +31 -29
  70. package/src/helpers/reloadURLHelpers.ts +25 -5
  71. package/src/helpers/removeDashboardFilter.ts +33 -33
  72. package/src/helpers/tests/addVisualization.test.ts +53 -9
  73. package/src/helpers/tests/cloneDashboardWidget.test.ts +136 -0
  74. package/src/helpers/tests/dashboardColumnWidgets.test.ts +99 -0
  75. package/src/helpers/tests/dashboardConditionUi.test.ts +41 -0
  76. package/src/helpers/tests/dashboardConditions.test.ts +428 -0
  77. package/src/helpers/tests/formatConfigBeforeSave.test.ts +51 -0
  78. package/src/helpers/tests/getFilteredData.test.ts +265 -86
  79. package/src/helpers/tests/getUpdateConfig.test.ts +338 -0
  80. package/src/helpers/tests/reloadURLHelpers.test.ts +394 -238
  81. package/src/index.tsx +6 -3
  82. package/src/scss/grid.scss +249 -20
  83. package/src/scss/main.scss +108 -29
  84. package/src/store/dashboard.actions.ts +17 -4
  85. package/src/store/dashboard.reducer.test.ts +538 -0
  86. package/src/store/dashboard.reducer.ts +135 -22
  87. package/src/test/CdcDashboard.test.tsx +148 -0
  88. package/src/test/CdcDashboardComponent.test.tsx +935 -2
  89. package/src/types/ConfigRow.ts +15 -0
  90. package/src/types/DashboardFilters.ts +4 -0
  91. package/src/types/SharedFilter.ts +1 -0
@@ -0,0 +1,1074 @@
1
+ {
2
+ "dashboard": {
3
+ "theme": "theme-blue",
4
+ "titleStyle": "small",
5
+ "sharedFilters": [
6
+ {
7
+ "key": "New Dashboard Filter 1",
8
+ "showDropdown": true,
9
+ "values": [
10
+ "Alabama",
11
+ "Alaska",
12
+ "American Samoa",
13
+ "Arizona",
14
+ "Arkansas",
15
+ "California",
16
+ "Colorado",
17
+ "Connecticut",
18
+ "DC",
19
+ "Delaware",
20
+ "Florida",
21
+ "Georgia",
22
+ "Guam",
23
+ "Hawaii",
24
+ "Idaho",
25
+ "Illinois",
26
+ "Indiana",
27
+ "Iowa",
28
+ "Kansas",
29
+ "Kentucky",
30
+ "Louisiana",
31
+ "Maine",
32
+ "Marshall Islands",
33
+ "Maryland",
34
+ "Massachusetts",
35
+ "Michigan",
36
+ "Micronesia",
37
+ "Minnesota",
38
+ "Mississippi",
39
+ "Montana",
40
+ "Nebraska",
41
+ "Nevada",
42
+ "New Hampshire",
43
+ "New Jersey",
44
+ "New Mexico",
45
+ "New York",
46
+ "North Carolina",
47
+ "North Dakota",
48
+ "Northern Mariana Islands",
49
+ "Ohio",
50
+ "Oklahoma",
51
+ "Oregon",
52
+ "Overall",
53
+ "Palau",
54
+ "Pennsylvania",
55
+ "Puerto Rico",
56
+ "Rhode Island",
57
+ "South Carolina",
58
+ "South Dakota",
59
+ "Tennessee",
60
+ "Texas",
61
+ "Utah",
62
+ "Vermont",
63
+ "Virgin Islands",
64
+ "Virginia",
65
+ "Washington",
66
+ "West Virginia",
67
+ "Wyoming"
68
+ ],
69
+ "type": "datafilter",
70
+ "orderedValues": [
71
+ "Alabama",
72
+ "Alaska",
73
+ "American Samoa",
74
+ "Arizona",
75
+ "Arkansas",
76
+ "California",
77
+ "Colorado",
78
+ "Connecticut",
79
+ "DC",
80
+ "Delaware",
81
+ "Florida",
82
+ "Georgia",
83
+ "Guam",
84
+ "Hawaii",
85
+ "Idaho",
86
+ "Illinois",
87
+ "Indiana",
88
+ "Iowa",
89
+ "Kansas",
90
+ "Kentucky",
91
+ "Louisiana",
92
+ "Maine",
93
+ "Marshall Islands",
94
+ "Maryland",
95
+ "Massachusetts",
96
+ "Michigan",
97
+ "Micronesia",
98
+ "Minnesota",
99
+ "Mississippi",
100
+ "Montana",
101
+ "Nebraska",
102
+ "Nevada",
103
+ "New Hampshire",
104
+ "New Jersey",
105
+ "New Mexico",
106
+ "New York",
107
+ "North Carolina",
108
+ "North Dakota",
109
+ "Northern Mariana Islands",
110
+ "Ohio",
111
+ "Oklahoma",
112
+ "Oregon",
113
+ "Overall",
114
+ "Palau",
115
+ "Pennsylvania",
116
+ "Puerto Rico",
117
+ "Rhode Island",
118
+ "South Carolina",
119
+ "South Dakota",
120
+ "Tennessee",
121
+ "Texas",
122
+ "Utah",
123
+ "Vermont",
124
+ "Virgin Islands",
125
+ "Virginia",
126
+ "Washington",
127
+ "West Virginia",
128
+ "Wyoming"
129
+ ],
130
+ "columnName": "STATE",
131
+ "defaultValue": "Overall",
132
+ "tier": 1,
133
+ "setBy": "map1777995471040",
134
+ "usedBy": [
135
+ "data-bite1777995487417"
136
+ ]
137
+ }
138
+ ]
139
+ },
140
+ "rows": [
141
+ {
142
+ "columns": [
143
+ {
144
+ "width": 12,
145
+ "widget": "data-bite1777995487417"
146
+ }
147
+ ],
148
+ "uuid": "row-pp0v3qzq"
149
+ },
150
+ {
151
+ "columns": [
152
+ {
153
+ "width": 12,
154
+ "widget": "dashboardFilters1777995447009"
155
+ }
156
+ ],
157
+ "uuid": "row-bi6feaxu"
158
+ },
159
+ {
160
+ "columns": [
161
+ {
162
+ "width": 12,
163
+ "widget": "map1777995471040"
164
+ }
165
+ ],
166
+ "uuid": "row-lflllmwn"
167
+ }
168
+ ],
169
+ "visualizations": {
170
+ "dashboardFilters1777995447009": {
171
+ "filters": [],
172
+ "filterBehavior": "Apply Button",
173
+ "newViz": true,
174
+ "openModal": true,
175
+ "uid": "dashboardFilters1777995447009",
176
+ "type": "dashboardFilters",
177
+ "sharedFilterIndexes": [
178
+ 0
179
+ ],
180
+ "visualizationType": "dashboardFilters",
181
+ "showEditorPanel": false,
182
+ "dataMetadata": {},
183
+ "dashboardFilters": [
184
+ {
185
+ "columnName": "STATE",
186
+ "active": "Overall",
187
+ "values": [
188
+ "Alabama",
189
+ "Alaska",
190
+ "American Samoa",
191
+ "Arizona",
192
+ "Arkansas",
193
+ "California",
194
+ "Colorado",
195
+ "Connecticut",
196
+ "DC",
197
+ "Delaware",
198
+ "Florida",
199
+ "Georgia",
200
+ "Guam",
201
+ "Hawaii",
202
+ "Idaho",
203
+ "Illinois",
204
+ "Indiana",
205
+ "Iowa",
206
+ "Kansas",
207
+ "Kentucky",
208
+ "Louisiana",
209
+ "Maine",
210
+ "Marshall Islands",
211
+ "Maryland",
212
+ "Massachusetts",
213
+ "Michigan",
214
+ "Micronesia",
215
+ "Minnesota",
216
+ "Mississippi",
217
+ "Montana",
218
+ "Nebraska",
219
+ "Nevada",
220
+ "New Hampshire",
221
+ "New Jersey",
222
+ "New Mexico",
223
+ "New York",
224
+ "North Carolina",
225
+ "North Dakota",
226
+ "Northern Mariana Islands",
227
+ "Ohio",
228
+ "Oklahoma",
229
+ "Oregon",
230
+ "Overall",
231
+ "Palau",
232
+ "Pennsylvania",
233
+ "Puerto Rico",
234
+ "Rhode Island",
235
+ "South Carolina",
236
+ "South Dakota",
237
+ "Tennessee",
238
+ "Texas",
239
+ "Utah",
240
+ "Vermont",
241
+ "Virgin Islands",
242
+ "Virginia",
243
+ "Washington",
244
+ "West Virginia",
245
+ "Wyoming"
246
+ ]
247
+ }
248
+ ],
249
+ "filterIntro": "Choose a state:",
250
+ "applyFiltersButtonText": "Apply"
251
+ },
252
+ "map1777995471040": {
253
+ "annotations": [],
254
+ "general": {
255
+ "navigationTarget": "_self",
256
+ "annotationDropdownText": "Annotations",
257
+ "geoBorderColor": "darkGray",
258
+ "headerColor": "theme-blue",
259
+ "title": "",
260
+ "showTitle": true,
261
+ "titleStyle": "small",
262
+ "showSidebar": true,
263
+ "showDownloadMediaButton": false,
264
+ "displayAsHex": false,
265
+ "displayStateLabels": true,
266
+ "territoriesAlwaysShow": false,
267
+ "language": "en",
268
+ "geoType": "us",
269
+ "geoLabelOverride": "",
270
+ "hasRegions": false,
271
+ "fullBorder": false,
272
+ "type": "data",
273
+ "convertFipsCodes": true,
274
+ "palette": {
275
+ "isReversed": false,
276
+ "name": "sequential_blue",
277
+ "version": "2.0"
278
+ },
279
+ "allowMapZoom": true,
280
+ "hideGeoColumnInTooltip": false,
281
+ "hidePrimaryColumnInTooltip": false,
282
+ "hideUnselectedStates": true,
283
+ "statesPicked": []
284
+ },
285
+ "type": "map",
286
+ "columns": {
287
+ "geo": {
288
+ "name": "STATE",
289
+ "label": "Location",
290
+ "tooltip": false,
291
+ "dataTable": true,
292
+ "displayColumn": ""
293
+ },
294
+ "primary": {
295
+ "dataTable": true,
296
+ "tooltip": true,
297
+ "prefix": "",
298
+ "suffix": "",
299
+ "name": "Rate",
300
+ "label": "Rate",
301
+ "roundToPlace": 0
302
+ },
303
+ "navigate": {
304
+ "name": ""
305
+ },
306
+ "latitude": {
307
+ "name": ""
308
+ },
309
+ "longitude": {
310
+ "name": ""
311
+ }
312
+ },
313
+ "legend": {
314
+ "descriptions": {},
315
+ "specialClasses": [],
316
+ "unified": false,
317
+ "singleColumn": false,
318
+ "singleRow": false,
319
+ "verticalSorted": false,
320
+ "showSpecialClassesLast": false,
321
+ "dynamicDescription": false,
322
+ "type": "equalnumber",
323
+ "numberOfItems": 5,
324
+ "position": "top",
325
+ "title": "",
326
+ "style": "gradient",
327
+ "subStyle": "linear blocks",
328
+ "tickRotation": "",
329
+ "singleColumnLegend": false,
330
+ "hideBorder": true,
331
+ "groupBy": ""
332
+ },
333
+ "filters": [],
334
+ "table": {
335
+ "wrapColumns": false,
336
+ "label": "Data Table",
337
+ "expanded": false,
338
+ "limitHeight": false,
339
+ "height": "",
340
+ "caption": "",
341
+ "showDownloadUrl": false,
342
+ "downloadUrlLabel": "",
343
+ "showDataTableLink": true,
344
+ "showDownloadLinkBelow": true,
345
+ "showFullGeoNameInCSV": false,
346
+ "forceDisplay": true,
347
+ "download": false,
348
+ "indexLabel": "",
349
+ "cellMinWidth": "0",
350
+ "collapsible": true,
351
+ "sharedFilterColumns": [
352
+ "STATE"
353
+ ]
354
+ },
355
+ "tooltips": {
356
+ "appearanceType": "hover",
357
+ "linkLabel": "Learn More",
358
+ "opacity": 90
359
+ },
360
+ "visual": {
361
+ "border": false,
362
+ "borderColorTheme": false,
363
+ "accent": false,
364
+ "background": false,
365
+ "hideBackgroundColor": false,
366
+ "tp5Treatment": false,
367
+ "tp5Background": false,
368
+ "minBubbleSize": 1,
369
+ "maxBubbleSize": 20,
370
+ "extraBubbleBorder": false,
371
+ "cityStyle": "circle",
372
+ "cityStyleLabel": "",
373
+ "showBubbleZeros": false,
374
+ "additionalCityStyles": [],
375
+ "geoCodeCircleSize": 8
376
+ },
377
+ "mapPosition": {
378
+ "coordinates": [
379
+ 0,
380
+ 30
381
+ ],
382
+ "zoom": 1
383
+ },
384
+ "map": {
385
+ "layers": [],
386
+ "patterns": []
387
+ },
388
+ "hexMap": {
389
+ "type": "",
390
+ "shapeGroups": [
391
+ {
392
+ "legendTitle": "",
393
+ "legendDescription": "",
394
+ "items": [
395
+ {
396
+ "key": "",
397
+ "shape": "Arrow Up",
398
+ "column": "",
399
+ "operator": "=",
400
+ "value": ""
401
+ }
402
+ ]
403
+ }
404
+ ]
405
+ },
406
+ "filterBehavior": "Filter Change",
407
+ "filterIntro": "",
408
+ "smallMultiples": {
409
+ "mode": "",
410
+ "tileColumn": "",
411
+ "tilesPerRowDesktop": 2,
412
+ "tilesPerRowMobile": 1,
413
+ "tileOrderType": "asc",
414
+ "tileOrder": [],
415
+ "tileTitles": {},
416
+ "synchronizedTooltips": true
417
+ },
418
+ "markupVariables": [],
419
+ "enableMarkupVariables": false,
420
+ "openModal": true,
421
+ "uid": "map1777995471040",
422
+ "dataDescription": {
423
+ "horizontal": false,
424
+ "series": false
425
+ },
426
+ "dataKey": "valid-data-map.csv",
427
+ "showEditorPanel": false,
428
+ "dashboardFilters": [
429
+ {
430
+ "columnName": "STATE",
431
+ "active": "Overall",
432
+ "values": [
433
+ "Alabama",
434
+ "Alaska",
435
+ "American Samoa",
436
+ "Arizona",
437
+ "Arkansas",
438
+ "California",
439
+ "Colorado",
440
+ "Connecticut",
441
+ "DC",
442
+ "Delaware",
443
+ "Florida",
444
+ "Georgia",
445
+ "Guam",
446
+ "Hawaii",
447
+ "Idaho",
448
+ "Illinois",
449
+ "Indiana",
450
+ "Iowa",
451
+ "Kansas",
452
+ "Kentucky",
453
+ "Louisiana",
454
+ "Maine",
455
+ "Marshall Islands",
456
+ "Maryland",
457
+ "Massachusetts",
458
+ "Michigan",
459
+ "Micronesia",
460
+ "Minnesota",
461
+ "Mississippi",
462
+ "Montana",
463
+ "Nebraska",
464
+ "Nevada",
465
+ "New Hampshire",
466
+ "New Jersey",
467
+ "New Mexico",
468
+ "New York",
469
+ "North Carolina",
470
+ "North Dakota",
471
+ "Northern Mariana Islands",
472
+ "Ohio",
473
+ "Oklahoma",
474
+ "Oregon",
475
+ "Overall",
476
+ "Palau",
477
+ "Pennsylvania",
478
+ "Puerto Rico",
479
+ "Rhode Island",
480
+ "South Carolina",
481
+ "South Dakota",
482
+ "Tennessee",
483
+ "Texas",
484
+ "Utah",
485
+ "Vermont",
486
+ "Virgin Islands",
487
+ "Virginia",
488
+ "Washington",
489
+ "West Virginia",
490
+ "Wyoming"
491
+ ]
492
+ }
493
+ ],
494
+ "dataMetadata": {}
495
+ },
496
+ "data-bite1777995487417": {
497
+ "type": "data-bite",
498
+ "dataBite": "",
499
+ "dataFunction": "Median",
500
+ "dataColumn": "Rate",
501
+ "bitePosition": "Left",
502
+ "biteFontSize": 24,
503
+ "fontSize": "medium",
504
+ "biteBody": "This is data for {{state}}",
505
+ "imageData": {
506
+ "display": "none",
507
+ "url": "",
508
+ "alt": "",
509
+ "options": []
510
+ },
511
+ "dataFormat": {
512
+ "roundToPlace": 0,
513
+ "commas": true,
514
+ "prefix": "",
515
+ "suffix": "%"
516
+ },
517
+ "biteStyle": "tp5",
518
+ "filters": [],
519
+ "subtext": "",
520
+ "title": "",
521
+ "theme": "theme-blue",
522
+ "shadow": false,
523
+ "visual": {
524
+ "border": true,
525
+ "accent": false,
526
+ "background": false,
527
+ "hideBackgroundColor": false,
528
+ "borderColorTheme": false,
529
+ "showTitle": true,
530
+ "useWrap": false,
531
+ "whiteBackground": true
532
+ },
533
+ "general": {
534
+ "palette": {
535
+ "version": "1.0",
536
+ "backups": [
537
+ {
538
+ "version": "1.0"
539
+ },
540
+ {
541
+ "version": "1.0"
542
+ }
543
+ ]
544
+ },
545
+ "isCompactStyle": false
546
+ },
547
+ "trendIndicator": {
548
+ "mode": null,
549
+ "column": "",
550
+ "numericThreshold": 0,
551
+ "mappings": [],
552
+ "showNoChangeArrows": false,
553
+ "upLabel": "",
554
+ "downLabel": "",
555
+ "noChangeLabel": "",
556
+ "trendLabel": ""
557
+ },
558
+ "dataColors": {
559
+ "column": "",
560
+ "mappings": []
561
+ },
562
+ "markupVariables": [
563
+ {
564
+ "sourceType": "column",
565
+ "name": "STATE",
566
+ "tag": "{{state}}",
567
+ "columnName": "STATE",
568
+ "conditions": [],
569
+ "addCommas": false,
570
+ "hideOnNull": false,
571
+ "outputType": "value"
572
+ }
573
+ ],
574
+ "enableMarkupVariables": true,
575
+ "filterBehavior": "Filter Change",
576
+ "openModal": true,
577
+ "uid": "data-bite1777995487417",
578
+ "visualizationType": "data-bite",
579
+ "dataDescription": {
580
+ "horizontal": false,
581
+ "series": false
582
+ },
583
+ "dataKey": "valid-data-map.csv",
584
+ "showEditorPanel": false,
585
+ "dashboardFilters": [
586
+ {
587
+ "columnName": "STATE",
588
+ "active": "North Dakota",
589
+ "values": [
590
+ "Alabama",
591
+ "Alaska",
592
+ "American Samoa",
593
+ "Arizona",
594
+ "Arkansas",
595
+ "California",
596
+ "Colorado",
597
+ "Connecticut",
598
+ "DC",
599
+ "Delaware",
600
+ "Florida",
601
+ "Georgia",
602
+ "Guam",
603
+ "Hawaii",
604
+ "Idaho",
605
+ "Illinois",
606
+ "Indiana",
607
+ "Iowa",
608
+ "Kansas",
609
+ "Kentucky",
610
+ "Louisiana",
611
+ "Maine",
612
+ "Marshall Islands",
613
+ "Maryland",
614
+ "Massachusetts",
615
+ "Michigan",
616
+ "Micronesia",
617
+ "Minnesota",
618
+ "Mississippi",
619
+ "Montana",
620
+ "Nebraska",
621
+ "Nevada",
622
+ "New Hampshire",
623
+ "New Jersey",
624
+ "New Mexico",
625
+ "New York",
626
+ "North Carolina",
627
+ "North Dakota",
628
+ "Northern Mariana Islands",
629
+ "Ohio",
630
+ "Oklahoma",
631
+ "Oregon",
632
+ "Overall",
633
+ "Palau",
634
+ "Pennsylvania",
635
+ "Puerto Rico",
636
+ "Rhode Island",
637
+ "South Carolina",
638
+ "South Dakota",
639
+ "Tennessee",
640
+ "Texas",
641
+ "Utah",
642
+ "Vermont",
643
+ "Virgin Islands",
644
+ "Virginia",
645
+ "Washington",
646
+ "West Virginia",
647
+ "Wyoming"
648
+ ]
649
+ }
650
+ ],
651
+ "dataMetadata": {},
652
+ "version": "4.26.4-1",
653
+ "migrations": {
654
+ "addColorMigration": true
655
+ },
656
+ "locale": "en-US"
657
+ }
658
+ },
659
+ "table": {
660
+ "label": "Data Table",
661
+ "show": true,
662
+ "showDownloadUrl": false,
663
+ "downloadUrlLabel": "",
664
+ "showDownloadLinkBelow": true,
665
+ "showVertical": true
666
+ },
667
+ "errors": [],
668
+ "currentViewport": "lg",
669
+ "id": 15,
670
+ "category": "General",
671
+ "label": "Dashboard",
672
+ "type": "dashboard",
673
+ "subType": null,
674
+ "orientation": null,
675
+ "icon": {
676
+ "type": {},
677
+ "key": null,
678
+ "ref": null,
679
+ "props": {},
680
+ "_owner": null
681
+ },
682
+ "content": "Present multiple data visualizations with shared filter controls.",
683
+ "visualizationType": null,
684
+ "activeVizButtonID": 15,
685
+ "version": "4.26.5",
686
+ "migrations": {
687
+ "addColorMigration": true
688
+ },
689
+ "general": {
690
+ "palette": {
691
+ "version": "1.0",
692
+ "backups": [
693
+ {
694
+ "version": "1.0"
695
+ },
696
+ {
697
+ "version": "1.0"
698
+ },
699
+ {
700
+ "version": "1.0"
701
+ }
702
+ ]
703
+ }
704
+ },
705
+ "locale": "en-US",
706
+ "uuid": 1777995474896,
707
+ "runtime": {},
708
+ "datasets": {
709
+ "valid-data-map.csv": {
710
+ "data": [
711
+ {
712
+ "STATE": "Overall",
713
+ "Rate": "55",
714
+ "Location": "Vehicle",
715
+ "URL": "https://www.cdc.gov"
716
+ },
717
+ {
718
+ "STATE": "Alabama",
719
+ "Rate": 130,
720
+ "Location": "Vehicle",
721
+ "URL": "https://www.cdc.gov/"
722
+ },
723
+ {
724
+ "STATE": "Alaska",
725
+ "Rate": 40,
726
+ "Location": "Work",
727
+ "URL": "https://www.cdc.gov/"
728
+ },
729
+ {
730
+ "STATE": "American Samoa",
731
+ "Rate": 55,
732
+ "Location": "Home",
733
+ "URL": "https://www.cdc.gov/"
734
+ },
735
+ {
736
+ "STATE": "Arizona",
737
+ "Rate": 57,
738
+ "Location": "School",
739
+ "URL": "https://www.cdc.gov/"
740
+ },
741
+ {
742
+ "STATE": "Arkansas",
743
+ "Rate": 60,
744
+ "Location": "School",
745
+ "URL": "https://www.cdc.gov/"
746
+ },
747
+ {
748
+ "STATE": "California",
749
+ "Rate": 30,
750
+ "Location": "Home",
751
+ "URL": "https://www.cdc.gov/"
752
+ },
753
+ {
754
+ "STATE": "Colorado",
755
+ "Rate": 40,
756
+ "Location": "Vehicle",
757
+ "URL": "https://www.cdc.gov/"
758
+ },
759
+ {
760
+ "STATE": "Connecticut",
761
+ "Rate": 55,
762
+ "Location": "Home",
763
+ "URL": "https://www.cdc.gov/"
764
+ },
765
+ {
766
+ "STATE": "Delaware",
767
+ "Rate": 57,
768
+ "Location": "Home",
769
+ "URL": "https://www.cdc.gov/"
770
+ },
771
+ {
772
+ "STATE": "DC",
773
+ "Rate": 60,
774
+ "Location": "Home",
775
+ "URL": "https://www.cdc.gov/"
776
+ },
777
+ {
778
+ "STATE": "Florida",
779
+ "Rate": 30,
780
+ "Location": "Work",
781
+ "URL": "https://www.cdc.gov/"
782
+ },
783
+ {
784
+ "STATE": "Georgia",
785
+ "Rate": 40,
786
+ "Location": "Work",
787
+ "URL": "https://www.cdc.gov/"
788
+ },
789
+ {
790
+ "STATE": "Guam",
791
+ "Rate": 55,
792
+ "Location": "Home",
793
+ "URL": "https://www.cdc.gov/"
794
+ },
795
+ {
796
+ "STATE": "Hawaii",
797
+ "Rate": 57,
798
+ "Location": "School",
799
+ "URL": "https://www.cdc.gov/"
800
+ },
801
+ {
802
+ "STATE": "Idaho",
803
+ "Rate": 60,
804
+ "Location": "School",
805
+ "URL": "https://www.cdc.gov/"
806
+ },
807
+ {
808
+ "STATE": "Illinois",
809
+ "Rate": 30,
810
+ "Location": "Work",
811
+ "URL": "https://www.cdc.gov/"
812
+ },
813
+ {
814
+ "STATE": "Indiana",
815
+ "Rate": 40,
816
+ "Location": "Vehicle",
817
+ "URL": "https://www.cdc.gov/"
818
+ },
819
+ {
820
+ "STATE": "Iowa",
821
+ "Rate": 55,
822
+ "Location": "Home",
823
+ "URL": "https://www.cdc.gov/"
824
+ },
825
+ {
826
+ "STATE": "Kansas",
827
+ "Rate": 57,
828
+ "Location": "Home",
829
+ "URL": "https://www.cdc.gov/"
830
+ },
831
+ {
832
+ "STATE": "Kentucky",
833
+ "Rate": 60,
834
+ "Location": "NA",
835
+ "URL": "https://www.cdc.gov/"
836
+ },
837
+ {
838
+ "STATE": "Louisiana",
839
+ "Rate": 30,
840
+ "Location": "Vehicle",
841
+ "URL": "https://www.cdc.gov/"
842
+ },
843
+ {
844
+ "STATE": "Maine",
845
+ "Rate": 40,
846
+ "Location": "Work",
847
+ "URL": "https://www.cdc.gov/"
848
+ },
849
+ {
850
+ "STATE": "Marshall Islands",
851
+ "Rate": 55,
852
+ "Location": "Home",
853
+ "URL": "https://www.cdc.gov/"
854
+ },
855
+ {
856
+ "STATE": "Maryland",
857
+ "Rate": 57,
858
+ "Location": "School",
859
+ "URL": "https://www.cdc.gov/"
860
+ },
861
+ {
862
+ "STATE": "Massachusetts",
863
+ "Rate": 60,
864
+ "Location": "School",
865
+ "URL": "https://www.cdc.gov/"
866
+ },
867
+ {
868
+ "STATE": "Michigan",
869
+ "Rate": 12,
870
+ "Location": "Work",
871
+ "URL": "https://www.cdc.gov/"
872
+ },
873
+ {
874
+ "STATE": "Micronesia",
875
+ "Rate": 65,
876
+ "Location": "Vehicle",
877
+ "URL": "https://www.cdc.gov/"
878
+ },
879
+ {
880
+ "STATE": "Minnesota",
881
+ "Rate": 55,
882
+ "Location": "Home",
883
+ "URL": "https://www.cdc.gov/"
884
+ },
885
+ {
886
+ "STATE": "Mississippi",
887
+ "Rate": 57,
888
+ "Location": "Home",
889
+ "URL": "https://www.cdc.gov/"
890
+ },
891
+ {
892
+ "STATE": "Montana",
893
+ "Rate": 60,
894
+ "Location": "Home",
895
+ "URL": "https://www.cdc.gov/"
896
+ },
897
+ {
898
+ "STATE": "Montana",
899
+ "Rate": 30,
900
+ "Location": "Vehicle",
901
+ "URL": "https://www.cdc.gov/"
902
+ },
903
+ {
904
+ "STATE": "Nebraska",
905
+ "Rate": 40,
906
+ "Location": "Work",
907
+ "URL": "https://www.cdc.gov/"
908
+ },
909
+ {
910
+ "STATE": "Nevada",
911
+ "Rate": 55,
912
+ "Location": "Home",
913
+ "URL": "https://www.cdc.gov/"
914
+ },
915
+ {
916
+ "STATE": "New Hampshire",
917
+ "Rate": 57,
918
+ "Location": "School",
919
+ "URL": "https://www.cdc.gov/"
920
+ },
921
+ {
922
+ "STATE": "New Jersey",
923
+ "Rate": 60,
924
+ "Location": "School",
925
+ "URL": "https://www.cdc.gov/"
926
+ },
927
+ {
928
+ "STATE": "New Mexico",
929
+ "Rate": 12,
930
+ "Location": "Work",
931
+ "URL": "https://www.cdc.gov/"
932
+ },
933
+ {
934
+ "STATE": "New York",
935
+ "Rate": 40,
936
+ "Location": "Vehicle",
937
+ "URL": "https://www.cdc.gov/"
938
+ },
939
+ {
940
+ "STATE": "North Carolina",
941
+ "Rate": 55,
942
+ "Location": "Home",
943
+ "URL": "https://www.cdc.gov/"
944
+ },
945
+ {
946
+ "STATE": "North Dakota",
947
+ "Rate": 57,
948
+ "Location": "Home",
949
+ "URL": "https://www.cdc.gov/"
950
+ },
951
+ {
952
+ "STATE": "Northern Mariana Islands",
953
+ "Rate": 60,
954
+ "Location": "Home",
955
+ "URL": "https://www.cdc.gov/"
956
+ },
957
+ {
958
+ "STATE": "Ohio",
959
+ "Rate": 88,
960
+ "Location": "Vehicle",
961
+ "URL": "https://www.cdc.gov/"
962
+ },
963
+ {
964
+ "STATE": "Oklahoma",
965
+ "Rate": 40,
966
+ "Location": "Work",
967
+ "URL": "https://www.cdc.gov/"
968
+ },
969
+ {
970
+ "STATE": "Oregon",
971
+ "Rate": 55,
972
+ "Location": "Home",
973
+ "URL": "https://www.cdc.gov/"
974
+ },
975
+ {
976
+ "STATE": "Palau",
977
+ "Rate": 15,
978
+ "Location": "School",
979
+ "URL": "https://www.cdc.gov/"
980
+ },
981
+ {
982
+ "STATE": "Pennsylvania",
983
+ "Rate": 60,
984
+ "Location": "School",
985
+ "URL": "https://www.cdc.gov/"
986
+ },
987
+ {
988
+ "STATE": "Puerto Rico",
989
+ "Rate": 30,
990
+ "Location": "Work",
991
+ "URL": "https://www.cdc.gov/"
992
+ },
993
+ {
994
+ "STATE": "Rhode Island",
995
+ "Rate": 40,
996
+ "Location": "Vehicle",
997
+ "URL": "https://www.cdc.gov/"
998
+ },
999
+ {
1000
+ "STATE": "South Carolina",
1001
+ "Rate": 55,
1002
+ "Location": "Home",
1003
+ "URL": "https://www.cdc.gov/"
1004
+ },
1005
+ {
1006
+ "STATE": "South Dakota",
1007
+ "Rate": 86,
1008
+ "Location": "Home",
1009
+ "URL": "https://www.cdc.gov/"
1010
+ },
1011
+ {
1012
+ "STATE": "Tennessee",
1013
+ "Rate": 60,
1014
+ "Location": "Home",
1015
+ "URL": "https://www.cdc.gov/"
1016
+ },
1017
+ {
1018
+ "STATE": "Texas",
1019
+ "Rate": 30,
1020
+ "Location": "Vehicle",
1021
+ "URL": "https://www.cdc.gov/"
1022
+ },
1023
+ {
1024
+ "STATE": "Utah",
1025
+ "Rate": 54,
1026
+ "Location": "Work",
1027
+ "URL": "https://www.cdc.gov/"
1028
+ },
1029
+ {
1030
+ "STATE": "Vermont",
1031
+ "Rate": 40,
1032
+ "Location": "Home",
1033
+ "URL": "https://www.cdc.gov/"
1034
+ },
1035
+ {
1036
+ "STATE": "Virgin Islands",
1037
+ "Rate": 55,
1038
+ "Location": "School",
1039
+ "URL": "https://www.cdc.gov/"
1040
+ },
1041
+ {
1042
+ "STATE": "Virginia",
1043
+ "Rate": 57,
1044
+ "Location": "School",
1045
+ "URL": "https://www.cdc.gov/"
1046
+ },
1047
+ {
1048
+ "STATE": "Washington",
1049
+ "Rate": 62,
1050
+ "Location": "Work",
1051
+ "URL": "https://www.cdc.gov/"
1052
+ },
1053
+ {
1054
+ "STATE": "West Virginia",
1055
+ "Rate": 25,
1056
+ "Location": "Vehicle",
1057
+ "URL": "https://www.cdc.gov/"
1058
+ },
1059
+ {
1060
+ "STATE": "Wyoming",
1061
+ "Rate": 43,
1062
+ "Location": "Vehicle",
1063
+ "URL": "https://www.cdc.gov/"
1064
+ }
1065
+ ],
1066
+ "dataMetadata": {},
1067
+ "dataFileSize": 2434,
1068
+ "dataFileName": "valid-data-map.csv",
1069
+ "dataFileSourceType": "file",
1070
+ "dataFileFormat": "CSV",
1071
+ "preview": true
1072
+ }
1073
+ }
1074
+ }